diff --git a/modify-semantic-analysis.js b/modify-semantic-analysis.js index 1f211fa52..b89a10324 100644 --- a/modify-semantic-analysis.js +++ b/modify-semantic-analysis.js @@ -20,38 +20,10 @@ fs.readFile(file, 'utf8', function (err, data) { ); result = result.replace( - ` cnsa_Main_$callClinit(); - var$1 = var$1.data; - cnsa_Main_updateSignatureResolver(null); - cnsa_Main_analyzeQuery(var$1[0]); - cnsa_Main_updateSignatureResolver(null); - cnsa_Main_analyzeQuery(var$1[0]);`, - ` cnsa_Main_$callClinit();`, - ); - - result = result.replace( - ` cnsa_Main_$callClinit(); - var$1 = var$1.data; - cnsa_Main_updateSignatureResolver(null); - cnsa_Main_analyzeQuery(var$1[0]); - cnsa_Main_updateSignatureResolver(null); - cnsa_Main_analyzeQuery(var$1[0]);`, - ` cnsa_Main_$callClinit();`, - ); - - result = result.replace( - `$rt_exports.main = $rt_export_main;`, + `export { $rt_export_main as main };`, ` -$rt_exports.main = $rt_export_main; - -// Initialize everything -$rt_exports.main([]); - -// Export the signature registry updater -$rt_exports.updateSignatureResolver = cnsa_Main_updateSignatureResolver; - -// Export the analyze function as well -$rt_exports.semanticAnalysis = $rt_mainStarter(($args) => cnsa_Main_analyzeQuery($args.data[0]));`, +let semanticAnalysis = $rt_mainStarter(($args) => cnsa_Main_analyzeQuery($args.data[0])); +export { cnsa_Main_updateSignatureResolver as updateSignatureResolver, semanticAnalysis };`, ); fs.writeFile(file, result, 'utf8', function (err) { if (err) return console.log(err); diff --git a/packages/language-support/src/antlr-grammar/Cypher5Lexer.g4 b/packages/language-support/src/antlr-grammar/Cypher5Lexer.g4 index e89bec55c..9d9d6868f 100644 --- a/packages/language-support/src/antlr-grammar/Cypher5Lexer.g4 +++ b/packages/language-support/src/antlr-grammar/Cypher5Lexer.g4 @@ -1295,15 +1295,15 @@ IDENTIFIER ; ARROW_LINE - : [\-\u00AD\u2010\u2011\u2012\u2013\u2014\u2015\ufe58\ufe63\uff0d] + : [\-\u00AD‐‑‒–—―﹘﹣-] ; ARROW_LEFT_HEAD - : [\u27e8\u3008\ufe64\uff1c\u003c] + : [⟨〈﹤<] ; ARROW_RIGHT_HEAD - : [\u27e9\u3009\ufe65\uff1e] + : [⟩〉﹥>] ; fragment LETTER diff --git a/packages/language-support/src/antlr-grammar/Cypher5Parser.g4 b/packages/language-support/src/antlr-grammar/Cypher5Parser.g4 index bfde25e02..9053dda63 100644 --- a/packages/language-support/src/antlr-grammar/Cypher5Parser.g4 +++ b/packages/language-support/src/antlr-grammar/Cypher5Parser.g4 @@ -714,7 +714,7 @@ namespace ; variable - : symbolicNameString + : symbolicVariableNameString ; // Returns non-list of propertyKeyNames @@ -985,7 +985,7 @@ showTransactions ; terminateTransactions - : transactionToken namesAndClauses + : transactionToken stringsOrExpression showCommandYield? composableCommandClauses? ; showSettings @@ -1170,7 +1170,7 @@ reallocateDatabases // Role commands createRole - : ROLE commandNameExpression (IF NOT EXISTS)? (AS COPY OF commandNameExpression)? + : IMMUTABLE? ROLE commandNameExpression (IF NOT EXISTS)? (AS COPY OF commandNameExpression)? ; dropRole @@ -1582,7 +1582,7 @@ createDatabase ; primaryTopology - : UNSIGNED_DECIMAL_INTEGER primaryToken + : uIntOrIntParameter primaryToken ; primaryToken @@ -1590,7 +1590,7 @@ primaryToken ; secondaryTopology - : UNSIGNED_DECIMAL_INTEGER secondaryToken + : uIntOrIntParameter secondaryToken ; secondaryToken @@ -1754,6 +1754,13 @@ stringOrParameter | parameter["STRING"] ; +// Should return an Either[Integer, Parameter] +// There is no unsigned integer Cypher Type so the parameter permits signed values. +uIntOrIntParameter + :UNSIGNED_DECIMAL_INTEGER + | parameter["INTEGER"] + ; + mapOrParameter : map | parameter["MAP"] @@ -1763,6 +1770,19 @@ map : LCURLY (propertyKeyName COLON expression (COMMA propertyKeyName COLON expression)*)? RCURLY ; +symbolicVariableNameString + : escapedSymbolicVariableNameString + | unescapedSymbolicVariableNameString + ; + +escapedSymbolicVariableNameString + : escapedSymbolicNameString + ; + +unescapedSymbolicVariableNameString + : unescapedSymbolicNameString + ; + symbolicNameString : escapedSymbolicNameString | unescapedSymbolicNameString diff --git a/packages/language-support/src/parserWrapper.ts b/packages/language-support/src/parserWrapper.ts index ee3cfabc1..1343b3ec4 100644 --- a/packages/language-support/src/parserWrapper.ts +++ b/packages/language-support/src/parserWrapper.ts @@ -288,7 +288,7 @@ class VariableCollector implements ParseTreeListener { exitEveryRule(ctx: unknown) { if (ctx instanceof VariableContext) { - const variable = ctx.symbolicNameString().getText(); + const variable = ctx.symbolicVariableNameString().getText(); // To avoid suggesting the variable that is currently being typed // For example RETURN a| <- we don't want to suggest "a" as a variable // We check if the variable is in the end of the statement diff --git a/packages/language-support/src/syntaxValidation/semanticAnalysis.js b/packages/language-support/src/syntaxValidation/semanticAnalysis.js index ec3214072..9bbb3ab28 100644 --- a/packages/language-support/src/syntaxValidation/semanticAnalysis.js +++ b/packages/language-support/src/syntaxValidation/semanticAnalysis.js @@ -1,15 +1,4 @@ "use strict"; -(function(module) { - if (typeof define === 'function' && define.amd) { - define(['exports'], function(exports) { - module(exports); - }); - } else if (typeof exports === 'object' && exports !== null && typeof exports.nodeName !== 'string') { - module(exports); - } else { - module(typeof self !== 'undefined' ? self : this); -} -}(function($rt_exports) { let $rt_seed = 2463534242, $rt_nextId = () => { let x = $rt_seed; @@ -1089,7 +1078,7 @@ let jl_Object_monitorEnterSync = $o => { $o.$owner = jl_Thread_currentThread; else if (var$2 !== jl_Thread_currentThread) { var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(0)); + jl_Throwable__init_(var$2, $rt_s(0)); $rt_throw(var$2); } $o.$count1 = $o.$count1 + 1 | 0; @@ -1108,7 +1097,7 @@ jl_Object_monitorExitSync = $o => { } } $o = new jl_IllegalMonitorStateException; - jl_Throwable__init_($o); + jl_Throwable__init_0($o); $rt_throw($o); }, jl_Object_monitorEnter = $o => { @@ -1153,9 +1142,9 @@ jl_Object_monitorEnterWait = ($o, $count, $callback) => { $monitor.$enteringThreads = otp_Platform_createQueueJs$js_body$_30(); $monitor = $monitor.$enteringThreads; var$6 = new jl_Object$monitorEnterWait$lambda$_6_0; - var$6.$_0361 = $thread_0; - var$6.$_1131 = $o; - var$6.$_248 = $count; + var$6.$_0347 = $thread_0; + var$6.$_1123 = $o; + var$6.$_244 = $count; var$6.$_315 = $callback; $callback = var$6; $monitor.push($callback); @@ -1172,7 +1161,7 @@ jl_Object_monitorExit = $o => { var$2 = var$2.$enteringThreads; if (var$2 !== null && !otp_PlatformQueue_isEmpty$static(var$2)) { var$2 = new jl_Object$monitorExit$lambda$_8_0; - var$2.$_0803 = $o; + var$2.$_0778 = $o; otp_Platform_schedule(var$2, 0); } else jl_Object_isEmptyMonitor($o); @@ -1181,7 +1170,7 @@ jl_Object_monitorExit = $o => { } } $o = new jl_IllegalMonitorStateException; - jl_Throwable__init_($o); + jl_Throwable__init_0($o); $rt_throw($o); }, jl_Object_isEmptyMonitor = $this => { @@ -1244,7 +1233,7 @@ jl_Object_clone = $this => { let $result, var$2, var$3; if (!$rt_isInstance($this, jl_Cloneable) && $this.constructor.$meta.item === null) { $result = new jl_CloneNotSupportedException; - jl_Throwable__init_($result); + jl_Throwable__init_0($result); $rt_throw($result); } $result = otp_Platform_clone($this); @@ -1295,6 +1284,11 @@ cnsa_Main_$callClinit = () => { }, cnsa_Main_main = var$1 => { cnsa_Main_$callClinit(); + var$1 = var$1.data; + cnsa_Main_updateSignatureResolver(null); + cnsa_Main_analyzeQuery(var$1[0]); + cnsa_Main_updateSignatureResolver(null); + cnsa_Main_analyzeQuery(var$1[0]); }, cnsa_Main_updateSignatureResolver = $procedureRegistry => { let var$2, var$3, var$4, var$5, var$6, var$7, var$8; @@ -1308,20 +1302,20 @@ cnsa_Main_updateSignatureResolver = $procedureRegistry => { var$5 = sc_ArrayOps$_MODULE$; var$6 = otji_JS_unwrapArray($rt_cls(otji_JSWrapper), $procedureRegistry.procedures); var$7 = new cnsa_CustomSignatureResolver$_init_$lambda$_15_0; - var$7.$_0401 = var$2; + var$7.$_0389 = var$2; sr_ClassTag$_$callClinit(); var$2.$procedures = sc_AbstractIterable_toMap(s_LowPriorityImplicits_wrapRefArray(var$4, sc_ArrayOps$_map$extension(var$5, var$6, var$7, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(s_Tuple2)))), s_$less$colon$less$_singleton); var$3 = s_Predef$_MODULE$; var$8 = sc_ArrayOps$_MODULE$; var$6 = otji_JS_unwrapArray($rt_cls(otji_JSWrapper), $procedureRegistry.functions); var$5 = new cnsa_CustomSignatureResolver$_init_$lambda$_15_1; - var$5.$_0903 = var$2; + var$5.$_0886 = var$2; var$2.$functions = sc_AbstractIterable_toMap(s_LowPriorityImplicits_wrapRefArray(var$3, sc_ArrayOps$_map$extension(var$8, var$6, var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(s_Tuple2)))), s_$less$colon$less$_singleton); cnsa_Main_resolver = var$2; } }, cnsa_Main_analyzeQuery = $queryText => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; cnsa_Main_$callClinit(); var$2 = cnsa_Main_resolver; cnsa_SemanticAnalyzer$_$callClinit(); @@ -1329,107 +1323,82 @@ cnsa_Main_analyzeQuery = $queryText => { s_Option$_$callClinit(); var$4 = s_Option$_apply(s_Option$_MODULE$, var$2); var$5 = new cnsa_EnrichedContext; - var$6 = new onciu_RecordingNotificationLogger; + var$5.$cypherVersion = var$3; + var$2 = new onciu_RecordingNotificationLogger; s_Predef$_$callClinit(); - var$6.$builder = sci_Set$_newBuilder(s_Predef$_Set(s_Predef$_MODULE$)); - var$5.$logger = var$6; + var$2.$builder = sci_Set$_newBuilder(s_Predef$_Set(s_Predef$_MODULE$)); + var$5.$logger = var$2; var$5.$errorsSet = scm_HashSet__init_(); var$5.$errorMessageProvider0 = oncm_MessageUtilProvider$_MODULE$; - var$7 = new oncifp_InitialState; + var$6 = new oncifp_InitialState; var$2 = cnsa_SemanticAnalyzer$IDPPlannerName$_MODULE$; - var$6 = new onciu_AnonymousVariableNameGenerator; + var$3 = new onciu_AnonymousVariableNameGenerator; onciu_AnonymousVariableNameGenerator$_$callClinit(); - var$6.$counter = 0; - var$6.$inc = 1; - var$8 = s_None$_MODULE$; + var$3.$counter = 0; + var$3.$inc = 1; + var$7 = s_None$_MODULE$; s_Predef$_Set(s_Predef$_MODULE$); - var$9 = sci_Set$EmptySet$_MODULE$; - var$10 = s_None$_MODULE$; - oncifp_InitialState__init_(var$7, $queryText, var$2, var$6, var$8, var$8, var$8, var$8, var$8, var$9, var$10, var$10); - var$9 = cnsa_SemanticAnalyzer$_semanticFeatures; + var$8 = sci_Set$EmptySet$_MODULE$; + var$9 = s_None$_MODULE$; + oncifp_InitialState__init_(var$6, $queryText, var$2, var$3, var$7, var$7, var$7, var$7, var$7, var$8, var$9, var$9); + var$3 = cnsa_SemanticAnalyzer$_semanticFeatures; oncifp_FrontEndCompilationPhases$_$callClinit(); oncifp_FrontEndCompilationPhases$_ParsingConfig(oncifp_FrontEndCompilationPhases$_MODULE$); - var$10 = onc_GraphDatabaseInternalSettings$ExtractLiteral_ALWAYS; + var$2 = onc_GraphDatabaseInternalSettings$ExtractLiteral_ALWAYS; oncifp_FrontEndCompilationPhases$_ParsingConfig(oncifp_FrontEndCompilationPhases$_MODULE$); - var$6 = sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); + $queryText = sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); oncifp_FrontEndCompilationPhases$_ParsingConfig(oncifp_FrontEndCompilationPhases$_MODULE$); - $queryText = new oncifp_FrontEndCompilationPhases$ParsingConfig; - var$2 = oncifp_FrontEndCompilationPhases$_MODULE$; - $queryText.$cypherVersion0 = var$3; - $queryText.$extractLiterals = var$10; - $queryText.$parameterTypeMapping = var$6; - $queryText.$semanticFeatures = var$9; - $queryText.$obfuscateLiterals = 0; - $queryText.$antlrParserEnabled = 1; - if (var$2 === null) + var$8 = new oncifp_FrontEndCompilationPhases$ParsingConfig; + var$9 = oncifp_FrontEndCompilationPhases$_MODULE$; + var$8.$extractLiterals = var$2; + var$8.$parameterTypeMapping = $queryText; + var$8.$semanticFeatures = var$3; + var$8.$obfuscateLiterals = 0; + if (var$9 === null) $rt_throw(null); - $queryText.$$outer83 = var$2; - var$2 = new oncifp_Parse; - var$2.$useAntlr = 1; - var$2.$version1 = var$3; - jl_Object__init_(var$2); - oncifp_Transformer_$init$(var$2); - oncifp_Phase_$init$(var$2); - s_Product_$init$(var$2); - var$2.$phase1 = oncifp_CompilationPhaseTracer$CompilationPhase_PARSING; + var$8.$$outer74 = var$9; + oncifp_Parse$_$callClinit(); + $queryText = oncifp_Parse$_MODULE$; oncifp_CollectSyntaxUsageMetrics$_$callClinit(); - var$6 = oncifp_Transformer_andThen$(var$2, oncifp_CollectSyntaxUsageMetrics$_MODULE$); + var$3 = oncifp_Transformer_andThen$($queryText, oncifp_CollectSyntaxUsageMetrics$_MODULE$); var$2 = new oncifp_SyntaxDeprecationWarningsAndReplacements; - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit(); - oncifp_SyntaxDeprecationWarningsAndReplacements__init_(var$2, oncir_Deprecations$syntacticallyDeprecatedFeatures$_MODULE$); - var$3 = oncifp_Transformer_andThen$(var$6, var$2); + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + oncifp_SyntaxDeprecationWarningsAndReplacements__init_(var$2, oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$); + var$2 = oncifp_Transformer_andThen$(var$3, var$2); oncifp_PreparatoryRewriting$_$callClinit(); - var$10 = oncifp_Transformer_andThen$(var$3, oncifp_PreparatoryRewriting$_MODULE$); - var$2 = new oncifp_If; - var$3 = new oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_0; - jl_Object__init_(var$3); - var$3.$_0532 = $queryText; - var$6 = new oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_1; - jl_Object__init_(var$6); - oncifp_If__init_(var$2, var$3, var$6); - var$11 = oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(var$10, var$2), oncifp_SemanticAnalysis__init_(1, $queryText.$semanticFeatures)), oncifp_RemoveDuplicateUseClauses$_MODULE$); - var$2 = new oncifp_SemanticTypeCheck; - var$12 = $queryText.$cypherVersion0; - var$2.$cypherVersion1 = var$12; + var$9 = oncifp_Transformer_andThen$(var$2, oncifp_PreparatoryRewriting$_MODULE$); + $queryText = new oncifp_If; + var$2 = new oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_0; jl_Object__init_(var$2); - oncifp_Transformer_$init$(var$2); - oncifp_Phase_$init$(var$2); - oncifp_VisitorPhase_$init$(var$2); - onciu_StepSequencer$DefaultPostCondition_$init$(var$2); - s_Product_$init$(var$2); - var$10 = new sci_$colon$colon; - oncifp_PatternExpressionInNonExistenceCheck$_$callClinit(); - sci_$colon$colon__init_0(var$10, oncifp_PatternExpressionInNonExistenceCheck$_patternExpressionInNonExistenceCheck(oncifp_PatternExpressionInNonExistenceCheck$_MODULE$), sci_$colon$colon__init_(oncifp_SelfReferenceCheckWithinPatternPart_check(oncifp_SelfReferenceCheckWithinPatternPart__init_0(var$12)), sci_$colon$colon__init_(oncifp_SelfReferenceCheckAcrossPatternParts_check(oncifp_SelfReferenceCheckAcrossPatternParts__init_0(var$12)), sci_$colon$colon__init_(oncifp_ListCoercedToBooleanCheck$_listCoercedToBooleanCheck(oncifp_ListCoercedToBooleanCheck$_MODULE$), - sci_Nil$_MODULE$)))); - var$2.$checks = var$10; - var$2.$phase0 = oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_TYPE_CHECK; - var$10 = oncifp_Transformer_andThen$(var$11, var$2); - var$2 = new oncifp_SyntaxDeprecationWarningsAndReplacements; - var$3 = new oncir_Deprecations$SemanticallyDeprecatedFeatures; - var$3.$cypherVersion = $queryText.$cypherVersion0; + var$2.$_0516 = var$8; + var$3 = new oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_1; jl_Object__init_(var$3); - s_Product_$init$(var$3); - oncifp_SyntaxDeprecationWarningsAndReplacements__init_(var$2, var$3); - var$3 = oncifp_Transformer_andThen$(var$10, var$2); + oncifp_If__init_($queryText, var$2, var$3); + var$2 = oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(var$9, $queryText), oncifp_SemanticAnalysis__init_(1, var$8.$semanticFeatures)), oncifp_RemoveDuplicateUseClauses$_MODULE$); + oncifp_SemanticTypeCheck$_$callClinit(); + var$3 = oncifp_Transformer_andThen$(var$2, oncifp_SemanticTypeCheck$_MODULE$); + $queryText = new oncifp_SyntaxDeprecationWarningsAndReplacements; + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + oncifp_SyntaxDeprecationWarningsAndReplacements__init_($queryText, oncir_Deprecations$SemanticallyDeprecatedFeatures$_MODULE$); + var$2 = oncifp_Transformer_andThen$(var$3, $queryText); oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - var$10 = oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(var$3, oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$), oncifp_SemanticAnalysis__init_(0, $queryText.$semanticFeatures)), oncifp_ExpandStarRewriter$_MODULE$); - var$2 = new oncifp_If; - var$3 = new cnsa_SemanticAnalyzer$$parsing$lambda$_2_0; - var$3.$_01049 = var$4; - var$6 = new cnsa_SemanticAnalyzer$$parsing$lambda$_2_1; - var$6.$_0569 = var$4; - oncifp_If__init_(var$2, var$3, var$6); - var$3 = oncifp_Transformer_andThen$(var$10, var$2); - oncifp_ObfuscationMetadataCollection$_$callClinit(); - var$3 = oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(var$3, oncifp_ObfuscationMetadataCollection$_MODULE$), new oncifp_AmbiguousAggregationAnalysis); - oncifp_ProcedureAndFunctionDeprecationWarnings$_$callClinit(); - var$3 = oncifp_Transformer_andThen$(var$3, oncifp_ProcedureAndFunctionDeprecationWarnings$_MODULE$); + var$9 = oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(var$2, oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$), oncifp_SemanticAnalysis__init_(0, var$8.$semanticFeatures)), oncifp_ExpandStarRewriter$_MODULE$); + $queryText = new oncifp_If; + var$2 = new cnsa_SemanticAnalyzer$$parsing$lambda$_2_0; + var$2.$_01037 = var$4; + var$3 = new cnsa_SemanticAnalyzer$$parsing$lambda$_2_1; + var$3.$_0552 = var$4; + oncifp_If__init_($queryText, var$2, var$3); + var$2 = oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(var$9, $queryText), oncifp_ObfuscationMetadataCollection$_MODULE$), new oncifp_AmbiguousAggregationAnalysis), oncifp_ProcedureAndFunctionDeprecationWarnings$_MODULE$); oncifp_ProcedureWarnings$_$callClinit(); - oncifp_PipeLine_transform(oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(var$3, oncifp_ProcedureWarnings$_MODULE$), oncifp_SemanticAnalysis__init_(0, $queryText.$semanticFeatures)), var$7, var$5); + oncifp_PipeLine_transform(oncifp_Transformer_andThen$(oncifp_Transformer_andThen$(var$2, oncifp_ProcedureWarnings$_MODULE$), oncifp_SemanticAnalysis__init_(0, var$8.$semanticFeatures)), var$6, var$5); $queryText = new cnsa_SemanticAnalysisResultImpl; - var$6 = sc_StrictOptimizedIterableOps_map$(var$5.$errorsSet, new cnsa_EnrichedContext$errors$lambda$_9_0); + var$4 = sc_StrictOptimizedIterableOps_map$(var$5.$errorsSet, new cnsa_EnrichedContext$errors$lambda$_10_0); sr_ClassTag$_$callClinit(); - cnsa_SemanticAnalysisResultImpl__init_($queryText, var$6.$toArray(sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(otji_JSWrapper))), ((sci_SetBuilderImpl_result(var$5.$logger.$builder)).$map(cnsa_EnrichedContext$notifications$lambda$_10_0__init_0())).$toArray(sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(otji_JSWrapper)))); + var$10 = var$4.$toArray(sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(otji_JSWrapper))); + var$11 = ((sci_SetBuilderImpl_result(var$5.$logger.$builder)).$map(new cnsa_EnrichedContext$notifications$lambda$_11_0)).$toArray(sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(otji_JSWrapper))); + $queryText.$errors2 = var$10; + $queryText.$notifications0 = var$11; return $queryText; }, cnsa_Main__clinit_ = () => { @@ -1452,9 +1421,6 @@ cnsa_Main__clinit_ = () => { sc_Iterator$__clinit_(); sci_Node$__clinit_(); sci_VectorStatics$__clinit_(); - jur_AbstractSet__clinit_(); - jur_AbstractCharClass$PredefinedCharacterClasses__clinit_(); - jur_AbstractCharClass__clinit_(); sj_CollectionConverters$__clinit_(); sjj_CollectionConverters$__clinit_(); scm_RedBlackTree$__clinit_(); @@ -1467,17 +1433,11 @@ cnsa_Main__clinit_ = () => { ju_Collections__clinit_(); sc_View$__clinit_(); scm_ArrayBuffer$__clinit_(); - sr_BoxedUnit__clinit_(); - jl_Long__clinit_(); - jl_Short__clinit_(); - jl_Float__clinit_(); - jl_Byte__clinit_(); - jl_Double__clinit_(); - scm_MutationTracker$__clinit_(); sci_Stream$__clinit_(); oncirr_ReturnItemsAreAliased$__clinit_(); oncirr_ExpressionsInOrderByAndWhereUseAliases$__clinit_(); oncirc_package$OptionalCallProcedureWrapped$__clinit_(); + oncirr_TopLevelBracesUnwrapped$__clinit_(); scm_ArraySeq$__clinit_(); scm_HashSet$__clinit_(); scm_ListBuffer$__clinit_(); @@ -1486,6 +1446,13 @@ cnsa_Main__clinit_ = () => { scm_Stack$__clinit_(); onciuci_ListSet$__clinit_(); s_Array$__clinit_(); + jl_Double__clinit_(); + jl_Long__clinit_(); + jl_Float__clinit_(); + jl_Byte__clinit_(); + jl_Short__clinit_(); + scm_MutationTracker$__clinit_(); + sr_BoxedUnit__clinit_(); ju_Comparator$NaturalOrder__clinit_(); oncius_CypherType$__clinit_(); sm_Ordering$Boolean$__clinit_(); @@ -1517,38 +1484,37 @@ cnsa_Main__clinit_ = () => { onkae_Status$Classification$TransactionEffect__clinit_(); onkae_SeverityLevel__clinit_(); onkae_NotificationCategory__clinit_(); - jt_DecimalFormat__clinit_(); - oncias_SemanticState$ScopeLocation$__clinit_(); - s_PartialFunction$__clinit_(); - onciap_ExpressionStringifier$__clinit_(); - s_$less$colon$less$__clinit_(); - s_Predef$ArrowAssoc$__clinit_(); - oncifp_ListCoercedToBooleanCheck$__clinit_(); - oncia_AddedInRewrite$__clinit_(); + jur_AbstractSet__clinit_(); + ong_Condition__clinit_(); + ong_NotificationClassification__clinit_(); + ong_GqlParams$StringParam__clinit_(); + ong_GqlParams$JoinStyle__clinit_(); + ong_ErrorClassification__clinit_(); + ong_GqlParams$NumberParam__clinit_(); + onis_IndexType__clinit_(); + oncia_UsingIndexHint$UsingAnyIndexType$__clinit_(); + oncia_UsingIndexHint$UsingTextIndexType$__clinit_(); + one_IndexHintException$IndexHintIndexType__clinit_(); + onc_EntityType__clinit_(); + oncia_UsingIndexHint$UsingRangeIndexType$__clinit_(); + oncia_UsingIndexHint$UsingPointIndexType$__clinit_(); + onn_EagerLoadCsvNotification$__clinit_(); + oncifp_ObfuscationMetadataCollection$__clinit_(); onciu_Rewritable$RewritableAny$__clinit_(); onciu_Rewritable$__clinit_(); - oncirr_normalizeWithAndReturnClauses$__clinit_(); - oncirr_rewriteShortestPathWithFixedLengthRelationship$__clinit_(); - onciu_StepSequencer$RepeatedSteps$Permitted$__clinit_(); - sc_EvidenceIterableFactory$__clinit_(); - oncifp_CompilationPhaseTracer$CompilationPhase__clinit_(); - oncir_RewriterStep$__clinit_(); - oncia_AliasedReturnItem$__clinit_(); - onciaf_ASTFactory$MergeActionType__clinit_(); - oncia_ShowServers$__clinit_(); - oncia_ShowTransactionsClause$__clinit_(); - oncia_ShowColumn$__clinit_(); - oncia_CatalogName$__clinit_(); - oncia_ProcedureResultItem$__clinit_(); - oncir_Deprecations$__clinit_(); - oavra_ATNDeserializer__clinit_(); - oncias_checkNoParamMapsWhenMatching$__clinit_(); - oncie_Pattern$SemanticContext$Match$__clinit_(); - oncie_Pattern$SemanticContext$Merge$__clinit_(); - oncias_checkValidPropertyKeyNamesInPattern$__clinit_(); - oncie_Pattern$SemanticContext$Create$__clinit_(); - oncie_Pattern$SemanticContext$Insert$__clinit_(); - oncie_SemanticDirection$BOTH$__clinit_(); + onciu_topDown$__clinit_(); + oncia_ASTAnnotationMap$__clinit_(); + oncia_Return$__clinit_(); + onciu_ZippableUtil$__clinit_(); + sc_BuildFrom$__clinit_(); + s_$less$colon$less$__clinit_(); + ong_ErrorGqlStatusObjectImplementation$Builder__clinit_(); + oncia_ParsedAsYield$__clinit_(); + oncias_SymbolUse$__clinit_(); + oncie_Expression$SemanticContext$Results$__clinit_(); + oncias_IterableOnceSemanticChecking$__clinit_(); + oncias_package$__clinit_(); + sc_SeqFactory$UnapplySeqWrapper$__clinit_(); oncie_NormalForm$__clinit_(); oncie_FunctionInvocation$ArgumentUnordered$__clinit_(); oncie_FunctionInvocation$ArgumentAsc$__clinit_(); @@ -1558,318 +1524,386 @@ cnsa_Main__clinit_ = () => { oncie_ElementIdToLongId$Mode$Single$__clinit_(); oncie_ElementIdToLongId$Mode$Many$__clinit_(); oncie_RELATIONSHIP_TYPE$__clinit_(); - oncia_Where$__clinit_(); - oncia_UsingIndexHint$UsingAnyIndexType$__clinit_(); - oncia_UsingIndexHint$UsingTextIndexType$__clinit_(); - oncia_UsingIndexHint$SeekOnly$__clinit_(); - oncia_UsingIndexHint$UsingRangeIndexType$__clinit_(); - oncia_UsingIndexHint$UsingPointIndexType$__clinit_(); - oavrm_ObjectEqualityComparator__clinit_(); - oavra_PredictionContext__clinit_(); - jm_Conversion__clinit_(); - jt_DecimalFormat$Constants__clinit_(); - ong_Condition__clinit_(); - ong_GqlParams$StringParam__clinit_(); - ong_GqlParams$JoinStyle__clinit_(); - onis_IndexType__clinit_(); - oncipcaf_ParserCypherTypeName__clinit_(); + oncifp_SelfReferenceCheckWithinPatternPart$__clinit_(); + oncia_ReadOnlyAccess$__clinit_(); + oncia_ReadWriteAccess$__clinit_(); + oncia_AddedInRewrite$__clinit_(); + onciap_Prettifier$EmptyExtension$__clinit_(); + oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$__clinit_(); + oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$__clinit_(); + oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$__clinit_(); + oncias_SemanticFeature$MatchModes$__clinit_(); + onciu_AggregationSkippedNull$__clinit_(); + onciu_DeprecatedBooleanCoercion$__clinit_(); + onciu_InsecureProtocol$__clinit_(); + s_Predef$ArrowAssoc$__clinit_(); + oncie_QuantifiedPath$__clinit_(); oavr_ParserRuleContext__clinit_(); - jlr_Modifier__clinit_(); - oavrm_Interval__clinit_(); + oncm_MessageUtilProvider$__clinit_(); + oncifp_SelfReferenceCheckAcrossPatternParts$__clinit_(); + onciu_bottomUp$__clinit_(); + onciu_RewriterStopper$__clinit_(); + oavr_VocabularyImpl__clinit_(); + oavra_ATNDeserializer__clinit_(); + oavra_ATNDeserializationOptions__clinit_(); + oavra_ATNType__clinit_(); + oavra_LexerActionType__clinit_(); + oavra_LexerMoreAction__clinit_(); + oavra_LexerPopModeAction__clinit_(); + oavra_LexerSkipAction__clinit_(); + oavra_ATNConfigSet$ConfigEqualityComparator__clinit_(); + oavrm_Array2DHashSet__clinit_(); + oncief_UnresolvedFunction$__clinit_(); + oncie_FunctionTypeSignature$__clinit_(); + onciu_Foldable$TreeAny$__clinit_(); + oncip_CypherErrorStrategy$ExpressionRule$__clinit_(); + oncip_CypherErrorStrategy$StringLiteralRule$__clinit_(); + oncip_CypherErrorStrategy$NumberLiteralRule$__clinit_(); + oncip_CypherErrorStrategy$ParameterRule$__clinit_(); + oncip_CypherErrorStrategy$VariableRule$__clinit_(); + oncip_CypherErrorStrategy$DatabaseNameRule$__clinit_(); + oncip_CypherErrorStrategy$GraphPatternRule$__clinit_(); + oncip_CypherErrorStrategy$IdentifierRule$__clinit_(); + oncip_CypherErrorStrategy$LabelExpressionRule$__clinit_(); + oncip_CypherErrorStrategy$RelationshipPatternRule$__clinit_(); + oncip_CypherErrorStrategy$NodePatternRule$__clinit_(); + oncip_CypherErrorStrategy$LabelExpression1Rule$__clinit_(); + oncifp_ProcedureReadOnlyAccess$__clinit_(); + oncifp_ProcedureDbmsAccess$__clinit_(); + oncie_Expression$TreeAcc$__clinit_(); + onih_Exceptions__clinit_(); + oncil_SolvableLabelExpression$__clinit_(); jn_ByteOrder__clinit_(); + jnc_CodingErrorAction__clinit_(); jnc_CoderResult__clinit_(); oavra_SemanticContext$Empty__clinit_(); + jlr_Modifier__clinit_(); oavr_CodePointCharStream__clinit_(); - onciafnc_CodeCompletionCore__clinit_(); - oncipcaf_HintIndexType__clinit_(); - ong_NotificationClassification__clinit_(); - one_IndexHintException$IndexHintIndexType__clinit_(); - onc_EntityType__clinit_(); - onn_EagerLoadCsvNotification$__clinit_(); - onciu_AggregationSkippedNull$__clinit_(); - onciu_DeprecatedBooleanCoercion$__clinit_(); - oncie_QuantifiedPath$__clinit_(); - oncm_MessageUtilProvider$__clinit_(); - oncias_SymbolUse$__clinit_(); oncief_DeterministicFunction$__clinit_(); - scm_RedBlackTree$Tree$__clinit_(); - oncie_Expression$TreeAcc$__clinit_(); - oncia_ReturnItems$ReturnVariables$__clinit_(); - sc_IterableOnceExtensionMethods$__clinit_(); + oncirc_package$LiteralsExtracted$__clinit_(); + oncirc_package$SensitiveLiteralsExtracted$__clinit_(); + oncirc_package$FunctionInvocationsResolved$__clinit_(); onciu_StepSequencer$ByInitialCondition$__clinit_(); + oncius_TypeRange$__clinit_(); + scm_HashMap$__clinit_(); + scm_TreeSet$__clinit_(); + scm_RedBlackTree$Tree$__clinit_(); + oncia_With$__clinit_(); oncia_DefaultWith$__clinit_(); + oncie_LogicalProperty$__clinit_(); oncie_LogicalVariable$__clinit_(); + oncia_AmbiguousAggregation$__clinit_(); oncia_AliasDriverSettingsCheck$__clinit_(); + onciuh_fixedPoint$__clinit_(); + oncia_UsingIndexHint$SeekOnly$__clinit_(); + sc_IterableFactory$__clinit_(); + onciuh_StringHelper$RichString$__clinit_(); + onciu_EmptyErrorMessageProvider$__clinit_(); oncirc_containsNoReturnAll$__clinit_(); + oncifp_PatternExpressionInNonExistenceCheck$__clinit_(); + oncifp_CompilationPhaseTracer$CompilationPhase__clinit_(); + oncia_ASTSlicingPhrase$__clinit_(); + oncias_ScopeTreeVerifier$__clinit_(); + oncia_ReturnItems$ReturnVariables$__clinit_(); + oncia_Order$__clinit_(); + su_Sorting$__clinit_(); + sm_Ordering$Long$__clinit_(); + sm_Ordering$Char$__clinit_(); + sm_Ordering$Byte$__clinit_(); + sm_Ordering$Short$__clinit_(); oncias_SemanticFeature$MultipleDatabases$__clinit_(); oncias_SemanticFeature$UseAsSingleGraphSelector$__clinit_(); onci_CypherVersion__clinit_(); cnsa_SemanticAnalyzer$IDPPlannerName$__clinit_(); oncifp_InitialState$__clinit_(); oncifp_ExpandStarRewriter$__clinit_(); + oncifp_ProcedureAndFunctionDeprecationWarnings$__clinit_(); oncifp_RemoveDuplicateUseClauses$__clinit_(); + jur_AbstractCharClass$PredefinedCharacterClasses__clinit_(); + jur_AbstractCharClass__clinit_(); + oncirr_normalizeWithAndReturnClauses$__clinit_(); + oncirr_rewriteShortestPathWithFixedLengthRelationship$__clinit_(); + onciap_PatternStringifier$__clinit_(); + onciap_PathStepStringifier$__clinit_(); onc_GraphDatabaseInternalSettings$ExtractLiteral__clinit_(); + onciu_StepSequencer$RepeatedSteps$Permitted$__clinit_(); + sc_EvidenceIterableFactory$__clinit_(); + jl_ThreadLocal__clinit_(); + cnsa_CustomSignatureResolver$__clinit_(); + oncifp_UserFunctionSignature$__clinit_(); + oncifp_ProcedureSignature$__clinit_(); + oncifp_ProcedureReadWriteAccess$__clinit_(); + oncifp_ProcedureSchemaWriteAccess$__clinit_(); + oncifp_FieldSignature$__clinit_(); oncifp_Transformer$__clinit_(); + oncifp_ValidSymbolicNamesInLabelExpressions$__clinit_(); oncifh_package$__clinit_(); - onciu_StepSequencer$RepeatedSteps$Forbidden$__clinit_(); - jus_Collector$Characteristics__clinit_(); oncifp_SemanticAnalysis$__clinit_(); oncifp_DeprecatedSyntaxReplaced$__clinit_(); oncifp_DeprecatedSemanticsReplaced$__clinit_(); oncifp_PreparatoryRewriting$SemanticAnalysisPossible$__clinit_(); oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$__clinit_(); oncifp_CompilationPhaseTracer__clinit_(); - oncirc_package$LiteralsExtracted$__clinit_(); - oncirc_package$SensitiveLiteralsExtracted$__clinit_(); - oncirc_package$FunctionInvocationsResolved$__clinit_(); oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$__clinit_(); oncifp_extractSensitiveLiterals$__clinit_(); + onciu_StepSequencer$RepeatedSteps$Forbidden$__clinit_(); + jus_Collector$Characteristics__clinit_(); + jt_DecimalFormat__clinit_(); onciu_inSequence$__clinit_(); + oncip_AstParserFactory$__clinit_(); + oncip_Cypher5AstParserFactory$__clinit_(); + oncip_Cypher25AstParserFactory$__clinit_(); oncias_SemanticChecker$__clinit_(); oncias_SemanticTable$__clinit_(); + jt_DecimalFormat$Constants__clinit_(); oncias_SemanticFeature$MultipleGraphs$__clinit_(); oncias_SemanticFeature$UseAsMultipleGraphsSelector$__clinit_(); oncias_SemanticFeature$ShowSetting$__clinit_(); oncias_SemanticFeature$ComposableCommands$__clinit_(); - oncias_SemanticFeature$DynamicLabelsAndTypes$__clinit_(); - oncia_ASTAnnotationMap$__clinit_(); - oncip_AstParserFactory$__clinit_(); + oncias_SemanticFeature$GraphTypes$__clinit_(); + oncir_RewriterStep$__clinit_(); + jm_Conversion__clinit_(); s_Function$__clinit_(); - oncip_Cypher5AstParserFactory$__clinit_(); - oncip_Cypher25AstParserFactory$__clinit_(); - oncipj_CypherCharStream__clinit_(); - oncipj_Cypher__clinit_(); - oncipj_CypherConstants__clinit_(); - oncipj_ParseException__clinit_(); - ju_Vector__clinit_(); - oncipj_CypherTokenManager__clinit_(); - oncipcaf_CreateIndexTypes__clinit_(); - oncipcaf_ConstraintVersion__clinit_(); + oncia_IsTyped$__clinit_(); + oncil_LabelExpressionPredicate$__clinit_(); + oncie_FunctionName$__clinit_(); + oncie_Namespace$__clinit_(); + oavra_PredictionMode__clinit_(); + suc_NonFatal$__clinit_(); + oavr_BufferedTokenStream__clinit_(); + su_Try$__clinit_(); + oncipl_UnicodeEscapeReplacementReader__clinit_(); + oavr_CodePointBuffer__clinit_(); + oncipl_CypherToken$__clinit_(); + oncifp_QualifiedName$__clinit_(); + oavr_CodePointBuffer$Builder__clinit_(); + oavr_CodePointBuffer$Type__clinit_(); + oavr_CodePointCharStream$CodePoint8BitCharStream__clinit_(); + oavr_CodePointCharStream$CodePoint16BitCharStream__clinit_(); + oavr_CodePointCharStream$CodePoint32BitCharStream__clinit_(); + oavra_LexerATNSimulator__clinit_(); + oncipl_CypherTokenFactory$__clinit_(); + oncipl_FullCypherTokenFactory$__clinit_(); + oavrm_IntegerList__clinit_(); + oavr_CommonTokenFactory__clinit_(); + oavr_ConsoleErrorListener__clinit_(); + oecilmp_IntArrayList__clinit_(); + oncia_SubqueryCall$__clinit_(); + oncie_containsAggregate$__clinit_(); + oncias_SemanticCheckInterpreter$__clinit_(); + oncias_SemanticCheckResult$__clinit_(); + oncias_SemanticCheckInterpreter$ExecutableCheck$__clinit_(); + oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$__clinit_(); + oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$__clinit_(); + oncip_CypherErrorStrategy$__clinit_(); + oavra_SingletonPredictionContext__clinit_(); + onciafnc_CodeCompletionCore__clinit_(); + oncia_ProcedureResultItem$__clinit_(); + oncias_FeatureError$__clinit_(); + sm_Ordering$Implicits$__clinit_(); + oncipcaf_HintIndexType__clinit_(); oncipcaf_ConstraintType__clinit_(); - oncipcaf_ShowCommandFilterTypes__clinit_(); - oncipcaf_ParameterType__clinit_(); - oncipcaf_ActionType__clinit_(); - oncipcaf_ScopeType__clinit_(); - oncipcaf_CallInTxsOnErrorBehaviourType__clinit_(); - oncipj_ExpectBar__clinit_(); - oncipcaf_ParserNormalForm__clinit_(); + oncipvaf_Cypher5SyntaxChecker$__clinit_(); + oncipvaf_Cypher25SyntaxChecker$__clinit_(); + oavra_ArrayPredictionContext__clinit_(); + oavra_PredictionMode$AltAndContextConfigEqualityComparator__clinit_(); + oncia_Merge$SelfReference$__clinit_(); + oncia_Create$SelfReferenceAcrossPatterns$__clinit_(); + oncifp_InternalSyntaxUsageStatsNoOp$__clinit_(); + oncia_SetExactPropertiesFromMapItem$__clinit_(); + oncia_SetIncludingPropertiesFromMapItem$__clinit_(); + oncie_MatchMode$DifferentRelationships$__clinit_(); + oncia_Merge$__clinit_(); + oncil_LabelExpression$Disjunctions$__clinit_(); + oncil_LabelExpression$ColonDisjunction$__clinit_(); + oncil_LabelExpression$Conjunctions$__clinit_(); + oncil_LabelExpression$ColonConjunction$__clinit_(); + oncil_LabelExpression$Negation$__clinit_(); + oncil_LabelExpression$Wildcard$__clinit_(); + oncil_LabelExpression$Leaf$__clinit_(); + oncil_LabelExpression$DynamicLeaf$__clinit_(); + oncie_Ands$__clinit_(); + oncie_ListComprehension$__clinit_(); oncipcaf_ParserTrimSpecification__clinit_(); - oncipj_EntityType__clinit_(); - oncia_CreateIndex$__clinit_(); - oncia_ShowAliases$__clinit_(); - oncia_AllIndexes$__clinit_(); - oncia_ShowIndexesClause$__clinit_(); - oncia_RangeIndexes$__clinit_(); + oncipvaf_DdlShowBuilder$ShowWrapper$__clinit_0(); oncia_FulltextIndexes$__clinit_(); - oncia_TextIndexes$__clinit_(); + oncia_LookupIndexes$__clinit_(); oncia_PointIndexes$__clinit_(); + oncia_RangeIndexes$__clinit_(); + oncia_TextIndexes$__clinit_(); oncia_VectorIndexes$__clinit_(); - oncia_LookupIndexes$__clinit_(); - oncia_AllFunctions$__clinit_(); - oncia_ShowFunctionsClause$__clinit_(); - oncia_CurrentUser$__clinit_(); - oncia_BuiltInFunctions$__clinit_(); - oncia_UserDefinedFunctions$__clinit_(); - oncia_AllConstraints$__clinit_(); - oncia_ShowConstraintsClause$__clinit_(); - oncia_UniqueConstraints$__clinit_(); oncia_NodeUniqueConstraints$__clinit_(); oncia_RelUniqueConstraints$__clinit_(); - oncia_KeyConstraints$__clinit_(); - oncia_NodeKeyConstraints$__clinit_(); oncia_RelKeyConstraints$__clinit_(); - oncia_ExistsConstraints$__clinit_(); - oncia_NodeExistsConstraints$__clinit_(); - oncia_RelExistsConstraints$__clinit_(); - oncia_PropTypeConstraints$__clinit_(); + oncia_KeyConstraints$__clinit_(); + oncia_RelAllExistsConstraints$__clinit_(); oncia_NodePropTypeConstraints$__clinit_(); oncia_RelPropTypeConstraints$__clinit_(); + oncia_PropTypeConstraints$__clinit_(); + oncia_UniqueConstraints$__clinit_(); + oncia_NodeAllExistsConstraints$__clinit_(); + oncia_NodePropExistsConstraints$__clinit_(); + oncia_RelPropExistsConstraints$__clinit_(); + oncia_AllExistsConstraints$__clinit_(); + oncia_PropExistsConstraints$__clinit_(); + oncia_AllConstraints$__clinit_(); + oncia_NodeKeyConstraints$__clinit_(); + oncia_BuiltInFunctions$__clinit_(); + oncia_AllFunctions$__clinit_(); + oncia_UserDefinedFunctions$__clinit_(); + oncia_DropConstraintOnName$__clinit_(); + oncia_CreateIndex$__clinit_(); + oncia_DropIndexOnName$__clinit_(); + oncia_ShowRoles$__clinit_(); + oncia_RemoveHomeDatabaseAction$__clinit_(); + oncia_ShowUsers$__clinit_(); oncia_ShowCurrentUser$__clinit_(); - oncia_ShowDatabase$__clinit_(); + oncia_ShowSupportedPrivilegeCommand$__clinit_(); oncia_ShowPrivileges$__clinit_(); oncia_ShowPrivilegeCommands$__clinit_(); - oncia_ShowProceduresClause$__clinit_(); - oncia_ShowSettingsClause$__clinit_(); - oncia_ShowSupportedPrivilegeCommand$__clinit_(); - oncia_ShowUsers$__clinit_(); - oncia_ShowRoles$__clinit_(); - oncia_TerminateTransactionsClause$__clinit_(); - oncie_MatchMode$__clinit_(); - oncia_Merge$__clinit_(); - oncie_ExplicitParameter$__clinit_(); + oncia_AllGraphAction$__clinit_(); oncia_AllDatabaseAction$__clinit_(); - oncia_AccessDatabaseAction$__clinit_(); - oncia_StartDatabaseAction$__clinit_(); - oncia_StopDatabaseAction$__clinit_(); - oncia_AllIndexActions$__clinit_(); - oncia_CreateIndexAction$__clinit_(); - oncia_DropIndexAction$__clinit_(); - oncia_ShowIndexAction$__clinit_(); - oncia_AllConstraintActions$__clinit_(); - oncia_CreateConstraintAction$__clinit_(); - oncia_DropConstraintAction$__clinit_(); - oncia_ShowConstraintAction$__clinit_(); - oncia_AllTokenActions$__clinit_(); - oncia_CreatePropertyKeyAction$__clinit_(); + oncia_AllDbmsAction$__clinit_(); + oncia_CreateElementAction$__clinit_(); oncia_CreateNodeLabelAction$__clinit_(); oncia_CreateRelationshipTypeAction$__clinit_(); - oncia_AllTransactionActions$__clinit_(); + oncia_CreatePropertyKeyAction$__clinit_(); + oncia_DropUserAction$__clinit_(); + oncia_CreateUserAction$__clinit_(); + oncia_DropRoleAction$__clinit_(); + oncia_CreateRoleAction$__clinit_(); + oncia_DropDatabaseAction$__clinit_(); + oncia_CreateDatabaseAction$__clinit_(); + oncia_DropCompositeDatabaseAction$__clinit_(); + oncia_CreateCompositeDatabaseAction$__clinit_(); + oncia_DropAliasAction$__clinit_(); + oncia_CreateAliasAction$__clinit_(); + oncia_DropConstraintAction$__clinit_(); + oncia_DropIndexAction$__clinit_(); + oncia_ShowConstraintAction$__clinit_(); + oncia_ShowIndexAction$__clinit_(); oncia_ShowTransactionAction$__clinit_(); - oncia_TerminateTransactionAction$__clinit_(); - oncia_AllDbmsAction$__clinit_(); - oncia_AllUserActions$__clinit_(); + oncia_ShowAliasAction$__clinit_(); + oncia_ShowPrivilegeAction$__clinit_(); + oncia_ShowRoleAction$__clinit_(); + oncia_ShowServerAction$__clinit_(); oncia_ShowUserAction$__clinit_(); - oncia_AlterUserAction$__clinit_(); - oncia_CreateUserAction$__clinit_(); - oncia_DropUserAction$__clinit_(); - oncia_RenameUserAction$__clinit_(); + oncia_ShowSettingAction$__clinit_(); oncia_SetPasswordsAction$__clinit_(); - oncia_SetAuthAction$__clinit_(); oncia_SetUserStatusAction$__clinit_(); oncia_SetUserHomeDatabaseAction$__clinit_(); + oncia_SetDatabaseAccessAction$__clinit_(); + oncia_SetAuthAction$__clinit_(); + oncia_SetPropertyAction$__clinit_(); + oncia_SetLabelAction$__clinit_(); + oncia_RemoveLabelAction$__clinit_(); + oncia_RemoveRoleAction$__clinit_(); + oncia_RemovePrivilegeAction$__clinit_(); + oncia_WriteAction$__clinit_(); + oncia_AllConstraintActions$__clinit_(); + oncia_AllIndexActions$__clinit_(); + oncia_AccessDatabaseAction$__clinit_(); + oncia_AllTokenActions$__clinit_(); + oncia_StartDatabaseAction$__clinit_(); + oncia_StopDatabaseAction$__clinit_(); + oncia_TerminateTransactionAction$__clinit_(); + oncia_AllTransactionActions$__clinit_(); + oncia_AllAliasManagementActions$__clinit_(); + oncia_CompositeDatabaseManagementActions$__clinit_(); + oncia_AllDatabaseManagementActions$__clinit_(); oncia_ImpersonateUserAction$__clinit_(); + oncia_AllPrivilegeActions$__clinit_(); oncia_AllRoleActions$__clinit_(); - oncia_ShowRoleAction$__clinit_(); - oncia_CreateRoleAction$__clinit_(); - oncia_DropRoleAction$__clinit_(); + oncia_ServerManagementAction$__clinit_(); + oncia_AllUserActions$__clinit_(); oncia_RenameRoleAction$__clinit_(); + oncia_RenameUserAction$__clinit_(); + oncia_AssignPrivilegeAction$__clinit_(); oncia_AssignRoleAction$__clinit_(); - oncia_RemoveRoleAction$__clinit_(); - oncia_AllDatabaseManagementActions$__clinit_(); - oncia_CreateDatabaseAction$__clinit_(); - oncia_DropDatabaseAction$__clinit_(); - oncia_CompositeDatabaseManagementActions$__clinit_(); - oncia_CreateCompositeDatabaseAction$__clinit_(); - oncia_DropCompositeDatabaseAction$__clinit_(); - oncia_AlterDatabaseAction$__clinit_(); - oncia_SetDatabaseAccessAction$__clinit_(); - oncia_AllAliasManagementActions$__clinit_(); - oncia_CreateAliasAction$__clinit_(); - oncia_DropAliasAction$__clinit_(); oncia_AlterAliasAction$__clinit_(); - oncia_ShowAliasAction$__clinit_(); - oncia_AllPrivilegeActions$__clinit_(); - oncia_AssignPrivilegeAction$__clinit_(); - oncia_RemovePrivilegeAction$__clinit_(); - oncia_ShowPrivilegeAction$__clinit_(); - oncia_ExecuteFunctionAction$__clinit_(); - oncia_ExecuteBoostedFunctionAction$__clinit_(); + oncia_AlterDatabaseAction$__clinit_(); + oncia_AlterUserAction$__clinit_(); + oncia_ExecuteAdminProcedureAction$__clinit_(); oncia_ExecuteProcedureAction$__clinit_(); oncia_ExecuteBoostedProcedureAction$__clinit_(); - oncia_ExecuteAdminProcedureAction$__clinit_(); - oncia_ShowServerAction$__clinit_(); - oncia_ServerManagementAction$__clinit_(); - oncia_ShowSettingAction$__clinit_(); - oncia_AllGraphAction$__clinit_(); - oncia_WriteAction$__clinit_(); - oncia_CreateElementAction$__clinit_(); - oncia_MergeAdminAction$__clinit_(); - oncia_DeleteElementAction$__clinit_(); - oncia_SetLabelAction$__clinit_(); - oncia_RemoveLabelAction$__clinit_(); - oncia_SetPropertyAction$__clinit_(); + oncia_ExecuteFunctionAction$__clinit_(); + oncia_ExecuteBoostedFunctionAction$__clinit_(); + oncia_CreateIndexAction$__clinit_(); + oncia_CreateConstraintAction$__clinit_(); + oncia_TraverseAction$__clinit_(); oncia_MatchAction$__clinit_(); oncia_ReadAction$__clinit_(); - oncia_TraverseAction$__clinit_(); + oncia_MergeAdminAction$__clinit_(); + oncia_DeleteElementAction$__clinit_(); oncia_DestroyData$__clinit_(); oncia_DumpData$__clinit_(); oncia_Restrict$__clinit_(); oncia_CascadeAliases$__clinit_(); - oncia_DropConstraintOnName$__clinit_(); - oncia_DropIndexOnName$__clinit_(); - oncia_UsingJoinHint$__clinit_(); - oncie_MatchMode$DifferentRelationships$__clinit_(); + oncia_ShowDatabase$__clinit_(); + oncia_ShowAliases$__clinit_(); + oncia_NamespacedName$__clinit_(); + oncipvaf_LiteralBuilder$__clinit_0(); + oncipcd_DeprecatedChars__clinit_(); + oncipvaf_LiteralBuilder$__clinit_(); oncia_UsingIndexHint$SeekOrScan$__clinit_(); - oncie_ListComprehension$__clinit_(); - oncie_ReduceExpression$__clinit_(); - oncie_Ands$__clinit_(); - suc_NonFatal$__clinit_(); + oncipvaf_Cypher5AstUtil$__clinit_(); + oncia_NodeUniqueConstraintsCypher5$__clinit_(); + oncia_RelUniqueConstraintsCypher5$__clinit_(); + oncia_UniqueConstraintsCypher5$__clinit_(); + oncia_NodePropertyExistence$__clinit_(); oncia_NodePropertyUniqueness$__clinit_(); - oncia_RelationshipPropertyUniqueness$__clinit_(); oncia_NodeKey$__clinit_(); - oncia_RelationshipKey$__clinit_(); - oncia_NodePropertyExistence$__clinit_(); oncia_RelationshipPropertyExistence$__clinit_(); - oncia_PointCreateIndex$__clinit_(); + oncia_RelationshipPropertyUniqueness$__clinit_(); + oncia_RelationshipKey$__clinit_(); oncia_VectorCreateIndex$__clinit_(); - oncia_ShowAndTerminateColumn$__clinit_(); - oncia_UniqueConstraintsCypher5$__clinit_(); - oncia_NodeUniqueConstraintsCypher5$__clinit_(); - oncia_RelUniqueConstraintsCypher5$__clinit_(); - onciu_UnknownSize$__clinit_(); - onciu_NonEmptyList$__clinit_(); - oncifp_QualifiedName$__clinit_(); - oncia_FulltextCreateIndex$__clinit_(); - oncia_LookupCreateIndex$__clinit_(); - oncia_NamespacedName$__clinit_(); - oavra_PredictionMode__clinit_(); - oavr_BufferedTokenStream__clinit_(); - oncipl_UnicodeEscapeReplacementReader__clinit_(); - sm_Ordering$Long$__clinit_(); - sm_Ordering$Char$__clinit_(); - su_Sorting$__clinit_(); - sm_Ordering$Short$__clinit_(); - sm_Ordering$Byte$__clinit_(); - oavr_CodePointBuffer__clinit_(); - oncipl_CypherToken$__clinit_(); - oncias_SemanticCheckInterpreter$ExecutableCheck$__clinit_(); - oavr_CodePointBuffer$Builder__clinit_(); - oavr_CodePointBuffer$Type__clinit_(); - oavr_CodePointCharStream$CodePoint8BitCharStream__clinit_(); - oavr_CodePointCharStream$CodePoint16BitCharStream__clinit_(); - oavr_CodePointCharStream$CodePoint32BitCharStream__clinit_(); - oavra_LexerATNSimulator__clinit_(); - oncipl_CypherTokenFactory$__clinit_(); - oncipl_FullCypherTokenFactory$__clinit_(); - oavrm_IntegerList__clinit_(); - oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$__clinit_(); - oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$__clinit_(); - oavr_CommonTokenFactory__clinit_(); - oavr_ConsoleErrorListener__clinit_(); - oavrm_Array2DHashSet__clinit_(); - oavra_ATNConfigSet$ConfigEqualityComparator__clinit_(); - oecilmp_IntArrayList__clinit_(); - onih_Exceptions__clinit_(); - oavra_LexerMoreAction__clinit_(); - oavra_LexerPopModeAction__clinit_(); - oavra_LexerSkipAction__clinit_(); - oncip_CypherErrorStrategy$__clinit_(); - oavra_SingletonPredictionContext__clinit_(); - sm_Ordering$Implicits$__clinit_(); - onciuh_Try$__clinit_(); - oncipvaf_Cypher5SyntaxChecker$__clinit_(); - oncipvaf_Cypher25SyntaxChecker$__clinit_(); - onciuh_Math$__clinit_(); - oavra_ArrayPredictionContext__clinit_(); - oavra_PredictionMode$AltAndContextConfigEqualityComparator__clinit_(); - otcit_DoubleSynthesizer__clinit_(); - onciuh_fixedPoint$__clinit_(); - oncias_SemanticCheckableIterableOnce$__clinit_(); - oncias_SemanticCheckableOption$__clinit_(); - oncias_ExpressionTypeInfo$__clinit_(); - oncia_Order$__clinit_(); - oncie_Expression$__clinit_(); - oncil_LabelExpression$ColonDisjunction$__clinit_(); - oncil_LabelExpression$ColonConjunction$__clinit_(); - oncil_LabelExpression$Negation$__clinit_(); - oncil_LabelExpression$Wildcard$__clinit_(); - oncil_LabelExpression$Leaf$__clinit_(); - oncil_LabelExpression$DynamicLeaf$__clinit_(); - oncipvaf_DdlShowBuilder$ShowWrapper$__clinit_0(); - oncipvaf_LiteralBuilder$__clinit_0(); - oncipvaf_LiteralBuilder$__clinit_(); - oncipvaf_Cypher5AstUtil$__clinit_(); + oncia_TextCreateIndex$__clinit_(); + oncia_PointCreateIndex$__clinit_(); + oncia_ShowColumn$__clinit_(); oncipvaf_Cypher25AstUtil$__clinit_(); oncipvaf_DdlShowBuilder$ShowWrapper$__clinit_(); oncia_NodeUniqueConstraintsCypher25$__clinit_(); oncia_RelUniqueConstraintsCypher25$__clinit_(); oncia_UniqueConstraintsCypher25$__clinit_(); - oncil_NodeLabels$SomeUnknownLabels$__clinit_(); + oncia_FulltextCreateIndex$__clinit_(); + oncia_LookupCreateIndex$__clinit_(); + oncia_ShowIndexesClause$__clinit_(); + oncia_ShowSettingsClause$__clinit_(); oavr_CommonToken__clinit_(); + oncia_ShowAndTerminateColumn$__clinit_(); + oncie_MatchMode$__clinit_(); + oncie_NodePattern$WhereVariableInNodePatterns$__clinit_(); + oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$__clinit_(); + oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$__clinit_(); + oncie_CaseExpression$KeywordVariablesInWhenOperand$__clinit_(); + oncir_Deprecations$__clinit_(); + oncie_Expression$SemanticContext$Simple$__clinit_(); + oncia_ShowProceduresClause$__clinit_(); + oncia_ShowFunctionsClause$__clinit_(); + oncia_TerminateTransactionsClause$__clinit_(); + oncie_Pattern$SemanticContext$Expression$__clinit_(); + oncie_ReduceExpression$__clinit_(); + oncia_AliasedReturnItem$__clinit_(); + onciuh_Try$__clinit_(); + oncie_Pattern$SemanticContext$Match$__clinit_(); + oncie_Pattern$SemanticContext$Merge$__clinit_(); + oncie_Pattern$SemanticContext$Create$__clinit_(); + oncias_checkNoParamMapsWhenMatching$__clinit_(); + oncie_Pattern$SemanticContext$Insert$__clinit_(); + oncie_Pattern$SemanticContext$__clinit_(); + oncias_SemanticCheckableIterableOnce$__clinit_(); + otcit_DoubleSynthesizer__clinit_(); + oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$__clinit_(); + oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$__clinit_(); + suc_TailCalls$__clinit_(); + onciut_TailCallsUtil$__clinit_(); + oncie_Expression$__clinit_(); + oncil_NodeLabels$SomeUnknownLabels$__clinit_(); + onu_CypherVersion__clinit_(); + onu_UnicodeHelper__clinit_(); oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$__clinit_(); - onciuh_StringHelper$RichString$__clinit_(); + ong_ErrorMessageHolder__clinit_(); oncias_SemanticCheckContext$__clinit_(); - onciu_EmptyErrorMessageProvider$__clinit_(); cnsa_Main_resolver = null; }, jlr_AnnotatedElement = $rt_classWithoutFields(0), @@ -3003,7 +3037,7 @@ jl_Class_getDeclaredMethods = $this => { var$9 = $jsMethod.accessLevel; var$13 = otji_JS_functionAsObject($jsMethod.callable, "call"); var$12.$declaringClass = $this; - var$12.$name33 = $jsParameterTypes; + var$12.$name34 = $jsParameterTypes; var$12.$flags2 = $j; var$12.$accessLevel = var$9; var$12.$returnType = $returnType; @@ -3029,7 +3063,7 @@ jl_Class_findMethods = ($cls, $methods) => { $method = var$3[var$5]; if (!(jlr_Method_getModifiers($method) & 1) ? 0 : 1) { $signature = new jl_Class$MethodSignature; - $superclass = $method.$name33; + $superclass = $method.$name34; var$9 = jlr_Method_getParameterTypes($method); $iface = $method.$returnType; $signature.$name42 = $superclass; @@ -3084,7 +3118,7 @@ jl_Class_cast = ($this, $obj) => { var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $obj), $rt_s(8)), var$3); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$4)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$4)); $rt_throw(var$2); } return $obj; @@ -3191,33 +3225,22 @@ otp_Platform_getEnumConstants = var$1 => { onkae_SeverityLevel[c] = onkae_SeverityLevel_values; onkae_NotificationCategory[c] = onkae_NotificationCategory_values; ong_Condition[c] = ong_Condition_values; + ong_NotificationClassification[c] = ong_NotificationClassification_values; ong_GqlParams$ListParam[c] = ong_GqlParams$ListParam_values; ong_GqlParams$JoinStyle[c] = ong_GqlParams$JoinStyle_values; + ong_ErrorClassification[c] = ong_ErrorClassification_values; ong_GqlParams$NumberParam[c] = ong_GqlParams$NumberParam_values; onc_EntityType[c] = onc_EntityType_values; onkae_Status$Classification$TransactionEffect[c] = onkae_Status$Classification$TransactionEffect_values; - ong_NotificationClassification[c] = ong_NotificationClassification_values; - oncipcaf_CreateIndexTypes[c] = oncipcaf_CreateIndexTypes_values; - oncipcaf_ConstraintVersion[c] = oncipcaf_ConstraintVersion_values; - oncipcaf_ConstraintType[c] = oncipcaf_ConstraintType_values; - oncipcaf_ShowCommandFilterTypes[c] = oncipcaf_ShowCommandFilterTypes_values; - oncipcaf_ParameterType[c] = oncipcaf_ParameterType_values; - onciaf_ASTFactory$MergeActionType[c] = onciaf_ASTFactory$MergeActionType_values; - oncipcaf_AccessType[c] = oncipcaf_AccessType_values; - oncipcaf_ActionType[c] = oncipcaf_ActionType_values; - oncipcaf_HintIndexType[c] = oncipcaf_HintIndexType_values; - oncipcaf_ScopeType[c] = oncipcaf_ScopeType_values; - oncipcaf_CallInTxsOnErrorBehaviourType[c] = oncipcaf_CallInTxsOnErrorBehaviourType_values; - oncipj_ExpectBar[c] = oncipj_ExpectBar_values; - oncipcaf_ParserNormalForm[c] = oncipcaf_ParserNormalForm_values; - oncipcaf_ParserTrimSpecification[c] = oncipcaf_ParserTrimSpecification_values; - oncipj_EntityType[c] = oncipj_EntityType_values; oavra_PredictionMode[c] = oavra_PredictionMode_values; oavr_CodePointBuffer$Type[c] = oavr_CodePointBuffer$Type_values; - ong_ErrorClassification[c] = ong_ErrorClassification_values; - oncifp_SyntaxUsageMetricKey[c] = oncifp_SyntaxUsageMetricKey_values; oavra_ATNType[c] = oavra_ATNType_values; oavra_LexerActionType[c] = oavra_LexerActionType_values; + oncifp_SyntaxUsageMetricKey[c] = oncifp_SyntaxUsageMetricKey_values; + oncipcaf_HintIndexType[c] = oncipcaf_HintIndexType_values; + oncipcaf_ConstraintType[c] = oncipcaf_ConstraintType_values; + oncipcaf_ParserTrimSpecification[c] = oncipcaf_ParserTrimSpecification_values; + onu_CypherVersion[c] = onu_CypherVersion_values; otp_Platform_getEnumConstants = cls => { if (!cls.hasOwnProperty(c)) { return null; @@ -3231,7 +3254,7 @@ otp_Platform_getEnumConstants = var$1 => { }, otp_Platform_launchThread = var$1 => { let var$2, var$3, var$4; - var$1 = var$1.$_0803; + var$1 = var$1.$_0778; if (!jl_Object_isEmptyMonitor(var$1)) { var$2 = var$1.$monitor; if (var$2.$owner === null) { @@ -3239,9 +3262,9 @@ otp_Platform_launchThread = var$1 => { if (var$1 !== null && !otp_PlatformQueue_isEmpty$static(var$1)) { var$3 = otji_JSWrapper_maybeWrap(var$2.$enteringThreads.shift()); var$2.$enteringThreads = null; - var$1 = var$3.$_0361; - var$2 = var$3.$_1131; - var$4 = var$3.$_248; + var$1 = var$3.$_0347; + var$2 = var$3.$_1123; + var$4 = var$3.$_244; var$3 = var$3.$_315; jl_Thread_setCurrentThread(var$1); var$2 = var$2.$monitor; @@ -3274,23 +3297,23 @@ function jl_Throwable() { a.$writableStackTrace = 0; a.$suppressed = null; } -let jl_Throwable__init_ = $this => { +let jl_Throwable__init_0 = $this => { $this.$suppressionEnabled = 1; $this.$writableStackTrace = 1; }, jl_Throwable__init_6 = () => { let var_0 = new jl_Throwable(); - jl_Throwable__init_(var_0); + jl_Throwable__init_0(var_0); return var_0; }, -jl_Throwable__init_0 = ($this, $message) => { +jl_Throwable__init_ = ($this, $message) => { $this.$suppressionEnabled = 1; $this.$writableStackTrace = 1; $this.$message = $message; }, jl_Throwable__init_5 = var_0 => { let var_1 = new jl_Throwable(); - jl_Throwable__init_0(var_1, var_0); + jl_Throwable__init_(var_1, var_0); return var_1; }, jl_Throwable__init_1 = ($this, $message, $cause) => { @@ -3358,25 +3381,17 @@ jl_Throwable_addSuppressed = ($this, $exception) => { var$3[var$3.length - 1 | 0] = $exception; }, jl_Exception = $rt_classWithoutFields(jl_Throwable), -jl_Exception__init_ = $this => { - jl_Throwable__init_($this); -}, -jl_Exception__init_1 = () => { - let var_0 = new jl_Exception(); - jl_Exception__init_(var_0); - return var_0; +jl_Exception__init_ = ($this, $message) => { + jl_Throwable__init_($this, $message); }, -jl_Exception__init_0 = ($this, $message) => { - jl_Throwable__init_0($this, $message); -}, -jl_Exception__init_2 = var_0 => { +jl_Exception__init_0 = var_0 => { let var_1 = new jl_Exception(); - jl_Exception__init_0(var_1, var_0); + jl_Exception__init_(var_1, var_0); return var_1; }, jl_RuntimeException = $rt_classWithoutFields(jl_Exception), jl_RuntimeException__init_ = $this => { - jl_Throwable__init_($this); + jl_Throwable__init_0($this); }, jl_RuntimeException__init_2 = () => { let var_0 = new jl_RuntimeException(); @@ -3384,7 +3399,7 @@ jl_RuntimeException__init_2 = () => { return var_0; }, jl_RuntimeException__init_1 = ($this, $message) => { - jl_Throwable__init_0($this, $message); + jl_Throwable__init_($this, $message); }, jl_RuntimeException__init_0 = var_0 => { let var_1 = new jl_RuntimeException(); @@ -3446,7 +3461,7 @@ jl_String_charAt = ($this, $index) => { if ($index >= 0 && $index < $this.$nativeString.length) return $this.$nativeString.charCodeAt($index); var$2 = new jl_StringIndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); }, jl_String_codePointAt = ($this, $index) => { @@ -3594,7 +3609,7 @@ jl_String_substring = ($this, $beginIndex, $endIndex) => { if ($beginIndex >= 0 && var$4 <= 0 && $endIndex <= $length) return jl_String__init_0($this.$nativeString.substring($beginIndex, $endIndex)); var$5 = new jl_StringIndexOutOfBoundsException; - jl_Throwable__init_(var$5); + jl_Throwable__init_0(var$5); $rt_throw(var$5); }, jl_String_substring0 = ($this, $beginIndex) => { @@ -3753,9 +3768,7 @@ jl_String_getBytes = ($this, $charset) => { $buffer = jn_CharBuffer_wrap($rt_fastStringToCharArray($this.$nativeString)); a: { try { - var$3 = jnci_UTF8Charset_newEncoder($charset); - jnc_CodingErrorAction_$callClinit(); - $buffer = jnc_CharsetEncoder_encode0(jnc_CharsetEncoder_onUnmappableCharacter(jnc_CharsetEncoder_onMalformedInput(var$3, jnc_CodingErrorAction_REPLACE), jnc_CodingErrorAction_REPLACE), $buffer); + $buffer = jnc_CharsetEncoder_encode0(jnc_CharsetEncoder_onUnmappableCharacter(jnc_CharsetEncoder_onMalformedInput(jnci_UTF8Charset_newEncoder($charset), jnc_CodingErrorAction_REPLACE), jnc_CodingErrorAction_REPLACE), $buffer); break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -3790,27 +3803,34 @@ jl_String_hashCode = $this => { } return $this.$hashCode5; }, -jl_String_toLowerCase = $this => { +jl_String_toLowerCase0 = $this => { let $lowerCase; $lowerCase = $this.$nativeString.toLowerCase(); if ($lowerCase !== $this.$nativeString) $this = jl_String__init_0($lowerCase); return $this; }, -jl_String_toLowerCase0 = ($this, $locale) => { +jl_String_toLowerCase = ($this, $locale) => { let $upperCase; $upperCase = $this.$nativeString.toLocaleLowerCase((ju_Locale_toLanguageTag($locale)).$nativeString); if ($upperCase !== $this.$nativeString) $this = jl_String__init_0($upperCase); return $this; }, -jl_String_toUpperCase = $this => { +jl_String_toUpperCase0 = $this => { let $upperCase; $upperCase = $this.$nativeString.toUpperCase(); if ($upperCase !== $this.$nativeString) $this = jl_String__init_0($upperCase); return $this; }, +jl_String_toUpperCase = ($this, $locale) => { + let $upperCase; + $upperCase = $this.$nativeString.toLocaleUpperCase((ju_Locale_toLanguageTag($locale)).$nativeString); + if ($upperCase !== $this.$nativeString) + $this = jl_String__init_0($upperCase); + return $this; +}, jl_String_matches = ($this, $regex) => { return jur_Matcher_matches(jur_Pattern_matcher(jur_Pattern_compile($regex), $this)); }, @@ -3864,18 +3884,18 @@ jl_String_join = ($delimiter, $elements) => { return $rt_s(4); $sb = new jl_StringBuilder; jl_AbstractStringBuilder__init_($sb); - jl_AbstractStringBuilder_append1($sb, $iter.$next()); + jl_AbstractStringBuilder_append2($sb, $iter.$next()); while ($iter.$hasNext()) { - jl_AbstractStringBuilder_append1($sb, $delimiter); - jl_AbstractStringBuilder_append1($sb, $iter.$next()); + jl_AbstractStringBuilder_append2($sb, $delimiter); + jl_AbstractStringBuilder_append2($sb, $iter.$next()); } return jl_AbstractStringBuilder_toString($sb); -}, -jl_String_repeat = ($this, $count) => { +}; +let jl_String_repeat = ($this, $count) => { let var$2, $chars, var$4, $j, $i, var$7, var$8; if ($count < 0) { var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } if ($count == 1) @@ -3904,12 +3924,12 @@ jl_String_repeat = ($this, $count) => { return jl_String_fromArray($chars); } var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } return jl_String_EMPTY; -}; -let jl_String_compareTo0 = ($this, var$1) => { +}, +jl_String_compareTo0 = ($this, var$1) => { return jl_String_compareTo($this, var$1); }, jl_String__clinit_ = () => { @@ -3932,29 +3952,24 @@ jl_Integer__init_ = var_0 => { jl_Integer__init_0(var_1, var_0); return var_1; }, -jl_Integer_toString0 = ($i, $radix) => { - if (!($radix >= 2 && $radix <= 36)) - $radix = 10; - return (jl_AbstractStringBuilder_append5(jl_AbstractStringBuilder__init_1(20), $i, $radix)).$toString(); -}, jl_Integer_toHexString = $i => { return otci_IntegerUtil_toUnsignedLogRadixString($i, 4); }, jl_Integer_toString = $i => { - return jl_Integer_toString0($i, 10); + return (jl_AbstractStringBuilder_append5(jl_AbstractStringBuilder__init_1(20), $i, 10)).$toString(); }, -jl_Integer_parseInt0 = ($s, $radix) => { +jl_Integer_parseInt = ($s, $radix) => { if ($s !== null) return jl_Integer_parseIntImpl($s, 0, $s.$nativeString.length, $radix); $s = new jl_NumberFormatException; - jl_Throwable__init_0($s, $rt_s(12)); + jl_Throwable__init_($s, $rt_s(12)); $rt_throw($s); }, jl_Integer_parseIntImpl = ($s, $beginIndex, $endIndex, $radix) => { let $negative, $digit, $value, $maxValue, var$9, var$10, var$11, var$12; if ($beginIndex == $endIndex) { $s = new jl_NumberFormatException; - jl_Throwable__init_0($s, $rt_s(13)); + jl_Throwable__init_($s, $rt_s(13)); $rt_throw($s); } if ($radix >= 2 && $radix <= 36) { @@ -3976,7 +3991,7 @@ jl_Integer_parseIntImpl = ($s, $beginIndex, $endIndex, $radix) => { $maxValue = 1 + (2147483647 / $radix | 0) | 0; if ($digit == $endIndex) { $s = new jl_NumberFormatException; - jl_Throwable__init_($s); + jl_Throwable__init_0($s); $rt_throw($s); } while ($digit < $endIndex) { @@ -3989,7 +4004,7 @@ jl_Integer_parseIntImpl = ($s, $beginIndex, $endIndex, $radix) => { $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(14)), var$11); - jl_Throwable__init_0(var$10, jl_AbstractStringBuilder_toString($s)); + jl_Throwable__init_(var$10, jl_AbstractStringBuilder_toString($s)); $rt_throw(var$10); } if ($digit >= $radix) { @@ -3998,12 +4013,12 @@ jl_Integer_parseIntImpl = ($s, $beginIndex, $endIndex, $radix) => { $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($s, $rt_s(15)), $radix), $rt_s(9)), var$11); - jl_Throwable__init_0(var$10, jl_AbstractStringBuilder_toString($s)); + jl_Throwable__init_(var$10, jl_AbstractStringBuilder_toString($s)); $rt_throw(var$10); } if ($value > $maxValue) { $s = new jl_NumberFormatException; - jl_Throwable__init_0($s, $rt_s(16)); + jl_Throwable__init_($s, $rt_s(16)); $rt_throw($s); } $value = $rt_imul($radix, $value) + $digit | 0; @@ -4015,7 +4030,7 @@ jl_Integer_parseIntImpl = ($s, $beginIndex, $endIndex, $radix) => { $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(17)), var$11); - jl_Throwable__init_0(var$10, jl_AbstractStringBuilder_toString($s)); + jl_Throwable__init_(var$10, jl_AbstractStringBuilder_toString($s)); $rt_throw(var$10); } $digit = var$9; @@ -4028,11 +4043,11 @@ jl_Integer_parseIntImpl = ($s, $beginIndex, $endIndex, $radix) => { $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append0(jl_StringBuilder_append($s, $rt_s(18)), $radix); - jl_Throwable__init_0(var$12, jl_AbstractStringBuilder_toString($s)); + jl_Throwable__init_(var$12, jl_AbstractStringBuilder_toString($s)); $rt_throw(var$12); }, -jl_Integer_parseInt = $s => { - return jl_Integer_parseInt0($s, 10); +jl_Integer_parseInt0 = $s => { + return jl_Integer_parseInt($s, 10); }, jl_Integer_valueOf = $i => { let var$2, var$3; @@ -4066,7 +4081,7 @@ jl_Integer_floatValue = $this => { jl_Integer_doubleValue = $this => { return $this.$value4; }, -jl_Integer_toString1 = $this => { +jl_Integer_toString0 = $this => { return jl_Integer_toString($this.$value4); }, jl_Integer_hashCode = $this => { @@ -4209,7 +4224,7 @@ jl_AbstractStringBuilder_insert = ($this, $index, $string) => { return $this; } $string = new jl_StringIndexOutOfBoundsException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); }, jl_AbstractStringBuilder_append5 = ($this, $value, $radix) => { @@ -4682,10 +4697,10 @@ jl_AbstractStringBuilder_charAt = ($this, $index) => { if ($index >= 0 && $index < $this.$length1) return $this.$buffer.data[$index]; var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); }, -jl_AbstractStringBuilder_append2 = ($this, $s, $start, $end) => { +jl_AbstractStringBuilder_append1 = ($this, $s, $start, $end) => { return $this.$insert2($this.$length1, $s, $start, $end); }, jl_AbstractStringBuilder_insert0 = ($this, $index, $s, $i, $end) => { @@ -4702,10 +4717,10 @@ jl_AbstractStringBuilder_insert0 = ($this, $index, $s, $i, $end) => { return $this; } $s = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($s); + jl_Throwable__init_0($s); $rt_throw($s); }, -jl_AbstractStringBuilder_append1 = ($this, $s) => { +jl_AbstractStringBuilder_append2 = ($this, $s) => { return $this.$append4($s, 0, $s.$length()); }, jl_AbstractStringBuilder_append4 = ($this, $chars, $offset, $len) => { @@ -4790,7 +4805,7 @@ jl_StringBuilder_append0 = ($this, $value) => { jl_AbstractStringBuilder_append5($this, $value, 10); return $this; }, -jl_StringBuilder_append5 = ($this, $value) => { +jl_StringBuilder_append4 = ($this, $value) => { let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; var$2 = $this.$length1; var$3 = 1; @@ -4851,7 +4866,7 @@ jl_StringBuilder_append5 = ($this, $value) => { } return $this; }, -jl_StringBuilder_append6 = ($this, $value) => { +jl_StringBuilder_append5 = ($this, $value) => { jl_AbstractStringBuilder_insert4($this, $this.$length1, $value); return $this; }, @@ -4859,10 +4874,6 @@ jl_StringBuilder_append1 = ($this, $c) => { jl_AbstractStringBuilder_append0($this, $c); return $this; }, -jl_StringBuilder_append3 = ($this, $chars) => { - jl_AbstractStringBuilder_append3($this, $chars); - return $this; -}, jl_StringBuilder_appendCodePoint = ($this, $codePoint) => { let var$2, var$3, var$4; if ($codePoint < 65536) @@ -4880,7 +4891,7 @@ jl_StringBuilder_appendCodePoint = ($this, $codePoint) => { } return $this; }, -jl_StringBuilder_append4 = ($this, $b) => { +jl_StringBuilder_append3 = ($this, $b) => { jl_AbstractStringBuilder_insert($this, $this.$length1, !$b ? $rt_s(19) : $rt_s(20)); return $this; }, @@ -4912,7 +4923,7 @@ jl_StringBuilder_delete = ($this, $start, $end) => { } } var$8 = new jl_StringIndexOutOfBoundsException; - jl_Throwable__init_(var$8); + jl_Throwable__init_0(var$8); $rt_throw(var$8); }, jl_StringBuilder_deleteCharAt = ($this, $index) => { @@ -4932,28 +4943,22 @@ jl_StringBuilder_deleteCharAt = ($this, $index) => { } } var$5 = new jl_StringIndexOutOfBoundsException; - jl_Throwable__init_(var$5); + jl_Throwable__init_0(var$5); $rt_throw(var$5); }, -jl_StringBuilder_substring = ($this, var$1, var$2) => { +jl_StringBuilder_subSequence = ($this, var$1, var$2) => { let var$3; if (var$1 <= var$2 && var$1 >= 0 && var$2 <= $this.$length1) return jl_String__init_1($this.$buffer, var$1, var$2 - var$1 | 0); var$3 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$3); + jl_Throwable__init_0(var$3); $rt_throw(var$3); }, -jl_StringBuilder_setLength = ($this, var$1) => { - $this.$length1 = var$1; -}, -jl_StringBuilder_subSequence = ($this, var$1, var$2) => { - return jl_StringBuilder_substring($this, var$1, var$2); -}, jl_StringBuilder_insert0 = ($this, var$1, var$2, var$3, var$4) => { jl_AbstractStringBuilder_insert1($this, var$1, var$2, var$3, var$4); return $this; }, -jl_StringBuilder_append7 = ($this, var$1, var$2, var$3) => { +jl_StringBuilder_append6 = ($this, var$1, var$2, var$3) => { jl_AbstractStringBuilder_append4($this, var$1, var$2, var$3); return $this; }, @@ -4961,11 +4966,11 @@ jl_StringBuilder_insert = ($this, var$1, var$2, var$3, var$4) => { jl_AbstractStringBuilder_insert0($this, var$1, var$2, var$3, var$4); return $this; }, -jl_StringBuilder_append9 = ($this, var$1, var$2, var$3) => { - jl_AbstractStringBuilder_append2($this, var$1, var$2, var$3); +jl_StringBuilder_append8 = ($this, var$1, var$2, var$3) => { + jl_AbstractStringBuilder_append1($this, var$1, var$2, var$3); return $this; -}; -let jl_StringBuilder_isEmpty = $this => { +}, +jl_StringBuilder_isEmpty = $this => { return $this.$length1 ? 0 : 1; }, jl_StringBuilder_charAt = ($this, var$1) => { @@ -4973,8 +4978,8 @@ jl_StringBuilder_charAt = ($this, var$1) => { }, jl_StringBuilder_length = $this => { return $this.$length1; -}, -jl_StringBuilder_toString = $this => { +}; +let jl_StringBuilder_toString = $this => { return jl_AbstractStringBuilder_toString($this); }, jl_StringBuilder_ensureCapacity = ($this, var$1) => { @@ -4988,8 +4993,8 @@ jl_StringBuilder_insert2 = ($this, var$1, var$2) => { jl_AbstractStringBuilder_insert($this, var$1, var$2); return $this; }, -jl_StringBuilder_append8 = ($this, var$1) => { - jl_AbstractStringBuilder_append1($this, var$1); +jl_StringBuilder_append7 = ($this, var$1) => { + jl_AbstractStringBuilder_append2($this, var$1); return $this; }, otci_IntegerUtil = $rt_classWithoutFields(), @@ -5203,7 +5208,6 @@ let cnsa_CustomSignatureResolver_argToInputDescription = ($this, $arg) => { let $argName, $argType, $defaultArg, $isDeprecated, $defaultValue, $value; a: { $argName = $rt_str($arg.name); - cnsa_CustomSignatureResolver$_$callClinit(); $argType = cnsa_CustomSignatureResolver$_toCypherType(cnsa_CustomSignatureResolver$_MODULE$, $rt_str($arg.type)); $defaultArg = $arg.default; $isDeprecated = $arg.isDeprecated ? 1 : 0; @@ -5222,10 +5226,7 @@ let cnsa_CustomSignatureResolver_argToInputDescription = ($this, $arg) => { $defaultValue = s_Some__init_(cnsa_CustomStringValue__init_($arg)); } } - $arg = new oncifp_FieldSignature; - oncifp_FieldSignature$_$callClinit(); - oncifp_FieldSignature__init_($arg, $argName, $argType, $defaultValue, $isDeprecated, 0, null); - return $arg; + return oncifp_FieldSignature__init_($argName, $argType, $defaultValue, $isDeprecated, 0, null); }, cnsa_CustomSignatureResolver_toProcedureSignature = ($this, $procedure) => { let $name, $nameChunks, $numChunks, $qualifiedName, $argumentsDescription, $inputSignature, $returnsDescription, $outputSignature, var$10, $accessMode, $x$8, $x$9, $x$10; @@ -5238,7 +5239,7 @@ cnsa_CustomSignatureResolver_toProcedureSignature = ($this, $procedure) => { $argumentsDescription = otji_JS_unwrapArray($rt_cls(otji_JSWrapper), $procedure.argumentDescription); $nameChunks = sc_ArrayOps$_MODULE$; $name = new cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_0; - $name.$_0662 = $this; + $name.$_0654 = $this; sr_ClassTag$_$callClinit(); $inputSignature = sc_ArrayOps$_map$extension($nameChunks, $argumentsDescription, $name, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncifp_FieldSignature))); $returnsDescription = otji_JS_unwrapArray($rt_cls(otji_JSWrapper), $procedure.returnDescription); @@ -5250,28 +5251,24 @@ cnsa_CustomSignatureResolver_toProcedureSignature = ($this, $procedure) => { switch (var$10) { case -1854658143: if (jl_String_equals($rt_s(30), $procedure)) { - oncifp_ProcedureSchemaWriteAccess$_$callClinit(); $accessMode = oncifp_ProcedureSchemaWriteAccess$_MODULE$; break a; } break b; case 2091684: if (jl_String_equals($rt_s(31), $procedure)) { - oncifp_ProcedureDbmsAccess$_$callClinit(); $accessMode = oncifp_ProcedureDbmsAccess$_MODULE$; break a; } break b; case 2511254: if (jl_String_equals($rt_s(32), $procedure)) { - oncifp_ProcedureReadOnlyAccess$_$callClinit(); $accessMode = oncifp_ProcedureReadOnlyAccess$_MODULE$; break a; } break b; case 82862015: if (jl_String_equals($rt_s(33), $procedure)) { - oncifp_ProcedureReadWriteAccess$_$callClinit(); $accessMode = oncifp_ProcedureReadWriteAccess$_MODULE$; break a; } @@ -5279,13 +5276,11 @@ cnsa_CustomSignatureResolver_toProcedureSignature = ($this, $procedure) => { default: } } - oncifp_ProcedureReadOnlyAccess$_$callClinit(); $accessMode = oncifp_ProcedureReadOnlyAccess$_MODULE$; } $x$8 = s_LowPriorityImplicits2_copyArrayToImmutableIndexedSeq(s_Predef$_MODULE$, $inputSignature); $x$9 = s_Some__init_(s_LowPriorityImplicits2_copyArrayToImmutableIndexedSeq(s_Predef$_MODULE$, $outputSignature)); $x$10 = s_None$_MODULE$; - oncifp_ProcedureSignature$_$callClinit(); $procedure = new oncifp_ProcedureSignature; $procedure.$name10 = $qualifiedName; $procedure.$inputSignature0 = $x$8; @@ -5312,7 +5307,7 @@ ju_Comparator = $rt_classWithoutFields(0), jl_String$_clinit_$lambda$_115_0 = $rt_classWithoutFields(); function jl_Character() { jl_Object.call(this); - this.$value11 = 0; + this.$value12 = 0; } let jl_Character_TYPE = null, jl_Character_digitMapping = null, @@ -5325,16 +5320,13 @@ jl_Character_$$metadata$$1 = null, jl_Character_$$metadata$$3 = null, jl_Character_$$metadata$$4 = null, jl_Character__init_0 = ($this, $value) => { - $this.$value11 = $value; + $this.$value12 = $value; }, jl_Character__init_ = var_0 => { let var_1 = new jl_Character(); jl_Character__init_0(var_1, var_0); return var_1; }, -jl_Character_charValue = $this => { - return $this.$value11; -}, jl_Character_valueOf = $value => { let var$2, $result; var$2 = jl_Character_characterCache.data; @@ -5348,15 +5340,15 @@ jl_Character_valueOf = $value => { return $result; }, jl_Character_toString0 = $this => { - return jl_Character_toString($this.$value11); + return jl_Character_toString($this.$value12); }, jl_Character_equals = ($this, $other) => { if ($this === $other) return 1; - return $other instanceof jl_Character && $other.$value11 == $this.$value11 ? 1 : 0; + return $other instanceof jl_Character && $other.$value12 == $this.$value12 ? 1 : 0; }, jl_Character_hashCode = $this => { - return $this.$value11; + return $this.$value12; }, jl_Character_toString = $c => { let var$2, var$3; @@ -5510,7 +5502,7 @@ jl_Character_toChars = $codePoint => { let var$2, var$3, var$4; if (!jl_Character_isValidCodePoint($codePoint)) { var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } if ($codePoint < 65536) { @@ -5617,7 +5609,7 @@ jl_Character_getType = $codePoint => { while ($l <= $u) { $i = ($l + $u | 0) / 2 | 0; $range = $classes[$i]; - if ($codePoint >= $range.$end6) + if ($codePoint >= $range.$end5) $l = $i + 1 | 0; else { $u = $range.$start11; @@ -5698,7 +5690,7 @@ jl_Character_isWhitespace = $codePoint => { }, jl_Character_compareTo = ($this, var$1) => { var$1 = var$1; - return $this.$value11 - var$1.$value11 | 0; + return $this.$value12 - var$1.$value12 | 0; }, jl_Character__clinit_ = () => { jl_Character_TYPE = $rt_cls($rt_charcls); @@ -5742,9 +5734,9 @@ jl_Character_obtainClasses$$create = () => { + "^/A#^.A$^*A(^O ^(A)^/A%^*A(^*A(b=4# ^XAFJ+b \'1 &b %b %b ?<#&AA&b Y !&A\'&b =$ &A#&b ;!&A/&b PU!&A0&b M* &b CG b&?) b C8 &b *.!&A&&b ?!!&b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b %b 2R!1A?b1A! b # b\'Q$ b %b %b %b 1Y$3b %b %b %b ^a$3A#3b %b %b %b ^a$3"}; }, otj_JSObject = $rt_classWithoutFields(0), -otjc_JSUndefined = $rt_classWithoutFields(); -let jlr_Array = $rt_classWithoutFields(), -jlr_Array_getLength = var$1 => { +otjc_JSUndefined = $rt_classWithoutFields(), +jlr_Array = $rt_classWithoutFields(); +let jlr_Array_getLength = var$1 => { if (var$1 === null || var$1.constructor.$meta.item === 'undefined') { $rt_throw(jl_IllegalArgumentException__init_()); } @@ -5753,18 +5745,18 @@ jlr_Array_getLength = var$1 => { jlr_Array_newInstance = (var$1, $length) => { if (var$1 === null) { var$1 = new jl_NullPointerException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); } if (var$1 === $rt_cls($rt_voidcls)) { var$1 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); } if ($length >= 0) return jlr_Array_newInstanceImpl(var$1.$platformClass, $length); var$1 = new jl_NegativeArraySizeException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); }, jlr_Array_newInstanceImpl = (var$1, var$2) => { @@ -5811,8 +5803,8 @@ sc_StringOps$_stripMargin$extension = ($this, $$this) => { var$3.$scala$collection$StringOps$$anon$$len = $$this.$nativeString.length; var$3.$scala$collection$StringOps$$anon$$index = 0; $$this = new sc_StringOps$$stripMargin$extension$lambda$_68_0; - $$this.$_0670 = 124; - $$this.$_1234 = var$2; + $$this.$_0659 = 124; + $$this.$_1225 = var$2; sc_IterableOnceOps_foreach$(var$3, $$this); return jl_AbstractStringBuilder_toString(var$2); }, @@ -5848,7 +5840,7 @@ sc_StringOps$_r$extension = ($this, $$this) => { sc_StringOps$_format$extension = ($this, $$this, $args) => { let var$3; var$3 = new sc_StringOps$$format$extension$lambda$_92_0; - var$3.$_01173 = $$this; + var$3.$_01151 = $$this; var$3 = sci_ArraySeq_map($args, var$3); sr_ClassTag$_$callClinit(); return jl_String_format($$this, sc_IterableOnceOps_toArray$(var$3, sr_ClassTag$_AnyRef(sr_ClassTag$_MODULE$))); @@ -5923,9 +5915,12 @@ s_Predef$_require = ($this, $requirement) => { if ($requirement) return; var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$2, $rt_s(36)); + jl_Throwable__init_(var$2, $rt_s(36)); $rt_throw(var$2); }, +s_Predef$_ArrowAssoc = ($this, $self) => { + return $self; +}, s_Predef$_augmentString = ($this, $x) => { return $x; }, @@ -5936,15 +5931,15 @@ s_Predef$_println = ($this, $x) => { s_Predef$_char2Character = ($this, $x) => { return jl_Character_valueOf($x); }, +s_Predef$_int2Integer = ($this, $x) => { + return jl_Integer_valueOf($x); +}, s_Predef$_long2Long = ($this, $x) => { return jl_Long_valueOf($x); }, s_Predef$_double2Double = ($this, $x) => { return jl_Double_valueOf($x); }, -s_Predef$_Integer2int = ($this, $x) => { - return sr_BoxesRunTime_unboxToInt($x); -}, s_Predef$_Long2long = ($this, $x) => { return sr_BoxesRunTime_unboxToLong($x); }, @@ -6193,16 +6188,23 @@ sc_ArrayOps$_boxed$1 = ($len$1, $$this$2, $ord$1) => { return s_Array$_copyAs(s_Array$_MODULE$, $a_0, $len$1, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, jl_Class_getComponentType(jl_Object_getClass($$this$2)))); }, s_Function1 = $rt_classWithoutFields(0), +s_Function1_andThen = ($this, $g) => { + let var$2; + var$2 = new s_Function1$andThen$lambda$_5_0; + var$2.$_01065 = $this; + var$2.$_1362 = $g; + return var$2; +}, s_Function1_toString = $this => { return $rt_s(37); }; function cnsa_CustomSignatureResolver$_init_$lambda$_15_0() { jl_Object.call(this); - this.$_0401 = null; + this.$_0389 = null; } let cnsa_CustomSignatureResolver$_init_$lambda$_15_0_apply = (var$0, var$1) => { var$1 = otji_JSWrapper_unwrap(var$1); - var$1 = cnsa_CustomSignatureResolver_toProcedureSignature(var$0.$_0401, var$1); + var$1 = cnsa_CustomSignatureResolver_toProcedureSignature(var$0.$_0389, var$1); return s_Tuple2__init_(var$1.$name10, var$1); }, sr_ClassTag$ = $rt_classWithoutFields(), @@ -6254,7 +6256,7 @@ sr_ClassTag$__clinit_ = () => { sr_ClassTag$_AnyRef0 = sr_Manifest$_AnyRef; sr_ClassTag$_Nothing0 = sr_Manifest$_Nothing; sr_ClassTag$_Null = sr_Manifest$_Null; - var$1 = jl_System_getProperty0($rt_s(38)); + var$1 = jl_System_getProperty($rt_s(38)); sr_ClassTag$_cacheDisabled = var$1 !== null && (jl_Boolean_valueOf(jl_Boolean_parseBoolean(var$1))).$value3 ? 1 : 0; }, sr_ClassTag$_Byte = $this => { @@ -6320,9 +6322,6 @@ sr_ClassTag$_apply = ($this, $runtimeClass1) => { }, s_Equals = $rt_classWithoutFields(0), s_Product = $rt_classWithoutFields(0), -s_Product_$init$ = $$this => { - return; -}, s_Product2 = $rt_classWithoutFields(0); function s_Tuple2() { let a = this; jl_Object.call(a); @@ -6347,7 +6346,7 @@ s_Tuple2_productElement = ($this, $n) => { jl_AbstractStringBuilder__init_0(var$2, 32); var$2 = jl_StringBuilder_append0(var$2, $n); jl_AbstractStringBuilder_append(var$2, $rt_s(39)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$2)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$2)); $rt_throw(var$3); } var$2 = $this.$_1(); @@ -6399,9 +6398,6 @@ s_Tuple2_equals = ($this, $x$1) => { s_Tuple2__1$mcZ$sp = $this => { return sr_BoxesRunTime_unboxToBoolean($this.$_1()); }, -s_Tuple2__1$mcC$sp = $this => { - return sr_BoxesRunTime_unboxToChar($this.$_1()); -}, s_Tuple2__1$mcI$sp = $this => { return sr_BoxesRunTime_unboxToInt($this.$_1()); }, @@ -6432,12 +6428,12 @@ s_$less$colon$less$_refl = $this => { }; function cnsa_CustomSignatureResolver$_init_$lambda$_15_1() { jl_Object.call(this); - this.$_0903 = null; + this.$_0886 = null; } let cnsa_CustomSignatureResolver$_init_$lambda$_15_1_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; var$1 = otji_JSWrapper_unwrap(var$1); - var$2 = var$0.$_0903; + var$2 = var$0.$_0886; var$3 = $rt_str(var$1.name); var$4 = sc_ArrayOps$_MODULE$; s_Predef$_$callClinit(); @@ -6447,18 +6443,16 @@ let cnsa_CustomSignatureResolver$_init_$lambda$_15_1_apply = (var$0, var$1) => { var$7 = otji_JS_unwrapArray($rt_cls(otji_JSWrapper), var$1.argumentDescription); var$4 = sc_ArrayOps$_MODULE$; var$8 = new cnsa_CustomSignatureResolver$toFunctionSignature$lambda$_4_0; - var$8.$_0599 = var$2; + var$8.$_0589 = var$2; sr_ClassTag$_$callClinit(); var$7 = sc_ArrayOps$_map$extension(var$4, var$7, var$8, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncifp_FieldSignature))); - cnsa_CustomSignatureResolver$_$callClinit(); var$2 = cnsa_CustomSignatureResolver$_toCypherType(cnsa_CustomSignatureResolver$_MODULE$, $rt_str(var$1.returnDescription)); var$9 = var$1.aggregating ? 1 : 0; var$10 = var$1.isBuiltIn ? 1 : 0; var$1 = s_LowPriorityImplicits2_copyArrayToImmutableIndexedSeq(s_Predef$_MODULE$, var$7); var$4 = s_None$_MODULE$; - oncifp_UserFunctionSignature$_$callClinit(); var$3 = new oncifp_UserFunctionSignature; - var$3.$name15 = var$6; + var$3.$name16 = var$6; var$3.$inputSignature = var$1; var$3.$outputType1 = var$2; var$3.$deprecationInfo0 = var$4; @@ -6500,7 +6494,7 @@ ju_Objects_requireNonNull0 = ($obj, $message) => { if ($obj !== null) return $obj; $obj = new jl_NullPointerException; - jl_Throwable__init_0($obj, $message); + jl_Throwable__init_($obj, $message); $rt_throw($obj); }, ju_Objects_checkFromIndexSize = ($fromIndex, $size, $length) => { @@ -6508,7 +6502,7 @@ ju_Objects_checkFromIndexSize = ($fromIndex, $size, $length) => { if ($fromIndex >= 0 && $size >= 0 && $size <= ($length - $fromIndex | 0)) return $fromIndex; var$4 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$4); + jl_Throwable__init_0(var$4); $rt_throw(var$4); }, otjc_JSWeakRef = $rt_classWithoutFields(), @@ -6532,7 +6526,7 @@ otji_JSWrapper$_clinit_$lambda$_33_1_accept$exported$0 = (var$0, var$1) => { jl_NullPointerException = $rt_classWithoutFields(jl_RuntimeException), jl_IllegalArgumentException = $rt_classWithoutFields(jl_RuntimeException), jl_IllegalArgumentException__init_1 = $this => { - jl_Throwable__init_($this); + jl_Throwable__init_0($this); }, jl_IllegalArgumentException__init_ = () => { let var_0 = new jl_IllegalArgumentException(); @@ -6540,7 +6534,7 @@ jl_IllegalArgumentException__init_ = () => { return var_0; }, jl_IllegalArgumentException__init_0 = ($this, $message) => { - jl_Throwable__init_0($this, $message); + jl_Throwable__init_($this, $message); }, jl_IllegalArgumentException__init_2 = var_0 => { let var_1 = new jl_IllegalArgumentException(); @@ -6657,13 +6651,13 @@ sc_IterableOnceOps_reduceLeft$ = ($$this, $op) => { } if (!$$this.$knownSize()) { $$this = new jl_UnsupportedOperationException; - jl_Throwable__init_0($$this, $rt_s(44)); + jl_Throwable__init_($$this, $rt_s(44)); $rt_throw($$this); } var$3 = $$this.$iterator0(); if (!var$3.$hasNext()) { $op = new jl_UnsupportedOperationException; - jl_Throwable__init_0($op, $rt_s(44)); + jl_Throwable__init_($op, $rt_s(44)); $rt_throw($op); } $$this = var$3.$next(); @@ -6721,7 +6715,7 @@ sc_IterableOnceOps_mkString$ = ($$this, $start, $sep, $end) => { }, sc_IterableOnceOps_addString$ = ($$this, $b, $start, $sep, $end) => { let var$6; - var$6 = $b.$underlying8; + var$6 = $b.$underlying7; if ($start.$nativeString.length) jl_AbstractStringBuilder_append(var$6, $start); a: { @@ -6846,7 +6840,7 @@ sc_IterableOps_concat$ = ($$this, $suffix) => { else { $$this = $$this.$iterator0(); var$4 = new sc_IterableOps$concat$lambda$_94_0; - var$4.$_084 = $suffix; + var$4.$_077 = $suffix; if ($$this === null) $rt_throw(null); $suffix = $$this.$concat0(var$4); @@ -6891,9 +6885,9 @@ sc_AbstractIterable_headOption = $this => { sc_AbstractIterable_last = $this => { let var$1, var$2; var$1 = onciuci_ListSet_iterator($this); - var$2 = scc_JavaCollectionWrappers$JIteratorWrapper_next(var$1); - while (scc_JavaCollectionWrappers$JIteratorWrapper_hasNext(var$1)) { - var$2 = scc_JavaCollectionWrappers$JIteratorWrapper_next(var$1); + var$2 = var$1.$next(); + while (var$1.$hasNext()) { + var$2 = var$1.$next(); } return var$2; }, @@ -6925,7 +6919,7 @@ sc_AbstractIterable_drop = ($this, $n) => { sc_AbstractIterable_dropRight = ($this, $n) => { let var$2; var$2 = new sc_View$DropRight; - var$2.$underlying33 = $this; + var$2.$underlying31 = $this; var$2.$n3 = $n; var$2.$normN0 = jl_Math_max($n, 0); return $this.$fromSpecific(var$2); @@ -6934,7 +6928,7 @@ sc_AbstractIterable_grouped = ($this, $size) => { let var$2, var$3; var$2 = ($this.$iterator0()).$grouped($size); var$3 = new sc_IterableOps$grouped$lambda$_60_0; - var$3.$_0432 = $this; + var$3.$_0425 = $this; return sc_Iterator_map$(var$2, var$3); }, sc_AbstractIterable_sliding = ($this, $size) => { @@ -6944,7 +6938,7 @@ sc_AbstractIterable_sliding0 = ($this, $size, $step) => { let var$3, var$4; var$3 = ($this.$iterator0()).$sliding0($size, $step); var$4 = new sc_IterableOps$sliding$lambda$_64_0; - var$4.$_0703 = $this; + var$4.$_0688 = $this; return sc_Iterator_map$(var$3, var$4); }, sc_AbstractIterable_tail = $this => { @@ -6952,15 +6946,7 @@ sc_AbstractIterable_tail = $this => { if (!$this.$isEmpty()) return $this.$drop(1); var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}, -sc_AbstractIterable_init = $this => { - let var$1; - if (!$this.$isEmpty()) - return $this.$dropRight(1); - var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); }, sc_AbstractIterable_groupBy = ($this, $f) => { @@ -6984,38 +6970,38 @@ sc_AbstractIterable_groupBy = ($this, $f) => { var$4 = var$3.$next(); var$5 = $f.$apply2(var$4); var$6 = new sc_IterableOps$groupBy$lambda$_72_0; - var$6.$_0646 = $this; + var$6.$_0636 = $this; var$5 = scm_HashMap_getOrElseUpdate(var$2, var$5, var$6); if (var$5 === null) break; var$5.$addOne(var$4); } $rt_throw(null); -}; -let sc_AbstractIterable_groupMap = ($this, $key, $f) => { +}, +sc_AbstractIterable_groupMap = ($this, $key, $f) => { let var$3, var$4; scm_Map$_$callClinit(); var$3 = sc_MapFactory$Delegate_empty(scm_Map$_MODULE$); var$4 = new sc_IterableOps$groupMap$lambda$_74_0; - var$4.$_01098 = $this; - var$4.$_1397 = $key; - var$4.$_2123 = var$3; - var$4.$_333 = $f; + var$4.$_01078 = $this; + var$4.$_1398 = $key; + var$4.$_2122 = var$3; + var$4.$_336 = $f; sci_List_foreach($this, var$4); $key = new sc_IterableOps$Result$1; sci_Map$EmptyMap$_$callClinit(); $key.$built = sci_Map$EmptyMap$_MODULE$; scm_HashMap_foreach(var$3, $key); return $key.$built; -}, -sc_AbstractIterable_groupMapReduce = ($this, $key, $f, $reduce) => { +}; +let sc_AbstractIterable_groupMapReduce = ($this, $key, $f, $reduce) => { let var$4, var$5; scm_Map$_$callClinit(); var$4 = sc_MapFactory$Delegate_empty(scm_Map$_MODULE$); var$5 = new sc_IterableOps$groupMapReduce$lambda$_76_0; - var$5.$_01177 = $key; - var$5.$_1100 = var$4; - var$5.$_2127 = $reduce; + var$5.$_01155 = $key; + var$5.$_193 = var$4; + var$5.$_2130 = $reduce; var$5.$_313 = $f; $this.$foreach(var$5); $key = sci_Map$_MODULE$; @@ -7045,7 +7031,7 @@ sc_AbstractIterable_zipAll = ($this, $that, $thisElem, $thatElem) => { let var$4, var$5; var$4 = $this.$iterableFactory(); var$5 = new sc_View$ZipAll; - var$5.$underlying27 = $this; + var$5.$underlying26 = $this; var$5.$other = $that; var$5.$thisElem = $thisElem; var$5.$thatElem = $thatElem; @@ -7081,7 +7067,7 @@ sc_AbstractIterable_foldRight = ($this, $z, $op) => { let var$3, var$4; var$3 = sc_AbstractIterable_reversed($this); var$4 = new sc_IterableOnceOps$foldRight$lambda$_36_0; - var$4.$_0770 = $op; + var$4.$_0750 = $op; return sci_List_foldLeft(var$3, $z, var$4); }, sc_AbstractIterable_reduce = ($this, $op) => { @@ -7134,7 +7120,7 @@ sc_AbstractIterable_min = ($this, $ord) => { var$2 = $this.$iterator0(); if (!var$2.$hasNext()) { var$3 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$3, $rt_s(46)); + jl_Throwable__init_(var$3, $rt_s(46)); $rt_throw(var$3); } var$3 = var$2.$next(); @@ -7146,12 +7132,12 @@ sc_AbstractIterable_min = ($this, $ord) => { break; default: var$3 = new sc_IterableOnceOps$min$lambda$_77_0; - var$3.$_0536 = $ord; + var$3.$_0521 = $ord; var$3 = sc_IterableOnceOps_reduceLeft$($this, var$3); break a; } $ord = new jl_UnsupportedOperationException; - jl_Throwable__init_0($ord, $rt_s(46)); + jl_Throwable__init_($ord, $rt_s(46)); $rt_throw($ord); } return var$3; @@ -7164,7 +7150,7 @@ sc_AbstractIterable_max = ($this, $ord) => { var$2 = $this.$iterator0(); if (!var$2.$hasNext()) { var$3 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$3, $rt_s(47)); + jl_Throwable__init_(var$3, $rt_s(47)); $rt_throw(var$3); } var$3 = var$2.$next(); @@ -7176,12 +7162,12 @@ sc_AbstractIterable_max = ($this, $ord) => { break; default: var$3 = new sc_IterableOnceOps$max$lambda$_81_0; - var$3.$_0488 = $ord; + var$3.$_0478 = $ord; var$3 = sc_IterableOnceOps_reduceLeft$($this, var$3); break a; } $ord = new jl_UnsupportedOperationException; - jl_Throwable__init_0($ord, $rt_s(47)); + jl_Throwable__init_($ord, $rt_s(47)); $rt_throw($ord); } return var$3; @@ -7194,11 +7180,11 @@ sc_AbstractIterable_minBy = ($this, $f, $ord) => { default: var$3 = new sc_IterableOnceOps$Maximized; var$4 = new sc_IterableOnceOps$minBy$lambda$_89_0; - var$4.$_0407 = $ord; + var$4.$_0398 = $ord; var$3.$descriptor = $rt_s(48); var$3.$f7 = $f; var$3.$cmp = var$4; - var$3.$$outer63 = $this; + var$3.$$outer57 = $this; var$3.$maxElem = null; var$3.$maxF = null; var$3.$nonEmpty0 = 0; @@ -7210,11 +7196,11 @@ sc_AbstractIterable_minBy = ($this, $f, $ord) => { jl_AbstractStringBuilder__init_0($ord, 6); jl_AbstractStringBuilder_append($ord, $rt_s(49)); jl_AbstractStringBuilder_append($ord, $f.$descriptor); - jl_Throwable__init_0(var$5, jl_AbstractStringBuilder_toString($ord)); + jl_Throwable__init_(var$5, jl_AbstractStringBuilder_toString($ord)); $rt_throw(var$5); } $ord = new jl_UnsupportedOperationException; - jl_Throwable__init_0($ord, $rt_s(50)); + jl_Throwable__init_($ord, $rt_s(50)); $rt_throw($ord); }, sc_AbstractIterable_collectFirst = ($this, $pf) => { @@ -7304,6 +7290,9 @@ s_PartialFunction_lift$ = $$this => { var$2.$pf3 = $$this; return var$2; }, +s_PartialFunction_applyOrElse$ = ($$this, $x, $default) => { + return $x.$asCanonicalStringVal(); +}, sc_SeqOps = $rt_classWithoutFields(0), sc_SeqOps_$colon$plus$ = ($$this, $elem) => { return $$this.$appended($elem); @@ -7314,7 +7303,7 @@ let sc_SeqOps_distinct$ = $$this => { sc_SeqOps_distinctBy$ = ($$this, $f) => { let var$3; var$3 = new sc_View$DistinctBy; - var$3.$underlying14 = $$this; + var$3.$underlying13 = $$this; var$3.$f9 = $f; return $$this.$fromSpecific(var$3); }, @@ -7372,7 +7361,7 @@ sc_SeqOps_intersect$ = ($$this, $that) => { $that = sc_AbstractSeq_occCounts($$this, $that); var$3 = $$this.$iterator0(); var$4 = new sc_SeqOps$intersect$lambda$_118_0; - var$4.$_0976 = $that; + var$4.$_0970 = $that; return $$this.$fromSpecific(var$3.$filter(var$4)); }, sc_Seq = $rt_classWithoutFields(0), @@ -7574,7 +7563,7 @@ sc_AbstractSeq_indexWhere = ($this, $p, $from) => { sc_AbstractSeq_indexOf0 = ($this, $elem, $from) => { let var$3; var$3 = new sc_SeqOps$indexOf$lambda$_58_0; - var$3.$_0464 = $elem; + var$3.$_0453 = $elem; return $this.$indexWhere(var$3, $from); }, sc_AbstractSeq_indexOf = ($this, $elem) => { @@ -7583,7 +7572,7 @@ sc_AbstractSeq_indexOf = ($this, $elem) => { sc_AbstractSeq_contains = ($this, $elem) => { let var$2; var$2 = new sc_SeqOps$contains$lambda$_84_0; - var$2.$_0758 = $elem; + var$2.$_0743 = $elem; return $this.$exists(var$2); }, sc_AbstractSeq_sorted = ($this, $ord) => { @@ -7611,7 +7600,7 @@ sc_AbstractSeq_occCounts = ($this, $sq) => { let var$2, var$3; var$2 = scm_HashMap__init_(); var$3 = new sc_SeqOps$occCounts$lambda$_124_0; - var$3.$_01011 = var$2; + var$3.$_01003 = var$2; $sq.$foreach(var$3); return var$2; }, @@ -7640,7 +7629,7 @@ sc_LinearSeqOps_last$ = $$this => { let var$2, var$3; if ($$this.$isEmpty()) { var$2 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$2, $rt_s(51)); + jl_Throwable__init_(var$2, $rt_s(51)); $rt_throw(var$2); } var$2 = $$this; @@ -7682,14 +7671,14 @@ sc_LinearSeqOps_lengthCompare$ = ($$this, $len) => { sc_LinearSeqOps_apply$ = ($$this, $n) => { if ($n < 0) { $$this = new jl_IndexOutOfBoundsException; - jl_Throwable__init_0($$this, jl_Integer_toString($n)); + jl_Throwable__init_($$this, jl_Integer_toString($n)); $rt_throw($$this); } $$this = $$this.$drop($n); if (!$$this.$isEmpty()) return $$this.$head(); $$this = new jl_IndexOutOfBoundsException; - jl_Throwable__init_0($$this, jl_Integer_toString($n)); + jl_Throwable__init_($$this, jl_Integer_toString($n)); $rt_throw($$this); }; let sc_LinearSeqOps_forall$ = ($$this, $p) => { @@ -7800,9 +7789,9 @@ sc_StrictOptimizedIterableOps_partition$ = ($$this, $p) => { var$4 = $$this.$newSpecificBuilder(); $$this = $$this.$iterator0(); var$5 = new sc_StrictOptimizedIterableOps$partition$lambda$_1_0; - var$5.$_0364 = $p; - var$5.$_1133 = var$3; - var$5.$_249 = var$4; + var$5.$_0350 = $p; + var$5.$_1124 = var$3; + var$5.$_245 = var$4; $$this.$foreach(var$5); return s_Tuple2__init_(var$3.$result(), var$4.$result()); }, @@ -7838,7 +7827,7 @@ sc_StrictOptimizedIterableOps_collect$ = ($$this, $pf) => { while ($$this.$hasNext()) { var$5 = $$this.$next(); var$6 = new sc_StrictOptimizedIterableOps$collect$lambda$_19_0; - var$6.$_0704 = var$4; + var$6.$_0689 = var$4; var$5 = $pf.$applyOrElse(var$5, var$6); if (var$4 === var$5) continue; @@ -7849,16 +7838,16 @@ sc_StrictOptimizedIterableOps_collect$ = ($$this, $pf) => { return var$3.$result(); }, sc_StrictOptimizedIterableOps_flatten$ = ($$this, $toIterableOnce) => { - let var$3; - $toIterableOnce = ($$this.$iterableFactory()).$newBuilder(); + let var$3, var$4; + var$3 = ($$this.$iterableFactory()).$newBuilder(); $$this = $$this.$iterator0(); while ($$this.$hasNext()) { - var$3 = $$this.$next(); - if ($toIterableOnce === null) + var$4 = $toIterableOnce.$apply2($$this.$next()); + if (var$3 === null) $rt_throw(null); - $toIterableOnce.$addAll0(var$3); + var$3.$addAll0(var$4); } - return $toIterableOnce.$result(); + return var$3.$result(); }, sc_StrictOptimizedIterableOps_zip$ = ($$this, $that) => { let var$3, var$4; @@ -7967,8 +7956,8 @@ sc_StrictOptimizedSeqOps_intersect$ = ($$this, $that) => { $that = sc_AbstractSeq_occCounts($$this, $that); var$3 = $$this.$newSpecificBuilder(); var$4 = new sc_StrictOptimizedSeqOps$intersect$lambda$_15_0; - var$4.$_0788 = $that; - var$4.$_1264 = var$3; + var$4.$_0767 = $that; + var$4.$_1255 = var$3; $$this.$foreach(var$4); $$this = var$3.$result(); } else @@ -8021,7 +8010,7 @@ sci_List_sorted = ($this, $ord) => { sci_List_iterator = $this => { let var$1; var$1 = new sc_StrictOptimizedLinearSeqOps$$anon$1; - var$1.$current5 = $this; + var$1.$current4 = $this; return var$1; }, sci_List_drop = ($this, $n) => { @@ -8106,7 +8095,7 @@ let sci_List_$colon$colon$colon = ($this, $prefix) => { $prefix = $result; while (!sci_List_isEmpty($that)) { $temp = sci_$colon$colon__init_($that.$head(), $this); - $prefix.$next6 = $temp; + $prefix.$next5 = $temp; $that = $that.$tail(); $prefix = $temp; } @@ -8138,7 +8127,7 @@ sci_List_prependedAll = ($this, $prefix) => { $curr = $result; while ($iter.$hasNext()) { $curr_0 = sci_$colon$colon__init_($iter.$next(), $this); - $curr.$next6 = $curr_0; + $curr.$next5 = $curr_0; $curr = $curr_0; } return $result; @@ -8158,7 +8147,7 @@ sci_List_map = ($this, $f) => { var$4 = $h; while ($rest !== sci_Nil$_MODULE$) { $nx = sci_$colon$colon__init_($f.$apply2($rest.$head()), sci_Nil$_MODULE$); - var$4.$next6 = $nx; + var$4.$next5 = $nx; $rest = $rest.$tail(); var$4 = $nx; } @@ -8178,7 +8167,7 @@ sci_List_flatMap = ($this, $f) => { if ($t === null) $h = $nx; else - $t.$next6 = $nx; + $t.$next5 = $nx; $t = $nx; } $this = $this.$tail(); @@ -8271,7 +8260,7 @@ sci_List_last = $this => { let $scout, $scout_0; if (sci_List_isEmpty($this)) { $scout = new ju_NoSuchElementException; - jl_Throwable__init_0($scout, $rt_s(53)); + jl_Throwable__init_($scout, $rt_s(53)); $rt_throw($scout); } $scout_0 = $this.$tail(); @@ -8300,7 +8289,7 @@ sci_List_filter = ($filterCommon_noneIn$1_l, $p) => { $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast = $filterCommon_noneIn$1_allIn$1_partialFill$1_newHead; while ($filterCommon_noneIn$1_allIn$1_partialFill$1_toProcess !== $filterCommon_noneIn$1_l_0) { $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast_0 = sci_$colon$colon__init_($filterCommon_noneIn$1_allIn$1_partialFill$1_toProcess.$head(), sci_Nil$_MODULE$); - $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next6 = $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast_0; + $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next5 = $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast_0; $filterCommon_noneIn$1_allIn$1_partialFill$1_toProcess = $filterCommon_noneIn$1_allIn$1_partialFill$1_toProcess.$tail(); $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast = $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast_0; } @@ -8313,7 +8302,7 @@ sci_List_filter = ($filterCommon_noneIn$1_l, $p) => { } while ($filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy !== $filterCommon_noneIn$1_l_0) { $filterCommon_noneIn$1_allIn$1_partialFill$1_newElem = sci_$colon$colon__init_($filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy.$head(), sci_Nil$_MODULE$); - $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next6 = $filterCommon_noneIn$1_allIn$1_partialFill$1_newElem; + $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next5 = $filterCommon_noneIn$1_allIn$1_partialFill$1_newElem; $filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy = $filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy.$tail(); $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast = $filterCommon_noneIn$1_allIn$1_partialFill$1_newElem; } @@ -8321,7 +8310,7 @@ sci_List_filter = ($filterCommon_noneIn$1_l, $p) => { $filterCommon_noneIn$1_l_0 = $filterCommon_noneIn$1_l_0.$tail(); } if (!sci_List_isEmpty($filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy)) - $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next6 = $filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy; + $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next5 = $filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy; $filterCommon_noneIn$1_l = $filterCommon_noneIn$1_allIn$1_partialFill$1_newHead; break b; } @@ -8351,7 +8340,7 @@ sci_List_filterNot = ($filterCommon_noneIn$1_l, $p) => { $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast = $filterCommon_noneIn$1_allIn$1_partialFill$1_newHead; while ($filterCommon_noneIn$1_allIn$1_partialFill$1_toProcess !== $filterCommon_noneIn$1_l_0) { $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast_0 = sci_$colon$colon__init_($filterCommon_noneIn$1_allIn$1_partialFill$1_toProcess.$head(), sci_Nil$_MODULE$); - $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next6 = $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast_0; + $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next5 = $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast_0; $filterCommon_noneIn$1_allIn$1_partialFill$1_toProcess = $filterCommon_noneIn$1_allIn$1_partialFill$1_toProcess.$tail(); $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast = $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast_0; } @@ -8364,7 +8353,7 @@ sci_List_filterNot = ($filterCommon_noneIn$1_l, $p) => { } while ($filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy !== $filterCommon_noneIn$1_l_0) { $filterCommon_noneIn$1_allIn$1_partialFill$1_newElem = sci_$colon$colon__init_($filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy.$head(), sci_Nil$_MODULE$); - $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next6 = $filterCommon_noneIn$1_allIn$1_partialFill$1_newElem; + $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next5 = $filterCommon_noneIn$1_allIn$1_partialFill$1_newElem; $filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy = $filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy.$tail(); $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast = $filterCommon_noneIn$1_allIn$1_partialFill$1_newElem; } @@ -8372,7 +8361,7 @@ sci_List_filterNot = ($filterCommon_noneIn$1_l, $p) => { $filterCommon_noneIn$1_l_0 = $filterCommon_noneIn$1_l_0.$tail(); } if (!sci_List_isEmpty($filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy)) - $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next6 = $filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy; + $filterCommon_noneIn$1_allIn$1_partialFill$1_currentLast.$next5 = $filterCommon_noneIn$1_allIn$1_partialFill$1_nextToCopy; $filterCommon_noneIn$1_l = $filterCommon_noneIn$1_allIn$1_partialFill$1_newHead; break b; } @@ -8397,9 +8386,9 @@ sci_List_partition = ($this, $p) => { $partition_r = sc_AbstractIterable_newSpecificBuilder($this); var$4 = $this.$iterator0(); var$5 = new sci_List$partition$lambda$_92_0; - var$5.$_094 = $p; - var$5.$_138 = $partition_l; - var$5.$_218 = $partition_r; + var$5.$_085 = $p; + var$5.$_131 = $partition_l; + var$5.$_214 = $partition_r; sc_IterableOnceOps_foreach$(var$4, var$5); $p = new s_Tuple2; $partition_l = $partition_l.$result(); @@ -8483,7 +8472,7 @@ sci_List_collect = ($this, $pf) => { var$5 = $pf.$applyOrElse(var$4, sci_List$_partialNotApplied(sci_List$_MODULE$)); if (var$5 !== sci_List$_partialNotApplied(sci_List$_MODULE$)) { var$4 = sci_$colon$colon__init_(var$5, sci_Nil$_MODULE$); - var$3.$next6 = var$4; + var$3.$next5 = var$4; var$3 = var$4; } $this = $this.$tail(); @@ -8542,22 +8531,16 @@ sci_Nil$_productElement = ($this, $x$1) => { sci_Nil$_productIterator = $this => { return sr_ScalaRunTime$$anon$1__init_($this); }, -sci_Nil$_init = $this => { - let var$1; - var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(55)); - $rt_throw(var$1); -}, sci_Nil$_last = $this => { let var$1; var$1 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$1, $rt_s(56)); + jl_Throwable__init_(var$1, $rt_s(55)); $rt_throw(var$1); }, sci_Nil$_tail = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(57)); + jl_Throwable__init_(var$1, $rt_s(56)); $rt_throw(var$1); }, sci_Nil$_headOption = $this => { @@ -8566,7 +8549,7 @@ sci_Nil$_headOption = $this => { sci_Nil$_head = $this => { let var$1; var$1 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$1, $rt_s(58)); + jl_Throwable__init_(var$1, $rt_s(57)); $rt_throw(var$1); }, sr_ClassValueCompat$ClassValueInterface = $rt_classWithoutFields(0); @@ -8587,10 +8570,10 @@ sr_ClassTag$cache$__clinit_ = () => { sr_ClassValueCompat$_$callClinit(); if (!sr_ClassValueCompat$_scala$runtime$ClassValueCompat$$classValueAvailable) { var$2 = new sr_ClassValueCompat$FallbackClassValue; - var$2.$$outer38 = var$1; + var$2.$$outer34 = var$1; } else { var$2 = new sr_ClassValueCompat$JavaClassValue; - var$2.$$outer43 = var$1; + var$2.$$outer39 = var$1; } var$1.$instance0 = var$2; sr_ClassTag$cache$_MODULE$ = var$1; @@ -8719,7 +8702,7 @@ sr_ScalaRunTime$_array_apply = ($this, $xs, $idx) => { if ($xs !== null) $rt_throw(s_MatchError__init_($xs)); $xs = new jl_NullPointerException; - jl_Throwable__init_($xs); + jl_Throwable__init_0($xs); $rt_throw($xs); }, sr_ScalaRunTime$_array_update = ($this, $xs, $idx, $value) => { @@ -8762,7 +8745,7 @@ sr_ScalaRunTime$_array_update = ($this, $xs, $idx, $value) => { if ($xs !== null) $rt_throw(s_MatchError__init_($xs)); $xs = new jl_NullPointerException; - jl_Throwable__init_($xs); + jl_Throwable__init_0($xs); $rt_throw($xs); }, sr_ScalaRunTime$_array_clone = ($this, $xs) => { @@ -8787,7 +8770,7 @@ sr_ScalaRunTime$_array_clone = ($this, $xs) => { if ($xs !== null) $rt_throw(s_MatchError__init_($xs)); $xs = new jl_NullPointerException; - jl_Throwable__init_($xs); + jl_Throwable__init_0($xs); $rt_throw($xs); }, sr_ScalaRunTime$__toString = ($this, $x) => { @@ -8823,32 +8806,32 @@ sr_ScalaRunTime$_wrapRefArray = ($this, $xs) => { }; function jl_Double() { jl_Number.call(this); - this.$value12 = 0.0; + this.$value11 = 0.0; } let jl_Double_TYPE = null, jl_Double_doubleValue = $this => { - return $this.$value12; + return $this.$value11; }, jl_Double_intValue = $this => { - return $this.$value12 | 0; + return $this.$value11 | 0; }, jl_Double_longValue = $this => { - return Long_fromNumber($this.$value12); + return Long_fromNumber($this.$value11); }, jl_Double_floatValue = $this => { - return $this.$value12; + return $this.$value11; }, jl_Double_valueOf = $d => { let var$2; var$2 = new jl_Double; - var$2.$value12 = $d; + var$2.$value11 = $d; return var$2; }, jl_Double_parseDouble = $string => { let $start, $end, $negative, $c, $mantissa, $exp, $hasOneDigit, $mantissaPos, var$10, $negativeExp, $numExp; if (jl_String_isEmpty($string)) { $string = new jl_NumberFormatException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); } $start = 0; @@ -8866,7 +8849,7 @@ jl_Double_parseDouble = $string => { $start = $start + 1 | 0; if ($start == $end) { $string = new jl_NumberFormatException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); } a: { @@ -8900,7 +8883,7 @@ jl_Double_parseDouble = $string => { } } else { $string = new jl_NumberFormatException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); } } @@ -8929,7 +8912,7 @@ jl_Double_parseDouble = $string => { } if (!$hasOneDigit) { $string = new jl_NumberFormatException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); } } @@ -8937,14 +8920,14 @@ jl_Double_parseDouble = $string => { $c = jl_String_charAt($string, $start); if ($c != 101 && $c != 69) { $string = new jl_NumberFormatException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); } $c = $start + 1 | 0; $negativeExp = 0; if ($c == $end) { $string = new jl_NumberFormatException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); } if (jl_String_charAt($string, $c) == 45) { @@ -8970,7 +8953,7 @@ jl_Double_parseDouble = $string => { } if (!$start) { $string = new jl_NumberFormatException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); } if ($negativeExp) @@ -8984,12 +8967,12 @@ jl_Double_parseDouble = $string => { break; } $string = new jl_NumberFormatException; - jl_Throwable__init_($string); + jl_Throwable__init_0($string); $rt_throw($string); }, jl_Double_toString = $this => { let var$1, var$2; - var$1 = $this.$value12; + var$1 = $this.$value11; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_AbstractStringBuilder_insert3(var$2, var$2.$length1, var$1); @@ -8998,10 +8981,10 @@ jl_Double_toString = $this => { jl_Double_equals = ($this, $other) => { if ($this === $other) return 1; - return $other instanceof jl_Double && $rt_equalDoubles($this.$value12, $other.$value12) ? 1 : 0; + return $other instanceof jl_Double && $rt_equalDoubles($this.$value11, $other.$value11) ? 1 : 0; }, jl_Double_hashCode0 = $this => { - return jl_Double_hashCode($this.$value12); + return jl_Double_hashCode($this.$value11); }, jl_Double_hashCode = $d => { let $h; @@ -9024,7 +9007,7 @@ jl_Double_doubleToLongBits = $value => { return Long_create(0, 2146959360); }, jl_Double_compareTo = ($this, var$1) => { - return jl_Double_compare($this.$value12, var$1.$value12); + return jl_Double_compare($this.$value11, var$1.$value11); }, jl_Double__clinit_ = () => { jl_Double_TYPE = $rt_cls($rt_doublecls); @@ -9045,7 +9028,7 @@ jl_Long_parseLongImpl = ($s, $beginIndex, $endIndex, $radix) => { if ($radix >= 2 && $radix <= 36) { if ($beginIndex == $endIndex) { $s = new jl_NumberFormatException; - jl_Throwable__init_0($s, $rt_s(13)); + jl_Throwable__init_($s, $rt_s(13)); $rt_throw($s); } a: { @@ -9067,7 +9050,7 @@ jl_Long_parseLongImpl = ($s, $beginIndex, $endIndex, $radix) => { $maxValue = Long_add(Long_fromInt(1), Long_div(Long_create(4294967295, 2147483647), var$8)); if ($digit == $endIndex) { $s = new jl_NumberFormatException; - jl_Throwable__init_($s); + jl_Throwable__init_0($s); $rt_throw($s); } while ($digit < $endIndex) { @@ -9079,7 +9062,7 @@ jl_Long_parseLongImpl = ($s, $beginIndex, $endIndex, $radix) => { $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(14)), var$12); - jl_Throwable__init_0(var$11, jl_AbstractStringBuilder_toString($s)); + jl_Throwable__init_(var$11, jl_AbstractStringBuilder_toString($s)); $rt_throw(var$11); } if ($digit >= $radix) { @@ -9088,12 +9071,12 @@ jl_Long_parseLongImpl = ($s, $beginIndex, $endIndex, $radix) => { $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($s, $rt_s(15)), $radix), $rt_s(9)), var$12); - jl_Throwable__init_0(var$11, jl_AbstractStringBuilder_toString($s)); + jl_Throwable__init_(var$11, jl_AbstractStringBuilder_toString($s)); $rt_throw(var$11); } if (Long_gt($value, $maxValue)) { $s = new jl_NumberFormatException; - jl_Throwable__init_0($s, $rt_s(59)); + jl_Throwable__init_($s, $rt_s(58)); $rt_throw($s); } $value = Long_add(Long_mul(var$8, $value), Long_fromInt($digit)); @@ -9104,8 +9087,8 @@ jl_Long_parseLongImpl = ($s, $beginIndex, $endIndex, $radix) => { var$12 = jl_String_substring($s, $beginIndex, $endIndex); $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); - jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(60)), var$12); - jl_Throwable__init_0(var$11, jl_AbstractStringBuilder_toString($s)); + jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(59)), var$12); + jl_Throwable__init_(var$11, jl_AbstractStringBuilder_toString($s)); $rt_throw(var$11); } $digit = var$10; @@ -9118,21 +9101,21 @@ jl_Long_parseLongImpl = ($s, $beginIndex, $endIndex, $radix) => { $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append0(jl_StringBuilder_append($s, $rt_s(18)), $radix); - jl_Throwable__init_0(var$13, jl_AbstractStringBuilder_toString($s)); + jl_Throwable__init_(var$13, jl_AbstractStringBuilder_toString($s)); $rt_throw(var$13); }, jl_Long_parseLong = $s => { if ($s !== null) return jl_Long_parseLongImpl($s, 0, $s.$nativeString.length, 10); $s = new jl_NumberFormatException; - jl_Throwable__init_0($s, $rt_s(12)); + jl_Throwable__init_($s, $rt_s(12)); $rt_throw($s); }, jl_Long_decode = $nm => { let $index, $negaive, $radix, $value, var$6, $maxValue, var$8, $digit; if (jl_String_isEmpty($nm)) { $nm = new jl_NumberFormatException; - jl_Throwable__init_0($nm, $rt_s(61)); + jl_Throwable__init_($nm, $rt_s(60)); $rt_throw($nm); } $index = 0; @@ -9145,7 +9128,7 @@ jl_Long_decode = $nm => { } if ($index >= $nm.$nativeString.length) { $nm = new jl_NumberFormatException; - jl_Throwable__init_0($nm, $rt_s(62)); + jl_Throwable__init_($nm, $rt_s(61)); $rt_throw($nm); } $radix = 10; @@ -9165,7 +9148,7 @@ jl_Long_decode = $nm => { } if ($index >= $nm.$nativeString.length) { $nm = new jl_NumberFormatException; - jl_Throwable__init_0($nm, $rt_s(62)); + jl_Throwable__init_($nm, $rt_s(61)); $rt_throw($nm); } $value = Long_ZERO; @@ -9181,7 +9164,7 @@ jl_Long_decode = $nm => { break a; if (Long_gt($value, $maxValue)) { $nm = new jl_NumberFormatException; - jl_Throwable__init_0($nm, $rt_s(59)); + jl_Throwable__init_($nm, $rt_s(58)); $rt_throw($nm); } $value = Long_add(Long_mul($value, var$6), Long_fromInt($digit)); @@ -9189,7 +9172,7 @@ jl_Long_decode = $nm => { if ($negaive && Long_eq($value, Long_create(0, 2147483648)) && var$8 == $nm.$nativeString.length) return jl_Long_valueOf(Long_create(0, 2147483648)); $nm = new jl_NumberFormatException; - jl_Throwable__init_0($nm, $rt_s(63)); + jl_Throwable__init_($nm, $rt_s(62)); $rt_throw($nm); } $index = var$8; @@ -9199,7 +9182,7 @@ jl_Long_decode = $nm => { return jl_Long_valueOf($value); } $nm = new jl_NumberFormatException; - jl_Throwable__init_0($nm, $rt_s(62)); + jl_Throwable__init_($nm, $rt_s(61)); $rt_throw($nm); }, jl_Long_decodeDigit = $c => { @@ -9227,7 +9210,7 @@ jl_Long_toString = $value => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - return jl_AbstractStringBuilder_toString(jl_StringBuilder_append5(var$2, $value)); + return jl_AbstractStringBuilder_toString(jl_StringBuilder_append4(var$2, $value)); }, jl_Long_toString0 = $this => { return jl_Long_toString($this.$value10); @@ -9321,7 +9304,7 @@ jl_Float_toString = $this => { var$1 = $this.$value15; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - return jl_AbstractStringBuilder_toString(jl_StringBuilder_append6(var$2, var$1)); + return jl_AbstractStringBuilder_toString(jl_StringBuilder_append5(var$2, var$1)); }, jl_Float_equals = ($this, $other) => { let var$2, var$3, var$4; @@ -9519,7 +9502,7 @@ s_MatchError_ofClass$1 = $this => { let var$1; var$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$1, 9); - jl_AbstractStringBuilder_append(var$1, $rt_s(64)); + jl_AbstractStringBuilder_append(var$1, $rt_s(63)); jl_AbstractStringBuilder_append(var$1, jl_Class_getName(jl_Object_getClass($this.$obj))); return jl_AbstractStringBuilder_toString(var$1); }, @@ -9527,7 +9510,7 @@ s_MatchError_liftedTree1$1 = $this => { let var$1, $$je; a: { try { - var$1 = jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append2(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder__init_1(3), $this.$obj), $rt_s(65)), s_MatchError_ofClass$1($this)), $rt_s(42))); + var$1 = jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append2(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder__init_1(3), $this.$obj), $rt_s(64)), s_MatchError_ofClass$1($this)), $rt_s(42))); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_Throwable) { @@ -9540,13 +9523,13 @@ s_MatchError_liftedTree1$1 = $this => { } var$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$1, 12); - jl_AbstractStringBuilder_append(var$1, $rt_s(66)); + jl_AbstractStringBuilder_append(var$1, $rt_s(65)); jl_AbstractStringBuilder_append(var$1, s_MatchError_ofClass$1($this)); return jl_AbstractStringBuilder_toString(var$1); }, s_MatchError__init_0 = ($this, $obj) => { $this.$obj = $obj; - jl_Throwable__init_($this); + jl_Throwable__init_0($this); }, s_MatchError__init_ = var_0 => { let var_1 = new s_MatchError(); @@ -9572,7 +9555,7 @@ jl_Boolean_compare = ($x, $y) => { return $x == $y ? 0 : !$x ? (-1) : 1; }, jl_Boolean_parseBoolean = $s => { - return $s !== null && jl_String_equals(jl_String_toLowerCase($s), $rt_s(20)) ? 1 : 0; + return $s !== null && jl_String_equals(jl_String_toLowerCase0($s), $rt_s(20)) ? 1 : 0; }, jl_Boolean_valueOf = $value => { return !$value ? jl_Boolean_FALSE : jl_Boolean_TRUE; @@ -9602,18 +9585,18 @@ jl_Boolean__clinit_ = () => { }; function jl_Enum() { let a = this; jl_Object.call(a); - a.$name6 = null; + a.$name7 = null; a.$ordinal = 0; } let jl_Enum__init_ = ($this, $name, $ordinal) => { - $this.$name6 = $name; + $this.$name7 = $name; $this.$ordinal = $ordinal; }, jl_Enum_name = $this => { - return $this.$name6; + return $this.$name7; }, jl_Enum_toString = $this => { - return $this.$name6; + return $this.$name7; }, jl_Enum_equals = ($this, $other) => { return $this !== $other ? 0 : 1; @@ -9638,13 +9621,14 @@ jl_Enum_compareTo = ($this, var$1) => { var$1 = jl_Enum_getDeclaringClass(var$1); var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(67)), var$3), $rt_s(68)), var$1); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$4)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(66)), var$3), $rt_s(67)), var$1); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$4)); $rt_throw(var$2); }; function onci_CypherVersion() { let a = this; jl_Enum.call(a); a.$versionName = null; + a.$description9 = null; a.$experimental = 0; } let onci_CypherVersion_Cypher5 = null, @@ -9654,23 +9638,24 @@ onci_CypherVersion_$VALUES = null, onci_CypherVersion_values = () => { return onci_CypherVersion_$VALUES.$clone0(); }, -onci_CypherVersion__init_0 = ($this, var$1, var$2, $versionName, $experimantal) => { +onci_CypherVersion__init_0 = ($this, var$1, var$2, $versionName, $description, $experimantal) => { jl_Enum__init_($this, var$1, var$2); $this.$versionName = $versionName; + $this.$description9 = $description; $this.$experimental = $experimantal; }, -onci_CypherVersion__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new onci_CypherVersion(); - onci_CypherVersion__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; +onci_CypherVersion__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new onci_CypherVersion(); + onci_CypherVersion__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; }, onci_CypherVersion_toString = $this => { return $this.$versionName; }, onci_CypherVersion__clinit_ = () => { let var$1, var$2, var$3, var$4; - onci_CypherVersion_Cypher5 = onci_CypherVersion__init_($rt_s(69), 0, $rt_s(70), 0); - var$1 = onci_CypherVersion__init_($rt_s(71), 1, $rt_s(72), 1); + onci_CypherVersion_Cypher5 = onci_CypherVersion__init_($rt_s(68), 0, $rt_s(69), $rt_s(70), 0); + var$1 = onci_CypherVersion__init_($rt_s(71), 1, $rt_s(72), $rt_s(73), 1); onci_CypherVersion_Cypher25 = var$1; var$2 = $rt_createArray(onci_CypherVersion, 2); var$3 = var$2.data; @@ -9682,7 +9667,7 @@ onci_CypherVersion__clinit_ = () => { }, jl_IndexOutOfBoundsException = $rt_classWithoutFields(jl_RuntimeException), jl_IndexOutOfBoundsException__init_ = ($this, $message) => { - jl_Throwable__init_0($this, $message); + jl_Throwable__init_($this, $message); }, jl_IndexOutOfBoundsException__init_0 = var_0 => { let var_1 = new jl_IndexOutOfBoundsException(); @@ -9819,7 +9804,7 @@ let jur_Pattern_matcher = ($this, $input) => { var$2.$rightBound0 = (-1); var$2.$pat = $this; var$2.$start9 = $this.$start8; - var$2.$string2 = $input; + var$2.$string1 = $input; var$2.$leftBound0 = 0; var$3 = $input.$nativeString.length; var$2.$rightBound0 = var$3; @@ -10070,15 +10055,15 @@ jur_Pattern_processSubExpression = ($this, $last) => { if (!jur_Pattern_hasFlag($this, 2)) { $cur = new jur_SequenceSet; jur_LeafSet__init_($cur); - $cur.$string1 = jl_AbstractStringBuilder_toString($next); + $cur.$string0 = jl_AbstractStringBuilder_toString($next); var$4 = $next.$length1; $cur.$charCount0 = var$4; $cur.$leftToRight = jur_SequenceSet$IntHash__init_(var$4); $cur.$rightToLeft = jur_SequenceSet$IntHash__init_($cur.$charCount0); var$7 = 0; while (var$7 < ($cur.$charCount0 - 1 | 0)) { - jur_SequenceSet$IntHash_put($cur.$leftToRight, jl_String_charAt($cur.$string1, var$7), ($cur.$charCount0 - var$7 | 0) - 1 | 0); - jur_SequenceSet$IntHash_put($cur.$rightToLeft, jl_String_charAt($cur.$string1, ($cur.$charCount0 - var$7 | 0) - 1 | 0), ($cur.$charCount0 - var$7 | 0) - 1 | 0); + jur_SequenceSet$IntHash_put($cur.$leftToRight, jl_String_charAt($cur.$string0, var$7), ($cur.$charCount0 - var$7 | 0) - 1 | 0); + jur_SequenceSet$IntHash_put($cur.$rightToLeft, jl_String_charAt($cur.$string0, ($cur.$charCount0 - var$7 | 0) - 1 | 0), ($cur.$charCount0 - var$7 | 0) - 1 | 0); var$7 = var$7 + 1 | 0; } } else if (jur_Pattern_hasFlag($this, 64)) @@ -10086,7 +10071,7 @@ jur_Pattern_processSubExpression = ($this, $last) => { else { $cur = new jur_CISequenceSet; jur_LeafSet__init_($cur); - $cur.$string3 = jl_AbstractStringBuilder_toString($next); + $cur.$string2 = jl_AbstractStringBuilder_toString($next); $cur.$charCount0 = $next.$length1; } } else @@ -10199,7 +10184,7 @@ jur_Pattern_processQuantifier = ($this, $last, $term) => { $q = new jur_DotQuantifierSet; $leaf = jur_AbstractLineTerminator_getInstance($this.$flags0); jur_QuantifierSet__init_($q, $term, $last, $quant); - $q.$lt1 = $leaf; + $q.$lt0 = $leaf; } $term.$setNext($q); return $q; @@ -10390,7 +10375,7 @@ jur_Pattern_processTerminal = ($this, $last) => { $term = new jur_MultiLineSOLSet; var$4 = jur_AbstractLineTerminator_getInstance($this.$flags0); jur_AbstractSet__init_($term); - $term.$lt3 = var$4; + $term.$lt2 = var$4; break a; case 0: $cc = var$4.$curST; @@ -10686,7 +10671,7 @@ jur_Pattern_compile = $pattern => { let var$2, var$3, var$4, var$5; if ($pattern === null) { $pattern = new jl_NullPointerException; - jl_Throwable__init_0($pattern, $rt_s(73)); + jl_Throwable__init_($pattern, $rt_s(74)); $rt_throw($pattern); } jur_AbstractSet_counter = 1; @@ -10760,7 +10745,7 @@ sr_BoxesRunTime_unboxToBoolean = $b => { return $b === null ? 0 : $b.$value3; }, sr_BoxesRunTime_unboxToChar = $c => { - return $c === null ? 0 : $c.$value11; + return $c === null ? 0 : $c.$value12; }, sr_BoxesRunTime_unboxToByte = $b => { return $b === null ? 0 : $b.$value13; @@ -10778,7 +10763,7 @@ sr_BoxesRunTime_unboxToFloat = $f => { return $f === null ? 0.0 : $f.$value15; }, sr_BoxesRunTime_unboxToDouble = $d => { - return $d === null ? 0.0 : $d.$value12; + return $d === null ? 0.0 : $d.$value11; }, sr_BoxesRunTime_equals = ($x, $y) => { let var$3; @@ -10790,7 +10775,7 @@ sr_BoxesRunTime_equals = ($x, $y) => { var$3 = $x !== null ? $x.$equals($y) : $y !== null ? 0 : 1; else { $x = $x; - var$3 = $y instanceof jl_Character ? ($x.$value11 != $y.$value11 ? 0 : 1) : $y instanceof jl_Number ? sr_BoxesRunTime_equalsNumChar($y, $x) : $x !== null ? jl_Character_equals($x, $y) : $y !== null ? 0 : 1; + var$3 = $y instanceof jl_Character ? ($x.$value12 != $y.$value12 ? 0 : 1) : $y instanceof jl_Number ? sr_BoxesRunTime_equalsNumChar($y, $x) : $x !== null ? jl_Character_equals($x, $y) : $y !== null ? 0 : 1; } return var$3; }, @@ -10841,7 +10826,7 @@ sr_BoxesRunTime_equalsNumChar = ($xn, $yc) => { let $ch; if ($yc === null) return $xn !== null ? 0 : 1; - $ch = $yc.$value11; + $ch = $yc.$value12; switch (sr_BoxesRunTime_typeCode($xn)) { case 3: return $xn.$intValue() != $ch ? 0 : 1; @@ -10903,10 +10888,10 @@ oncifp_FrontEndCompilationPhases$_ParsingConfig = $this => { function sci_$colon$colon() { let a = this; sci_List.call(a); a.$head1 = null; - a.$next6 = null; + a.$next5 = null; } let sci_$colon$colon_next$access$1 = $this => { - return $this.$next6; + return $this.$next5; }, sci_$colon$colon_head = $this => { return $this.$head1; @@ -10919,7 +10904,7 @@ sci_$colon$colon_productElement = ($this, $x$1) => { case 0: return $this.$head1; case 1: - return $this.$next6; + return $this.$next5; default: } return sr_Statics_ioobe($x$1); @@ -10928,14 +10913,14 @@ sci_$colon$colon_productIterator = $this => { return sr_ScalaRunTime$$anon$1__init_($this); }, sci_$colon$colon_tail = $this => { - return $this.$next6; + return $this.$next5; }, sci_$colon$colon_headOption = $this => { return s_Some__init_($this.$head1); }, sci_$colon$colon__init_0 = ($this, $head, $next) => { $this.$head1 = $head; - $this.$next6 = $next; + $this.$next5 = $next; }, sci_$colon$colon__init_ = (var_0, var_1) => { let var_2 = new sci_$colon$colon(); @@ -10953,7 +10938,7 @@ oncias_SemanticFeature$UseAsSingleGraphSelector$_toString = $this => { return $this.$name(); }, oncias_SemanticFeature$UseAsSingleGraphSelector$_name = $this => { - return $rt_s(74); + return $rt_s(75); }, oncias_SemanticFeature$UseAsSingleGraphSelector$_productArity = $this => { return 0; @@ -11007,6 +10992,7 @@ s_Option$_when = ($this, $cond, $a) => { oncifp_BaseContext = $rt_classWithoutFields(0); function cnsa_EnrichedContext() { let a = this; jl_Object.call(a); + a.$cypherVersion = null; a.$logger = null; a.$errorsSet = null; a.$errorMessageProvider0 = null; @@ -11019,14 +11005,14 @@ let cnsa_EnrichedContext_cypherExceptionFactory = $this => { }, cnsa_EnrichedContext_errorHandler = $this => { let var$1; - var$1 = new cnsa_EnrichedContext$errorHandler$lambda$_6_0; - var$1.$_0105 = $this; + var$1 = new cnsa_EnrichedContext$errorHandler$lambda$_7_0; + var$1.$_0496 = $this; return var$1; }, oncifp_BaseState = $rt_classWithoutFields(0); function oncifp_InitialState() { let a = this; jl_Object.call(a); - a.$queryText0 = null; + a.$queryText = null; a.$plannerName = null; a.$anonymousVariableNameGenerator = null; a.$maybeProcedureSignatureVersion = null; @@ -11042,14 +11028,14 @@ let oncifp_InitialState_statement = $this => { let var$1, var$2; var$1 = $this.$maybeStatement; var$2 = new oncifp_BaseState$statement$lambda$_12_0; - var$2.$_01009 = $this; + var$2.$_01001 = $this; return s_Option_getOrElse(var$1, var$2); }, oncifp_InitialState_semanticTable = $this => { let var$1, var$2; var$1 = $this.$maybeSemanticTable; var$2 = new oncifp_BaseState$semanticTable$lambda$_18_0; - var$2.$_0736 = $this; + var$2.$_0721 = $this; return s_Option_getOrElse(var$1, var$2); }, oncifp_InitialState_fail = ($this, $what) => { @@ -11057,13 +11043,10 @@ oncifp_InitialState_fail = ($this, $what) => { var$2 = new jl_IllegalStateException; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $what), $rt_s(75)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $what), $rt_s(76)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); $rt_throw(var$2); }, -oncifp_InitialState_queryText = $this => { - return $this.$queryText0; -}, oncifp_InitialState_copy = ($this, $queryText, $plannerName, $anonymousVariableNameGenerator, $maybeProcedureSignatureVersion, $maybeStatement, $maybeSemantics, $maybeExtractedParams, $maybeSemanticTable, $accumulatedConditions, $maybeReturnColumns, $maybeObfuscationMetadata) => { return oncifp_InitialState__init_0($queryText, $plannerName, $anonymousVariableNameGenerator, $maybeProcedureSignatureVersion, $maybeStatement, $maybeSemantics, $maybeExtractedParams, $maybeSemanticTable, $accumulatedConditions, $maybeReturnColumns, $maybeObfuscationMetadata); }, @@ -11095,7 +11078,7 @@ oncifp_InitialState_copy$default$9 = $this => { return $this.$accumulatedConditions; }, oncifp_InitialState_productPrefix = $this => { - return $rt_s(76); + return $rt_s(77); }, oncifp_InitialState_productArity = $this => { return 11; @@ -11103,7 +11086,7 @@ oncifp_InitialState_productArity = $this => { oncifp_InitialState_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$queryText0; + return $this.$queryText; case 1: return $this.$plannerName; case 2: @@ -11146,8 +11129,8 @@ oncifp_InitialState_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$queryText0; - var$3 = $x$1.$queryText0; + var$2 = $this.$queryText; + var$3 = $x$1.$queryText; if (var$2 !== null) { if (!jl_String_equals(var$2, var$3)) break b; @@ -11289,10 +11272,10 @@ oncifp_InitialState_equals = ($this, $x$1) => { oncifp_InitialState_withStatement = ($this, $s) => { let var$2; var$2 = s_Some__init_($s); - return oncifp_InitialState_copy($this, $this.$queryText0, $this.$plannerName, $this.$anonymousVariableNameGenerator, $this.$maybeProcedureSignatureVersion, var$2, $this.$maybeSemantics, $this.$maybeExtractedParams, $this.$maybeSemanticTable, $this.$accumulatedConditions, $this.$maybeReturnColumns, $this.$maybeObfuscationMetadata); + return oncifp_InitialState_copy($this, $this.$queryText, $this.$plannerName, $this.$anonymousVariableNameGenerator, $this.$maybeProcedureSignatureVersion, var$2, $this.$maybeSemantics, $this.$maybeExtractedParams, $this.$maybeSemanticTable, $this.$accumulatedConditions, $this.$maybeReturnColumns, $this.$maybeObfuscationMetadata); }, oncifp_InitialState__init_ = ($this, $queryText, $plannerName, $anonymousVariableNameGenerator, $maybeProcedureSignatureVersion, $maybeStatement, $maybeSemantics, $maybeExtractedParams, $maybeSemanticTable, $accumulatedConditions, $maybeReturnColumns, $maybeObfuscationMetadata) => { - $this.$queryText0 = $queryText; + $this.$queryText = $queryText; $this.$plannerName = $plannerName; $this.$anonymousVariableNameGenerator = $anonymousVariableNameGenerator; $this.$maybeProcedureSignatureVersion = $maybeProcedureSignatureVersion; @@ -11317,9 +11300,9 @@ cnsa_SemanticAnalyzer$IDPPlannerName$_toTextOutput = null, cnsa_SemanticAnalyzer$IDPPlannerName$_version = null, cnsa_SemanticAnalyzer$IDPPlannerName$__clinit_ = () => { cnsa_SemanticAnalyzer$IDPPlannerName$_MODULE$ = new cnsa_SemanticAnalyzer$IDPPlannerName$; - cnsa_SemanticAnalyzer$IDPPlannerName$_name = $rt_s(77); - cnsa_SemanticAnalyzer$IDPPlannerName$_toTextOutput = $rt_s(78); - cnsa_SemanticAnalyzer$IDPPlannerName$_version = $rt_s(79); + cnsa_SemanticAnalyzer$IDPPlannerName$_name = $rt_s(78); + cnsa_SemanticAnalyzer$IDPPlannerName$_toTextOutput = $rt_s(79); + cnsa_SemanticAnalyzer$IDPPlannerName$_version = $rt_s(80); }, cnsa_SemanticAnalyzer$IDPPlannerName$_productArity = $this => { return 0; @@ -11334,7 +11317,7 @@ cnsa_SemanticAnalyzer$IDPPlannerName$_hashCode = $this => { return (-10148440); }, cnsa_SemanticAnalyzer$IDPPlannerName$_toString = $this => { - return $rt_s(80); + return $rt_s(81); }; function onciu_AnonymousVariableNameGenerator() { let a = this; jl_Object.call(a); @@ -11366,11 +11349,11 @@ onciu_AnonymousVariableNameGenerator$__clinit_ = () => { var$1 = new onciu_AnonymousVariableNameGenerator$; onciu_AnonymousVariableNameGenerator$_$callClinit(); onciu_AnonymousVariableNameGenerator$_MODULE$ = var$1; - onciu_AnonymousVariableNameGenerator$_generatorName0 = $rt_s(81); + onciu_AnonymousVariableNameGenerator$_generatorName0 = $rt_s(82); var$1 = onciu_AnonymousVariableNameGenerator$_generatorName(var$1); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(82)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(83)), var$1); onciu_AnonymousVariableNameGenerator$_prefix = jl_AbstractStringBuilder_toString(var$2); }, onciu_AnonymousVariableNameGenerator$_generatorName = $this => { @@ -11390,13 +11373,11 @@ oncifp_InitialState$__clinit_ = () => { }; function oncifp_FrontEndCompilationPhases$ParsingConfig() { let a = this; jl_Object.call(a); - a.$cypherVersion0 = null; a.$extractLiterals = null; a.$parameterTypeMapping = null; a.$semanticFeatures = null; a.$obfuscateLiterals = 0; - a.$antlrParserEnabled = 0; - a.$$outer83 = null; + a.$$outer74 = null; } let cnsa_SemanticAnalysisResult = $rt_classWithoutFields(0); function cnsa_SemanticAnalysisResultImpl() { @@ -11404,16 +11385,7 @@ function cnsa_SemanticAnalysisResultImpl() { a.$errors2 = null; a.$notifications0 = null; } -let cnsa_SemanticAnalysisResultImpl__init_ = ($this, $errors, $notifications) => { - $this.$errors2 = $errors; - $this.$notifications0 = $notifications; -}, -cnsa_SemanticAnalysisResultImpl__init_0 = (var_0, var_1) => { - let var_2 = new cnsa_SemanticAnalysisResultImpl(); - cnsa_SemanticAnalysisResultImpl__init_(var_2, var_0, var_1); - return var_2; -}, -cnsa_SemanticAnalysisResultImpl_getNotifications$exported$0 = var$0 => { +let cnsa_SemanticAnalysisResultImpl_getNotifications$exported$0 = var$0 => { return otji_JS_wrap(var$0.$notifications0); }, cnsa_SemanticAnalysisResultImpl_setNotifications$exported$1 = (var$0, var$1) => { @@ -11470,7 +11442,7 @@ jl_System_arraycopy = ($src, $srcPos, $dest, $destPos, $length) => { if (!jl_Class_isInstance($targetType, var$11[var$10])) { jl_System_doArrayCopy($src, $srcPos, $dest, $destPos, $i); $src = new jl_ArrayStoreException; - jl_Throwable__init_($src); + jl_Throwable__init_0($src); $rt_throw($src); } $i = $i + 1 | 0; @@ -11487,7 +11459,7 @@ jl_System_arraycopy = ($src, $srcPos, $dest, $destPos, $length) => { break a; } $src = new jl_ArrayStoreException; - jl_Throwable__init_($src); + jl_Throwable__init_0($src); $rt_throw($src); } } @@ -11495,15 +11467,15 @@ jl_System_arraycopy = ($src, $srcPos, $dest, $destPos, $length) => { return; } $src = new jl_ArrayStoreException; - jl_Throwable__init_($src); + jl_Throwable__init_0($src); $rt_throw($src); } $src = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($src); + jl_Throwable__init_0($src); $rt_throw($src); } $dest = new jl_NullPointerException; - jl_Throwable__init_0($dest, $rt_s(83)); + jl_Throwable__init_($dest, $rt_s(84)); $rt_throw($dest); }, jl_System_fastArraycopy = ($src, $srcPos, $dest, $destPos, $length) => { @@ -11512,7 +11484,7 @@ jl_System_fastArraycopy = ($src, $srcPos, $dest, $destPos, $length) => { return; } $src = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($src); + jl_Throwable__init_0($src); $rt_throw($src); }, jl_System_doArrayCopy = (var$1, var$2, var$3, var$4, var$5) => { @@ -11535,19 +11507,19 @@ jl_System_doArrayCopy = (var$1, var$2, var$3, var$4, var$5) => { jl_System_currentTimeMillis = () => { return Long_fromNumber((new Date()).getTime()); }, -jl_System_getProperty0 = var$1 => { +jl_System_getProperty = var$1 => { let var$2, var$3; if (jl_System_properties === null) { var$2 = new ju_Properties; ju_Hashtable__init_(var$2); - ju_Hashtable_put(var$2, $rt_s(84), $rt_s(85)); - ju_Hashtable_put(var$2, $rt_s(86), $rt_s(87)); - ju_Hashtable_put(var$2, $rt_s(88), $rt_s(89)); - ju_Hashtable_put(var$2, $rt_s(90), $rt_s(91)); - ju_Hashtable_put(var$2, $rt_s(92), $rt_s(93)); - ju_Hashtable_put(var$2, $rt_s(94), $rt_s(95)); - ju_Hashtable_put(var$2, $rt_s(96), $rt_s(85)); - ju_Hashtable_put(var$2, $rt_s(97), $rt_s(89)); + ju_Hashtable_put(var$2, $rt_s(85), $rt_s(86)); + ju_Hashtable_put(var$2, $rt_s(87), $rt_s(88)); + ju_Hashtable_put(var$2, $rt_s(89), $rt_s(90)); + ju_Hashtable_put(var$2, $rt_s(91), $rt_s(92)); + ju_Hashtable_put(var$2, $rt_s(93), $rt_s(94)); + ju_Hashtable_put(var$2, $rt_s(95), $rt_s(96)); + ju_Hashtable_put(var$2, $rt_s(97), $rt_s(86)); + ju_Hashtable_put(var$2, $rt_s(98), $rt_s(90)); var$3 = new ju_Properties; ju_Hashtable__init_(var$3); var$3.$defaults = var$2; @@ -11555,9 +11527,9 @@ jl_System_getProperty0 = var$1 => { } return ju_Properties_getProperty(jl_System_properties, var$1); }, -jl_System_getProperty = ($key, $def) => { +jl_System_getProperty0 = ($key, $def) => { let $value; - $value = jl_System_getProperty0($key); + $value = jl_System_getProperty($key); if ($value !== null) $def = $value; return $def; @@ -11609,12 +11581,12 @@ sr_Statics_anyHash = $x => { if (!($x instanceof jl_Number)) return $x.$hashCode(); $x = $x; - return $x instanceof jl_Long ? sr_Statics_longHash($x.$value10) : $x instanceof jl_Double ? sr_Statics_doubleHash($x.$value12) : !($x instanceof jl_Float) ? $x.$hashCode() : sr_Statics_floatHash($x.$value15); + return $x instanceof jl_Long ? sr_Statics_longHash($x.$value10) : $x instanceof jl_Double ? sr_Statics_doubleHash($x.$value11) : !($x instanceof jl_Float) ? $x.$hashCode() : sr_Statics_floatHash($x.$value15); }, sr_Statics_ioobe = $n => { let var$2; var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_0(var$2, jl_String_valueOf0($n)); + jl_Throwable__init_(var$2, jl_String_valueOf0($n)); $rt_throw(var$2); }, sr_Statics__clinit_ = () => { @@ -11666,6 +11638,9 @@ s_Option_filter = ($this, $p) => { return s_None$_MODULE$; return $this; }, +s_Option_nonEmpty = $this => { + return s_Option_isDefined($this); +}, s_Option_contains = ($this, $elem) => { if (!s_Option_isEmpty($this) && sr_BoxesRunTime_equals($this.$get1(), $elem)) return 1; @@ -11712,7 +11687,7 @@ s_Some_get = $this => { return $this.$value5; }, s_Some_productPrefix = $this => { - return $rt_s(98); + return $rt_s(99); }, s_Some_productArity = $this => { return 1; @@ -11774,12 +11749,12 @@ s_None$_hashCode = $this => { return 2433880; }, s_None$_toString = $this => { - return $rt_s(99); + return $rt_s(100); }, s_None$_get = $this => { let var$1; var$1 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$1, $rt_s(100)); + jl_Throwable__init_(var$1, $rt_s(101)); $rt_throw(var$1); }, onciu_InternalNotificationLogger = $rt_classWithoutFields(0); @@ -11852,7 +11827,7 @@ sc_AbstractSet_hashCode = $this => { return sc_Set_hashCode$($this); }, sc_AbstractSet_stringPrefix = $this => { - return $rt_s(101); + return $rt_s(102); }, sc_AbstractSet_toString = $this => { return sc_Iterable_toString$($this); @@ -11883,7 +11858,7 @@ sc_AbstractSet_concat = ($this, $that) => { else { var$2 = $this.$iterator0(); var$3 = new sc_SetOps$concat$lambda$_23_0; - var$3.$_0308 = $that; + var$3.$_0298 = $that; $that = var$2.$concat0(var$3); } var$2 = $this.$fromSpecific($that); @@ -11943,7 +11918,7 @@ scm_Shrinkable_subtractAll$ = ($$this, $xs) => { } else if (!$rt_isInstance($xs, sc_LinearSeq)) { $xs = $xs.$iterator0(); var$3 = new scm_Shrinkable$subtractAll$lambda$_6_0; - var$3.$_0844 = $$this; + var$3.$_0820 = $$this; $xs.$foreach(var$3); } else { $xs = $xs; @@ -12086,7 +12061,7 @@ scm_HashSet_addAll = ($this, $xs) => { } $xs = $xs; $foreachWithHash_f = new scm_HashSet$addAll$lambda$_52_0; - $foreachWithHash_f.$_0843 = $this; + $foreachWithHash_f.$_0819 = $this; $foreachWithHash_foreachWithHash_this = $xs.$rootNode1; if ($foreachWithHash_foreachWithHash_this === null) $rt_throw(null); @@ -12265,7 +12240,7 @@ scm_HashSet_foreach = ($this, $f) => { } }, scm_HashSet_className = $this => { - return $rt_s(102); + return $rt_s(103); }, scm_HashSet_hashCode = $this => { let $hashIterator, var$2; @@ -12273,7 +12248,7 @@ scm_HashSet_hashCode = $this => { scm_HashSet$HashSetIterator__init_($hashIterator, $this); if (!sc_Iterator_isEmpty$($hashIterator)) { $hashIterator = new scm_HashSet$$anon$3; - $hashIterator.$$outer45 = $this; + $hashIterator.$$outer41 = $this; scm_HashSet$HashSetIterator__init_($hashIterator, $this); $hashIterator.$hash8 = 0; } @@ -12326,7 +12301,7 @@ scm_HashSet_subtractAll = ($this, $xs) => { } else { $xs = $xs; var$3 = new scm_HashSet$subtractAll$lambda$_53_0; - var$3.$_01013 = $this; + var$3.$_01005 = $this; if ($xs === null) $rt_throw(null); var$2 = $xs.$rootNode1; @@ -12391,10 +12366,10 @@ oncm_MessageUtilProvider$__clinit_ = () => { oncm_MessageUtilProvider$_MODULE$ = new oncm_MessageUtilProvider$; }, oncm_MessageUtilProvider$_createMissingPropertyLabelHintError = ($this, $operatorDescription, $hintStringification, $missingThingDescription, $foundThingsDescription, $entityDescription, $entityName, $additionalInfo) => { - return jl_String_format($rt_s(103), $rt_wrapArray(jl_Object, [$operatorDescription, $hintStringification, jl_String_format($rt_s(104), $rt_wrapArray(jl_Object, [$missingThingDescription, $foundThingsDescription, $entityDescription, $entityName, $additionalInfo]))])); + return jl_String_format($rt_s(104), $rt_wrapArray(jl_Object, [$operatorDescription, $hintStringification, jl_String_format($rt_s(105), $rt_wrapArray(jl_Object, [$missingThingDescription, $foundThingsDescription, $entityDescription, $entityName, $additionalInfo]))])); }, oncm_MessageUtilProvider$_createUseClauseUnsupportedError = $this => { - return $rt_s(105); + return $rt_s(106); }, oncm_MessageUtilProvider$_createDynamicGraphReferenceUnsupportedError = ($this, $graphName) => { let var$2, var$3; @@ -12402,32 +12377,32 @@ oncm_MessageUtilProvider$_createDynamicGraphReferenceUnsupportedError = ($this, s_Predef$_$callClinit(); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(106)), $graphName); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(107)), $graphName); return sc_StringOps$_stripMargin$extension(var$2, jl_AbstractStringBuilder_toString(var$3)); }, oncm_MessageUtilProvider$_createMultipleGraphReferencesError = ($this, $graphName, $transactionalDefault) => { let $graphPostfix, var$4, var$5; - $graphPostfix = !$transactionalDefault ? $rt_s(4) : $rt_s(107); + $graphPostfix = !$transactionalDefault ? $rt_s(4) : $rt_s(108); var$4 = sc_StringOps$_MODULE$; s_Predef$_$callClinit(); var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(108)), $graphName), $graphPostfix); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(109)), $graphName), $graphPostfix); return sc_StringOps$_stripMargin$extension(var$4, jl_AbstractStringBuilder_toString(var$5)); }, oncm_MessageUtilProvider$_createMultipleGraphReferencesError$default$2 = $this => { return 0; }, -s_Function6 = $rt_classWithoutFields(0), -sr_AbstractFunction6 = $rt_classWithoutFields(); +s_Function4 = $rt_classWithoutFields(0), +sr_AbstractFunction4 = $rt_classWithoutFields(); function oncifp_FrontEndCompilationPhases$ParsingConfig$() { - sr_AbstractFunction6.call(this); - this.$$outer69 = null; + sr_AbstractFunction4.call(this); + this.$$outer61 = null; } let oncifp_FrontEndCompilationPhases$ParsingConfig$__init_ = ($this, $$outer) => { if ($$outer === null) $rt_throw(null); - $this.$$outer69 = $$outer; + $this.$$outer61 = $$outer; }, oncifp_FrontEndCompilationPhases$ParsingConfig$__init_0 = var_0 => { let var_1 = new oncifp_FrontEndCompilationPhases$ParsingConfig$(); @@ -12452,7 +12427,7 @@ oncifp_Transformer_checkConditions$ = ($$this, $state, $conditions, $cancellatio $$this = $$this.$name(); var$5 = sc_IterableOnceOps_toSeq$($conditions); $conditions = new oncifp_Transformer$$anonfun$1; - $conditions.$state$1 = $state; + $conditions.$state$10 = $state; $conditions.$cancellationChecker$10 = $cancellationChecker; $state = var$5.$collect($conditions); s_Predef$_$callClinit(); @@ -12461,32 +12436,29 @@ oncifp_Transformer_checkConditions$ = ($$this, $state, $conditions, $cancellatio return 1; $conditions = new jl_StringBuilder; jl_AbstractStringBuilder__init_($conditions); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($conditions, $rt_s(109)), $$this), 10); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($conditions, $rt_s(110)), $$this), 10); $cancellationChecker = jl_AbstractStringBuilder_toString($conditions); $$this = new jl_IllegalStateException; $state = sc_AbstractIterable_mkString($state, $rt_s(45)); $conditions = new jl_StringBuilder; jl_AbstractStringBuilder__init_($conditions); jl_StringBuilder_append(jl_StringBuilder_append($conditions, $cancellationChecker), $state); - jl_Throwable__init_0($$this, jl_AbstractStringBuilder_toString($conditions)); + jl_Throwable__init_($$this, jl_AbstractStringBuilder_toString($conditions)); $rt_throw($$this); }, -oncifp_Transformer_$init$ = $$this => { - return; -}, oncifp_Phase = $rt_classWithoutFields(0), oncifp_Phase_transform$ = ($$this, $from, $context) => { let var$4, var$5, var$6, $$je; $$this.$phase(); var$4 = oncifp_CompilationPhaseTracer_NONE_PHASE; var$5 = new oncifp_Phase$transform$lambda$_2_0; - var$5.$_0961 = $$this; - var$5.$_1336 = $from; - var$5.$_2115 = $context; + var$5.$_0952 = $$this; + var$5.$_1327 = $from; + var$5.$_2112 = $context; $context = new oncifh_package$$closing$default$3$lambda$_2_0; $from = new oncifh_package$$closing$default$4$lambda$_3_0; $$this = new oncifh_package$$closing$lambda$_1_0; - $$this.$_01128 = var$5; + $$this.$_01104 = var$5; a: { b: { try { @@ -12572,9 +12544,6 @@ oncifp_Phase_transform$ = ($$this, $from, $context) => { } $rt_throw($$this); }, -oncifp_Phase_$init$ = $$this => { - return; -}, oncifp_ExpandStarRewriter$ = $rt_classWithoutFields(), oncifp_ExpandStarRewriter$_MODULE$ = null, oncifp_ExpandStarRewriter$__clinit_ = () => { @@ -12605,7 +12574,7 @@ oncifp_ExpandStarRewriter$_postConditions = $this => { return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, oncifp_ExpandStarRewriter$_productPrefix = $this => { - return $rt_s(110); + return $rt_s(111); }, oncifp_ExpandStarRewriter$_process = ($this, $from, $context) => { let var$3, var$4, var$5; @@ -12618,10 +12587,9 @@ oncifp_ExpandStarRewriter$_process = ($this, $from, $context) => { onciu_Rewriter$_$callClinit(); var$4 = onciu_Rewriter$_MODULE$; var$5 = new oncirr_expandStar$$anonfun$1; - var$5.$$outer9 = var$3; + var$5.$$outer6 = var$3; var$5 = onciu_Rewriter$_lift(var$4, var$5); var$3.$rewriter2 = var$5; - onciu_topDown$_$callClinit(); var$4 = onciu_topDown$_MODULE$; var$3.$instance2 = onciu_topDown$_apply(var$4, var$5, onciu_topDown$_apply$default$2(var$4), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); return oncifp_InitialState_withStatement($from, var$3.$apply2($context)); @@ -12641,7 +12609,7 @@ oncifp_If_name = $this => { var$1 = ($this.$thenT.$apply4()).$name(); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(111)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(112)), var$1); return jl_AbstractStringBuilder_toString(var$2); }, oncifp_If_postConditions = $this => { @@ -12663,24 +12631,24 @@ oncifp_If__init_0 = (var_0, var_1) => { }; function cnsa_SemanticAnalyzer$$parsing$lambda$_2_0() { jl_Object.call(this); - this.$_01049 = null; + this.$_01037 = null; } let cnsa_SemanticAnalyzer$$parsing$lambda$_2_0_apply = (var$0, var$1) => { - var$1 = var$0.$_01049; + var$1 = var$0.$_01037; cnsa_SemanticAnalyzer$_$callClinit(); return jl_Boolean_valueOf(s_Option_isDefined(var$1)); }, s_Function0 = $rt_classWithoutFields(0), s_Function0_toString = $this => { - return $rt_s(112); + return $rt_s(113); }; function cnsa_SemanticAnalyzer$$parsing$lambda$_2_1() { jl_Object.call(this); - this.$_0569 = null; + this.$_0552 = null; } let cnsa_SemanticAnalyzer$$parsing$lambda$_2_1_apply = var$0 => { let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0569; + var$1 = var$0.$_0552; cnsa_SemanticAnalyzer$_$callClinit(); var$2 = new oncifp_TryRewriteProcedureCalls; var$1 = s_Option_orNull(var$1, s_$less$colon$less$_singleton); @@ -12688,22 +12656,15 @@ let cnsa_SemanticAnalyzer$$parsing$lambda$_2_1_apply = var$0 => { onciu_Rewriter$_$callClinit(); var$3 = onciu_Rewriter$_MODULE$; var$4 = new oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1; - var$4.$$outer30 = var$2; + var$4.$$outer27 = var$2; var$2.$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations = onciu_Rewriter$_lift(var$3, var$4); var$2.$rewriter3 = oncifp_TryRewriteProcedureCalls_rewriter(var$2, var$1); return var$2; }, oncifp_ObfuscationMetadataCollection$ = $rt_classWithoutFields(), oncifp_ObfuscationMetadataCollection$_MODULE$ = null, -oncifp_ObfuscationMetadataCollection$_$callClinit = () => { - oncifp_ObfuscationMetadataCollection$_$callClinit = $rt_eraseClinit(oncifp_ObfuscationMetadataCollection$); - oncifp_ObfuscationMetadataCollection$__clinit_(); -}, oncifp_ObfuscationMetadataCollection$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ObfuscationMetadataCollection$; - oncifp_ObfuscationMetadataCollection$_$callClinit(); - oncifp_ObfuscationMetadataCollection$_MODULE$ = var$1; + oncifp_ObfuscationMetadataCollection$_MODULE$ = new oncifp_ObfuscationMetadataCollection$; }, oncifp_ObfuscationMetadataCollection$_transform = ($this, $from, $context) => { return oncifp_Phase_transform$($this, $from, $context); @@ -12726,7 +12687,7 @@ oncifp_ObfuscationMetadataCollection$_postConditions = $this => { return sci_Set$EmptySet$_MODULE$; }, oncifp_ObfuscationMetadataCollection$_productPrefix = $this => { - return $rt_s(113); + return $rt_s(114); }, oncifp_ObfuscationMetadataCollection$_process = ($this, $from, $context) => { let var$3, var$4, var$5, var$6; @@ -12750,7 +12711,7 @@ oncifp_ObfuscationMetadataCollection$_process = ($this, $from, $context) => { $context.$sensitiveLiteralOffsets = var$4; $context.$sensitiveParameterNames = var$3; var$3 = s_Some__init_($context); - return oncifp_InitialState_copy($from, $from.$queryText0, $from.$plannerName, $from.$anonymousVariableNameGenerator, $from.$maybeProcedureSignatureVersion, $from.$maybeStatement, $from.$maybeSemantics, $from.$maybeExtractedParams, $from.$maybeSemanticTable, $from.$accumulatedConditions, $from.$maybeReturnColumns, var$3); + return oncifp_InitialState_copy($from, $from.$queryText, $from.$plannerName, $from.$anonymousVariableNameGenerator, $from.$maybeProcedureSignatureVersion, $from.$maybeStatement, $from.$maybeSemantics, $from.$maybeExtractedParams, $from.$maybeSemanticTable, $from.$accumulatedConditions, $from.$maybeReturnColumns, var$3); }, oncifp_VisitorPhase = $rt_classWithoutFields(0), oncifp_VisitorPhase_postConditions$ = $$this => { @@ -12758,9 +12719,6 @@ oncifp_VisitorPhase_postConditions$ = $$this => { s_Predef$_Set(s_Predef$_MODULE$); return sci_Set$EmptySet$_MODULE$; }, -oncifp_VisitorPhase_$init$ = $$this => { - return; -}, oncifp_AmbiguousAggregationAnalysis = $rt_classWithoutFields(), oncifp_AmbiguousAggregationAnalysis_process = ($this, $from, $context) => { $this.$visit($from, $context); @@ -12785,26 +12743,19 @@ oncifp_AmbiguousAggregationAnalysis_phase = $this => { return oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_CHECK; }, oncifp_AmbiguousAggregationAnalysis_productPrefix = $this => { - return $rt_s(114); + return $rt_s(115); }, oncifp_AmbiguousAggregationAnalysis_visit = ($this, $value, $context) => { let var$3; var$3 = (oncifp_InitialState_statement($value)).$folder(); s_package$_$callClinit(); $value = onciu_Foldable$Folder_fold(var$3, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), new oncifp_AmbiguousAggregationAnalysis$$anonfun$1); - cnsa_EnrichedContext$errorHandler$lambda$_6_0_apply(cnsa_EnrichedContext_errorHandler($context), $value); + cnsa_EnrichedContext$errorHandler$lambda$_7_0_apply(cnsa_EnrichedContext_errorHandler($context), $value); }, oncifp_ProcedureAndFunctionDeprecationWarnings$ = $rt_classWithoutFields(), oncifp_ProcedureAndFunctionDeprecationWarnings$_MODULE$ = null, -oncifp_ProcedureAndFunctionDeprecationWarnings$_$callClinit = () => { - oncifp_ProcedureAndFunctionDeprecationWarnings$_$callClinit = $rt_eraseClinit(oncifp_ProcedureAndFunctionDeprecationWarnings$); - oncifp_ProcedureAndFunctionDeprecationWarnings$__clinit_(); -}, oncifp_ProcedureAndFunctionDeprecationWarnings$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$; - oncifp_ProcedureAndFunctionDeprecationWarnings$_$callClinit(); - oncifp_ProcedureAndFunctionDeprecationWarnings$_MODULE$ = var$1; + oncifp_ProcedureAndFunctionDeprecationWarnings$_MODULE$ = new oncifp_ProcedureAndFunctionDeprecationWarnings$; }, oncifp_ProcedureAndFunctionDeprecationWarnings$_process = ($this, $from, $context) => { $this.$visit($from, $context); @@ -12829,7 +12780,7 @@ oncifp_ProcedureAndFunctionDeprecationWarnings$_phase = $this => { return oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS; }, oncifp_ProcedureAndFunctionDeprecationWarnings$_productPrefix = $this => { - return $rt_s(115); + return $rt_s(116); }, oncifp_ProcedureAndFunctionDeprecationWarnings$_visit = ($this, $value, $context) => { let var$3; @@ -12839,7 +12790,7 @@ oncifp_ProcedureAndFunctionDeprecationWarnings$_visit = ($this, $value, $context $value = onciu_Foldable$Folder_treeFold(var$3, sci_Set$EmptySet$_MODULE$, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1); var$3 = $context.$logger; $context = new oncifp_ProcedureAndFunctionDeprecationWarnings$$visit$lambda$_10_0; - $context.$_0965 = var$3; + $context.$_0959 = var$3; $value.$foreach($context); }, oncifp_ProcedureWarnings$ = $rt_classWithoutFields(), @@ -12875,9 +12826,9 @@ oncifp_ProcedureWarnings$_checkConditions = ($this, $state, $conditions, $cancel }, oncifp_ProcedureWarnings$_phase = $this => { return oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS; -}; -let oncifp_ProcedureWarnings$_productPrefix = $this => { - return $rt_s(116); +}, +oncifp_ProcedureWarnings$_productPrefix = $this => { + return $rt_s(117); }, oncifp_ProcedureWarnings$_visit = ($this, $value, $context) => { let var$3, var$4; @@ -12890,7 +12841,7 @@ oncifp_ProcedureWarnings$_visit = ($this, $value, $context) => { $value = var$4.$concat1(onciu_Foldable$Folder_treeFold(var$3, sci_Set$EmptySet$_MODULE$, new oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1)); var$4 = $context.$logger; $context = new oncifp_ProcedureWarnings$$visit$lambda$_10_0; - $context.$_0293 = var$4; + $context.$_0278 = var$4; $value.$foreach($context); }; function oncifp_SemanticAnalysis() { @@ -12936,7 +12887,7 @@ oncifp_SemanticAnalysis_postConditions = $this => { return var$5.$concat(oncirc_package$_SemanticInfoAvailable(oncirc_package$_MODULE$)); }, oncifp_SemanticAnalysis_productPrefix = $this => { - return $rt_s(117); + return $rt_s(118); }, oncifp_SemanticAnalysis_process = ($this, $from, $context) => { let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; @@ -12956,20 +12907,21 @@ oncifp_SemanticAnalysis_process = ($this, $from, $context) => { $context = oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$; var$8 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$8); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$8, $rt_s(118)), $from), $rt_s(119)), $context), $rt_s(120)); - jl_Throwable__init_0(var$7, jl_AbstractStringBuilder_toString(var$8)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$8, $rt_s(119)), $from), $rt_s(120)), $context), $rt_s(121)); + jl_Throwable__init_(var$7, jl_AbstractStringBuilder_toString(var$8)); $rt_throw(var$7); } var$8 = (var$8.$semanticCheck()).$run(var$6, var$7); - oncias_ScopeTreeVerifier$_$callClinit(); - var$9 = (onciuh_TreeZipper$Location_root(var$8.$state.$currentScope)).$elem0; + var$7 = var$8.$state; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$9 = (onciuh_TreeZipper$Location_root(var$7.$currentScope)).$elem0; var$7 = oncias_Scope_allScopes(var$9); var$3 = new oncias_ScopeTreeVerifier$$verify$lambda$_1_0; - var$3.$_0731 = var$9; + var$3.$_0715 = var$9; var$7 = var$7.$flatMap(var$3); if (sc_IterableOnceOps_nonEmpty$(var$7)) { $context = new jl_IllegalStateException; - jl_Throwable__init_0($context, sc_AbstractIterable_mkString(var$7, $rt_s(93))); + jl_Throwable__init_($context, sc_AbstractIterable_mkString(var$7, $rt_s(94))); $rt_throw($context); } var$7 = s_Tuple2__init_(var$8.$state, var$8.$errors0); @@ -12979,10 +12931,10 @@ oncifp_SemanticAnalysis_process = ($this, $from, $context) => { var$6 = var$8.$notifications; var$9 = $context.$logger; var$3 = new oncifp_SemanticAnalysis$process$lambda$_13_0; - var$3.$_0540 = var$9; + var$3.$_0525 = var$9; var$6.$foreach(var$3); } - cnsa_EnrichedContext$errorHandler$lambda$_6_0_apply(cnsa_EnrichedContext_errorHandler($context), var$7); + cnsa_EnrichedContext$errorHandler$lambda$_7_0_apply(cnsa_EnrichedContext_errorHandler($context), var$7); $context = $from.$maybeSemanticTable; if (!($context instanceof s_Some)) { if (!jl_Object_equals(s_None$_MODULE$, $context)) @@ -12998,20 +12950,19 @@ oncifp_SemanticAnalysis_process = ($this, $from, $context) => { $context = oncifp_InitialState_statement($from); var$7 = new oncirr_computeDependenciesForExpressions; var$7.$semanticState = var$8; - onciu_topDown$_$callClinit(); var$6 = onciu_topDown$_MODULE$; onciu_Rewriter$_$callClinit(); var$3 = onciu_Rewriter$_MODULE$; var$9 = new oncirr_computeDependenciesForExpressions$$anonfun$1; - var$9.$$outer44 = var$7; + var$9.$$outer40 = var$7; var$7.$instance1 = onciu_topDown$_apply(var$6, onciu_Rewriter$_lift(var$3, var$9), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); $context = var$7.$apply2($context); } $from = oncifp_InitialState_withStatement($from, $context); $context = s_Some__init_(var$8); - $context = oncifp_InitialState_copy($from, $from.$queryText0, $from.$plannerName, $from.$anonymousVariableNameGenerator, $from.$maybeProcedureSignatureVersion, $from.$maybeStatement, $context, $from.$maybeExtractedParams, $from.$maybeSemanticTable, $from.$accumulatedConditions, $from.$maybeReturnColumns, $from.$maybeObfuscationMetadata); + $context = oncifp_InitialState_copy($from, $from.$queryText, $from.$plannerName, $from.$anonymousVariableNameGenerator, $from.$maybeProcedureSignatureVersion, $from.$maybeStatement, $context, $from.$maybeExtractedParams, $from.$maybeSemanticTable, $from.$accumulatedConditions, $from.$maybeReturnColumns, $from.$maybeObfuscationMetadata); $from = s_Some__init_(var$10); - return oncifp_InitialState_copy($context, oncifp_InitialState_queryText($context), oncifp_InitialState_copy$default$2($context), oncifp_InitialState_copy$default$3($context), oncifp_InitialState_copy$default$4($context), oncifp_InitialState_copy$default$5($context), oncifp_InitialState_copy$default$6($context), oncifp_InitialState_copy$default$7($context), $from, oncifp_InitialState_copy$default$9($context), oncifp_InitialState_copy$default$10($context), oncifp_InitialState_copy$default$11($context)); + return oncifp_InitialState_copy($context, $context.$queryText, oncifp_InitialState_copy$default$2($context), oncifp_InitialState_copy$default$3($context), oncifp_InitialState_copy$default$4($context), oncifp_InitialState_copy$default$5($context), oncifp_InitialState_copy$default$6($context), oncifp_InitialState_copy$default$7($context), $from, oncifp_InitialState_copy$default$9($context), oncifp_InitialState_copy$default$10($context), oncifp_InitialState_copy$default$11($context)); }, oncifp_SemanticAnalysis__init_0 = ($this, $warn, $features) => { $this.$warn0 = $warn; @@ -13052,50 +13003,50 @@ sr_ManifestFactory$__clinit_ = () => { sr_ManifestFactory$_$callClinit(); sr_ManifestFactory$_MODULE$ = var$1; var$1 = new sr_ManifestFactory$ByteManifest; - sr_AnyValManifest__init_(var$1, $rt_s(121)); + sr_AnyValManifest__init_(var$1, $rt_s(122)); sr_ManifestFactory$_Byte = var$1; var$1 = new sr_ManifestFactory$ShortManifest; - sr_AnyValManifest__init_(var$1, $rt_s(122)); + sr_AnyValManifest__init_(var$1, $rt_s(123)); sr_ManifestFactory$_Short = var$1; var$1 = new sr_ManifestFactory$CharManifest; - sr_AnyValManifest__init_(var$1, $rt_s(123)); + sr_AnyValManifest__init_(var$1, $rt_s(124)); sr_ManifestFactory$_Char = var$1; var$1 = new sr_ManifestFactory$IntManifest; - sr_AnyValManifest__init_(var$1, $rt_s(124)); + sr_AnyValManifest__init_(var$1, $rt_s(125)); sr_ManifestFactory$_Int = var$1; var$1 = new sr_ManifestFactory$LongManifest; - sr_AnyValManifest__init_(var$1, $rt_s(125)); + sr_AnyValManifest__init_(var$1, $rt_s(126)); sr_ManifestFactory$_Long = var$1; var$1 = new sr_ManifestFactory$FloatManifest; - sr_AnyValManifest__init_(var$1, $rt_s(126)); + sr_AnyValManifest__init_(var$1, $rt_s(127)); sr_ManifestFactory$_Float = var$1; var$1 = new sr_ManifestFactory$DoubleManifest; - sr_AnyValManifest__init_(var$1, $rt_s(127)); + sr_AnyValManifest__init_(var$1, $rt_s(128)); sr_ManifestFactory$_Double = var$1; var$1 = new sr_ManifestFactory$BooleanManifest; - sr_AnyValManifest__init_(var$1, $rt_s(128)); + sr_AnyValManifest__init_(var$1, $rt_s(129)); sr_ManifestFactory$_Boolean = var$1; var$1 = new sr_ManifestFactory$UnitManifest; - sr_AnyValManifest__init_(var$1, $rt_s(129)); + sr_AnyValManifest__init_(var$1, $rt_s(130)); sr_ManifestFactory$_Unit = var$1; sr_ManifestFactory$_scala$reflect$ManifestFactory$$ObjectTYPE = $rt_cls(jl_Object); sr_ManifestFactory$_scala$reflect$ManifestFactory$$NothingTYPE = $rt_cls(sr_Nothing$); sr_ManifestFactory$_scala$reflect$ManifestFactory$$NullTYPE = $rt_cls(sr_Null$); var$2 = new sr_ManifestFactory$AnyManifest; - sr_ManifestFactory$PhantomManifest__init_(var$2, $rt_cls(jl_Object), $rt_s(130)); + sr_ManifestFactory$PhantomManifest__init_(var$2, $rt_cls(jl_Object), $rt_s(131)); sr_ManifestFactory$_Any = var$2; var$1 = new sr_ManifestFactory$ObjectManifest; - sr_ManifestFactory$PhantomManifest__init_(var$1, sr_ManifestFactory$_scala$reflect$ManifestFactory$$ObjectTYPE, $rt_s(131)); + sr_ManifestFactory$PhantomManifest__init_(var$1, sr_ManifestFactory$_scala$reflect$ManifestFactory$$ObjectTYPE, $rt_s(132)); sr_ManifestFactory$_Object = var$1; sr_ManifestFactory$_AnyRef = sr_ManifestFactory$_Object0(sr_ManifestFactory$_MODULE$); var$1 = new sr_ManifestFactory$AnyValPhantomManifest; - sr_ManifestFactory$PhantomManifest__init_(var$1, sr_ManifestFactory$_scala$reflect$ManifestFactory$$ObjectTYPE, $rt_s(132)); + sr_ManifestFactory$PhantomManifest__init_(var$1, sr_ManifestFactory$_scala$reflect$ManifestFactory$$ObjectTYPE, $rt_s(133)); sr_ManifestFactory$_AnyVal = var$1; var$1 = new sr_ManifestFactory$NullManifest; - sr_ManifestFactory$PhantomManifest__init_(var$1, sr_ManifestFactory$_scala$reflect$ManifestFactory$$NullTYPE, $rt_s(133)); + sr_ManifestFactory$PhantomManifest__init_(var$1, sr_ManifestFactory$_scala$reflect$ManifestFactory$$NullTYPE, $rt_s(134)); sr_ManifestFactory$_Null = var$1; var$1 = new sr_ManifestFactory$NothingManifest; - sr_ManifestFactory$PhantomManifest__init_(var$1, sr_ManifestFactory$_scala$reflect$ManifestFactory$$NothingTYPE, $rt_s(134)); + sr_ManifestFactory$PhantomManifest__init_(var$1, sr_ManifestFactory$_scala$reflect$ManifestFactory$$NothingTYPE, $rt_s(135)); sr_ManifestFactory$_Nothing = var$1; }, sr_ManifestFactory$_Object0 = $this => { @@ -13106,7 +13057,7 @@ function jur_AbstractSet() { let a = this; jl_Object.call(a); a.$next4 = null; a.$isSecondPassVisited = 0; - a.$index12 = null; + a.$index11 = null; a.$type4 = 0; } let jur_AbstractSet_counter = 0, @@ -13114,13 +13065,13 @@ jur_AbstractSet__init_ = $this => { let var$1; var$1 = jur_AbstractSet_counter; jur_AbstractSet_counter = var$1 + 1 | 0; - $this.$index12 = jl_Integer_toString(var$1); + $this.$index11 = jl_Integer_toString(var$1); }, jur_AbstractSet__init_0 = ($this, $n) => { let var$2; var$2 = jur_AbstractSet_counter; jur_AbstractSet_counter = var$2 + 1 | 0; - $this.$index12 = jl_Integer_toString(var$2); + $this.$index11 = jl_Integer_toString(var$2); $this.$next4 = $n; }, jur_AbstractSet_find = ($this, $stringIndex, $testString, $matchResult) => { @@ -13153,7 +13104,7 @@ jur_AbstractSet_getType = $this => { }, jur_AbstractSet_getQualifiedName = $this => { let var$1, var$2, var$3; - var$1 = $this.$index12; + var$1 = $this.$index11; var$2 = $this.$getName(); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); @@ -13292,7 +13243,7 @@ jur_FSet_getGroupIndex = $this => { return $this.$groupIndex0; }, jur_FSet_getName = $this => { - return $rt_s(135); + return $rt_s(136); }, jur_FSet_hasConsumed = ($this, $mr) => { return 0; @@ -13739,7 +13690,7 @@ jur_Lexer_parseCharClassName = $this => { $sb = jl_String__init_1(var$3, jur_Lexer_nextIndex($this), 1); $res = new jl_StringBuilder; jl_AbstractStringBuilder__init_($res); - jl_StringBuilder_append(jl_StringBuilder_append($res, $rt_s(136)), $sb); + jl_StringBuilder_append(jl_StringBuilder_append($res, $rt_s(137)), $sb); return jl_AbstractStringBuilder_toString($res); } jur_Lexer_nextIndex($this); @@ -13765,16 +13716,16 @@ jur_Lexer_parseCharClassName = $this => { if ($res.$nativeString.length == 1) { $sb = new jl_StringBuilder; jl_AbstractStringBuilder__init_($sb); - jl_StringBuilder_append(jl_StringBuilder_append($sb, $rt_s(136)), $res); + jl_StringBuilder_append(jl_StringBuilder_append($sb, $rt_s(137)), $res); return jl_AbstractStringBuilder_toString($sb); } b: { c: { if ($res.$nativeString.length > 3) { - if (jl_String_startsWith($res, $rt_s(136))) - break c; if (jl_String_startsWith($res, $rt_s(137))) break c; + if (jl_String_startsWith($res, $rt_s(138))) + break c; } break b; } @@ -13799,7 +13750,7 @@ jur_Lexer_processQuantifier = ($this, $ch) => { break a; if ($ch == 44 && $min < 0) try { - $min = jl_Integer_parseInt0(jl_StringBuilder_toString($sb), 10); + $min = jl_Integer_parseInt(jl_StringBuilder_toString($sb), 10); jl_StringBuilder_delete($sb, 0, jl_StringBuilder_length($sb)); continue; } catch ($$e) { @@ -13819,7 +13770,7 @@ jur_Lexer_processQuantifier = ($this, $ch) => { if ($sb.$length1 > 0) b: { try { - $max = jl_Integer_parseInt0(jl_StringBuilder_toString($sb), 10); + $max = jl_Integer_parseInt(jl_StringBuilder_toString($sb), 10); if ($min >= 0) break b; $min = $max; @@ -13855,7 +13806,7 @@ jur_Lexer_processQuantifier = ($this, $ch) => { $this.$lookAhead = (-536870789); } $sb = new jur_Quantifier; - $sb.$min3 = $min; + $sb.$min2 = $min; $sb.$max3 = $max; return $sb; }, @@ -13905,7 +13856,7 @@ jur_Lexer_readHex = ($this, $max) => { if (!var$5) a: { try { - $max = jl_Integer_parseInt0(jl_StringBuilder_toString($st), 16); + $max = jl_Integer_parseInt(jl_StringBuilder_toString($st), 16); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_NumberFormatException) { @@ -14062,14 +14013,14 @@ function jur_PatternSyntaxException() { let a = this; jl_IllegalArgumentException.call(a); a.$desc = null; a.$pattern18 = null; - a.$index9 = 0; + a.$index8 = 0; } let jur_PatternSyntaxException__init_0 = ($this, $description, $pattern, $index) => { - jl_Throwable__init_($this); - $this.$index9 = (-1); + jl_Throwable__init_0($this); + $this.$index8 = (-1); $this.$desc = $description; $this.$pattern18 = $pattern; - $this.$index9 = $index; + $this.$index8 = $index; }, jur_PatternSyntaxException__init_ = (var_0, var_1, var_2) => { let var_3 = new jur_PatternSyntaxException(); @@ -14079,7 +14030,7 @@ jur_PatternSyntaxException__init_ = (var_0, var_1, var_2) => { jur_PatternSyntaxException_getMessage = $this => { let $filler, var$2, $temp, var$4, var$5, var$6, var$7, var$8, var$9, var$10; $filler = $rt_s(4); - var$2 = $this.$index9; + var$2 = $this.$index8; if (var$2 >= 1) { $temp = $rt_createCharArray(var$2); var$4 = $temp.data; @@ -14087,7 +14038,7 @@ jur_PatternSyntaxException_getMessage = $this => { var$5 = var$4.length; if (var$2 > var$5) { $filler = new jl_IllegalArgumentException; - jl_Throwable__init_($filler); + jl_Throwable__init_0($filler); $rt_throw($filler); } while (var$2 < var$5) { @@ -14100,7 +14051,7 @@ jur_PatternSyntaxException_getMessage = $this => { var$7 = $this.$desc; var$8 = $this.$pattern18; if (var$8 !== null && var$8.$nativeString.length) { - var$9 = $this.$index9; + var$9 = $this.$index8; var$8 = $this.$pattern18; var$10 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$10); @@ -14115,11 +14066,6 @@ jur_PatternSyntaxException_getMessage = $this => { }, ju_Dictionary = $rt_classWithoutFields(), ju_Map = $rt_classWithoutFields(0), -ju_Map_getOrDefault = ($this, $key, $defaultValue) => { - if (ju_HashMap_containsKey($this, $key)) - $defaultValue = ju_HashMap_get($this, $key); - return $defaultValue; -}, ju_Map_of = ($k1, $v1) => { let var$3; var$3 = new ju_TemplateCollections$SingleEntryMap; @@ -14130,7 +14076,7 @@ ju_Map_of1 = ($k1, $v1, $k2, $v2) => { let var$5; var$5 = new ju_TemplateCollections$TwoEntriesMap; var$5.$first3 = ju_TemplateCollections$ImmutableEntry__init_($k1, $v1); - var$5.$second = ju_TemplateCollections$ImmutableEntry__init_($k2, $v2); + var$5.$second0 = ju_TemplateCollections$ImmutableEntry__init_($k2, $v2); return var$5; }, ju_Map_of0 = ($k1, $v1, $k2, $v2, $k3, $v3) => { @@ -14149,7 +14095,7 @@ ju_Map_entry = ($k, $v) => { }; function ju_Hashtable() { let a = this; ju_Dictionary.call(a); - a.$elementCount3 = 0; + a.$elementCount2 = 0; a.$elementData2 = null; a.$loadFactor3 = 0.0; a.$threshold6 = 0; @@ -14162,7 +14108,7 @@ ju_Hashtable_EMPTY_ITERATOR = null, ju_Hashtable__init_ = $this => { let var$1, var$2; $this.$lastSlot = (-1); - $this.$elementCount3 = 0; + $this.$elementCount2 = 0; var$1 = $rt_createArray(ju_Hashtable$Entry, 11); var$2 = var$1.data; $this.$elementData2 = var$1; @@ -14189,7 +14135,7 @@ ju_Hashtable_get = ($this, $key) => { while ($entry !== null) { if (ju_Hashtable$Entry_equalsKey($entry, $key, $hash)) return $entry.$value9; - $entry = $entry.$next11; + $entry = $entry.$next10; } return null; } finally { @@ -14207,7 +14153,7 @@ ju_Hashtable_put = ($this, $key, $value) => { $index = var$4 % var$5.length | 0; $entry = var$5[$index]; while ($entry !== null && !ju_Hashtable$Entry_equalsKey($entry, $key, $hash)) { - $entry = $entry.$next11; + $entry = $entry.$next10; } if ($entry !== null) { $result = $entry.$value9; @@ -14215,8 +14161,8 @@ ju_Hashtable_put = ($this, $key, $value) => { return $result; } $this.$modCount4 = $this.$modCount4 + 1 | 0; - var$9 = $this.$elementCount3 + 1 | 0; - $this.$elementCount3 = var$9; + var$9 = $this.$elementCount2 + 1 | 0; + $this.$elementCount2 = var$9; if (var$9 > $this.$threshold6) { var$9 = ($this.$elementData2.data.length << 1) + 1 | 0; if (!var$9) @@ -14237,8 +14183,8 @@ ju_Hashtable_put = ($this, $key, $value) => { var$11 = var$12; if (var$12 > $index) $index = var$12; - $entry = $result.$next11; - $result.$next11 = var$5[var$12]; + $entry = $result.$next10; + $result.$next10 = var$5[var$12]; var$5[var$12] = $result; $result = $entry; } @@ -14257,12 +14203,12 @@ ju_Hashtable_put = ($this, $key, $value) => { ju_MapEntry__init_($entry, $key, $value); $entry.$hashcode = jl_String_hashCode($key); var$5 = $this.$elementData2.data; - $entry.$next11 = var$5[$index]; + $entry.$next10 = var$5[$index]; var$5[$index] = $entry; return null; } $key = new jl_NullPointerException; - jl_Throwable__init_($key); + jl_Throwable__init_0($key); $rt_throw($key); } finally { jl_Object_monitorExitSync($this); @@ -14318,10 +14264,10 @@ sr_ClassValueCompat$__clinit_ = () => { }; function sr_ClassValueCompat$FallbackClassValue() { jl_Object.call(this); - this.$$outer38 = null; + this.$$outer34 = null; } let sr_ClassValueCompat$FallbackClassValue_get = ($this, $cls) => { - return sr_ClassTag$cache$_computeValue($this.$$outer38, $cls); + return sr_ClassTag$cache$_computeValue($this.$$outer34, $cls); }; function jl_ClassValue() { jl_Object.call(this); @@ -14332,25 +14278,25 @@ let jl_ClassValue_get = ($this, $clazz) => { $it = $this.$items7; while (true) { if ($it === null) { - $value = sr_ClassTag$cache$_computeValue($this.$$outer43, $clazz); + $value = sr_ClassTag$cache$_computeValue($this.$$outer39, $clazz); $it = new jl_ClassValue$Item; var$4 = $this.$items7; $it.$this$040 = $this; $it.$clazz = $clazz; $it.$value35 = $value; - $it.$next17 = var$4; + $it.$next15 = var$4; $this.$items7 = $it; return $value; } if ($it.$clazz === $clazz) break; - $it = $it.$next17; + $it = $it.$next15; } return $it.$value35; }; function sr_ClassValueCompat$JavaClassValue() { jl_ClassValue.call(this); - this.$$outer43 = null; + this.$$outer39 = null; } let oncias_SemanticFeature$MultipleDatabases$ = $rt_classWithoutFields(), oncias_SemanticFeature$MultipleDatabases$_MODULE$ = null, @@ -14361,7 +14307,7 @@ oncias_SemanticFeature$MultipleDatabases$_toString = $this => { return $this.$name(); }, oncias_SemanticFeature$MultipleDatabases$_name = $this => { - return $rt_s(138); + return $rt_s(139); }, oncias_SemanticFeature$MultipleDatabases$_productArity = $this => { return 0; @@ -14438,11 +14384,11 @@ let scm_HashSet$Node_toString = $this => { let var$1; var$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$1, 12); - jl_AbstractStringBuilder_append(var$1, $rt_s(139)); + jl_AbstractStringBuilder_append(var$1, $rt_s(140)); var$1 = jl_StringBuilder_append(var$1, $this.$_key); jl_AbstractStringBuilder_append(var$1, $rt_s(45)); var$1 = jl_StringBuilder_append0(var$1, $this.$_hash); - jl_AbstractStringBuilder_append(var$1, $rt_s(140)); + jl_AbstractStringBuilder_append(var$1, $rt_s(141)); return jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$1, $this.$_next0)); }, scm_HashSet$Node__init_0 = ($this, $_key, $_hash, $_next) => { @@ -14492,7 +14438,7 @@ jl_Thread__clinit_ = () => { var$2 = null; var$1.$finishedLock = new jl_Object; var$1.$alive = 1; - var$1.$name60 = $rt_s(141); + var$1.$name60 = $rt_s(142); var$1.$target0 = var$2; var$3 = jl_Thread_nextId; jl_Thread_nextId = var$3 + 1 | 0; @@ -14505,7 +14451,7 @@ jl_Thread__clinit_ = () => { }, jl_IllegalStateException = $rt_classWithoutFields(jl_RuntimeException), jl_IllegalStateException__init_2 = $this => { - jl_Throwable__init_($this); + jl_Throwable__init_0($this); }, jl_IllegalStateException__init_0 = () => { let var_0 = new jl_IllegalStateException(); @@ -14513,7 +14459,7 @@ jl_IllegalStateException__init_0 = () => { return var_0; }, jl_IllegalStateException__init_ = ($this, $message) => { - jl_Throwable__init_0($this, $message); + jl_Throwable__init_($this, $message); }, jl_IllegalStateException__init_1 = var_0 => { let var_1 = new jl_IllegalStateException(); @@ -14524,7 +14470,7 @@ jl_IllegalMonitorStateException = $rt_classWithoutFields(jl_RuntimeException), sr_Manifest = $rt_classWithoutFields(0); function sr_AnyValManifest() { let a = this; jl_Object.call(a); - a.$toString34 = null; + a.$toString33 = null; a.$hashCode8 = 0; } let sr_AnyValManifest_equals = ($this, $that) => { @@ -14536,7 +14482,7 @@ sr_AnyValManifest_hashCode = $this => { return $this.$hashCode8; }, sr_AnyValManifest__init_ = ($this, $toString) => { - $this.$toString34 = $toString; + $this.$toString33 = $toString; $this.$hashCode8 = jl_Object_identity($this); }, sr_ManifestFactory$ByteManifest = $rt_classWithoutFields(sr_AnyValManifest), @@ -14677,7 +14623,7 @@ sr_ManifestFactory$ClassTypeManifest_runtimeClass = $this => { }; function sr_ManifestFactory$PhantomManifest() { let a = this; sr_ManifestFactory$ClassTypeManifest.call(a); - a.$toString35 = null; + a.$toString34 = null; a.$hashCode9 = 0; } let sr_ManifestFactory$PhantomManifest_equals = ($this, $that) => { @@ -14690,7 +14636,7 @@ sr_ManifestFactory$PhantomManifest_hashCode = $this => { }, sr_ManifestFactory$PhantomManifest__init_ = ($this, $_runtimeClass, $toString) => { let var$3; - $this.$toString35 = $toString; + $this.$toString34 = $toString; var$3 = s_None$_MODULE$; $toString = sci_Nil$_MODULE$; $this.$prefix0 = var$3; @@ -14762,9 +14708,9 @@ ju_AbstractCollection_toArray = ($this, $a) => { ju_AbstractCollection_addAll = ($this, $c) => { let $changed, $iter; $changed = 0; - $iter = $c.$iterator(); - while ($iter.$hasNext()) { - if (!$this.$add($iter.$next())) + $iter = ju_AbstractList_iterator($c); + while (ju_AbstractList$1_hasNext($iter)) { + if (!$this.$add(ju_AbstractList$1_next($iter))) continue; $changed = 1; } @@ -14779,14 +14725,14 @@ ju_AbstractCollection_toString = $this => { if ($iter.$hasNext()) { $e = $iter.$next(); if ($e === $this) - $e = $rt_s(142); + $e = $rt_s(143); jl_StringBuilder_append($sb, $e); } while ($iter.$hasNext()) { $e = $iter.$next(); jl_AbstractStringBuilder_append($sb, $rt_s(45)); if ($e === $this) - $e = $rt_s(142); + $e = $rt_s(143); jl_StringBuilder_append($sb, $e); } jl_AbstractStringBuilder_append0($sb, 93); @@ -14806,8 +14752,19 @@ ju_List_of0 = ($e1, $e2) => { ju_Objects_requireNonNull($e2); var$3 = new ju_TemplateCollections$TwoElementsList; var$3.$first6 = $e1; - var$3.$second1 = $e2; + var$3.$second3 = $e2; return var$3; +}, +ju_List_of1 = $elements => { + let var$2, var$3, var$4; + var$2 = $elements.data; + var$3 = var$2.length; + var$4 = 0; + while (var$4 < var$3) { + ju_Objects_requireNonNull(var$2[var$4]); + var$4 = var$4 + 1 | 0; + } + return ju_TemplateCollections$ImmutableArrayList__init_($elements.$clone0()); }; function ju_AbstractList() { ju_AbstractCollection.call(this); @@ -14842,7 +14799,7 @@ ju_AbstractList_subList = ($this, $fromIndex, $toIndex) => { let var$3; if ($fromIndex > $toIndex) { var$3 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$3); + jl_Throwable__init_0(var$3); $rt_throw(var$3); } if ($fromIndex >= 0 && $toIndex <= $this.$size()) { @@ -14853,7 +14810,7 @@ ju_AbstractList_subList = ($this, $fromIndex, $toIndex) => { return var$3; } var$3 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$3); + jl_Throwable__init_0(var$3); $rt_throw(var$3); }, ju_AbstractList_hashCode = $this => { @@ -14887,27 +14844,27 @@ function ju_ArrayList() { a.$array1 = null; a.$size0 = 0; } -let ju_ArrayList__init_0 = $this => { - ju_ArrayList__init_2($this, 10); +let ju_ArrayList__init_2 = $this => { + ju_ArrayList__init_1($this, 10); }, ju_ArrayList__init_ = () => { let var_0 = new ju_ArrayList(); - ju_ArrayList__init_0(var_0); + ju_ArrayList__init_2(var_0); return var_0; }, -ju_ArrayList__init_2 = ($this, $initialCapacity) => { +ju_ArrayList__init_1 = ($this, $initialCapacity) => { let var$2; if ($initialCapacity >= 0) { $this.$array1 = $rt_createArray(jl_Object, $initialCapacity); return; } var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); }, -ju_ArrayList__init_1 = var_0 => { +ju_ArrayList__init_0 = var_0 => { let var_1 = new ju_ArrayList(); - ju_ArrayList__init_2(var_1, var_0); + ju_ArrayList__init_1(var_1, var_0); return var_1; }, ju_ArrayList_ensureCapacity = ($this, $minCapacity) => { @@ -14963,7 +14920,7 @@ ju_ArrayList_add0 = ($this, $index, $element) => { } } $element = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($element); + jl_Throwable__init_0($element); $rt_throw($element); }, ju_ArrayList_remove = ($this, $i) => { @@ -14987,7 +14944,7 @@ ju_ArrayList_checkIndex = ($this, $index) => { if ($index >= 0 && $index < $this.$size0) return; var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); }, ju_ArrayList_forEach = ($this, $action) => { @@ -15010,11 +14967,11 @@ ju_ArrayList_toString = $this => { $i = 0; while ($i < $length) { var$4 = $this.$array1.data; - jl_AbstractStringBuilder_append(jl_StringBuilder_append($buffer, var$4[$i] !== $this ? var$4[$i] : $rt_s(142)), $rt_s(45)); + jl_AbstractStringBuilder_append(jl_StringBuilder_append($buffer, var$4[$i] !== $this ? var$4[$i] : $rt_s(143)), $rt_s(45)); $i = $i + 1 | 0; } var$4 = $this.$array1.data; - jl_StringBuilder_append($buffer, var$4[$length] !== $this ? var$4[$length] : $rt_s(142)); + jl_StringBuilder_append($buffer, var$4[$length] !== $this ? var$4[$length] : $rt_s(143)); jl_AbstractStringBuilder_append0($buffer, 93); return jl_AbstractStringBuilder_toString($buffer); }, @@ -15036,7 +14993,7 @@ jur_NonCapFSet_matches = ($this, $stringIndex, $testString, $matchResult) => { return $this.$next4.$matches1($stringIndex, $testString, $matchResult); }, jur_NonCapFSet_getName = $this => { - return $rt_s(143); + return $rt_s(144); }, jur_NonCapFSet_hasConsumed = ($this, $mr) => { return 0; @@ -15046,7 +15003,7 @@ jur_AheadFSet_matches = ($this, $stringIndex, $testString, $matchResult) => { return $stringIndex; }, jur_AheadFSet_getName = $this => { - return $rt_s(144); + return $rt_s(145); }, jur_BehindFSet = $rt_classWithoutFields(jur_FSet), jur_BehindFSet_matches = ($this, $stringIndex, $testString, $matchResult) => { @@ -15055,21 +15012,21 @@ jur_BehindFSet_matches = ($this, $stringIndex, $testString, $matchResult) => { return $stringIndex; }, jur_BehindFSet_getName = $this => { - return $rt_s(145); + return $rt_s(146); }; function jur_AtomicFSet() { jur_FSet.call(this); - this.$index16 = 0; + this.$index15 = 0; } let jur_AtomicFSet_matches = ($this, $stringIndex, $testString, $matchResult) => { let $gr; $gr = $this.$groupIndex0; jur_MatchResultImpl_setConsumed($matchResult, $gr, $stringIndex - jur_MatchResultImpl_getConsumed($matchResult, $gr) | 0); - $this.$index16 = $stringIndex; + $this.$index15 = $stringIndex; return $stringIndex; }, jur_AtomicFSet_getName = $this => { - return $rt_s(146); + return $rt_s(147); }, jur_AtomicFSet_hasConsumed = ($this, $mr) => { return 0; @@ -15083,7 +15040,7 @@ jur_FinalSet_matches = ($this, $stringIndex, $testString, $matchResult) => { return $stringIndex; }, jur_FinalSet_getName = $this => { - return $rt_s(147); + return $rt_s(148); }; function jur_LeafSet() { jur_AbstractSet.call(this); @@ -15161,7 +15118,7 @@ jur_EmptySet_findBack = ($this, $stringIndex, $startSearch, $testString, $matchR return $startSearch; }, jur_EmptySet_getName = $this => { - return $rt_s(148); + return $rt_s(149); }, jur_EmptySet_hasConsumed = ($this, $mr) => { return 0; @@ -15207,7 +15164,7 @@ jur_JointSet_setNext = ($this, $next) => { $this.$fSet.$next4 = $next; }, jur_JointSet_getName = $this => { - return $rt_s(149); + return $rt_s(150); }, jur_JointSet_first = ($this, $set) => { let $i; @@ -15282,7 +15239,7 @@ jur_NonCapJointSet_matches = ($this, $stringIndex, $testString, $matchResult) => return $shift; }, jur_NonCapJointSet_getName = $this => { - return $rt_s(150); + return $rt_s(151); }, jur_NonCapJointSet_hasConsumed = ($this, $matchResult) => { return !jur_MatchResultImpl_getConsumed($matchResult, $this.$groupIndex) ? 0 : 1; @@ -15296,7 +15253,7 @@ jur_AtomicJointSet_matches = ($this, $stringIndex, $testString, $matchResult) => $i = 0; while ($i < $size) { if ((ju_ArrayList_get($this.$children1, $i)).$matches1($stringIndex, $testString, $matchResult) >= 0) - return $this.$next4.$matches1($this.$fSet.$index16, $testString, $matchResult); + return $this.$next4.$matches1($this.$fSet.$index15, $testString, $matchResult); $i = $i + 1 | 0; } jur_MatchResultImpl_setConsumed($matchResult, $this.$groupIndex, $start); @@ -15306,7 +15263,7 @@ jur_AtomicJointSet_setNext = ($this, $next) => { $this.$next4 = $next; }, jur_AtomicJointSet_getName = $this => { - return $rt_s(150); + return $rt_s(151); }, jur_PositiveLookAhead = $rt_classWithoutFields(jur_AtomicJointSet), jur_PositiveLookAhead_matches = ($this, $stringIndex, $testString, $matchResult) => { @@ -15324,7 +15281,7 @@ jur_PositiveLookAhead_hasConsumed = ($this, $matchResult) => { return 0; }, jur_PositiveLookAhead_getName = $this => { - return $rt_s(151); + return $rt_s(152); }, jur_NegativeLookAhead = $rt_classWithoutFields(jur_AtomicJointSet), jur_NegativeLookAhead_matches = ($this, $stringIndex, $testString, $matchResult) => { @@ -15344,7 +15301,7 @@ jur_NegativeLookAhead_hasConsumed = ($this, $matchResult) => { return 0; }, jur_NegativeLookAhead_getName = $this => { - return $rt_s(152); + return $rt_s(153); }, jur_PositiveLookBehind = $rt_classWithoutFields(jur_AtomicJointSet), jur_PositiveLookBehind_matches = ($this, $stringIndex, $testString, $matchResult) => { @@ -15373,7 +15330,7 @@ jur_PositiveLookBehind_hasConsumed = ($this, $matchResult) => { return 0; }, jur_PositiveLookBehind_getName = $this => { - return $rt_s(153); + return $rt_s(154); }, jur_NegativeLookBehind = $rt_classWithoutFields(jur_AtomicJointSet), jur_NegativeLookBehind_matches = ($this, $stringIndex, $testString, $matchResult) => { @@ -15394,7 +15351,7 @@ jur_NegativeLookBehind_hasConsumed = ($this, $matchResult) => { return 0; }, jur_NegativeLookBehind_getName = $this => { - return $rt_s(154); + return $rt_s(155); }; function jur_SingleSet() { jur_JointSet.call(this); @@ -15484,11 +15441,6 @@ jl_Math_max = ($a, $b) => { $b = $a; return $b; }, -jl_Math_min0 = ($a, $b) => { - if (Long_lt($a, $b)) - $b = $a; - return $b; -}, jl_Math_max0 = ($a, $b) => { if (Long_gt($a, $b)) $b = $a; @@ -15514,29 +15466,38 @@ otp_PlatformQueue_isEmpty$static = var$1 => { otp_PlatformRunnable = $rt_classWithoutFields(0); function jl_Object$monitorExit$lambda$_8_0() { jl_Object.call(this); - this.$_0803 = null; + this.$_0778 = null; } let onciu_StepSequencer$Step = $rt_classWithoutFields(0), -oncifpf_ParsePipelineTransformerFactory = $rt_classWithoutFields(0); -function oncifp_Parse() { - let a = this; jl_Object.call(a); - a.$useAntlr = 0; - a.$version1 = null; - a.$phase1 = null; -} -let oncifp_Parse_transform = ($this, $from, $context) => { +oncifpf_ParsePipelineTransformerFactory = $rt_classWithoutFields(0), +oncifp_Parse$ = $rt_classWithoutFields(), +oncifp_Parse$_MODULE$ = null, +oncifp_Parse$_phase = null, +oncifp_Parse$_$callClinit = () => { + oncifp_Parse$_$callClinit = $rt_eraseClinit(oncifp_Parse$); + oncifp_Parse$__clinit_(); +}, +oncifp_Parse$__clinit_ = () => { + let var$1; + var$1 = new oncifp_Parse$; + oncifp_Parse$_$callClinit(); + oncifp_Parse$_MODULE$ = var$1; + oncifp_Parse$_phase = oncifp_CompilationPhaseTracer$CompilationPhase_PARSING; +}, +oncifp_Parse$_transform = ($this, $from, $context) => { return oncifp_Phase_transform$($this, $from, $context); }, -oncifp_Parse_name = $this => { +oncifp_Parse$_name = $this => { return $this.$productPrefix(); }, -oncifp_Parse_checkConditions = ($this, $state, $conditions, $cancellationChecker) => { +oncifp_Parse$_checkConditions = ($this, $state, $conditions, $cancellationChecker) => { return oncifp_Transformer_checkConditions$($this, $state, $conditions, $cancellationChecker); }, -oncifp_Parse_phase = $this => { - return $this.$phase1; +oncifp_Parse$_phase0 = $this => { + oncifp_Parse$_$callClinit(); + return oncifp_Parse$_phase; }, -oncifp_Parse_postConditions = $this => { +oncifp_Parse$_postConditions = $this => { let var$1, var$2, var$3, var$4, var$5; s_Predef$_$callClinit(); var$1 = s_Predef$_Set(s_Predef$_MODULE$); @@ -15547,106 +15508,26 @@ oncifp_Parse_postConditions = $this => { sr_ClassTag$_$callClinit(); oncifp_BaseContains__init_(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Statement))); var$4[0] = var$5; - oncifp_ValidSymbolicNamesInLabelExpressions$_$callClinit(); var$4[1] = oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$; return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncifp_Parse_productPrefix = $this => { - return $rt_s(155); +oncifp_Parse$_productPrefix = $this => { + return $rt_s(156); }, -oncifp_Parse_process = ($this, $from, $context) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9, $$je; - var$3 = $from.$queryText0; +oncifp_Parse$_process = ($this, $from, $context) => { + let var$3, var$4, var$5, var$6; + var$3 = $from.$queryText; var$4 = cnsa_EnrichedContext_cypherExceptionFactory($context); - $context = $context.$logger; - if ($this.$useAntlr) { - var$5 = $this.$version1; - if (jl_Enum_equals(onci_CypherVersion_Cypher5, var$5)) - var$6 = oncip_Cypher5AstParserFactory$_MODULE$; - else { - if (!jl_Enum_equals(onci_CypherVersion_Cypher25, var$5)) - $rt_throw(s_MatchError__init_(var$5)); - var$6 = oncip_Cypher25AstParserFactory$_MODULE$; - } - $context = oncipa_AstParser_singleStatement(var$6.$apply6(var$3, var$4, s_Some__init_($context))); - } else { - var$5 = $this.$version1; - if (!jl_Enum_equals(onci_CypherVersion_Cypher5, var$5)) { - if (!jl_Enum_equals(onci_CypherVersion_Cypher25, var$5)) - $rt_throw(s_MatchError__init_(var$5)); - $from = new jl_IllegalArgumentException; - jl_Throwable__init_0($from, $rt_s(156)); - $rt_throw($from); - } - onciafn_JavaCCParser$_$callClinit(); - var$6 = onciafn_JavaCCParser$_MODULE$; - var$5 = new oncipj_CypherCharStream; - var$5.$queryCursor = (-1); - var$5.$queryCursorLine = 1; - var$5.$resultCursor = (-1); - var$5.$tabSize = 1; - var$5.$query4 = var$3; - var$5.$result5 = $rt_createCharArray(var$3.$nativeString.length); - var$5.$lines = $rt_createIntArray(var$3.$nativeString.length); - var$5.$columns0 = $rt_createIntArray(var$3.$nativeString.length); - var$5.$offsets0 = $rt_createIntArray(var$3.$nativeString.length); - var$7 = new onciafn_Neo4jASTExceptionFactory; - var$7.$inner5 = var$4; - var$8 = new onciafn_Neo4jASTFactory; - var$8.$query8 = var$3; - var$8.$astExceptionFactory = var$7; - var$8.$logger0 = $context; - try { - $context = oncipj_Cypher_Statements(oncipj_Cypher__init_0(var$8, var$7, var$5)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $from = $$je; - if ($from instanceof oncipj_TokenMgrException && s_Option_isDefined(onciafn_JavaCCParser$_findMismatchedDelimiters(var$6, var$3))) { - $from = (onciafn_JavaCCParser$_findMismatchedDelimiters(var$6, var$3)).$get1(); - if ($from === null) - $rt_throw(s_MatchError__init_($from)); - $context = $from.$_1(); - var$9 = $from.$_2$mcI$sp(); - $from = s_Tuple2__init_($context, jl_Integer_valueOf(var$9)); - $context = $from.$_10; - var$9 = s_Tuple2__2$mcI$sp($from); - $from = new one_SyntaxException; - var$6 = ju_Optional_of(jl_Integer_valueOf(var$9)); - one_Neo4jException__init_($from, $context, null); - $from.$offset6 = var$6; - $from.$query6 = var$3; - $rt_throw($from); - } - if ($from instanceof onciu_OpenCypherExceptionFactory$SyntaxException) - $rt_throw($from); - if ($rt_isInstance($from, onkae_Status$HasStatus)) - $rt_throw($from); - if (!($from instanceof jl_Exception)) - $rt_throw($from); - $from = $from; - $context = new one_CypherExecutionException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(157)), var$3), $rt_s(158)); - one_Neo4jException__init_($context, jl_AbstractStringBuilder_toString(var$4), $from); - $rt_throw($context); - } else { - throw $$e; - } - } - if (oncia_Statements_size($context) != 1) { - var$9 = oncia_Statements_size($context); - $from = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($from); - jl_StringBuilder_append0(jl_StringBuilder_append($from, $rt_s(159)), var$9); - $context = jl_AbstractStringBuilder_toString($from); - onciu_InputPosition$_$callClinit(); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$4, $context, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$))); - } - $context = oncia_Statements_get($context, 0); + var$5 = $context.$logger; + var$6 = $context.$cypherVersion; + if (jl_Enum_equals(onci_CypherVersion_Cypher5, var$6)) + var$6 = oncip_Cypher5AstParserFactory$_MODULE$; + else { + if (!jl_Enum_equals(onci_CypherVersion_Cypher25, var$6)) + $rt_throw(s_MatchError__init_(var$6)); + var$6 = oncip_Cypher25AstParserFactory$_MODULE$; } - return oncifp_InitialState_withStatement($from, $context); + return oncifp_InitialState_withStatement($from, oncipa_AstParser_singleStatement(var$6.$apply6(var$3, var$4, s_Some__init_(var$5)))); }, onciu_StepSequencer$DefaultPostCondition = $rt_classWithoutFields(0), onciu_StepSequencer$DefaultPostCondition_postConditions$ = $$this => { @@ -15658,9 +15539,6 @@ onciu_StepSequencer$DefaultPostCondition_postConditions$ = $$this => { var$4.data[0] = $$this.$completed(); return var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); }, -onciu_StepSequencer$DefaultPostCondition_$init$ = $$this => { - return; -}, oncifp_CollectSyntaxUsageMetrics$ = $rt_classWithoutFields(), oncifp_CollectSyntaxUsageMetrics$_MODULE$ = null, oncifp_CollectSyntaxUsageMetrics$_completed$module = null, @@ -15722,10 +15600,10 @@ oncifp_CollectSyntaxUsageMetrics$_phase = $this => { return oncifp_CompilationPhaseTracer$CompilationPhase_METADATA_COLLECTION; }, oncifp_CollectSyntaxUsageMetrics$_productPrefix = $this => { - return $rt_s(160); + return $rt_s(157); }, oncifp_CollectSyntaxUsageMetrics$_toString = $this => { - return $rt_s(160); + return $rt_s(157); }, oncifp_CollectSyntaxUsageMetrics$_visit = ($this, $value, $context) => { let var$3, var$4, var$5; @@ -15741,13 +15619,11 @@ oncifp_CollectSyntaxUsageMetrics$_visit = ($this, $value, $context) => { while (sc_IterableOnceOps_nonEmpty$($context)) { var$3 = scm_Stack_pop($context); s_PartialFunction$Lifted_apply($value, var$3); - onciu_Foldable$TreeAny$_$callClinit(); $context = scm_Stack_pushAll($context, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$3)); } }, oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1 = ($key, $context$1) => { oncifp_CollectSyntaxUsageMetrics$_$callClinit(); - oncifp_InternalSyntaxUsageStatsNoOp$_$callClinit(); }; function oncifp_SyntaxDeprecationWarningsAndReplacements() { jl_Object.call(this); @@ -15790,18 +15666,21 @@ oncifp_SyntaxDeprecationWarningsAndReplacements_phase = $this => { return oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS; }, oncifp_SyntaxDeprecationWarningsAndReplacements_productPrefix = $this => { - return $rt_s(161); + return $rt_s(158); }, oncifp_SyntaxDeprecationWarningsAndReplacements_process = ($this, $from, $context) => { - let var$3, var$4, var$5, var$6, var$7; + let var$3, var$4, var$5, var$6, var$7, var$8, var$9; var$3 = $this.$deprecations; if ($rt_isInstance(var$3, oncir_SyntacticDeprecations)) { var$3 = (oncifp_InitialState_statement($from)).$folder(); s_Predef$_$callClinit(); s_Predef$_Set(s_Predef$_MODULE$); var$4 = sci_Set$EmptySet$_MODULE$; - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit(); - var$3 = onciu_Foldable$Folder_fold(var$3, var$4, sr_AbstractPartialFunction_andThen0(oncir_Deprecations$syntacticallyDeprecatedFeatures$_find, new oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_0)); + var$5 = $context.$cypherVersion; + var$6 = s_Function$_MODULE$; + var$7 = new oncir_Deprecations$SyntacticallyDeprecatedFeatures$$find$lambda$_5_0; + var$7.$_01118 = var$5; + var$3 = onciu_Foldable$Folder_fold(var$3, var$4, sr_AbstractPartialFunction_andThen0(s_Function$_unlift(var$6, var$7), new oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_0)); oncifp_InitialState_statement($from); s_Predef$_Set(s_Predef$_MODULE$); var$3 = var$3.$concat1(sci_Set$EmptySet$_MODULE$); @@ -15809,38 +15688,34 @@ oncifp_SyntaxDeprecationWarningsAndReplacements_process = ($this, $from, $contex if (!$rt_isInstance(var$3, oncir_SemanticDeprecations)) $rt_throw(s_MatchError__init_(var$3)); var$3 = var$3; - var$5 = $from.$maybeSemanticTable; + var$7 = $from.$maybeSemanticTable; var$6 = new oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4; - var$6.$_0230 = var$3; - var$6 = s_Option_getOrElse(var$5, var$6); - var$5 = (oncifp_InitialState_statement($from)).$folder(); + var$6.$_0224 = var$3; + var$6 = s_Option_getOrElse(var$7, var$6); + var$7 = (oncifp_InitialState_statement($from)).$folder(); s_Predef$_$callClinit(); s_Predef$_Set(s_Predef$_MODULE$); - var$7 = sci_Set$EmptySet$_MODULE$; - var$4 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$find$lambda$_3_0; - var$4.$_0445 = var$3; - var$4.$_1155 = var$6; - if (var$4 instanceof s_PartialFunction$Lifted) - var$3 = var$4.$pf(); - else { - var$3 = new s_PartialFunction$Unlifted; - var$3.$f14 = var$4; - } - var$3 = onciu_Foldable$Folder_fold(var$5, var$7, sr_AbstractPartialFunction_andThen0(var$3, new oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5)); + var$5 = sci_Set$EmptySet$_MODULE$; + var$8 = $context.$cypherVersion; + var$4 = s_Function$_MODULE$; + var$9 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$find$lambda$_4_0; + var$9.$_0294 = var$3; + var$9.$_1107 = var$6; + var$9.$_239 = var$8; + var$3 = onciu_Foldable$Folder_fold(var$7, var$5, sr_AbstractPartialFunction_andThen0(s_Function$_unlift(var$4, var$9), new oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5)); } var$6 = var$3.$flatMap(new oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_1); var$3 = (var$3.$flatMap(new oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_2)).$toMap(s_$less$colon$less$_singleton); - var$5 = $context.$logger; + var$7 = $context.$logger; $context = new oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_3; - $context.$_0431 = var$5; + $context.$_0424 = var$7; var$6.$foreach($context); - onciu_bottomUp$_$callClinit(); $context = onciu_bottomUp$_MODULE$; onciu_Rewriter$_$callClinit(); var$6 = onciu_Rewriter$_MODULE$; - var$5 = new oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1; - var$5.$replacements$1 = var$3; - return oncifp_InitialState_withStatement($from, (onciu_bottomUp$_apply($context, onciu_Rewriter$_lift(var$6, var$5), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2(oncifp_InitialState_statement($from))); + var$7 = new oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1; + var$7.$replacements$1 = var$3; + return oncifp_InitialState_withStatement($from, (onciu_bottomUp$_apply($context, onciu_Rewriter$_lift(var$6, var$7), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2(oncifp_InitialState_statement($from))); }, oncifp_SyntaxDeprecationWarningsAndReplacements__init_ = ($this, $deprecations) => { $this.$deprecations = $deprecations; @@ -15852,33 +15727,184 @@ oncifp_SyntaxDeprecationWarningsAndReplacements__init_0 = var_0 => { }, oncir_Deprecations = $rt_classWithoutFields(0), oncir_SyntacticDeprecations = $rt_classWithoutFields(0), -oncir_Deprecations$syntacticallyDeprecatedFeatures$ = $rt_classWithoutFields(), -oncir_Deprecations$syntacticallyDeprecatedFeatures$_MODULE$ = null, -oncir_Deprecations$syntacticallyDeprecatedFeatures$_stringifier0 = null, -oncir_Deprecations$syntacticallyDeprecatedFeatures$_find = null, -oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit = () => { - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit = $rt_eraseClinit(oncir_Deprecations$syntacticallyDeprecatedFeatures$); - oncir_Deprecations$syntacticallyDeprecatedFeatures$__clinit_(); -}, -oncir_Deprecations$syntacticallyDeprecatedFeatures$__clinit_ = () => { +oncir_Deprecations$SyntacticallyDeprecatedFeatures$ = $rt_classWithoutFields(), +oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$ = null, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier0 = null, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit = () => { + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit = $rt_eraseClinit(oncir_Deprecations$SyntacticallyDeprecatedFeatures$); + oncir_Deprecations$SyntacticallyDeprecatedFeatures$__clinit_(); +}, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$__clinit_ = () => { let var$1; - var$1 = new oncir_Deprecations$syntacticallyDeprecatedFeatures$; - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit(); - oncir_Deprecations$syntacticallyDeprecatedFeatures$_MODULE$ = var$1; - oncir_Deprecations$syntacticallyDeprecatedFeatures$_stringifier0 = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_ExpressionStringifier$_failingExtender, 0, 0, 0, 0); - oncir_Deprecations$syntacticallyDeprecatedFeatures$_find = new oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1; -}, -oncir_Deprecations$syntacticallyDeprecatedFeatures$_stringifier = $this => { - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit(); - return oncir_Deprecations$syntacticallyDeprecatedFeatures$_stringifier0; -}, -oncir_Deprecations$syntacticallyDeprecatedFeatures$_org$neo4j$cypher$internal$rewriting$Deprecations$syntacticallyDeprecatedFeatures$$hasOldTextIndexProvider = ($this, $options) => { + var$1 = new oncir_Deprecations$SyntacticallyDeprecatedFeatures$; + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$ = var$1; + onciap_ExpressionStringifier$_$callClinit(); + var$1 = onciap_ExpressionStringifier$_MODULE$; + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier0 = onciap_ExpressionStringifier$_apply(var$1, onciap_ExpressionStringifier$_apply$default$1(var$1), 0, 0, 0, 0); +}, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier = $this => { + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + return oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier0; +}, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$_hasOldTextIndexProvider = ($this, $options) => { if (!($options instanceof oncia_OptionsMap)) return 0; - return $options.$map17.$exists(new oncir_Deprecations$syntacticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$syntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0); -}, -oncir_Deprecations$syntacticallyDeprecatedFeatures$_toString = $this => { - return $rt_s(162); + return $options.$map16.$exists(new oncir_Deprecations$SyntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0); +}, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$_toString = $this => { + return $rt_s(159); +}, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$anonfun$find$1 = ($version$1, $x0$1) => { + let $single, $lep, $variable, $labelExpression, $properties, $alternatives, $variable_0, $rewrittenExpression, $x$1, $relChain, $node1, $relPat, $node2, $predicate, $direction, $newRelPat, $replacement, $deprecatedParameter, $replacementParameter, $nn; + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + $single = 0; + $lep = null; + if ($x0$1 instanceof oncie_RelationshipPattern) { + $single = 1; + $lep = $x0$1; + $variable = oncie_RelationshipPattern_variable($lep); + $labelExpression = oncie_RelationshipPattern_labelExpression($lep); + $properties = oncie_RelationshipPattern_length($lep); + $alternatives = oncie_RelationshipPattern_properties($lep); + $variable_0 = oncie_RelationshipPattern_predicate($lep); + if ($labelExpression instanceof s_Some) { + $labelExpression = s_Some_value($labelExpression); + if (jl_Object_equals(s_None$_MODULE$, $properties) && jl_Object_equals(s_None$_MODULE$, $alternatives) && jl_Object_equals(s_None$_MODULE$, $variable_0) && s_Option_forall($variable, oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0__init_()) && !$labelExpression.$containsGpmSpecificRelTypeExpression()) { + $properties = $labelExpression.$folder(); + sr_ClassTag$_$callClinit(); + if (s_Option_nonEmpty(onciu_Foldable$Folder_treeFindByClass($properties, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction))))) { + $rewrittenExpression = $labelExpression.$replaceColonSyntax(); + $alternatives = new s_Some; + $variable_0 = new oncir_Deprecation; + $version$1 = new s_Some; + $x0$1 = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + $variable = s_Predef$_MODULE$; + onciu_Ref$_$callClinit(); + $variable = s_Predef$_ArrowAssoc($variable, onciu_Ref$_apply(onciu_Ref$_MODULE$, $lep)); + $x$1 = s_Some__init_($rewrittenExpression); + s_Some__init_0($version$1, s_Predef$ArrowAssoc$_$minus$greater$extension($x0$1, $variable, oncie_RelationshipPattern_copy($lep, oncie_RelationshipPattern_copy$default$1($lep), $x$1, oncie_RelationshipPattern_copy$default$3($lep), oncie_RelationshipPattern_copy$default$4($lep), oncie_RelationshipPattern_copy$default$5($lep), oncie_RelationshipPattern_copy$default$6($lep), oncie_RelationshipPattern_position($lep)))); + $x0$1 = new s_Some; + $variable = new onciu_DeprecatedRelTypeSeparatorNotification; + $lep = oncil_LabelExpression$ColonDisjunction_position((onciu_Foldable$Folder_treeFindByClass($labelExpression.$folder(), sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction)))).$get1()); + $labelExpression = onciap_DefaultExpressionStringifier_stringifyLabelExpression(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$), $labelExpression); + $properties = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append1($properties, 58), $labelExpression); + $properties = jl_StringBuilder_toString($properties); + $labelExpression = onciap_DefaultExpressionStringifier_stringifyLabelExpression(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$), $rewrittenExpression); + $relChain = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append1($relChain, 58), $labelExpression); + onciu_DeprecatedRelTypeSeparatorNotification__init_($variable, $lep, $properties, jl_StringBuilder_toString($relChain)); + s_Some__init_0($x0$1, $variable); + oncir_Deprecation__init_($variable_0, $version$1, $x0$1); + s_Some__init_0($alternatives, $variable_0); + return $alternatives; + } + } + } + } + if ($x0$1 instanceof oncie_NodePattern) { + $variable = $x0$1; + $labelExpression = oncie_NodePattern_variable($variable); + $properties = oncie_NodePattern_labelExpression($variable); + $alternatives = oncie_NodePattern_properties($variable); + $variable = oncie_NodePattern_predicate($variable); + if ($labelExpression instanceof s_Some) { + $variable_0 = s_Some_value($labelExpression); + if (jl_Object_equals(s_None$_MODULE$, $properties) && $alternatives instanceof s_Some) { + $properties = s_Some_value($alternatives); + if (jl_Object_equals(s_None$_MODULE$, $variable) && oncie_NodePattern$WhereVariableInNodePatterns$_deprecatedIn(oncie_NodePattern$WhereVariableInNodePatterns$_MODULE$, $version$1) && !oncie_Variable_isIsolated($variable_0) && jl_String_equalsIgnoreCase(oncie_Variable_name($variable_0), $rt_s(160))) + return s_Some__init_(oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_DeprecatedWhereVariableInNodePattern__init_0(oncie_Variable_position($variable_0), oncie_Variable_name($variable_0), onciap_DefaultExpressionStringifier_apply(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$), $properties))))); + } + } + } + if ($single) { + $variable = oncie_RelationshipPattern_variable($lep); + $labelExpression = oncie_RelationshipPattern_labelExpression($lep); + $properties = oncie_RelationshipPattern_properties($lep); + $lep = oncie_RelationshipPattern_predicate($lep); + if ($variable instanceof s_Some) { + $variable = s_Some_value($variable); + if (jl_Object_equals(s_None$_MODULE$, $labelExpression) && $properties instanceof s_Some) { + $properties = s_Some_value($properties); + if (jl_Object_equals(s_None$_MODULE$, $lep) && oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$_deprecatedIn(oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$_MODULE$, $version$1) && !oncie_Variable_isIsolated($variable) && jl_String_equalsIgnoreCase(oncie_Variable_name($variable), $rt_s(160))) + return s_Some__init_(oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_DeprecatedWhereVariableInRelationshipPattern__init_(oncie_Variable_position($variable), oncie_Variable_name($variable), onciap_DefaultExpressionStringifier_apply(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$), $properties))))); + } + } + } + if ($x0$1 instanceof oncie_Add) { + $lep = oncie_Add_rhs($x0$1); + if ($lep instanceof oncil_LabelExpressionPredicate) { + $variable = $lep; + if (oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$_deprecatedIn(oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$_MODULE$, $version$1) && !oncil_LabelExpressionPredicate_isParenthesized($variable)) + return s_Some__init_(oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_DeprecatedPrecedenceOfLabelExpressionPredicate__init_0(oncil_LabelExpressionPredicate_position($variable), onciap_DefaultExpressionStringifier_apply(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$), $variable))))); + } + } + if ($x0$1 instanceof oncie_CaseExpression) { + $variable = $x0$1; + $lep = oncie_CaseExpression_expression($variable); + $alternatives = oncie_CaseExpression_alternatives($variable); + if ($lep instanceof s_Some && oncie_CaseExpression$KeywordVariablesInWhenOperand$_deprecatedIn(oncie_CaseExpression$KeywordVariablesInWhenOperand$_MODULE$, $version$1)) + return sc_AbstractIterable_collectFirst($alternatives, oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1__init_()); + } + if ($x0$1 instanceof oncie_ShortestPathsPatternPart) { + $version$1 = $x0$1; + $relChain = oncie_ShortestPathsPatternPart_element($version$1); + $single = oncie_ShortestPathsPatternPart_single($version$1); + if ($relChain instanceof oncie_RelationshipChain) { + $variable = $relChain; + $node1 = oncie_RelationshipChain_element($variable); + $relPat = oncie_RelationshipChain_relationship($variable); + $node2 = oncie_RelationshipChain_rightNode($variable); + if ($node1 instanceof oncie_NodePattern) { + $lep = $node1; + if ($relPat !== null) { + $variable_0 = oncie_RelationshipPattern_variable($relPat); + $labelExpression = oncie_RelationshipPattern_labelExpression($relPat); + $alternatives = oncie_RelationshipPattern_length($relPat); + $properties = oncie_RelationshipPattern_properties($relPat); + $predicate = oncie_RelationshipPattern_predicate($relPat); + $direction = oncie_RelationshipPattern_direction($relPat); + if (jl_Object_equals(s_None$_MODULE$, $alternatives)) { + $newRelPat = oncie_RelationshipPattern__init_0($variable_0, $labelExpression, s_Some__init_(s_Some__init_(oncie_Range__init_(s_Some__init_(oncie_UnsignedDecimalIntegerLiteral__init_0($rt_s(161), oncie_RelationshipPattern_position($relPat))), s_Some__init_(oncie_UnsignedDecimalIntegerLiteral__init_0($rt_s(161), oncie_RelationshipPattern_position($relPat))), oncie_RelationshipPattern_position($relPat)))), $properties, $predicate, $direction, oncie_RelationshipPattern_position($relPat)); + $replacement = oncie_ShortestPathsPatternPart__init_(oncie_RelationshipChain__init_($lep, $newRelPat, $node2, oncie_RelationshipChain_position($variable)), $single, oncie_ShortestPathsPatternPart_position($version$1)); + $deprecatedParameter = onciap_DefaultPatternStringifier_apply(onciap_DefaultExpressionStringifier_patterns(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$)), $version$1); + $replacementParameter = onciap_DefaultPatternStringifier_apply(onciap_DefaultExpressionStringifier_patterns(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$)), $replacement); + return s_Some__init_(oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_FixedLengthRelationshipInShortestPath__init_0(oncie_RelationshipPattern_position($relPat), $deprecatedParameter, $replacementParameter)))); + } + } + } + } + } + if ($x0$1 instanceof oncia_CreateDatabase) { + $version$1 = $x0$1; + $nn = oncia_CreateDatabase_dbName($version$1); + if ($nn instanceof oncia_NamespacedName) { + $variable = $nn; + if (oncia_NamespacedName_namespace($variable) instanceof s_Some) + return s_Some__init_(oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_DeprecatedDatabaseNameNotification__init_0(oncia_NamespacedName_toString($variable), s_Some__init_(oncia_CreateDatabase_position($version$1)))))); + } + } + if ($rt_isInstance($x0$1, oncia_CreateIndex)) + a: { + b: { + $version$1 = $x0$1; + $x0$1 = $version$1.$indexType(); + $variable = oncia_TextCreateIndex$_MODULE$; + if ($x0$1 !== null) { + if (!$x0$1.$equals($variable)) + break a; + else + break b; + } + if ($variable !== null) + break a; + } + if (oncir_Deprecations$SyntacticallyDeprecatedFeatures$_hasOldTextIndexProvider(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$, $version$1.$options())) + return s_Some__init_(oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_DeprecatedTextIndexProvider__init_($version$1.$position())))); + } + return s_None$_MODULE$; }, oncifp_PreparatoryRewriting$ = $rt_classWithoutFields(), oncifp_PreparatoryRewriting$_MODULE$ = null, @@ -15898,26 +15924,30 @@ oncifp_PreparatoryRewriting$__clinit_ = () => { s_Predef$_$callClinit(); $x$1 = s_Predef$_Set(s_Predef$_MODULE$); $_postConditions = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(onciu_StepSequencer$Step, 10); + var$3 = $rt_createArray(onciu_StepSequencer$Step, 12); var$4 = var$3.data; - var$4[0] = oncirr_normalizeWithAndReturnClauses$_MODULE$; + oncirr_removeSyntaxTracking$_$callClinit(); + var$4[0] = oncirr_removeSyntaxTracking$_MODULE$; + var$4[1] = oncirr_normalizeWithAndReturnClauses$_MODULE$; oncirr_insertWithBetweenOptionalMatchAndMatch$_$callClinit(); - var$4[1] = oncirr_insertWithBetweenOptionalMatchAndMatch$_MODULE$; + var$4[2] = oncirr_insertWithBetweenOptionalMatchAndMatch$_MODULE$; oncirr_wrapOptionalCallProcedure$_$callClinit(); - var$4[2] = oncirr_wrapOptionalCallProcedure$_MODULE$; + var$4[3] = oncirr_wrapOptionalCallProcedure$_MODULE$; oncirr_expandCallWhere$_$callClinit(); - var$4[3] = oncirr_expandCallWhere$_MODULE$; + var$4[4] = oncirr_expandCallWhere$_MODULE$; oncirr_expandShowWhere$_$callClinit(); - var$4[4] = oncirr_expandShowWhere$_MODULE$; + var$4[5] = oncirr_expandShowWhere$_MODULE$; oncirr_rewriteShowQuery$_$callClinit(); - var$4[5] = oncirr_rewriteShowQuery$_MODULE$; + var$4[6] = oncirr_rewriteShowQuery$_MODULE$; oncirr_mergeInPredicates$_$callClinit(); - var$4[6] = oncirr_mergeInPredicates$_MODULE$; + var$4[7] = oncirr_mergeInPredicates$_MODULE$; oncirr_timestampRewriter$_$callClinit(); - var$4[7] = oncirr_timestampRewriter$_MODULE$; - var$4[8] = oncirr_rewriteShortestPathWithFixedLengthRelationship$_MODULE$; + var$4[8] = oncirr_timestampRewriter$_MODULE$; + var$4[9] = oncirr_rewriteShortestPathWithFixedLengthRelationship$_MODULE$; oncirr_nullIfFunctionRewriter$_$callClinit(); - var$4[9] = oncirr_nullIfFunctionRewriter$_MODULE$; + var$4[10] = oncirr_nullIfFunctionRewriter$_MODULE$; + oncirr_unwrapTopLevelBraces$_$callClinit(); + var$4[11] = oncirr_unwrapTopLevelBraces$_MODULE$; $x$1 = $x$1.$from0(sr_ScalaRunTime$_wrapRefArray($_postConditions, var$3)); s_Predef$_Set(s_Predef$_MODULE$); var$5 = sci_Set$EmptySet$_MODULE$; @@ -15925,7 +15955,7 @@ oncifp_PreparatoryRewriting$__clinit_ = () => { $x$5 = onciu_StepSequencer$RepeatedSteps$Permitted$_MODULE$; $_postConditions = (sc_IterableOnceOps_toSeq$($x$1)).$map(new onciu_StepSequencer$orderSteps$lambda$_3_1); $orderedSteps = new onciu_StepSequencer$orderSteps$lambda$_3_2; - $orderedSteps.$_01152 = var$5; + $orderedSteps.$_01135 = var$5; $_postConditions = $_postConditions.$flatMap($orderedSteps); sc_IterableOnceOps_foreach$(sc_AbstractMapView_mapValues(sc_AbstractMap_view(sc_StrictOptimizedIterableOps_filter$(sc_AbstractIterable_groupBy($_postConditions, new onciu_StepSequencer$orderSteps$lambda$_3_3), new onciu_StepSequencer$orderSteps$lambda$_3_4)), new onciu_StepSequencer$orderSteps$lambda$_3_5), new onciu_StepSequencer$orderSteps$lambda$_3_6); $_postConditions = ($_postConditions.$concat(sc_AbstractIterable_map(var$5, new onciu_StepSequencer$orderSteps$lambda$_3_7))).$toMap(s_$less$colon$less$_singleton); @@ -15934,21 +15964,21 @@ oncifp_PreparatoryRewriting$__clinit_ = () => { $orderedSteps = sci_AbstractMap_withDefaultValue($orderedSteps, sci_Set$EmptySet$_MODULE$); var$9 = onciu_StepSequencer$MutableDirectedGraph__init_(); var$10 = new onciu_StepSequencer$orderSteps$lambda$_3_11; - var$10.$_0839 = var$9; + var$10.$_0813 = var$9; $x$1.$foreach(var$10); var$10 = new onciu_StepSequencer$orderSteps$lambda$_3_12; - var$10.$_0165 = $_postConditions; - var$10.$_163 = var$9; + var$10.$_0160 = $_postConditions; + var$10.$_156 = var$9; $x$1.$foreach(var$10); onciu_StepSequencer$_org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort(onciu_StepSequencer$_MODULE$, var$9, s_None$_MODULE$, new onciu_StepSequencer$orderSteps$lambda$_3_13); var$9 = onciu_StepSequencer$MutableDirectedGraph__init_(); var$10 = new onciu_StepSequencer$orderSteps$lambda$_3_14; - var$10.$_0922 = var$9; + var$10.$_0908 = var$9; $x$1.$foreach(var$10); var$10 = new onciu_StepSequencer$orderSteps$lambda$_3_15; - var$10.$_0351 = $x$5; - var$10.$_1126 = $_postConditions; - var$10.$_247 = var$9; + var$10.$_0338 = $x$5; + var$10.$_1118 = $_postConditions; + var$10.$_243 = var$9; var$10.$_314 = $orderedSteps; $x$1.$foreach(var$10); $_postConditions = $_postConditions.$collect0(new onciu_StepSequencer$$anonfun$1); @@ -15986,14 +16016,14 @@ oncifp_PreparatoryRewriting$_postConditions = $this => { return oncifp_PreparatoryRewriting$__postConditions.$incl(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_MODULE$); }, oncifp_PreparatoryRewriting$_productPrefix = $this => { - return $rt_s(163); + return $rt_s(162); }, oncifp_PreparatoryRewriting$_process = ($this, $from, $context) => { let var$3, var$4; oncifp_PreparatoryRewriting$_$callClinit(); var$3 = oncifp_PreparatoryRewriting$_orderedSteps; var$4 = new oncifp_PreparatoryRewriting$$process$lambda$_9_0; - var$4.$_0998 = $context; + var$4.$_0989 = $context; $context = var$3.$map(var$4); var$4 = oncifp_InitialState_statement($from); var$3 = new onciu_inSequence$InSequenceRewriter; @@ -16002,10 +16032,10 @@ oncifp_PreparatoryRewriting$_process = ($this, $from, $context) => { }; function oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_0() { jl_Object.call(this); - this.$_0532 = null; + this.$_0516 = null; } let oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$0.$_0532.$obfuscateLiterals); + return jl_Boolean_valueOf(var$0.$_0516.$obfuscateLiterals); }, oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_1 = $rt_classWithoutFields(), oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_1_apply = var$0 => { @@ -16054,47 +16084,71 @@ oncifp_RemoveDuplicateUseClauses$_invalidatedConditions = $this => { return oncirc_package$_SemanticInfoAvailable(oncirc_package$_MODULE$); }, oncifp_RemoveDuplicateUseClauses$_productPrefix = $this => { - return $rt_s(164); + return $rt_s(163); }, oncifp_RemoveDuplicateUseClauses$_process = ($this, $from, $context) => { return oncifp_StatementRewriter_process$($this, $from, $context); -}; -function oncifp_SemanticTypeCheck() { - let a = this; jl_Object.call(a); - a.$cypherVersion1 = null; - a.$checks = null; - a.$phase0 = null; - a.$completed$module = null; -} -let oncifp_SemanticTypeCheck_process = ($this, $from, $context) => { +}, +oncifp_SemanticTypeCheck$ = $rt_classWithoutFields(), +oncifp_SemanticTypeCheck$_MODULE$ = null, +oncifp_SemanticTypeCheck$_checks = null, +oncifp_SemanticTypeCheck$_phase = null, +oncifp_SemanticTypeCheck$_completed$module = null, +oncifp_SemanticTypeCheck$_$callClinit = () => { + oncifp_SemanticTypeCheck$_$callClinit = $rt_eraseClinit(oncifp_SemanticTypeCheck$); + oncifp_SemanticTypeCheck$__clinit_(); +}, +oncifp_SemanticTypeCheck$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncifp_SemanticTypeCheck$; + oncifp_SemanticTypeCheck$_$callClinit(); + oncifp_SemanticTypeCheck$_MODULE$ = var$1; + var$2 = new sci_$colon$colon; + var$3 = new oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0; + var$1 = new sci_$colon$colon; + var$4 = new oncifp_SelfReferenceCheckWithinPatternPart$$check$lambda$_2_0; + var$5 = new sci_$colon$colon; + var$6 = new oncifp_SelfReferenceCheckAcrossPatternParts$$check$lambda$_2_0; + var$7 = new sci_$colon$colon; + oncifp_ListCoercedToBooleanCheck$_$callClinit(); + sci_$colon$colon__init_0(var$7, new oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0, sci_Nil$_MODULE$); + sci_$colon$colon__init_0(var$5, var$6, var$7); + sci_$colon$colon__init_0(var$1, var$4, var$5); + sci_$colon$colon__init_0(var$2, var$3, var$1); + oncifp_SemanticTypeCheck$_checks = var$2; + oncifp_SemanticTypeCheck$_phase = oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_TYPE_CHECK; +}, +oncifp_SemanticTypeCheck$_process = ($this, $from, $context) => { $this.$visit($from, $context); return $from; }, -oncifp_SemanticTypeCheck_transform = ($this, $from, $context) => { +oncifp_SemanticTypeCheck$_transform = ($this, $from, $context) => { return oncifp_Phase_transform$($this, $from, $context); }, -oncifp_SemanticTypeCheck_name = $this => { +oncifp_SemanticTypeCheck$_name = $this => { return $this.$productPrefix(); }, -oncifp_SemanticTypeCheck_checkConditions = ($this, $state, $conditions, $cancellationChecker) => { +oncifp_SemanticTypeCheck$_checkConditions = ($this, $state, $conditions, $cancellationChecker) => { return oncifp_Transformer_checkConditions$($this, $state, $conditions, $cancellationChecker); }, -oncifp_SemanticTypeCheck_phase = $this => { - return $this.$phase0; +oncifp_SemanticTypeCheck$_phase0 = $this => { + oncifp_SemanticTypeCheck$_$callClinit(); + return oncifp_SemanticTypeCheck$_phase; }, -oncifp_SemanticTypeCheck_postConditions = $this => { +oncifp_SemanticTypeCheck$_postConditions = $this => { let var$1, var$2, var$3, $$je; s_Predef$_$callClinit(); var$1 = s_Predef$_Set(s_Predef$_MODULE$); var$2 = sr_ScalaRunTime$_MODULE$; var$3 = $rt_createArray(onciu_StepSequencer$Condition, 1); - if ($this.$completed$module === null) { + oncifp_SemanticTypeCheck$_$callClinit(); + if (oncifp_SemanticTypeCheck$_completed$module === null) { jl_Object_monitorEnterSync($this); a: { try { - if ($this.$completed$module !== null) + if (oncifp_SemanticTypeCheck$_completed$module !== null) break a; - $this.$completed$module = onciu_StepSequencer$DefaultPostCondition$completed$__init_($this); + oncifp_SemanticTypeCheck$_completed$module = onciu_StepSequencer$DefaultPostCondition$completed$__init_($this); break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -16106,49 +16160,44 @@ oncifp_SemanticTypeCheck_postConditions = $this => { } jl_Object_monitorExitSync($this); } - var$3.data[0] = $this.$completed$module; + var$3.data[0] = oncifp_SemanticTypeCheck$_completed$module; return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncifp_SemanticTypeCheck_invalidatedConditions = $this => { +oncifp_SemanticTypeCheck$_invalidatedConditions = $this => { s_Predef$_$callClinit(); s_Predef$_Set(s_Predef$_MODULE$); return sci_Set$EmptySet$_MODULE$; }, -oncifp_SemanticTypeCheck_productPrefix = $this => { - return $rt_s(165); -}, -oncifp_SemanticTypeCheck_productArity = $this => { - return 1; -}, -oncifp_SemanticTypeCheck_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$cypherVersion1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncifp_SemanticTypeCheck_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncifp_SemanticTypeCheck$_productPrefix = $this => { + return $rt_s(164); }, -oncifp_SemanticTypeCheck_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncifp_SemanticTypeCheck$_toString = $this => { + return $rt_s(164); }, -oncifp_SemanticTypeCheck_visit = ($this, $value, $context) => { +oncifp_SemanticTypeCheck$_visit = ($this, $value, $context) => { let var$3, var$4, var$5; var$3 = cnsa_EnrichedContext_errorHandler($context); - var$4 = $this.$checks; - var$5 = new oncifp_SemanticTypeCheck$visit$lambda$_11_0; - var$5.$_0279 = $value; - var$5.$_1106 = $context; - cnsa_EnrichedContext$errorHandler$lambda$_6_0_apply(var$3, sci_List_flatMap(var$4, var$5)); -}, -oncir_SemanticDeprecations = $rt_classWithoutFields(0); -function oncir_Deprecations$SemanticallyDeprecatedFeatures() { - jl_Object.call(this); - this.$cypherVersion = null; -} -let oncir_Deprecations$SemanticallyDeprecatedFeatures_propertyUsageOfNewVariable = ($this, $pattern, $semanticTable) => { + oncifp_SemanticTypeCheck$_$callClinit(); + var$4 = oncifp_SemanticTypeCheck$_checks; + var$5 = new oncifp_SemanticTypeCheck$$visit$lambda$_10_0; + var$5.$_01096 = $value; + var$5.$_1372 = $context; + cnsa_EnrichedContext$errorHandler$lambda$_7_0_apply(var$3, sci_List_flatMap(var$4, var$5)); +}, +oncir_SemanticDeprecations = $rt_classWithoutFields(0), +oncir_Deprecations$SemanticallyDeprecatedFeatures$ = $rt_classWithoutFields(), +oncir_Deprecations$SemanticallyDeprecatedFeatures$_MODULE$ = null, +oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit = () => { + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit = $rt_eraseClinit(oncir_Deprecations$SemanticallyDeprecatedFeatures$); + oncir_Deprecations$SemanticallyDeprecatedFeatures$__clinit_(); +}, +oncir_Deprecations$SemanticallyDeprecatedFeatures$__clinit_ = () => { + let var$1; + var$1 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$; + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + oncir_Deprecations$SemanticallyDeprecatedFeatures$_MODULE$ = var$1; +}, +oncir_Deprecations$SemanticallyDeprecatedFeatures$_propertyUsageOfNewVariable = ($this, $pattern, $semanticTable) => { let $allSymbolDefinitions, $referencedVariables, $declaredVariables; $allSymbolDefinitions = $semanticTable.$recordedScopes1; oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); @@ -16160,8 +16209,7 @@ let oncir_Deprecations$SemanticallyDeprecatedFeatures_propertyUsageOfNewVariable $declaredVariables = sci_Set$EmptySet$_MODULE$; s_Predef$_Set(s_Predef$_MODULE$); s_Tuple2__init_0($semanticTable, $declaredVariables, sci_Set$EmptySet$_MODULE$); - $pattern = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2; - $pattern.$$outer66 = $this; + $pattern = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1; $pattern.$allSymbolDefinitions$1 = $allSymbolDefinitions; $pattern = onciu_Foldable$Folder_treeFold($referencedVariables, $semanticTable, $pattern); if ($pattern === null) @@ -16172,181 +16220,164 @@ let oncir_Deprecations$SemanticallyDeprecatedFeatures_propertyUsageOfNewVariable $declaredVariables = $pattern.$_10; return $pattern.$_20.$intersect($declaredVariables); }, -oncir_Deprecations$SemanticallyDeprecatedFeatures_productPrefix = $this => { - return $rt_s(166); -}, -oncir_Deprecations$SemanticallyDeprecatedFeatures_productArity = $this => { - return 1; -}, -oncir_Deprecations$SemanticallyDeprecatedFeatures_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$cypherVersion; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncir_Deprecations$SemanticallyDeprecatedFeatures_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncir_Deprecations$SemanticallyDeprecatedFeatures_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncir_Deprecations$SemanticallyDeprecatedFeatures$_toString = $this => { + return $rt_s(165); }, -oncir_Deprecations$SemanticallyDeprecatedFeatures_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1 = $e => { - return s_Option_fold($e, new oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_0, new oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_1); +oncir_Deprecations$SemanticallyDeprecatedFeatures$_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1 = $e => { + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + return s_Option_fold($e, new oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_0, new oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_1); }, -oncir_Deprecations$SemanticallyDeprecatedFeatures_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1 = ($variable, $allSymbolDefinitions$1) => { - $allSymbolDefinitions$1 = ($allSymbolDefinitions$1.$apply2($variable.$name4)).$map(new oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_19_0); +oncir_Deprecations$SemanticallyDeprecatedFeatures$_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1 = ($variable, $allSymbolDefinitions$1) => { + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + $allSymbolDefinitions$1 = ($allSymbolDefinitions$1.$apply2($variable.$name4)).$map(new oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_17_0); onciu_Ref$_$callClinit(); return $allSymbolDefinitions$1.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, $variable)); }, -oncir_Deprecations$SemanticallyDeprecatedFeatures_$anonfun$find$1 = ($$this, $semanticTable$1, $x0$1) => { - let $rhs, $lhs, $rhs_0, $pattern, $patternPart, $lhs_0, var$10, var$11, $x$1, $x$4, $x$6, $x$3, $innerQuery, $importing, var$18; +oncir_Deprecations$SemanticallyDeprecatedFeatures$_includesExisting$1 = ($this, $q) => { + while (true) { + if ($q instanceof oncia_SingleQuery) + return s_Option_exists((oncia_SingleQuery_partitionedClauses($q)).$importingWith0, new oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_0); + if (!$rt_isInstance($q, oncia_Union)) { + if (!($q instanceof oncia_TopLevelBraces)) + $rt_throw(s_MatchError__init_($q)); + $q = $q.$query1; + continue; + } + $q = $q; + if (s_Option_exists((oncia_SingleQuery_partitionedClauses(($q.$rhs0()).$getSingleQuery())).$importingWith0, new oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_1)) + break; + $q = $q.$lhs(); + } + return 1; +}, +oncir_Deprecations$SemanticallyDeprecatedFeatures$_$anonfun$find$3 = ($$this, $semanticTable$1, $version$2, $x0$1) => { + let $rhs, $lhs, $rhs_0, var$8, $pattern, $x$1, $x$4, var$12, var$13, $x$8, $x$5, $innerQuery, $importing, $patternPart; + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); if ($x0$1 instanceof oncia_SetExactPropertiesFromMapItem) { $rhs = $x0$1; - $lhs = $rhs.$variable11; + $lhs = $rhs.$variable10; $rhs_0 = $rhs.$expression15; + var$8 = $rhs.$rhsMustBeMap; if ($lhs !== null && $rhs_0 instanceof oncie_Variable) { $pattern = $rhs_0; - $patternPart = oncias_SemanticTable_typeFor($semanticTable$1, $pattern); - $lhs_0 = sr_ScalaRunTime$_MODULE$; - var$10 = $rt_createArray(oncius_CypherType, 2); - var$11 = var$10.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTNode(oncius_package$_MODULE$); - var$11[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - if (oncias_SemanticTable$TypeGetter_isAnyOf($patternPart, sr_ScalaRunTime$_wrapRefArray($lhs_0, var$10))) { - $x0$1 = new s_Some; - $rhs_0 = new oncir_Deprecation; - $patternPart = new s_Some; - $$this = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - onciu_Ref$_$callClinit(); - $semanticTable$1 = onciu_Ref$_apply(onciu_Ref$_MODULE$, $rhs); - $x$1 = oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$functionInvocationForSetProperties(oncir_Deprecations$_MODULE$, $rhs, $pattern); - s_Some__init_0($patternPart, s_Predef$ArrowAssoc$_$minus$greater$extension($$this, $semanticTable$1, oncia_SetExactPropertiesFromMapItem_copy($rhs, $rhs.$variable11, $x$1, $rhs.$position91))); - $$this = new s_Some; - $semanticTable$1 = new onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification; - $x$1 = $pattern.$position4; - $x$4 = $lhs.$name4; - $x$6 = $pattern.$name4; - $rhs = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($rhs); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($rhs, $rt_s(167)), $x$4), $rt_s(168)), $x$6); - $x$6 = jl_AbstractStringBuilder_toString($rhs); - $lhs_0 = $lhs.$name4; - $x$4 = $pattern.$name4; - $rhs = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($rhs); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($rhs, $rt_s(167)), $lhs_0), $rt_s(169)), $x$4), 41); - onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification__init_($semanticTable$1, $x$1, $x$6, jl_AbstractStringBuilder_toString($rhs)); - s_Some__init_0($$this, $semanticTable$1); - oncir_Deprecation__init_($rhs_0, $patternPart, $$this); - s_Some__init_0($x0$1, $rhs_0); - return $x0$1; + if (0 == var$8) { + $x$1 = oncias_SemanticTable_typeFor($semanticTable$1, $pattern); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$12 = $rt_createArray(oncius_CypherType, 2); + var$13 = var$12.data; + oncius_package$_$callClinit(); + var$13[0] = oncius_package$_CTNode(oncius_package$_MODULE$); + var$13[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + if (oncias_SemanticTable$TypeGetter_isAnyOf($x$1, sr_ScalaRunTime$_wrapRefArray($x$4, var$12))) { + $version$2 = new s_Some; + $x0$1 = new oncir_Deprecation; + $rhs_0 = new s_Some; + $$this = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + onciu_Ref$_$callClinit(); + $semanticTable$1 = onciu_Ref$_apply(onciu_Ref$_MODULE$, $rhs); + $x$1 = oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$functionInvocationForSetProperties(oncir_Deprecations$_MODULE$, $rhs, $pattern); + s_Some__init_0($rhs_0, s_Predef$ArrowAssoc$_$minus$greater$extension($$this, $semanticTable$1, oncia_SetExactPropertiesFromMapItem_copy($rhs, $rhs.$variable10, $x$1, $rhs.$rhsMustBeMap, $rhs.$position104))); + $$this = new s_Some; + $semanticTable$1 = new onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification; + $x$8 = $pattern.$position4; + $x$4 = $lhs.$name4; + $x$5 = $pattern.$name4; + $rhs = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($rhs); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($rhs, $rt_s(166)), $x$4), $rt_s(167)), $x$5); + $rhs = jl_AbstractStringBuilder_toString($rhs); + $x$4 = $lhs.$name4; + $lhs = $pattern.$name4; + $pattern = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($pattern); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($pattern, $rt_s(166)), $x$4), $rt_s(168)), $lhs), 41); + onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification__init_($semanticTable$1, $x$8, $rhs, jl_AbstractStringBuilder_toString($pattern)); + s_Some__init_0($$this, $semanticTable$1); + oncir_Deprecation__init_($x0$1, $rhs_0, $$this); + s_Some__init_0($version$2, $x0$1); + return $version$2; + } } } } if ($x0$1 instanceof oncia_SetIncludingPropertiesFromMapItem) { $rhs_0 = $x0$1; - $lhs_0 = $rhs_0.$variable12; + $lhs = $rhs_0.$variable11; $rhs = $rhs_0.$expression16; - if ($lhs_0 !== null && $rhs instanceof oncie_Variable) { + var$8 = $rhs_0.$rhsMustBeMap0; + if ($lhs !== null && $rhs instanceof oncie_Variable) { $rhs = $rhs; - $pattern = oncias_SemanticTable_typeFor($semanticTable$1, $rhs); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$11.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTNode(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - if (oncias_SemanticTable$TypeGetter_isAnyOf($pattern, sr_ScalaRunTime$_wrapRefArray($x$4, var$11))) { - $$this = new s_Some; - $semanticTable$1 = new oncir_Deprecation; - $x0$1 = new s_Some; - $pattern = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - onciu_Ref$_$callClinit(); - $patternPart = onciu_Ref$_apply(onciu_Ref$_MODULE$, $rhs_0); - $x$4 = oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$functionInvocationForSetProperties(oncir_Deprecations$_MODULE$, $rhs_0, $rhs); - s_Some__init_0($x0$1, s_Predef$ArrowAssoc$_$minus$greater$extension($pattern, $patternPart, oncia_SetIncludingPropertiesFromMapItem_copy($rhs_0, $rhs_0.$variable12, $x$4, $rhs_0.$position105))); - $rhs_0 = new s_Some; - $pattern = new onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification; - $x$3 = $rhs.$position4; - $x$6 = $lhs_0.$name4; - $x$1 = $rhs.$name4; - $patternPart = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($patternPart); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($patternPart, $rt_s(167)), $x$6), $rt_s(170)), $x$1); - $patternPart = jl_AbstractStringBuilder_toString($patternPart); - $x$4 = $lhs_0.$name4; - $x$6 = $rhs.$name4; - $rhs = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($rhs); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($rhs, $rt_s(167)), $x$4), $rt_s(171)), $x$6), 41); - onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification__init_($pattern, $x$3, $patternPart, jl_AbstractStringBuilder_toString($rhs)); - s_Some__init_0($rhs_0, $pattern); - oncir_Deprecation__init_($semanticTable$1, $x0$1, $rhs_0); - s_Some__init_0($$this, $semanticTable$1); - return $$this; - } - } + if (0 == var$8) { + $pattern = oncias_SemanticTable_typeFor($semanticTable$1, $rhs); + $x$1 = sr_ScalaRunTime$_MODULE$; + var$12 = $rt_createArray(oncius_CypherType, 2); + var$13 = var$12.data; + oncius_package$_$callClinit(); + var$13[0] = oncius_package$_CTNode(oncius_package$_MODULE$); + var$13[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + if (oncias_SemanticTable$TypeGetter_isAnyOf($pattern, sr_ScalaRunTime$_wrapRefArray($x$1, var$12))) { + $$this = new s_Some; + $semanticTable$1 = new oncir_Deprecation; + $version$2 = new s_Some; + $x0$1 = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + onciu_Ref$_$callClinit(); + $pattern = onciu_Ref$_apply(onciu_Ref$_MODULE$, $rhs_0); + $x$5 = oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$functionInvocationForSetProperties(oncir_Deprecations$_MODULE$, $rhs_0, $rhs); + s_Some__init_0($version$2, s_Predef$ArrowAssoc$_$minus$greater$extension($x0$1, $pattern, oncia_SetIncludingPropertiesFromMapItem_copy($rhs_0, $rhs_0.$variable11, $x$5, $rhs_0.$rhsMustBeMap0, $rhs_0.$position116))); + $x0$1 = new s_Some; + $rhs_0 = new onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification; + $x$8 = $rhs.$position4; + $x$4 = $lhs.$name4; + $x$5 = $rhs.$name4; + $pattern = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($pattern); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($pattern, $rt_s(166)), $x$4), $rt_s(169)), $x$5); + $x$1 = jl_AbstractStringBuilder_toString($pattern); + $pattern = $lhs.$name4; + $lhs = $rhs.$name4; + $rhs = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($rhs); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($rhs, $rt_s(166)), $pattern), $rt_s(170)), $lhs), 41); + onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification__init_($rhs_0, $x$8, $x$1, jl_AbstractStringBuilder_toString($rhs)); + s_Some__init_0($x0$1, $rhs_0); + oncir_Deprecation__init_($semanticTable$1, $version$2, $x0$1); + s_Some__init_0($$this, $semanticTable$1); + return $$this; + } + } + } + } + if ($x0$1 instanceof oncia_ImportingWithSubqueryCall) { + $semanticTable$1 = $x0$1; + $innerQuery = $semanticTable$1.$innerQuery1; + $importing = !$innerQuery.$isCorrelated() ? $rt_s(4) : oncir_Deprecations$SemanticallyDeprecatedFeatures$_includesExisting$1($$this, $innerQuery) ? $rt_s(171) : sc_AbstractIterable_mkString($innerQuery.$importColumns(), $rt_s(45)); + $$this = new s_Some; + $version$2 = new oncir_Deprecation; + $x0$1 = s_None$_MODULE$; + $rhs_0 = new s_Some; + $rhs = new onciu_DeprecatedImportingWithInSubqueryCall; + $rhs.$position91 = $semanticTable$1.$position114; + $rhs.$variable29 = $importing; + s_Some__init_0($rhs_0, $rhs); + oncir_Deprecation__init_($version$2, $x0$1, $rhs_0); + s_Some__init_0($$this, $version$2); + return $$this; } - if (!($x0$1 instanceof oncia_ImportingWithSubqueryCall)) { - if ($x0$1 instanceof oncia_Create) { - $pattern = $x0$1.$pattern10; - oncia_Create$SelfReferenceAcrossPatterns$_$callClinit(); - if (onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6_deprecatedIn$(oncia_Create$SelfReferenceAcrossPatterns$_MODULE$, $$this.$cypherVersion)) - return sc_AbstractIterable_collectFirst(oncir_Deprecations$SemanticallyDeprecatedFeatures_propertyUsageOfNewVariable($$this, $pattern, $semanticTable$1), new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1); - } - if ($x0$1 instanceof oncia_Merge) { - $patternPart = $x0$1.$pattern8; - oncia_Merge$SelfReference$_$callClinit(); - if (onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6_deprecatedIn$(oncia_Merge$SelfReference$_MODULE$, $$this.$cypherVersion)) { - $$this = oncir_Deprecations$SemanticallyDeprecatedFeatures_propertyUsageOfNewVariable($$this, oncie_Pattern$ForUpdate__init_0(sci_$colon$colon__init_($patternPart, sci_Nil$_MODULE$), $patternPart.$position()), $semanticTable$1); - $semanticTable$1 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$2; - sr_AbstractPartialFunction__init_($semanticTable$1); - return sc_AbstractIterable_collectFirst($$this, $semanticTable$1); - } - } - return s_None$_MODULE$; + if ($x0$1 instanceof oncia_Create) { + $pattern = $x0$1.$pattern10; + if (onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_deprecatedIn$(oncia_Create$SelfReferenceAcrossPatterns$_MODULE$, $version$2)) + return sc_AbstractIterable_collectFirst(oncir_Deprecations$SemanticallyDeprecatedFeatures$_propertyUsageOfNewVariable(oncir_Deprecations$SemanticallyDeprecatedFeatures$_MODULE$, $pattern, $semanticTable$1), new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$1); } - $$this = $x0$1; - $innerQuery = $$this.$innerQuery1; - if (!$innerQuery.$isCorrelated()) - $importing = $rt_s(4); - else { - $semanticTable$1 = $innerQuery; - a: { - while (true) { - if ($semanticTable$1 instanceof oncia_SingleQuery) { - var$18 = s_Option_exists((oncia_SingleQuery_partitionedClauses($semanticTable$1)).$importingWith0, new oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_0); - break a; - } - if (!$rt_isInstance($semanticTable$1, oncia_Union)) - break; - $semanticTable$1 = $semanticTable$1; - if (s_Option_exists((oncia_SingleQuery_partitionedClauses($semanticTable$1.$rhs())).$importingWith0, new oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_1)) { - var$18 = 1; - break a; - } - $semanticTable$1 = $semanticTable$1.$lhs(); - } - $rt_throw(s_MatchError__init_($semanticTable$1)); + if ($x0$1 instanceof oncia_Merge) { + $patternPart = $x0$1.$pattern8; + if (onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_deprecatedIn$(oncia_Merge$SelfReference$_MODULE$, $version$2)) { + $pattern = oncie_Pattern$ForUpdate__init_0(sci_$colon$colon__init_($patternPart, sci_Nil$_MODULE$), $patternPart.$position()); + return sc_AbstractIterable_collectFirst(oncir_Deprecations$SemanticallyDeprecatedFeatures$_propertyUsageOfNewVariable(oncir_Deprecations$SemanticallyDeprecatedFeatures$_MODULE$, $pattern, $semanticTable$1), new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$2); } - $importing = var$18 ? $rt_s(172) : sc_AbstractIterable_mkString($innerQuery.$importColumns(), $rt_s(45)); } - $semanticTable$1 = new s_Some; - $x0$1 = new oncir_Deprecation; - $rhs_0 = s_None$_MODULE$; - $rhs = new s_Some; - $pattern = new onciu_DeprecatedImportingWithInSubqueryCall; - $pattern.$position79 = $$this.$position103; - $pattern.$variable29 = $importing; - s_Some__init_0($rhs, $pattern); - oncir_Deprecation__init_($x0$1, $rhs_0, $rhs); - s_Some__init_0($semanticTable$1, $x0$1); - return $semanticTable$1; + return s_None$_MODULE$; }, oncifp_IsolateSubqueriesInMutatingPatterns$ = $rt_classWithoutFields(), oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$ = null, @@ -16362,8 +16393,8 @@ oncifp_IsolateSubqueriesInMutatingPatterns$__clinit_ = () => { }, oncifp_IsolateSubqueriesInMutatingPatterns$_phase = $this => { return oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$_transform = ($this, $from, $context) => { +}; +let oncifp_IsolateSubqueriesInMutatingPatterns$_transform = ($this, $from, $context) => { return oncifp_Phase_transform$($this, $from, $context); }, oncifp_IsolateSubqueriesInMutatingPatterns$_name = $this => { @@ -16389,8 +16420,7 @@ oncifp_IsolateSubqueriesInMutatingPatterns$_instance = ($this, $from, $context) let var$3, var$4, var$5; var$3 = $from.$anonymousVariableNameGenerator; $context = new oncifp_IsolateSubqueriesInMutatingPatterns$$instance$lambda$_13_0; - $context.$_0493 = $from; - onciu_topDown$_$callClinit(); + $context.$_0482 = $from; $from = onciu_topDown$_MODULE$; onciu_Rewriter$_$callClinit(); var$4 = onciu_Rewriter$_MODULE$; @@ -16400,7 +16430,7 @@ oncifp_IsolateSubqueriesInMutatingPatterns$_instance = ($this, $from, $context) return onciu_topDown$_apply($from, onciu_Rewriter$_lift(var$4, var$5), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); }, oncifp_IsolateSubqueriesInMutatingPatterns$_productPrefix = $this => { - return $rt_s(173); + return $rt_s(172); }, oncifp_IsolateSubqueriesInMutatingPatterns$_process = ($this, $from, $context) => { return oncifp_StatementRewriter_process$($this, $from, $context); @@ -16425,7 +16455,7 @@ oncifp_IsolateSubqueriesInMutatingPatterns$_$anonfun$getRewriter$1 = ($$this, $c } if ($x0$1 !== null) { $uc = $x0$1.$_1(); - $clauseIndex = $x0$1.$_2$mcI$sp(); + $clauseIndex = s_Tuple2__2$mcI$sp($x0$1); if ($rt_isInstance($uc, oncia_UpdateClause)) { $x0$1 = $uc; $RewrittenExpression$module = new sr_LazyRef; @@ -16433,28 +16463,35 @@ oncifp_IsolateSubqueriesInMutatingPatterns$_$anonfun$getRewriter$1 = ($$this, $c $merge = s_Option$_MODULE$; var$13 = $clauseIndex <= 0 ? 0 : 1; $set = new oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0; - $set.$_0356 = $clauses$1; - $set.$_1129 = $clauseIndex; + $set.$_0342 = $clauses$1; + $set.$_1121 = $clauseIndex; $previousClause = s_Option$_when($merge, var$13, $set); s_package$_$callClinit(); $rewrittenExpressions = sr_ObjectRef_create(sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); $clauses$1 = new oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1; - $clauses$1.$_01203 = $$this; - $clauses$1.$_1311 = $semanticTable$1; - $clauses$1.$_2102 = $x0$1; - $clauses$1.$_325 = $previousClause; - $clauses$1.$_45 = $anonymousVariableNameGenerator$1; - $clauses$1.$_53 = $rewrittenExpressions; + $clauses$1.$_01185 = $$this; + $clauses$1.$_1299 = $semanticTable$1; + $clauses$1.$_297 = $x0$1; + $clauses$1.$_330 = $previousClause; + $clauses$1.$_48 = $anonymousVariableNameGenerator$1; + $clauses$1.$_54 = $rewrittenExpressions; $clauses$1.$_62 = $RewrittenExpression$module; $rewrittenUc = $x0$1.$mapExpressions($clauses$1); if ($rewrittenExpressions.$elem.$isEmpty()) return sci_$colon$colon__init_($x0$1, sci_Nil$_MODULE$); if ($inSubqueryContext$1 && s_Option_isEmpty($previousClause)) { $uselessUnwindVarName = onciu_AnonymousVariableNameGenerator_nextName($anonymousVariableNameGenerator$1); - $uselessUnwind = s_Some__init_(oncia_Unwind__init_0(oncie_ListLiteral__init_0(sci_$colon$colon__init_(oncie_False__init_0($x0$1.$position()), sci_Nil$_MODULE$), $x0$1.$position()), oncie_Variable__init_($uselessUnwindVarName, $x0$1.$position()), $x0$1.$position())); + $uselessUnwind = new s_Some; + $$this = new oncia_Unwind; + $clauses$1 = oncie_ListLiteral__init_0(sci_$colon$colon__init_(oncie_False__init_0($x0$1.$position()), sci_Nil$_MODULE$), $x0$1.$position()); + $semanticTable$1 = new oncie_Variable; + $anonymousVariableNameGenerator$1 = $x0$1.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_($semanticTable$1, $uselessUnwindVarName, $anonymousVariableNameGenerator$1, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + oncia_Unwind__init_($$this, $clauses$1, $semanticTable$1, $x0$1.$position()); + s_Some__init_0($uselessUnwind, $$this); } else $uselessUnwind = s_None$_MODULE$; - oncia_With$_$callClinit(); $$this = new oncia_ReturnItems; $clauses$1 = $rewrittenExpressions.$elem.$map(new oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2); oncia_ReturnItems$_$callClinit(); @@ -16475,17 +16512,17 @@ oncifp_IsolateSubqueriesInMutatingPatterns$_org$neo4j$cypher$internal$frontend$p $clauses = $sq.$clauses0; $rewrittenClauses = $clauses.$zipWithIndex(); var$7 = new oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1$lambda$_32_0; - var$7.$_055 = $this; - var$7.$_124 = $clauses; - var$7.$_212 = $semanticTable$1; - var$7.$_36 = $anonymousVariableNameGenerator$1; + var$7.$_056 = $this; + var$7.$_122 = $clauses; + var$7.$_210 = $semanticTable$1; + var$7.$_35 = $anonymousVariableNameGenerator$1; var$7.$_43 = $inSubqueryContext; - return oncia_SingleQuery_copy($sq, $rewrittenClauses.$flatMap(var$7), $sq.$position12); + return oncia_SingleQuery_copy($sq, $rewrittenClauses.$flatMap(var$7), $sq.$position11); }, oncifp_IsolateSubqueriesInMutatingPatterns$_getDefinedSymbols$1 = ($previousClause, $semanticTable$2) => { let var$3; oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - var$3 = (oncifp_InitialState_semanticTable($semanticTable$2.$_0493)).$recordedScopes1; + var$3 = (oncifp_InitialState_semanticTable($semanticTable$2.$_0482)).$recordedScopes1; oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); return (oncias_Scope_symbolDefinitions(var$3.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $previousClause)))).$map(new oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0); }, @@ -16624,7 +16661,7 @@ jur_AbstractCharClass_getPredefinedClass = ($name, $negative) => { var$4 = jur_AbstractCharClass$PredefinedCharacterClasses_contents.data; if (var$3 >= var$4.length) { var$5 = new ju_MissingResourceException; - jl_Throwable__init_0(var$5, $rt_s(4)); + jl_Throwable__init_(var$5, $rt_s(4)); var$5.$className0 = $rt_s(4); var$5.$key13 = $name; $rt_throw(var$5); @@ -16795,7 +16832,7 @@ jur_CharClass_add = ($this, $i, $end) => { let var$3, var$4, var$5, var$6, var$7; if ($i > $end) { var$3 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$3); + jl_Throwable__init_0(var$3); $rt_throw(var$3); } a: { @@ -16847,7 +16884,7 @@ jur_CharClass_add = ($this, $i, $end) => { } } else { var$3 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$3); + jl_Throwable__init_0(var$3); $rt_throw(var$3); } } @@ -17154,7 +17191,7 @@ jur_LeafQuantifierSet_matches = ($this, $stringIndex, $testString, $matchResult) return var$5; }, jur_LeafQuantifierSet_getName = $this => { - return $rt_s(174); + return $rt_s(173); }; function jur_CompositeQuantifierSet() { jur_LeafQuantifierSet.call(this); @@ -17172,7 +17209,7 @@ jur_CompositeQuantifierSet__init_0 = (var_0, var_1, var_2, var_3) => { jur_CompositeQuantifierSet_matches = ($this, $stringIndex, $testString, $matchResult) => { let var$4, $min, $max, $i, $shift; var$4 = $this.$quantifier4; - $min = var$4.$min3; + $min = var$4.$min2; $max = var$4.$max3; $i = 0; while (true) { @@ -17225,7 +17262,7 @@ jur_GroupQuantifierSet_matches = ($this, $stringIndex, $testString, $matchResult return $this.$next4.$matches1($stringIndex, $testString, $matchResult); }, jur_GroupQuantifierSet_getName = $this => { - return $rt_s(175); + return $rt_s(174); }, jur_AltQuantifierSet = $rt_classWithoutFields(jur_LeafQuantifierSet), jur_AltQuantifierSet_matches = ($this, $stringIndex, $testString, $matchResult) => { @@ -17261,194 +17298,6 @@ jur_UnifiedQuantifierSet_find = ($this, $stringIndex, $testString, $matchResult) }, jl_Thread$UncaughtExceptionHandler = $rt_classWithoutFields(0), jl_DefaultUncaughtExceptionHandler = $rt_classWithoutFields(), -oncifp_CompilationPhaseTracer$CompilationPhase = $rt_classWithoutFields(jl_Enum), -oncifp_CompilationPhaseTracer$CompilationPhase_PARSING = null, -oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS = null, -oncifp_CompilationPhaseTracer$CompilationPhase_ADDITION_ERRORS = null, -oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_CHECK = null, -oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_TYPE_CHECK = null, -oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE = null, -oncifp_CompilationPhaseTracer$CompilationPhase_LOGICAL_PLANNING = null, -oncifp_CompilationPhaseTracer$CompilationPhase_CODE_GENERATION = null, -oncifp_CompilationPhaseTracer$CompilationPhase_PIPE_BUILDING = null, -oncifp_CompilationPhaseTracer$CompilationPhase_METADATA_COLLECTION = null, -oncifp_CompilationPhaseTracer$CompilationPhase_$VALUES = null, -oncifp_CompilationPhaseTracer$CompilationPhase_values = () => { - return oncifp_CompilationPhaseTracer$CompilationPhase_$VALUES.$clone0(); -}, -oncifp_CompilationPhaseTracer$CompilationPhase__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(176), 0); - oncifp_CompilationPhaseTracer$CompilationPhase_PARSING = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(177), 1); - oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(178), 2); - oncifp_CompilationPhaseTracer$CompilationPhase_ADDITION_ERRORS = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(179), 3); - oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_CHECK = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(180), 4); - oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_TYPE_CHECK = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(181), 5); - oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(182), 6); - oncifp_CompilationPhaseTracer$CompilationPhase_LOGICAL_PLANNING = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(183), 7); - oncifp_CompilationPhaseTracer$CompilationPhase_CODE_GENERATION = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(184), 8); - oncifp_CompilationPhaseTracer$CompilationPhase_PIPE_BUILDING = var$1; - var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; - jl_Enum__init_(var$1, $rt_s(185), 9); - oncifp_CompilationPhaseTracer$CompilationPhase_METADATA_COLLECTION = var$1; - var$2 = $rt_createArray(oncifp_CompilationPhaseTracer$CompilationPhase, 10); - var$3 = var$2.data; - var$3[0] = oncifp_CompilationPhaseTracer$CompilationPhase_PARSING; - var$3[1] = oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS; - var$3[2] = oncifp_CompilationPhaseTracer$CompilationPhase_ADDITION_ERRORS; - var$3[3] = oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_CHECK; - var$3[4] = oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_TYPE_CHECK; - var$3[5] = oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE; - var$3[6] = oncifp_CompilationPhaseTracer$CompilationPhase_LOGICAL_PLANNING; - var$3[7] = oncifp_CompilationPhaseTracer$CompilationPhase_CODE_GENERATION; - var$3[8] = oncifp_CompilationPhaseTracer$CompilationPhase_PIPE_BUILDING; - var$3[9] = var$1; - oncifp_CompilationPhaseTracer$CompilationPhase_$VALUES = var$2; -}, -oncifp_ExpectedBooleanTypeCheck = $rt_classWithoutFields(0), -oncifp_ExpectedBooleanTypeCheck_isExpectedTypeBoolean$ = ($$this, $semanticTable, $e) => { - $semanticTable = $semanticTable.$types2; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - return s_Option_exists(s_Option_flatMap($semanticTable.$get2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $e)), new oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0), new oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1); -}, -oncifp_PatternExpressionInNonExistenceCheck$ = $rt_classWithoutFields(), -oncifp_PatternExpressionInNonExistenceCheck$_MODULE$ = null, -oncifp_PatternExpressionInNonExistenceCheck$_errorMessage = null, -oncifp_PatternExpressionInNonExistenceCheck$_errorMessageForSizeFunction = null, -oncifp_PatternExpressionInNonExistenceCheck$_$callClinit = () => { - oncifp_PatternExpressionInNonExistenceCheck$_$callClinit = $rt_eraseClinit(oncifp_PatternExpressionInNonExistenceCheck$); - oncifp_PatternExpressionInNonExistenceCheck$__clinit_(); -}, -oncifp_PatternExpressionInNonExistenceCheck$__clinit_ = () => { - let var$1; - var$1 = new oncifp_PatternExpressionInNonExistenceCheck$; - oncifp_PatternExpressionInNonExistenceCheck$_$callClinit(); - oncifp_PatternExpressionInNonExistenceCheck$_MODULE$ = var$1; - oncifp_PatternExpressionInNonExistenceCheck$_errorMessage = $rt_s(186); - oncifp_PatternExpressionInNonExistenceCheck$_errorMessageForSizeFunction = $rt_s(187); -}, -oncifp_PatternExpressionInNonExistenceCheck$_patternExpressionInNonExistenceCheck = $this => { - return new oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0; -}, -oncifp_VariableReferenceCheck = $rt_classWithoutFields(0), -oncifp_VariableReferenceCheck_findSelfReferenceVariables$ = ($$this, $ast, $pattern, $semanticTable) => { - let var$5, var$6; - var$5 = $semanticTable.$recordedScopes1; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - $pattern = oncias_Scope_allSymbolDefinitions(var$5.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $pattern))); - $semanticTable = $ast.$folder(); - var$5 = new s_Tuple2; - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - var$6 = sci_Set$EmptySet$_MODULE$; - s_Predef$_Set(s_Predef$_MODULE$); - s_Tuple2__init_0(var$5, var$6, sci_Set$EmptySet$_MODULE$); - $ast = new oncifp_VariableReferenceCheck$$anonfun$1; - if ($$this === null) - $rt_throw(null); - $ast.$$outer74 = $$this; - $ast.$allSymbolDefinitions$10 = $pattern; - $$this = onciu_Foldable$Folder_treeFold($semanticTable, var$5, $ast); - if ($$this === null) - $rt_throw(s_MatchError__init_($$this)); - $ast = $$this.$_1(); - $$this = $$this.$_2(); - $pattern = s_Tuple2__init_($ast, $$this); - $$this = $pattern.$_10; - return $pattern.$_20.$intersect($$this); -}, -oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1 = ($variable, $allSymbolDefinitions$1) => { - $allSymbolDefinitions$1 = ($allSymbolDefinitions$1.$apply2($variable.$name4)).$map(new oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0); - onciu_Ref$_$callClinit(); - return $allSymbolDefinitions$1.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, $variable)); -}, -oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1 = $e => { - return s_Option_fold($e, new oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0, new oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1); -}; -function oncifp_SelfReferenceCheckWithinPatternPart() { - jl_Object.call(this); - this.$cypherVersion2 = null; -} -let oncifp_SelfReferenceCheckWithinPatternPart_check = $this => { - let var$1; - var$1 = new oncifp_SelfReferenceCheckWithinPatternPart$check$lambda$_7_0; - var$1.$_0779 = $this; - return var$1; -}, -oncifp_SelfReferenceCheckWithinPatternPart_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern = ($this, $clause, $pattern, $semanticTable, $errorMessageProvider) => { - let var$5, var$6; - var$5 = $pattern.$patternParts1; - var$6 = new oncifp_SelfReferenceCheckWithinPatternPart$findSelfReferenceVariablesWithinPatternParts$lambda$_9_0; - var$6.$_0256 = $this; - var$6.$_197 = $pattern; - var$6.$_239 = $semanticTable; - $pattern = sc_AbstractIterable_toSet(var$5.$flatMap(var$6)); - var$6 = new oncifp_SelfReferenceCheckWithinPatternPart$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_8_0; - var$6.$_01200 = $this; - var$6.$_1274 = $clause; - var$6.$_291 = $semanticTable; - var$6.$_332 = $errorMessageProvider; - return ($pattern.$map(var$6)).$toSeq(); -}, -oncifp_SelfReferenceCheckWithinPatternPart__init_ = ($this, $cypherVersion) => { - $this.$cypherVersion2 = $cypherVersion; -}, -oncifp_SelfReferenceCheckWithinPatternPart__init_0 = var_0 => { - let var_1 = new oncifp_SelfReferenceCheckWithinPatternPart(); - oncifp_SelfReferenceCheckWithinPatternPart__init_(var_1, var_0); - return var_1; -}; -function oncifp_SelfReferenceCheckAcrossPatternParts() { - jl_Object.call(this); - this.$cypherVersion3 = null; -} -let oncifp_SelfReferenceCheckAcrossPatternParts_check = $this => { - let var$1; - var$1 = new oncifp_SelfReferenceCheckAcrossPatternParts$check$lambda$_7_0; - var$1.$_0248 = $this; - return var$1; -}, -oncifp_SelfReferenceCheckAcrossPatternParts_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern = ($this, $clause, $pattern, $semanticTable) => { - $semanticTable = oncifp_VariableReferenceCheck_findSelfReferenceVariables$($this, $pattern, $pattern, $semanticTable); - $pattern = new oncifp_SelfReferenceCheckAcrossPatternParts$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_8_0; - $pattern.$_0334 = $clause; - return ($semanticTable.$map($pattern)).$toSeq(); -}, -oncifp_SelfReferenceCheckAcrossPatternParts__init_ = ($this, $cypherVersion) => { - $this.$cypherVersion3 = $cypherVersion; -}, -oncifp_SelfReferenceCheckAcrossPatternParts__init_0 = var_0 => { - let var_1 = new oncifp_SelfReferenceCheckAcrossPatternParts(); - oncifp_SelfReferenceCheckAcrossPatternParts__init_(var_1, var_0); - return var_1; -}, -oncifp_ListCoercedToBooleanCheck$ = $rt_classWithoutFields(), -oncifp_ListCoercedToBooleanCheck$_MODULE$ = null, -oncifp_ListCoercedToBooleanCheck$_errorMessage = null, -oncifp_ListCoercedToBooleanCheck$__clinit_ = () => { - oncifp_ListCoercedToBooleanCheck$_MODULE$ = new oncifp_ListCoercedToBooleanCheck$; - oncifp_ListCoercedToBooleanCheck$_errorMessage = $rt_s(188); -}, -oncifp_ListCoercedToBooleanCheck$_listCoercedToBooleanCheck = $this => { - return new oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0; -}, jur_AbstractCharClass$PredefinedCharacterClasses = $rt_classWithoutFields(), jur_AbstractCharClass$PredefinedCharacterClasses_space = null, jur_AbstractCharClass$PredefinedCharacterClasses_digit = null, @@ -17461,972 +17310,972 @@ jur_AbstractCharClass$PredefinedCharacterClasses__clinit_ = () => { var$2 = var$1.data; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(189); + var$4[0] = $rt_s(175); var$4[1] = jur_AbstractCharClass$LazyLower__init_(); var$2[0] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(190); + var$4[0] = $rt_s(176); var$4[1] = jur_AbstractCharClass$LazyUpper__init_(); var$2[1] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(191); + var$4[0] = $rt_s(177); var$4[1] = jur_AbstractCharClass$LazyASCII__init_(); var$2[2] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(192); + var$4[0] = $rt_s(178); var$4[1] = jur_AbstractCharClass$LazyAlpha__init_(); var$2[3] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(193); + var$4[0] = $rt_s(179); var$4[1] = jur_AbstractCharClass$PredefinedCharacterClasses_digit; var$2[4] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(194); + var$4[0] = $rt_s(180); var$4[1] = jur_AbstractCharClass$LazyAlnum__init_0(); var$2[5] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(195); + var$4[0] = $rt_s(181); var$4[1] = jur_AbstractCharClass$LazyPunct__init_(); var$2[6] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(196); + var$4[0] = $rt_s(182); var$4[1] = jur_AbstractCharClass$LazyGraph__init_(); var$2[7] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(197); + var$4[0] = $rt_s(183); var$4[1] = jur_AbstractCharClass$LazyPrint__init_0(); var$2[8] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(198); + var$4[0] = $rt_s(184); var$4[1] = jur_AbstractCharClass$LazyBlank__init_0(); var$2[9] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(199); + var$4[0] = $rt_s(185); var$4[1] = jur_AbstractCharClass$LazyCntrl__init_(); var$2[10] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(200); + var$4[0] = $rt_s(186); var$4[1] = jur_AbstractCharClass$LazyXDigit__init_0(); var$2[11] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(201); + var$4[0] = $rt_s(187); var$4[1] = jur_AbstractCharClass$LazyJavaLowerCase__init_0(); var$2[12] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(202); + var$4[0] = $rt_s(188); var$4[1] = jur_AbstractCharClass$LazyJavaUpperCase__init_(); var$2[13] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(203); + var$4[0] = $rt_s(189); var$4[1] = jur_AbstractCharClass$LazyJavaWhitespace__init_(); var$2[14] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(204); + var$4[0] = $rt_s(190); var$4[1] = jur_AbstractCharClass$LazyJavaMirrored__init_(); var$2[15] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(205); + var$4[0] = $rt_s(191); var$4[1] = jur_AbstractCharClass$LazyJavaDefined__init_0(); var$2[16] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(206); + var$4[0] = $rt_s(192); var$4[1] = jur_AbstractCharClass$LazyJavaDigit__init_0(); var$2[17] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(207); + var$4[0] = $rt_s(193); var$4[1] = jur_AbstractCharClass$LazyJavaIdentifierIgnorable__init_0(); var$2[18] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(208); + var$4[0] = $rt_s(194); var$4[1] = jur_AbstractCharClass$LazyJavaISOControl__init_0(); var$2[19] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(209); + var$4[0] = $rt_s(195); var$4[1] = jur_AbstractCharClass$LazyJavaJavaIdentifierPart__init_0(); var$2[20] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(210); + var$4[0] = $rt_s(196); var$4[1] = jur_AbstractCharClass$LazyJavaJavaIdentifierStart__init_0(); var$2[21] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(211); + var$4[0] = $rt_s(197); var$4[1] = jur_AbstractCharClass$LazyJavaLetter__init_0(); var$2[22] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(212); + var$4[0] = $rt_s(198); var$4[1] = jur_AbstractCharClass$LazyJavaLetterOrDigit__init_0(); var$2[23] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(213); + var$4[0] = $rt_s(199); var$4[1] = jur_AbstractCharClass$LazyJavaSpaceChar__init_(); var$2[24] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(214); + var$4[0] = $rt_s(200); var$4[1] = jur_AbstractCharClass$LazyJavaTitleCase__init_0(); var$2[25] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(215); + var$4[0] = $rt_s(201); var$4[1] = jur_AbstractCharClass$LazyJavaUnicodeIdentifierPart__init_(); var$2[26] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(216); + var$4[0] = $rt_s(202); var$4[1] = jur_AbstractCharClass$LazyJavaUnicodeIdentifierStart__init_0(); var$2[27] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(217); + var$4[0] = $rt_s(203); var$4[1] = jur_AbstractCharClass$PredefinedCharacterClasses_space; var$2[28] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(218); + var$4[0] = $rt_s(204); var$4[1] = jur_AbstractCharClass$LazyWord__init_(); var$2[29] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(219); + var$4[0] = $rt_s(205); var$4[1] = jur_AbstractCharClass$LazyNonWord__init_0(); var$2[30] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(220); + var$4[0] = $rt_s(206); var$4[1] = jur_AbstractCharClass$PredefinedCharacterClasses_space; var$2[31] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(221); + var$4[0] = $rt_s(207); var$4[1] = jur_AbstractCharClass$LazyNonSpace__init_(); var$2[32] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(222); + var$4[0] = $rt_s(208); var$4[1] = jur_AbstractCharClass$PredefinedCharacterClasses_digit; var$2[33] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(223); + var$4[0] = $rt_s(209); var$4[1] = jur_AbstractCharClass$LazyNonDigit__init_(); var$2[34] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(224); + var$4[0] = $rt_s(210); var$4[1] = jur_AbstractCharClass$LazyRange__init_(0, 127); var$2[35] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(225); + var$4[0] = $rt_s(211); var$4[1] = jur_AbstractCharClass$LazyRange__init_(128, 255); var$2[36] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(226); + var$4[0] = $rt_s(212); var$4[1] = jur_AbstractCharClass$LazyRange__init_(256, 383); var$2[37] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(227); + var$4[0] = $rt_s(213); var$4[1] = jur_AbstractCharClass$LazyRange__init_(384, 591); var$2[38] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(228); + var$4[0] = $rt_s(214); var$4[1] = jur_AbstractCharClass$LazyRange__init_(592, 687); var$2[39] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(229); + var$4[0] = $rt_s(215); var$4[1] = jur_AbstractCharClass$LazyRange__init_(688, 767); var$2[40] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(230); + var$4[0] = $rt_s(216); var$4[1] = jur_AbstractCharClass$LazyRange__init_(768, 879); var$2[41] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(231); + var$4[0] = $rt_s(217); var$4[1] = jur_AbstractCharClass$LazyRange__init_(880, 1023); var$2[42] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(232); + var$4[0] = $rt_s(218); var$4[1] = jur_AbstractCharClass$LazyRange__init_(1024, 1279); var$2[43] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(233); + var$4[0] = $rt_s(219); var$4[1] = jur_AbstractCharClass$LazyRange__init_(1280, 1327); var$2[44] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(234); + var$4[0] = $rt_s(220); var$4[1] = jur_AbstractCharClass$LazyRange__init_(1328, 1423); var$2[45] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(235); + var$4[0] = $rt_s(221); var$4[1] = jur_AbstractCharClass$LazyRange__init_(1424, 1535); var$2[46] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(236); + var$4[0] = $rt_s(222); var$4[1] = jur_AbstractCharClass$LazyRange__init_(1536, 1791); var$2[47] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(237); + var$4[0] = $rt_s(223); var$4[1] = jur_AbstractCharClass$LazyRange__init_(1792, 1871); var$2[48] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(238); + var$4[0] = $rt_s(224); var$4[1] = jur_AbstractCharClass$LazyRange__init_(1872, 1919); var$2[49] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(239); + var$4[0] = $rt_s(225); var$4[1] = jur_AbstractCharClass$LazyRange__init_(1920, 1983); var$2[50] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(240); + var$4[0] = $rt_s(226); var$4[1] = jur_AbstractCharClass$LazyRange__init_(2304, 2431); var$2[51] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(241); + var$4[0] = $rt_s(227); var$4[1] = jur_AbstractCharClass$LazyRange__init_(2432, 2559); var$2[52] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(242); + var$4[0] = $rt_s(228); var$4[1] = jur_AbstractCharClass$LazyRange__init_(2560, 2687); var$2[53] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(243); + var$4[0] = $rt_s(229); var$4[1] = jur_AbstractCharClass$LazyRange__init_(2688, 2815); var$2[54] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(244); + var$4[0] = $rt_s(230); var$4[1] = jur_AbstractCharClass$LazyRange__init_(2816, 2943); var$2[55] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(245); + var$4[0] = $rt_s(231); var$4[1] = jur_AbstractCharClass$LazyRange__init_(2944, 3071); var$2[56] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(246); + var$4[0] = $rt_s(232); var$4[1] = jur_AbstractCharClass$LazyRange__init_(3072, 3199); var$2[57] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(247); + var$4[0] = $rt_s(233); var$4[1] = jur_AbstractCharClass$LazyRange__init_(3200, 3327); var$2[58] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(248); + var$4[0] = $rt_s(234); var$4[1] = jur_AbstractCharClass$LazyRange__init_(3328, 3455); var$2[59] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(249); + var$4[0] = $rt_s(235); var$4[1] = jur_AbstractCharClass$LazyRange__init_(3456, 3583); var$2[60] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(250); + var$4[0] = $rt_s(236); var$4[1] = jur_AbstractCharClass$LazyRange__init_(3584, 3711); var$2[61] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(251); + var$4[0] = $rt_s(237); var$4[1] = jur_AbstractCharClass$LazyRange__init_(3712, 3839); var$2[62] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(252); + var$4[0] = $rt_s(238); var$4[1] = jur_AbstractCharClass$LazyRange__init_(3840, 4095); var$2[63] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(253); + var$4[0] = $rt_s(239); var$4[1] = jur_AbstractCharClass$LazyRange__init_(4096, 4255); var$2[64] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(254); + var$4[0] = $rt_s(240); var$4[1] = jur_AbstractCharClass$LazyRange__init_(4256, 4351); var$2[65] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(255); + var$4[0] = $rt_s(241); var$4[1] = jur_AbstractCharClass$LazyRange__init_(4352, 4607); var$2[66] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(256); + var$4[0] = $rt_s(242); var$4[1] = jur_AbstractCharClass$LazyRange__init_(4608, 4991); var$2[67] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(257); + var$4[0] = $rt_s(243); var$4[1] = jur_AbstractCharClass$LazyRange__init_(4992, 5023); var$2[68] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(258); + var$4[0] = $rt_s(244); var$4[1] = jur_AbstractCharClass$LazyRange__init_(5024, 5119); var$2[69] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(259); + var$4[0] = $rt_s(245); var$4[1] = jur_AbstractCharClass$LazyRange__init_(5120, 5759); var$2[70] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(260); + var$4[0] = $rt_s(246); var$4[1] = jur_AbstractCharClass$LazyRange__init_(5760, 5791); var$2[71] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(261); + var$4[0] = $rt_s(247); var$4[1] = jur_AbstractCharClass$LazyRange__init_(5792, 5887); var$2[72] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(262); + var$4[0] = $rt_s(248); var$4[1] = jur_AbstractCharClass$LazyRange__init_(5888, 5919); var$2[73] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(263); + var$4[0] = $rt_s(249); var$4[1] = jur_AbstractCharClass$LazyRange__init_(5920, 5951); var$2[74] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(264); + var$4[0] = $rt_s(250); var$4[1] = jur_AbstractCharClass$LazyRange__init_(5952, 5983); var$2[75] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(265); + var$4[0] = $rt_s(251); var$4[1] = jur_AbstractCharClass$LazyRange__init_(5984, 6015); var$2[76] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(266); + var$4[0] = $rt_s(252); var$4[1] = jur_AbstractCharClass$LazyRange__init_(6016, 6143); var$2[77] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(267); + var$4[0] = $rt_s(253); var$4[1] = jur_AbstractCharClass$LazyRange__init_(6144, 6319); var$2[78] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(268); + var$4[0] = $rt_s(254); var$4[1] = jur_AbstractCharClass$LazyRange__init_(6400, 6479); var$2[79] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(269); + var$4[0] = $rt_s(255); var$4[1] = jur_AbstractCharClass$LazyRange__init_(6480, 6527); var$2[80] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(270); + var$4[0] = $rt_s(256); var$4[1] = jur_AbstractCharClass$LazyRange__init_(6528, 6623); var$2[81] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(271); + var$4[0] = $rt_s(257); var$4[1] = jur_AbstractCharClass$LazyRange__init_(6624, 6655); var$2[82] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(272); + var$4[0] = $rt_s(258); var$4[1] = jur_AbstractCharClass$LazyRange__init_(6656, 6687); var$2[83] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(273); + var$4[0] = $rt_s(259); var$4[1] = jur_AbstractCharClass$LazyRange__init_(7424, 7551); var$2[84] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(274); + var$4[0] = $rt_s(260); var$4[1] = jur_AbstractCharClass$LazyRange__init_(7552, 7615); var$2[85] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(275); + var$4[0] = $rt_s(261); var$4[1] = jur_AbstractCharClass$LazyRange__init_(7616, 7679); var$2[86] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(276); + var$4[0] = $rt_s(262); var$4[1] = jur_AbstractCharClass$LazyRange__init_(7680, 7935); var$2[87] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(277); + var$4[0] = $rt_s(263); var$4[1] = jur_AbstractCharClass$LazyRange__init_(7936, 8191); var$2[88] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(278); + var$4[0] = $rt_s(264); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8192, 8303); var$2[89] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(279); + var$4[0] = $rt_s(265); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8304, 8351); var$2[90] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(280); + var$4[0] = $rt_s(266); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8352, 8399); var$2[91] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(281); + var$4[0] = $rt_s(267); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8400, 8447); var$2[92] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(282); + var$4[0] = $rt_s(268); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8448, 8527); var$2[93] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(283); + var$4[0] = $rt_s(269); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8528, 8591); var$2[94] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(284); + var$4[0] = $rt_s(270); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8592, 8703); var$2[95] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(285); + var$4[0] = $rt_s(271); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8704, 8959); var$2[96] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(286); + var$4[0] = $rt_s(272); var$4[1] = jur_AbstractCharClass$LazyRange__init_(8960, 9215); var$2[97] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(287); + var$4[0] = $rt_s(273); var$4[1] = jur_AbstractCharClass$LazyRange__init_(9216, 9279); var$2[98] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(288); + var$4[0] = $rt_s(274); var$4[1] = jur_AbstractCharClass$LazyRange__init_(9280, 9311); var$2[99] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(289); + var$4[0] = $rt_s(275); var$4[1] = jur_AbstractCharClass$LazyRange__init_(9312, 9471); var$2[100] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(290); + var$4[0] = $rt_s(276); var$4[1] = jur_AbstractCharClass$LazyRange__init_(9472, 9599); var$2[101] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(291); + var$4[0] = $rt_s(277); var$4[1] = jur_AbstractCharClass$LazyRange__init_(9600, 9631); var$2[102] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(292); + var$4[0] = $rt_s(278); var$4[1] = jur_AbstractCharClass$LazyRange__init_(9632, 9727); var$2[103] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(293); + var$4[0] = $rt_s(279); var$4[1] = jur_AbstractCharClass$LazyRange__init_(9728, 9983); var$2[104] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(294); + var$4[0] = $rt_s(280); var$4[1] = jur_AbstractCharClass$LazyRange__init_(9984, 10175); var$2[105] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(295); + var$4[0] = $rt_s(281); var$4[1] = jur_AbstractCharClass$LazyRange__init_(10176, 10223); var$2[106] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(296); + var$4[0] = $rt_s(282); var$4[1] = jur_AbstractCharClass$LazyRange__init_(10224, 10239); var$2[107] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(297); + var$4[0] = $rt_s(283); var$4[1] = jur_AbstractCharClass$LazyRange__init_(10240, 10495); var$2[108] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(298); + var$4[0] = $rt_s(284); var$4[1] = jur_AbstractCharClass$LazyRange__init_(10496, 10623); var$2[109] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(299); + var$4[0] = $rt_s(285); var$4[1] = jur_AbstractCharClass$LazyRange__init_(10624, 10751); var$2[110] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(300); + var$4[0] = $rt_s(286); var$4[1] = jur_AbstractCharClass$LazyRange__init_(10752, 11007); var$2[111] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(301); + var$4[0] = $rt_s(287); var$4[1] = jur_AbstractCharClass$LazyRange__init_(11008, 11263); var$2[112] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(302); + var$4[0] = $rt_s(288); var$4[1] = jur_AbstractCharClass$LazyRange__init_(11264, 11359); var$2[113] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(303); + var$4[0] = $rt_s(289); var$4[1] = jur_AbstractCharClass$LazyRange__init_(11392, 11519); var$2[114] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(304); + var$4[0] = $rt_s(290); var$4[1] = jur_AbstractCharClass$LazyRange__init_(11520, 11567); var$2[115] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(305); + var$4[0] = $rt_s(291); var$4[1] = jur_AbstractCharClass$LazyRange__init_(11568, 11647); var$2[116] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(306); + var$4[0] = $rt_s(292); var$4[1] = jur_AbstractCharClass$LazyRange__init_(11648, 11743); var$2[117] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(307); + var$4[0] = $rt_s(293); var$4[1] = jur_AbstractCharClass$LazyRange__init_(11776, 11903); var$2[118] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(308); + var$4[0] = $rt_s(294); var$4[1] = jur_AbstractCharClass$LazyRange__init_(11904, 12031); var$2[119] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(309); + var$4[0] = $rt_s(295); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12032, 12255); var$2[120] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(310); + var$4[0] = $rt_s(296); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12272, 12287); var$2[121] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(311); + var$4[0] = $rt_s(297); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12288, 12351); var$2[122] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(312); + var$4[0] = $rt_s(298); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12352, 12447); var$2[123] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(313); + var$4[0] = $rt_s(299); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12448, 12543); var$2[124] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(314); + var$4[0] = $rt_s(300); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12544, 12591); var$2[125] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(315); + var$4[0] = $rt_s(301); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12592, 12687); var$2[126] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(316); + var$4[0] = $rt_s(302); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12688, 12703); var$2[127] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(317); + var$4[0] = $rt_s(303); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12704, 12735); var$2[128] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(318); + var$4[0] = $rt_s(304); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12736, 12783); var$2[129] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(319); + var$4[0] = $rt_s(305); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12784, 12799); var$2[130] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(320); + var$4[0] = $rt_s(306); var$4[1] = jur_AbstractCharClass$LazyRange__init_(12800, 13055); var$2[131] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(321); + var$4[0] = $rt_s(307); var$4[1] = jur_AbstractCharClass$LazyRange__init_(13056, 13311); var$2[132] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(322); + var$4[0] = $rt_s(308); var$4[1] = jur_AbstractCharClass$LazyRange__init_(13312, 19893); var$2[133] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(323); + var$4[0] = $rt_s(309); var$4[1] = jur_AbstractCharClass$LazyRange__init_(19904, 19967); var$2[134] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(324); + var$4[0] = $rt_s(310); var$4[1] = jur_AbstractCharClass$LazyRange__init_(19968, 40959); var$2[135] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(325); + var$4[0] = $rt_s(311); var$4[1] = jur_AbstractCharClass$LazyRange__init_(40960, 42127); var$2[136] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(326); + var$4[0] = $rt_s(312); var$4[1] = jur_AbstractCharClass$LazyRange__init_(42128, 42191); var$2[137] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(327); + var$4[0] = $rt_s(313); var$4[1] = jur_AbstractCharClass$LazyRange__init_(42752, 42783); var$2[138] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(328); + var$4[0] = $rt_s(314); var$4[1] = jur_AbstractCharClass$LazyRange__init_(43008, 43055); var$2[139] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(329); + var$4[0] = $rt_s(315); var$4[1] = jur_AbstractCharClass$LazyRange__init_(44032, 55203); var$2[140] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(330); + var$4[0] = $rt_s(316); var$4[1] = jur_AbstractCharClass$LazyRange__init_(55296, 56191); var$2[141] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(331); + var$4[0] = $rt_s(317); var$4[1] = jur_AbstractCharClass$LazyRange__init_(56192, 56319); var$2[142] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(332); + var$4[0] = $rt_s(318); var$4[1] = jur_AbstractCharClass$LazyRange__init_(56320, 57343); var$2[143] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(333); + var$4[0] = $rt_s(319); var$4[1] = jur_AbstractCharClass$LazyRange__init_(57344, 63743); var$2[144] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(334); + var$4[0] = $rt_s(320); var$4[1] = jur_AbstractCharClass$LazyRange__init_(63744, 64255); var$2[145] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(335); + var$4[0] = $rt_s(321); var$4[1] = jur_AbstractCharClass$LazyRange__init_(64256, 64335); var$2[146] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(336); + var$4[0] = $rt_s(322); var$4[1] = jur_AbstractCharClass$LazyRange__init_(64336, 65023); var$2[147] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(337); + var$4[0] = $rt_s(323); var$4[1] = jur_AbstractCharClass$LazyRange__init_(65024, 65039); var$2[148] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(338); + var$4[0] = $rt_s(324); var$4[1] = jur_AbstractCharClass$LazyRange__init_(65040, 65055); var$2[149] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(339); + var$4[0] = $rt_s(325); var$4[1] = jur_AbstractCharClass$LazyRange__init_(65056, 65071); var$2[150] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(340); + var$4[0] = $rt_s(326); var$4[1] = jur_AbstractCharClass$LazyRange__init_(65072, 65103); var$2[151] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(341); + var$4[0] = $rt_s(327); var$4[1] = jur_AbstractCharClass$LazyRange__init_(65104, 65135); var$2[152] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(342); + var$4[0] = $rt_s(328); var$4[1] = jur_AbstractCharClass$LazyRange__init_(65136, 65279); var$2[153] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(343); + var$4[0] = $rt_s(329); var$4[1] = jur_AbstractCharClass$LazyRange__init_(65280, 65519); var$2[154] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(344); + var$4[0] = $rt_s(330); var$4[1] = jur_AbstractCharClass$LazyRange__init_(0, 1114111); var$2[155] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(345); + var$4[0] = $rt_s(331); var$4[1] = jur_AbstractCharClass$LazySpecialsBlock__init_0(); var$2[156] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(346); + var$4[0] = $rt_s(332); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(0, 1); var$2[157] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(347); + var$4[0] = $rt_s(333); var$4[1] = jur_AbstractCharClass$LazyCategoryScope__init_(62, 1); var$2[158] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(348); + var$4[0] = $rt_s(334); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(1, 1); var$2[159] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(349); + var$4[0] = $rt_s(335); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(2, 1); var$2[160] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(350); + var$4[0] = $rt_s(336); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(3, 0); var$2[161] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(351); + var$4[0] = $rt_s(337); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(4, 0); var$2[162] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(352); + var$4[0] = $rt_s(338); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(5, 1); var$2[163] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(353); + var$4[0] = $rt_s(339); var$4[1] = jur_AbstractCharClass$LazyCategoryScope__init_(448, 1); var$2[164] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(354); + var$4[0] = $rt_s(340); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(6, 1); var$2[165] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(355); + var$4[0] = $rt_s(341); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(7, 0); var$2[166] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(356); + var$4[0] = $rt_s(342); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(8, 1); var$2[167] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(357); + var$4[0] = $rt_s(343); var$4[1] = jur_AbstractCharClass$LazyCategoryScope__init_(3584, 1); var$2[168] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(358); + var$4[0] = $rt_s(344); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(9, 1); var$2[169] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(359); + var$4[0] = $rt_s(345); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(10, 1); var$2[170] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(360); + var$4[0] = $rt_s(346); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(11, 1); var$2[171] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(361); + var$4[0] = $rt_s(347); var$4[1] = jur_AbstractCharClass$LazyCategoryScope__init_(28672, 0); var$2[172] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(362); + var$4[0] = $rt_s(348); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(12, 0); var$2[173] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(363); + var$4[0] = $rt_s(349); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(13, 0); var$2[174] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(364); + var$4[0] = $rt_s(350); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(14, 0); var$2[175] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(365); + var$4[0] = $rt_s(351); var$4[1] = jur_AbstractCharClass$LazyCategoryScope__init_1(983040, 1, 1); var$2[176] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(366); + var$4[0] = $rt_s(352); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(15, 0); var$2[177] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(367); + var$4[0] = $rt_s(353); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(16, 1); var$2[178] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(368); + var$4[0] = $rt_s(354); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(18, 1); var$2[179] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(369); + var$4[0] = $rt_s(355); var$4[1] = jur_AbstractCharClass$LazyCategory__init_0(19, 0, 1); var$2[180] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(370); + var$4[0] = $rt_s(356); var$4[1] = jur_AbstractCharClass$LazyCategoryScope__init_(1643118592, 1); var$2[181] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(371); + var$4[0] = $rt_s(357); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(20, 0); var$2[182] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(372); + var$4[0] = $rt_s(358); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(21, 0); var$2[183] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(373); + var$4[0] = $rt_s(359); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(22, 0); var$2[184] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(374); + var$4[0] = $rt_s(360); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(23, 0); var$2[185] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(375); + var$4[0] = $rt_s(361); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(24, 1); var$2[186] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(376); + var$4[0] = $rt_s(362); var$4[1] = jur_AbstractCharClass$LazyCategoryScope__init_(2113929216, 1); var$2[187] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(377); + var$4[0] = $rt_s(363); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(25, 1); var$2[188] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(378); + var$4[0] = $rt_s(364); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(26, 0); var$2[189] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(379); + var$4[0] = $rt_s(365); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(27, 0); var$2[190] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(380); + var$4[0] = $rt_s(366); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(28, 1); var$2[191] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(381); + var$4[0] = $rt_s(367); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(29, 0); var$2[192] = var$3; var$3 = $rt_createArray(jl_Object, 2); var$4 = var$3.data; - var$4[0] = $rt_s(382); + var$4[0] = $rt_s(368); var$4[1] = jur_AbstractCharClass$LazyCategory__init_(30, 0); var$2[193] = var$3; jur_AbstractCharClass$PredefinedCharacterClasses_contents = var$1; @@ -18448,12 +18297,12 @@ let jur_AbstractCharClass$LazyCharClass_getValue = ($this, $negative) => { jl_NumberFormatException = $rt_classWithoutFields(jl_IllegalArgumentException); function jur_Quantifier() { let a = this; jur_SpecialToken.call(a); - a.$min3 = 0; + a.$min2 = 0; a.$max3 = 0; } let jur_Quantifier_toString = $this => { let var$1, var$2, var$3, var$4, var$5; - var$1 = $this.$min3; + var$1 = $this.$min2; var$2 = $this.$max3; var$3 = var$2 != 2147483647 ? jl_Integer_toString(var$2) : $rt_s(4); var$4 = new jl_StringBuilder; @@ -18469,7 +18318,7 @@ jur_FSet$PossessiveFSet_matches = ($this, $stringIndex, $testString, $matchResul return $stringIndex; }, jur_FSet$PossessiveFSet_getName = $this => { - return $rt_s(383); + return $rt_s(369); }, jur_FSet$PossessiveFSet_hasConsumed = ($this, $mr) => { return 0; @@ -18491,7 +18340,7 @@ ju_BitSet_set = ($this, $bitIndex) => { let var$2, $index, var$4; if ($bitIndex < 0) { var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } $index = $bitIndex / 32 | 0; @@ -18535,7 +18384,7 @@ ju_BitSet_set0 = ($this, $fromIndex, $toIndex) => { } } var$7 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$7); + jl_Throwable__init_0(var$7); $rt_throw(var$7); }, ju_BitSet_trailingZeroBits = ($this, $num) => { @@ -18549,7 +18398,7 @@ ju_BitSet_clear = ($this, $bitIndex) => { let var$2, $index, var$4; if ($bitIndex < 0) { var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } $index = $bitIndex / 32 | 0; @@ -18564,7 +18413,7 @@ ju_BitSet_get = ($this, $bitIndex) => { let var$2, $index, var$4; if ($bitIndex < 0) { var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } $index = $bitIndex / 32 | 0; @@ -18575,7 +18424,7 @@ ju_BitSet_nextSetBit = ($this, $fromIndex) => { let var$2, $top, $index, var$5, $i; if ($fromIndex < 0) { var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } $top = $this.$length2; @@ -18774,11 +18623,11 @@ function jur_LowHighSurrogateRangeSet() { } let jur_LowHighSurrogateRangeSet_getName = $this => { let var$1, var$2, var$3; - var$1 = !$this.$alt4 ? $rt_s(384) : $rt_s(385); + var$1 = !$this.$alt4 ? $rt_s(370) : $rt_s(371); var$2 = $this.$surrChars.$toString(); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(386)), var$1), var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(372)), var$1), var$2); return jl_AbstractStringBuilder_toString(var$3); }; function jur_CompositeRangeSet() { @@ -18842,7 +18691,7 @@ jur_CompositeRangeSet_getName = $this => { var$2 = $this.$withSurrogates; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(387)), var$1), $rt_s(388)), var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(373)), var$1), $rt_s(374)), var$2); return jl_AbstractStringBuilder_toString(var$3); }, jur_CompositeRangeSet_hasConsumed = ($this, $matchResult) => { @@ -18888,11 +18737,11 @@ jur_SupplRangeSet_matches = ($this, $stringIndex, $testString, $matchResult) => }, jur_SupplRangeSet_getName = $this => { let var$1, var$2, var$3; - var$1 = !$this.$alt2 ? $rt_s(384) : $rt_s(385); + var$1 = !$this.$alt2 ? $rt_s(370) : $rt_s(371); var$2 = $this.$chars.$toString(); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(386)), var$1), var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(372)), var$1), var$2); return jl_AbstractStringBuilder_toString(var$3); }, jur_SupplRangeSet_contains = ($this, $ch) => { @@ -18924,11 +18773,11 @@ jur_UCISupplRangeSet_contains = ($this, $ch) => { }, jur_UCISupplRangeSet_getName = $this => { let var$1, var$2, var$3; - var$1 = !$this.$alt2 ? $rt_s(384) : $rt_s(385); + var$1 = !$this.$alt2 ? $rt_s(370) : $rt_s(371); var$2 = $this.$chars.$toString(); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(389)), var$1), var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(375)), var$1), var$2); return jl_AbstractStringBuilder_toString(var$3); }; function jur_UCIRangeSet() { @@ -18951,11 +18800,11 @@ jur_UCIRangeSet_accepts = ($this, $strIndex, $testString) => { }, jur_UCIRangeSet_getName = $this => { let var$1, var$2, var$3; - var$1 = !$this.$alt5 ? $rt_s(384) : $rt_s(385); + var$1 = !$this.$alt5 ? $rt_s(370) : $rt_s(371); var$2 = $this.$chars1.$toString(); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(389)), var$1), var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(375)), var$1), var$2); return jl_AbstractStringBuilder_toString(var$3); }; function jur_RangeSet() { @@ -18978,11 +18827,11 @@ jur_RangeSet_accepts = ($this, $strIndex, $testString) => { }, jur_RangeSet_getName = $this => { let var$1, var$2, var$3; - var$1 = !$this.$alt3 ? $rt_s(384) : $rt_s(385); + var$1 = !$this.$alt3 ? $rt_s(370) : $rt_s(371); var$2 = $this.$chars0.$toString(); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(386)), var$1), var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(372)), var$1), var$2); return jl_AbstractStringBuilder_toString(var$3); }, jur_RangeSet_first = ($this, $set) => { @@ -19026,7 +18875,7 @@ jur_HangulDecomposedCharSet_getName = $this => { var$1 = jur_HangulDecomposedCharSet_getDecomposedChar($this); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(390)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(376)), var$1); return jl_AbstractStringBuilder_toString(var$2); }, jur_HangulDecomposedCharSet_matches = ($this, $strIndex, $testString, $matchResult) => { @@ -19216,7 +19065,7 @@ jur_UCICharSet_getName = $this => { var$1 = $this.$ch4; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(391)), var$1); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(377)), var$1); return jl_AbstractStringBuilder_toString(var$2); }; function jur_CICharSet() { @@ -19242,7 +19091,7 @@ jur_CICharSet_getName = $this => { var$1 = $this.$ch3; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(392)), var$1); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(378)), var$1); return jl_AbstractStringBuilder_toString(var$2); }; function jur_DecomposedCharSet() { @@ -19346,7 +19195,7 @@ jur_DecomposedCharSet_getName = $this => { var$1 = jur_DecomposedCharSet_getDecomposedChar($this); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(393)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(379)), var$1); return jl_AbstractStringBuilder_toString(var$2); }, jur_DecomposedCharSet_codePointAt = ($this, $strIndex, $testString, $rightBound) => { @@ -19368,7 +19217,7 @@ jur_DecomposedCharSet_codePointAt = ($this, $strIndex, $testString, $rightBound) $this.$readCharsForCodePoint = 2; } else { $testString = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($testString); + jl_Throwable__init_0($testString); $rt_throw($testString); } } @@ -19469,7 +19318,7 @@ jur_CompositeGroupQuantifierSet_matches = ($this, $stringIndex, $testString, $ma $nextIndex = $this.$setCounter; $enterCounter = $enterCounter + (-1) | 0; jur_MatchResultImpl_setEnterCounter($matchResult, $nextIndex, $enterCounter); - if ($enterCounter >= $this.$quantifier3.$min3) + if ($enterCounter >= $this.$quantifier3.$min2) return $this.$next4.$matches1($stringIndex, $testString, $matchResult); jur_MatchResultImpl_setEnterCounter($matchResult, $this.$setCounter, 0); return (-1); @@ -19493,7 +19342,7 @@ jur_PosCompositeGroupQuantifierSet_matches = ($this, $stringIndex, $testString, $stringIndex = $nextIndex; } } - if ($nextIndex < 0 && $counter < $this.$quantifier3.$min3) + if ($nextIndex < 0 && $counter < $this.$quantifier3.$min2) return (-1); return $this.$next4.$matches1($stringIndex, $testString, $matchResult); }, @@ -19528,7 +19377,7 @@ jur_RelCompositeGroupQuantifierSet_matches = ($this, $stringIndex, $testString, jur_MatchResultImpl_setEnterCounter($matchResult, $this.$setCounter, 0); return $this.$next4.$matches1($stringIndex, $testString, $matchResult); } - if ($enterCounter < var$5.$min3) { + if ($enterCounter < var$5.$min2) { jur_MatchResultImpl_setEnterCounter($matchResult, $this.$setCounter, $enterCounter + 1 | 0); $nextIndex = $this.$innerSet.$matches1($stringIndex, $testString, $matchResult); } else { @@ -19558,11 +19407,11 @@ jur_DotAllQuantifierSet_find = ($this, $stringIndex, $testString, $matchResult) return (-1); }, jur_DotAllQuantifierSet_getName = $this => { - return $rt_s(394); + return $rt_s(380); }; function jur_DotQuantifierSet() { jur_QuantifierSet.call(this); - this.$lt1 = null; + this.$lt0 = null; } let jur_DotQuantifierSet_matches = ($this, $stringIndex, $testString, $matchResult) => { let $strLength, $startSearch; @@ -19594,7 +19443,7 @@ jur_DotQuantifierSet_find = ($this, $stringIndex, $testString, $matchResult) => $leftBound = (-1); break a; } - if ($this.$lt1.$isLineTerminator(jl_String_charAt($testString, $leftBound))) + if ($this.$lt0.$isLineTerminator(jl_String_charAt($testString, $leftBound))) break; $leftBound = $leftBound + (-1) | 0; } @@ -19608,14 +19457,14 @@ jur_DotQuantifierSet_findLineTerminator = ($this, $i, $to, $testString) => { while (true) { if ($i >= $to) return (-1); - if ($this.$lt1.$isLineTerminator(jl_String_charAt($testString, $i))) + if ($this.$lt0.$isLineTerminator(jl_String_charAt($testString, $i))) break; $i = $i + 1 | 0; } return $i; }, jur_DotQuantifierSet_getName = $this => { - return $rt_s(395); + return $rt_s(381); }, jur_AbstractLineTerminator = $rt_classWithoutFields(), jur_AbstractLineTerminator_unixLT = null, @@ -19666,7 +19515,7 @@ jur_PossessiveCompositeQuantifierSet = $rt_classWithoutFields(jur_CompositeQuant jur_PossessiveCompositeQuantifierSet_matches = ($this, $stringIndex, $testString, $matchResult) => { let var$4, $min, $max, $i, $shift; var$4 = $this.$quantifier4; - $min = var$4.$min3; + $min = var$4.$min2; $max = var$4.$max3; $i = 0; while (true) { @@ -19726,7 +19575,7 @@ jur_ReluctantCompositeQuantifierSet = $rt_classWithoutFields(jur_CompositeQuanti jur_ReluctantCompositeQuantifierSet_matches = ($this, $stringIndex, $testString, $matchResult) => { let var$4, $min, $max, $i, var$8, var$9; var$4 = $this.$quantifier4; - $min = var$4.$min3; + $min = var$4.$min2; $max = var$4.$max3; $i = 0; while (true) { @@ -19772,7 +19621,7 @@ jur_SOLSet_hasConsumed = ($this, $matchResult) => { return 0; }, jur_SOLSet_getName = $this => { - return $rt_s(396); + return $rt_s(382); }; function jur_WordBoundary() { jur_AbstractSet.call(this); @@ -19798,7 +19647,7 @@ jur_WordBoundary_hasConsumed = ($this, $matchResult) => { return 0; }, jur_WordBoundary_getName = $this => { - return $rt_s(397); + return $rt_s(383); }, jur_WordBoundary_isSpace = ($this, $ch, $index, $leftBound, $testString) => { let var$5; @@ -19830,7 +19679,7 @@ jur_PreviousMatch_hasConsumed = ($this, $matchResult) => { return 0; }, jur_PreviousMatch_getName = $this => { - return $rt_s(398); + return $rt_s(384); }; function jur_EOLSet() { jur_AbstractSet.call(this); @@ -19881,7 +19730,7 @@ jur_EOLSet_hasConsumed = ($this, $matchResult) => { return $res; }, jur_EOLSet_getName = $this => { - return $rt_s(399); + return $rt_s(385); }, jur_EOISet = $rt_classWithoutFields(jur_AbstractSet), jur_EOISet_matches = ($this, $stringIndex, $testString, $matchResult) => { @@ -19895,11 +19744,11 @@ jur_EOISet_hasConsumed = ($this, $matchResult) => { return 0; }, jur_EOISet_getName = $this => { - return $rt_s(400); + return $rt_s(386); }; function jur_MultiLineSOLSet() { jur_AbstractSet.call(this); - this.$lt3 = null; + this.$lt2 = null; } let jur_MultiLineSOLSet_matches = ($this, $strIndex, $testString, $matchResult) => { a: { @@ -19908,7 +19757,7 @@ let jur_MultiLineSOLSet_matches = ($this, $strIndex, $testString, $matchResult) break a; if ($matchResult.$anchoringBounds && $strIndex == $matchResult.$leftBound) break a; - if ($this.$lt3.$isAfterLineTerminator(jl_String_charAt($testString, $strIndex - 1 | 0), jl_String_charAt($testString, $strIndex))) + if ($this.$lt2.$isAfterLineTerminator(jl_String_charAt($testString, $strIndex - 1 | 0), jl_String_charAt($testString, $strIndex))) break a; } return (-1); @@ -19919,7 +19768,7 @@ jur_MultiLineSOLSet_hasConsumed = ($this, $matchResult) => { return 0; }, jur_MultiLineSOLSet_getName = $this => { - return $rt_s(401); + return $rt_s(387); }, jur_DotAllSet = $rt_classWithoutFields(jur_JointSet), jur_DotAllSet__init_0 = $this => { @@ -19947,7 +19796,7 @@ jur_DotAllSet_matches = ($this, $stringIndex, $testString, $matchResult) => { return $this.$next4.$matches1(var$5, $testString, $matchResult); }, jur_DotAllSet_getName = $this => { - return $rt_s(402); + return $rt_s(388); }, jur_DotAllSet_setNext = ($this, $next) => { $this.$next4 = $next; @@ -19960,11 +19809,11 @@ jur_DotAllSet_hasConsumed = ($this, $matchResult) => { }; function jur_DotSet() { jur_JointSet.call(this); - this.$lt2 = null; + this.$lt1 = null; } let jur_DotSet__init_0 = ($this, $lt) => { jur_AbstractSet__init_($this); - $this.$lt2 = $lt; + $this.$lt1 = $lt; }, jur_DotSet__init_ = var_0 => { let var_1 = new jur_DotSet(); @@ -19985,13 +19834,13 @@ jur_DotSet_matches = ($this, $stringIndex, $testString, $matchResult) => { if ($stringIndex <= $strLength) { $low = jl_String_charAt($testString, var$5); if (jl_Character_isSurrogatePair($high, $low)) - return $this.$lt2.$isLineTerminator(jl_Character_toCodePoint($high, $low)) ? (-1) : $this.$next4.$matches1($stringIndex, $testString, $matchResult); + return $this.$lt1.$isLineTerminator(jl_Character_toCodePoint($high, $low)) ? (-1) : $this.$next4.$matches1($stringIndex, $testString, $matchResult); } } - return $this.$lt2.$isLineTerminator($high) ? (-1) : $this.$next4.$matches1(var$5, $testString, $matchResult); + return $this.$lt1.$isLineTerminator($high) ? (-1) : $this.$next4.$matches1(var$5, $testString, $matchResult); }, jur_DotSet_getName = $this => { - return $rt_s(403); + return $rt_s(389); }, jur_DotSet_setNext = ($this, $next) => { $this.$next4 = $next; @@ -20035,7 +19884,7 @@ jur_UEOLSet_hasConsumed = ($this, $matchResult) => { return $res; }, jur_UEOLSet_getName = $this => { - return $rt_s(399); + return $rt_s(385); }; function jur_UMultiLineEOLSet() { jur_AbstractSet.call(this); @@ -20067,7 +19916,7 @@ jur_UMultiLineEOLSet_hasConsumed = ($this, $matchResult) => { return $res; }, jur_UMultiLineEOLSet_getName = $this => { - return $rt_s(404); + return $rt_s(390); }; function jur_MultiLineEOLSet() { jur_AbstractSet.call(this); @@ -20121,7 +19970,7 @@ jur_MultiLineEOLSet_hasConsumed = ($this, $matchResult) => { return $res; }, jur_MultiLineEOLSet_getName = $this => { - return $rt_s(405); + return $rt_s(391); }; function jur_CIBackReferenceSet() { let a = this; jur_JointSet.call(a); @@ -20166,14 +20015,14 @@ jur_CIBackReferenceSet_getString = ($this, $matchResult) => { var$2 = $this.$referencedGroup; var$3 = jur_MatchResultImpl_getStart($matchResult, var$2); var$2 = jur_MatchResultImpl_getEnd($matchResult, var$2); - return (var$2 | var$3 | (var$2 - var$3 | 0)) >= 0 && var$2 <= $matchResult.$string5.$nativeString.length ? jl_String_substring($matchResult.$string5, var$3, var$2) : null; + return (var$2 | var$3 | (var$2 - var$3 | 0)) >= 0 && var$2 <= $matchResult.$string4.$nativeString.length ? jl_String_substring($matchResult.$string4, var$3, var$2) : null; }, jur_CIBackReferenceSet_getName = $this => { let var$1, var$2; var$1 = $this.$groupIndex; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(406)), var$1); + jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(392)), var$1); return jl_AbstractStringBuilder_toString(var$2); }, jur_CIBackReferenceSet_hasConsumed = ($this, $matchResult) => { @@ -20269,7 +20118,7 @@ jur_BackReferenceSet_getName = $this => { var$1 = $this.$groupIndex; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(407)), var$1); + jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(393)), var$1); return jl_AbstractStringBuilder_toString(var$2); }; function jur_UCIBackReferenceSet() { @@ -20307,7 +20156,7 @@ jur_UCIBackReferenceSet_getName = $this => { var$1 = $this.$groupIndex1; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(408)), var$1); + jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(394)), var$1); return jl_AbstractStringBuilder_toString(var$2); }, jl_StringBuffer = $rt_classWithoutFields(jl_AbstractStringBuilder), @@ -20328,7 +20177,7 @@ jl_StringBuffer_insert0 = ($this, var$1, var$2, var$3, var$4) => { return $this; }, jl_StringBuffer_append = ($this, var$1, var$2, var$3) => { - jl_AbstractStringBuilder_append2($this, var$1, var$2, var$3); + jl_AbstractStringBuilder_append1($this, var$1, var$2, var$3); return $this; }, jl_StringBuffer_toString = $this => { @@ -20347,7 +20196,7 @@ jl_StringBuffer_insert1 = ($this, var$1, var$2) => { }; function jur_SequenceSet() { let a = this; jur_LeafSet.call(a); - a.$string1 = null; + a.$string0 = null; a.$leftToRight = null; a.$rightToLeft = null; } @@ -20360,7 +20209,7 @@ jur_SequenceSet_find = ($this, $strIndex, $testString, $matchResult) => { while (true) { if ($strIndex > $strLength) return (-1); - var$5 = jl_String_charAt($this.$string1, $this.$charCount0 - 1 | 0); + var$5 = jl_String_charAt($this.$string0, $this.$charCount0 - 1 | 0); a: { while (true) { var$6 = $this.$charCount0; @@ -20387,7 +20236,7 @@ jur_SequenceSet_findBack = ($this, $strIndex, $lastIndex, $testString, $matchRes while (true) { if ($lastIndex < $strIndex) return (-1); - var$5 = jl_String_charAt($this.$string1, 0); + var$5 = jl_String_charAt($this.$string0, 0); var$6 = ($testString.$nativeString.length - $lastIndex | 0) - $this.$charCount0 | 0; if (var$6 <= 0) $lastIndex = $lastIndex + var$6 | 0; @@ -20413,30 +20262,30 @@ jur_SequenceSet_findBack = ($this, $strIndex, $lastIndex, $testString, $matchRes }, jur_SequenceSet_getName = $this => { let var$1, var$2; - var$1 = $this.$string1; + var$1 = $this.$string0; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(409)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(395)), var$1); return jl_AbstractStringBuilder_toString(var$2); }, jur_SequenceSet_first = ($this, $set) => { let var$2; if ($set instanceof jur_CharSet) - return $set.$ch0 != jl_String_charAt($this.$string1, 0) ? 0 : 1; + return $set.$ch0 != jl_String_charAt($this.$string0, 0) ? 0 : 1; if ($set instanceof jur_RangeSet) - return jur_RangeSet_accepts($set, 0, jl_String_substring($this.$string1, 0, 1)) <= 0 ? 0 : 1; + return jur_RangeSet_accepts($set, 0, jl_String_substring($this.$string0, 0, 1)) <= 0 ? 0 : 1; if (!($set instanceof jur_SupplRangeSet)) { if (!($set instanceof jur_SupplCharSet)) return 1; - return $this.$string1.$nativeString.length > 1 && $set.$ch1 == jl_Character_toCodePoint(jl_String_charAt($this.$string1, 0), jl_String_charAt($this.$string1, 1)) ? 1 : 0; + return $this.$string0.$nativeString.length > 1 && $set.$ch1 == jl_Character_toCodePoint(jl_String_charAt($this.$string0, 0), jl_String_charAt($this.$string0, 1)) ? 1 : 0; } a: { b: { $set = $set; - if (!$set.$contains0(jl_String_charAt($this.$string1, 0))) { - if ($this.$string1.$nativeString.length <= 1) + if (!$set.$contains0(jl_String_charAt($this.$string0, 0))) { + if ($this.$string0.$nativeString.length <= 1) break b; - if (!$set.$contains0(jl_Character_toCodePoint(jl_String_charAt($this.$string1, 0), jl_String_charAt($this.$string1, 1)))) + if (!$set.$contains0(jl_Character_toCodePoint(jl_String_charAt($this.$string0, 0), jl_String_charAt($this.$string0, 1)))) break b; } var$2 = 1; @@ -20450,7 +20299,7 @@ jur_SequenceSet_startsWith = ($this, $str, $from) => { let $i; $i = 0; while ($i < $this.$charCount0) { - if (jl_String_charAt($str, $i + $from | 0) != jl_String_charAt($this.$string1, $i)) + if (jl_String_charAt($str, $i + $from | 0) != jl_String_charAt($this.$string0, $i)) return 0; $i = $i + 1 | 0; } @@ -20458,7 +20307,7 @@ jur_SequenceSet_startsWith = ($this, $str, $from) => { }; function jur_UCISequenceSet() { jur_LeafSet.call(this); - this.$string4 = null; + this.$string3 = null; } let jur_UCISequenceSet__init_ = ($this, $substring) => { let $res, $i; @@ -20470,7 +20319,7 @@ let jur_UCISequenceSet__init_ = ($this, $substring) => { jl_AbstractStringBuilder_append0($res, jl_Character_toLowerCase(jl_Character_toUpperCase(jl_AbstractStringBuilder_charAt($substring, $i)))); $i = $i + 1 | 0; } - $this.$string4 = jl_AbstractStringBuilder_toString($res); + $this.$string3 = jl_AbstractStringBuilder_toString($res); $this.$charCount0 = $res.$length1; }, jur_UCISequenceSet__init_0 = var_0 => { @@ -20482,9 +20331,9 @@ jur_UCISequenceSet_accepts = ($this, $strIndex, $testString) => { let $i; $i = 0; while (true) { - if ($i >= $this.$string4.$nativeString.length) - return $this.$string4.$nativeString.length; - if (jl_String_charAt($this.$string4, $i) != jl_Character_toLowerCase(jl_Character_toUpperCase(jl_String_charAt($testString, $strIndex + $i | 0)))) + if ($i >= $this.$string3.$nativeString.length) + return $this.$string3.$nativeString.length; + if (jl_String_charAt($this.$string3, $i) != jl_Character_toLowerCase(jl_Character_toUpperCase(jl_String_charAt($testString, $strIndex + $i | 0)))) break; $i = $i + 1 | 0; } @@ -20492,25 +20341,25 @@ jur_UCISequenceSet_accepts = ($this, $strIndex, $testString) => { }, jur_UCISequenceSet_getName = $this => { let var$1, var$2; - var$1 = $this.$string4; + var$1 = $this.$string3; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(410)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(396)), var$1); return jl_AbstractStringBuilder_toString(var$2); }; function jur_CISequenceSet() { jur_LeafSet.call(this); - this.$string3 = null; + this.$string2 = null; } let jur_CISequenceSet_accepts = ($this, $strIndex, $testString) => { let $i, var$4, var$5; $i = 0; while (true) { - if ($i >= $this.$string3.$nativeString.length) - return $this.$string3.$nativeString.length; - var$4 = jl_String_charAt($this.$string3, $i); + if ($i >= $this.$string2.$nativeString.length) + return $this.$string2.$nativeString.length; + var$4 = jl_String_charAt($this.$string2, $i); var$5 = $strIndex + $i | 0; - if (var$4 != jl_String_charAt($testString, var$5) && jur_Pattern_getSupplement(jl_String_charAt($this.$string3, $i)) != jl_String_charAt($testString, var$5)) + if (var$4 != jl_String_charAt($testString, var$5) && jur_Pattern_getSupplement(jl_String_charAt($this.$string2, $i)) != jl_String_charAt($testString, var$5)) break; $i = $i + 1 | 0; } @@ -20518,10 +20367,10 @@ let jur_CISequenceSet_accepts = ($this, $strIndex, $testString) => { }, jur_CISequenceSet_getName = $this => { let var$1, var$2; - var$1 = $this.$string3; + var$1 = $this.$string2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(411)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(397)), var$1); return jl_AbstractStringBuilder_toString(var$2); }, ju_Enumeration = $rt_classWithoutFields(0), @@ -20549,16 +20398,84 @@ otpp_AsyncCallbackWrapper_error = ($this, $e) => { }; function jl_Object$monitorEnterWait$lambda$_6_0() { let a = this; jl_Object.call(a); - a.$_0361 = null; - a.$_1131 = null; - a.$_248 = 0; + a.$_0347 = null; + a.$_1123 = null; + a.$_244 = 0; a.$_315 = null; } -let onciap_ExpressionStringifier$ = $rt_classWithoutFields(), +let oncifp_CompilationPhaseTracer$CompilationPhase = $rt_classWithoutFields(jl_Enum), +oncifp_CompilationPhaseTracer$CompilationPhase_PARSING = null, +oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS = null, +oncifp_CompilationPhaseTracer$CompilationPhase_ADDITION_ERRORS = null, +oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_CHECK = null, +oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_TYPE_CHECK = null, +oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE = null, +oncifp_CompilationPhaseTracer$CompilationPhase_LOGICAL_PLANNING = null, +oncifp_CompilationPhaseTracer$CompilationPhase_CODE_GENERATION = null, +oncifp_CompilationPhaseTracer$CompilationPhase_PIPE_BUILDING = null, +oncifp_CompilationPhaseTracer$CompilationPhase_METADATA_COLLECTION = null, +oncifp_CompilationPhaseTracer$CompilationPhase_$VALUES = null, +oncifp_CompilationPhaseTracer$CompilationPhase_values = () => { + return oncifp_CompilationPhaseTracer$CompilationPhase_$VALUES.$clone0(); +}, +oncifp_CompilationPhaseTracer$CompilationPhase__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(398), 0); + oncifp_CompilationPhaseTracer$CompilationPhase_PARSING = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(399), 1); + oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(400), 2); + oncifp_CompilationPhaseTracer$CompilationPhase_ADDITION_ERRORS = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(401), 3); + oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_CHECK = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(402), 4); + oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_TYPE_CHECK = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(403), 5); + oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(404), 6); + oncifp_CompilationPhaseTracer$CompilationPhase_LOGICAL_PLANNING = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(405), 7); + oncifp_CompilationPhaseTracer$CompilationPhase_CODE_GENERATION = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(406), 8); + oncifp_CompilationPhaseTracer$CompilationPhase_PIPE_BUILDING = var$1; + var$1 = new oncifp_CompilationPhaseTracer$CompilationPhase; + jl_Enum__init_(var$1, $rt_s(407), 9); + oncifp_CompilationPhaseTracer$CompilationPhase_METADATA_COLLECTION = var$1; + var$2 = $rt_createArray(oncifp_CompilationPhaseTracer$CompilationPhase, 10); + var$3 = var$2.data; + var$3[0] = oncifp_CompilationPhaseTracer$CompilationPhase_PARSING; + var$3[1] = oncifp_CompilationPhaseTracer$CompilationPhase_DEPRECATION_WARNINGS; + var$3[2] = oncifp_CompilationPhaseTracer$CompilationPhase_ADDITION_ERRORS; + var$3[3] = oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_CHECK; + var$3[4] = oncifp_CompilationPhaseTracer$CompilationPhase_SEMANTIC_TYPE_CHECK; + var$3[5] = oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE; + var$3[6] = oncifp_CompilationPhaseTracer$CompilationPhase_LOGICAL_PLANNING; + var$3[7] = oncifp_CompilationPhaseTracer$CompilationPhase_CODE_GENERATION; + var$3[8] = oncifp_CompilationPhaseTracer$CompilationPhase_PIPE_BUILDING; + var$3[9] = var$1; + oncifp_CompilationPhaseTracer$CompilationPhase_$VALUES = var$2; +}, +onciap_ExpressionStringifier$ = $rt_classWithoutFields(), onciap_ExpressionStringifier$_MODULE$ = null, onciap_ExpressionStringifier$_failingExtender = null, +onciap_ExpressionStringifier$_$callClinit = () => { + onciap_ExpressionStringifier$_$callClinit = $rt_eraseClinit(onciap_ExpressionStringifier$); + onciap_ExpressionStringifier$__clinit_(); +}, onciap_ExpressionStringifier$__clinit_ = () => { - onciap_ExpressionStringifier$_MODULE$ = new onciap_ExpressionStringifier$; + let var$1; + var$1 = new onciap_ExpressionStringifier$; + onciap_ExpressionStringifier$_$callClinit(); + onciap_ExpressionStringifier$_MODULE$ = var$1; onciap_ExpressionStringifier$_failingExtender = new onciap_ExpressionStringifier$$_clinit_$lambda$_0_0; }, onciap_ExpressionStringifier$_apply = ($this, $extender, $alwaysParens, $alwaysBacktick, $preferSingleQuotes, $sensitiveParamsAsParams) => { @@ -20572,244 +20489,109 @@ onciap_ExpressionStringifier$_apply = ($this, $extender, $alwaysParens, $alwaysB var$6.$alwaysBacktick = $alwaysBacktick; var$6.$preferSingleQuotes = $preferSingleQuotes; var$6.$sensitiveParamsAsParams = $sensitiveParamsAsParams; - onciap_PatternStringifier$_$callClinit(); + var$6.$javaCompatible = 0; var$6.$patterns0 = onciap_PatternStringifier$_apply(onciap_PatternStringifier$_MODULE$, var$6); - onciap_PathStepStringifier$_$callClinit(); $extender = new onciap_DefaultPathStepStringifier; $extender.$expr6 = var$6; var$6.$pathSteps0 = $extender; - var$7 = new onciap_Prettifier; + $extender = new onciap_Prettifier; onciap_Prettifier$_$callClinit(); - onciap_Prettifier__init_(var$7, var$6, onciap_Prettifier$_apply$default$2(onciap_Prettifier$_MODULE$), 1); - var$6.$prettifier0 = var$7; + onciap_Prettifier__init_($extender, var$6, onciap_Prettifier$EmptyExtension$_MODULE$, 1); + var$6.$prettifier0 = $extender; return var$6; }, -onciap_ExpressionStringifier$_backtick = ($this, $txt, $alwaysBacktick, $globbing) => { - let var$4, var$5, $isJavaIdentifier; - if ($alwaysBacktick) { - $txt = onciap_ExpressionStringifier$_escaped$1($txt); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(var$4, 96); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, $txt), 96); - return jl_AbstractStringBuilder_toString(var$4); - } - a: { - var$4 = onih_Strings_codePoints($txt); - var$5 = new jusi_LimitingIntStreamImpl; - var$5.$sourceStream1 = var$4; - var$5.$limit6 = 1; - var$5.$remaining0 = 1; - var$4 = new onciap_ExpressionStringifier$$backtick$lambda$_9_0; - var$4.$_0502 = $globbing; - if (jusi_SimpleIntStreamImpl_allMatch(var$5, var$4)) { - var$4 = onih_Strings_codePoints($txt); - var$5 = new jusi_SkippingIntStreamImpl; - var$5.$sourceStream = var$4; - var$5.$skip6 = 1; - var$5.$remaining1 = 1; - var$4 = new onciap_ExpressionStringifier$$backtick$lambda$_9_1; - var$4.$_0989 = $globbing; - if (jusi_SimpleIntStreamImpl_allMatch(var$5, var$4)) { - $isJavaIdentifier = 1; - break a; - } - } - $isJavaIdentifier = 0; - } - if ($isJavaIdentifier) - return $txt; - $txt = onciap_ExpressionStringifier$_escaped$1($txt); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(var$4, 96); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, $txt), 96); - return jl_AbstractStringBuilder_toString(var$4); +onciap_ExpressionStringifier$_apply$default$1 = $this => { + onciap_ExpressionStringifier$_$callClinit(); + return onciap_ExpressionStringifier$_failingExtender; }, -onciap_ExpressionStringifier$_escaped$1 = $txt$1 => { - return jl_String_replace($txt$1, $rt_s(412), $rt_s(413)); +onciap_ExpressionStringifier$_apply$default$2 = $this => { + return 0; }, -onciap_ExpressionStringifier$_orGlobbedCharacter$1 = ($p, $globbing$1) => { - a: { - b: { - if ($globbing$1) { - if ($p == 42) - break b; - if ($p == 63) - break b; +onciap_ExpressionStringifier$_apply$default$3 = $this => { + return 0; +}, +onciap_ExpressionStringifier$_apply$default$4 = $this => { + return 0; +}, +onciap_ExpressionStringifier$_apply$default$5 = $this => { + return 0; +}, +onciu_StepSequencer = $rt_classWithoutFields(), +oncirrf_PreparatoryRewritingRewriterFactory = $rt_classWithoutFields(0), +oncirr_removeSyntaxTracking$ = $rt_classWithoutFields(), +oncirr_removeSyntaxTracking$_MODULE$ = null, +oncirr_removeSyntaxTracking$_rewriter = null, +oncirr_removeSyntaxTracking$_instance = null, +oncirr_removeSyntaxTracking$_completed$module = null, +oncirr_removeSyntaxTracking$_$callClinit = () => { + oncirr_removeSyntaxTracking$_$callClinit = $rt_eraseClinit(oncirr_removeSyntaxTracking$); + oncirr_removeSyntaxTracking$__clinit_(); +}, +oncirr_removeSyntaxTracking$__clinit_ = () => { + let var$1, var$2; + var$1 = new oncirr_removeSyntaxTracking$; + oncirr_removeSyntaxTracking$_$callClinit(); + oncirr_removeSyntaxTracking$_MODULE$ = var$1; + onciu_Rewriter$_$callClinit(); + var$1 = onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_removeSyntaxTracking$$anonfun$1); + oncirr_removeSyntaxTracking$_rewriter = var$1; + var$2 = onciu_bottomUp$_MODULE$; + oncirr_removeSyntaxTracking$_instance = onciu_bottomUp$_apply(var$2, var$1, onciu_bottomUp$_apply$default$2(var$2), onciu_CancellationChecker$NeverCancelled$_MODULE$); +}, +oncirr_removeSyntaxTracking$_postConditions = $this => { + return onciu_StepSequencer$DefaultPostCondition_postConditions$($this); +}, +oncirr_removeSyntaxTracking$_completed = $this => { + let var$1, $$je; + oncirr_removeSyntaxTracking$_$callClinit(); + if (oncirr_removeSyntaxTracking$_completed$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if (oncirr_removeSyntaxTracking$_completed$module !== null) + break a; + oncirr_removeSyntaxTracking$_completed$module = onciu_StepSequencer$DefaultPostCondition$completed$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - $p = 0; - break a; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - $p = 1; + jl_Object_monitorExitSync($this); } - return $p; + return oncirr_removeSyntaxTracking$_completed$module; }, -sr_AbstractPartialFunction = $rt_classWithoutFields(), -sr_AbstractPartialFunction_orElse = ($this, $that) => { - let var$2; - var$2 = new s_PartialFunction$OrElse; - var$2.$f10 = $this; - var$2.$f20 = $that; - return var$2; +oncirr_removeSyntaxTracking$_getRewriter = ($this, $cypherExceptionFactory) => { + oncirr_removeSyntaxTracking$_$callClinit(); + return oncirr_removeSyntaxTracking$_instance; }, -sr_AbstractPartialFunction_andThen0 = ($this, $k) => { - let var$2; - if ($rt_isInstance($k, s_PartialFunction)) - var$2 = sr_AbstractPartialFunction_andThen($this, $k); - else { - var$2 = new s_PartialFunction$AndThen; - var$2.$pf0 = $this; - var$2.$k = $k; - } - return var$2; +oncirr_removeSyntaxTracking$_preConditions = $this => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; }, -sr_AbstractPartialFunction_andThen = ($this, $k) => { - let var$2; - var$2 = new s_PartialFunction$Combined; - var$2.$pf1 = $this; - var$2.$k0 = $k; - return var$2; +oncirr_removeSyntaxTracking$_invalidatedConditions = $this => { + oncirc_package$_$callClinit(); + return oncirc_package$_SemanticInfoAvailable(oncirc_package$_MODULE$); }, -sr_AbstractPartialFunction_lift = $this => { - return s_PartialFunction_lift$($this); +oncirr_removeSyntaxTracking$_productArity = $this => { + return 0; }, -sr_AbstractPartialFunction_runWith = ($this, $action) => { - let var$2; - var$2 = new s_PartialFunction$runWith$lambda$_22_0; - var$2.$_01165 = $this; - var$2.$_1389 = $action; - return var$2; +oncirr_removeSyntaxTracking$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -sr_AbstractPartialFunction_apply = ($this, $x) => { - return $this.$applyOrElse($x, s_PartialFunction$_empty_pf); +oncirr_removeSyntaxTracking$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -sr_AbstractPartialFunction__init_ = $this => { - return; +oncirr_removeSyntaxTracking$_hashCode = $this => { + return 2133109086; }, -oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let $lhs, $variable, $deprecatedParameter, $newRelPat, $relChain, $rhs, $labelExpression, $rewrittenExpression, $x$1, $single, $node1, $relPat, $node2, $labelExpression_0, $properties, $predicate, $direction, $replacement, $replacementParameter, $nn; - if ($x1 instanceof oncie_RelationshipPattern) { - $lhs = $x1; - $variable = $lhs.$variable5; - $deprecatedParameter = $lhs.$labelExpression6; - $newRelPat = $lhs.$length3; - $relChain = $lhs.$properties4; - $rhs = $lhs.$predicate1; - if ($deprecatedParameter instanceof s_Some) { - $labelExpression = $deprecatedParameter.$value5; - if (jl_Object_equals(s_None$_MODULE$, $newRelPat) && jl_Object_equals(s_None$_MODULE$, $relChain) && jl_Object_equals(s_None$_MODULE$, $rhs) && s_Option_forall($variable, new oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0) && !$labelExpression.$containsGpmSpecificRelTypeExpression()) { - $rhs = $labelExpression.$folder(); - sr_ClassTag$_$callClinit(); - if (s_Option_isDefined(onciu_Foldable$Folder_treeFindByClass($rhs, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction))))) { - $rewrittenExpression = $labelExpression.$replaceColonSyntax(); - $deprecatedParameter = new oncir_Deprecation; - $rhs = new s_Some; - $x1 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - onciu_Ref$_$callClinit(); - $default = onciu_Ref$_apply(onciu_Ref$_MODULE$, $lhs); - $x$1 = s_Some__init_($rewrittenExpression); - s_Some__init_0($rhs, s_Predef$ArrowAssoc$_$minus$greater$extension($x1, $default, oncie_RelationshipPattern_copy($lhs, $lhs.$variable5, $x$1, $lhs.$length3, $lhs.$properties4, $lhs.$predicate1, $lhs.$direction0, oncie_RelationshipPattern_position($lhs)))); - $x1 = new s_Some; - $default = new onciu_DeprecatedRelTypeSeparatorNotification; - $lhs = oncil_LabelExpression$ColonDisjunction_position((onciu_Foldable$Folder_treeFindByClass($labelExpression.$folder(), sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction)))).$get1()); - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit(); - $labelExpression = onciap_DefaultExpressionStringifier_stringifyLabelExpression(oncir_Deprecations$syntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$syntacticallyDeprecatedFeatures$_MODULE$), $labelExpression); - $relChain = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append1($relChain, 58), $labelExpression); - $relChain = jl_StringBuilder_toString($relChain); - $labelExpression = onciap_DefaultExpressionStringifier_stringifyLabelExpression(oncir_Deprecations$syntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$syntacticallyDeprecatedFeatures$_MODULE$), $rewrittenExpression); - $newRelPat = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append1($newRelPat, 58), $labelExpression); - onciu_DeprecatedRelTypeSeparatorNotification__init_($default, $lhs, $relChain, jl_StringBuilder_toString($newRelPat)); - s_Some__init_0($x1, $default); - oncir_Deprecation__init_($deprecatedParameter, $rhs, $x1); - return $deprecatedParameter; - } - } - } - } - if ($x1 instanceof oncia_UnionAll) { - $deprecatedParameter = $x1; - $lhs = oncia_UnionAll_lhs($deprecatedParameter); - $rhs = oncia_UnionAll_rhs($deprecatedParameter); - $single = oncia_UnionAll_differentReturnOrderAllowed($deprecatedParameter); - if ($lhs !== null && $rhs !== null && 1 == $single && oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder(oncir_Deprecations$_MODULE$, $lhs, $rhs)) - return oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_UnionReturnItemsInDifferentOrder__init_($lhs.$position()))); - } - if ($x1 instanceof oncia_UnionDistinct) { - $deprecatedParameter = $x1; - $lhs = oncia_UnionDistinct_lhs($deprecatedParameter); - $rhs = oncia_UnionDistinct_rhs($deprecatedParameter); - $single = oncia_UnionDistinct_differentReturnOrderAllowed($deprecatedParameter); - if ($lhs !== null && $rhs !== null && 1 == $single && oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder(oncir_Deprecations$_MODULE$, $lhs, $rhs)) - return oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_UnionReturnItemsInDifferentOrder__init_($lhs.$position()))); - } - if ($x1 instanceof oncie_ShortestPathsPatternPart) { - $deprecatedParameter = $x1; - $relChain = oncie_ShortestPathsPatternPart_element($deprecatedParameter); - $single = oncie_ShortestPathsPatternPart_single($deprecatedParameter); - if ($relChain instanceof oncie_RelationshipChain) { - $lhs = $relChain; - $node1 = oncie_RelationshipChain_element($lhs); - $relPat = oncie_RelationshipChain_relationship($lhs); - $node2 = oncie_RelationshipChain_rightNode($lhs); - if ($node1 instanceof oncie_NodePattern) { - $rewrittenExpression = $node1; - if ($relPat !== null) { - $variable = oncie_RelationshipPattern_variable($relPat); - $labelExpression_0 = oncie_RelationshipPattern_labelExpression($relPat); - $labelExpression = oncie_RelationshipPattern_length($relPat); - $properties = oncie_RelationshipPattern_properties($relPat); - $predicate = oncie_RelationshipPattern_predicate($relPat); - $direction = oncie_RelationshipPattern_direction($relPat); - if (jl_Object_equals(s_None$_MODULE$, $labelExpression)) { - $newRelPat = oncie_RelationshipPattern__init_0($variable, $labelExpression_0, s_Some__init_(s_Some__init_(oncie_Range__init_(s_Some__init_(oncie_UnsignedDecimalIntegerLiteral__init_($rt_s(414), oncie_RelationshipPattern_position($relPat))), s_Some__init_(oncie_UnsignedDecimalIntegerLiteral__init_($rt_s(414), oncie_RelationshipPattern_position($relPat))), oncie_RelationshipPattern_position($relPat)))), $properties, $predicate, $direction, oncie_RelationshipPattern_position($relPat)); - $replacement = oncie_ShortestPathsPatternPart__init_(oncie_RelationshipChain__init_($rewrittenExpression, $newRelPat, $node2, oncie_RelationshipChain_position($lhs)), $single, oncie_ShortestPathsPatternPart_position($deprecatedParameter)); - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit(); - $deprecatedParameter = onciap_DefaultPatternStringifier_apply(onciap_DefaultExpressionStringifier_patterns(oncir_Deprecations$syntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$syntacticallyDeprecatedFeatures$_MODULE$)), $deprecatedParameter); - $replacementParameter = onciap_DefaultPatternStringifier_apply(onciap_DefaultExpressionStringifier_patterns(oncir_Deprecations$syntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$syntacticallyDeprecatedFeatures$_MODULE$)), $replacement); - return oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_FixedLengthRelationshipInShortestPath__init_0(oncie_RelationshipPattern_position($relPat), $deprecatedParameter, $replacementParameter))); - } - } - } - } - } - if ($x1 instanceof oncia_CreateDatabase) { - $deprecatedParameter = $x1; - $nn = oncia_CreateDatabase_dbName($deprecatedParameter); - if ($nn instanceof oncia_NamespacedName) { - $lhs = $nn; - if (oncia_NamespacedName_namespace($lhs) instanceof s_Some) - return oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_DeprecatedDatabaseNameNotification__init_0(oncia_NamespacedName_toString($lhs), s_Some__init_(oncia_CreateDatabase_position($deprecatedParameter))))); - } - } - if ($rt_isInstance($x1, oncia_CreateIndex)) - a: { - b: { - $deprecatedParameter = $x1; - $lhs = $deprecatedParameter.$indexType(); - oncia_TextCreateIndex$_$callClinit(); - $labelExpression = oncia_TextCreateIndex$_MODULE$; - if ($lhs !== null) { - if (!$lhs.$equals($labelExpression)) - break a; - else - break b; - } - if ($labelExpression !== null) - break a; - } - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit(); - if (oncir_Deprecations$syntacticallyDeprecatedFeatures$_org$neo4j$cypher$internal$rewriting$Deprecations$syntacticallyDeprecatedFeatures$$hasOldTextIndexProvider(oncir_Deprecations$syntacticallyDeprecatedFeatures$_MODULE$, $deprecatedParameter.$options())) - return oncir_Deprecation__init_0(s_None$_MODULE$, s_Some__init_(onciu_DeprecatedTextIndexProvider__init_($deprecatedParameter.$position()))); - } - return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +oncirr_removeSyntaxTracking$_toString = $this => { + return $rt_s(408); }, -onciu_StepSequencer = $rt_classWithoutFields(), -oncirrf_PreparatoryRewritingRewriterFactory = $rt_classWithoutFields(0), oncirr_normalizeWithAndReturnClauses$ = $rt_classWithoutFields(), oncirr_normalizeWithAndReturnClauses$_MODULE$ = null, oncirr_normalizeWithAndReturnClauses$__clinit_ = () => { @@ -20819,7 +20601,6 @@ oncirr_normalizeWithAndReturnClauses$_getRewriter = ($this, $cypherExceptionFact let var$2, var$3, var$4; var$2 = new oncirr_normalizeWithAndReturnClauses; var$2.$cypherExceptionFactory0 = $cypherExceptionFactory; - onciu_topDown$_$callClinit(); var$3 = onciu_topDown$_MODULE$; onciu_Rewriter$_$callClinit(); $cypherExceptionFactory = onciu_Rewriter$_MODULE$; @@ -20829,9 +20610,13 @@ oncirr_normalizeWithAndReturnClauses$_getRewriter = ($this, $cypherExceptionFact return var$2; }, oncirr_normalizeWithAndReturnClauses$_preConditions = $this => { + let var$1, var$2, var$3; s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; + var$1 = s_Predef$_Set(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(onciu_StepSequencer$Condition, 1); + var$3.data[0] = oncirr_TopLevelBracesUnwrapped$_MODULE$; + return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, oncirr_normalizeWithAndReturnClauses$_postConditions = $this => { let var$1, var$2, var$3, var$4; @@ -20843,8 +20628,8 @@ oncirr_normalizeWithAndReturnClauses$_postConditions = $this => { var$4[0] = oncirr_ReturnItemsAreAliased$_MODULE$; var$4[1] = oncirr_ExpressionsInOrderByAndWhereUseAliases$_MODULE$; return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncirr_normalizeWithAndReturnClauses$_invalidatedConditions = $this => { +}; +let oncirr_normalizeWithAndReturnClauses$_invalidatedConditions = $this => { oncirc_package$_$callClinit(); return oncirc_package$_SemanticInfoAvailable(oncirc_package$_MODULE$); }, @@ -20861,7 +20646,7 @@ oncirr_normalizeWithAndReturnClauses$_hashCode = $this => { return 914433168; }, oncirr_normalizeWithAndReturnClauses$_toString = $this => { - return $rt_s(415); + return $rt_s(409); }, oncirr_insertWithBetweenOptionalMatchAndMatch$ = $rt_classWithoutFields(), oncirr_insertWithBetweenOptionalMatchAndMatch$_MODULE$ = null, @@ -20876,7 +20661,6 @@ oncirr_insertWithBetweenOptionalMatchAndMatch$__clinit_ = () => { var$1 = new oncirr_insertWithBetweenOptionalMatchAndMatch$; oncirr_insertWithBetweenOptionalMatchAndMatch$_$callClinit(); oncirr_insertWithBetweenOptionalMatchAndMatch$_MODULE$ = var$1; - onciu_topDown$_$callClinit(); var$2 = onciu_topDown$_MODULE$; onciu_Rewriter$_$callClinit(); oncirr_insertWithBetweenOptionalMatchAndMatch$_instance = onciu_topDown$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); @@ -20933,11 +20717,11 @@ oncirr_insertWithBetweenOptionalMatchAndMatch$_hashCode = $this => { return (-1180736726); }, oncirr_insertWithBetweenOptionalMatchAndMatch$_toString = $this => { - return $rt_s(416); + return $rt_s(410); }, oncirr_wrapOptionalCallProcedure$ = $rt_classWithoutFields(), -oncirr_wrapOptionalCallProcedure$_MODULE$ = null; -let oncirr_wrapOptionalCallProcedure$_rewriter = null, +oncirr_wrapOptionalCallProcedure$_MODULE$ = null, +oncirr_wrapOptionalCallProcedure$_rewriter = null, oncirr_wrapOptionalCallProcedure$_instance = null, oncirr_wrapOptionalCallProcedure$_$callClinit = () => { oncirr_wrapOptionalCallProcedure$_$callClinit = $rt_eraseClinit(oncirr_wrapOptionalCallProcedure$); @@ -20951,7 +20735,6 @@ oncirr_wrapOptionalCallProcedure$__clinit_ = () => { onciu_Rewriter$_$callClinit(); var$1 = onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_wrapOptionalCallProcedure$$anonfun$1); oncirr_wrapOptionalCallProcedure$_rewriter = var$1; - onciu_bottomUp$_$callClinit(); var$2 = onciu_bottomUp$_MODULE$; oncirr_wrapOptionalCallProcedure$_instance = onciu_bottomUp$_apply(var$2, var$1, onciu_bottomUp$_apply$default$2(var$2), onciu_CancellationChecker$NeverCancelled$_MODULE$); }, @@ -20989,7 +20772,7 @@ oncirr_wrapOptionalCallProcedure$_hashCode = $this => { return 1438827627; }, oncirr_wrapOptionalCallProcedure$_toString = $this => { - return $rt_s(417); + return $rt_s(411); }, oncirr_expandCallWhere$ = $rt_classWithoutFields(), oncirr_expandCallWhere$_MODULE$ = null, @@ -21004,7 +20787,6 @@ oncirr_expandCallWhere$__clinit_ = () => { var$1 = new oncirr_expandCallWhere$; oncirr_expandCallWhere$_$callClinit(); oncirr_expandCallWhere$_MODULE$ = var$1; - onciu_bottomUp$_$callClinit(); var$2 = onciu_bottomUp$_MODULE$; onciu_Rewriter$_$callClinit(); oncirr_expandCallWhere$_instance = onciu_bottomUp$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_expandCallWhere$$anonfun$1), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$); @@ -21057,15 +20839,15 @@ oncirr_expandCallWhere$_productArity = $this => { }, oncirr_expandCallWhere$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); -}, -oncirr_expandCallWhere$_productIterator = $this => { +}; +let oncirr_expandCallWhere$_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, oncirr_expandCallWhere$_hashCode = $this => { return 918629295; }, oncirr_expandCallWhere$_toString = $this => { - return $rt_s(418); + return $rt_s(412); }, oncirr_expandShowWhere$ = $rt_classWithoutFields(), oncirr_expandShowWhere$_MODULE$ = null, @@ -21080,7 +20862,6 @@ oncirr_expandShowWhere$__clinit_ = () => { var$1 = new oncirr_expandShowWhere$; oncirr_expandShowWhere$_$callClinit(); oncirr_expandShowWhere$_MODULE$ = var$1; - onciu_bottomUp$_$callClinit(); var$2 = onciu_bottomUp$_MODULE$; onciu_Rewriter$_$callClinit(); oncirr_expandShowWhere$_instance = onciu_bottomUp$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_expandShowWhere$$anonfun$1), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$); @@ -21127,24 +20908,24 @@ oncirr_expandShowWhere$_org$neo4j$cypher$internal$rewriting$rewriters$expandShow var$4 = s_package$_Left(s_package$_MODULE$); var$5 = new s_Tuple2; var$6 = new oncia_Yield; - var$7 = oncia_ReturnItems__init_0(1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), s_Some__init_($defaultColumns), $where.$position13); + var$7 = oncia_ReturnItems__init_0(1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), s_Some__init_($defaultColumns), $where.$position14); $defaultColumns = s_None$_MODULE$; - oncia_Yield__init_(var$6, var$7, $defaultColumns, $defaultColumns, $defaultColumns, s_Some__init_($where), $where.$position13); + oncia_Yield__init_(var$6, var$7, $defaultColumns, $defaultColumns, $defaultColumns, s_Some__init_($where), $where.$position14); s_Tuple2__init_0(var$5, var$6, s_None$_MODULE$); s_Some__init_0(var$3, su_Left$_apply(var$4, var$5)); return var$3; }, oncirr_expandShowWhere$_org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns = ($this, $yieldClause, $maybeReturn, $defaultColumns) => { let $yieldColumns, $newYield, $newReturn; - $yieldColumns = $yieldClause.$returnItems3; + $yieldColumns = $yieldClause.$returnItems4; if (!$yieldColumns.$includeExisting0) $defaultColumns = s_Tuple2__init_($yieldClause, ($yieldColumns.$items0.$map(new oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_0)).$toList()); else { $newYield = $yieldColumns.$defaultOrderOnColumns; $yieldColumns = new oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_1; - $yieldColumns.$_0237 = $defaultColumns; + $yieldColumns.$_0230 = $defaultColumns; $yieldColumns = s_Option_getOrElse($newYield, $yieldColumns); - $defaultColumns = s_Tuple2__init_(oncia_Yield_copy($yieldClause, oncia_ReturnItems_withDefaultOrderOnColumns($yieldClause.$returnItems3, $yieldColumns), $yieldClause.$orderBy3, $yieldClause.$skip4, $yieldClause.$limit4, $yieldClause.$where3, $yieldClause.$position21), $yieldColumns); + $defaultColumns = s_Tuple2__init_(oncia_Yield_copy($yieldClause, oncia_ReturnItems_withDefaultOrderOnColumns($yieldClause.$returnItems4, $yieldColumns), $yieldClause.$orderBy3, $yieldClause.$skip4, $yieldClause.$limit4, $yieldClause.$where3, $yieldClause.$position31), $yieldColumns); } $newYield = $defaultColumns.$_10; $yieldColumns = $defaultColumns.$_20; @@ -21152,7 +20933,7 @@ oncirr_expandShowWhere$_org$neo4j$cypher$internal$rewriting$rewriters$expandShow $newYield = $yieldClause.$_10; $yieldColumns = $yieldClause.$_20; $yieldClause = new oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_2; - $yieldClause.$_0768 = $yieldColumns; + $yieldClause.$_0749 = $yieldColumns; $newReturn = s_Option_map($maybeReturn, $yieldClause); $yieldClause = new s_Some; s_package$_$callClinit(); @@ -21179,12 +20960,12 @@ oncirr_expandShowWhere$_hashCode = $this => { return 61363824; }, oncirr_expandShowWhere$_toString = $this => { - return $rt_s(419); + return $rt_s(413); }, oncirr_rewriteShowQuery$ = $rt_classWithoutFields(), oncirr_rewriteShowQuery$_MODULE$ = null, -oncirr_rewriteShowQuery$_instance = null; -let oncirr_rewriteShowQuery$_completed$module = null, +oncirr_rewriteShowQuery$_instance = null, +oncirr_rewriteShowQuery$_completed$module = null, oncirr_rewriteShowQuery$_$callClinit = () => { oncirr_rewriteShowQuery$_$callClinit = $rt_eraseClinit(oncirr_rewriteShowQuery$); oncirr_rewriteShowQuery$__clinit_(); @@ -21194,7 +20975,6 @@ oncirr_rewriteShowQuery$__clinit_ = () => { var$1 = new oncirr_rewriteShowQuery$; oncirr_rewriteShowQuery$_$callClinit(); oncirr_rewriteShowQuery$_MODULE$ = var$1; - onciu_bottomUp$_$callClinit(); var$2 = onciu_bottomUp$_MODULE$; onciu_Rewriter$_$callClinit(); oncirr_rewriteShowQuery$_instance = onciu_bottomUp$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_rewriteShowQuery$$anonfun$1), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$); @@ -21242,90 +21022,89 @@ oncirr_rewriteShowQuery$_invalidatedConditions = $this => { return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, oncirr_rewriteShowQuery$_org$neo4j$cypher$internal$rewriting$rewriters$rewriteShowQuery$$rewriteClauses = ($this, $clauses, $rewrittenClause) => { - let var$3, var$4, $commandClause, $commandClause_0, $withClause, $c, var$9, var$10, $withClause_0, $returnClause; + let var$3, $withClause, $commandClause, $commandClause_0, $withClause_0, $c, var$9, var$10, $returnClause, $clauses_0; while (true) { var$3 = 0; - var$4 = null; + $withClause = null; if ($clauses instanceof sci_$colon$colon) { var$3 = 1; - var$4 = $clauses; - $commandClause = var$4.$head1; - $commandClause_0 = var$4.$next6; + $withClause = $clauses; + $commandClause = $withClause.$head1; + $commandClause_0 = $withClause.$next5; if ($rt_isInstance($commandClause, oncia_CommandClause)) { - $withClause = $commandClause; - if (sci_List_equals(sci_Nil$_MODULE$, $commandClause_0)) { - $clauses = $withClause.$where(); - $c = sci_List_map(($withClause.$unfilteredColumns()).$columns, new oncirr_rewriteShowQuery$$rewriteToWithAndReturn$lambda$_12_0); + $withClause_0 = $commandClause; + if (sci_List_equals(sci_Nil$_MODULE$, $commandClause_0) && s_Option_isEmpty($withClause_0.$yieldWith())) { + $clauses = $withClause_0.$where(); + $c = sci_List_map(($withClause_0.$unfilteredColumns()).$columns, new oncirr_rewriteShowQuery$$rewriteToWithAndReturn$lambda$_12_0); var$9 = new sci_$colon$colon; - var$10 = $withClause.$moveWhereToProjection(); + var$10 = $withClause_0.$moveWhereToProjection(); $commandClause_0 = new sci_$colon$colon; - $withClause_0 = new oncia_With; - $returnClause = oncia_ReturnItems__init_0(1, sci_Nil$_MODULE$, s_Some__init_($c), $withClause.$position()); - $commandClause = s_None$_MODULE$; - oncia_With__init_($withClause_0, 0, $returnClause, $commandClause, $commandClause, $commandClause, $clauses, oncia_AddedInRewrite$_MODULE$, $withClause.$position()); - sci_$colon$colon__init_0($commandClause_0, $withClause_0, sci_$colon$colon__init_(oncirr_rewriteShowQuery$_returnClause($this, $withClause.$position(), $c), sci_Nil$_MODULE$)); + $returnClause = new oncia_With; + $clauses_0 = oncia_ReturnItems__init_0(1, sci_Nil$_MODULE$, s_Some__init_($c), $withClause_0.$position()); + $withClause = s_None$_MODULE$; + oncia_With__init_($returnClause, 0, $clauses_0, $withClause, $withClause, $withClause, $clauses, oncia_AddedInRewrite$_MODULE$, $withClause_0.$position()); + sci_$colon$colon__init_0($commandClause_0, $returnClause, sci_$colon$colon__init_(oncirr_rewriteShowQuery$_returnClause($this, $withClause_0.$position(), $c), sci_Nil$_MODULE$)); sci_$colon$colon__init_0(var$9, var$10, $commandClause_0); return $rewrittenClause.$concat(var$9); } } } if (var$3) { - $commandClause = var$4.$head1; - $commandClause_0 = var$4.$next6; + $commandClause = $withClause.$head1; + $commandClause_0 = $withClause.$next5; if ($rt_isInstance($commandClause, oncia_CommandClause)) { - $returnClause = $commandClause; - if ($commandClause_0 instanceof sci_$colon$colon) { - $commandClause_0 = $commandClause_0; - $withClause = $commandClause_0.$head1; - $withClause_0 = $commandClause_0.$next6; - if ($withClause instanceof oncia_With) { - $commandClause_0 = $withClause; - if (sci_List_equals(sci_Nil$_MODULE$, $withClause_0)) { - $clauses = ($rewrittenClause.$appended($returnClause)).$$colon$plus(oncirr_rewriteShowQuery$_updateDefaultOrderOnProjection($this, $commandClause_0, $returnClause)); - $withClause_0 = onciu_Foldable_folder$($commandClause_0); - onciu_InputPosition$_$callClinit(); - return $clauses.$$colon$plus(oncirr_rewriteShowQuery$_returnClause($this, onciu_Foldable$Folder_treeFold($withClause_0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$), new oncirr_rewriteShowQuery$$anonfun$lastPosition$1), oncirr_rewriteShowQuery$_getDefaultOrderFromProjectionOrCommand($this, $commandClause_0, $returnClause))); - } - } + $withClause_0 = $commandClause; + if (sci_List_equals(sci_Nil$_MODULE$, $commandClause_0) && s_Option_isDefined($withClause_0.$yieldWith())) { + $withClause = ($withClause_0.$yieldWith()).$get1(); + $clauses = ($rewrittenClause.$appended($withClause_0.$moveOutWith())).$$colon$plus(oncirr_rewriteShowQuery$_updateDefaultOrderOnProjection($this, $withClause, $withClause_0)); + $returnClause = onciu_Foldable_folder$($withClause); + onciu_InputPosition$_$callClinit(); + return $clauses.$$colon$plus(oncirr_rewriteShowQuery$_returnClause($this, onciu_Foldable$Folder_treeFold($returnClause, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$), new oncirr_rewriteShowQuery$$anonfun$lastPosition$1), oncirr_rewriteShowQuery$_getDefaultOrderFromProjectionOrCommand($this, $withClause, $withClause_0))); } } } if (var$3) { - $commandClause_0 = var$4.$head1; - $withClause = var$4.$next6; + $commandClause_0 = $withClause.$head1; + $withClause_0 = $withClause.$next5; if ($rt_isInstance($commandClause_0, oncia_CommandClause)) { $commandClause_0 = $commandClause_0; - if ($withClause instanceof sci_$colon$colon) { - $withClause = $withClause; - $withClause_0 = $withClause.$head1; - $returnClause = $withClause.$next6; - if ($withClause_0 instanceof oncia_With) { - $withClause = $withClause_0; - if ($returnClause instanceof sci_$colon$colon) { - $withClause_0 = $returnClause; - $returnClause = $withClause_0.$head1; - $commandClause = $withClause_0.$next6; - if ($returnClause instanceof oncia_Return) { - $withClause_0 = $returnClause; - if (sci_List_equals(sci_Nil$_MODULE$, $commandClause) && $withClause_0.$returnItems2.$includeExisting0) { - $clauses = ($rewrittenClause.$appended($commandClause_0)).$$colon$plus(oncirr_rewriteShowQuery$_updateDefaultOrderOnProjection($this, $withClause, $commandClause_0)); - $returnClause = $withClause_0.$returnItems2.$defaultOrderOnColumns; - $rewrittenClause = new oncirr_rewriteShowQuery$$updateDefaultOrderOnReturn$lambda$_10_0; - $rewrittenClause.$_01142 = $withClause; - $rewrittenClause.$_1383 = $commandClause_0; - $rewrittenClause = s_Option_getOrElse($returnClause, $rewrittenClause); - return $clauses.$$colon$plus(oncia_Return_withReturnItems($withClause_0, oncia_ReturnItems_withDefaultOrderOnColumns($withClause_0.$returnItems2, $rewrittenClause))); - } - } + if ($withClause_0 instanceof sci_$colon$colon) { + $withClause_0 = $withClause_0; + $returnClause = $withClause_0.$head1; + $clauses_0 = $withClause_0.$next5; + if ($returnClause instanceof oncia_Return) { + $withClause_0 = $returnClause; + if (sci_List_equals(sci_Nil$_MODULE$, $clauses_0) && s_Option_isDefined($commandClause_0.$yieldWith()) && $withClause_0.$returnItems2.$includeExisting0) { + $withClause = ($commandClause_0.$yieldWith()).$get1(); + $clauses = ($rewrittenClause.$appended($commandClause_0.$moveOutWith())).$$colon$plus(oncirr_rewriteShowQuery$_updateDefaultOrderOnProjection($this, $withClause, $commandClause_0)); + $returnClause = $withClause_0.$returnItems2.$defaultOrderOnColumns; + $rewrittenClause = new oncirr_rewriteShowQuery$$updateDefaultOrderOnReturn$lambda$_10_0; + $rewrittenClause.$_01120 = $withClause; + $rewrittenClause.$_1381 = $commandClause_0; + $rewrittenClause = s_Option_getOrElse($returnClause, $rewrittenClause); + return $clauses.$$colon$plus(oncia_Return_withReturnItems($withClause_0, oncia_ReturnItems_withDefaultOrderOnColumns($withClause_0.$returnItems2, $rewrittenClause))); } } } } } + if (var$3) { + $commandClause_0 = $withClause.$head1; + $clauses_0 = $withClause.$next5; + if ($rt_isInstance($commandClause_0, oncia_CommandClause)) { + $commandClause_0 = $commandClause_0; + if (s_Option_isDefined($commandClause_0.$yieldWith())) { + $withClause_0 = ($commandClause_0.$yieldWith()).$get1(); + $rewrittenClause = ($rewrittenClause.$appended($commandClause_0.$moveOutWith())).$$colon$plus(oncirr_rewriteShowQuery$_updateDefaultOrderOnProjection($this, $withClause_0, $commandClause_0)); + $clauses = $clauses_0; + continue; + } + } + } if (!var$3) break; - $c = var$4.$head1; - $clauses = var$4.$next6; + $c = $withClause.$head1; + $clauses = $withClause.$next5; $rewrittenClause = $rewrittenClause.$appended($c); } if (sci_List_equals(sci_Nil$_MODULE$, $clauses)) @@ -21334,25 +21113,24 @@ oncirr_rewriteShowQuery$_org$neo4j$cypher$internal$rewriting$rewriters$rewriteSh }, oncirr_rewriteShowQuery$_getDefaultOrderFromProjectionOrCommand = ($this, $projClause, $commandClause) => { let var$3; - $projClause = $projClause.$returnItems4; + $projClause = $projClause.$returnItems3; if (!$projClause.$includeExisting0) return ($projClause.$items0.$map(new oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_0)).$toList(); var$3 = $projClause.$defaultOrderOnColumns; $projClause = new oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_1; - $projClause.$_0473 = $commandClause; + $projClause.$_0462 = $commandClause; return s_Option_getOrElse(var$3, $projClause); }, oncirr_rewriteShowQuery$_updateDefaultOrderOnProjection = ($this, $projClause, $commandClause) => { let $defaultOrderOnColumns, $x$1; $defaultOrderOnColumns = oncirr_rewriteShowQuery$_getDefaultOrderFromProjectionOrCommand($this, $projClause, $commandClause); - $x$1 = oncia_ReturnItems_withDefaultOrderOnColumns($projClause.$returnItems4, $defaultOrderOnColumns); + $x$1 = oncia_ReturnItems_withDefaultOrderOnColumns($projClause.$returnItems3, $defaultOrderOnColumns); return oncia_ProjectionClause_copyProjection$($projClause, $projClause.$distinct(), $x$1, $projClause.$orderBy(), $projClause.$skip(), $projClause.$limit(), $projClause.$where()); }, oncirr_rewriteShowQuery$_returnClause = ($this, $position, $defaultOrderOnColumns) => { let $qual$1; - oncia_Return$_$callClinit(); $qual$1 = oncia_Return$_apply(oncia_Return$_MODULE$, oncia_ReturnItems__init_0(1, sci_Nil$_MODULE$, s_Some__init_($defaultOrderOnColumns), $position), $position); - return oncia_Return_copy($qual$1, $qual$1.$distinct1, $qual$1.$returnItems2, $qual$1.$orderBy2, $qual$1.$skip3, $qual$1.$limit3, $qual$1.$excludedNames, 1, $position); + return oncia_Return_copy($qual$1, $qual$1.$distinct1, $qual$1.$returnItems2, $qual$1.$orderBy2, $qual$1.$skip3, $qual$1.$limit3, $qual$1.$excludedNames, 1, $qual$1.$inTopLevelBraces, $position); }, oncirr_rewriteShowQuery$_getRewriter = ($this, $cypherExceptionFactory) => { oncirr_rewriteShowQuery$_$callClinit(); @@ -21371,7 +21149,7 @@ oncirr_rewriteShowQuery$_hashCode = $this => { return 547983263; }, oncirr_rewriteShowQuery$_toString = $this => { - return $rt_s(420); + return $rt_s(414); }, oncirr_mergeInPredicates$ = $rt_classWithoutFields(), oncirr_mergeInPredicates$_MODULE$ = null, @@ -21386,7 +21164,6 @@ oncirr_mergeInPredicates$__clinit_ = () => { var$1 = new oncirr_mergeInPredicates$; oncirr_mergeInPredicates$_$callClinit(); oncirr_mergeInPredicates$_MODULE$ = var$1; - onciu_bottomUp$_$callClinit(); var$2 = onciu_bottomUp$_MODULE$; onciu_Rewriter$_$callClinit(); oncirr_mergeInPredicates$_instance = onciu_bottomUp$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_mergeInPredicates$$anonfun$1), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$); @@ -21427,8 +21204,8 @@ oncirr_mergeInPredicates$_preConditions = $this => { var$4[0] = onciu_StepSequencer$Condition_unary_$bang$(oncirc_package$LiteralsExtracted$_MODULE$); var$4[1] = onciu_StepSequencer$Condition_unary_$bang$(oncirc_package$SensitiveLiteralsExtracted$_MODULE$); return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncirr_mergeInPredicates$_invalidatedConditions = $this => { +}; +let oncirr_mergeInPredicates$_invalidatedConditions = $this => { oncirc_package$_$callClinit(); return oncirc_package$_SemanticInfoAvailable(oncirc_package$_MODULE$); }, @@ -21445,14 +21222,13 @@ oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInP let $newLhs, $newRhs, $rewriter; a: { b: { - $newLhs = sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_Expression, [$binary.$lhs0(), $binary.$rhs0()])); + $newLhs = sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_Expression, [$binary.$lhs0(), $binary.$rhs()])); $newRhs = new oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_0; - $newRhs.$_0925 = $merge; + $newRhs.$_0911 = $merge; $newRhs = sci_ArraySeq_map($newLhs, $newRhs); $newLhs = new oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_1; - $newLhs.$_0519 = $merge; + $newLhs.$_0506 = $merge; $merge = sc_IterableOnceOps_reduceLeft$($newRhs, $newLhs); - onciu_bottomUp$_$callClinit(); $newLhs = onciu_bottomUp$_MODULE$; onciu_Rewriter$_$callClinit(); $newRhs = onciu_Rewriter$_MODULE$; @@ -21460,7 +21236,7 @@ oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInP $rewriter.$inPredicates$1 = $merge; $rewriter = onciu_bottomUp$_apply($newLhs, onciu_Rewriter$_lift($newRhs, $rewriter), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$); $newLhs = $rewriter.$apply2($binary.$lhs0()); - $newRhs = $rewriter.$apply2($binary.$rhs0()); + $newRhs = $rewriter.$apply2($binary.$rhs()); if ($newLhs !== null) { if (!$newLhs.$equals($newRhs)) break a; @@ -21491,7 +21267,7 @@ oncirr_mergeInPredicates$_hashCode = $this => { return 1014001913; }, oncirr_mergeInPredicates$_toString = $this => { - return $rt_s(421); + return $rt_s(415); }, oncirr_timestampRewriter$ = $rt_classWithoutFields(), oncirr_timestampRewriter$_MODULE$ = null, @@ -21510,7 +21286,6 @@ oncirr_timestampRewriter$__clinit_ = () => { onciu_Rewriter$_$callClinit(); var$1 = onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_timestampRewriter$$anonfun$1); oncirr_timestampRewriter$_rewriter = var$1; - onciu_topDown$_$callClinit(); var$2 = onciu_topDown$_MODULE$; oncirr_timestampRewriter$_instance = onciu_topDown$_apply(var$2, var$1, onciu_topDown$_apply$default$2(var$2), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); }, @@ -21559,8 +21334,8 @@ oncirr_timestampRewriter$_invalidatedConditions = $this => { }, oncirr_timestampRewriter$_productArity = $this => { return 0; -}; -let oncirr_timestampRewriter$_productElement = ($this, $x$1) => { +}, +oncirr_timestampRewriter$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, oncirr_timestampRewriter$_productIterator = $this => { @@ -21570,7 +21345,7 @@ oncirr_timestampRewriter$_hashCode = $this => { return 1416632220; }, oncirr_timestampRewriter$_toString = $this => { - return $rt_s(422); + return $rt_s(416); }, oncirr_rewriteShortestPathWithFixedLengthRelationship$ = $rt_classWithoutFields(), oncirr_rewriteShortestPathWithFixedLengthRelationship$_MODULE$ = null, @@ -21628,7 +21403,7 @@ oncirr_rewriteShortestPathWithFixedLengthRelationship$_hashCode = $this => { return (-870356047); }, oncirr_rewriteShortestPathWithFixedLengthRelationship$_toString = $this => { - return $rt_s(423); + return $rt_s(417); }, oncirr_nullIfFunctionRewriter$ = $rt_classWithoutFields(), oncirr_nullIfFunctionRewriter$_MODULE$ = null, @@ -21647,14 +21422,13 @@ oncirr_nullIfFunctionRewriter$__clinit_ = () => { onciu_Rewriter$_$callClinit(); var$1 = onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_nullIfFunctionRewriter$$anonfun$1); oncirr_nullIfFunctionRewriter$_rewriter = var$1; - onciu_topDown$_$callClinit(); var$2 = onciu_topDown$_MODULE$; oncirr_nullIfFunctionRewriter$_instance = onciu_topDown$_apply(var$2, var$1, onciu_topDown$_apply$default$2(var$2), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); }, oncirr_nullIfFunctionRewriter$_postConditions = $this => { return onciu_StepSequencer$DefaultPostCondition_postConditions$($this); -}, -oncirr_nullIfFunctionRewriter$_completed = $this => { +}; +let oncirr_nullIfFunctionRewriter$_completed = $this => { let var$1, $$je; oncirr_nullIfFunctionRewriter$_$callClinit(); if (oncirr_nullIfFunctionRewriter$_completed$module === null) { @@ -21707,32 +21481,232 @@ oncirr_nullIfFunctionRewriter$_hashCode = $this => { return 1811596674; }, oncirr_nullIfFunctionRewriter$_toString = $this => { - return $rt_s(424); + return $rt_s(418); }, -s_Function2 = $rt_classWithoutFields(0), -s_Function2_toString = $this => { - return $rt_s(425); +oncirr_unwrapTopLevelBraces$ = $rt_classWithoutFields(), +oncirr_unwrapTopLevelBraces$_MODULE$ = null, +oncirr_unwrapTopLevelBraces$_propagateUse = null, +oncirr_unwrapTopLevelBraces$_markReturns = null, +oncirr_unwrapTopLevelBraces$_rewriter = null, +oncirr_unwrapTopLevelBraces$_instance = null, +oncirr_unwrapTopLevelBraces$_$callClinit = () => { + oncirr_unwrapTopLevelBraces$_$callClinit = $rt_eraseClinit(oncirr_unwrapTopLevelBraces$); + oncirr_unwrapTopLevelBraces$__clinit_(); +}, +oncirr_unwrapTopLevelBraces$__clinit_ = () => { + let var$1, var$2; + var$1 = new oncirr_unwrapTopLevelBraces$; + oncirr_unwrapTopLevelBraces$_$callClinit(); + oncirr_unwrapTopLevelBraces$_MODULE$ = var$1; + var$2 = onciu_topDown$_MODULE$; + onciu_Rewriter$_$callClinit(); + oncirr_unwrapTopLevelBraces$_propagateUse = onciu_topDown$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_unwrapTopLevelBraces$$anonfun$1), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); + oncirr_unwrapTopLevelBraces$_markReturns = onciu_topDown$_apply(onciu_topDown$_MODULE$, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_unwrapTopLevelBraces$$anonfun$2), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); + oncirr_unwrapTopLevelBraces$_rewriter = onciu_topDown$_apply(onciu_topDown$_MODULE$, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_unwrapTopLevelBraces$$anonfun$3), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); + oncirr_unwrapTopLevelBraces$_instance = s_Function1_andThen(s_Function1_andThen(oncirr_unwrapTopLevelBraces$_propagateUse, oncirr_unwrapTopLevelBraces$_markReturns), oncirr_unwrapTopLevelBraces$_rewriter); }, -oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0 = $rt_classWithoutFields(), -oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4; - oncifp_PatternExpressionInNonExistenceCheck$_$callClinit(); - var$3 = (oncifp_InitialState_statement(var$1)).$folder(); - s_package$_$callClinit(); - var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - var$2 = new oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1; - var$2.$baseState$1 = var$1; - return onciu_Foldable$Folder_treeFold(var$3, var$4, var$2); +oncirr_unwrapTopLevelBraces$_preConditions = $this => { + s_Predef$_$callClinit(); + return (s_Predef$_Set(s_Predef$_MODULE$)).$from0(sci_Nil$_MODULE$); }, -oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0 = $rt_classWithoutFields(), -oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4; - var$3 = (oncifp_InitialState_statement(var$1)).$folder(); - s_package$_$callClinit(); - var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - var$2 = new oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1; - var$2.$baseState$2 = var$1; - return onciu_Foldable$Folder_treeFold(var$3, var$4, var$2); +oncirr_unwrapTopLevelBraces$_postConditions = $this => { + let var$1, var$2, var$3; + s_Predef$_$callClinit(); + var$1 = s_Predef$_Set(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(onciu_StepSequencer$Condition, 1); + var$3.data[0] = oncirr_TopLevelBracesUnwrapped$_MODULE$; + return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncirr_unwrapTopLevelBraces$_invalidatedConditions = $this => { + oncirc_package$_$callClinit(); + return oncirc_package$_SemanticInfoAvailable(oncirc_package$_MODULE$); +}, +oncirr_unwrapTopLevelBraces$_org$neo4j$cypher$internal$rewriting$rewriters$unwrapTopLevelBraces$$pushDownUse = ($this, $query, $use) => { + let $lhs, $rhs; + if ($rt_isInstance($query, oncia_UnionArgument)) + return oncirr_unwrapTopLevelBraces$_pushDownUse($this, $query, $use); + if ($query instanceof oncia_UnionDistinct) { + $query = $query; + $lhs = $query.$lhs5; + $rhs = $query.$rhs5; + return oncia_UnionDistinct_copy($query, oncirr_unwrapTopLevelBraces$_org$neo4j$cypher$internal$rewriting$rewriters$unwrapTopLevelBraces$$pushDownUse($this, $lhs, $use), oncirr_unwrapTopLevelBraces$_pushDownUse($this, $rhs, $use), $query.$position29); + } + if (!($query instanceof oncia_UnionAll)) { + if (!$rt_isInstance($query, oncia_ProjectingUnion)) + $rt_throw(s_MatchError__init_($query)); + $query = new jl_IllegalStateException; + jl_Throwable__init_($query, $rt_s(419)); + $rt_throw($query); + } + $query = $query; + $lhs = $query.$lhs4; + $rhs = $query.$rhs4; + return oncia_UnionAll_copy($query, oncirr_unwrapTopLevelBraces$_org$neo4j$cypher$internal$rewriting$rewriters$unwrapTopLevelBraces$$pushDownUse($this, $lhs, $use), oncirr_unwrapTopLevelBraces$_pushDownUse($this, $rhs, $use), $query.$position38); +}, +oncirr_unwrapTopLevelBraces$_pushDownUse = ($this, $query, $use) => { + let var$3, var$4, var$5, $clauses, $$je; + var$3 = 0; + var$4 = null; + if (!($query instanceof oncia_SingleQuery)) { + if ($query instanceof oncia_TopLevelBraces) { + var$3 = 1; + var$4 = $query; + var$5 = var$4.$use0; + if (jl_Object_equals(s_None$_MODULE$, var$5)) + return oncia_TopLevelBraces_copy(var$4, var$4.$query1, $use, var$4.$position13); + } + if (var$3 && var$4.$use0 instanceof s_Some) + return var$4; + $rt_throw(s_MatchError__init_($query)); + } + $query = $query; + $clauses = $query.$clauses0; + var$4 = oncia_SingleQuery_partitionedClauses($query); + if ((var$4.$bitmap$00 & 1) << 24 >> 24) + var$4 = var$4.$leadingGraphSelection; + else { + jl_Object_monitorEnterSync(var$4); + a: { + try { + if ((var$4.$bitmap$00 & 1) << 24 >> 24) + break a; + var$4.$leadingGraphSelection = s_Option_orElse(oncia_SingleQuery$PartitionedClauses_initialGraphSelection(var$4), oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0__init_(var$4)); + var$4.$bitmap$00 = (var$4.$bitmap$00 | 1) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $query = $$je; + + } + jl_Object_monitorExitSync(var$4); + $rt_throw($query); + } + jl_Object_monitorExitSync(var$4); + var$4 = var$4.$leadingGraphSelection; + } + if (s_Option_isDefined(var$4)) + return $query; + s_Option$_$callClinit(); + return oncia_SingleQuery_copy($query, ((s_Option$_option2Iterable(s_Option$_MODULE$, $use)).$toSeq()).$concat($clauses), $query.$position11); +}, +oncirr_unwrapTopLevelBraces$_getRewriter = ($this, $cypherExceptionFactory) => { + oncirr_unwrapTopLevelBraces$_$callClinit(); + return oncirr_unwrapTopLevelBraces$_instance; +}, +oncirr_unwrapTopLevelBraces$_productArity = $this => { + return 0; +}, +oncirr_unwrapTopLevelBraces$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncirr_unwrapTopLevelBraces$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncirr_unwrapTopLevelBraces$_hashCode = $this => { + return (-441889294); +}, +oncirr_unwrapTopLevelBraces$_toString = $this => { + return $rt_s(420); +}, +oncifp_ExpectedBooleanTypeCheck = $rt_classWithoutFields(0), +oncifp_ExpectedBooleanTypeCheck_isExpectedTypeBoolean$ = ($$this, $semanticTable, $e) => { + $semanticTable = $semanticTable.$types3; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + return s_Option_exists(s_Option_flatMap($semanticTable.$get2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $e)), new oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0), new oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1); +}, +oncifp_PatternExpressionInNonExistenceCheck$ = $rt_classWithoutFields(), +oncifp_PatternExpressionInNonExistenceCheck$_MODULE$ = null, +oncifp_PatternExpressionInNonExistenceCheck$_errorMessage = null, +oncifp_PatternExpressionInNonExistenceCheck$_errorMessageForSizeFunction = null, +oncifp_PatternExpressionInNonExistenceCheck$__clinit_ = () => { + oncifp_PatternExpressionInNonExistenceCheck$_MODULE$ = new oncifp_PatternExpressionInNonExistenceCheck$; + oncifp_PatternExpressionInNonExistenceCheck$_errorMessage = $rt_s(421); + oncifp_PatternExpressionInNonExistenceCheck$_errorMessageForSizeFunction = $rt_s(422); +}, +oncifp_VariableReferenceCheck = $rt_classWithoutFields(0), +oncifp_VariableReferenceCheck_findSelfReferenceVariables$ = ($$this, $ast, $pattern, $semanticTable) => { + let var$5, var$6; + var$5 = $semanticTable.$recordedScopes1; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + $pattern = oncias_Scope_allSymbolDefinitions(var$5.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $pattern))); + $semanticTable = $ast.$folder(); + var$5 = new s_Tuple2; + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + var$6 = sci_Set$EmptySet$_MODULE$; + s_Predef$_Set(s_Predef$_MODULE$); + s_Tuple2__init_0(var$5, var$6, sci_Set$EmptySet$_MODULE$); + $ast = new oncifp_VariableReferenceCheck$$anonfun$1; + if ($$this === null) + $rt_throw(null); + $ast.$$outer66 = $$this; + $ast.$allSymbolDefinitions$10 = $pattern; + $$this = onciu_Foldable$Folder_treeFold($semanticTable, var$5, $ast); + if ($$this === null) + $rt_throw(s_MatchError__init_($$this)); + $ast = $$this.$_1(); + $$this = $$this.$_2(); + $pattern = s_Tuple2__init_($ast, $$this); + $$this = $pattern.$_10; + return $pattern.$_20.$intersect($$this); +}, +oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1 = ($variable, $allSymbolDefinitions$1) => { + $allSymbolDefinitions$1 = ($allSymbolDefinitions$1.$apply2($variable.$name4)).$map(new oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0); + onciu_Ref$_$callClinit(); + return $allSymbolDefinitions$1.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, $variable)); +}, +oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1 = $e => { + return s_Option_fold($e, new oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0, new oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1); +}, +oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findDynamicVariables$1 = $e => { + let var$2; + var$2 = onciu_Foldable_folder$(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $e)); + sr_ClassTag$_$callClinit(); + return sc_AbstractIterable_toSet((onciu_Foldable$Folder_findAllByClass(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$DynamicLeaf)))).$flatten(new oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findDynamicVariables$1$lambda$_8_0)); +}, +oncifp_SelfReferenceCheckWithinPatternPart$ = $rt_classWithoutFields(), +oncifp_SelfReferenceCheckWithinPatternPart$_MODULE$ = null, +oncifp_SelfReferenceCheckWithinPatternPart$__clinit_ = () => { + oncifp_SelfReferenceCheckWithinPatternPart$_MODULE$ = new oncifp_SelfReferenceCheckWithinPatternPart$; +}, +oncifp_SelfReferenceCheckWithinPatternPart$_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern = ($this, $clause, $pattern, $semanticTable, $errorMessageProvider) => { + let var$5, var$6; + var$5 = $pattern.$patternParts1; + var$6 = new oncifp_SelfReferenceCheckWithinPatternPart$$findSelfReferenceVariablesWithinPatternParts$lambda$_4_0; + var$6.$_0485 = $pattern; + var$6.$_1166 = $semanticTable; + var$6 = sc_AbstractIterable_toSet(var$5.$flatMap(var$6)); + $pattern = new oncifp_SelfReferenceCheckWithinPatternPart$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_3_0; + $pattern.$_0149 = $clause; + $pattern.$_150 = $semanticTable; + $pattern.$_2129 = $errorMessageProvider; + return (var$6.$map($pattern)).$toSeq(); +}, +oncifp_SelfReferenceCheckAcrossPatternParts$ = $rt_classWithoutFields(), +oncifp_SelfReferenceCheckAcrossPatternParts$_MODULE$ = null, +oncifp_SelfReferenceCheckAcrossPatternParts$__clinit_ = () => { + oncifp_SelfReferenceCheckAcrossPatternParts$_MODULE$ = new oncifp_SelfReferenceCheckAcrossPatternParts$; +}, +oncifp_SelfReferenceCheckAcrossPatternParts$_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern = ($this, $clause, $pattern, $semanticTable) => { + $semanticTable = oncifp_VariableReferenceCheck_findSelfReferenceVariables$($this, $pattern, $pattern, $semanticTable); + $pattern = new oncifp_SelfReferenceCheckAcrossPatternParts$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_3_0; + $pattern.$_061 = $clause; + return ($semanticTable.$map($pattern)).$toSeq(); +}, +oncifp_ListCoercedToBooleanCheck$ = $rt_classWithoutFields(), +oncifp_ListCoercedToBooleanCheck$_MODULE$ = null; +let oncifp_ListCoercedToBooleanCheck$_errorMessage = null, +oncifp_ListCoercedToBooleanCheck$_$callClinit = () => { + oncifp_ListCoercedToBooleanCheck$_$callClinit = $rt_eraseClinit(oncifp_ListCoercedToBooleanCheck$); + oncifp_ListCoercedToBooleanCheck$__clinit_(); +}, +oncifp_ListCoercedToBooleanCheck$__clinit_ = () => { + let var$1; + var$1 = new oncifp_ListCoercedToBooleanCheck$; + oncifp_ListCoercedToBooleanCheck$_$callClinit(); + oncifp_ListCoercedToBooleanCheck$_MODULE$ = var$1; + oncifp_ListCoercedToBooleanCheck$_errorMessage = $rt_s(423); }; function jur_UCISupplCharSet() { jur_LeafSet.call(this); @@ -21750,7 +21724,7 @@ jur_UCISupplCharSet_getName = $this => { var$1 = jl_String__init_(jl_Character_toChars($this.$ch2)); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(391)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(377)), var$1); return jl_AbstractStringBuilder_toString(var$2); }; function jur_LowSurrogateCharSet() { @@ -22068,7 +22042,7 @@ jur_AbstractLineTerminator$2_isAfterLineTerminator = ($this, $ch, $ch2) => { function jur_SequenceSet$IntHash() { let a = this; jl_Object.call(a); a.$table = null; - a.$values10 = null; + a.$values8 = null; a.$mask = 0; a.$size14 = 0; } @@ -22084,7 +22058,7 @@ let jur_SequenceSet$IntHash__init_0 = ($this, $size) => { $this.$mask = var$3; var$3 = var$3 + 1 | 0; $this.$table = $rt_createIntArray(var$3); - $this.$values10 = $rt_createIntArray(var$3); + $this.$values8 = $rt_createIntArray(var$3); $this.$size14 = $size; }, jur_SequenceSet$IntHash__init_ = var_0 => { @@ -22107,7 +22081,7 @@ jur_SequenceSet$IntHash_put = ($this, $key, $value) => { $hashCode = ($hashCode + $i | 0) & var$4; } var$6[$hashCode] = $key; - $this.$values10.data[$hashCode] = $value; + $this.$values8.data[$hashCode] = $value; }, jur_SequenceSet$IntHash_get = ($this, $key) => { let var$2, $hashCode, $i, $storedKey; @@ -22119,7 +22093,7 @@ jur_SequenceSet$IntHash_get = ($this, $key) => { if (!$storedKey) break; if ($storedKey == $key) - return $this.$values10.data[$hashCode]; + return $this.$values8.data[$hashCode]; $i = ($i + 1 | 0) & var$2; $hashCode = ($hashCode + $i | 0) & var$2; } @@ -22171,11 +22145,60 @@ ju_MapEntry_toString = $this => { }; function ju_Hashtable$Entry() { let a = this; ju_MapEntry.call(a); - a.$next11 = null; + a.$next10 = null; a.$hashcode = 0; } let ju_Hashtable$Entry_equalsKey = ($this, $aKey, $hash) => { return $this.$hashcode == jl_String_hashCode($aKey) && $this.$key0.$equals($aKey) ? 1 : 0; +}; +function oncifp_PipeLine() { + let a = this; jl_Object.call(a); + a.$postConditions0 = null; + a.$first1 = null; + a.$after = null; + a.$bitmap$027 = 0; +} +let oncifp_PipeLine_postConditions = $this => { + let var$1, $$je; + if (($this.$bitmap$027 & 1) << 24 >> 24) + return $this.$postConditions0; + jl_Object_monitorEnterSync($this); + a: { + try { + if (($this.$bitmap$027 & 1) << 24 >> 24) + break a; + $this.$postConditions0 = sci_AbstractSet_$minus$minus(sc_AbstractSet_$plus$plus($this.$first1.$postConditions(), $this.$after.$postConditions()), $this.$after.$invalidatedConditions()); + $this.$bitmap$027 = ($this.$bitmap$027 | 1) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$postConditions0; +}, +oncifp_PipeLine_transform = ($this, $from, $context) => { + let $step1, $step2; + $step1 = $this.$first1.$transform($from, $context); + $step2 = $this.$after.$transform($step1, $context); + $context = ($this.$first1.$postConditions()).$removedAll($this.$after.$invalidatedConditions()); + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !oncifp_Transformer_checkConditions$($this, $step2, $context, onciu_CancellationChecker$NeverCancelled$_MODULE$)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + return $step2; +}, +oncifp_PipeLine_name = $this => { + let var$1, var$2, var$3; + var$1 = $this.$first1.$name(); + var$2 = $this.$after.$name(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(45)), var$2); + return jl_AbstractStringBuilder_toString(var$3); }, onciap_ExpressionStringifier = $rt_classWithoutFields(0); function onciap_DefaultExpressionStringifier() { @@ -22186,6 +22209,7 @@ function onciap_DefaultExpressionStringifier() { a.$alwaysBacktick = 0; a.$preferSingleQuotes = 0; a.$sensitiveParamsAsParams = 0; + a.$javaCompatible = 0; a.$patterns0 = null; a.$pathSteps0 = null; a.$prettifier0 = null; @@ -22231,8 +22255,8 @@ onciap_DefaultExpressionStringifier_apply1 = ($this, $ns) => { let var$2; var$2 = $ns.$parts0; $ns = new onciap_DefaultExpressionStringifier$apply$lambda$_8_0; - $ns.$_01030 = $this; - return sc_AbstractIterable_mkString(sci_List_map(var$2, $ns), $rt_s(403)); + $ns.$_01018 = $this; + return sc_AbstractIterable_mkString(sci_List_map(var$2, $ns), $rt_s(389)); }, onciap_DefaultExpressionStringifier_inner = ($this, $outer, $isCaseExpression, $inner) => { let $str, var$5, var$6, var$7; @@ -22279,7 +22303,7 @@ onciap_DefaultExpressionStringifier_inner$default$2 = $this => { return 0; }, onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) => { - let $distinct, $arg, $includeAllProps, $predicateType, var$7, var$8, var$9, $normalForm, var$11, $variable, var$13, $predicate, var$15, $proj, var$17, $fn, $value, $args, $form, $as, $order, $namespace, $functionName, $ns, $np, $ds, $o, $m, $k, $exp, $idx, $list, $start, $end, $l, $r, $relChain, $s, $expression, $v, $p, $e, $expr, $w, $b, $arg_0, $itemsText, $entity, $allItems, $alternatives, $default, $expressions, $chain, $head, $ands, $pattern, $pathStep, $init, $acc, $identifier, $a, $i, $q, $inner, + let $distinct, $arg, $includeAllProps, $predicateType, var$7, var$8, var$9, $normalForm, var$11, $variable, var$13, $predicate, var$15, $proj, var$17, $fn, $value, $args, $form, $as, $order, $namespace, $functionName, $ns, $np, $ds, $o, $m, $k, $exp, $idx, $list, $start, $end, $l, $r, $relChain, $s, $expression, $v, $p, $e, $expr, $w, $b, $arg_0, $t, $itemsText, $entity, $allItems, $alternatives, $default, $expressions, $chain, $head, $ands, $pattern, $pathStep, $init, $acc, $identifier, $a, $i, $q, $inner, $rel, $relList, $rel1, $rel2, $relName, $bound, $elementIdExpr, $prefix; $distinct = 0; $arg = null; @@ -22311,7 +22335,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $arg = $ast; $predicateType = onciap_DefaultExpressionStringifier_inner($this, $ast, $isCaseExpression, $arg.$lhs0()); $normalForm = $ast.$canonicalOperatorSymbol(); - $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg.$rhs0()); + $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg.$rhs()); $arg = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($arg, $predicateType), 32), $normalForm), 32), $ast); return jl_StringBuilder_toString($arg); @@ -22320,7 +22344,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) } if ($distinct) { $predicateType = $arg.$canonicalOperatorSymbol(); - $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg.$rhs0()); + $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg.$rhs()); $arg = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($arg, $predicateType), 32), $ast); return jl_StringBuilder_toString($arg); @@ -22328,7 +22352,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) if ($ast instanceof oncie_Variable) return onciap_DefaultExpressionStringifier_backtick($this, oncie_Variable_name($ast)); if ($ast instanceof oncie_ListLiteral) - return sc_AbstractIterable_mkString1((oncie_ListLiteral_expressions($ast)).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_0__init_0($this)), $rt_s(426), $rt_s(45), $rt_s(427)); + return sc_AbstractIterable_mkString1((oncie_ListLiteral_expressions($ast)).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_0__init_0($this)), $rt_s(424), $rt_s(45), $rt_s(425)); if ($ast instanceof oncie_FunctionInvocation) { $includeAllProps = 1; $predicateType = $ast; @@ -22341,10 +22365,9 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $arg = oncie_FunctionName_name($arg); if ($form !== null) { $form = oncie_Namespace_parts($form); - if (sci_List_equals(sci_Nil$_MODULE$, $form) && jl_String_equals($rt_s(428), $arg) && 0 == $distinct && $value !== null) { + if (sci_List_equals(sci_Nil$_MODULE$, $form) && jl_String_equals($rt_s(426), $arg) && 0 == $distinct && $value !== null) { s_package$_$callClinit(); $arg = sc_SeqFactory$Delegate_unapplySeq(s_package$_IndexedSeq(s_package$_MODULE$), $value); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $arg)) { sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $arg)); $value = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; @@ -22362,7 +22385,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) if (jl_Object_equals(oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, $args)) { $as = sc_AbstractIterable_mkString(sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $value), sci_$colon$colon__init_($form.$formName(), sci_Nil$_MODULE$)), $rt_s(45)); $ast = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($ast, $rt_s(428)), 40), $as), 41); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($ast, $rt_s(426)), 40), $as), 41); return jl_StringBuilder_toString($ast); } } @@ -22384,13 +22407,13 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $functionName = oncie_FunctionName_name($arg); $ns = onciap_DefaultExpressionStringifier_apply1($this, $namespace); $fn = onciap_DefaultExpressionStringifier_backtick($this, $functionName); - $np = !sci_List_isEmpty(oncie_Namespace_parts($namespace)) ? $rt_s(403) : $rt_s(4); - $ds = !$distinct ? $rt_s(4) : $rt_s(429); + $np = !sci_List_isEmpty(oncie_Namespace_parts($namespace)) ? $rt_s(389) : $rt_s(4); + $ds = !$distinct ? $rt_s(4) : $rt_s(427); $as = sc_AbstractIterable_mkString($args.$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_1__init_0($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this))), $rt_s(45)); if (jl_Object_equals(oncie_FunctionInvocation$ArgumentAsc$_MODULE$, $order)) - $o = $rt_s(430); + $o = $rt_s(428); else if (jl_Object_equals(oncie_FunctionInvocation$ArgumentDesc$_MODULE$, $order)) - $o = $rt_s(431); + $o = $rt_s(429); else { if (!jl_Object_equals(oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, $order)) $rt_throw(s_MatchError__init_($order)); @@ -22414,7 +22437,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) return jl_StringBuilder_toString($predicateType); } if ($ast instanceof oncie_MapExpression) - return sc_AbstractIterable_mkString1((oncie_MapExpression_items($ast)).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_2__init_0($this)), $rt_s(432), $rt_s(45), $rt_s(433)); + return sc_AbstractIterable_mkString1((oncie_MapExpression_items($ast)).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_2__init_0($this)), $rt_s(430), $rt_s(45), $rt_s(431)); if ($rt_isInstance($ast, oncie_Parameter)) { $arg = $ast; $arg = oncie_Parameter$_unapply(oncie_Parameter$_MODULE$, $arg); @@ -22426,31 +22449,31 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) } } if ($ast instanceof oncie_CountStar) - return $rt_s(434); + return $rt_s(432); if ($ast instanceof oncie_IsNull) { var$7 = 1; $arg = oncie_IsNull_lhs($ast); if (!$isCaseExpression) { $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $rt_s(435)); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $rt_s(433)); return jl_StringBuilder_toString($arg); } } if (var$7) - return $rt_s(436); + return $rt_s(434); if ($ast instanceof oncie_IsNotNull) { var$8 = 1; $arg = oncie_IsNotNull_lhs($ast); if (!$isCaseExpression) { $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $rt_s(437)); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $rt_s(435)); return jl_StringBuilder_toString($arg); } } if (var$8) - return $rt_s(438); + return $rt_s(436); if ($ast instanceof oncia_IsTyped) { var$9 = 1; $normalForm = $ast; @@ -22468,7 +22491,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) if (var$9) { $ast = (oncia_IsTyped_typeName($normalForm)).$description(); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(439)), $ast); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(437)), $ast); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncia_IsNotTyped) { @@ -22488,7 +22511,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) if (var$11) { $ast = (oncia_IsNotTyped_typeName($variable)).$description(); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(440)), $ast); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(438)), $ast); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncia_IsNormalized) { @@ -22500,14 +22523,14 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg); $arg = $normalForm.$description(); $predicateType = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $ast), $rt_s(441)), $arg), $rt_s(442)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $ast), $rt_s(439)), $arg), $rt_s(440)); return jl_StringBuilder_toString($predicateType); } } if (var$13) { $ast = (oncia_IsNormalized_normalForm($predicate)).$description(); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(443)), $ast), $rt_s(442)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(441)), $ast), $rt_s(440)); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncia_IsNotNormalized) { @@ -22519,14 +22542,14 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg); $arg = $normalForm.$description(); $predicateType = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $ast), $rt_s(444)), $arg), $rt_s(442)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $ast), $rt_s(442)), $arg), $rt_s(440)); return jl_StringBuilder_toString($predicateType); } } if (var$15) { $ast = (oncia_IsNotNormalized_normalForm($proj)).$description(); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(445)), $ast), $rt_s(442)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(443)), $ast), $rt_s(440)); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_ContainerIndex) { @@ -22548,7 +22571,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $r = s_Option_getOrElse(s_Option_map($end, onciap_DefaultExpressionStringifier$stringify$lambda$_11_5__init_($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this))), onciap_DefaultExpressionStringifier$stringify$lambda$_11_6__init_0()); $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $list); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($arg, $ast), 91), $l), $rt_s(446)), $r), 93); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($arg, $ast), 91), $l), $rt_s(444)), $r), 93); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_PatternExpression) { @@ -22562,14 +22585,14 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $ast = $ast; $ast = onciap_DefaultExpressionStringifier_prettyScope($this, oncie_AnyIterablePredicate_scope($ast), oncie_AnyIterablePredicate_expression($ast)); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(447)), $ast); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(445)), $ast); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_Not) { $arg = oncie_Not_rhs($ast); $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(448)), $ast); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(446)), $ast); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_ListComprehension) { @@ -22581,7 +22604,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $e = s_Option_getOrElse(s_Option_map(oncie_ExtractScope_extractExpression($s), onciap_DefaultExpressionStringifier$stringify$lambda$_11_9__init_($this, $ast)), onciap_DefaultExpressionStringifier$stringify$lambda$_11_10__init_()); $expr = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $expression); $ast = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1($ast, 91), $v), $rt_s(449)), $expr), $p), $e), 93); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1($ast, 91), $v), $rt_s(447)), $expr), $p), $e), 93); return jl_StringBuilder_toString($ast); } if ($ast instanceof oncie_PatternComprehension) { @@ -22597,14 +22620,14 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $w = s_Option_getOrElse(s_Option_map(s_Option_map($predicate, onciap_DefaultExpressionStringifier$stringify$lambda$_11_14__init_0($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this))), onciap_DefaultExpressionStringifier$stringify$lambda$_11_15__init_()), onciap_DefaultExpressionStringifier$stringify$lambda$_11_16__init_()); $b = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $proj); $ast = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1($ast, 91), $v), $p), $w), $rt_s(450)), $b), 93); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1($ast, 91), $v), $p), $w), $rt_s(448)), $b), 93); return jl_StringBuilder_toString($ast); } } if ($ast instanceof oncie_HasLabelsOrTypes) { $arg = $ast; $arg_0 = $arg.$entityExpression(); - $l = (($arg.$labelsOrTypes()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_17__init_($this))).$mkString0($rt_s(91), $rt_s(91), $rt_s(4)); + $l = (($arg.$labelsOrTypes()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_17__init_($this))).$mkString0($rt_s(92), $rt_s(92), $rt_s(4)); $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); $arg = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $l); @@ -22612,8 +22635,17 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) } if ($ast instanceof oncie_HasLabels) { $arg = $ast; - $arg_0 = $arg.$expression(); - $l = (($arg.$labels()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_18__init_0($this))).$mkString0($rt_s(91), $rt_s(91), $rt_s(4)); + $arg_0 = $arg.$expression0(); + $l = (($arg.$labels()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_18__init_0($this))).$mkString0($rt_s(92), $rt_s(92), $rt_s(4)); + $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); + $arg = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $l); + return jl_StringBuilder_toString($arg); + } + if ($ast instanceof oncie_HasDynamicLabels) { + $arg = $ast; + $arg_0 = $arg.$expression0(); + $l = ((($arg.$labels()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_19__init_0($this))).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_20__init_())).$mkString1(); $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); $arg = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $l); @@ -22621,34 +22653,79 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) } if ($ast instanceof oncie_HasAnyLabel) { $arg = $ast; - $arg_0 = $arg.$expression(); - $l = (($arg.$labels()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_19__init_0($this))).$mkString0($rt_s(91), $rt_s(451), $rt_s(4)); + $arg_0 = $arg.$expression0(); + $l = (($arg.$labels()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_21__init_0($this))).$mkString0($rt_s(92), $rt_s(449), $rt_s(4)); + $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); + $arg = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $l); + return jl_StringBuilder_toString($arg); + } + if ($ast instanceof oncie_HasAnyDynamicLabel) { + $arg = $ast; + $arg_0 = $arg.$expression0(); + $l = ((($arg.$labels()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_22__init_($this))).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_23__init_())).$mkString0($rt_s(92), $rt_s(449), $rt_s(4)); $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); $arg = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $l); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_HasALabel) { - $arg = $ast.$expression(); + $arg = $ast.$expression0(); $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $rt_s(452)); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $rt_s(450)); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_HasALabelOrType) { $arg = $ast.$entityExpression(); $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $rt_s(452)); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $rt_s(450)); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_HasTypes) { $arg = $ast; - $arg_0 = $arg.$expression(); - $l = (($arg.$types()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_20__init_($this))).$mkString0($rt_s(91), $rt_s(91), $rt_s(4)); + $arg_0 = $arg.$expression0(); + $t = (($arg.$types()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_24__init_0($this))).$mkString0($rt_s(92), $rt_s(92), $rt_s(4)); $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $l); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $t); + return jl_StringBuilder_toString($arg); + } + if ($ast instanceof oncie_HasDynamicType) { + $arg = $ast; + $arg_0 = $arg.$expression0(); + $t = (($arg.$types()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_25__init_($this))).$mkString0($rt_s(92), $rt_s(451), $rt_s(4)); + $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); + $arg = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $t); + return jl_StringBuilder_toString($arg); + } + if ($ast instanceof oncie_HasAnyDynamicType) { + $arg = $ast; + $arg_0 = $arg.$expression0(); + $t = (($arg.$types()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_26__init_($this))).$mkString0($rt_s(92), $rt_s(449), $rt_s(4)); + $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); + $arg = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $t); + return jl_StringBuilder_toString($arg); + } + if ($ast instanceof oncie_HasDynamicLabelsOrTypes) { + $arg = $ast; + $arg_0 = $arg.$entityExpression(); + $t = (($arg.$labelsOrTypes()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_27__init_($this))).$mkString0($rt_s(92), $rt_s(451), $rt_s(4)); + $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); + $arg = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $t); + return jl_StringBuilder_toString($arg); + } + if ($ast instanceof oncie_HasAnyDynamicLabelsOrTypes) { + $arg = $ast; + $arg_0 = $arg.$entityExpression(); + $t = (($arg.$labelsOrTypes()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_28__init_0($this))).$mkString0($rt_s(92), $rt_s(449), $rt_s(4)); + $ast = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $arg_0); + $arg = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $ast), $t); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncil_LabelExpressionPredicate) { @@ -22663,27 +22740,27 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $ast = $ast; $ast = onciap_DefaultExpressionStringifier_prettyScope($this, oncie_AllIterablePredicate_scope($ast), oncie_AllIterablePredicate_expression($ast)); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(344)), $ast); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(330)), $ast); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_NoneIterablePredicate) { $ast = $ast; $ast = onciap_DefaultExpressionStringifier_prettyScope($this, oncie_NoneIterablePredicate_scope($ast), oncie_NoneIterablePredicate_expression($ast)); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(453)), $ast); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(452)), $ast); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_SingleIterablePredicate) { $ast = $ast; $ast = onciap_DefaultExpressionStringifier_prettyScope($this, oncie_SingleIterablePredicate_scope($ast), oncie_SingleIterablePredicate_expression($ast)); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(454)), $ast); + jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(453)), $ast); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_MapProjection) { $ast = $ast; $variable = oncie_MapProjection_name($ast); - $itemsText = sc_AbstractIterable_mkString((oncie_MapProjection_items($ast)).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_21__init_0($this)), $rt_s(45)); + $itemsText = sc_AbstractIterable_mkString((oncie_MapProjection_items($ast)).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_29__init_0($this)), $rt_s(45)); $ast = onciap_DefaultExpressionStringifier_apply($this, $variable); $arg = jl_StringBuilder__init_(); jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($arg, $ast), 123), $itemsText), 125); @@ -22699,7 +22776,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) oncie_AllPropertiesSelector__init_($ast, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); $allItems = $allItems.$$colon$plus($ast); } - $itemsText = ($allItems.$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_22__init_($this))).$mkString($rt_s(45)); + $itemsText = ($allItems.$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_30__init_0($this))).$mkString($rt_s(45)); $ast = onciap_DefaultExpressionStringifier_apply($this, $entity); $arg = jl_StringBuilder__init_(); jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($arg, $ast), 123), $itemsText), 125); @@ -22724,21 +22801,21 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_AllPropertiesSelector) - return $rt_s(455); + return $rt_s(454); if ($ast instanceof oncie_CaseExpression) { var$17 = 1; $fn = $ast; - $arg = oncie_CaseExpression_candidate($fn); + $arg = oncie_CaseExpression_expression($fn); $alternatives = oncie_CaseExpression_alternatives($fn); $default = oncie_CaseExpression_default($fn); if (jl_Object_equals(s_None$_MODULE$, $arg)) { $normalForm = new sci_$colon$colon; - $variable = sci_$colon$colon__init_($rt_s(456), sci_Nil$_MODULE$); + $variable = sci_$colon$colon__init_($rt_s(455), sci_Nil$_MODULE$); $predicate = new sci_$colon$colon; - $proj = sc_IterableOps$WithFilter_flatMap(sc_AbstractIterable_withFilter($alternatives, onciap_DefaultExpressionStringifier$stringify$lambda$_11_23__init_()), onciap_DefaultExpressionStringifier$stringify$lambda$_11_24__init_($this, $ast)); + $proj = sc_IterableOps$WithFilter_flatMap(sc_AbstractIterable_withFilter($alternatives, onciap_DefaultExpressionStringifier$stringify$lambda$_11_31__init_0()), onciap_DefaultExpressionStringifier$stringify$lambda$_11_32__init_($this, $ast)); $fn = new sci_$colon$colon; s_Option$_$callClinit(); - sci_$colon$colon__init_0($fn, ((s_Option$_option2Iterable(s_Option$_MODULE$, $default)).$toSeq()).$flatMap(onciap_DefaultExpressionStringifier$stringify$lambda$_11_25__init_($this, $ast)), sci_$colon$colon__init_(sci_$colon$colon__init_($rt_s(457), sci_Nil$_MODULE$), sci_Nil$_MODULE$)); + sci_$colon$colon__init_0($fn, ((s_Option$_option2Iterable(s_Option$_MODULE$, $default)).$toSeq()).$flatMap(onciap_DefaultExpressionStringifier$stringify$lambda$_11_33__init_($this, $ast)), sci_$colon$colon__init_(sci_$colon$colon__init_($rt_s(456), sci_Nil$_MODULE$), sci_Nil$_MODULE$)); sci_$colon$colon__init_0($predicate, $proj, $fn); sci_$colon$colon__init_0($normalForm, $variable, $predicate); s_Predef$_$callClinit(); @@ -22746,7 +22823,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) } } if (var$17) { - $arg = oncie_CaseExpression_candidate($fn); + $arg = oncie_CaseExpression_expression($fn); $alternatives = oncie_CaseExpression_alternatives($fn); $default = oncie_CaseExpression_default($fn); if ($arg instanceof s_Some) { @@ -22755,13 +22832,13 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $predicateType = new sci_$colon$colon; $normalForm = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $expression); $variable = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(458)), $normalForm); + jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(457)), $normalForm); sci_$colon$colon__init_0($predicateType, jl_StringBuilder_toString($variable), sci_Nil$_MODULE$); $normalForm = new sci_$colon$colon; - $variable = sc_IterableOps$WithFilter_flatMap(sc_AbstractIterable_withFilter($alternatives, onciap_DefaultExpressionStringifier$stringify$lambda$_11_26__init_()), onciap_DefaultExpressionStringifier$stringify$lambda$_11_27__init_0($this, $ast)); + $variable = sc_IterableOps$WithFilter_flatMap(sc_AbstractIterable_withFilter($alternatives, onciap_DefaultExpressionStringifier$stringify$lambda$_11_34__init_()), onciap_DefaultExpressionStringifier$stringify$lambda$_11_35__init_($this, $ast)); $predicate = new sci_$colon$colon; s_Option$_$callClinit(); - sci_$colon$colon__init_0($predicate, ((s_Option$_option2Iterable(s_Option$_MODULE$, $default)).$toSeq()).$flatMap(onciap_DefaultExpressionStringifier$stringify$lambda$_11_28__init_($this, $ast)), sci_$colon$colon__init_(sci_$colon$colon__init_($rt_s(457), sci_Nil$_MODULE$), sci_Nil$_MODULE$)); + sci_$colon$colon__init_0($predicate, ((s_Option$_option2Iterable(s_Option$_MODULE$, $default)).$toSeq()).$flatMap(onciap_DefaultExpressionStringifier$stringify$lambda$_11_36__init_($this, $ast)), sci_$colon$colon__init_(sci_$colon$colon__init_($rt_s(456), sci_Nil$_MODULE$), sci_Nil$_MODULE$)); sci_$colon$colon__init_0($normalForm, $variable, $predicate); sci_$colon$colon__init_0($arg, $predicateType, $normalForm); s_Predef$_$callClinit(); @@ -22774,11 +22851,11 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) if (!($arg instanceof s_Some)) { if (!jl_Object_equals(s_None$_MODULE$, $arg)) $rt_throw(s_MatchError__init_($arg)); - return sc_AbstractIterable_mkString(onciuci_ListSet_map($expressions, onciap_DefaultExpressionStringifier$stringify$lambda$_11_30__init_0($this, $ast)), $rt_s(459)); + return sc_AbstractIterable_mkString(onciuci_ListSet_map($expressions, onciap_DefaultExpressionStringifier$stringify$lambda$_11_38__init_($this, $ast)), $rt_s(458)); } $chain = s_Some_value($arg); $head = onciap_DefaultExpressionStringifier_apply($this, $chain.$head()); - return sc_AbstractIterable_mkString(sci_List_$colon$colon(sci_List_flatMap($chain.$tail(), onciap_DefaultExpressionStringifier$stringify$lambda$_11_29__init_0($this, $ast)), $head), $rt_s(384)); + return sc_AbstractIterable_mkString(sci_List_$colon$colon(sci_List_flatMap($chain.$tail(), onciap_DefaultExpressionStringifier$stringify$lambda$_11_37__init_0($this, $ast)), $head), $rt_s(370)); } if ($ast instanceof oncie_AndsReorderable) { $expressions = $ast.$exprs(); @@ -22791,9 +22868,9 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_AndedPropertyInequalities) - return ((($ast.$inequalities()).$map4(onciap_DefaultExpressionStringifier$stringify$lambda$_11_31__init_($this))).$toIndexedSeq()).$mkString($rt_s(459)); + return ((($ast.$inequalities()).$map4(onciap_DefaultExpressionStringifier$stringify$lambda$_11_39__init_($this))).$toIndexedSeq()).$mkString($rt_s(458)); if ($ast instanceof oncie_Ors) - return (($ast.$exprs()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_32__init_($this, $ast))).$mkString($rt_s(460)); + return (($ast.$exprs()).$map(onciap_DefaultExpressionStringifier$stringify$lambda$_11_40__init_($this, $ast))).$mkString($rt_s(459)); if ($ast instanceof oncie_ShortestPathExpression) { $pattern = oncie_ShortestPathExpression_pattern($ast); return onciap_DefaultPatternStringifier_apply(onciap_DefaultExpressionStringifier_patterns($this), $pattern); @@ -22821,7 +22898,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $l = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $list); $e = onciap_DefaultExpressionStringifier_inner($this, $ast, onciap_DefaultExpressionStringifier_inner$default$2($this), $expression); $ast = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(461)), $a), $rt_s(168)), $i), $rt_s(45)), $v), $rt_s(449)), $l), $rt_s(450)), $e), 41); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(460)), $a), $rt_s(167)), $i), $rt_s(45)), $v), $rt_s(447)), $l), $rt_s(448)), $e), 41); return jl_StringBuilder_toString($ast); } } @@ -22831,23 +22908,23 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) return $rt_s(4); if ($ast instanceof oncia_ExistsExpression) { $q = oncia_ExistsExpression_query($ast); - $p = onciap_Prettifier_asString0(onciap_DefaultExpressionStringifier_prettifier($this), $q); + $p = onciap_Prettifier_asString1(onciap_DefaultExpressionStringifier_prettifier($this), $q); $ast = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(462)), $p), $rt_s(463)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(461)), $p), $rt_s(462)); return jl_StringBuilder_toString($ast); } if ($ast instanceof oncia_CollectExpression) { $q = oncia_CollectExpression_query($ast); - $p = onciap_Prettifier_asString0(onciap_DefaultExpressionStringifier_prettifier($this), $q); + $p = onciap_Prettifier_asString1(onciap_DefaultExpressionStringifier_prettifier($this), $q); $ast = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(464)), $p), $rt_s(463)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(463)), $p), $rt_s(462)); return jl_StringBuilder_toString($ast); } if ($ast instanceof oncia_CountExpression) { $q = oncia_CountExpression_query($ast); - $p = onciap_Prettifier_asString0(onciap_DefaultExpressionStringifier_prettifier($this), $q); + $p = onciap_Prettifier_asString1(onciap_DefaultExpressionStringifier_prettifier($this), $q); $ast = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(465)), $p), $rt_s(463)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(464)), $p), $rt_s(462)); return jl_StringBuilder_toString($ast); } if ($ast instanceof oncie_UnaryAdd) { @@ -22869,13 +22946,13 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) if ($ast instanceof oncilp_CoerceToPredicate) { $inner = onciap_DefaultExpressionStringifier_apply($this, $ast.$inner0()); $ast = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(466)), $inner), 41); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($ast, $rt_s(465)), $inner), 41); return jl_StringBuilder_toString($ast); } if ($ast instanceof oncie_AssertIsNode) { $ast = onciap_DefaultExpressionStringifier_apply($this, $ast.$lhs0()); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(467)), $ast), 41); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(466)), $ast), 41); return jl_StringBuilder_toString($arg); } if (!($ast instanceof oncie_ElementIdToLongId)) { @@ -22886,7 +22963,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $ast = onciap_DefaultExpressionStringifier_apply($this, $rel); $arg = onciap_DefaultExpressionStringifier_apply($this, $relList); $predicateType = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $rt_s(448)), $ast), $rt_s(449)), $arg); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $rt_s(446)), $ast), $rt_s(447)), $arg); return jl_StringBuilder_toString($predicateType); } if ($ast instanceof oncie_DifferentRelationships) { @@ -22896,23 +22973,23 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $ast = onciap_DefaultExpressionStringifier_apply($this, $rel1); $arg = onciap_DefaultExpressionStringifier_apply($this, $rel2); $predicateType = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $rt_s(448)), $ast), $rt_s(168)), $arg); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $rt_s(446)), $ast), $rt_s(167)), $arg); return jl_StringBuilder_toString($predicateType); } if ($ast instanceof oncie_Disjoint) { $ast = $ast; $rel1 = $ast.$lhs0(); - $rel2 = $ast.$rhs0(); + $rel2 = $ast.$rhs(); $ast = onciap_DefaultExpressionStringifier_apply($this, $rel1); $arg = onciap_DefaultExpressionStringifier_apply($this, $rel2); $predicateType = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $rt_s(468)), $ast), $rt_s(45)), $arg), 41); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($predicateType, $rt_s(467)), $ast), $rt_s(45)), $arg), 41); return jl_StringBuilder_toString($predicateType); } if ($ast instanceof oncie_Unique) { - $ast = onciap_DefaultExpressionStringifier_apply($this, $ast.$rhs0()); + $ast = onciap_DefaultExpressionStringifier_apply($this, $ast.$rhs()); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(469)), $ast), 41); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(468)), $ast), 41); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_VarLengthLowerBound) { @@ -22921,7 +22998,7 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $bound = $ast.$bound(); $ast = onciap_DefaultExpressionStringifier_apply($this, $relName); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append5(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(470)), $ast), $rt_s(471)), $bound); + jl_StringBuilder_append4(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(469)), $ast), $rt_s(470)), $bound); return jl_StringBuilder_toString($arg); } if ($ast instanceof oncie_VarLengthUpperBound) { @@ -22930,14 +23007,14 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $bound = $ast.$bound(); $ast = onciap_DefaultExpressionStringifier_apply($this, $relName); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append5(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(470)), $ast), $rt_s(472)), $bound); + jl_StringBuilder_append4(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(469)), $ast), $rt_s(471)), $bound); return jl_StringBuilder_toString($arg); } if (!($ast instanceof oncie_IsRepeatTrailUnique)) return onciap_ExpressionStringifier$Extension$$anon$1_apply($this.$extensionStringifier, $this, $ast); $ast = onciap_DefaultExpressionStringifier_apply($this, $ast.$variableToCheck()); $arg = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(473)), $ast), 41); + jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($arg, $rt_s(472)), $ast), 41); return jl_StringBuilder_toString($arg); } $ast = $ast; @@ -22945,22 +23022,22 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) $arg = $ast.$entityType(); $predicateType = $ast.$mode(); if (jl_Object_equals(oncie_NODE_TYPE$_MODULE$, $arg) && jl_Object_equals(oncie_ElementIdToLongId$Mode$Single$_MODULE$, $predicateType)) - $prefix = $rt_s(474); + $prefix = $rt_s(473); else { $arg = $ast.$entityType(); $predicateType = $ast.$mode(); if (jl_Object_equals(oncie_NODE_TYPE$_MODULE$, $arg) && jl_Object_equals(oncie_ElementIdToLongId$Mode$Many$_MODULE$, $predicateType)) - $prefix = $rt_s(475); + $prefix = $rt_s(474); else { $arg = $ast.$entityType(); $predicateType = $ast.$mode(); if (jl_Object_equals(oncie_RELATIONSHIP_TYPE$_MODULE$, $arg) && jl_Object_equals(oncie_ElementIdToLongId$Mode$Single$_MODULE$, $predicateType)) - $prefix = $rt_s(476); + $prefix = $rt_s(475); else { $arg = $ast.$entityType(); $predicateType = $ast.$mode(); if (jl_Object_equals(oncie_RELATIONSHIP_TYPE$_MODULE$, $arg) && jl_Object_equals(oncie_ElementIdToLongId$Mode$Many$_MODULE$, $predicateType)) - $prefix = $rt_s(477); + $prefix = $rt_s(476); else $rt_throw(s_MatchError__init_($ast)); } @@ -22971,6 +23048,19 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($arg, $prefix), 40), $ast), 41); return jl_StringBuilder_toString($arg); } + $ast = $ast; + if (!$this.$javaCompatible) + return $ast.$asCanonicalStringVal(); + if ($rt_isInstance($ast, oncie_IntegerLiteral)) { + $arg = $ast; + s_Predef$_$callClinit(); + if (Long_gt(s_Predef$_Long2long(s_Predef$_MODULE$, $arg.$value1()), Long_fromInt(2147483647))) { + $ast = jl_Long_toString0($arg.$value1()); + $arg = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append($arg, $ast), 76); + return jl_StringBuilder_toString($arg); + } + } return $ast.$asCanonicalStringVal(); } return onciap_DefaultExpressionStringifier_quote($this, oncie_StringLiteral_value($ast)); @@ -22978,17 +23068,17 @@ onciap_DefaultExpressionStringifier_stringify = ($this, $ast, $isCaseExpression) onciap_DefaultExpressionStringifier_prettyScope = ($this, $s, $expression) => { let var$3, var$4, var$5, var$6; var$3 = new sci_$colon$colon; - var$4 = sci_List_map(sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_apply($this, $s.$variable22), sci_$colon$colon__init_($rt_s(478), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_inner($this, $s, 0, $expression), sci_Nil$_MODULE$))), new onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0); + var$4 = sci_List_map(sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_apply($this, $s.$variable22), sci_$colon$colon__init_($rt_s(477), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_inner($this, $s, 0, $expression), sci_Nil$_MODULE$))), new onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0); var$5 = new sci_$colon$colon; s_Option$_$callClinit(); $expression = (s_Option$_option2Iterable(s_Option$_MODULE$, $s.$innerPredicate1)).$toSeq(); var$6 = new onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1; - var$6.$_0476 = $this; - var$6.$_1166 = $s; + var$6.$_0465 = $this; + var$6.$_1161 = $s; sci_$colon$colon__init_0(var$5, $expression.$flatMap(var$6), sci_Nil$_MODULE$); sci_$colon$colon__init_0(var$3, var$4, var$5); s_Predef$_$callClinit(); - return sc_IterableOnceOps_mkString$(sc_StrictOptimizedIterableOps_flatten$(var$3, s_Predef$_$conforms(s_Predef$_MODULE$)), $rt_s(40), $rt_s(384), $rt_s(42)); + return sc_IterableOnceOps_mkString$(sc_StrictOptimizedIterableOps_flatten$(var$3, s_Predef$_$conforms(s_Predef$_MODULE$)), $rt_s(40), $rt_s(370), $rt_s(42)); }, onciap_DefaultExpressionStringifier_binding = ($this, $in) => { let var$2; @@ -23064,17 +23154,17 @@ onciap_DefaultExpressionStringifier_binding = ($this, $in) => { return onciap_DefaultExpressionStringifier$Precedence__init_($this, 2); }, onciap_DefaultExpressionStringifier_backtick = ($this, $txt) => { - return onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $txt, $this.$alwaysBacktick, 0); + return onu_Stringifier_backtick0($txt, $this.$alwaysBacktick, 0); }, onciap_DefaultExpressionStringifier_quote = ($this, $txt) => { let $str, $containsSingle, $containsDouble; - $str = jl_String_replaceAll($txt, $rt_s(479), $rt_s(480)); + $str = jl_String_replaceAll($txt, $rt_s(478), $rt_s(479)); $txt = sc_StringOps$_MODULE$; s_Predef$_$callClinit(); $containsSingle = sc_StringOps$_contains$extension($txt, $str, 39); $containsDouble = sc_StringOps$_contains$extension(sc_StringOps$_MODULE$, $str, 34); if ($containsDouble && $containsSingle) { - $txt = jl_String_replaceAll($str, $rt_s(481), $rt_s(482)); + $txt = jl_String_replaceAll($str, $rt_s(480), $rt_s(481)); $str = new jl_StringBuilder; jl_AbstractStringBuilder__init_($str); jl_AbstractStringBuilder_append0($str, 34); @@ -23097,16 +23187,15 @@ onciap_DefaultExpressionStringifier_quote = ($this, $txt) => { onciap_DefaultExpressionStringifier_escapePassword = ($this, $password) => { let var$2; if ($rt_isInstance($password, oncie_SensitiveAutoParameter) && !$this.$sensitiveParamsAsParams) - return $rt_s(483); + return $rt_s(482); if ($rt_isInstance($password, oncie_SensitiveLiteral)) - return $rt_s(483); + return $rt_s(482); if (!$rt_isInstance($password, oncie_Parameter)) { var$2 = new jl_InternalError; - jl_Throwable__init_0(var$2, $rt_s(484)); + jl_Throwable__init_(var$2, $rt_s(483)); $rt_throw(var$2); } - $password = $password; - $password = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $password.$name(), 0, 0); + $password = onu_Stringifier_backtick($password.$name()); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_AbstractStringBuilder_append0(var$2, 36); @@ -23118,8 +23207,8 @@ onciap_DefaultExpressionStringifier_stringifyLabelExpression = ($this, $labelExp if ($labelExpression instanceof oncil_LabelExpression$Disjunctions) { var$2 = $labelExpression.$children3; $labelExpression = new onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0; - $labelExpression.$_01110 = $this; - return sc_AbstractIterable_mkString(var$2.$map($labelExpression), $rt_s(451)); + $labelExpression.$_01087 = $this; + return sc_AbstractIterable_mkString(var$2.$map($labelExpression), $rt_s(449)); } if ($labelExpression instanceof oncil_LabelExpression$ColonDisjunction) { $labelExpression = $labelExpression; @@ -23127,14 +23216,14 @@ onciap_DefaultExpressionStringifier_stringifyLabelExpression = ($this, $labelExp $labelExpression = onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom($this, $labelExpression.$rhs3); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(485)), $labelExpression); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(484)), $labelExpression); return jl_AbstractStringBuilder_toString(var$3); } if ($labelExpression instanceof oncil_LabelExpression$Conjunctions) { var$2 = $labelExpression.$children4; $labelExpression = new onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1; - $labelExpression.$_0609 = $this; - return sc_AbstractIterable_mkString(var$2.$map($labelExpression), $rt_s(486)); + $labelExpression.$_0600 = $this; + return sc_AbstractIterable_mkString(var$2.$map($labelExpression), $rt_s(451)); } if (!($labelExpression instanceof oncil_LabelExpression$ColonConjunction)) return jl_String_valueOf(onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom($this, $labelExpression)); @@ -23157,7 +23246,7 @@ onciap_DefaultExpressionStringifier_stringifyLabelExpressionInColonDisjunction = $labelExpression = onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom($this, $labelExpression.$rhs3); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(485)), $labelExpression); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(484)), $labelExpression); return jl_AbstractStringBuilder_toString(var$3); }, onciap_DefaultExpressionStringifier_stringifyLabelExpressionInColonConjunction = ($this, $labelExpression) => { @@ -23188,17 +23277,17 @@ onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom = ($this, $ var$3 = 0; var$2 = null; if ($labelExpression instanceof oncil_LabelExpression$Leaf) - $labelExpression = onciap_DefaultExpressionStringifier_apply0($this, $labelExpression.$name13); + $labelExpression = onciap_DefaultExpressionStringifier_apply0($this, $labelExpression.$name15); else { if ($labelExpression instanceof oncil_LabelExpression$DynamicLeaf) { var$3 = 1; var$2 = $labelExpression; var$4 = var$2.$expr4; if (var$4 !== null && var$4.$all()) { - $labelExpression = onciap_DefaultExpressionStringifier_stringify($this, var$4.$expression(), 0); + $labelExpression = onciap_DefaultExpressionStringifier_stringify($this, var$4.$expression0(), 0); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(487)), $labelExpression), 41); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(485)), $labelExpression), 41); $labelExpression = jl_AbstractStringBuilder_toString(var$2); break a; } @@ -23206,16 +23295,16 @@ onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom = ($this, $ if (var$3) { var$2 = var$2.$expr4; if (var$2 !== null) { - $labelExpression = onciap_DefaultExpressionStringifier_stringify($this, var$2.$expression(), 0); + $labelExpression = onciap_DefaultExpressionStringifier_stringify($this, var$2.$expression0(), 0); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(488)), $labelExpression), 41); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(486)), $labelExpression), 41); $labelExpression = jl_AbstractStringBuilder_toString(var$2); break a; } } if ($labelExpression instanceof oncil_LabelExpression$Wildcard) - $labelExpression = $rt_s(489); + $labelExpression = $rt_s(487); else { $labelExpression = onciap_DefaultExpressionStringifier_stringifyLabelExpression($this, $labelExpression); var$2 = new jl_StringBuilder; @@ -23232,7 +23321,7 @@ onciap_DefaultExpressionStringifier_findChain$1 = $expressions$1 => { let $chainable, var$3; $chainable = sc_StrictOptimizedIterableOps_collect$($expressions$1, new onciap_DefaultExpressionStringifier$$anonfun$1); var$3 = onciuci_ListSet_size($chainable) != onciuci_ListSet_size($expressions$1) ? 0 : 1; - if (var$3 && sc_IterableOnceOps_forall$(sc_AbstractIterable_sliding($chainable, 2), new onciap_DefaultExpressionStringifier$formsChain$1$lambda$_62_0)) + if (var$3 && sc_IterableOnceOps_forall$(sc_AbstractIterable_sliding($chainable, 2), new onciap_DefaultExpressionStringifier$formsChain$1$lambda$_70_0)) return s_Some__init_(sc_IterableOnceOps_toList$($chainable)); return s_None$_MODULE$; }, @@ -23333,10 +23422,6 @@ sci_IndexedSeq_sameElements$ = ($$this, $o) => { } return var$3; }, -sci_IndexedSeq_iterableFactory$ = $$this => { - sci_IndexedSeq$_$callClinit(); - return sci_IndexedSeq$_MODULE$; -}, sc_EvidenceIterableFactoryDefaults = $rt_classWithoutFields(0), sci_ArraySeq = $rt_classWithoutFields(sci_AbstractSeq), sci_ArraySeq_fromSpecific = ($this, $coll) => { @@ -23365,11 +23450,11 @@ sci_ArraySeq_collect = ($this, $pf) => { }, sci_ArraySeq_flatten = ($this, $toIterableOnce) => { return sc_StrictOptimizedIterableOps_flatten$($this, $toIterableOnce); -}; -let sci_ArraySeq_zipWithIndex = $this => { - return sc_StrictOptimizedIterableOps_zipWithIndex$($this); }, -sci_ArraySeq_filter = ($this, $pred) => { +sci_ArraySeq_zipWithIndex = $this => { + return sc_StrictOptimizedIterableOps_zipWithIndex$($this); +}; +let sci_ArraySeq_filter = ($this, $pred) => { return sc_StrictOptimizedIterableOps_filter$($this, $pred); }, sci_ArraySeq_filterNot = ($this, $pred) => { @@ -23394,7 +23479,7 @@ sci_ArraySeq_sameElements = ($this, $o) => { return sci_IndexedSeq_sameElements$($this, $o); }, sci_ArraySeq_stringPrefix = $this => { - return $rt_s(490); + return $rt_s(488); }, sci_ArraySeq_reverseIterator = $this => { return sc_IndexedSeqOps_reverseIterator$($this); @@ -23562,7 +23647,7 @@ sci_ArraySeq_tail = $this => { if (jlr_Array_getLength(var$3)) return sci_ArraySeq$_unsafeWrapArray(var$1, sc_ArrayOps$_slice$extension(var$2, var$3, 1, jlr_Array_getLength(var$3))); var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(491)); + jl_Throwable__init_(var$1, $rt_s(489)); $rt_throw(var$1); }, sci_ArraySeq_reverse = $this => { @@ -23581,7 +23666,7 @@ sci_ArraySeq_reverse = $this => { return sci_ArraySeq$_unsafeWrapArray(var$1, $reverse$extension_res); }, sci_ArraySeq_className = $this => { - return $rt_s(492); + return $rt_s(490); }, sci_ArraySeq_copyToArray = ($this, $xs, $start, $len) => { let $elemsToCopyToArray_srcLen, $elemsToCopyToArray_destLen, $copied; @@ -23645,11 +23730,11 @@ sci_ArraySeq_appendedAll0 = ($this, $suffix) => { }, sci_ArraySeq_appended0 = ($this, $elem) => { return $this.$appended0($elem); -}; -let sci_ArraySeq_prepended0 = ($this, $elem) => { - return $this.$prepended1($elem); }, -sci_ArraySeq_map0 = ($this, $f) => { +sci_ArraySeq_prepended0 = ($this, $elem) => { + return $this.$prepended1($elem); +}; +let sci_ArraySeq_map0 = ($this, $f) => { return sci_ArraySeq_map($this, $f); }, sci_ArraySeq_iterableEvidence = $this => { @@ -23830,7 +23915,7 @@ sci_ArraySeq$_newBuilder = ($this, $evidence$2) => { let var$2, var$3; var$2 = scm_ArrayBuffer$$anon$1__init_(); var$3 = new sci_ArraySeq$$newBuilder$lambda$_21_0; - var$3.$_0450 = $evidence$2; + var$3.$_0438 = $evidence$2; return scm_Builder_mapResult$(var$2, var$3); }, sci_ArraySeq$_unsafeWrapArray = ($this, $x) => { @@ -23877,7 +23962,7 @@ function onciu_StepSequencer$AccumulatedSteps() { a.$postConditions1 = null; } let onciu_StepSequencer$AccumulatedSteps_productPrefix = $this => { - return $rt_s(493); + return $rt_s(491); }, onciu_StepSequencer$AccumulatedSteps_productArity = $this => { return 2; @@ -23898,6 +23983,57 @@ onciu_StepSequencer$AccumulatedSteps_productIterator = $this => { onciu_StepSequencer$AccumulatedSteps_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, +s_Function2 = $rt_classWithoutFields(0), +s_Function2_toString = $this => { + return $rt_s(492); +}, +oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0 = $rt_classWithoutFields(), +oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4; + var$3 = (oncifp_InitialState_statement(var$1)).$folder(); + s_package$_$callClinit(); + var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + var$2 = new oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1; + var$2.$baseState$1 = var$1; + return onciu_Foldable$Folder_treeFold(var$3, var$4, var$2); +}, +oncifp_SelfReferenceCheckWithinPatternPart$$check$lambda$_2_0 = $rt_classWithoutFields(), +oncifp_SelfReferenceCheckWithinPatternPart$$check$lambda$_2_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6; + var$3 = oncifp_InitialState_semanticTable(var$1); + var$4 = var$2.$errorMessageProvider0; + var$5 = (oncifp_InitialState_statement(var$1)).$folder(); + s_package$_$callClinit(); + var$6 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + var$1 = new oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1; + var$1.$semanticTable$10 = var$3; + var$1.$errorMessageProvider$1 = var$4; + var$1.$baseContext$1 = var$2; + return onciu_Foldable$Folder_treeFold(var$5, var$6, var$1); +}, +oncifp_SelfReferenceCheckAcrossPatternParts$$check$lambda$_2_0 = $rt_classWithoutFields(), +oncifp_SelfReferenceCheckAcrossPatternParts$$check$lambda$_2_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5; + var$3 = oncifp_InitialState_semanticTable(var$1); + var$4 = (oncifp_InitialState_statement(var$1)).$folder(); + s_package$_$callClinit(); + var$5 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + var$1 = new oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1; + var$1.$semanticTable$4 = var$3; + var$1.$ctx$1 = var$2; + return onciu_Foldable$Folder_treeFold(var$4, var$5, var$1); +}, +oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0 = $rt_classWithoutFields(), +oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4; + oncifp_ListCoercedToBooleanCheck$_$callClinit(); + var$3 = (oncifp_InitialState_statement(var$1)).$folder(); + s_package$_$callClinit(); + var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + var$2 = new oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1; + var$2.$baseState$2 = var$1; + return onciu_Foldable$Folder_treeFold(var$3, var$4, var$2); +}, jur_AbstractCharClass$LazySpace = $rt_classWithoutFields(jur_AbstractCharClass$LazyCharClass), jur_AbstractCharClass$LazySpace__init_0 = $this => { return; @@ -24002,8 +24138,8 @@ jur_AbstractCharClass$LazyGraph__init_ = () => { let var_0 = new jur_AbstractCharClass$LazyGraph(); jur_AbstractCharClass$LazyGraph__init_0(var_0); return var_0; -}, -jur_AbstractCharClass$LazyGraph_computeValue = $this => { +}; +let jur_AbstractCharClass$LazyGraph_computeValue = $this => { return jur_CharClass_add(jur_CharClass_add(jur_CharClass_add(jur_AbstractCharClass$LazyAlnum_computeValue($this), 33, 64), 91, 96), 123, 126); }, jur_AbstractCharClass$LazyPrint = $rt_classWithoutFields(jur_AbstractCharClass$LazyGraph), @@ -24030,8 +24166,8 @@ jur_AbstractCharClass$LazyBlank__init_0 = () => { jur_AbstractCharClass$LazyBlank_computeValue = $this => { return jur_CharClass_add0(jur_CharClass_add0(jur_CharClass__init_(), 32), 9); }, -jur_AbstractCharClass$LazyCntrl = $rt_classWithoutFields(jur_AbstractCharClass$LazyCharClass); -let jur_AbstractCharClass$LazyCntrl__init_0 = $this => { +jur_AbstractCharClass$LazyCntrl = $rt_classWithoutFields(jur_AbstractCharClass$LazyCharClass), +jur_AbstractCharClass$LazyCntrl__init_0 = $this => { return; }, jur_AbstractCharClass$LazyCntrl__init_ = () => { @@ -24188,8 +24324,8 @@ jur_AbstractCharClass$LazyJavaISOControl_computeValue = $this => { jur_AbstractCharClass__init_(var$1); return var$1; }, -jur_AbstractCharClass$LazyJavaJavaIdentifierPart = $rt_classWithoutFields(jur_AbstractCharClass$LazyCharClass), -jur_AbstractCharClass$LazyJavaJavaIdentifierPart__init_ = $this => { +jur_AbstractCharClass$LazyJavaJavaIdentifierPart = $rt_classWithoutFields(jur_AbstractCharClass$LazyCharClass); +let jur_AbstractCharClass$LazyJavaJavaIdentifierPart__init_ = $this => { return; }, jur_AbstractCharClass$LazyJavaJavaIdentifierPart__init_0 = () => { @@ -24230,8 +24366,8 @@ jur_AbstractCharClass$LazyJavaLetter__init_0 = () => { let var_0 = new jur_AbstractCharClass$LazyJavaLetter(); jur_AbstractCharClass$LazyJavaLetter__init_(var_0); return var_0; -}; -let jur_AbstractCharClass$LazyJavaLetter_computeValue = $this => { +}, +jur_AbstractCharClass$LazyJavaLetter_computeValue = $this => { let $chCl; $chCl = new jur_AbstractCharClass$LazyJavaLetter$1; $chCl.$this$032 = $this; @@ -24382,11 +24518,11 @@ jur_AbstractCharClass$LazyNonDigit_computeValue = $this => { function jur_AbstractCharClass$LazyRange() { let a = this; jur_AbstractCharClass$LazyCharClass.call(a); a.$start10 = 0; - a.$end7 = 0; + a.$end6 = 0; } let jur_AbstractCharClass$LazyRange__init_0 = ($this, $start, $end) => { $this.$start10 = $start; - $this.$end7 = $end; + $this.$end6 = $end; }, jur_AbstractCharClass$LazyRange__init_ = (var_0, var_1) => { let var_2 = new jur_AbstractCharClass$LazyRange(); @@ -24394,7 +24530,7 @@ jur_AbstractCharClass$LazyRange__init_ = (var_0, var_1) => { return var_2; }, jur_AbstractCharClass$LazyRange_computeValue = $this => { - return jur_CharClass_add(jur_CharClass__init_(), $this.$start10, $this.$end7); + return jur_CharClass_add(jur_CharClass__init_(), $this.$start10, $this.$end6); }, jur_AbstractCharClass$LazySpecialsBlock = $rt_classWithoutFields(jur_AbstractCharClass$LazyCharClass), jur_AbstractCharClass$LazySpecialsBlock__init_ = $this => { @@ -24479,24 +24615,18 @@ jur_IntHash = $rt_classWithoutFields(), onciap_ExpressionStringifier$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), onciap_ExpressionStringifier$$_clinit_$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3; + onciap_ExpressionStringifier$_$callClinit(); var$2 = new jl_IllegalStateException; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(494)), var$1); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(493)), var$1); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); $rt_throw(var$2); }, onciap_PatternStringifier$ = $rt_classWithoutFields(), onciap_PatternStringifier$_MODULE$ = null, -onciap_PatternStringifier$_$callClinit = () => { - onciap_PatternStringifier$_$callClinit = $rt_eraseClinit(onciap_PatternStringifier$); - onciap_PatternStringifier$__clinit_(); -}, onciap_PatternStringifier$__clinit_ = () => { - let var$1; - var$1 = new onciap_PatternStringifier$; - onciap_PatternStringifier$_$callClinit(); - onciap_PatternStringifier$_MODULE$ = var$1; + onciap_PatternStringifier$_MODULE$ = new onciap_PatternStringifier$; }, onciap_PatternStringifier$_apply = ($this, $expr) => { let var$2; @@ -24506,21 +24636,14 @@ onciap_PatternStringifier$_apply = ($this, $expr) => { }, onciap_PathStepStringifier$ = $rt_classWithoutFields(), onciap_PathStepStringifier$_MODULE$ = null, -onciap_PathStepStringifier$_$callClinit = () => { - onciap_PathStepStringifier$_$callClinit = $rt_eraseClinit(onciap_PathStepStringifier$); - onciap_PathStepStringifier$__clinit_(); -}, onciap_PathStepStringifier$__clinit_ = () => { - let var$1; - var$1 = new onciap_PathStepStringifier$; - onciap_PathStepStringifier$_$callClinit(); - onciap_PathStepStringifier$_MODULE$ = var$1; + onciap_PathStepStringifier$_MODULE$ = new onciap_PathStepStringifier$; }; function onciap_Prettifier() { let a = this; jl_Object.call(a); a.$IndentingQueryPrettifier$module = null; a.$expr1 = null; - a.$extension0 = null; + a.$extension = null; a.$useInCommands = 0; a.$NL0 = null; a.$BASE_INDENT = null; @@ -24529,27 +24652,27 @@ function onciap_Prettifier() { let onciap_Prettifier_expr = $this => { return $this.$expr1; }, -onciap_Prettifier_extension = $this => { - return $this.$extension0; -}, onciap_Prettifier_NL = $this => { return $this.$NL0; }, -onciap_Prettifier_asString0 = ($this, $statement) => { +onciap_Prettifier_asString1 = ($this, $statement) => { let var$2, var$3; if ($rt_isInstance($statement, oncia_Query)) return onciap_Prettifier$IndentingQueryPrettifier_query($this.$base, $statement); if ($rt_isInstance($statement, oncia_SchemaCommand)) - return onciap_Prettifier_asString2($this, $statement); - if ($rt_isInstance($statement, oncia_AdministrationCommand)) return onciap_Prettifier_asString3($this, $statement); + if ($rt_isInstance($statement, oncia_AdministrationCommand)) + return onciap_Prettifier_asString4($this, $statement); var$2 = new jl_IllegalStateException; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(495)), $statement); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(494)), $statement); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); $rt_throw(var$2); }, +onciap_Prettifier_asString0 = ($this, $hint) => { + return onciap_Prettifier$IndentingQueryPrettifier_asString10($this.$base, $hint); +}, onciap_Prettifier_backtick = ($this, $s) => { return onciap_DefaultExpressionStringifier_backtick($this.$expr1, $s); }, @@ -24567,12 +24690,12 @@ onciap_Prettifier_propertiesMapToString = ($this, $name, $properties) => { $properties = new jl_StringBuilder; jl_AbstractStringBuilder__init_($properties); jl_AbstractStringBuilder_append0($properties, 32); - jl_StringBuilder_append(jl_StringBuilder_append($properties, $name), $rt_s(496)); + jl_StringBuilder_append(jl_StringBuilder_append($properties, $name), $rt_s(495)); return jl_AbstractStringBuilder_toString($properties); } - $properties = new onciap_Prettifier$propertiesMapToString$lambda$_32_0; - $properties.$_0311 = $this; - $props = sc_IterableOnceOps_mkString$($props.$map($properties), $rt_s(432), $rt_s(45), $rt_s(433)); + $properties = new onciap_Prettifier$propertiesMapToString$lambda$_33_0; + $properties.$_0464 = $this; + $props = sc_IterableOnceOps_mkString$($props.$map($properties), $rt_s(430), $rt_s(45), $rt_s(431)); $properties = new jl_StringBuilder; jl_AbstractStringBuilder__init_($properties); jl_AbstractStringBuilder_append0($properties, 32); @@ -24602,19 +24725,19 @@ onciap_Prettifier_propertiesMapToString = ($this, $name, $properties) => { }, onciap_Prettifier_prettifySetItems = ($this, $setItems) => { let $items; - $items = new onciap_Prettifier$prettifySetItems$lambda$_33_0; - $items.$_0767 = $this; + $items = new onciap_Prettifier$prettifySetItems$lambda$_34_0; + $items.$_0363 = $this; return sc_AbstractIterable_mkString($setItems.$map($items), $rt_s(45)); }, onciap_Prettifier_prettifyRemoveItems = ($this, $removeItems) => { let $items; - $items = new onciap_Prettifier$prettifyRemoveItems$lambda$_34_0; - $items.$_0241 = $this; + $items = new onciap_Prettifier$prettifyRemoveItems$lambda$_35_0; + $items.$_0197 = $this; return sc_AbstractIterable_mkString($removeItems.$map($items), $rt_s(45)); }, onciap_Prettifier_labelsString = ($this, $variable, $labels, $dynamicLabels) => { $variable = onciap_DefaultExpressionStringifier_apply($this.$expr1, $variable); - $labels = sc_AbstractIterable_mkString((onciap_Prettifier_labelsOrderedSeq($this, $labels, $dynamicLabels)).$map(new onciap_Prettifier$labelsString$lambda$_35_0), $rt_s(4)); + $labels = sc_AbstractIterable_mkString((onciap_Prettifier_labelsOrderedSeq($this, $labels, $dynamicLabels)).$map(new onciap_Prettifier$labelsString$lambda$_36_0), $rt_s(4)); $dynamicLabels = new jl_StringBuilder; jl_AbstractStringBuilder__init_($dynamicLabels); jl_StringBuilder_append(jl_StringBuilder_append($dynamicLabels, $variable), $labels); @@ -24625,28 +24748,28 @@ onciap_Prettifier_isLabelsString = ($this, $variable, $labels, $dynamicLabels) = $labelsStrings = onciap_Prettifier_labelsOrderedSeq($this, $labels, $dynamicLabels); $variable = onciap_DefaultExpressionStringifier_apply($this.$expr1, $variable); $labels = $labelsStrings.$head(); - $dynamicLabels = sc_AbstractIterable_mkString(($labelsStrings.$tail()).$map(new onciap_Prettifier$isLabelsString$lambda$_36_0), $rt_s(4)); + $dynamicLabels = sc_AbstractIterable_mkString(($labelsStrings.$tail()).$map(new onciap_Prettifier$isLabelsString$lambda$_37_0), $rt_s(4)); $labelsStrings = new jl_StringBuilder; jl_AbstractStringBuilder__init_($labelsStrings); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($labelsStrings, $variable), $rt_s(441)), $labels), $dynamicLabels); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($labelsStrings, $variable), $rt_s(439)), $labels), $dynamicLabels); return jl_AbstractStringBuilder_toString($labelsStrings); }, onciap_Prettifier_labelsOrderedSeq = ($this, $labels, $dynamicLabels) => { let var$3, var$4; $dynamicLabels = $labels.$concat($dynamicLabels); - $labels = new onciap_Prettifier$labelsOrderedSeq$lambda$_37_0; - $labels.$_0490 = $this; + $labels = new onciap_Prettifier$labelsOrderedSeq$lambda$_38_0; + $labels.$_0411 = $this; var$3 = $dynamicLabels.$map($labels); - var$4 = new onciap_Prettifier$labelsOrderedSeq$lambda$_37_1; + var$4 = new onciap_Prettifier$labelsOrderedSeq$lambda$_38_1; $labels = sm_Ordering$_MODULE$; sm_Ordering$Int$_$callClinit(); $dynamicLabels = sm_Ordering$Int$_MODULE$; - return (var$3.$sortBy(var$4, sm_Ordering$_Tuple2($labels, $dynamicLabels, $dynamicLabels))).$map(new onciap_Prettifier$labelsOrderedSeq$lambda$_37_2); + return (var$3.$sortBy(var$4, sm_Ordering$_Tuple2($labels, $dynamicLabels, $dynamicLabels))).$map(new onciap_Prettifier$labelsOrderedSeq$lambda$_38_2); }, -onciap_Prettifier_asString2 = ($this, $command) => { +onciap_Prettifier_asString3 = ($this, $command) => { let $useString, $variable, $ifExistsString, $entityName, $properties, $name, $indexType, $ifExistsDo, $options, $startOfCommand, $anyAll, $label, $pattern, $relType, $expression, $all, $constraintType, $commandString, $isNodeIndex, $function, $functionString, $entityNames, $labelPattern, $relTypePattern, $propertiesString; a: { - $useString = onciap_Prettifier_asString1($this, $command.$useGraph()); + $useString = onciap_Prettifier_asString2($this, $command.$useGraph()); if ($rt_isInstance($command, oncia_CreateSingleLabelPropertyIndex)) { oncia_CreateSingleLabelPropertyIndex$_$callClinit(); $variable = oncia_CreateSingleLabelPropertyIndex$_unapply(oncia_CreateSingleLabelPropertyIndex$_MODULE$, $command); @@ -24661,7 +24784,7 @@ onciap_Prettifier_asString2 = ($this, $command) => { if ($ifExistsString !== null) { $variable = $ifExistsString.$name(); $startOfCommand = onciap_Prettifier_getStartOfCommand$1($name, $ifExistsDo, $indexType.$command()); - $anyAll = onciap_Prettifier$asString$lambda$_38_0__init_0(); + $anyAll = onciap_Prettifier$asString$lambda$_39_0__init_0(); if ($entityName instanceof oncie_LabelName) { $label = $entityName.$name(); $command = onciap_Prettifier_backtick($this, $variable); @@ -24674,33 +24797,33 @@ onciap_Prettifier_asString2 = ($this, $command) => { $command = onciap_Prettifier_backtick($this, $variable); $variable = onciap_Prettifier_backtick($this, $relType); $ifExistsString = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($ifExistsString, $rt_s(497)), $command), 58), $variable), $rt_s(498)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($ifExistsString, $rt_s(496)), $command), 58), $variable), $rt_s(497)); $pattern = jl_StringBuilder_toString($ifExistsString); } else if ($entityName instanceof oncie_DynamicLabelExpression) { - $expression = $entityName.$expression(); + $expression = $entityName.$expression0(); $all = $entityName.$all(); $command = onciap_Prettifier_backtick($this, $variable); - $variable = onciap_Prettifier$asString$lambda$_38_0_apply($anyAll, sr_BoxesRunTime_boxToBoolean($all)); + $variable = onciap_Prettifier$asString$lambda$_39_0_apply($anyAll, sr_BoxesRunTime_boxToBoolean($all)); $ifExistsString = onciap_DefaultExpressionStringifier_apply(onciap_Prettifier_expr($this), $expression); $constraintType = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1($constraintType, 40), $command), 58), $variable), $rt_s(499)), $ifExistsString), $rt_s(500)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1($constraintType, 40), $command), 58), $variable), $rt_s(498)), $ifExistsString), $rt_s(499)); $pattern = jl_StringBuilder_toString($constraintType); } else { if (!($entityName instanceof oncie_DynamicRelTypeExpression)) $rt_throw(s_MatchError__init_($entityName)); - $expression = $entityName.$expression(); + $expression = $entityName.$expression0(); $all = $entityName.$all(); $command = onciap_Prettifier_backtick($this, $variable); - $variable = onciap_Prettifier$asString$lambda$_38_0_apply($anyAll, sr_BoxesRunTime_boxToBoolean($all)); + $variable = onciap_Prettifier$asString$lambda$_39_0_apply($anyAll, sr_BoxesRunTime_boxToBoolean($all)); $ifExistsString = onciap_DefaultExpressionStringifier_apply(onciap_Prettifier_expr($this), $expression); $constraintType = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($constraintType, $rt_s(497)), $command), 58), $variable), $rt_s(499)), $ifExistsString), $rt_s(501)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($constraintType, $rt_s(496)), $command), 58), $variable), $rt_s(498)), $ifExistsString), $rt_s(500)); $pattern = jl_StringBuilder_toString($constraintType); } $command = onciap_Prettifier_propertiesToString$1($this, $properties); $variable = onciap_Prettifier_asString($this, $options); $ifExistsString = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ifExistsString, $startOfCommand), $rt_s(502)), $pattern), $rt_s(503)), $command), $variable); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ifExistsString, $startOfCommand), $rt_s(501)), $pattern), $rt_s(502)), $command), $variable); $commandString = jl_StringBuilder_toString($ifExistsString); break a; } @@ -24723,7 +24846,7 @@ onciap_Prettifier_asString2 = ($this, $command) => { if (!$isNodeIndex) { $command = onciap_Prettifier_backtick($this, $variable); $variable = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(497)), $command), $rt_s(498)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(496)), $command), $rt_s(497)); $pattern = jl_StringBuilder_toString($variable); } else { $command = onciap_Prettifier_backtick($this, $variable); @@ -24732,13 +24855,13 @@ onciap_Prettifier_asString2 = ($this, $command) => { $pattern = jl_StringBuilder_toString($variable); } $command = $function.$name(); - $variable = (($function.$args()).$map(onciap_Prettifier$asString$lambda$_38_1__init_($this))).$mkString($rt_s(45)); + $variable = (($function.$args()).$map(onciap_Prettifier$asString$lambda$_39_1__init_($this))).$mkString($rt_s(45)); $ifExistsString = jl_StringBuilder__init_(); jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($ifExistsString, $command), 40), $variable), 41); $functionString = jl_StringBuilder_toString($ifExistsString); $command = onciap_Prettifier_asString($this, $options); $variable = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $startOfCommand), $rt_s(502)), $pattern), $rt_s(504)), $functionString), $command); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $startOfCommand), $rt_s(501)), $pattern), $rt_s(503)), $functionString), $command); $commandString = jl_StringBuilder_toString($variable); break a; } @@ -24759,7 +24882,7 @@ onciap_Prettifier_asString2 = ($this, $command) => { $variable = $ifExistsString.$name(); $startOfCommand = onciap_Prettifier_getStartOfCommand$1($name, $ifExistsDo, $indexType.$command()); if ($entityNames instanceof su_Left) { - $labelPattern = sc_AbstractIterable_mkString1(sci_List_map(su_Left_value($entityNames), onciap_Prettifier$asString$lambda$_38_2__init_0($this)), $rt_s(91), $rt_s(451), $rt_s(4)); + $labelPattern = sc_AbstractIterable_mkString1(sci_List_map(su_Left_value($entityNames), onciap_Prettifier$asString$lambda$_39_2__init_0($this)), $rt_s(92), $rt_s(449), $rt_s(4)); $command = onciap_Prettifier_backtick($this, $variable); $variable = jl_StringBuilder__init_(); jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1($variable, 40), $command), $labelPattern), 41); @@ -24767,16 +24890,16 @@ onciap_Prettifier_asString2 = ($this, $command) => { } else { if (!($entityNames instanceof su_Right)) $rt_throw(s_MatchError__init_($entityNames)); - $relTypePattern = sc_AbstractIterable_mkString1(sci_List_map(su_Right_value($entityNames), onciap_Prettifier$asString$lambda$_38_4__init_0($this)), $rt_s(91), $rt_s(451), $rt_s(4)); + $relTypePattern = sc_AbstractIterable_mkString1(sci_List_map(su_Right_value($entityNames), onciap_Prettifier$asString$lambda$_39_4__init_0($this)), $rt_s(92), $rt_s(449), $rt_s(4)); $command = onciap_Prettifier_backtick($this, $variable); $variable = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(497)), $command), $relTypePattern), $rt_s(498)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(496)), $command), $relTypePattern), $rt_s(497)); $pattern = jl_StringBuilder_toString($variable); } - $propertiesString = sc_AbstractIterable_mkString1(sci_List_map($properties, onciap_Prettifier$asString$lambda$_38_3__init_($this)), $rt_s(426), $rt_s(45), $rt_s(427)); + $propertiesString = sc_AbstractIterable_mkString1(sci_List_map($properties, onciap_Prettifier$asString$lambda$_39_3__init_($this)), $rt_s(424), $rt_s(45), $rt_s(425)); $command = onciap_Prettifier_asString($this, $options); $variable = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $startOfCommand), $rt_s(502)), $pattern), $rt_s(504)), $propertiesString), $command); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $startOfCommand), $rt_s(501)), $pattern), $rt_s(503)), $propertiesString), $command); $commandString = jl_StringBuilder_toString($variable); break a; } @@ -24784,11 +24907,11 @@ onciap_Prettifier_asString2 = ($this, $command) => { } if ($command instanceof oncia_DropIndexOnName) { $name = $command.$name1(); - $ifExistsString = !$command.$ifExists() ? $rt_s(4) : $rt_s(505); + $ifExistsString = !$command.$ifExists() ? $rt_s(4) : $rt_s(504); onciap_Prettifier$_$callClinit(); $command = onciap_Prettifier$_escapeName1(onciap_Prettifier$_MODULE$, $name); $variable = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(506)), $command), $ifExistsString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(505)), $command), $ifExistsString); $commandString = jl_StringBuilder_toString($variable); } else { if ($rt_isInstance($command, oncia_CreateConstraint)) { @@ -24804,8 +24927,8 @@ onciap_Prettifier_asString2 = ($this, $command) => { $options = s_Tuple7__7(s_Some_get($variable)); if ($ifExistsString !== null) { $variable = $ifExistsString.$name(); - $startOfCommand = onciap_Prettifier_getStartOfCommand$1($name, $ifExistsDo, $rt_s(507)); - $anyAll = onciap_Prettifier$asString$lambda$_38_5__init_(); + $startOfCommand = onciap_Prettifier_getStartOfCommand$1($name, $ifExistsDo, $rt_s(506)); + $anyAll = onciap_Prettifier$asString$lambda$_39_5__init_0(); if ($entityName instanceof oncie_LabelName) { $label = $entityName.$name(); $command = onciap_Prettifier_backtick($this, $variable); @@ -24818,34 +24941,34 @@ onciap_Prettifier_asString2 = ($this, $command) => { $command = onciap_Prettifier_backtick($this, $variable); $variable = onciap_Prettifier_backtick($this, $relType); $ifExistsString = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($ifExistsString, $rt_s(497)), $command), 58), $variable), $rt_s(498)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($ifExistsString, $rt_s(496)), $command), 58), $variable), $rt_s(497)); $pattern = jl_StringBuilder_toString($ifExistsString); } else if ($entityName instanceof oncie_DynamicLabelExpression) { - $expression = $entityName.$expression(); + $expression = $entityName.$expression0(); $all = $entityName.$all(); $ifExistsString = onciap_Prettifier_backtick($this, $variable); - $entityName = onciap_Prettifier$asString$lambda$_38_5_apply($anyAll, sr_BoxesRunTime_boxToBoolean($all)); + $entityName = onciap_Prettifier$asString$lambda$_39_5_apply($anyAll, sr_BoxesRunTime_boxToBoolean($all)); $name = onciap_DefaultExpressionStringifier_apply(onciap_Prettifier_expr($this), $expression); $command = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1($command, 40), $ifExistsString), 58), $entityName), $rt_s(499)), $name), $rt_s(500)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append1($command, 40), $ifExistsString), 58), $entityName), $rt_s(498)), $name), $rt_s(499)); $pattern = jl_StringBuilder_toString($command); } else { if (!($entityName instanceof oncie_DynamicRelTypeExpression)) $rt_throw(s_MatchError__init_($entityName)); - $expression = $entityName.$expression(); + $expression = $entityName.$expression0(); $all = $entityName.$all(); $ifExistsString = onciap_Prettifier_backtick($this, $variable); - $entityName = onciap_Prettifier$asString$lambda$_38_5_apply($anyAll, sr_BoxesRunTime_boxToBoolean($all)); + $entityName = onciap_Prettifier$asString$lambda$_39_5_apply($anyAll, sr_BoxesRunTime_boxToBoolean($all)); $name = onciap_DefaultExpressionStringifier_apply(onciap_Prettifier_expr($this), $expression); $command = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($command, $rt_s(497)), $ifExistsString), 58), $entityName), $rt_s(499)), $name), $rt_s(501)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($command, $rt_s(496)), $ifExistsString), 58), $entityName), $rt_s(498)), $name), $rt_s(500)); $pattern = jl_StringBuilder_toString($command); } $command = onciap_Prettifier_propertiesToString$1($this, $properties); $variable = $constraintType.$predicate0(); $ifExistsString = onciap_Prettifier_asString($this, $options); $properties = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($properties, $startOfCommand), $rt_s(502)), $pattern), $rt_s(508)), $command), 32), $variable), $ifExistsString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($properties, $startOfCommand), $rt_s(501)), $pattern), $rt_s(507)), $command), 32), $variable), $ifExistsString); $commandString = jl_StringBuilder_toString($properties); break a; } @@ -24854,16 +24977,16 @@ onciap_Prettifier_asString2 = ($this, $command) => { if (!($command instanceof oncia_DropConstraintOnName)) { $useString = new jl_IllegalStateException; $variable = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(509)), $command); + jl_StringBuilder_append(jl_StringBuilder_append($variable, $rt_s(508)), $command); jl_IllegalStateException__init_($useString, jl_StringBuilder_toString($variable)); $rt_throw($useString); } $name = $command.$name1(); - $ifExistsString = !$command.$ifExists() ? $rt_s(4) : $rt_s(505); + $ifExistsString = !$command.$ifExists() ? $rt_s(4) : $rt_s(504); onciap_Prettifier$_$callClinit(); $properties = onciap_Prettifier$_escapeName1(onciap_Prettifier$_MODULE$, $name); $command = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($command, $rt_s(510)), $properties), $ifExistsString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($command, $rt_s(509)), $properties), $ifExistsString); $commandString = jl_StringBuilder_toString($command); } } @@ -24871,12 +24994,12 @@ onciap_Prettifier_asString2 = ($this, $command) => { jl_StringBuilder_append(jl_StringBuilder_append($command, $useString), $commandString); return jl_StringBuilder_toString($command); }, -onciap_Prettifier_asString3 = ($this, $adminCommand) => { +onciap_Prettifier_asString4 = ($this, $adminCommand) => { let $useString, $ifExists, $roleName, $dryRun, $qualifiers, $asRevoke, $userName, $withAuth, $userOptions, $yields, $y, $r, $auth, $commandString, $roleName_0, $ifExistsDo, $externalAuths, $nativeAuth, $userNameString, $ifNotExists, $oldStyleNativeAuthString, $setAuthNativeString, $statusString, $homeDatabaseString, $externalAuthString, $fromUserName, $toUserName, $removeAuth, $ifExistsString, $removeAuthString, $removeHomeDatabase, $setHomeDatabaseString, $newPassword, $currentPassword, $withUsers, $ifExistsDo_0, $fromRole, $fromRoleName, $toRoleName, $roleNames, $userNames, $start, $qualifiers_0, $qualifier, $dbScope, $resource, $action, $graphScope, $qualifierString, $scope, $asCommand, $optionalName, $dbName, $options, $waitUntilComplete, $topology, $formattedOptions, $withoutNamespace, $p, $maybeTopologyString, $name, $ifExists_0, $aliasAction, $additionalAction, $maybeIfExists, $access, $optionsToRemove, $maybeAccessString, $formattedOptionsToRemove, $aliasName, $targetName, $propertiesString, $url, $username, $password, $driverSettings, $properties, $s, $urlString, $parameter, $driverSettingsString, $target, $an, $serverName, $optionString, $newName, $from, $to, $serverNames, $dryRunString, $targetString, $userString, $passwordString; a: { - $useString = onciap_Prettifier_asString1($this, $adminCommand.$useGraph()); + $useString = onciap_Prettifier_asString2($this, $adminCommand.$useGraph()); $ifExists = 0; $roleName = null; $dryRun = 0; @@ -24896,7 +25019,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = s_Tuple2__init_($y, $r); $y = s_Tuple2__1($roleName); $r = s_Tuple2__2($roleName); - $auth = !$withAuth ? $rt_s(4) : $rt_s(511); + $auth = !$withAuth ? $rt_s(4) : $rt_s(510); $adminCommand = oncia_ShowUsers_name($adminCommand); $roleName = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName, $adminCommand), $auth), $y), $r); @@ -24942,8 +25065,8 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { oncia_IfExistsInvalidSyntax$_$callClinit(); $ifExists = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, $ifExistsDo) ? 0 : 1; } - $ifNotExists = !$ifExists ? $rt_s(4) : $rt_s(512); - $roleName = s_Option_getOrElse(s_Option_map($nativeAuth, onciap_Prettifier$asString$lambda$_39_0__init_($this, $adminCommand)), onciap_Prettifier$asString$lambda$_39_1__init_0()); + $ifNotExists = !$ifExists ? $rt_s(4) : $rt_s(511); + $roleName = s_Option_getOrElse(s_Option_map($nativeAuth, onciap_Prettifier$asString$lambda$_40_0__init_0($this, $adminCommand)), onciap_Prettifier$asString$lambda$_40_1__init_()); if ($roleName === null) $rt_throw(s_MatchError__init_($roleName)); $roleName = s_Tuple2__init_($roleName.$_1(), $roleName.$_2()); @@ -24952,15 +25075,15 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { if (!s_Option_isDefined(oncia_UserOptions_suspended($userOptions))) $statusString = $rt_s(4); else { - $roleName = !sr_BoxesRunTime_unboxToBoolean((oncia_UserOptions_suspended($userOptions)).$get1()) ? $rt_s(513) : $rt_s(514); + $roleName = !sr_BoxesRunTime_unboxToBoolean((oncia_UserOptions_suspended($userOptions)).$get1()) ? $rt_s(512) : $rt_s(513); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(515)), $roleName); + jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(514)), $roleName); $statusString = jl_StringBuilder_toString($qualifiers); } - $homeDatabaseString = s_Option_getOrElse(s_Option_map(oncia_UserOptions_homeDatabase($userOptions), onciap_Prettifier$asString$lambda$_39_2__init_()), onciap_Prettifier$asString$lambda$_39_3__init_()); - $qualifiers = onciap_Prettifier$asString$lambda$_39_4__init_0(); + $homeDatabaseString = s_Option_getOrElse(s_Option_map(oncia_UserOptions_homeDatabase($userOptions), onciap_Prettifier$asString$lambda$_40_2__init_()), onciap_Prettifier$asString$lambda$_40_3__init_()); + $qualifiers = onciap_Prettifier$asString$lambda$_40_4__init_0(); sm_Ordering$String$_$callClinit(); - $externalAuthString = sc_AbstractIterable_mkString0(sci_List_map(sc_AbstractSeq_sortBy($externalAuths, $qualifiers, sm_Ordering$String$_MODULE$), onciap_Prettifier$asString$lambda$_39_5__init_($this))); + $externalAuthString = sc_AbstractIterable_mkString0(sci_List_map(sc_AbstractSeq_sortBy($externalAuths, $qualifiers, sm_Ordering$String$_MODULE$), onciap_Prettifier$asString$lambda$_40_5__init_($this))); $adminCommand = oncia_CreateUser_name($adminCommand); $roleName = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName, $adminCommand), 32), $userNameString), $ifNotExists), $oldStyleNativeAuthString), $statusString), $homeDatabaseString), $setAuthNativeString), $externalAuthString); @@ -24991,7 +25114,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { onciap_Prettifier$_$callClinit(); $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $userName); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(505)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(504)); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25007,9 +25130,9 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $removeAuth = s_Tuple6__6(s_Some_get($roleName_0)); onciap_Prettifier$_$callClinit(); $userNameString = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $userName); - $ifExistsString = !$ifExists ? $rt_s(4) : $rt_s(505); - $removeAuthString = oncia_RemoveAuth_all($removeAuth) ? $rt_s(516) : oncia_RemoveAuth_isEmpty($removeAuth) ? $rt_s(4) : sc_AbstractIterable_mkString1(sci_List_map(oncia_RemoveAuth_auths($removeAuth), onciap_Prettifier$asString$lambda$_39_12__init_0($this)), $rt_s(517), $rt_s(517), $rt_s(4)); - $roleName = s_Option_getOrElse(s_Option_map($nativeAuth, onciap_Prettifier$asString$lambda$_39_6__init_($this, $adminCommand)), onciap_Prettifier$asString$lambda$_39_7__init_0()); + $ifExistsString = !$ifExists ? $rt_s(4) : $rt_s(504); + $removeAuthString = oncia_RemoveAuth_all($removeAuth) ? $rt_s(515) : oncia_RemoveAuth_isEmpty($removeAuth) ? $rt_s(4) : sc_AbstractIterable_mkString1(sci_List_map(oncia_RemoveAuth_auths($removeAuth), onciap_Prettifier$asString$lambda$_40_12__init_($this)), $rt_s(516), $rt_s(516), $rt_s(4)); + $roleName = s_Option_getOrElse(s_Option_map($nativeAuth, onciap_Prettifier$asString$lambda$_40_6__init_($this, $adminCommand)), onciap_Prettifier$asString$lambda$_40_7__init_0()); if ($roleName === null) $rt_throw(s_MatchError__init_($roleName)); $roleName = s_Tuple2__init_($roleName.$_1(), $roleName.$_2()); @@ -25018,17 +25141,17 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { if (!s_Option_isDefined(oncia_UserOptions_suspended($userOptions))) $statusString = $rt_s(4); else { - $roleName = !sr_BoxesRunTime_unboxToBoolean((oncia_UserOptions_suspended($userOptions)).$get1()) ? $rt_s(513) : $rt_s(514); + $roleName = !sr_BoxesRunTime_unboxToBoolean((oncia_UserOptions_suspended($userOptions)).$get1()) ? $rt_s(512) : $rt_s(513); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(515)), $roleName); + jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(514)), $roleName); $statusString = jl_StringBuilder_toString($qualifiers); } s_Option$_$callClinit(); - $removeHomeDatabase = s_Option_getOrElse(sc_AbstractIterable_collectFirst(s_Option$_option2Iterable(s_Option$_MODULE$, oncia_UserOptions_homeDatabase($userOptions)), onciap_Prettifier$$anonfun$1__init_(null)), onciap_Prettifier$asString$lambda$_39_8__init_0()); - $setHomeDatabaseString = s_Option_getOrElse(sc_AbstractIterable_collectFirst(s_Option$_option2Iterable(s_Option$_MODULE$, oncia_UserOptions_homeDatabase($userOptions)), onciap_Prettifier$$anonfun$2__init_(null)), onciap_Prettifier$asString$lambda$_39_9__init_0()); - $qualifiers = onciap_Prettifier$asString$lambda$_39_10__init_(); + $removeHomeDatabase = s_Option_getOrElse(sc_AbstractIterable_collectFirst(s_Option$_option2Iterable(s_Option$_MODULE$, oncia_UserOptions_homeDatabase($userOptions)), onciap_Prettifier$$anonfun$1__init_(null)), onciap_Prettifier$asString$lambda$_40_8__init_0()); + $setHomeDatabaseString = s_Option_getOrElse(sc_AbstractIterable_collectFirst(s_Option$_option2Iterable(s_Option$_MODULE$, oncia_UserOptions_homeDatabase($userOptions)), onciap_Prettifier$$anonfun$2__init_(null)), onciap_Prettifier$asString$lambda$_40_9__init_0()); + $qualifiers = onciap_Prettifier$asString$lambda$_40_10__init_(); sm_Ordering$String$_$callClinit(); - $externalAuthString = sc_AbstractIterable_mkString0(sci_List_map(sc_AbstractSeq_sortBy($externalAuths, $qualifiers, sm_Ordering$String$_MODULE$), onciap_Prettifier$asString$lambda$_39_11__init_0($this))); + $externalAuthString = sc_AbstractIterable_mkString0(sci_List_map(sc_AbstractSeq_sortBy($externalAuths, $qualifiers, sm_Ordering$String$_MODULE$), onciap_Prettifier$asString$lambda$_40_11__init_0($this))); $adminCommand = oncia_AlterUser_name($adminCommand); $roleName = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName, $adminCommand), 32), $userNameString), $ifExistsString), $removeHomeDatabase), $removeAuthString), $oldStyleNativeAuthString), $statusString), $setHomeDatabaseString), $setAuthNativeString), $externalAuthString); @@ -25043,7 +25166,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = onciap_DefaultExpressionStringifier_escapePassword(onciap_Prettifier_expr($this), $currentPassword); $qualifiers = onciap_DefaultExpressionStringifier_escapePassword(onciap_Prettifier_expr($this), $newPassword); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $rt_s(518)), $roleName), $rt_s(519)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $rt_s(517)), $roleName), $rt_s(518)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25058,7 +25181,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $y = s_Tuple2__1($roleName); $r = s_Tuple2__2($roleName); $adminCommand = oncia_ShowRoles_name($adminCommand); - $roleName = !$withUsers ? $rt_s(4) : $rt_s(520); + $roleName = !$withUsers ? $rt_s(4) : $rt_s(519); $qualifiers = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $adminCommand), $roleName), $y), $r); $commandString = jl_StringBuilder_toString($qualifiers); @@ -25093,7 +25216,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { onciap_Prettifier$_$callClinit(); $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $roleName); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(512)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(511)); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25118,7 +25241,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $roleName_0); $qualifiers = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $fromRole); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(521)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(520)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25127,7 +25250,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $roleName_0); $qualifiers = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $fromRole); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(522)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(521)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25155,7 +25278,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { onciap_Prettifier$_$callClinit(); $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $roleName); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(505)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(504)); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25174,7 +25297,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $adminCommand = sc_AbstractIterable_mkString($roleNames.$map(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$)), $rt_s(45)); $roleName = sc_AbstractIterable_mkString($userNames.$map(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$)), $rt_s(45)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $start), 32), $adminCommand), $rt_s(519)), $roleName); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $start), 32), $adminCommand), $rt_s(518)), $roleName); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25193,7 +25316,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $adminCommand = sc_AbstractIterable_mkString($roleNames.$map(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$)), $rt_s(45)); $roleName = sc_AbstractIterable_mkString($userNames.$map(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$)), $rt_s(45)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $start), 32), $adminCommand), $rt_s(518)), $roleName); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $start), 32), $adminCommand), $rt_s(517)), $roleName); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25208,7 +25331,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$extractQualifierString(onciap_Prettifier$_MODULE$, $qualifiers); $qualifiers = onciap_Prettifier$_escapeNames(onciap_Prettifier$_MODULE$, $roleNames); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $roleName), $rt_s(523)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $roleName), $rt_s(522)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25225,7 +25348,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$extractQualifierString(onciap_Prettifier$_MODULE$, $qualifiers_0); $qualifiers = onciap_Prettifier$_escapeNames(onciap_Prettifier$_MODULE$, $roleNames); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $roleName), $rt_s(523)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $roleName), $rt_s(522)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25242,7 +25365,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$extractQualifierString(onciap_Prettifier$_MODULE$, $qualifiers_0); $qualifiers = onciap_Prettifier$_escapeNames(onciap_Prettifier$_MODULE$, $roleNames); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $roleName), $rt_s(524)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $roleName), $rt_s(523)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25255,7 +25378,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { if ($roleName instanceof oncia_DatabasePrivilege) { $dbScope = oncia_DatabasePrivilege_scope($roleName); onciap_Prettifier$_$callClinit(); - $commandString = onciap_Prettifier$_prettifyDatabasePrivilege(onciap_Prettifier$_MODULE$, oncia_GrantPrivilege_name($qualifiers), $dbScope, $qualifier, $rt_s(525), $roleNames); + $commandString = onciap_Prettifier$_prettifyDatabasePrivilege(onciap_Prettifier$_MODULE$, oncia_GrantPrivilege_name($qualifiers), $dbScope, $qualifier, $rt_s(524), $roleNames); break a; } } @@ -25266,7 +25389,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { if ($roleName instanceof oncia_DatabasePrivilege) { $dbScope = oncia_DatabasePrivilege_scope($roleName); onciap_Prettifier$_$callClinit(); - $commandString = onciap_Prettifier$_prettifyDatabasePrivilege(onciap_Prettifier$_MODULE$, oncia_DenyPrivilege_name($userName), $dbScope, $qualifier, $rt_s(525), $roleNames); + $commandString = onciap_Prettifier$_prettifyDatabasePrivilege(onciap_Prettifier$_MODULE$, oncia_DenyPrivilege_name($userName), $dbScope, $qualifier, $rt_s(524), $roleNames); break a; } } @@ -25277,7 +25400,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { if ($roleName instanceof oncia_DatabasePrivilege) { $dbScope = oncia_DatabasePrivilege_scope($roleName); onciap_Prettifier$_$callClinit(); - $commandString = onciap_Prettifier$_prettifyDatabasePrivilege(onciap_Prettifier$_MODULE$, oncia_RevokePrivilege_name($userOptions), $dbScope, $qualifier, $rt_s(526), $roleNames); + $commandString = onciap_Prettifier$_prettifyDatabasePrivilege(onciap_Prettifier$_MODULE$, oncia_RevokePrivilege_name($userOptions), $dbScope, $qualifier, $rt_s(525), $roleNames); break a; } } @@ -25292,7 +25415,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $graphScope = oncia_GraphPrivilege_scope($adminCommand); onciap_Prettifier$_$callClinit(); $qualifierString = onciap_Prettifier$_prettifyGraphQualifier(onciap_Prettifier$_MODULE$, $action, $qualifier); - $commandString = onciap_Prettifier$_prettifyGraphPrivilege(onciap_Prettifier$_MODULE$, oncia_GrantPrivilege_name($qualifiers), $graphScope, $qualifierString, $resource, $rt_s(525), $roleNames); + $commandString = onciap_Prettifier$_prettifyGraphPrivilege(onciap_Prettifier$_MODULE$, oncia_GrantPrivilege_name($qualifiers), $graphScope, $qualifierString, $resource, $rt_s(524), $roleNames); break a; } } @@ -25307,7 +25430,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $graphScope = oncia_GraphPrivilege_scope($adminCommand); onciap_Prettifier$_$callClinit(); $qualifierString = onciap_Prettifier$_prettifyGraphQualifier(onciap_Prettifier$_MODULE$, $action, $qualifier); - $commandString = onciap_Prettifier$_prettifyGraphPrivilege(onciap_Prettifier$_MODULE$, oncia_DenyPrivilege_name($userName), $graphScope, $qualifierString, $resource, $rt_s(525), $roleNames); + $commandString = onciap_Prettifier$_prettifyGraphPrivilege(onciap_Prettifier$_MODULE$, oncia_DenyPrivilege_name($userName), $graphScope, $qualifierString, $resource, $rt_s(524), $roleNames); break a; } } @@ -25322,7 +25445,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $graphScope = oncia_GraphPrivilege_scope($adminCommand); onciap_Prettifier$_$callClinit(); $qualifierString = onciap_Prettifier$_prettifyGraphQualifier(onciap_Prettifier$_MODULE$, $action, $qualifier); - $commandString = onciap_Prettifier$_prettifyGraphPrivilege(onciap_Prettifier$_MODULE$, oncia_RevokePrivilege_name($userOptions), $graphScope, $qualifierString, $resource, $rt_s(526), $roleNames); + $commandString = onciap_Prettifier$_prettifyGraphPrivilege(onciap_Prettifier$_MODULE$, oncia_RevokePrivilege_name($userOptions), $graphScope, $qualifierString, $resource, $rt_s(525), $roleNames); break a; } } @@ -25335,7 +25458,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_prettifyLoadPrivilegeQualifier(onciap_Prettifier$_MODULE$, onciap_Prettifier_expr($this)), $qualifiers_0); $qualifiers = onciap_Prettifier$_escapeNames(onciap_Prettifier$_MODULE$, $roleNames); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $rt_s(503)), $roleName), $rt_s(519)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $rt_s(502)), $roleName), $rt_s(518)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25349,7 +25472,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_prettifyLoadPrivilegeQualifier(onciap_Prettifier$_MODULE$, onciap_Prettifier_expr($this)), $qualifiers); $qualifiers = onciap_Prettifier$_escapeNames(onciap_Prettifier$_MODULE$, $roleNames); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $rt_s(503)), $roleName), $rt_s(519)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $rt_s(502)), $roleName), $rt_s(518)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25363,7 +25486,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_prettifyLoadPrivilegeQualifier(onciap_Prettifier$_MODULE$, onciap_Prettifier_expr($this)), $qualifiers); $qualifiers = onciap_Prettifier$_escapeNames(onciap_Prettifier$_MODULE$, $roleNames); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $rt_s(503)), $roleName), $rt_s(518)), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName_0, $adminCommand), $rt_s(502)), $roleName), $rt_s(517)), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25378,7 +25501,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $y = s_Tuple2__1($adminCommand); $r = s_Tuple2__2($adminCommand); $adminCommand = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($adminCommand, $rt_s(527)), $y), $r); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($adminCommand, $rt_s(526)), $y), $r); $commandString = jl_StringBuilder_toString($adminCommand); break a; } @@ -25398,7 +25521,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { onciap_Prettifier$_$callClinit(); $adminCommand = onciap_Prettifier$_extractScope(onciap_Prettifier$_MODULE$, $scope); $roleName = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName, $rt_s(528)), $adminCommand), $rt_s(529)), $y), $r); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName, $rt_s(527)), $adminCommand), $rt_s(528)), $y), $r); $commandString = jl_StringBuilder_toString($roleName); break a; } @@ -25416,11 +25539,11 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $adminCommand = s_Tuple2__init_($y, $r); $y = s_Tuple2__1($adminCommand); $r = s_Tuple2__2($adminCommand); - $asCommand = !$asRevoke ? $rt_s(530) : $rt_s(531); + $asCommand = !$asRevoke ? $rt_s(529) : $rt_s(530); onciap_Prettifier$_$callClinit(); $adminCommand = onciap_Prettifier$_extractScope(onciap_Prettifier$_MODULE$, $scope); $roleName = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName, $rt_s(528)), $adminCommand), $rt_s(529)), $asCommand), $y), $r); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName, $rt_s(527)), $adminCommand), $rt_s(528)), $asCommand), $y), $r); $commandString = jl_StringBuilder_toString($roleName); break a; } @@ -25476,7 +25599,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { s_package$_$callClinit(); $withoutNamespace = su_Right$_apply(s_package$_Right(s_package$_MODULE$), $p); } - $maybeTopologyString = s_Option_getOrElse(s_Option_map($topology, onciap_Prettifier$asString$lambda$_39_13__init_()), onciap_Prettifier$asString$lambda$_39_14__init_0()); + $maybeTopologyString = s_Option_getOrElse(s_Option_map($topology, onciap_Prettifier$asString$lambda$_40_13__init_0()), onciap_Prettifier$asString$lambda$_40_14__init_()); oncia_IfExistsDoNothing$_$callClinit(); if (jl_Object_equals(oncia_IfExistsDoNothing$_MODULE$, $ifExistsDo)) $ifExists = 1; @@ -25499,7 +25622,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = onciap_Prettifier$_escapeName1(onciap_Prettifier$_MODULE$, $withoutNamespace); $qualifiers = $waitUntilComplete.$name(); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(512)), $maybeTopologyString), $formattedOptions), $qualifiers); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(511)), $maybeTopologyString), $formattedOptions), $qualifiers); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25516,7 +25639,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { oncia_IfExistsDoNothing$_$callClinit(); $ifExists = !jl_Object_equals(oncia_IfExistsDoNothing$_MODULE$, $ifExistsDo) ? 0 : 1; } - $ifExists_0 = !$ifExists ? $rt_s(4) : $rt_s(512); + $ifExists_0 = !$ifExists ? $rt_s(4) : $rt_s(511); $adminCommand = oncia_CreateCompositeDatabase_name($adminCommand); onciap_Prettifier$_$callClinit(); $roleName = onciap_Prettifier$_MODULE$; @@ -25534,7 +25657,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $aliasAction = oncia_DropDatabase_aliasAction($adminCommand); $additionalAction = oncia_DropDatabase_additionalAction($adminCommand); $waitUntilComplete = oncia_DropDatabase_waitUntilComplete($adminCommand); - $maybeIfExists = !$ifExists ? $rt_s(4) : $rt_s(505); + $maybeIfExists = !$ifExists ? $rt_s(4) : $rt_s(504); $adminCommand = oncia_DropDatabase_name($adminCommand); onciap_Prettifier$_$callClinit(); $roleName = onciap_Prettifier$_MODULE$; @@ -25556,11 +25679,11 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $options = oncia_AlterDatabase_options($adminCommand); $optionsToRemove = oncia_AlterDatabase_optionsToRemove($adminCommand); $waitUntilComplete = oncia_AlterDatabase_waitUntilComplete($adminCommand); - $maybeAccessString = s_Option_getOrElse(s_Option_map($access, onciap_Prettifier$asString$lambda$_39_15__init_0()), onciap_Prettifier$asString$lambda$_39_16__init_0()); - $maybeIfExists = !$ifExists ? $rt_s(4) : $rt_s(505); - $maybeTopologyString = s_Option_getOrElse(s_Option_map($topology, onciap_Prettifier$asString$lambda$_39_17__init_()), onciap_Prettifier$asString$lambda$_39_18__init_0()); + $maybeAccessString = s_Option_getOrElse(s_Option_map($access, onciap_Prettifier$asString$lambda$_40_15__init_0()), onciap_Prettifier$asString$lambda$_40_16__init_0()); + $maybeIfExists = !$ifExists ? $rt_s(4) : $rt_s(504); + $maybeTopologyString = s_Option_getOrElse(s_Option_map($topology, onciap_Prettifier$asString$lambda$_40_17__init_0()), onciap_Prettifier$asString$lambda$_40_18__init_()); $formattedOptions = onciap_Prettifier_asIndividualOptions($this, $options); - $formattedOptionsToRemove = sc_AbstractIterable_mkString($optionsToRemove.$map(onciap_Prettifier$asString$lambda$_39_19__init_0($this)), $rt_s(4)); + $formattedOptionsToRemove = sc_AbstractIterable_mkString($optionsToRemove.$map(onciap_Prettifier$asString$lambda$_40_19__init_0($this)), $rt_s(4)); $adminCommand = oncia_AlterDatabase_name($adminCommand); onciap_Prettifier$_$callClinit(); $roleName = onciap_Prettifier$_MODULE$; @@ -25604,7 +25727,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $aliasName = oncia_CreateLocalDatabaseAlias_aliasName($adminCommand); $targetName = oncia_CreateLocalDatabaseAlias_targetName($adminCommand); $ifExistsDo = oncia_CreateLocalDatabaseAlias_ifExistsDo($adminCommand); - $propertiesString = onciap_Prettifier_propertiesMapToString($this, $rt_s(532), oncia_CreateLocalDatabaseAlias_properties($adminCommand)); + $propertiesString = onciap_Prettifier_propertiesMapToString($this, $rt_s(531), oncia_CreateLocalDatabaseAlias_properties($adminCommand)); oncia_IfExistsDoNothing$_$callClinit(); if (jl_Object_equals(oncia_IfExistsDoNothing$_MODULE$, $ifExistsDo)) $ifExists = 1; @@ -25620,7 +25743,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = onciap_Prettifier$_escapeName($roleName, $aliasName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = onciap_Prettifier$_escapeName(onciap_Prettifier$_MODULE$, $targetName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(533)), $qualifiers), $propertiesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(532)), $qualifiers), $propertiesString); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25631,7 +25754,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName = onciap_Prettifier$_escapeName($roleName, $aliasName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = onciap_Prettifier$_escapeName(onciap_Prettifier$_MODULE$, $targetName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $roleName_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(534)), $qualifiers), $propertiesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName_0, $adminCommand), 32), $roleName), $rt_s(533)), $qualifiers), $propertiesString); $commandString = jl_StringBuilder_toString($roleName_0); break a; } @@ -25653,8 +25776,8 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $parameter = su_Right_value($url); $urlString = onciap_DefaultExpressionStringifier_apply(onciap_Prettifier_expr($this), $parameter); } - $driverSettingsString = onciap_Prettifier_propertiesMapToString($this, $rt_s(535), $driverSettings); - $propertiesString = onciap_Prettifier_propertiesMapToString($this, $rt_s(532), $properties); + $driverSettingsString = onciap_Prettifier_propertiesMapToString($this, $rt_s(534), $driverSettings); + $propertiesString = onciap_Prettifier_propertiesMapToString($this, $rt_s(531), $properties); oncia_IfExistsDoNothing$_$callClinit(); if (jl_Object_equals(oncia_IfExistsDoNothing$_MODULE$, $ifExistsDo)) $ifExists = 1; @@ -25672,7 +25795,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName_0 = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $username); $ifExistsDo = onciap_DefaultExpressionStringifier_escapePassword(onciap_Prettifier_expr($this), $password); $ifExistsDo_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($ifExistsDo_0, $adminCommand), 32), $roleName), $rt_s(533)), $qualifiers), $rt_s(536)), $urlString), $rt_s(537)), $roleName_0), $rt_s(538)), $ifExistsDo), $driverSettingsString), $propertiesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($ifExistsDo_0, $adminCommand), 32), $roleName), $rt_s(532)), $qualifiers), $rt_s(535)), $urlString), $rt_s(536)), $roleName_0), $rt_s(537)), $ifExistsDo), $driverSettingsString), $propertiesString); $commandString = jl_StringBuilder_toString($ifExistsDo_0); break a; } @@ -25685,7 +25808,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $roleName_0 = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $username); $ifExistsDo = onciap_DefaultExpressionStringifier_escapePassword(onciap_Prettifier_expr($this), $password); $ifExistsDo_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($ifExistsDo_0, $adminCommand), 32), $roleName), $rt_s(534)), $qualifiers), $rt_s(536)), $urlString), $rt_s(537)), $roleName_0), $rt_s(538)), $ifExistsDo), $driverSettingsString), $propertiesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($ifExistsDo_0, $adminCommand), 32), $roleName), $rt_s(533)), $qualifiers), $rt_s(535)), $urlString), $rt_s(536)), $roleName_0), $rt_s(537)), $ifExistsDo), $driverSettingsString), $propertiesString); $commandString = jl_StringBuilder_toString($ifExistsDo_0); break a; } @@ -25698,7 +25821,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { s_DummyImplicit$_$callClinit(); $roleName = onciap_Prettifier$_escapeName($roleName, $aliasName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(539)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(538)); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25708,7 +25831,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { s_DummyImplicit$_$callClinit(); $roleName = onciap_Prettifier$_escapeName($roleName, $aliasName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(540)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(539)); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25717,8 +25840,8 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $targetName = oncia_AlterLocalDatabaseAlias_targetName($adminCommand); $ifExists = oncia_AlterLocalDatabaseAlias_ifExists($adminCommand); $properties = oncia_AlterLocalDatabaseAlias_properties($adminCommand); - $target = s_Option_getOrElse(s_Option_map($targetName, onciap_Prettifier$asString$lambda$_39_20__init_()), onciap_Prettifier$asString$lambda$_39_21__init_()); - $propertiesString = onciap_Prettifier_propertiesMapToString($this, $rt_s(532), $properties); + $target = s_Option_getOrElse(s_Option_map($targetName, onciap_Prettifier$asString$lambda$_40_20__init_0()), onciap_Prettifier$asString$lambda$_40_21__init_()); + $propertiesString = onciap_Prettifier_propertiesMapToString($this, $rt_s(531), $properties); if (!$ifExists) { $adminCommand = oncia_AlterLocalDatabaseAlias_name($adminCommand); onciap_Prettifier$_$callClinit(); @@ -25726,7 +25849,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { s_DummyImplicit$_$callClinit(); $roleName = onciap_Prettifier$_escapeName($roleName, $aliasName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(541)), $target), $propertiesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(540)), $target), $propertiesString); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25736,7 +25859,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { s_DummyImplicit$_$callClinit(); $roleName = onciap_Prettifier$_escapeName($roleName, $aliasName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(542)), $target), $propertiesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(541)), $target), $propertiesString); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25744,7 +25867,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { if ($adminCommand instanceof oncia_ShowAliases) { $aliasName = oncia_ShowAliases_aliasName($adminCommand); $yields = oncia_ShowAliases_yieldOrWhere($adminCommand); - $an = s_Option_getOrElse(s_Option_map($aliasName, onciap_Prettifier$asString$lambda$_39_22__init_0()), onciap_Prettifier$asString$lambda$_39_23__init_0()); + $an = s_Option_getOrElse(s_Option_map($aliasName, onciap_Prettifier$asString$lambda$_40_22__init_()), onciap_Prettifier$asString$lambda$_40_23__init_0()); $roleName = onciap_Prettifier_showClausesAsString$1($this, $yields); if ($roleName !== null) { $y = s_Tuple2__1($roleName); @@ -25755,7 +25878,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $r = s_Tuple2__2($roleName); $adminCommand = oncia_ShowAliases_name($adminCommand); $roleName = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName, $adminCommand), $an), $rt_s(539)), $y), $r); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleName, $adminCommand), $an), $rt_s(538)), $y), $r); $commandString = jl_StringBuilder_toString($roleName); break a; } @@ -25796,7 +25919,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $optionString = onciap_Prettifier_asString($this, $options); $adminCommand = oncia_AlterServer_name($adminCommand); $roleName = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName, $adminCommand), 32), $name), $rt_s(543)), $optionString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName, $adminCommand), 32), $name), $rt_s(542)), $optionString); $commandString = jl_StringBuilder_toString($roleName); break a; } @@ -25823,7 +25946,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { } $adminCommand = oncia_RenameServer_name($adminCommand); $roleName = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName, $adminCommand), 32), $from), $rt_s(519)), $to); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($roleName, $adminCommand), 32), $from), $rt_s(518)), $to); $commandString = jl_StringBuilder_toString($roleName); break a; } @@ -25866,7 +25989,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { if (!($adminCommand instanceof oncia_ReallocateDatabases)) { $useString = new jl_InternalError; $roleName = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($roleName, $rt_s(544)), $adminCommand); + jl_StringBuilder_append(jl_StringBuilder_append($roleName, $rt_s(543)), $adminCommand); jl_InternalError__init_($useString, jl_StringBuilder_toString($roleName)); $rt_throw($useString); } @@ -25876,13 +25999,13 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { } $adminCommand = oncia_ReallocateDatabases_name($adminCommand); $roleName = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($roleName, $rt_s(545)), $adminCommand); + jl_StringBuilder_append(jl_StringBuilder_append($roleName, $rt_s(544)), $adminCommand); $commandString = jl_StringBuilder_toString($roleName); break a; } $dryRun = oncia_DeallocateServers_dryRun($adminCommand); $serverNames = oncia_DeallocateServers_serverNames($adminCommand); - $dryRunString = !$dryRun ? $rt_s(4) : $rt_s(545); + $dryRunString = !$dryRun ? $rt_s(4) : $rt_s(544); if ($serverNames.$length() <= 1) $commandString = oncia_DeallocateServers_name($adminCommand); else { @@ -25891,7 +26014,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { jl_StringBuilder_append1(jl_StringBuilder_append($roleName, $adminCommand), 83); $commandString = jl_StringBuilder_toString($roleName); } - $adminCommand = sc_AbstractIterable_mkString($serverNames.$map(onciap_Prettifier$asString$lambda$_39_24__init_($this)), $rt_s(45)); + $adminCommand = sc_AbstractIterable_mkString($serverNames.$map(onciap_Prettifier$asString$lambda$_40_24__init_($this)), $rt_s(45)); $roleName = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append($roleName, $dryRunString), $commandString), 32), $adminCommand); $commandString = jl_StringBuilder_toString($roleName); @@ -25922,7 +26045,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $s = su_Left_value($qualifiers); $roleName = onciap_DefaultExpressionStringifier_quote(onciap_Prettifier_expr($this), $s); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(536)), $roleName); + jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(535)), $roleName); $urlString = jl_StringBuilder_toString($qualifiers); break b; } @@ -25933,7 +26056,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $parameter = su_Right_value($roleName); $roleName = onciap_DefaultExpressionStringifier_apply(onciap_Prettifier_expr($this), $parameter); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(536)), $roleName); + jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(535)), $roleName); $urlString = jl_StringBuilder_toString($qualifiers); break b; } @@ -25945,7 +26068,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { s_DummyImplicit$_$callClinit(); $roleName = onciap_Prettifier$_escapeName($roleName, $targetName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(546)), $roleName), $urlString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(545)), $roleName), $urlString); $targetString = jl_StringBuilder_toString($qualifiers); } if (!($username instanceof s_Some)) { @@ -25957,7 +26080,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { onciap_Prettifier$_$callClinit(); $roleName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $username); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(537)), $roleName); + jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(536)), $roleName); $userString = jl_StringBuilder_toString($qualifiers); } if (!($password instanceof s_Some)) { @@ -25968,11 +26091,11 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { $password = s_Some_value($password); $roleName = onciap_DefaultExpressionStringifier_escapePassword(onciap_Prettifier_expr($this), $password); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(538)), $roleName); + jl_StringBuilder_append(jl_StringBuilder_append($qualifiers, $rt_s(537)), $roleName); $passwordString = jl_StringBuilder_toString($qualifiers); } - $driverSettingsString = onciap_Prettifier_propertiesMapToString($this, $rt_s(535), $driverSettings); - $propertiesString = onciap_Prettifier_propertiesMapToString($this, $rt_s(532), $properties); + $driverSettingsString = onciap_Prettifier_propertiesMapToString($this, $rt_s(534), $driverSettings); + $propertiesString = onciap_Prettifier_propertiesMapToString($this, $rt_s(531), $properties); if (!$ifExists) { $adminCommand = oncia_AlterRemoteDatabaseAlias_name($adminCommand); onciap_Prettifier$_$callClinit(); @@ -25980,7 +26103,7 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { s_DummyImplicit$_$callClinit(); $roleName = onciap_Prettifier$_escapeName($roleName, $aliasName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(547)), $targetString), $userString), $passwordString), $driverSettingsString), $propertiesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(546)), $targetString), $userString), $passwordString), $driverSettingsString), $propertiesString); $commandString = jl_StringBuilder_toString($qualifiers); break a; } @@ -25990,21 +26113,21 @@ onciap_Prettifier_asString3 = ($this, $adminCommand) => { s_DummyImplicit$_$callClinit(); $roleName = onciap_Prettifier$_escapeName($roleName, $aliasName, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $qualifiers = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(548)), $targetString), $userString), $passwordString), $driverSettingsString), $propertiesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append($qualifiers, $adminCommand), 32), $roleName), $rt_s(547)), $targetString), $userString), $passwordString), $driverSettingsString), $propertiesString); $commandString = jl_StringBuilder_toString($qualifiers); } $adminCommand = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append($adminCommand, $useString), $commandString); return jl_StringBuilder_toString($adminCommand); }, -onciap_Prettifier_asString1 = ($this, $use) => { +onciap_Prettifier_asString2 = ($this, $use) => { let var$2; - var$2 = new onciap_Prettifier$asString$lambda$_40_0; - var$2.$_0402 = $this; + var$2 = new onciap_Prettifier$asString$lambda$_41_0; + var$2.$_0652 = $this; $use = s_Option_filter($use, var$2); - var$2 = new onciap_Prettifier$asString$lambda$_40_1; - var$2.$_0198 = $this; - return s_Option_getOrElse(s_Option_map($use, var$2), new onciap_Prettifier$asString$lambda$_40_2); + var$2 = new onciap_Prettifier$asString$lambda$_41_1; + var$2.$_016 = $this; + return s_Option_getOrElse(s_Option_map($use, var$2), new onciap_Prettifier$asString$lambda$_41_2); }, onciap_Prettifier_asString = ($this, $options) => { let $parameter, $map; @@ -26016,21 +26139,21 @@ onciap_Prettifier_asString = ($this, $options) => { $options = onciap_DefaultExpressionStringifier_apply($this.$expr1, $parameter); $map = new jl_StringBuilder; jl_AbstractStringBuilder__init_($map); - jl_StringBuilder_append(jl_StringBuilder_append($map, $rt_s(549)), $options); + jl_StringBuilder_append(jl_StringBuilder_append($map, $rt_s(548)), $options); return jl_AbstractStringBuilder_toString($map); } if (!($options instanceof oncia_OptionsMap)) $rt_throw(s_MatchError__init_($options)); - $map = $options.$map17; + $map = $options.$map16; if (!sc_IterableOnceOps_nonEmpty$($map)) - $options = $rt_s(550); + $options = $rt_s(549); else { - $options = new onciap_Prettifier$optionsToString$lambda$_42_0; - $options.$_0100 = $this; - $parameter = sc_IterableOnceOps_mkString$($map.$map($options), $rt_s(432), $rt_s(45), $rt_s(433)); + $options = new onciap_Prettifier$optionsToString$lambda$_43_0; + $options.$_0461 = $this; + $parameter = sc_IterableOnceOps_mkString$($map.$map($options), $rt_s(430), $rt_s(45), $rt_s(431)); $options = new jl_StringBuilder; jl_AbstractStringBuilder__init_($options); - jl_StringBuilder_append(jl_StringBuilder_append($options, $rt_s(549)), $parameter); + jl_StringBuilder_append(jl_StringBuilder_append($options, $rt_s(548)), $parameter); $options = jl_AbstractStringBuilder_toString($options); } return $options; @@ -26041,15 +26164,15 @@ onciap_Prettifier_asIndividualOptions = ($this, $options) => { if (jl_Object_equals(oncia_NoOptions$_MODULE$, $options)) return $rt_s(4); if ($options instanceof oncia_OptionsMap) { - $map = $options.$map17; - $options = new onciap_Prettifier$asIndividualOptions$lambda$_43_0; - $options.$_01055 = $this; + $map = $options.$map16; + $options = new onciap_Prettifier$asIndividualOptions$lambda$_44_0; + $options.$_0660 = $this; return sc_AbstractIterable_mkString($map.$map($options), $rt_s(4)); } if (!($options instanceof oncia_OptionsParam)) $rt_throw(s_MatchError__init_($options)); $options = new jl_InternalError; - jl_Throwable__init_0($options, $rt_s(551)); + jl_Throwable__init_($options, $rt_s(550)); $rt_throw($options); }, onciap_Prettifier_$anonfun$prettifySetItems$1 = ($$this, $x0$1) => { @@ -26059,32 +26182,32 @@ onciap_Prettifier_$anonfun$prettifySetItems$1 = ($$this, $x0$1) => { if ($x0$1 instanceof oncia_SetPropertyItem) { $x0$1 = $x0$1; $prop = $x0$1.$property2; - $exp = $x0$1.$expression29; + $exp = $x0$1.$expression32; $x0$1 = onciap_DefaultExpressionStringifier_apply($$this.$expr1, $prop); $$this = onciap_DefaultExpressionStringifier_apply($$this.$expr1, $exp); $entity = new jl_StringBuilder; jl_AbstractStringBuilder__init_($entity); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($entity, $x0$1), $rt_s(168)), $$this); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($entity, $x0$1), $rt_s(167)), $$this); return jl_AbstractStringBuilder_toString($entity); } if ($x0$1 instanceof oncia_SetDynamicPropertyItem) { $x0$1 = $x0$1; $prop = $x0$1.$dynamicPropertyLookup0; - $exp = $x0$1.$expression28; + $exp = $x0$1.$expression31; $x0$1 = onciap_DefaultExpressionStringifier_apply($$this.$expr1, $prop); $$this = onciap_DefaultExpressionStringifier_apply($$this.$expr1, $exp); $entity = new jl_StringBuilder; jl_AbstractStringBuilder__init_($entity); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($entity, $x0$1), $rt_s(168)), $$this); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($entity, $x0$1), $rt_s(167)), $$this); return jl_AbstractStringBuilder_toString($entity); } if ($x0$1 instanceof oncia_SetPropertyItems) { $x0$1 = $x0$1; $entity = $x0$1.$map3(); $items = $x0$1.$items(); - $x0$1 = new onciap_Prettifier$$anonfun$prettifySetItems$1$lambda$_60_0; - $x0$1.$_01198 = $$this; - $x0$1.$_1396 = $entity; + $x0$1 = new onciap_Prettifier$$anonfun$prettifySetItems$1$lambda$_61_0; + $x0$1.$_01167 = $$this; + $x0$1.$_1397 = $entity; return ($items.$map($x0$1)).$mkString($rt_s(45)); } if ($x0$1 instanceof oncia_SetLabelItem) { @@ -26105,59 +26228,59 @@ onciap_Prettifier_$anonfun$prettifySetItems$1 = ($$this, $x0$1) => { } if ($x0$1 instanceof oncia_SetIncludingPropertiesFromMapItem) { $x0$1 = $x0$1; - $variable = $x0$1.$variable12; + $variable = $x0$1.$variable11; $exp = $x0$1.$expression16; $x0$1 = onciap_DefaultExpressionStringifier_apply($$this.$expr1, $variable); $$this = onciap_DefaultExpressionStringifier_apply($$this.$expr1, $exp); $entity = new jl_StringBuilder; jl_AbstractStringBuilder__init_($entity); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($entity, $x0$1), $rt_s(170)), $$this); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($entity, $x0$1), $rt_s(169)), $$this); return jl_AbstractStringBuilder_toString($entity); } if (!($x0$1 instanceof oncia_SetExactPropertiesFromMapItem)) $rt_throw(s_MatchError__init_($x0$1)); $x0$1 = $x0$1; - $variable = $x0$1.$variable11; + $variable = $x0$1.$variable10; $exp = $x0$1.$expression15; $x0$1 = onciap_DefaultExpressionStringifier_apply($$this.$expr1, $variable); $$this = onciap_DefaultExpressionStringifier_apply($$this.$expr1, $exp); $entity = new jl_StringBuilder; jl_AbstractStringBuilder__init_($entity); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($entity, $x0$1), $rt_s(168)), $$this); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($entity, $x0$1), $rt_s(167)), $$this); return jl_AbstractStringBuilder_toString($entity); }, onciap_Prettifier_propertiesToString$1 = ($this, $properties) => { let var$2; - var$2 = new onciap_Prettifier$propertiesToString$1$lambda$_68_0; - var$2.$_01186 = $this; + var$2 = new onciap_Prettifier$propertiesToString$1$lambda$_69_0; + var$2.$_01159 = $this; return ($properties.$map(var$2)).$mkString0($rt_s(40), $rt_s(45), $rt_s(42)); }, onciap_Prettifier_getStartOfCommand$1 = ($name, $ifExistsDo, $schemaType) => { let $nameString; - $nameString = s_Option_getOrElse(s_Option_map($name, new onciap_Prettifier$getStartOfCommand$1$lambda$_72_0), new onciap_Prettifier$getStartOfCommand$1$lambda$_72_1); + $nameString = s_Option_getOrElse(s_Option_map($name, new onciap_Prettifier$getStartOfCommand$1$lambda$_73_0), new onciap_Prettifier$getStartOfCommand$1$lambda$_73_1); oncia_IfExistsDoNothing$_$callClinit(); if (jl_Object_equals(oncia_IfExistsDoNothing$_MODULE$, $ifExistsDo)) { $name = new jl_StringBuilder; jl_AbstractStringBuilder__init_($name); - $ifExistsDo = jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(552)), $schemaType); + $ifExistsDo = jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(551)), $schemaType); jl_AbstractStringBuilder_append0($ifExistsDo, 32); - jl_StringBuilder_append(jl_StringBuilder_append($ifExistsDo, $nameString), $rt_s(553)); + jl_StringBuilder_append(jl_StringBuilder_append($ifExistsDo, $nameString), $rt_s(552)); return jl_AbstractStringBuilder_toString($name); } oncia_IfExistsInvalidSyntax$_$callClinit(); if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, $ifExistsDo)) { $name = new jl_StringBuilder; jl_AbstractStringBuilder__init_($name); - $ifExistsDo = jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(554)), $schemaType); + $ifExistsDo = jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(553)), $schemaType); jl_AbstractStringBuilder_append0($ifExistsDo, 32); - jl_StringBuilder_append(jl_StringBuilder_append($ifExistsDo, $nameString), $rt_s(553)); + jl_StringBuilder_append(jl_StringBuilder_append($ifExistsDo, $nameString), $rt_s(552)); return jl_AbstractStringBuilder_toString($name); } oncia_IfExistsReplace$_$callClinit(); if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, $ifExistsDo)) { $name = new jl_StringBuilder; jl_AbstractStringBuilder__init_($name); - $ifExistsDo = jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(554)), $schemaType); + $ifExistsDo = jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(553)), $schemaType); jl_AbstractStringBuilder_append0($ifExistsDo, 32); jl_StringBuilder_append($ifExistsDo, $nameString); return jl_AbstractStringBuilder_toString($name); @@ -26167,7 +26290,7 @@ onciap_Prettifier_getStartOfCommand$1 = ($name, $ifExistsDo, $schemaType) => { $rt_throw(s_MatchError__init_($ifExistsDo)); $name = new jl_StringBuilder; jl_AbstractStringBuilder__init_($name); - $ifExistsDo = jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(552)), $schemaType); + $ifExistsDo = jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(551)), $schemaType); jl_AbstractStringBuilder_append0($ifExistsDo, 32); jl_StringBuilder_append($ifExistsDo, $nameString); return jl_AbstractStringBuilder_toString($name); @@ -26188,17 +26311,17 @@ onciap_Prettifier_showClausesAsString$1 = ($this, $yieldOrWhere) => { $r = $r.$_2(); $yieldOrWhere = new s_Tuple2; $w = $this.$NL0; - var$7 = onciap_Prettifier$IndentingQueryPrettifier_asString7($ind, $y); + var$7 = onciap_Prettifier$IndentingQueryPrettifier_asString9($ind, $y); $y = new jl_StringBuilder; jl_AbstractStringBuilder__init_($y); jl_StringBuilder_append(jl_StringBuilder_append($y, $w), var$7); $w = jl_AbstractStringBuilder_toString($y); - $y = new onciap_Prettifier$showClausesAsString$1$lambda$_82_0; - $y.$_0655 = $ind; + $y = new onciap_Prettifier$showClausesAsString$1$lambda$_83_0; + $y.$_0487 = $ind; $y = s_Option_map($r, $y); - $ind = new onciap_Prettifier$showClausesAsString$1$lambda$_82_1; - $ind.$_011 = $this; - s_Tuple2__init_0($yieldOrWhere, $w, s_Option_getOrElse(s_Option_map($y, $ind), new onciap_Prettifier$showClausesAsString$1$lambda$_82_2)); + $ind = new onciap_Prettifier$showClausesAsString$1$lambda$_83_1; + $ind.$_01008 = $this; + s_Tuple2__init_0($yieldOrWhere, $w, s_Option_getOrElse(s_Option_map($y, $ind), new onciap_Prettifier$showClausesAsString$1$lambda$_83_2)); return $yieldOrWhere; } } @@ -26223,7 +26346,7 @@ onciap_Prettifier_showClausesAsString$1 = ($this, $yieldOrWhere) => { }, onciap_Prettifier_$anonfun$asString$21 = ($$this, $x10$1, $auth) => { let $maybeChangeString, $changeString, $ind, var$7, var$8, $password, $passwordString, $authString; - $maybeChangeString = s_Option_map(oncia_NativeAuth_changeRequired($auth), new onciap_Prettifier$$anonfun$asString$21$lambda$_94_0); + $maybeChangeString = s_Option_map(oncia_NativeAuth_changeRequired($auth), new onciap_Prettifier$$anonfun$asString$21$lambda$_95_0); $changeString = s_Tuple2__init_(oncia_NativeAuth_password($auth), $maybeChangeString); $auth = $changeString.$_10; $changeString = $changeString.$_20; @@ -26234,7 +26357,7 @@ onciap_Prettifier_$anonfun$asString$21 = ($$this, $x10$1, $auth) => { $$this = new s_Tuple2; $x10$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($x10$1); - jl_StringBuilder_append(jl_StringBuilder_append($x10$1, $rt_s(555)), $changeString); + jl_StringBuilder_append(jl_StringBuilder_append($x10$1, $rt_s(554)), $changeString); s_Tuple2__init_0($$this, jl_AbstractStringBuilder_toString($x10$1), $rt_s(4)); return $$this; } @@ -26245,7 +26368,7 @@ onciap_Prettifier_$anonfun$asString$21 = ($$this, $x10$1, $auth) => { var$8 = var$7.data; $maybeChangeString = new jl_StringBuilder; jl_AbstractStringBuilder__init_($maybeChangeString); - jl_StringBuilder_append(jl_StringBuilder_append($maybeChangeString, $rt_s(556)), $changeString); + jl_StringBuilder_append(jl_StringBuilder_append($maybeChangeString, $rt_s(555)), $changeString); var$8[0] = jl_AbstractStringBuilder_toString($maybeChangeString); s_Tuple2__init_0($$this, $rt_s(4), onciap_Prettifier$IndentingQueryPrettifier_getNativeAuthAsString($ind, sr_ScalaRunTime$_wrapRefArray($auth, var$7))); return $$this; @@ -26253,10 +26376,10 @@ onciap_Prettifier_$anonfun$asString$21 = ($$this, $x10$1, $auth) => { return s_Tuple2__init_($rt_s(4), $rt_s(4)); } $password = $auth.$value5; - $auth = !$password.$isEncrypted ? $rt_s(4) : $rt_s(557); + $auth = !$password.$isEncrypted ? $rt_s(4) : $rt_s(556); $maybeChangeString = new jl_StringBuilder; jl_AbstractStringBuilder__init_($maybeChangeString); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($maybeChangeString, $rt_s(167)), $auth), $rt_s(558)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($maybeChangeString, $rt_s(166)), $auth), $rt_s(557)); $ind = jl_AbstractStringBuilder_toString($maybeChangeString); $passwordString = onciap_DefaultExpressionStringifier_escapePassword($$this.$expr1, $password.$password3); $auth = new jl_StringBuilder; @@ -26267,7 +26390,7 @@ onciap_Prettifier_$anonfun$asString$21 = ($$this, $x10$1, $auth) => { $auth = jl_AbstractStringBuilder_toString($auth); if ($x10$1.$useOldStyleNativeAuth) { $$this = new s_Tuple2; - $x10$1 = s_Option_getOrElse($changeString, new onciap_Prettifier$$anonfun$asString$21$lambda$_94_1); + $x10$1 = s_Option_getOrElse($changeString, new onciap_Prettifier$$anonfun$asString$21$lambda$_95_1); $maybeChangeString = new jl_StringBuilder; jl_AbstractStringBuilder__init_($maybeChangeString); jl_AbstractStringBuilder_append0($maybeChangeString, 32); @@ -26289,7 +26412,7 @@ onciap_Prettifier_$anonfun$asString$21 = ($$this, $x10$1, $auth) => { $x10$1 = $changeString.$get1(); $auth = new jl_StringBuilder; jl_AbstractStringBuilder__init_($auth); - jl_StringBuilder_append(jl_StringBuilder_append($auth, $rt_s(556)), $x10$1); + jl_StringBuilder_append(jl_StringBuilder_append($auth, $rt_s(555)), $x10$1); var$8[1] = jl_AbstractStringBuilder_toString($auth); $authString = onciap_Prettifier$IndentingQueryPrettifier_getNativeAuthAsString($ind, sr_ScalaRunTime$_wrapRefArray($$this, var$7)); } @@ -26298,10 +26421,10 @@ onciap_Prettifier_$anonfun$asString$21 = ($$this, $x10$1, $auth) => { onciap_Prettifier__init_ = ($this, $expr, $extension, $useInCommands) => { let $$je; $this.$expr1 = $expr; - $this.$extension0 = $extension; + $this.$extension = $extension; $this.$useInCommands = $useInCommands; - $this.$NL0 = $rt_s(93); - $this.$BASE_INDENT = $rt_s(82); + $this.$NL0 = $rt_s(94); + $this.$BASE_INDENT = $rt_s(83); $expr = new onciap_Prettifier$IndentingQueryPrettifier; if ($this.$IndentingQueryPrettifier$module === null) { jl_Object_monitorEnterSync($this); @@ -26345,14 +26468,14 @@ onciap_Prettifier$__clinit_ = () => { }, onciap_Prettifier$_prettifyRename = ($this, $commandName, $fromName, $toName, $ifExists) => { let $maybeIfExists, var$6; - $maybeIfExists = !$ifExists ? $rt_s(4) : $rt_s(505); + $maybeIfExists = !$ifExists ? $rt_s(4) : $rt_s(504); $fromName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0($this), $fromName); $toName = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0($this), $toName); var$6 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$6); $commandName = jl_StringBuilder_append(var$6, $commandName); jl_AbstractStringBuilder_append0($commandName, 32); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($commandName, $fromName), $maybeIfExists), $rt_s(519)), $toName); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($commandName, $fromName), $maybeIfExists), $rt_s(518)), $toName); return jl_AbstractStringBuilder_toString(var$6); }, onciap_Prettifier$_extractScope = ($this, $scope) => { @@ -26360,11 +26483,11 @@ onciap_Prettifier$_extractScope = ($this, $scope) => { if ($scope instanceof oncia_ShowUserPrivileges) { $name = $scope.$user; if (!s_Option_isDefined($name)) - return $rt_s(559); + return $rt_s(558); $scope = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0($this), $name.$get1()); $names = new jl_StringBuilder; jl_AbstractStringBuilder__init_($names); - jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(560)), $scope); + jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(559)), $scope); return jl_AbstractStringBuilder_toString($names); } if ($scope instanceof oncia_ShowUsersPrivileges) { @@ -26373,32 +26496,32 @@ onciap_Prettifier$_extractScope = ($this, $scope) => { $scope = onciap_Prettifier$_escapeNames($this, $names); $names = new jl_StringBuilder; jl_AbstractStringBuilder__init_($names); - jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(561)), $scope); + jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(560)), $scope); return jl_AbstractStringBuilder_toString($names); } $scope = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0($this), $names.$head()); $names = new jl_StringBuilder; jl_AbstractStringBuilder__init_($names); - jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(560)), $scope); + jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(559)), $scope); return jl_AbstractStringBuilder_toString($names); } if (!($scope instanceof oncia_ShowRolesPrivileges)) { if (!($scope instanceof oncia_ShowAllPrivileges)) - return $rt_s(562); - return $rt_s(563); + return $rt_s(561); + return $rt_s(562); } $names = $scope.$roles; if ($names.$length() != 1) { $scope = onciap_Prettifier$_escapeNames($this, $names); $names = new jl_StringBuilder; jl_AbstractStringBuilder__init_($names); - jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(564)), $scope); + jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(563)), $scope); return jl_AbstractStringBuilder_toString($names); } $scope = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0($this), $names.$head()); $names = new jl_StringBuilder; jl_AbstractStringBuilder__init_($names); - jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(565)), $scope); + jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(564)), $scope); return jl_AbstractStringBuilder_toString($names); }, onciap_Prettifier$_prettifyDatabasePrivilege = ($this, $privilegeName, $dbScope, $qualifier, $preposition, $roleNames) => { @@ -26416,24 +26539,24 @@ onciap_Prettifier$_prettifyDatabasePrivilege = ($this, $privilegeName, $dbScope, if ($home) { $dbScope = new jl_StringBuilder; jl_AbstractStringBuilder__init_($dbScope); - jl_StringBuilder_append(jl_StringBuilder_append($dbScope, $dbName), $rt_s(566)); + jl_StringBuilder_append(jl_StringBuilder_append($dbScope, $dbName), $rt_s(565)); $db = jl_AbstractStringBuilder_toString($dbScope); } else if (!$multiple) { $dbScope = new jl_StringBuilder; jl_AbstractStringBuilder__init_($dbScope); - jl_StringBuilder_append(jl_StringBuilder_append($dbScope, $rt_s(567)), $dbName); + jl_StringBuilder_append(jl_StringBuilder_append($dbScope, $rt_s(566)), $dbName); $db = jl_AbstractStringBuilder_toString($dbScope); } else { $dbScope = new jl_StringBuilder; jl_AbstractStringBuilder__init_($dbScope); - jl_StringBuilder_append(jl_StringBuilder_append($dbScope, $rt_s(568)), $dbName); + jl_StringBuilder_append(jl_StringBuilder_append($dbScope, $rt_s(567)), $dbName); $db = jl_AbstractStringBuilder_toString($dbScope); } $dbScope = onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$extractQualifierString($this, $qualifier); $qualifier = onciap_Prettifier$_escapeNames($this, $roleNames); $roleNames = new jl_StringBuilder; jl_AbstractStringBuilder__init_($roleNames); - $privilegeName = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleNames, $privilegeName), $dbScope), $rt_s(503)), $db); + $privilegeName = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($roleNames, $privilegeName), $dbScope), $rt_s(502)), $db); jl_AbstractStringBuilder_append0($privilegeName, 32); $privilegeName = jl_StringBuilder_append($privilegeName, $preposition); jl_AbstractStringBuilder_append0($privilegeName, 32); @@ -26450,11 +26573,10 @@ onciap_Prettifier$_prettifyGraphPrivilege = ($this, $privilegeName, $graphScope, $name = $resource; $names = $name.$value5; if ($names instanceof oncia_PropertyResource) { - $name = $names.$property5; - $name = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $name, 0, 0); + $resource = onu_Stringifier_backtick($names.$property5); $names = new jl_StringBuilder; jl_AbstractStringBuilder__init_($names); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(569)), $name), 125); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($names, $rt_s(568)), $resource), 125); $resourceName = jl_AbstractStringBuilder_toString($names); break a; } @@ -26462,22 +26584,21 @@ onciap_Prettifier$_prettifyGraphPrivilege = ($this, $privilegeName, $graphScope, if (var$7) { $names = $name.$value5; if ($names instanceof oncia_PropertiesResource) { - $name = sc_AbstractIterable_mkString($names.$properties12.$map(new onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0), $rt_s(45)); + $name = sc_AbstractIterable_mkString($names.$properties14.$map(new onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0), $rt_s(45)); $resource = new jl_StringBuilder; jl_AbstractStringBuilder__init_($resource); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($resource, $rt_s(569)), $name), 125); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($resource, $rt_s(568)), $name), 125); $resourceName = jl_AbstractStringBuilder_toString($resource); break a; } } if (var$7 && $name.$value5 instanceof oncia_AllPropertyResource) - $resourceName = $rt_s(570); + $resourceName = $rt_s(569); else { if (var$7) { $names = $name.$value5; if ($names instanceof oncia_LabelResource) { - $name = $names.$label3; - $names = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $name, 0, 0); + $names = onu_Stringifier_backtick($names.$label3); $resource = new jl_StringBuilder; jl_AbstractStringBuilder__init_($resource); jl_AbstractStringBuilder_append0($resource, 32); @@ -26499,14 +26620,14 @@ onciap_Prettifier$_prettifyGraphPrivilege = ($this, $privilegeName, $graphScope, } } if (var$7 && $name.$value5 instanceof oncia_AllLabelResource) - $resourceName = $rt_s(571); + $resourceName = $rt_s(570); else { if (!jl_Object_equals(s_None$_MODULE$, $resource)) { $privilegeName = new jl_IllegalStateException; $graphScope = new jl_StringBuilder; jl_AbstractStringBuilder__init_($graphScope); - jl_StringBuilder_append(jl_StringBuilder_append($graphScope, $rt_s(572)), $resource); - jl_Throwable__init_0($privilegeName, jl_AbstractStringBuilder_toString($graphScope)); + jl_StringBuilder_append(jl_StringBuilder_append($graphScope, $rt_s(571)), $resource); + jl_Throwable__init_($privilegeName, jl_AbstractStringBuilder_toString($graphScope)); $rt_throw($privilegeName); } $resourceName = $rt_s(4); @@ -26522,12 +26643,12 @@ onciap_Prettifier$_prettifyGraphPrivilege = ($this, $privilegeName, $graphScope, $graphScope = onciap_Prettifier$_escapeName($this, $resource, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $resource = new jl_StringBuilder; jl_AbstractStringBuilder__init_($resource); - jl_StringBuilder_append(jl_StringBuilder_append($resource, $rt_s(573)), $graphScope); + jl_StringBuilder_append(jl_StringBuilder_append($resource, $rt_s(572)), $graphScope); $graphScope = jl_AbstractStringBuilder_toString($resource); } else if ($graphScope instanceof oncia_AllGraphsScope) - $graphScope = $rt_s(574); + $graphScope = $rt_s(573); else if ($graphScope instanceof oncia_HomeGraphScope) - $graphScope = $rt_s(575); + $graphScope = $rt_s(574); else { if ($graphScope instanceof oncia_NamedGraphsScope) { var$7 = 1; @@ -26536,41 +26657,40 @@ onciap_Prettifier$_prettifyGraphPrivilege = ($this, $privilegeName, $graphScope, if ($name !== null) { s_package$_$callClinit(); s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $name); if (!$name.$lengthCompare(1)) { $graphScope = $name.$apply1(0); s_DummyImplicit$_$callClinit(); - $graphScope = onciap_Prettifier$_escapeName($this, $graphScope, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - $resource = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($resource); - jl_StringBuilder_append(jl_StringBuilder_append($resource, $rt_s(573)), $graphScope); - $graphScope = jl_AbstractStringBuilder_toString($resource); + $names = onciap_Prettifier$_escapeName($this, $graphScope, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + $graphScope = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($graphScope); + jl_StringBuilder_append(jl_StringBuilder_append($graphScope, $rt_s(572)), $names); + $graphScope = jl_AbstractStringBuilder_toString($graphScope); break b; } } } if (!var$7) $rt_throw(s_MatchError__init_($graphScope)); - $resource = $resource.$graphs; + $graphScope = $resource.$graphs; s_DummyImplicit$_$callClinit(); - $graphScope = onciap_Prettifier$_escapeNames0($this, $resource, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + $graphScope = onciap_Prettifier$_escapeNames0($this, $graphScope, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); $resource = new jl_StringBuilder; jl_AbstractStringBuilder__init_($resource); - jl_StringBuilder_append(jl_StringBuilder_append($resource, $rt_s(576)), $graphScope); + jl_StringBuilder_append(jl_StringBuilder_append($resource, $rt_s(575)), $graphScope); $graphScope = jl_AbstractStringBuilder_toString($resource); } } $scope = jl_String_valueOf($graphScope); - $roleNames = onciap_Prettifier$_escapeNames($this, $roleNames); - $graphScope = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($graphScope); - $privilegeName = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($graphScope, $privilegeName), $resourceName), $rt_s(503)), $scope), $qualifierString); + $graphScope = onciap_Prettifier$_escapeNames($this, $roleNames); + $resource = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resource); + $privilegeName = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($resource, $privilegeName), $resourceName), $rt_s(502)), $scope), $qualifierString); jl_AbstractStringBuilder_append0($privilegeName, 32); $privilegeName = jl_StringBuilder_append($privilegeName, $preposition); jl_AbstractStringBuilder_append0($privilegeName, 32); - jl_StringBuilder_append($privilegeName, $roleNames); - return jl_AbstractStringBuilder_toString($graphScope); + jl_StringBuilder_append($privilegeName, $graphScope); + return jl_AbstractStringBuilder_toString($resource); }, onciap_Prettifier$_prettifyLoadPrivilegeQualifier = ($this, $expr) => { let var$2; @@ -26579,7 +26699,7 @@ onciap_Prettifier$_prettifyLoadPrivilegeQualifier = ($this, $expr) => { return var$2; }, onciap_Prettifier$_prettifyGraphQualifier = ($this, $action, $qualifier) => { - if (!jl_String_equals($action.$name18, $rt_s(33)) && !jl_String_equals($action.$name18, $rt_s(577)) && !jl_String_equals($action.$name18, $rt_s(578))) + if (!jl_String_equals($action.$name13, $rt_s(33)) && !jl_String_equals($action.$name13, $rt_s(576)) && !jl_String_equals($action.$name13, $rt_s(577))) return onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$extractQualifierString($this, $qualifier); return $rt_s(4); }, @@ -26596,7 +26716,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { var$4 = new s_Some; $qualifier = sc_AbstractIterable_mkString(sci_List_map(var$3, onciap_Prettifier$_stringify$1()), $rt_s(45)); var$3 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(579)), $qualifier); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(578)), $qualifier); s_Some__init_0(var$4, jl_StringBuilder_toString(var$3)); return var$4; } @@ -26605,7 +26725,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = new s_Some; var$3 = sc_AbstractIterable_mkString(sci_List_map(var$3, onciap_Prettifier$_stringify$1()), $rt_s(45)); var$4 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(580)), var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(579)), var$3); s_Some__init_0($qualifier, jl_StringBuilder_toString(var$4)); return $qualifier; } @@ -26613,7 +26733,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = sci_$colon$colon_head(var$3); var$4 = sci_$colon$colon_next$access$1(var$3); if ($qualifier instanceof oncia_LabelAllQualifier && sci_List_equals(sci_Nil$_MODULE$, var$4)) - return s_Some__init_($rt_s(581)); + return s_Some__init_($rt_s(580)); } if (var$2) { $qualifier = sci_$colon$colon_head(var$3); @@ -26622,7 +26742,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = new s_Some; var$3 = sc_AbstractIterable_mkString(sci_List_map(var$3, onciap_Prettifier$_stringify$1()), $rt_s(45)); var$4 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(582)), var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(581)), var$3); s_Some__init_0($qualifier, jl_StringBuilder_toString(var$4)); return $qualifier; } @@ -26631,7 +26751,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = new s_Some; var$3 = sc_AbstractIterable_mkString(sci_List_map(var$3, onciap_Prettifier$_stringify$1()), $rt_s(45)); var$4 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(583)), var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(582)), var$3); s_Some__init_0($qualifier, jl_StringBuilder_toString(var$4)); return $qualifier; } @@ -26639,13 +26759,13 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = sci_$colon$colon_head(var$3); var$4 = sci_$colon$colon_next$access$1(var$3); if ($qualifier instanceof oncia_RelationshipAllQualifier && sci_List_equals(sci_Nil$_MODULE$, var$4)) - return s_Some__init_($rt_s(584)); + return s_Some__init_($rt_s(583)); } if (var$2 && sci_$colon$colon_head(var$3) instanceof oncia_ElementQualifier) { $qualifier = new s_Some; var$3 = sc_AbstractIterable_mkString(sci_List_map(var$3, onciap_Prettifier$_stringify$1()), $rt_s(45)); var$4 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(585)), var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(584)), var$3); s_Some__init_0($qualifier, jl_StringBuilder_toString(var$4)); return $qualifier; } @@ -26653,7 +26773,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = sci_$colon$colon_head(var$3); var$4 = sci_$colon$colon_next$access$1(var$3); if ($qualifier instanceof oncia_ElementsAllQualifier && sci_List_equals(sci_Nil$_MODULE$, var$4)) - return s_Some__init_($rt_s(586)); + return s_Some__init_($rt_s(585)); } if (var$2) { $qualifier = sci_$colon$colon_head(var$3); @@ -26667,7 +26787,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = new s_Some; var$3 = onciap_Prettifier$_extractPropertyRuleExpression$1($lqs, $v, $e); var$4 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(502)), var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(501)), var$3); s_Some__init_0($qualifier, jl_StringBuilder_toString(var$4)); return $qualifier; } @@ -26700,7 +26820,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = sci_$colon$colon_head(var$3); var$4 = sci_$colon$colon_next$access$1(var$3); if ($qualifier instanceof oncia_UserAllQualifier && sci_List_equals(sci_Nil$_MODULE$, var$4)) - return s_Some__init_($rt_s(587)); + return s_Some__init_($rt_s(586)); } if (var$2) { $qualifier = sci_$colon$colon_head(var$3); @@ -26720,7 +26840,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = sci_$colon$colon_head(var$3); var$4 = sci_$colon$colon_next$access$1(var$3); if ($qualifier instanceof oncia_ProcedureAllQualifier && sci_List_equals(sci_Nil$_MODULE$, var$4)) - return s_Some__init_($rt_s(172)); + return s_Some__init_($rt_s(171)); } if (var$2 && sci_$colon$colon_head(var$3) instanceof oncia_FunctionQualifier) return s_Some__init_(sc_AbstractIterable_mkString(sci_List_map(var$3, onciap_Prettifier$_stringify$1()), $rt_s(45))); @@ -26728,7 +26848,7 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = sci_$colon$colon_head(var$3); var$4 = sci_$colon$colon_next$access$1(var$3); if ($qualifier instanceof oncia_FunctionAllQualifier && sci_List_equals(sci_Nil$_MODULE$, var$4)) - return s_Some__init_($rt_s(172)); + return s_Some__init_($rt_s(171)); } if (var$2 && sci_$colon$colon_head(var$3) instanceof oncia_SettingQualifier) return s_Some__init_(sc_AbstractIterable_mkString(sci_List_map(var$3, onciap_Prettifier$_stringify$1()), $rt_s(45))); @@ -26736,9 +26856,9 @@ onciap_Prettifier$_extractQualifierPart = ($this, $qualifier) => { $qualifier = sci_$colon$colon_head(var$3); var$3 = sci_$colon$colon_next$access$1(var$3); if ($qualifier instanceof oncia_SettingAllQualifier && sci_List_equals(sci_Nil$_MODULE$, var$3)) - return s_Some__init_($rt_s(172)); + return s_Some__init_($rt_s(171)); } - return s_Some__init_($rt_s(562)); + return s_Some__init_($rt_s(561)); }, onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$extractQualifierString = ($this, $qualifier) => { let $qualifierPart, $string; @@ -26764,11 +26884,11 @@ onciap_Prettifier$_extractDbScope = ($this, $dbScope) => { return $dbScope; } if ($dbScope instanceof oncia_AllDatabasesScope) - return s_Tuple3__init_($rt_s(172), jl_Boolean_valueOf(0), jl_Boolean_valueOf(0)); + return s_Tuple3__init_($rt_s(171), jl_Boolean_valueOf(0), jl_Boolean_valueOf(0)); if ($dbScope instanceof oncia_DefaultDatabaseScope) - return s_Tuple3__init_($rt_s(588), jl_Boolean_valueOf(1), jl_Boolean_valueOf(0)); + return s_Tuple3__init_($rt_s(587), jl_Boolean_valueOf(1), jl_Boolean_valueOf(0)); if ($dbScope instanceof oncia_HomeDatabaseScope) - return s_Tuple3__init_($rt_s(589), jl_Boolean_valueOf(1), jl_Boolean_valueOf(0)); + return s_Tuple3__init_($rt_s(588), jl_Boolean_valueOf(1), jl_Boolean_valueOf(0)); if ($dbScope instanceof oncia_NamedDatabasesScope) { var$2 = 1; $databaseName = $dbScope; @@ -26776,7 +26896,6 @@ onciap_Prettifier$_extractDbScope = ($this, $dbScope) => { if ($name !== null) { s_package$_$callClinit(); s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $name); if (!$name.$lengthCompare(1)) { $databaseName = $name.$apply1(0); @@ -26796,15 +26915,12 @@ onciap_Prettifier$_extractDbScope = ($this, $dbScope) => { return $dbScope; }, onciap_Prettifier$_escapeName1 = ($this, $name) => { - let $s, $p; - if ($name instanceof su_Left) { - $s = $name.$value6; - return onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $s, 0, 0); - } + let $p; + if ($name instanceof su_Left) + return onu_Stringifier_backtick($name.$value6); if (!($name instanceof su_Right)) $rt_throw(s_MatchError__init_($name)); - $p = $name.$value7; - $name = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $p.$name(), 0, 0); + $name = onu_Stringifier_backtick($name.$value7.$name()); $p = new jl_StringBuilder; jl_AbstractStringBuilder__init_($p); jl_AbstractStringBuilder_append0($p, 36); @@ -26812,7 +26928,7 @@ onciap_Prettifier$_escapeName1 = ($this, $name) => { return jl_AbstractStringBuilder_toString($p); }, onciap_Prettifier$_escapeName = ($this, $name, $d) => { - let var$3, $names, $namespace, $p; + let var$3, $names, $namespace; var$3 = 0; $d = null; if ($name instanceof oncia_NamespacedName) { @@ -26821,14 +26937,13 @@ onciap_Prettifier$_escapeName = ($this, $name, $d) => { $names = $d.$nameComponents; $namespace = $d.$namespace4; if ($namespace instanceof s_Some) { - $namespace = $namespace.$value5; - $name = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $namespace, 0, 0); - $d = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, sc_AbstractIterable_mkString($names, $rt_s(403)), 0, 0); + $d = onu_Stringifier_backtick($namespace.$value5); + $name = onu_Stringifier_backtick(sc_AbstractIterable_mkString($names, $rt_s(389))); $namespace = new jl_StringBuilder; jl_AbstractStringBuilder__init_($namespace); - $name = jl_StringBuilder_append($namespace, $name); - jl_AbstractStringBuilder_append0($name, 46); - jl_StringBuilder_append($name, $d); + $d = jl_StringBuilder_append($namespace, $d); + jl_AbstractStringBuilder_append0($d, 46); + jl_StringBuilder_append($d, $name); return jl_AbstractStringBuilder_toString($namespace); } } @@ -26836,12 +26951,11 @@ onciap_Prettifier$_escapeName = ($this, $name, $d) => { $names = $d.$nameComponents; $namespace = $d.$namespace4; if (jl_Object_equals(s_None$_MODULE$, $namespace)) - return onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, sc_AbstractIterable_mkString($names, $rt_s(403)), 0, 0); + return onu_Stringifier_backtick(sc_AbstractIterable_mkString($names, $rt_s(389))); } if (!($name instanceof oncia_ParameterName)) $rt_throw(s_MatchError__init_($name)); - $p = $name.$parameter2; - $name = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $p.$name(), 0, 0); + $name = onu_Stringifier_backtick($name.$parameter2.$name()); $d = new jl_StringBuilder; jl_AbstractStringBuilder__init_($d); jl_AbstractStringBuilder_append0($d, 36); @@ -26858,7 +26972,7 @@ onciap_Prettifier$_escapeNames = ($this, $names) => { onciap_Prettifier$_escapeNames0 = ($this, $names, $d) => { let var$3; var$3 = new onciap_Prettifier$$escapeNames$lambda$_18_0; - var$3.$_0728 = $d; + var$3.$_0708 = $d; return sc_AbstractIterable_mkString($names.$map(var$3), $rt_s(45)); }, onciap_Prettifier$_extractTopology = ($this, $topology) => { @@ -26867,28 +26981,29 @@ onciap_Prettifier$_extractTopology = ($this, $topology) => { $maybeSecondariesString = s_Option_getOrElse(s_Option_flatMap($topology.$secondaries, new onciap_Prettifier$$extractTopology$lambda$_19_2), new onciap_Prettifier$$extractTopology$lambda$_19_3); $topology = new jl_StringBuilder; jl_AbstractStringBuilder__init_($topology); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($topology, $rt_s(590)), $primariesString), $maybeSecondariesString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($topology, $rt_s(589)), $primariesString), $maybeSecondariesString); return jl_AbstractStringBuilder_toString($topology); }, -onciap_Prettifier$_apply$default$2 = $this => { - onciap_Prettifier$EmptyExtension$_$callClinit(); - return onciap_Prettifier$EmptyExtension$_MODULE$; +onciap_Prettifier$_maybeImmutable = ($this, $immutable) => { + if (!$immutable) + return $rt_s(4); + return $rt_s(590); }, onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1 = $glob => { let var$2, var$3, var$4, var$5, $escapedGlob; onciap_Prettifier$_$callClinit(); - if (jl_String_contains($glob, $rt_s(446))) - return onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $glob, 0, 1); + if (jl_String_contains($glob, $rt_s(444))) + return onu_Stringifier_backtick0($glob, 0, 1); s_Predef$_$callClinit(); var$2 = s_Predef$_MODULE$; var$3 = sc_ArrayOps$_MODULE$; var$4 = sc_StringOps$_split$extension(sc_StringOps$_MODULE$, $glob, 46); - var$5 = new onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_28_0; + var$5 = new onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_29_0; sr_ClassTag$_$callClinit(); - $escapedGlob = sc_AbstractIterable_mkString(s_LowPriorityImplicits_wrapRefArray(var$2, sc_ArrayOps$_map$extension(var$3, var$4, var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))), $rt_s(403)); + $escapedGlob = sc_AbstractIterable_mkString(s_LowPriorityImplicits_wrapRefArray(var$2, sc_ArrayOps$_map$extension(var$3, var$4, var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))), $rt_s(389)); if (jl_String_isEmpty($glob)) { $glob = new ju_NoSuchElementException; - jl_Throwable__init_0($glob, $rt_s(591)); + jl_Throwable__init_($glob, $rt_s(591)); $rt_throw($glob); } if (!jl_Character_equals(jl_Character_valueOf(jl_String_charAt($glob, $glob.$nativeString.length - 1 | 0)), jl_Character_valueOf(46))) @@ -26905,37 +27020,23 @@ onciap_Prettifier$_stringify$1 = () => { onciap_Prettifier$_propertyAndWherePrettifier$1 = ($e, $variableNameString$1, $labels$1) => { let var$4; onciap_Prettifier$_$callClinit(); - var$4 = s_Option_getOrElse($variableNameString$1, new onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_0); - $e = onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_1, 0, 0, 0, 0), $e); + var$4 = s_Option_getOrElse($variableNameString$1, new onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_0); + onciap_ExpressionStringifier$_$callClinit(); + $e = onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_1, 0, 0, 0, 0), $e); $variableNameString$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($variableNameString$1); jl_AbstractStringBuilder_append0($variableNameString$1, 40); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($variableNameString$1, var$4), $labels$1), $rt_s(592)), $e); return jl_AbstractStringBuilder_toString($variableNameString$1); }, -onciap_Prettifier$_propertyInNodePrettifier$1 = ($propertyKeyName, $value, $variableNameString$1, $labels$1) => { - let var$5, var$6, var$7; - onciap_Prettifier$_$callClinit(); - var$5 = s_Option_getOrElse($variableNameString$1, new onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_0); - $variableNameString$1 = s_Option_getOrElse($variableNameString$1, new onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_1); - var$6 = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $propertyKeyName.$name5, 0, 0); - var$7 = onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_2, 0, 0, 0, 0), $value); - $propertyKeyName = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($propertyKeyName); - jl_AbstractStringBuilder_append0($propertyKeyName, 40); - $value = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($propertyKeyName, var$5), $labels$1), $rt_s(592)), $variableNameString$1); - jl_AbstractStringBuilder_append0($value, 46); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($value, var$6), $rt_s(168)), var$7); - return jl_AbstractStringBuilder_toString($propertyKeyName); -}, onciap_Prettifier$_extractPropertyRuleExpression$1 = ($labelQualifiers, $variable, $expression) => { - let $labels, $variableNameString, var$6, $propertyKeyName, $innerExpression; + let $labels, $variableNameString, var$6, $propertyKeyName, $value, $innerExpression; onciap_Prettifier$_$callClinit(); - $labels = s_Some__init_(sc_AbstractIterable_mkString($labelQualifiers.$flatMap(new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_0), $rt_s(451))); + $labels = s_Some__init_(sc_AbstractIterable_mkString($labelQualifiers.$flatMap(new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_0), $rt_s(449))); if (!s_Option_isEmpty($labels) && sr_BoxesRunTime_unboxToBoolean(jl_Boolean_valueOf(jl_String_equals($labels.$value5, $rt_s(4))))) $labels = s_None$_MODULE$; - $labels = s_Option_getOrElse(s_Option_map($labels, new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_2), new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_3); - $variableNameString = s_Option_map($variable, new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_4); + $labels = s_Option_getOrElse(s_Option_map($labels, new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_2), new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_3); + $variableNameString = s_Option_map($variable, new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_4); var$6 = 0; $labelQualifiers = null; if ($expression instanceof oncie_MapExpression) { @@ -26943,12 +27044,22 @@ onciap_Prettifier$_extractPropertyRuleExpression$1 = ($labelQualifiers, $variabl if ($propertyKeyName !== null) { s_package$_$callClinit(); s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $propertyKeyName); if (!$propertyKeyName.$lengthCompare(1)) { $variable = $propertyKeyName.$apply1(0); - if ($variable !== null) - return onciap_Prettifier$_propertyInNodePrettifier$1($variable.$_1(), $variable.$_2(), $variableNameString, $labels); + if ($variable !== null) { + $propertyKeyName = $variable.$_1(); + $value = $variable.$_2(); + $expression = s_Option_getOrElse($variableNameString, new onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_0); + $variableNameString = s_Option_getOrElse($variableNameString, new onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_1); + $propertyKeyName = onu_Stringifier_backtick(oncie_PropertyKeyName_name($propertyKeyName)); + onciap_ExpressionStringifier$_$callClinit(); + $labelQualifiers = onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2__init_0(), onciap_ExpressionStringifier$_apply$default$2(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$3(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$4(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$5(onciap_ExpressionStringifier$_MODULE$)), + $value); + $variable = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1($variable, 40), $expression), $labels), $rt_s(592)), $variableNameString), 46), $propertyKeyName), $rt_s(167)), $labelQualifiers); + return jl_StringBuilder_toString($variable); + } } } } @@ -26971,22 +27082,23 @@ onciap_Prettifier$_extractPropertyRuleExpression$1 = ($labelQualifiers, $variabl if ($expression instanceof oncie_In) { var$6 = 1; $labelQualifiers = $expression; - if ($labelQualifiers.$rhs4 instanceof oncie_ListLiteral) + if (oncie_In_rhs($labelQualifiers) instanceof oncie_ListLiteral) return onciap_Prettifier$_propertyAndWherePrettifier$1($labelQualifiers, $variableNameString, $labels); } - if (var$6 && $labelQualifiers.$rhs4 instanceof oncie_ExplicitParameter) + if (var$6 && oncie_In_rhs($labelQualifiers) instanceof oncie_ExplicitParameter) return onciap_Prettifier$_propertyAndWherePrettifier$1($labelQualifiers, $variableNameString, $labels); if (!($expression instanceof oncie_Not)) { - $labelQualifiers = new jl_IllegalStateException; - $variable = onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_6, 0, 0, 0, 0), $expression); - $expression = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($expression); - jl_StringBuilder_append(jl_StringBuilder_append($expression, $rt_s(593)), $variable); - jl_Throwable__init_0($labelQualifiers, jl_AbstractStringBuilder_toString($expression)); - $rt_throw($labelQualifiers); + $variable = new jl_IllegalStateException; + onciap_ExpressionStringifier$_$callClinit(); + $labelQualifiers = onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6__init_(), onciap_ExpressionStringifier$_apply$default$2(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$3(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$4(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$5(onciap_ExpressionStringifier$_MODULE$)), + $expression); + $expression = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($expression, $rt_s(593)), $labelQualifiers); + jl_IllegalStateException__init_($variable, jl_StringBuilder_toString($expression)); + $rt_throw($variable); } $labelQualifiers = $expression; - $innerExpression = $labelQualifiers.$rhs9; + $innerExpression = oncie_Not_rhs($labelQualifiers); var$6 = 0; $variable = null; if ($innerExpression instanceof oncie_Equals) @@ -27008,47 +27120,23 @@ onciap_Prettifier$_extractPropertyRuleExpression$1 = ($labelQualifiers, $variabl if ($innerExpression instanceof oncie_In) { var$6 = 1; $variable = $innerExpression; - if ($variable.$rhs4 instanceof oncie_ListLiteral) + if (oncie_In_rhs($variable) instanceof oncie_ListLiteral) return onciap_Prettifier$_propertyAndWherePrettifier$1($labelQualifiers, $variableNameString, $labels); } - if (var$6 && $variable.$rhs4 instanceof oncie_ExplicitParameter) + if (var$6 && oncie_In_rhs($variable) instanceof oncie_ExplicitParameter) return onciap_Prettifier$_propertyAndWherePrettifier$1($labelQualifiers, $variableNameString, $labels); $variable = new jl_IllegalStateException; - $labelQualifiers = onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_5, 0, 0, 0, 0), $labelQualifiers); - $expression = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($expression); + onciap_ExpressionStringifier$_$callClinit(); + $labelQualifiers = onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5__init_(), onciap_ExpressionStringifier$_apply$default$2(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$3(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$4(onciap_ExpressionStringifier$_MODULE$), onciap_ExpressionStringifier$_apply$default$5(onciap_ExpressionStringifier$_MODULE$)), + $labelQualifiers); + $expression = jl_StringBuilder__init_(); jl_StringBuilder_append(jl_StringBuilder_append($expression, $rt_s(593)), $labelQualifiers); - jl_Throwable__init_0($variable, jl_AbstractStringBuilder_toString($expression)); + jl_IllegalStateException__init_($variable, jl_StringBuilder_toString($expression)); $rt_throw($variable); }, -onciu_topDown$ = $rt_classWithoutFields(); -let onciu_topDown$_MODULE$ = null, -onciu_topDown$_$callClinit = () => { - onciu_topDown$_$callClinit = $rt_eraseClinit(onciu_topDown$); - onciu_topDown$__clinit_(); -}, -onciu_topDown$__clinit_ = () => { - let var$1; - var$1 = new onciu_topDown$; - onciu_topDown$_$callClinit(); - onciu_topDown$_MODULE$ = var$1; -}, -onciu_topDown$_apply = ($this, $rewriter, $stopper, $leftToRight, $cancellation) => { - let var$5; - var$5 = new onciu_topDown$TopDownRewriter; - var$5.$rewriter1 = $rewriter; - var$5.$stopper0 = $stopper; - var$5.$leftToRight0 = $leftToRight; - var$5.$cancellation1 = $cancellation; - return var$5; -}, -onciu_topDown$_apply$default$2 = $this => { - onciu_RewriterStopper$_$callClinit(); - return onciu_RewriterStopper$_neverStop(onciu_RewriterStopper$_MODULE$); -}, onciu_Rewriter$ = $rt_classWithoutFields(), -onciu_Rewriter$_MODULE$ = null, -onciu_Rewriter$_noop = null, +onciu_Rewriter$_MODULE$ = null; +let onciu_Rewriter$_noop = null, onciu_Rewriter$_$callClinit = () => { onciu_Rewriter$_$callClinit = $rt_eraseClinit(onciu_Rewriter$); onciu_Rewriter$__clinit_(); @@ -27058,10 +27146,108 @@ onciu_Rewriter$__clinit_ = () => { var$1 = new onciu_Rewriter$; onciu_Rewriter$_$callClinit(); onciu_Rewriter$_MODULE$ = var$1; - onciu_Rewriter$_noop = onciu_Rewriter$_lift(var$1, s_PartialFunction$_empty_pf); + s_PartialFunction$_$callClinit(); + onciu_Rewriter$_noop = onciu_Rewriter$_lift(var$1, s_PartialFunction$_empty(s_PartialFunction$_MODULE$)); }, onciu_Rewriter$_lift = ($this, $f) => { - return $f.$orElse(new onciu_Rewriter$$anonfun$lift$1); + return $f.$orElse0(new onciu_Rewriter$$anonfun$lift$1); +}, +sr_AbstractPartialFunction = $rt_classWithoutFields(), +sr_AbstractPartialFunction_orElse = ($this, $that) => { + let var$2; + var$2 = new s_PartialFunction$OrElse; + var$2.$f10 = $this; + var$2.$f20 = $that; + return var$2; +}, +sr_AbstractPartialFunction_andThen0 = ($this, $k) => { + let var$2; + if ($rt_isInstance($k, s_PartialFunction)) + var$2 = sr_AbstractPartialFunction_andThen($this, $k); + else { + var$2 = new s_PartialFunction$AndThen; + var$2.$pf0 = $this; + var$2.$k = $k; + } + return var$2; +}, +sr_AbstractPartialFunction_andThen = ($this, $k) => { + let var$2; + var$2 = new s_PartialFunction$Combined; + var$2.$pf1 = $this; + var$2.$k0 = $k; + return var$2; +}, +sr_AbstractPartialFunction_lift = $this => { + return s_PartialFunction_lift$($this); +}, +sr_AbstractPartialFunction_runWith = ($this, $action) => { + let var$2; + var$2 = new s_PartialFunction$runWith$lambda$_22_0; + var$2.$_01146 = $this; + var$2.$_1390 = $action; + return var$2; +}, +sr_AbstractPartialFunction_apply = ($this, $x) => { + s_PartialFunction$_$callClinit(); + return $this.$applyOrElse($x, s_PartialFunction$_empty(s_PartialFunction$_MODULE$)); +}, +oncirr_removeSyntaxTracking$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_removeSyntaxTracking$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4; + if ($x1 instanceof oncie_Variable) { + var$3 = $x1; + if (var$3.$isIsolated0) { + var$4 = var$3.$name4; + $default = var$3.$position4; + oncie_Variable$_$callClinit(); + return oncie_Variable_copy(var$3, var$4, $default, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + } + } + if ($x1 instanceof oncia_IsTyped) { + var$3 = $x1; + if (var$3.$withDoubleColonOnly) + return oncia_IsTyped_copy(var$3, var$3.$lhs9, var$3.$typeName2, var$3.$position90, oncia_IsTyped$_withDoubleColonOnlyDefault); + } + if ($x1 instanceof oncil_LabelExpressionPredicate) { + var$3 = $x1; + if (var$3.$isParenthesized0) + return oncil_LabelExpressionPredicate_copy(var$3, var$3.$entity0, var$3.$labelExpression8, var$3.$position49, oncil_LabelExpressionPredicate$_isParenthesizedDefault); + } + return $default.$apply2($x1); +}, +onciu_bottomUp$ = $rt_classWithoutFields(), +onciu_bottomUp$_MODULE$ = null, +onciu_bottomUp$__clinit_ = () => { + onciu_bottomUp$_MODULE$ = new onciu_bottomUp$; +}, +onciu_bottomUp$_apply = ($this, $rewriter, $stopper, $cancellation) => { + let var$4; + var$4 = new onciu_bottomUp$BottomUpRewriter; + var$4.$rewriter0 = $rewriter; + var$4.$stopper0 = $stopper; + var$4.$cancellation0 = $cancellation; + return var$4; +}, +onciu_bottomUp$_apply$default$2 = $this => { + return onciu_RewriterStopper$_neverStop; +}, +onciu_topDown$ = $rt_classWithoutFields(), +onciu_topDown$_MODULE$ = null, +onciu_topDown$__clinit_ = () => { + onciu_topDown$_MODULE$ = new onciu_topDown$; +}, +onciu_topDown$_apply = ($this, $rewriter, $stopper, $leftToRight, $cancellation) => { + let var$5; + var$5 = new onciu_topDown$TopDownRewriter; + var$5.$rewriter1 = $rewriter; + var$5.$stopper = $stopper; + var$5.$leftToRight0 = $leftToRight; + var$5.$cancellation1 = $cancellation; + return var$5; +}, +onciu_topDown$_apply$default$2 = $this => { + return onciu_RewriterStopper$_neverStop; }, oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1_applyOrElse = ($this, $x1, $default) => { @@ -27072,7 +27258,7 @@ oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1_applyOrElse = ($this, $ if (sc_IterableOnceOps_nonEmpty$($clauses)) { $default = sc_Iterator_collect$(sc_AbstractIterable_sliding($clauses, 2), new oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2); s_Predef$_$callClinit(); - return oncia_SingleQuery__init_0((sc_IterableOnceOps_toSeq$(sc_Iterator_flatMap$($default, s_Predef$_$conforms(s_Predef$_MODULE$)))).$appended($clauses.$last()), var$3.$position12); + return oncia_SingleQuery__init_0((sc_IterableOnceOps_toSeq$(sc_Iterator_flatMap$($default, s_Predef$_$conforms(s_Predef$_MODULE$)))).$appended($clauses.$last()), var$3.$position11); } } return $default.$apply2($x1); @@ -27085,7 +27271,7 @@ oncirr_wrapOptionalCallProcedure$$anonfun$1_applyOrElse = ($this, $x1, $default) $copyResolved = $returnItems.$declaredResult; var$5 = $returnItems.$optional0; if ($copyResolved instanceof s_Some && 1 == var$5) { - $pos = $returnItems.$position47; + $pos = $returnItems.$position57; $copyResolved = oncia_UnresolvedCall_copy($returnItems, $returnItems.$procedureNamespace, $returnItems.$procedureName1, $returnItems.$declaredArguments, $copyResolved, $returnItems.$yieldAll2, 0, $pos); $returnItems = (oncia_UnresolvedCall_returnVariables($returnItems)).$explicitVariables.$map(new oncirr_wrapOptionalCallProcedure$$anonfun$1$applyOrElse$lambda$_0_0); if (!sc_IterableOnceOps_nonEmpty$($returnItems)) { @@ -27093,7 +27279,6 @@ oncirr_wrapOptionalCallProcedure$$anonfun$1_applyOrElse = ($this, $x1, $default) $returnClause = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); } else { $returnClause = new sci_$colon$colon; - oncia_Return$_$callClinit(); $x1 = oncia_Return$_MODULE$; $default = new oncia_ReturnItems; oncia_ReturnItems$_$callClinit(); @@ -27109,36 +27294,12 @@ oncirr_wrapOptionalCallProcedure$$anonfun$1_applyOrElse = ($this, $x1, $default) } return $default.$apply2($x1); }, -onciu_bottomUp$ = $rt_classWithoutFields(), -onciu_bottomUp$_MODULE$ = null, -onciu_bottomUp$_$callClinit = () => { - onciu_bottomUp$_$callClinit = $rt_eraseClinit(onciu_bottomUp$); - onciu_bottomUp$__clinit_(); -}, -onciu_bottomUp$__clinit_ = () => { - let var$1; - var$1 = new onciu_bottomUp$; - onciu_bottomUp$_$callClinit(); - onciu_bottomUp$_MODULE$ = var$1; -}, -onciu_bottomUp$_apply = ($this, $rewriter, $stopper, $cancellation) => { - let var$4; - var$4 = new onciu_bottomUp$BottomUpRewriter; - var$4.$rewriter0 = $rewriter; - var$4.$stopper = $stopper; - var$4.$cancellation0 = $cancellation; - return var$4; -}, -onciu_bottomUp$_apply$default$2 = $this => { - onciu_RewriterStopper$_$callClinit(); - return onciu_RewriterStopper$_neverStop(onciu_RewriterStopper$_MODULE$); -}, oncirr_expandCallWhere$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncirr_expandCallWhere$$anonfun$1_applyOrElse = ($this, $x1, $default) => { if (!($x1 instanceof oncia_SingleQuery)) return $default.$apply2($x1); $x1 = $x1; - return oncia_SingleQuery_copy($x1, $x1.$clauses0.$flatMap(new oncirr_expandCallWhere$$anonfun$1$applyOrElse$lambda$_0_0), $x1.$position12); + return oncia_SingleQuery_copy($x1, $x1.$clauses0.$flatMap(new oncirr_expandCallWhere$$anonfun$1$applyOrElse$lambda$_0_0), $x1.$position11); }, oncirr_expandShowWhere$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncirr_expandShowWhere$$anonfun$1_applyOrElse = ($this, $x1, $default) => { @@ -27455,15 +27616,15 @@ oncirr_rewriteShowQuery$$anonfun$1_applyOrElse = ($this, $x1, $default) => { $default = $x1; $clauses = $default.$clauses0; oncirr_rewriteShowQuery$_$callClinit(); - return oncia_SingleQuery_copy($default, oncirr_rewriteShowQuery$_org$neo4j$cypher$internal$rewriting$rewriters$rewriteShowQuery$$rewriteClauses(oncirr_rewriteShowQuery$_MODULE$, $clauses.$toList(), sci_Nil$_MODULE$), $default.$position12); + return oncia_SingleQuery_copy($default, oncirr_rewriteShowQuery$_org$neo4j$cypher$internal$rewriting$rewriters$rewriteShowQuery$$rewriteClauses(oncirr_rewriteShowQuery$_MODULE$, $clauses.$toList(), sci_Nil$_MODULE$), $default.$position11); }, oncirr_mergeInPredicates$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncirr_mergeInPredicates$$anonfun$1_applyOrElse = ($this, $x1, $default) => { let var$3, $lhs, $rhs, var$6, $rhs_0; if ($x1 instanceof oncie_And) { var$3 = $x1; - $lhs = var$3.$lhs7; - $rhs = var$3.$rhs7; + $lhs = var$3.$lhs10; + $rhs = var$3.$rhs10; oncirr_mergeInPredicates$_$callClinit(); if (sc_IterableOnceOps_forall$(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_Expression, [$lhs, $rhs])), new oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNeitherOrsNorInnerScopes$lambda$_8_0) && oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containIns(oncirr_mergeInPredicates$_MODULE$, sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_Expression, [$lhs, $rhs])))) { @@ -27471,7 +27632,7 @@ oncirr_mergeInPredicates$$anonfun$1_applyOrElse = ($this, $x1, $default) => { $x1 = oncirr_mergeInPredicates$_MODULE$; $default = new oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_0; var$6 = new oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_1; - var$6.$_0399 = var$3; + var$6.$_0387 = var$3; return oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$rewriteBinaryOperator($x1, var$3, $default, var$6); } if (!oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNots(oncirr_mergeInPredicates$_MODULE$, sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_Expression, [$lhs, $rhs])))) @@ -27479,14 +27640,14 @@ oncirr_mergeInPredicates$$anonfun$1_applyOrElse = ($this, $x1, $default) => { $x1 = oncirr_mergeInPredicates$_MODULE$; $default = new oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_2; var$6 = new oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_3; - var$6.$_0289 = var$3; + var$6.$_0276 = var$3; return oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$rewriteBinaryOperator($x1, var$3, $default, var$6); } } if ($x1 instanceof oncie_Or) { var$6 = $x1; - $lhs = var$6.$lhs8; - $rhs_0 = var$6.$rhs8; + $lhs = var$6.$lhs11; + $rhs_0 = var$6.$rhs11; oncirr_mergeInPredicates$_$callClinit(); if (sc_IterableOnceOps_forall$(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_Expression, [$lhs, $rhs_0])), new oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoAnds$lambda$_9_0) && oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containIns(oncirr_mergeInPredicates$_MODULE$, sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_Expression, [$lhs, $rhs_0])))) { @@ -27494,7 +27655,7 @@ oncirr_mergeInPredicates$$anonfun$1_applyOrElse = ($this, $x1, $default) => { $x1 = oncirr_mergeInPredicates$_MODULE$; $default = new oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_4; var$3 = new oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_5; - var$3.$_031 = var$6; + var$3.$_030 = var$6; return oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$rewriteBinaryOperator($x1, var$6, $default, var$3); } if (!oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNots(oncirr_mergeInPredicates$_MODULE$, sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_Expression, [$lhs, $rhs_0])))) @@ -27502,7 +27663,7 @@ oncirr_mergeInPredicates$$anonfun$1_applyOrElse = ($this, $x1, $default) => { $x1 = oncirr_mergeInPredicates$_MODULE$; $default = new oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_6; var$3 = new oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_7; - var$3.$_01081 = var$6; + var$3.$_01063 = var$6; return oncirr_mergeInPredicates$_org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$rewriteBinaryOperator($x1, var$6, $default, var$3); } } @@ -27516,13 +27677,12 @@ oncirr_timestampRewriter$$anonfun$1_applyOrElse = ($this, $x1, $default) => { $name = $datetimeFunction.$functionName2; if ($name !== null) { $namespace = $name.$namespace3; - $name = $name.$name7; + $name = $name.$name6; if (sci_List_isEmpty($namespace.$parts0)) { oncief_Timestamp$_$callClinit(); if (jl_String_equalsIgnoreCase($name, $rt_s(594))) { - oncie_FunctionName$_$callClinit(); - $datetimeFunction = oncie_FunctionInvocation_copy($datetimeFunction, oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, $rt_s(595), $datetimeFunction.$functionName2.$position157), $datetimeFunction.$distinct3, $datetimeFunction.$args0, $datetimeFunction.$order0, $datetimeFunction.$calledFromUseClause, $datetimeFunction.$position7); - return oncie_Property__init_($datetimeFunction, oncie_PropertyKeyName__init_($rt_s(596), $datetimeFunction.$position7), $datetimeFunction.$position7); + $datetimeFunction = oncie_FunctionInvocation_copy($datetimeFunction, oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, $rt_s(595), $datetimeFunction.$functionName2.$position166), $datetimeFunction.$distinct3, $datetimeFunction.$args0, $datetimeFunction.$order0, $datetimeFunction.$calledFromUseClause, $datetimeFunction.$position7); + return oncie_Property__init_($datetimeFunction, oncie_PropertyKeyName__init_0($rt_s(596), $datetimeFunction.$position7), $datetimeFunction.$position7); } } } @@ -27538,11 +27698,10 @@ oncirr_nullIfFunctionRewriter$$anonfun$1_applyOrElse = ($this, $x1, $default) => $alt1 = var$3.$args0; if ($v1 !== null) { $namespace = $v1.$namespace3; - $name = $v1.$name7; + $name = $v1.$name6; if ($alt1 !== null) { s_package$_$callClinit(); s_package$_IndexedSeq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $alt1); if (!$alt1.$lengthCompare(2)) { $v1 = $alt1.$apply1(0); @@ -27557,7 +27716,7 @@ oncirr_nullIfFunctionRewriter$$anonfun$1_applyOrElse = ($this, $x1, $default) => $v2 = sr_ScalaRunTime$_MODULE$; var$9 = $rt_createArray(s_Tuple2, 1); var$9.data[0] = $alt1; - oncie_CaseExpression__init_($x1, $default, $default, sc_SeqFactory$Delegate_apply($namespace, sr_ScalaRunTime$_wrapRefArray($v2, var$9)), s_Some__init_($v1), var$3.$position7); + oncie_CaseExpression__init_($x1, $default, sc_SeqFactory$Delegate_apply($namespace, sr_ScalaRunTime$_wrapRefArray($v2, var$9)), s_Some__init_($v1), var$3.$position7); return $x1; } } @@ -27567,6 +27726,49 @@ oncirr_nullIfFunctionRewriter$$anonfun$1_applyOrElse = ($this, $x1, $default) => } return $default.$apply2($x1); }, +oncirr_unwrapTopLevelBraces$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_unwrapTopLevelBraces$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let $query, $use; + if (!($x1 instanceof oncia_TopLevelBraces)) + return $default.$apply2($x1); + $x1 = $x1; + $query = $x1.$query1; + $use = $x1.$use0; + if (!s_Option_isDefined($use)) + return $x1; + oncirr_unwrapTopLevelBraces$_$callClinit(); + return oncia_TopLevelBraces_copy($x1, oncirr_unwrapTopLevelBraces$_org$neo4j$cypher$internal$rewriting$rewriters$unwrapTopLevelBraces$$pushDownUse(oncirr_unwrapTopLevelBraces$_MODULE$, $query, $use), s_None$_MODULE$, $x1.$position13); +}, +oncirr_unwrapTopLevelBraces$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_unwrapTopLevelBraces$$anonfun$2_applyOrElse = ($this, $x2, $default) => { + let var$3, var$4, var$5; + if (!($x2 instanceof oncia_TopLevelBraces)) + return $default.$apply2($x2); + var$3 = $x2; + var$4 = var$3.$query1; + var$5 = onciu_topDown$_MODULE$; + onciu_Rewriter$_$callClinit(); + return oncia_TopLevelBraces_copy(var$3, (onciu_topDown$_apply(var$5, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_unwrapTopLevelBraces$$anonfun$2$$anonfun$applyOrElse$1), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2(var$4), var$3.$use0, var$3.$position13); +}, +oncirr_unwrapTopLevelBraces$$anonfun$3 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_unwrapTopLevelBraces$$anonfun$3_applyOrElse = ($this, $x3, $default) => { + let $lhs, $rhs; + if ($x3 instanceof oncia_UnionDistinct) { + $x3 = $x3; + $lhs = $x3.$lhs5; + $rhs = $x3.$rhs5; + return oncia_UnionDistinct_copy($x3, $lhs.$getQuery(1), $rhs.$getSingleQuery(), $x3.$position29); + } + if (!($x3 instanceof oncia_UnionAll)) { + if (!($x3 instanceof oncia_TopLevelBraces)) + return $default.$apply2($x3); + return oncia_TopLevelBraces_getQuery($x3, 0); + } + $x3 = $x3; + $lhs = $x3.$lhs4; + $rhs = $x3.$rhs4; + return oncia_UnionAll_copy($x3, $lhs.$getQuery(1), $rhs.$getSingleQuery(), $x3.$position38); +}, onciap_PatternStringifier = $rt_classWithoutFields(0); function onciap_DefaultPatternStringifier() { jl_Object.call(this); @@ -27576,17 +27778,17 @@ let onciap_DefaultPatternStringifier_apply1 = ($this, $p) => { let var$2; $p = $p.$patternParts(); var$2 = new onciap_DefaultPatternStringifier$apply$lambda$_0_0; - var$2.$_0807 = $this; + var$2.$_0783 = $this; return sc_AbstractIterable_mkString($p.$map(var$2), $rt_s(45)); }, onciap_DefaultPatternStringifier_apply = ($this, $p) => { let $variable, $patternPart, var$4; if ($p instanceof oncie_PathPatternPart) - return onciap_DefaultPatternStringifier_apply0($this, $p.$element3); + return onciap_DefaultPatternStringifier_apply0($this, $p.$element4); if (!($p instanceof oncie_PatternPartWithSelector)) { if ($p instanceof oncie_ShortestPathsPatternPart) { $p = $p; - $variable = $p.$name11; + $variable = $p.$name14; $p = onciap_DefaultPatternStringifier_apply0($this, $p.$element2); $patternPart = new jl_StringBuilder; jl_AbstractStringBuilder__init_($patternPart); @@ -27602,7 +27804,7 @@ onciap_DefaultPatternStringifier_apply = ($this, $p) => { $p = onciap_DefaultPatternStringifier_apply($this, $p.$patternPart); $patternPart = new jl_StringBuilder; jl_AbstractStringBuilder__init_($patternPart); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($patternPart, $variable), $rt_s(168)), $p); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($patternPart, $variable), $rt_s(167)), $p); return jl_AbstractStringBuilder_toString($patternPart); } $p = $p; @@ -27631,7 +27833,7 @@ onciap_DefaultPatternStringifier_apply = ($this, $p) => { $patternPart = onciap_DefaultPatternStringifier_apply($this, $patternPart); var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - $p = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $p), $rt_s(168)), $variable); + $p = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $p), $rt_s(167)), $variable); jl_AbstractStringBuilder_append0($p, 32); jl_StringBuilder_append($p, $patternPart); return jl_AbstractStringBuilder_toString(var$4); @@ -27645,8 +27847,8 @@ onciap_DefaultPatternStringifier_apply0 = ($this, $element) => { if ($element instanceof oncie_PathConcatenation) { var$2 = $element.$factors0; $element = new onciap_DefaultPatternStringifier$apply$lambda$_6_0; - $element.$_0513 = $this; - return sc_AbstractIterable_mkString(var$2.$map($element), $rt_s(384)); + $element.$_0500 = $this; + return sc_AbstractIterable_mkString(var$2.$map($element), $rt_s(370)); } if ($element instanceof oncie_QuantifiedPath) return onciap_DefaultPatternStringifier_apply4($this, $element); @@ -27658,37 +27860,37 @@ onciap_DefaultPatternStringifier_apply0 = ($this, $element) => { var$4 = new sci_$colon$colon; var$5 = $element.$optionalWhereClause0; $element = new onciap_DefaultPatternStringifier$apply$lambda$_8_0; - $element.$_0995 = $this; + $element.$_0986 = $this; sci_$colon$colon__init_0(var$4, s_Option_map(var$5, $element), sci_Nil$_MODULE$); sci_$colon$colon__init_0(var$2, var$3, var$4); s_Predef$_$callClinit(); - return sc_IterableOnceOps_mkString$(sc_StrictOptimizedIterableOps_flatten$(var$2, s_Predef$_$conforms(s_Predef$_MODULE$)), $rt_s(40), $rt_s(384), $rt_s(42)); + return sc_IterableOnceOps_mkString$(sc_StrictOptimizedIterableOps_flatten$(var$2, s_Predef$_$conforms(s_Predef$_MODULE$)), $rt_s(40), $rt_s(370), $rt_s(42)); }, onciap_DefaultPatternStringifier_apply3 = ($this, $nodePattern) => { let var$2, $body, $variable, $labelExpression, var$6, var$7, var$8; var$2 = $nodePattern.$variable6; $body = new onciap_DefaultPatternStringifier$apply$lambda$_3_0; - $body.$_0150 = $this; + $body.$_0143 = $this; $variable = s_Option_map(var$2, $body); var$2 = $nodePattern.$labelExpression7; $body = new onciap_DefaultPatternStringifier$apply$lambda$_3_1; - $body.$_0685 = $this; + $body.$_0679 = $this; $labelExpression = s_Option_map(var$2, $body); $body = new sci_$colon$colon; var$2 = onciap_DefaultPatternStringifier_concatenate($this, $rt_s(4), sci_$colon$colon__init_($variable, sci_$colon$colon__init_($labelExpression, sci_Nil$_MODULE$))); var$6 = new sci_$colon$colon; - $labelExpression = $nodePattern.$properties5; + $labelExpression = $nodePattern.$properties6; var$7 = new onciap_DefaultPatternStringifier$apply$lambda$_3_2; - var$7.$_07 = $this; + var$7.$_04 = $this; var$7 = s_Option_map($labelExpression, var$7); $labelExpression = new sci_$colon$colon; var$8 = $nodePattern.$predicate2; $nodePattern = new onciap_DefaultPatternStringifier$apply$lambda$_3_3; - $nodePattern.$_0874 = $this; + $nodePattern.$_0857 = $this; sci_$colon$colon__init_0($labelExpression, s_Option_map(var$8, $nodePattern), sci_Nil$_MODULE$); sci_$colon$colon__init_0(var$6, var$7, $labelExpression); sci_$colon$colon__init_0($body, var$2, var$6); - $body = s_Option_getOrElse(onciap_DefaultPatternStringifier_concatenate($this, $rt_s(384), $body), new onciap_DefaultPatternStringifier$apply$lambda$_3_4); + $body = s_Option_getOrElse(onciap_DefaultPatternStringifier_concatenate($this, $rt_s(370), $body), new onciap_DefaultPatternStringifier$apply$lambda$_3_4); $nodePattern = new jl_StringBuilder; jl_AbstractStringBuilder__init_($nodePattern); jl_AbstractStringBuilder_append0($nodePattern, 40); @@ -27699,7 +27901,7 @@ onciap_DefaultPatternStringifier_apply2 = ($this, $relationshipChain) => { let $r, $middle, $l; $r = onciap_DefaultPatternStringifier_apply3($this, $relationshipChain.$rightNode0); $middle = onciap_DefaultPatternStringifier_apply5($this, $relationshipChain.$relationship1); - $l = onciap_DefaultPatternStringifier_apply0($this, $relationshipChain.$element4); + $l = onciap_DefaultPatternStringifier_apply0($this, $relationshipChain.$element3); $relationshipChain = new jl_StringBuilder; jl_AbstractStringBuilder__init_($relationshipChain); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($relationshipChain, $l), $middle), $r); @@ -27710,11 +27912,11 @@ onciap_DefaultPatternStringifier_apply5 = ($this, $relationship) => { a: { var$2 = $relationship.$variable5; $body = new onciap_DefaultPatternStringifier$apply$lambda$_5_0; - $body.$_0343 = $this; + $body.$_0332 = $this; $variable = s_Option_map(var$2, $body); $body = $relationship.$labelExpression6; var$2 = new onciap_DefaultPatternStringifier$apply$lambda$_5_1; - var$2.$_0913 = $this; + var$2.$_0897 = $this; $labelExpression = s_Option_map($body, var$2); var$6 = 0; $range = null; @@ -27727,7 +27929,7 @@ onciap_DefaultPatternStringifier_apply5 = ($this, $relationship) => { $range = var$2; $body = $range.$value5; if (jl_Object_equals(s_None$_MODULE$, $body)) { - $length = s_Some__init_($rt_s(172)); + $length = s_Some__init_($rt_s(171)); break a; } } @@ -27741,7 +27943,7 @@ onciap_DefaultPatternStringifier_apply5 = ($this, $relationship) => { var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); jl_AbstractStringBuilder_append0(var$9, 42); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, var$2), $rt_s(446)), $range); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, var$2), $rt_s(444)), $range); s_Some__init_0($length, jl_AbstractStringBuilder_toString(var$9)); break a; } @@ -27752,18 +27954,18 @@ onciap_DefaultPatternStringifier_apply5 = ($this, $relationship) => { var$10 = new sci_$colon$colon; $body = onciap_DefaultPatternStringifier_concatenate($this, $rt_s(4), sci_$colon$colon__init_($variable, sci_$colon$colon__init_($labelExpression, sci_$colon$colon__init_($length, sci_Nil$_MODULE$)))); var$2 = new sci_$colon$colon; - var$9 = $relationship.$properties4; + var$9 = $relationship.$properties5; $range = new onciap_DefaultPatternStringifier$apply$lambda$_5_2; - $range.$_0584 = $this; + $range.$_0564 = $this; $range = s_Option_map(var$9, $range); var$9 = new sci_$colon$colon; $variable = $relationship.$predicate1; var$11 = new onciap_DefaultPatternStringifier$apply$lambda$_5_3; - var$11.$_01028 = $this; + var$11.$_01017 = $this; sci_$colon$colon__init_0(var$9, s_Option_map($variable, var$11), sci_Nil$_MODULE$); sci_$colon$colon__init_0(var$2, $range, var$9); sci_$colon$colon__init_0(var$10, $body, var$2); - $body = s_Option_fold(onciap_DefaultPatternStringifier_concatenate($this, $rt_s(384), var$10), new onciap_DefaultPatternStringifier$apply$lambda$_5_4, new onciap_DefaultPatternStringifier$apply$lambda$_5_5); + $body = s_Option_fold(onciap_DefaultPatternStringifier_concatenate($this, $rt_s(370), var$10), new onciap_DefaultPatternStringifier$apply$lambda$_5_4, new onciap_DefaultPatternStringifier$apply$lambda$_5_5); var$2 = $relationship.$direction0; oncie_SemanticDirection$OUTGOING$_$callClinit(); if (jl_Object_equals(oncie_SemanticDirection$OUTGOING$_MODULE$, var$2)) { @@ -27780,6 +27982,7 @@ onciap_DefaultPatternStringifier_apply5 = ($this, $relationship) => { jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($relationship, $rt_s(599)), $body), 45); return jl_AbstractStringBuilder_toString($relationship); } + oncie_SemanticDirection$BOTH$_$callClinit(); if (!jl_Object_equals(oncie_SemanticDirection$BOTH$_MODULE$, var$2)) $rt_throw(s_MatchError__init_(var$2)); $relationship = new jl_StringBuilder; @@ -27793,11 +27996,11 @@ onciap_DefaultPatternStringifier_apply4 = ($this, $quantified) => { $pattern = onciap_DefaultPatternStringifier_apply($this, $quantified.$part2); $quantifier = $quantified.$optionalWhereExpression; $where = new onciap_DefaultPatternStringifier$apply$lambda$_7_0; - $where.$_0837 = $this; + $where.$_0810 = $this; $where = s_Option_getOrElse(s_Option_map(s_Option_map($quantifier, $where), new onciap_DefaultPatternStringifier$apply$lambda$_7_1), new onciap_DefaultPatternStringifier$apply$lambda$_7_2); $quantified = $quantified.$quantifier2; if ($quantified instanceof oncie_StarQuantifier) - $quantifier = $rt_s(172); + $quantifier = $rt_s(171); else if ($quantified instanceof oncie_PlusQuantifier) $quantifier = $rt_s(600); else if (!($quantified instanceof oncie_IntervalQuantifier)) { @@ -27836,7 +28039,7 @@ onciap_DefaultPatternStringifier_concatenate = ($this, $separator, $fragments) = s_Some__init_0(var$3, sc_StrictOptimizedIterableOps_flatten$($fragments, s_Predef$_$conforms(s_Predef$_MODULE$))); $fragments = s_Option_filter(var$3, new onciap_DefaultPatternStringifier$concatenate$lambda$_9_0); var$3 = new onciap_DefaultPatternStringifier$concatenate$lambda$_9_1; - var$3.$_0181 = $separator; + var$3.$_0178 = $separator; return s_Option_map($fragments, var$3); }, onciap_DefaultPatternStringifier_stringifyPredicate = ($this, $predicate) => { @@ -27855,10 +28058,10 @@ function onciap_DefaultPathStepStringifier() { let onciap_DefaultPathStepStringifier_apply = ($this, $pathStep) => { let $node, $next, $variables, $toNode; if ($pathStep instanceof oncie_SingleRelationshipPathStep) - return onciap_DefaultPathStepStringifier_relationshipPathStep($this, $pathStep.$rel0, $pathStep.$direction2, $pathStep.$toNode3, $pathStep.$next16, 0); + return onciap_DefaultPathStepStringifier_relationshipPathStep($this, $pathStep.$rel0, $pathStep.$direction2, $pathStep.$toNode3, $pathStep.$next14, 0); if ($pathStep instanceof oncie_NodePathStep) { $node = $pathStep.$node4; - $next = $pathStep.$next15; + $next = $pathStep.$next13; $pathStep = onciap_DefaultExpressionStringifier_apply($this.$expr6, $node); $variables = onciap_DefaultPathStepStringifier_apply($this, $next); $next = new jl_StringBuilder; @@ -27870,7 +28073,7 @@ let onciap_DefaultPathStepStringifier_apply = ($this, $pathStep) => { return jl_AbstractStringBuilder_toString($next); } if ($pathStep instanceof oncie_MultiRelationshipPathStep) - return onciap_DefaultPathStepStringifier_relationshipPathStep($this, $pathStep.$rel3, $pathStep.$direction1, $pathStep.$toNode2, $pathStep.$next18, 1); + return onciap_DefaultPathStepStringifier_relationshipPathStep($this, $pathStep.$rel3, $pathStep.$direction1, $pathStep.$toNode2, $pathStep.$next16, 1); if (!($pathStep instanceof oncie_RepeatPathStep)) { if ($pathStep instanceof oncie_NilPathStep) return $rt_s(4); @@ -27878,13 +28081,13 @@ let onciap_DefaultPathStepStringifier_apply = ($this, $pathStep) => { } $variables = $pathStep.$variables2; $toNode = $pathStep.$toNode1; - $next = $pathStep.$next14; + $next = $pathStep.$next12; $pathStep = (((($variables.$flatMap(new onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_0)).$map(new onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_1)).$zipWithIndex()).$map(new onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_2)).$mkString($rt_s(4)); $variables = $toNode.$name(); $next = onciap_DefaultPathStepStringifier_apply($this, $next); $toNode = new jl_StringBuilder; jl_AbstractStringBuilder__init_($toNode); - $pathStep = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($toNode, $rt_s(65)), $pathStep), $rt_s(602)), $variables); + $pathStep = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($toNode, $rt_s(64)), $pathStep), $rt_s(602)), $variables); jl_AbstractStringBuilder_append0($pathStep, 41); jl_StringBuilder_append($pathStep, $next); return jl_AbstractStringBuilder_toString($toNode); @@ -27930,10 +28133,10 @@ onciap_DefaultPathStepStringifier_relationshipPathStep = ($this, $rel, $directio $rArrow = $rt_s(4); } $direction = new onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0; - $direction.$_0538 = $this; + $direction.$_0523 = $this; $stringifiedToNode = s_Option_getOrElse(s_Option_map($toNode, $direction), new onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1); $stringifiedRel = onciap_DefaultExpressionStringifier_apply($this.$expr6, $rel); - $multiRel = !$isMultiRel ? $rt_s(4) : $rt_s(172); + $multiRel = !$isMultiRel ? $rt_s(4) : $rt_s(171); $rel = onciap_DefaultPathStepStringifier_apply($this, $next); $direction = new jl_StringBuilder; jl_AbstractStringBuilder__init_($direction); @@ -27947,18 +28150,8 @@ onciap_DefaultPathStepStringifier_relationshipPathStep = ($this, $rel, $directio onciap_Prettifier$ClausePrettifier = $rt_classWithoutFields(0), onciap_Prettifier$EmptyExtension$ = $rt_classWithoutFields(), onciap_Prettifier$EmptyExtension$_MODULE$ = null, -onciap_Prettifier$EmptyExtension$_$callClinit = () => { - onciap_Prettifier$EmptyExtension$_$callClinit = $rt_eraseClinit(onciap_Prettifier$EmptyExtension$); - onciap_Prettifier$EmptyExtension$__clinit_(); -}, onciap_Prettifier$EmptyExtension$__clinit_ = () => { - let var$1; - var$1 = new onciap_Prettifier$EmptyExtension$; - onciap_Prettifier$EmptyExtension$_$callClinit(); - onciap_Prettifier$EmptyExtension$_MODULE$ = var$1; -}, -onciap_Prettifier$EmptyExtension$_asString = ($this, $ctx) => { - return s_PartialFunction$_empty_pf; + onciap_Prettifier$EmptyExtension$_MODULE$ = new onciap_Prettifier$EmptyExtension$; }, onciap_Prettifier$QueryPrettifier = $rt_classWithoutFields(0); function onciap_Prettifier$IndentingQueryPrettifier() { @@ -27981,95 +28174,96 @@ onciap_Prettifier$IndentingQueryPrettifier_asNewLine = ($this, $l) => { return jl_AbstractStringBuilder_toString(var$3); }, onciap_Prettifier$IndentingQueryPrettifier_query = ($this, $q) => { - let $clauses, $lhs, $rhs, $operation; + let $clauses, $innerQuery, $use, $useStr, $lhs, $rhs, $operation; if ($q instanceof oncia_SingleQuery) { $clauses = $q.$clauses0; $q = new onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0; - $q.$_0797 = $this; + $q.$_0771 = $this; return sc_AbstractIterable_mkString(($clauses.$map($q)).$filter1(new onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1), $this.$$outer.$NL0); } - if (!$rt_isInstance($q, oncia_Union)) - $rt_throw(s_MatchError__init_($q)); + if (!$rt_isInstance($q, oncia_Union)) { + if (!($q instanceof oncia_TopLevelBraces)) + $rt_throw(s_MatchError__init_($q)); + $q = $q; + $innerQuery = $q.$query1; + $use = $q.$use0; + $q = new onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_2; + $q.$_0585 = $this; + $useStr = s_Option_getOrElse(s_Option_map($use, $q), new onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_3); + $use = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + return sc_StringOps$_$plus$plus$extension($use, $useStr, sc_AbstractIterable_mkString(sci_$colon$colon__init_($rt_s(430), sci_$colon$colon__init_(onciap_Prettifier$IndentingQueryPrettifier_query(onciap_Prettifier$IndentingQueryPrettifier_indented($this), $innerQuery), sci_$colon$colon__init_($rt_s(431), sci_Nil$_MODULE$))), $this.$$outer.$NL0)); + } $q = $q; $lhs = onciap_Prettifier$IndentingQueryPrettifier_query($this, $q.$lhs()); - $rhs = onciap_Prettifier$IndentingQueryPrettifier_query($this, $q.$rhs()); + $rhs = onciap_Prettifier$IndentingQueryPrettifier_query($this, $q.$rhs0()); if ($q instanceof oncia_UnionAll ? 1 : !($q instanceof oncia_ProjectingUnionAll) ? 0 : 1) { - $clauses = $this.$INDENT; + $operation = $this.$INDENT; $q = new jl_StringBuilder; jl_AbstractStringBuilder__init_($q); - jl_StringBuilder_append(jl_StringBuilder_append($q, $clauses), $rt_s(607)); + jl_StringBuilder_append(jl_StringBuilder_append($q, $operation), $rt_s(607)); $operation = jl_AbstractStringBuilder_toString($q); } else { if (!($q instanceof oncia_UnionDistinct ? 1 : !($q instanceof oncia_ProjectingUnionDistinct) ? 0 : 1)) $rt_throw(s_MatchError__init_($q)); - $clauses = $this.$INDENT; + $operation = $this.$INDENT; $q = new jl_StringBuilder; jl_AbstractStringBuilder__init_($q); - jl_StringBuilder_append(jl_StringBuilder_append($q, $clauses), $rt_s(608)); + jl_StringBuilder_append(jl_StringBuilder_append($q, $operation), $rt_s(608)); $operation = jl_AbstractStringBuilder_toString($q); } return sc_AbstractIterable_mkString(sci_$colon$colon__init_($lhs, sci_$colon$colon__init_($operation, sci_$colon$colon__init_($rhs, sci_Nil$_MODULE$))), $this.$$outer.$NL0); }, onciap_Prettifier$IndentingQueryPrettifier_dispatch = ($this, $clause) => { - let var$2, $ext, var$4, var$5, var$6, var$7; - if ($clause instanceof oncia_UseGraph) { - a: { - var$2 = $clause.$graphReference2; - if (var$2 instanceof oncia_GraphDirectReference) { - $clause = var$2.$catalogName; - $ext = $this.$INDENT; - var$2 = sc_AbstractIterable_mkString(sci_List_map($clause.$parts1, new oncia_CatalogName$asCanonicalNameString$lambda$_12_0), oncia_CatalogName$_separatorString); - $clause = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($clause); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($clause, $ext), $rt_s(609)), var$2); - $clause = jl_AbstractStringBuilder_toString($clause); - } else { - if (var$2 instanceof oncia_GraphFunctionReference) { - $ext = var$2.$functionInvocation1; - if ($ext !== null) { - $clause = $this.$INDENT; - $ext = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $ext); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $clause), $rt_s(609)), $ext); - $clause = jl_AbstractStringBuilder_toString(var$2); - break a; - } - } - $rt_throw(s_MatchError__init_(var$2)); - } - } - return $clause; - } - if ($clause instanceof oncia_Return) + let var$2, var$3, $ext, var$5, var$6, var$7; + if ($clause instanceof oncia_UseGraph) return onciap_Prettifier$IndentingQueryPrettifier_asString5($this, $clause); + if ($clause instanceof oncia_Return) + return onciap_Prettifier$IndentingQueryPrettifier_asString7($this, $clause); if ($clause instanceof oncia_Finish) { - $ext = $this.$INDENT; + var$2 = $this.$INDENT; $clause = new jl_StringBuilder; jl_AbstractStringBuilder__init_($clause); - jl_StringBuilder_append(jl_StringBuilder_append($clause, $ext), $rt_s(610)); + jl_StringBuilder_append(jl_StringBuilder_append($clause, var$2), $rt_s(609)); return jl_AbstractStringBuilder_toString($clause); } if (!($clause instanceof oncia_Match)) { - if ($clause instanceof oncia_ImportingWithSubqueryCall) - return onciap_Prettifier$IndentingQueryPrettifier_asString12($this, $clause); + if ($clause instanceof oncia_ImportingWithSubqueryCall) { + $clause = $clause; + var$2 = !$clause.$optional4 ? $rt_s(4) : $rt_s(610); + var$3 = $clause.$inTransactionsParameters1; + $ext = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_0; + $ext.$_0467 = $this; + $ext = s_Option_getOrElse(s_Option_map(var$3, $ext), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_1); + var$3 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + var$5 = $this.$INDENT; + $clause = onciap_Prettifier$IndentingQueryPrettifier_query(onciap_Prettifier$IndentingQueryPrettifier_indented($this), $clause.$innerQuery1); + var$6 = $this.$INDENT; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + $clause = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, var$5), var$2), $rt_s(611)), $clause), $rt_s(612)), var$6); + jl_AbstractStringBuilder_append0($clause, 125); + jl_StringBuilder_append($clause, $ext); + return sc_StringOps$_stripMargin$extension(var$3, jl_AbstractStringBuilder_toString(var$7)); + } if ($clause instanceof oncia_ScopeClauseSubqueryCall) return onciap_Prettifier$IndentingQueryPrettifier_asString19($this, $clause); if ($clause instanceof oncia_With) - return onciap_Prettifier$IndentingQueryPrettifier_asString17($this, $clause); + return onciap_Prettifier$IndentingQueryPrettifier_asString6($this, $clause); if ($clause instanceof oncia_Yield) - return onciap_Prettifier$IndentingQueryPrettifier_asString7($this, $clause); + return onciap_Prettifier$IndentingQueryPrettifier_asString9($this, $clause); if ($clause instanceof oncia_Create) { $clause = $clause; $clause = onciap_DefaultPatternStringifier_apply1($this.$$outer.$expr1.$patterns0, $clause.$pattern10); - var$2 = $this.$INDENT; - $ext = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($ext); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ext, var$2), $rt_s(552)), $clause); - return jl_AbstractStringBuilder_toString($ext); + $ext = $this.$INDENT; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $ext), $rt_s(551)), $clause); + return jl_AbstractStringBuilder_toString(var$2); } if ($clause instanceof oncia_Insert) - return onciap_Prettifier$IndentingQueryPrettifier_asString16($this, $clause); + return onciap_Prettifier$IndentingQueryPrettifier_asString17($this, $clause); if ($clause instanceof oncia_Unwind) return onciap_Prettifier$IndentingQueryPrettifier_asString27($this, $clause); if ($clause instanceof oncia_UnresolvedCall) @@ -28081,17 +28275,17 @@ onciap_Prettifier$IndentingQueryPrettifier_dispatch = ($this, $clause) => { if ($clause instanceof oncia_ShowProceduresClause) return onciap_Prettifier$IndentingQueryPrettifier_asString20($this, $clause); if ($clause instanceof oncia_ShowFunctionsClause) - return onciap_Prettifier$IndentingQueryPrettifier_asString13($this, $clause); + return onciap_Prettifier$IndentingQueryPrettifier_asString14($this, $clause); if ($clause instanceof oncia_ShowTransactionsClause) - return onciap_Prettifier$IndentingQueryPrettifier_asString10($this, $clause); + return onciap_Prettifier$IndentingQueryPrettifier_asString12($this, $clause); if ($clause instanceof oncia_TerminateTransactionsClause) return onciap_Prettifier$IndentingQueryPrettifier_asString21($this, $clause); if ($clause instanceof oncia_ShowSettingsClause) - return onciap_Prettifier$IndentingQueryPrettifier_asString15($this, $clause); + return onciap_Prettifier$IndentingQueryPrettifier_asString16($this, $clause); if ($clause instanceof oncia_SetClause) return onciap_Prettifier$IndentingQueryPrettifier_asString2($this, $clause); if ($clause instanceof oncia_Remove) - return onciap_Prettifier$IndentingQueryPrettifier_asString14($this, $clause); + return onciap_Prettifier$IndentingQueryPrettifier_asString15($this, $clause); if ($clause instanceof oncia_Delete) return onciap_Prettifier$IndentingQueryPrettifier_asString24($this, $clause); if ($clause instanceof oncia_Merge) @@ -28099,90 +28293,99 @@ onciap_Prettifier$IndentingQueryPrettifier_dispatch = ($this, $clause) => { if ($clause instanceof oncia_LoadCSV) return onciap_Prettifier$IndentingQueryPrettifier_asString18($this, $clause); if ($clause instanceof oncia_Foreach) - return onciap_Prettifier$IndentingQueryPrettifier_asString11($this, $clause); - return s_PartialFunction$$anon$1_applyOrElse(onciap_Prettifier$EmptyExtension$_asString(onciap_Prettifier_extension(onciap_Prettifier$IndentingQueryPrettifier_org$neo4j$cypher$internal$ast$prettifier$Prettifier$IndentingQueryPrettifier$$$outer($this)), $this), $clause, onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0__init_0($this)); + return onciap_Prettifier$IndentingQueryPrettifier_asString13($this, $clause); + s_PartialFunction$_$callClinit(); + return s_PartialFunction_applyOrElse$(s_PartialFunction$_empty(s_PartialFunction$_MODULE$), $clause, onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0__init_0($this)); } $clause = $clause; - $ext = !$clause.$optional1 ? $rt_s(4) : $rt_s(611); - var$2 = $clause.$matchMode1.$prettified(); - var$4 = sc_StringOps$_MODULE$; + var$2 = !$clause.$optional1 ? $rt_s(4) : $rt_s(610); + $ext = $clause.$matchMode1.$prettified(); + var$3 = sc_StringOps$_MODULE$; s_Predef$_$callClinit(); - if (sc_StringOps$_nonEmpty$extension(var$4, var$2)) { - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, var$2), 32); - var$2 = jl_AbstractStringBuilder_toString(var$4); + if (sc_StringOps$_nonEmpty$extension(var$3, $ext)) { + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$3, $ext), 32); + $ext = jl_AbstractStringBuilder_toString(var$3); } - var$4 = onciap_DefaultPatternStringifier_apply1($this.$$outer.$expr1.$patterns0, $clause.$pattern7); - var$5 = onciap_Prettifier$IndentingQueryPrettifier_indented($this); + var$3 = onciap_DefaultPatternStringifier_apply1($this.$$outer.$expr1.$patterns0, $clause.$pattern7); + var$7 = onciap_Prettifier$IndentingQueryPrettifier_indented($this); var$6 = $clause.$where4; - var$7 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_0; - var$7.$_0376 = var$5; - var$7 = s_Option_map(var$6, var$7); + var$5 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_0; + var$5.$_0361 = var$7; + var$5 = s_Option_map(var$6, var$5); var$6 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_1; - var$6.$_0884 = $this; - var$7 = s_Option_getOrElse(s_Option_map(var$7, var$6), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_2); + var$6.$_0865 = $this; + var$5 = s_Option_getOrElse(s_Option_map(var$5, var$6), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_2); var$6 = $clause.$hints; $clause = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_3; - $clause.$_01077 = var$5; + $clause.$_01056 = var$7; $clause = var$6.$map($clause); - var$5 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_4; - var$5.$_0155 = $this; - $clause = sc_AbstractIterable_mkString0($clause.$map(var$5)); + var$7 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_4; + var$7.$_0148 = $this; + $clause = sc_AbstractIterable_mkString0($clause.$map(var$7)); var$6 = $this.$INDENT; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$6), $ext), $rt_s(612)), var$2), var$4), $clause), var$7); - return jl_AbstractStringBuilder_toString(var$5); + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, var$6), var$2), $rt_s(613)), $ext), var$3), $clause), var$5); + return jl_AbstractStringBuilder_toString(var$7); }, -onciap_Prettifier$IndentingQueryPrettifier_asString12 = ($this, $c) => { - let $optional, var$3, $inTxParams, var$5, var$6, var$7, var$8; - $optional = !$c.$optional4 ? $rt_s(4) : $rt_s(611); - var$3 = $c.$inTransactionsParameters1; - $inTxParams = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_0; - $inTxParams.$_0477 = $this; - $inTxParams = s_Option_getOrElse(s_Option_map(var$3, $inTxParams), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_1); - var$3 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - var$5 = $this.$INDENT; - var$6 = onciap_Prettifier$IndentingQueryPrettifier_query(onciap_Prettifier$IndentingQueryPrettifier_indented($this), $c.$innerQuery1); - var$7 = $this.$INDENT; - var$8 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$8); - $c = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$8, var$5), $optional), $rt_s(613)), var$6), $rt_s(614)), var$7); - jl_AbstractStringBuilder_append0($c, 125); - jl_StringBuilder_append($c, $inTxParams); - return sc_StringOps$_stripMargin$extension(var$3, jl_AbstractStringBuilder_toString(var$8)); +onciap_Prettifier$IndentingQueryPrettifier_asString5 = ($this, $u) => { + let $catalogName, $functionInvocation; + $catalogName = $u.$graphReference1; + if ($catalogName instanceof oncia_GraphDirectReference) { + $catalogName = $catalogName.$catalogName; + $u = $this.$INDENT; + $functionInvocation = sci_List_map($catalogName.$parts1, new oncia_CatalogName$asCanonicalNameString$lambda$_11_0); + oncia_CatalogName$_$callClinit(); + $catalogName = sc_AbstractIterable_mkString($functionInvocation, oncia_CatalogName$_separatorString(oncia_CatalogName$_MODULE$)); + $functionInvocation = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($functionInvocation); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($functionInvocation, $u), $rt_s(614)), $catalogName); + return jl_AbstractStringBuilder_toString($functionInvocation); + } + if ($catalogName instanceof oncia_GraphFunctionReference) { + $functionInvocation = $catalogName.$functionInvocation1; + if ($functionInvocation !== null) { + $u = $this.$INDENT; + $functionInvocation = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $functionInvocation); + $catalogName = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($catalogName); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($catalogName, $u), $rt_s(614)), $functionInvocation); + return jl_AbstractStringBuilder_toString($catalogName); + } + } + $rt_throw(s_MatchError__init_($catalogName)); }, onciap_Prettifier$IndentingQueryPrettifier_asString19 = ($this, $c) => { let $optional, var$3, var$4, $inTxParams, var$6, var$7, var$8, var$9; - $optional = !$c.$optional2 ? $rt_s(4) : $rt_s(611); + $optional = !$c.$optional2 ? $rt_s(4) : $rt_s(610); var$3 = $c.$inTransactionsParameters0; var$4 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_0; - var$4.$_0298 = $this; + var$4.$_0281 = $this; $inTxParams = s_Option_getOrElse(s_Option_map(var$3, var$4), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_1); var$6 = sc_StringOps$_MODULE$; s_Predef$_$callClinit(); var$7 = $this.$INDENT; if ($c.$isImportingAll) - var$4 = $rt_s(172); + var$4 = $rt_s(171); else { var$4 = $c.$importedVariables; var$3 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_2; - var$3.$_0167 = $this; + var$3.$_0163 = $this; var$4 = sc_IterableOnceOps_mkString$(var$4.$map(var$3), $rt_s(4), $rt_s(41), $rt_s(4)); } var$8 = onciap_Prettifier$IndentingQueryPrettifier_query(onciap_Prettifier$IndentingQueryPrettifier_indented($this), $c.$innerQuery0); var$3 = $this.$INDENT; var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); - $c = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, var$7), $optional), $rt_s(615)), var$4), $rt_s(616)), var$8), $rt_s(614)), var$3); + $c = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, var$7), $optional), $rt_s(615)), var$4), $rt_s(616)), var$8), $rt_s(612)), var$3); jl_AbstractStringBuilder_append0($c, 125); jl_StringBuilder_append($c, $inTxParams); return sc_StringOps$_stripMargin$extension(var$6, jl_AbstractStringBuilder_toString(var$9)); }, -onciap_Prettifier$IndentingQueryPrettifier_asString6 = ($this, $ip) => { - let $ofRows, $size, var$4, $concurrency, $explicit, $onError, $reportStatus, $statusVar; +onciap_Prettifier$IndentingQueryPrettifier_asString8 = ($this, $ip) => { + let $ofRows, $size, $reportStatus, var$5, $onError, $concurrency, $explicit, $statusVar; $ofRows = s_Option_map($ip.$batchParams, new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0); if (!($ofRows instanceof s_Some)) { if (!jl_Object_equals(s_None$_MODULE$, $ofRows)) @@ -28191,38 +28394,38 @@ onciap_Prettifier$IndentingQueryPrettifier_asString6 = ($this, $ip) => { } else { $size = $ofRows.$value5; $ofRows = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $size); - $size = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($size); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($size, $rt_s(617)), $ofRows), $rt_s(618)); - $ofRows = jl_AbstractStringBuilder_toString($size); + $reportStatus = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($reportStatus); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($reportStatus, $rt_s(617)), $ofRows), $rt_s(618)); + $ofRows = jl_AbstractStringBuilder_toString($reportStatus); } a: { - var$4 = 0; - $size = null; + var$5 = 0; + $onError = null; $concurrency = $ip.$concurrencyParams; if ($concurrency instanceof s_Some) { - var$4 = 1; - $size = $concurrency; - $explicit = $size.$value5; - if ($explicit !== null) { - $explicit = $explicit.$concurrency; - if ($explicit instanceof s_Some) { - $explicit = $explicit.$value5; - $size = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $explicit); - $explicit = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($explicit); - jl_AbstractStringBuilder_append0($explicit, 32); - jl_StringBuilder_append(jl_StringBuilder_append($explicit, $size), $rt_s(619)); - $concurrency = jl_AbstractStringBuilder_toString($explicit); + var$5 = 1; + $onError = $concurrency; + $reportStatus = $onError.$value5; + if ($reportStatus !== null) { + $reportStatus = $reportStatus.$concurrency; + if ($reportStatus instanceof s_Some) { + $explicit = $reportStatus.$value5; + $reportStatus = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $explicit); + $concurrency = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($concurrency); + jl_AbstractStringBuilder_append0($concurrency, 32); + jl_StringBuilder_append(jl_StringBuilder_append($concurrency, $reportStatus), $rt_s(619)); + $concurrency = jl_AbstractStringBuilder_toString($concurrency); break a; } } } - if (var$4) { - $size = $size.$value5; - if ($size !== null) { - $explicit = $size.$concurrency; - if (jl_Object_equals(s_None$_MODULE$, $explicit)) { + if (var$5) { + $reportStatus = $onError.$value5; + if ($reportStatus !== null) { + $onError = $reportStatus.$concurrency; + if (jl_Object_equals(s_None$_MODULE$, $onError)) { $concurrency = $rt_s(619); break a; } @@ -28233,37 +28436,34 @@ onciap_Prettifier$IndentingQueryPrettifier_asString6 = ($this, $ip) => { $concurrency = $rt_s(4); } b: { - var$4 = 0; + var$5 = 0; $onError = null; - $explicit = s_Option_map($ip.$errorParams, new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1); - if ($explicit instanceof s_Some) { - var$4 = 1; - $onError = $explicit; - $size = $onError.$value5; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_$callClinit(); - if (jl_Object_equals(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$, $size)) { + $statusVar = s_Option_map($ip.$errorParams, new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1); + if ($statusVar instanceof s_Some) { + var$5 = 1; + $onError = $statusVar; + $reportStatus = $onError.$value5; + if (jl_Object_equals(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$, $reportStatus)) { $onError = $rt_s(620); break b; } } - if (var$4) { - $size = $onError.$value5; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_$callClinit(); - if (jl_Object_equals(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$, $size)) { + if (var$5) { + $reportStatus = $onError.$value5; + if (jl_Object_equals(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$, $reportStatus)) { $onError = $rt_s(621); break b; } } - if (var$4) { - $size = $onError.$value5; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit(); - if (jl_Object_equals(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$, $size)) { + if (var$5) { + $reportStatus = $onError.$value5; + if (jl_Object_equals(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$, $reportStatus)) { $onError = $rt_s(622); break b; } } - if (!jl_Object_equals(s_None$_MODULE$, $explicit)) - $rt_throw(s_MatchError__init_($explicit)); + if (!jl_Object_equals(s_None$_MODULE$, $statusVar)) + $rt_throw(s_MatchError__init_($statusVar)); $onError = $rt_s(4); } $ip = s_Option_map($ip.$reportParams0, new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2); @@ -28273,39 +28473,39 @@ onciap_Prettifier$IndentingQueryPrettifier_asString6 = ($this, $ip) => { $reportStatus = $rt_s(4); } else { $statusVar = $ip.$value5; - $ip = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $statusVar.$name4, 0, 0); - $size = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($size); - jl_StringBuilder_append(jl_StringBuilder_append($size, $rt_s(623)), $ip); - $reportStatus = jl_AbstractStringBuilder_toString($size); + $ip = onciap_Prettifier_backtick($this.$$outer, $statusVar.$name4); + $reportStatus = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($reportStatus); + jl_StringBuilder_append(jl_StringBuilder_append($reportStatus, $rt_s(623)), $ip); + $reportStatus = jl_AbstractStringBuilder_toString($reportStatus); } - $size = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($size); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($size, $rt_s(624)), $concurrency), $rt_s(625)), $ofRows), $onError), $reportStatus); - return jl_AbstractStringBuilder_toString($size); + $ip = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($ip); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ip, $rt_s(624)), $concurrency), $rt_s(625)), $ofRows), $onError), $reportStatus); + return jl_AbstractStringBuilder_toString($ip); }, onciap_Prettifier$IndentingQueryPrettifier_asString = ($this, $w) => { let var$2, var$3; var$2 = $this.$INDENT; - $w = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $w.$expression18); + $w = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $w.$expression21); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(601)), $w); return jl_AbstractStringBuilder_toString(var$3); }, -onciap_Prettifier$IndentingQueryPrettifier_asString8 = ($this, $m) => { +onciap_Prettifier$IndentingQueryPrettifier_asString10 = ($this, $m) => { let $v, $l, $l_0, $vs, $vs_0, $v_0, $ps, $s, $t, var$11, var$12, var$13, var$14, var$15, var$16; if (!($m instanceof oncia_UsingIndexHint)) { if ($m instanceof oncia_UsingScanHint) { $m = $m; - $v = $m.$variable18; + $v = $m.$variable19; $l = $m.$labelOrRelType3; $l_0 = new sci_$colon$colon; $m = $this.$INDENT; $vs = new jl_StringBuilder; jl_AbstractStringBuilder__init_($vs); jl_StringBuilder_append(jl_StringBuilder_append($vs, $m), $rt_s(626)); - sci_$colon$colon__init_0($l_0, jl_AbstractStringBuilder_toString($vs), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $v), sci_$colon$colon__init_($rt_s(91), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_apply0($this.$$outer.$expr1, $l), sci_Nil$_MODULE$)))); + sci_$colon$colon__init_0($l_0, jl_AbstractStringBuilder_toString($vs), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $v), sci_$colon$colon__init_($rt_s(92), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_apply0($this.$$outer.$expr1, $l), sci_Nil$_MODULE$)))); return sc_AbstractIterable_mkString0($l_0); } if ($m instanceof oncia_UsingJoinHint) { @@ -28318,7 +28518,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString8 = ($this, $m) => { $v = jl_AbstractStringBuilder_toString($vs); $vs = new sci_$colon$colon; $l_0 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1; - $l_0.$_0275 = $this; + $l_0.$_0259 = $this; sci_$colon$colon__init_0($vs, sc_AbstractIterable_mkString(($vs_0.$map4($l_0)).$toIterable(), $rt_s(45)), sci_Nil$_MODULE$); sci_$colon$colon__init_0($m, $v, $vs); return sc_AbstractIterable_mkString0($m); @@ -28333,7 +28533,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString8 = ($this, $m) => { $v = jl_AbstractStringBuilder_toString($l_0); $l_0 = new sci_$colon$colon; $vs_0 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_2; - $vs_0.$_01202 = $this; + $vs_0.$_01184 = $this; sci_$colon$colon__init_0($l_0, (($vs.$map4($vs_0)).$toIterable()).$mkString($rt_s(45)), sci_Nil$_MODULE$); sci_$colon$colon__init_0($m, $v, $l_0); return sc_AbstractIterable_mkString0($m); @@ -28349,7 +28549,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString8 = ($this, $m) => { $vs_0 = jl_AbstractStringBuilder_toString($m); $m = new sci_$colon$colon; $v = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_3; - $v.$_01175 = $this; + $v.$_01153 = $this; sci_$colon$colon__init_0($m, (($vs.$map4($v)).$toIterable()).$mkString($rt_s(45)), sci_Nil$_MODULE$); sci_$colon$colon__init_0($l_0, $vs_0, $m); return sc_AbstractIterable_mkString0($l_0); @@ -28357,7 +28557,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString8 = ($this, $m) => { $m = $m; $v_0 = $m.$variable13; $l_0 = $m.$labelOrRelType2; - $ps = $m.$properties6; + $ps = $m.$properties7; $s = $m.$spec; $t = $m.$indexType3; $v = new sci_$colon$colon; @@ -28404,10 +28604,10 @@ onciap_Prettifier$IndentingQueryPrettifier_asString8 = ($this, $m) => { var$15 = onciap_DefaultExpressionStringifier_apply0($this.$$outer.$expr1, $l_0); var$16 = new sci_$colon$colon; $l_0 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0; - $l_0.$_0595 = $this; + $l_0.$_0586 = $this; sci_$colon$colon__init_0(var$16, sc_IterableOnceOps_mkString$($ps.$map($l_0), $rt_s(40), $rt_s(41), $rt_s(42)), sci_Nil$_MODULE$); sci_$colon$colon__init_0($vs, var$15, var$16); - sci_$colon$colon__init_0(var$14, $rt_s(91), $vs); + sci_$colon$colon__init_0(var$14, $rt_s(92), $vs); sci_$colon$colon__init_0(var$13, $v_0, var$14); sci_$colon$colon__init_0(var$12, $s, var$13); sci_$colon$colon__init_0($l, $t, var$12); @@ -28420,10 +28620,10 @@ onciap_Prettifier$IndentingQueryPrettifier_asString26 = ($this, $m) => { $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); $a = $m.$actions; $m = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_0; - $m.$_0534 = $ind; + $m.$_0518 = $ind; $m = $a.$map($m); $ind = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_1; - $ind.$_01032 = $this; + $ind.$_01021 = $this; $a = sc_AbstractIterable_mkString0($m.$map($ind)); $ind = $this.$INDENT; $m = new jl_StringBuilder; @@ -28434,7 +28634,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString26 = ($this, $m) => { onciap_Prettifier$IndentingQueryPrettifier_asString0 = ($this, $o) => { let var$2, var$3; var$2 = $this.$INDENT; - $o = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $o.$expression31); + $o = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $o.$expression33); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(637)), $o); @@ -28443,7 +28643,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString0 = ($this, $o) => { onciap_Prettifier$IndentingQueryPrettifier_asString1 = ($this, $o) => { let var$2, var$3; var$2 = $this.$INDENT; - $o = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $o.$expression33); + $o = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $o.$expression34); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(638)), $o); @@ -28454,7 +28654,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString3 = ($this, $o) => { var$2 = $this.$INDENT; var$3 = $o.$sortItems; $o = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0; - $o.$_01161 = $this; + $o.$_01144 = $this; $o = sc_AbstractIterable_mkString(var$3.$map($o), $rt_s(45)); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); @@ -28463,13 +28663,13 @@ onciap_Prettifier$IndentingQueryPrettifier_asString3 = ($this, $o) => { }, onciap_Prettifier$IndentingQueryPrettifier_asString4 = ($this, $r) => { let $as, $is; - $as = !$r.$includeExisting0 ? sci_Nil$_MODULE$ : sci_$colon$colon__init_($rt_s(172), sci_Nil$_MODULE$); + $as = !$r.$includeExisting0 ? sci_Nil$_MODULE$ : sci_$colon$colon__init_($rt_s(171), sci_Nil$_MODULE$); $is = $r.$items0; $r = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0; - $r.$_019 = $this; + $r.$_015 = $this; return sc_AbstractIterable_mkString($as.$concat($is.$map($r)), $rt_s(45)); }, -onciap_Prettifier$IndentingQueryPrettifier_asString5 = ($this, $r) => { +onciap_Prettifier$IndentingQueryPrettifier_asString7 = ($this, $r) => { let $d, $i, $ind, $s, $l, $o; if ($r.$addedInRewrite) return $rt_s(4); @@ -28478,24 +28678,24 @@ onciap_Prettifier$IndentingQueryPrettifier_asString5 = ($this, $r) => { $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); $s = $r.$orderBy2; $l = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_0; - $l.$_0491 = $ind; + $l.$_0480 = $ind; $s = s_Option_map($s, $l); $l = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_1; - $l.$_01156 = $this; + $l.$_01138 = $this; $o = s_Option_getOrElse(s_Option_map($s, $l), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_2); $s = $r.$limit3; $l = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_3; - $l.$_0960 = $ind; + $l.$_0951 = $ind; $s = s_Option_map($s, $l); $l = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_4; - $l.$_0424 = $this; + $l.$_0413 = $this; $l = s_Option_getOrElse(s_Option_map($s, $l), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_5); $s = $r.$skip3; $r = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_6; - $r.$_0840 = $ind; + $r.$_0815 = $ind; $r = s_Option_map($s, $r); $s = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_7; - $s.$_0292 = $this; + $s.$_0277 = $this; $s = s_Option_getOrElse(s_Option_map($r, $s), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_8); $ind = $this.$INDENT; $r = new jl_StringBuilder; @@ -28505,7 +28705,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString5 = ($this, $r) => { jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($d, $i), $o), $s), $l); return jl_AbstractStringBuilder_toString($r); }, -onciap_Prettifier$IndentingQueryPrettifier_asString17 = ($this, $w) => { +onciap_Prettifier$IndentingQueryPrettifier_asString6 = ($this, $w) => { let $ind, $rewrittenClauses, $i, $d, var$6, var$7, var$8, var$9, var$10, var$11; a: { b: { @@ -28514,7 +28714,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString17 = ($this, $w) => { $rewrittenClauses = new sci_$colon$colon; $i = $w.$orderBy4; $d = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_0; - $d.$_0869 = $ind; + $d.$_0853 = $ind; $d = s_Option_map($i, $d); $i = new sci_$colon$colon; var$6 = $w.$skip5; @@ -28524,12 +28724,12 @@ onciap_Prettifier$IndentingQueryPrettifier_asString17 = ($this, $w) => { var$9 = new sci_$colon$colon; var$6 = $w.$limit5; var$7 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_2; - var$7.$_0680 = $ind; + var$7.$_0673 = $ind; var$10 = s_Option_map(var$6, var$7); var$11 = new sci_$colon$colon; var$6 = $w.$where2; var$7 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_3; - var$7.$_0159 = $ind; + var$7.$_0151 = $ind; sci_$colon$colon__init_0(var$11, s_Option_map(var$6, var$7), sci_Nil$_MODULE$); sci_$colon$colon__init_0(var$9, var$10, var$11); sci_$colon$colon__init_0($i, var$8, var$9); @@ -28537,7 +28737,6 @@ onciap_Prettifier$IndentingQueryPrettifier_asString17 = ($this, $w) => { s_Predef$_$callClinit(); $rewrittenClauses = sc_StrictOptimizedIterableOps_flatten$($rewrittenClauses, s_Predef$_$conforms(s_Predef$_MODULE$)); $d = $w.$withType; - oncia_ParsedAsYield$_$callClinit(); $ind = oncia_ParsedAsYield$_MODULE$; if ($d !== null) { if (jl_Object_equals($d, $ind)) @@ -28565,7 +28764,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString17 = ($this, $w) => { $w = $rewrittenClauses.$head(); $rewrittenClauses = $rewrittenClauses.$tail(); $d = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_5; - $d.$_0547 = $this; + $d.$_0531 = $this; $rewrittenClauses = sc_AbstractIterable_mkString0(sci_List_map($rewrittenClauses, $d)); $d = new jl_StringBuilder; jl_AbstractStringBuilder__init_($d); @@ -28573,10 +28772,10 @@ onciap_Prettifier$IndentingQueryPrettifier_asString17 = ($this, $w) => { return jl_AbstractStringBuilder_toString($d); } $d = !$w.$distinct2 ? $rt_s(4) : $rt_s(640); - $i = onciap_Prettifier$IndentingQueryPrettifier_asString4($this, $w.$returnItems4); + $i = onciap_Prettifier$IndentingQueryPrettifier_asString4($this, $w.$returnItems3); $ind = $this.$INDENT; $w = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_4; - $w.$_01065 = $this; + $w.$_01050 = $this; $w = sc_AbstractIterable_mkString0(sci_List_map($rewrittenClauses, $w)); $rewrittenClauses = new jl_StringBuilder; jl_AbstractStringBuilder__init_($rewrittenClauses); @@ -28585,37 +28784,37 @@ onciap_Prettifier$IndentingQueryPrettifier_asString17 = ($this, $w) => { jl_StringBuilder_append(jl_StringBuilder_append($ind, $i), $w); return jl_AbstractStringBuilder_toString($rewrittenClauses); }, -onciap_Prettifier$IndentingQueryPrettifier_asString7 = ($this, $y) => { +onciap_Prettifier$IndentingQueryPrettifier_asString9 = ($this, $y) => { let $i, $ind, $s, $o, $l, $wh; - $i = onciap_Prettifier$IndentingQueryPrettifier_asString4($this, $y.$returnItems3); + $i = onciap_Prettifier$IndentingQueryPrettifier_asString4($this, $y.$returnItems4); $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); $s = $y.$orderBy3; $o = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0; - $o.$_01002 = $ind; + $o.$_0996 = $ind; $o = s_Option_map($s, $o); $s = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1; - $s.$_0392 = $this; + $s.$_0379 = $this; $o = s_Option_getOrElse(s_Option_map($o, $s), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_2); $s = $y.$limit4; $l = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3; - $l.$_0562 = $ind; + $l.$_0543 = $ind; $s = s_Option_map($s, $l); $l = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4; - $l.$_01082 = $this; + $l.$_01064 = $this; $l = s_Option_getOrElse(s_Option_map($s, $l), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_5); $s = $y.$skip4; $wh = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_6; - $wh.$_0112 = $ind; + $wh.$_0100 = $ind; $s = s_Option_map($s, $wh); $wh = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_7; - $wh.$_0635 = $this; + $wh.$_0623 = $this; $s = s_Option_getOrElse(s_Option_map($s, $wh), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_8); $y = $y.$where3; $wh = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_9; - $wh.$_0827 = $ind; + $wh.$_0799 = $ind; $y = s_Option_map($y, $wh); $wh = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_10; - $wh.$_0765 = $this; + $wh.$_0748 = $this; $wh = s_Option_getOrElse(s_Option_map($y, $wh), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_11); $y = $this.$INDENT; $ind = new jl_StringBuilder; @@ -28623,7 +28822,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString7 = ($this, $y) => { jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ind, $y), $rt_s(643)), $i), $o), $s), $l), $wh); return jl_AbstractStringBuilder_toString($ind); }, -onciap_Prettifier$IndentingQueryPrettifier_asString16 = ($this, $i) => { +onciap_Prettifier$IndentingQueryPrettifier_asString17 = ($this, $i) => { let $p, var$3; $p = onciap_DefaultPatternStringifier_apply1($this.$$outer.$expr1.$patterns0, $i.$pattern12); var$3 = $this.$INDENT; @@ -28635,7 +28834,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString16 = ($this, $i) => { onciap_Prettifier$IndentingQueryPrettifier_asString27 = ($this, $u) => { let var$2, var$3, var$4; var$2 = $this.$INDENT; - var$3 = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $u.$expression14); + var$3 = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $u.$expression17); $u = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $u.$variable25); var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); @@ -28645,7 +28844,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString27 = ($this, $u) => { onciap_Prettifier$IndentingQueryPrettifier_asString25 = ($this, $u) => { let $namespace, $optional, $prefix, $ind, $args, $arguments, $yields; $namespace = onciap_DefaultExpressionStringifier_apply1($this.$$outer.$expr1, $u.$procedureNamespace); - $optional = !$u.$optional0 ? $rt_s(4) : $rt_s(611); + $optional = !$u.$optional0 ? $rt_s(4) : $rt_s(610); if (jl_String_isEmpty($namespace)) $prefix = $rt_s(4); else { @@ -28656,7 +28855,7 @@ onciap_Prettifier$IndentingQueryPrettifier_asString25 = ($this, $u) => { } $args = s_Option_map($u.$declaredArguments, new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_0); $namespace = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_1; - $namespace.$_0949 = $this; + $namespace.$_0939 = $this; $arguments = s_Option_getOrElse(s_Option_map($args, $namespace), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_2); $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); if ($u.$yieldAll2) { @@ -28668,10 +28867,10 @@ onciap_Prettifier$IndentingQueryPrettifier_asString25 = ($this, $u) => { } else { $namespace = s_Option_filter($u.$declaredResult, new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_3); $yields = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_4; - $yields.$_0309 = $ind; + $yields.$_0300 = $ind; $namespace = s_Option_map($namespace, $yields); $ind = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_5; - $ind.$_0754 = $this; + $ind.$_0739 = $this; $yields = s_Option_getOrElse(s_Option_map($namespace, $ind), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_6); } $ind = $this.$INDENT; @@ -28685,70 +28884,70 @@ onciap_Prettifier$IndentingQueryPrettifier_asString23 = ($this, $s) => { let $indexType, $ind, $yielded, $where; $indexType = $s.$indexType2.$prettyPrint(); $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); - $yielded = $s.$where6; + $yielded = $s.$where5; $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_0; - $where.$_0139 = $ind; + $where.$_0131 = $ind; $ind = s_Option_map($yielded, $where); $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_1; - $where.$_0617 = $this; + $where.$_0610 = $this; $where = s_Option_getOrElse(s_Option_map($ind, $where), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_2); - $yielded = onciap_Prettifier$IndentingQueryPrettifier_partialYieldAsString($this, $s.$yieldItems5, $s.$yieldAll8); + $yielded = onciap_Prettifier$IndentingQueryPrettifier_yieldAsString($this, $s.$yieldItems5, $s.$yieldAll8, $s.$yieldWith2); $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(528)), $indexType), $rt_s(649)), $where), $yielded); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(527)), $indexType), $rt_s(649)), $where), $yielded); return jl_AbstractStringBuilder_toString($s); }, onciap_Prettifier$IndentingQueryPrettifier_asString22 = ($this, $s) => { let $ind, $yielded, $where; $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); - $yielded = $s.$where8; + $yielded = $s.$where7; $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_0; - $where.$_01153 = $ind; + $where.$_01136 = $ind; $ind = s_Option_map($yielded, $where); $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_1; - $where.$_0527 = $this; + $where.$_0515 = $this; $where = s_Option_getOrElse(s_Option_map($ind, $where), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_2); - $yielded = onciap_Prettifier$IndentingQueryPrettifier_partialYieldAsString($this, $s.$yieldItems2, $s.$yieldAll5); + $yielded = onciap_Prettifier$IndentingQueryPrettifier_yieldAsString($this, $s.$yieldItems0, $s.$yieldAll4, $s.$yieldWith5); $s = $s.$constraintType2.$prettyPrint(); $ind = new jl_StringBuilder; jl_AbstractStringBuilder__init_($ind); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ind, $rt_s(528)), $s), $rt_s(650)), $where), $yielded); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ind, $rt_s(527)), $s), $rt_s(650)), $where), $yielded); return jl_AbstractStringBuilder_toString($ind); }, onciap_Prettifier$IndentingQueryPrettifier_asString20 = ($this, $s) => { - let $executable, $ind, $yielded, $where; + let $executable, $ind, $where, $yielded; $executable = onciap_Prettifier$IndentingQueryPrettifier_getExecutablePart($this, $s.$executable); $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); - $yielded = $s.$where10; - $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0; - $where.$_0958 = $ind; - $ind = s_Option_map($yielded, $where); + $where = $s.$where9; + $yielded = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0; + $yielded.$_0949 = $ind; + $ind = s_Option_map($where, $yielded); $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1; - $where.$_0201 = $this; + $where.$_0195 = $this; $where = s_Option_getOrElse(s_Option_map($ind, $where), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2); - $yielded = onciap_Prettifier$IndentingQueryPrettifier_partialYieldAsString($this, $s.$yieldItems0, $s.$yieldAll7); + $yielded = onciap_Prettifier$IndentingQueryPrettifier_yieldAsString($this, $s.$yieldItems1, $s.$yieldAll7, $s.$yieldWith3); $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(651)), $executable), $where), $yielded); return jl_AbstractStringBuilder_toString($s); }, -onciap_Prettifier$IndentingQueryPrettifier_asString13 = ($this, $s) => { - let $functionType, $executable, $ind, $yielded, $where; +onciap_Prettifier$IndentingQueryPrettifier_asString14 = ($this, $s) => { + let $functionType, $executable, $ind, var$5, $where, $yielded; $functionType = $s.$functionType.$prettyPrint(); $executable = onciap_Prettifier$IndentingQueryPrettifier_getExecutablePart($this, $s.$executable0); $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); - $yielded = $s.$where7; + var$5 = $s.$where6; $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0; - $where.$_0639 = $ind; - $yielded = s_Option_map($yielded, $where); + $where.$_0625 = $ind; + var$5 = s_Option_map(var$5, $where); $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_1; $where.$_037 = $this; - $where = s_Option_getOrElse(s_Option_map($yielded, $where), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_2); - $yielded = onciap_Prettifier$IndentingQueryPrettifier_partialYieldAsString($this, $s.$yieldItems3, $s.$yieldAll9); - $ind = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($ind); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($ind, $rt_s(528)), $functionType), $rt_s(652)), $executable), $where), $yielded); - return jl_AbstractStringBuilder_toString($ind); + $where = s_Option_getOrElse(s_Option_map(var$5, $where), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_2); + $yielded = onciap_Prettifier$IndentingQueryPrettifier_yieldAsString($this, $s.$yieldItems3, $s.$yieldAll9, $s.$yieldWith0); + $s = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($s); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(527)), $functionType), $rt_s(652)), $executable), $where), $yielded); + return jl_AbstractStringBuilder_toString($s); }, onciap_Prettifier$IndentingQueryPrettifier_getExecutablePart = ($this, $executable) => { let var$2, $name, var$4; @@ -28758,14 +28957,15 @@ onciap_Prettifier$IndentingQueryPrettifier_getExecutablePart = ($this, $executab var$2 = 1; $name = $executable; var$4 = $name.$value5; + oncia_CurrentUser$_$callClinit(); if (jl_Object_equals(oncia_CurrentUser$_MODULE$, var$4)) return $rt_s(653); } if (var$2) { $name = $name.$value5; if ($name instanceof oncia_User) { - $name = $name.$name38; - $executable = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $name, 0, 0); + $name = $name.$name39; + $executable = onciap_Prettifier_backtick($this.$$outer, $name); $name = new jl_StringBuilder; jl_AbstractStringBuilder__init_($name); jl_StringBuilder_append(jl_StringBuilder_append($name, $rt_s(654)), $executable); @@ -28776,18 +28976,18 @@ onciap_Prettifier$IndentingQueryPrettifier_getExecutablePart = ($this, $executab return $rt_s(4); $rt_throw(s_MatchError__init_($executable)); }, -onciap_Prettifier$IndentingQueryPrettifier_asString10 = ($this, $s) => { - let $ids, $ind, $yielded, $where; - $ids = onciap_Prettifier$IndentingQueryPrettifier_namesAsString($this, $s.$names3); +onciap_Prettifier$IndentingQueryPrettifier_asString12 = ($this, $s) => { + let $ids, $ind, $where, $yielded; + $ids = onciap_Prettifier$IndentingQueryPrettifier_namesAsString($this, $s.$names2); $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); - $yielded = $s.$where9; - $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_0; - $where.$_0353 = $ind; - $ind = s_Option_map($yielded, $where); + $where = $s.$where8; + $yielded = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_0; + $yielded.$_0340 = $ind; + $ind = s_Option_map($where, $yielded); $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_1; - $where.$_0956 = $this; + $where.$_0945 = $this; $where = s_Option_getOrElse(s_Option_map($ind, $where), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_2); - $yielded = onciap_Prettifier$IndentingQueryPrettifier_partialYieldAsString($this, $s.$yieldItems1, $s.$yieldAll6); + $yielded = onciap_Prettifier$IndentingQueryPrettifier_yieldAsString($this, $s.$yieldItems2, $s.$yieldAll6, $s.$yieldWith1); $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(655)), $ids), $where), $yielded); @@ -28796,24 +28996,24 @@ onciap_Prettifier$IndentingQueryPrettifier_asString10 = ($this, $s) => { onciap_Prettifier$IndentingQueryPrettifier_asString21 = ($this, $s) => { let $ids, $yielded; $ids = onciap_Prettifier$IndentingQueryPrettifier_namesAsString($this, $s.$names4); - $yielded = onciap_Prettifier$IndentingQueryPrettifier_partialYieldAsString($this, $s.$yieldItems6, $s.$yieldAll10); + $yielded = onciap_Prettifier$IndentingQueryPrettifier_yieldAsString($this, $s.$yieldItems6, $s.$yieldAll10, $s.$yieldWith6); $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(656)), $ids), $yielded); return jl_AbstractStringBuilder_toString($s); }, -onciap_Prettifier$IndentingQueryPrettifier_asString15 = ($this, $s) => { - let $names, $ind, $yielded, $where; - $names = onciap_Prettifier$IndentingQueryPrettifier_namesAsString($this, $s.$names5); +onciap_Prettifier$IndentingQueryPrettifier_asString16 = ($this, $s) => { + let $names, $ind, $where, $yielded; + $names = onciap_Prettifier$IndentingQueryPrettifier_namesAsString($this, $s.$names3); $ind = onciap_Prettifier$IndentingQueryPrettifier_indented($this); - $yielded = $s.$where11; - $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_0; - $where.$_01135 = $ind; - $ind = s_Option_map($yielded, $where); + $where = $s.$where11; + $yielded = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_0; + $yielded.$_01113 = $ind; + $ind = s_Option_map($where, $yielded); $where = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_1; - $where.$_024 = $this; + $where.$_022 = $this; $where = s_Option_getOrElse(s_Option_map($ind, $where), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_2); - $yielded = onciap_Prettifier$IndentingQueryPrettifier_partialYieldAsString($this, $s.$yieldItems4, $s.$yieldAll4); + $yielded = onciap_Prettifier$IndentingQueryPrettifier_yieldAsString($this, $s.$yieldItems4, $s.$yieldAll3, $s.$yieldWith4); $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($s, $rt_s(657)), $names), $where), $yielded); @@ -28826,8 +29026,8 @@ onciap_Prettifier$IndentingQueryPrettifier_namesAsString = ($this, $ids) => { if (!sc_IterableOnceOps_nonEmpty$($s)) return $rt_s(4); $ids = new onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0; - $ids.$_0845 = $this; - return sc_IterableOnceOps_mkString$(sci_List_map($s, $ids), $rt_s(384), $rt_s(45), $rt_s(4)); + $ids.$_0821 = $this; + return sc_IterableOnceOps_mkString$(sci_List_map($s, $ids), $rt_s(370), $rt_s(45), $rt_s(4)); } if (!($ids instanceof su_Right)) $rt_throw(s_MatchError__init_($ids)); @@ -28839,25 +29039,36 @@ onciap_Prettifier$IndentingQueryPrettifier_namesAsString = ($this, $ids) => { jl_StringBuilder_append($e, $ids); return jl_AbstractStringBuilder_toString($e); }, -onciap_Prettifier$IndentingQueryPrettifier_partialYieldAsString = ($this, $yieldItems, $yieldAll) => { - let $items, var$4; - if (!sc_IterableOnceOps_nonEmpty$($yieldItems)) { - if (!$yieldAll) - return $rt_s(4); - $items = $this.$INDENT; +onciap_Prettifier$IndentingQueryPrettifier_yieldAsString = ($this, $yieldItems, $yieldAll, $yieldWith) => { + let $yieldPart, $items, $extraClauses; + if (sc_IterableOnceOps_nonEmpty$($yieldItems)) { + $yieldPart = new onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_0; + $yieldPart.$_014 = $this; + $items = sc_AbstractIterable_mkString(sci_List_map($yieldItems, $yieldPart), $rt_s(45)); + $yieldPart = $this.$INDENT; $yieldItems = new jl_StringBuilder; jl_AbstractStringBuilder__init_($yieldItems); - jl_StringBuilder_append(jl_StringBuilder_append($yieldItems, $items), $rt_s(647)); - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine($this, jl_AbstractStringBuilder_toString($yieldItems)); - } - $items = new onciap_Prettifier$IndentingQueryPrettifier$partialYieldAsString$lambda$_42_0; - $items.$_00 = $this; - $items = sc_AbstractIterable_mkString(sci_List_map($yieldItems, $items), $rt_s(45)); - var$4 = $this.$INDENT; + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($yieldItems, $yieldPart), $rt_s(643)), $items); + $yieldPart = onciap_Prettifier$IndentingQueryPrettifier_asNewLine($this, jl_AbstractStringBuilder_toString($yieldItems)); + } else if (!$yieldAll) + $yieldPart = $rt_s(4); + else { + $yieldPart = $this.$INDENT; + $yieldItems = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($yieldItems); + jl_StringBuilder_append(jl_StringBuilder_append($yieldItems, $yieldPart), $rt_s(647)); + $yieldPart = onciap_Prettifier$IndentingQueryPrettifier_asNewLine($this, jl_AbstractStringBuilder_toString($yieldItems)); + } + $yieldItems = new onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_1; + $yieldItems.$_0644 = $this; + $yieldItems = s_Option_filter(s_Option_map($yieldWith, $yieldItems), new onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_2); + $yieldWith = new onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_3; + $yieldWith.$_0466 = $this; + $extraClauses = s_Option_getOrElse(s_Option_map($yieldItems, $yieldWith), new onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_4); $yieldItems = new jl_StringBuilder; jl_AbstractStringBuilder__init_($yieldItems); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($yieldItems, var$4), $rt_s(643)), $items); - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine($this, jl_AbstractStringBuilder_toString($yieldItems)); + jl_StringBuilder_append(jl_StringBuilder_append($yieldItems, $yieldPart), $extraClauses); + return jl_AbstractStringBuilder_toString($yieldItems); }, onciap_Prettifier$IndentingQueryPrettifier_asString2 = ($this, $s) => { let var$2, var$3; @@ -28865,10 +29076,10 @@ onciap_Prettifier$IndentingQueryPrettifier_asString2 = ($this, $s) => { $s = onciap_Prettifier_prettifySetItems($this.$$outer, $s.$items5); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(167)), $s); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(166)), $s); return jl_AbstractStringBuilder_toString(var$3); }, -onciap_Prettifier$IndentingQueryPrettifier_asString14 = ($this, $r) => { +onciap_Prettifier$IndentingQueryPrettifier_asString15 = ($this, $r) => { let var$2, var$3; var$2 = $this.$INDENT; $r = onciap_Prettifier_prettifyRemoveItems($this.$$outer, $r.$items4); @@ -28884,12 +29095,12 @@ onciap_Prettifier$IndentingQueryPrettifier_asString18 = ($this, $v) => { $varName = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $v.$variable17); $fieldTerminator = $v.$fieldTerminator; $v = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_0; - $v.$_0350 = $this; + $v.$_0336 = $this; $fieldTerminator = s_Option_getOrElse(s_Option_map($fieldTerminator, $v), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_1); var$6 = $this.$INDENT; $v = new jl_StringBuilder; jl_AbstractStringBuilder__init_($v); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($v, var$6), $rt_s(660)), $withHeaders), $rt_s(518)), $url), $rt_s(646)), $varName), $fieldTerminator); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($v, var$6), $rt_s(660)), $withHeaders), $rt_s(517)), $url), $rt_s(646)), $varName), $fieldTerminator); return jl_AbstractStringBuilder_toString($v); }, onciap_Prettifier$IndentingQueryPrettifier_asString24 = ($this, $delete) => { @@ -28898,38 +29109,38 @@ onciap_Prettifier$IndentingQueryPrettifier_asString24 = ($this, $delete) => { var$3 = $this.$INDENT; var$4 = $delete.$expressions1; $delete = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_46_0; - $delete.$_0675 = $this; + $delete.$_0666 = $this; $delete = sc_AbstractIterable_mkString(var$4.$map($delete), $rt_s(45)); var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$3), $detach), $rt_s(662)), $delete); return jl_AbstractStringBuilder_toString(var$4); }, -onciap_Prettifier$IndentingQueryPrettifier_asString11 = ($this, $foreach) => { +onciap_Prettifier$IndentingQueryPrettifier_asString13 = ($this, $foreach) => { let $varName, $list, var$4, var$5, var$6, $updates; $varName = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $foreach.$variable16); - $list = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $foreach.$expression19); + $list = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $foreach.$expression22); var$4 = $foreach.$updates; $foreach = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_47_0; - $foreach.$_01131 = $this; + $foreach.$_01109 = $this; $foreach = var$4.$map($foreach); var$5 = $this.$$outer.$NL0; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$5), $rt_s(82)); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$5), $rt_s(83)); var$6 = jl_AbstractStringBuilder_toString(var$4); var$5 = $this.$$outer.$NL0; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$5), $rt_s(82)); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$5), $rt_s(83)); $updates = sc_IterableOnceOps_mkString$($foreach, var$6, jl_AbstractStringBuilder_toString(var$4), $this.$$outer.$NL0); var$4 = $this.$INDENT; $foreach = new jl_StringBuilder; jl_AbstractStringBuilder__init_($foreach); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($foreach, var$4), $rt_s(663)), $varName), $rt_s(449)), $list), $rt_s(664)), $updates), 41); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($foreach, var$4), $rt_s(663)), $varName), $rt_s(447)), $list), $rt_s(664)), $updates), 41); return jl_AbstractStringBuilder_toString($foreach); }, -onciap_Prettifier$IndentingQueryPrettifier_asString9 = ($this, $auth) => { +onciap_Prettifier$IndentingQueryPrettifier_asString11 = ($this, $auth) => { let $idString, var$3, var$4, var$5, var$6; $idString = onciap_DefaultExpressionStringifier_apply($this.$$outer.$expr1, $auth.$maybeId.$get1()); var$3 = $auth.$provider1; @@ -28963,12 +29174,9 @@ onciap_Prettifier$IndentingQueryPrettifier_authAsString = ($this, $provider, $in var$6 = $innerClauses.$BASE_INDENT; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $provider), var$5), $rt_s(666)), $providerString), $rt_s(569)), $provider), var$5), var$6), $innerClausesString), $provider), var$5), 125); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $provider), var$5), $rt_s(666)), $providerString), $rt_s(568)), $provider), var$5), var$6), $innerClausesString), $provider), var$5), 125); return jl_AbstractStringBuilder_toString(var$7); }, -onciap_Prettifier$IndentingQueryPrettifier_org$neo4j$cypher$internal$ast$prettifier$Prettifier$IndentingQueryPrettifier$$$outer = $this => { - return $this.$$outer; -}, onciap_Prettifier$IndentingQueryPrettifier__init_ = ($this, $$outer, $indentLevel) => { let var$3, var$4; $this.$indentLevel = $indentLevel; @@ -29002,32 +29210,77 @@ onciu_Rewriter$$anonfun$lift$1_applyOrElse = ($this, $x1, $default) => { }, onciu_RewriterStopper$ = $rt_classWithoutFields(), onciu_RewriterStopper$_MODULE$ = null, -onciu_RewriterStopper$_neverStop0 = null, -onciu_RewriterStopper$_$callClinit = () => { - onciu_RewriterStopper$_$callClinit = $rt_eraseClinit(onciu_RewriterStopper$); - onciu_RewriterStopper$__clinit_(); -}, +onciu_RewriterStopper$_neverStop = null, onciu_RewriterStopper$__clinit_ = () => { - let var$1; - var$1 = new onciu_RewriterStopper$; - onciu_RewriterStopper$_$callClinit(); - onciu_RewriterStopper$_MODULE$ = var$1; - onciu_RewriterStopper$_neverStop0 = new onciu_RewriterStopper$$_clinit_$lambda$_0_0; -}, -onciu_RewriterStopper$_neverStop = $this => { - onciu_RewriterStopper$_$callClinit(); - return onciu_RewriterStopper$_neverStop0; + onciu_RewriterStopper$_MODULE$ = new onciu_RewriterStopper$; + onciu_RewriterStopper$_neverStop = new onciu_RewriterStopper$$_clinit_$lambda$_0_0; }, -onciu_CancellationChecker = $rt_classWithoutFields(0); -let onciu_CancellationChecker$NeverCancelled$ = $rt_classWithoutFields(), +onciu_CancellationChecker = $rt_classWithoutFields(0), +onciu_CancellationChecker$NeverCancelled$ = $rt_classWithoutFields(), onciu_CancellationChecker$NeverCancelled$_MODULE$ = null, onciu_CancellationChecker$NeverCancelled$__clinit_ = () => { onciu_CancellationChecker$NeverCancelled$_MODULE$ = new onciu_CancellationChecker$NeverCancelled$; }; +function onciu_bottomUp$BottomUpRewriter() { + let a = this; jl_Object.call(a); + a.$rewriter0 = null; + a.$stopper0 = null; + a.$cancellation0 = null; +} +let onciu_bottomUp$BottomUpRewriter_toString = $this => { + return $rt_s(37); +}, +onciu_bottomUp$BottomUpRewriter_apply = ($this, $that) => { + let $initialStack, $result, var$4, var$5, var$6, var$7; + $initialStack = scm_Stack$_MODULE$; + $result = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(s_Tuple2, 1); + var$4.data[0] = s_Tuple2__init_(sci_$colon$colon__init_($that, sci_Nil$_MODULE$), scm_ListBuffer__init_()); + $initialStack = $initialStack.$from0(sr_ScalaRunTime$_wrapRefArray($result, var$4)); + a: { + while (true) { + $that = sc_IndexedSeqOps_head$($initialStack); + if ($that === null) + break; + $that = $that.$_1(); + if (!sci_List_isEmpty($that)) { + $result = $that.$head(); + scm_Stack_push($initialStack, s_Tuple2__init_((onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $result)).$toList(), scm_ListBuffer__init_())); + continue; + } + $that = scm_Stack_pop($initialStack); + if ($that === null) + $rt_throw(s_MatchError__init_($that)); + $result = $that.$_2(); + if (scm_ArrayDeque_isEmpty($initialStack)) { + s_Predef$_$callClinit(); + s_Predef$_assert(s_Predef$_MODULE$, $result.$length() != 1 ? 0 : 1); + return sc_AbstractIterable_head($result); + } + $that = scm_Stack_pop($initialStack); + if ($that === null) + break a; + var$5 = $that.$_1(); + $that = $that.$_2(); + if (!(var$5 instanceof sci_$colon$colon)) + break a; + var$5 = var$5; + var$6 = var$5.$head1; + var$7 = var$5.$next5; + $result = onciu_Rewritable$_dupAny(onciu_Rewritable$_MODULE$, var$6, sc_IterableOnceOps_toSeq$($result)); + var$5 = $this.$rewriter0.$apply2($result); + scm_Stack_push($initialStack, s_Tuple2__init_(var$7, $that.$addOne(var$5))); + } + $rt_throw(s_MatchError__init_($that)); + } + $that = new jl_IllegalStateException; + jl_Throwable__init_($that, $rt_s(667)); + $rt_throw($that); +}; function onciu_topDown$TopDownRewriter() { let a = this; jl_Object.call(a); a.$rewriter1 = null; - a.$stopper0 = null; + a.$stopper = null; a.$leftToRight0 = 0; a.$cancellation1 = null; } @@ -29069,7 +29322,7 @@ onciu_topDown$TopDownRewriter_rec = ($this, $stack) => { break a; $currentJobs = $currentJobs; $job = $currentJobs.$head1; - $jobs = $currentJobs.$next6; + $jobs = $currentJobs.$next5; $args = !$this.$leftToRight0 ? (sc_AbstractSeq_reverse($newChildren)).$toSeq() : sc_IterableOnceOps_toSeq$($newChildren); $doneJob = onciu_Rewritable$_dupAny(onciu_Rewritable$_MODULE$, $job, $args); scm_Stack_push($stack, s_Tuple2__init_($jobs, $doneJobs.$addOne($doneJob))); @@ -29084,109 +29337,25 @@ onciu_topDown$TopDownRewriter_rec = ($this, $stack) => { break b; $currentJobs = $newJobs; $newJob = $currentJobs.$head1; - $jobs = $currentJobs.$next6; - if ($this.$stopper0.$shouldStop($newJob)) + $jobs = $currentJobs.$next5; + if ($this.$stopper.$shouldStop($newJob)) scm_Stack_push($stack, s_Tuple2__init_($jobs, $doneJobs.$addOne($newJob))); else { $rewrittenJob = $this.$rewriter1.$apply2($newJob); scm_Stack_push($stack, s_Tuple2__init_(sci_List_$colon$colon($jobs, $rewrittenJob), $doneJobs)); - if (!$this.$leftToRight0) { - onciu_Foldable$TreeAny$_$callClinit(); - $newJobs = (onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $rewrittenJob)).$toList(); - } else { - onciu_Foldable$TreeAny$_$callClinit(); - $newJobs = (onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $rewrittenJob)).$toList(); - } - scm_Stack_push($stack, s_Tuple2__init_($newJobs, scm_ListBuffer__init_())); + scm_Stack_push($stack, s_Tuple2__init_(!$this.$leftToRight0 ? (onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $rewrittenJob)).$toList() : (onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $rewrittenJob)).$toList(), scm_ListBuffer__init_())); } } return $newChildren; } $stack = new jl_IllegalStateException; - jl_Throwable__init_0($stack, $rt_s(667)); + jl_Throwable__init_($stack, $rt_s(668)); $rt_throw($stack); } $stack = new jl_IllegalStateException; - jl_Throwable__init_0($stack, $rt_s(667)); + jl_Throwable__init_($stack, $rt_s(668)); $rt_throw($stack); }; -function onciu_bottomUp$BottomUpRewriter() { - let a = this; jl_Object.call(a); - a.$rewriter0 = null; - a.$stopper = null; - a.$cancellation0 = null; -} -let onciu_bottomUp$BottomUpRewriter_toString = $this => { - return $rt_s(37); -}, -onciu_bottomUp$BottomUpRewriter_apply = ($this, $that) => { - let $initialStack, $result, var$4, var$5, var$6, var$7; - $initialStack = scm_Stack$_MODULE$; - $result = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(s_Tuple2, 1); - var$4.data[0] = s_Tuple2__init_(sci_$colon$colon__init_($that, sci_Nil$_MODULE$), scm_ListBuffer__init_()); - $initialStack = $initialStack.$from0(sr_ScalaRunTime$_wrapRefArray($result, var$4)); - a: { - b: { - while (true) { - $that = sc_IndexedSeqOps_head$($initialStack); - if ($that === null) - break; - $that = $that.$_1(); - if (!sci_List_isEmpty($that)) { - $result = $that.$head(); - if (!onciu_RewriterStopper$$_clinit_$lambda$_0_0_shouldStop($this.$stopper, $result)) { - var$5 = new s_Tuple2; - onciu_Foldable$TreeAny$_$callClinit(); - s_Tuple2__init_0(var$5, (onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $result)).$toList(), scm_ListBuffer__init_()); - scm_Stack_push($initialStack, var$5); - } else { - $that = scm_Stack_pop($initialStack); - if ($that === null) - break b; - $result = $that.$_1(); - $that = $that.$_2(); - if (!($result instanceof sci_$colon$colon)) - break b; - $result = $result; - var$6 = $result.$head1; - scm_Stack_push($initialStack, s_Tuple2__init_($result.$next6, $that.$addOne(var$6))); - } - continue; - } - $that = scm_Stack_pop($initialStack); - if ($that === null) - $rt_throw(s_MatchError__init_($that)); - $result = $that.$_2(); - if (scm_ArrayDeque_isEmpty($initialStack)) { - s_Predef$_$callClinit(); - s_Predef$_assert(s_Predef$_MODULE$, $result.$length() != 1 ? 0 : 1); - return sc_AbstractIterable_head($result); - } - $that = scm_Stack_pop($initialStack); - if ($that === null) - break a; - var$5 = $that.$_1(); - $that = $that.$_2(); - if (!(var$5 instanceof sci_$colon$colon)) - break a; - var$5 = var$5; - var$7 = var$5.$head1; - var$6 = var$5.$next6; - $result = onciu_Rewritable$_dupAny(onciu_Rewritable$_MODULE$, var$7, sc_IterableOnceOps_toSeq$($result)); - var$5 = $this.$rewriter0.$apply2($result); - scm_Stack_push($initialStack, s_Tuple2__init_(var$6, $that.$addOne(var$5))); - } - $rt_throw(s_MatchError__init_($that)); - } - $that = new jl_IllegalStateException; - jl_Throwable__init_0($that, $rt_s(668)); - $rt_throw($that); - } - $that = new jl_IllegalStateException; - jl_Throwable__init_0($that, $rt_s(668)); - $rt_throw($that); -}; function sc_ClassTagIterableFactory$AnyIterableDelegate() { jl_Object.call(this); this.$delegate1 = null; @@ -29195,7 +29364,7 @@ let sc_ClassTagIterableFactory$AnyIterableDelegate_empty = $this => { let var$1; var$1 = $this.$delegate1; sr_ClassTag$_$callClinit(); - return var$1.$empty6(sr_ClassTag$_Any(sr_ClassTag$_MODULE$)); + return var$1.$empty7(sr_ClassTag$_Any(sr_ClassTag$_MODULE$)); }, sc_ClassTagIterableFactory$AnyIterableDelegate_from = ($this, $it) => { let var$2; @@ -29257,7 +29426,7 @@ otciu_UnicodeHelper_createCharMapping = $data => { var$10 = $key; else if ($key == $last) break; - ju_Arrays_fill2($result, $last, var$10, $lastValue); + ju_Arrays_fill1($result, $last, var$10, $lastValue); $i = $i + 2 | 0; $last = var$10; $lastValue = $value; @@ -29283,14 +29452,12 @@ function otciu_CharMapping() { let onciap_Prettifier$$anonfun$3 = $rt_classWithoutFields(sr_AbstractPartialFunction), onciap_Prettifier$$anonfun$3_applyOrElse = ($this, $x, $default) => { $x = $x; - if ($x instanceof oncie_StringLiteral) { - $default = $x.$value8; - $x = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $default, 0, 0); - } else if (!$rt_isInstance($x, oncie_Parameter)) + if ($x instanceof oncie_StringLiteral) + $x = onu_Stringifier_backtick($x.$value8); + else if (!$rt_isInstance($x, oncie_Parameter)) $x = s_PartialFunction$$anon$1_apply($default, $x); else { - $x = $x; - $x = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $x.$name(), 0, 0); + $x = onu_Stringifier_backtick($x.$name()); $default = new jl_StringBuilder; jl_AbstractStringBuilder__init_($default); jl_AbstractStringBuilder_append0($default, 36); @@ -29305,12 +29472,12 @@ sr_AbstractFunction1_toString = $this => { }; function onciap_Prettifier$IndentingQueryPrettifier$() { sr_AbstractFunction1.call(this); - this.$$outer75 = null; + this.$$outer67 = null; } let onciap_Prettifier$IndentingQueryPrettifier$__init_ = ($this, $$outer) => { if ($$outer === null) $rt_throw(null); - $this.$$outer75 = $$outer; + $this.$$outer67 = $$outer; }, onciap_Prettifier$IndentingQueryPrettifier$__init_0 = var_0 => { let var_1 = new onciap_Prettifier$IndentingQueryPrettifier$(); @@ -29322,29 +29489,44 @@ s_PartialFunction$_MODULE$ = null, s_PartialFunction$_fallback_fn = null, s_PartialFunction$_scala$PartialFunction$$constFalse = null, s_PartialFunction$_empty_pf = null, +s_PartialFunction$_$callClinit = () => { + s_PartialFunction$_$callClinit = $rt_eraseClinit(s_PartialFunction$); + s_PartialFunction$__clinit_(); +}, s_PartialFunction$__clinit_ = () => { let var$1; - s_PartialFunction$_MODULE$ = new s_PartialFunction$; + var$1 = new s_PartialFunction$; + s_PartialFunction$_$callClinit(); + s_PartialFunction$_MODULE$ = var$1; s_PartialFunction$_fallback_fn = new s_PartialFunction$$_clinit_$lambda$_0_0; s_PartialFunction$_scala$PartialFunction$$constFalse = new s_PartialFunction$$_clinit_$lambda$_0_1; var$1 = new s_PartialFunction$$anon$1; var$1.$lift1 = new s_PartialFunction$$anon$1$_init_$lambda$_41_0; s_PartialFunction$_empty_pf = var$1; }, +s_PartialFunction$_scala$PartialFunction$$checkFallback = $this => { + s_PartialFunction$_$callClinit(); + return s_PartialFunction$_fallback_fn; +}, s_PartialFunction$_scala$PartialFunction$$fallbackOccurred = ($this, $x) => { + s_PartialFunction$_$callClinit(); if (s_PartialFunction$_fallback_fn !== $x) return 0; return 1; +}, +s_PartialFunction$_empty = $this => { + s_PartialFunction$_$callClinit(); + return s_PartialFunction$_empty_pf; }; function otciu_UnicodeHelper$Range() { let a = this; jl_Object.call(a); a.$start11 = 0; - a.$end6 = 0; + a.$end5 = 0; a.$data8 = null; } let otciu_UnicodeHelper$Range__init_0 = ($this, $start, $end, $data) => { $this.$start11 = $start; - $this.$end6 = $end; + $this.$end5 = $end; $this.$data8 = $data; }, otciu_UnicodeHelper$Range__init_ = (var_0, var_1, var_2) => { @@ -29500,7 +29682,7 @@ ju_Arrays_toString = $a => { return $rt_s(10); $sb = new jl_StringBuilder; jl_AbstractStringBuilder__init_($sb); - jl_AbstractStringBuilder_append($sb, $rt_s(426)); + jl_AbstractStringBuilder_append($sb, $rt_s(424)); $i = 0; while (true) { var$4 = $a.data; @@ -29511,14 +29693,14 @@ ju_Arrays_toString = $a => { jl_StringBuilder_append($sb, var$4[$i]); $i = $i + 1 | 0; } - jl_AbstractStringBuilder_append($sb, $rt_s(427)); + jl_AbstractStringBuilder_append($sb, $rt_s(425)); return jl_AbstractStringBuilder_toString($sb); }, -ju_Arrays_fill2 = ($a, $fromIndex, $toIndex, $val) => { +ju_Arrays_fill1 = ($a, $fromIndex, $toIndex, $val) => { let var$5, var$6, var$7; if ($fromIndex > $toIndex) { var$5 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$5); + jl_Throwable__init_0(var$5); $rt_throw(var$5); } while ($fromIndex < $toIndex) { @@ -29529,13 +29711,13 @@ ju_Arrays_fill2 = ($a, $fromIndex, $toIndex, $val) => { } }, ju_Arrays_fill0 = ($a, $val) => { - ju_Arrays_fill2($a, 0, $a.data.length, $val); + ju_Arrays_fill1($a, 0, $a.data.length, $val); }, -ju_Arrays_fill1 = ($a, $fromIndex, $toIndex, $val) => { +ju_Arrays_fill2 = ($a, $fromIndex, $toIndex, $val) => { let var$5, var$6; if ($fromIndex > $toIndex) { $val = new jl_IllegalArgumentException; - jl_Throwable__init_($val); + jl_Throwable__init_0($val); $rt_throw($val); } while ($fromIndex < $toIndex) { @@ -29546,7 +29728,7 @@ ju_Arrays_fill1 = ($a, $fromIndex, $toIndex, $val) => { } }, ju_Arrays_fill = ($a, $val) => { - ju_Arrays_fill1($a, 0, $a.data.length, $val); + ju_Arrays_fill2($a, 0, $a.data.length, $val); }, ju_Arrays_sort2 = $a => { let var$2, $second, $chunkSize, var$5, $i, var$7, var$8, var$9, $i_0, var$11, var$12, var$13, var$14, var$15, var$16, var$17; @@ -29716,7 +29898,7 @@ ju_Arrays_sort5 = ($a, $fromIndex, $toIndex) => { let var$4, $subarray, var$6, $i, var$8, $i_0; if ($fromIndex > $toIndex) { var$4 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$4); + jl_Throwable__init_0(var$4); $rt_throw(var$4); } $subarray = $rt_createShortArray($toIndex - $fromIndex | 0); @@ -29820,7 +30002,7 @@ ju_Arrays_sort7 = ($a, $fromIndex, $toIndex) => { let var$4, $subarray, var$6, $i, var$8, $i_0; if ($fromIndex > $toIndex) { var$4 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$4); + jl_Throwable__init_0(var$4); $rt_throw(var$4); } $subarray = $rt_createCharArray($toIndex - $fromIndex | 0); @@ -29924,7 +30106,7 @@ ju_Arrays_sort6 = ($a, $fromIndex, $toIndex) => { let var$4, $subarray, var$6, $i, var$8, $i_0; if ($fromIndex > $toIndex) { var$4 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$4); + jl_Throwable__init_0(var$4); $rt_throw(var$4); } $subarray = $rt_createByteArray($toIndex - $fromIndex | 0); @@ -30377,8 +30559,8 @@ ju_Arrays_stream = $array => { var$2 = $array.data; var$3 = new jusi_ArrayStreamImpl; var$4 = var$2.length; - var$3.$array21 = $array; - var$3.$index10 = 0; + var$3.$array20 = $array; + var$3.$index9 = 0; var$3.$end3 = var$4; var$3.$size13 = var$4 - 0 | 0; return var$3; @@ -30386,11 +30568,11 @@ ju_Arrays_stream = $array => { onciu_RewriterStopper = $rt_classWithoutFields(0), onciu_RewriterStopper$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), onciu_RewriterStopper$$_clinit_$lambda$_0_0_shouldStop = (var$0, var$1) => { - onciu_RewriterStopper$_$callClinit(); return 0; }, s_PartialFunction$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), s_PartialFunction$$_clinit_$lambda$_0_0_apply = (var$0, var$1) => { + s_PartialFunction$_$callClinit(); return s_PartialFunction$_fallback_fn; }, s_PartialFunction$$_clinit_$lambda$_0_1 = $rt_classWithoutFields(); @@ -30398,10 +30580,7 @@ function s_PartialFunction$$anon$1() { jl_Object.call(this); this.$lift1 = null; } -let s_PartialFunction$$anon$1_applyOrElse = ($this, $x, $default) => { - return $x.$asCanonicalStringVal(); -}, -s_PartialFunction$$anon$1_orElse = ($this, $that) => { +let s_PartialFunction$$anon$1_orElse = ($this, $that) => { return $that; }, s_PartialFunction$$anon$1_apply = ($this, $v1) => { @@ -30446,7 +30625,7 @@ scm_ArraySeq_filterImpl = ($this, $pred, $isFlipped) => { return sc_StrictOptimizedIterableOps_filterImpl$($this, $pred, $isFlipped); }, scm_ArraySeq_stringPrefix = $this => { - return $rt_s(490); + return $rt_s(488); }, scm_ArraySeq_reverseIterator = $this => { return sc_IndexedSeqOps_reverseIterator$($this); @@ -30537,7 +30716,7 @@ scm_ArraySeq_newSpecificBuilder = $this => { return scm_ArraySeq$_newBuilder(scm_ArraySeq$_MODULE$, $this.$elemTag()); }, scm_ArraySeq_className = $this => { - return $rt_s(492); + return $rt_s(490); }, scm_ArraySeq_copyToArray = ($this, $xs, $start, $len) => { let $elemsToCopyToArray_srcLen, $elemsToCopyToArray_destLen, $copied; @@ -30898,69 +31077,23 @@ function onciap_ExpressionStringifier$Extension$$anon$1() { let onciap_ExpressionStringifier$Extension$$anon$1_apply = ($this, $ctx, $expression) => { return $this.$func$1.$apply2($expression); }, -cnsa_EnrichedContext$errors$lambda$_9_0 = $rt_classWithoutFields(), -cnsa_EnrichedContext$errors$lambda$_9_0_apply = (var$0, var$1) => { +cnsa_EnrichedContext$errors$lambda$_10_0 = $rt_classWithoutFields(), +cnsa_EnrichedContext$errors$lambda$_10_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$1.$position28; + var$2 = var$1.$position35; var$3 = cnsa_PositionImpl__init_(var$2.$offset(), var$2.$line(), var$2.$column()); return cnsa_SemanticAnalysisElementImpl__init_(var$1.$msg0, var$3); }, -cnsa_EnrichedContext$notifications$lambda$_10_0 = $rt_classWithoutFields(), -cnsa_EnrichedContext$notifications$lambda$_10_0__init_ = var$0 => { - return; -}, -cnsa_EnrichedContext$notifications$lambda$_10_0__init_0 = () => { - let var_0 = new cnsa_EnrichedContext$notifications$lambda$_10_0(); - cnsa_EnrichedContext$notifications$lambda$_10_0__init_(var_0); - return var_0; -}, -cnsa_EnrichedContext$notifications$lambda$_10_0_apply = (var$0, var$1) => { +cnsa_EnrichedContext$notifications$lambda$_11_0 = $rt_classWithoutFields(), +cnsa_EnrichedContext$notifications$lambda$_11_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; var$1 = onn_NotificationWrapping$_asKernelNotification(onn_NotificationWrapping$_MODULE$, s_None$_MODULE$, var$1); - var$2 = var$1.$position213; - var$3 = cnsa_PositionImpl__init_(var$2.$offset1, var$2.$line2, var$2.$column1); + var$2 = var$1.$position218; + var$3 = cnsa_PositionImpl__init_(var$2.$offset2, var$2.$line3, var$2.$column2); return cnsa_SemanticAnalysisElementImpl__init_(var$1.$descriptionWithParameters, var$3); }; -function oncifp_SelfReferenceCheckWithinPatternPart$check$lambda$_7_0() { - jl_Object.call(this); - this.$_0779 = null; -} -let oncifp_SelfReferenceCheckWithinPatternPart$check$lambda$_7_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6; - var$3 = var$0.$_0779; - var$4 = oncifp_InitialState_semanticTable(var$1); - var$2 = var$2.$errorMessageProvider0; - var$5 = (oncifp_InitialState_statement(var$1)).$folder(); - s_package$_$callClinit(); - var$6 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - var$1 = new oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1; - if (var$3 === null) - $rt_throw(null); - var$1.$$outer16 = var$3; - var$1.$semanticTable$10 = var$4; - var$1.$errorMessageProvider$1 = var$2; - return onciu_Foldable$Folder_treeFold(var$5, var$6, var$1); -}; -function oncifp_SelfReferenceCheckAcrossPatternParts$check$lambda$_7_0() { - jl_Object.call(this); - this.$_0248 = null; -} -let oncifp_SelfReferenceCheckAcrossPatternParts$check$lambda$_7_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5; - var$2 = var$0.$_0248; - var$3 = oncifp_InitialState_semanticTable(var$1); - var$4 = (oncifp_InitialState_statement(var$1)).$folder(); - s_package$_$callClinit(); - var$5 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - var$1 = new oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1; - if (var$2 === null) - $rt_throw(null); - var$1.$$outer19 = var$2; - var$1.$semanticTable$4 = var$3; - return onciu_Foldable$Folder_treeFold(var$4, var$5, var$1); -}; function jur_AbstractCharClass$1() { let a = this; jur_AbstractCharClass.call(a); a.$val$lHS = null; @@ -31016,27 +31149,27 @@ onciu_StepSequencer$orderSteps$lambda$_3_1_apply = (var$0, var$1) => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(672)), var$1), $rt_s(673)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); $rt_throw(var$2); }; function onciu_StepSequencer$orderSteps$lambda$_3_2() { jl_Object.call(this); - this.$_01152 = null; + this.$_01135 = null; } let onciu_StepSequencer$orderSteps$lambda$_3_2_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_01152; + var$2 = var$0.$_01135; if (var$1 === null) $rt_throw(s_MatchError__init_(var$1)); var$1 = var$1.$_1(); var$3 = var$1.$postConditions(); var$4 = new onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_0; - var$4.$_047 = var$1; + var$4.$_052 = var$1; var$4.$_1394 = var$2; var$2 = var$3.$map(var$4); var$3 = new onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_1; - var$3.$_0730 = var$1; + var$3.$_0711 = var$1; return var$2.$map(var$3); }, onciu_StepSequencer$orderSteps$lambda$_3_3 = $rt_classWithoutFields(), @@ -31048,6 +31181,12 @@ onciu_StepSequencer$orderSteps$lambda$_3_4_apply = (var$0, var$1) => { return jl_Boolean_valueOf((var$1.$_2()).$size() <= 1 ? 0 : 1); }, sc_MapOps = $rt_classWithoutFields(0), +sc_MapOps_keysIterator$ = $$this => { + let var$2; + var$2 = new sc_MapOps$$anon$2; + var$2.$iter = $$this.$iterator0(); + return var$2; +}, sc_MapOps_concat$ = ($$this, $suffix) => { let var$3, var$4; var$3 = $$this.$mapFactory(); @@ -31056,7 +31195,7 @@ sc_MapOps_concat$ = ($$this, $suffix) => { else { $$this = $$this.$iterator0(); var$4 = new sc_MapOps$concat$lambda$_45_0; - var$4.$_0539 = $suffix; + var$4.$_0524 = $suffix; var$4 = $$this.$concat0(var$4); } return var$3.$from0(var$4); @@ -31077,7 +31216,7 @@ onciu_StepSequencer$orderSteps$lambda$_3_6_apply = (var$0, var$1) => { var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(674)), var$2), $rt_s(675)), var$1), 46); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$4)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$4)); $rt_throw(var$3); }, onciu_StepSequencer$orderSteps$lambda$_3_7 = $rt_classWithoutFields(), @@ -31095,10 +31234,10 @@ onciu_StepSequencer$orderSteps$lambda$_3_8_apply = (var$0, var$1) => { var$1 = var$1; var$2 = var$1.$invalidatedConditions(); var$3 = new onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_0; - var$3.$_0360 = var$1; + var$3.$_0345 = var$1; var$2 = var$2.$map(var$3); var$3 = new onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_1; - var$3.$_0899 = var$1; + var$3.$_0883 = var$1; return var$2.$map(var$3); }, onciu_StepSequencer$orderSteps$lambda$_3_9 = $rt_classWithoutFields(), @@ -31136,7 +31275,7 @@ onciu_StepSequencer$MutableDirectedGraph_allNodes = $this => { var$2 = new sc_MapOps$KeySet; if (var$1 === null) $rt_throw(null); - var$2.$$outer41 = var$1; + var$2.$$outer37 = var$1; return sc_AbstractIterable_toSet(var$2); }, onciu_StepSequencer$MutableDirectedGraph_outgoing = ($this, $from) => { @@ -31147,11 +31286,11 @@ onciu_StepSequencer$MutableDirectedGraph_incoming = ($this, $to) => { }, onciu_StepSequencer$MutableDirectedGraph_toString = $this => { let $nodes, var$2, $edges; - $nodes = sc_AbstractIterable_mkString((sc_IterableOnceOps_toSeq$(onciu_StepSequencer$MutableDirectedGraph_allNodes($this))).$map(new onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_0), $rt_s(93)); + $nodes = sc_AbstractIterable_mkString((sc_IterableOnceOps_toSeq$(onciu_StepSequencer$MutableDirectedGraph_allNodes($this))).$map(new onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_0), $rt_s(94)); var$2 = sc_IterableOnceOps_toSeq$(onciu_StepSequencer$MutableDirectedGraph_allNodes($this)); $edges = new onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_1; - $edges.$_01022 = $this; - $edges = sc_AbstractIterable_mkString(var$2.$map($edges), $rt_s(93)); + $edges.$_01012 = $this; + $edges = sc_AbstractIterable_mkString(var$2.$map($edges), $rt_s(94)); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); $nodes = jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(676)), $nodes); @@ -31170,28 +31309,28 @@ onciu_StepSequencer$MutableDirectedGraph__init_ = () => { }; function onciu_StepSequencer$orderSteps$lambda$_3_11() { jl_Object.call(this); - this.$_0839 = null; + this.$_0813 = null; } let onciu_StepSequencer$orderSteps$lambda$_3_11_apply = (var$0, var$1) => { var$1 = var$1; - onciu_StepSequencer$MutableDirectedGraph_add(var$0.$_0839, var$1); + onciu_StepSequencer$MutableDirectedGraph_add(var$0.$_0813, var$1); return sr_BoxedUnit_UNIT; }; function onciu_StepSequencer$orderSteps$lambda$_3_12() { let a = this; jl_Object.call(a); - a.$_0165 = null; - a.$_163 = null; + a.$_0160 = null; + a.$_156 = null; } let onciu_StepSequencer$orderSteps$lambda$_3_12_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0165; - var$3 = var$0.$_163; + var$2 = var$0.$_0160; + var$3 = var$0.$_156; var$4 = var$1.$invalidatedConditions(); var$5 = new onciu_StepSequencer$$anonfun$orderSteps$19$lambda$_39_0; - var$5.$_0217 = var$2; - var$5.$_183 = var$3; - var$5.$_234 = var$1; + var$5.$_0211 = var$2; + var$5.$_179 = var$3; + var$5.$_229 = var$1; var$4.$foreach(var$5); return sr_BoxedUnit_UNIT; }, @@ -31204,16 +31343,14 @@ onciu_StepSequencer$_org$neo4j$cypher$internal$util$StepSequencer$$sort = ($this let $allPostConditions, $currentConditions, $order, $numberOfTimesEachStepIsInvalidated, $workingGraph, $result, var$12, var$13, var$14; a: { $allPostConditions = ($allSteps.$iterator0()).$flatMap2(new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_0); - sc_IterableFactory$_$callClinit(); $currentConditions = sc_IterableFactory$_MODULE$; s_Predef$_$callClinit(); $allPostConditions = (sc_IterableFactory$_toFactory($currentConditions, s_Predef$_Set(s_Predef$_MODULE$))).$fromSpecific($allPostConditions); $order = new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_1; - $order.$_0161 = $introducingSteps; + $order.$_0152 = $introducingSteps; $numberOfTimesEachStepIsInvalidated = sci_AbstractMap_withDefaultValue(sc_AbstractIterable_toMap(sc_AbstractMapView_mapValues(sc_AbstractMap_view(sc_AbstractIterable_groupBy($allSteps.$flatMap($order), new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_2)), new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_3), s_$less$colon$less$_singleton), jl_Integer_valueOf(0)); sr_BoxesRunTime_unboxToLong(s_Option_getOrElse($fixedSeed, new onciu_StepSequencer$$heuristicStepOrdering$lambda$_1_0)); $workingGraph = su_Random__init_(new ju_Random); - sc_BuildFrom$_$callClinit(); sc_BuildFrom$_buildFromIterableOps(sc_BuildFrom$_MODULE$); $result = scm_ArrayBuffer_addAll(scm_ArrayBuffer__init_(), $allSteps); var$12 = $result.$size00; @@ -31239,7 +31376,7 @@ onciu_StepSequencer$_org$neo4j$cypher$internal$util$StepSequencer$$sort = ($this var$12 = var$12 + $currentConditions.$step1 | 0; } $graph = new jl_IllegalArgumentException; - jl_Throwable__init_($graph); + jl_Throwable__init_0($graph); $rt_throw($graph); } } @@ -31254,32 +31391,32 @@ onciu_StepSequencer$_org$neo4j$cypher$internal$util$StepSequencer$$sort = ($this $workingGraph = onciu_StepSequencer$MutableDirectedGraph__init_(); $fixedSeed = onciu_StepSequencer$MutableDirectedGraph_allNodes($graph); $currentConditions = new onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_0; - $currentConditions.$_0996 = $workingGraph; + $currentConditions.$_0988 = $workingGraph; $fixedSeed.$foreach($currentConditions); $fixedSeed = onciu_StepSequencer$MutableDirectedGraph_allNodes($graph); $currentConditions = new onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_1; - $currentConditions.$_0379 = $graph; - $currentConditions.$_1138 = $workingGraph; + $currentConditions.$_0366 = $graph; + $currentConditions.$_1130 = $workingGraph; $fixedSeed.$foreach($currentConditions); $fixedSeed = sc_IterableFactory$_MODULE$; scm_Set$_$callClinit(); $currentConditions = (sc_IterableFactory$_toFactory($fixedSeed, scm_Set$_MODULE$)).$fromSpecific($initialConditions); $initialConditions = s_Some__init_($order); $fixedSeed = new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_4; - $fixedSeed.$_0929 = $currentConditions; - $fixedSeed.$_1327 = $introducingSteps; - $fixedSeed.$_2112 = $graph; - $fixedSeed.$_329 = $workingGraph; + $fixedSeed.$_0918 = $currentConditions; + $fixedSeed.$_1317 = $introducingSteps; + $fixedSeed.$_2107 = $graph; + $fixedSeed.$_333 = $workingGraph; $result = onciu_StepSequencer$_org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort($this, $workingGraph, $initialConditions, $fixedSeed); if (onciu_AssertionRunner_isAssertionsEnabled()) { $graph = new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_5; - $graph.$_0398 = $result; + $graph.$_0385 = $result; if ($allSteps.$exists($graph)) { $graph = new jl_IllegalStateException; $introducingSteps = new jl_StringBuilder; jl_AbstractStringBuilder__init_($introducingSteps); jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($introducingSteps, $rt_s(678)), $result), $rt_s(679)), $allSteps), 46); - jl_Throwable__init_0($graph, jl_AbstractStringBuilder_toString($introducingSteps)); + jl_Throwable__init_($graph, jl_AbstractStringBuilder_toString($introducingSteps)); $rt_throw($graph); } if (!$allPostConditions.$subsetOf($currentConditions)) { @@ -31287,7 +31424,7 @@ onciu_StepSequencer$_org$neo4j$cypher$internal$util$StepSequencer$$sort = ($this $introducingSteps = new jl_StringBuilder; jl_AbstractStringBuilder__init_($introducingSteps); jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($introducingSteps, $rt_s(678)), $result), $rt_s(680)), $allPostConditions), $rt_s(681)), $currentConditions), 46); - jl_Throwable__init_0($graph, jl_AbstractStringBuilder_toString($introducingSteps)); + jl_Throwable__init_($graph, jl_AbstractStringBuilder_toString($introducingSteps)); $rt_throw($graph); } } @@ -31302,10 +31439,9 @@ onciu_StepSequencer$_org$neo4j$cypher$internal$util$StepSequencer$$topologicalSo $result = scm_ArrayBuffer__init_(); $nonEmpty = onciu_StepSequencer$MutableDirectedGraph_allNodes($graph); $n = new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_0; - $n.$_0533 = $graph; + $n.$_0517 = $graph; $nonEmpty = $nonEmpty.$filter1($n); if (jl_Object_equals(s_None$_MODULE$, $order)) { - sc_IterableFactory$_$callClinit(); $order = sc_IterableFactory$_MODULE$; scm_Set$_$callClinit(); $startPoints = (sc_IterableFactory$_toFactory($order, scm_Set$_MODULE$)).$fromSpecific($nonEmpty); @@ -31326,22 +31462,22 @@ onciu_StepSequencer$_org$neo4j$cypher$internal$util$StepSequencer$$topologicalSo $result.$addOne($n); $order = onciu_StepSequencer$MutableDirectedGraph_outgoing($graph, $n); $nonEmpty = new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_3; - $nonEmpty.$_0113 = $graph; - $nonEmpty.$_144 = $n; - $nonEmpty.$_222 = $startPoints; + $nonEmpty.$_0101 = $graph; + $nonEmpty.$_136 = $n; + $nonEmpty.$_217 = $startPoints; $order.$foreach($nonEmpty); $nextStepChosen.$apply3($n, $startPoints); } $nextStepChosen = onciu_StepSequencer$MutableDirectedGraph_allNodes($graph); $order = new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_1; - $order.$_077 = $graph; + $order.$_073 = $graph; if (!($nextStepChosen.$map($order)).$exists(new onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_2)) return sc_IterableOnceOps_toSeq$($result); $order = new jl_IllegalArgumentException; $nextStepChosen = new jl_StringBuilder; jl_AbstractStringBuilder__init_($nextStepChosen); jl_StringBuilder_append(jl_StringBuilder_append($nextStepChosen, $rt_s(682)), $graph); - jl_Throwable__init_0($order, jl_AbstractStringBuilder_toString($nextStepChosen)); + jl_Throwable__init_($order, jl_AbstractStringBuilder_toString($nextStepChosen)); $rt_throw($order); }, onciu_StepSequencer$orderSteps$lambda$_3_13 = $rt_classWithoutFields(), @@ -31350,26 +31486,26 @@ onciu_StepSequencer$orderSteps$lambda$_3_13_apply = (var$0, var$1, var$2) => { }; function onciu_StepSequencer$orderSteps$lambda$_3_14() { jl_Object.call(this); - this.$_0922 = null; + this.$_0908 = null; } let onciu_StepSequencer$orderSteps$lambda$_3_14_apply = (var$0, var$1) => { var$1 = var$1; - onciu_StepSequencer$MutableDirectedGraph_add(var$0.$_0922, var$1); + onciu_StepSequencer$MutableDirectedGraph_add(var$0.$_0908, var$1); return sr_BoxedUnit_UNIT; }; function onciu_StepSequencer$orderSteps$lambda$_3_15() { let a = this; jl_Object.call(a); - a.$_0351 = null; - a.$_1126 = null; - a.$_247 = null; + a.$_0338 = null; + a.$_1118 = null; + a.$_243 = null; a.$_314 = null; } let onciu_StepSequencer$orderSteps$lambda$_3_15_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6; var$1 = var$1; - var$2 = var$0.$_0351; - var$3 = var$0.$_1126; - var$4 = var$0.$_247; + var$2 = var$0.$_0338; + var$3 = var$0.$_1118; + var$4 = var$0.$_243; var$5 = var$0.$_314; if (jl_Object_equals(onciu_StepSequencer$RepeatedSteps$Permitted$_MODULE$, var$2)) var$2 = var$1.$preConditions(); @@ -31379,10 +31515,10 @@ let onciu_StepSequencer$orderSteps$lambda$_3_15_apply = (var$0, var$1) => { var$2 = (var$1.$preConditions()).$concat1((var$1.$invalidatedConditions()).$map(new onciu_StepSequencer$$anonfun$orderSteps$25$lambda$_48_1)); } var$6 = new onciu_StepSequencer$$anonfun$orderSteps$25$lambda$_48_0; - var$6.$_063 = var$3; - var$6.$_128 = var$1; - var$6.$_215 = var$4; - var$6.$_38 = var$5; + var$6.$_062 = var$3; + var$6.$_123 = var$1; + var$6.$_211 = var$4; + var$6.$_36 = var$5; var$2.$foreach(var$6); return sr_BoxedUnit_UNIT; }, @@ -31673,7 +31809,7 @@ sc_AbstractMap_newSpecificBuilder = $this => { sc_AbstractMap_view = $this => { let var$1; var$1 = new sc_MapView$Id; - var$1.$underlying31 = $this; + var$1.$underlying30 = $this; return var$1; }, sc_AbstractMap_getOrElse = ($this, $key, $default) => { @@ -31705,14 +31841,11 @@ sc_AbstractMap_keys = $this => { sc_AbstractMap_values = $this => { let var$1; var$1 = new sc_MapOps$$anon$1; - var$1.$$outer21 = $this; + var$1.$$outer18 = $this; return var$1; }, sc_AbstractMap_keysIterator = $this => { - let var$1; - var$1 = new sc_MapOps$$anon$2; - var$1.$iter = $this.$iterator0(); - return var$1; + return sc_MapOps_keysIterator$($this); }, sc_AbstractMap_valuesIterator = $this => { let var$1; @@ -31734,7 +31867,7 @@ sc_AbstractMap_default = ($this, $key) => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$3, 15); jl_AbstractStringBuilder_append(var$3, $rt_s(684)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); $rt_throw(var$2); }, sc_AbstractMap_contains = ($this, $key) => { @@ -31769,7 +31902,7 @@ sci_AbstractMap_withDefaultValue = ($this, $d) => { let var$2, var$3; var$2 = new sci_Map$WithDefault; var$3 = new sci_Map$withDefaultValue$lambda$_9_0; - var$3.$_0633 = $d; + var$3.$_0622 = $d; sci_Map$WithDefault__init_0(var$2, $this, var$3); return var$2; }, @@ -31852,7 +31985,7 @@ sci_Map$EmptyMap$_apply = ($this, $key) => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$3, 15); jl_AbstractStringBuilder_append(var$3, $rt_s(684)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); $rt_throw(var$2); }, sc_View = $rt_classWithoutFields(0), @@ -31882,7 +32015,6 @@ scm_Map$__clinit_ = () => { let var$1; var$1 = new scm_Map$; scm_Map$_$callClinit(); - scm_HashMap$_$callClinit(); sc_MapFactory$Delegate__init_(var$1, scm_HashMap$_MODULE$); scm_Map$_MODULE$ = var$1; }, @@ -31972,7 +32104,7 @@ scm_ArrayBuffer_apply = ($this, $n) => { jl_AbstractStringBuilder_append(var$4, $rt_s(685)); var$4 = jl_StringBuilder_append0(var$4, $this.$size00 - 1 | 0); jl_AbstractStringBuilder_append(var$4, $rt_s(42)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$4)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$4)); $rt_throw(var$3); } if ($checkWithinBounds_hi <= $this.$size00) @@ -31984,7 +32116,7 @@ scm_ArrayBuffer_apply = ($this, $n) => { jl_AbstractStringBuilder_append(var$3, $rt_s(685)); var$3 = jl_StringBuilder_append0(var$3, $this.$size00 - 1 | 0); jl_AbstractStringBuilder_append(var$3, $rt_s(42)); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$3)); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$3)); $rt_throw(var$4); }, scm_ArrayBuffer_update = ($this, $index, $elem) => { @@ -31998,7 +32130,7 @@ scm_ArrayBuffer_update = ($this, $index, $elem) => { jl_AbstractStringBuilder_append(var$4, $rt_s(685)); var$4 = jl_StringBuilder_append0(var$4, $this.$size00 - 1 | 0); jl_AbstractStringBuilder_append(var$4, $rt_s(42)); - jl_Throwable__init_0($elem, jl_AbstractStringBuilder_toString(var$4)); + jl_Throwable__init_($elem, jl_AbstractStringBuilder_toString(var$4)); $rt_throw($elem); } if ($checkWithinBounds_hi <= $this.$size00) { @@ -32013,7 +32145,7 @@ scm_ArrayBuffer_update = ($this, $index, $elem) => { jl_AbstractStringBuilder_append(var$4, $rt_s(685)); var$4 = jl_StringBuilder_append0(var$4, $this.$size00 - 1 | 0); jl_AbstractStringBuilder_append(var$4, $rt_s(42)); - jl_Throwable__init_0($elem, jl_AbstractStringBuilder_toString(var$4)); + jl_Throwable__init_($elem, jl_AbstractStringBuilder_toString(var$4)); $rt_throw($elem); }, scm_ArrayBuffer_length = $this => { @@ -32021,7 +32153,7 @@ scm_ArrayBuffer_length = $this => { }, scm_ArrayBuffer_clear = $this => { $this.$mutationCount = $this.$mutationCount + 1 | 0; - ju_Arrays_fill1($this.$array2, 0, $this.$size00, null); + ju_Arrays_fill2($this.$array2, 0, $this.$size00, null); $this.$size00 = 0; }, scm_ArrayBuffer_addOne = ($this, $elem) => { @@ -32083,13 +32215,13 @@ scm_ArrayBuffer_reduceLeft = ($this, $op) => { } if (!$this.$length()) { $op = new jl_UnsupportedOperationException; - jl_Throwable__init_0($op, $rt_s(44)); + jl_Throwable__init_($op, $rt_s(44)); $rt_throw($op); } $reduceLeft_reduceLeftIterator_it = sc_IndexedSeqOps_iterator$($this); if (!$reduceLeft_reduceLeftIterator_it.$hasNext()) { $reduceLeft_foldl_loop$1_acc = new jl_UnsupportedOperationException; - jl_Throwable__init_0($reduceLeft_foldl_loop$1_acc, $rt_s(44)); + jl_Throwable__init_($reduceLeft_foldl_loop$1_acc, $rt_s(44)); $rt_throw($reduceLeft_foldl_loop$1_acc); } $reduceLeft_reduceLeftIterator_acc = sc_IndexedSeqView$IndexedSeqViewIterator_next($reduceLeft_reduceLeftIterator_it); @@ -32124,8 +32256,8 @@ scm_ArrayBuffer_view = $this => { let var$1, var$2; var$1 = new scm_ArrayBufferView; var$2 = new scm_ArrayBuffer$view$lambda$_88_0; - var$2.$_064 = $this; - var$1.$underlying28 = $this; + var$2.$_063 = $this; + var$1.$underlying27 = $this; var$1.$mutationCount1 = var$2; return var$1; }, @@ -32160,22 +32292,15 @@ scm_ArrayBuffer__init_0 = var_0 => { }; function onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_0() { jl_Object.call(this); - this.$_0533 = null; + this.$_0517 = null; } let onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf((onciu_StepSequencer$MutableDirectedGraph_incoming(var$0.$_0533, var$1)).$isEmpty()); + return jl_Boolean_valueOf((onciu_StepSequencer$MutableDirectedGraph_incoming(var$0.$_0517, var$1)).$isEmpty()); }, sc_IterableFactory$ = $rt_classWithoutFields(), sc_IterableFactory$_MODULE$ = null, -sc_IterableFactory$_$callClinit = () => { - sc_IterableFactory$_$callClinit = $rt_eraseClinit(sc_IterableFactory$); - sc_IterableFactory$__clinit_(); -}, sc_IterableFactory$__clinit_ = () => { - let var$1; - var$1 = new sc_IterableFactory$; - sc_IterableFactory$_$callClinit(); - sc_IterableFactory$_MODULE$ = var$1; + sc_IterableFactory$_MODULE$ = new sc_IterableFactory$; }, sc_IterableFactory$_toFactory = ($this, $factory) => { return sc_IterableFactory$ToFactory__init_($factory); @@ -32216,10 +32341,10 @@ scm_Set$__clinit_ = () => { }; function onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_1() { jl_Object.call(this); - this.$_077 = null; + this.$_073 = null; } let onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_1_apply = (var$0, var$1) => { - return onciu_StepSequencer$MutableDirectedGraph_outgoing(var$0.$_077, var$1); + return onciu_StepSequencer$MutableDirectedGraph_outgoing(var$0.$_073, var$1); }, onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_2 = $rt_classWithoutFields(), onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_2_apply = (var$0, var$1) => { @@ -32227,15 +32352,15 @@ onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSo }; function onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_3() { let a = this; jl_Object.call(a); - a.$_0113 = null; - a.$_144 = null; - a.$_222 = null; + a.$_0101 = null; + a.$_136 = null; + a.$_217 = null; } let onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_3_apply = (var$0, var$1) => { let var$2, var$3, var$4; - var$2 = var$0.$_0113; - var$3 = var$0.$_144; - var$4 = var$0.$_222; + var$2 = var$0.$_0101; + var$3 = var$0.$_136; + var$4 = var$0.$_217; scm_HashSet_remove0((scm_HashMap_apply(var$2.$elems1, var$3)).$outgoing0, var$1); scm_HashSet_remove0((scm_HashMap_apply(var$2.$elems1, var$1)).$incoming0, var$3); return !(onciu_StepSequencer$MutableDirectedGraph_incoming(var$2, var$1)).$isEmpty() ? sr_BoxedUnit_UNIT : var$4.$addOne(var$1); @@ -32243,6 +32368,15 @@ let onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologic sm_Equiv = $rt_classWithoutFields(0), sm_PartialOrdering = $rt_classWithoutFields(0), sm_Ordering = $rt_classWithoutFields(0), +sm_Ordering_lteq$ = ($$this, $x, $y) => { + return $$this.$compare2($x, $y) > 0 ? 0 : 1; +}, +sm_Ordering_gteq$ = ($$this, $x, $y) => { + return $$this.$compare2($x, $y) < 0 ? 0 : 1; +}, +sm_Ordering_lt$ = ($$this, $x, $y) => { + return $$this.$compare2($x, $y) >= 0 ? 0 : 1; +}, sm_Ordering_max$ = ($$this, $x, $y) => { if ($$this.$gteq($x, $y)) $y = $x; @@ -32258,7 +32392,7 @@ sm_Ordering_on$ = ($$this, $f) => { var$3 = new sm_Ordering$$anon$1; if ($$this === null) $rt_throw(null); - var$3.$$outer32 = $$this; + var$3.$$outer28 = $$this; var$3.$f$10 = $f; return var$3; }, @@ -32283,7 +32417,6 @@ scm_SortedSet$__clinit_ = () => { let var$1; var$1 = new scm_SortedSet$; scm_SortedSet$_$callClinit(); - scm_TreeSet$_$callClinit(); var$1.$delegate2 = scm_TreeSet$_MODULE$; scm_SortedSet$_MODULE$ = var$1; }, @@ -32293,12 +32426,12 @@ onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_ }; function onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_1() { jl_Object.call(this); - this.$_0161 = null; + this.$_0152 = null; } let onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_1_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0161; + var$2 = var$0.$_0152; var$3 = var$1.$invalidatedConditions(); var$1 = new onciu_StepSequencer$$anonfun$$nestedInanonfun$sort$2$1; var$1.$introducingSteps$2 = var$2; @@ -32328,32 +32461,32 @@ onciu_StepSequencer$MutableDirectedGraph$__clinit_ = () => { }; function onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_4() { let a = this; jl_Object.call(a); - a.$_0929 = null; - a.$_1327 = null; - a.$_2112 = null; - a.$_329 = null; + a.$_0918 = null; + a.$_1317 = null; + a.$_2107 = null; + a.$_333 = null; } let onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_4_apply = (var$0, var$1, var$2) => { let var$3, var$4, var$5, var$6, var$7, var$8, var$9; var$1 = var$1; - var$3 = var$0.$_0929; - var$4 = var$0.$_1327; - var$5 = var$0.$_2112; - var$6 = var$0.$_329; + var$3 = var$0.$_0918; + var$4 = var$0.$_1317; + var$5 = var$0.$_2107; + var$6 = var$0.$_333; var$3.$addAll0(var$1.$postConditions()); if (sc_IterableOnceOps_nonEmpty$(var$1.$invalidatedConditions())) { scm_Set$_$callClinit(); var$7 = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); var$8 = (var$1.$invalidatedConditions()).$filter1(var$3); var$9 = new onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_0; - var$9.$_0151 = var$4; + var$9.$_0144 = var$4; var$8 = var$8.$flatMap(var$9); var$3.$subtractAll(var$1.$invalidatedConditions()); var$1 = new onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_1; - var$1.$_0641 = var$5; - var$1.$_1218 = var$3; - var$1.$_272 = var$6; - var$1.$_322 = var$7; + var$1.$_0627 = var$5; + var$1.$_1210 = var$3; + var$1.$_270 = var$6; + var$1.$_323 = var$7; var$8.$foreach(var$1); var$2.$addAll0(var$8); var$2.$subtractAll(var$7); @@ -32381,11 +32514,11 @@ onciu_AssertionRunner__clinit_ = () => { }; function onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_5() { jl_Object.call(this); - this.$_0398 = null; + this.$_0385 = null; } let onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_5_apply = (var$0, var$1) => { var$1 = var$1; - return jl_Boolean_valueOf(var$0.$_0398.$contains(var$1) ? 0 : 1); + return jl_Boolean_valueOf(var$0.$_0385.$contains(var$1) ? 0 : 1); }, si_AnsiColor = $rt_classWithoutFields(0), s_Console$ = $rt_classWithoutFields(), @@ -32414,7 +32547,6 @@ s_Console$__clinit_ = () => { var$5 = jnci_UTF8Charset_INSTANCE; var$6 = new jnci_UTF8Decoder; jnci_BufferedDecoder__init_(var$6, var$5, 0.3333333432674408, 0.5); - jnc_CodingErrorAction_$callClinit(); var$5 = jnc_CharsetDecoder_onUnmappableCharacter(jnc_CharsetDecoder_onMalformedInput(var$6, jnc_CodingErrorAction_REPLACE), jnc_CodingErrorAction_REPLACE); ji_Reader__init_(var$1); var$7 = $rt_createByteArray(8192); @@ -32440,7 +32572,6 @@ s_Console$_out = $this => { let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14; s_Console$_$callClinit(); var$1 = s_Console$_outVar.$tl; - jl_ThreadLocal_$callClinit(); var$2 = jl_Thread_currentThread; if (var$2 !== jl_Thread_mainThread ? 0 : 1) { if (!var$1.$initialized0) { @@ -32451,19 +32582,19 @@ s_Console$_out = $this => { var$3 = var$1.$value39; } else { var$2 = var$2.$key10; - if (var$1.$map18 === null) - var$1.$map18 = ju_WeakHashMap__init_(); + if (var$1.$map17 === null) + var$1.$map17 = ju_WeakHashMap__init_(); a: { - var$3 = var$1.$map18; + var$3 = var$1.$map17; ju_WeakHashMap_poll(var$3); if (var$2 === null) { var$3 = var$3.$elementData0.data[0]; while (var$3 !== null) { - if (var$3.$isNull0) { + if (var$3.$isNull) { var$3 = var$3.$value25; break a; } - var$3 = var$3.$next9; + var$3 = var$3.$next8; } var$3 = null; } else { @@ -32475,14 +32606,14 @@ s_Console$_out = $this => { var$3 = var$3.$value25; break a; } - var$3 = var$3.$next9; + var$3 = var$3.$next8; } var$3 = null; } } if (var$3 === null) { var$3 = su_DynamicVariable$$anon$1_initialValue(var$1); - var$6 = var$1.$map18; + var$6 = var$1.$map17; var$7 = var$3 !== null ? var$3 : jl_ThreadLocal_NULL; b: { ju_WeakHashMap_poll(var$6); @@ -32490,9 +32621,9 @@ s_Console$_out = $this => { if (var$2 === null) { var$9 = var$6.$elementData0.data[0]; while (var$9 !== null) { - if (var$9.$isNull0) + if (var$9.$isNull) break b; - var$9 = var$9.$next9; + var$9 = var$9.$next8; } } else { var$4 = var$2.$hashCode() & 2147483647; @@ -32502,7 +32633,7 @@ s_Console$_out = $this => { while (var$9 !== null) { if (var$2.$equals(jlr_WeakReference_get(var$9))) break b; - var$9 = var$9.$next9; + var$9 = var$9.$next8; } } } @@ -32510,8 +32641,8 @@ s_Console$_out = $this => { var$9.$value25 = var$7; else { var$6.$modCount1 = var$6.$modCount1 + 1 | 0; - var$4 = var$6.$elementCount1 + 1 | 0; - var$6.$elementCount1 = var$4; + var$4 = var$6.$elementCount0 + 1 | 0; + var$6.$elementCount0 = var$4; if (var$4 > var$6.$threshold5) { var$5 = var$6.$elementData0.data; var$4 = var$5.length; @@ -32524,9 +32655,9 @@ s_Console$_out = $this => { while (var$8 < var$4) { var$9 = var$5[var$8]; while (var$9 !== null) { - var$13 = var$9.$isNull0 ? 0 : (var$9.$hash6 & 2147483647) % var$10 | 0; - var$14 = var$9.$next9; - var$9.$next9 = var$12[var$13]; + var$13 = var$9.$isNull ? 0 : (var$9.$hash6 & 2147483647) % var$10 | 0; + var$14 = var$9.$next8; + var$9.$next8 = var$12[var$13]; var$12[var$13] = var$9; var$9 = var$14; } @@ -32539,11 +32670,11 @@ s_Console$_out = $this => { var$9 = new ju_WeakHashMap$Entry; jlr_WeakReference__init_(var$9, var$2, var$6.$referenceQueue); var$4 = var$2 !== null ? 0 : 1; - var$9.$isNull0 = var$4; + var$9.$isNull = var$4; var$9.$hash6 = !var$4 ? var$2.$hashCode() : 0; var$9.$value25 = var$7; var$5 = var$6.$elementData0.data; - var$9.$next9 = var$5[var$8]; + var$9.$next8 = var$5[var$8]; var$5[var$8] = var$9; } } else if (var$3 === jl_ThreadLocal_NULL) @@ -32616,13 +32747,13 @@ sci_HashSetBuilder_update = ($this, $setNode, $element, $originalHash, $elementH var$18 = $setNode.$originalHashes0; if ($beforeSize < 0) { $setNode = new jl_ArrayIndexOutOfBoundsException; - jl_Throwable__init_($setNode); + jl_Throwable__init_0($setNode); $rt_throw($setNode); } $mask = var$18.data.length; if ($beforeSize > $mask) { $setNode = new jl_ArrayIndexOutOfBoundsException; - jl_Throwable__init_($setNode); + jl_Throwable__init_0($setNode); $rt_throw($setNode); } var$15 = $rt_createIntArray($mask + 1 | 0); @@ -32713,59 +32844,22 @@ let s_PartialFunction$OrElse_apply = ($this, $x) => { }, s_PartialFunction$OrElse_applyOrElse = ($this, $x, $default) => { let $z; - $z = $this.$f10.$applyOrElse($x, s_PartialFunction$_fallback_fn); + $z = $this.$f10; + s_PartialFunction$_$callClinit(); + $z = $z.$applyOrElse($x, s_PartialFunction$_scala$PartialFunction$$checkFallback(s_PartialFunction$_MODULE$)); if (!s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, $z)) return $z; return $x; }; -function oncifp_PipeLine() { +function s_Function1$andThen$lambda$_5_0() { let a = this; jl_Object.call(a); - a.$postConditions0 = null; - a.$first1 = null; - a.$after = null; - a.$bitmap$027 = 0; + a.$_01065 = null; + a.$_1362 = null; } -let oncifp_PipeLine_postConditions = $this => { - let var$1, $$je; - if (($this.$bitmap$027 & 1) << 24 >> 24) - return $this.$postConditions0; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$027 & 1) << 24 >> 24) - break a; - $this.$postConditions0 = sci_AbstractSet_$minus$minus(sc_AbstractSet_$plus$plus($this.$first1.$postConditions(), $this.$after.$postConditions()), $this.$after.$invalidatedConditions()); - $this.$bitmap$027 = ($this.$bitmap$027 | 1) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$postConditions0; -}, -oncifp_PipeLine_transform = ($this, $from, $context) => { - let $step1, $step2; - $step1 = $this.$first1.$transform($from, $context); - $step2 = $this.$after.$transform($step1, $context); - $context = ($this.$first1.$postConditions()).$removedAll($this.$after.$invalidatedConditions()); - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !oncifp_Transformer_checkConditions$($this, $step2, $context, onciu_CancellationChecker$NeverCancelled$_MODULE$)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - return $step2; -}, -oncifp_PipeLine_name = $this => { - let var$1, var$2, var$3; - var$1 = $this.$first1.$name(); - var$2 = $this.$after.$name(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(45)), var$2); - return jl_AbstractStringBuilder_toString(var$3); +let s_Function1$andThen$lambda$_5_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_01065; + return var$0.$_1362.$apply2(var$2.$apply2(var$1)); }, jl_SystemClassLoader = $rt_classWithoutFields(jl_ClassLoader), sc_Factory = $rt_classWithoutFields(0); @@ -32799,7 +32893,7 @@ sc_Iterator = $rt_classWithoutFields(0), sc_Iterator_contains$ = ($$this, $elem) => { let var$3; var$3 = new sc_Iterator$contains$lambda$_35_0; - var$3.$_0678 = $elem; + var$3.$_0669 = $elem; return $$this.$exists(var$3); }, sc_Iterator_grouped$ = ($$this, $size) => { @@ -32836,10 +32930,10 @@ sc_Iterator_filterImpl$ = ($$this, $p, $isFlipped) => { var$4 = new sc_Iterator$$anon$6; if ($$this === null) $rt_throw(null); - var$4.$$outer7 = $$this; + var$4.$$outer8 = $$this; var$4.$p$1 = $p; var$4.$isFlipped$1 = $isFlipped; - var$4.$hdDefined0 = 0; + var$4.$hdDefined = 0; return var$4; }, sc_Iterator_collect$ = ($$this, $pf) => { @@ -32847,7 +32941,7 @@ sc_Iterator_collect$ = ($$this, $pf) => { var$3 = new sc_Iterator$$anon$7; if ($$this === null) $rt_throw(null); - var$3.$$outer23 = $$this; + var$3.$$outer20 = $$this; var$3.$pf$1 = $pf; var$3.$status0 = 0; return var$3; @@ -32857,7 +32951,7 @@ sc_Iterator_distinctBy$ = ($$this, $f) => { var$3 = new sc_Iterator$$anon$8; if ($$this === null) $rt_throw(null); - var$3.$$outer27 = $$this; + var$3.$$outer24 = $$this; var$3.$f$11 = $f; var$3.$traversedValues = scm_HashSet__init_(); var$3.$nextElementDefined = 0; @@ -32868,7 +32962,7 @@ sc_Iterator_map$ = ($$this, $f) => { var$3 = new sc_Iterator$$anon$9; if ($$this === null) $rt_throw(null); - var$3.$$outer15 = $$this; + var$3.$$outer14 = $$this; var$3.$f$2 = $f; return var$3; }, @@ -32877,7 +32971,7 @@ sc_Iterator_flatMap$ = ($$this, $f) => { var$3 = new sc_Iterator$$anon$10; if ($$this === null) $rt_throw(null); - var$3.$$outer29 = $$this; + var$3.$$outer26 = $$this; var$3.$f$31 = $f; var$3.$cur = sc_Iterator$_scala$collection$Iterator$$_empty; var$3.$_hasNext = (-1); @@ -32903,7 +32997,7 @@ sc_Iterator_sliceIterator$ = ($$this, $from, $until) => { var$4 = sc_Iterator$_scala$collection$Iterator$$_empty; else { var$4 = new sc_Iterator$SliceIterator; - var$4.$underlying9 = $$this; + var$4.$underlying8 = $$this; var$4.$scala$collection$Iterator$SliceIterator$$remaining = $until; var$4.$dropping = $from; } @@ -32978,15 +33072,8 @@ sc_BuildFrom$ = $rt_classWithoutFields(), sc_BuildFrom$_MODULE$ = null, sc_BuildFrom$_buildFromString = null, sc_BuildFrom$_buildFromWrappedString = null, -sc_BuildFrom$_$callClinit = () => { - sc_BuildFrom$_$callClinit = $rt_eraseClinit(sc_BuildFrom$); - sc_BuildFrom$__clinit_(); -}, sc_BuildFrom$__clinit_ = () => { - let var$1; - var$1 = new sc_BuildFrom$; - sc_BuildFrom$_$callClinit(); - sc_BuildFrom$_MODULE$ = var$1; + sc_BuildFrom$_MODULE$ = new sc_BuildFrom$; sc_BuildFrom$_buildFromString = new sc_BuildFrom$$anon$5; sc_BuildFrom$_buildFromWrappedString = new sc_BuildFrom$$anon$6; }, @@ -33010,17 +33097,9 @@ let onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare = ($this, $x, $ return var$5; }, jl_Error = $rt_classWithoutFields(jl_Throwable), -jl_Error__init_0 = ($this, $message) => { - jl_Throwable__init_0($this, $message); -}, -jl_Error__init_ = var_0 => { - let var_1 = new jl_Error(); - jl_Error__init_0(var_1, var_0); - return var_1; -}, jl_AssertionError = $rt_classWithoutFields(jl_Error), jl_AssertionError__init_0 = ($this, $message) => { - jl_Throwable__init_0($this, jl_String_valueOf($message)); + jl_Throwable__init_($this, jl_String_valueOf($message)); }, jl_AssertionError__init_ = var_0 => { let var_1 = new jl_AssertionError(); @@ -33030,10 +33109,10 @@ jl_AssertionError__init_ = var_0 => { function oncifp_QualifiedName() { let a = this; jl_Object.call(a); a.$namespace5 = null; - a.$name21 = null; + a.$name22 = null; } let oncifp_QualifiedName_toString = $this => { - return sc_AbstractIterable_mkString($this.$namespace5.$appended($this.$name21), $rt_s(403)); + return sc_AbstractIterable_mkString($this.$namespace5.$appended($this.$name22), $rt_s(389)); }, oncifp_QualifiedName_productPrefix = $this => { return $rt_s(687); @@ -33046,7 +33125,7 @@ oncifp_QualifiedName_productElement = ($this, $x$1) => { case 0: return $this.$namespace5; case 1: - return $this.$name21; + return $this.$name22; default: } return sr_Statics_ioobe($x$1); @@ -33078,8 +33157,8 @@ oncifp_QualifiedName_equals = ($this, $x$1) => { break b; } d: { - var$3 = $this.$name21; - $x$1 = $x$1.$name21; + var$3 = $this.$name22; + $x$1 = $x$1.$name22; if (var$3 !== null) { if (!jl_String_equals(var$3, $x$1)) break b; @@ -33101,7 +33180,7 @@ oncifp_QualifiedName_equals = ($this, $x$1) => { }, oncifp_QualifiedName__init_0 = ($this, $namespace, $name) => { $this.$namespace5 = $namespace; - $this.$name21 = $name; + $this.$name22 = $name; }, oncifp_QualifiedName__init_ = (var_0, var_1) => { let var_2 = new oncifp_QualifiedName(); @@ -33110,11 +33189,11 @@ oncifp_QualifiedName__init_ = (var_0, var_1) => { }; function cnsa_CustomSignatureResolver$toFunctionSignature$lambda$_4_0() { jl_Object.call(this); - this.$_0599 = null; + this.$_0589 = null; } let cnsa_CustomSignatureResolver$toFunctionSignature$lambda$_4_0_apply = (var$0, var$1) => { var$1 = otji_JSWrapper_unwrap(var$1); - return cnsa_CustomSignatureResolver_argToInputDescription(var$0.$_0599, var$1); + return cnsa_CustomSignatureResolver_argToInputDescription(var$0.$_0589, var$1); }; function oncifp_FieldSignature() { let a = this; jl_Object.call(a); @@ -33129,10 +33208,10 @@ let oncifp_FieldSignature_toString = $this => { let var$1, $nameValue, var$3; var$1 = $this.$default2; $nameValue = new oncifp_FieldSignature$toString$lambda$_19_0; - $nameValue.$_0603 = $this; + $nameValue.$_0593 = $this; $nameValue = s_Option_map(var$1, $nameValue); var$1 = new oncifp_FieldSignature$toString$lambda$_19_1; - var$1.$_042 = $this; + var$1.$_046 = $this; $nameValue = s_Option_getOrElse($nameValue, var$1); var$1 = $this.$typ.$normalizedCypherTypeString(); var$3 = new jl_StringBuilder; @@ -33237,7 +33316,7 @@ oncifp_FieldSignature_equals = ($this, $x$1) => { } return var$4; }, -oncifp_FieldSignature__init_ = ($this, $name, $typ, $default, $deprecated, $sensitive, $description) => { +oncifp_FieldSignature__init_0 = ($this, $name, $typ, $default, $deprecated, $sensitive, $description) => { $this.$name9 = $name; $this.$typ = $typ; $this.$default2 = $default; @@ -33245,22 +33324,15 @@ oncifp_FieldSignature__init_ = ($this, $name, $typ, $default, $deprecated, $sens $this.$sensitive = $sensitive; $this.$description5 = $description; }, -oncifp_FieldSignature__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { +oncifp_FieldSignature__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { let var_6 = new oncifp_FieldSignature(); - oncifp_FieldSignature__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + oncifp_FieldSignature__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); return var_6; }, cnsa_CustomSignatureResolver$ = $rt_classWithoutFields(), cnsa_CustomSignatureResolver$_MODULE$ = null, -cnsa_CustomSignatureResolver$_$callClinit = () => { - cnsa_CustomSignatureResolver$_$callClinit = $rt_eraseClinit(cnsa_CustomSignatureResolver$); - cnsa_CustomSignatureResolver$__clinit_(); -}, cnsa_CustomSignatureResolver$__clinit_ = () => { - let var$1; - var$1 = new cnsa_CustomSignatureResolver$; - cnsa_CustomSignatureResolver$_$callClinit(); - cnsa_CustomSignatureResolver$_MODULE$ = var$1; + cnsa_CustomSignatureResolver$_MODULE$ = new cnsa_CustomSignatureResolver$; }, cnsa_CustomSignatureResolver$_toCypherType = ($this, $stringifiedType) => { let $listOfType, $listOfNumber, $listOfNumberOther, $innerType, var$6; @@ -33598,19 +33670,12 @@ s_Function9 = $rt_classWithoutFields(0), sr_AbstractFunction9 = $rt_classWithoutFields(), oncifp_UserFunctionSignature$ = $rt_classWithoutFields(sr_AbstractFunction9), oncifp_UserFunctionSignature$_MODULE$ = null, -oncifp_UserFunctionSignature$_$callClinit = () => { - oncifp_UserFunctionSignature$_$callClinit = $rt_eraseClinit(oncifp_UserFunctionSignature$); - oncifp_UserFunctionSignature$__clinit_(); -}, oncifp_UserFunctionSignature$__clinit_ = () => { - let var$1; - var$1 = new oncifp_UserFunctionSignature$; - oncifp_UserFunctionSignature$_$callClinit(); - oncifp_UserFunctionSignature$_MODULE$ = var$1; + oncifp_UserFunctionSignature$_MODULE$ = new oncifp_UserFunctionSignature$; }; function oncifp_UserFunctionSignature() { let a = this; jl_Object.call(a); - a.$name15 = null; + a.$name16 = null; a.$inputSignature = null; a.$outputType1 = null; a.$deprecationInfo0 = null; @@ -33622,7 +33687,7 @@ function oncifp_UserFunctionSignature() { } let oncifp_UserFunctionSignature_toString = $this => { let var$1, var$2, var$3, var$4; - var$1 = $this.$name15; + var$1 = $this.$name16; var$2 = sc_AbstractIterable_mkString($this.$inputSignature, $rt_s(45)); var$3 = $this.$outputType1.$normalizedCypherTypeString(); var$4 = new jl_StringBuilder; @@ -33638,7 +33703,7 @@ oncifp_UserFunctionSignature_productArity = $this => { oncifp_UserFunctionSignature_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$name15; + return $this.$name16; case 1: return $this.$inputSignature; case 2: @@ -33664,7 +33729,7 @@ oncifp_UserFunctionSignature_productIterator = $this => { }, oncifp_UserFunctionSignature_hashCode = $this => { let var$1, var$2; - var$1 = sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(694))), sr_Statics_anyHash($this.$name15)), sr_Statics_anyHash($this.$inputSignature)), sr_Statics_anyHash($this.$outputType1)), sr_Statics_anyHash($this.$deprecationInfo0)), sr_Statics_anyHash($this.$description2)); + var$1 = sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(694))), sr_Statics_anyHash($this.$name16)), sr_Statics_anyHash($this.$inputSignature)), sr_Statics_anyHash($this.$outputType1)), sr_Statics_anyHash($this.$deprecationInfo0)), sr_Statics_anyHash($this.$description2)); var$2 = !$this.$isAggregate ? 1237 : 1231; return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), $this.$id4), !$this.$builtIn ? 1237 : 1231), !$this.$threadSafe0 ? 1237 : 1231), 9); }, @@ -33685,8 +33750,8 @@ oncifp_UserFunctionSignature_equals = ($this, $x$1) => { if ($this.$threadSafe0 != $x$1.$threadSafe0) break b; c: { - var$2 = $this.$name15; - var$3 = $x$1.$name15; + var$2 = $this.$name16; + var$3 = $x$1.$name16; if (var$2 !== null) { if (!oncifp_QualifiedName_equals(var$2, var$3)) break b; @@ -33949,7 +34014,7 @@ sci_HashSet_equals = ($this, $that) => { return 0; }, sci_HashSet_className = $this => { - return $rt_s(102); + return $rt_s(103); }, sci_HashSet_hashCode = $this => { let $it, var$2; @@ -33981,7 +34046,7 @@ sci_HashSet_diff = ($this, $that) => { if ($thatKnownSize <= sci_HashSet_size($this)) return sci_HashSet_removedAllWithShallowMutations($this, $that); $filterNot_pred = new sci_HashSet$diff$lambda$_60_0; - $filterNot_pred.$_0934 = $that; + $filterNot_pred.$_0923 = $that; $filterImpl_newRootNode = sci_BitmapIndexedSetNode_filterImpl($this.$rootNode1, $filterNot_pred, 1); if ($filterImpl_newRootNode === $this.$rootNode1) return $this; @@ -34093,12 +34158,12 @@ sci_HashSet_removedAll = ($this, $that) => { var$7 = $rt_wrapArray(jl_Object, [jl_Integer_valueOf(var$2.$start()), !var$2.$isInclusive() ? $rt_s(695) : $rt_s(696), jl_Integer_valueOf(var$2.$end()), jl_Integer_valueOf(var$2.$step0())]); jl_AbstractStringBuilder_append(var$4, sc_StringOps$_format$extension(var$5, $rt_s(697), sr_ScalaRunTime$_genericWrapArray(var$6, var$7))); jl_AbstractStringBuilder_append(var$4, $rt_s(698)); - jl_Throwable__init_0($that, jl_AbstractStringBuilder_toString(var$4)); + jl_Throwable__init_($that, jl_AbstractStringBuilder_toString(var$4)); $rt_throw($that); } if (var$3 > sci_HashSet_size($this)) { $that = new sci_HashSet$removedAll$lambda$_62_0; - $that.$_0777 = var$2; + $that.$_0755 = var$2; $that = sci_BitmapIndexedSetNode_filterImpl($this.$rootNode1, $that, 0); if ($that === $this.$rootNode1) break a; @@ -34228,35 +34293,26 @@ sci_ChampBaseIterator__init_ = ($this, $rootNode) => { sci_HashSetBuilder$$anon$1 = $rt_classWithoutFields(sci_ChampBaseIterator); function cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_0() { jl_Object.call(this); - this.$_0662 = null; + this.$_0654 = null; } let cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_0_apply = (var$0, var$1) => { var$1 = otji_JSWrapper_unwrap(var$1); - return cnsa_CustomSignatureResolver_argToInputDescription(var$0.$_0662, var$1); + return cnsa_CustomSignatureResolver_argToInputDescription(var$0.$_0654, var$1); }, cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_1 = $rt_classWithoutFields(), cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_1_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = otji_JSWrapper_unwrap(var$1); var$2 = $rt_str(var$1.name); - cnsa_CustomSignatureResolver$_$callClinit(); var$3 = cnsa_CustomSignatureResolver$_toCypherType(cnsa_CustomSignatureResolver$_MODULE$, $rt_str(var$1.type)); var$4 = var$1.isDeprecated ? 1 : 0; - oncifp_FieldSignature$_$callClinit(); - return oncifp_FieldSignature__init_0(var$2, var$3, s_None$_MODULE$, var$4, 0, null); + return oncifp_FieldSignature__init_(var$2, var$3, s_None$_MODULE$, var$4, 0, null); }, oncifp_ProcedureAccessMode = $rt_classWithoutFields(0), oncifp_ProcedureReadOnlyAccess$ = $rt_classWithoutFields(), oncifp_ProcedureReadOnlyAccess$_MODULE$ = null, -oncifp_ProcedureReadOnlyAccess$_$callClinit = () => { - oncifp_ProcedureReadOnlyAccess$_$callClinit = $rt_eraseClinit(oncifp_ProcedureReadOnlyAccess$); - oncifp_ProcedureReadOnlyAccess$__clinit_(); -}, oncifp_ProcedureReadOnlyAccess$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ProcedureReadOnlyAccess$; - oncifp_ProcedureReadOnlyAccess$_$callClinit(); - oncifp_ProcedureReadOnlyAccess$_MODULE$ = var$1; + oncifp_ProcedureReadOnlyAccess$_MODULE$ = new oncifp_ProcedureReadOnlyAccess$; }, oncifp_ProcedureReadOnlyAccess$_productArity = $this => { return 0; @@ -34277,15 +34333,8 @@ s_Function12 = $rt_classWithoutFields(0), sr_AbstractFunction12 = $rt_classWithoutFields(), oncifp_ProcedureSignature$ = $rt_classWithoutFields(sr_AbstractFunction12), oncifp_ProcedureSignature$_MODULE$ = null, -oncifp_ProcedureSignature$_$callClinit = () => { - oncifp_ProcedureSignature$_$callClinit = $rt_eraseClinit(oncifp_ProcedureSignature$); - oncifp_ProcedureSignature$__clinit_(); -}, oncifp_ProcedureSignature$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ProcedureSignature$; - oncifp_ProcedureSignature$_$callClinit(); - oncifp_ProcedureSignature$_MODULE$ = var$1; + oncifp_ProcedureSignature$_MODULE$ = new oncifp_ProcedureSignature$; }; function oncifp_ProcedureSignature() { let a = this; jl_Object.call(a); @@ -34310,12 +34359,12 @@ oncifp_ProcedureSignature_toString = $this => { $sig = sc_AbstractIterable_mkString($this.$inputSignature0, $rt_s(45)); var$2 = $this.$outputSignature; var$3 = new oncifp_ProcedureSignature$toString$lambda$_31_0; - var$3.$_01145 = $this; - var$3.$_1384 = $sig; + var$3.$_01127 = $this; + var$3.$_1383 = $sig; var$3 = s_Option_map(var$2, var$3); var$2 = new oncifp_ProcedureSignature$toString$lambda$_31_1; - var$2.$_0352 = $this; - var$2.$_1127 = $sig; + var$2.$_0339 = $this; + var$2.$_1119 = $sig; return s_Option_getOrElse(var$3, var$2); }, oncifp_ProcedureSignature_productArity = $this => { @@ -34474,15 +34523,8 @@ oncifp_ProcedureSignature_equals = ($this, $x$1) => { }, oncifp_ProcedureReadWriteAccess$ = $rt_classWithoutFields(), oncifp_ProcedureReadWriteAccess$_MODULE$ = null, -oncifp_ProcedureReadWriteAccess$_$callClinit = () => { - oncifp_ProcedureReadWriteAccess$_$callClinit = $rt_eraseClinit(oncifp_ProcedureReadWriteAccess$); - oncifp_ProcedureReadWriteAccess$__clinit_(); -}, oncifp_ProcedureReadWriteAccess$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ProcedureReadWriteAccess$; - oncifp_ProcedureReadWriteAccess$_$callClinit(); - oncifp_ProcedureReadWriteAccess$_MODULE$ = var$1; + oncifp_ProcedureReadWriteAccess$_MODULE$ = new oncifp_ProcedureReadWriteAccess$; }, oncifp_ProcedureReadWriteAccess$_productArity = $this => { return 0; @@ -34501,15 +34543,8 @@ oncifp_ProcedureReadWriteAccess$_toString = $this => { }, oncifp_ProcedureDbmsAccess$ = $rt_classWithoutFields(), oncifp_ProcedureDbmsAccess$_MODULE$ = null, -oncifp_ProcedureDbmsAccess$_$callClinit = () => { - oncifp_ProcedureDbmsAccess$_$callClinit = $rt_eraseClinit(oncifp_ProcedureDbmsAccess$); - oncifp_ProcedureDbmsAccess$__clinit_(); -}, oncifp_ProcedureDbmsAccess$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ProcedureDbmsAccess$; - oncifp_ProcedureDbmsAccess$_$callClinit(); - oncifp_ProcedureDbmsAccess$_MODULE$ = var$1; + oncifp_ProcedureDbmsAccess$_MODULE$ = new oncifp_ProcedureDbmsAccess$; }, oncifp_ProcedureDbmsAccess$_productArity = $this => { return 0; @@ -34528,15 +34563,8 @@ oncifp_ProcedureDbmsAccess$_toString = $this => { }, oncifp_ProcedureSchemaWriteAccess$ = $rt_classWithoutFields(), oncifp_ProcedureSchemaWriteAccess$_MODULE$ = null, -oncifp_ProcedureSchemaWriteAccess$_$callClinit = () => { - oncifp_ProcedureSchemaWriteAccess$_$callClinit = $rt_eraseClinit(oncifp_ProcedureSchemaWriteAccess$); - oncifp_ProcedureSchemaWriteAccess$__clinit_(); -}, oncifp_ProcedureSchemaWriteAccess$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ProcedureSchemaWriteAccess$; - oncifp_ProcedureSchemaWriteAccess$_$callClinit(); - oncifp_ProcedureSchemaWriteAccess$_MODULE$ = var$1; + oncifp_ProcedureSchemaWriteAccess$_MODULE$ = new oncifp_ProcedureSchemaWriteAccess$; }, oncifp_ProcedureSchemaWriteAccess$_productArity = $this => { return 0; @@ -34569,8 +34597,7 @@ function su_DynamicVariable() { let su_DynamicVariable__init_ = ($this, $init) => { $this.$scala$util$DynamicVariable$$init = $init; $init = new su_DynamicVariable$$anon$1; - $init.$$outer33 = $this; - jl_ThreadLocal_$callClinit(); + $init.$$outer29 = $this; $this.$tl = $init; }, su_DynamicVariable__init_0 = var_0 => { @@ -34594,7 +34621,7 @@ ji_Reader_read = ($this, $cb) => { return 0; if ($cb.$readOnly) { $cb = new jn_ReadOnlyBufferException; - jl_Throwable__init_($cb); + jl_Throwable__init_0($cb); $rt_throw($cb); } $bytesRead = oncipl_UnicodeEscapeReplacementReader_read0($this, $cb.$array4, $cb.$position3 + $cb.$start2 | 0, jn_Buffer_remaining($cb)); @@ -34856,7 +34883,7 @@ sci_Node_arrayIndexOutOfBounds = ($this, $as, $ix) => { jl_AbstractStringBuilder__init_0(var$4, 30); var$4 = jl_StringBuilder_append0(var$4, $ix); jl_AbstractStringBuilder_append(var$4, $rt_s(685)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$4, jlr_Array_getLength($as) - 1 | 0))); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$4, jlr_Array_getLength($as) - 1 | 0))); return var$3; }, sci_Node_removeElement = ($this, $as, $ix) => { @@ -34901,15 +34928,8 @@ sc_Hashing$_improve = ($this, $hcode) => { }, scm_HashMap$ = $rt_classWithoutFields(), scm_HashMap$_MODULE$ = null, -scm_HashMap$_$callClinit = () => { - scm_HashMap$_$callClinit = $rt_eraseClinit(scm_HashMap$); - scm_HashMap$__clinit_(); -}, scm_HashMap$__clinit_ = () => { - let var$1; - var$1 = new scm_HashMap$; - scm_HashMap$_$callClinit(); - scm_HashMap$_MODULE$ = var$1; + scm_HashMap$_MODULE$ = new scm_HashMap$; }, scm_HashMap$_newBuilder = $this => { let var$1; @@ -34946,15 +34966,8 @@ scm_HashSet$_from = ($this, $source) => { }, scm_TreeSet$ = $rt_classWithoutFields(), scm_TreeSet$_MODULE$ = null, -scm_TreeSet$_$callClinit = () => { - scm_TreeSet$_$callClinit = $rt_eraseClinit(scm_TreeSet$); - scm_TreeSet$__clinit_(); -}, scm_TreeSet$__clinit_ = () => { - let var$1; - var$1 = new scm_TreeSet$; - scm_TreeSet$_$callClinit(); - scm_TreeSet$_MODULE$ = var$1; + scm_TreeSet$_MODULE$ = new scm_TreeSet$; }, scm_TreeSet$_from = ($this, $it, $evidence$5) => { let var$3, var$4, var$5; @@ -35039,10 +35052,10 @@ otcic_JsConsolePrintStream__init_ = $this => { }, otcic_JsConsolePrintStream_println = ($this, $s) => { $this.$print($s); - $this.$print($rt_s(93)); + $this.$print($rt_s(94)); }, otcic_JsConsolePrintStream_println1 = $this => { - $this.$print($rt_s(93)); + $this.$print($rt_s(94)); }, otcic_JsConsolePrintStream_println0 = ($this, $s) => { let var$2; @@ -35051,30 +35064,26 @@ otcic_JsConsolePrintStream_println0 = ($this, $s) => { var$2 = $s.$toString(); otcic_JsConsolePrintStream_println($this, var$2); }, -otcic_JSStdoutPrintStream = $rt_classWithoutFields(otcic_JsConsolePrintStream); -let otcic_JSStdoutPrintStream_print = ($this, $s) => { +otcic_JSStdoutPrintStream = $rt_classWithoutFields(otcic_JsConsolePrintStream), +otcic_JSStdoutPrintStream_print = ($this, $s) => { if ($s === null) $s = $rt_s(10); $rt_putStdout($rt_ustr($s)); }; function jl_ThreadLocal() { let a = this; jl_Object.call(a); - a.$map18 = null; + a.$map17 = null; a.$initialized0 = 0; a.$value39 = null; } let jl_ThreadLocal_NULL = null, -jl_ThreadLocal_$callClinit = () => { - jl_ThreadLocal_$callClinit = $rt_eraseClinit(jl_ThreadLocal); - jl_ThreadLocal__clinit_(); -}, jl_ThreadLocal_cleanupMap = $this => { let var$1; - var$1 = $this.$map18; + var$1 = $this.$map17; if (var$1 !== null) { ju_WeakHashMap_poll(var$1); - if (var$1.$elementCount1 ? 0 : 1) - $this.$map18 = null; + if (var$1.$elementCount0 ? 0 : 1) + $this.$map17 = null; } }, jl_ThreadLocal__clinit_ = () => { @@ -35083,10 +35092,10 @@ jl_ThreadLocal__clinit_ = () => { jl_InheritableThreadLocal = $rt_classWithoutFields(jl_ThreadLocal); function su_DynamicVariable$$anon$1() { jl_InheritableThreadLocal.call(this); - this.$$outer33 = null; + this.$$outer29 = null; } let su_DynamicVariable$$anon$1_initialValue = $this => { - return $this.$$outer33.$scala$util$DynamicVariable$$init; + return $this.$$outer29.$scala$util$DynamicVariable$$init; }, otcic_JSStderrPrintStream = $rt_classWithoutFields(otcic_JsConsolePrintStream), otcic_JSStderrPrintStream_print = ($this, $s) => { @@ -35169,7 +35178,6 @@ jnci_UTF8Charset_newEncoder = $this => { var$2 = $rt_createByteArray(1); var$3 = var$2.data; var$3[0] = 63; - jnc_CodingErrorAction_$callClinit(); var$4 = jnc_CodingErrorAction_REPORT; var$1.$malformedAction0 = var$4; var$1.$unmappableAction0 = var$4; @@ -35184,7 +35192,7 @@ jnci_UTF8Charset_newEncoder = $this => { return var$1; } var$4 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$4, $rt_s(704)); + jl_Throwable__init_(var$4, $rt_s(704)); $rt_throw(var$4); }, jnci_UTF8Charset__clinit_ = () => { @@ -35348,16 +35356,14 @@ onciu_Rewritable = $rt_classWithoutFields(0), onciu_ASTNode = $rt_classWithoutFields(0), onciu_ASTNode_dup$ = ($$this, $children) => { let var$3, var$4, var$5; - var$3 = onciu_Rewritable$_IteratorEq(onciu_Rewritable$_MODULE$, $children.$iterator0()); - onciu_Foldable$TreeAny$_$callClinit(); - if (!onciu_Rewritable$IteratorEq_eqElements(var$3, onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $$this))) { - var$4 = onciu_RewritableJavascript_numParameters(jl_Object_getClass($$this)) != ($children.$length() + 1 | 0) ? 0 : 1; - var$5 = onciu_RewritableJavascript_lastParamIsPosition(jl_Object_getClass($$this)); - if (var$4 && var$5) + if (!onciu_Rewritable$IteratorEq_eqElements(onciu_Rewritable$_IteratorEq(onciu_Rewritable$_MODULE$, $children.$iterator0()), onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $$this))) { + var$3 = onciu_RewritableJavascript_numParameters(jl_Object_getClass($$this)) != ($children.$length() + 1 | 0) ? 0 : 1; + var$4 = onciu_RewritableJavascript_lastParamIsPosition(jl_Object_getClass($$this)); + if (var$3 && var$4) $children = $children.$appended($$this.$position()); - var$3 = onciu_Rewritable$_MODULE$; + var$5 = onciu_Rewritable$_MODULE$; sr_ClassTag$_$callClinit(); - $$this = onciu_Rewritable$_copyProduct(var$3, $$this, sc_IterableOnceOps_toArray$($children, sr_ClassTag$_AnyRef(sr_ClassTag$_MODULE$))); + $$this = onciu_Rewritable$_copyProduct(var$5, $$this, sc_IterableOnceOps_toArray$($children, sr_ClassTag$_AnyRef(sr_ClassTag$_MODULE$))); } return $$this; }, @@ -35382,7 +35388,7 @@ oncius_CypherType_isSubtypeOf$ = ($$this, $otherCypherType) => { else if ($otherCypherType instanceof oncius_ClosedDynamicUnionType) { var$4 = $otherCypherType.$innerTypes0; $otherCypherType = new oncius_CypherType$isSubtypeOf$lambda$_19_0; - $otherCypherType.$_0318 = $$this; + $otherCypherType.$_0310 = $$this; var$3 = var$4.$exists($otherCypherType); } else var$3 = jl_String_equals($$this.$toCypherTypeString(), $otherCypherType.$toCypherTypeString()) && $$this.$isNullableSubtypeOf($$this, $otherCypherType) ? 1 : 0; @@ -35447,7 +35453,7 @@ oncius_CypherType_greatestLowerBound$ = ($$this, $other) => { else { var$3 = s_Some__init_($$this); $$this = new oncius_CypherType$greatestLowerBound$lambda$_35_0; - $$this.$_0860 = $other; + $$this.$_0839 = $other; $$this = s_Option_filter(var$3, $$this); } return $$this; @@ -35471,10 +35477,10 @@ oncius_CypherType_$init$ = $$this => { function oncius_AnyType() { let a = this; jl_Object.call(a); a.$isNullable9 = 0; - a.$position129 = null; + a.$position137 = null; a.$parentType2 = null; a.$isAbstract14 = 0; - a.$toString19 = null; + a.$toString18 = null; a.$toCypherTypeString4 = null; a.$covariant22 = null; a.$invariant8 = null; @@ -35551,7 +35557,7 @@ oncius_AnyType_isNullable = $this => { return $this.$isNullable9; }, oncius_AnyType_position = $this => { - return $this.$position129; + return $this.$position137; }, oncius_AnyType_parentType = $this => { return $this.$parentType2; @@ -35560,7 +35566,7 @@ oncius_AnyType_isAssignableFrom = ($this, $other) => { return 1; }, oncius_AnyType_toString = $this => { - return $this.$toString19; + return $this.$toString18; }, oncius_AnyType_toCypherTypeString = $this => { return $this.$toCypherTypeString4; @@ -35570,7 +35576,7 @@ oncius_AnyType_sortOrder = $this => { return oncius_CypherTypeOrder$_ANY.$i; }, oncius_AnyType_withIsNullable = ($this, $isNullable) => { - return oncius_AnyType_copy($this, $isNullable, $this.$position129); + return oncius_AnyType_copy($this, $isNullable, $this.$position137); }, oncius_AnyType_isSubtypeOf = ($this, $otherCypherType) => { if (!($otherCypherType instanceof oncius_AnyType)) @@ -35625,11 +35631,11 @@ oncius_AnyType_dup = ($this, $children) => { }, oncius_AnyType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable9 = $isNullable; - $this.$position129 = $position; + $this.$position137 = $position; oncius_CypherType_$init$($this); $this.$parentType2 = $this; $this.$isAbstract14 = 1; - $this.$toString19 = $rt_s(130); + $this.$toString18 = $rt_s(131); $this.$toCypherTypeString4 = $rt_s(708); }, oncius_AnyType__init_ = (var_0, var_1) => { @@ -35640,14 +35646,14 @@ oncius_AnyType__init_ = (var_0, var_1) => { function oncius_BooleanType() { let a = this; jl_Object.call(a); a.$isNullable8 = 0; - a.$position119 = null; + a.$position128 = null; a.$parentType4 = null; - a.$toString20 = null; + a.$toString19 = null; a.$toCypherTypeString23 = null; a.$isAbstract16 = 0; a.$covariant12 = null; a.$invariant0 = null; - a.$bitmap$06 = 0; + a.$bitmap$07 = 0; } let oncius_BooleanType_description = $this => { return oncius_CypherType_description$($this); @@ -35678,15 +35684,15 @@ oncius_BooleanType_greatestLowerBound = ($this, $other) => { }, oncius_BooleanType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$06 & 1) << 24 >> 24) + if (($this.$bitmap$07 & 1) << 24 >> 24) return $this.$covariant12; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$06 & 1) << 24 >> 24) + if (($this.$bitmap$07 & 1) << 24 >> 24) break a; $this.$covariant12 = oncius_CypherType_covariant$($this); - $this.$bitmap$06 = ($this.$bitmap$06 | 1) << 24 >> 24; + $this.$bitmap$07 = ($this.$bitmap$07 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -35701,15 +35707,15 @@ oncius_BooleanType_covariant = $this => { }, oncius_BooleanType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$06 & 2) << 24 >> 24) + if (($this.$bitmap$07 & 2) << 24 >> 24) return $this.$invariant0; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$06 & 2) << 24 >> 24) + if (($this.$bitmap$07 & 2) << 24 >> 24) break a; $this.$invariant0 = oncius_CypherType_invariant$($this); - $this.$bitmap$06 = ($this.$bitmap$06 | 2) << 24 >> 24; + $this.$bitmap$07 = ($this.$bitmap$07 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -35729,13 +35735,13 @@ oncius_BooleanType_isNullable = $this => { return $this.$isNullable8; }, oncius_BooleanType_position = $this => { - return $this.$position119; + return $this.$position128; }, oncius_BooleanType_parentType = $this => { return $this.$parentType4; }, oncius_BooleanType_toString = $this => { - return $this.$toString20; + return $this.$toString19; }, oncius_BooleanType_toCypherTypeString = $this => { return $this.$toCypherTypeString23; @@ -35745,7 +35751,7 @@ oncius_BooleanType_sortOrder = $this => { return oncius_CypherTypeOrder$_BOOLEAN.$i; }, oncius_BooleanType_withIsNullable = ($this, $isNullable) => { - return oncius_BooleanType_copy($this, $isNullable, $this.$position119); + return oncius_BooleanType_copy($this, $isNullable, $this.$position128); }, oncius_BooleanType_withPosition = ($this, $newPosition) => { return oncius_BooleanType_copy($this, $this.$isNullable8, $newPosition); @@ -35795,11 +35801,11 @@ oncius_BooleanType_dup = ($this, $children) => { }, oncius_BooleanType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable8 = $isNullable; - $this.$position119 = $position; + $this.$position128 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType4 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString20 = $rt_s(128); + $this.$toString19 = $rt_s(129); $this.$toCypherTypeString23 = $rt_s(710); }, oncius_BooleanType__init_ = (var_0, var_1) => { @@ -35810,14 +35816,14 @@ oncius_BooleanType__init_ = (var_0, var_1) => { function oncius_StringType() { let a = this; jl_Object.call(a); a.$isNullable7 = 0; - a.$position130 = null; + a.$position138 = null; a.$parentType3 = null; - a.$toString33 = null; + a.$toString32 = null; a.$toCypherTypeString13 = null; a.$isAbstract6 = 0; a.$covariant3 = null; a.$invariant13 = null; - a.$bitmap$017 = 0; + a.$bitmap$018 = 0; } let oncius_StringType_description = $this => { return oncius_CypherType_description$($this); @@ -35848,15 +35854,15 @@ oncius_StringType_greatestLowerBound = ($this, $other) => { }, oncius_StringType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$017 & 1) << 24 >> 24) + if (($this.$bitmap$018 & 1) << 24 >> 24) return $this.$covariant3; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$017 & 1) << 24 >> 24) + if (($this.$bitmap$018 & 1) << 24 >> 24) break a; $this.$covariant3 = oncius_CypherType_covariant$($this); - $this.$bitmap$017 = ($this.$bitmap$017 | 1) << 24 >> 24; + $this.$bitmap$018 = ($this.$bitmap$018 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -35871,15 +35877,15 @@ oncius_StringType_covariant = $this => { }, oncius_StringType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$017 & 2) << 24 >> 24) + if (($this.$bitmap$018 & 2) << 24 >> 24) return $this.$invariant13; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$017 & 2) << 24 >> 24) + if (($this.$bitmap$018 & 2) << 24 >> 24) break a; $this.$invariant13 = oncius_CypherType_invariant$($this); - $this.$bitmap$017 = ($this.$bitmap$017 | 2) << 24 >> 24; + $this.$bitmap$018 = ($this.$bitmap$018 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -35899,13 +35905,13 @@ oncius_StringType_isNullable = $this => { return $this.$isNullable7; }, oncius_StringType_position = $this => { - return $this.$position130; + return $this.$position138; }, oncius_StringType_parentType = $this => { return $this.$parentType3; }, oncius_StringType_toString = $this => { - return $this.$toString33; + return $this.$toString32; }, oncius_StringType_toCypherTypeString = $this => { return $this.$toCypherTypeString13; @@ -35915,7 +35921,7 @@ oncius_StringType_sortOrder = $this => { return oncius_CypherTypeOrder$_STRING.$i; }, oncius_StringType_withIsNullable = ($this, $isNullable) => { - return oncius_StringType_copy($this, $isNullable, $this.$position130); + return oncius_StringType_copy($this, $isNullable, $this.$position138); }, oncius_StringType_copy = ($this, $isNullable, $position) => { return oncius_StringType__init_($isNullable, $position); @@ -35968,11 +35974,11 @@ oncius_StringType_withIsNullable0 = ($this, $isNullable) => { }, oncius_StringType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable7 = $isNullable; - $this.$position130 = $position; + $this.$position138 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType3 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString33 = !$isNullable ? $rt_s(712) : $rt_s(713); + $this.$toString32 = !$isNullable ? $rt_s(712) : $rt_s(713); $this.$toCypherTypeString13 = $rt_s(714); }, oncius_StringType__init_ = (var_0, var_1) => { @@ -35983,14 +35989,14 @@ oncius_StringType__init_ = (var_0, var_1) => { function oncius_NumberType() { let a = this; jl_Object.call(a); a.$isNullable2 = 0; - a.$position25 = null; + a.$position27 = null; a.$parentType22 = null; - a.$toString31 = null; + a.$toString30 = null; a.$toCypherTypeString19 = null; a.$isAbstract17 = 0; a.$covariant18 = null; a.$invariant7 = null; - a.$bitmap$016 = 0; + a.$bitmap$017 = 0; } let oncius_NumberType_description = $this => { return oncius_CypherType_description$($this); @@ -36018,15 +36024,15 @@ oncius_NumberType_greatestLowerBound = ($this, $other) => { }, oncius_NumberType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$016 & 1) << 24 >> 24) + if (($this.$bitmap$017 & 1) << 24 >> 24) return $this.$covariant18; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$016 & 1) << 24 >> 24) + if (($this.$bitmap$017 & 1) << 24 >> 24) break a; $this.$covariant18 = oncius_CypherType_covariant$($this); - $this.$bitmap$016 = ($this.$bitmap$016 | 1) << 24 >> 24; + $this.$bitmap$017 = ($this.$bitmap$017 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -36041,15 +36047,15 @@ oncius_NumberType_covariant = $this => { }, oncius_NumberType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$016 & 2) << 24 >> 24) + if (($this.$bitmap$017 & 2) << 24 >> 24) return $this.$invariant7; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$016 & 2) << 24 >> 24) + if (($this.$bitmap$017 & 2) << 24 >> 24) break a; $this.$invariant7 = oncius_CypherType_invariant$($this); - $this.$bitmap$016 = ($this.$bitmap$016 | 2) << 24 >> 24; + $this.$bitmap$017 = ($this.$bitmap$017 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -36069,10 +36075,10 @@ oncius_NumberType_isNullable = $this => { return $this.$isNullable2; }, oncius_NumberType_position = $this => { - return $this.$position25; + return $this.$position27; }, oncius_NumberType_toString = $this => { - return $this.$toString31; + return $this.$toString30; }, oncius_NumberType_toCypherTypeString = $this => { return $this.$toCypherTypeString19; @@ -36093,7 +36099,7 @@ oncius_NumberType_sortOrder = $this => { return (oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION(oncius_CypherTypeOrder$_MODULE$)).$i; }, oncius_NumberType_withIsNullable = ($this, $isNullable) => { - return oncius_NumberType_copy($this, $isNullable, $this.$position25); + return oncius_NumberType_copy($this, $isNullable, $this.$position27); }, oncius_NumberType_withPosition = ($this, $newPosition) => { return oncius_NumberType_copy($this, $this.$isNullable2, $newPosition); @@ -36146,11 +36152,11 @@ oncius_NumberType_parentType = $this => { }, oncius_NumberType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable2 = $isNullable; - $this.$position25 = $position; + $this.$position27 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType22 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString31 = $rt_s(716); + $this.$toString30 = $rt_s(716); $this.$toCypherTypeString19 = $rt_s(717); }, oncius_NumberType__init_ = (var_0, var_1) => { @@ -36161,9 +36167,9 @@ oncius_NumberType__init_ = (var_0, var_1) => { function oncius_FloatType() { let a = this; jl_Object.call(a); a.$isNullable5 = 0; - a.$position181 = null; + a.$position188 = null; a.$parentType13 = null; - a.$toString14 = null; + a.$toString13 = null; a.$toCypherTypeString6 = null; a.$isAbstract3 = 0; a.$covariant4 = null; @@ -36250,13 +36256,13 @@ oncius_FloatType_isNullable = $this => { return $this.$isNullable5; }, oncius_FloatType_position = $this => { - return $this.$position181; + return $this.$position188; }, oncius_FloatType_parentType = $this => { return $this.$parentType13; }, oncius_FloatType_toString = $this => { - return $this.$toString14; + return $this.$toString13; }, oncius_FloatType_toCypherTypeString = $this => { return $this.$toCypherTypeString6; @@ -36266,7 +36272,7 @@ oncius_FloatType_sortOrder = $this => { return oncius_CypherTypeOrder$_FLOAT.$i; }, oncius_FloatType_withIsNullable = ($this, $isNullable) => { - return oncius_FloatType_copy($this, $isNullable, $this.$position181); + return oncius_FloatType_copy($this, $isNullable, $this.$position188); }, oncius_FloatType_withPosition = ($this, $newPosition) => { return oncius_FloatType_copy($this, $this.$isNullable5, $newPosition); @@ -36316,11 +36322,11 @@ oncius_FloatType_dup = ($this, $children) => { }, oncius_FloatType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable5 = $isNullable; - $this.$position181 = $position; + $this.$position188 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType13 = oncius_package$_CTNumber(oncius_package$_MODULE$); - $this.$toString14 = $rt_s(126); + $this.$toString13 = $rt_s(127); $this.$toCypherTypeString6 = $rt_s(719); }, oncius_FloatType__init_ = (var_0, var_1) => { @@ -36332,9 +36338,9 @@ function oncius_IntegerType() { let a = this; jl_Object.call(a); a.$coercibleTo0 = null; a.$isNullable13 = 0; - a.$position154 = null; + a.$position163 = null; a.$parentType14 = null; - a.$toString15 = null; + a.$toString14 = null; a.$toCypherTypeString16 = null; a.$isAbstract18 = 0; a.$covariant13 = null; @@ -36418,7 +36424,7 @@ oncius_IntegerType_isNullable = $this => { return $this.$isNullable13; }, oncius_IntegerType_position = $this => { - return $this.$position154; + return $this.$position163; }, oncius_IntegerType_parentType = $this => { return $this.$parentType14; @@ -36454,7 +36460,7 @@ oncius_IntegerType_coercibleTo = $this => { return $this.$coercibleTo0; }, oncius_IntegerType_toString = $this => { - return $this.$toString15; + return $this.$toString14; }, oncius_IntegerType_toCypherTypeString = $this => { return $this.$toCypherTypeString16; @@ -36464,7 +36470,7 @@ oncius_IntegerType_sortOrder = $this => { return oncius_CypherTypeOrder$_INTEGER.$i; }, oncius_IntegerType_withIsNullable = ($this, $isNullable) => { - return oncius_IntegerType_copy($this, $isNullable, $this.$position154); + return oncius_IntegerType_copy($this, $isNullable, $this.$position163); }, oncius_IntegerType_withPosition = ($this, $newPosition) => { return oncius_IntegerType_copy($this, $this.$isNullable13, $newPosition); @@ -36514,11 +36520,11 @@ oncius_IntegerType_dup = ($this, $children) => { }, oncius_IntegerType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable13 = $isNullable; - $this.$position154 = $position; + $this.$position163 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType14 = oncius_package$_CTNumber(oncius_package$_MODULE$); - $this.$toString15 = $rt_s(721); + $this.$toString14 = $rt_s(721); $this.$toCypherTypeString16 = $rt_s(722); }, oncius_IntegerType__init_ = (var_0, var_1) => { @@ -36529,9 +36535,9 @@ oncius_IntegerType__init_ = (var_0, var_1) => { function oncius_MapType() { let a = this; jl_Object.call(a); a.$isNullable12 = 0; - a.$position179 = null; + a.$position186 = null; a.$parentType16 = null; - a.$toString17 = null; + a.$toString16 = null; a.$toCypherTypeString17 = null; a.$isAbstract22 = 0; a.$covariant10 = null; @@ -36618,13 +36624,13 @@ oncius_MapType_isNullable = $this => { return $this.$isNullable12; }, oncius_MapType_position = $this => { - return $this.$position179; + return $this.$position186; }, oncius_MapType_parentType = $this => { return $this.$parentType16; }, oncius_MapType_toString = $this => { - return $this.$toString17; + return $this.$toString16; }, oncius_MapType_toCypherTypeString = $this => { return $this.$toCypherTypeString17; @@ -36634,7 +36640,7 @@ oncius_MapType_sortOrder = $this => { return oncius_CypherTypeOrder$_MAP.$i; }, oncius_MapType_withIsNullable = ($this, $isNullable) => { - return oncius_MapType_copy($this, $isNullable, $this.$position179); + return oncius_MapType_copy($this, $isNullable, $this.$position186); }, oncius_MapType_withPosition = ($this, $newPosition) => { return oncius_MapType_copy($this, $this.$isNullable12, $newPosition); @@ -36684,11 +36690,11 @@ oncius_MapType_dup = ($this, $children) => { }, oncius_MapType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable12 = $isNullable; - $this.$position179 = $position; + $this.$position186 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType16 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString17 = $rt_s(683); + $this.$toString16 = $rt_s(683); $this.$toCypherTypeString17 = $rt_s(724); }, oncius_MapType__init_ = (var_0, var_1) => { @@ -36699,14 +36705,14 @@ oncius_MapType__init_ = (var_0, var_1) => { function oncius_NodeType() { let a = this; jl_Object.call(a); a.$isNullable18 = 0; - a.$position149 = null; + a.$position158 = null; a.$parentType8 = null; - a.$toString22 = null; + a.$toString21 = null; a.$toCypherTypeString2 = null; a.$isAbstract10 = 0; a.$covariant15 = null; a.$invariant3 = null; - a.$bitmap$02 = 0; + a.$bitmap$03 = 0; } let oncius_NodeType_description = $this => { return oncius_CypherType_description$($this); @@ -36737,15 +36743,15 @@ oncius_NodeType_greatestLowerBound = ($this, $other) => { }, oncius_NodeType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$02 & 1) << 24 >> 24) + if (($this.$bitmap$03 & 1) << 24 >> 24) return $this.$covariant15; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$02 & 1) << 24 >> 24) + if (($this.$bitmap$03 & 1) << 24 >> 24) break a; $this.$covariant15 = oncius_CypherType_covariant$($this); - $this.$bitmap$02 = ($this.$bitmap$02 | 1) << 24 >> 24; + $this.$bitmap$03 = ($this.$bitmap$03 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -36760,15 +36766,15 @@ oncius_NodeType_covariant = $this => { }, oncius_NodeType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$02 & 2) << 24 >> 24) + if (($this.$bitmap$03 & 2) << 24 >> 24) return $this.$invariant3; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$02 & 2) << 24 >> 24) + if (($this.$bitmap$03 & 2) << 24 >> 24) break a; $this.$invariant3 = oncius_CypherType_invariant$($this); - $this.$bitmap$02 = ($this.$bitmap$02 | 2) << 24 >> 24; + $this.$bitmap$03 = ($this.$bitmap$03 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -36788,13 +36794,13 @@ oncius_NodeType_isNullable = $this => { return $this.$isNullable18; }, oncius_NodeType_position = $this => { - return $this.$position149; + return $this.$position158; }, oncius_NodeType_parentType = $this => { return $this.$parentType8; }, oncius_NodeType_toString = $this => { - return $this.$toString22; + return $this.$toString21; }, oncius_NodeType_toCypherTypeString = $this => { return $this.$toCypherTypeString2; @@ -36804,7 +36810,7 @@ oncius_NodeType_sortOrder = $this => { return oncius_CypherTypeOrder$_NODE.$i; }, oncius_NodeType_withIsNullable = ($this, $isNullable) => { - return oncius_NodeType_copy($this, $isNullable, $this.$position149); + return oncius_NodeType_copy($this, $isNullable, $this.$position158); }, oncius_NodeType_withPosition = ($this, $newPosition) => { return oncius_NodeType_copy($this, $this.$isNullable18, $newPosition); @@ -36854,11 +36860,11 @@ oncius_NodeType_dup = ($this, $children) => { }, oncius_NodeType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable18 = $isNullable; - $this.$position149 = $position; + $this.$position158 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType8 = oncius_package$_CTMap(oncius_package$_MODULE$); - $this.$toString22 = $rt_s(726); + $this.$toString21 = $rt_s(726); $this.$toCypherTypeString2 = $rt_s(727); }, oncius_NodeType__init_ = (var_0, var_1) => { @@ -36869,14 +36875,14 @@ oncius_NodeType__init_ = (var_0, var_1) => { function oncius_RelationshipType() { let a = this; jl_Object.call(a); a.$isNullable17 = 0; - a.$position163 = null; + a.$position171 = null; a.$parentType11 = null; - a.$toString11 = null; + a.$toString10 = null; a.$toCypherTypeString7 = null; a.$isAbstract = 0; a.$covariant16 = null; a.$invariant6 = null; - a.$bitmap$013 = 0; + a.$bitmap$014 = 0; } let oncius_RelationshipType_description = $this => { return oncius_CypherType_description$($this); @@ -36907,15 +36913,15 @@ oncius_RelationshipType_greatestLowerBound = ($this, $other) => { }, oncius_RelationshipType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$013 & 1) << 24 >> 24) + if (($this.$bitmap$014 & 1) << 24 >> 24) return $this.$covariant16; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$013 & 1) << 24 >> 24) + if (($this.$bitmap$014 & 1) << 24 >> 24) break a; $this.$covariant16 = oncius_CypherType_covariant$($this); - $this.$bitmap$013 = ($this.$bitmap$013 | 1) << 24 >> 24; + $this.$bitmap$014 = ($this.$bitmap$014 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -36930,15 +36936,15 @@ oncius_RelationshipType_covariant = $this => { }, oncius_RelationshipType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$013 & 2) << 24 >> 24) + if (($this.$bitmap$014 & 2) << 24 >> 24) return $this.$invariant6; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$013 & 2) << 24 >> 24) + if (($this.$bitmap$014 & 2) << 24 >> 24) break a; $this.$invariant6 = oncius_CypherType_invariant$($this); - $this.$bitmap$013 = ($this.$bitmap$013 | 2) << 24 >> 24; + $this.$bitmap$014 = ($this.$bitmap$014 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -36958,13 +36964,13 @@ oncius_RelationshipType_isNullable = $this => { return $this.$isNullable17; }, oncius_RelationshipType_position = $this => { - return $this.$position163; + return $this.$position171; }, oncius_RelationshipType_parentType = $this => { return $this.$parentType11; }, oncius_RelationshipType_toString = $this => { - return $this.$toString11; + return $this.$toString10; }, oncius_RelationshipType_toCypherTypeString = $this => { return $this.$toCypherTypeString7; @@ -36974,7 +36980,7 @@ oncius_RelationshipType_sortOrder = $this => { return oncius_CypherTypeOrder$_RELATIONSHIP.$i; }, oncius_RelationshipType_withIsNullable = ($this, $isNullable) => { - return oncius_RelationshipType_copy($this, $isNullable, $this.$position163); + return oncius_RelationshipType_copy($this, $isNullable, $this.$position171); }, oncius_RelationshipType_withPosition = ($this, $newPosition) => { return oncius_RelationshipType_copy($this, $this.$isNullable17, $newPosition); @@ -37024,11 +37030,11 @@ oncius_RelationshipType_dup = ($this, $children) => { }, oncius_RelationshipType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable17 = $isNullable; - $this.$position163 = $position; + $this.$position171 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType11 = oncius_package$_CTMap(oncius_package$_MODULE$); - $this.$toString11 = $rt_s(729); + $this.$toString10 = $rt_s(729); $this.$toCypherTypeString7 = $rt_s(730); }, oncius_RelationshipType__init_ = (var_0, var_1) => { @@ -37039,14 +37045,14 @@ oncius_RelationshipType__init_ = (var_0, var_1) => { function oncius_PointType() { let a = this; jl_Object.call(a); a.$isNullable15 = 0; - a.$position140 = null; + a.$position149 = null; a.$parentType18 = null; - a.$toString27 = null; + a.$toString26 = null; a.$toCypherTypeString8 = null; a.$isAbstract13 = 0; a.$covariant21 = null; a.$invariant10 = null; - a.$bitmap$010 = 0; + a.$bitmap$011 = 0; } let oncius_PointType_description = $this => { return oncius_CypherType_description$($this); @@ -37077,15 +37083,15 @@ oncius_PointType_greatestLowerBound = ($this, $other) => { }, oncius_PointType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$010 & 1) << 24 >> 24) + if (($this.$bitmap$011 & 1) << 24 >> 24) return $this.$covariant21; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$010 & 1) << 24 >> 24) + if (($this.$bitmap$011 & 1) << 24 >> 24) break a; $this.$covariant21 = oncius_CypherType_covariant$($this); - $this.$bitmap$010 = ($this.$bitmap$010 | 1) << 24 >> 24; + $this.$bitmap$011 = ($this.$bitmap$011 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -37100,15 +37106,15 @@ oncius_PointType_covariant = $this => { }, oncius_PointType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$010 & 2) << 24 >> 24) + if (($this.$bitmap$011 & 2) << 24 >> 24) return $this.$invariant10; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$010 & 2) << 24 >> 24) + if (($this.$bitmap$011 & 2) << 24 >> 24) break a; $this.$invariant10 = oncius_CypherType_invariant$($this); - $this.$bitmap$010 = ($this.$bitmap$010 | 2) << 24 >> 24; + $this.$bitmap$011 = ($this.$bitmap$011 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -37128,13 +37134,13 @@ oncius_PointType_isNullable = $this => { return $this.$isNullable15; }, oncius_PointType_position = $this => { - return $this.$position140; + return $this.$position149; }, oncius_PointType_parentType = $this => { return $this.$parentType18; }, oncius_PointType_toString = $this => { - return $this.$toString27; + return $this.$toString26; }, oncius_PointType_toCypherTypeString = $this => { return $this.$toCypherTypeString8; @@ -37144,7 +37150,7 @@ oncius_PointType_sortOrder = $this => { return (oncius_CypherTypeOrder$_POINT(oncius_CypherTypeOrder$_MODULE$)).$i; }, oncius_PointType_withIsNullable = ($this, $isNullable) => { - return oncius_PointType_copy($this, $isNullable, $this.$position140); + return oncius_PointType_copy($this, $isNullable, $this.$position149); }, oncius_PointType_copy = ($this, $isNullable, $position) => { return oncius_PointType__init_($isNullable, $position); @@ -37197,11 +37203,11 @@ oncius_PointType_withIsNullable0 = ($this, $isNullable) => { }, oncius_PointType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable15 = $isNullable; - $this.$position140 = $position; + $this.$position149 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType18 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString27 = !$isNullable ? $rt_s(732) : $rt_s(733); + $this.$toString26 = !$isNullable ? $rt_s(732) : $rt_s(733); $this.$toCypherTypeString8 = $rt_s(734); }, oncius_PointType__init_ = (var_0, var_1) => { @@ -37212,9 +37218,9 @@ oncius_PointType__init_ = (var_0, var_1) => { function oncius_ZonedDateTimeType() { let a = this; jl_Object.call(a); a.$isNullable16 = 0; - a.$position166 = null; + a.$position174 = null; a.$parentType15 = null; - a.$toString12 = null; + a.$toString11 = null; a.$toCypherTypeString3 = null; a.$isAbstract8 = 0; a.$covariant11 = null; @@ -37301,13 +37307,13 @@ oncius_ZonedDateTimeType_isNullable = $this => { return $this.$isNullable16; }, oncius_ZonedDateTimeType_position = $this => { - return $this.$position166; + return $this.$position174; }, oncius_ZonedDateTimeType_parentType = $this => { return $this.$parentType15; }, oncius_ZonedDateTimeType_toString = $this => { - return $this.$toString12; + return $this.$toString11; }, oncius_ZonedDateTimeType_toCypherTypeString = $this => { return $this.$toCypherTypeString3; @@ -37317,7 +37323,7 @@ oncius_ZonedDateTimeType_sortOrder = $this => { return oncius_CypherTypeOrder$_ZONED_DATETIME.$i; }, oncius_ZonedDateTimeType_withIsNullable = ($this, $isNullable) => { - return oncius_ZonedDateTimeType_copy($this, $isNullable, $this.$position166); + return oncius_ZonedDateTimeType_copy($this, $isNullable, $this.$position174); }, oncius_ZonedDateTimeType_withPosition = ($this, $newPosition) => { return oncius_ZonedDateTimeType_copy($this, $this.$isNullable16, $newPosition); @@ -37367,11 +37373,11 @@ oncius_ZonedDateTimeType_dup = ($this, $children) => { }, oncius_ZonedDateTimeType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable16 = $isNullable; - $this.$position166 = $position; + $this.$position174 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType15 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString12 = $rt_s(736); + $this.$toString11 = $rt_s(736); $this.$toCypherTypeString3 = $rt_s(737); }, oncius_ZonedDateTimeType__init_ = (var_0, var_1) => { @@ -37382,9 +37388,9 @@ oncius_ZonedDateTimeType__init_ = (var_0, var_1) => { function oncius_LocalDateTimeType() { let a = this; jl_Object.call(a); a.$isNullable4 = 0; - a.$position177 = null; + a.$position184 = null; a.$parentType21 = null; - a.$toString25 = null; + a.$toString24 = null; a.$toCypherTypeString20 = null; a.$isAbstract4 = 0; a.$covariant14 = null; @@ -37471,13 +37477,13 @@ oncius_LocalDateTimeType_isNullable = $this => { return $this.$isNullable4; }, oncius_LocalDateTimeType_position = $this => { - return $this.$position177; + return $this.$position184; }, oncius_LocalDateTimeType_parentType = $this => { return $this.$parentType21; }, oncius_LocalDateTimeType_toString = $this => { - return $this.$toString25; + return $this.$toString24; }, oncius_LocalDateTimeType_toCypherTypeString = $this => { return $this.$toCypherTypeString20; @@ -37487,7 +37493,7 @@ oncius_LocalDateTimeType_sortOrder = $this => { return oncius_CypherTypeOrder$_LOCAL_DATETIME.$i; }, oncius_LocalDateTimeType_withIsNullable = ($this, $isNullable) => { - return oncius_LocalDateTimeType_copy($this, $isNullable, $this.$position177); + return oncius_LocalDateTimeType_copy($this, $isNullable, $this.$position184); }, oncius_LocalDateTimeType_withPosition = ($this, $newPosition) => { return oncius_LocalDateTimeType_copy($this, $this.$isNullable4, $newPosition); @@ -37537,11 +37543,11 @@ oncius_LocalDateTimeType_dup = ($this, $children) => { }, oncius_LocalDateTimeType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable4 = $isNullable; - $this.$position177 = $position; + $this.$position184 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType21 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString25 = $rt_s(739); + $this.$toString24 = $rt_s(739); $this.$toCypherTypeString20 = $rt_s(740); }, oncius_LocalDateTimeType__init_ = (var_0, var_1) => { @@ -37552,14 +37558,14 @@ oncius_LocalDateTimeType__init_ = (var_0, var_1) => { function oncius_DateType() { let a = this; jl_Object.call(a); a.$isNullable20 = 0; - a.$position122 = null; + a.$position131 = null; a.$parentType7 = null; - a.$toString23 = null; + a.$toString22 = null; a.$toCypherTypeString9 = null; a.$isAbstract7 = 0; a.$covariant17 = null; a.$invariant1 = null; - a.$bitmap$07 = 0; + a.$bitmap$08 = 0; } let oncius_DateType_description = $this => { return oncius_CypherType_description$($this); @@ -37590,15 +37596,15 @@ oncius_DateType_greatestLowerBound = ($this, $other) => { }, oncius_DateType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$07 & 1) << 24 >> 24) + if (($this.$bitmap$08 & 1) << 24 >> 24) return $this.$covariant17; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$07 & 1) << 24 >> 24) + if (($this.$bitmap$08 & 1) << 24 >> 24) break a; $this.$covariant17 = oncius_CypherType_covariant$($this); - $this.$bitmap$07 = ($this.$bitmap$07 | 1) << 24 >> 24; + $this.$bitmap$08 = ($this.$bitmap$08 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -37613,15 +37619,15 @@ oncius_DateType_covariant = $this => { }, oncius_DateType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$07 & 2) << 24 >> 24) + if (($this.$bitmap$08 & 2) << 24 >> 24) return $this.$invariant1; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$07 & 2) << 24 >> 24) + if (($this.$bitmap$08 & 2) << 24 >> 24) break a; $this.$invariant1 = oncius_CypherType_invariant$($this); - $this.$bitmap$07 = ($this.$bitmap$07 | 2) << 24 >> 24; + $this.$bitmap$08 = ($this.$bitmap$08 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -37641,13 +37647,13 @@ oncius_DateType_isNullable = $this => { return $this.$isNullable20; }, oncius_DateType_position = $this => { - return $this.$position122; + return $this.$position131; }, oncius_DateType_parentType = $this => { return $this.$parentType7; }, oncius_DateType_toString = $this => { - return $this.$toString23; + return $this.$toString22; }, oncius_DateType_toCypherTypeString = $this => { return $this.$toCypherTypeString9; @@ -37657,7 +37663,7 @@ oncius_DateType_sortOrder = $this => { return oncius_CypherTypeOrder$_DATE.$i; }, oncius_DateType_withIsNullable = ($this, $isNullable) => { - return oncius_DateType_copy($this, $isNullable, $this.$position122); + return oncius_DateType_copy($this, $isNullable, $this.$position131); }, oncius_DateType_withPosition = ($this, $newPosition) => { return oncius_DateType_copy($this, $this.$isNullable20, $newPosition); @@ -37707,11 +37713,11 @@ oncius_DateType_dup = ($this, $children) => { }, oncius_DateType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable20 = $isNullable; - $this.$position122 = $position; + $this.$position131 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType7 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString23 = $rt_s(742); + $this.$toString22 = $rt_s(742); $this.$toCypherTypeString9 = $rt_s(743); }, oncius_DateType__init_ = (var_0, var_1) => { @@ -37722,14 +37728,14 @@ oncius_DateType__init_ = (var_0, var_1) => { function oncius_ZonedTimeType() { let a = this; jl_Object.call(a); a.$isNullable19 = 0; - a.$position125 = null; + a.$position133 = null; a.$parentType9 = null; - a.$toString30 = null; + a.$toString29 = null; a.$toCypherTypeString22 = null; a.$isAbstract12 = 0; a.$covariant7 = null; a.$invariant17 = null; - a.$bitmap$09 = 0; + a.$bitmap$010 = 0; } let oncius_ZonedTimeType_description = $this => { return oncius_CypherType_description$($this); @@ -37760,15 +37766,15 @@ oncius_ZonedTimeType_greatestLowerBound = ($this, $other) => { }, oncius_ZonedTimeType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$09 & 1) << 24 >> 24) + if (($this.$bitmap$010 & 1) << 24 >> 24) return $this.$covariant7; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$09 & 1) << 24 >> 24) + if (($this.$bitmap$010 & 1) << 24 >> 24) break a; $this.$covariant7 = oncius_CypherType_covariant$($this); - $this.$bitmap$09 = ($this.$bitmap$09 | 1) << 24 >> 24; + $this.$bitmap$010 = ($this.$bitmap$010 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -37783,15 +37789,15 @@ oncius_ZonedTimeType_covariant = $this => { }, oncius_ZonedTimeType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$09 & 2) << 24 >> 24) + if (($this.$bitmap$010 & 2) << 24 >> 24) return $this.$invariant17; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$09 & 2) << 24 >> 24) + if (($this.$bitmap$010 & 2) << 24 >> 24) break a; $this.$invariant17 = oncius_CypherType_invariant$($this); - $this.$bitmap$09 = ($this.$bitmap$09 | 2) << 24 >> 24; + $this.$bitmap$010 = ($this.$bitmap$010 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -37811,13 +37817,13 @@ oncius_ZonedTimeType_isNullable = $this => { return $this.$isNullable19; }, oncius_ZonedTimeType_position = $this => { - return $this.$position125; + return $this.$position133; }, oncius_ZonedTimeType_parentType = $this => { return $this.$parentType9; }, oncius_ZonedTimeType_toString = $this => { - return $this.$toString30; + return $this.$toString29; }, oncius_ZonedTimeType_toCypherTypeString = $this => { return $this.$toCypherTypeString22; @@ -37827,7 +37833,7 @@ oncius_ZonedTimeType_sortOrder = $this => { return oncius_CypherTypeOrder$_ZONED_TIME.$i; }, oncius_ZonedTimeType_withIsNullable = ($this, $isNullable) => { - return oncius_ZonedTimeType_copy($this, $isNullable, $this.$position125); + return oncius_ZonedTimeType_copy($this, $isNullable, $this.$position133); }, oncius_ZonedTimeType_withPosition = ($this, $newPosition) => { return oncius_ZonedTimeType_copy($this, $this.$isNullable19, $newPosition); @@ -37877,11 +37883,11 @@ oncius_ZonedTimeType_dup = ($this, $children) => { }, oncius_ZonedTimeType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable19 = $isNullable; - $this.$position125 = $position; + $this.$position133 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType9 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString30 = $rt_s(745); + $this.$toString29 = $rt_s(745); $this.$toCypherTypeString22 = $rt_s(746); }, oncius_ZonedTimeType__init_ = (var_0, var_1) => { @@ -37892,14 +37898,14 @@ oncius_ZonedTimeType__init_ = (var_0, var_1) => { function oncius_LocalTimeType() { let a = this; jl_Object.call(a); a.$isNullable10 = 0; - a.$position159 = null; + a.$position167 = null; a.$parentType23 = null; - a.$toString18 = null; + a.$toString17 = null; a.$toCypherTypeString5 = null; a.$isAbstract0 = 0; a.$covariant5 = null; a.$invariant20 = null; - a.$bitmap$04 = 0; + a.$bitmap$05 = 0; } let oncius_LocalTimeType_description = $this => { return oncius_CypherType_description$($this); @@ -37930,15 +37936,15 @@ oncius_LocalTimeType_greatestLowerBound = ($this, $other) => { }, oncius_LocalTimeType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$04 & 1) << 24 >> 24) + if (($this.$bitmap$05 & 1) << 24 >> 24) return $this.$covariant5; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$04 & 1) << 24 >> 24) + if (($this.$bitmap$05 & 1) << 24 >> 24) break a; $this.$covariant5 = oncius_CypherType_covariant$($this); - $this.$bitmap$04 = ($this.$bitmap$04 | 1) << 24 >> 24; + $this.$bitmap$05 = ($this.$bitmap$05 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -37953,15 +37959,15 @@ oncius_LocalTimeType_covariant = $this => { }, oncius_LocalTimeType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$04 & 2) << 24 >> 24) + if (($this.$bitmap$05 & 2) << 24 >> 24) return $this.$invariant20; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$04 & 2) << 24 >> 24) + if (($this.$bitmap$05 & 2) << 24 >> 24) break a; $this.$invariant20 = oncius_CypherType_invariant$($this); - $this.$bitmap$04 = ($this.$bitmap$04 | 2) << 24 >> 24; + $this.$bitmap$05 = ($this.$bitmap$05 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -37981,13 +37987,13 @@ oncius_LocalTimeType_isNullable = $this => { return $this.$isNullable10; }, oncius_LocalTimeType_position = $this => { - return $this.$position159; + return $this.$position167; }, oncius_LocalTimeType_parentType = $this => { return $this.$parentType23; }, oncius_LocalTimeType_toString = $this => { - return $this.$toString18; + return $this.$toString17; }, oncius_LocalTimeType_toCypherTypeString = $this => { return $this.$toCypherTypeString5; @@ -37997,7 +38003,7 @@ oncius_LocalTimeType_sortOrder = $this => { return oncius_CypherTypeOrder$_LOCAL_TIME.$i; }, oncius_LocalTimeType_withIsNullable = ($this, $isNullable) => { - return oncius_LocalTimeType_copy($this, $isNullable, $this.$position159); + return oncius_LocalTimeType_copy($this, $isNullable, $this.$position167); }, oncius_LocalTimeType_withPosition = ($this, $newPosition) => { return oncius_LocalTimeType_copy($this, $this.$isNullable10, $newPosition); @@ -38047,11 +38053,11 @@ oncius_LocalTimeType_dup = ($this, $children) => { }, oncius_LocalTimeType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable10 = $isNullable; - $this.$position159 = $position; + $this.$position167 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType23 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString18 = $rt_s(748); + $this.$toString17 = $rt_s(748); $this.$toCypherTypeString5 = $rt_s(749); }, oncius_LocalTimeType__init_ = (var_0, var_1) => { @@ -38062,14 +38068,14 @@ oncius_LocalTimeType__init_ = (var_0, var_1) => { function oncius_DurationType() { let a = this; jl_Object.call(a); a.$isNullable14 = 0; - a.$position147 = null; + a.$position156 = null; a.$parentType1 = null; - a.$toString24 = null; + a.$toString23 = null; a.$toCypherTypeString15 = null; a.$isAbstract19 = 0; a.$covariant9 = null; a.$invariant19 = null; - a.$bitmap$05 = 0; + a.$bitmap$06 = 0; } let oncius_DurationType_description = $this => { return oncius_CypherType_description$($this); @@ -38100,15 +38106,15 @@ oncius_DurationType_greatestLowerBound = ($this, $other) => { }, oncius_DurationType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$05 & 1) << 24 >> 24) + if (($this.$bitmap$06 & 1) << 24 >> 24) return $this.$covariant9; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$05 & 1) << 24 >> 24) + if (($this.$bitmap$06 & 1) << 24 >> 24) break a; $this.$covariant9 = oncius_CypherType_covariant$($this); - $this.$bitmap$05 = ($this.$bitmap$05 | 1) << 24 >> 24; + $this.$bitmap$06 = ($this.$bitmap$06 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38123,15 +38129,15 @@ oncius_DurationType_covariant = $this => { }, oncius_DurationType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$05 & 2) << 24 >> 24) + if (($this.$bitmap$06 & 2) << 24 >> 24) return $this.$invariant19; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$05 & 2) << 24 >> 24) + if (($this.$bitmap$06 & 2) << 24 >> 24) break a; $this.$invariant19 = oncius_CypherType_invariant$($this); - $this.$bitmap$05 = ($this.$bitmap$05 | 2) << 24 >> 24; + $this.$bitmap$06 = ($this.$bitmap$06 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38151,13 +38157,13 @@ oncius_DurationType_isNullable = $this => { return $this.$isNullable14; }, oncius_DurationType_position = $this => { - return $this.$position147; + return $this.$position156; }, oncius_DurationType_parentType = $this => { return $this.$parentType1; }, oncius_DurationType_toString = $this => { - return $this.$toString24; + return $this.$toString23; }, oncius_DurationType_toCypherTypeString = $this => { return $this.$toCypherTypeString15; @@ -38167,7 +38173,7 @@ oncius_DurationType_sortOrder = $this => { return oncius_CypherTypeOrder$_DURATION.$i; }, oncius_DurationType_withIsNullable = ($this, $isNullable) => { - return oncius_DurationType_copy($this, $isNullable, $this.$position147); + return oncius_DurationType_copy($this, $isNullable, $this.$position156); }, oncius_DurationType_withPosition = ($this, $newPosition) => { return oncius_DurationType_copy($this, $this.$isNullable14, $newPosition); @@ -38217,11 +38223,11 @@ oncius_DurationType_dup = ($this, $children) => { }, oncius_DurationType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable14 = $isNullable; - $this.$position147 = $position; + $this.$position156 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType1 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString24 = $rt_s(751); + $this.$toString23 = $rt_s(751); $this.$toCypherTypeString15 = $rt_s(752); }, oncius_DurationType__init_ = (var_0, var_1) => { @@ -38232,14 +38238,14 @@ oncius_DurationType__init_ = (var_0, var_1) => { function oncius_GeometryType() { let a = this; jl_Object.call(a); a.$isNullable3 = 0; - a.$position84 = null; + a.$position95 = null; a.$parentType12 = null; - a.$toString26 = null; + a.$toString25 = null; a.$toCypherTypeString18 = null; a.$isAbstract2 = 0; a.$covariant20 = null; a.$invariant9 = null; - a.$bitmap$03 = 0; + a.$bitmap$04 = 0; } let oncius_GeometryType_description = $this => { return oncius_CypherType_description$($this); @@ -38267,15 +38273,15 @@ oncius_GeometryType_greatestLowerBound = ($this, $other) => { }, oncius_GeometryType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$03 & 1) << 24 >> 24) + if (($this.$bitmap$04 & 1) << 24 >> 24) return $this.$covariant20; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$03 & 1) << 24 >> 24) + if (($this.$bitmap$04 & 1) << 24 >> 24) break a; $this.$covariant20 = oncius_CypherType_covariant$($this); - $this.$bitmap$03 = ($this.$bitmap$03 | 1) << 24 >> 24; + $this.$bitmap$04 = ($this.$bitmap$04 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38290,15 +38296,15 @@ oncius_GeometryType_covariant = $this => { }, oncius_GeometryType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$03 & 2) << 24 >> 24) + if (($this.$bitmap$04 & 2) << 24 >> 24) return $this.$invariant9; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$03 & 2) << 24 >> 24) + if (($this.$bitmap$04 & 2) << 24 >> 24) break a; $this.$invariant9 = oncius_CypherType_invariant$($this); - $this.$bitmap$03 = ($this.$bitmap$03 | 2) << 24 >> 24; + $this.$bitmap$04 = ($this.$bitmap$04 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38318,13 +38324,13 @@ oncius_GeometryType_isNullable = $this => { return $this.$isNullable3; }, oncius_GeometryType_position = $this => { - return $this.$position84; + return $this.$position95; }, oncius_GeometryType_parentType = $this => { return $this.$parentType12; }, oncius_GeometryType_toString = $this => { - return $this.$toString26; + return $this.$toString25; }, oncius_GeometryType_toCypherTypeString = $this => { return $this.$toCypherTypeString18; @@ -38334,7 +38340,7 @@ oncius_GeometryType_sortOrder = $this => { return (oncius_CypherTypeOrder$_POINT(oncius_CypherTypeOrder$_MODULE$)).$i; }, oncius_GeometryType_withIsNullable = ($this, $isNullable) => { - return oncius_GeometryType_copy($this, $isNullable, $this.$position84); + return oncius_GeometryType_copy($this, $isNullable, $this.$position95); }, oncius_GeometryType_withPosition = ($this, $newPosition) => { return oncius_GeometryType_copy($this, $this.$isNullable3, $newPosition); @@ -38395,11 +38401,11 @@ oncius_GeometryType_dup = ($this, $children) => { }, oncius_GeometryType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable3 = $isNullable; - $this.$position84 = $position; + $this.$position95 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType12 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString26 = $rt_s(754); + $this.$toString25 = $rt_s(754); $this.$toCypherTypeString18 = $rt_s(755); }, oncius_GeometryType__init_ = (var_0, var_1) => { @@ -38410,14 +38416,14 @@ oncius_GeometryType__init_ = (var_0, var_1) => { function oncius_PathType() { let a = this; jl_Object.call(a); a.$isNullable6 = 0; - a.$position142 = null; + a.$position151 = null; a.$parentType6 = null; - a.$toString29 = null; + a.$toString28 = null; a.$toCypherTypeString14 = null; a.$isAbstract20 = 0; a.$covariant1 = null; a.$invariant15 = null; - a.$bitmap$011 = 0; + a.$bitmap$012 = 0; } let oncius_PathType_description = $this => { return oncius_CypherType_description$($this); @@ -38448,15 +38454,15 @@ oncius_PathType_greatestLowerBound = ($this, $other) => { }, oncius_PathType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$011 & 1) << 24 >> 24) + if (($this.$bitmap$012 & 1) << 24 >> 24) return $this.$covariant1; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$011 & 1) << 24 >> 24) + if (($this.$bitmap$012 & 1) << 24 >> 24) break a; $this.$covariant1 = oncius_CypherType_covariant$($this); - $this.$bitmap$011 = ($this.$bitmap$011 | 1) << 24 >> 24; + $this.$bitmap$012 = ($this.$bitmap$012 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38471,15 +38477,15 @@ oncius_PathType_covariant = $this => { }, oncius_PathType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$011 & 2) << 24 >> 24) + if (($this.$bitmap$012 & 2) << 24 >> 24) return $this.$invariant15; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$011 & 2) << 24 >> 24) + if (($this.$bitmap$012 & 2) << 24 >> 24) break a; $this.$invariant15 = oncius_CypherType_invariant$($this); - $this.$bitmap$011 = ($this.$bitmap$011 | 2) << 24 >> 24; + $this.$bitmap$012 = ($this.$bitmap$012 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38499,13 +38505,13 @@ oncius_PathType_isNullable = $this => { return $this.$isNullable6; }, oncius_PathType_position = $this => { - return $this.$position142; + return $this.$position151; }, oncius_PathType_parentType = $this => { return $this.$parentType6; }, oncius_PathType_toString = $this => { - return $this.$toString29; + return $this.$toString28; }, oncius_PathType_toCypherTypeString = $this => { return $this.$toCypherTypeString14; @@ -38515,7 +38521,7 @@ oncius_PathType_sortOrder = $this => { return oncius_CypherTypeOrder$_PATH.$i; }, oncius_PathType_withIsNullable = ($this, $isNullable) => { - return oncius_PathType_copy($this, $isNullable, $this.$position142); + return oncius_PathType_copy($this, $isNullable, $this.$position151); }, oncius_PathType_withPosition = ($this, $newPosition) => { return oncius_PathType_copy($this, $this.$isNullable6, $newPosition); @@ -38565,11 +38571,11 @@ oncius_PathType_dup = ($this, $children) => { }, oncius_PathType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable6 = $isNullable; - $this.$position142 = $position; + $this.$position151 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType6 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString29 = $rt_s(757); + $this.$toString28 = $rt_s(757); $this.$toCypherTypeString14 = $rt_s(758); }, oncius_PathType__init_ = (var_0, var_1) => { @@ -38580,14 +38586,14 @@ oncius_PathType__init_ = (var_0, var_1) => { function oncius_GraphRefType() { let a = this; jl_Object.call(a); a.$isNullable11 = 0; - a.$position138 = null; + a.$position147 = null; a.$parentType5 = null; - a.$toString10 = null; + a.$toString9 = null; a.$toCypherTypeString12 = null; a.$isAbstract9 = 0; a.$covariant2 = null; a.$invariant4 = null; - a.$bitmap$012 = 0; + a.$bitmap$013 = 0; } let oncius_GraphRefType_description = $this => { return oncius_CypherType_description$($this); @@ -38618,15 +38624,15 @@ oncius_GraphRefType_greatestLowerBound = ($this, $other) => { }, oncius_GraphRefType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$012 & 1) << 24 >> 24) + if (($this.$bitmap$013 & 1) << 24 >> 24) return $this.$covariant2; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$012 & 1) << 24 >> 24) + if (($this.$bitmap$013 & 1) << 24 >> 24) break a; $this.$covariant2 = oncius_CypherType_covariant$($this); - $this.$bitmap$012 = ($this.$bitmap$012 | 1) << 24 >> 24; + $this.$bitmap$013 = ($this.$bitmap$013 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38641,15 +38647,15 @@ oncius_GraphRefType_covariant = $this => { }, oncius_GraphRefType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$012 & 2) << 24 >> 24) + if (($this.$bitmap$013 & 2) << 24 >> 24) return $this.$invariant4; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$012 & 2) << 24 >> 24) + if (($this.$bitmap$013 & 2) << 24 >> 24) break a; $this.$invariant4 = oncius_CypherType_invariant$($this); - $this.$bitmap$012 = ($this.$bitmap$012 | 2) << 24 >> 24; + $this.$bitmap$013 = ($this.$bitmap$013 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38669,13 +38675,13 @@ oncius_GraphRefType_isNullable = $this => { return $this.$isNullable11; }, oncius_GraphRefType_position = $this => { - return $this.$position138; + return $this.$position147; }, oncius_GraphRefType_parentType = $this => { return $this.$parentType5; }, oncius_GraphRefType_toString = $this => { - return $this.$toString10; + return $this.$toString9; }, oncius_GraphRefType_toCypherTypeString = $this => { return $this.$toCypherTypeString12; @@ -38683,11 +38689,11 @@ oncius_GraphRefType_toCypherTypeString = $this => { oncius_GraphRefType_sortOrder = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(759)); + jl_Throwable__init_(var$1, $rt_s(759)); $rt_throw(var$1); }, oncius_GraphRefType_withIsNullable = ($this, $isNullable) => { - return oncius_GraphRefType_copy($this, $isNullable, $this.$position138); + return oncius_GraphRefType_copy($this, $isNullable, $this.$position147); }, oncius_GraphRefType_withPosition = ($this, $newPosition) => { return oncius_GraphRefType_copy($this, $this.$isNullable11, $newPosition); @@ -38737,11 +38743,11 @@ oncius_GraphRefType_dup = ($this, $children) => { }, oncius_GraphRefType__init_0 = ($this, $isNullable, $position) => { $this.$isNullable11 = $isNullable; - $this.$position138 = $position; + $this.$position147 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType5 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString10 = $rt_s(196); + $this.$toString9 = $rt_s(182); $this.$toCypherTypeString12 = $rt_s(761); }, oncius_GraphRefType__init_ = (var_0, var_1) => { @@ -38754,30 +38760,30 @@ function oncius_ListType() { a.$coercibleTo1 = null; a.$innerType = null; a.$isNullable1 = 0; - a.$position24 = null; + a.$position25 = null; a.$parentType0 = null; a.$legacyIteratedType = null; - a.$toString13 = null; + a.$toString12 = null; a.$toCypherTypeString10 = null; a.$isAbstract15 = 0; a.$covariant8 = null; a.$invariant21 = null; - a.$bitmap$00 = 0; + a.$bitmap$01 = 0; } let oncius_ListType_description = $this => { return oncius_CypherType_description$($this); }, oncius_ListType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$00 & 2) << 24 >> 24) + if (($this.$bitmap$01 & 2) << 24 >> 24) return $this.$covariant8; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$00 & 2) << 24 >> 24) + if (($this.$bitmap$01 & 2) << 24 >> 24) break a; $this.$covariant8 = oncius_CypherType_covariant$($this); - $this.$bitmap$00 = ($this.$bitmap$00 | 2) << 24 >> 24; + $this.$bitmap$01 = ($this.$bitmap$01 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38792,15 +38798,15 @@ oncius_ListType_covariant = $this => { }, oncius_ListType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$00 & 4) << 24 >> 24) + if (($this.$bitmap$01 & 4) << 24 >> 24) return $this.$invariant21; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$00 & 4) << 24 >> 24) + if (($this.$bitmap$01 & 4) << 24 >> 24) break a; $this.$invariant21 = oncius_CypherType_invariant$($this); - $this.$bitmap$00 = ($this.$bitmap$00 | 4) << 24 >> 24; + $this.$bitmap$01 = ($this.$bitmap$01 | 4) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38820,19 +38826,19 @@ oncius_ListType_isNullable = $this => { return $this.$isNullable1; }, oncius_ListType_position = $this => { - return $this.$position24; + return $this.$position25; }, oncius_ListType_parentType = $this => { return $this.$parentType0; }, oncius_ListType_coercibleTo = $this => { let var$1, var$2, var$3, var$4, $$je; - if (($this.$bitmap$00 & 1) << 24 >> 24) + if (($this.$bitmap$01 & 1) << 24 >> 24) return $this.$coercibleTo1; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$00 & 1) << 24 >> 24) + if (($this.$bitmap$01 & 1) << 24 >> 24) break a; s_Predef$_$callClinit(); var$1 = s_Predef$_Set(s_Predef$_MODULE$); @@ -38842,7 +38848,7 @@ oncius_ListType_coercibleTo = $this => { oncius_package$_$callClinit(); var$4[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); $this.$coercibleTo1 = sc_AbstractIterable_$plus$plus(sci_Set$_apply(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)), oncius_AnyType_coercibleTo(oncius_ListType_parentType($this))); - $this.$bitmap$00 = ($this.$bitmap$00 | 1) << 24 >> 24; + $this.$bitmap$01 = ($this.$bitmap$01 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -38856,7 +38862,7 @@ oncius_ListType_coercibleTo = $this => { return $this.$coercibleTo1; }, oncius_ListType_toString = $this => { - return $this.$toString13; + return $this.$toString12; }, oncius_ListType_toCypherTypeString = $this => { return $this.$toCypherTypeString10; @@ -38880,10 +38886,10 @@ oncius_ListType_simplify = $this => { let var$1; var$1 = $this.$innerType; if (var$1 instanceof oncius_ClosedDynamicUnionType) - return oncius_ListType_copy($this, oncius_ClosedDynamicUnionType_simplify(var$1), $this.$isNullable1, $this.$position24); + return oncius_ListType_copy($this, oncius_ClosedDynamicUnionType_simplify(var$1), $this.$isNullable1, $this.$position25); if (!(var$1 instanceof oncius_ListType)) return $this; - return oncius_ListType_copy($this, oncius_ListType_simplify(var$1), $this.$isNullable1, $this.$position24); + return oncius_ListType_copy($this, oncius_ListType_simplify(var$1), $this.$isNullable1, $this.$position25); }, oncius_ListType_isSubtypeOf = ($this, $otherCypherType) => { let $innerTypes, var$3, var$4; @@ -38894,7 +38900,7 @@ oncius_ListType_isSubtypeOf = ($this, $otherCypherType) => { return 0; $innerTypes = $otherCypherType.$innerTypes0; $otherCypherType = new oncius_ListType$isSubtypeOf$lambda$_33_1; - $otherCypherType.$_0783 = $this; + $otherCypherType.$_0760 = $this; return $innerTypes.$exists($otherCypherType); } $innerTypes = $otherCypherType; @@ -38907,7 +38913,7 @@ oncius_ListType_isSubtypeOf = ($this, $otherCypherType) => { $innerTypes = $innerTypes; var$4 = $otherCypherType.$innerTypes0; $otherCypherType = new oncius_ListType$isSubtypeOf$lambda$_33_0; - $otherCypherType.$_0303 = $innerTypes; + $otherCypherType.$_0286 = $innerTypes; return var$4.$forall($otherCypherType); } if (var$3 instanceof oncius_ListType) { @@ -38925,7 +38931,7 @@ oncius_ListType_isSubtypeOf = ($this, $otherCypherType) => { return $this.$innerType.$isSubtypeOf($innerTypes.$innerType) && oncius_CypherType_isNullableSubtypeOf$($this, $this, $otherCypherType) ? 1 : 0; }, oncius_ListType_withIsNullable = ($this, $isNullable) => { - return oncius_ListType_copy($this, $this.$innerType, $isNullable, $this.$position24); + return oncius_ListType_copy($this, $this.$innerType, $isNullable, $this.$position25); }, oncius_ListType_withPosition = ($this, $newPosition) => { return oncius_ListType_copy($this, $this.$innerType, $this.$isNullable1, $newPosition); @@ -38940,7 +38946,7 @@ oncius_ListType_leastUpperBound = ($this, $other) => { if (!($other instanceof oncius_ListType)) return oncius_CypherType_leastUpperBound$($this, $other); $other = $other; - return oncius_ListType_copy($this, $this.$innerType.$leastUpperBound($other.$innerType), $this.$isNullable1, $this.$position24); + return oncius_ListType_copy($this, $this.$innerType.$leastUpperBound($other.$innerType), $this.$isNullable1, $this.$position25); }, oncius_ListType_greatestLowerBound = ($this, $other) => { let var$2; @@ -38949,7 +38955,7 @@ oncius_ListType_greatestLowerBound = ($this, $other) => { $other = $other; $other = $this.$innerType.$greatestLowerBound($other.$innerType); var$2 = new oncius_ListType$greatestLowerBound$lambda$_38_0; - var$2.$_0345 = $this; + var$2.$_0334 = $this; return s_Option_map($other, var$2); }, oncius_ListType_copy = ($this, $innerType, $isNullable, $position) => { @@ -39012,7 +39018,7 @@ oncius_ListType_dup = ($this, $children) => { oncius_ListType__init_0 = ($this, $innerType, $isNullable, $position) => { $this.$innerType = $innerType; $this.$isNullable1 = $isNullable; - $this.$position24 = $position; + $this.$position25 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType0 = oncius_package$_CTAny(oncius_package$_MODULE$); @@ -39020,7 +39026,7 @@ oncius_ListType__init_0 = ($this, $innerType, $isNullable, $position) => { $position = new jl_StringBuilder; jl_AbstractStringBuilder__init_($position); jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($position, $rt_s(763)), $innerType), 62); - $this.$toString13 = jl_AbstractStringBuilder_toString($position); + $this.$toString12 = jl_AbstractStringBuilder_toString($position); $innerType = $innerType.$description(); $position = new jl_StringBuilder; jl_AbstractStringBuilder__init_($position); @@ -39046,13 +39052,10 @@ onciu_InputPosition$__clinit_ = () => { onciu_InputPosition$_$callClinit(); onciu_InputPosition$_MODULE$ = var$1; s_package$_$callClinit(); - var$2 = new onciu_InputPosition$$_clinit_$lambda$_0_0; + var$2 = s_package$_Ordering(s_package$_MODULE$); + var$3 = new onciu_InputPosition$$_clinit_$lambda$_0_0; sm_Ordering$Int$_$callClinit(); - var$1 = sm_Ordering$Int$_MODULE$; - var$3 = new sm_Ordering$$anon$5; - var$3.$ord$2 = var$1; - var$3.$f$30 = var$2; - onciu_InputPosition$_byOffset0 = var$3; + onciu_InputPosition$_byOffset0 = sm_Ordering$_by(var$2, var$3, sm_Ordering$Int$_MODULE$); onciu_InputPosition$_NONE0 = onciu_InputPosition$Simple__init_(0, 0, 0); }, onciu_InputPosition$_byOffset = $this => { @@ -39590,7 +39593,7 @@ sci_BitmapIndexedSetNode_diff = ($this, $that, $shift) => { if (!($that instanceof sci_HashCollisionSetNode)) $rt_throw(s_MatchError__init_($that)); $that = new jl_RuntimeException; - jl_Throwable__init_0($that, $rt_s(765)); + jl_Throwable__init_($that, $rt_s(765)); $rt_throw($that); } var$3 = $that; @@ -39761,7 +39764,7 @@ sci_BitmapIndexedSetNode_equals = ($this, $that) => { sci_BitmapIndexedSetNode_hashCode = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(766)); + jl_Throwable__init_(var$1, $rt_s(766)); $rt_throw(var$1); }, sci_BitmapIndexedSetNode_copy = $this => { @@ -39771,7 +39774,7 @@ sci_BitmapIndexedSetNode_copy = $this => { $contentLength = var$2.length; $i = jl_Integer_bitCount($this.$dataMap0); while ($i < $contentLength) { - var$2[$i] = var$2[$i].$copy40(); + var$2[$i] = var$2[$i].$copy46(); $i = $i + 1 | 0; } return sci_BitmapIndexedSetNode__init_($this.$dataMap0, $this.$nodeMap0, $contentClone, $this.$originalHashes0.$clone0(), $this.$size2, $this.$cachedJavaKeySetHashCode0); @@ -40082,7 +40085,7 @@ sci_HashCollisionSetNode_removed = ($this, $element, $originalHash, $hash, $shif return $this; var$5 = $this.$content4; $updatedContent = new sci_HashCollisionSetNode$removed$lambda$_6_0; - $updatedContent.$_0250 = $element; + $updatedContent.$_0237 = $element; $updatedContent = sc_StrictOptimizedIterableOps_filterNot$(var$5, $updatedContent); if ($updatedContent === null) $rt_throw(null); @@ -40525,7 +40528,7 @@ sci_HashCollisionSetNode_equals = ($this, $that) => { var$2 = $this.$content4; var$4 = $that.$content4; $that = new sci_HashCollisionSetNode$equals$lambda$_20_0; - $that.$_01073 = var$4; + $that.$_01055 = var$4; if (!sc_IterableOnceOps_forall$(var$2, $that)) break a; } @@ -40536,7 +40539,7 @@ sci_HashCollisionSetNode_equals = ($this, $that) => { sci_HashCollisionSetNode_hashCode = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(766)); + jl_Throwable__init_(var$1, $rt_s(766)); $rt_throw(var$1); }, sci_HashCollisionSetNode_concat = ($this, $that, $shift) => { @@ -40545,7 +40548,7 @@ sci_HashCollisionSetNode_concat = ($this, $that, $shift) => { if (!($that instanceof sci_BitmapIndexedSetNode)) $rt_throw(s_MatchError__init_($that)); $that = new jl_UnsupportedOperationException; - jl_Throwable__init_0($that, $rt_s(767)); + jl_Throwable__init_($that, $rt_s(767)); $rt_throw($that); } $that = $that; @@ -40590,7 +40593,7 @@ sci_HashCollisionSetNode_copy = $this => { sci_HashCollisionSetNode_getNode = ($this, $index) => { let var$2; var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_0(var$2, $rt_s(768)); + jl_Throwable__init_(var$2, $rt_s(768)); $rt_throw(var$2); }, sci_HashCollisionSetNode_$anonfun$diff$2 = ($$this, $that$1, $shift$1, $x$1) => { @@ -40634,12 +40637,7 @@ function jnc_CodingErrorAction() { let jnc_CodingErrorAction_IGNORE = null, jnc_CodingErrorAction_REPLACE = null, jnc_CodingErrorAction_REPORT = null, -jnc_CodingErrorAction_$callClinit = () => { - jnc_CodingErrorAction_$callClinit = $rt_eraseClinit(jnc_CodingErrorAction); - jnc_CodingErrorAction__clinit_(); -}, jnc_CodingErrorAction__init_0 = ($this, $name) => { - jnc_CodingErrorAction_$callClinit(); $this.$name61 = $name; }, jnc_CodingErrorAction__init_ = var_0 => { @@ -40669,7 +40667,7 @@ let jnc_CharsetDecoder_onMalformedInput = ($this, $newAction) => { return $this; } var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$2, $rt_s(772)); + jl_Throwable__init_(var$2, $rt_s(772)); $rt_throw(var$2); }, jnc_CharsetDecoder_implOnMalformedInput = ($this, $newAction) => { @@ -40682,7 +40680,7 @@ jnc_CharsetDecoder_onUnmappableCharacter = ($this, $newAction) => { return $this; } var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$2, $rt_s(772)); + jl_Throwable__init_(var$2, $rt_s(772)); $rt_throw(var$2); }, jnc_CharsetDecoder_implOnUnmappableCharacter = ($this, $newAction) => { @@ -40711,9 +40709,7 @@ jnc_CharsetDecoder_decode = ($this, $in, $out, $endOfInput) => { return $result; if (jnc_CoderResult_isUnderflow($result)) { if ($endOfInput && jn_Buffer_hasRemaining($in)) { - $e = $this.$malformedAction; - jnc_CodingErrorAction_$callClinit(); - if ($e === jnc_CodingErrorAction_REPORT) + if ($this.$malformedAction === jnc_CodingErrorAction_REPORT) return jnc_CoderResult_malformedForLength(jn_Buffer_remaining($in)); if (jn_Buffer_remaining($out) <= $this.$replacement0.$nativeString.length) return jnc_CoderResult_OVERFLOW; @@ -40725,7 +40721,6 @@ jnc_CharsetDecoder_decode = ($this, $in, $out, $endOfInput) => { } if (jnc_CoderResult_isMalformed($result)) { $e = $this.$malformedAction; - jnc_CodingErrorAction_$callClinit(); if ($e === jnc_CodingErrorAction_REPORT) return $result; if ($e === jnc_CodingErrorAction_REPLACE) { @@ -40736,7 +40731,6 @@ jnc_CharsetDecoder_decode = ($this, $in, $out, $endOfInput) => { jn_Buffer_position($in, $in.$position3 + jnc_CoderResult_length($result) | 0); } else if (jnc_CoderResult_isUnmappable($result)) { $e = $this.$unmappableAction; - jnc_CodingErrorAction_$callClinit(); if ($e === jnc_CodingErrorAction_REPORT) break; if ($e === jnc_CodingErrorAction_REPLACE) { @@ -40750,7 +40744,7 @@ jnc_CharsetDecoder_decode = ($this, $in, $out, $endOfInput) => { return $result; } $in = new jl_IllegalStateException; - jl_Throwable__init_($in); + jl_Throwable__init_0($in); $rt_throw($in); }, jnc_CharsetDecoder_decode0 = ($this, $in) => { @@ -40758,7 +40752,7 @@ jnc_CharsetDecoder_decode0 = ($this, $in) => { var$2 = $this.$state2; if (var$2 && var$2 != 3) { $in = new jl_IllegalStateException; - jl_Throwable__init_($in); + jl_Throwable__init_0($in); $rt_throw($in); } if (!jn_Buffer_remaining($in)) @@ -40783,7 +40777,7 @@ jnc_CharsetDecoder_decode0 = ($this, $in) => { var$5 = $this.$state2; if (var$5 != 3 && var$5 != 2) { $in = new jl_IllegalStateException; - jl_Throwable__init_($in); + jl_Throwable__init_0($in); $rt_throw($in); } $this.$state2 = 3; @@ -41573,7 +41567,7 @@ sci_Vector$__clinit_ = () => { sci_Vector$_MODULE$ = var$1; a: { try { - var$2 = jl_Integer_parseInt(jl_System_getProperty($rt_s(774), $rt_s(775))); + var$2 = jl_Integer_parseInt0(jl_System_getProperty0($rt_s(774), $rt_s(775))); break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -41697,7 +41691,7 @@ sci_Vector_sameElements = ($this, $o) => { return sci_IndexedSeq_sameElements$($this, $o); }, sci_Vector_stringPrefix = $this => { - return $rt_s(490); + return $rt_s(488); }, sci_Vector_reverseIterator = $this => { return sc_IndexedSeqOps_reverseIterator$($this); @@ -41789,9 +41783,9 @@ sci_Vector_filterImpl = ($this, $pred, $isFlipped) => { } $foreachRest_this = $this; $foreachRest_f = new sci_Vector$filterImpl$lambda$_70_0; - $foreachRest_f.$_0410 = $pred; - $foreachRest_f.$_1148 = $isFlipped; - $foreachRest_f.$_253 = $b; + $foreachRest_f.$_0402 = $pred; + $foreachRest_f.$_1144 = $isFlipped; + $foreachRest_f.$_252 = $b; $foreachRest_c = $foreachRest_this.$vectorSliceCount(); $foreachRest_i = 1; while ($foreachRest_i < $foreachRest_c) { @@ -41852,9 +41846,9 @@ sci_Vector_filterImpl = ($this, $pred, $isFlipped) => { sci_VectorBuilder_initFrom($b, $this.$prefix10); $foreachRest_this_0 = $this; $foreachRest_f = new sci_Vector$filterImpl$lambda$_70_1; - $foreachRest_f.$_0891 = $pred; - $foreachRest_f.$_1306 = $isFlipped; - $foreachRest_f.$_299 = $b; + $foreachRest_f.$_0877 = $pred; + $foreachRest_f.$_1295 = $isFlipped; + $foreachRest_f.$_294 = $b; $foreachRest_c = $foreachRest_this_0.$vectorSliceCount(); $foreachRest_i = 1; while ($foreachRest_i < $foreachRest_c) { @@ -41914,12 +41908,12 @@ sci_Vector_appendedAll0 = ($this, $suffix, $k) => { if (!$rt_isInstance($suffix, sci_Iterable)) { $suffix = $suffix.$iterator0(); $ri = new sci_Vector$appendedAll0$lambda$_77_0; - $ri.$_0962 = $v; + $ri.$_0953 = $v; $suffix.$foreach($ri); } else { $suffix = $suffix; $ri = new sci_Vector$appendedAll0$lambda$_77_1; - $ri.$_0425 = $v; + $ri.$_0415 = $v; $suffix.$foreach($ri); } return $v.$elem; @@ -41972,7 +41966,7 @@ sci_Vector_appendedAll0 = ($this, $suffix, $k) => { return sci_VectorBuilder_result(sci_VectorBuilder_addAll(sci_VectorBuilder_addAll($suffix, $this), $v)); } $v = new jl_UnsupportedOperationException; - jl_Throwable__init_0($v, $rt_s(776)); + jl_Throwable__init_($v, $rt_s(776)); $rt_throw($v); } return sci_VectorBuilder_result(sci_VectorBuilder_addAll(sci_VectorBuilder_initFrom0(sci_VectorBuilder__init_(), $this), $suffix)); @@ -41999,7 +41993,7 @@ sci_Vector_ioob = ($this, $index) => { jl_AbstractStringBuilder_append(var$3, $rt_s(685)); var$3 = jl_StringBuilder_append0(var$3, sci_Vector_length($this) - 1 | 0); jl_AbstractStringBuilder_append(var$3, $rt_s(42)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); return var$2; }, sci_Vector_head = $this => { @@ -42008,7 +42002,7 @@ sci_Vector_head = $this => { if (var$1.length) return var$1[0]; var$2 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$2, $rt_s(778)); + jl_Throwable__init_(var$2, $rt_s(778)); $rt_throw(var$2); }, sci_Vector_last = $this => { @@ -42022,7 +42016,7 @@ sci_Vector_last = $this => { if (var$2) return $suffix[var$2 - 1 | 0]; var$3 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$3, $rt_s(779)); + jl_Throwable__init_(var$3, $rt_s(779)); $rt_throw(var$3); }, sci_Vector_foreach = ($this, $f) => { @@ -42117,7 +42111,7 @@ jn_Buffer_position = ($this, $newPosition) => { var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$4, $rt_s(780)), $newPosition), $rt_s(781)), var$3), 93); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$4)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$4)); $rt_throw(var$2); }, jn_Buffer_flip = $this => { @@ -42146,7 +42140,7 @@ let jn_ByteBuffer_allocate = $capacity => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_StringBuilder_append0(jl_StringBuilder_append(var$3, $rt_s(782)), $capacity); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); $rt_throw(var$2); }, jn_ByteBuffer_wrap = ($array, $offset, $length) => { @@ -42170,12 +42164,12 @@ jn_ByteBuffer_get = ($this, $dst, $offset, $length) => { var$8 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$8); jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$8, $rt_s(783)), var$6), $rt_s(784)), var$5); - jl_Throwable__init_0(var$7, jl_AbstractStringBuilder_toString(var$8)); + jl_Throwable__init_(var$7, jl_AbstractStringBuilder_toString(var$8)); $rt_throw(var$7); } if (jn_Buffer_remaining($this) < $length) { var$9 = new jn_BufferUnderflowException; - jl_Throwable__init_(var$9); + jl_Throwable__init_0(var$9); $rt_throw(var$9); } if ($length < 0) { @@ -42183,7 +42177,7 @@ jn_ByteBuffer_get = ($this, $dst, $offset, $length) => { var$10 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$10); jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$10, $rt_s(785)), $length), $rt_s(786)); - jl_Throwable__init_0(var$9, jl_AbstractStringBuilder_toString(var$10)); + jl_Throwable__init_(var$9, jl_AbstractStringBuilder_toString(var$10)); $rt_throw(var$9); } var$6 = $this.$position3; @@ -42208,7 +42202,7 @@ jn_ByteBuffer_get = ($this, $dst, $offset, $length) => { var$10 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$10); jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$10, $rt_s(787)), $offset), $rt_s(781)), $length), 41); - jl_Throwable__init_0(var$9, jl_AbstractStringBuilder_toString(var$10)); + jl_Throwable__init_(var$9, jl_AbstractStringBuilder_toString(var$10)); $rt_throw(var$9); }, jn_ByteBuffer_put = ($this, $src, $offset, $length) => { @@ -42217,12 +42211,12 @@ jn_ByteBuffer_put = ($this, $src, $offset, $length) => { return $this; if ($this.$readOnly1) { var$4 = new jn_ReadOnlyBufferException; - jl_Throwable__init_(var$4); + jl_Throwable__init_0(var$4); $rt_throw(var$4); } if (jn_Buffer_remaining($this) < $length) { var$4 = new jn_BufferOverflowException; - jl_Throwable__init_(var$4); + jl_Throwable__init_0(var$4); $rt_throw(var$4); } if ($offset >= 0) { @@ -42235,7 +42229,7 @@ jn_ByteBuffer_put = ($this, $src, $offset, $length) => { var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(788)), var$7), $rt_s(784)), var$6); - jl_Throwable__init_0(var$8, jl_AbstractStringBuilder_toString(var$9)); + jl_Throwable__init_(var$8, jl_AbstractStringBuilder_toString(var$9)); $rt_throw(var$8); } if ($length < 0) { @@ -42243,7 +42237,7 @@ jn_ByteBuffer_put = ($this, $src, $offset, $length) => { var$8 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$8); jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$8, $rt_s(785)), $length), $rt_s(786)); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$8)); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$8)); $rt_throw(var$4); } var$7 = $this.$position3; @@ -42268,7 +42262,7 @@ jn_ByteBuffer_put = ($this, $src, $offset, $length) => { var$8 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$8); jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$8, $rt_s(787)), $offset), $rt_s(781)), $length), 41); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$8)); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$8)); $rt_throw(var$4); }, jn_CharBuffer = $rt_classWithoutFields(jn_Buffer), @@ -42280,7 +42274,7 @@ jn_CharBuffer_allocate = $capacity => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_StringBuilder_append0(jl_StringBuilder_append(var$3, $rt_s(782)), $capacity); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); $rt_throw(var$2); }, jn_CharBuffer_wrap = $array => { @@ -42300,12 +42294,12 @@ jn_CharBuffer_get = ($this, $dst, $offset, $length) => { var$8 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$8); jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$8, $rt_s(789)), $pos), $rt_s(784)), var$5); - jl_Throwable__init_0(var$7, jl_AbstractStringBuilder_toString(var$8)); + jl_Throwable__init_(var$7, jl_AbstractStringBuilder_toString(var$8)); $rt_throw(var$7); } if (jn_Buffer_remaining($this) < $length) { var$8 = new jn_BufferUnderflowException; - jl_Throwable__init_(var$8); + jl_Throwable__init_0(var$8); $rt_throw(var$8); } if ($length < 0) { @@ -42313,7 +42307,7 @@ jn_CharBuffer_get = ($this, $dst, $offset, $length) => { var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(785)), $length), $rt_s(786)); - jl_Throwable__init_0(var$8, jl_AbstractStringBuilder_toString(var$7)); + jl_Throwable__init_(var$8, jl_AbstractStringBuilder_toString(var$7)); $rt_throw(var$8); } $pos = $this.$position3; @@ -42336,19 +42330,19 @@ jn_CharBuffer_get = ($this, $dst, $offset, $length) => { var$11 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$11); jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$11, $rt_s(787)), $offset), $rt_s(781)), $length), 41); - jl_Throwable__init_0(var$8, jl_AbstractStringBuilder_toString(var$11)); + jl_Throwable__init_(var$8, jl_AbstractStringBuilder_toString(var$11)); $rt_throw(var$8); }, jn_CharBuffer_put0 = ($this, $src, $offset, $length) => { let var$4, var$5, var$6, $pos, var$8, $i, var$10; if ($this.$readOnly) { var$4 = new jn_ReadOnlyBufferException; - jl_Throwable__init_(var$4); + jl_Throwable__init_0(var$4); $rt_throw(var$4); } if (jn_Buffer_remaining($this) < $length) { var$4 = new jn_BufferOverflowException; - jl_Throwable__init_(var$4); + jl_Throwable__init_0(var$4); $rt_throw(var$4); } if ($offset >= 0) { @@ -42361,7 +42355,7 @@ jn_CharBuffer_put0 = ($this, $src, $offset, $length) => { var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$4, $rt_s(790)), $pos), $rt_s(784)), var$6); - jl_Throwable__init_0(var$8, jl_AbstractStringBuilder_toString(var$4)); + jl_Throwable__init_(var$8, jl_AbstractStringBuilder_toString(var$4)); $rt_throw(var$8); } if ($length < 0) { @@ -42369,7 +42363,7 @@ jn_CharBuffer_put0 = ($this, $src, $offset, $length) => { var$8 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$8); jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$8, $rt_s(785)), $length), $rt_s(786)); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$8)); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$8)); $rt_throw(var$4); } $pos = $this.$position3; @@ -42392,7 +42386,7 @@ jn_CharBuffer_put0 = ($this, $src, $offset, $length) => { var$8 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$8); jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$8, $rt_s(787)), $offset), $rt_s(781)), $length), 41); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$8)); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$8)); $rt_throw(var$4); }, jn_CharBuffer_put = ($this, $src) => { @@ -42401,13 +42395,13 @@ jn_CharBuffer_put = ($this, $src) => { var$3 = $src.$nativeString.length; if ($this.$readOnly) { $src = new jn_ReadOnlyBufferException; - jl_Throwable__init_($src); + jl_Throwable__init_0($src); $rt_throw($src); } var$4 = var$3 - var$2 | 0; if (jn_Buffer_remaining($this) < var$4) { $src = new jn_BufferOverflowException; - jl_Throwable__init_($src); + jl_Throwable__init_0($src); $rt_throw($src); } if (var$2 > $src.$nativeString.length) { @@ -42416,7 +42410,7 @@ jn_CharBuffer_put = ($this, $src) => { $src = new jl_StringBuilder; jl_AbstractStringBuilder__init_($src); jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($src, $rt_s(791)), var$2), $rt_s(781)), var$6), 41); - jl_Throwable__init_0(var$5, jl_AbstractStringBuilder_toString($src)); + jl_Throwable__init_(var$5, jl_AbstractStringBuilder_toString($src)); $rt_throw(var$5); } if (var$3 > $src.$nativeString.length) { @@ -42425,7 +42419,7 @@ jn_CharBuffer_put = ($this, $src) => { $src = new jl_StringBuilder; jl_AbstractStringBuilder__init_($src); jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($src, $rt_s(790)), var$3), $rt_s(792)), var$2); - jl_Throwable__init_0(var$5, jl_AbstractStringBuilder_toString($src)); + jl_Throwable__init_(var$5, jl_AbstractStringBuilder_toString($src)); $rt_throw(var$5); } if (var$2 > var$3) { @@ -42433,7 +42427,7 @@ jn_CharBuffer_put = ($this, $src) => { var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$5, $rt_s(791)), var$2), $rt_s(793)), var$3); - jl_Throwable__init_0($src, jl_AbstractStringBuilder_toString(var$5)); + jl_Throwable__init_($src, jl_AbstractStringBuilder_toString(var$5)); $rt_throw($src); } var$7 = $this.$position3; @@ -42482,7 +42476,7 @@ s_package$_Fractional = null, s_package$_Integral = null, s_package$_Numeric = null, s_package$_Ordered = null, -s_package$_Ordering = null, +s_package$_Ordering0 = null, s_package$_Either = null, s_package$_Left0 = null, s_package$_Right0 = null, @@ -42527,7 +42521,7 @@ s_package$__clinit_ = () => { s_package$_Integral = sm_Integral$_MODULE$; s_package$_Numeric = sm_Numeric$_MODULE$; s_package$_Ordered = sm_Ordered$_MODULE$; - s_package$_Ordering = sm_Ordering$_MODULE$; + s_package$_Ordering0 = sm_Ordering$_MODULE$; s_package$_Either = su_Either$_MODULE$; s_package$_Left0 = su_Left$_MODULE$; s_package$_Right0 = su_Right$_MODULE$; @@ -42556,7 +42550,11 @@ s_package$_Vector = $this => { s_package$_$callClinit(); return s_package$_Vector0; }; -let s_package$_Left = $this => { +let s_package$_Ordering = $this => { + s_package$_$callClinit(); + return s_package$_Ordering0; +}, +s_package$_Left = $this => { s_package$_$callClinit(); return s_package$_Left0; }, @@ -42589,13 +42587,13 @@ sm_Ordering$Int$__clinit_ = () => { sm_Ordering$Int$_scala$math$Ordering$CachedReverse$$_reverse = var$2; }, sm_Ordering$Int$_lteq = ($this, $x, $y) => { - return sm_Ordering$Int$_compare($this, $x, $y) > 0 ? 0 : 1; + return sm_Ordering_lteq$($this, $x, $y); }, sm_Ordering$Int$_gteq = ($this, $x, $y) => { - return sm_Ordering$Int$_compare($this, $x, $y) < 0 ? 0 : 1; + return sm_Ordering_gteq$($this, $x, $y); }, sm_Ordering$Int$_lt = ($this, $x, $y) => { - return sm_Ordering$Int$_compare($this, $x, $y) >= 0 ? 0 : 1; + return sm_Ordering_lt$($this, $x, $y); }, sm_Ordering$Int$_max = ($this, $x, $y) => { return sm_Ordering_max$($this, $x, $y); @@ -42615,6 +42613,13 @@ sm_Ordering$_MODULE$ = null, sm_Ordering$__clinit_ = () => { sm_Ordering$_MODULE$ = new sm_Ordering$; }, +sm_Ordering$_by = ($this, $f, $ord) => { + let var$3; + var$3 = new sm_Ordering$$anon$5; + var$3.$ord$2 = $ord; + var$3.$f$30 = $f; + return var$3; +}, sm_Ordering$_Tuple2 = ($this, $ord1, $ord2) => { let var$3; var$3 = new sm_Ordering$Tuple2Ordering; @@ -42665,9 +42670,9 @@ onciu_InputPosition$Simple_withInputLength = ($this, $length) => { var$3 = $this.$line1; var$4 = $this.$column0; var$5 = new onciu_InputPosition$Range; - var$5.$offset2 = var$2; - var$5.$line3 = var$3; - var$5.$column2 = var$4; + var$5.$offset1 = var$2; + var$5.$line2 = var$3; + var$5.$column1 = var$4; var$5.$inputLength = $length; return var$5; }, @@ -42764,7 +42769,7 @@ scm_ArrayBuffer$_scala$collection$mutable$ArrayBuffer$$ensureSize = ($this, $arr jl_AbstractStringBuilder_append(var$7, $rt_s(798)); var$7 = jl_StringBuilder_append0(var$7, 2147483647); jl_AbstractStringBuilder_append(var$7, $rt_s(799)); - jl_Throwable__init_0(var$6, jl_AbstractStringBuilder_toString(var$7)); + jl_Throwable__init_(var$6, jl_AbstractStringBuilder_toString(var$7)); $rt_throw(var$6); } if (Long_lo($targetSize) > 2147483645) { @@ -42772,10 +42777,14 @@ scm_ArrayBuffer$_scala$collection$mutable$ArrayBuffer$$ensureSize = ($this, $arr var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$7, 83); jl_AbstractStringBuilder_append(var$7, $rt_s(800)); - jl_Throwable__init_0(var$6, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$7, 2147483645))); + jl_Throwable__init_(var$6, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$7, 2147483645))); $rt_throw(var$6); } - $newLen = Long_lo((jl_Math_min0(jl_Math_max0($targetSize, jl_Math_max0(Long_mul(var$4, Long_fromInt(2)), Long_fromInt(16))), Long_fromInt(2147483645)))); + $targetSize = jl_Math_max0($targetSize, jl_Math_max0(Long_mul(var$4, Long_fromInt(2)), Long_fromInt(16))); + var$4 = Long_fromInt(2147483645); + if (Long_lt($targetSize, var$4)) + var$4 = $targetSize; + $newLen = Long_lo(var$4); } if ($newLen < 0) return $array; @@ -42801,7 +42810,7 @@ scm_ArrayBuffer$_from = ($this, $source) => { jl_AbstractStringBuilder_append(var$5, $rt_s(801)); var$5 = jl_StringBuilder_append0(var$5, var$4); jl_AbstractStringBuilder_append(var$5, $rt_s(802)); - jl_Throwable__init_0($source, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$5, var$2))); + jl_Throwable__init_($source, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$5, var$2))); $rt_throw($source); } $source = scm_ArrayBuffer__init_3(var$3, var$2); @@ -42875,7 +42884,7 @@ sci_Vector0$_prepended = ($this, $elem) => { sci_Vector0$_init = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(803)); + jl_Throwable__init_(var$1, $rt_s(803)); $rt_throw(var$1); }, sci_Vector0$_slice0 = ($this, $lo, $hi) => { @@ -42905,16 +42914,13 @@ sci_Vector0$_ioob = ($this, $index) => { jl_AbstractStringBuilder__init_0(var$3, 32); var$3 = jl_StringBuilder_append0(var$3, $index); jl_AbstractStringBuilder_append(var$3, $rt_s(804)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); return var$2; }, -sci_Vector0$_init0 = $this => { - return sci_Vector0$_init($this); -}, sci_Vector0$_tail = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(779)); + jl_Throwable__init_(var$1, $rt_s(779)); $rt_throw(var$1); }, sci_Vector0$_map = ($this, $f) => { @@ -43448,7 +43454,7 @@ sci_VectorBuilder_addArrN = ($this, $slice, $dim) => { return; } var$8 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$8, $rt_s(805)); + jl_Throwable__init_(var$8, $rt_s(805)); $rt_throw(var$8); default: } @@ -43479,7 +43485,7 @@ sci_VectorBuilder_addAll = ($this, $xs) => { var$8 = sci_VectorStatics$_MODULE$; var$7 = var$6 - 2 | 0; var$9 = new sci_VectorBuilder$addVector$lambda$_22_0; - var$9.$_0271 = $this; + var$9.$_0255 = $this; var$10 = 0; var$5 = var$4.length; if (!var$7) @@ -43919,9 +43925,6 @@ sci_Vector1_appendedAll0 = ($this, $suffix, $k) => { sci_VectorImpl__init_($suffix, $data1b); return $suffix; }, -sci_Vector1_init0 = $this => { - return sci_Vector1_init($this); -}, sci_Vector1_tail = $this => { let var$1, var$2, var$3; var$1 = $this.$prefix10; @@ -44001,16 +44004,13 @@ sm_Ordering$$anon$5_on = ($this, $f) => { return sm_Ordering_on$($this, $f); }, sm_Ordering$$anon$5_compare = ($this, $x, $y) => { - return sm_Ordering$Int$_compare($this.$ord$2, onciu_InputPosition$$_clinit_$lambda$_0_0_apply($this.$f$30, $x), onciu_InputPosition$$_clinit_$lambda$_0_0_apply($this.$f$30, $y)); -}, -sm_Ordering$$anon$5_lt = ($this, $x, $y) => { - return sm_Ordering$Int$_lt($this.$ord$2, onciu_InputPosition$$_clinit_$lambda$_0_0_apply($this.$f$30, $x), onciu_InputPosition$$_clinit_$lambda$_0_0_apply($this.$f$30, $y)); + return $this.$ord$2.$compare2($this.$f$30.$apply2($x), $this.$f$30.$apply2($y)); }, sm_Ordering$$anon$5_gteq = ($this, $x, $y) => { - return sm_Ordering$Int$_gteq($this.$ord$2, onciu_InputPosition$$_clinit_$lambda$_0_0_apply($this.$f$30, $x), onciu_InputPosition$$_clinit_$lambda$_0_0_apply($this.$f$30, $y)); + return $this.$ord$2.$gteq($this.$f$30.$apply2($x), $this.$f$30.$apply2($y)); }, sm_Ordering$$anon$5_lteq = ($this, $x, $y) => { - return sm_Ordering$Int$_lteq($this.$ord$2, onciu_InputPosition$$_clinit_$lambda$_0_0_apply($this.$f$30, $x), onciu_InputPosition$$_clinit_$lambda$_0_0_apply($this.$f$30, $y)); + return $this.$ord$2.$lteq($this.$f$30.$apply2($x), $this.$f$30.$apply2($y)); }; function sci_NewVectorIterator() { let a = this; jl_Object.call(a); @@ -44053,6 +44053,9 @@ sci_NewVectorIterator_filter = ($this, $p) => { sci_NewVectorIterator_filterImpl = ($this, $p, $isFlipped) => { return sc_Iterator_filterImpl$($this, $p, $isFlipped); }, +sci_NewVectorIterator_collect = ($this, $pf) => { + return sc_Iterator_collect$($this, $pf); +}, sci_NewVectorIterator_distinctBy = ($this, $f) => { return sc_Iterator_distinctBy$($this, $f); }, @@ -44411,7 +44414,7 @@ jn_ByteBufferImpl_get = $this => { var$1 = $this.$position3; if (var$1 >= $this.$limit2) { var$2 = new jn_BufferUnderflowException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } var$3 = $this.$array6.data; @@ -44582,7 +44585,7 @@ sci_Stream$_fromIterator = ($this, $it) => { var$2 = new sci_Stream$Cons; var$3 = $it.$next(); var$4 = new sci_Stream$$fromIterator$lambda$_21_0; - var$4.$_0104 = $it; + var$4.$_092 = $it; sci_Stream$Cons__init_0(var$2, var$3, var$4); return var$2; }, @@ -44604,9 +44607,9 @@ sci_Stream$_$anonfun$filteredTail$1 = ($stream$1, $p$2, $isFlipped$1) => { return sci_Stream$Empty$_MODULE$; $filterImpl_filteredTail_apply_hd = $filterImpl_rest.$head(); $filterImpl_filteredTail_apply_tl = new sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0; - $filterImpl_filteredTail_apply_tl.$_0920 = $filterImpl_rest; - $filterImpl_filteredTail_apply_tl.$_1322 = $p$2; - $filterImpl_filteredTail_apply_tl.$_2109 = $isFlipped$1; + $filterImpl_filteredTail_apply_tl.$_0905 = $filterImpl_rest; + $filterImpl_filteredTail_apply_tl.$_1310 = $p$2; + $filterImpl_filteredTail_apply_tl.$_2103 = $isFlipped$1; return sci_Stream$Cons__init_($filterImpl_filteredTail_apply_hd, $filterImpl_filteredTail_apply_tl); }, sci_LazyList$ = $rt_classWithoutFields(), @@ -44633,8 +44636,8 @@ sci_LazyList$_scala$collection$immutable$LazyList$$collectImpl = ($this, $ll, $p let var$3, $scala$collection$immutable$LazyList$$newLL_state; var$3 = sr_ObjectRef__init_($ll); $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$scala$collection$immutable$LazyList$$collectImpl$lambda$_19_0; - $scala$collection$immutable$LazyList$$newLL_state.$_01027 = var$3; - $scala$collection$immutable$LazyList$$newLL_state.$_1353 = $pf; + $scala$collection$immutable$LazyList$$newLL_state.$_01016 = var$3; + $scala$collection$immutable$LazyList$$newLL_state.$_1347 = $pf; return sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state); }, sci_LazyList$_from = ($this, $coll) => { @@ -44644,7 +44647,7 @@ sci_LazyList$_from = ($this, $coll) => { if (!$coll.$knownSize()) return sci_LazyList$_empty($this); $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$from$lambda$_25_0; - $scala$collection$immutable$LazyList$$newLL_state.$_092 = $coll; + $scala$collection$immutable$LazyList$$newLL_state.$_081 = $coll; return sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state); }, sci_LazyList$_empty = $this => { @@ -44657,14 +44660,14 @@ sci_LazyList$_scala$collection$immutable$LazyList$$stateFromIterator = ($this, $ return sci_LazyList$State$Empty$_MODULE$; $scala$collection$immutable$LazyList$$sCons_hd = $it.$next(); $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIterator$lambda$_28_0; - $scala$collection$immutable$LazyList$$newLL_state.$_01116 = $it; + $scala$collection$immutable$LazyList$$newLL_state.$_01091 = $it; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state)); }, sci_LazyList$_from0 = ($this, $start, $step) => { let $scala$collection$immutable$LazyList$$newLL_state; $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$from$lambda$_32_0; - $scala$collection$immutable$LazyList$$newLL_state.$_0824 = $start; - $scala$collection$immutable$LazyList$$newLL_state.$_1280 = $step; + $scala$collection$immutable$LazyList$$newLL_state.$_0797 = $start; + $scala$collection$immutable$LazyList$$newLL_state.$_1265 = $step; return sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state); }, sci_LazyList$_newBuilder = $this => { @@ -44672,9 +44675,9 @@ sci_LazyList$_newBuilder = $this => { var$1 = new sci_LazyList$LazyBuilder; var$2 = new sci_LazyList$LazyBuilder$DeferredState; var$3 = new sci_LazyList$LazyBuilder$clear$lambda$_9_0; - var$3.$_01052 = var$2; + var$3.$_01040 = var$2; var$1.$list4 = sci_LazyList__init_(var$3); - var$1.$next10 = var$2; + var$1.$next9 = var$2; return var$1; }, sci_LazyList$_from1 = ($this, $source) => { @@ -44696,9 +44699,9 @@ sci_LazyList$_$anonfun$filterImpl$1 = ($restRef$1, $p$2, $isFlipped$1) => { return sci_LazyList$State$Empty$_MODULE$; $scala$collection$immutable$LazyList$$filterImpl_restRef = sr_ObjectRef__init_($rest); $scala$collection$immutable$LazyList$$filterImpl_scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$$anonfun$filterImpl$1$lambda$_48_0; - $scala$collection$immutable$LazyList$$filterImpl_scala$collection$immutable$LazyList$$newLL_state.$_0573 = $scala$collection$immutable$LazyList$$filterImpl_restRef; - $scala$collection$immutable$LazyList$$filterImpl_scala$collection$immutable$LazyList$$newLL_state.$_1196 = $p$2; - $scala$collection$immutable$LazyList$$filterImpl_scala$collection$immutable$LazyList$$newLL_state.$_264 = $isFlipped$1; + $scala$collection$immutable$LazyList$$filterImpl_scala$collection$immutable$LazyList$$newLL_state.$_0556 = $scala$collection$immutable$LazyList$$filterImpl_restRef; + $scala$collection$immutable$LazyList$$filterImpl_scala$collection$immutable$LazyList$$newLL_state.$_1187 = $p$2; + $scala$collection$immutable$LazyList$$filterImpl_scala$collection$immutable$LazyList$$newLL_state.$_260 = $isFlipped$1; return sci_LazyList$State$Cons__init_($elem, sci_LazyList__init_($scala$collection$immutable$LazyList$$filterImpl_scala$collection$immutable$LazyList$$newLL_state)); }, sci_LazyList$_$anonfun$flatMapImpl$1 = ($restRef$3, $f$3) => { @@ -44725,9 +44728,9 @@ sci_LazyList$_$anonfun$flatMapImpl$1 = ($restRef$3, $f$3) => { $rest.$elem = $scala$collection$immutable$LazyList$$newLL_state; $restRef$3.$elem = $scala$collection$immutable$LazyList$$newLL_state; $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$$anonfun$flatMapImpl$1$lambda$_52_0; - $scala$collection$immutable$LazyList$$newLL_state.$_0682 = $it; - $scala$collection$immutable$LazyList$$newLL_state.$_1238 = $rest; - $scala$collection$immutable$LazyList$$newLL_state.$_276 = $f$3; + $scala$collection$immutable$LazyList$$newLL_state.$_0676 = $it; + $scala$collection$immutable$LazyList$$newLL_state.$_1230 = $rest; + $scala$collection$immutable$LazyList$$newLL_state.$_275 = $f$3; return sci_LazyList$State$Cons__init_($head, sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state)); }, sci_LazyList$_$anonfun$stateFromIteratorConcatSuffix$1 = ($it$4, $suffix$3) => { @@ -44738,8 +44741,8 @@ sci_LazyList$_$anonfun$stateFromIteratorConcatSuffix$1 = ($it$4, $suffix$3) => { else { var$3 = $it$4.$next(); var$4 = new sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0; - var$4.$_0216 = $it$4; - var$4.$_182 = $suffix$3; + var$4.$_0210 = $it$4; + var$4.$_178 = $suffix$3; $it$4 = sci_LazyList$State$Cons__init_(var$3, sci_LazyList__init_(var$4)); } return $it$4; @@ -44749,7 +44752,7 @@ sci_LazyList$_$anonfun$continually$1 = $elem$6 => { sci_LazyList$_$callClinit(); $scala$collection$immutable$LazyList$$sCons_hd = $elem$6.$apply4(); $continually_scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$$anonfun$continually$1$lambda$_64_0; - $continually_scala$collection$immutable$LazyList$$newLL_state.$_01045 = $elem$6; + $continually_scala$collection$immutable$LazyList$$newLL_state.$_01033 = $elem$6; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList__init_($continually_scala$collection$immutable$LazyList$$newLL_state)); }, scm_StringBuilder$ = $rt_classWithoutFields(), @@ -45143,12 +45146,12 @@ sci_VectorStatics$_append1IfSpace = ($this, $suffix1, $xs) => { }; function sci_VectorBuilder$addVector$lambda$_22_0() { jl_Object.call(this); - this.$_0271 = null; + this.$_0255 = null; } let sci_VectorBuilder$addVector$lambda$_22_0_apply = (var$0, var$1) => { let var$2; var$2 = var$1; - sci_VectorBuilder_addArr1(var$0.$_0271, var$2); + sci_VectorBuilder_addArr1(var$0.$_0255, var$2); return sr_BoxedUnit_UNIT; }; function sci_Vector2() { @@ -45418,9 +45421,6 @@ sci_Vector2_appendedAll0 = ($this, $suffix, $k) => { $x$2 = ($this.$length01 - $this.$suffix10.data.length | 0) + $x$3.length | 0; return sci_Vector2__init_($this.$prefix10, $this.$len14, $this.$data20, $suffix1b, $x$2); }, -sci_Vector2_init0 = $this => { - return sci_Vector2_init($this); -}, sci_Vector2_tail = $this => { let var$1, var$2, var$3, var$4, var$5; if ($this.$len14 <= 1) @@ -45864,9 +45864,6 @@ sci_Vector3_appendedAll0 = ($this, $suffix, $k) => { $x$2 = ($this.$length01 - $this.$suffix10.data.length | 0) + $x$8.length | 0; return sci_Vector3__init_($this.$prefix10, $this.$len11, $this.$prefix21, $this.$len121, $this.$data30, $this.$suffix21, $suffix1b, $x$2); }, -sci_Vector3_init0 = $this => { - return sci_Vector3_init($this); -}, sci_Vector3_tail = $this => { let var$1, var$2, var$3, var$4, var$5, var$6; if ($this.$len11 <= 1) @@ -46443,9 +46440,6 @@ sci_Vector4_appendedAll0 = ($this, $suffix, $k) => { $x$2 = ($this.$length01 - $this.$suffix10.data.length | 0) + $x$5.length | 0; return sci_Vector4__init_($this.$prefix10, $this.$len10, $this.$prefix20, $this.$len120, $this.$prefix30, $this.$len1230, $this.$data40, $this.$suffix30, $this.$suffix20, $suffix1b, $x$2); }, -sci_Vector4_init0 = $this => { - return sci_Vector4_init($this); -}, sci_Vector4_tail = $this => { let var$1, var$2, var$3, var$4, var$5, var$6, var$7; if ($this.$len10 <= 1) @@ -47121,9 +47115,6 @@ sci_Vector5_appendedAll0 = ($this, $suffix, $k) => { $x$2 = ($this.$length01 - $this.$suffix10.data.length | 0) + $x$7.length | 0; return sci_Vector5__init_($this.$prefix10, $this.$len13, $this.$prefix22, $this.$len122, $this.$prefix31, $this.$len1231, $this.$prefix40, $this.$len12340, $this.$data50, $this.$suffix40, $this.$suffix31, $this.$suffix22, $suffix1b, $x$2); }, -sci_Vector5_init0 = $this => { - return sci_Vector5_init($this); -}, sci_Vector5_tail = $this => { let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; if ($this.$len13 <= 1) @@ -47905,9 +47896,6 @@ sci_Vector6_appendedAll0 = ($this, $suffix, $k) => { $x$2 = ($this.$length01 - $this.$suffix10.data.length | 0) + $x$11.length | 0; return sci_Vector6__init_($this.$prefix10, $this.$len15, $this.$prefix23, $this.$len124, $this.$prefix32, $this.$len1232, $this.$prefix41, $this.$len12341, $this.$prefix50, $this.$len123450, $this.$data60, $this.$suffix50, $this.$suffix41, $this.$suffix32, $this.$suffix23, $suffix1b, $x$2); }, -sci_Vector6_init0 = $this => { - return sci_Vector6_init($this); -}, sci_Vector6_tail = $this => { let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; if ($this.$len15 <= 1) @@ -47965,7 +47953,7 @@ function jnc_IllegalCharsetNameException() { this.$charsetName = null; } let jnc_IllegalCharsetNameException__init_0 = ($this, $charsetName) => { - jl_Throwable__init_($this); + jl_Throwable__init_0($this); $this.$charsetName = $charsetName; }, jnc_IllegalCharsetNameException__init_ = var_0 => { @@ -48043,13 +48031,6 @@ sc_AbstractIterator_sliceIterator = ($this, $from, $until) => { sc_AbstractIterator_zipAll = ($this, $that, $thisElem, $thatElem) => { return sc_Iterator_zipAll$($this, $that, $thisElem, $thatElem); }, -sc_AbstractIterator_zipWithIndex = $this => { - let var$1; - var$1 = new sc_Iterator$$anon$16; - var$1.$$outer14 = $this; - var$1.$idx1 = 0; - return var$1; -}, sc_AbstractIterator_sameElements = ($this, $that) => { return sc_Iterator_sameElements$($this, $that); }, @@ -48120,17 +48101,17 @@ sc_Iterator$$anon$19_sliceIterator = ($this, $from, $until) => { sc_Iterator$$anon$19_next = $this => { let var$1; var$1 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$1, $rt_s(821)); + jl_Throwable__init_(var$1, $rt_s(821)); $rt_throw(var$1); }, sci_List$$anon$1 = $rt_classWithoutFields(), sci_List$$anon$1_toString = $this => { return $rt_s(37); -}; -let sci_List$$anon$1_apply = ($this, $x) => { - return $this; }, -sci_LazyList$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), +sci_List$$anon$1_apply = ($this, $x) => { + return $this; +}; +let sci_LazyList$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), sci_LazyList$$_clinit_$lambda$_0_0_apply = var$0 => { sci_LazyList$_$callClinit(); return sci_LazyList$State$Empty$_MODULE$; @@ -48288,7 +48269,7 @@ sci_LazyList_reduceLeft = ($this, $f) => { let $reducedRes, $left; if (sci_LazyList_isEmpty($this)) { $f = new jl_UnsupportedOperationException; - jl_Throwable__init_0($f, $rt_s(44)); + jl_Throwable__init_($f, $rt_s(44)); $rt_throw($f); } $reducedRes = sci_LazyList_head($this); @@ -48326,8 +48307,8 @@ sci_LazyList_zip = ($this, $that) => { var$2 = $this.$scala$collection$immutable$LazyList$$stateEvaluated && (sci_LazyList_scala$collection$immutable$LazyList$$state($this) !== sci_LazyList$State$Empty$_MODULE$ ? 0 : 1) ? 1 : 0; if (!var$2 && $that.$knownSize()) { $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$zip$lambda$_77_0; - $scala$collection$immutable$LazyList$$newLL_state.$_0191 = $this; - $scala$collection$immutable$LazyList$$newLL_state.$_174 = $that; + $scala$collection$immutable$LazyList$$newLL_state.$_0184 = $this; + $scala$collection$immutable$LazyList$$newLL_state.$_167 = $that; return sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state); } sci_LazyList$_$callClinit(); @@ -48338,8 +48319,8 @@ sci_LazyList_zipState = ($this, $it) => { if (!sci_LazyList_isEmpty($this) && $it.$hasNext()) { $scala$collection$immutable$LazyList$$sCons_hd = s_Tuple2__init_(sci_LazyList_head($this), $it.$next()); $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$zipState$lambda$_78_0; - $scala$collection$immutable$LazyList$$newLL_state.$_021 = $this; - $scala$collection$immutable$LazyList$$newLL_state.$_113 = $it; + $scala$collection$immutable$LazyList$$newLL_state.$_019 = $this; + $scala$collection$immutable$LazyList$$newLL_state.$_112 = $it; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state)); } return sci_LazyList$State$Empty$_MODULE$; @@ -48352,24 +48333,24 @@ sci_LazyList_zipAllState = ($this, $it, $thisElem, $thatElem) => { $scala$collection$immutable$LazyList$$sCons_hd = s_Tuple2__init_(sci_LazyList_head($this), $thatElem); $it = sci_LazyList_tail($this); $thisElem = new sci_LazyList$zipAllState$lambda$_81_2; - $thisElem.$_0330 = $thatElem; + $thisElem.$_0321 = $thatElem; $continually_scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$zipAllState$lambda$_81_3; - $continually_scala$collection$immutable$LazyList$$newLL_state.$_0916 = $thisElem; + $continually_scala$collection$immutable$LazyList$$newLL_state.$_0901 = $thisElem; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList_zip($it, sci_LazyList__init_($continually_scala$collection$immutable$LazyList$$newLL_state))); } if (sci_LazyList_isEmpty($this)) { $scala$collection$immutable$LazyList$$sCons_hd = s_Tuple2__init_($thisElem, $it.$next()); $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$zipAllState$lambda$_81_1; - $scala$collection$immutable$LazyList$$newLL_state.$_0977 = $thisElem; - $scala$collection$immutable$LazyList$$newLL_state.$_1339 = $it; + $scala$collection$immutable$LazyList$$newLL_state.$_0971 = $thisElem; + $scala$collection$immutable$LazyList$$newLL_state.$_1331 = $it; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state)); } $scala$collection$immutable$LazyList$$sCons_hd = s_Tuple2__init_(sci_LazyList_head($this), $it.$next()); $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$zipAllState$lambda$_81_0; - $scala$collection$immutable$LazyList$$newLL_state.$_0497 = $this; - $scala$collection$immutable$LazyList$$newLL_state.$_1174 = $it; - $scala$collection$immutable$LazyList$$newLL_state.$_259 = $thisElem; - $scala$collection$immutable$LazyList$$newLL_state.$_317 = $thatElem; + $scala$collection$immutable$LazyList$$newLL_state.$_0486 = $this; + $scala$collection$immutable$LazyList$$newLL_state.$_1167 = $it; + $scala$collection$immutable$LazyList$$newLL_state.$_257 = $thisElem; + $scala$collection$immutable$LazyList$$newLL_state.$_319 = $thatElem; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state)); }, sci_LazyList_drop = ($this, $n) => { @@ -48384,8 +48365,8 @@ sci_LazyList_drop = ($this, $n) => { var$2 = sr_ObjectRef__init_($this); var$3 = sr_IntRef__init_($n); var$4 = new sci_LazyList$$scala$collection$immutable$LazyList$$dropImpl$lambda$_21_0; - var$4.$_0613 = var$2; - var$4.$_1208 = var$3; + var$4.$_0604 = var$2; + var$4.$_1203 = var$3; return sci_LazyList__init_(var$4); }, sci_LazyList_dropRightState = ($this, $scout) => { @@ -48394,8 +48375,8 @@ sci_LazyList_dropRightState = ($this, $scout) => { return sci_LazyList$State$Empty$_MODULE$; $scala$collection$immutable$LazyList$$sCons_hd = sci_LazyList_head($this); $scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$dropRightState$lambda$_88_0; - $scala$collection$immutable$LazyList$$newLL_state.$_0590 = $this; - $scala$collection$immutable$LazyList$$newLL_state.$_1204 = $scout; + $scala$collection$immutable$LazyList$$newLL_state.$_0578 = $this; + $scala$collection$immutable$LazyList$$newLL_state.$_1196 = $scout; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList__init_($scala$collection$immutable$LazyList$$newLL_state)); }, sci_LazyList_grouped = ($this, $size) => { @@ -48408,7 +48389,7 @@ sci_LazyList_grouped = ($this, $size) => { var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$4, 31); jl_AbstractStringBuilder_append(var$4, $rt_s(825)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$4, $size))))); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$4, $size))))); $rt_throw(var$2); } if ($this.$scala$collection$immutable$LazyList$$stateEvaluated && (sci_LazyList_scala$collection$immutable$LazyList$$state($this) !== sci_LazyList$State$Empty$_MODULE$ ? 0 : 1) ? 1 : 0) @@ -48429,7 +48410,7 @@ sci_LazyList_sliding = ($this, $size, $step) => { jl_AbstractStringBuilder_append(var$5, $rt_s(827)); var$5 = jl_StringBuilder_append0(var$5, $step); jl_AbstractStringBuilder_append(var$5, $rt_s(828)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$4, jl_AbstractStringBuilder_toString(var$5)))); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$4, jl_AbstractStringBuilder_toString(var$5)))); $rt_throw(var$3); } if ($this.$scala$collection$immutable$LazyList$$stateEvaluated && (sci_LazyList_scala$collection$immutable$LazyList$$state($this) !== sci_LazyList$State$Empty$_MODULE$ ? 0 : 1) ? 1 : 0) @@ -48438,7 +48419,7 @@ sci_LazyList_sliding = ($this, $size, $step) => { }, sci_LazyList_addString = ($this, $sb, $start, $sep, $end) => { sci_LazyList_force($this); - sci_LazyList_addStringNoForce($this, $sb.$underlying8, $start, $sep, $end); + sci_LazyList_addStringNoForce($this, $sb.$underlying7, $start, $sep, $end); return $sb; }, sci_LazyList_addStringNoForce = ($this, $b, $start, $sep, $end) => { @@ -48554,8 +48535,8 @@ sci_LazyList_reverse = $this => { while (!sci_LazyList_isEmpty($this)) { var$2 = sci_LazyList_tail($this); var$3 = new sci_LazyList$reverseOnto$lambda$_96_0; - var$3.$_01026 = $this; - var$3.$_1352 = var$1; + var$3.$_01015 = $this; + var$3.$_1346 = var$1; var$1 = sci_LazyList__init_(var$3); $this = var$2; } @@ -48569,8 +48550,8 @@ sci_LazyList_dropRight = ($this, $n) => { $this = sci_LazyList$_empty(sci_LazyList$_MODULE$); } else { var$2 = new sci_LazyList$dropRight$lambda$_87_0; - var$2.$_01066 = $this; - var$2.$_1362 = $n; + var$2.$_01052 = $this; + var$2.$_1358 = $n; $this = sci_LazyList__init_(var$2); } } @@ -48587,23 +48568,23 @@ sci_LazyList_zipAll = ($this, $that, $thisElem, $thatElem) => { $that = sci_LazyList$_empty(sci_LazyList$_MODULE$); } else { $thatElem = new sci_LazyList$zipAll$lambda$_80_0; - $thatElem.$_0416 = $thisElem; + $thatElem.$_0407 = $thisElem; var$4 = new sci_LazyList$zipAll$lambda$_80_1; - var$4.$_0166 = $thatElem; + var$4.$_0161 = $thatElem; $that = sci_LazyList_zip(sci_LazyList__init_(var$4), $that); } } else if ($that.$length()) { var$4 = new sci_LazyList$zipAll$lambda$_80_2; - var$4.$_0816 = $this; - var$4.$_1279 = $that; - var$4.$_292 = $thisElem; - var$4.$_324 = $thatElem; + var$4.$_0790 = $this; + var$4.$_1264 = $that; + var$4.$_287 = $thisElem; + var$4.$_327 = $thatElem; $that = sci_LazyList__init_(var$4); } else { $that = new sci_LazyList$zipAll$lambda$_80_3; - $that.$_0300 = $thatElem; + $that.$_0284 = $thatElem; $thisElem = new sci_LazyList$zipAll$lambda$_80_4; - $thisElem.$_0615 = $that; + $thisElem.$_0607 = $that; $that = sci_LazyList_zip($this, sci_LazyList__init_($thisElem)); } return $that; @@ -48623,8 +48604,8 @@ sci_LazyList_flatten = ($this, $asIterable) => { } else { var$2 = sr_ObjectRef__init_($this); var$3 = new sci_LazyList$flatten$lambda$_76_0; - var$3.$_0938 = var$2; - var$3.$_1330 = $asIterable; + var$3.$_0928 = var$2; + var$3.$_1320 = $asIterable; $asIterable = sci_LazyList__init_(var$3); } return $asIterable; @@ -48637,8 +48618,8 @@ sci_LazyList_flatMap = ($this, $f) => { } else { var$2 = sr_ObjectRef__init_($this); var$3 = new sci_LazyList$flatMap$lambda$_75_0; - var$3.$_0514 = var$2; - var$3.$_1179 = $f; + var$3.$_0501 = var$2; + var$3.$_1171 = $f; $f = sci_LazyList__init_(var$3); } return $f; @@ -48660,8 +48641,8 @@ sci_LazyList_map = ($this, $f) => { $f = sci_LazyList$_empty(sci_LazyList$_MODULE$); } else { var$2 = new sci_LazyList$map$lambda$_69_0; - var$2.$_0224 = $this; - var$2.$_186 = $f; + var$2.$_0215 = $this; + var$2.$_183 = $f; $f = sci_LazyList__init_(var$2); } return $f; @@ -48669,8 +48650,8 @@ sci_LazyList_map = ($this, $f) => { sci_LazyList_prepended = ($this, $elem) => { let var$2; var$2 = new sci_LazyList$prepended$lambda$_67_0; - var$2.$_0515 = $this; - var$2.$_1180 = $elem; + var$2.$_0502 = $this; + var$2.$_1172 = $elem; return sci_LazyList__init_(var$2); }, sci_LazyList_filterNot = ($this, $pred) => { @@ -48681,9 +48662,9 @@ sci_LazyList_filterNot = ($this, $pred) => { } else { var$2 = sr_ObjectRef__init_($this); var$3 = new sci_LazyList$filterNot$lambda$_65_0; - var$3.$_0400 = var$2; - var$3.$_1145 = $pred; - var$3.$_251 = 1; + var$3.$_0388 = var$2; + var$3.$_1136 = $pred; + var$3.$_248 = 1; $pred = sci_LazyList__init_(var$3); } return $pred; @@ -48696,9 +48677,9 @@ sci_LazyList_filter = ($this, $pred) => { } else { var$2 = sr_ObjectRef__init_($this); var$3 = new sci_LazyList$filter$lambda$_64_0; - var$3.$_0948 = var$2; - var$3.$_1332 = $pred; - var$3.$_2114 = 0; + var$3.$_0937 = var$2; + var$3.$_1321 = $pred; + var$3.$_2109 = 0; $pred = sci_LazyList__init_(var$3); } return $pred; @@ -48707,14 +48688,14 @@ let sci_LazyList_appended = ($this, $elem) => { let var$2, var$3; if ($this.$scala$collection$immutable$LazyList$$stateEvaluated && (sci_LazyList_scala$collection$immutable$LazyList$$state($this) !== sci_LazyList$State$Empty$_MODULE$ ? 0 : 1) ? 1 : 0) { var$2 = new sci_LazyList$appended$lambda$_58_2; - var$2.$_0114 = $elem; + var$2.$_0105 = $elem; var$3 = sci_LazyList__init_(var$2); } else { var$2 = new sci_LazyList$appended$lambda$_58_0; - var$2.$_01158 = $elem; + var$2.$_01140 = $elem; $elem = new sci_LazyList$appended$lambda$_58_1; - $elem.$_0625 = $this; - $elem.$_1213 = var$2; + $elem.$_0615 = $this; + $elem.$_1207 = var$2; var$3 = sci_LazyList__init_($elem); } return var$3; @@ -48726,10 +48707,10 @@ sci_LazyList_appendedAll = ($this, $suffix) => { var$2 = sci_LazyList$_from(sci_LazyList$_MODULE$, $suffix); } else { var$2 = new sci_LazyList$appendedAll$lambda$_57_0; - var$2.$_039 = $suffix; + var$2.$_041 = $suffix; $suffix = new sci_LazyList$appendedAll$lambda$_57_1; - $suffix.$_0565 = $this; - $suffix.$_1193 = var$2; + $suffix.$_0546 = $this; + $suffix.$_1180 = var$2; var$2 = sci_LazyList__init_($suffix); } return var$2; @@ -48749,8 +48730,8 @@ sci_LazyList_$anonfun$lazyAppendedAll$1 = ($$this, $suffix$1) => { if ($lazyAppendedAll_this === null) $rt_throw(null); $lazyAppendedAll_scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0; - $lazyAppendedAll_scala$collection$immutable$LazyList$$newLL_state.$_0873 = $lazyAppendedAll_this; - $lazyAppendedAll_scala$collection$immutable$LazyList$$newLL_state.$_1300 = $suffix$1; + $lazyAppendedAll_scala$collection$immutable$LazyList$$newLL_state.$_0856 = $lazyAppendedAll_this; + $lazyAppendedAll_scala$collection$immutable$LazyList$$newLL_state.$_1288 = $suffix$1; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList__init_($lazyAppendedAll_scala$collection$immutable$LazyList$$newLL_state)); } $$this = $suffix$1.$apply4(); @@ -48770,8 +48751,8 @@ sci_LazyList_$anonfun$mapImpl$1 = ($$this, $f$2) => { if ($mapImpl_this === null) $rt_throw(null); $mapImpl_scala$collection$immutable$LazyList$$newLL_state = new sci_LazyList$$anonfun$mapImpl$1$lambda$_161_0; - $mapImpl_scala$collection$immutable$LazyList$$newLL_state.$_0184 = $mapImpl_this; - $mapImpl_scala$collection$immutable$LazyList$$newLL_state.$_170 = $f$2; + $mapImpl_scala$collection$immutable$LazyList$$newLL_state.$_0180 = $mapImpl_this; + $mapImpl_scala$collection$immutable$LazyList$$newLL_state.$_165 = $f$2; return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, sci_LazyList__init_($mapImpl_scala$collection$immutable$LazyList$$newLL_state)); }, sci_LazyList_$anonfun$takeImpl$1 = ($$this, $n$2) => { @@ -48786,8 +48767,8 @@ sci_LazyList_$anonfun$takeImpl$1 = ($$this, $n$2) => { $scala$collection$immutable$LazyList$$sCons_tl = sci_LazyList$_empty(sci_LazyList$_MODULE$); } else { var$5 = new sci_LazyList$takeImpl$lambda$_90_0; - var$5.$_048 = $$this; - var$5.$_120 = $n$2; + var$5.$_053 = $$this; + var$5.$_121 = $n$2; $scala$collection$immutable$LazyList$$sCons_tl = sci_LazyList__init_(var$5); } return sci_LazyList$State$Cons__init_($scala$collection$immutable$LazyList$$sCons_hd, $scala$collection$immutable$LazyList$$sCons_tl); @@ -48827,7 +48808,7 @@ jm_MathContext__init_0 = ($this, $precision, $roundingMode) => { jm_MathContext_$callClinit(); if ($precision < 0) { $roundingMode = new jl_IllegalArgumentException; - jl_Throwable__init_0($roundingMode, $rt_s(831)); + jl_Throwable__init_($roundingMode, $rt_s(831)); $rt_throw($roundingMode); } if ($roundingMode !== null) { @@ -48836,7 +48817,7 @@ jm_MathContext__init_0 = ($this, $precision, $roundingMode) => { return; } var$3 = new jl_NullPointerException; - jl_Throwable__init_0(var$3, $rt_s(832)); + jl_Throwable__init_(var$3, $rt_s(832)); $rt_throw(var$3); }, jm_MathContext__init_ = (var_0, var_1) => { @@ -49053,7 +49034,7 @@ jm_BigInteger_testBit = ($this, $n) => { return !($this.$digits.data[0] & 1) ? 0 : 1; if ($n < 0) { var$2 = new jl_ArithmeticException; - jl_Throwable__init_0(var$2, $rt_s(833)); + jl_Throwable__init_(var$2, $rt_s(833)); $rt_throw(var$2); } $intCount = $n >> 5; @@ -49139,7 +49120,7 @@ jm_BigInteger_pow = ($this, $exp) => { let var$2, $x, var$4, var$5, var$6, var$7, var$8, var$9, var$10; if ($exp < 0) { var$2 = new jl_ArithmeticException; - jl_Throwable__init_0(var$2, $rt_s(834)); + jl_Throwable__init_(var$2, $rt_s(834)); $rt_throw(var$2); } if (!$exp) @@ -49203,7 +49184,7 @@ jm_BigInteger_divideAndRemainder = ($this, $divisor) => { $divisorSign = $divisor.$sign; if (!$divisorSign) { $divisor = new jl_ArithmeticException; - jl_Throwable__init_0($divisor, $rt_s(835)); + jl_Throwable__init_($divisor, $rt_s(835)); $rt_throw($divisor); } $divisorLen = $divisor.$numberLength; @@ -49257,7 +49238,7 @@ jm_BigInteger_divide = ($this, $divisor) => { $divisorSign = $divisor.$sign; if (!$divisorSign) { $divisor = new jl_ArithmeticException; - jl_Throwable__init_0($divisor, $rt_s(835)); + jl_Throwable__init_($divisor, $rt_s(835)); $rt_throw($divisor); } $divisorLen = $divisor.$numberLength; @@ -49296,7 +49277,7 @@ jm_BigInteger_remainder = ($this, $divisor) => { let $thisLen, $divisorLen, $qLen, $resDigits, var$6, var$7, var$8, var$9, $result; if (!$divisor.$sign) { $divisor = new jl_ArithmeticException; - jl_Throwable__init_0($divisor, $rt_s(835)); + jl_Throwable__init_($divisor, $rt_s(835)); $rt_throw($divisor); } $thisLen = $this.$numberLength; @@ -49421,13 +49402,13 @@ sci_LazyList$State$Empty$__clinit_ = () => { sci_LazyList$State$Empty$_tail = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(836)); + jl_Throwable__init_(var$1, $rt_s(836)); $rt_throw(var$1); }, sci_LazyList$State$Empty$_head = $this => { let var$1; var$1 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$1, $rt_s(837)); + jl_Throwable__init_(var$1, $rt_s(837)); $rt_throw(var$1); }; function jm_RoundingMode() { @@ -49527,7 +49508,7 @@ function jl_ClassValue$Item() { let a = this; jl_Object.call(a); a.$clazz = null; a.$value35 = null; - a.$next17 = null; + a.$next15 = null; a.$this$040 = null; } function scm_HashSet$HashSetIterator() { @@ -49535,7 +49516,7 @@ function scm_HashSet$HashSetIterator() { a.$i6 = 0; a.$node3 = null; a.$len4 = 0; - a.$$outer22 = null; + a.$$outer19 = null; } let scm_HashSet$HashSetIterator_hasNext = $this => { let var$1, $n; @@ -49545,7 +49526,7 @@ let scm_HashSet$HashSetIterator_hasNext = $this => { var$1 = $this.$i6; if (var$1 >= $this.$len4) break; - $n = $this.$$outer22.$scala$collection$mutable$HashSet$$table.data[var$1]; + $n = $this.$$outer19.$scala$collection$mutable$HashSet$$table.data[var$1]; $this.$i6 = var$1 + 1 | 0; if ($n === null) continue; @@ -49565,12 +49546,12 @@ scm_HashSet$HashSetIterator_next = $this => { return $r; }, scm_HashSet$HashSetIterator_scala$collection$mutable$HashSet$HashSetIterator$$$outer = $this => { - return $this.$$outer22; + return $this.$$outer19; }, scm_HashSet$HashSetIterator__init_ = ($this, $$outer) => { if ($$outer === null) $rt_throw(null); - $this.$$outer22 = $$outer; + $this.$$outer19 = $$outer; $this.$i6 = 0; $this.$node3 = null; $this.$len4 = $$outer.$scala$collection$mutable$HashSet$$table.data.length; @@ -49581,29 +49562,29 @@ scm_HashSet$$anon$1_extract = ($this, $nd) => { }; function onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_0() { jl_Object.call(this); - this.$_0996 = null; + this.$_0988 = null; } let onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_0_apply = (var$0, var$1) => { let var$2; - var$2 = var$0.$_0996; + var$2 = var$0.$_0988; onciu_StepSequencer$MutableDirectedGraph$_$callClinit(); onciu_StepSequencer$MutableDirectedGraph_add(var$2, var$1); return sr_BoxedUnit_UNIT; }; function onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_1() { let a = this; jl_Object.call(a); - a.$_0379 = null; - a.$_1138 = null; + a.$_0366 = null; + a.$_1130 = null; } let onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_1_apply = (var$0, var$1) => { let var$2, var$3, var$4; - var$2 = var$0.$_0379; - var$3 = var$0.$_1138; + var$2 = var$0.$_0366; + var$3 = var$0.$_1130; onciu_StepSequencer$MutableDirectedGraph$_$callClinit(); var$2 = onciu_StepSequencer$MutableDirectedGraph_outgoing(var$2, var$1); var$4 = new onciu_StepSequencer$MutableDirectedGraph$$$anonfun$copyOf$2$lambda$_4_0; - var$4.$_0574 = var$3; - var$4.$_1197 = var$1; + var$4.$_0557 = var$3; + var$4.$_1188 = var$1; var$2.$foreach(var$4); return sr_BoxedUnit_UNIT; }; @@ -49615,7 +49596,6 @@ function jnci_BufferedDecoder() { let jnci_BufferedDecoder__init_ = ($this, $cs, $averageCharsPerByte, $maxCharsPerByte) => { let var$4; $this.$replacement0 = $rt_s(846); - jnc_CodingErrorAction_$callClinit(); var$4 = jnc_CodingErrorAction_REPORT; $this.$malformedAction = var$4; $this.$unmappableAction = var$4; @@ -49623,8 +49603,8 @@ let jnci_BufferedDecoder__init_ = ($this, $cs, $averageCharsPerByte, $maxCharsPe $cs = new jl_IllegalArgumentException; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append6(jl_StringBuilder_append(var$4, $rt_s(847)), $averageCharsPerByte); - jl_Throwable__init_0($cs, jl_AbstractStringBuilder_toString(var$4)); + jl_StringBuilder_append5(jl_StringBuilder_append(var$4, $rt_s(847)), $averageCharsPerByte); + jl_Throwable__init_($cs, jl_AbstractStringBuilder_toString(var$4)); $rt_throw($cs); } if ($maxCharsPerByte > 0.0) { @@ -49638,8 +49618,8 @@ let jnci_BufferedDecoder__init_ = ($this, $cs, $averageCharsPerByte, $maxCharsPe $cs = new jl_IllegalArgumentException; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append6(jl_StringBuilder_append(var$4, $rt_s(848)), $maxCharsPerByte); - jl_Throwable__init_0($cs, jl_AbstractStringBuilder_toString(var$4)); + jl_StringBuilder_append5(jl_StringBuilder_append(var$4, $rt_s(848)), $maxCharsPerByte); + jl_Throwable__init_($cs, jl_AbstractStringBuilder_toString(var$4)); $rt_throw($cs); }, jnci_BufferedDecoder_decodeLoop = ($this, $in, $out) => { @@ -49843,50 +49823,73 @@ sc_ArrayOps$ArrayIterator__init_0 = var_0 => { sc_ArrayOps$ArrayIterator__init_(var_1, var_0); return var_1; }; -function sc_ArrayOps$ArrayIterator$mcJ$sp() { +function sc_ArrayOps$ArrayIterator$mcI$sp() { sc_ArrayOps$ArrayIterator.call(this); - this.$xs$mcJ$sp = null; + this.$xs$mcI$sp = null; } -let sc_ArrayOps$ArrayIterator$mcJ$sp_next = $this => { +let sc_ArrayOps$ArrayIterator$mcI$sp_next = $this => { let var$1, var$2, var$3; - if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcJ$sp.data.length) + if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcI$sp.data.length) sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - var$1 = $this.$xs$mcJ$sp.data; + var$1 = $this.$xs$mcI$sp.data; var$2 = $this.$scala$collection$ArrayOps$ArrayIterator$$pos; var$3 = var$1[var$2]; $this.$scala$collection$ArrayOps$ArrayIterator$$pos = var$2 + 1 | 0; - return jl_Long_valueOf(var$3); + return jl_Integer_valueOf(var$3); }, -sc_ArrayOps$ArrayIterator$mcJ$sp__init_0 = ($this, $xs$mcJ$sp) => { - $this.$xs$mcJ$sp = $xs$mcJ$sp; - sc_ArrayOps$ArrayIterator__init_($this, $xs$mcJ$sp); +sc_ArrayOps$ArrayIterator$mcI$sp__init_0 = ($this, $xs$mcI$sp) => { + $this.$xs$mcI$sp = $xs$mcI$sp; + sc_ArrayOps$ArrayIterator__init_($this, $xs$mcI$sp); }, -sc_ArrayOps$ArrayIterator$mcJ$sp__init_ = var_0 => { - let var_1 = new sc_ArrayOps$ArrayIterator$mcJ$sp(); - sc_ArrayOps$ArrayIterator$mcJ$sp__init_0(var_1, var_0); +sc_ArrayOps$ArrayIterator$mcI$sp__init_ = var_0 => { + let var_1 = new sc_ArrayOps$ArrayIterator$mcI$sp(); + sc_ArrayOps$ArrayIterator$mcI$sp__init_0(var_1, var_0); return var_1; }; -function sc_ArrayOps$ArrayIterator$mcS$sp() { +function sc_ArrayOps$ArrayIterator$mcF$sp() { sc_ArrayOps$ArrayIterator.call(this); - this.$xs$mcS$sp = null; + this.$xs$mcF$sp = null; } -let sc_ArrayOps$ArrayIterator$mcS$sp_next = $this => { +let sc_ArrayOps$ArrayIterator$mcF$sp_next = $this => { let var$1, var$2, var$3; - if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcS$sp.data.length) + if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcF$sp.data.length) sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - var$1 = $this.$xs$mcS$sp.data; + var$1 = $this.$xs$mcF$sp.data; var$2 = $this.$scala$collection$ArrayOps$ArrayIterator$$pos; var$3 = var$1[var$2]; $this.$scala$collection$ArrayOps$ArrayIterator$$pos = var$2 + 1 | 0; - return jl_Short_valueOf(var$3); + return jl_Float_valueOf(var$3); }, -sc_ArrayOps$ArrayIterator$mcS$sp__init_0 = ($this, $xs$mcS$sp) => { - $this.$xs$mcS$sp = $xs$mcS$sp; - sc_ArrayOps$ArrayIterator__init_($this, $xs$mcS$sp); +sc_ArrayOps$ArrayIterator$mcF$sp__init_0 = ($this, $xs$mcF$sp) => { + $this.$xs$mcF$sp = $xs$mcF$sp; + sc_ArrayOps$ArrayIterator__init_($this, $xs$mcF$sp); }, -sc_ArrayOps$ArrayIterator$mcS$sp__init_ = var_0 => { - let var_1 = new sc_ArrayOps$ArrayIterator$mcS$sp(); - sc_ArrayOps$ArrayIterator$mcS$sp__init_0(var_1, var_0); +sc_ArrayOps$ArrayIterator$mcF$sp__init_ = var_0 => { + let var_1 = new sc_ArrayOps$ArrayIterator$mcF$sp(); + sc_ArrayOps$ArrayIterator$mcF$sp__init_0(var_1, var_0); + return var_1; +}; +function sc_ArrayOps$ArrayIterator$mcD$sp() { + sc_ArrayOps$ArrayIterator.call(this); + this.$xs$mcD$sp = null; +} +let sc_ArrayOps$ArrayIterator$mcD$sp_next = $this => { + let var$1, var$2, var$3; + if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcD$sp.data.length) + sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + var$1 = $this.$xs$mcD$sp.data; + var$2 = $this.$scala$collection$ArrayOps$ArrayIterator$$pos; + var$3 = var$1[var$2]; + $this.$scala$collection$ArrayOps$ArrayIterator$$pos = var$2 + 1 | 0; + return jl_Double_valueOf(var$3); +}, +sc_ArrayOps$ArrayIterator$mcD$sp__init_0 = ($this, $xs$mcD$sp) => { + $this.$xs$mcD$sp = $xs$mcD$sp; + sc_ArrayOps$ArrayIterator__init_($this, $xs$mcD$sp); +}, +sc_ArrayOps$ArrayIterator$mcD$sp__init_ = var_0 => { + let var_1 = new sc_ArrayOps$ArrayIterator$mcD$sp(); + sc_ArrayOps$ArrayIterator$mcD$sp__init_0(var_1, var_0); return var_1; }; function sc_ArrayOps$ArrayIterator$mcV$sp() { @@ -49908,29 +49911,6 @@ sc_ArrayOps$ArrayIterator$mcV$sp__init_ = var_0 => { sc_ArrayOps$ArrayIterator$mcV$sp__init_0(var_1, var_0); return var_1; }; -function sc_ArrayOps$ArrayIterator$mcF$sp() { - sc_ArrayOps$ArrayIterator.call(this); - this.$xs$mcF$sp = null; -} -let sc_ArrayOps$ArrayIterator$mcF$sp_next = $this => { - let var$1, var$2, var$3; - if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcF$sp.data.length) - sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - var$1 = $this.$xs$mcF$sp.data; - var$2 = $this.$scala$collection$ArrayOps$ArrayIterator$$pos; - var$3 = var$1[var$2]; - $this.$scala$collection$ArrayOps$ArrayIterator$$pos = var$2 + 1 | 0; - return jl_Float_valueOf(var$3); -}, -sc_ArrayOps$ArrayIterator$mcF$sp__init_0 = ($this, $xs$mcF$sp) => { - $this.$xs$mcF$sp = $xs$mcF$sp; - sc_ArrayOps$ArrayIterator__init_($this, $xs$mcF$sp); -}, -sc_ArrayOps$ArrayIterator$mcF$sp__init_ = var_0 => { - let var_1 = new sc_ArrayOps$ArrayIterator$mcF$sp(); - sc_ArrayOps$ArrayIterator$mcF$sp__init_0(var_1, var_0); - return var_1; -}; function sc_ArrayOps$ArrayIterator$mcB$sp() { sc_ArrayOps$ArrayIterator.call(this); this.$xs$mcB$sp = null; @@ -49954,50 +49934,27 @@ sc_ArrayOps$ArrayIterator$mcB$sp__init_ = var_0 => { sc_ArrayOps$ArrayIterator$mcB$sp__init_0(var_1, var_0); return var_1; }; -function sc_ArrayOps$ArrayIterator$mcI$sp() { - sc_ArrayOps$ArrayIterator.call(this); - this.$xs$mcI$sp = null; -} -let sc_ArrayOps$ArrayIterator$mcI$sp_next = $this => { - let var$1, var$2, var$3; - if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcI$sp.data.length) - sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - var$1 = $this.$xs$mcI$sp.data; - var$2 = $this.$scala$collection$ArrayOps$ArrayIterator$$pos; - var$3 = var$1[var$2]; - $this.$scala$collection$ArrayOps$ArrayIterator$$pos = var$2 + 1 | 0; - return jl_Integer_valueOf(var$3); -}, -sc_ArrayOps$ArrayIterator$mcI$sp__init_0 = ($this, $xs$mcI$sp) => { - $this.$xs$mcI$sp = $xs$mcI$sp; - sc_ArrayOps$ArrayIterator__init_($this, $xs$mcI$sp); -}, -sc_ArrayOps$ArrayIterator$mcI$sp__init_ = var_0 => { - let var_1 = new sc_ArrayOps$ArrayIterator$mcI$sp(); - sc_ArrayOps$ArrayIterator$mcI$sp__init_0(var_1, var_0); - return var_1; -}; -function sc_ArrayOps$ArrayIterator$mcD$sp() { +function sc_ArrayOps$ArrayIterator$mcS$sp() { sc_ArrayOps$ArrayIterator.call(this); - this.$xs$mcD$sp = null; + this.$xs$mcS$sp = null; } -let sc_ArrayOps$ArrayIterator$mcD$sp_next = $this => { +let sc_ArrayOps$ArrayIterator$mcS$sp_next = $this => { let var$1, var$2, var$3; - if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcD$sp.data.length) + if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcS$sp.data.length) sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - var$1 = $this.$xs$mcD$sp.data; + var$1 = $this.$xs$mcS$sp.data; var$2 = $this.$scala$collection$ArrayOps$ArrayIterator$$pos; var$3 = var$1[var$2]; $this.$scala$collection$ArrayOps$ArrayIterator$$pos = var$2 + 1 | 0; - return jl_Double_valueOf(var$3); + return jl_Short_valueOf(var$3); }, -sc_ArrayOps$ArrayIterator$mcD$sp__init_0 = ($this, $xs$mcD$sp) => { - $this.$xs$mcD$sp = $xs$mcD$sp; - sc_ArrayOps$ArrayIterator__init_($this, $xs$mcD$sp); +sc_ArrayOps$ArrayIterator$mcS$sp__init_0 = ($this, $xs$mcS$sp) => { + $this.$xs$mcS$sp = $xs$mcS$sp; + sc_ArrayOps$ArrayIterator__init_($this, $xs$mcS$sp); }, -sc_ArrayOps$ArrayIterator$mcD$sp__init_ = var_0 => { - let var_1 = new sc_ArrayOps$ArrayIterator$mcD$sp(); - sc_ArrayOps$ArrayIterator$mcD$sp__init_0(var_1, var_0); +sc_ArrayOps$ArrayIterator$mcS$sp__init_ = var_0 => { + let var_1 = new sc_ArrayOps$ArrayIterator$mcS$sp(); + sc_ArrayOps$ArrayIterator$mcS$sp__init_0(var_1, var_0); return var_1; }; function sc_ArrayOps$ArrayIterator$mcC$sp() { @@ -50046,12 +50003,35 @@ sc_ArrayOps$ArrayIterator$mcZ$sp__init_ = var_0 => { sc_ArrayOps$ArrayIterator$mcZ$sp__init_0(var_1, var_0); return var_1; }; +function sc_ArrayOps$ArrayIterator$mcJ$sp() { + sc_ArrayOps$ArrayIterator.call(this); + this.$xs$mcJ$sp = null; +} +let sc_ArrayOps$ArrayIterator$mcJ$sp_next = $this => { + let var$1, var$2, var$3; + if ($this.$scala$collection$ArrayOps$ArrayIterator$$pos >= $this.$xs$mcJ$sp.data.length) + sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + var$1 = $this.$xs$mcJ$sp.data; + var$2 = $this.$scala$collection$ArrayOps$ArrayIterator$$pos; + var$3 = var$1[var$2]; + $this.$scala$collection$ArrayOps$ArrayIterator$$pos = var$2 + 1 | 0; + return jl_Long_valueOf(var$3); +}, +sc_ArrayOps$ArrayIterator$mcJ$sp__init_0 = ($this, $xs$mcJ$sp) => { + $this.$xs$mcJ$sp = $xs$mcJ$sp; + sc_ArrayOps$ArrayIterator__init_($this, $xs$mcJ$sp); +}, +sc_ArrayOps$ArrayIterator$mcJ$sp__init_ = var_0 => { + let var_1 = new sc_ArrayOps$ArrayIterator$mcJ$sp(); + sc_ArrayOps$ArrayIterator$mcJ$sp__init_0(var_1, var_0); + return var_1; +}; function sci_HashCollisionSetNode$equals$lambda$_20_0() { jl_Object.call(this); - this.$_01073 = null; + this.$_01055 = null; } let sci_HashCollisionSetNode$equals$lambda$_20_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sc_AbstractSeq_contains(var$0.$_01073, var$1)); + return jl_Boolean_valueOf(sc_AbstractSeq_contains(var$0.$_01055, var$1)); }; function jur_AbstractCharClass$LazyJavaLowerCase$1() { jur_AbstractCharClass.call(this); @@ -50338,14 +50318,14 @@ jur_UnicodeCategoryScope_contains = ($this, $ch) => { }; function ju_AbstractList$1() { let a = this; jl_Object.call(a); - a.$index14 = 0; + a.$index13 = 0; a.$modCount3 = 0; a.$size12 = 0; a.$removeIndex = 0; a.$this$012 = null; } let ju_AbstractList$1_hasNext = $this => { - return $this.$index14 >= $this.$size12 ? 0 : 1; + return $this.$index13 >= $this.$size12 ? 0 : 1; }, ju_AbstractList$1_next = $this => { let var$1, var$2, var$3; @@ -50353,12 +50333,12 @@ ju_AbstractList$1_next = $this => { var$2 = $this.$this$012; if (var$1 < var$2.$modCount) { var$2 = new ju_ConcurrentModificationException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } - var$3 = $this.$index14; + var$3 = $this.$index13; $this.$removeIndex = var$3; - $this.$index14 = var$3 + 1 | 0; + $this.$index13 = var$3 + 1 | 0; return var$2.$get0(var$3); }; function onciu_StepSequencer$AdjacencyList() { @@ -50469,7 +50449,8 @@ sci_Range_gap = $this => { return Long_sub(Long_fromInt($this.$end1), Long_fromInt($this.$start4)); }, sci_Range_iterableFactory = $this => { - return sci_IndexedSeq_iterableFactory$($this); + sci_IndexedSeq$_$callClinit(); + return sci_IndexedSeq$_MODULE$; }, sci_Range__init_ = ($this, $start, $end, $step) => { let $remainder, var$5, $len; @@ -50493,7 +50474,7 @@ sci_Range__init_ = ($this, $start, $end, $step) => { $this.$isEmpty0 = $remainder; if (!$step) { var$5 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$5, $rt_s(850)); + jl_Throwable__init_(var$5, $rt_s(850)); $rt_throw(var$5); } if ($remainder) @@ -50537,13 +50518,13 @@ function oncias_SemanticError() { let a = this; jl_Object.call(a); a.$gqlStatusObject1 = null; a.$msg0 = null; - a.$position28 = null; + a.$position35 = null; } let oncias_SemanticError_msg = $this => { return $this.$msg0; }, oncias_SemanticError_position = $this => { - return $this.$position28; + return $this.$position35; }, oncias_SemanticError_productPrefix = $this => { return $rt_s(851); @@ -50558,7 +50539,7 @@ oncias_SemanticError_productElement = ($this, $x$1) => { case 1: return $this.$msg0; case 2: - return $this.$position28; + return $this.$position35; default: } return sr_Statics_ioobe($x$1); @@ -50585,7 +50566,7 @@ oncias_SemanticError_equals = ($this, $x$1) => { var$2 = $this.$gqlStatusObject1; var$3 = $x$1.$gqlStatusObject1; if (var$2 !== null) { - if (!ong_CommonGqlStatusObjectImplementation_equals(var$2, var$3)) + if (!ong_ErrorGqlStatusObjectImplementation_equals(var$2, var$3)) break b; else break d; @@ -50605,8 +50586,8 @@ oncias_SemanticError_equals = ($this, $x$1) => { if (var$3 !== null) break b; } - var$3 = $this.$position28; - $x$1 = $x$1.$position28; + var$3 = $this.$position35; + $x$1 = $x$1.$position35; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; @@ -50625,16 +50606,16 @@ oncias_SemanticError_equals = ($this, $x$1) => { return var$4; }, oncias_SemanticError_withMsg = ($this, $message) => { - return oncias_SemanticError__init_($this.$gqlStatusObject1, $message, $this.$position28); + return oncias_SemanticError__init_0($this.$gqlStatusObject1, $message, $this.$position35); }, -oncias_SemanticError__init_0 = ($this, $gqlStatusObject, $msg, $position) => { +oncias_SemanticError__init_ = ($this, $gqlStatusObject, $msg, $position) => { $this.$gqlStatusObject1 = $gqlStatusObject; $this.$msg0 = $msg; - $this.$position28 = $position; + $this.$position35 = $position; }, -oncias_SemanticError__init_ = (var_0, var_1, var_2) => { +oncias_SemanticError__init_0 = (var_0, var_1, var_2) => { let var_3 = new oncias_SemanticError(); - oncias_SemanticError__init_0(var_3, var_0, var_1, var_2); + oncias_SemanticError__init_(var_3, var_0, var_1, var_2); return var_3; }, jur_MatchResult = $rt_classWithoutFields(0); @@ -50642,7 +50623,7 @@ function jur_Matcher() { let a = this; jl_Object.call(a); a.$pat = null; a.$start9 = null; - a.$string2 = null; + a.$string1 = null; a.$matchResult = null; a.$leftBound0 = 0; a.$rightBound0 = 0; @@ -50652,7 +50633,7 @@ function jur_Matcher() { a.$replacementParts = null; } let jur_Matcher_processReplacement = ($this, $replacement) => { - let $res, $sb, $i, $repl, $index, $replacementPos, $nextBackSlashed, var$9, $group, $gr, $$je; + let $res, $sb, $i, $repl, $index, $replacementPos, $nextBackSlashed, var$9, $gr, $group, $$je; $res = $this.$replacement4; if ($res !== null && jl_String_equals($res, $replacement)) { if ($this.$replacementParts === null) @@ -50682,11 +50663,11 @@ let jur_Matcher_processReplacement = ($this, $replacement) => { var$9 = $repl.data; $i = var$9.length; if ($index >= $i) { - $group = $this.$replacementParts; - if ($group !== null) { + $replacement = $this.$replacementParts; + if ($replacement !== null) { $gr = $res.$length1; if ($replacementPos != $gr) - ju_ArrayList_add($group, jl_StringBuilder_substring($res, $replacementPos, $gr)); + ju_ArrayList_add($replacement, jl_StringBuilder_subSequence($res, $replacementPos, $gr)); } return jl_AbstractStringBuilder_toString($res); } @@ -50710,7 +50691,7 @@ let jur_Matcher_processReplacement = ($this, $replacement) => { $replacement = new jl_String; $index = $index + 1 | 0; jl_String__init_4($replacement, $repl, $index, 1); - $gr = jl_Integer_parseInt($replacement); + $gr = jl_Integer_parseInt0($replacement); if ($replacementPos == jl_StringBuilder_length($res)) break d; ju_ArrayList_add($this.$replacementParts, jl_StringBuilder_subSequence($res, $replacementPos, jl_StringBuilder_length($res))); @@ -50744,11 +50725,11 @@ let jur_Matcher_processReplacement = ($this, $replacement) => { $index = $index + 1 | 0; } $replacement = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($replacement); + jl_Throwable__init_0($replacement); $rt_throw($replacement); } $replacement = new jl_IllegalArgumentException; - jl_Throwable__init_0($replacement, $rt_s(4)); + jl_Throwable__init_($replacement, $rt_s(4)); $rt_throw($replacement); }, jur_Matcher_replaceAll = ($this, $replacement) => { @@ -50756,36 +50737,36 @@ jur_Matcher_replaceAll = ($this, $replacement) => { $sb = new jl_StringBuffer; jl_AbstractStringBuilder__init_($sb); $this.$leftBound0 = 0; - var$3 = $this.$string2.$nativeString.length; + var$3 = $this.$string1.$nativeString.length; $this.$rightBound0 = var$3; - jur_MatchResultImpl_reset($this.$matchResult, $this.$string2, $this.$leftBound0, var$3); + jur_MatchResultImpl_reset($this.$matchResult, $this.$string1, $this.$leftBound0, var$3); $this.$appendPos = 0; $this.$replacement4 = null; $this.$matchResult.$previousMatch = (-1); while (jur_Matcher_find0($this)) { $this.$processedRepl = jur_Matcher_processReplacement($this, $replacement); - jl_AbstractStringBuilder_append1($sb, jl_String_substring($this.$string2, $this.$appendPos, jur_Matcher_start($this))); + jl_AbstractStringBuilder_append2($sb, jl_String_substring($this.$string1, $this.$appendPos, jur_Matcher_start($this))); jl_AbstractStringBuilder_append($sb, $this.$processedRepl); $this.$appendPos = jur_Matcher_end($this); } - $replacement = $this.$string2; - jl_AbstractStringBuilder_append1($sb, jl_String_substring($replacement, $this.$appendPos, $replacement.$nativeString.length)); + $replacement = $this.$string1; + jl_AbstractStringBuilder_append2($sb, jl_String_substring($replacement, $this.$appendPos, $replacement.$nativeString.length)); return jl_AbstractStringBuilder_toString($sb); }, jur_Matcher_group = ($this, $group) => { let var$2; var$2 = $this.$matchResult; - return jur_MatchResultImpl_start(var$2, $group) < 0 ? null : jl_String_substring(var$2.$string5, jur_MatchResultImpl_start(var$2, $group), jur_MatchResultImpl_end0(var$2, $group)); + return jur_MatchResultImpl_start(var$2, $group) < 0 ? null : jl_String_substring(var$2.$string4, jur_MatchResultImpl_start(var$2, $group), jur_MatchResultImpl_end0(var$2, $group)); }, jur_Matcher_find = ($this, $start) => { let $stringLength, var$3; - $stringLength = $this.$string2.$nativeString.length; + $stringLength = $this.$string1.$nativeString.length; if ($start >= 0 && $start <= $stringLength) { jur_MatchResultImpl_reset0($this.$matchResult); var$3 = $this.$matchResult; var$3.$mode5 = 1; jur_MatchResultImpl_setStartIndex(var$3, $start); - $start = $this.$start9.$find0($start, $this.$string2, $this.$matchResult); + $start = $this.$start9.$find0($start, $this.$string1, $this.$matchResult); if ($start == (-1)) $this.$matchResult.$hitEnd = 1; if ($start >= 0) { @@ -50799,12 +50780,12 @@ jur_Matcher_find = ($this, $start) => { return 0; } var$3 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_0(var$3, jl_String_valueOf0($start)); + jl_Throwable__init_(var$3, jl_String_valueOf0($start)); $rt_throw(var$3); }, jur_Matcher_find0 = $this => { let $length, var$2, var$3; - $length = $this.$string2.$nativeString.length; + $length = $this.$string1.$nativeString.length; var$2 = $this.$matchResult; if (!var$2.$transparentBounds) $length = $this.$rightBound0; @@ -50828,7 +50809,7 @@ jur_Matcher_matches = $this => { jur_MatchResultImpl_setStartIndex(var$2, var$1); var$2 = $this.$start9; var$3 = $this.$matchResult; - if (var$2.$matches1(var$1, $this.$string2, var$3) < 0) + if (var$2.$matches1(var$1, $this.$string1, var$3) < 0) var$4 = 0; else { jur_MatchResultImpl_finalizeMatch(var$3); @@ -50891,8 +50872,8 @@ scm_ListBuffer_iterator = $this => { var$1 = new scm_MutationTracker$CheckedIterator; var$2 = $this.$first0.$iterator0(); var$3 = new scm_ListBuffer$iterator$lambda$_59_0; - var$3.$_0251 = $this; - var$1.$underlying29 = var$2; + var$3.$_0238 = $this; + var$1.$underlying28 = var$2; var$1.$mutationCount4 = var$3; var$1.$expectedCount0 = scm_ListBuffer$iterator$lambda$_59_0_apply$mcI$sp(var$3); return var$1; @@ -50938,7 +50919,7 @@ scm_ListBuffer_scala$collection$mutable$ListBuffer$$freshFrom = ($this, $xs) => $this.$first0 = $last0; while ($it.$hasNext()) { $last1 = sci_$colon$colon__init_($it.$next(), sci_Nil$_MODULE$); - $last0.$next6 = $last1; + $last0.$next5 = $last1; $len = $len + 1 | 0; $last0 = $last1; } @@ -50957,7 +50938,7 @@ scm_ListBuffer_addAll = ($this, $xs) => { if (!var$4) $this.$first0 = $fresh.$first0; else - $this.$last00.$next6 = $fresh.$first0; + $this.$last00.$next5 = $fresh.$first0; $this.$last00 = $fresh.$last00; $this.$len = var$4 + $fresh.$len | 0; } @@ -50977,7 +50958,7 @@ scm_ListBuffer_addOne = ($this, $elem) => { if (!var$3) $this.$first0 = var$2; else - $this.$last00.$next6 = var$2; + $this.$last00.$next5 = var$2; $this.$last00 = var$2; $this.$len = var$3 + 1 | 0; return $this; @@ -51049,7 +51030,7 @@ sci_Set$Set4_contains = ($this, $elem) => { sci_Set$Set4_iterator = $this => { let var$1; var$1 = new sci_Set$Set4$$anon$3; - var$1.$$outer42 = $this; + var$1.$$outer38 = $this; sci_Set$SetNIterator__init_(var$1, 4); return var$1; }, @@ -51190,20 +51171,20 @@ sc_AbstractView_stringPrefix = $this => { }; function sc_View$Map() { let a = this; sc_AbstractView.call(a); - a.$underlying18 = null; + a.$underlying17 = null; a.$f12 = null; } let sc_View$Map_iterator = $this => { - return ($this.$underlying18.$iterator0()).$map5($this.$f12); + return ($this.$underlying17.$iterator0()).$map5($this.$f12); }, sc_View$Map_knownSize = $this => { - return $this.$underlying18.$knownSize(); + return $this.$underlying17.$knownSize(); }, sc_View$Map_isEmpty = $this => { - return $this.$underlying18.$isEmpty(); + return $this.$underlying17.$isEmpty(); }, sc_View$Map__init_0 = ($this, $underlying, $f) => { - $this.$underlying18 = $underlying; + $this.$underlying17 = $underlying; $this.$f12 = $f; }, sc_View$Map__init_ = (var_0, var_1) => { @@ -51238,17 +51219,12 @@ sci_HashSet$_newBuilder = $this => { sci_HashSet$_from = ($this, $source) => { return $source instanceof sci_HashSet ? $source : !$source.$knownSize() ? sci_HashSet$_empty($this) : sci_HashSetBuilder_result(sci_HashSetBuilder_addAll(sci_HashSetBuilder__init_(), $source)); }, +s_Function6 = $rt_classWithoutFields(0), +sr_AbstractFunction6 = $rt_classWithoutFields(), oncifp_FieldSignature$ = $rt_classWithoutFields(sr_AbstractFunction6), oncifp_FieldSignature$_MODULE$ = null, -oncifp_FieldSignature$_$callClinit = () => { - oncifp_FieldSignature$_$callClinit = $rt_eraseClinit(oncifp_FieldSignature$); - oncifp_FieldSignature$__clinit_(); -}, oncifp_FieldSignature$__clinit_ = () => { - let var$1; - var$1 = new oncifp_FieldSignature$; - oncifp_FieldSignature$_$callClinit(); - oncifp_FieldSignature$_MODULE$ = var$1; + oncifp_FieldSignature$_MODULE$ = new oncifp_FieldSignature$; }, sci_Range$Exclusive = $rt_classWithoutFields(sci_Range), sci_Range$Exclusive_isInclusive = $this => { @@ -51293,11 +51269,11 @@ cnsa_SemanticAnalysisElement = $rt_classWithoutFields(0); function cnsa_SemanticAnalysisElementImpl() { let a = this; jl_Object.call(a); a.$message0 = null; - a.$position165 = null; + a.$position173 = null; } let cnsa_SemanticAnalysisElementImpl__init_0 = ($this, $message, $position) => { $this.$message0 = $message; - $this.$position165 = $position; + $this.$position173 = $position; }, cnsa_SemanticAnalysisElementImpl__init_ = (var_0, var_1) => { let var_2 = new cnsa_SemanticAnalysisElementImpl(); @@ -51305,10 +51281,10 @@ cnsa_SemanticAnalysisElementImpl__init_ = (var_0, var_1) => { return var_2; }, cnsa_SemanticAnalysisElementImpl_getPosition$exported$0 = var$0 => { - return var$0.$position165; + return var$0.$position173; }, cnsa_SemanticAnalysisElementImpl_setPosition$exported$1 = (var$0, var$1) => { - var$0.$position165 = var$1; + var$0.$position173 = var$1; }, cnsa_SemanticAnalysisElementImpl_setMessage$exported$2 = (var$0, var$1) => { var$0.$message0 = $rt_str(var$1); @@ -51321,7 +51297,7 @@ function jur_MatchResultImpl() { a.$groupBounds = null; a.$consumers = null; a.$compQuantCounters = null; - a.$string5 = null; + a.$string4 = null; a.$groupCount = 0; a.$valid = 0; a.$leftBound = 0; @@ -51383,13 +51359,13 @@ jur_MatchResultImpl_checkGroup = ($this, $group) => { let var$2; if (!$this.$valid) { var$2 = new jl_IllegalStateException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); } if ($group >= 0 && $group < $this.$groupCount) return; var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_0(var$2, jl_String_valueOf0($group)); + jl_Throwable__init_(var$2, jl_String_valueOf0($group)); $rt_throw(var$2); }, jur_MatchResultImpl_reset = ($this, $newSequence, $leftBound, $rightBound) => { @@ -51398,7 +51374,7 @@ jur_MatchResultImpl_reset = ($this, $newSequence, $leftBound, $rightBound) => { ju_Arrays_fill0($this.$groupBounds, (-1)); ju_Arrays_fill0($this.$consumers, (-1)); if ($newSequence !== null) - $this.$string5 = $newSequence; + $this.$string4 = $newSequence; if ($leftBound >= 0) { $this.$leftBound = $leftBound; $this.$rightBound = $rightBound; @@ -51472,6 +51448,11 @@ sci_MapBuilderImpl__init_ = () => { sci_MapBuilderImpl__init_0(var_0); return var_0; }, +oncifp_Transformer$ = $rt_classWithoutFields(), +oncifp_Transformer$_MODULE$ = null, +oncifp_Transformer$__clinit_ = () => { + oncifp_Transformer$_MODULE$ = new oncifp_Transformer$; +}, onm_Measurable = $rt_classWithoutFields(0), onv_AnyValue = $rt_classWithoutFields(), onv_AnyValue_equals = ($this, $other) => { @@ -51556,13 +51537,13 @@ let sci_HashMapBuilder_update = ($this, $mapNode, $key, $value, $originalHash, $ var$20 = $mapNode.$originalHashes1; if ($key0Hash < 0) { $mapNode = new jl_ArrayIndexOutOfBoundsException; - jl_Throwable__init_($mapNode); + jl_Throwable__init_0($mapNode); $rt_throw($mapNode); } $shift = var$20.data.length; if ($key0Hash > $shift) { $mapNode = new jl_ArrayIndexOutOfBoundsException; - jl_Throwable__init_($mapNode); + jl_Throwable__init_0($mapNode); $rt_throw($mapNode); } var$12 = $rt_createIntArray($shift + 1 | 0); @@ -51640,7 +51621,7 @@ sci_HashMapBuilder_addAll = ($this, $xs) => { if ($rt_isInstance($xs, sci_Map)) { $xs = $xs; $it = new sci_HashMapBuilder$addAll$lambda$_25_0; - $it.$_0172 = $this; + $it.$_0169 = $this; $xs.$foreachEntry($it); break a; } @@ -51679,50 +51660,59 @@ sci_HashMapBuilder__init_ = () => { sci_HashMapBuilder__init_0(var_0); return var_0; }; +function oncifp_Transformer$$anonfun$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$state$10 = null; + a.$cancellationChecker$10 = null; +} +let oncifp_Transformer$$anonfun$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !$rt_isInstance($x, oncir_ValidatingCondition) ? $default.$apply2($x) : $x.$apply38($this.$state$10, $this.$cancellationChecker$10); +}; function onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_0() { jl_Object.call(this); - this.$_0151 = null; + this.$_0144 = null; } let onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_0_apply = (var$0, var$1) => { var$1 = var$1; - return var$0.$_0151.$get2(var$1); + return var$0.$_0144.$get2(var$1); }; function onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_1() { let a = this; jl_Object.call(a); - a.$_0641 = null; - a.$_1218 = null; - a.$_272 = null; - a.$_322 = null; + a.$_0627 = null; + a.$_1210 = null; + a.$_270 = null; + a.$_323 = null; } let onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_1_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6, var$7; var$1 = var$1; - var$2 = var$0.$_0641; - var$3 = var$0.$_1218; - var$4 = var$0.$_272; - var$5 = var$0.$_322; + var$2 = var$0.$_0627; + var$3 = var$0.$_1210; + var$4 = var$0.$_270; + var$5 = var$0.$_323; var$6 = onciu_StepSequencer$MutableDirectedGraph_outgoing(var$2, var$1); var$7 = new onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_0; - var$7.$_0823 = var$3; + var$7.$_0795 = var$3; var$7 = var$6.$filterNot0(var$7); var$6 = new onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_1; - var$6.$_0180 = var$3; + var$6.$_0177 = var$3; var$7 = var$7.$filterNot0(var$6); var$6 = new onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_2; - var$6.$_0784 = var$4; - var$6.$_1263 = var$1; - var$6.$_287 = var$5; + var$6.$_0762 = var$4; + var$6.$_1254 = var$1; + var$6.$_285 = var$5; var$7.$foreach(var$6); if (!(var$1.$preConditions()).$subsetOf(var$3)) { var$7 = (var$1.$preConditions()).$removedAll(var$3); var$2 = onciu_StepSequencer$MutableDirectedGraph_incoming(var$2, var$1); var$3 = new onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_3; - var$3.$_01015 = var$7; + var$3.$_01007 = var$7; var$2 = var$2.$filter1(var$3); var$3 = new onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_4; - var$3.$_0336 = var$4; - var$3.$_1121 = var$1; - var$3.$_245 = var$5; + var$3.$_0326 = var$4; + var$3.$_1116 = var$1; + var$3.$_241 = var$5; var$2.$foreach(var$3); } return sr_BoxedUnit_UNIT; @@ -51780,7 +51770,7 @@ sci_HashMap_collect = ($this, $pf) => { return sci_HashMapBuilder_result(var$2); var$5 = var$4.$next(); var$6 = new sc_StrictOptimizedMapOps$collect$lambda$_7_0; - var$6.$_0419 = var$3; + var$6.$_0410 = var$3; var$5 = $pf.$applyOrElse(var$5, var$6); if (var$3 === var$5) continue; @@ -52421,7 +52411,7 @@ scm_HashMap_addAll = ($this, $xs) => { if ($xs instanceof sci_HashMap) { $xs = $xs; $foreachWithHash_f = new scm_HashMap$addAll$lambda$_42_0; - $foreachWithHash_f.$_0110 = $this; + $foreachWithHash_f.$_096 = $this; $foreachWithHash_foreachWithHash_this = $xs.$rootNode0; if ($foreachWithHash_foreachWithHash_this === null) $rt_throw(null); @@ -52454,7 +52444,7 @@ scm_HashMap_addAll = ($this, $xs) => { return scm_Growable_addAll$($this, $xs); $xs = $xs; $iter = new scm_HashMap$addAll$lambda$_42_1; - $iter.$_0787 = $this; + $iter.$_0765 = $this; scm_HashMap_foreachEntry($xs, $iter); return $this; } @@ -52664,7 +52654,7 @@ scm_HashMap_growTable = ($this, $newlen) => { jl_AbstractStringBuilder_append($n, $rt_s(856)); $n = jl_StringBuilder_append0($n, $newlen); jl_AbstractStringBuilder_append($n, $rt_s(857)); - jl_Throwable__init_0($old, jl_AbstractStringBuilder_toString($n)); + jl_Throwable__init_($old, jl_AbstractStringBuilder_toString($n)); $rt_throw($old); } $oldlen = $this.$scala$collection$mutable$HashMap$$table.data.length; @@ -52841,7 +52831,6 @@ scm_HashMap_foreachEntry = ($this, $f) => { } }, scm_HashMap_mapFactory = $this => { - scm_HashMap$_$callClinit(); return scm_HashMap$_MODULE$; }, scm_HashMap_stringPrefix = $this => { @@ -52854,7 +52843,7 @@ scm_HashMap_hashCode = $this => { return suh_MurmurHash3$_emptyMapHash(suh_MurmurHash3$_MODULE$); } $tupleHashIterator = new scm_HashMap$$anon$5; - $tupleHashIterator.$$outer60 = $this; + $tupleHashIterator.$$outer54 = $this; scm_HashMap$HashMapIterator__init_($tupleHashIterator, $this); $tupleHashIterator.$hash7 = 0; suh_MurmurHash3$_$callClinit(); @@ -52928,13 +52917,13 @@ scm_HashMap$Node_toString = $this => { let var$1; var$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$1, 14); - jl_AbstractStringBuilder_append(var$1, $rt_s(139)); + jl_AbstractStringBuilder_append(var$1, $rt_s(140)); var$1 = jl_StringBuilder_append(var$1, $this.$_key0); jl_AbstractStringBuilder_append(var$1, $rt_s(45)); var$1 = jl_StringBuilder_append(var$1, $this.$_value); jl_AbstractStringBuilder_append(var$1, $rt_s(45)); var$1 = jl_StringBuilder_append0(var$1, $this.$_hash0); - jl_AbstractStringBuilder_append(var$1, $rt_s(140)); + jl_AbstractStringBuilder_append(var$1, $rt_s(141)); return jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$1, $this.$_next)); }, scm_HashMap$Node__init_0 = ($this, $_key, $_hash, $_value, $_next) => { @@ -52956,10 +52945,10 @@ function scm_LinkedHashMap$LinkedEntry() { } function sci_HashMapBuilder$addAll$lambda$_25_0() { jl_Object.call(this); - this.$_0172 = null; + this.$_0169 = null; } let sci_HashMapBuilder$addAll$lambda$_25_0_apply = (var$0, var$1, var$2) => { - return sci_HashMapBuilder_addOne(var$0.$_0172, var$1, var$2); + return sci_HashMapBuilder_addOne(var$0.$_0169, var$1, var$2); }, sci_MapNode = $rt_classWithoutFields(sci_Node); function sci_BitmapIndexedMapNode() { @@ -53019,12 +53008,12 @@ sci_BitmapIndexedMapNode_apply = ($this, $key, $originalHash, $keyHash, $shift) if (!($index & $bitpos)) { $index = $this.$nodeMap1; if ($index & $bitpos) - return (sci_BitmapIndexedMapNode_getNode($this, sci_Node$_indexFrom(sci_Node$_MODULE$, $index, $mask, $bitpos))).$apply38($key, $originalHash, $keyHash, $shift + 5 | 0); + return (sci_BitmapIndexedMapNode_getNode($this, sci_Node$_indexFrom(sci_Node$_MODULE$, $index, $mask, $bitpos))).$apply39($key, $originalHash, $keyHash, $shift + 5 | 0); var$8 = new ju_NoSuchElementException; var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$9, 15); jl_AbstractStringBuilder_append(var$9, $rt_s(684)); - jl_Throwable__init_0(var$8, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$9, $key))); + jl_Throwable__init_(var$8, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$9, $key))); $rt_throw(var$8); } $index = sci_Node$_indexFrom(sci_Node$_MODULE$, $index, $mask, $bitpos); @@ -53036,7 +53025,7 @@ sci_BitmapIndexedMapNode_apply = ($this, $key, $originalHash, $keyHash, $shift) var$8 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$8, 15); jl_AbstractStringBuilder_append(var$8, $rt_s(684)); - jl_Throwable__init_0(var$9, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$8, $key))); + jl_Throwable__init_(var$9, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$8, $key))); $rt_throw(var$9); }, sci_BitmapIndexedMapNode_get = ($this, $key, $originalHash, $keyHash, $shift) => { @@ -53048,7 +53037,7 @@ sci_BitmapIndexedMapNode_get = ($this, $key, $originalHash, $keyHash, $shift) => var$7 = $this.$nodeMap1; if (!(var$7 & $bitpos)) return s_None$_MODULE$; - return (sci_BitmapIndexedMapNode_getNode($this, sci_Node$_indexFrom(sci_Node$_MODULE$, var$7, $mask, $bitpos))).$get9($key, $originalHash, $keyHash, $shift + 5 | 0); + return (sci_BitmapIndexedMapNode_getNode($this, sci_Node$_indexFrom(sci_Node$_MODULE$, var$7, $mask, $bitpos))).$get8($key, $originalHash, $keyHash, $shift + 5 | 0); } $index = sci_Node$_indexFrom(sci_Node$_MODULE$, var$7, $mask, $bitpos); var$9 = $this.$content2.data; @@ -53475,7 +53464,7 @@ sci_BitmapIndexedMapNode_equals = ($this, $that) => { sci_BitmapIndexedMapNode_hashCode = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(766)); + jl_Throwable__init_(var$1, $rt_s(766)); $rt_throw(var$1); }, sci_BitmapIndexedMapNode_concat = ($this, $that, $shift) => { @@ -53701,7 +53690,7 @@ sci_BitmapIndexedMapNode_copy = $this => { $contentLength = var$2.length; $i = jl_Integer_bitCount($this.$dataMap1) * 2 | 0; while ($i < $contentLength) { - var$2[$i] = var$2[$i].$copy42(); + var$2[$i] = var$2[$i].$copy48(); $i = $i + 1 | 0; } return sci_BitmapIndexedMapNode__init_($this.$dataMap1, $this.$nodeMap1, $contentClone, $this.$originalHashes1.$clone0(), $this.$size3, $this.$cachedJavaKeySetHashCode1); @@ -53937,7 +53926,7 @@ sci_HashCollisionMapNode_apply = ($this, $key, $originalHash, $hash, $shift) => if (!s_Option_isEmpty($getOrElse_this)) return $getOrElse_this.$get1(); $key = new ju_NoSuchElementException; - jl_Throwable__init_($key); + jl_Throwable__init_0($key); $rt_throw($key); }, sci_HashCollisionMapNode_get = ($this, $key, $originalHash, $hash, $shift) => { @@ -53983,7 +53972,7 @@ sci_HashCollisionMapNode_removed = ($this, $key, $originalHash, $hash, $shift) = return $this; $k = $this.$content3; $updatedContent = new sci_HashCollisionMapNode$removed$lambda$_13_0; - $updatedContent.$_0966 = $key; + $updatedContent.$_0960 = $key; $updatedContent = sc_StrictOptimizedIterableOps_filterNot$($k, $updatedContent); if ($updatedContent === null) $rt_throw(null); @@ -54085,7 +54074,7 @@ sci_HashCollisionMapNode_foreachEntry = ($this, $f) => { let $foreach_this, $foreach_f, $foreach_c, $foreach_i, $foreach_foreachRec_this, $foreach_vectorSliceDim_c, $foreach_foreachRec_level, $foreach_foreachRec_a, $foreach_foreachRec_i, $foreach_foreachRec_len, $$anonfun$foreachEntry$1_v, $foreach_foreachRec_l, $foreachRec_l, $foreachRec_a, $foreachRec_i, $foreachRec_len; $foreach_this = $this.$content3; $foreach_f = new sci_HashCollisionMapNode$foreachEntry$lambda$_24_0; - $foreach_f.$_01039 = $f; + $foreach_f.$_01028 = $f; if ($foreach_this === null) $rt_throw(null); $foreach_c = $foreach_this.$vectorSliceCount(); @@ -54375,7 +54364,7 @@ sci_HashCollisionMapNode_filterImpl = ($this, $pred, $flipped) => { sci_HashCollisionMapNode_hashCode = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(766)); + jl_Throwable__init_(var$1, $rt_s(766)); $rt_throw(var$1); }, sci_HashCollisionMapNode_cachedJavaKeySetHashCode = $this => { @@ -54390,7 +54379,7 @@ sci_HashCollisionMapNode_concat = ($this, $that, $shift) => { if (!($that instanceof sci_BitmapIndexedMapNode)) $rt_throw(s_MatchError__init_($that)); $that = new jl_UnsupportedOperationException; - jl_Throwable__init_0($that, $rt_s(858)); + jl_Throwable__init_($that, $rt_s(858)); $rt_throw($that); } $that = $that; @@ -54414,7 +54403,7 @@ sci_HashCollisionMapNode_concat = ($this, $that, $shift) => { sci_HashCollisionMapNode_getNode = ($this, $index) => { let var$2; var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_0(var$2, $rt_s(768)); + jl_Throwable__init_(var$2, $rt_s(768)); $rt_throw(var$2); }, sci_HashCollisionMapNode__init_0 = ($this, $originalHash, $hash, $content) => { @@ -54481,7 +54470,7 @@ scm_HashSet$$anon$4_sizeHint = ($this, $size) => { }, jl_UnsupportedOperationException = $rt_classWithoutFields(jl_RuntimeException), jl_UnsupportedOperationException__init_0 = ($this, $message) => { - jl_Throwable__init_0($this, $message); + jl_Throwable__init_($this, $message); }, jl_UnsupportedOperationException__init_ = var_0 => { let var_1 = new jl_UnsupportedOperationException(); @@ -54496,26 +54485,760 @@ jl_UnsupportedOperationException__init_1 = var_0 => { jl_UnsupportedOperationException__init_2(var_1, var_0); return var_1; }, +onciu_StepSequencer$Condition = $rt_classWithoutFields(0), +onciu_StepSequencer$Condition_unary_$bang$ = $$this => { + let var$2; + var$2 = new onciu_StepSequencer$NegatedCondition; + var$2.$inner2 = $$this; + return var$2; +}, +oncir_ValidatingCondition = $rt_classWithoutFields(0); +function oncifp_BaseContains() { + let a = this; jl_Object.call(a); + a.$tag0 = null; + a.$acceptableTypes = null; +} +let oncifp_BaseContains_toString = $this => { + return $this.$name(); +}, +oncifp_BaseContains_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); +}, +oncifp_BaseContains_apply = ($this, $in, $cancellationChecker) => { + let var$3; + if (!$rt_isInstance($in, oncifp_BaseState)) { + $cancellationChecker = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(859)), $in); + jl_Throwable__init_($cancellationChecker, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($cancellationChecker); + } + $in = $in; + $cancellationChecker = $this.$tag0.$runtimeClass(); + if (jl_Object_equals($rt_cls(oncia_Statement), $cancellationChecker) && s_Option_isEmpty($in.$maybeStatement)) + return sci_$colon$colon__init_($rt_s(860), sci_Nil$_MODULE$); + if (jl_Object_equals($rt_cls(oncias_SemanticState), $cancellationChecker) && s_Option_isEmpty($in.$maybeSemantics)) + return sci_$colon$colon__init_($rt_s(861), sci_Nil$_MODULE$); + if (jl_Object_equals($rt_cls(oncias_SemanticTable), $cancellationChecker) && s_Option_isEmpty($in.$maybeSemanticTable)) + return sci_$colon$colon__init_($rt_s(862), sci_Nil$_MODULE$); + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +}, +oncifp_BaseContains_name = $this => { + let var$1, var$2, var$3; + var$1 = jl_Class_getSimpleName($this.$tag0.$runtimeClass()); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + var$3 = jl_StringBuilder_append(var$2, $rt_s(863)); + jl_AbstractStringBuilder_append0(var$3, 91); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$3, var$1), 93); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncifp_BaseContains_hashCode = $this => { + return $this.$tag0.$hashCode(); +}, +oncifp_BaseContains_equals = ($this, $obj) => { + if (!($obj instanceof oncifp_BaseContains)) + return 0; + $obj = $obj; + return $this.$tag0.$equals($obj.$tag0); +}, +oncifp_BaseContains_productArity = $this => { + return 0; +}, +oncifp_BaseContains_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncifp_BaseContains_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncifp_BaseContains__init_ = ($this, $tag) => { + let var$2; + $this.$tag0 = $tag; + s_Predef$_$callClinit(); + var$2 = (s_Predef$_Set(s_Predef$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_Class, [$rt_cls(oncia_Statement), $rt_cls(oncias_SemanticState), $rt_cls(oncias_SemanticTable)]))); + $this.$acceptableTypes = var$2; + s_Predef$_assert(s_Predef$_MODULE$, var$2.$contains($tag.$runtimeClass())); +}, +oncifp_BaseContains__init_0 = var_0 => { + let var_1 = new oncifp_BaseContains(); + oncifp_BaseContains__init_(var_1, var_0); + return var_1; +}, +oncia_Statement = $rt_classWithoutFields(0), +oncifp_ValidSymbolicNamesInLabelExpressions$ = $rt_classWithoutFields(), +oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$ = null, +oncifp_ValidSymbolicNamesInLabelExpressions$__clinit_ = () => { + oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$ = new oncifp_ValidSymbolicNamesInLabelExpressions$; +}, +oncifp_ValidSymbolicNamesInLabelExpressions$_toString = $this => { + return $this.$name(); +}, +oncifp_ValidSymbolicNamesInLabelExpressions$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); +}, +oncifp_ValidSymbolicNamesInLabelExpressions$_name = $this => { + return $rt_s(864); +}, +oncifp_ValidSymbolicNamesInLabelExpressions$_apply = ($this, $ast, $cancellationChecker) => { + let var$3, var$4; + var$3 = onciu_Foldable_folder$0(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $ast), $cancellationChecker); + var$4 = scm_ListBuffer__init_(); + $ast = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1; + $ast.$cancellationChecker$1 = $cancellationChecker; + return (onciu_Foldable$Folder_fold(var$3, var$4, $ast)).$toSeq(); +}, +oncifp_ValidSymbolicNamesInLabelExpressions$_org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames = ($this, $context, $labelExpression, $cancellationChecker, $symbolicNamePredicate, $errors) => { + let var$6; + $cancellationChecker = $labelExpression.$folder0($cancellationChecker); + s_package$_$callClinit(); + var$6 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + $labelExpression = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1; + $labelExpression.$symbolicNamePredicate$1 = $symbolicNamePredicate; + $labelExpression.$context$12 = $context; + return scm_ListBuffer_addAll($errors, onciu_Foldable$Folder_treeFold($cancellationChecker, var$6, $labelExpression)); +}, +oncirc_package$ = $rt_classWithoutFields(), +oncirc_package$_MODULE$ = null, +oncirc_package$_SemanticInfoAvailable0 = null, +oncirc_package$_$callClinit = () => { + oncirc_package$_$callClinit = $rt_eraseClinit(oncirc_package$); + oncirc_package$__clinit_(); +}, +oncirc_package$__clinit_ = () => { + let var$1, var$2, var$3, var$4; + var$1 = new oncirc_package$; + oncirc_package$_$callClinit(); + oncirc_package$_MODULE$ = var$1; + s_Predef$_$callClinit(); + var$1 = s_Predef$_Set(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(onciu_StepSequencer$Condition, 2); + var$4 = var$3.data; + var$4[0] = oncirc_package$PatternExpressionsHaveSemanticInfo$_MODULE$; + var$4[1] = oncirr_ProjectionClausesHaveSemanticInfo$_MODULE$; + oncirc_package$_SemanticInfoAvailable0 = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncirc_package$_SemanticInfoAvailable = $this => { + oncirc_package$_$callClinit(); + return oncirc_package$_SemanticInfoAvailable0; +}, +oncirc_containsNoReturnAll$ = $rt_classWithoutFields(), +oncirc_containsNoReturnAll$_MODULE$ = null, +oncirc_containsNoReturnAll$_matcher = null, +oncirc_containsNoReturnAll$__clinit_ = () => { + let var$1; + oncirc_containsNoReturnAll$_MODULE$ = new oncirc_containsNoReturnAll$; + var$1 = new oncirc_containsNoMatchingNodes; + var$1.$matcher0 = new oncirc_containsNoReturnAll$$anonfun$1; + oncirc_containsNoReturnAll$_matcher = var$1; +}, +oncirc_containsNoReturnAll$_toString = $this => { + return $this.$name(); +}, +oncirc_containsNoReturnAll$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); +}, +oncirc_containsNoReturnAll$_apply = ($this, $that, $cancellationChecker) => { + let var$3, var$4; + var$3 = oncirc_containsNoReturnAll$_matcher; + var$4 = onciu_Foldable_folder$0(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $that), $cancellationChecker); + s_package$_$callClinit(); + $cancellationChecker = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + $that = new oncirc_containsNoMatchingNodes$$anonfun$apply$1; + if (var$3 === null) + $rt_throw(null); + $that.$$outer45 = var$3; + return (onciu_Foldable$Folder_fold(var$4, $cancellationChecker, $that)).$map(new oncirc_containsNoMatchingNodes$apply$lambda$_7_0); +}, +oncirc_containsNoReturnAll$_name = $this => { + return $rt_s(865); +}, +oncirc_containsNoReturnAll$_productArity = $this => { + return 0; +}, +oncirc_containsNoReturnAll$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncirc_containsNoReturnAll$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncirc_containsNoReturnAll$_hashCode = $this => { + return (-835982863); +}, onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_0 = $rt_classWithoutFields(), onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_0_apply = (var$0, var$1) => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(859)), var$1), $rt_s(860)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(866)), var$1), $rt_s(867)); return jl_AbstractStringBuilder_toString(var$2); }; function onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_1() { jl_Object.call(this); - this.$_01022 = null; + this.$_01012 = null; } let onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_1_apply = (var$0, var$1) => { let var$2, var$3; - var$2 = sc_IterableOnceOps_toSeq$(onciu_StepSequencer$MutableDirectedGraph_outgoing(var$0.$_01022, var$1)); + var$2 = sc_IterableOnceOps_toSeq$(onciu_StepSequencer$MutableDirectedGraph_outgoing(var$0.$_01012, var$1)); var$3 = new onciu_StepSequencer$MutableDirectedGraph$$anonfun$toString$2$lambda$_10_0; - var$3.$_0286 = var$1; - return sc_AbstractIterable_mkString(var$2.$map(var$3), $rt_s(93)); + var$3.$_0272 = var$1; + return sc_AbstractIterable_mkString(var$2.$map(var$3), $rt_s(94)); }, ju_ConcurrentModificationException = $rt_classWithoutFields(jl_RuntimeException); +function oncias_SemanticState() { + let a = this; jl_Object.call(a); + a.$currentScope = null; + a.$typeTable0 = null; + a.$recordedScopes0 = null; + a.$notifications = null; + a.$features = null; + a.$declareVariablesToSuppressDuplicateErrors = 0; + a.$semanticCheckHasRunOnce = 0; + a.$targetGraph = null; + a.$workingGraph = null; +} +let oncias_SemanticState_typeTable = $this => { + return $this.$typeTable0; +}, +oncias_SemanticState_recordedScopes = $this => { + return $this.$recordedScopes0; +}, +oncias_SemanticState_newChildScope = $this => { + oncias_SemanticState$ScopeLocation$_$callClinit(); + return oncias_SemanticState_copy($this, oncias_SemanticState$ScopeLocation$_newChildScope$extension(oncias_SemanticState$ScopeLocation$_MODULE$, $this.$currentScope), $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +}, +oncias_SemanticState_newSiblingScope = $this => { + let var$1; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$1 = $this.$currentScope; + oncias_SemanticState$_$callClinit(); + oncias_Scope$_$callClinit(); + return oncias_SemanticState_copy($this, (onciuh_TreeZipper$Location_insertRight(var$1, oncias_Scope$_empty(oncias_Scope$_MODULE$))).$get1(), $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +}, +oncias_SemanticState_popScope = $this => { + oncias_SemanticState$ScopeLocation$_$callClinit(); + return oncias_SemanticState_copy($this, ((oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, $this.$currentScope)).$get1()).$location, $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +}, +oncias_SemanticState_newBaseScope = $this => { + let var$1, var$2; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$1 = oncias_SemanticState$ScopeLocation$_MODULE$; + var$2 = $this.$currentScope; + oncias_SemanticState$_$callClinit(); + return oncias_SemanticState_copy($this, oncias_SemanticState$ScopeLocation$_newChildScope$extension(var$1, onciuh_TreeZipper$Location_root(var$2)), $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +}, +oncias_SemanticState_symbol = ($this, $name) => { + oncias_SemanticState$ScopeLocation$_$callClinit(); + return oncias_SemanticState$ScopeLocation$_symbol$extension(oncias_SemanticState$ScopeLocation$_MODULE$, $this.$currentScope, $name); +}, +oncias_SemanticState_isNode = ($this, $name) => { + let var$2, var$3; + a: { + b: { + c: { + var$2 = s_Option_getOrElse(s_Option_map(oncias_SemanticState_symbol($this, $name), new oncias_SemanticState$symbolTypes$lambda$_33_0), new oncias_SemanticState$symbolTypes$lambda$_33_1); + oncius_package$_$callClinit(); + $name = oncius_NodeType_invariant(oncius_package$_CTNode(oncius_package$_MODULE$)); + if (var$2 !== null) { + if (!oncius_TypeSpec_equals(var$2, $name)) + break b; + else + break c; + } + if ($name !== null) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncias_SemanticState_importValuesFromScope = ($this, $scope, $exclude) => { + let var$3, var$4; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = $this.$currentScope; + oncias_SemanticState$_$callClinit(); + var$4 = var$3.$elem0; + $exclude = $scope.$symbolTable.$removedAll0($exclude); + return oncias_SemanticState_copy($this, onciuh_TreeZipper$Location_replace(var$3, oncias_Scope_copy(var$4, var$4.$symbolTable.$concat2($exclude), var$4.$children2)), $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +}, +oncias_SemanticState_importValuesFromScope$default$2 = $this => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; +}, +oncias_SemanticState_declareVariable = ($this, $variable, $possibleTypes, $maybePreviousDeclaration, $overriding, $unionVariable) => { + let var$6, $definition, $previousDeclaration, $uses, var$10, var$11; + oncias_SemanticState$ScopeLocation$_$callClinit(); + if (oncias_SemanticState$ScopeLocation$_localSymbol$extension(oncias_SemanticState$ScopeLocation$_MODULE$, $this.$currentScope, $variable.$name4) instanceof s_Some && !$overriding) { + s_package$_$callClinit(); + $possibleTypes = s_package$_Left(s_package$_MODULE$); + oncias_SemanticError$_$callClinit(); + $maybePreviousDeclaration = oncias_SemanticError$_MODULE$; + var$6 = $variable.$name4; + $definition = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($definition); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($definition, $rt_s(868)), var$6), $rt_s(869)); + return su_Left$_apply($possibleTypes, oncias_SemanticError$_apply($maybePreviousDeclaration, jl_AbstractStringBuilder_toString($definition), $variable.$position4)); + } + if (!($maybePreviousDeclaration instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, $maybePreviousDeclaration)) + $rt_throw(s_MatchError__init_($maybePreviousDeclaration)); + var$6 = new s_Tuple2; + $definition = oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable); + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + s_Tuple2__init_0(var$6, $definition, sci_Set$EmptySet$_MODULE$); + } else { + $previousDeclaration = $maybePreviousDeclaration.$value5; + var$6 = new s_Tuple2; + $uses = $previousDeclaration.$definition; + $definition = $previousDeclaration.$uses; + s_Predef$_$callClinit(); + var$10 = s_Predef$_Set(s_Predef$_MODULE$); + $maybePreviousDeclaration = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(oncias_SymbolUse, 1); + var$11.data[0] = oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable); + s_Tuple2__init_0(var$6, $uses, $definition.$concat1(var$10.$from0(sr_ScalaRunTime$_wrapRefArray($maybePreviousDeclaration, var$11)))); + } + $definition = var$6.$_10; + $uses = var$6.$_20; + $maybePreviousDeclaration = s_Tuple2__init_($definition, $uses); + $definition = $maybePreviousDeclaration.$_10; + $uses = $maybePreviousDeclaration.$_20; + s_package$_$callClinit(); + return su_Right$_apply(s_package$_Right(s_package$_MODULE$), oncias_SemanticState_updateVariable($this, $variable, $possibleTypes, $definition, $uses, $unionVariable)); +}, +oncias_SemanticState_addNotification = ($this, $notification) => { + let var$2; + var$2 = $this.$notifications.$incl($notification); + return oncias_SemanticState_copy($this, $this.$currentScope, $this.$typeTable0, $this.$recordedScopes0, var$2, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +}, +oncias_SemanticState_implicitVariable = ($this, $variable, $possibleTypes) => { + let $symbol, $inferredTypes, $existingTypes, $expectedTypes, var$7, var$8, var$9; + $symbol = oncias_SemanticState_symbol($this, $variable.$name4); + if (jl_Object_equals(s_None$_MODULE$, $symbol)) { + s_package$_$callClinit(); + $symbol = s_package$_Right(s_package$_MODULE$); + $inferredTypes = oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable); + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return su_Right$_apply($symbol, oncias_SemanticState_updateVariable($this, $variable, $possibleTypes, $inferredTypes, sci_Set$EmptySet$_MODULE$, 0)); + } + if (!($symbol instanceof s_Some)) + $rt_throw(s_MatchError__init_($symbol)); + $symbol = $symbol.$value5; + $inferredTypes = oncius_TypeSpec_intersect($symbol.$types2, $possibleTypes); + if (oncius_TypeSpec_nonEmpty($inferredTypes)) { + s_package$_$callClinit(); + return su_Right$_apply(s_package$_Right(s_package$_MODULE$), oncias_SemanticState_updateVariable($this, $variable, $inferredTypes, $symbol.$definition, $symbol.$uses.$incl(oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable)), 0)); + } + $existingTypes = oncius_TypeSpec_mkString1($symbol.$types2, $rt_s(45), $rt_s(870)); + $expectedTypes = oncius_TypeSpec_mkString1($possibleTypes, $rt_s(45), $rt_s(870)); + s_package$_$callClinit(); + $symbol = s_package$_Left(s_package$_MODULE$); + oncias_SemanticError$_$callClinit(); + $inferredTypes = oncias_SemanticError$_MODULE$; + var$7 = $variable.$name4; + $possibleTypes = oncius_TypeSpec_toStrings($possibleTypes); + var$8 = $variable.$name4; + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(871)), var$8), $rt_s(872)), $existingTypes), $rt_s(873)), $expectedTypes), 41); + return su_Left$_apply($symbol, oncias_SemanticError$_invalidEntityType($inferredTypes, $existingTypes, var$7, $possibleTypes, jl_AbstractStringBuilder_toString(var$9), $variable.$position4)); +}, +oncias_SemanticState_ensureVariableDefined = ($this, $variable) => { + let $symbol, var$3, var$4, var$5; + $symbol = oncias_SemanticState_symbol($this, $variable.$name4); + if (jl_Object_equals(s_None$_MODULE$, $symbol)) { + s_package$_$callClinit(); + $symbol = s_package$_Left(s_package$_MODULE$); + oncias_SemanticError$_$callClinit(); + var$3 = oncias_SemanticError$_MODULE$; + var$4 = $variable.$name4; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(868)), var$4), $rt_s(874)); + return su_Left$_apply($symbol, oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$5), $variable.$position4)); + } + if (!($symbol instanceof s_Some)) + $rt_throw(s_MatchError__init_($symbol)); + $symbol = $symbol.$value5; + s_package$_$callClinit(); + return su_Right$_apply(s_package$_Right(s_package$_MODULE$), oncias_SemanticState_updateVariable($this, $variable, $symbol.$types2, $symbol.$definition, $symbol.$uses.$incl(oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable)), 0)); +}, +oncias_SemanticState_expressionType = ($this, $expression) => { + let var$2; + var$2 = $this.$typeTable0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + return var$2.$getOrElse1(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $expression), new oncias_SemanticState$expressionType$lambda$_48_0); +}, +oncias_SemanticState_updateVariable = ($this, $variable, $types, $definition, $uses, $unionVariable) => { + let var$6, var$7, var$8, var$9, var$10; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$6 = $this.$currentScope; + var$7 = $variable.$name4; + oncias_SemanticState$_$callClinit(); + var$8 = var$6.$elem0; + var$9 = var$8.$symbolTable; + var$10 = new oncias_Symbol; + var$10.$name12 = var$7; + var$10.$types2 = $types; + var$10.$definition = $definition; + var$10.$uses = $uses; + var$10.$unionSymbol = $unionVariable; + var$9 = onciuh_TreeZipper$Location_replace(var$6, oncias_Scope_copy(var$8, var$9.$updated0(var$7, var$10), var$8.$children2)); + $uses = $this.$typeTable0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + $variable = oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $variable); + oncias_ExpressionTypeInfo$_$callClinit(); + return oncias_SemanticState_copy($this, var$9, $uses.$updated0($variable, oncias_ExpressionTypeInfo$_apply(oncias_ExpressionTypeInfo$_MODULE$, $types, s_None$_MODULE$)), $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +}, +oncias_SemanticState_recordCurrentScope = ($this, $astNode) => { + let var$2, $x$1; + var$2 = $this.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + $x$1 = var$2.$updated0(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $astNode), oncias_SemanticState$ScopeLocation__init_($this.$currentScope)); + return oncias_SemanticState_copy($this, $this.$currentScope, $this.$typeTable0, $x$1, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +}, +oncias_SemanticState_scope = ($this, $astNode) => { + let var$2; + var$2 = $this.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + return s_Option_map(var$2.$get2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $astNode)), new oncias_SemanticState$scope$lambda$_52_0); +}, +oncias_SemanticState_recordTargetGraph = ($this, $targetGraph) => { + let $x$1; + $x$1 = s_Some__init_($targetGraph); + return oncias_SemanticState_copy($this, $this.$currentScope, $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $x$1, $this.$workingGraph); +}, +oncias_SemanticState_recordWorkingGraph = ($this, $graph) => { + return oncias_SemanticState_copy($this, $this.$currentScope, $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $graph); +}, +oncias_SemanticState_copy = ($this, $currentScope, $typeTable, $recordedScopes, $notifications, $features, $declareVariablesToSuppressDuplicateErrors, $semanticCheckHasRunOnce, $targetGraph, $workingGraph) => { + return oncias_SemanticState__init_0($currentScope, $typeTable, $recordedScopes, $notifications, $features, $declareVariablesToSuppressDuplicateErrors, $semanticCheckHasRunOnce, $targetGraph, $workingGraph); +}, +oncias_SemanticState_productPrefix = $this => { + return $rt_s(875); +}, +oncias_SemanticState_productArity = $this => { + return 9; +}, +oncias_SemanticState_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return oncias_SemanticState$ScopeLocation__init_($this.$currentScope); + case 1: + return $this.$typeTable0; + case 2: + return $this.$recordedScopes0; + case 3: + return $this.$notifications; + case 4: + return $this.$features; + case 5: + return jl_Boolean_valueOf($this.$declareVariablesToSuppressDuplicateErrors); + case 6: + return jl_Boolean_valueOf($this.$semanticCheckHasRunOnce); + case 7: + return $this.$targetGraph; + case 8: + return $this.$workingGraph; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticState_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticState_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(875))), sr_Statics_anyHash(oncias_SemanticState$ScopeLocation__init_($this.$currentScope))), sr_Statics_anyHash($this.$typeTable0)), sr_Statics_anyHash($this.$recordedScopes0)), sr_Statics_anyHash($this.$notifications)), sr_Statics_anyHash($this.$features)), !$this.$declareVariablesToSuppressDuplicateErrors + ? 1237 : 1231), !$this.$semanticCheckHasRunOnce ? 1237 : 1231), sr_Statics_anyHash($this.$targetGraph)), sr_Statics_anyHash($this.$workingGraph)), 9); +}, +oncias_SemanticState_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticState_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticState) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$declareVariablesToSuppressDuplicateErrors != $x$1.$declareVariablesToSuppressDuplicateErrors) + break b; + if ($this.$semanticCheckHasRunOnce != $x$1.$semanticCheckHasRunOnce) + break b; + c: { + var$2 = $this.$currentScope; + var$3 = $x$1.$currentScope; + if (var$2 !== null) { + if (!onciuh_TreeZipper$Location_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$typeTable0; + var$3 = $x$1.$typeTable0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$recordedScopes0; + var$3 = $x$1.$recordedScopes0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$notifications; + var$3 = $x$1.$notifications; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$features; + var$3 = $x$1.$features; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$targetGraph; + var$3 = $x$1.$targetGraph; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break h; + } + if (var$3 !== null) + break b; + } + i: { + var$3 = $this.$workingGraph; + $x$1 = $x$1.$workingGraph; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break i; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncias_SemanticState)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncias_SemanticState__init_ = ($this, $currentScope, $typeTable, $recordedScopes, $notifications, $features, $declareVariablesToSuppressDuplicateErrors, $semanticCheckHasRunOnce, $targetGraph, $workingGraph) => { + $this.$currentScope = $currentScope; + $this.$typeTable0 = $typeTable; + $this.$recordedScopes0 = $recordedScopes; + $this.$notifications = $notifications; + $this.$features = $features; + $this.$declareVariablesToSuppressDuplicateErrors = $declareVariablesToSuppressDuplicateErrors; + $this.$semanticCheckHasRunOnce = $semanticCheckHasRunOnce; + $this.$targetGraph = $targetGraph; + $this.$workingGraph = $workingGraph; +}, +oncias_SemanticState__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new oncias_SemanticState(); + oncias_SemanticState__init_(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; +}, +oncias_TokenTable = $rt_classWithoutFields(0); +function oncias_SemanticTable() { + let a = this; jl_Object.call(a); + a.$hashCode7 = 0; + a.$types3 = null; + a.$recordedScopes1 = null; + a.$resolvedLabelNames = null; + a.$resolvedPropertyKeyNames = null; + a.$resolvedRelTypeNames = null; + a.$bitmap$038 = 0; +} +let oncias_SemanticTable_hashCode = $this => { + let var$1, $$je; + if ($this.$bitmap$038) + return $this.$hashCode7; + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$bitmap$038) + break a; + $this.$hashCode7 = sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); + $this.$bitmap$038 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$hashCode7; +}, +oncias_SemanticTable_typeFor = ($this, $expr) => { + let var$2, var$3; + var$2 = new oncias_SemanticTable$TypeGetter; + var$3 = $this.$types3; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + var$2.$typeInfo = s_Option_map(var$3.$get2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $expr)), new oncias_SemanticTable$typeFor$lambda$_25_0); + return var$2; +}, +oncias_SemanticTable_productPrefix = $this => { + return $rt_s(876); +}, +oncias_SemanticTable_productArity = $this => { + return 5; +}, +oncias_SemanticTable_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$types3; + case 1: + return $this.$recordedScopes1; + case 2: + return $this.$resolvedLabelNames; + case 3: + return $this.$resolvedPropertyKeyNames; + case 4: + return $this.$resolvedRelTypeNames; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticTable_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticTable_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticTable_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticTable) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$types3; + var$3 = $x$1.$types3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$recordedScopes1; + var$3 = $x$1.$recordedScopes1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$resolvedLabelNames; + var$3 = $x$1.$resolvedLabelNames; + if (var$2 === null) { + if (var$3 === null) + break f; + break b; + } + if (!sc_Map_equals$(var$2, var$3)) + break b; + } + g: { + var$2 = $this.$resolvedPropertyKeyNames; + var$3 = $x$1.$resolvedPropertyKeyNames; + if (var$2 === null) { + if (var$3 === null) + break g; + break b; + } + if (!sc_Map_equals$(var$2, var$3)) + break b; + } + var$3 = $this.$resolvedRelTypeNames; + $x$1 = $x$1.$resolvedRelTypeNames; + if (var$3 === null) { + if ($x$1 === null) + break c; + break b; + } + if (!sc_Map_equals$(var$3, $x$1)) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncias_SemanticTable__init_0 = ($this, $types, $recordedScopes, $resolvedLabelNames, $resolvedPropertyKeyNames, $resolvedRelTypeNames) => { + $this.$types3 = $types; + $this.$recordedScopes1 = $recordedScopes; + $this.$resolvedLabelNames = $resolvedLabelNames; + $this.$resolvedPropertyKeyNames = $resolvedPropertyKeyNames; + $this.$resolvedRelTypeNames = $resolvedRelTypeNames; +}, +oncias_SemanticTable__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncias_SemanticTable(); + oncias_SemanticTable__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; +}; function ju_AbstractMap() { let a = this; jl_Object.call(a); a.$cachedKeySet = null; @@ -54610,16 +55333,16 @@ ju_AbstractMap_toString = $this => { $iter = ($this.$entrySet()).$iterator(); if ($iter.$hasNext()) { $e = $iter.$next(); - jl_StringBuilder_append($sb, $e.$getKey() !== $this ? $e.$getKey() : $rt_s(861)); + jl_StringBuilder_append($sb, $e.$getKey() !== $this ? $e.$getKey() : $rt_s(877)); jl_AbstractStringBuilder_append0($sb, 61); - jl_StringBuilder_append($sb, $e.$getValue0() !== $this ? $e.$getValue0() : $rt_s(861)); + jl_StringBuilder_append($sb, $e.$getValue0() !== $this ? $e.$getValue0() : $rt_s(877)); } while ($iter.$hasNext()) { jl_AbstractStringBuilder_append($sb, $rt_s(45)); $e_0 = $iter.$next(); - jl_StringBuilder_append($sb, $e_0.$getKey() !== $this ? $e_0.$getKey() : $rt_s(861)); + jl_StringBuilder_append($sb, $e_0.$getKey() !== $this ? $e_0.$getKey() : $rt_s(877)); jl_AbstractStringBuilder_append0($sb, 61); - jl_StringBuilder_append($sb, $e_0.$getValue0() !== $this ? $e_0.$getValue0() : $rt_s(861)); + jl_StringBuilder_append($sb, $e_0.$getValue0() !== $this ? $e_0.$getValue0() : $rt_s(877)); } jl_AbstractStringBuilder_append0($sb, 125); return jl_AbstractStringBuilder_toString($sb); @@ -54627,14 +55350,14 @@ ju_AbstractMap_toString = $this => { function ju_WeakHashMap() { let a = this; ju_AbstractMap.call(a); a.$referenceQueue = null; - a.$elementCount1 = 0; + a.$elementCount0 = 0; a.$elementData0 = null; a.$loadFactor2 = 0; a.$threshold5 = 0; a.$modCount1 = 0; } let ju_WeakHashMap__init_0 = $this => { - $this.$elementCount1 = 0; + $this.$elementCount0 = 0; $this.$elementData0 = $rt_createArray(ju_WeakHashMap$Entry, 16); $this.$loadFactor2 = 7500; ju_WeakHashMap_computeMaxSize($this); @@ -54665,25 +55388,25 @@ ju_WeakHashMap_poll = $this => { break a; if (var$1 === var$6) break; - var$7 = var$6.$next9; + var$7 = var$6.$next8; var$2 = var$6; var$6 = var$7; } $this.$modCount1 = $this.$modCount1 + 1 | 0; if (var$2 !== null) - var$2.$next9 = var$6.$next9; + var$2.$next8 = var$6.$next8; else - var$4[var$5] = var$6.$next9; - $this.$elementCount1 = $this.$elementCount1 - 1 | 0; + var$4[var$5] = var$6.$next8; + $this.$elementCount0 = $this.$elementCount0 - 1 | 0; } } }; function sc_SeqOps$indexOf$lambda$_58_0() { jl_Object.call(this); - this.$_0464 = null; + this.$_0453 = null; } let sc_SeqOps$indexOf$lambda$_58_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$0.$_0464, var$1) ? 0 : 1); + return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$0.$_0453, var$1) ? 0 : 1); }; function sci_Map$Map4() { let a = this; sci_AbstractMap.call(a); @@ -54737,7 +55460,7 @@ sci_Map$Map4_apply = ($this, $key) => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$3, 15); jl_AbstractStringBuilder_append(var$3, $rt_s(684)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); $rt_throw(var$2); }, sci_Map$Map4_contains = ($this, $key) => { @@ -54962,24 +55685,107 @@ sci_HashMap$_newBuilder = $this => { }, sci_HashMap$_from = ($this, $it) => { return $it instanceof sci_HashMap ? $it : sci_HashMapBuilder_result(sci_HashMapBuilder_addAll(sci_HashMapBuilder__init_(), $it)); +}; +function oncifp_Phase$transform$lambda$_2_0() { + let a = this; jl_Object.call(a); + a.$_0952 = null; + a.$_1327 = null; + a.$_2112 = null; +} +let oncifh_package$ = $rt_classWithoutFields(), +oncifh_package$_MODULE$ = null, +oncifh_package$__clinit_ = () => { + oncifh_package$_MODULE$ = new oncifh_package$; }, -oncifp_Transformer$ = $rt_classWithoutFields(), -oncifp_Transformer$_MODULE$ = null, -oncifp_Transformer$__clinit_ = () => { - oncifp_Transformer$_MODULE$ = new oncifp_Transformer$; +oncirc_package$PatternExpressionsHaveSemanticInfo$ = $rt_classWithoutFields(), +oncirc_package$PatternExpressionsHaveSemanticInfo$_MODULE$ = null, +oncirc_package$PatternExpressionsHaveSemanticInfo$__clinit_ = () => { + oncirc_package$PatternExpressionsHaveSemanticInfo$_MODULE$ = new oncirc_package$PatternExpressionsHaveSemanticInfo$; +}, +oncirc_package$PatternExpressionsHaveSemanticInfo$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); +}, +oncirc_package$PatternExpressionsHaveSemanticInfo$_productArity = $this => { + return 0; +}, +oncirc_package$PatternExpressionsHaveSemanticInfo$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncirc_package$PatternExpressionsHaveSemanticInfo$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncirc_package$PatternExpressionsHaveSemanticInfo$_hashCode = $this => { + return 748739207; +}, +oncirc_package$PatternExpressionsHaveSemanticInfo$_toString = $this => { + return $rt_s(878); +}, +oncirr_ProjectionClausesHaveSemanticInfo$ = $rt_classWithoutFields(), +oncirr_ProjectionClausesHaveSemanticInfo$_MODULE$ = null, +oncirr_ProjectionClausesHaveSemanticInfo$__clinit_ = () => { + oncirr_ProjectionClausesHaveSemanticInfo$_MODULE$ = new oncirr_ProjectionClausesHaveSemanticInfo$; +}, +oncirr_ProjectionClausesHaveSemanticInfo$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); +}, +oncirr_ProjectionClausesHaveSemanticInfo$_productArity = $this => { + return 0; +}, +oncirr_ProjectionClausesHaveSemanticInfo$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncirr_ProjectionClausesHaveSemanticInfo$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncirr_ProjectionClausesHaveSemanticInfo$_hashCode = $this => { + return (-2083017039); +}, +oncirr_ProjectionClausesHaveSemanticInfo$_toString = $this => { + return $rt_s(879); +}; +function oncirc_containsNoMatchingNodes() { + jl_Object.call(this); + this.$matcher0 = null; +} +let oncirc_containsNoReturnAll$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirc_containsNoReturnAll$$anonfun$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return $x instanceof oncia_ReturnItems && $x.$includeExisting0 ? $rt_s(880) : s_PartialFunction$$anon$1_apply($default, $x); +}, +oncifh_package$$closing$default$3$lambda$_2_0 = $rt_classWithoutFields(), +oncifh_package$$closing$default$3$lambda$_2_0_apply = (var$0, var$1) => { + return sr_BoxedUnit_UNIT; +}, +oncifh_package$$closing$default$4$lambda$_3_0 = $rt_classWithoutFields(), +oncifh_package$$closing$default$4$lambda$_3_0_apply = (var$0, var$1, var$2) => { + return sr_BoxedUnit_UNIT; +}; +function oncifh_package$$closing$lambda$_1_0() { + jl_Object.call(this); + this.$_01104 = null; +} +let oncifh_package$$closing$lambda$_1_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$0.$_01104; + var$2 = var$1.$_0952; + var$1 = var$2.$process(var$1.$_1327, var$1.$_2112); + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !var$2.$checkConditions(var$1, var$2.$postConditions(), onciu_CancellationChecker$NeverCancelled$_MODULE$)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + return var$1; }; function jlr_ReferenceQueue() { let a = this; jl_Object.call(a); a.$firstCallback = null; - a.$inner6 = null; + a.$inner5 = null; a.$registry = null; } let jlr_ReferenceQueue__init_ = var$0 => { - var$0.$inner6 = []; + var$0.$inner5 = []; { var$0.$registry = new FinalizationRegistry(ref => { if (!jlr_ReferenceQueue_reportNext(var$0, ref)) { - var$0.$inner6.push(ref); + var$0.$inner5.push(ref); } }); } @@ -54990,7 +55796,7 @@ jlr_ReferenceQueue__init_0 = () => { return var_0; }, jlr_ReferenceQueue_poll = var$0 => { - var value = var$0.$inner6.shift(); + var value = var$0.$inner5.shift(); return typeof value !== 'undefined' ? value : null; }, jlr_ReferenceQueue_reportNext = (var$0, $ref) => { @@ -55000,15 +55806,6 @@ jlr_ReferenceQueue_reportNext = (var$0, $ref) => { return 0; $callback.$complete0($ref); return 1; -}; -function oncifp_Transformer$$anonfun$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$state$1 = null; - a.$cancellationChecker$10 = null; -} -let oncifp_Transformer$$anonfun$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - return !$rt_isInstance($x, oncir_ValidatingCondition) ? $default.$apply2($x) : $x.$apply40($this.$state$1, $this.$cancellationChecker$10); }, sci_MapNode$ = $rt_classWithoutFields(), sci_MapNode$_MODULE$ = null, @@ -55035,9 +55832,9 @@ sci_MapNode$_empty = $this => { function ju_WeakHashMap$Entry() { let a = this; jlr_WeakReference.call(a); a.$hash6 = 0; - a.$isNull0 = 0; + a.$isNull = 0; a.$value25 = null; - a.$next9 = null; + a.$next8 = null; } let sci_SetIterator = $rt_classWithoutFields(sci_ChampBaseIterator), sci_SetIterator_iterator = $this => { @@ -55116,7 +55913,7 @@ sci_SetIterator_next = $this => { let $payload; if (!sci_ChampBaseIterator_hasNext($this)) { $payload = new ju_NoSuchElementException; - jl_Throwable__init_($payload); + jl_Throwable__init_0($payload); $rt_throw($payload); } $payload = $this.$currentValueNode.$getPayload($this.$currentValueCursor); @@ -55207,9 +56004,9 @@ suh_MurmurHash3$__clinit_ = () => { var$1 = new suh_MurmurHash3$; suh_MurmurHash3$_$callClinit(); suh_MurmurHash3$_MODULE$ = var$1; - suh_MurmurHash3$_seqSeed0 = jl_String_hashCode($rt_s(862)); + suh_MurmurHash3$_seqSeed0 = jl_String_hashCode($rt_s(881)); suh_MurmurHash3$_mapSeed0 = jl_String_hashCode($rt_s(683)); - suh_MurmurHash3$_setSeed0 = jl_String_hashCode($rt_s(101)); + suh_MurmurHash3$_setSeed0 = jl_String_hashCode($rt_s(102)); var$1 = suh_MurmurHash3$_MODULE$; suh_MurmurHash3$_emptyMapHash0 = suh_MurmurHash3_unorderedHash(var$1, sci_Nil$_MODULE$, suh_MurmurHash3$_mapSeed(var$1)); }, @@ -55628,195 +56425,6 @@ suh_MurmurHash3$_arraySeqHash$mVc$sp = ($this, $a) => { var$2 = suh_MurmurHash3_scala$util$hashing$MurmurHash3$$avalanche($this, var$2 ^ 0); } return var$2; -}, -onciu_StepSequencer$Condition = $rt_classWithoutFields(0), -onciu_StepSequencer$Condition_unary_$bang$ = $$this => { - let var$2; - var$2 = new onciu_StepSequencer$NegatedCondition; - var$2.$inner2 = $$this; - return var$2; -}, -oncir_ValidatingCondition = $rt_classWithoutFields(0); -function oncifp_BaseContains() { - let a = this; jl_Object.call(a); - a.$tag0 = null; - a.$acceptableTypes = null; -} -let oncifp_BaseContains_toString = $this => { - return $this.$name(); -}, -oncifp_BaseContains_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -oncifp_BaseContains_apply = ($this, $in, $cancellationChecker) => { - let var$3; - if (!$rt_isInstance($in, oncifp_BaseState)) { - $cancellationChecker = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(863)), $in); - jl_Throwable__init_0($cancellationChecker, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($cancellationChecker); - } - $in = $in; - $cancellationChecker = $this.$tag0.$runtimeClass(); - if (jl_Object_equals($rt_cls(oncia_Statement), $cancellationChecker) && s_Option_isEmpty($in.$maybeStatement)) - return sci_$colon$colon__init_($rt_s(864), sci_Nil$_MODULE$); - if (jl_Object_equals($rt_cls(oncias_SemanticState), $cancellationChecker) && s_Option_isEmpty($in.$maybeSemantics)) - return sci_$colon$colon__init_($rt_s(865), sci_Nil$_MODULE$); - if (jl_Object_equals($rt_cls(oncias_SemanticTable), $cancellationChecker) && s_Option_isEmpty($in.$maybeSemanticTable)) - return sci_$colon$colon__init_($rt_s(866), sci_Nil$_MODULE$); - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); -}, -oncifp_BaseContains_name = $this => { - let var$1, var$2, var$3; - var$1 = jl_Class_getSimpleName($this.$tag0.$runtimeClass()); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = jl_StringBuilder_append(var$2, $rt_s(867)); - jl_AbstractStringBuilder_append0(var$3, 91); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$3, var$1), 93); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncifp_BaseContains_hashCode = $this => { - return $this.$tag0.$hashCode(); -}, -oncifp_BaseContains_equals = ($this, $obj) => { - if (!($obj instanceof oncifp_BaseContains)) - return 0; - $obj = $obj; - return $this.$tag0.$equals($obj.$tag0); -}, -oncifp_BaseContains_productArity = $this => { - return 0; -}, -oncifp_BaseContains_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncifp_BaseContains_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_BaseContains__init_ = ($this, $tag) => { - let var$2; - $this.$tag0 = $tag; - s_Predef$_$callClinit(); - var$2 = (s_Predef$_Set(s_Predef$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_Class, [$rt_cls(oncia_Statement), $rt_cls(oncias_SemanticState), $rt_cls(oncias_SemanticTable)]))); - $this.$acceptableTypes = var$2; - s_Predef$_assert(s_Predef$_MODULE$, var$2.$contains($tag.$runtimeClass())); -}, -oncifp_BaseContains__init_0 = var_0 => { - let var_1 = new oncifp_BaseContains(); - oncifp_BaseContains__init_(var_1, var_0); - return var_1; -}, -oncia_Statement = $rt_classWithoutFields(0), -oncifp_ValidSymbolicNamesInLabelExpressions$ = $rt_classWithoutFields(), -oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$ = null, -oncifp_ValidSymbolicNamesInLabelExpressions$_$callClinit = () => { - oncifp_ValidSymbolicNamesInLabelExpressions$_$callClinit = $rt_eraseClinit(oncifp_ValidSymbolicNamesInLabelExpressions$); - oncifp_ValidSymbolicNamesInLabelExpressions$__clinit_(); -}, -oncifp_ValidSymbolicNamesInLabelExpressions$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ValidSymbolicNamesInLabelExpressions$; - oncifp_ValidSymbolicNamesInLabelExpressions$_$callClinit(); - oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$ = var$1; -}, -oncifp_ValidSymbolicNamesInLabelExpressions$_toString = $this => { - return $this.$name(); -}, -oncifp_ValidSymbolicNamesInLabelExpressions$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -oncifp_ValidSymbolicNamesInLabelExpressions$_name = $this => { - return $rt_s(868); -}, -oncifp_ValidSymbolicNamesInLabelExpressions$_apply = ($this, $ast, $cancellationChecker) => { - let var$3, var$4; - var$3 = onciu_Foldable_folder$0(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $ast), $cancellationChecker); - var$4 = scm_ListBuffer__init_(); - $ast = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1; - $ast.$cancellationChecker$1 = $cancellationChecker; - return (onciu_Foldable$Folder_fold(var$3, var$4, $ast)).$toSeq(); -}, -oncifp_ValidSymbolicNamesInLabelExpressions$_org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames = ($this, $context, $labelExpression, $cancellationChecker, $symbolicNamePredicate, $errors) => { - let var$6; - $cancellationChecker = $labelExpression.$folder0($cancellationChecker); - s_package$_$callClinit(); - var$6 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - $labelExpression = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1; - $labelExpression.$symbolicNamePredicate$1 = $symbolicNamePredicate; - $labelExpression.$context$12 = $context; - return scm_ListBuffer_addAll($errors, onciu_Foldable$Folder_treeFold($cancellationChecker, var$6, $labelExpression)); -}, -oncirc_package$ = $rt_classWithoutFields(), -oncirc_package$_MODULE$ = null, -oncirc_package$_SemanticInfoAvailable0 = null, -oncirc_package$_$callClinit = () => { - oncirc_package$_$callClinit = $rt_eraseClinit(oncirc_package$); - oncirc_package$__clinit_(); -}, -oncirc_package$__clinit_ = () => { - let var$1, var$2, var$3, var$4; - var$1 = new oncirc_package$; - oncirc_package$_$callClinit(); - oncirc_package$_MODULE$ = var$1; - s_Predef$_$callClinit(); - var$1 = s_Predef$_Set(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(onciu_StepSequencer$Condition, 2); - var$4 = var$3.data; - var$4[0] = oncirc_package$PatternExpressionsHaveSemanticInfo$_MODULE$; - var$4[1] = oncirr_ProjectionClausesHaveSemanticInfo$_MODULE$; - oncirc_package$_SemanticInfoAvailable0 = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncirc_package$_SemanticInfoAvailable = $this => { - oncirc_package$_$callClinit(); - return oncirc_package$_SemanticInfoAvailable0; -}, -oncirc_containsNoReturnAll$ = $rt_classWithoutFields(), -oncirc_containsNoReturnAll$_MODULE$ = null, -oncirc_containsNoReturnAll$_matcher = null, -oncirc_containsNoReturnAll$__clinit_ = () => { - let var$1; - oncirc_containsNoReturnAll$_MODULE$ = new oncirc_containsNoReturnAll$; - var$1 = new oncirc_containsNoMatchingNodes; - var$1.$matcher0 = new oncirc_containsNoReturnAll$$anonfun$1; - oncirc_containsNoReturnAll$_matcher = var$1; -}, -oncirc_containsNoReturnAll$_toString = $this => { - return $this.$name(); -}, -oncirc_containsNoReturnAll$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -oncirc_containsNoReturnAll$_apply = ($this, $that, $cancellationChecker) => { - let var$3, var$4; - var$3 = oncirc_containsNoReturnAll$_matcher; - var$4 = onciu_Foldable_folder$0(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $that), $cancellationChecker); - s_package$_$callClinit(); - $cancellationChecker = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - $that = new oncirc_containsNoMatchingNodes$$anonfun$apply$1; - if (var$3 === null) - $rt_throw(null); - $that.$$outer50 = var$3; - return (onciu_Foldable$Folder_fold(var$4, $cancellationChecker, $that)).$map(new oncirc_containsNoMatchingNodes$apply$lambda$_7_0); -}, -oncirc_containsNoReturnAll$_name = $this => { - return $rt_s(869); -}, -oncirc_containsNoReturnAll$_productArity = $this => { - return 0; -}, -oncirc_containsNoReturnAll$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncirc_containsNoReturnAll$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncirc_containsNoReturnAll$_hashCode = $this => { - return (-835982863); }; function sci_Set$Set1() { sci_AbstractSet.call(this); @@ -55900,63 +56508,87 @@ sci_Set$Set1__init_ = var_0 => { let var_1 = new sci_Set$Set1(); sci_Set$Set1__init_0(var_1, var_0); return var_1; +}, +oncifpf_PlanPipelineTransformerFactory = $rt_classWithoutFields(0), +oncifp_SemanticAnalysis$ = $rt_classWithoutFields(), +oncifp_SemanticAnalysis$_MODULE$ = null, +oncifp_SemanticAnalysis$__clinit_ = () => { + oncifp_SemanticAnalysis$_MODULE$ = new oncifp_SemanticAnalysis$; }; -function oncias_SemanticState() { - let a = this; jl_Object.call(a); - a.$currentScope = null; - a.$typeTable0 = null; - a.$recordedScopes0 = null; - a.$notifications = null; - a.$features = null; - a.$declareVariablesToSuppressDuplicateErrors = 0; - a.$semanticCheckHasRunOnce = 0; - a.$targetGraph = null; - a.$workingGraph = null; +function oncifp_StatementCondition() { + jl_Object.call(this); + this.$inner3 = null; } -let oncias_SemanticState_typeTable = $this => { - return $this.$typeTable0; +let oncifp_StatementCondition_toString = $this => { + return $this.$name(); }, -oncias_SemanticState_recordedScopes = $this => { - return $this.$recordedScopes0; +oncifp_StatementCondition_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); }, -oncias_SemanticState_newChildScope = $this => { - return oncias_SemanticState_copy($this, oncias_SemanticState$ScopeLocation$_newChildScope$extension(oncias_SemanticState$ScopeLocation$_MODULE$, $this.$currentScope), $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +oncifp_StatementCondition_apply = ($this, $state, $cancellationChecker) => { + let var$3; + if ($rt_isInstance($state, oncifp_BaseState)) { + $state = $state; + return $this.$inner3.$apply38(oncifp_InitialState_statement($state), $cancellationChecker); + } + $cancellationChecker = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(859)), $state); + jl_Throwable__init_($cancellationChecker, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($cancellationChecker); }, -oncias_SemanticState_newSiblingScope = $this => { - let var$1; - var$1 = $this.$currentScope; - oncias_SemanticState$_$callClinit(); - oncias_Scope$_$callClinit(); - return oncias_SemanticState_copy($this, (onciuh_TreeZipper$Location_insertRight(var$1, oncias_Scope$_empty(oncias_Scope$_MODULE$))).$get1(), $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +oncifp_StatementCondition_name = $this => { + let var$1, var$2, var$3; + var$1 = $this.$inner3; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + var$3 = jl_StringBuilder_append(var$2, $rt_s(882)); + jl_AbstractStringBuilder_append0(var$3, 40); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$3, var$1), 41); + return jl_AbstractStringBuilder_toString(var$2); }, -oncias_SemanticState_popScope = $this => { - return oncias_SemanticState_copy($this, ((oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, $this.$currentScope)).$get1()).$location, $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +oncifp_StatementCondition_productPrefix = $this => { + return $rt_s(882); }, -oncias_SemanticState_newBaseScope = $this => { - let var$1, var$2; - var$1 = oncias_SemanticState$ScopeLocation$_MODULE$; - var$2 = $this.$currentScope; - oncias_SemanticState$_$callClinit(); - return oncias_SemanticState_copy($this, oncias_SemanticState$ScopeLocation$_newChildScope$extension(var$1, onciuh_TreeZipper$Location_root(var$2)), $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +oncifp_StatementCondition_productArity = $this => { + return 1; }, -oncias_SemanticState_symbol = ($this, $name) => { - return oncias_SemanticState$ScopeLocation$_symbol$extension(oncias_SemanticState$ScopeLocation$_MODULE$, $this.$currentScope, $name); +oncifp_StatementCondition_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$inner3; + default: + } + return sr_Statics_ioobe($x$1); }, -oncias_SemanticState_isNode = ($this, $name) => { +oncifp_StatementCondition_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncifp_StatementCondition_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncifp_StatementCondition_equals = ($this, $x$1) => { let var$2, var$3; a: { b: { - c: { - var$2 = s_Option_getOrElse(s_Option_map(oncias_SemanticState_symbol($this, $name), new oncias_SemanticState$symbolTypes$lambda$_33_0), new oncias_SemanticState$symbolTypes$lambda$_33_1); - oncius_package$_$callClinit(); - $name = oncius_NodeType_invariant(oncius_package$_CTNode(oncius_package$_MODULE$)); - if (var$2 !== null) { - if (!oncius_TypeSpec_equals(var$2, $name)) + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncifp_StatementCondition) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$inner3; + $x$1 = $x$1.$inner3; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) break b; - else - break c; } - if ($name !== null) + if (!($this instanceof oncifp_StatementCondition)) break b; } var$3 = 1; @@ -55966,480 +56598,112 @@ oncias_SemanticState_isNode = ($this, $name) => { } return var$3; }, -oncias_SemanticState_importValuesFromScope = ($this, $scope, $exclude) => { - let var$3, var$4; - var$3 = $this.$currentScope; - oncias_SemanticState$_$callClinit(); - var$4 = var$3.$elem0; - $exclude = $scope.$symbolTable.$removedAll0($exclude); - return oncias_SemanticState_copy($this, onciuh_TreeZipper$Location_replace(var$3, oncias_Scope_copy(var$4, var$4.$symbolTable.$concat2($exclude), var$4.$children2)), $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +oncifp_StatementCondition__init_ = ($this, $inner) => { + $this.$inner3 = $inner; }, -oncias_SemanticState_importValuesFromScope$default$2 = $this => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; +oncifp_StatementCondition__init_0 = var_0 => { + let var_1 = new oncifp_StatementCondition(); + oncifp_StatementCondition__init_(var_1, var_0); + return var_1; }, -oncias_SemanticState_declareVariable = ($this, $variable, $possibleTypes, $maybePreviousDeclaration, $overriding, $unionVariable) => { - let var$6, $definition, $previousDeclaration, $uses, var$10, var$11; - if (oncias_SemanticState$ScopeLocation$_localSymbol$extension(oncias_SemanticState$ScopeLocation$_MODULE$, $this.$currentScope, $variable.$name4) instanceof s_Some && !$overriding) { - s_package$_$callClinit(); - $possibleTypes = s_package$_Left(s_package$_MODULE$); - oncias_SemanticError$_$callClinit(); - $maybePreviousDeclaration = oncias_SemanticError$_MODULE$; - var$6 = $variable.$name4; - $definition = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($definition); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($definition, $rt_s(870)), var$6), $rt_s(871)); - return su_Left$_apply($possibleTypes, oncias_SemanticError$_apply($maybePreviousDeclaration, jl_AbstractStringBuilder_toString($definition), $variable.$position4)); - } - if (!($maybePreviousDeclaration instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, $maybePreviousDeclaration)) - $rt_throw(s_MatchError__init_($maybePreviousDeclaration)); - var$6 = new s_Tuple2; - $definition = oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable); - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - s_Tuple2__init_0(var$6, $definition, sci_Set$EmptySet$_MODULE$); - } else { - $previousDeclaration = $maybePreviousDeclaration.$value5; - var$6 = new s_Tuple2; - $uses = $previousDeclaration.$definition; - $definition = $previousDeclaration.$uses; - s_Predef$_$callClinit(); - var$10 = s_Predef$_Set(s_Predef$_MODULE$); - $maybePreviousDeclaration = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(oncias_SymbolUse, 1); - var$11.data[0] = oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable); - s_Tuple2__init_0(var$6, $uses, $definition.$concat1(var$10.$from0(sr_ScalaRunTime$_wrapRefArray($maybePreviousDeclaration, var$11)))); - } - $definition = var$6.$_10; - $uses = var$6.$_20; - $maybePreviousDeclaration = s_Tuple2__init_($definition, $uses); - $definition = $maybePreviousDeclaration.$_10; - $uses = $maybePreviousDeclaration.$_20; - s_package$_$callClinit(); - return su_Right$_apply(s_package$_Right(s_package$_MODULE$), oncias_SemanticState_updateVariable($this, $variable, $possibleTypes, $definition, $uses, $unionVariable)); +oncifp_DeprecatedSyntaxReplaced$ = $rt_classWithoutFields(), +oncifp_DeprecatedSyntaxReplaced$_MODULE$ = null, +oncifp_DeprecatedSyntaxReplaced$__clinit_ = () => { + oncifp_DeprecatedSyntaxReplaced$_MODULE$ = new oncifp_DeprecatedSyntaxReplaced$; }, -oncias_SemanticState_addNotification = ($this, $notification) => { - let var$2; - var$2 = $this.$notifications.$incl($notification); - return oncias_SemanticState_copy($this, $this.$currentScope, $this.$typeTable0, $this.$recordedScopes0, var$2, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +oncifp_DeprecatedSyntaxReplaced$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); }, -oncias_SemanticState_implicitVariable = ($this, $variable, $possibleTypes) => { - let $symbol, $existingTypes, $inferredTypes, $expectedTypes, var$7; - $symbol = oncias_SemanticState_symbol($this, $variable.$name4); - if (jl_Object_equals(s_None$_MODULE$, $symbol)) { - s_package$_$callClinit(); - $symbol = s_package$_Right(s_package$_MODULE$); - $existingTypes = oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable); - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return su_Right$_apply($symbol, oncias_SemanticState_updateVariable($this, $variable, $possibleTypes, $existingTypes, sci_Set$EmptySet$_MODULE$, 0)); - } - if (!($symbol instanceof s_Some)) - $rt_throw(s_MatchError__init_($symbol)); - $symbol = $symbol.$value5; - $inferredTypes = oncius_TypeSpec_intersect($symbol.$types1, $possibleTypes); - if (oncius_TypeSpec_nonEmpty($inferredTypes)) { - s_package$_$callClinit(); - return su_Right$_apply(s_package$_Right(s_package$_MODULE$), oncias_SemanticState_updateVariable($this, $variable, $inferredTypes, $symbol.$definition, $symbol.$uses.$incl(oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable)), 0)); - } - $existingTypes = oncius_TypeSpec_mkString0($symbol.$types1, $rt_s(45), $rt_s(872)); - $expectedTypes = oncius_TypeSpec_mkString0($possibleTypes, $rt_s(45), $rt_s(872)); - s_package$_$callClinit(); - $possibleTypes = s_package$_Left(s_package$_MODULE$); - oncias_SemanticError$_$callClinit(); - $symbol = oncias_SemanticError$_MODULE$; - var$7 = $variable.$name4; - $inferredTypes = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($inferredTypes); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($inferredTypes, $rt_s(873)), var$7), $rt_s(874)), $existingTypes), $rt_s(875)), $expectedTypes), 41); - return su_Left$_apply($possibleTypes, oncias_SemanticError$_apply($symbol, jl_AbstractStringBuilder_toString($inferredTypes), $variable.$position4)); +oncifp_DeprecatedSyntaxReplaced$_productArity = $this => { + return 0; }, -oncias_SemanticState_ensureVariableDefined = ($this, $variable) => { - let $symbol, var$3, var$4, var$5; - $symbol = oncias_SemanticState_symbol($this, $variable.$name4); - if (jl_Object_equals(s_None$_MODULE$, $symbol)) { - s_package$_$callClinit(); - $symbol = s_package$_Left(s_package$_MODULE$); - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = $variable.$name4; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(870)), var$4), $rt_s(876)); - return su_Left$_apply($symbol, oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$5), $variable.$position4)); - } - if (!($symbol instanceof s_Some)) - $rt_throw(s_MatchError__init_($symbol)); - $symbol = $symbol.$value5; - s_package$_$callClinit(); - return su_Right$_apply(s_package$_Right(s_package$_MODULE$), oncias_SemanticState_updateVariable($this, $variable, $symbol.$types1, $symbol.$definition, $symbol.$uses.$incl(oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, $variable)), 0)); +oncifp_DeprecatedSyntaxReplaced$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticState_expressionType = ($this, $expression) => { - let var$2; - var$2 = $this.$typeTable0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - return var$2.$getOrElse1(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $expression), new oncias_SemanticState$expressionType$lambda$_48_0); +oncifp_DeprecatedSyntaxReplaced$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticState_updateVariable = ($this, $variable, $types, $definition, $uses, $unionVariable) => { - let var$6, var$7, var$8, var$9, var$10; - var$6 = $this.$currentScope; - var$7 = $variable.$name4; - oncias_SemanticState$_$callClinit(); - var$8 = var$6.$elem0; - var$9 = var$8.$symbolTable; - var$10 = new oncias_Symbol; - var$10.$name12 = var$7; - var$10.$types1 = $types; - var$10.$definition = $definition; - var$10.$uses = $uses; - var$10.$unionSymbol = $unionVariable; - var$9 = onciuh_TreeZipper$Location_replace(var$6, oncias_Scope_copy(var$8, var$9.$updated0(var$7, var$10), var$8.$children2)); - $uses = $this.$typeTable0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - return oncias_SemanticState_copy($this, var$9, $uses.$updated0(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $variable), oncias_ExpressionTypeInfo$_apply(oncias_ExpressionTypeInfo$_MODULE$, $types, s_None$_MODULE$)), $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +oncifp_DeprecatedSyntaxReplaced$_hashCode = $this => { + return 1874952678; }, -oncias_SemanticState_recordCurrentScope = ($this, $astNode) => { - let var$2, $x$1; - var$2 = $this.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - $x$1 = var$2.$updated0(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $astNode), oncias_SemanticState$ScopeLocation__init_($this.$currentScope)); - return oncias_SemanticState_copy($this, $this.$currentScope, $this.$typeTable0, $x$1, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $this.$workingGraph); +oncifp_DeprecatedSyntaxReplaced$_toString = $this => { + return $rt_s(883); }, -oncias_SemanticState_scope = ($this, $astNode) => { - let var$2; - var$2 = $this.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - return s_Option_map(var$2.$get2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $astNode)), new oncias_SemanticState$scope$lambda$_52_0); +oncifp_DeprecatedSemanticsReplaced$ = $rt_classWithoutFields(), +oncifp_DeprecatedSemanticsReplaced$_MODULE$ = null, +oncifp_DeprecatedSemanticsReplaced$__clinit_ = () => { + oncifp_DeprecatedSemanticsReplaced$_MODULE$ = new oncifp_DeprecatedSemanticsReplaced$; }, -oncias_SemanticState_recordTargetGraph = ($this, $targetGraph) => { - let $x$1; - $x$1 = s_Some__init_($targetGraph); - return oncias_SemanticState_copy($this, $this.$currentScope, $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $x$1, $this.$workingGraph); +oncifp_DeprecatedSemanticsReplaced$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); }, -oncias_SemanticState_recordWorkingGraph = ($this, $graph) => { - return oncias_SemanticState_copy($this, $this.$currentScope, $this.$typeTable0, $this.$recordedScopes0, $this.$notifications, $this.$features, $this.$declareVariablesToSuppressDuplicateErrors, $this.$semanticCheckHasRunOnce, $this.$targetGraph, $graph); +oncifp_DeprecatedSemanticsReplaced$_productArity = $this => { + return 0; }, -oncias_SemanticState_copy = ($this, $currentScope, $typeTable, $recordedScopes, $notifications, $features, $declareVariablesToSuppressDuplicateErrors, $semanticCheckHasRunOnce, $targetGraph, $workingGraph) => { - return oncias_SemanticState__init_0($currentScope, $typeTable, $recordedScopes, $notifications, $features, $declareVariablesToSuppressDuplicateErrors, $semanticCheckHasRunOnce, $targetGraph, $workingGraph); +oncifp_DeprecatedSemanticsReplaced$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticState_productPrefix = $this => { - return $rt_s(877); +oncifp_DeprecatedSemanticsReplaced$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticState_productArity = $this => { - return 9; +oncifp_DeprecatedSemanticsReplaced$_hashCode = $this => { + return (-85453526); }, -oncias_SemanticState_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return oncias_SemanticState$ScopeLocation__init_($this.$currentScope); - case 1: - return $this.$typeTable0; - case 2: - return $this.$recordedScopes0; - case 3: - return $this.$notifications; - case 4: - return $this.$features; - case 5: - return jl_Boolean_valueOf($this.$declareVariablesToSuppressDuplicateErrors); - case 6: - return jl_Boolean_valueOf($this.$semanticCheckHasRunOnce); - case 7: - return $this.$targetGraph; - case 8: - return $this.$workingGraph; - default: - } - return sr_Statics_ioobe($x$1); +oncifp_DeprecatedSemanticsReplaced$_toString = $this => { + return $rt_s(884); }, -oncias_SemanticState_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$ = $rt_classWithoutFields(), +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_MODULE$ = null, +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$__clinit_ = () => { + oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_MODULE$ = new oncifp_PreparatoryRewriting$SemanticAnalysisPossible$; }, -oncias_SemanticState_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(877))), sr_Statics_anyHash(oncias_SemanticState$ScopeLocation__init_($this.$currentScope))), sr_Statics_anyHash($this.$typeTable0)), sr_Statics_anyHash($this.$recordedScopes0)), sr_Statics_anyHash($this.$notifications)), sr_Statics_anyHash($this.$features)), !$this.$declareVariablesToSuppressDuplicateErrors - ? 1237 : 1231), !$this.$semanticCheckHasRunOnce ? 1237 : 1231), sr_Statics_anyHash($this.$targetGraph)), sr_Statics_anyHash($this.$workingGraph)), 9); +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); }, -oncias_SemanticState_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productArity = $this => { + return 0; }, -oncias_SemanticState_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticState) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$declareVariablesToSuppressDuplicateErrors != $x$1.$declareVariablesToSuppressDuplicateErrors) - break b; - if ($this.$semanticCheckHasRunOnce != $x$1.$semanticCheckHasRunOnce) - break b; - c: { - var$2 = $this.$currentScope; - var$3 = $x$1.$currentScope; - if (var$2 !== null) { - if (!onciuh_TreeZipper$Location_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$typeTable0; - var$3 = $x$1.$typeTable0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$recordedScopes0; - var$3 = $x$1.$recordedScopes0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$notifications; - var$3 = $x$1.$notifications; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$features; - var$3 = $x$1.$features; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$2 = $this.$targetGraph; - var$3 = $x$1.$targetGraph; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break h; - } - if (var$3 !== null) - break b; - } - i: { - var$3 = $this.$workingGraph; - $x$1 = $x$1.$workingGraph; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break i; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncias_SemanticState)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticState__init_ = ($this, $currentScope, $typeTable, $recordedScopes, $notifications, $features, $declareVariablesToSuppressDuplicateErrors, $semanticCheckHasRunOnce, $targetGraph, $workingGraph) => { - $this.$currentScope = $currentScope; - $this.$typeTable0 = $typeTable; - $this.$recordedScopes0 = $recordedScopes; - $this.$notifications = $notifications; - $this.$features = $features; - $this.$declareVariablesToSuppressDuplicateErrors = $declareVariablesToSuppressDuplicateErrors; - $this.$semanticCheckHasRunOnce = $semanticCheckHasRunOnce; - $this.$targetGraph = $targetGraph; - $this.$workingGraph = $workingGraph; +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticState__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { - let var_9 = new oncias_SemanticState(); - oncias_SemanticState__init_(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); - return var_9; +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_hashCode = $this => { + return 727969395; }, -oncias_TokenTable = $rt_classWithoutFields(0); -function oncias_SemanticTable() { - let a = this; jl_Object.call(a); - a.$hashCode7 = 0; - a.$types2 = null; - a.$recordedScopes1 = null; - a.$resolvedLabelNames = null; - a.$resolvedPropertyKeyNames = null; - a.$resolvedRelTypeNames = null; - a.$bitmap$038 = 0; -} -let oncias_SemanticTable_hashCode = $this => { - let var$1, $$je; - if ($this.$bitmap$038) - return $this.$hashCode7; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$038) - break a; - $this.$hashCode7 = sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); - $this.$bitmap$038 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$hashCode7; +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_toString = $this => { + return $rt_s(885); }, -oncias_SemanticTable_typeFor = ($this, $expr) => { - let var$2, var$3; - var$2 = new oncias_SemanticTable$TypeGetter; - var$3 = $this.$types2; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - var$2.$typeInfo = s_Option_map(var$3.$get2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $expr)), new oncias_SemanticTable$typeFor$lambda$_25_0); - return var$2; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$ = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_MODULE$ = null, +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$__clinit_ = () => { + oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_MODULE$ = new oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$; }, -oncias_SemanticTable_productPrefix = $this => { - return $rt_s(878); +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); }, -oncias_SemanticTable_productArity = $this => { - return 5; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productArity = $this => { + return 0; }, -oncias_SemanticTable_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$types2; - case 1: - return $this.$recordedScopes1; - case 2: - return $this.$resolvedLabelNames; - case 3: - return $this.$resolvedPropertyKeyNames; - case 4: - return $this.$resolvedRelTypeNames; - default: - } +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -oncias_SemanticTable_productIterator = $this => { +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticTable_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticTable_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticTable) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$types2; - var$3 = $x$1.$types2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$recordedScopes1; - var$3 = $x$1.$recordedScopes1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$resolvedLabelNames; - var$3 = $x$1.$resolvedLabelNames; - if (var$2 === null) { - if (var$3 === null) - break f; - break b; - } - if (!sc_Map_equals$(var$2, var$3)) - break b; - } - g: { - var$2 = $this.$resolvedPropertyKeyNames; - var$3 = $x$1.$resolvedPropertyKeyNames; - if (var$2 === null) { - if (var$3 === null) - break g; - break b; - } - if (!sc_Map_equals$(var$2, var$3)) - break b; - } - var$3 = $this.$resolvedRelTypeNames; - $x$1 = $x$1.$resolvedRelTypeNames; - if (var$3 === null) { - if ($x$1 === null) - break c; - break b; - } - if (!sc_Map_equals$(var$3, $x$1)) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_hashCode = $this => { + return 638070250; }, -oncias_SemanticTable__init_0 = ($this, $types, $recordedScopes, $resolvedLabelNames, $resolvedPropertyKeyNames, $resolvedRelTypeNames) => { - $this.$types2 = $types; - $this.$recordedScopes1 = $recordedScopes; - $this.$resolvedLabelNames = $resolvedLabelNames; - $this.$resolvedPropertyKeyNames = $resolvedPropertyKeyNames; - $this.$resolvedRelTypeNames = $resolvedRelTypeNames; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_toString = $this => { + return $rt_s(886); }, -oncias_SemanticTable__init_ = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncias_SemanticTable(); - oncias_SemanticTable__init_0(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; +oncifp_CompilationPhaseTracer = $rt_classWithoutFields(0), +oncifp_CompilationPhaseTracer_NONE_PHASE = null; +let oncifp_CompilationPhaseTracer_NO_TRACING = null, +oncifp_CompilationPhaseTracer__clinit_ = () => { + oncifp_CompilationPhaseTracer_NONE_PHASE = new oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_0; + oncifp_CompilationPhaseTracer_NO_TRACING = new oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_1; }, jl_AbstractStringBuilder$Constants = $rt_classWithoutFields(), jl_AbstractStringBuilder$Constants_longLogPowersOfTen = null, @@ -56479,7 +56743,7 @@ otcit_FloatAnalyzer_analyze = ($d, $result) => { $decExponent = var$6.length; if ($mantissa > $decExponent) { $result = new jl_IllegalArgumentException; - jl_Throwable__init_($result); + jl_Throwable__init_0($result); $rt_throw($result); } $posCmp = $decExponent - 1 | 0; @@ -56569,14 +56833,208 @@ function otcit_FloatAnalyzer$Result() { a.$exponent0 = 0; a.$sign1 = 0; } -let onn_NotificationWrapping$ = $rt_classWithoutFields(), +function oncirc_containsNoNodesOfType() { + jl_Object.call(this); + this.$tag = null; +} +let oncirc_containsNoNodesOfType_toString = $this => { + return $this.$name(); +}, +oncirc_containsNoNodesOfType_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); +}, +oncirc_containsNoNodesOfType_apply = ($this, $that, $cancellationChecker) => { + s_Option$_$callClinit(); + return (s_Option$_option2Iterable(s_Option$_MODULE$, s_Option_map(onciu_Foldable$Folder_treeFindByClass(onciu_Foldable_folder$0(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $that), $cancellationChecker), $this.$tag), new oncirc_containsNoNodesOfType$apply$lambda$_5_0))).$toSeq(); +}, +oncirc_containsNoNodesOfType_name = $this => { + let var$1, var$2, var$3; + var$1 = jl_Class_getSimpleName($this.$tag.$runtimeClass()); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + var$3 = jl_StringBuilder_append(var$2, $rt_s(887)); + jl_AbstractStringBuilder_append0(var$3, 91); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$3, var$1), 93); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncirc_containsNoNodesOfType_hashCode = $this => { + return $this.$tag.$hashCode(); +}, +oncirc_containsNoNodesOfType_equals = ($this, $obj) => { + if (!($obj instanceof oncirc_containsNoNodesOfType)) + return 0; + $obj = $obj; + return $this.$tag.$equals($obj.$tag); +}, +oncirc_containsNoNodesOfType_productArity = $this => { + return 0; +}, +oncirc_containsNoNodesOfType_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncirc_containsNoNodesOfType_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckable = $rt_classWithoutFields(0), +oncia_ReturnItem = $rt_classWithoutFields(0), +oncia_ReturnItem_isPassThrough$ = $$this => { + return s_Option_contains($$this.$alias(), $$this.$expression0()); +}, +oncia_ReturnItem_semanticCheck$ = $$this => { + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Results$_MODULE$, $$this.$expression0()); +}; +function oncia_UnaliasedReturnItem() { + let a = this; jl_Object.call(a); + a.$expression19 = null; + a.$inputText1 = null; + a.$position107 = null; + a.$alias0 = null; + a.$name46 = null; +} +let oncia_UnaliasedReturnItem_isPassThrough = $this => { + return oncia_ReturnItem_isPassThrough$($this); +}, +oncia_UnaliasedReturnItem_semanticCheck = $this => { + return oncia_ReturnItem_semanticCheck$($this); +}, +oncia_UnaliasedReturnItem_expression = $this => { + return $this.$expression19; +}, +oncia_UnaliasedReturnItem_position = $this => { + return $this.$position107; +}, +oncia_UnaliasedReturnItem_alias = $this => { + return $this.$alias0; +}, +oncia_UnaliasedReturnItem_name = $this => { + return $this.$name46; +}, +oncia_UnaliasedReturnItem_productPrefix = $this => { + return $rt_s(888); +}, +oncia_UnaliasedReturnItem_productArity = $this => { + return 2; +}, +oncia_UnaliasedReturnItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression19; + case 1: + return $this.$inputText1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_UnaliasedReturnItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UnaliasedReturnItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UnaliasedReturnItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UnaliasedReturnItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UnaliasedReturnItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expression19; + var$3 = $x$1.$expression19; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$inputText1; + $x$1 = $x$1.$inputText1; + if (var$3 !== null) { + if (!jl_String_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_UnaliasedReturnItem)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_UnaliasedReturnItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_UnaliasedReturnItem__init_0 = ($this, $expression, $inputText, $position) => { + $this.$expression19 = $expression; + $this.$inputText1 = $inputText; + $this.$position107 = $position; + if ($expression instanceof oncie_LogicalVariable) { + $inputText = $expression; + $expression = s_Some__init_(oncie_Variable_copyId($inputText)); + } else if (!($expression instanceof oncie_MapProjection)) + $expression = s_None$_MODULE$; + else { + $inputText = $expression; + $expression = s_Some__init_(oncie_Variable_copyId($inputText.$name31)); + } + $this.$alias0 = $expression; + $expression = s_Option_map($expression, new oncia_UnaliasedReturnItem$_init_$lambda$_31_0); + $inputText = new oncia_UnaliasedReturnItem$_init_$lambda$_31_1; + $inputText.$_039 = $this; + $this.$name46 = s_Option_getOrElse($expression, $inputText); +}, +oncia_UnaliasedReturnItem__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_UnaliasedReturnItem(); + oncia_UnaliasedReturnItem__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$ = $rt_classWithoutFields(), +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_MODULE$ = null, +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$__clinit_ = () => { + oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_MODULE$ = new oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$; +}, +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); +}, +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productArity = $this => { + return 0; +}, +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_hashCode = $this => { + return (-85286343); +}, +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_toString = $this => { + return $rt_s(889); +}, +onn_NotificationWrapping$ = $rt_classWithoutFields(), onn_NotificationWrapping$_MODULE$ = null, onn_NotificationWrapping$__clinit_ = () => { onn_NotificationWrapping$_MODULE$ = new onn_NotificationWrapping$; }, onn_NotificationWrapping$_asKernelNotification = ($this, $offset, $notification) => { - let $pos, $variables, $pattern, $failingConf, $fallbackRuntimeConf, $cause, $variableName, $label, $propertyKeys, $entityType, $indexType, $indexHintType, $position, $javaVariables, $labels, $relTypes, $labelName, $relType, $name, $pathPredicates, $oldName, $newName, $procedure, $field, $function, $oldExpression, $rewrittenExpression, $deprecated, $replacement, $warning, $parameters, $varName, $proc, $msg, $oldOption, $newOption, $relTypeExpression, $relName, $unicode, $identifier, $provider, $command, $conflicting, - $server, $servers; + let $pos, $variables, $pattern, $failingConf, $fallbackRuntimeConf, $cause, $variableName, $label, $propertyKeys, $entityType, $indexType, $indexHintType, $position, $javaVariables, $labels, $relTypes, $labelName, $relType, $name, $pathPredicates, $oldName, $newName, $procedure, $field, $function, $oldExpression, $rewrittenExpression, $deprecated, $replacement, $warning, $parameters, $varName, $proc, $properties, $labelExpressionPredicate, $remainingExpression, $msg, $oldOption, $newOption, $relTypeExpression, + $stringified, $relName, $unicode, $identifier, $provider, $command, $conflicting, $server, $servers; if ($notification instanceof onciu_CartesianProductNotification) { $notification = $notification; $pos = onciu_CartesianProductNotification_position($notification); @@ -56765,14 +57223,39 @@ onn_NotificationWrapping$_asKernelNotification = ($this, $offset, $notification) $varName = onciu_DeprecatedImportingWithInSubqueryCall_variable($notification); return onn_NotificationCodeWithDescription_deprecatedImportingWithInSubqueryCall(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, $pos.$withOffset($offset))), $varName); } - if ($notification instanceof onciu_UnionReturnItemsInDifferentOrder) - return onn_NotificationCodeWithDescription_unionReturnOrder(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, (onciu_UnionReturnItemsInDifferentOrder_position($notification)).$withOffset($offset)))); + if ($notification instanceof onciu_DeprecatedWhereVariableInNodePattern) { + $notification = $notification; + $pos = onciu_DeprecatedWhereVariableInNodePattern_position($notification); + $variableName = onciu_DeprecatedWhereVariableInNodePattern_variableName($notification); + $properties = onciu_DeprecatedWhereVariableInNodePattern_properties($notification); + return onn_NotificationCodeWithDescription_deprecatedWhereVariableInNodePattern(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, $pos.$withOffset($offset))), $variableName, $properties); + } + if ($notification instanceof onciu_DeprecatedWhereVariableInRelationshipPattern) { + $notification = $notification; + $pos = onciu_DeprecatedWhereVariableInRelationshipPattern_position($notification); + $variableName = onciu_DeprecatedWhereVariableInRelationshipPattern_variableName($notification); + $properties = onciu_DeprecatedWhereVariableInRelationshipPattern_properties($notification); + return onn_NotificationCodeWithDescription_deprecatedWhereVariableInRelationshipPattern(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, $pos.$withOffset($offset))), $variableName, $properties); + } + if ($notification instanceof onciu_DeprecatedPrecedenceOfLabelExpressionPredicate) { + $notification = $notification; + $pos = onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_position($notification); + $labelExpressionPredicate = onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_labelExpression($notification); + return onn_NotificationCodeWithDescription_deprecatedPrecedenceOfLabelExpressionPredicate(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, $pos.$withOffset($offset))), $labelExpressionPredicate); + } + if ($notification instanceof onciu_DeprecatedKeywordVariableInWhenOperand) { + $notification = $notification; + $pos = onciu_DeprecatedKeywordVariableInWhenOperand_position($notification); + $variableName = onciu_DeprecatedKeywordVariableInWhenOperand_variableName($notification); + $remainingExpression = onciu_DeprecatedKeywordVariableInWhenOperand_remainingExpression($notification); + return onn_NotificationCodeWithDescription_deprecatedKeywordVariableInWhenOperand(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, $pos.$withOffset($offset))), $variableName, $remainingExpression); + } if ($notification instanceof onciu_HomeDatabaseNotPresent) { $name = $notification.$databaseName0(); onciu_InputPosition$_$callClinit(); $offset = onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$))); $notification = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($notification, $rt_s(879)), $name); + jl_StringBuilder_append(jl_StringBuilder_append($notification, $rt_s(890)), $name); return onn_NotificationCodeWithDescription_homeDatabaseNotPresent($offset, jl_StringBuilder_toString($notification), $name); } if ($notification instanceof onciu_FixedLengthRelationshipInShortestPath) { @@ -56784,12 +57267,14 @@ onn_NotificationWrapping$_asKernelNotification = ($this, $offset, $notification) } if ($notification instanceof onciu_DeprecatedTextIndexProvider) return onn_NotificationCodeWithDescription_deprecatedTextIndexProvider(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, (onciu_DeprecatedTextIndexProvider_position($notification)).$withOffset($offset)))); + if ($notification instanceof onciu_DeprecatedIndexProviderOption) + return onn_NotificationCodeWithDescription_deprecatedIndexProviderOption(ong_InputPosition_empty); if ($notification instanceof onciu_DeprecatedDatabaseNameNotification) { $notification = $notification; $name = onciu_DeprecatedDatabaseNameNotification_databaseName($notification); - $offset = s_Option_getOrElse(s_Option_map(onciu_DeprecatedDatabaseNameNotification_position($notification), onn_NotificationWrapping$$asKernelNotification$lambda$_1_0__init_($offset)), onn_NotificationWrapping$$asKernelNotification$lambda$_1_1__init_0()); + $offset = s_Option_getOrElse(s_Option_map(onciu_DeprecatedDatabaseNameNotification_position($notification), onn_NotificationWrapping$$asKernelNotification$lambda$_2_0__init_($offset)), onn_NotificationWrapping$$asKernelNotification$lambda$_2_1__init_()); $notification = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($notification, $rt_s(880)), $name); + jl_StringBuilder_append(jl_StringBuilder_append($notification, $rt_s(891)), $name); return onn_NotificationCodeWithDescription_deprecatedDatabaseName($offset, jl_StringBuilder_toString($notification)); } if ($notification instanceof onciu_DeprecatedRuntimeNotification) { @@ -56805,6 +57290,11 @@ onn_NotificationWrapping$_asKernelNotification = ($this, $offset, $notification) $relTypeExpression = onciu_UnsatisfiableRelationshipTypeExpression_labelExpression($notification); return onn_NotificationCodeWithDescription_unsatisfiableRelationshipTypeExpression(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, $position.$withOffset($offset))), onn_NotificationDetail_unsatisfiableRelTypeExpression($relTypeExpression), $relTypeExpression); } + if ($notification instanceof onciu_RuntimeUnsatisfiableRelationshipTypeExpression) { + $stringified = sc_AbstractIterable_mkString($notification.$types0(), $rt_s(451)); + onciu_InputPosition$_$callClinit(); + return onn_NotificationCodeWithDescription_unsatisfiableRelationshipTypeExpression(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$))), onn_NotificationDetail_unsatisfiableRelTypeExpression($stringified), $stringified); + } if ($notification instanceof onciu_RepeatedRelationshipReference) { $notification = $notification; $position = onciu_RepeatedRelationshipReference_position($notification); @@ -56841,8 +57331,12 @@ onn_NotificationWrapping$_asKernelNotification = ($this, $offset, $notification) return onn_NotificationCodeWithDescription_deprecatedConnectComponentsPlannerPreParserOption(onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition($this, $notification.$position()))); if ($notification instanceof onciu_DeprecatedOptionInOptionMap) { $offset = $notification; - return onn_NotificationCodeWithDescription_deprecatedOptionInOptionMap($offset.$oldOption(), $offset.$newOption()); + return onn_NotificationCodeWithDescription_deprecatedOptionInOptionMap($offset.$oldOption(), $offset.$replacmentOption()); } + if ($notification instanceof onciu_DeprecatedSeedingOption) + return onn_NotificationCodeWithDescription_deprecatedSeedingOption($notification.$oldOption()); + if ($notification instanceof onciu_DeprecatedStoreFormat) + return onn_NotificationCodeWithDescription_deprecatedStoreFormat($notification.$format2()); if ($notification instanceof onciu_AuthProviderNotDefined) { $provider = $notification.$provider(); return onn_NotificationCodeWithDescription_authProviderNotDefined(ong_InputPosition_empty, $provider); @@ -56903,12 +57397,14 @@ onn_NotificationWrapping$_asKernelNotification = ($this, $offset, $notification) return onn_NotificationCodeWithDescription_aggregationSkippedNull(); if (jl_Object_equals(onciu_DeprecatedBooleanCoercion$_MODULE$, $notification)) return onn_NotificationCodeWithDescription_deprecatedBooleanCoercion(); - $rt_throw(jl_IllegalStateException__init_1($rt_s(881))); + if (jl_Object_equals(onciu_InsecureProtocol$_MODULE$, $notification)) + return onn_NotificationCodeWithDescription_insecureProtocol(); + $rt_throw(jl_IllegalStateException__init_1($rt_s(892))); }, onn_NotificationWrapping$_ConvertibleCompilerInputPosition = ($this, $pos) => { let var$2; var$2 = new onn_NotificationWrapping$ConvertibleCompilerInputPosition; - var$2.$pos7 = $pos; + var$2.$pos5 = $pos; return var$2; }, ong_CommonGqlStatusObject = $rt_classWithoutFields(0); @@ -56918,14 +57414,17 @@ function ong_CommonGqlStatusObjectImplementation() { a.$diagnosticRecord = null; a.$messageWithParameters = null; } -let ong_CommonGqlStatusObjectImplementation_insertMessageParameters = ($this, $parameters) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14; +let ong_CommonGqlStatusObjectImplementation_gqlStatus = $this => { + return ong_GqlStatusInfoCodes_getStatusString($this.$gqlStatusInfo); +}, +ong_CommonGqlStatusObjectImplementation_insertMessageParameters = ($this, $parameters) => { + let var$2, var$3, var$4, var$5, var$6, var$7; var$2 = $this.$gqlStatusInfo; var$3 = var$2.$statusParameterKeys.data; var$4 = var$3.length; if (var$4 && $parameters !== null) { if (var$4 == 1 && $parameters.$containsKey(var$3[0])) - ju_Collections_singletonMap(var$3[0].$name6, $parameters.$get6(var$3[0])); + ju_Collections_singletonMap(var$3[0].$name7, $parameters.$get6(var$3[0])); else { var$5 = ju_HashMap__init_3(var$2.$statusParameterKeys.data.length, 1.0); var$6 = 0; @@ -56934,44 +57433,12 @@ let ong_CommonGqlStatusObjectImplementation_insertMessageParameters = ($this, $p if (var$6 >= var$3.length) break; var$7 = var$3[var$6]; - ju_HashMap_put(var$5, var$7.$name6, $parameters.$get6(var$7)); + ju_HashMap_put(var$5, var$7.$name7, $parameters.$get6(var$7)); var$6 = var$6 + 1 | 0; } } } - var$2 = $this.$gqlStatusInfo; - var$3 = var$2.$statusParameterKeys; - var$7 = var$2.$joinStyles; - var$8 = var$2.$template; - var$9 = var$2.$offsets1; - if ($parameters === null) - $parameters = ju_Collections_EMPTY_MAP; - var$10 = $rt_createArray(jl_Object, var$3.data.length); - var$11 = var$10.data; - var$6 = 0; - while (true) { - var$12 = var$2.$statusParameterKeys.data; - if (var$6 >= var$12.length) - break; - var$13 = var$12[var$6]; - var$14 = $parameters.$get6(var$13); - ong_GqlStatusInfoCodes_$callClinit(); - if (var$14 === null) - var$14 = ong_GqlParams$GqlParam_toParamFormat(var$13); - var$11[var$6] = var$14; - var$6 = var$6 + 1 | 0; - } - return ong_SimpleMessageFormatter_format(var$3, var$7, var$8, $rt_s(882), var$9, var$10); -}, -ong_CommonGqlStatusObjectImplementation_equals = ($this, $o) => { - let $that; - if ($this === $o) - return 1; - if ($o !== null && jl_Object_getClass($this) === jl_Object_getClass($o)) { - $that = $o; - return ju_Objects_equals($this.$gqlStatusInfo, $that.$gqlStatusInfo) && ju_Objects_equals($this.$diagnosticRecord, $that.$diagnosticRecord) ? 1 : 0; - } - return 0; + return ong_GqlStatusInfoCodes_getMessage($this.$gqlStatusInfo, $parameters); }, ong_CommonGqlStatusObjectImplementation_hashCode = $this => { let var$1, var$2; @@ -56988,19 +57455,19 @@ function onn_NotificationImplementation() { a.$neo4jStatus = null; a.$title1 = null; a.$descriptionWithParameters = null; - a.$position213 = null; + a.$position218 = null; } function ong_InputPosition() { let a = this; jl_Object.call(a); - a.$offset1 = 0; - a.$line2 = 0; - a.$column1 = 0; + a.$offset2 = 0; + a.$line3 = 0; + a.$column2 = 0; } let ong_InputPosition_empty = null, ong_InputPosition__init_0 = ($this, $offset, $line, $column) => { - $this.$offset1 = $offset; - $this.$line2 = $line; - $this.$column1 = $column; + $this.$offset2 = $offset; + $this.$line3 = $line; + $this.$column2 = $column; }, ong_InputPosition__init_ = (var_0, var_1, var_2) => { let var_3 = new ong_InputPosition(); @@ -57013,25 +57480,25 @@ ong_InputPosition_equals = ($this, $o) => { return 1; if ($o !== null && jl_Object_getClass($this) === jl_Object_getClass($o)) { $that = $o; - if ($this.$offset1 != $that.$offset1) + if ($this.$offset2 != $that.$offset2) return 0; - if ($this.$line2 != $that.$line2) + if ($this.$line3 != $that.$line3) return 0; - return $this.$column1 != $that.$column1 ? 0 : 1; + return $this.$column2 != $that.$column2 ? 0 : 1; } return 0; }, ong_InputPosition_hashCode = $this => { - return (31 * ((31 * $this.$offset1 | 0) + $this.$line2 | 0) | 0) + $this.$column1 | 0; + return (31 * ((31 * $this.$offset2 | 0) + $this.$line3 | 0) | 0) + $this.$column2 | 0; }, ong_InputPosition_toString = $this => { let var$1, var$2, var$3, var$4; - var$1 = $this.$offset1; - var$2 = $this.$line2; - var$3 = $this.$column1; + var$1 = $this.$offset2; + var$2 = $this.$line3; + var$3 = $this.$column2; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$4, $rt_s(883)), var$1), $rt_s(884)), var$2), $rt_s(885)), var$3), 125); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$4, $rt_s(893)), var$1), $rt_s(894)), var$2), $rt_s(895)), var$3), 125); return jl_AbstractStringBuilder_toString(var$4); }, ong_InputPosition__clinit_ = () => { @@ -57041,7 +57508,7 @@ function sc_Iterator$$anon$10() { let a = this; sc_AbstractIterator.call(a); a.$cur = null; a.$_hasNext = 0; - a.$$outer29 = null; + a.$$outer26 = null; a.$f$31 = null; } let sc_Iterator$$anon$10_hasNext = $this => { @@ -57053,13 +57520,13 @@ let sc_Iterator$$anon$10_hasNext = $this => { return 1; } while (!$this.$cur.$hasNext()) { - if (!$this.$$outer29.$hasNext()) { + if (!$this.$$outer26.$hasNext()) { $this.$_hasNext = 0; $this.$cur = sc_Iterator$_scala$collection$Iterator$$_empty; return 0; } $this.$cur = null; - $this.$cur = ($this.$f$31.$apply2($this.$$outer29.$next())).$iterator0(); + $this.$cur = ($this.$f$31.$apply2($this.$$outer26.$next())).$iterator0(); $this.$_hasNext = (-1); } $this.$_hasNext = 1; @@ -57072,36 +57539,28 @@ sc_Iterator$$anon$10_next = $this => { }; function scm_StringBuilder() { scm_AbstractSeq.call(this); - this.$underlying8 = null; + this.$underlying7 = null; } let scm_StringBuilder_$plus$plus$eq = ($this, $s) => { - jl_AbstractStringBuilder_append($this.$underlying8, $s); + jl_AbstractStringBuilder_append($this.$underlying7, $s); return $this; }, scm_StringBuilder_result = $this => { - return jl_AbstractStringBuilder_toString($this.$underlying8); + return jl_AbstractStringBuilder_toString($this.$underlying7); }, scm_StringBuilder_append = ($this, $s) => { - jl_AbstractStringBuilder_append($this.$underlying8, $s); + jl_AbstractStringBuilder_append($this.$underlying7, $s); return $this; }, -scm_StringBuilder__init_0 = ($this, $underlying) => { - $this.$underlying8 = $underlying; -}, -scm_StringBuilder__init_2 = var_0 => { - let var_1 = new scm_StringBuilder(); - scm_StringBuilder__init_0(var_1, var_0); - return var_1; -}, -scm_StringBuilder__init_1 = $this => { +scm_StringBuilder__init_0 = $this => { let var$1; var$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$1); - scm_StringBuilder__init_0($this, var$1); + $this.$underlying7 = var$1; }, scm_StringBuilder__init_ = () => { let var_0 = new scm_StringBuilder(); - scm_StringBuilder__init_1(var_0); + scm_StringBuilder__init_0(var_0); return var_0; }, sc_MapOps$GenKeySet = $rt_classWithoutFields(0), @@ -57113,7 +57572,7 @@ sc_MapOps$GenKeySet_knownSize$ = $$this => { }; function sc_MapOps$KeySet() { sc_AbstractSet.call(this); - this.$$outer41 = null; + this.$$outer37 = null; } let sc_MapOps$KeySet_iterator = $this => { return sc_MapOps$GenKeySet_iterator$($this); @@ -57122,7 +57581,7 @@ sc_MapOps$KeySet_knownSize = $this => { return sc_MapOps$GenKeySet_knownSize$($this); }, sc_MapOps$KeySet_scala$collection$MapOps$GenKeySet$$$outer = $this => { - return $this.$$outer41; + return $this.$$outer37; }; function scm_ArrayBuilder() { let a = this; jl_Object.call(a); @@ -57185,7 +57644,7 @@ scm_ArrayBuilder_addAll2 = ($this, $xs) => { jl_AbstractStringBuilder_append($copyElemsToArray_xs, $rt_s(801)); $copyElemsToArray_xs = jl_StringBuilder_append0($copyElemsToArray_xs, $actual); jl_AbstractStringBuilder_append($copyElemsToArray_xs, $rt_s(802)); - jl_Throwable__init_0($xs, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($copyElemsToArray_xs, $k))); + jl_Throwable__init_($xs, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($copyElemsToArray_xs, $k))); $rt_throw($xs); } $this.$size1 = $this.$size1 + $k | 0; @@ -57557,7 +58016,7 @@ scm_ArrayBuilder$ofUnit_addOne = ($this, $elem) => { scm_ArrayBuilder$ofUnit_elems = $this => { let var$1; var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); }; function scm_ArrayBuilder$ofRef() { @@ -57610,82 +58069,152 @@ scm_ArrayBuilder$ofRef__init_ = var_0 => { let var_1 = new scm_ArrayBuilder$ofRef(); scm_ArrayBuilder$ofRef__init_0(var_1, var_0); return var_1; +}, +oncifp_RewriteProcedureCalls = $rt_classWithoutFields(0), +oncifp_RewriteProcedureCalls_org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection = ($this, $resolved) => { + let var$2, $newResolved, $projection, var$5; + var$2 = !s_Option_isEmpty($resolved.$signature.$outputSignature) ? 0 : $resolved.$yieldAll5; + $newResolved = oncifp_ResolvedCall_copy($resolved, $resolved.$signature, $resolved.$callArguments, $resolved.$callResults, 1, 1, var$2, $resolved.$optional3, $resolved.$position9); + s_Option$_$callClinit(); + $projection = s_Option_filter(s_Option$_apply(s_Option$_MODULE$, $newResolved.$callResults), new oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_0); + var$5 = new oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_1; + var$5.$_01080 = $resolved; + return s_Tuple2__init_($newResolved, s_Option_map($projection, var$5)); +}, +oncifp_RewriteProcedureCalls_$anonfun$resolveProcedure$1 = ($resolver$2, $name) => { + return $resolver$2.$procedureSignature($name); }; -function oncifp_Phase$transform$lambda$_2_0() { +function oncifp_TryRewriteProcedureCalls() { let a = this; jl_Object.call(a); - a.$_0961 = null; - a.$_1336 = null; - a.$_2115 = null; + a.$resolver0 = null; + a.$rewriter3 = null; + a.$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations = null; } -let oncifh_package$ = $rt_classWithoutFields(), -oncifh_package$_MODULE$ = null, -oncifh_package$__clinit_ = () => { - oncifh_package$_MODULE$ = new oncifh_package$; +let oncifp_TryRewriteProcedureCalls_rewriter = ($this, $resolver) => { + let var$2, var$3, var$4; + var$2 = onciu_bottomUp$_MODULE$; + onciu_Rewriter$_$callClinit(); + var$3 = onciu_Rewriter$_MODULE$; + var$4 = new oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1; + var$4.$$outer52 = $this; + var$4.$resolver$1 = $resolver; + return s_Function1_andThen(onciu_bottomUp$_apply(var$2, onciu_Rewriter$_lift(var$3, var$4), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$), $this.$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations); }, -oncirc_package$PatternExpressionsHaveSemanticInfo$ = $rt_classWithoutFields(), -oncirc_package$PatternExpressionsHaveSemanticInfo$_MODULE$ = null, -oncirc_package$PatternExpressionsHaveSemanticInfo$__clinit_ = () => { - oncirc_package$PatternExpressionsHaveSemanticInfo$_MODULE$ = new oncirc_package$PatternExpressionsHaveSemanticInfo$; +oncifp_TryRewriteProcedureCalls_transform = ($this, $from, $context) => { + return oncifp_Phase_transform$($this, $from, $context); }, -oncirc_package$PatternExpressionsHaveSemanticInfo$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); +oncifp_TryRewriteProcedureCalls_name = $this => { + return $this.$productPrefix(); }, -oncirc_package$PatternExpressionsHaveSemanticInfo$_productArity = $this => { - return 0; +oncifp_TryRewriteProcedureCalls_invalidatedConditions = $this => { + return oncifp_Transformer_invalidatedConditions$($this); }, -oncirc_package$PatternExpressionsHaveSemanticInfo$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncifp_TryRewriteProcedureCalls_checkConditions = ($this, $state, $conditions, $cancellationChecker) => { + return oncifp_Transformer_checkConditions$($this, $state, $conditions, $cancellationChecker); }, -oncirc_package$PatternExpressionsHaveSemanticInfo$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncifp_TryRewriteProcedureCalls_phase = $this => { + return oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE; }, -oncirc_package$PatternExpressionsHaveSemanticInfo$_hashCode = $this => { - return 748739207; +oncifp_TryRewriteProcedureCalls_postConditions = $this => { + s_Predef$_$callClinit(); + return (s_Predef$_Set(s_Predef$_MODULE$)).$from0(sci_Nil$_MODULE$); }, -oncirc_package$PatternExpressionsHaveSemanticInfo$_toString = $this => { - return $rt_s(886); +oncifp_TryRewriteProcedureCalls_productPrefix = $this => { + return $rt_s(896); }, -oncirr_ProjectionClausesHaveSemanticInfo$ = $rt_classWithoutFields(), -oncirr_ProjectionClausesHaveSemanticInfo$_MODULE$ = null, -oncirr_ProjectionClausesHaveSemanticInfo$__clinit_ = () => { - oncirr_ProjectionClausesHaveSemanticInfo$_MODULE$ = new oncirr_ProjectionClausesHaveSemanticInfo$; +oncifp_TryRewriteProcedureCalls_process = ($this, $from, $context) => { + let var$3, var$4; + var$3 = $this.$resolver0; + $context = new oncifp_InstrumentedProcedureSignatureResolver; + $context.$resolver = var$3; + $context.$hasAttemptedToResolve = 0; + var$3 = oncifp_InitialState_statement($from); + var$3 = (oncifp_TryRewriteProcedureCalls_rewriter($this, $context)).$apply2(var$3); + $from = oncifp_InitialState_withStatement($from, var$3); + var$4 = s_Some__init_(sci_List_map(var$3.$returnColumns(), new oncifp_RewriteProcedureCalls$process$lambda$_2_0)); + $from = oncifp_InitialState_copy($from, $from.$queryText, $from.$plannerName, $from.$anonymousVariableNameGenerator, $from.$maybeProcedureSignatureVersion, $from.$maybeStatement, $from.$maybeSemantics, $from.$maybeExtractedParams, $from.$maybeSemanticTable, $from.$accumulatedConditions, var$4, $from.$maybeObfuscationMetadata); + $context = !$context.$hasAttemptedToResolve ? s_None$_MODULE$ : s_Some__init_(jl_Long_valueOf(Long_fromInt(-1))); + return oncifp_InitialState_copy($from, $from.$queryText, $from.$plannerName, $from.$anonymousVariableNameGenerator, $context, $from.$maybeStatement, $from.$maybeSemantics, $from.$maybeExtractedParams, $from.$maybeSemanticTable, $from.$accumulatedConditions, $from.$maybeReturnColumns, $from.$maybeObfuscationMetadata); }, -oncirr_ProjectionClausesHaveSemanticInfo$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); +oncifp_extractSensitiveLiterals$ = $rt_classWithoutFields(), +oncifp_extractSensitiveLiterals$_MODULE$ = null, +oncifp_extractSensitiveLiterals$__clinit_ = () => { + oncifp_extractSensitiveLiterals$_MODULE$ = new oncifp_extractSensitiveLiterals$; }, -oncirr_ProjectionClausesHaveSemanticInfo$_productArity = $this => { - return 0; +oncifp_extractSensitiveLiterals$_transform = ($this, $from, $context) => { + return oncifp_Phase_transform$($this, $from, $context); }, -oncirr_ProjectionClausesHaveSemanticInfo$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncifp_extractSensitiveLiterals$_name = $this => { + return $this.$productPrefix(); }, -oncirr_ProjectionClausesHaveSemanticInfo$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncifp_extractSensitiveLiterals$_checkConditions = ($this, $state, $conditions, $cancellationChecker) => { + return oncifp_Transformer_checkConditions$($this, $state, $conditions, $cancellationChecker); }, -oncirr_ProjectionClausesHaveSemanticInfo$_hashCode = $this => { - return (-2083017039); +oncifp_extractSensitiveLiterals$_phase = $this => { + return oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE; }, -oncirr_ProjectionClausesHaveSemanticInfo$_toString = $this => { - return $rt_s(887); -}; -function oncirc_containsNoMatchingNodes() { +oncifp_extractSensitiveLiterals$_postConditions = $this => { + let var$1, var$2, var$3; + s_Predef$_$callClinit(); + var$1 = s_Predef$_Set(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(onciu_StepSequencer$Condition, 1); + var$3.data[0] = oncirc_package$SensitiveLiteralsExtracted$_MODULE$; + return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncifp_extractSensitiveLiterals$_invalidatedConditions = $this => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; +}, +oncifp_extractSensitiveLiterals$_productPrefix = $this => { + return $rt_s(897); +}, +oncifp_extractSensitiveLiterals$_process = ($this, $from, $context) => { + $context = onciu_bottomUp$_MODULE$; + onciu_Rewriter$_$callClinit(); + return oncifp_InitialState_withStatement($from, (onciu_bottomUp$_apply($context, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncifp_extractSensitiveLiterals$$anonfun$1), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2(oncifp_InitialState_statement($from))); +}, +jur_IntArrHash = $rt_classWithoutFields(); +function onciu_StepSequencer$DefaultPostCondition$completed$() { jl_Object.call(this); - this.$matcher0 = null; + this.$$outer43 = null; } -let oncirc_containsNoReturnAll$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirc_containsNoReturnAll$$anonfun$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - return $x instanceof oncia_ReturnItems && $x.$includeExisting0 ? $rt_s(888) : s_PartialFunction$$anon$1_apply($default, $x); +let onciu_StepSequencer$DefaultPostCondition$completed$_unary_$bang = $this => { + return onciu_StepSequencer$Condition_unary_$bang$($this); }, -jur_IntArrHash = $rt_classWithoutFields(); +onciu_StepSequencer$DefaultPostCondition$completed$_toString = $this => { + let var$1, var$2; + var$1 = $this.$$outer43.$toString(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(898)); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciu_StepSequencer$DefaultPostCondition$completed$__init_0 = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer43 = $$outer; +}, +onciu_StepSequencer$DefaultPostCondition$completed$__init_ = var_0 => { + let var_1 = new onciu_StepSequencer$DefaultPostCondition$completed$(); + onciu_StepSequencer$DefaultPostCondition$completed$__init_0(var_1, var_0); + return var_1; +}, +oncifp_CompilationPhaseTracer$CompilationPhaseEvent = $rt_classWithoutFields(0), +oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_0 = $rt_classWithoutFields(), +oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_0_close = var$0 => { + return; +}, +oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_1 = $rt_classWithoutFields(); function onciu_CartesianProductNotification() { let a = this; jl_Object.call(a); - a.$position75 = null; + a.$position87 = null; a.$isolatedVariables0 = null; a.$pattern15 = null; } let onciu_CartesianProductNotification_position = $this => { - return $this.$position75; + return $this.$position87; }, onciu_CartesianProductNotification_isolatedVariables = $this => { return $this.$isolatedVariables0; @@ -57694,7 +58223,7 @@ onciu_CartesianProductNotification_pattern = $this => { return $this.$pattern15; }, onciu_CartesianProductNotification_productPrefix = $this => { - return $rt_s(889); + return $rt_s(899); }, onciu_CartesianProductNotification_productArity = $this => { return 3; @@ -57702,7 +58231,7 @@ onciu_CartesianProductNotification_productArity = $this => { onciu_CartesianProductNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position75; + return $this.$position87; case 1: return $this.$isolatedVariables0; case 2: @@ -57729,8 +58258,8 @@ onciu_CartesianProductNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position75; - var$3 = $x$1.$position75; + var$2 = $this.$position87; + var$3 = $x$1.$position87; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -57782,49 +58311,39 @@ sj_CollectionConverters$_MODULE$ = null, sj_CollectionConverters$__clinit_ = () => { sj_CollectionConverters$_MODULE$ = new sj_CollectionConverters$; }, -sj_CollectionConverters$_IteratorHasAsScala = ($this, $i) => { - return scc_AsScalaExtensions$IteratorHasAsScala__init_($this, $i); -}, sj_CollectionConverters$_IterableHasAsScala = ($this, $i) => { let var$2; var$2 = new scc_AsScalaExtensions$IterableHasAsScala; var$2.$i7 = $i; - var$2.$$outer68 = $this; + var$2.$$outer60 = $this; return var$2; }, sj_CollectionConverters$_CollectionHasAsScala = ($this, $c) => { let var$2; var$2 = new scc_AsScalaExtensions$CollectionHasAsScala; var$2.$c2 = $c; - var$2.$$outer81 = $this; + var$2.$$outer72 = $this; return var$2; }, sj_CollectionConverters$_ListHasAsScala = ($this, $l) => { let var$2; var$2 = new scc_AsScalaExtensions$ListHasAsScala; var$2.$l = $l; - var$2.$$outer67 = $this; - return var$2; -}, -sj_CollectionConverters$_MapHasAsScala = ($this, $m) => { - let var$2; - var$2 = new scc_AsScalaExtensions$MapHasAsScala; - var$2.$m = $m; - var$2.$$outer80 = $this; + var$2.$$outer59 = $this; return var$2; }, sj_CollectionConverters$_SeqHasAsJava = ($this, $s) => { let var$2; var$2 = new scc_AsJavaExtensions$SeqHasAsJava; var$2.$s3 = $s; - var$2.$$outer71 = $this; + var$2.$$outer63 = $this; return var$2; }, sj_CollectionConverters$_SetHasAsJava = ($this, $s) => { let var$2; var$2 = new scc_AsJavaExtensions$SetHasAsJava; var$2.$s2 = $s; - var$2.$$outer84 = $this; + var$2.$$outer75 = $this; return var$2; }, onn_NotificationDetail = $rt_classWithoutFields(), @@ -57835,14 +58354,14 @@ onn_NotificationDetail_deprecatedName0 = $oldName => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(890)), $oldName), $rt_s(158)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(900)), $oldName), $rt_s(901)); return jl_AbstractStringBuilder_toString(var$2); }, onn_NotificationDetail_deprecatedName = ($oldName, $newName) => { let var$3; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(891)), $oldName), $rt_s(892)), $newName), $rt_s(893)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(902)), $oldName), $rt_s(903)), $newName), $rt_s(904)); return jl_AbstractStringBuilder_toString(var$3); }, onn_NotificationDetail_index = ($indexType, $label, $propertyKeys) => { @@ -57855,16 +58374,16 @@ onn_NotificationDetail_index = ($indexType, $label, $propertyKeys) => { case 1: break; case 2: - $prettyIndexHint = $rt_s(894); + $prettyIndexHint = $rt_s(905); break a; case 3: - $prettyIndexHint = $rt_s(895); + $prettyIndexHint = $rt_s(906); break a; default: - $prettyIndexHint = $rt_s(896); + $prettyIndexHint = $rt_s(907); break a; } - $prettyIndexHint = $rt_s(897); + $prettyIndexHint = $rt_s(908); } $indexType = new jl_StringBuilder; jl_AbstractStringBuilder__init_($indexType); @@ -57876,62 +58395,71 @@ onn_NotificationDetail_index = ($indexType, $label, $propertyKeys) => { return jl_AbstractStringBuilder_toString($indexType); }, onn_NotificationDetail_indexHint = ($entityType, $indexType, $variableName, $labelName, $propertyKeyNames) => { - let $indexFormatString, var$7; + let $indexFormatString, var$7, var$8, var$9, var$10, var$11, var$12; a: { $indexFormatString = ju_Arrays_asList($propertyKeyNames); $variableName = one_IndexHintException_escape($variableName); $labelName = one_IndexHintException_escape($labelName); - var$7 = ju_Collection_stream($indexFormatString); - $indexFormatString = new one_IndexHintException$indexFormatString$lambda$_4_0; - $indexFormatString.$_01146 = $variableName; - $indexFormatString = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(var$7, $indexFormatString), jus_Collectors_joining($rt_s(45))); - one_IndexHintException$1_$callClinit(); - switch (one_IndexHintException$1_$SwitchMap$org$neo4j$exceptions$IndexHintException$IndexHintIndexType.data[$indexType.$ordinal]) { + $indexFormatString = ju_Collection_stream($indexFormatString); + var$7 = new one_IndexHintException$indexFormatString$lambda$_4_0; + var$7.$_01128 = $variableName; + var$8 = jusi_SimpleStreamImpl_map($indexFormatString, var$7); + var$9 = new jus_Collectors$joining$lambda$_8_0; + var$9.$_0537 = $rt_s(45); + var$10 = new jus_Collectors$joining$lambda$_8_1; + var$10.$_01190 = $rt_s(45); + var$11 = new jus_Collectors$joining$lambda$_8_2; + var$12 = new jus_Collectors$joining$lambda$_8_3; + var$12.$_0609 = $rt_s(4); + var$12.$_1206 = $rt_s(4); + $indexFormatString = jusi_SimpleStreamImpl_collect(var$8, jus_Collector_of(var$11, var$9, var$10, var$12, $rt_createArray(jus_Collector$Characteristics, 0))); + switch ($indexType.$ordinal) { case 1: break; case 2: - $indexType = $rt_s(898); + $indexType = $rt_s(909); break a; case 3: - $indexType = $rt_s(899); + $indexType = $rt_s(910); break a; case 4: - $indexType = $rt_s(900); + $indexType = $rt_s(911); break a; default: $indexType = $rt_s(4); break a; } - $indexType = $rt_s(901); + $indexType = $rt_s(912); } b: { + one_IndexHintException$1_$callClinit(); switch (one_IndexHintException$1_$SwitchMap$org$neo4j$common$EntityType.data[$entityType.$ordinal]) { case 1: - $indexFormatString = jl_String_format($rt_s(902), $rt_wrapArray(jl_Object, [$indexType, $variableName, $labelName, $indexFormatString])); + $indexFormatString = jl_String_format($rt_s(913), $rt_wrapArray(jl_Object, [$indexType, $variableName, $labelName, $indexFormatString])); break b; case 2: - $indexFormatString = jl_String_format($rt_s(903), $rt_wrapArray(jl_Object, [$indexType, $variableName, $labelName, $indexFormatString])); + $indexFormatString = jl_String_format($rt_s(914), $rt_wrapArray(jl_Object, [$indexType, $variableName, $labelName, $indexFormatString])); break b; default: } - $entityType = new jl_IncompatibleClassChangeError; - jl_Throwable__init_($entityType); + $entityType = new jl_MatchException; + jl_Throwable__init_1($entityType, null, null); $rt_throw($entityType); } - return onn_NotificationDetail_createNotificationDetail($rt_s(904), $indexFormatString, 1); + return onn_NotificationDetail_createNotificationDetail($rt_s(915), $indexFormatString, 1); }, onn_NotificationDetail_missingLabel = $labelName => { - return onn_NotificationDetail_createNotificationDetail($rt_s(905), $labelName, 1); + return onn_NotificationDetail_createNotificationDetail($rt_s(916), $labelName, 1); }, onn_NotificationDetail_missingRelationshipType = $relType => { - return onn_NotificationDetail_createNotificationDetail($rt_s(906), $relType, 1); + return onn_NotificationDetail_createNotificationDetail($rt_s(917), $relType, 1); }, onn_NotificationDetail_missingParameters = $parameters => { let var$2; $parameters = onn_NotificationDetail_commaSeparated($parameters); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(907)), $parameters); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(918)), $parameters); return jl_AbstractStringBuilder_toString(var$2); }, onn_NotificationDetail_procedureWarning = ($procedure, $warning) => { @@ -57941,46 +58469,46 @@ onn_NotificationDetail_procedureWarning = ($procedure, $warning) => { return jl_String_format($warning, var$3); }, onn_NotificationDetail_propertyName = $name => { - return onn_NotificationDetail_createNotificationDetail($rt_s(908), $name, 1); + return onn_NotificationDetail_createNotificationDetail($rt_s(919), $name, 1); }, onn_NotificationDetail_shadowingVariable = $name => { - return onn_NotificationDetail_createNotificationDetail($rt_s(909), $name, 1); + return onn_NotificationDetail_createNotificationDetail($rt_s(920), $name, 1); }, onn_NotificationDetail_repeatedVarLengthRel = $name => { - return onn_NotificationDetail_createNotificationDetail($rt_s(910), $name, 1); + return onn_NotificationDetail_createNotificationDetail($rt_s(921), $name, 1); }, onn_NotificationDetail_joinKey = $identifiers => { - let $singular, $builder, $first, $identifier; - $singular = scc_JavaCollectionWrappers$SeqWrapper_size($identifiers) != 1 ? 0 : 1; + let $singular, $builder, $first, var$5, $identifier; + $singular = scc_JavaCollectionWrappers$IterableWrapperTrait_size$($identifiers) != 1 ? 0 : 1; $builder = new jl_StringBuilder; jl_AbstractStringBuilder__init_($builder); $first = 1; - $identifiers = scc_JavaCollectionWrappers$SeqWrapper_iterator($identifiers); - while (scc_JavaCollectionWrappers$IteratorWrapper_hasNext($identifiers)) { - $identifier = scc_JavaCollectionWrappers$IteratorWrapper_next($identifiers); + var$5 = scc_JavaCollectionWrappers$IterableWrapperTrait_iterator$($identifiers); + while (scc_JavaCollectionWrappers$IteratorWrapper_hasNext(var$5)) { + $identifier = scc_JavaCollectionWrappers$IteratorWrapper_next(var$5); if ($first) $first = 0; else jl_AbstractStringBuilder_append($builder, $rt_s(45)); jl_AbstractStringBuilder_append($builder, $identifier); } - return onn_NotificationDetail_createNotificationDetail(!$singular ? $rt_s(911) : $rt_s(912), jl_AbstractStringBuilder_toString($builder), $singular); + return onn_NotificationDetail_createNotificationDetail(!$singular ? $rt_s(922) : $rt_s(923), jl_AbstractStringBuilder_toString($builder), $singular); }, onn_NotificationDetail_cartesianProductDescription = $identifiers => { - return onn_NotificationDetail_createNotificationDetail0($identifiers, $rt_s(913), $rt_s(914)); + return onn_NotificationDetail_createNotificationDetail0($identifiers, $rt_s(924), $rt_s(925)); }, onn_NotificationDetail_nodeIndexSeekOrScan = $labels => { - return onn_NotificationDetail_createNotificationDetail0(jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream($labels), new onn_NotificationDetail$nodeIndexSeekOrScan$lambda$_15_0), jus_Collectors_toSet()), $rt_s(915), $rt_s(916)); + return onn_NotificationDetail_createNotificationDetail0(jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream($labels), new onn_NotificationDetail$nodeIndexSeekOrScan$lambda$_15_0), jus_Collectors_toSet()), $rt_s(926), $rt_s(927)); }, onn_NotificationDetail_relationshipIndexSeekOrScan = $labels => { - return onn_NotificationDetail_createNotificationDetail0(jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream($labels), new onn_NotificationDetail$relationshipIndexSeekOrScan$lambda$_16_0), jus_Collectors_toSet()), $rt_s(917), $rt_s(918)); + return onn_NotificationDetail_createNotificationDetail0(jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream($labels), new onn_NotificationDetail$relationshipIndexSeekOrScan$lambda$_16_0), jus_Collectors_toSet()), $rt_s(928), $rt_s(929)); }, onn_NotificationDetail_deprecatedField = ($procedure, $field) => { let var$3; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_AbstractStringBuilder_append0(var$3, 39); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $field), $rt_s(919)), $procedure), $rt_s(920)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $field), $rt_s(930)), $procedure), $rt_s(931)); return jl_AbstractStringBuilder_toString(var$3); }, onn_NotificationDetail_deprecatedInputField = ($procedureOrFunction, $field) => { @@ -57988,7 +58516,7 @@ onn_NotificationDetail_deprecatedInputField = ($procedureOrFunction, $field) => var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_AbstractStringBuilder_append0(var$3, 39); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $field), $rt_s(921)), $procedureOrFunction), $rt_s(920)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $field), $rt_s(932)), $procedureOrFunction), $rt_s(931)); return jl_AbstractStringBuilder_toString(var$3); }, onn_NotificationDetail_createNotificationDetail0 = ($elements, $singularTerm, $pluralTerm) => { @@ -58012,7 +58540,7 @@ onn_NotificationDetail_createNotificationDetail0 = ($elements, $singularTerm, $p }, onn_NotificationDetail_createNotificationDetail = ($name, $value, $singular) => { let var$4, var$5; - var$4 = !$singular ? $rt_s(922) : $rt_s(923); + var$4 = !$singular ? $rt_s(933) : $rt_s(934); var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); $name = jl_StringBuilder_append(var$5, $name); @@ -58034,7 +58562,7 @@ onn_NotificationDetail_deprecationNotificationDetail = $replacement => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(924)), $replacement), $rt_s(925)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(935)), $replacement), $rt_s(936)); return jl_AbstractStringBuilder_toString(var$2); }, onn_NotificationDetail_unsatisfiableRelTypeExpression = $expression => { @@ -58042,14 +58570,14 @@ onn_NotificationDetail_unsatisfiableRelTypeExpression = $expression => { var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_AbstractStringBuilder_append0(var$2, 96); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $expression), $rt_s(926)); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $expression), $rt_s(937)); return jl_AbstractStringBuilder_toString(var$2); }, onn_NotificationDetail_repeatedRelationship = $relationshipName => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(927)), $relationshipName), $rt_s(928)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(938)), $relationshipName), $rt_s(939)); return jl_AbstractStringBuilder_toString(var$2); }; function onn_NotificationCodeWithDescription() { @@ -58080,6 +58608,7 @@ onn_NotificationCodeWithDescription_DEPRECATED_PROPERTY_REFERENCE_IN_CREATE = nu onn_NotificationCodeWithDescription_DEPRECATED_PROPERTY_REFERENCE_IN_MERGE = null, onn_NotificationCodeWithDescription_DEPRECATED_SHORTEST_PATH_WITH_FIXED_LENGTH_RELATIONSHIP = null, onn_NotificationCodeWithDescription_DEPRECATED_TEXT_INDEX_PROVIDER = null, +onn_NotificationCodeWithDescription_DEPRECATED_INDEX_PROVIDER_OPTION = null, onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_WHITESPACE_UNICODE = null, onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_UNICODE = null, onn_NotificationCodeWithDescription_EAGER_LOAD_CSV = null, @@ -58096,7 +58625,10 @@ onn_NotificationCodeWithDescription_SUBQUERY_VARIABLE_SHADOWING = null, onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_PROCEDURE = null, onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_SUBQUERY = null, onn_NotificationCodeWithDescription_DEPRECATED_IMPORTING_WITH_IN_SUBQUERY_CALL = null, -onn_NotificationCodeWithDescription_UNION_RETURN_ORDER = null, +onn_NotificationCodeWithDescription_DEPRECATED_WHERE_VARIABLE_IN_NODE_PATTERN = null, +onn_NotificationCodeWithDescription_DEPRECATED_WHERE_VARIABLE_IN_RELATIONSHIP_PATTERN = null, +onn_NotificationCodeWithDescription_DEPRECATED_PRECEDENCE_OF_LABEL_EXPRESSION_PREDICATED = null, +onn_NotificationCodeWithDescription_DEPRECATED_KEYWORD_VARIABLE_IN_WHEN_OPERAND = null, onn_NotificationCodeWithDescription_HOME_DATABASE_NOT_PRESENT = null, onn_NotificationCodeWithDescription_DEPRECATED_DATABASE_NAME = null, onn_NotificationCodeWithDescription_UNSATISFIABLE_RELATIONSHIP_TYPE_EXPRESSION = null, @@ -58105,12 +58637,12 @@ onn_NotificationCodeWithDescription_REPEATED_VAR_LENGTH_RELATIONSHIP_REFERENCE = onn_NotificationCodeWithDescription_DEPRECATED_CONNECT_COMPONENTS_PLANNER_PRE_PARSER_OPTION = null, onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_ASSIGN_PRIVILEGE = null, onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_PRIVILEGE = null, -onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_GRANT_ROLE = null, -onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_ROLE = null, +onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_GRANT_ROLE = null; +let onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_ROLE = null, onn_NotificationCodeWithDescription_AUTH_PROVIDER_NOT_DEFINED = null, onn_NotificationCodeWithDescription_IMPOSSIBLE_REVOKE_COMMAND = null, -onn_NotificationCodeWithDescription_EXTERNAL_AUTH_NOT_ENABLED = null; -let onn_NotificationCodeWithDescription_SERVER_ALREADY_ENABLED = null, +onn_NotificationCodeWithDescription_EXTERNAL_AUTH_NOT_ENABLED = null, +onn_NotificationCodeWithDescription_SERVER_ALREADY_ENABLED = null, onn_NotificationCodeWithDescription_SERVER_ALREADY_CORDONED = null, onn_NotificationCodeWithDescription_NO_DATABASES_REALLOCATED = null, onn_NotificationCodeWithDescription_CORDONED_SERVERS_EXISTED_DURING_ALLOCATION = null, @@ -58119,7 +58651,10 @@ onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_ALREADY_EXISTS = null, onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_DOES_NOT_EXIST = null, onn_NotificationCodeWithDescription_AGGREGATION_SKIPPED_NULL = null, onn_NotificationCodeWithDescription_DEPRECATED_BOOLEAN_COERCION = null, +onn_NotificationCodeWithDescription_INSECURE_PROTOCOL = null, onn_NotificationCodeWithDescription_DEPRECATED_OPTION_IN_OPTION_MAP = null, +onn_NotificationCodeWithDescription_DEPRECATED_SEEDING_OPTION = null, +onn_NotificationCodeWithDescription_DEPRECATED_STORE_FORMAT = null, onn_NotificationCodeWithDescription_$VALUES = null, onn_NotificationCodeWithDescription_$callClinit = () => { onn_NotificationCodeWithDescription_$callClinit = $rt_eraseClinit(onn_NotificationCodeWithDescription); @@ -58134,8 +58669,8 @@ onn_NotificationCodeWithDescription__init_0 = ($this, var$1, var$2, $status, $gq jl_Enum__init_($this, var$1, var$2); $this.$status1 = $status; $this.$gqlStatusInfo0 = $gqlStatusInfo; - $this.$descriptionSubstitution = $rt_s(929); - $this.$descriptionOffsets = ong_GqlStatusInfoCodes_getOffsets($gqlStatusInfo, $descriptionTemplate, $rt_s(929)); + $this.$descriptionSubstitution = $rt_s(940); + $this.$descriptionOffsets = ong_GqlStatusInfoCodes_getOffsets($gqlStatusInfo, $descriptionTemplate, $rt_s(940)); $this.$descriptionTemplate = $descriptionTemplate; }, onn_NotificationCodeWithDescription__init_ = (var_0, var_1, var_2, var_3, var_4) => { @@ -58258,7 +58793,7 @@ onn_NotificationCodeWithDescription_deprecatedProcedureField = ($position, $para var$6 = $rt_createArray(jl_String, 1); var$6.data[0] = $param; var$7 = $rt_createArray(jl_String, 1); - var$7.data[0] = jl_String_format($rt_s(930), $rt_wrapArray(jl_Object, [$field, $procedure])); + var$7.data[0] = jl_String_format($rt_s(941), $rt_wrapArray(jl_Object, [$field, $procedure])); return onn_NotificationCodeWithDescription_notificationWithParameters(var$5, $position, var$6, var$7); }, onn_NotificationCodeWithDescription_deprecatedFunctionField = ($position, $param, $function, $field) => { @@ -58268,7 +58803,7 @@ onn_NotificationCodeWithDescription_deprecatedFunctionField = ($position, $param var$6 = $rt_createArray(jl_String, 1); var$6.data[0] = $param; var$7 = $rt_createArray(jl_String, 1); - var$7.data[0] = jl_String_format($rt_s(931), $rt_wrapArray(jl_Object, [$field, $function])); + var$7.data[0] = jl_String_format($rt_s(942), $rt_wrapArray(jl_Object, [$field, $function])); return onn_NotificationCodeWithDescription_notificationWithParameters(var$5, $position, var$6, var$7); }, onn_NotificationCodeWithDescription_deprecatedRelationshipTypeSeparator = ($position, $param, $deprecated, $replacement) => { @@ -58298,7 +58833,7 @@ onn_NotificationCodeWithDescription_deprecatedPropertyReferenceInCreate = ($posi var$6 = var$5.data; var$7 = $rt_createArray(jl_Object, 1); var$7.data[0] = $param; - var$6[0] = jl_String_format($rt_s(932), var$7); + var$6[0] = jl_String_format($rt_s(943), var$7); return onn_NotificationCodeWithDescription_notificationWithParameters(var$3, $position, var$4, var$5); }, onn_NotificationCodeWithDescription_deprecatedPropertyReferenceInMerge = ($position, $param) => { @@ -58311,7 +58846,7 @@ onn_NotificationCodeWithDescription_deprecatedPropertyReferenceInMerge = ($posit var$6 = var$5.data; var$7 = $rt_createArray(jl_Object, 1); var$7.data[0] = $param; - var$6[0] = jl_String_format($rt_s(933), var$7); + var$6[0] = jl_String_format($rt_s(944), var$7); return onn_NotificationCodeWithDescription_notificationWithParameters(var$3, $position, var$4, var$5); }, onn_NotificationCodeWithDescription_deprecatedShortestPathWithFixedLengthRelationship = ($position, $deprecated, $replacement) => { @@ -58330,28 +58865,37 @@ onn_NotificationCodeWithDescription_deprecatedTextIndexProvider = $position => { var$5[1] = onis_IndexProviderDescriptor_name(onis_AllIndexProviderDescriptors_TEXT_V2_DESCRIPTOR); return onn_NotificationCodeWithDescription_notificationWithParameters(var$2, $position, var$3, var$4); }, +onn_NotificationCodeWithDescription_deprecatedIndexProviderOption = $position => { + let var$2, var$3, var$4; + onn_NotificationCodeWithDescription_$callClinit(); + var$2 = onn_NotificationCodeWithDescription_DEPRECATED_INDEX_PROVIDER_OPTION; + var$3 = $rt_createArray(jl_String, 0); + var$4 = $rt_createArray(jl_String, 1); + var$4.data[0] = $rt_s(945); + return onn_NotificationCodeWithDescription_notificationWithParameters(var$2, $position, var$3, var$4); +}, onn_NotificationCodeWithDescription_deprecatedIdentifierWhitespaceUnicode = ($position, $unicode, $identifier) => { let var$4, $formattedUnicode, var$6, var$7; onn_NotificationCodeWithDescription_$callClinit(); var$4 = $rt_createArray(jl_Object, 1); - var$4.data[0] = jl_Integer_valueOf($unicode.$value11); - $formattedUnicode = jl_String_format($rt_s(934), var$4); + var$4.data[0] = jl_Integer_valueOf($unicode.$value12); + $formattedUnicode = jl_String_format($rt_s(946), var$4); var$6 = onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_WHITESPACE_UNICODE; var$7 = $rt_wrapArray(jl_String, [$formattedUnicode, $identifier]); var$4 = $rt_createArray(jl_String, 1); - var$4.data[0] = jl_String_format($rt_s(935), $rt_wrapArray(jl_Object, [$formattedUnicode, $identifier])); + var$4.data[0] = jl_String_format($rt_s(947), $rt_wrapArray(jl_Object, [$formattedUnicode, $identifier])); return onn_NotificationCodeWithDescription_notificationWithParameters(var$6, $position, var$7, var$4); }, onn_NotificationCodeWithDescription_deprecatedIdentifierUnicode = ($position, $unicode, $identifier) => { let var$4, $formattedUnicode, var$6, var$7; onn_NotificationCodeWithDescription_$callClinit(); var$4 = $rt_createArray(jl_Object, 1); - var$4.data[0] = jl_Integer_valueOf($unicode.$value11); - $formattedUnicode = jl_String_format($rt_s(934), var$4); + var$4.data[0] = jl_Integer_valueOf($unicode.$value12); + $formattedUnicode = jl_String_format($rt_s(946), var$4); var$6 = onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_UNICODE; var$7 = $rt_wrapArray(jl_String, [$formattedUnicode, $identifier]); var$4 = $rt_createArray(jl_String, 1); - var$4.data[0] = jl_String_format($rt_s(936), $rt_wrapArray(jl_Object, [$formattedUnicode, $identifier])); + var$4.data[0] = jl_String_format($rt_s(948), $rt_wrapArray(jl_Object, [$formattedUnicode, $identifier])); return onn_NotificationCodeWithDescription_notificationWithParameters(var$6, $position, var$7, var$4); }, onn_NotificationCodeWithDescription_eagerLoadCsv = $position => { @@ -58396,8 +58940,8 @@ onn_NotificationCodeWithDescription_missingPropertyName = ($position, $oldDetail var$6 = $rt_createArray(jl_String, 1); var$6.data[0] = $property; return onn_NotificationCodeWithDescription_notificationWithParameters(var$4, $position, var$5, var$6); -}, -onn_NotificationCodeWithDescription_unboundedShortestPath = ($position, $pattern) => { +}; +let onn_NotificationCodeWithDescription_unboundedShortestPath = ($position, $pattern) => { let var$3, var$4, var$5; onn_NotificationCodeWithDescription_$callClinit(); var$3 = onn_NotificationCodeWithDescription_UNBOUNDED_SHORTEST_PATH; @@ -58430,7 +58974,7 @@ onn_NotificationCodeWithDescription_codeGenerationFailed = ($position, $failingR onn_NotificationCodeWithDescription_$callClinit(); $oldDetails = $rt_createArray(jl_String, 1); $oldDetails.data[0] = $cause; - $failingEngine = $failingRuntimeConf.$contains1($rt_s(937)) && $fallbackRuntimeConf.$contains1($rt_s(938)) && $failingRuntimeConf.$contains1($rt_s(939)) && $fallbackRuntimeConf.$contains1($rt_s(940)) ? $rt_s(941) : $failingRuntimeConf.$contains1($rt_s(937)) && $fallbackRuntimeConf.$contains1($rt_s(938)) ? $rt_s(942) : $failingRuntimeConf.$contains1($rt_s(939)) && $fallbackRuntimeConf.$contains1($rt_s(940)) ? $rt_s(943) : $rt_s(4); + $failingEngine = $failingRuntimeConf.$contains1($rt_s(949)) && $fallbackRuntimeConf.$contains1($rt_s(950)) && $failingRuntimeConf.$contains1($rt_s(951)) && $fallbackRuntimeConf.$contains1($rt_s(952)) ? $rt_s(953) : $failingRuntimeConf.$contains1($rt_s(949)) && $fallbackRuntimeConf.$contains1($rt_s(950)) ? $rt_s(954) : $failingRuntimeConf.$contains1($rt_s(951)) && $fallbackRuntimeConf.$contains1($rt_s(952)) ? $rt_s(955) : $rt_s(4); $params = $rt_wrapArray(jl_Object, [$failingEngine, $cause]); return onn_NotificationCodeWithDescription_notificationWithParameters(onn_NotificationCodeWithDescription_CODE_GENERATION_FAILED, $position, $oldDetails, $params); }, @@ -58466,17 +59010,40 @@ onn_NotificationCodeWithDescription_deprecatedImportingWithInSubqueryCall = ($po var$6 = var$5.data; var$7 = $rt_createArray(jl_Object, 1); var$7.data[0] = $variable; - var$6[0] = jl_String_format($rt_s(944), var$7); + var$6[0] = jl_String_format($rt_s(956), var$7); return onn_NotificationCodeWithDescription_notificationWithParameters(var$3, $position, var$4, var$5); -}; -let onn_NotificationCodeWithDescription_unionReturnOrder = $position => { - let var$2, var$3, var$4; +}, +onn_NotificationCodeWithDescription_deprecatedWhereVariableInNodePattern = ($position, $variableName, $properties) => { + let $nodePatternWithUnescapedVariable, $nodePatternWithEscapedVariable; onn_NotificationCodeWithDescription_$callClinit(); - var$2 = onn_NotificationCodeWithDescription_UNION_RETURN_ORDER; - var$3 = $rt_createArray(jl_String, 0); - var$4 = $rt_createArray(jl_String, 1); - var$4.data[0] = $rt_s(945); - return onn_NotificationCodeWithDescription_notificationWithParameters(var$2, $position, var$3, var$4); + $nodePatternWithUnescapedVariable = jl_String_format($rt_s(957), $rt_wrapArray(jl_Object, [$variableName, $properties])); + $nodePatternWithEscapedVariable = jl_String_format($rt_s(958), $rt_wrapArray(jl_Object, [$variableName, $properties])); + return onn_NotificationCodeWithDescription_notificationWithParameters(onn_NotificationCodeWithDescription_DEPRECATED_WHERE_VARIABLE_IN_NODE_PATTERN, $position, $rt_wrapArray(jl_String, [$nodePatternWithUnescapedVariable, $nodePatternWithEscapedVariable]), $rt_wrapArray(jl_String, [$nodePatternWithUnescapedVariable, $nodePatternWithEscapedVariable])); +}, +onn_NotificationCodeWithDescription_deprecatedWhereVariableInRelationshipPattern = ($position, $variableName, $properties) => { + let $relPatternWithUnescapedVariable, $relPatternWithEscapedVariable; + onn_NotificationCodeWithDescription_$callClinit(); + $relPatternWithUnescapedVariable = jl_String_format($rt_s(959), $rt_wrapArray(jl_Object, [$variableName, $properties])); + $relPatternWithEscapedVariable = jl_String_format($rt_s(960), $rt_wrapArray(jl_Object, [$variableName, $properties])); + return onn_NotificationCodeWithDescription_notificationWithParameters(onn_NotificationCodeWithDescription_DEPRECATED_WHERE_VARIABLE_IN_RELATIONSHIP_PATTERN, $position, $rt_wrapArray(jl_String, [$relPatternWithUnescapedVariable, $relPatternWithEscapedVariable]), $rt_wrapArray(jl_String, [$relPatternWithUnescapedVariable, $relPatternWithEscapedVariable])); +}, +onn_NotificationCodeWithDescription_deprecatedPrecedenceOfLabelExpressionPredicate = ($position, $labelExpressionPredicate) => { + let var$3, $unparenthesizedLabelExpressionPredicate, $parenthesizedLabelExpressionPredicate; + onn_NotificationCodeWithDescription_$callClinit(); + var$3 = $rt_createArray(jl_Object, 1); + var$3.data[0] = $labelExpressionPredicate; + $unparenthesizedLabelExpressionPredicate = jl_String_format($rt_s(961), var$3); + var$3 = $rt_createArray(jl_Object, 1); + var$3.data[0] = $labelExpressionPredicate; + $parenthesizedLabelExpressionPredicate = jl_String_format($rt_s(962), var$3); + return onn_NotificationCodeWithDescription_notificationWithParameters(onn_NotificationCodeWithDescription_DEPRECATED_PRECEDENCE_OF_LABEL_EXPRESSION_PREDICATED, $position, $rt_wrapArray(jl_String, [$unparenthesizedLabelExpressionPredicate, $parenthesizedLabelExpressionPredicate]), $rt_wrapArray(jl_String, [$unparenthesizedLabelExpressionPredicate, $parenthesizedLabelExpressionPredicate])); +}, +onn_NotificationCodeWithDescription_deprecatedKeywordVariableInWhenOperand = ($position, $variableName, $remainingExpression) => { + let $whenOperandWithUnescapedVariable, $whenOperandWithEscapedVariable; + onn_NotificationCodeWithDescription_$callClinit(); + $whenOperandWithUnescapedVariable = jl_String_format($rt_s(963), $rt_wrapArray(jl_Object, [$variableName, $remainingExpression])); + $whenOperandWithEscapedVariable = jl_String_format($rt_s(964), $rt_wrapArray(jl_Object, [$variableName, $remainingExpression])); + return onn_NotificationCodeWithDescription_notificationWithParameters(onn_NotificationCodeWithDescription_DEPRECATED_KEYWORD_VARIABLE_IN_WHEN_OPERAND, $position, $rt_wrapArray(jl_String, [$whenOperandWithUnescapedVariable, $whenOperandWithEscapedVariable]), $rt_wrapArray(jl_String, [$whenOperandWithUnescapedVariable, $whenOperandWithEscapedVariable])); }, onn_NotificationCodeWithDescription_homeDatabaseNotPresent = ($position, $oldDetail, $missingDb) => { let var$4, var$5, var$6; @@ -58498,7 +59065,7 @@ onn_NotificationCodeWithDescription_deprecatedDatabaseName = ($position, $param) var$6 = var$5.data; var$7 = $rt_createArray(jl_Object, 1); var$7.data[0] = $param; - var$6[0] = jl_String_format($rt_s(946), var$7); + var$6[0] = jl_String_format($rt_s(965), var$7); return onn_NotificationCodeWithDescription_notificationWithParameters(var$3, $position, var$4, var$5); }, onn_NotificationCodeWithDescription_unsatisfiableRelationshipTypeExpression = ($position, $param, $expression) => { @@ -58533,7 +59100,7 @@ onn_NotificationCodeWithDescription_deprecatedConnectComponentsPlannerPreParserO var$2 = onn_NotificationCodeWithDescription_DEPRECATED_CONNECT_COMPONENTS_PLANNER_PRE_PARSER_OPTION; var$3 = $rt_createArray(jl_String, 0); var$4 = $rt_createArray(jl_String, 1); - var$4.data[0] = $rt_s(947); + var$4.data[0] = $rt_s(966); return onn_NotificationCodeWithDescription_notificationWithParameters(var$2, $position, var$3, var$4); }, onn_NotificationCodeWithDescription_authProviderNotDefined = ($position, $provider) => { @@ -58638,9 +59205,13 @@ onn_NotificationCodeWithDescription_deprecatedBooleanCoercion = () => { var$2 = ong_InputPosition_empty; var$3 = $rt_createArray(jl_String, 0); var$4 = $rt_createArray(jl_String, 1); - var$4.data[0] = $rt_s(948); + var$4.data[0] = $rt_s(967); return onn_NotificationCodeWithDescription_notificationWithParameters(var$1, var$2, var$3, var$4); }, +onn_NotificationCodeWithDescription_insecureProtocol = () => { + onn_NotificationCodeWithDescription_$callClinit(); + return onn_NotificationCodeWithDescription_notification(onn_NotificationCodeWithDescription_INSECURE_PROTOCOL, ong_InputPosition_empty); +}, onn_NotificationCodeWithDescription_indexOrConstraintAlreadyExists = ($position, $titleParam, $descriptionParam) => { let var$4, var$5; onn_NotificationCodeWithDescription_$callClinit(); @@ -58661,13 +59232,35 @@ onn_NotificationCodeWithDescription_deprecatedOptionInOptionMap = ($oldOption, $ onn_NotificationCodeWithDescription_$callClinit(); return onn_NotificationCodeWithDescription_notificationWithParameters(onn_NotificationCodeWithDescription_DEPRECATED_OPTION_IN_OPTION_MAP, ong_InputPosition_empty, $rt_wrapArray(jl_String, [$oldOption, $newOption]), $rt_wrapArray(jl_String, [$oldOption, $newOption])); }, +onn_NotificationCodeWithDescription_deprecatedSeedingOption = $oldOption => { + let var$2, var$3, var$4, var$5; + onn_NotificationCodeWithDescription_$callClinit(); + var$2 = onn_NotificationCodeWithDescription_DEPRECATED_SEEDING_OPTION; + var$3 = ong_InputPosition_empty; + var$4 = $rt_createArray(jl_String, 1); + var$4.data[0] = $oldOption; + var$5 = $rt_createArray(jl_String, 1); + var$5.data[0] = $oldOption; + return onn_NotificationCodeWithDescription_notificationWithParameters(var$2, var$3, var$4, var$5); +}, +onn_NotificationCodeWithDescription_deprecatedStoreFormat = $format => { + let var$2, var$3, var$4, var$5; + onn_NotificationCodeWithDescription_$callClinit(); + var$2 = onn_NotificationCodeWithDescription_DEPRECATED_STORE_FORMAT; + var$3 = ong_InputPosition_empty; + var$4 = $rt_createArray(jl_String, 1); + var$4.data[0] = $format; + var$5 = $rt_createArray(jl_String, 1); + var$5.data[0] = onsa_DeprecatedFormatWarning_getTargetFormatWarning($format); + return onn_NotificationCodeWithDescription_notificationWithParameters(var$2, var$3, var$4, var$5); +}, onn_NotificationCodeWithDescription_notification = ($this, $position) => { return onn_NotificationCodeWithDescription_notificationWithParameters($this, $position, $rt_createArray(jl_String, 0), $rt_createArray(jl_String, 0)); }, onn_NotificationCodeWithDescription_notificationWithParameters = ($this, $position, $oldDetails, $parameterValues) => { let var$4; var$4 = onn_NotificationImplementation$NotificationBuilder__init_($this); - var$4.$position74 = $position; + var$4.$position86 = $position; var$4.$notificationDetails = $oldDetails; var$4.$messageParameterValues = $parameterValues; return onn_NotificationImplementation$NotificationBuilder_build(var$4); @@ -58675,7 +59268,7 @@ onn_NotificationCodeWithDescription_notificationWithParameters = ($this, $positi onn_NotificationCodeWithDescription_notificationWithTitleAndDescriptionDetails = ($this, $position, $titleDetail, $descriptionDetails, $parameterValues) => { let var$5, var$6, var$7; var$5 = onn_NotificationImplementation$NotificationBuilder__init_($this); - var$5.$position74 = $position; + var$5.$position86 = $position; var$6 = $rt_createArray(jl_String, 1); var$7 = var$6.data; var$7[0] = $titleDetail; @@ -58688,7 +59281,7 @@ onn_NotificationCodeWithDescription_notificationWithTitleAndDescriptionDetails = onn_NotificationCodeWithDescription_$values = () => { let var$1, var$2; onn_NotificationCodeWithDescription_$callClinit(); - var$1 = $rt_createArray(onn_NotificationCodeWithDescription, 60); + var$1 = $rt_createArray(onn_NotificationCodeWithDescription, 67); var$2 = var$1.data; var$2[0] = onn_NotificationCodeWithDescription_CARTESIAN_PRODUCT; var$2[1] = onn_NotificationCodeWithDescription_RUNTIME_UNSUPPORTED; @@ -58710,46 +59303,53 @@ onn_NotificationCodeWithDescription_$values = () => { var$2[17] = onn_NotificationCodeWithDescription_DEPRECATED_PROPERTY_REFERENCE_IN_MERGE; var$2[18] = onn_NotificationCodeWithDescription_DEPRECATED_SHORTEST_PATH_WITH_FIXED_LENGTH_RELATIONSHIP; var$2[19] = onn_NotificationCodeWithDescription_DEPRECATED_TEXT_INDEX_PROVIDER; - var$2[20] = onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_WHITESPACE_UNICODE; - var$2[21] = onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_UNICODE; - var$2[22] = onn_NotificationCodeWithDescription_EAGER_LOAD_CSV; - var$2[23] = onn_NotificationCodeWithDescription_DEPRECATED_FORMAT; - var$2[24] = onn_NotificationCodeWithDescription_LARGE_LABEL_LOAD_CSV; - var$2[25] = onn_NotificationCodeWithDescription_MISSING_LABEL; - var$2[26] = onn_NotificationCodeWithDescription_MISSING_REL_TYPE; - var$2[27] = onn_NotificationCodeWithDescription_MISSING_PROPERTY_NAME; - var$2[28] = onn_NotificationCodeWithDescription_UNBOUNDED_SHORTEST_PATH; - var$2[29] = onn_NotificationCodeWithDescription_EXHAUSTIVE_SHORTEST_PATH; - var$2[30] = onn_NotificationCodeWithDescription_MISSING_PARAMETERS_FOR_EXPLAIN; - var$2[31] = onn_NotificationCodeWithDescription_CODE_GENERATION_FAILED; - var$2[32] = onn_NotificationCodeWithDescription_SUBQUERY_VARIABLE_SHADOWING; - var$2[33] = onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_PROCEDURE; - var$2[34] = onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_SUBQUERY; - var$2[35] = onn_NotificationCodeWithDescription_DEPRECATED_IMPORTING_WITH_IN_SUBQUERY_CALL; - var$2[36] = onn_NotificationCodeWithDescription_UNION_RETURN_ORDER; - var$2[37] = onn_NotificationCodeWithDescription_HOME_DATABASE_NOT_PRESENT; - var$2[38] = onn_NotificationCodeWithDescription_DEPRECATED_DATABASE_NAME; - var$2[39] = onn_NotificationCodeWithDescription_UNSATISFIABLE_RELATIONSHIP_TYPE_EXPRESSION; - var$2[40] = onn_NotificationCodeWithDescription_REPEATED_RELATIONSHIP_REFERENCE; - var$2[41] = onn_NotificationCodeWithDescription_REPEATED_VAR_LENGTH_RELATIONSHIP_REFERENCE; - var$2[42] = onn_NotificationCodeWithDescription_DEPRECATED_CONNECT_COMPONENTS_PLANNER_PRE_PARSER_OPTION; - var$2[43] = onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_ASSIGN_PRIVILEGE; - var$2[44] = onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_PRIVILEGE; - var$2[45] = onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_GRANT_ROLE; - var$2[46] = onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_ROLE; - var$2[47] = onn_NotificationCodeWithDescription_AUTH_PROVIDER_NOT_DEFINED; - var$2[48] = onn_NotificationCodeWithDescription_IMPOSSIBLE_REVOKE_COMMAND; - var$2[49] = onn_NotificationCodeWithDescription_EXTERNAL_AUTH_NOT_ENABLED; - var$2[50] = onn_NotificationCodeWithDescription_SERVER_ALREADY_ENABLED; - var$2[51] = onn_NotificationCodeWithDescription_SERVER_ALREADY_CORDONED; - var$2[52] = onn_NotificationCodeWithDescription_NO_DATABASES_REALLOCATED; - var$2[53] = onn_NotificationCodeWithDescription_CORDONED_SERVERS_EXISTED_DURING_ALLOCATION; - var$2[54] = onn_NotificationCodeWithDescription_REQUESTED_TOPOLOGY_MATCHED_CURRENT_TOPOLOGY; - var$2[55] = onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_ALREADY_EXISTS; - var$2[56] = onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_DOES_NOT_EXIST; - var$2[57] = onn_NotificationCodeWithDescription_AGGREGATION_SKIPPED_NULL; - var$2[58] = onn_NotificationCodeWithDescription_DEPRECATED_BOOLEAN_COERCION; - var$2[59] = onn_NotificationCodeWithDescription_DEPRECATED_OPTION_IN_OPTION_MAP; + var$2[20] = onn_NotificationCodeWithDescription_DEPRECATED_INDEX_PROVIDER_OPTION; + var$2[21] = onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_WHITESPACE_UNICODE; + var$2[22] = onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_UNICODE; + var$2[23] = onn_NotificationCodeWithDescription_EAGER_LOAD_CSV; + var$2[24] = onn_NotificationCodeWithDescription_DEPRECATED_FORMAT; + var$2[25] = onn_NotificationCodeWithDescription_LARGE_LABEL_LOAD_CSV; + var$2[26] = onn_NotificationCodeWithDescription_MISSING_LABEL; + var$2[27] = onn_NotificationCodeWithDescription_MISSING_REL_TYPE; + var$2[28] = onn_NotificationCodeWithDescription_MISSING_PROPERTY_NAME; + var$2[29] = onn_NotificationCodeWithDescription_UNBOUNDED_SHORTEST_PATH; + var$2[30] = onn_NotificationCodeWithDescription_EXHAUSTIVE_SHORTEST_PATH; + var$2[31] = onn_NotificationCodeWithDescription_MISSING_PARAMETERS_FOR_EXPLAIN; + var$2[32] = onn_NotificationCodeWithDescription_CODE_GENERATION_FAILED; + var$2[33] = onn_NotificationCodeWithDescription_SUBQUERY_VARIABLE_SHADOWING; + var$2[34] = onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_PROCEDURE; + var$2[35] = onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_SUBQUERY; + var$2[36] = onn_NotificationCodeWithDescription_DEPRECATED_IMPORTING_WITH_IN_SUBQUERY_CALL; + var$2[37] = onn_NotificationCodeWithDescription_DEPRECATED_WHERE_VARIABLE_IN_NODE_PATTERN; + var$2[38] = onn_NotificationCodeWithDescription_DEPRECATED_WHERE_VARIABLE_IN_RELATIONSHIP_PATTERN; + var$2[39] = onn_NotificationCodeWithDescription_DEPRECATED_PRECEDENCE_OF_LABEL_EXPRESSION_PREDICATED; + var$2[40] = onn_NotificationCodeWithDescription_DEPRECATED_KEYWORD_VARIABLE_IN_WHEN_OPERAND; + var$2[41] = onn_NotificationCodeWithDescription_HOME_DATABASE_NOT_PRESENT; + var$2[42] = onn_NotificationCodeWithDescription_DEPRECATED_DATABASE_NAME; + var$2[43] = onn_NotificationCodeWithDescription_UNSATISFIABLE_RELATIONSHIP_TYPE_EXPRESSION; + var$2[44] = onn_NotificationCodeWithDescription_REPEATED_RELATIONSHIP_REFERENCE; + var$2[45] = onn_NotificationCodeWithDescription_REPEATED_VAR_LENGTH_RELATIONSHIP_REFERENCE; + var$2[46] = onn_NotificationCodeWithDescription_DEPRECATED_CONNECT_COMPONENTS_PLANNER_PRE_PARSER_OPTION; + var$2[47] = onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_ASSIGN_PRIVILEGE; + var$2[48] = onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_PRIVILEGE; + var$2[49] = onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_GRANT_ROLE; + var$2[50] = onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_ROLE; + var$2[51] = onn_NotificationCodeWithDescription_AUTH_PROVIDER_NOT_DEFINED; + var$2[52] = onn_NotificationCodeWithDescription_IMPOSSIBLE_REVOKE_COMMAND; + var$2[53] = onn_NotificationCodeWithDescription_EXTERNAL_AUTH_NOT_ENABLED; + var$2[54] = onn_NotificationCodeWithDescription_SERVER_ALREADY_ENABLED; + var$2[55] = onn_NotificationCodeWithDescription_SERVER_ALREADY_CORDONED; + var$2[56] = onn_NotificationCodeWithDescription_NO_DATABASES_REALLOCATED; + var$2[57] = onn_NotificationCodeWithDescription_CORDONED_SERVERS_EXISTED_DURING_ALLOCATION; + var$2[58] = onn_NotificationCodeWithDescription_REQUESTED_TOPOLOGY_MATCHED_CURRENT_TOPOLOGY; + var$2[59] = onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_ALREADY_EXISTS; + var$2[60] = onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_DOES_NOT_EXIST; + var$2[61] = onn_NotificationCodeWithDescription_AGGREGATION_SKIPPED_NULL; + var$2[62] = onn_NotificationCodeWithDescription_DEPRECATED_BOOLEAN_COERCION; + var$2[63] = onn_NotificationCodeWithDescription_INSECURE_PROTOCOL; + var$2[64] = onn_NotificationCodeWithDescription_DEPRECATED_OPTION_IN_OPTION_MAP; + var$2[65] = onn_NotificationCodeWithDescription_DEPRECATED_SEEDING_OPTION; + var$2[66] = onn_NotificationCodeWithDescription_DEPRECATED_STORE_FORMAT; return var$1; }, onn_NotificationCodeWithDescription__clinit_ = () => { @@ -58758,32 +59358,32 @@ onn_NotificationCodeWithDescription__clinit_ = () => { onkae_Status$Statement_$callClinit(); var$2 = onkae_Status$Statement_CartesianProduct; ong_GqlStatusInfoCodes_$callClinit(); - onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(949), 0, var$2, ong_GqlStatusInfoCodes_STATUS_03N90, $rt_s(950)); + onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(968), 0, var$2, ong_GqlStatusInfoCodes_STATUS_03N90, $rt_s(969)); onn_NotificationCodeWithDescription_CARTESIAN_PRODUCT = var$1; - onn_NotificationCodeWithDescription_RUNTIME_UNSUPPORTED = onn_NotificationCodeWithDescription__init_($rt_s(951), 1, onkae_Status$Statement_RuntimeUnsupportedWarning, ong_GqlStatusInfoCodes_STATUS_01N40, $rt_s(952)); + onn_NotificationCodeWithDescription_RUNTIME_UNSUPPORTED = onn_NotificationCodeWithDescription__init_($rt_s(970), 1, onkae_Status$Statement_RuntimeUnsupportedWarning, ong_GqlStatusInfoCodes_STATUS_01N40, $rt_s(971)); var$1 = new onn_NotificationCodeWithDescription; onkae_Status$Schema_$callClinit(); - onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(953), 2, onkae_Status$Schema_HintedIndexNotFound, ong_GqlStatusInfoCodes_STATUS_01N31, $rt_s(954)); + onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(972), 2, onkae_Status$Schema_HintedIndexNotFound, ong_GqlStatusInfoCodes_STATUS_01N31, $rt_s(973)); onn_NotificationCodeWithDescription_INDEX_HINT_UNFULFILLABLE = var$1; - onn_NotificationCodeWithDescription_JOIN_HINT_UNFULFILLABLE = onn_NotificationCodeWithDescription__init_($rt_s(955), 3, onkae_Status$Statement_JoinHintUnfulfillableWarning, ong_GqlStatusInfoCodes_STATUS_01N30, $rt_s(956)); - onn_NotificationCodeWithDescription_INDEX_LOOKUP_FOR_DYNAMIC_PROPERTY = onn_NotificationCodeWithDescription__init_($rt_s(957), 4, onkae_Status$Statement_DynamicProperty, ong_GqlStatusInfoCodes_STATUS_03N95, $rt_s(958)); - onn_NotificationCodeWithDescription_DEPRECATED_FUNCTION_WITHOUT_REPLACEMENT = onn_NotificationCodeWithDescription__init_($rt_s(959), 5, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(960)); - onn_NotificationCodeWithDescription_DEPRECATED_FUNCTION_WITH_REPLACEMENT = onn_NotificationCodeWithDescription__init_($rt_s(961), 6, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(960)); - onn_NotificationCodeWithDescription_DEPRECATED_PROCEDURE_WITHOUT_REPLACEMENT = onn_NotificationCodeWithDescription__init_($rt_s(962), 7, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(963)); - onn_NotificationCodeWithDescription_DEPRECATED_PROCEDURE_WITH_REPLACEMENT = onn_NotificationCodeWithDescription__init_($rt_s(964), 8, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(963)); - onn_NotificationCodeWithDescription_DEPRECATED_RUNTIME_OPTION = onn_NotificationCodeWithDescription__init_($rt_s(965), 9, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(966)); + onn_NotificationCodeWithDescription_JOIN_HINT_UNFULFILLABLE = onn_NotificationCodeWithDescription__init_($rt_s(974), 3, onkae_Status$Statement_JoinHintUnfulfillableWarning, ong_GqlStatusInfoCodes_STATUS_01N30, $rt_s(975)); + onn_NotificationCodeWithDescription_INDEX_LOOKUP_FOR_DYNAMIC_PROPERTY = onn_NotificationCodeWithDescription__init_($rt_s(976), 4, onkae_Status$Statement_DynamicProperty, ong_GqlStatusInfoCodes_STATUS_03N95, $rt_s(977)); + onn_NotificationCodeWithDescription_DEPRECATED_FUNCTION_WITHOUT_REPLACEMENT = onn_NotificationCodeWithDescription__init_($rt_s(978), 5, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(979)); + onn_NotificationCodeWithDescription_DEPRECATED_FUNCTION_WITH_REPLACEMENT = onn_NotificationCodeWithDescription__init_($rt_s(980), 6, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(979)); + onn_NotificationCodeWithDescription_DEPRECATED_PROCEDURE_WITHOUT_REPLACEMENT = onn_NotificationCodeWithDescription__init_($rt_s(981), 7, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(982)); + onn_NotificationCodeWithDescription_DEPRECATED_PROCEDURE_WITH_REPLACEMENT = onn_NotificationCodeWithDescription__init_($rt_s(983), 8, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(982)); + onn_NotificationCodeWithDescription_DEPRECATED_RUNTIME_OPTION = onn_NotificationCodeWithDescription__init_($rt_s(984), 9, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(985)); var$1 = new onn_NotificationCodeWithDescription; onkae_Status$Procedure_$callClinit(); - onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(967), 10, onkae_Status$Procedure_ProcedureWarning, ong_GqlStatusInfoCodes_STATUS_01N62, $rt_s(968)); + onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(986), 10, onkae_Status$Procedure_ProcedureWarning, ong_GqlStatusInfoCodes_STATUS_01N62, $rt_s(987)); onn_NotificationCodeWithDescription_PROCEDURE_WARNING = var$1; - onn_NotificationCodeWithDescription_DEPRECATED_PROCEDURE_RETURN_FIELD = onn_NotificationCodeWithDescription__init_($rt_s(969), 11, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N03, $rt_s(970)); - onn_NotificationCodeWithDescription_DEPRECATED_PROCEDURE_FIELD = onn_NotificationCodeWithDescription__init_($rt_s(971), 12, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(972)); - onn_NotificationCodeWithDescription_DEPRECATED_FUNCTION_FIELD = onn_NotificationCodeWithDescription__init_($rt_s(973), 13, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(974)); - onn_NotificationCodeWithDescription_DEPRECATED_RELATIONSHIP_TYPE_SEPARATOR = onn_NotificationCodeWithDescription__init_($rt_s(975), 14, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(976)); - onn_NotificationCodeWithDescription_DEPRECATED_NODE_OR_RELATIONSHIP_ON_RHS_SET_CLAUSE = onn_NotificationCodeWithDescription__init_($rt_s(977), 15, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(978)); - onn_NotificationCodeWithDescription_DEPRECATED_PROPERTY_REFERENCE_IN_CREATE = onn_NotificationCodeWithDescription__init_($rt_s(979), 16, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(932)); - onn_NotificationCodeWithDescription_DEPRECATED_PROPERTY_REFERENCE_IN_MERGE = onn_NotificationCodeWithDescription__init_($rt_s(980), 17, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(933)); - onn_NotificationCodeWithDescription_DEPRECATED_SHORTEST_PATH_WITH_FIXED_LENGTH_RELATIONSHIP = onn_NotificationCodeWithDescription__init_($rt_s(981), 18, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(982)); + onn_NotificationCodeWithDescription_DEPRECATED_PROCEDURE_RETURN_FIELD = onn_NotificationCodeWithDescription__init_($rt_s(988), 11, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N03, $rt_s(989)); + onn_NotificationCodeWithDescription_DEPRECATED_PROCEDURE_FIELD = onn_NotificationCodeWithDescription__init_($rt_s(990), 12, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(991)); + onn_NotificationCodeWithDescription_DEPRECATED_FUNCTION_FIELD = onn_NotificationCodeWithDescription__init_($rt_s(992), 13, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(993)); + onn_NotificationCodeWithDescription_DEPRECATED_RELATIONSHIP_TYPE_SEPARATOR = onn_NotificationCodeWithDescription__init_($rt_s(994), 14, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(995)); + onn_NotificationCodeWithDescription_DEPRECATED_NODE_OR_RELATIONSHIP_ON_RHS_SET_CLAUSE = onn_NotificationCodeWithDescription__init_($rt_s(996), 15, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(997)); + onn_NotificationCodeWithDescription_DEPRECATED_PROPERTY_REFERENCE_IN_CREATE = onn_NotificationCodeWithDescription__init_($rt_s(998), 16, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(943)); + onn_NotificationCodeWithDescription_DEPRECATED_PROPERTY_REFERENCE_IN_MERGE = onn_NotificationCodeWithDescription__init_($rt_s(999), 17, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(944)); + onn_NotificationCodeWithDescription_DEPRECATED_SHORTEST_PATH_WITH_FIXED_LENGTH_RELATIONSHIP = onn_NotificationCodeWithDescription__init_($rt_s(1000), 18, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(1001)); var$3 = new onn_NotificationCodeWithDescription; var$4 = onkae_Status$Statement_FeatureDeprecationWarning; var$5 = ong_GqlStatusInfoCodes_STATUS_01N01; @@ -58791,61 +59391,68 @@ onn_NotificationCodeWithDescription__clinit_ = () => { var$6 = onis_IndexProviderDescriptor_name(onis_AllIndexProviderDescriptors_TEXT_V1_DESCRIPTOR); var$1 = onis_IndexProviderDescriptor_name(onis_AllIndexProviderDescriptors_TEXT_V2_DESCRIPTOR); var$7 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(983)), var$6), $rt_s(984)), var$1), $rt_s(985)); - onn_NotificationCodeWithDescription__init_0(var$3, $rt_s(986), 19, var$4, var$5, jl_StringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(1002)), var$6), $rt_s(1003)), var$1), $rt_s(1004)); + onn_NotificationCodeWithDescription__init_0(var$3, $rt_s(1005), 19, var$4, var$5, jl_StringBuilder_toString(var$7)); onn_NotificationCodeWithDescription_DEPRECATED_TEXT_INDEX_PROVIDER = var$3; - onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_WHITESPACE_UNICODE = onn_NotificationCodeWithDescription__init_($rt_s(987), 20, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(935)); - onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_UNICODE = onn_NotificationCodeWithDescription__init_($rt_s(988), 21, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(936)); - onn_NotificationCodeWithDescription_EAGER_LOAD_CSV = onn_NotificationCodeWithDescription__init_($rt_s(989), 22, onkae_Status$Statement_EagerOperator, ong_GqlStatusInfoCodes_STATUS_03N94, $rt_s(990)); + onn_NotificationCodeWithDescription_DEPRECATED_INDEX_PROVIDER_OPTION = onn_NotificationCodeWithDescription__init_($rt_s(1006), 20, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(945)); + onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_WHITESPACE_UNICODE = onn_NotificationCodeWithDescription__init_($rt_s(1007), 21, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(947)); + onn_NotificationCodeWithDescription_DEPRECATED_IDENTIFIER_UNICODE = onn_NotificationCodeWithDescription__init_($rt_s(1008), 22, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(948)); + onn_NotificationCodeWithDescription_EAGER_LOAD_CSV = onn_NotificationCodeWithDescription__init_($rt_s(1009), 23, onkae_Status$Statement_EagerOperator, ong_GqlStatusInfoCodes_STATUS_03N94, $rt_s(1010)); var$1 = new onn_NotificationCodeWithDescription; onkae_Status$Request_$callClinit(); - onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(991), 23, onkae_Status$Request_DeprecatedFormat, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(992)); + onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(1011), 24, onkae_Status$Request_DeprecatedFormat, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(1012)); onn_NotificationCodeWithDescription_DEPRECATED_FORMAT = var$1; - onn_NotificationCodeWithDescription_LARGE_LABEL_LOAD_CSV = onn_NotificationCodeWithDescription__init_($rt_s(993), 24, onkae_Status$Statement_NoApplicableIndex, ong_GqlStatusInfoCodes_STATUS_03N93, $rt_s(994)); - onn_NotificationCodeWithDescription_MISSING_LABEL = onn_NotificationCodeWithDescription__init_($rt_s(995), 25, onkae_Status$Statement_UnknownLabelWarning, ong_GqlStatusInfoCodes_STATUS_01N50, $rt_s(996)); - onn_NotificationCodeWithDescription_MISSING_REL_TYPE = onn_NotificationCodeWithDescription__init_($rt_s(997), 26, onkae_Status$Statement_UnknownRelationshipTypeWarning, ong_GqlStatusInfoCodes_STATUS_01N51, $rt_s(998)); - onn_NotificationCodeWithDescription_MISSING_PROPERTY_NAME = onn_NotificationCodeWithDescription__init_($rt_s(999), 27, onkae_Status$Statement_UnknownPropertyKeyWarning, ong_GqlStatusInfoCodes_STATUS_01N52, $rt_s(1000)); - onn_NotificationCodeWithDescription_UNBOUNDED_SHORTEST_PATH = onn_NotificationCodeWithDescription__init_($rt_s(1001), 28, onkae_Status$Statement_UnboundedVariableLengthPattern, ong_GqlStatusInfoCodes_STATUS_03N91, $rt_s(1002)); - onn_NotificationCodeWithDescription_EXHAUSTIVE_SHORTEST_PATH = onn_NotificationCodeWithDescription__init_($rt_s(1003), 29, onkae_Status$Statement_ExhaustiveShortestPath, ong_GqlStatusInfoCodes_STATUS_03N92, $rt_s(1004)); - onn_NotificationCodeWithDescription_MISSING_PARAMETERS_FOR_EXPLAIN = onn_NotificationCodeWithDescription__init_($rt_s(1005), 30, onkae_Status$Statement_ParameterNotProvided, ong_GqlStatusInfoCodes_STATUS_01N60, $rt_s(1006)); - onn_NotificationCodeWithDescription_CODE_GENERATION_FAILED = onn_NotificationCodeWithDescription__init_($rt_s(1007), 31, onkae_Status$Statement_CodeGenerationFailed, ong_GqlStatusInfoCodes_STATUS_03N96, $rt_s(1008)); - onn_NotificationCodeWithDescription_SUBQUERY_VARIABLE_SHADOWING = onn_NotificationCodeWithDescription__init_($rt_s(1009), 32, onkae_Status$Statement_SubqueryVariableShadowing, ong_GqlStatusInfoCodes_STATUS_03N60, $rt_s(1010)); - onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_PROCEDURE = onn_NotificationCodeWithDescription__init_($rt_s(1011), 33, onkae_Status$Statement_RedundantOptionalProcedure, ong_GqlStatusInfoCodes_STATUS_03N61, $rt_s(1012)); - onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_SUBQUERY = onn_NotificationCodeWithDescription__init_($rt_s(1013), 34, onkae_Status$Statement_RedundantOptionalSubquery, ong_GqlStatusInfoCodes_STATUS_03N62, $rt_s(1014)); - onn_NotificationCodeWithDescription_DEPRECATED_IMPORTING_WITH_IN_SUBQUERY_CALL = onn_NotificationCodeWithDescription__init_($rt_s(1015), 35, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(944)); - onn_NotificationCodeWithDescription_UNION_RETURN_ORDER = onn_NotificationCodeWithDescription__init_($rt_s(1016), 36, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(945)); + onn_NotificationCodeWithDescription_LARGE_LABEL_LOAD_CSV = onn_NotificationCodeWithDescription__init_($rt_s(1013), 25, onkae_Status$Statement_NoApplicableIndex, ong_GqlStatusInfoCodes_STATUS_03N93, $rt_s(1014)); + onn_NotificationCodeWithDescription_MISSING_LABEL = onn_NotificationCodeWithDescription__init_($rt_s(1015), 26, onkae_Status$Statement_UnknownLabelWarning, ong_GqlStatusInfoCodes_STATUS_01N50, $rt_s(1016)); + onn_NotificationCodeWithDescription_MISSING_REL_TYPE = onn_NotificationCodeWithDescription__init_($rt_s(1017), 27, onkae_Status$Statement_UnknownRelationshipTypeWarning, ong_GqlStatusInfoCodes_STATUS_01N51, $rt_s(1018)); + onn_NotificationCodeWithDescription_MISSING_PROPERTY_NAME = onn_NotificationCodeWithDescription__init_($rt_s(1019), 28, onkae_Status$Statement_UnknownPropertyKeyWarning, ong_GqlStatusInfoCodes_STATUS_01N52, $rt_s(1020)); + onn_NotificationCodeWithDescription_UNBOUNDED_SHORTEST_PATH = onn_NotificationCodeWithDescription__init_($rt_s(1021), 29, onkae_Status$Statement_UnboundedVariableLengthPattern, ong_GqlStatusInfoCodes_STATUS_03N91, $rt_s(1022)); + onn_NotificationCodeWithDescription_EXHAUSTIVE_SHORTEST_PATH = onn_NotificationCodeWithDescription__init_($rt_s(1023), 30, onkae_Status$Statement_ExhaustiveShortestPath, ong_GqlStatusInfoCodes_STATUS_03N92, $rt_s(1024)); + onn_NotificationCodeWithDescription_MISSING_PARAMETERS_FOR_EXPLAIN = onn_NotificationCodeWithDescription__init_($rt_s(1025), 31, onkae_Status$Statement_ParameterNotProvided, ong_GqlStatusInfoCodes_STATUS_01N60, $rt_s(1026)); + onn_NotificationCodeWithDescription_CODE_GENERATION_FAILED = onn_NotificationCodeWithDescription__init_($rt_s(1027), 32, onkae_Status$Statement_CodeGenerationFailed, ong_GqlStatusInfoCodes_STATUS_03N96, $rt_s(1028)); + onn_NotificationCodeWithDescription_SUBQUERY_VARIABLE_SHADOWING = onn_NotificationCodeWithDescription__init_($rt_s(1029), 33, onkae_Status$Statement_SubqueryVariableShadowing, ong_GqlStatusInfoCodes_STATUS_03N60, $rt_s(1030)); + onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_PROCEDURE = onn_NotificationCodeWithDescription__init_($rt_s(1031), 34, onkae_Status$Statement_RedundantOptionalProcedure, ong_GqlStatusInfoCodes_STATUS_03N61, $rt_s(1032)); + onn_NotificationCodeWithDescription_REDUNDANT_OPTIONAL_SUBQUERY = onn_NotificationCodeWithDescription__init_($rt_s(1033), 35, onkae_Status$Statement_RedundantOptionalSubquery, ong_GqlStatusInfoCodes_STATUS_03N62, $rt_s(1034)); + onn_NotificationCodeWithDescription_DEPRECATED_IMPORTING_WITH_IN_SUBQUERY_CALL = onn_NotificationCodeWithDescription__init_($rt_s(1035), 36, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(1036)); + onn_NotificationCodeWithDescription_DEPRECATED_WHERE_VARIABLE_IN_NODE_PATTERN = onn_NotificationCodeWithDescription__init_($rt_s(1037), 37, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(1038)); + onn_NotificationCodeWithDescription_DEPRECATED_WHERE_VARIABLE_IN_RELATIONSHIP_PATTERN = onn_NotificationCodeWithDescription__init_($rt_s(1039), 38, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(1038)); + onn_NotificationCodeWithDescription_DEPRECATED_PRECEDENCE_OF_LABEL_EXPRESSION_PREDICATED = onn_NotificationCodeWithDescription__init_($rt_s(1040), 39, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(1038)); + onn_NotificationCodeWithDescription_DEPRECATED_KEYWORD_VARIABLE_IN_WHEN_OPERAND = onn_NotificationCodeWithDescription__init_($rt_s(1041), 40, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(1038)); var$1 = new onn_NotificationCodeWithDescription; onkae_Status$Database_$callClinit(); - onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(1017), 37, onkae_Status$Database_HomeDatabaseNotFound, ong_GqlStatusInfoCodes_STATUS_00N50, $rt_s(1018)); + onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(1042), 41, onkae_Status$Database_HomeDatabaseNotFound, ong_GqlStatusInfoCodes_STATUS_00N50, $rt_s(1043)); onn_NotificationCodeWithDescription_HOME_DATABASE_NOT_PRESENT = var$1; - onn_NotificationCodeWithDescription_DEPRECATED_DATABASE_NAME = onn_NotificationCodeWithDescription__init_($rt_s(1019), 38, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(1020)); - onn_NotificationCodeWithDescription_UNSATISFIABLE_RELATIONSHIP_TYPE_EXPRESSION = onn_NotificationCodeWithDescription__init_($rt_s(1021), 39, onkae_Status$Statement_UnsatisfiableRelationshipTypeExpression, ong_GqlStatusInfoCodes_STATUS_01N61, $rt_s(1022)); - onn_NotificationCodeWithDescription_REPEATED_RELATIONSHIP_REFERENCE = onn_NotificationCodeWithDescription__init_($rt_s(1023), 40, onkae_Status$Statement_RepeatedRelationshipReference, ong_GqlStatusInfoCodes_STATUS_01N63, $rt_s(1024)); - onn_NotificationCodeWithDescription_REPEATED_VAR_LENGTH_RELATIONSHIP_REFERENCE = onn_NotificationCodeWithDescription__init_($rt_s(1025), 41, onkae_Status$Statement_RepeatedRelationshipReference, ong_GqlStatusInfoCodes_STATUS_01N63, $rt_s(1026)); - onn_NotificationCodeWithDescription_DEPRECATED_CONNECT_COMPONENTS_PLANNER_PRE_PARSER_OPTION = onn_NotificationCodeWithDescription__init_($rt_s(1027), 42, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(1028)); + onn_NotificationCodeWithDescription_DEPRECATED_DATABASE_NAME = onn_NotificationCodeWithDescription__init_($rt_s(1044), 42, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, $rt_s(1045)); + onn_NotificationCodeWithDescription_UNSATISFIABLE_RELATIONSHIP_TYPE_EXPRESSION = onn_NotificationCodeWithDescription__init_($rt_s(1046), 43, onkae_Status$Statement_UnsatisfiableRelationshipTypeExpression, ong_GqlStatusInfoCodes_STATUS_01N61, $rt_s(1047)); + onn_NotificationCodeWithDescription_REPEATED_RELATIONSHIP_REFERENCE = onn_NotificationCodeWithDescription__init_($rt_s(1048), 44, onkae_Status$Statement_RepeatedRelationshipReference, ong_GqlStatusInfoCodes_STATUS_01N63, $rt_s(1049)); + onn_NotificationCodeWithDescription_REPEATED_VAR_LENGTH_RELATIONSHIP_REFERENCE = onn_NotificationCodeWithDescription__init_($rt_s(1050), 45, onkae_Status$Statement_RepeatedRelationshipReference, ong_GqlStatusInfoCodes_STATUS_01N63, $rt_s(1051)); + onn_NotificationCodeWithDescription_DEPRECATED_CONNECT_COMPONENTS_PLANNER_PRE_PARSER_OPTION = onn_NotificationCodeWithDescription__init_($rt_s(1052), 46, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(1053)); var$1 = new onn_NotificationCodeWithDescription; onkae_Status$Security_$callClinit(); - onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(1029), 43, onkae_Status$Security_CommandHasNoEffect, ong_GqlStatusInfoCodes_STATUS_00N70, $rt_s(1030)); + onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(1054), 47, onkae_Status$Security_CommandHasNoEffect, ong_GqlStatusInfoCodes_STATUS_00N70, $rt_s(1055)); onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_ASSIGN_PRIVILEGE = var$1; - onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_PRIVILEGE = onn_NotificationCodeWithDescription__init_($rt_s(1031), 44, onkae_Status$Security_CommandHasNoEffect, ong_GqlStatusInfoCodes_STATUS_00N71, $rt_s(1032)); - onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_GRANT_ROLE = onn_NotificationCodeWithDescription__init_($rt_s(1033), 45, onkae_Status$Security_CommandHasNoEffect, ong_GqlStatusInfoCodes_STATUS_00N70, $rt_s(1034)); - onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_ROLE = onn_NotificationCodeWithDescription__init_($rt_s(1035), 46, onkae_Status$Security_CommandHasNoEffect, ong_GqlStatusInfoCodes_STATUS_00N71, $rt_s(1036)); - onn_NotificationCodeWithDescription_AUTH_PROVIDER_NOT_DEFINED = onn_NotificationCodeWithDescription__init_($rt_s(1037), 47, onkae_Status$Security_AuthProviderNotDefined, ong_GqlStatusInfoCodes_STATUS_00N72, $rt_s(1038)); - onn_NotificationCodeWithDescription_IMPOSSIBLE_REVOKE_COMMAND = onn_NotificationCodeWithDescription__init_($rt_s(1039), 48, onkae_Status$Security_ImpossibleRevokeCommand, ong_GqlStatusInfoCodes_STATUS_01N70, $rt_s(1040)); - onn_NotificationCodeWithDescription_EXTERNAL_AUTH_NOT_ENABLED = onn_NotificationCodeWithDescription__init_($rt_s(1041), 49, onkae_Status$Security_ExternalAuthNotEnabled, ong_GqlStatusInfoCodes_STATUS_01N71, $rt_s(1042)); + onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_PRIVILEGE = onn_NotificationCodeWithDescription__init_($rt_s(1056), 48, onkae_Status$Security_CommandHasNoEffect, ong_GqlStatusInfoCodes_STATUS_00N71, $rt_s(1057)); + onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_GRANT_ROLE = onn_NotificationCodeWithDescription__init_($rt_s(1058), 49, onkae_Status$Security_CommandHasNoEffect, ong_GqlStatusInfoCodes_STATUS_00N70, $rt_s(1059)); + onn_NotificationCodeWithDescription_COMMAND_HAS_NO_EFFECT_REVOKE_ROLE = onn_NotificationCodeWithDescription__init_($rt_s(1060), 50, onkae_Status$Security_CommandHasNoEffect, ong_GqlStatusInfoCodes_STATUS_00N71, $rt_s(1061)); + onn_NotificationCodeWithDescription_AUTH_PROVIDER_NOT_DEFINED = onn_NotificationCodeWithDescription__init_($rt_s(1062), 51, onkae_Status$Security_AuthProviderNotDefined, ong_GqlStatusInfoCodes_STATUS_00N72, $rt_s(1063)); + onn_NotificationCodeWithDescription_IMPOSSIBLE_REVOKE_COMMAND = onn_NotificationCodeWithDescription__init_($rt_s(1064), 52, onkae_Status$Security_ImpossibleRevokeCommand, ong_GqlStatusInfoCodes_STATUS_01N70, $rt_s(1065)); + onn_NotificationCodeWithDescription_EXTERNAL_AUTH_NOT_ENABLED = onn_NotificationCodeWithDescription__init_($rt_s(1066), 53, onkae_Status$Security_ExternalAuthNotEnabled, ong_GqlStatusInfoCodes_STATUS_01N71, $rt_s(1067)); var$1 = new onn_NotificationCodeWithDescription; onkae_Status$Cluster_$callClinit(); - onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(1043), 50, onkae_Status$Cluster_ServerAlreadyEnabled, ong_GqlStatusInfoCodes_STATUS_00N80, $rt_s(1044)); + onn_NotificationCodeWithDescription__init_0(var$1, $rt_s(1068), 54, onkae_Status$Cluster_ServerAlreadyEnabled, ong_GqlStatusInfoCodes_STATUS_00N80, $rt_s(1069)); onn_NotificationCodeWithDescription_SERVER_ALREADY_ENABLED = var$1; - onn_NotificationCodeWithDescription_SERVER_ALREADY_CORDONED = onn_NotificationCodeWithDescription__init_($rt_s(1045), 51, onkae_Status$Cluster_ServerAlreadyCordoned, ong_GqlStatusInfoCodes_STATUS_00N81, $rt_s(1046)); - onn_NotificationCodeWithDescription_NO_DATABASES_REALLOCATED = onn_NotificationCodeWithDescription__init_($rt_s(1047), 52, onkae_Status$Cluster_NoDatabasesReallocated, ong_GqlStatusInfoCodes_STATUS_00N82, $rt_s(1048)); - onn_NotificationCodeWithDescription_CORDONED_SERVERS_EXISTED_DURING_ALLOCATION = onn_NotificationCodeWithDescription__init_($rt_s(1049), 53, onkae_Status$Cluster_CordonedServersExistedDuringAllocation, ong_GqlStatusInfoCodes_STATUS_00N83, $rt_s(1050)); - onn_NotificationCodeWithDescription_REQUESTED_TOPOLOGY_MATCHED_CURRENT_TOPOLOGY = onn_NotificationCodeWithDescription__init_($rt_s(1051), 54, onkae_Status$Cluster_RequestedTopologyMatchedCurrentTopology, ong_GqlStatusInfoCodes_STATUS_00N84, $rt_s(1052)); - onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_ALREADY_EXISTS = onn_NotificationCodeWithDescription__init_($rt_s(1053), 55, onkae_Status$Schema_IndexOrConstraintAlreadyExists, ong_GqlStatusInfoCodes_STATUS_00NA0, $rt_s(1054)); - onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_DOES_NOT_EXIST = onn_NotificationCodeWithDescription__init_($rt_s(1055), 56, onkae_Status$Schema_IndexOrConstraintDoesNotExist, ong_GqlStatusInfoCodes_STATUS_00NA1, $rt_s(1056)); - onn_NotificationCodeWithDescription_AGGREGATION_SKIPPED_NULL = onn_NotificationCodeWithDescription__init_($rt_s(1057), 57, onkae_Status$Statement_AggregationSkippedNull, ong_GqlStatusInfoCodes_STATUS_01G11, $rt_s(1058)); - onn_NotificationCodeWithDescription_DEPRECATED_BOOLEAN_COERCION = onn_NotificationCodeWithDescription__init_($rt_s(1059), 58, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(1060)); - onn_NotificationCodeWithDescription_DEPRECATED_OPTION_IN_OPTION_MAP = onn_NotificationCodeWithDescription__init_($rt_s(1061), 59, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(1062)); + onn_NotificationCodeWithDescription_SERVER_ALREADY_CORDONED = onn_NotificationCodeWithDescription__init_($rt_s(1070), 55, onkae_Status$Cluster_ServerAlreadyCordoned, ong_GqlStatusInfoCodes_STATUS_00N81, $rt_s(1071)); + onn_NotificationCodeWithDescription_NO_DATABASES_REALLOCATED = onn_NotificationCodeWithDescription__init_($rt_s(1072), 56, onkae_Status$Cluster_NoDatabasesReallocated, ong_GqlStatusInfoCodes_STATUS_00N82, $rt_s(1073)); + onn_NotificationCodeWithDescription_CORDONED_SERVERS_EXISTED_DURING_ALLOCATION = onn_NotificationCodeWithDescription__init_($rt_s(1074), 57, onkae_Status$Cluster_CordonedServersExistedDuringAllocation, ong_GqlStatusInfoCodes_STATUS_00N83, $rt_s(1075)); + onn_NotificationCodeWithDescription_REQUESTED_TOPOLOGY_MATCHED_CURRENT_TOPOLOGY = onn_NotificationCodeWithDescription__init_($rt_s(1076), 58, onkae_Status$Cluster_RequestedTopologyMatchedCurrentTopology, ong_GqlStatusInfoCodes_STATUS_00N84, $rt_s(1077)); + onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_ALREADY_EXISTS = onn_NotificationCodeWithDescription__init_($rt_s(1078), 59, onkae_Status$Schema_IndexOrConstraintAlreadyExists, ong_GqlStatusInfoCodes_STATUS_00NA0, $rt_s(1079)); + onn_NotificationCodeWithDescription_INDEX_OR_CONSTRAINT_DOES_NOT_EXIST = onn_NotificationCodeWithDescription__init_($rt_s(1080), 60, onkae_Status$Schema_IndexOrConstraintDoesNotExist, ong_GqlStatusInfoCodes_STATUS_00NA1, $rt_s(1081)); + onn_NotificationCodeWithDescription_AGGREGATION_SKIPPED_NULL = onn_NotificationCodeWithDescription__init_($rt_s(1082), 61, onkae_Status$Statement_AggregationSkippedNull, ong_GqlStatusInfoCodes_STATUS_01G11, $rt_s(1083)); + onn_NotificationCodeWithDescription_DEPRECATED_BOOLEAN_COERCION = onn_NotificationCodeWithDescription__init_($rt_s(1084), 62, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(1085)); + onn_NotificationCodeWithDescription_INSECURE_PROTOCOL = onn_NotificationCodeWithDescription__init_($rt_s(1086), 63, onkae_Status$Statement_InsecureProtocol, ong_GqlStatusInfoCodes_STATUS_01N72, $rt_s(1087)); + onn_NotificationCodeWithDescription_DEPRECATED_OPTION_IN_OPTION_MAP = onn_NotificationCodeWithDescription__init_($rt_s(1088), 64, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N01, $rt_s(1089)); + onn_NotificationCodeWithDescription_DEPRECATED_SEEDING_OPTION = onn_NotificationCodeWithDescription__init_($rt_s(1090), 65, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N02, $rt_s(1091)); + onn_NotificationCodeWithDescription_DEPRECATED_STORE_FORMAT = onn_NotificationCodeWithDescription__init_($rt_s(1092), 66, onkae_Status$Statement_FeatureDeprecationWarning, ong_GqlStatusInfoCodes_STATUS_01N00, onsa_DeprecatedFormatWarning_getTargetFormatWarning($rt_s(940))); onn_NotificationCodeWithDescription_$VALUES = onn_NotificationCodeWithDescription_$values(); }, onn_IndexHintUnfulfillableNotification = $rt_classWithoutFields(), @@ -58858,8 +59465,8 @@ oncia_UsingIndexHint$UsingAnyIndexType$__clinit_ = () => { }, oncia_UsingIndexHint$UsingAnyIndexType$_productArity = $this => { return 0; -}, -oncia_UsingIndexHint$UsingAnyIndexType$_productElement = ($this, $x$1) => { +}; +let oncia_UsingIndexHint$UsingAnyIndexType$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, oncia_UsingIndexHint$UsingAnyIndexType$_productIterator = $this => { @@ -58869,7 +59476,7 @@ oncia_UsingIndexHint$UsingAnyIndexType$_hashCode = $this => { return (-1470690012); }, oncia_UsingIndexHint$UsingAnyIndexType$_toString = $this => { - return $rt_s(1063); + return $rt_s(1093); }, oncia_UsingIndexHint$UsingTextIndexType$ = $rt_classWithoutFields(), oncia_UsingIndexHint$UsingTextIndexType$_MODULE$ = null, @@ -58889,11 +59496,11 @@ oncia_UsingIndexHint$UsingTextIndexType$_hashCode = $this => { return (-1846110597); }, oncia_UsingIndexHint$UsingTextIndexType$_toString = $this => { - return $rt_s(1064); + return $rt_s(1094); }, one_IndexHintException$IndexHintIndexType = $rt_classWithoutFields(jl_Enum), -one_IndexHintException$IndexHintIndexType_ANY = null; -let one_IndexHintException$IndexHintIndexType_BTREE = null, +one_IndexHintException$IndexHintIndexType_ANY = null, +one_IndexHintException$IndexHintIndexType_BTREE = null, one_IndexHintException$IndexHintIndexType_TEXT = null, one_IndexHintException$IndexHintIndexType_RANGE = null, one_IndexHintException$IndexHintIndexType_POINT = null, @@ -58907,13 +59514,13 @@ one_IndexHintException$IndexHintIndexType__clinit_ = () => { jl_Enum__init_(var$1, $rt_s(708), 0); one_IndexHintException$IndexHintIndexType_ANY = var$1; var$1 = new one_IndexHintException$IndexHintIndexType; - jl_Enum__init_(var$1, $rt_s(1065), 1); + jl_Enum__init_(var$1, $rt_s(1095), 1); one_IndexHintException$IndexHintIndexType_BTREE = var$1; var$1 = new one_IndexHintException$IndexHintIndexType; - jl_Enum__init_(var$1, $rt_s(1066), 2); + jl_Enum__init_(var$1, $rt_s(1096), 2); one_IndexHintException$IndexHintIndexType_TEXT = var$1; var$1 = new one_IndexHintException$IndexHintIndexType; - jl_Enum__init_(var$1, $rt_s(1067), 3); + jl_Enum__init_(var$1, $rt_s(1097), 3); one_IndexHintException$IndexHintIndexType_RANGE = var$1; var$1 = new one_IndexHintException$IndexHintIndexType; jl_Enum__init_(var$1, $rt_s(734), 4); @@ -58945,7 +59552,7 @@ oncia_UsingIndexHint$UsingRangeIndexType$_hashCode = $this => { return 1477404659; }, oncia_UsingIndexHint$UsingRangeIndexType$_toString = $this => { - return $rt_s(1068); + return $rt_s(1098); }, oncia_UsingIndexHint$UsingPointIndexType$ = $rt_classWithoutFields(), oncia_UsingIndexHint$UsingPointIndexType$_MODULE$ = null, @@ -58965,7 +59572,7 @@ oncia_UsingIndexHint$UsingPointIndexType$_hashCode = $this => { return (-611026688); }, oncia_UsingIndexHint$UsingPointIndexType$_toString = $this => { - return $rt_s(1069); + return $rt_s(1099); }, onn_NodeIndexLookupUnfulfillableNotification = $rt_classWithoutFields(), onn_RelationshipIndexLookupUnfulfillableNotification = $rt_classWithoutFields(), @@ -58980,17 +59587,17 @@ onn_MissingRelTypeNotification = $rt_classWithoutFields(), onn_MissingPropertyNameNotification = $rt_classWithoutFields(); function onciu_UnboundedShortestPathNotification() { let a = this; jl_Object.call(a); - a.$position55 = null; + a.$position65 = null; a.$pattern16 = null; } let onciu_UnboundedShortestPathNotification_position = $this => { - return $this.$position55; + return $this.$position65; }, onciu_UnboundedShortestPathNotification_pattern = $this => { return $this.$pattern16; }, onciu_UnboundedShortestPathNotification_productPrefix = $this => { - return $rt_s(1070); + return $rt_s(1100); }, onciu_UnboundedShortestPathNotification_productArity = $this => { return 2; @@ -58998,7 +59605,7 @@ onciu_UnboundedShortestPathNotification_productArity = $this => { onciu_UnboundedShortestPathNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position55; + return $this.$position65; case 1: return $this.$pattern16; default: @@ -59023,8 +59630,8 @@ onciu_UnboundedShortestPathNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position55; - var$3 = $x$1.$position55; + var$2 = $this.$position65; + var$3 = $x$1.$position65; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59059,12 +59666,12 @@ onciu_UnboundedShortestPathNotification_equals = ($this, $x$1) => { onn_ExhaustiveShortestPathForbiddenNotification = $rt_classWithoutFields(); function onciu_DeprecatedFunctionNotification() { let a = this; jl_Object.call(a); - a.$position49 = null; + a.$position60 = null; a.$oldName1 = null; a.$newName3 = null; } let onciu_DeprecatedFunctionNotification_position = $this => { - return $this.$position49; + return $this.$position60; }, onciu_DeprecatedFunctionNotification_oldName = $this => { return $this.$oldName1; @@ -59073,7 +59680,7 @@ onciu_DeprecatedFunctionNotification_newName = $this => { return $this.$newName3; }, onciu_DeprecatedFunctionNotification_productPrefix = $this => { - return $rt_s(1071); + return $rt_s(1101); }, onciu_DeprecatedFunctionNotification_productArity = $this => { return 3; @@ -59081,7 +59688,7 @@ onciu_DeprecatedFunctionNotification_productArity = $this => { onciu_DeprecatedFunctionNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position49; + return $this.$position60; case 1: return $this.$oldName1; case 2: @@ -59108,8 +59715,8 @@ onciu_DeprecatedFunctionNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position49; - var$3 = $x$1.$position49; + var$2 = $this.$position60; + var$3 = $x$1.$position60; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59154,7 +59761,7 @@ onciu_DeprecatedFunctionNotification_equals = ($this, $x$1) => { return var$4; }, onciu_DeprecatedFunctionNotification__init_0 = ($this, $position, $oldName, $newName) => { - $this.$position49 = $position; + $this.$position60 = $position; $this.$oldName1 = $oldName; $this.$newName3 = $newName; }, @@ -59165,12 +59772,12 @@ onciu_DeprecatedFunctionNotification__init_ = (var_0, var_1, var_2) => { }; function onn_DeprecatedProcedureNotification() { let a = this; jl_Object.call(a); - a.$position51 = null; + a.$position62 = null; a.$oldName0 = null; a.$newName2 = null; } let onn_DeprecatedProcedureNotification_position = $this => { - return $this.$position51; + return $this.$position62; }, onn_DeprecatedProcedureNotification_oldName = $this => { return $this.$oldName0; @@ -59179,7 +59786,7 @@ onn_DeprecatedProcedureNotification_newName = $this => { return $this.$newName2; }, onn_DeprecatedProcedureNotification_productPrefix = $this => { - return $rt_s(1072); + return $rt_s(1102); }, onn_DeprecatedProcedureNotification_productArity = $this => { return 3; @@ -59187,7 +59794,7 @@ onn_DeprecatedProcedureNotification_productArity = $this => { onn_DeprecatedProcedureNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position51; + return $this.$position62; case 1: return $this.$oldName0; case 2: @@ -59214,8 +59821,8 @@ onn_DeprecatedProcedureNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position51; - var$3 = $x$1.$position51; + var$2 = $this.$position62; + var$3 = $x$1.$position62; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59261,12 +59868,12 @@ onn_DeprecatedProcedureNotification_equals = ($this, $x$1) => { }; function onn_DeprecatedProcedureReturnFieldNotification() { let a = this; jl_Object.call(a); - a.$position61 = null; + a.$position71 = null; a.$procedure0 = null; a.$field2 = null; } let onn_DeprecatedProcedureReturnFieldNotification_position = $this => { - return $this.$position61; + return $this.$position71; }, onn_DeprecatedProcedureReturnFieldNotification_procedure = $this => { return $this.$procedure0; @@ -59275,7 +59882,7 @@ onn_DeprecatedProcedureReturnFieldNotification_field = $this => { return $this.$field2; }, onn_DeprecatedProcedureReturnFieldNotification_productPrefix = $this => { - return $rt_s(1073); + return $rt_s(1103); }, onn_DeprecatedProcedureReturnFieldNotification_productArity = $this => { return 3; @@ -59283,7 +59890,7 @@ onn_DeprecatedProcedureReturnFieldNotification_productArity = $this => { onn_DeprecatedProcedureReturnFieldNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position61; + return $this.$position71; case 1: return $this.$procedure0; case 2: @@ -59310,8 +59917,8 @@ onn_DeprecatedProcedureReturnFieldNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position61; - var$3 = $x$1.$position61; + var$2 = $this.$position71; + var$3 = $x$1.$position71; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59357,12 +59964,12 @@ onn_DeprecatedProcedureReturnFieldNotification_equals = ($this, $x$1) => { }; function onn_DeprecatedProcedureFieldNotification() { let a = this; jl_Object.call(a); - a.$position54 = null; + a.$position64 = null; a.$procedure3 = null; a.$field1 = null; } let onn_DeprecatedProcedureFieldNotification_position = $this => { - return $this.$position54; + return $this.$position64; }, onn_DeprecatedProcedureFieldNotification_procedure = $this => { return $this.$procedure3; @@ -59371,7 +59978,7 @@ onn_DeprecatedProcedureFieldNotification_field = $this => { return $this.$field1; }, onn_DeprecatedProcedureFieldNotification_productPrefix = $this => { - return $rt_s(1074); + return $rt_s(1104); }, onn_DeprecatedProcedureFieldNotification_productArity = $this => { return 3; @@ -59379,7 +59986,7 @@ onn_DeprecatedProcedureFieldNotification_productArity = $this => { onn_DeprecatedProcedureFieldNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position54; + return $this.$position64; case 1: return $this.$procedure3; case 2: @@ -59406,8 +60013,8 @@ onn_DeprecatedProcedureFieldNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position54; - var$3 = $x$1.$position54; + var$2 = $this.$position64; + var$3 = $x$1.$position64; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59452,7 +60059,7 @@ onn_DeprecatedProcedureFieldNotification_equals = ($this, $x$1) => { return var$4; }, onn_DeprecatedProcedureFieldNotification__init_0 = ($this, $position, $procedure, $field) => { - $this.$position54 = $position; + $this.$position64 = $position; $this.$procedure3 = $procedure; $this.$field1 = $field; }, @@ -59463,12 +60070,12 @@ onn_DeprecatedProcedureFieldNotification__init_ = (var_0, var_1, var_2) => { }; function onn_DeprecatedFunctionFieldNotification() { let a = this; jl_Object.call(a); - a.$position76 = null; + a.$position88 = null; a.$procedure2 = null; a.$field0 = null; } let onn_DeprecatedFunctionFieldNotification_position = $this => { - return $this.$position76; + return $this.$position88; }, onn_DeprecatedFunctionFieldNotification_procedure = $this => { return $this.$procedure2; @@ -59477,7 +60084,7 @@ onn_DeprecatedFunctionFieldNotification_field = $this => { return $this.$field0; }, onn_DeprecatedFunctionFieldNotification_productPrefix = $this => { - return $rt_s(1075); + return $rt_s(1105); }, onn_DeprecatedFunctionFieldNotification_productArity = $this => { return 3; @@ -59485,7 +60092,7 @@ onn_DeprecatedFunctionFieldNotification_productArity = $this => { onn_DeprecatedFunctionFieldNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position76; + return $this.$position88; case 1: return $this.$procedure2; case 2: @@ -59512,8 +60119,8 @@ onn_DeprecatedFunctionFieldNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position76; - var$3 = $x$1.$position76; + var$2 = $this.$position88; + var$3 = $x$1.$position88; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59558,7 +60165,7 @@ onn_DeprecatedFunctionFieldNotification_equals = ($this, $x$1) => { return var$4; }, onn_DeprecatedFunctionFieldNotification__init_0 = ($this, $position, $procedure, $field) => { - $this.$position76 = $position; + $this.$position88 = $position; $this.$procedure2 = $procedure; $this.$field0 = $field; }, @@ -59569,12 +60176,12 @@ onn_DeprecatedFunctionFieldNotification__init_ = (var_0, var_1, var_2) => { }; function onciu_DeprecatedRelTypeSeparatorNotification() { let a = this; jl_Object.call(a); - a.$position68 = null; + a.$position81 = null; a.$oldExpression0 = null; a.$rewrittenExpression0 = null; } let onciu_DeprecatedRelTypeSeparatorNotification_position = $this => { - return $this.$position68; + return $this.$position81; }, onciu_DeprecatedRelTypeSeparatorNotification_oldExpression = $this => { return $this.$oldExpression0; @@ -59583,7 +60190,7 @@ onciu_DeprecatedRelTypeSeparatorNotification_rewrittenExpression = $this => { return $this.$rewrittenExpression0; }, onciu_DeprecatedRelTypeSeparatorNotification_productPrefix = $this => { - return $rt_s(1076); + return $rt_s(1106); }, onciu_DeprecatedRelTypeSeparatorNotification_productArity = $this => { return 3; @@ -59591,7 +60198,7 @@ onciu_DeprecatedRelTypeSeparatorNotification_productArity = $this => { onciu_DeprecatedRelTypeSeparatorNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position68; + return $this.$position81; case 1: return $this.$oldExpression0; case 2: @@ -59618,8 +60225,8 @@ onciu_DeprecatedRelTypeSeparatorNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position68; - var$3 = $x$1.$position68; + var$2 = $this.$position81; + var$3 = $x$1.$position81; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59664,7 +60271,7 @@ onciu_DeprecatedRelTypeSeparatorNotification_equals = ($this, $x$1) => { return var$4; }, onciu_DeprecatedRelTypeSeparatorNotification__init_ = ($this, $position, $oldExpression, $rewrittenExpression) => { - $this.$position68 = $position; + $this.$position81 = $position; $this.$oldExpression0 = $oldExpression; $this.$rewrittenExpression0 = $rewrittenExpression; }, @@ -59675,12 +60282,12 @@ onciu_DeprecatedRelTypeSeparatorNotification__init_0 = (var_0, var_1, var_2) => }; function onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification() { let a = this; jl_Object.call(a); - a.$position72 = null; + a.$position83 = null; a.$deprecated2 = null; a.$replacement2 = null; } let onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_position = $this => { - return $this.$position72; + return $this.$position83; }, onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_deprecated = $this => { return $this.$deprecated2; @@ -59689,7 +60296,7 @@ onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_replacement = $this return $this.$replacement2; }, onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productPrefix = $this => { - return $rt_s(1077); + return $rt_s(1107); }, onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productArity = $this => { return 3; @@ -59697,7 +60304,7 @@ onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productArity = $this onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position72; + return $this.$position83; case 1: return $this.$deprecated2; case 2: @@ -59724,8 +60331,8 @@ onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_equals = ($this, $x$ break b; c: { $x$1 = $x$1; - var$2 = $this.$position72; - var$3 = $x$1.$position72; + var$2 = $this.$position83; + var$3 = $x$1.$position83; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59770,7 +60377,7 @@ onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_equals = ($this, $x$ return var$4; }, onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification__init_ = ($this, $position, $deprecated, $replacement) => { - $this.$position72 = $position; + $this.$position83 = $position; $this.$deprecated2 = $deprecated; $this.$replacement2 = $replacement; }, @@ -59781,17 +60388,17 @@ onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification__init_0 = (var_0, va }; function onciu_DeprecatedPropertyReferenceInCreate() { let a = this; jl_Object.call(a); - a.$position73 = null; + a.$position85 = null; a.$varName1 = null; } let onciu_DeprecatedPropertyReferenceInCreate_position = $this => { - return $this.$position73; + return $this.$position85; }, onciu_DeprecatedPropertyReferenceInCreate_varName = $this => { return $this.$varName1; }, onciu_DeprecatedPropertyReferenceInCreate_productPrefix = $this => { - return $rt_s(1078); + return $rt_s(1108); }, onciu_DeprecatedPropertyReferenceInCreate_productArity = $this => { return 2; @@ -59799,7 +60406,7 @@ onciu_DeprecatedPropertyReferenceInCreate_productArity = $this => { onciu_DeprecatedPropertyReferenceInCreate_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position73; + return $this.$position85; case 1: return $this.$varName1; default: @@ -59824,8 +60431,8 @@ onciu_DeprecatedPropertyReferenceInCreate_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position73; - var$3 = $x$1.$position73; + var$2 = $this.$position85; + var$3 = $x$1.$position85; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59859,17 +60466,17 @@ onciu_DeprecatedPropertyReferenceInCreate_equals = ($this, $x$1) => { }; function onciu_DeprecatedPropertyReferenceInMerge() { let a = this; jl_Object.call(a); - a.$position67 = null; + a.$position80 = null; a.$varName0 = null; } let onciu_DeprecatedPropertyReferenceInMerge_position = $this => { - return $this.$position67; + return $this.$position80; }, onciu_DeprecatedPropertyReferenceInMerge_varName = $this => { return $this.$varName0; }, onciu_DeprecatedPropertyReferenceInMerge_productPrefix = $this => { - return $rt_s(1079); + return $rt_s(1109); }, onciu_DeprecatedPropertyReferenceInMerge_productArity = $this => { return 2; @@ -59877,7 +60484,7 @@ onciu_DeprecatedPropertyReferenceInMerge_productArity = $this => { onciu_DeprecatedPropertyReferenceInMerge_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position67; + return $this.$position80; case 1: return $this.$varName0; default: @@ -59902,8 +60509,8 @@ onciu_DeprecatedPropertyReferenceInMerge_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position67; - var$3 = $x$1.$position67; + var$2 = $this.$position80; + var$3 = $x$1.$position80; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -59937,12 +60544,12 @@ onciu_DeprecatedPropertyReferenceInMerge_equals = ($this, $x$1) => { }; function onn_ProcedureWarningNotification() { let a = this; jl_Object.call(a); - a.$position48 = null; + a.$position59 = null; a.$procedure1 = null; a.$warning1 = null; } let onn_ProcedureWarningNotification_position = $this => { - return $this.$position48; + return $this.$position59; }, onn_ProcedureWarningNotification_procedure = $this => { return $this.$procedure1; @@ -59951,7 +60558,7 @@ onn_ProcedureWarningNotification_warning = $this => { return $this.$warning1; }, onn_ProcedureWarningNotification_productPrefix = $this => { - return $rt_s(1080); + return $rt_s(1110); }, onn_ProcedureWarningNotification_productArity = $this => { return 3; @@ -59959,7 +60566,7 @@ onn_ProcedureWarningNotification_productArity = $this => { onn_ProcedureWarningNotification_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position48; + return $this.$position59; case 1: return $this.$procedure1; case 2: @@ -59986,8 +60593,8 @@ onn_ProcedureWarningNotification_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position48; - var$3 = $x$1.$position48; + var$2 = $this.$position59; + var$3 = $x$1.$position59; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -60035,17 +60642,17 @@ onn_MissingParametersNotification = $rt_classWithoutFields(), onn_CodeGenerationFailedNotification = $rt_classWithoutFields(); function onciu_SubqueryVariableShadowing() { let a = this; jl_Object.call(a); - a.$position65 = null; + a.$position77 = null; a.$varName2 = null; } let onciu_SubqueryVariableShadowing_position = $this => { - return $this.$position65; + return $this.$position77; }, onciu_SubqueryVariableShadowing_varName = $this => { return $this.$varName2; }, onciu_SubqueryVariableShadowing_productPrefix = $this => { - return $rt_s(1081); + return $rt_s(1111); }, onciu_SubqueryVariableShadowing_productArity = $this => { return 2; @@ -60053,7 +60660,7 @@ onciu_SubqueryVariableShadowing_productArity = $this => { onciu_SubqueryVariableShadowing_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position65; + return $this.$position77; case 1: return $this.$varName2; default: @@ -60078,8 +60685,8 @@ onciu_SubqueryVariableShadowing_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position65; - var$3 = $x$1.$position65; + var$2 = $this.$position77; + var$3 = $x$1.$position77; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -60113,17 +60720,17 @@ onciu_SubqueryVariableShadowing_equals = ($this, $x$1) => { }; function onciu_RedundantOptionalProcedure() { let a = this; jl_Object.call(a); - a.$position57 = null; + a.$position67 = null; a.$proc0 = null; } let onciu_RedundantOptionalProcedure_position = $this => { - return $this.$position57; + return $this.$position67; }, onciu_RedundantOptionalProcedure_proc = $this => { return $this.$proc0; }, onciu_RedundantOptionalProcedure_productPrefix = $this => { - return $rt_s(1082); + return $rt_s(1112); }, onciu_RedundantOptionalProcedure_productArity = $this => { return 2; @@ -60131,7 +60738,7 @@ onciu_RedundantOptionalProcedure_productArity = $this => { onciu_RedundantOptionalProcedure_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position57; + return $this.$position67; case 1: return $this.$proc0; default: @@ -60156,8 +60763,8 @@ onciu_RedundantOptionalProcedure_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position57; - var$3 = $x$1.$position57; + var$2 = $this.$position67; + var$3 = $x$1.$position67; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -60191,13 +60798,13 @@ onciu_RedundantOptionalProcedure_equals = ($this, $x$1) => { }; function onciu_RedundantOptionalSubquery() { jl_Object.call(this); - this.$position78 = null; + this.$position89 = null; } let onciu_RedundantOptionalSubquery_position = $this => { - return $this.$position78; + return $this.$position89; }, onciu_RedundantOptionalSubquery_productPrefix = $this => { - return $rt_s(1083); + return $rt_s(1113); }, onciu_RedundantOptionalSubquery_productArity = $this => { return 1; @@ -60205,7 +60812,7 @@ onciu_RedundantOptionalSubquery_productArity = $this => { onciu_RedundantOptionalSubquery_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position78; + return $this.$position89; default: } return sr_Statics_ioobe($x$1); @@ -60228,8 +60835,8 @@ onciu_RedundantOptionalSubquery_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position78; - $x$1 = $x$1.$position78; + var$2 = $this.$position89; + $x$1 = $x$1.$position89; if (var$2 !== null) { if (!var$2.$equals($x$1)) break b; @@ -60251,17 +60858,17 @@ onciu_RedundantOptionalSubquery_equals = ($this, $x$1) => { }; function onciu_DeprecatedImportingWithInSubqueryCall() { let a = this; jl_Object.call(a); - a.$position79 = null; + a.$position91 = null; a.$variable29 = null; } let onciu_DeprecatedImportingWithInSubqueryCall_position = $this => { - return $this.$position79; + return $this.$position91; }, onciu_DeprecatedImportingWithInSubqueryCall_variable = $this => { return $this.$variable29; }, onciu_DeprecatedImportingWithInSubqueryCall_productPrefix = $this => { - return $rt_s(1084); + return $rt_s(1114); }, onciu_DeprecatedImportingWithInSubqueryCall_productArity = $this => { return 2; @@ -60269,7 +60876,7 @@ onciu_DeprecatedImportingWithInSubqueryCall_productArity = $this => { onciu_DeprecatedImportingWithInSubqueryCall_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position79; + return $this.$position91; case 1: return $this.$variable29; default: @@ -60294,8 +60901,8 @@ onciu_DeprecatedImportingWithInSubqueryCall_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position79; - var$3 = $x$1.$position79; + var$2 = $this.$position91; + var$3 = $x$1.$position91; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -60327,128 +60934,59 @@ onciu_DeprecatedImportingWithInSubqueryCall_equals = ($this, $x$1) => { } return var$4; }; -function onciu_UnionReturnItemsInDifferentOrder() { - jl_Object.call(this); - this.$position69 = null; -} -let onciu_UnionReturnItemsInDifferentOrder_position = $this => { - return $this.$position69; -}, -onciu_UnionReturnItemsInDifferentOrder_productPrefix = $this => { - return $rt_s(1085); -}, -onciu_UnionReturnItemsInDifferentOrder_productArity = $this => { - return 1; -}, -onciu_UnionReturnItemsInDifferentOrder_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$position69; - default: - } - return sr_Statics_ioobe($x$1); -}, -onciu_UnionReturnItemsInDifferentOrder_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_UnionReturnItemsInDifferentOrder_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_UnionReturnItemsInDifferentOrder_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_UnionReturnItemsInDifferentOrder_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_UnionReturnItemsInDifferentOrder) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$position69; - $x$1 = $x$1.$position69; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof onciu_UnionReturnItemsInDifferentOrder)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -onciu_UnionReturnItemsInDifferentOrder__init_0 = ($this, $position) => { - $this.$position69 = $position; -}, -onciu_UnionReturnItemsInDifferentOrder__init_ = var_0 => { - let var_1 = new onciu_UnionReturnItemsInDifferentOrder(); - onciu_UnionReturnItemsInDifferentOrder__init_0(var_1, var_0); - return var_1; -}, -onciu_HomeDatabaseNotPresent = $rt_classWithoutFields(); -function onciu_FixedLengthRelationshipInShortestPath() { +function onciu_DeprecatedWhereVariableInNodePattern() { let a = this; jl_Object.call(a); - a.$position83 = null; - a.$deprecated3 = null; - a.$replacement3 = null; + a.$position73 = null; + a.$variableName2 = null; + a.$properties17 = null; } -let onciu_FixedLengthRelationshipInShortestPath_position = $this => { - return $this.$position83; +let onciu_DeprecatedWhereVariableInNodePattern_position = $this => { + return $this.$position73; }, -onciu_FixedLengthRelationshipInShortestPath_deprecated = $this => { - return $this.$deprecated3; +onciu_DeprecatedWhereVariableInNodePattern_variableName = $this => { + return $this.$variableName2; }, -onciu_FixedLengthRelationshipInShortestPath_replacement = $this => { - return $this.$replacement3; +onciu_DeprecatedWhereVariableInNodePattern_properties = $this => { + return $this.$properties17; }, -onciu_FixedLengthRelationshipInShortestPath_productPrefix = $this => { - return $rt_s(1086); +onciu_DeprecatedWhereVariableInNodePattern_productPrefix = $this => { + return $rt_s(1115); }, -onciu_FixedLengthRelationshipInShortestPath_productArity = $this => { +onciu_DeprecatedWhereVariableInNodePattern_productArity = $this => { return 3; }, -onciu_FixedLengthRelationshipInShortestPath_productElement = ($this, $x$1) => { +onciu_DeprecatedWhereVariableInNodePattern_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position83; + return $this.$position73; case 1: - return $this.$deprecated3; + return $this.$variableName2; case 2: - return $this.$replacement3; + return $this.$properties17; default: } return sr_Statics_ioobe($x$1); }, -onciu_FixedLengthRelationshipInShortestPath_productIterator = $this => { +onciu_DeprecatedWhereVariableInNodePattern_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_FixedLengthRelationshipInShortestPath_hashCode = $this => { +onciu_DeprecatedWhereVariableInNodePattern_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_FixedLengthRelationshipInShortestPath_toString = $this => { +onciu_DeprecatedWhereVariableInNodePattern_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_FixedLengthRelationshipInShortestPath_equals = ($this, $x$1) => { +onciu_DeprecatedWhereVariableInNodePattern_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_FixedLengthRelationshipInShortestPath) ? 0 : 1)) + if (!(!($x$1 instanceof onciu_DeprecatedWhereVariableInNodePattern) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$position83; - var$3 = $x$1.$position83; + var$2 = $this.$position73; + var$3 = $x$1.$position73; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -60459,8 +60997,8 @@ onciu_FixedLengthRelationshipInShortestPath_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$deprecated3; - var$3 = $x$1.$deprecated3; + var$2 = $this.$variableName2; + var$3 = $x$1.$variableName2; if (var$2 !== null) { if (!jl_String_equals(var$2, var$3)) break b; @@ -60471,8 +61009,8 @@ onciu_FixedLengthRelationshipInShortestPath_equals = ($this, $x$1) => { break b; } e: { - var$3 = $this.$replacement3; - $x$1 = $x$1.$replacement3; + var$3 = $this.$properties17; + $x$1 = $x$1.$properties17; if (var$3 !== null) { if (!jl_String_equals(var$3, $x$1)) break b; @@ -60482,7 +61020,7 @@ onciu_FixedLengthRelationshipInShortestPath_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof onciu_FixedLengthRelationshipInShortestPath)) + if (!($this instanceof onciu_DeprecatedWhereVariableInNodePattern)) break b; } var$4 = 1; @@ -60492,153 +61030,103 @@ onciu_FixedLengthRelationshipInShortestPath_equals = ($this, $x$1) => { } return var$4; }, -onciu_FixedLengthRelationshipInShortestPath__init_ = ($this, $position, $deprecated, $replacement) => { - $this.$position83 = $position; - $this.$deprecated3 = $deprecated; - $this.$replacement3 = $replacement; +onciu_DeprecatedWhereVariableInNodePattern__init_ = ($this, $position, $variableName, $properties) => { + $this.$position73 = $position; + $this.$variableName2 = $variableName; + $this.$properties17 = $properties; }, -onciu_FixedLengthRelationshipInShortestPath__init_0 = (var_0, var_1, var_2) => { - let var_3 = new onciu_FixedLengthRelationshipInShortestPath(); - onciu_FixedLengthRelationshipInShortestPath__init_(var_3, var_0, var_1, var_2); +onciu_DeprecatedWhereVariableInNodePattern__init_0 = (var_0, var_1, var_2) => { + let var_3 = new onciu_DeprecatedWhereVariableInNodePattern(); + onciu_DeprecatedWhereVariableInNodePattern__init_(var_3, var_0, var_1, var_2); return var_3; }; -function onciu_DeprecatedTextIndexProvider() { - jl_Object.call(this); - this.$position56 = null; +function onciu_DeprecatedWhereVariableInRelationshipPattern() { + let a = this; jl_Object.call(a); + a.$position79 = null; + a.$variableName0 = null; + a.$properties13 = null; } -let onciu_DeprecatedTextIndexProvider_position = $this => { - return $this.$position56; +let onciu_DeprecatedWhereVariableInRelationshipPattern_position = $this => { + return $this.$position79; }, -onciu_DeprecatedTextIndexProvider_productPrefix = $this => { - return $rt_s(1087); +onciu_DeprecatedWhereVariableInRelationshipPattern_variableName = $this => { + return $this.$variableName0; }, -onciu_DeprecatedTextIndexProvider_productArity = $this => { - return 1; +onciu_DeprecatedWhereVariableInRelationshipPattern_properties = $this => { + return $this.$properties13; }, -onciu_DeprecatedTextIndexProvider_productElement = ($this, $x$1) => { +onciu_DeprecatedWhereVariableInRelationshipPattern_productPrefix = $this => { + return $rt_s(1116); +}, +onciu_DeprecatedWhereVariableInRelationshipPattern_productArity = $this => { + return 3; +}, +onciu_DeprecatedWhereVariableInRelationshipPattern_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position56; + return $this.$position79; + case 1: + return $this.$variableName0; + case 2: + return $this.$properties13; default: } return sr_Statics_ioobe($x$1); }, -onciu_DeprecatedTextIndexProvider_productIterator = $this => { +onciu_DeprecatedWhereVariableInRelationshipPattern_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_DeprecatedTextIndexProvider_hashCode = $this => { +onciu_DeprecatedWhereVariableInRelationshipPattern_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_DeprecatedTextIndexProvider_toString = $this => { +onciu_DeprecatedWhereVariableInRelationshipPattern_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_DeprecatedTextIndexProvider_equals = ($this, $x$1) => { - let var$2, var$3; +onciu_DeprecatedWhereVariableInRelationshipPattern_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_DeprecatedTextIndexProvider) ? 0 : 1)) + if (!(!($x$1 instanceof onciu_DeprecatedWhereVariableInRelationshipPattern) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$position56; - $x$1 = $x$1.$position56; + var$2 = $this.$position79; + var$3 = $x$1.$position79; if (var$2 !== null) { - if (!var$2.$equals($x$1)) + if (!var$2.$equals(var$3)) break b; else break c; } - if ($x$1 !== null) + if (var$3 !== null) break b; } - if (!($this instanceof onciu_DeprecatedTextIndexProvider)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -onciu_DeprecatedTextIndexProvider__init_0 = ($this, $position) => { - $this.$position56 = $position; -}, -onciu_DeprecatedTextIndexProvider__init_ = var_0 => { - let var_1 = new onciu_DeprecatedTextIndexProvider(); - onciu_DeprecatedTextIndexProvider__init_0(var_1, var_0); - return var_1; -}; -function onciu_DeprecatedDatabaseNameNotification() { - let a = this; jl_Object.call(a); - a.$databaseName6 = null; - a.$position50 = null; -} -let onciu_DeprecatedDatabaseNameNotification_databaseName = $this => { - return $this.$databaseName6; -}, -onciu_DeprecatedDatabaseNameNotification_position = $this => { - return $this.$position50; -}, -onciu_DeprecatedDatabaseNameNotification_productPrefix = $this => { - return $rt_s(1088); -}, -onciu_DeprecatedDatabaseNameNotification_productArity = $this => { - return 2; -}, -onciu_DeprecatedDatabaseNameNotification_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$databaseName6; - case 1: - return $this.$position50; - default: - } - return sr_Statics_ioobe($x$1); -}, -onciu_DeprecatedDatabaseNameNotification_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_DeprecatedDatabaseNameNotification_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_DeprecatedDatabaseNameNotification_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_DeprecatedDatabaseNameNotification_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_DeprecatedDatabaseNameNotification) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$databaseName6; - var$3 = $x$1.$databaseName6; + d: { + var$2 = $this.$variableName0; + var$3 = $x$1.$variableName0; if (var$2 !== null) { if (!jl_String_equals(var$2, var$3)) break b; else - break c; + break d; } if (var$3 !== null) break b; } - d: { - var$3 = $this.$position50; - $x$1 = $x$1.$position50; + e: { + var$3 = $this.$properties13; + $x$1 = $x$1.$properties13; if (var$3 !== null) { - if (!s_Some_equals(var$3, $x$1)) + if (!jl_String_equals(var$3, $x$1)) break b; else - break d; + break e; } if ($x$1 !== null) break b; } - if (!($this instanceof onciu_DeprecatedDatabaseNameNotification)) + if (!($this instanceof onciu_DeprecatedWhereVariableInRelationshipPattern)) break b; } var$4 = 1; @@ -60648,93 +61136,63 @@ onciu_DeprecatedDatabaseNameNotification_equals = ($this, $x$1) => { } return var$4; }, -onciu_DeprecatedDatabaseNameNotification__init_ = ($this, $databaseName, $position) => { - $this.$databaseName6 = $databaseName; - $this.$position50 = $position; -}, -onciu_DeprecatedDatabaseNameNotification__init_0 = (var_0, var_1) => { - let var_2 = new onciu_DeprecatedDatabaseNameNotification(); - onciu_DeprecatedDatabaseNameNotification__init_(var_2, var_0, var_1); - return var_2; -}, -onciu_DeprecatedRuntimeNotification = $rt_classWithoutFields(); -function onn_NotificationWrapping$$asKernelNotification$lambda$_1_0() { - jl_Object.call(this); - this.$_0325 = null; -} -let onn_NotificationWrapping$$asKernelNotification$lambda$_1_0__init_0 = (var$0, var$1) => { - var$0.$_0325 = var$1; -}, -onn_NotificationWrapping$$asKernelNotification$lambda$_1_0__init_ = var_0 => { - let var_1 = new onn_NotificationWrapping$$asKernelNotification$lambda$_1_0(); - onn_NotificationWrapping$$asKernelNotification$lambda$_1_0__init_0(var_1, var_0); - return var_1; -}, -onn_NotificationWrapping$$asKernelNotification$lambda$_1_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0325; - return onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition(onn_NotificationWrapping$_MODULE$, var$1.$withOffset(var$2))); -}, -onn_NotificationWrapping$$asKernelNotification$lambda$_1_1 = $rt_classWithoutFields(), -onn_NotificationWrapping$$asKernelNotification$lambda$_1_1__init_ = var$0 => { - return; -}, -onn_NotificationWrapping$$asKernelNotification$lambda$_1_1__init_0 = () => { - let var_0 = new onn_NotificationWrapping$$asKernelNotification$lambda$_1_1(); - onn_NotificationWrapping$$asKernelNotification$lambda$_1_1__init_(var_0); - return var_0; +onciu_DeprecatedWhereVariableInRelationshipPattern__init_0 = ($this, $position, $variableName, $properties) => { + $this.$position79 = $position; + $this.$variableName0 = $variableName; + $this.$properties13 = $properties; }, -onn_NotificationWrapping$$asKernelNotification$lambda$_1_1_apply = var$0 => { - return ong_InputPosition_empty; +onciu_DeprecatedWhereVariableInRelationshipPattern__init_ = (var_0, var_1, var_2) => { + let var_3 = new onciu_DeprecatedWhereVariableInRelationshipPattern(); + onciu_DeprecatedWhereVariableInRelationshipPattern__init_0(var_3, var_0, var_1, var_2); + return var_3; }; -function onciu_UnsatisfiableRelationshipTypeExpression() { +function onciu_DeprecatedPrecedenceOfLabelExpressionPredicate() { let a = this; jl_Object.call(a); - a.$position71 = null; + a.$position78 = null; a.$labelExpression12 = null; } -let onciu_UnsatisfiableRelationshipTypeExpression_position = $this => { - return $this.$position71; +let onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_position = $this => { + return $this.$position78; }, -onciu_UnsatisfiableRelationshipTypeExpression_labelExpression = $this => { +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_labelExpression = $this => { return $this.$labelExpression12; }, -onciu_UnsatisfiableRelationshipTypeExpression_productPrefix = $this => { - return $rt_s(1089); +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_productPrefix = $this => { + return $rt_s(1117); }, -onciu_UnsatisfiableRelationshipTypeExpression_productArity = $this => { +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_productArity = $this => { return 2; }, -onciu_UnsatisfiableRelationshipTypeExpression_productElement = ($this, $x$1) => { +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position71; + return $this.$position78; case 1: return $this.$labelExpression12; default: } return sr_Statics_ioobe($x$1); }, -onciu_UnsatisfiableRelationshipTypeExpression_productIterator = $this => { +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_UnsatisfiableRelationshipTypeExpression_hashCode = $this => { +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_UnsatisfiableRelationshipTypeExpression_toString = $this => { +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_UnsatisfiableRelationshipTypeExpression_equals = ($this, $x$1) => { +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_UnsatisfiableRelationshipTypeExpression) ? 0 : 1)) + if (!(!($x$1 instanceof onciu_DeprecatedPrecedenceOfLabelExpressionPredicate) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$position71; - var$3 = $x$1.$position71; + var$2 = $this.$position78; + var$3 = $x$1.$position78; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -60756,7 +61214,376 @@ onciu_UnsatisfiableRelationshipTypeExpression_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof onciu_UnsatisfiableRelationshipTypeExpression)) + if (!($this instanceof onciu_DeprecatedPrecedenceOfLabelExpressionPredicate)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate__init_ = ($this, $position, $labelExpression) => { + $this.$position78 = $position; + $this.$labelExpression12 = $labelExpression; +}, +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate__init_0 = (var_0, var_1) => { + let var_2 = new onciu_DeprecatedPrecedenceOfLabelExpressionPredicate(); + onciu_DeprecatedPrecedenceOfLabelExpressionPredicate__init_(var_2, var_0, var_1); + return var_2; +}; +function onciu_DeprecatedKeywordVariableInWhenOperand() { + let a = this; jl_Object.call(a); + a.$position63 = null; + a.$variableName1 = null; + a.$remainingExpression0 = null; +} +let onciu_DeprecatedKeywordVariableInWhenOperand_position = $this => { + return $this.$position63; +}, +onciu_DeprecatedKeywordVariableInWhenOperand_variableName = $this => { + return $this.$variableName1; +}, +onciu_DeprecatedKeywordVariableInWhenOperand_remainingExpression = $this => { + return $this.$remainingExpression0; +}, +onciu_DeprecatedKeywordVariableInWhenOperand_productPrefix = $this => { + return $rt_s(1118); +}, +onciu_DeprecatedKeywordVariableInWhenOperand_productArity = $this => { + return 3; +}, +onciu_DeprecatedKeywordVariableInWhenOperand_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$position63; + case 1: + return $this.$variableName1; + case 2: + return $this.$remainingExpression0; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_DeprecatedKeywordVariableInWhenOperand_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedKeywordVariableInWhenOperand_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedKeywordVariableInWhenOperand_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedKeywordVariableInWhenOperand_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_DeprecatedKeywordVariableInWhenOperand) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$position63; + var$3 = $x$1.$position63; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$variableName1; + var$3 = $x$1.$variableName1; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$remainingExpression0; + $x$1 = $x$1.$remainingExpression0; + if (var$3 !== null) { + if (!jl_String_equals(var$3, $x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof onciu_DeprecatedKeywordVariableInWhenOperand)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +onciu_DeprecatedKeywordVariableInWhenOperand__init_ = ($this, $position, $variableName, $remainingExpression) => { + $this.$position63 = $position; + $this.$variableName1 = $variableName; + $this.$remainingExpression0 = $remainingExpression; +}, +onciu_DeprecatedKeywordVariableInWhenOperand__init_0 = (var_0, var_1, var_2) => { + let var_3 = new onciu_DeprecatedKeywordVariableInWhenOperand(); + onciu_DeprecatedKeywordVariableInWhenOperand__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +onciu_HomeDatabaseNotPresent = $rt_classWithoutFields(); +function onciu_FixedLengthRelationshipInShortestPath() { + let a = this; jl_Object.call(a); + a.$position94 = null; + a.$deprecated3 = null; + a.$replacement3 = null; +} +let onciu_FixedLengthRelationshipInShortestPath_position = $this => { + return $this.$position94; +}, +onciu_FixedLengthRelationshipInShortestPath_deprecated = $this => { + return $this.$deprecated3; +}, +onciu_FixedLengthRelationshipInShortestPath_replacement = $this => { + return $this.$replacement3; +}, +onciu_FixedLengthRelationshipInShortestPath_productPrefix = $this => { + return $rt_s(1119); +}, +onciu_FixedLengthRelationshipInShortestPath_productArity = $this => { + return 3; +}, +onciu_FixedLengthRelationshipInShortestPath_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$position94; + case 1: + return $this.$deprecated3; + case 2: + return $this.$replacement3; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_FixedLengthRelationshipInShortestPath_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_FixedLengthRelationshipInShortestPath_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_FixedLengthRelationshipInShortestPath_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_FixedLengthRelationshipInShortestPath_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_FixedLengthRelationshipInShortestPath) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$position94; + var$3 = $x$1.$position94; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$deprecated3; + var$3 = $x$1.$deprecated3; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$replacement3; + $x$1 = $x$1.$replacement3; + if (var$3 !== null) { + if (!jl_String_equals(var$3, $x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof onciu_FixedLengthRelationshipInShortestPath)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +onciu_FixedLengthRelationshipInShortestPath__init_ = ($this, $position, $deprecated, $replacement) => { + $this.$position94 = $position; + $this.$deprecated3 = $deprecated; + $this.$replacement3 = $replacement; +}, +onciu_FixedLengthRelationshipInShortestPath__init_0 = (var_0, var_1, var_2) => { + let var_3 = new onciu_FixedLengthRelationshipInShortestPath(); + onciu_FixedLengthRelationshipInShortestPath__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function onciu_DeprecatedTextIndexProvider() { + jl_Object.call(this); + this.$position66 = null; +} +let onciu_DeprecatedTextIndexProvider_position = $this => { + return $this.$position66; +}, +onciu_DeprecatedTextIndexProvider_productPrefix = $this => { + return $rt_s(1120); +}, +onciu_DeprecatedTextIndexProvider_productArity = $this => { + return 1; +}, +onciu_DeprecatedTextIndexProvider_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$position66; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_DeprecatedTextIndexProvider_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedTextIndexProvider_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedTextIndexProvider_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedTextIndexProvider_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_DeprecatedTextIndexProvider) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$position66; + $x$1 = $x$1.$position66; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof onciu_DeprecatedTextIndexProvider)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +onciu_DeprecatedTextIndexProvider__init_0 = ($this, $position) => { + $this.$position66 = $position; +}, +onciu_DeprecatedTextIndexProvider__init_ = var_0 => { + let var_1 = new onciu_DeprecatedTextIndexProvider(); + onciu_DeprecatedTextIndexProvider__init_0(var_1, var_0); + return var_1; +}, +onciu_DeprecatedIndexProviderOption = $rt_classWithoutFields(); +function onciu_DeprecatedDatabaseNameNotification() { + let a = this; jl_Object.call(a); + a.$databaseName4 = null; + a.$position61 = null; +} +let onciu_DeprecatedDatabaseNameNotification_databaseName = $this => { + return $this.$databaseName4; +}, +onciu_DeprecatedDatabaseNameNotification_position = $this => { + return $this.$position61; +}, +onciu_DeprecatedDatabaseNameNotification_productPrefix = $this => { + return $rt_s(1121); +}, +onciu_DeprecatedDatabaseNameNotification_productArity = $this => { + return 2; +}, +onciu_DeprecatedDatabaseNameNotification_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$databaseName4; + case 1: + return $this.$position61; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_DeprecatedDatabaseNameNotification_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedDatabaseNameNotification_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedDatabaseNameNotification_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_DeprecatedDatabaseNameNotification_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_DeprecatedDatabaseNameNotification) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$databaseName4; + var$3 = $x$1.$databaseName4; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$position61; + $x$1 = $x$1.$position61; + if (var$3 !== null) { + if (!s_Some_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof onciu_DeprecatedDatabaseNameNotification)) break b; } var$4 = 1; @@ -60765,15 +61592,134 @@ onciu_UnsatisfiableRelationshipTypeExpression_equals = ($this, $x$1) => { var$4 = 0; } return var$4; +}, +onciu_DeprecatedDatabaseNameNotification__init_ = ($this, $databaseName, $position) => { + $this.$databaseName4 = $databaseName; + $this.$position61 = $position; +}, +onciu_DeprecatedDatabaseNameNotification__init_0 = (var_0, var_1) => { + let var_2 = new onciu_DeprecatedDatabaseNameNotification(); + onciu_DeprecatedDatabaseNameNotification__init_(var_2, var_0, var_1); + return var_2; +}, +onciu_DeprecatedRuntimeNotification = $rt_classWithoutFields(); +function onn_NotificationWrapping$$asKernelNotification$lambda$_2_0() { + jl_Object.call(this); + this.$_0577 = null; +} +let onn_NotificationWrapping$$asKernelNotification$lambda$_2_0__init_0 = (var$0, var$1) => { + var$0.$_0577 = var$1; +}, +onn_NotificationWrapping$$asKernelNotification$lambda$_2_0__init_ = var_0 => { + let var_1 = new onn_NotificationWrapping$$asKernelNotification$lambda$_2_0(); + onn_NotificationWrapping$$asKernelNotification$lambda$_2_0__init_0(var_1, var_0); + return var_1; +}, +onn_NotificationWrapping$$asKernelNotification$lambda$_2_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0577; + return onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition(onn_NotificationWrapping$_ConvertibleCompilerInputPosition(onn_NotificationWrapping$_MODULE$, var$1.$withOffset(var$2))); +}, +onn_NotificationWrapping$$asKernelNotification$lambda$_2_1 = $rt_classWithoutFields(), +onn_NotificationWrapping$$asKernelNotification$lambda$_2_1__init_0 = var$0 => { + return; +}, +onn_NotificationWrapping$$asKernelNotification$lambda$_2_1__init_ = () => { + let var_0 = new onn_NotificationWrapping$$asKernelNotification$lambda$_2_1(); + onn_NotificationWrapping$$asKernelNotification$lambda$_2_1__init_0(var_0); + return var_0; +}, +onn_NotificationWrapping$$asKernelNotification$lambda$_2_1_apply = var$0 => { + return ong_InputPosition_empty; }; +function onciu_UnsatisfiableRelationshipTypeExpression() { + let a = this; jl_Object.call(a); + a.$position82 = null; + a.$labelExpression13 = null; +} +let onciu_UnsatisfiableRelationshipTypeExpression_position = $this => { + return $this.$position82; +}, +onciu_UnsatisfiableRelationshipTypeExpression_labelExpression = $this => { + return $this.$labelExpression13; +}, +onciu_UnsatisfiableRelationshipTypeExpression_productPrefix = $this => { + return $rt_s(1122); +}, +onciu_UnsatisfiableRelationshipTypeExpression_productArity = $this => { + return 2; +}, +onciu_UnsatisfiableRelationshipTypeExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$position82; + case 1: + return $this.$labelExpression13; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_UnsatisfiableRelationshipTypeExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_UnsatisfiableRelationshipTypeExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_UnsatisfiableRelationshipTypeExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_UnsatisfiableRelationshipTypeExpression_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_UnsatisfiableRelationshipTypeExpression) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$position82; + var$3 = $x$1.$position82; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$labelExpression13; + $x$1 = $x$1.$labelExpression13; + if (var$3 !== null) { + if (!jl_String_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof onciu_UnsatisfiableRelationshipTypeExpression)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +onciu_RuntimeUnsatisfiableRelationshipTypeExpression = $rt_classWithoutFields(); function onciu_RepeatedRelationshipReference() { let a = this; jl_Object.call(a); - a.$position58 = null; + a.$position68 = null; a.$relName2 = null; a.$pattern17 = null; } let onciu_RepeatedRelationshipReference_position = $this => { - return $this.$position58; + return $this.$position68; }, onciu_RepeatedRelationshipReference_relName = $this => { return $this.$relName2; @@ -60782,7 +61728,7 @@ onciu_RepeatedRelationshipReference_pattern = $this => { return $this.$pattern17; }, onciu_RepeatedRelationshipReference_productPrefix = $this => { - return $rt_s(1090); + return $rt_s(1123); }, onciu_RepeatedRelationshipReference_productArity = $this => { return 3; @@ -60790,7 +61736,7 @@ onciu_RepeatedRelationshipReference_productArity = $this => { onciu_RepeatedRelationshipReference_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position58; + return $this.$position68; case 1: return $this.$relName2; case 2: @@ -60817,8 +61763,8 @@ onciu_RepeatedRelationshipReference_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position58; - var$3 = $x$1.$position58; + var$2 = $this.$position68; + var$3 = $x$1.$position68; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -60864,12 +61810,12 @@ onciu_RepeatedRelationshipReference_equals = ($this, $x$1) => { }; function onciu_RepeatedVarLengthRelationshipReference() { let a = this; jl_Object.call(a); - a.$position82 = null; + a.$position93 = null; a.$relName1 = null; a.$pattern14 = null; } let onciu_RepeatedVarLengthRelationshipReference_position = $this => { - return $this.$position82; + return $this.$position93; }, onciu_RepeatedVarLengthRelationshipReference_relName = $this => { return $this.$relName1; @@ -60878,7 +61824,7 @@ onciu_RepeatedVarLengthRelationshipReference_pattern = $this => { return $this.$pattern14; }, onciu_RepeatedVarLengthRelationshipReference_productPrefix = $this => { - return $rt_s(1091); + return $rt_s(1124); }, onciu_RepeatedVarLengthRelationshipReference_productArity = $this => { return 3; @@ -60886,7 +61832,7 @@ onciu_RepeatedVarLengthRelationshipReference_productArity = $this => { onciu_RepeatedVarLengthRelationshipReference_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position82; + return $this.$position93; case 1: return $this.$relName1; case 2: @@ -60913,8 +61859,8 @@ onciu_RepeatedVarLengthRelationshipReference_equals = ($this, $x$1) => { break b; c: { $x$1 = $x$1; - var$2 = $this.$position82; - var$3 = $x$1.$position82; + var$2 = $this.$position93; + var$3 = $x$1.$position93; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -60960,12 +61906,12 @@ onciu_RepeatedVarLengthRelationshipReference_equals = ($this, $x$1) => { }; function onciu_DeprecatedIdentifierWhitespaceUnicode() { let a = this; jl_Object.call(a); - a.$position35 = null; + a.$position44 = null; a.$unicode0 = 0; a.$identifier1 = null; } let onciu_DeprecatedIdentifierWhitespaceUnicode_position = $this => { - return $this.$position35; + return $this.$position44; }, onciu_DeprecatedIdentifierWhitespaceUnicode_unicode = $this => { return $this.$unicode0; @@ -60974,7 +61920,7 @@ onciu_DeprecatedIdentifierWhitespaceUnicode_identifier = $this => { return $this.$identifier1; }, onciu_DeprecatedIdentifierWhitespaceUnicode_productPrefix = $this => { - return $rt_s(1092); + return $rt_s(1125); }, onciu_DeprecatedIdentifierWhitespaceUnicode_productArity = $this => { return 3; @@ -60982,7 +61928,7 @@ onciu_DeprecatedIdentifierWhitespaceUnicode_productArity = $this => { onciu_DeprecatedIdentifierWhitespaceUnicode_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position35; + return $this.$position44; case 1: return jl_Character_valueOf($this.$unicode0); case 2: @@ -60995,7 +61941,7 @@ onciu_DeprecatedIdentifierWhitespaceUnicode_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, onciu_DeprecatedIdentifierWhitespaceUnicode_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(1092))), sr_Statics_anyHash($this.$position35)), $this.$unicode0), sr_Statics_anyHash($this.$identifier1)), 3); + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(1125))), sr_Statics_anyHash($this.$position44)), $this.$unicode0), sr_Statics_anyHash($this.$identifier1)), 3); }, onciu_DeprecatedIdentifierWhitespaceUnicode_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); @@ -61011,8 +61957,8 @@ onciu_DeprecatedIdentifierWhitespaceUnicode_equals = ($this, $x$1) => { if ($this.$unicode0 != $x$1.$unicode0) break b; c: { - var$2 = $this.$position35; - var$3 = $x$1.$position35; + var$2 = $this.$position44; + var$3 = $x$1.$position44; if (var$2 !== null) { if (!onciu_InputPosition$Simple_equals(var$2, var$3)) break b; @@ -61043,25 +61989,15 @@ onciu_DeprecatedIdentifierWhitespaceUnicode_equals = ($this, $x$1) => { var$4 = 0; } return var$4; -}, -onciu_DeprecatedIdentifierWhitespaceUnicode__init_ = ($this, $position, $unicode, $identifier) => { - $this.$position35 = $position; - $this.$unicode0 = $unicode; - $this.$identifier1 = $identifier; -}, -onciu_DeprecatedIdentifierWhitespaceUnicode__init_0 = (var_0, var_1, var_2) => { - let var_3 = new onciu_DeprecatedIdentifierWhitespaceUnicode(); - onciu_DeprecatedIdentifierWhitespaceUnicode__init_(var_3, var_0, var_1, var_2); - return var_3; }; function onciu_DeprecatedIdentifierUnicode() { let a = this; jl_Object.call(a); - a.$position41 = null; + a.$position50 = null; a.$unicode1 = 0; a.$identifier0 = null; } let onciu_DeprecatedIdentifierUnicode_position = $this => { - return $this.$position41; + return $this.$position50; }, onciu_DeprecatedIdentifierUnicode_unicode = $this => { return $this.$unicode1; @@ -61070,7 +62006,7 @@ onciu_DeprecatedIdentifierUnicode_identifier = $this => { return $this.$identifier0; }, onciu_DeprecatedIdentifierUnicode_productPrefix = $this => { - return $rt_s(1093); + return $rt_s(1126); }, onciu_DeprecatedIdentifierUnicode_productArity = $this => { return 3; @@ -61078,7 +62014,7 @@ onciu_DeprecatedIdentifierUnicode_productArity = $this => { onciu_DeprecatedIdentifierUnicode_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$position41; + return $this.$position50; case 1: return jl_Character_valueOf($this.$unicode1); case 2: @@ -61091,7 +62027,7 @@ onciu_DeprecatedIdentifierUnicode_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, onciu_DeprecatedIdentifierUnicode_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(1093))), sr_Statics_anyHash($this.$position41)), $this.$unicode1), sr_Statics_anyHash($this.$identifier0)), 3); + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(1126))), sr_Statics_anyHash($this.$position50)), $this.$unicode1), sr_Statics_anyHash($this.$identifier0)), 3); }, onciu_DeprecatedIdentifierUnicode_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); @@ -61107,8 +62043,8 @@ onciu_DeprecatedIdentifierUnicode_equals = ($this, $x$1) => { if ($this.$unicode1 != $x$1.$unicode1) break b; c: { - var$2 = $this.$position41; - var$3 = $x$1.$position41; + var$2 = $this.$position50; + var$3 = $x$1.$position50; if (var$2 !== null) { if (!onciu_InputPosition$Simple_equals(var$2, var$3)) break b; @@ -61140,18 +62076,10 @@ onciu_DeprecatedIdentifierUnicode_equals = ($this, $x$1) => { } return var$4; }, -onciu_DeprecatedIdentifierUnicode__init_ = ($this, $position, $unicode, $identifier) => { - $this.$position41 = $position; - $this.$unicode1 = $unicode; - $this.$identifier0 = $identifier; -}, -onciu_DeprecatedIdentifierUnicode__init_0 = (var_0, var_1, var_2) => { - let var_3 = new onciu_DeprecatedIdentifierUnicode(); - onciu_DeprecatedIdentifierUnicode__init_(var_3, var_0, var_1, var_2); - return var_3; -}, onciu_DeprecatedConnectComponentsPlannerPreParserOption = $rt_classWithoutFields(), onciu_DeprecatedOptionInOptionMap = $rt_classWithoutFields(), +onciu_DeprecatedSeedingOption = $rt_classWithoutFields(), +onciu_DeprecatedStoreFormat = $rt_classWithoutFields(), onciu_AuthProviderNotDefined = $rt_classWithoutFields(), onciu_ExternalAuthNotEnabled = $rt_classWithoutFields(), onciu_AssignPrivilegeCommandHasNoEffectNotification = $rt_classWithoutFields(), @@ -61176,6 +62104,11 @@ onciu_DeprecatedBooleanCoercion$_MODULE$ = null, onciu_DeprecatedBooleanCoercion$__clinit_ = () => { onciu_DeprecatedBooleanCoercion$_MODULE$ = new onciu_DeprecatedBooleanCoercion$; }, +onciu_InsecureProtocol$ = $rt_classWithoutFields(), +onciu_InsecureProtocol$_MODULE$ = null, +onciu_InsecureProtocol$__clinit_ = () => { + onciu_InsecureProtocol$_MODULE$ = new onciu_InsecureProtocol$; +}, sc_SeqView = $rt_classWithoutFields(0), sc_SeqView_map$ = ($$this, $f) => { return sc_SeqView$Map__init_0($$this, $f); @@ -61193,7 +62126,7 @@ sc_SeqView_sorted$ = ($$this, $ord) => { let var$3, var$4; var$3 = new sc_SeqView$Sorted; var$4 = $$this.$length(); - var$3.$underlying17 = $$this; + var$3.$underlying16 = $$this; var$3.$scala$collection$SeqView$Sorted$$len = var$4; var$3.$scala$collection$SeqView$Sorted$$ord = $ord; var$3.$evaluated = 0; @@ -61229,48 +62162,26 @@ sc_IndexedSeqView_map$ = ($$this, $f) => { var$3 = new sc_IndexedSeqView$Map; sc_SeqView$Map__init_(var$3, $$this, $f); return var$3; -}, -otr_EventQueue$Event = $rt_classWithoutFields(0), +}; +let otr_EventQueue$Event = $rt_classWithoutFields(0), jl_ThreadInterruptHandler = $rt_classWithoutFields(0), jlr_ReferenceQueue$RemoveCallback = $rt_classWithoutFields(); -let oncifh_package$$closing$default$3$lambda$_2_0 = $rt_classWithoutFields(), -oncifh_package$$closing$default$3$lambda$_2_0_apply = (var$0, var$1) => { - return sr_BoxedUnit_UNIT; -}, -oncifh_package$$closing$default$4$lambda$_3_0 = $rt_classWithoutFields(), -oncifh_package$$closing$default$4$lambda$_3_0_apply = (var$0, var$1, var$2) => { - return sr_BoxedUnit_UNIT; -}; -function oncifh_package$$closing$lambda$_1_0() { - jl_Object.call(this); - this.$_01128 = null; -} -let oncifh_package$$closing$lambda$_1_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$0.$_01128; - var$2 = var$1.$_0961; - var$1 = var$2.$process0(var$1.$_1336, var$1.$_2115); - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !var$2.$checkConditions(var$1, var$2.$postConditions(), onciu_CancellationChecker$NeverCancelled$_MODULE$)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - return var$1; -}; function onciu_StepSequencer$$anonfun$orderSteps$19$lambda$_39_0() { let a = this; jl_Object.call(a); - a.$_0217 = null; - a.$_183 = null; - a.$_234 = null; + a.$_0211 = null; + a.$_179 = null; + a.$_229 = null; } let onciu_StepSequencer$$anonfun$orderSteps$19$lambda$_39_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0217; - var$3 = var$0.$_183; - var$4 = var$0.$_234; + var$2 = var$0.$_0211; + var$3 = var$0.$_179; + var$4 = var$0.$_229; var$1 = var$2.$get2(var$1); var$2 = new onciu_StepSequencer$$anonfun$orderSteps$20$lambda$_38_0; - var$2.$_01117 = var$3; - var$2.$_1374 = var$4; + var$2.$_01092 = var$3; + var$2.$_1371 = var$4; s_Option_foreach(var$1, var$2); return sr_BoxedUnit_UNIT; }, @@ -61281,43 +62192,43 @@ onciu_StepSequencer$RepeatedSteps$Forbidden$__clinit_ = () => { }; function onciu_StepSequencer$$anonfun$orderSteps$25$lambda$_48_0() { let a = this; jl_Object.call(a); - a.$_063 = null; - a.$_128 = null; - a.$_215 = null; - a.$_38 = null; + a.$_062 = null; + a.$_123 = null; + a.$_211 = null; + a.$_36 = null; } let onciu_StepSequencer$$anonfun$orderSteps$25$lambda$_48_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6; var$1 = var$1; - var$2 = var$0.$_063; - var$3 = var$0.$_128; - var$4 = var$0.$_215; - var$5 = var$0.$_38; + var$2 = var$0.$_062; + var$3 = var$0.$_123; + var$4 = var$0.$_211; + var$5 = var$0.$_36; if (var$1 instanceof onciu_StepSequencer$NegatedCondition) { var$6 = var$1; var$1 = var$6.$inner2; var$2 = var$2.$get2(var$1); var$5 = new onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_0; - var$5.$_0910 = var$3; - var$5.$_1316 = var$6; - var$5.$_2105 = var$1; - var$5.$_327 = var$4; + var$5.$_0894 = var$3; + var$5.$_1305 = var$6; + var$5.$_299 = var$1; + var$5.$_331 = var$4; s_Option_foreach(var$2, var$5); } else a: { var$6 = new onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_1; - var$6.$_0832 = var$1; + var$6.$_0804 = var$1; var$6 = var$2.$getOrElse1(var$1, var$6); if (var$6 instanceof su_Left) { var$2 = var$6.$value6; if (jl_Object_equals(onciu_StepSequencer$ByInitialCondition$_MODULE$, var$2)) { var$2 = sc_AbstractMap_apply(var$5, var$1); var$1 = new onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_2; - var$1.$_0176 = var$3; + var$1.$_0174 = var$3; var$2 = var$2.$filterNot0(var$1); var$1 = new onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_3; - var$1.$_0813 = var$4; - var$1.$_1278 = var$3; + var$1.$_0787 = var$4; + var$1.$_1263 = var$3; var$2.$foreach(var$1); break a; } @@ -61348,15 +62259,15 @@ otcit_DoubleAnalyzer$Result__init_0 = () => { }; function onn_NotificationWrapping$ConvertibleCompilerInputPosition() { jl_Object.call(this); - this.$pos7 = null; + this.$pos5 = null; } let onn_NotificationWrapping$ConvertibleCompilerInputPosition_asInputPosition = $this => { - return ong_InputPosition__init_($this.$pos7.$offset(), $this.$pos7.$line(), $this.$pos7.$column()); + return ong_InputPosition__init_($this.$pos5.$offset(), $this.$pos5.$line(), $this.$pos5.$column()); }; function scc_AsJavaExtensions$SetHasAsJava() { let a = this; jl_Object.call(a); a.$s2 = null; - a.$$outer84 = null; + a.$$outer75 = null; } let scc_AsJavaExtensions$SetHasAsJava_asJava = $this => { let var$1, var$2; @@ -61386,44 +62297,95 @@ ong_ErrorGqlStatusObject_cause = $this => { return $innerGqlStatusObject.$cause0(); }, ong_ErrorGqlStatusObject__clinit_ = () => { - let var$1, var$2, var$3, var$4; - ong_GqlStatusInfoCodes_$callClinit(); - ong_ErrorGqlStatusObject_DEFAULT_STATUS_CODE = ong_GqlStatusInfoCodes_getStatusString(ong_GqlStatusInfoCodes_STATUS_50N42); - var$1 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_50N42)); - var$2 = var$1.$gqlStatusInfo; - var$3 = var$2.$condition; - var$4 = var$2.$subCondition; - if (jl_String_isEmpty(var$1.$messageWithParameters)) - var$1 = ong_Condition_createStandardDescription(var$3, var$4); - else { - var$2 = ong_Condition_createStandardDescription(var$3, var$4); - var$1 = var$1.$messageWithParameters; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), $rt_s(1094)), var$1); - var$1 = jl_AbstractStringBuilder_toString(var$4); + let var$1, var$2, var$3, var$4, var$5; + a: { + ong_GqlStatusInfoCodes_$callClinit(); + ong_ErrorGqlStatusObject_DEFAULT_STATUS_CODE = ong_GqlStatusInfoCodes_getStatusString(ong_GqlStatusInfoCodes_STATUS_50N42); + var$1 = $rt_createArray(jl_Object, 2); + var$2 = ong_GqlStatusInfoCodes_STATUS_50N42; + var$3 = var$2.$condition; + var$4 = var$2.$subCondition; + switch (var$3.$ordinal) { + case 0: + var$3 = $rt_s(1127); + if (jl_String_isEmpty(var$4)) + break a; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(1128)), var$4); + var$3 = jl_AbstractStringBuilder_toString(var$2); + break a; + case 1: + break; + case 2: + var$3 = $rt_s(1129); + if (jl_String_isEmpty(var$4)) + break a; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(1128)), var$4); + var$3 = jl_AbstractStringBuilder_toString(var$2); + break a; + case 3: + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(1130)), var$4); + var$3 = jl_AbstractStringBuilder_toString(var$2); + break a; + default: + var$3 = var$3.$name7; + ju_Locale_$callClinit(); + var$2 = jl_String_replace0(jl_String_toLowerCase(var$3, ju_Locale_ROOT), 95, 32); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(1131)), var$2); + var$3 = jl_AbstractStringBuilder_toString(var$3); + if (jl_String_isEmpty(var$4)) + break a; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(1128)), var$4); + var$3 = jl_AbstractStringBuilder_toString(var$2); + break a; + } + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(1132)), var$4); + var$3 = jl_AbstractStringBuilder_toString(var$2); } - ong_ErrorGqlStatusObject_DEFAULT_STATUS_DESCRIPTION = var$1; + var$5 = var$1.data; + var$5[0] = var$3; + var$5[1] = ong_GqlStatusInfoCodes_getMessage(ong_GqlStatusInfoCodes_STATUS_50N42, ju_Collections_EMPTY_MAP); + ong_ErrorGqlStatusObject_DEFAULT_STATUS_DESCRIPTION = jl_String_format($rt_s(1133), var$1); }; function ong_GqlRuntimeException() { let a = this; jl_RuntimeException.call(a); a.$innerGqlStatusObject = null; a.$oldMessage = null; } -let ong_GqlRuntimeException_gqlStatusObject = $this => { +let ong_GqlRuntimeException__init_ = ($this, $gqlStatusObject, $message, $cause) => { + let var$4; + if (!($gqlStatusObject instanceof ong_ErrorGqlStatusObjectImplementation && $gqlStatusObject.$isCause) && !ong_ErrorMessageHolder_USE_NEW_ERROR_MESSAGES) + var$4 = $message; + else { + var$4 = ong_GqlStatusInfoCodes_getMessage($gqlStatusObject.$gqlStatusInfoCode, $gqlStatusObject.$paramMap0); + var$4 = jl_String_isEmpty(var$4) ? ong_CommonGqlStatusObjectImplementation_gqlStatus($gqlStatusObject) : jl_String_format($rt_s(1134), $rt_wrapArray(jl_Object, [ong_CommonGqlStatusObjectImplementation_gqlStatus($gqlStatusObject), var$4])); + } + jl_Throwable__init_1($this, var$4, $cause); + if ($rt_isInstance($cause, ong_ErrorGqlStatusObject) && $gqlStatusObject !== $cause) + $gqlStatusObject = ong_GqlHelper_getErrorObjectWithRewrittenCause($gqlStatusObject, $cause); + $this.$innerGqlStatusObject = $gqlStatusObject; + $this.$oldMessage = $message; +}, +ong_GqlRuntimeException_gqlStatusObject = $this => { return $this.$innerGqlStatusObject; }, onkae_Status$HasStatus = $rt_classWithoutFields(0), one_Neo4jException = $rt_classWithoutFields(ong_GqlRuntimeException), -one_Neo4jException__init_ = ($this, $message, $cause) => { - jl_Throwable__init_1($this, $message, $cause); - $this.$innerGqlStatusObject = null; - $this.$oldMessage = $message; -}, one_IndexHintException = $rt_classWithoutFields(one_Neo4jException), one_IndexHintException_escape = $str => { let var$2; - $str = jl_String_replace($str, $rt_s(412), $rt_s(413)); + $str = jl_String_replace($str, $rt_s(1135), $rt_s(1136)); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_AbstractStringBuilder_append0(var$2, 96); @@ -61433,7 +62395,7 @@ one_IndexHintException_escape = $str => { function scc_AsJavaExtensions$SeqHasAsJava() { let a = this; jl_Object.call(a); a.$s3 = null; - a.$$outer71 = null; + a.$$outer63 = null; } let scc_AsJavaExtensions$SeqHasAsJava_asJava = $this => { let var$1, var$2; @@ -61444,7 +62406,7 @@ let scc_AsJavaExtensions$SeqHasAsJava_asJava = $this => { var$2 = var$1.$underlying0(); else { var$2 = new scc_JavaCollectionWrappers$SeqWrapper; - var$2.$underlying12 = var$1; + var$2.$underlying11 = var$1; } return var$2; }, @@ -61467,8 +62429,8 @@ juf_Function = $rt_classWithoutFields(0), juf_Function_andThen = ($this, $after) => { let var$2; var$2 = new juf_Function$andThen$lambda$_2_0; - var$2.$_0656 = $this; - var$2.$_1226 = $after; + var$2.$_0648 = $this; + var$2.$_1220 = $after; return var$2; }, onn_NotificationDetail$nodeIndexSeekOrScan$lambda$_15_0 = $rt_classWithoutFields(), @@ -61485,18 +62447,6 @@ jus_Collectors_toList = () => { jus_Collectors_toSet = () => { return jus_Collectors_toCollection(new jus_Collectors$toSet$lambda$_4_0); }, -jus_Collectors_joining = $delimiter => { - let var$2, var$3, var$4; - var$2 = new jus_Collectors$joining$lambda$_8_0; - var$2.$_0556 = $delimiter; - var$3 = new jus_Collectors$joining$lambda$_8_1; - var$3.$_01206 = $delimiter; - $delimiter = new jus_Collectors$joining$lambda$_8_2; - var$4 = new jus_Collectors$joining$lambda$_8_3; - var$4.$_0616 = $rt_s(4); - var$4.$_1210 = $rt_s(4); - return jus_Collector_of($delimiter, var$2, var$3, var$4, $rt_createArray(jus_Collector$Characteristics, 0)); -}, ju_Set = $rt_classWithoutFields(0), ju_Set_of = ($e1, $e2) => { let var$3; @@ -61504,12 +62454,12 @@ ju_Set_of = ($e1, $e2) => { ju_Objects_requireNonNull($e2); if (jl_Integer_equals($e1, $e2)) { $e1 = new jl_IllegalArgumentException; - jl_Throwable__init_($e1); + jl_Throwable__init_0($e1); $rt_throw($e1); } var$3 = new ju_TemplateCollections$TwoElementsSet; var$3.$first7 = $e1; - var$3.$second0 = $e2; + var$3.$second1 = $e2; return var$3; }, onn_NotificationDetail$relationshipIndexSeekOrScan$lambda$_16_0 = $rt_classWithoutFields(), @@ -61519,7 +62469,7 @@ onn_NotificationDetail$relationshipIndexSeekOrScan$lambda$_16_0_apply = (var$0, ong_GqlParams$GqlParam = $rt_classWithoutFields(0), ong_GqlParams$GqlParam_toParamFormat = $this => { let var$1, var$2; - var$1 = $this.$name6; + var$1 = $this.$name7; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_AbstractStringBuilder_append0(var$2, 36); @@ -61644,7 +62594,7 @@ ong_GqlParams$StringParam_values = () => { return ong_GqlParams$StringParam_$VALUES.$clone0(); }, ong_GqlParams$StringParam_process = ($this, $s) => { - return $this.$processor.$process($s); + return $this.$processor.$process0($s); }, ong_GqlParams$StringParam__init_0 = ($this, var$1, var$2, $proc) => { jl_Enum__init_($this, var$1, var$2); @@ -61771,115 +62721,115 @@ ong_GqlParams$StringParam_$values = () => { return var$1; }, ong_GqlParams$StringParam__clinit_ = () => { - ong_GqlParams$StringParam_action = ong_GqlParams$StringParam__init_($rt_s(1095), 0, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_alias = ong_GqlParams$StringParam__init_($rt_s(1096), 1, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_alias1 = ong_GqlParams$StringParam__init_($rt_s(1097), 2, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_alias2 = ong_GqlParams$StringParam__init_($rt_s(1098), 3, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_alloc = ong_GqlParams$StringParam__init_($rt_s(1099), 4, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_allocType = ong_GqlParams$StringParam__init_($rt_s(1100), 5, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_auth = ong_GqlParams$StringParam__init_($rt_s(1101), 6, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_boltMsgType = ong_GqlParams$StringParam__init_($rt_s(1102), 7, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_boltServerState = ong_GqlParams$StringParam__init_($rt_s(1103), 8, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_cause = ong_GqlParams$StringParam__init_($rt_s(1104), 9, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_cfgSetting = ong_GqlParams$StringParam__init_($rt_s(1105), 10, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_changeIdent = ong_GqlParams$StringParam__init_($rt_s(1106), 11, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_characterRange = ong_GqlParams$StringParam__init_($rt_s(1107), 12, ong_GqlParams$CHAR_RANGE__init_0()); - ong_GqlParams$StringParam_clause = ong_GqlParams$StringParam__init_($rt_s(1108), 13, ong_GqlParams$Processor_withInner(ong_GqlParams$UPPER__init_(), ong_GqlParams$VERBATIM__init_())); - ong_GqlParams$StringParam_cmd = ong_GqlParams$StringParam__init_($rt_s(1109), 14, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_component = ong_GqlParams$StringParam__init_($rt_s(1110), 15, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_constr = ong_GqlParams$StringParam__init_($rt_s(1111), 16, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_constrDescrOrName = ong_GqlParams$StringParam__init_($rt_s(1112), 17, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_context = ong_GqlParams$StringParam__init_($rt_s(1113), 18, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_coordinates = ong_GqlParams$StringParam__init_($rt_s(1114), 19, ong_GqlParams$COORDINATES__init_()); - ong_GqlParams$StringParam_crs = ong_GqlParams$StringParam__init_($rt_s(1115), 20, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_db = ong_GqlParams$StringParam__init_($rt_s(1116), 21, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_db1 = ong_GqlParams$StringParam__init_($rt_s(1117), 22, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_db2 = ong_GqlParams$StringParam__init_($rt_s(1118), 23, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_db3 = ong_GqlParams$StringParam__init_($rt_s(1119), 24, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_edition = ong_GqlParams$StringParam__init_($rt_s(1120), 25, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_entityId1 = ong_GqlParams$StringParam__init_($rt_s(1121), 26, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_entityId2 = ong_GqlParams$StringParam__init_($rt_s(1122), 27, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_entityType = ong_GqlParams$StringParam__init_($rt_s(1123), 28, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_expr = ong_GqlParams$StringParam__init_($rt_s(1124), 29, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_exprType = ong_GqlParams$StringParam__init_($rt_s(1125), 30, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_feat = ong_GqlParams$StringParam__init_($rt_s(1126), 31, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_feat1 = ong_GqlParams$StringParam__init_($rt_s(1127), 32, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_feat2 = ong_GqlParams$StringParam__init_($rt_s(1128), 33, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_field = ong_GqlParams$StringParam__init_($rt_s(1129), 34, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_format = ong_GqlParams$StringParam__init_($rt_s(1130), 35, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_fun = ong_GqlParams$StringParam__init_($rt_s(1131), 36, ong_GqlParams$CALLABLE_IDENT__init_()); - ong_GqlParams$StringParam_graph = ong_GqlParams$StringParam__init_($rt_s(1132), 37, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_hint = ong_GqlParams$StringParam__init_($rt_s(1133), 38, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_ident = ong_GqlParams$StringParam__init_($rt_s(1134), 39, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_idx = ong_GqlParams$StringParam__init_($rt_s(1135), 40, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_idxDescr = ong_GqlParams$StringParam__init_($rt_s(1136), 41, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_idxDescrOrName = ong_GqlParams$StringParam__init_($rt_s(1137), 42, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_idxOrConstr = ong_GqlParams$StringParam__init_($rt_s(1138), 43, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_idxOrConstrPat = ong_GqlParams$StringParam__init_($rt_s(1139), 44, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_idxType = ong_GqlParams$StringParam__init_($rt_s(1140), 45, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_input = ong_GqlParams$StringParam__init_($rt_s(1141), 46, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_input1 = ong_GqlParams$StringParam__init_($rt_s(1142), 47, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_input2 = ong_GqlParams$StringParam__init_($rt_s(1143), 48, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_item = ong_GqlParams$StringParam__init_($rt_s(1144), 49, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_keyword = ong_GqlParams$StringParam__init_($rt_s(1145), 50, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_label = ong_GqlParams$StringParam__init_($rt_s(1146), 51, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_labelExpr = ong_GqlParams$StringParam__init_($rt_s(1147), 52, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_mapKey = ong_GqlParams$StringParam__init_($rt_s(1148), 53, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_matchMode = ong_GqlParams$StringParam__init_($rt_s(1149), 54, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_msg = ong_GqlParams$StringParam__init_($rt_s(1150), 55, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_msgTitle = ong_GqlParams$StringParam__init_($rt_s(1151), 56, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_namespace = ong_GqlParams$StringParam__init_($rt_s(1152), 57, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_operation = ong_GqlParams$StringParam__init_($rt_s(1153), 58, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_option = ong_GqlParams$StringParam__init_($rt_s(1154), 59, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_option1 = ong_GqlParams$StringParam__init_($rt_s(1155), 60, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_option2 = ong_GqlParams$StringParam__init_($rt_s(1156), 61, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_param = ong_GqlParams$StringParam__init_($rt_s(1157), 62, ong_GqlParams$PARAM__init_()); - ong_GqlParams$StringParam_param1 = ong_GqlParams$StringParam__init_($rt_s(1158), 63, ong_GqlParams$PARAM__init_()); - ong_GqlParams$StringParam_param2 = ong_GqlParams$StringParam__init_($rt_s(1159), 64, ong_GqlParams$PARAM__init_()); - ong_GqlParams$StringParam_pat = ong_GqlParams$StringParam__init_($rt_s(1160), 65, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_port = ong_GqlParams$StringParam__init_($rt_s(1161), 66, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_pred = ong_GqlParams$StringParam__init_($rt_s(1162), 67, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_preparserInput = ong_GqlParams$StringParam__init_($rt_s(1163), 68, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_preparserInput1 = ong_GqlParams$StringParam__init_($rt_s(1164), 69, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_preparserInput2 = ong_GqlParams$StringParam__init_($rt_s(1165), 70, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_proc = ong_GqlParams$StringParam__init_($rt_s(1166), 71, ong_GqlParams$CALLABLE_IDENT__init_()); - ong_GqlParams$StringParam_procClass = ong_GqlParams$StringParam__init_($rt_s(1167), 72, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_procExeMode = ong_GqlParams$StringParam__init_($rt_s(1168), 73, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_procField = ong_GqlParams$StringParam__init_($rt_s(1169), 74, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_procFieldType = ong_GqlParams$StringParam__init_($rt_s(1170), 75, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_procFun = ong_GqlParams$StringParam__init_($rt_s(1171), 76, ong_GqlParams$CALLABLE_IDENT__init_()); - ong_GqlParams$StringParam_procMethod = ong_GqlParams$StringParam__init_($rt_s(1172), 77, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_procParam = ong_GqlParams$StringParam__init_($rt_s(1173), 78, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_procParamFmt = ong_GqlParams$StringParam__init_($rt_s(1174), 79, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_propKey = ong_GqlParams$StringParam__init_($rt_s(1175), 80, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_query = ong_GqlParams$StringParam__init_($rt_s(1176), 81, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_relType = ong_GqlParams$StringParam__init_($rt_s(1177), 82, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_replacement = ong_GqlParams$StringParam__init_($rt_s(1178), 83, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_role = ong_GqlParams$StringParam__init_($rt_s(1179), 84, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_routingPolicy = ong_GqlParams$StringParam__init_($rt_s(1180), 85, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_runtime = ong_GqlParams$StringParam__init_($rt_s(1181), 86, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_schemaDescr = ong_GqlParams$StringParam__init_($rt_s(1182), 87, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_selector = ong_GqlParams$StringParam__init_($rt_s(1183), 88, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_selectorType = ong_GqlParams$StringParam__init_($rt_s(1184), 89, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_selectorType1 = ong_GqlParams$StringParam__init_($rt_s(1185), 90, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_selectorType2 = ong_GqlParams$StringParam__init_($rt_s(1186), 91, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_server = ong_GqlParams$StringParam__init_($rt_s(1187), 92, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_serverType = ong_GqlParams$StringParam__init_($rt_s(1188), 93, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_sig = ong_GqlParams$StringParam__init_($rt_s(1189), 94, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_syntax = ong_GqlParams$StringParam__init_($rt_s(1190), 95, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_temporal = ong_GqlParams$StringParam__init_($rt_s(1191), 96, ong_GqlParams$TEMPORAL__init_()); - ong_GqlParams$StringParam_timeUnit = ong_GqlParams$StringParam__init_($rt_s(1192), 97, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_token = ong_GqlParams$StringParam__init_($rt_s(1193), 98, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_tokenId = ong_GqlParams$StringParam__init_($rt_s(1194), 99, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_tokenType = ong_GqlParams$StringParam__init_($rt_s(1195), 100, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_transactionId = ong_GqlParams$StringParam__init_($rt_s(1196), 101, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_transactionId1 = ong_GqlParams$StringParam__init_($rt_s(1197), 102, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_transactionId2 = ong_GqlParams$StringParam__init_($rt_s(1198), 103, ong_GqlParams$STRLIT__init_()); - ong_GqlParams$StringParam_url = ong_GqlParams$StringParam__init_($rt_s(1199), 104, ong_GqlParams$VERBATIM__init_()); - ong_GqlParams$StringParam_user = ong_GqlParams$StringParam__init_($rt_s(1200), 105, ong_GqlParams$IDENT__init_()); - ong_GqlParams$StringParam_value = ong_GqlParams$StringParam__init_($rt_s(1201), 106, ong_GqlParams$VAL__init_0()); - ong_GqlParams$StringParam_valueType = ong_GqlParams$StringParam__init_($rt_s(1202), 107, ong_GqlParams$VALTYPE__init_0()); - ong_GqlParams$StringParam_variable = ong_GqlParams$StringParam__init_($rt_s(1203), 108, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_action = ong_GqlParams$StringParam__init_($rt_s(1137), 0, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_alias = ong_GqlParams$StringParam__init_($rt_s(1138), 1, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_alias1 = ong_GqlParams$StringParam__init_($rt_s(1139), 2, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_alias2 = ong_GqlParams$StringParam__init_($rt_s(1140), 3, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_alloc = ong_GqlParams$StringParam__init_($rt_s(1141), 4, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_allocType = ong_GqlParams$StringParam__init_($rt_s(1142), 5, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_auth = ong_GqlParams$StringParam__init_($rt_s(1143), 6, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_boltMsgType = ong_GqlParams$StringParam__init_($rt_s(1144), 7, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_boltServerState = ong_GqlParams$StringParam__init_($rt_s(1145), 8, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_cause = ong_GqlParams$StringParam__init_($rt_s(1146), 9, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_cfgSetting = ong_GqlParams$StringParam__init_($rt_s(1147), 10, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_changeIdent = ong_GqlParams$StringParam__init_($rt_s(1148), 11, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_characterRange = ong_GqlParams$StringParam__init_($rt_s(1149), 12, ong_GqlParams$CHAR_RANGE__init_0()); + ong_GqlParams$StringParam_clause = ong_GqlParams$StringParam__init_($rt_s(1150), 13, ong_GqlParams$Processor_withInner(ong_GqlParams$UPPER__init_(), ong_GqlParams$VERBATIM__init_())); + ong_GqlParams$StringParam_cmd = ong_GqlParams$StringParam__init_($rt_s(1151), 14, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_component = ong_GqlParams$StringParam__init_($rt_s(1152), 15, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_constr = ong_GqlParams$StringParam__init_($rt_s(1153), 16, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_constrDescrOrName = ong_GqlParams$StringParam__init_($rt_s(1154), 17, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_context = ong_GqlParams$StringParam__init_($rt_s(1155), 18, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_coordinates = ong_GqlParams$StringParam__init_($rt_s(1156), 19, ong_GqlParams$COORDINATES__init_()); + ong_GqlParams$StringParam_crs = ong_GqlParams$StringParam__init_($rt_s(1157), 20, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_db = ong_GqlParams$StringParam__init_($rt_s(1158), 21, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_db1 = ong_GqlParams$StringParam__init_($rt_s(1159), 22, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_db2 = ong_GqlParams$StringParam__init_($rt_s(1160), 23, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_db3 = ong_GqlParams$StringParam__init_($rt_s(1161), 24, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_edition = ong_GqlParams$StringParam__init_($rt_s(1162), 25, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_entityId1 = ong_GqlParams$StringParam__init_($rt_s(1163), 26, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_entityId2 = ong_GqlParams$StringParam__init_($rt_s(1164), 27, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_entityType = ong_GqlParams$StringParam__init_($rt_s(1165), 28, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_expr = ong_GqlParams$StringParam__init_($rt_s(1166), 29, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_exprType = ong_GqlParams$StringParam__init_($rt_s(1167), 30, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_feat = ong_GqlParams$StringParam__init_($rt_s(1168), 31, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_feat1 = ong_GqlParams$StringParam__init_($rt_s(1169), 32, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_feat2 = ong_GqlParams$StringParam__init_($rt_s(1170), 33, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_field = ong_GqlParams$StringParam__init_($rt_s(1171), 34, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_format = ong_GqlParams$StringParam__init_($rt_s(1172), 35, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_fun = ong_GqlParams$StringParam__init_($rt_s(1173), 36, ong_GqlParams$CALLABLE_IDENT__init_()); + ong_GqlParams$StringParam_graph = ong_GqlParams$StringParam__init_($rt_s(1174), 37, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_hint = ong_GqlParams$StringParam__init_($rt_s(1175), 38, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_ident = ong_GqlParams$StringParam__init_($rt_s(1176), 39, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_idx = ong_GqlParams$StringParam__init_($rt_s(1177), 40, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_idxDescr = ong_GqlParams$StringParam__init_($rt_s(1178), 41, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_idxDescrOrName = ong_GqlParams$StringParam__init_($rt_s(1179), 42, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_idxOrConstr = ong_GqlParams$StringParam__init_($rt_s(1180), 43, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_idxOrConstrPat = ong_GqlParams$StringParam__init_($rt_s(1181), 44, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_idxType = ong_GqlParams$StringParam__init_($rt_s(1182), 45, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_input = ong_GqlParams$StringParam__init_($rt_s(1183), 46, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_input1 = ong_GqlParams$StringParam__init_($rt_s(1184), 47, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_input2 = ong_GqlParams$StringParam__init_($rt_s(1185), 48, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_item = ong_GqlParams$StringParam__init_($rt_s(1186), 49, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_keyword = ong_GqlParams$StringParam__init_($rt_s(1187), 50, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_label = ong_GqlParams$StringParam__init_($rt_s(1188), 51, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_labelExpr = ong_GqlParams$StringParam__init_($rt_s(1189), 52, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_mapKey = ong_GqlParams$StringParam__init_($rt_s(1190), 53, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_matchMode = ong_GqlParams$StringParam__init_($rt_s(1191), 54, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_msg = ong_GqlParams$StringParam__init_($rt_s(1192), 55, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_msgTitle = ong_GqlParams$StringParam__init_($rt_s(1193), 56, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_namespace = ong_GqlParams$StringParam__init_($rt_s(1194), 57, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_operation = ong_GqlParams$StringParam__init_($rt_s(1195), 58, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_option = ong_GqlParams$StringParam__init_($rt_s(1196), 59, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_option1 = ong_GqlParams$StringParam__init_($rt_s(1197), 60, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_option2 = ong_GqlParams$StringParam__init_($rt_s(1198), 61, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_param = ong_GqlParams$StringParam__init_($rt_s(1199), 62, ong_GqlParams$PARAM__init_()); + ong_GqlParams$StringParam_param1 = ong_GqlParams$StringParam__init_($rt_s(1200), 63, ong_GqlParams$PARAM__init_()); + ong_GqlParams$StringParam_param2 = ong_GqlParams$StringParam__init_($rt_s(1201), 64, ong_GqlParams$PARAM__init_()); + ong_GqlParams$StringParam_pat = ong_GqlParams$StringParam__init_($rt_s(1202), 65, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_port = ong_GqlParams$StringParam__init_($rt_s(1203), 66, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_pred = ong_GqlParams$StringParam__init_($rt_s(1204), 67, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_preparserInput = ong_GqlParams$StringParam__init_($rt_s(1205), 68, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_preparserInput1 = ong_GqlParams$StringParam__init_($rt_s(1206), 69, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_preparserInput2 = ong_GqlParams$StringParam__init_($rt_s(1207), 70, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_proc = ong_GqlParams$StringParam__init_($rt_s(1208), 71, ong_GqlParams$CALLABLE_IDENT__init_()); + ong_GqlParams$StringParam_procClass = ong_GqlParams$StringParam__init_($rt_s(1209), 72, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_procExeMode = ong_GqlParams$StringParam__init_($rt_s(1210), 73, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_procField = ong_GqlParams$StringParam__init_($rt_s(1211), 74, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_procFieldType = ong_GqlParams$StringParam__init_($rt_s(1212), 75, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_procFun = ong_GqlParams$StringParam__init_($rt_s(1213), 76, ong_GqlParams$CALLABLE_IDENT__init_()); + ong_GqlParams$StringParam_procMethod = ong_GqlParams$StringParam__init_($rt_s(1214), 77, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_procParam = ong_GqlParams$StringParam__init_($rt_s(1215), 78, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_procParamFmt = ong_GqlParams$StringParam__init_($rt_s(1216), 79, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_propKey = ong_GqlParams$StringParam__init_($rt_s(1217), 80, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_query = ong_GqlParams$StringParam__init_($rt_s(1218), 81, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_relType = ong_GqlParams$StringParam__init_($rt_s(1219), 82, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_replacement = ong_GqlParams$StringParam__init_($rt_s(1220), 83, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_role = ong_GqlParams$StringParam__init_($rt_s(1221), 84, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_routingPolicy = ong_GqlParams$StringParam__init_($rt_s(1222), 85, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_runtime = ong_GqlParams$StringParam__init_($rt_s(1223), 86, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_schemaDescr = ong_GqlParams$StringParam__init_($rt_s(1224), 87, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_selector = ong_GqlParams$StringParam__init_($rt_s(1225), 88, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_selectorType = ong_GqlParams$StringParam__init_($rt_s(1226), 89, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_selectorType1 = ong_GqlParams$StringParam__init_($rt_s(1227), 90, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_selectorType2 = ong_GqlParams$StringParam__init_($rt_s(1228), 91, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_server = ong_GqlParams$StringParam__init_($rt_s(1229), 92, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_serverType = ong_GqlParams$StringParam__init_($rt_s(1230), 93, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_sig = ong_GqlParams$StringParam__init_($rt_s(1231), 94, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_syntax = ong_GqlParams$StringParam__init_($rt_s(1232), 95, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_temporal = ong_GqlParams$StringParam__init_($rt_s(1233), 96, ong_GqlParams$TEMPORAL__init_()); + ong_GqlParams$StringParam_timeUnit = ong_GqlParams$StringParam__init_($rt_s(1234), 97, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_token = ong_GqlParams$StringParam__init_($rt_s(1235), 98, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_tokenId = ong_GqlParams$StringParam__init_($rt_s(1236), 99, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_tokenType = ong_GqlParams$StringParam__init_($rt_s(1237), 100, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_transactionId = ong_GqlParams$StringParam__init_($rt_s(1238), 101, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_transactionId1 = ong_GqlParams$StringParam__init_($rt_s(1239), 102, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_transactionId2 = ong_GqlParams$StringParam__init_($rt_s(1240), 103, ong_GqlParams$STRLIT__init_()); + ong_GqlParams$StringParam_url = ong_GqlParams$StringParam__init_($rt_s(1241), 104, ong_GqlParams$VERBATIM__init_()); + ong_GqlParams$StringParam_user = ong_GqlParams$StringParam__init_($rt_s(1242), 105, ong_GqlParams$IDENT__init_()); + ong_GqlParams$StringParam_value = ong_GqlParams$StringParam__init_($rt_s(1243), 106, ong_GqlParams$VAL__init_0()); + ong_GqlParams$StringParam_valueType = ong_GqlParams$StringParam__init_($rt_s(1244), 107, ong_GqlParams$VALTYPE__init_0()); + ong_GqlParams$StringParam_variable = ong_GqlParams$StringParam__init_($rt_s(1245), 108, ong_GqlParams$IDENT__init_()); ong_GqlParams$StringParam_$VALUES = ong_GqlParams$StringParam_$values(); }, onis_AllIndexProviderDescriptors = $rt_classWithoutFields(0), @@ -61895,23 +62845,24 @@ onis_AllIndexProviderDescriptors_VECTOR_V1_DESCRIPTOR = null, onis_AllIndexProviderDescriptors_VECTOR_V2_DESCRIPTOR = null, onis_AllIndexProviderDescriptors_DEFAULT_VECTOR_DESCRIPTOR = null, onis_AllIndexProviderDescriptors_INDEX_TYPES = null, +onis_AllIndexProviderDescriptors_LATEST_INDEX_PROVIDERS = null, onis_AllIndexProviderDescriptors_$callClinit = () => { onis_AllIndexProviderDescriptors_$callClinit = $rt_eraseClinit(onis_AllIndexProviderDescriptors); onis_AllIndexProviderDescriptors__clinit_(); }, onis_AllIndexProviderDescriptors__clinit_ = () => { let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17; - onis_AllIndexProviderDescriptors_UNDECIDED = onis_IndexProviderDescriptor__init_($rt_s(1204), $rt_s(21)); - onis_AllIndexProviderDescriptors_TOKEN_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1205), $rt_s(1206)); - onis_AllIndexProviderDescriptors_POINT_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1207), $rt_s(1206)); - onis_AllIndexProviderDescriptors_RANGE_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1208), $rt_s(1206)); - onis_AllIndexProviderDescriptors_FULLTEXT_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1209), $rt_s(1206)); - onis_AllIndexProviderDescriptors_TEXT_V1_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1210), $rt_s(1206)); - var$1 = onis_IndexProviderDescriptor__init_($rt_s(1210), $rt_s(1211)); + onis_AllIndexProviderDescriptors_UNDECIDED = onis_IndexProviderDescriptor__init_($rt_s(1246), $rt_s(21)); + onis_AllIndexProviderDescriptors_TOKEN_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1247), $rt_s(1248)); + onis_AllIndexProviderDescriptors_POINT_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1249), $rt_s(1248)); + onis_AllIndexProviderDescriptors_RANGE_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1250), $rt_s(1248)); + onis_AllIndexProviderDescriptors_FULLTEXT_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1251), $rt_s(1248)); + onis_AllIndexProviderDescriptors_TEXT_V1_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1252), $rt_s(1248)); + var$1 = onis_IndexProviderDescriptor__init_($rt_s(1252), $rt_s(1253)); onis_AllIndexProviderDescriptors_TEXT_V2_DESCRIPTOR = var$1; onis_AllIndexProviderDescriptors_DEFAULT_TEXT_DESCRIPTOR = var$1; - onis_AllIndexProviderDescriptors_VECTOR_V1_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1212), $rt_s(1206)); - var$2 = onis_IndexProviderDescriptor__init_($rt_s(1212), $rt_s(1211)); + onis_AllIndexProviderDescriptors_VECTOR_V1_DESCRIPTOR = onis_IndexProviderDescriptor__init_($rt_s(1254), $rt_s(1248)); + var$2 = onis_IndexProviderDescriptor__init_($rt_s(1254), $rt_s(1253)); onis_AllIndexProviderDescriptors_VECTOR_V2_DESCRIPTOR = var$2; onis_AllIndexProviderDescriptors_DEFAULT_VECTOR_DESCRIPTOR = var$2; var$3 = onis_AllIndexProviderDescriptors_FULLTEXT_DESCRIPTOR; @@ -61940,6 +62891,96 @@ onis_AllIndexProviderDescriptors__clinit_ = () => { var$17[7] = ju_Map_entry(var$2, var$14); ju_TemplateCollections$NEtriesMap__init_(var$15, var$16); onis_AllIndexProviderDescriptors_INDEX_TYPES = var$15; + var$1 = onis_IndexType_FULLTEXT; + var$7 = onis_AllIndexProviderDescriptors_FULLTEXT_DESCRIPTOR; + var$8 = onis_IndexType_LOOKUP; + var$9 = onis_AllIndexProviderDescriptors_TOKEN_DESCRIPTOR; + var$10 = onis_IndexType_TEXT; + var$11 = onis_AllIndexProviderDescriptors_TEXT_V2_DESCRIPTOR; + var$12 = onis_IndexType_RANGE; + var$13 = onis_AllIndexProviderDescriptors_RANGE_DESCRIPTOR; + var$14 = onis_IndexType_POINT; + var$3 = onis_AllIndexProviderDescriptors_POINT_DESCRIPTOR; + var$2 = onis_IndexType_VECTOR; + var$4 = onis_AllIndexProviderDescriptors_VECTOR_V2_DESCRIPTOR; + var$5 = new ju_TemplateCollections$NEtriesMap; + var$17 = $rt_createArray(ju_Map$Entry, 6); + var$16 = var$17.data; + var$16[0] = ju_Map_entry(var$1, var$7); + var$16[1] = ju_Map_entry(var$8, var$9); + var$16[2] = ju_Map_entry(var$10, var$11); + var$16[3] = ju_Map_entry(var$12, var$13); + var$16[4] = ju_Map_entry(var$14, var$3); + var$16[5] = ju_Map_entry(var$2, var$4); + ju_TemplateCollections$NEtriesMap__init_(var$5, var$17); + onis_AllIndexProviderDescriptors_LATEST_INDEX_PROVIDERS = var$5; +}, +onsa_DeprecatedFormatWarning = $rt_classWithoutFields(), +onsa_DeprecatedFormatWarning_getTargetFormatWarning = $format => { + let var$2; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(1255)), $format), $rt_s(1256)); + return jl_AbstractStringBuilder_toString(var$2); +}; +function oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1() { + sr_AbstractPartialFunction.call(this); + this.$$outer27 = null; +} +let oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4, $newResolved, $resolved, $projection, $newResolved_0, $graph; + var$3 = 0; + var$4 = null; + if ($x1 instanceof oncia_SingleQuery) { + var$3 = 1; + var$4 = $x1; + $newResolved = var$4.$clauses0; + if ($newResolved !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $newResolved); + if (!$newResolved.$lengthCompare(1)) { + $resolved = $newResolved.$apply1(0); + if ($resolved instanceof oncifp_ResolvedCall) { + $x1 = $resolved; + $default = oncifp_RewriteProcedureCalls_org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection($this.$$outer27, $x1); + if ($default === null) + $rt_throw(s_MatchError__init_($default)); + $default = s_Tuple2__init_($default.$_10, $default.$_20); + $newResolved = $default.$_10; + $projection = $default.$_20; + s_Option$_$callClinit(); + return oncia_SingleQuery_copy(var$4, ((s_Option$_option2Iterable(s_Option$_MODULE$, $projection)).$toSeq()).$prepended($newResolved), var$4.$position11); + } + } + } + } + if (var$3) { + $newResolved_0 = var$4.$clauses0; + if ($newResolved_0 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $newResolved_0); + if (!$newResolved_0.$lengthCompare(2)) { + $graph = $newResolved_0.$apply1(0); + $resolved = $newResolved_0.$apply1(1); + if ($rt_isInstance($graph, oncia_GraphSelection)) { + $newResolved = $graph; + if ($resolved instanceof oncifp_ResolvedCall) { + $x1 = $resolved; + $default = oncifp_RewriteProcedureCalls_org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection($this.$$outer27, $x1); + if ($default === null) + $rt_throw(s_MatchError__init_($default)); + $default = s_Tuple2__init_($default.$_10, $default.$_20); + $newResolved_0 = $default.$_10; + $projection = $default.$_20; + return oncia_SingleQuery_copy(var$4, (sci_$colon$colon__init_($newResolved, sci_$colon$colon__init_($newResolved_0, sci_Nil$_MODULE$))).$concat($projection), var$4.$position11); + } + } + } + } + } + return $default.$apply2($x1); }, onkae_Status = $rt_classWithoutFields(0); function onkae_Status$Statement() { @@ -61990,6 +63031,7 @@ onkae_Status$Statement_SubqueryVariableShadowing = null, onkae_Status$Statement_RedundantOptionalProcedure = null, onkae_Status$Statement_RedundantOptionalSubquery = null, onkae_Status$Statement_AggregationSkippedNull = null, +onkae_Status$Statement_InsecureProtocol = null, onkae_Status$Statement_$VALUES = null, onkae_Status$Statement_$callClinit = () => { onkae_Status$Statement_$callClinit = $rt_eraseClinit(onkae_Status$Statement); @@ -62006,13 +63048,13 @@ onkae_Status$Statement__init_1 = ($this, var$1, var$2, $classification, $descrip onkae_Status$Statement_$callClinit(); jl_Enum__init_($this, var$1, var$2); $this.$code0 = onkae_Status$Code__init_($classification, $this, $description); -}, -onkae_Status$Statement__init_0 = (var_0, var_1, var_2, var_3) => { +}; +let onkae_Status$Statement__init_0 = (var_0, var_1, var_2, var_3) => { let var_4 = new onkae_Status$Statement(); onkae_Status$Statement__init_1(var_4, var_0, var_1, var_2, var_3); return var_4; -}; -let onkae_Status$Statement__init_2 = ($this, var$1, var$2, $classification, $description, $severity, $category) => { +}, +onkae_Status$Statement__init_2 = ($this, var$1, var$2, $classification, $description, $severity, $category) => { onkae_Status$Statement_$callClinit(); jl_Enum__init_($this, var$1, var$2); $this.$code0 = onkae_Status$NotificationCode__init_($classification, $this, $description, $severity, $category); @@ -62025,7 +63067,7 @@ onkae_Status$Statement__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { onkae_Status$Statement_$values = () => { let var$1, var$2; onkae_Status$Statement_$callClinit(); - var$1 = $rt_createArray(onkae_Status$Statement, 44); + var$1 = $rt_createArray(onkae_Status$Statement, 45); var$2 = var$1.data; var$2[0] = onkae_Status$Statement_SyntaxError; var$2[1] = onkae_Status$Statement_SemanticError; @@ -62071,68 +63113,71 @@ onkae_Status$Statement_$values = () => { var$2[41] = onkae_Status$Statement_RedundantOptionalProcedure; var$2[42] = onkae_Status$Statement_RedundantOptionalSubquery; var$2[43] = onkae_Status$Statement_AggregationSkippedNull; + var$2[44] = onkae_Status$Statement_InsecureProtocol; return var$1; }, onkae_Status$Statement__clinit_ = () => { let var$1; var$1 = new onkae_Status$Statement; onkae_Status$Classification_$callClinit(); - onkae_Status$Statement__init_1(var$1, $rt_s(1213), 0, onkae_Status$Classification_ClientError, $rt_s(1214)); + onkae_Status$Statement__init_1(var$1, $rt_s(1257), 0, onkae_Status$Classification_ClientError, $rt_s(1258)); onkae_Status$Statement_SyntaxError = var$1; - onkae_Status$Statement_SemanticError = onkae_Status$Statement__init_0($rt_s(851), 1, onkae_Status$Classification_ClientError, $rt_s(1215)); - onkae_Status$Statement_ParameterMissing = onkae_Status$Statement__init_0($rt_s(1216), 2, onkae_Status$Classification_ClientError, $rt_s(1217)); - onkae_Status$Statement_ParameterNotProvided = onkae_Status$Statement__init_($rt_s(1218), 3, onkae_Status$Classification_ClientNotification, $rt_s(1217), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_GENERIC); - onkae_Status$Statement_ConstraintVerificationFailed = onkae_Status$Statement__init_0($rt_s(1219), 4, onkae_Status$Classification_ClientError, $rt_s(1220)); - onkae_Status$Statement_EntityNotFound = onkae_Status$Statement__init_0($rt_s(1221), 5, onkae_Status$Classification_ClientError, $rt_s(1222)); - onkae_Status$Statement_PropertyNotFound = onkae_Status$Statement__init_0($rt_s(1223), 6, onkae_Status$Classification_ClientError, $rt_s(1224)); - onkae_Status$Statement_TypeError = onkae_Status$Statement__init_0($rt_s(1225), 7, onkae_Status$Classification_ClientError, $rt_s(1226)); - onkae_Status$Statement_ArgumentError = onkae_Status$Statement__init_0($rt_s(1227), 8, onkae_Status$Classification_ClientError, $rt_s(1228)); - onkae_Status$Statement_ArithmeticError = onkae_Status$Statement__init_0($rt_s(1229), 9, onkae_Status$Classification_ClientError, $rt_s(1230)); - onkae_Status$Statement_RuntimeUnsupportedError = onkae_Status$Statement__init_0($rt_s(1231), 10, onkae_Status$Classification_ClientError, $rt_s(1232)); - onkae_Status$Statement_NotSystemDatabaseError = onkae_Status$Statement__init_0($rt_s(1233), 11, onkae_Status$Classification_ClientError, $rt_s(1234)); - onkae_Status$Statement_InvalidTargetDatabaseError = onkae_Status$Statement__init_0($rt_s(1235), 12, onkae_Status$Classification_ClientError, $rt_s(1236)); - onkae_Status$Statement_AccessMode = onkae_Status$Statement__init_0($rt_s(1237), 13, onkae_Status$Classification_ClientError, $rt_s(1238)); - onkae_Status$Statement_UnsupportedOperationError = onkae_Status$Statement__init_0($rt_s(1239), 14, onkae_Status$Classification_ClientError, $rt_s(1240)); - onkae_Status$Statement_ExternalResourceFailed = onkae_Status$Statement__init_0($rt_s(1241), 15, onkae_Status$Classification_ClientError, $rt_s(1242)); - onkae_Status$Statement_UnsatisfiableRelationshipTypeExpression = onkae_Status$Statement__init_($rt_s(1089), 16, onkae_Status$Classification_ClientNotification, $rt_s(1243), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_GENERIC); - onkae_Status$Statement_RepeatedRelationshipReference = onkae_Status$Statement__init_($rt_s(1090), 17, onkae_Status$Classification_ClientNotification, $rt_s(1244), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_GENERIC); - onkae_Status$Statement_RemoteExecutionClientError = onkae_Status$Statement__init_0($rt_s(1245), 18, onkae_Status$Classification_ClientError, $rt_s(1246)); - onkae_Status$Statement_ExecutionFailed = onkae_Status$Statement__init_0($rt_s(1247), 19, onkae_Status$Classification_DatabaseError, $rt_s(1248)); - onkae_Status$Statement_CodeGenerationFailed = onkae_Status$Statement__init_($rt_s(1249), 20, onkae_Status$Classification_ClientNotification, $rt_s(1250), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); - onkae_Status$Statement_RemoteExecutionFailed = onkae_Status$Statement__init_0($rt_s(1251), 21, onkae_Status$Classification_DatabaseError, $rt_s(1252)); - onkae_Status$Statement_ExecutionTimeout = onkae_Status$Statement__init_0($rt_s(1253), 22, onkae_Status$Classification_TransientError, $rt_s(1254)); - onkae_Status$Statement_RemoteExecutionTransientError = onkae_Status$Statement__init_0($rt_s(1255), 23, onkae_Status$Classification_TransientError, $rt_s(1256)); - onkae_Status$Statement_CartesianProduct = onkae_Status$Statement__init_($rt_s(1257), 24, onkae_Status$Classification_ClientNotification, $rt_s(1258), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); - onkae_Status$Statement_DynamicProperty = onkae_Status$Statement__init_($rt_s(1259), 25, onkae_Status$Classification_ClientNotification, $rt_s(1260), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); - onkae_Status$Statement_EagerOperator = onkae_Status$Statement__init_($rt_s(1261), 26, onkae_Status$Classification_ClientNotification, $rt_s(1262), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); - onkae_Status$Statement_JoinHintUnfulfillableWarning = onkae_Status$Statement__init_($rt_s(1263), 27, onkae_Status$Classification_ClientNotification, $rt_s(1264), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_HINT); - onkae_Status$Statement_NoApplicableIndex = onkae_Status$Statement__init_($rt_s(1265), 28, onkae_Status$Classification_ClientNotification, $rt_s(1266), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); - onkae_Status$Statement_SuboptimalIndexForWildcardQuery = onkae_Status$Statement__init_($rt_s(1267), 29, onkae_Status$Classification_ClientNotification, $rt_s(1268), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); - onkae_Status$Statement_UnboundedVariableLengthPattern = onkae_Status$Statement__init_($rt_s(1269), 30, onkae_Status$Classification_ClientNotification, $rt_s(1270), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); - onkae_Status$Statement_ExhaustiveShortestPath = onkae_Status$Statement__init_($rt_s(1271), 31, onkae_Status$Classification_ClientNotification, $rt_s(1272), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); - onkae_Status$Statement_SideEffectVisibility = onkae_Status$Statement__init_($rt_s(1273), 32, onkae_Status$Classification_ClientNotification, $rt_s(1274), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_DEPRECATION); - onkae_Status$Statement_RuntimeUnsupportedWarning = onkae_Status$Statement__init_($rt_s(1275), 33, onkae_Status$Classification_ClientNotification, $rt_s(1232), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNSUPPORTED); - onkae_Status$Statement_FeatureDeprecationWarning = onkae_Status$Statement__init_($rt_s(1276), 34, onkae_Status$Classification_ClientNotification, $rt_s(1277), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_DEPRECATION); - onkae_Status$Statement_RuntimeExperimental = onkae_Status$Statement__init_($rt_s(1278), 35, onkae_Status$Classification_ClientNotification, $rt_s(1279), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNSUPPORTED); - onkae_Status$Statement_UnsupportedAdministrationCommand = onkae_Status$Statement__init_0($rt_s(1280), 36, onkae_Status$Classification_ClientError, $rt_s(1281)); - onkae_Status$Statement_UnknownLabelWarning = onkae_Status$Statement__init_($rt_s(1282), 37, onkae_Status$Classification_ClientNotification, $rt_s(1283), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNRECOGNIZED); - onkae_Status$Statement_UnknownRelationshipTypeWarning = onkae_Status$Statement__init_($rt_s(1284), 38, onkae_Status$Classification_ClientNotification, $rt_s(1285), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNRECOGNIZED); - onkae_Status$Statement_UnknownPropertyKeyWarning = onkae_Status$Statement__init_($rt_s(1286), 39, onkae_Status$Classification_ClientNotification, $rt_s(1287), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNRECOGNIZED); - onkae_Status$Statement_SubqueryVariableShadowing = onkae_Status$Statement__init_($rt_s(1081), 40, onkae_Status$Classification_ClientNotification, $rt_s(1288), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_GENERIC); - onkae_Status$Statement_RedundantOptionalProcedure = onkae_Status$Statement__init_($rt_s(1082), 41, onkae_Status$Classification_ClientNotification, $rt_s(1289), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_GENERIC); - onkae_Status$Statement_RedundantOptionalSubquery = onkae_Status$Statement__init_($rt_s(1083), 42, onkae_Status$Classification_ClientNotification, $rt_s(1290), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_GENERIC); - onkae_Status$Statement_AggregationSkippedNull = onkae_Status$Statement__init_($rt_s(1291), 43, onkae_Status$Classification_ClientNotification, $rt_s(1292), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNRECOGNIZED); + onkae_Status$Statement_SemanticError = onkae_Status$Statement__init_0($rt_s(851), 1, onkae_Status$Classification_ClientError, $rt_s(1259)); + onkae_Status$Statement_ParameterMissing = onkae_Status$Statement__init_0($rt_s(1260), 2, onkae_Status$Classification_ClientError, $rt_s(1261)); + onkae_Status$Statement_ParameterNotProvided = onkae_Status$Statement__init_($rt_s(1262), 3, onkae_Status$Classification_ClientNotification, $rt_s(1261), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_GENERIC); + onkae_Status$Statement_ConstraintVerificationFailed = onkae_Status$Statement__init_0($rt_s(1263), 4, onkae_Status$Classification_ClientError, $rt_s(1264)); + onkae_Status$Statement_EntityNotFound = onkae_Status$Statement__init_0($rt_s(1265), 5, onkae_Status$Classification_ClientError, $rt_s(1266)); + onkae_Status$Statement_PropertyNotFound = onkae_Status$Statement__init_0($rt_s(1267), 6, onkae_Status$Classification_ClientError, $rt_s(1268)); + onkae_Status$Statement_TypeError = onkae_Status$Statement__init_0($rt_s(1269), 7, onkae_Status$Classification_ClientError, $rt_s(1270)); + onkae_Status$Statement_ArgumentError = onkae_Status$Statement__init_0($rt_s(1271), 8, onkae_Status$Classification_ClientError, $rt_s(1272)); + onkae_Status$Statement_ArithmeticError = onkae_Status$Statement__init_0($rt_s(1273), 9, onkae_Status$Classification_ClientError, $rt_s(1274)); + onkae_Status$Statement_RuntimeUnsupportedError = onkae_Status$Statement__init_0($rt_s(1275), 10, onkae_Status$Classification_ClientError, $rt_s(1276)); + onkae_Status$Statement_NotSystemDatabaseError = onkae_Status$Statement__init_0($rt_s(1277), 11, onkae_Status$Classification_ClientError, $rt_s(1278)); + onkae_Status$Statement_InvalidTargetDatabaseError = onkae_Status$Statement__init_0($rt_s(1279), 12, onkae_Status$Classification_ClientError, $rt_s(1280)); + onkae_Status$Statement_AccessMode = onkae_Status$Statement__init_0($rt_s(1281), 13, onkae_Status$Classification_ClientError, $rt_s(1282)); + onkae_Status$Statement_UnsupportedOperationError = onkae_Status$Statement__init_0($rt_s(1283), 14, onkae_Status$Classification_ClientError, $rt_s(1284)); + onkae_Status$Statement_ExternalResourceFailed = onkae_Status$Statement__init_0($rt_s(1285), 15, onkae_Status$Classification_ClientError, $rt_s(1286)); + onkae_Status$Statement_UnsatisfiableRelationshipTypeExpression = onkae_Status$Statement__init_($rt_s(1122), 16, onkae_Status$Classification_ClientNotification, $rt_s(1287), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_GENERIC); + onkae_Status$Statement_RepeatedRelationshipReference = onkae_Status$Statement__init_($rt_s(1123), 17, onkae_Status$Classification_ClientNotification, $rt_s(1288), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_GENERIC); + onkae_Status$Statement_RemoteExecutionClientError = onkae_Status$Statement__init_0($rt_s(1289), 18, onkae_Status$Classification_ClientError, $rt_s(1290)); + onkae_Status$Statement_ExecutionFailed = onkae_Status$Statement__init_0($rt_s(1291), 19, onkae_Status$Classification_DatabaseError, $rt_s(1292)); + onkae_Status$Statement_CodeGenerationFailed = onkae_Status$Statement__init_($rt_s(1293), 20, onkae_Status$Classification_ClientNotification, $rt_s(1294), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); + onkae_Status$Statement_RemoteExecutionFailed = onkae_Status$Statement__init_0($rt_s(1295), 21, onkae_Status$Classification_DatabaseError, $rt_s(1296)); + onkae_Status$Statement_ExecutionTimeout = onkae_Status$Statement__init_0($rt_s(1297), 22, onkae_Status$Classification_TransientError, $rt_s(1298)); + onkae_Status$Statement_RemoteExecutionTransientError = onkae_Status$Statement__init_0($rt_s(1299), 23, onkae_Status$Classification_TransientError, $rt_s(1300)); + onkae_Status$Statement_CartesianProduct = onkae_Status$Statement__init_($rt_s(1301), 24, onkae_Status$Classification_ClientNotification, $rt_s(1302), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); + onkae_Status$Statement_DynamicProperty = onkae_Status$Statement__init_($rt_s(1303), 25, onkae_Status$Classification_ClientNotification, $rt_s(1304), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); + onkae_Status$Statement_EagerOperator = onkae_Status$Statement__init_($rt_s(1305), 26, onkae_Status$Classification_ClientNotification, $rt_s(1306), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); + onkae_Status$Statement_JoinHintUnfulfillableWarning = onkae_Status$Statement__init_($rt_s(1307), 27, onkae_Status$Classification_ClientNotification, $rt_s(1308), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_HINT); + onkae_Status$Statement_NoApplicableIndex = onkae_Status$Statement__init_($rt_s(1309), 28, onkae_Status$Classification_ClientNotification, $rt_s(1310), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); + onkae_Status$Statement_SuboptimalIndexForWildcardQuery = onkae_Status$Statement__init_($rt_s(1311), 29, onkae_Status$Classification_ClientNotification, $rt_s(1312), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); + onkae_Status$Statement_UnboundedVariableLengthPattern = onkae_Status$Statement__init_($rt_s(1313), 30, onkae_Status$Classification_ClientNotification, $rt_s(1314), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); + onkae_Status$Statement_ExhaustiveShortestPath = onkae_Status$Statement__init_($rt_s(1315), 31, onkae_Status$Classification_ClientNotification, $rt_s(1316), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_PERFORMANCE); + onkae_Status$Statement_SideEffectVisibility = onkae_Status$Statement__init_($rt_s(1317), 32, onkae_Status$Classification_ClientNotification, $rt_s(1318), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_DEPRECATION); + onkae_Status$Statement_RuntimeUnsupportedWarning = onkae_Status$Statement__init_($rt_s(1319), 33, onkae_Status$Classification_ClientNotification, $rt_s(1276), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNSUPPORTED); + onkae_Status$Statement_FeatureDeprecationWarning = onkae_Status$Statement__init_($rt_s(1320), 34, onkae_Status$Classification_ClientNotification, $rt_s(1321), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_DEPRECATION); + onkae_Status$Statement_RuntimeExperimental = onkae_Status$Statement__init_($rt_s(1322), 35, onkae_Status$Classification_ClientNotification, $rt_s(1323), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNSUPPORTED); + onkae_Status$Statement_UnsupportedAdministrationCommand = onkae_Status$Statement__init_0($rt_s(1324), 36, onkae_Status$Classification_ClientError, $rt_s(1325)); + onkae_Status$Statement_UnknownLabelWarning = onkae_Status$Statement__init_($rt_s(1326), 37, onkae_Status$Classification_ClientNotification, $rt_s(1327), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNRECOGNIZED); + onkae_Status$Statement_UnknownRelationshipTypeWarning = onkae_Status$Statement__init_($rt_s(1328), 38, onkae_Status$Classification_ClientNotification, $rt_s(1329), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNRECOGNIZED); + onkae_Status$Statement_UnknownPropertyKeyWarning = onkae_Status$Statement__init_($rt_s(1330), 39, onkae_Status$Classification_ClientNotification, $rt_s(1331), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNRECOGNIZED); + onkae_Status$Statement_SubqueryVariableShadowing = onkae_Status$Statement__init_($rt_s(1111), 40, onkae_Status$Classification_ClientNotification, $rt_s(1332), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_GENERIC); + onkae_Status$Statement_RedundantOptionalProcedure = onkae_Status$Statement__init_($rt_s(1112), 41, onkae_Status$Classification_ClientNotification, $rt_s(1333), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_GENERIC); + onkae_Status$Statement_RedundantOptionalSubquery = onkae_Status$Statement__init_($rt_s(1113), 42, onkae_Status$Classification_ClientNotification, $rt_s(1334), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_GENERIC); + onkae_Status$Statement_AggregationSkippedNull = onkae_Status$Statement__init_($rt_s(1335), 43, onkae_Status$Classification_ClientNotification, $rt_s(1336), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_UNRECOGNIZED); + onkae_Status$Statement_InsecureProtocol = onkae_Status$Statement__init_($rt_s(1337), 44, onkae_Status$Classification_ClientNotification, $rt_s(1338), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_SECURITY); onkae_Status$Statement_$VALUES = onkae_Status$Statement_$values(); }, ong_GqlStatusInfo = $rt_classWithoutFields(0); function ong_GqlStatusInfoCodes() { let a = this; jl_Enum.call(a); - a.$gqlStatus = null; + a.$gqlStatus0 = null; a.$statusParameterKeys = null; a.$subCondition = null; a.$condition = null; + a.$classification0 = null; a.$template = null; - a.$offsets1 = null; + a.$offsets0 = null; a.$joinStyles = null; } let ong_GqlStatusInfoCodes_STATUS_00000 = null, @@ -62170,7 +63215,7 @@ ong_GqlStatusInfoCodes_STATUS_01N62 = null, ong_GqlStatusInfoCodes_STATUS_01N63 = null, ong_GqlStatusInfoCodes_STATUS_01N70 = null, ong_GqlStatusInfoCodes_STATUS_01N71 = null, -ong_GqlStatusInfoCodes_STATUS_01U00 = null, +ong_GqlStatusInfoCodes_STATUS_01N72 = null, ong_GqlStatusInfoCodes_STATUS_02000 = null, ong_GqlStatusInfoCodes_STATUS_02N42 = null, ong_GqlStatusInfoCodes_STATUS_03000 = null, @@ -62203,6 +63248,9 @@ ong_GqlStatusInfoCodes_STATUS_08N12 = null, ong_GqlStatusInfoCodes_STATUS_08N13 = null, ong_GqlStatusInfoCodes_STATUS_08N14 = null, ong_GqlStatusInfoCodes_STATUS_08N15 = null, +ong_GqlStatusInfoCodes_STATUS_08N16 = null, +ong_GqlStatusInfoCodes_STATUS_08N17 = null, +ong_GqlStatusInfoCodes_STATUS_08N18 = null, ong_GqlStatusInfoCodes_STATUS_22000 = null, ong_GqlStatusInfoCodes_STATUS_22001 = null, ong_GqlStatusInfoCodes_STATUS_22003 = null, @@ -62231,18 +63279,17 @@ ong_GqlStatusInfoCodes_STATUS_22G0M = null, ong_GqlStatusInfoCodes_STATUS_22G0N = null, ong_GqlStatusInfoCodes_STATUS_22G0P = null, ong_GqlStatusInfoCodes_STATUS_22G0Q = null, -ong_GqlStatusInfoCodes_STATUS_22G0R = null, -ong_GqlStatusInfoCodes_STATUS_22G0S = null, +ong_GqlStatusInfoCodes_STATUS_22G0R = null; +let ong_GqlStatusInfoCodes_STATUS_22G0S = null, ong_GqlStatusInfoCodes_STATUS_22G0T = null, -ong_GqlStatusInfoCodes_STATUS_22G0U = null; -let ong_GqlStatusInfoCodes_STATUS_22G0V = null, +ong_GqlStatusInfoCodes_STATUS_22G0U = null, +ong_GqlStatusInfoCodes_STATUS_22G0V = null, ong_GqlStatusInfoCodes_STATUS_22G0W = null, ong_GqlStatusInfoCodes_STATUS_22G0X = null, ong_GqlStatusInfoCodes_STATUS_22G0Y = null, ong_GqlStatusInfoCodes_STATUS_22G0Z = null, ong_GqlStatusInfoCodes_STATUS_22G10 = null, ong_GqlStatusInfoCodes_STATUS_22G11 = null, -ong_GqlStatusInfoCodes_STATUS_22G12 = null, ong_GqlStatusInfoCodes_STATUS_22G13 = null, ong_GqlStatusInfoCodes_STATUS_22G14 = null, ong_GqlStatusInfoCodes_STATUS_22N00 = null, @@ -62262,7 +63309,6 @@ ong_GqlStatusInfoCodes_STATUS_22N13 = null, ong_GqlStatusInfoCodes_STATUS_22N14 = null, ong_GqlStatusInfoCodes_STATUS_22N15 = null, ong_GqlStatusInfoCodes_STATUS_22N16 = null, -ong_GqlStatusInfoCodes_STATUS_22N17 = null, ong_GqlStatusInfoCodes_STATUS_22N18 = null, ong_GqlStatusInfoCodes_STATUS_22N19 = null, ong_GqlStatusInfoCodes_STATUS_22N20 = null, @@ -62283,14 +63329,13 @@ ong_GqlStatusInfoCodes_STATUS_22N34 = null, ong_GqlStatusInfoCodes_STATUS_22N35 = null, ong_GqlStatusInfoCodes_STATUS_22N36 = null, ong_GqlStatusInfoCodes_STATUS_22N37 = null, -ong_GqlStatusInfoCodes_STATUS_22N38 = null, -ong_GqlStatusInfoCodes_STATUS_22N39 = null; -let ong_GqlStatusInfoCodes_STATUS_22N40 = null, +ong_GqlStatusInfoCodes_STATUS_22N38 = null; +let ong_GqlStatusInfoCodes_STATUS_22N39 = null, +ong_GqlStatusInfoCodes_STATUS_22N40 = null, ong_GqlStatusInfoCodes_STATUS_22N41 = null, ong_GqlStatusInfoCodes_STATUS_22N42 = null, ong_GqlStatusInfoCodes_STATUS_22N43 = null, ong_GqlStatusInfoCodes_STATUS_22N44 = null, -ong_GqlStatusInfoCodes_STATUS_22N45 = null, ong_GqlStatusInfoCodes_STATUS_22N46 = null, ong_GqlStatusInfoCodes_STATUS_22N47 = null, ong_GqlStatusInfoCodes_STATUS_22N48 = null, @@ -62314,7 +63359,6 @@ ong_GqlStatusInfoCodes_STATUS_22N68 = null, ong_GqlStatusInfoCodes_STATUS_22N69 = null, ong_GqlStatusInfoCodes_STATUS_22N70 = null, ong_GqlStatusInfoCodes_STATUS_22N71 = null, -ong_GqlStatusInfoCodes_STATUS_22N72 = null, ong_GqlStatusInfoCodes_STATUS_22N73 = null, ong_GqlStatusInfoCodes_STATUS_22N74 = null, ong_GqlStatusInfoCodes_STATUS_22N75 = null, @@ -62334,9 +63378,9 @@ ong_GqlStatusInfoCodes_STATUS_22N89 = null, ong_GqlStatusInfoCodes_STATUS_22N90 = null, ong_GqlStatusInfoCodes_STATUS_22N91 = null, ong_GqlStatusInfoCodes_STATUS_22N92 = null, -ong_GqlStatusInfoCodes_STATUS_22N93 = null; -let ong_GqlStatusInfoCodes_STATUS_22N94 = null, -ong_GqlStatusInfoCodes_STATUS_22N95 = null, +ong_GqlStatusInfoCodes_STATUS_22N93 = null, +ong_GqlStatusInfoCodes_STATUS_22N94 = null; +let ong_GqlStatusInfoCodes_STATUS_22N95 = null, ong_GqlStatusInfoCodes_STATUS_22N96 = null, ong_GqlStatusInfoCodes_STATUS_22N97 = null, ong_GqlStatusInfoCodes_STATUS_22N98 = null, @@ -62350,7 +63394,8 @@ ong_GqlStatusInfoCodes_STATUS_22NA5 = null, ong_GqlStatusInfoCodes_STATUS_22NA6 = null, ong_GqlStatusInfoCodes_STATUS_22NA7 = null, ong_GqlStatusInfoCodes_STATUS_22NA8 = null, -ong_GqlStatusInfoCodes_STATUS_22NFF = null, +ong_GqlStatusInfoCodes_STATUS_22NB0 = null, +ong_GqlStatusInfoCodes_STATUS_22NB1 = null, ong_GqlStatusInfoCodes_STATUS_25000 = null, ong_GqlStatusInfoCodes_STATUS_25G01 = null, ong_GqlStatusInfoCodes_STATUS_25G02 = null, @@ -62444,6 +63489,7 @@ ong_GqlStatusInfoCodes_STATUS_42I47 = null, ong_GqlStatusInfoCodes_STATUS_42I48 = null, ong_GqlStatusInfoCodes_STATUS_42I49 = null, ong_GqlStatusInfoCodes_STATUS_42I50 = null, +ong_GqlStatusInfoCodes_STATUS_42I51 = null, ong_GqlStatusInfoCodes_STATUS_42N00 = null, ong_GqlStatusInfoCodes_STATUS_42N01 = null, ong_GqlStatusInfoCodes_STATUS_42N02 = null, @@ -62483,14 +63529,15 @@ ong_GqlStatusInfoCodes_STATUS_42N38 = null, ong_GqlStatusInfoCodes_STATUS_42N39 = null, ong_GqlStatusInfoCodes_STATUS_42N40 = null, ong_GqlStatusInfoCodes_STATUS_42N41 = null, -ong_GqlStatusInfoCodes_STATUS_42N42 = null, -ong_GqlStatusInfoCodes_STATUS_42N44 = null; -let ong_GqlStatusInfoCodes_STATUS_42N45 = null, +ong_GqlStatusInfoCodes_STATUS_42N42 = null; +let ong_GqlStatusInfoCodes_STATUS_42N44 = null, +ong_GqlStatusInfoCodes_STATUS_42N45 = null, ong_GqlStatusInfoCodes_STATUS_42N46 = null, ong_GqlStatusInfoCodes_STATUS_42N47 = null, ong_GqlStatusInfoCodes_STATUS_42N48 = null, ong_GqlStatusInfoCodes_STATUS_42N49 = null, ong_GqlStatusInfoCodes_STATUS_42N50 = null, +ong_GqlStatusInfoCodes_STATUS_42N51 = null, ong_GqlStatusInfoCodes_STATUS_42N52 = null, ong_GqlStatusInfoCodes_STATUS_42N53 = null, ong_GqlStatusInfoCodes_STATUS_42N54 = null, @@ -62523,7 +63570,6 @@ ong_GqlStatusInfoCodes_STATUS_42N84 = null, ong_GqlStatusInfoCodes_STATUS_42N85 = null, ong_GqlStatusInfoCodes_STATUS_42N86 = null, ong_GqlStatusInfoCodes_STATUS_42N87 = null, -ong_GqlStatusInfoCodes_STATUS_42N88 = null, ong_GqlStatusInfoCodes_STATUS_42N89 = null, ong_GqlStatusInfoCodes_STATUS_42N90 = null, ong_GqlStatusInfoCodes_STATUS_42N91 = null, @@ -62533,15 +63579,17 @@ ong_GqlStatusInfoCodes_STATUS_42N94 = null, ong_GqlStatusInfoCodes_STATUS_42N95 = null, ong_GqlStatusInfoCodes_STATUS_42N96 = null, ong_GqlStatusInfoCodes_STATUS_42N97 = null, -ong_GqlStatusInfoCodes_STATUS_42N98 = null, -ong_GqlStatusInfoCodes_STATUS_42N99 = null; -let ong_GqlStatusInfoCodes_STATUS_42NA0 = null, +ong_GqlStatusInfoCodes_STATUS_42N98 = null; +let ong_GqlStatusInfoCodes_STATUS_42N99 = null, +ong_GqlStatusInfoCodes_STATUS_42NA0 = null, ong_GqlStatusInfoCodes_STATUS_42NA1 = null, ong_GqlStatusInfoCodes_STATUS_42NA2 = null, ong_GqlStatusInfoCodes_STATUS_42NA3 = null, ong_GqlStatusInfoCodes_STATUS_42NA4 = null, ong_GqlStatusInfoCodes_STATUS_42NA5 = null, ong_GqlStatusInfoCodes_STATUS_42NA6 = null, +ong_GqlStatusInfoCodes_STATUS_42NA7 = null, +ong_GqlStatusInfoCodes_STATUS_42NA8 = null, ong_GqlStatusInfoCodes_STATUS_42NFC = null, ong_GqlStatusInfoCodes_STATUS_42NFD = null, ong_GqlStatusInfoCodes_STATUS_42NFE = null, @@ -62549,8 +63597,8 @@ ong_GqlStatusInfoCodes_STATUS_42NFF = null, ong_GqlStatusInfoCodes_STATUS_50N00 = null, ong_GqlStatusInfoCodes_STATUS_50N01 = null, ong_GqlStatusInfoCodes_STATUS_50N05 = null, +ong_GqlStatusInfoCodes_STATUS_50N06 = null, ong_GqlStatusInfoCodes_STATUS_50N07 = null, -ong_GqlStatusInfoCodes_STATUS_50N08 = null, ong_GqlStatusInfoCodes_STATUS_50N09 = null, ong_GqlStatusInfoCodes_STATUS_50N10 = null, ong_GqlStatusInfoCodes_STATUS_50N11 = null, @@ -62558,6 +63606,8 @@ ong_GqlStatusInfoCodes_STATUS_50N12 = null, ong_GqlStatusInfoCodes_STATUS_50N13 = null, ong_GqlStatusInfoCodes_STATUS_50N14 = null, ong_GqlStatusInfoCodes_STATUS_50N15 = null, +ong_GqlStatusInfoCodes_STATUS_50N16 = null, +ong_GqlStatusInfoCodes_STATUS_50N17 = null, ong_GqlStatusInfoCodes_STATUS_50N21 = null, ong_GqlStatusInfoCodes_STATUS_50N42 = null, ong_GqlStatusInfoCodes_STATUS_51N00 = null, @@ -62579,13 +63629,13 @@ ong_GqlStatusInfoCodes_STATUS_51N15 = null, ong_GqlStatusInfoCodes_STATUS_51N16 = null, ong_GqlStatusInfoCodes_STATUS_51N17 = null, ong_GqlStatusInfoCodes_STATUS_51N18 = null, -ong_GqlStatusInfoCodes_STATUS_51N20 = null, -ong_GqlStatusInfoCodes_STATUS_51N21 = null, +ong_GqlStatusInfoCodes_STATUS_51N20 = null; +let ong_GqlStatusInfoCodes_STATUS_51N21 = null, ong_GqlStatusInfoCodes_STATUS_51N22 = null, ong_GqlStatusInfoCodes_STATUS_51N23 = null, ong_GqlStatusInfoCodes_STATUS_51N24 = null, -ong_GqlStatusInfoCodes_STATUS_51N25 = null; -let ong_GqlStatusInfoCodes_STATUS_51N26 = null, +ong_GqlStatusInfoCodes_STATUS_51N25 = null, +ong_GqlStatusInfoCodes_STATUS_51N26 = null, ong_GqlStatusInfoCodes_STATUS_51N27 = null, ong_GqlStatusInfoCodes_STATUS_51N28 = null, ong_GqlStatusInfoCodes_STATUS_51N29 = null, @@ -62629,13 +63679,13 @@ ong_GqlStatusInfoCodes_STATUS_51N67 = null, ong_GqlStatusInfoCodes_STATUS_51N68 = null, ong_GqlStatusInfoCodes_STATUS_51N69 = null, ong_GqlStatusInfoCodes_STATUS_51N70 = null, -ong_GqlStatusInfoCodes_STATUS_52N01 = null, +ong_GqlStatusInfoCodes_STATUS_51N71 = null; +let ong_GqlStatusInfoCodes_STATUS_52N01 = null, ong_GqlStatusInfoCodes_STATUS_52N02 = null, ong_GqlStatusInfoCodes_STATUS_52N03 = null, -ong_GqlStatusInfoCodes_STATUS_52N04 = null, ong_GqlStatusInfoCodes_STATUS_52N05 = null, -ong_GqlStatusInfoCodes_STATUS_52N06 = null; -let ong_GqlStatusInfoCodes_STATUS_52N07 = null, +ong_GqlStatusInfoCodes_STATUS_52N06 = null, +ong_GqlStatusInfoCodes_STATUS_52N07 = null, ong_GqlStatusInfoCodes_STATUS_52N08 = null, ong_GqlStatusInfoCodes_STATUS_52N09 = null, ong_GqlStatusInfoCodes_STATUS_52N10 = null, @@ -62664,7 +63714,7 @@ ong_GqlStatusInfoCodes_STATUS_52N32 = null, ong_GqlStatusInfoCodes_STATUS_52N33 = null, ong_GqlStatusInfoCodes_STATUS_52N34 = null, ong_GqlStatusInfoCodes_STATUS_52N35 = null, -ong_GqlStatusInfoCodes_STATUS_52U00 = null, +ong_GqlStatusInfoCodes_STATUS_52N36 = null, ong_GqlStatusInfoCodes_STATUS_G1000 = null, ong_GqlStatusInfoCodes_STATUS_G1001 = null, ong_GqlStatusInfoCodes_STATUS_G1002 = null, @@ -62679,24 +63729,25 @@ ong_GqlStatusInfoCodes_values = () => { ong_GqlStatusInfoCodes_$callClinit(); return ong_GqlStatusInfoCodes_$VALUES.$clone0(); }, -ong_GqlStatusInfoCodes__init_ = ($this, var$1, var$2, $gqlStatus, $template, $statusParameterKeys, $joinStyles, $condition, $subCondition) => { +ong_GqlStatusInfoCodes__init_ = ($this, var$1, var$2, $gqlStatus, $template, $statusParameterKeys, $joinStyles, $condition, $subCondition, $classification) => { ong_GqlStatusInfoCodes_$callClinit(); jl_Enum__init_($this, var$1, var$2); - $this.$gqlStatus = $gqlStatus; + $this.$gqlStatus0 = $gqlStatus; $this.$statusParameterKeys = $statusParameterKeys; $this.$joinStyles = $joinStyles; $this.$condition = $condition; $this.$subCondition = $subCondition; + $this.$classification0 = $classification; $this.$template = $template; - $this.$offsets1 = ong_GqlStatusInfoCodes_getOffsets($this, $template, $rt_s(882)); + $this.$offsets0 = ong_GqlStatusInfoCodes_getOffsets($this, $template, $rt_s(1339)); }, -ong_GqlStatusInfoCodes__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { - let var_8 = new ong_GqlStatusInfoCodes(); - ong_GqlStatusInfoCodes__init_(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); - return var_8; +ong_GqlStatusInfoCodes__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new ong_GqlStatusInfoCodes(); + ong_GqlStatusInfoCodes__init_(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; }, ong_GqlStatusInfoCodes_getStatusString = $this => { - return $this.$gqlStatus.$gqlStatusString; + return $this.$gqlStatus0.$gqlStatusString; }, ong_GqlStatusInfoCodes_getOffsets = ($this, $template, $substitution) => { let $offset, $offsets, var$5, var$6, var$7; @@ -62718,7 +63769,7 @@ ong_GqlStatusInfoCodes_getOffsets = ($this, $template, $substitution) => { while (jusi_MappingToIntStreamImpl_next($template, $substitution)) { } var$6 = var$5.data; - $offset = $substitution.$index15; + $offset = $substitution.$index14; if ($offset < var$6.length) var$5 = ju_Arrays_copyOf0(var$5, $offset); } else { @@ -62726,7 +63777,7 @@ ong_GqlStatusInfoCodes_getOffsets = ($this, $template, $substitution) => { while (true) { ju_Objects_requireNonNull($substitution); $offsets = new jusi_SimpleIntStreamImpl$toArray$lambda$_16_0; - $offsets.$_0808 = $substitution; + $offsets.$_0784 = $substitution; if (!jusi_MappingToIntStreamImpl_next($template, $offsets)) break; } @@ -62741,10 +63792,35 @@ ong_GqlStatusInfoCodes_getOffsets = ($this, $template, $substitution) => { } return var$5; }, +ong_GqlStatusInfoCodes_getMessage = ($this, $params) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$2 = $this.$statusParameterKeys; + var$3 = $this.$joinStyles; + var$4 = $this.$template; + var$5 = $this.$offsets0; + if ($params === null) + $params = ju_Collections_EMPTY_MAP; + var$6 = $rt_createArray(jl_Object, var$2.data.length); + var$7 = var$6.data; + var$8 = 0; + while (true) { + var$9 = $this.$statusParameterKeys.data; + if (var$8 >= var$9.length) + break; + var$10 = var$9[var$8]; + var$11 = $params.$get6(var$10); + ong_GqlStatusInfoCodes_$callClinit(); + if (var$11 === null) + var$11 = ong_GqlParams$GqlParam_toParamFormat(var$10); + var$7[var$8] = var$11; + var$8 = var$8 + 1 | 0; + } + return ong_SimpleMessageFormatter_format(var$2, var$3, var$4, $rt_s(1339), var$5, var$6); +}, ong_GqlStatusInfoCodes_$values = () => { let var$1, var$2; ong_GqlStatusInfoCodes_$callClinit(); - var$1 = $rt_createArray(ong_GqlStatusInfoCodes, 535); + var$1 = $rt_createArray(ong_GqlStatusInfoCodes, 540); var$2 = var$1.data; var$2[0] = ong_GqlStatusInfoCodes_STATUS_00000; var$2[1] = ong_GqlStatusInfoCodes_STATUS_00001; @@ -62781,7 +63857,7 @@ ong_GqlStatusInfoCodes_$values = () => { var$2[32] = ong_GqlStatusInfoCodes_STATUS_01N63; var$2[33] = ong_GqlStatusInfoCodes_STATUS_01N70; var$2[34] = ong_GqlStatusInfoCodes_STATUS_01N71; - var$2[35] = ong_GqlStatusInfoCodes_STATUS_01U00; + var$2[35] = ong_GqlStatusInfoCodes_STATUS_01N72; var$2[36] = ong_GqlStatusInfoCodes_STATUS_02000; var$2[37] = ong_GqlStatusInfoCodes_STATUS_02N42; var$2[38] = ong_GqlStatusInfoCodes_STATUS_03000; @@ -62814,94 +63890,94 @@ ong_GqlStatusInfoCodes_$values = () => { var$2[65] = ong_GqlStatusInfoCodes_STATUS_08N13; var$2[66] = ong_GqlStatusInfoCodes_STATUS_08N14; var$2[67] = ong_GqlStatusInfoCodes_STATUS_08N15; - var$2[68] = ong_GqlStatusInfoCodes_STATUS_22000; - var$2[69] = ong_GqlStatusInfoCodes_STATUS_22001; - var$2[70] = ong_GqlStatusInfoCodes_STATUS_22003; - var$2[71] = ong_GqlStatusInfoCodes_STATUS_22004; - var$2[72] = ong_GqlStatusInfoCodes_STATUS_22007; - var$2[73] = ong_GqlStatusInfoCodes_STATUS_22008; - var$2[74] = ong_GqlStatusInfoCodes_STATUS_22011; - var$2[75] = ong_GqlStatusInfoCodes_STATUS_22012; - var$2[76] = ong_GqlStatusInfoCodes_STATUS_22015; - var$2[77] = ong_GqlStatusInfoCodes_STATUS_22018; - var$2[78] = ong_GqlStatusInfoCodes_STATUS_2201E; - var$2[79] = ong_GqlStatusInfoCodes_STATUS_2201F; - var$2[80] = ong_GqlStatusInfoCodes_STATUS_22027; - var$2[81] = ong_GqlStatusInfoCodes_STATUS_2202F; - var$2[82] = ong_GqlStatusInfoCodes_STATUS_22G02; - var$2[83] = ong_GqlStatusInfoCodes_STATUS_22G03; - var$2[84] = ong_GqlStatusInfoCodes_STATUS_22G04; - var$2[85] = ong_GqlStatusInfoCodes_STATUS_22G05; - var$2[86] = ong_GqlStatusInfoCodes_STATUS_22G06; - var$2[87] = ong_GqlStatusInfoCodes_STATUS_22G07; - var$2[88] = ong_GqlStatusInfoCodes_STATUS_22G0B; - var$2[89] = ong_GqlStatusInfoCodes_STATUS_22G0C; - var$2[90] = ong_GqlStatusInfoCodes_STATUS_22G0F; - var$2[91] = ong_GqlStatusInfoCodes_STATUS_22G0H; - var$2[92] = ong_GqlStatusInfoCodes_STATUS_22G0M; - var$2[93] = ong_GqlStatusInfoCodes_STATUS_22G0N; - var$2[94] = ong_GqlStatusInfoCodes_STATUS_22G0P; - var$2[95] = ong_GqlStatusInfoCodes_STATUS_22G0Q; - var$2[96] = ong_GqlStatusInfoCodes_STATUS_22G0R; - var$2[97] = ong_GqlStatusInfoCodes_STATUS_22G0S; - var$2[98] = ong_GqlStatusInfoCodes_STATUS_22G0T; - var$2[99] = ong_GqlStatusInfoCodes_STATUS_22G0U; - var$2[100] = ong_GqlStatusInfoCodes_STATUS_22G0V; - var$2[101] = ong_GqlStatusInfoCodes_STATUS_22G0W; - var$2[102] = ong_GqlStatusInfoCodes_STATUS_22G0X; - var$2[103] = ong_GqlStatusInfoCodes_STATUS_22G0Y; - var$2[104] = ong_GqlStatusInfoCodes_STATUS_22G0Z; - var$2[105] = ong_GqlStatusInfoCodes_STATUS_22G10; - var$2[106] = ong_GqlStatusInfoCodes_STATUS_22G11; - var$2[107] = ong_GqlStatusInfoCodes_STATUS_22G12; - var$2[108] = ong_GqlStatusInfoCodes_STATUS_22G13; - var$2[109] = ong_GqlStatusInfoCodes_STATUS_22G14; - var$2[110] = ong_GqlStatusInfoCodes_STATUS_22N00; - var$2[111] = ong_GqlStatusInfoCodes_STATUS_22N01; - var$2[112] = ong_GqlStatusInfoCodes_STATUS_22N02; - var$2[113] = ong_GqlStatusInfoCodes_STATUS_22N03; - var$2[114] = ong_GqlStatusInfoCodes_STATUS_22N04; - var$2[115] = ong_GqlStatusInfoCodes_STATUS_22N05; - var$2[116] = ong_GqlStatusInfoCodes_STATUS_22N06; - var$2[117] = ong_GqlStatusInfoCodes_STATUS_22N07; - var$2[118] = ong_GqlStatusInfoCodes_STATUS_22N08; - var$2[119] = ong_GqlStatusInfoCodes_STATUS_22N09; - var$2[120] = ong_GqlStatusInfoCodes_STATUS_22N10; - var$2[121] = ong_GqlStatusInfoCodes_STATUS_22N11; - var$2[122] = ong_GqlStatusInfoCodes_STATUS_22N12; - var$2[123] = ong_GqlStatusInfoCodes_STATUS_22N13; - var$2[124] = ong_GqlStatusInfoCodes_STATUS_22N14; - var$2[125] = ong_GqlStatusInfoCodes_STATUS_22N15; - var$2[126] = ong_GqlStatusInfoCodes_STATUS_22N16; - var$2[127] = ong_GqlStatusInfoCodes_STATUS_22N17; - var$2[128] = ong_GqlStatusInfoCodes_STATUS_22N18; - var$2[129] = ong_GqlStatusInfoCodes_STATUS_22N19; - var$2[130] = ong_GqlStatusInfoCodes_STATUS_22N20; - var$2[131] = ong_GqlStatusInfoCodes_STATUS_22N21; - var$2[132] = ong_GqlStatusInfoCodes_STATUS_22N22; - var$2[133] = ong_GqlStatusInfoCodes_STATUS_22N23; - var$2[134] = ong_GqlStatusInfoCodes_STATUS_22N24; - var$2[135] = ong_GqlStatusInfoCodes_STATUS_22N25; - var$2[136] = ong_GqlStatusInfoCodes_STATUS_22N26; - var$2[137] = ong_GqlStatusInfoCodes_STATUS_22N27; - var$2[138] = ong_GqlStatusInfoCodes_STATUS_22N28; - var$2[139] = ong_GqlStatusInfoCodes_STATUS_22N29; - var$2[140] = ong_GqlStatusInfoCodes_STATUS_22N30; - var$2[141] = ong_GqlStatusInfoCodes_STATUS_22N31; - var$2[142] = ong_GqlStatusInfoCodes_STATUS_22N32; - var$2[143] = ong_GqlStatusInfoCodes_STATUS_22N33; - var$2[144] = ong_GqlStatusInfoCodes_STATUS_22N34; - var$2[145] = ong_GqlStatusInfoCodes_STATUS_22N35; - var$2[146] = ong_GqlStatusInfoCodes_STATUS_22N36; - var$2[147] = ong_GqlStatusInfoCodes_STATUS_22N37; - var$2[148] = ong_GqlStatusInfoCodes_STATUS_22N38; - var$2[149] = ong_GqlStatusInfoCodes_STATUS_22N39; - var$2[150] = ong_GqlStatusInfoCodes_STATUS_22N40; - var$2[151] = ong_GqlStatusInfoCodes_STATUS_22N41; - var$2[152] = ong_GqlStatusInfoCodes_STATUS_22N42; - var$2[153] = ong_GqlStatusInfoCodes_STATUS_22N43; - var$2[154] = ong_GqlStatusInfoCodes_STATUS_22N44; - var$2[155] = ong_GqlStatusInfoCodes_STATUS_22N45; + var$2[68] = ong_GqlStatusInfoCodes_STATUS_08N16; + var$2[69] = ong_GqlStatusInfoCodes_STATUS_08N17; + var$2[70] = ong_GqlStatusInfoCodes_STATUS_08N18; + var$2[71] = ong_GqlStatusInfoCodes_STATUS_22000; + var$2[72] = ong_GqlStatusInfoCodes_STATUS_22001; + var$2[73] = ong_GqlStatusInfoCodes_STATUS_22003; + var$2[74] = ong_GqlStatusInfoCodes_STATUS_22004; + var$2[75] = ong_GqlStatusInfoCodes_STATUS_22007; + var$2[76] = ong_GqlStatusInfoCodes_STATUS_22008; + var$2[77] = ong_GqlStatusInfoCodes_STATUS_22011; + var$2[78] = ong_GqlStatusInfoCodes_STATUS_22012; + var$2[79] = ong_GqlStatusInfoCodes_STATUS_22015; + var$2[80] = ong_GqlStatusInfoCodes_STATUS_22018; + var$2[81] = ong_GqlStatusInfoCodes_STATUS_2201E; + var$2[82] = ong_GqlStatusInfoCodes_STATUS_2201F; + var$2[83] = ong_GqlStatusInfoCodes_STATUS_22027; + var$2[84] = ong_GqlStatusInfoCodes_STATUS_2202F; + var$2[85] = ong_GqlStatusInfoCodes_STATUS_22G02; + var$2[86] = ong_GqlStatusInfoCodes_STATUS_22G03; + var$2[87] = ong_GqlStatusInfoCodes_STATUS_22G04; + var$2[88] = ong_GqlStatusInfoCodes_STATUS_22G05; + var$2[89] = ong_GqlStatusInfoCodes_STATUS_22G06; + var$2[90] = ong_GqlStatusInfoCodes_STATUS_22G07; + var$2[91] = ong_GqlStatusInfoCodes_STATUS_22G0B; + var$2[92] = ong_GqlStatusInfoCodes_STATUS_22G0C; + var$2[93] = ong_GqlStatusInfoCodes_STATUS_22G0F; + var$2[94] = ong_GqlStatusInfoCodes_STATUS_22G0H; + var$2[95] = ong_GqlStatusInfoCodes_STATUS_22G0M; + var$2[96] = ong_GqlStatusInfoCodes_STATUS_22G0N; + var$2[97] = ong_GqlStatusInfoCodes_STATUS_22G0P; + var$2[98] = ong_GqlStatusInfoCodes_STATUS_22G0Q; + var$2[99] = ong_GqlStatusInfoCodes_STATUS_22G0R; + var$2[100] = ong_GqlStatusInfoCodes_STATUS_22G0S; + var$2[101] = ong_GqlStatusInfoCodes_STATUS_22G0T; + var$2[102] = ong_GqlStatusInfoCodes_STATUS_22G0U; + var$2[103] = ong_GqlStatusInfoCodes_STATUS_22G0V; + var$2[104] = ong_GqlStatusInfoCodes_STATUS_22G0W; + var$2[105] = ong_GqlStatusInfoCodes_STATUS_22G0X; + var$2[106] = ong_GqlStatusInfoCodes_STATUS_22G0Y; + var$2[107] = ong_GqlStatusInfoCodes_STATUS_22G0Z; + var$2[108] = ong_GqlStatusInfoCodes_STATUS_22G10; + var$2[109] = ong_GqlStatusInfoCodes_STATUS_22G11; + var$2[110] = ong_GqlStatusInfoCodes_STATUS_22G13; + var$2[111] = ong_GqlStatusInfoCodes_STATUS_22G14; + var$2[112] = ong_GqlStatusInfoCodes_STATUS_22N00; + var$2[113] = ong_GqlStatusInfoCodes_STATUS_22N01; + var$2[114] = ong_GqlStatusInfoCodes_STATUS_22N02; + var$2[115] = ong_GqlStatusInfoCodes_STATUS_22N03; + var$2[116] = ong_GqlStatusInfoCodes_STATUS_22N04; + var$2[117] = ong_GqlStatusInfoCodes_STATUS_22N05; + var$2[118] = ong_GqlStatusInfoCodes_STATUS_22N06; + var$2[119] = ong_GqlStatusInfoCodes_STATUS_22N07; + var$2[120] = ong_GqlStatusInfoCodes_STATUS_22N08; + var$2[121] = ong_GqlStatusInfoCodes_STATUS_22N09; + var$2[122] = ong_GqlStatusInfoCodes_STATUS_22N10; + var$2[123] = ong_GqlStatusInfoCodes_STATUS_22N11; + var$2[124] = ong_GqlStatusInfoCodes_STATUS_22N12; + var$2[125] = ong_GqlStatusInfoCodes_STATUS_22N13; + var$2[126] = ong_GqlStatusInfoCodes_STATUS_22N14; + var$2[127] = ong_GqlStatusInfoCodes_STATUS_22N15; + var$2[128] = ong_GqlStatusInfoCodes_STATUS_22N16; + var$2[129] = ong_GqlStatusInfoCodes_STATUS_22N18; + var$2[130] = ong_GqlStatusInfoCodes_STATUS_22N19; + var$2[131] = ong_GqlStatusInfoCodes_STATUS_22N20; + var$2[132] = ong_GqlStatusInfoCodes_STATUS_22N21; + var$2[133] = ong_GqlStatusInfoCodes_STATUS_22N22; + var$2[134] = ong_GqlStatusInfoCodes_STATUS_22N23; + var$2[135] = ong_GqlStatusInfoCodes_STATUS_22N24; + var$2[136] = ong_GqlStatusInfoCodes_STATUS_22N25; + var$2[137] = ong_GqlStatusInfoCodes_STATUS_22N26; + var$2[138] = ong_GqlStatusInfoCodes_STATUS_22N27; + var$2[139] = ong_GqlStatusInfoCodes_STATUS_22N28; + var$2[140] = ong_GqlStatusInfoCodes_STATUS_22N29; + var$2[141] = ong_GqlStatusInfoCodes_STATUS_22N30; + var$2[142] = ong_GqlStatusInfoCodes_STATUS_22N31; + var$2[143] = ong_GqlStatusInfoCodes_STATUS_22N32; + var$2[144] = ong_GqlStatusInfoCodes_STATUS_22N33; + var$2[145] = ong_GqlStatusInfoCodes_STATUS_22N34; + var$2[146] = ong_GqlStatusInfoCodes_STATUS_22N35; + var$2[147] = ong_GqlStatusInfoCodes_STATUS_22N36; + var$2[148] = ong_GqlStatusInfoCodes_STATUS_22N37; + var$2[149] = ong_GqlStatusInfoCodes_STATUS_22N38; + var$2[150] = ong_GqlStatusInfoCodes_STATUS_22N39; + var$2[151] = ong_GqlStatusInfoCodes_STATUS_22N40; + var$2[152] = ong_GqlStatusInfoCodes_STATUS_22N41; + var$2[153] = ong_GqlStatusInfoCodes_STATUS_22N42; + var$2[154] = ong_GqlStatusInfoCodes_STATUS_22N43; + var$2[155] = ong_GqlStatusInfoCodes_STATUS_22N44; var$2[156] = ong_GqlStatusInfoCodes_STATUS_22N46; var$2[157] = ong_GqlStatusInfoCodes_STATUS_22N47; var$2[158] = ong_GqlStatusInfoCodes_STATUS_22N48; @@ -62925,43 +64001,43 @@ ong_GqlStatusInfoCodes_$values = () => { var$2[176] = ong_GqlStatusInfoCodes_STATUS_22N69; var$2[177] = ong_GqlStatusInfoCodes_STATUS_22N70; var$2[178] = ong_GqlStatusInfoCodes_STATUS_22N71; - var$2[179] = ong_GqlStatusInfoCodes_STATUS_22N72; - var$2[180] = ong_GqlStatusInfoCodes_STATUS_22N73; - var$2[181] = ong_GqlStatusInfoCodes_STATUS_22N74; - var$2[182] = ong_GqlStatusInfoCodes_STATUS_22N75; - var$2[183] = ong_GqlStatusInfoCodes_STATUS_22N76; - var$2[184] = ong_GqlStatusInfoCodes_STATUS_22N77; - var$2[185] = ong_GqlStatusInfoCodes_STATUS_22N78; - var$2[186] = ong_GqlStatusInfoCodes_STATUS_22N79; - var$2[187] = ong_GqlStatusInfoCodes_STATUS_22N81; - var$2[188] = ong_GqlStatusInfoCodes_STATUS_22N82; - var$2[189] = ong_GqlStatusInfoCodes_STATUS_22N83; - var$2[190] = ong_GqlStatusInfoCodes_STATUS_22N84; - var$2[191] = ong_GqlStatusInfoCodes_STATUS_22N85; - var$2[192] = ong_GqlStatusInfoCodes_STATUS_22N86; - var$2[193] = ong_GqlStatusInfoCodes_STATUS_22N87; - var$2[194] = ong_GqlStatusInfoCodes_STATUS_22N88; - var$2[195] = ong_GqlStatusInfoCodes_STATUS_22N89; - var$2[196] = ong_GqlStatusInfoCodes_STATUS_22N90; - var$2[197] = ong_GqlStatusInfoCodes_STATUS_22N91; - var$2[198] = ong_GqlStatusInfoCodes_STATUS_22N92; - var$2[199] = ong_GqlStatusInfoCodes_STATUS_22N93; - var$2[200] = ong_GqlStatusInfoCodes_STATUS_22N94; - var$2[201] = ong_GqlStatusInfoCodes_STATUS_22N95; - var$2[202] = ong_GqlStatusInfoCodes_STATUS_22N96; - var$2[203] = ong_GqlStatusInfoCodes_STATUS_22N97; - var$2[204] = ong_GqlStatusInfoCodes_STATUS_22N98; - var$2[205] = ong_GqlStatusInfoCodes_STATUS_22N99; - var$2[206] = ong_GqlStatusInfoCodes_STATUS_22NA0; - var$2[207] = ong_GqlStatusInfoCodes_STATUS_22NA1; - var$2[208] = ong_GqlStatusInfoCodes_STATUS_22NA2; - var$2[209] = ong_GqlStatusInfoCodes_STATUS_22NA3; - var$2[210] = ong_GqlStatusInfoCodes_STATUS_22NA4; - var$2[211] = ong_GqlStatusInfoCodes_STATUS_22NA5; - var$2[212] = ong_GqlStatusInfoCodes_STATUS_22NA6; - var$2[213] = ong_GqlStatusInfoCodes_STATUS_22NA7; - var$2[214] = ong_GqlStatusInfoCodes_STATUS_22NA8; - var$2[215] = ong_GqlStatusInfoCodes_STATUS_22NFF; + var$2[179] = ong_GqlStatusInfoCodes_STATUS_22N73; + var$2[180] = ong_GqlStatusInfoCodes_STATUS_22N74; + var$2[181] = ong_GqlStatusInfoCodes_STATUS_22N75; + var$2[182] = ong_GqlStatusInfoCodes_STATUS_22N76; + var$2[183] = ong_GqlStatusInfoCodes_STATUS_22N77; + var$2[184] = ong_GqlStatusInfoCodes_STATUS_22N78; + var$2[185] = ong_GqlStatusInfoCodes_STATUS_22N79; + var$2[186] = ong_GqlStatusInfoCodes_STATUS_22N81; + var$2[187] = ong_GqlStatusInfoCodes_STATUS_22N82; + var$2[188] = ong_GqlStatusInfoCodes_STATUS_22N83; + var$2[189] = ong_GqlStatusInfoCodes_STATUS_22N84; + var$2[190] = ong_GqlStatusInfoCodes_STATUS_22N85; + var$2[191] = ong_GqlStatusInfoCodes_STATUS_22N86; + var$2[192] = ong_GqlStatusInfoCodes_STATUS_22N87; + var$2[193] = ong_GqlStatusInfoCodes_STATUS_22N88; + var$2[194] = ong_GqlStatusInfoCodes_STATUS_22N89; + var$2[195] = ong_GqlStatusInfoCodes_STATUS_22N90; + var$2[196] = ong_GqlStatusInfoCodes_STATUS_22N91; + var$2[197] = ong_GqlStatusInfoCodes_STATUS_22N92; + var$2[198] = ong_GqlStatusInfoCodes_STATUS_22N93; + var$2[199] = ong_GqlStatusInfoCodes_STATUS_22N94; + var$2[200] = ong_GqlStatusInfoCodes_STATUS_22N95; + var$2[201] = ong_GqlStatusInfoCodes_STATUS_22N96; + var$2[202] = ong_GqlStatusInfoCodes_STATUS_22N97; + var$2[203] = ong_GqlStatusInfoCodes_STATUS_22N98; + var$2[204] = ong_GqlStatusInfoCodes_STATUS_22N99; + var$2[205] = ong_GqlStatusInfoCodes_STATUS_22NA0; + var$2[206] = ong_GqlStatusInfoCodes_STATUS_22NA1; + var$2[207] = ong_GqlStatusInfoCodes_STATUS_22NA2; + var$2[208] = ong_GqlStatusInfoCodes_STATUS_22NA3; + var$2[209] = ong_GqlStatusInfoCodes_STATUS_22NA4; + var$2[210] = ong_GqlStatusInfoCodes_STATUS_22NA5; + var$2[211] = ong_GqlStatusInfoCodes_STATUS_22NA6; + var$2[212] = ong_GqlStatusInfoCodes_STATUS_22NA7; + var$2[213] = ong_GqlStatusInfoCodes_STATUS_22NA8; + var$2[214] = ong_GqlStatusInfoCodes_STATUS_22NB0; + var$2[215] = ong_GqlStatusInfoCodes_STATUS_22NB1; var$2[216] = ong_GqlStatusInfoCodes_STATUS_25000; var$2[217] = ong_GqlStatusInfoCodes_STATUS_25G01; var$2[218] = ong_GqlStatusInfoCodes_STATUS_25G02; @@ -63055,1071 +64131,1065 @@ ong_GqlStatusInfoCodes_$values = () => { var$2[306] = ong_GqlStatusInfoCodes_STATUS_42I48; var$2[307] = ong_GqlStatusInfoCodes_STATUS_42I49; var$2[308] = ong_GqlStatusInfoCodes_STATUS_42I50; - var$2[309] = ong_GqlStatusInfoCodes_STATUS_42N00; - var$2[310] = ong_GqlStatusInfoCodes_STATUS_42N01; - var$2[311] = ong_GqlStatusInfoCodes_STATUS_42N02; - var$2[312] = ong_GqlStatusInfoCodes_STATUS_42N03; - var$2[313] = ong_GqlStatusInfoCodes_STATUS_42N04; - var$2[314] = ong_GqlStatusInfoCodes_STATUS_42N05; - var$2[315] = ong_GqlStatusInfoCodes_STATUS_42N06; - var$2[316] = ong_GqlStatusInfoCodes_STATUS_42N07; - var$2[317] = ong_GqlStatusInfoCodes_STATUS_42N08; - var$2[318] = ong_GqlStatusInfoCodes_STATUS_42N09; - var$2[319] = ong_GqlStatusInfoCodes_STATUS_42N10; - var$2[320] = ong_GqlStatusInfoCodes_STATUS_42N11; - var$2[321] = ong_GqlStatusInfoCodes_STATUS_42N12; - var$2[322] = ong_GqlStatusInfoCodes_STATUS_42N13; - var$2[323] = ong_GqlStatusInfoCodes_STATUS_42N14; - var$2[324] = ong_GqlStatusInfoCodes_STATUS_42N15; - var$2[325] = ong_GqlStatusInfoCodes_STATUS_42N16; - var$2[326] = ong_GqlStatusInfoCodes_STATUS_42N17; - var$2[327] = ong_GqlStatusInfoCodes_STATUS_42N18; - var$2[328] = ong_GqlStatusInfoCodes_STATUS_42N19; - var$2[329] = ong_GqlStatusInfoCodes_STATUS_42N20; - var$2[330] = ong_GqlStatusInfoCodes_STATUS_42N21; - var$2[331] = ong_GqlStatusInfoCodes_STATUS_42N22; - var$2[332] = ong_GqlStatusInfoCodes_STATUS_42N23; - var$2[333] = ong_GqlStatusInfoCodes_STATUS_42N24; - var$2[334] = ong_GqlStatusInfoCodes_STATUS_42N25; - var$2[335] = ong_GqlStatusInfoCodes_STATUS_42N26; - var$2[336] = ong_GqlStatusInfoCodes_STATUS_42N28; - var$2[337] = ong_GqlStatusInfoCodes_STATUS_42N29; - var$2[338] = ong_GqlStatusInfoCodes_STATUS_42N31; - var$2[339] = ong_GqlStatusInfoCodes_STATUS_42N32; - var$2[340] = ong_GqlStatusInfoCodes_STATUS_42N34; - var$2[341] = ong_GqlStatusInfoCodes_STATUS_42N35; - var$2[342] = ong_GqlStatusInfoCodes_STATUS_42N36; - var$2[343] = ong_GqlStatusInfoCodes_STATUS_42N37; - var$2[344] = ong_GqlStatusInfoCodes_STATUS_42N38; - var$2[345] = ong_GqlStatusInfoCodes_STATUS_42N39; - var$2[346] = ong_GqlStatusInfoCodes_STATUS_42N40; - var$2[347] = ong_GqlStatusInfoCodes_STATUS_42N41; - var$2[348] = ong_GqlStatusInfoCodes_STATUS_42N42; - var$2[349] = ong_GqlStatusInfoCodes_STATUS_42N44; - var$2[350] = ong_GqlStatusInfoCodes_STATUS_42N45; - var$2[351] = ong_GqlStatusInfoCodes_STATUS_42N46; - var$2[352] = ong_GqlStatusInfoCodes_STATUS_42N47; - var$2[353] = ong_GqlStatusInfoCodes_STATUS_42N48; - var$2[354] = ong_GqlStatusInfoCodes_STATUS_42N49; - var$2[355] = ong_GqlStatusInfoCodes_STATUS_42N50; - var$2[356] = ong_GqlStatusInfoCodes_STATUS_42N52; - var$2[357] = ong_GqlStatusInfoCodes_STATUS_42N53; - var$2[358] = ong_GqlStatusInfoCodes_STATUS_42N54; - var$2[359] = ong_GqlStatusInfoCodes_STATUS_42N55; - var$2[360] = ong_GqlStatusInfoCodes_STATUS_42N56; - var$2[361] = ong_GqlStatusInfoCodes_STATUS_42N57; - var$2[362] = ong_GqlStatusInfoCodes_STATUS_42N58; - var$2[363] = ong_GqlStatusInfoCodes_STATUS_42N59; - var$2[364] = ong_GqlStatusInfoCodes_STATUS_42N62; - var$2[365] = ong_GqlStatusInfoCodes_STATUS_42N63; - var$2[366] = ong_GqlStatusInfoCodes_STATUS_42N64; - var$2[367] = ong_GqlStatusInfoCodes_STATUS_42N65; - var$2[368] = ong_GqlStatusInfoCodes_STATUS_42N66; - var$2[369] = ong_GqlStatusInfoCodes_STATUS_42N67; - var$2[370] = ong_GqlStatusInfoCodes_STATUS_42N68; - var$2[371] = ong_GqlStatusInfoCodes_STATUS_42N69; - var$2[372] = ong_GqlStatusInfoCodes_STATUS_42N70; - var$2[373] = ong_GqlStatusInfoCodes_STATUS_42N71; - var$2[374] = ong_GqlStatusInfoCodes_STATUS_42N72; - var$2[375] = ong_GqlStatusInfoCodes_STATUS_42N73; - var$2[376] = ong_GqlStatusInfoCodes_STATUS_42N74; - var$2[377] = ong_GqlStatusInfoCodes_STATUS_42N75; - var$2[378] = ong_GqlStatusInfoCodes_STATUS_42N76; - var$2[379] = ong_GqlStatusInfoCodes_STATUS_42N77; - var$2[380] = ong_GqlStatusInfoCodes_STATUS_42N78; - var$2[381] = ong_GqlStatusInfoCodes_STATUS_42N81; - var$2[382] = ong_GqlStatusInfoCodes_STATUS_42N82; - var$2[383] = ong_GqlStatusInfoCodes_STATUS_42N83; - var$2[384] = ong_GqlStatusInfoCodes_STATUS_42N84; - var$2[385] = ong_GqlStatusInfoCodes_STATUS_42N85; - var$2[386] = ong_GqlStatusInfoCodes_STATUS_42N86; - var$2[387] = ong_GqlStatusInfoCodes_STATUS_42N87; - var$2[388] = ong_GqlStatusInfoCodes_STATUS_42N88; - var$2[389] = ong_GqlStatusInfoCodes_STATUS_42N89; - var$2[390] = ong_GqlStatusInfoCodes_STATUS_42N90; - var$2[391] = ong_GqlStatusInfoCodes_STATUS_42N91; - var$2[392] = ong_GqlStatusInfoCodes_STATUS_42N92; - var$2[393] = ong_GqlStatusInfoCodes_STATUS_42N93; - var$2[394] = ong_GqlStatusInfoCodes_STATUS_42N94; - var$2[395] = ong_GqlStatusInfoCodes_STATUS_42N95; - var$2[396] = ong_GqlStatusInfoCodes_STATUS_42N96; - var$2[397] = ong_GqlStatusInfoCodes_STATUS_42N97; - var$2[398] = ong_GqlStatusInfoCodes_STATUS_42N98; - var$2[399] = ong_GqlStatusInfoCodes_STATUS_42N99; - var$2[400] = ong_GqlStatusInfoCodes_STATUS_42NA0; - var$2[401] = ong_GqlStatusInfoCodes_STATUS_42NA1; - var$2[402] = ong_GqlStatusInfoCodes_STATUS_42NA2; - var$2[403] = ong_GqlStatusInfoCodes_STATUS_42NA3; - var$2[404] = ong_GqlStatusInfoCodes_STATUS_42NA4; - var$2[405] = ong_GqlStatusInfoCodes_STATUS_42NA5; - var$2[406] = ong_GqlStatusInfoCodes_STATUS_42NA6; - var$2[407] = ong_GqlStatusInfoCodes_STATUS_42NFC; - var$2[408] = ong_GqlStatusInfoCodes_STATUS_42NFD; - var$2[409] = ong_GqlStatusInfoCodes_STATUS_42NFE; - var$2[410] = ong_GqlStatusInfoCodes_STATUS_42NFF; - var$2[411] = ong_GqlStatusInfoCodes_STATUS_50N00; - var$2[412] = ong_GqlStatusInfoCodes_STATUS_50N01; - var$2[413] = ong_GqlStatusInfoCodes_STATUS_50N05; - var$2[414] = ong_GqlStatusInfoCodes_STATUS_50N07; - var$2[415] = ong_GqlStatusInfoCodes_STATUS_50N08; - var$2[416] = ong_GqlStatusInfoCodes_STATUS_50N09; - var$2[417] = ong_GqlStatusInfoCodes_STATUS_50N10; - var$2[418] = ong_GqlStatusInfoCodes_STATUS_50N11; - var$2[419] = ong_GqlStatusInfoCodes_STATUS_50N12; - var$2[420] = ong_GqlStatusInfoCodes_STATUS_50N13; - var$2[421] = ong_GqlStatusInfoCodes_STATUS_50N14; - var$2[422] = ong_GqlStatusInfoCodes_STATUS_50N15; - var$2[423] = ong_GqlStatusInfoCodes_STATUS_50N21; - var$2[424] = ong_GqlStatusInfoCodes_STATUS_50N42; - var$2[425] = ong_GqlStatusInfoCodes_STATUS_51N00; - var$2[426] = ong_GqlStatusInfoCodes_STATUS_51N01; - var$2[427] = ong_GqlStatusInfoCodes_STATUS_51N02; - var$2[428] = ong_GqlStatusInfoCodes_STATUS_51N03; - var$2[429] = ong_GqlStatusInfoCodes_STATUS_51N04; - var$2[430] = ong_GqlStatusInfoCodes_STATUS_51N05; - var$2[431] = ong_GqlStatusInfoCodes_STATUS_51N06; - var$2[432] = ong_GqlStatusInfoCodes_STATUS_51N07; - var$2[433] = ong_GqlStatusInfoCodes_STATUS_51N08; - var$2[434] = ong_GqlStatusInfoCodes_STATUS_51N09; - var$2[435] = ong_GqlStatusInfoCodes_STATUS_51N10; - var$2[436] = ong_GqlStatusInfoCodes_STATUS_51N11; - var$2[437] = ong_GqlStatusInfoCodes_STATUS_51N12; - var$2[438] = ong_GqlStatusInfoCodes_STATUS_51N13; - var$2[439] = ong_GqlStatusInfoCodes_STATUS_51N14; - var$2[440] = ong_GqlStatusInfoCodes_STATUS_51N15; - var$2[441] = ong_GqlStatusInfoCodes_STATUS_51N16; - var$2[442] = ong_GqlStatusInfoCodes_STATUS_51N17; - var$2[443] = ong_GqlStatusInfoCodes_STATUS_51N18; - var$2[444] = ong_GqlStatusInfoCodes_STATUS_51N20; - var$2[445] = ong_GqlStatusInfoCodes_STATUS_51N21; - var$2[446] = ong_GqlStatusInfoCodes_STATUS_51N22; - var$2[447] = ong_GqlStatusInfoCodes_STATUS_51N23; - var$2[448] = ong_GqlStatusInfoCodes_STATUS_51N24; - var$2[449] = ong_GqlStatusInfoCodes_STATUS_51N25; - var$2[450] = ong_GqlStatusInfoCodes_STATUS_51N26; - var$2[451] = ong_GqlStatusInfoCodes_STATUS_51N27; - var$2[452] = ong_GqlStatusInfoCodes_STATUS_51N28; - var$2[453] = ong_GqlStatusInfoCodes_STATUS_51N29; - var$2[454] = ong_GqlStatusInfoCodes_STATUS_51N30; - var$2[455] = ong_GqlStatusInfoCodes_STATUS_51N31; - var$2[456] = ong_GqlStatusInfoCodes_STATUS_51N32; - var$2[457] = ong_GqlStatusInfoCodes_STATUS_51N33; - var$2[458] = ong_GqlStatusInfoCodes_STATUS_51N34; - var$2[459] = ong_GqlStatusInfoCodes_STATUS_51N35; - var$2[460] = ong_GqlStatusInfoCodes_STATUS_51N36; - var$2[461] = ong_GqlStatusInfoCodes_STATUS_51N37; - var$2[462] = ong_GqlStatusInfoCodes_STATUS_51N38; - var$2[463] = ong_GqlStatusInfoCodes_STATUS_51N39; - var$2[464] = ong_GqlStatusInfoCodes_STATUS_51N40; - var$2[465] = ong_GqlStatusInfoCodes_STATUS_51N41; - var$2[466] = ong_GqlStatusInfoCodes_STATUS_51N42; - var$2[467] = ong_GqlStatusInfoCodes_STATUS_51N43; - var$2[468] = ong_GqlStatusInfoCodes_STATUS_51N44; - var$2[469] = ong_GqlStatusInfoCodes_STATUS_51N45; - var$2[470] = ong_GqlStatusInfoCodes_STATUS_51N46; - var$2[471] = ong_GqlStatusInfoCodes_STATUS_51N47; - var$2[472] = ong_GqlStatusInfoCodes_STATUS_51N48; - var$2[473] = ong_GqlStatusInfoCodes_STATUS_51N49; - var$2[474] = ong_GqlStatusInfoCodes_STATUS_51N50; - var$2[475] = ong_GqlStatusInfoCodes_STATUS_51N51; - var$2[476] = ong_GqlStatusInfoCodes_STATUS_51N52; - var$2[477] = ong_GqlStatusInfoCodes_STATUS_51N53; - var$2[478] = ong_GqlStatusInfoCodes_STATUS_51N54; - var$2[479] = ong_GqlStatusInfoCodes_STATUS_51N55; - var$2[480] = ong_GqlStatusInfoCodes_STATUS_51N56; - var$2[481] = ong_GqlStatusInfoCodes_STATUS_51N57; - var$2[482] = ong_GqlStatusInfoCodes_STATUS_51N59; - var$2[483] = ong_GqlStatusInfoCodes_STATUS_51N60; - var$2[484] = ong_GqlStatusInfoCodes_STATUS_51N61; - var$2[485] = ong_GqlStatusInfoCodes_STATUS_51N62; - var$2[486] = ong_GqlStatusInfoCodes_STATUS_51N63; - var$2[487] = ong_GqlStatusInfoCodes_STATUS_51N64; - var$2[488] = ong_GqlStatusInfoCodes_STATUS_51N65; - var$2[489] = ong_GqlStatusInfoCodes_STATUS_51N66; - var$2[490] = ong_GqlStatusInfoCodes_STATUS_51N67; - var$2[491] = ong_GqlStatusInfoCodes_STATUS_51N68; - var$2[492] = ong_GqlStatusInfoCodes_STATUS_51N69; - var$2[493] = ong_GqlStatusInfoCodes_STATUS_51N70; - var$2[494] = ong_GqlStatusInfoCodes_STATUS_52N01; - var$2[495] = ong_GqlStatusInfoCodes_STATUS_52N02; - var$2[496] = ong_GqlStatusInfoCodes_STATUS_52N03; - var$2[497] = ong_GqlStatusInfoCodes_STATUS_52N04; - var$2[498] = ong_GqlStatusInfoCodes_STATUS_52N05; - var$2[499] = ong_GqlStatusInfoCodes_STATUS_52N06; - var$2[500] = ong_GqlStatusInfoCodes_STATUS_52N07; - var$2[501] = ong_GqlStatusInfoCodes_STATUS_52N08; - var$2[502] = ong_GqlStatusInfoCodes_STATUS_52N09; - var$2[503] = ong_GqlStatusInfoCodes_STATUS_52N10; - var$2[504] = ong_GqlStatusInfoCodes_STATUS_52N11; - var$2[505] = ong_GqlStatusInfoCodes_STATUS_52N12; - var$2[506] = ong_GqlStatusInfoCodes_STATUS_52N13; - var$2[507] = ong_GqlStatusInfoCodes_STATUS_52N14; - var$2[508] = ong_GqlStatusInfoCodes_STATUS_52N15; - var$2[509] = ong_GqlStatusInfoCodes_STATUS_52N16; - var$2[510] = ong_GqlStatusInfoCodes_STATUS_52N17; - var$2[511] = ong_GqlStatusInfoCodes_STATUS_52N18; - var$2[512] = ong_GqlStatusInfoCodes_STATUS_52N19; - var$2[513] = ong_GqlStatusInfoCodes_STATUS_52N20; - var$2[514] = ong_GqlStatusInfoCodes_STATUS_52N21; - var$2[515] = ong_GqlStatusInfoCodes_STATUS_52N22; - var$2[516] = ong_GqlStatusInfoCodes_STATUS_52N23; - var$2[517] = ong_GqlStatusInfoCodes_STATUS_52N24; - var$2[518] = ong_GqlStatusInfoCodes_STATUS_52N25; - var$2[519] = ong_GqlStatusInfoCodes_STATUS_52N26; - var$2[520] = ong_GqlStatusInfoCodes_STATUS_52N27; - var$2[521] = ong_GqlStatusInfoCodes_STATUS_52N28; - var$2[522] = ong_GqlStatusInfoCodes_STATUS_52N29; - var$2[523] = ong_GqlStatusInfoCodes_STATUS_52N30; - var$2[524] = ong_GqlStatusInfoCodes_STATUS_52N31; - var$2[525] = ong_GqlStatusInfoCodes_STATUS_52N32; - var$2[526] = ong_GqlStatusInfoCodes_STATUS_52N33; - var$2[527] = ong_GqlStatusInfoCodes_STATUS_52N34; - var$2[528] = ong_GqlStatusInfoCodes_STATUS_52N35; - var$2[529] = ong_GqlStatusInfoCodes_STATUS_52U00; - var$2[530] = ong_GqlStatusInfoCodes_STATUS_G1000; - var$2[531] = ong_GqlStatusInfoCodes_STATUS_G1001; - var$2[532] = ong_GqlStatusInfoCodes_STATUS_G1002; - var$2[533] = ong_GqlStatusInfoCodes_STATUS_G1003; - var$2[534] = ong_GqlStatusInfoCodes_STATUS_G2000; + var$2[309] = ong_GqlStatusInfoCodes_STATUS_42I51; + var$2[310] = ong_GqlStatusInfoCodes_STATUS_42N00; + var$2[311] = ong_GqlStatusInfoCodes_STATUS_42N01; + var$2[312] = ong_GqlStatusInfoCodes_STATUS_42N02; + var$2[313] = ong_GqlStatusInfoCodes_STATUS_42N03; + var$2[314] = ong_GqlStatusInfoCodes_STATUS_42N04; + var$2[315] = ong_GqlStatusInfoCodes_STATUS_42N05; + var$2[316] = ong_GqlStatusInfoCodes_STATUS_42N06; + var$2[317] = ong_GqlStatusInfoCodes_STATUS_42N07; + var$2[318] = ong_GqlStatusInfoCodes_STATUS_42N08; + var$2[319] = ong_GqlStatusInfoCodes_STATUS_42N09; + var$2[320] = ong_GqlStatusInfoCodes_STATUS_42N10; + var$2[321] = ong_GqlStatusInfoCodes_STATUS_42N11; + var$2[322] = ong_GqlStatusInfoCodes_STATUS_42N12; + var$2[323] = ong_GqlStatusInfoCodes_STATUS_42N13; + var$2[324] = ong_GqlStatusInfoCodes_STATUS_42N14; + var$2[325] = ong_GqlStatusInfoCodes_STATUS_42N15; + var$2[326] = ong_GqlStatusInfoCodes_STATUS_42N16; + var$2[327] = ong_GqlStatusInfoCodes_STATUS_42N17; + var$2[328] = ong_GqlStatusInfoCodes_STATUS_42N18; + var$2[329] = ong_GqlStatusInfoCodes_STATUS_42N19; + var$2[330] = ong_GqlStatusInfoCodes_STATUS_42N20; + var$2[331] = ong_GqlStatusInfoCodes_STATUS_42N21; + var$2[332] = ong_GqlStatusInfoCodes_STATUS_42N22; + var$2[333] = ong_GqlStatusInfoCodes_STATUS_42N23; + var$2[334] = ong_GqlStatusInfoCodes_STATUS_42N24; + var$2[335] = ong_GqlStatusInfoCodes_STATUS_42N25; + var$2[336] = ong_GqlStatusInfoCodes_STATUS_42N26; + var$2[337] = ong_GqlStatusInfoCodes_STATUS_42N28; + var$2[338] = ong_GqlStatusInfoCodes_STATUS_42N29; + var$2[339] = ong_GqlStatusInfoCodes_STATUS_42N31; + var$2[340] = ong_GqlStatusInfoCodes_STATUS_42N32; + var$2[341] = ong_GqlStatusInfoCodes_STATUS_42N34; + var$2[342] = ong_GqlStatusInfoCodes_STATUS_42N35; + var$2[343] = ong_GqlStatusInfoCodes_STATUS_42N36; + var$2[344] = ong_GqlStatusInfoCodes_STATUS_42N37; + var$2[345] = ong_GqlStatusInfoCodes_STATUS_42N38; + var$2[346] = ong_GqlStatusInfoCodes_STATUS_42N39; + var$2[347] = ong_GqlStatusInfoCodes_STATUS_42N40; + var$2[348] = ong_GqlStatusInfoCodes_STATUS_42N41; + var$2[349] = ong_GqlStatusInfoCodes_STATUS_42N42; + var$2[350] = ong_GqlStatusInfoCodes_STATUS_42N44; + var$2[351] = ong_GqlStatusInfoCodes_STATUS_42N45; + var$2[352] = ong_GqlStatusInfoCodes_STATUS_42N46; + var$2[353] = ong_GqlStatusInfoCodes_STATUS_42N47; + var$2[354] = ong_GqlStatusInfoCodes_STATUS_42N48; + var$2[355] = ong_GqlStatusInfoCodes_STATUS_42N49; + var$2[356] = ong_GqlStatusInfoCodes_STATUS_42N50; + var$2[357] = ong_GqlStatusInfoCodes_STATUS_42N51; + var$2[358] = ong_GqlStatusInfoCodes_STATUS_42N52; + var$2[359] = ong_GqlStatusInfoCodes_STATUS_42N53; + var$2[360] = ong_GqlStatusInfoCodes_STATUS_42N54; + var$2[361] = ong_GqlStatusInfoCodes_STATUS_42N55; + var$2[362] = ong_GqlStatusInfoCodes_STATUS_42N56; + var$2[363] = ong_GqlStatusInfoCodes_STATUS_42N57; + var$2[364] = ong_GqlStatusInfoCodes_STATUS_42N58; + var$2[365] = ong_GqlStatusInfoCodes_STATUS_42N59; + var$2[366] = ong_GqlStatusInfoCodes_STATUS_42N62; + var$2[367] = ong_GqlStatusInfoCodes_STATUS_42N63; + var$2[368] = ong_GqlStatusInfoCodes_STATUS_42N64; + var$2[369] = ong_GqlStatusInfoCodes_STATUS_42N65; + var$2[370] = ong_GqlStatusInfoCodes_STATUS_42N66; + var$2[371] = ong_GqlStatusInfoCodes_STATUS_42N67; + var$2[372] = ong_GqlStatusInfoCodes_STATUS_42N68; + var$2[373] = ong_GqlStatusInfoCodes_STATUS_42N69; + var$2[374] = ong_GqlStatusInfoCodes_STATUS_42N70; + var$2[375] = ong_GqlStatusInfoCodes_STATUS_42N71; + var$2[376] = ong_GqlStatusInfoCodes_STATUS_42N72; + var$2[377] = ong_GqlStatusInfoCodes_STATUS_42N73; + var$2[378] = ong_GqlStatusInfoCodes_STATUS_42N74; + var$2[379] = ong_GqlStatusInfoCodes_STATUS_42N75; + var$2[380] = ong_GqlStatusInfoCodes_STATUS_42N76; + var$2[381] = ong_GqlStatusInfoCodes_STATUS_42N77; + var$2[382] = ong_GqlStatusInfoCodes_STATUS_42N78; + var$2[383] = ong_GqlStatusInfoCodes_STATUS_42N81; + var$2[384] = ong_GqlStatusInfoCodes_STATUS_42N82; + var$2[385] = ong_GqlStatusInfoCodes_STATUS_42N83; + var$2[386] = ong_GqlStatusInfoCodes_STATUS_42N84; + var$2[387] = ong_GqlStatusInfoCodes_STATUS_42N85; + var$2[388] = ong_GqlStatusInfoCodes_STATUS_42N86; + var$2[389] = ong_GqlStatusInfoCodes_STATUS_42N87; + var$2[390] = ong_GqlStatusInfoCodes_STATUS_42N89; + var$2[391] = ong_GqlStatusInfoCodes_STATUS_42N90; + var$2[392] = ong_GqlStatusInfoCodes_STATUS_42N91; + var$2[393] = ong_GqlStatusInfoCodes_STATUS_42N92; + var$2[394] = ong_GqlStatusInfoCodes_STATUS_42N93; + var$2[395] = ong_GqlStatusInfoCodes_STATUS_42N94; + var$2[396] = ong_GqlStatusInfoCodes_STATUS_42N95; + var$2[397] = ong_GqlStatusInfoCodes_STATUS_42N96; + var$2[398] = ong_GqlStatusInfoCodes_STATUS_42N97; + var$2[399] = ong_GqlStatusInfoCodes_STATUS_42N98; + var$2[400] = ong_GqlStatusInfoCodes_STATUS_42N99; + var$2[401] = ong_GqlStatusInfoCodes_STATUS_42NA0; + var$2[402] = ong_GqlStatusInfoCodes_STATUS_42NA1; + var$2[403] = ong_GqlStatusInfoCodes_STATUS_42NA2; + var$2[404] = ong_GqlStatusInfoCodes_STATUS_42NA3; + var$2[405] = ong_GqlStatusInfoCodes_STATUS_42NA4; + var$2[406] = ong_GqlStatusInfoCodes_STATUS_42NA5; + var$2[407] = ong_GqlStatusInfoCodes_STATUS_42NA6; + var$2[408] = ong_GqlStatusInfoCodes_STATUS_42NA7; + var$2[409] = ong_GqlStatusInfoCodes_STATUS_42NA8; + var$2[410] = ong_GqlStatusInfoCodes_STATUS_42NFC; + var$2[411] = ong_GqlStatusInfoCodes_STATUS_42NFD; + var$2[412] = ong_GqlStatusInfoCodes_STATUS_42NFE; + var$2[413] = ong_GqlStatusInfoCodes_STATUS_42NFF; + var$2[414] = ong_GqlStatusInfoCodes_STATUS_50N00; + var$2[415] = ong_GqlStatusInfoCodes_STATUS_50N01; + var$2[416] = ong_GqlStatusInfoCodes_STATUS_50N05; + var$2[417] = ong_GqlStatusInfoCodes_STATUS_50N06; + var$2[418] = ong_GqlStatusInfoCodes_STATUS_50N07; + var$2[419] = ong_GqlStatusInfoCodes_STATUS_50N09; + var$2[420] = ong_GqlStatusInfoCodes_STATUS_50N10; + var$2[421] = ong_GqlStatusInfoCodes_STATUS_50N11; + var$2[422] = ong_GqlStatusInfoCodes_STATUS_50N12; + var$2[423] = ong_GqlStatusInfoCodes_STATUS_50N13; + var$2[424] = ong_GqlStatusInfoCodes_STATUS_50N14; + var$2[425] = ong_GqlStatusInfoCodes_STATUS_50N15; + var$2[426] = ong_GqlStatusInfoCodes_STATUS_50N16; + var$2[427] = ong_GqlStatusInfoCodes_STATUS_50N17; + var$2[428] = ong_GqlStatusInfoCodes_STATUS_50N21; + var$2[429] = ong_GqlStatusInfoCodes_STATUS_50N42; + var$2[430] = ong_GqlStatusInfoCodes_STATUS_51N00; + var$2[431] = ong_GqlStatusInfoCodes_STATUS_51N01; + var$2[432] = ong_GqlStatusInfoCodes_STATUS_51N02; + var$2[433] = ong_GqlStatusInfoCodes_STATUS_51N03; + var$2[434] = ong_GqlStatusInfoCodes_STATUS_51N04; + var$2[435] = ong_GqlStatusInfoCodes_STATUS_51N05; + var$2[436] = ong_GqlStatusInfoCodes_STATUS_51N06; + var$2[437] = ong_GqlStatusInfoCodes_STATUS_51N07; + var$2[438] = ong_GqlStatusInfoCodes_STATUS_51N08; + var$2[439] = ong_GqlStatusInfoCodes_STATUS_51N09; + var$2[440] = ong_GqlStatusInfoCodes_STATUS_51N10; + var$2[441] = ong_GqlStatusInfoCodes_STATUS_51N11; + var$2[442] = ong_GqlStatusInfoCodes_STATUS_51N12; + var$2[443] = ong_GqlStatusInfoCodes_STATUS_51N13; + var$2[444] = ong_GqlStatusInfoCodes_STATUS_51N14; + var$2[445] = ong_GqlStatusInfoCodes_STATUS_51N15; + var$2[446] = ong_GqlStatusInfoCodes_STATUS_51N16; + var$2[447] = ong_GqlStatusInfoCodes_STATUS_51N17; + var$2[448] = ong_GqlStatusInfoCodes_STATUS_51N18; + var$2[449] = ong_GqlStatusInfoCodes_STATUS_51N20; + var$2[450] = ong_GqlStatusInfoCodes_STATUS_51N21; + var$2[451] = ong_GqlStatusInfoCodes_STATUS_51N22; + var$2[452] = ong_GqlStatusInfoCodes_STATUS_51N23; + var$2[453] = ong_GqlStatusInfoCodes_STATUS_51N24; + var$2[454] = ong_GqlStatusInfoCodes_STATUS_51N25; + var$2[455] = ong_GqlStatusInfoCodes_STATUS_51N26; + var$2[456] = ong_GqlStatusInfoCodes_STATUS_51N27; + var$2[457] = ong_GqlStatusInfoCodes_STATUS_51N28; + var$2[458] = ong_GqlStatusInfoCodes_STATUS_51N29; + var$2[459] = ong_GqlStatusInfoCodes_STATUS_51N30; + var$2[460] = ong_GqlStatusInfoCodes_STATUS_51N31; + var$2[461] = ong_GqlStatusInfoCodes_STATUS_51N32; + var$2[462] = ong_GqlStatusInfoCodes_STATUS_51N33; + var$2[463] = ong_GqlStatusInfoCodes_STATUS_51N34; + var$2[464] = ong_GqlStatusInfoCodes_STATUS_51N35; + var$2[465] = ong_GqlStatusInfoCodes_STATUS_51N36; + var$2[466] = ong_GqlStatusInfoCodes_STATUS_51N37; + var$2[467] = ong_GqlStatusInfoCodes_STATUS_51N38; + var$2[468] = ong_GqlStatusInfoCodes_STATUS_51N39; + var$2[469] = ong_GqlStatusInfoCodes_STATUS_51N40; + var$2[470] = ong_GqlStatusInfoCodes_STATUS_51N41; + var$2[471] = ong_GqlStatusInfoCodes_STATUS_51N42; + var$2[472] = ong_GqlStatusInfoCodes_STATUS_51N43; + var$2[473] = ong_GqlStatusInfoCodes_STATUS_51N44; + var$2[474] = ong_GqlStatusInfoCodes_STATUS_51N45; + var$2[475] = ong_GqlStatusInfoCodes_STATUS_51N46; + var$2[476] = ong_GqlStatusInfoCodes_STATUS_51N47; + var$2[477] = ong_GqlStatusInfoCodes_STATUS_51N48; + var$2[478] = ong_GqlStatusInfoCodes_STATUS_51N49; + var$2[479] = ong_GqlStatusInfoCodes_STATUS_51N50; + var$2[480] = ong_GqlStatusInfoCodes_STATUS_51N51; + var$2[481] = ong_GqlStatusInfoCodes_STATUS_51N52; + var$2[482] = ong_GqlStatusInfoCodes_STATUS_51N53; + var$2[483] = ong_GqlStatusInfoCodes_STATUS_51N54; + var$2[484] = ong_GqlStatusInfoCodes_STATUS_51N55; + var$2[485] = ong_GqlStatusInfoCodes_STATUS_51N56; + var$2[486] = ong_GqlStatusInfoCodes_STATUS_51N57; + var$2[487] = ong_GqlStatusInfoCodes_STATUS_51N59; + var$2[488] = ong_GqlStatusInfoCodes_STATUS_51N60; + var$2[489] = ong_GqlStatusInfoCodes_STATUS_51N61; + var$2[490] = ong_GqlStatusInfoCodes_STATUS_51N62; + var$2[491] = ong_GqlStatusInfoCodes_STATUS_51N63; + var$2[492] = ong_GqlStatusInfoCodes_STATUS_51N64; + var$2[493] = ong_GqlStatusInfoCodes_STATUS_51N65; + var$2[494] = ong_GqlStatusInfoCodes_STATUS_51N66; + var$2[495] = ong_GqlStatusInfoCodes_STATUS_51N67; + var$2[496] = ong_GqlStatusInfoCodes_STATUS_51N68; + var$2[497] = ong_GqlStatusInfoCodes_STATUS_51N69; + var$2[498] = ong_GqlStatusInfoCodes_STATUS_51N70; + var$2[499] = ong_GqlStatusInfoCodes_STATUS_51N71; + var$2[500] = ong_GqlStatusInfoCodes_STATUS_52N01; + var$2[501] = ong_GqlStatusInfoCodes_STATUS_52N02; + var$2[502] = ong_GqlStatusInfoCodes_STATUS_52N03; + var$2[503] = ong_GqlStatusInfoCodes_STATUS_52N05; + var$2[504] = ong_GqlStatusInfoCodes_STATUS_52N06; + var$2[505] = ong_GqlStatusInfoCodes_STATUS_52N07; + var$2[506] = ong_GqlStatusInfoCodes_STATUS_52N08; + var$2[507] = ong_GqlStatusInfoCodes_STATUS_52N09; + var$2[508] = ong_GqlStatusInfoCodes_STATUS_52N10; + var$2[509] = ong_GqlStatusInfoCodes_STATUS_52N11; + var$2[510] = ong_GqlStatusInfoCodes_STATUS_52N12; + var$2[511] = ong_GqlStatusInfoCodes_STATUS_52N13; + var$2[512] = ong_GqlStatusInfoCodes_STATUS_52N14; + var$2[513] = ong_GqlStatusInfoCodes_STATUS_52N15; + var$2[514] = ong_GqlStatusInfoCodes_STATUS_52N16; + var$2[515] = ong_GqlStatusInfoCodes_STATUS_52N17; + var$2[516] = ong_GqlStatusInfoCodes_STATUS_52N18; + var$2[517] = ong_GqlStatusInfoCodes_STATUS_52N19; + var$2[518] = ong_GqlStatusInfoCodes_STATUS_52N20; + var$2[519] = ong_GqlStatusInfoCodes_STATUS_52N21; + var$2[520] = ong_GqlStatusInfoCodes_STATUS_52N22; + var$2[521] = ong_GqlStatusInfoCodes_STATUS_52N23; + var$2[522] = ong_GqlStatusInfoCodes_STATUS_52N24; + var$2[523] = ong_GqlStatusInfoCodes_STATUS_52N25; + var$2[524] = ong_GqlStatusInfoCodes_STATUS_52N26; + var$2[525] = ong_GqlStatusInfoCodes_STATUS_52N27; + var$2[526] = ong_GqlStatusInfoCodes_STATUS_52N28; + var$2[527] = ong_GqlStatusInfoCodes_STATUS_52N29; + var$2[528] = ong_GqlStatusInfoCodes_STATUS_52N30; + var$2[529] = ong_GqlStatusInfoCodes_STATUS_52N31; + var$2[530] = ong_GqlStatusInfoCodes_STATUS_52N32; + var$2[531] = ong_GqlStatusInfoCodes_STATUS_52N33; + var$2[532] = ong_GqlStatusInfoCodes_STATUS_52N34; + var$2[533] = ong_GqlStatusInfoCodes_STATUS_52N35; + var$2[534] = ong_GqlStatusInfoCodes_STATUS_52N36; + var$2[535] = ong_GqlStatusInfoCodes_STATUS_G1000; + var$2[536] = ong_GqlStatusInfoCodes_STATUS_G1001; + var$2[537] = ong_GqlStatusInfoCodes_STATUS_G1002; + var$2[538] = ong_GqlStatusInfoCodes_STATUS_G1003; + var$2[539] = ong_GqlStatusInfoCodes_STATUS_G2000; return var$1; }, ong_GqlStatusInfoCodes__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - ong_GqlStatusInfoCodes_STATUS_00000 = ong_GqlStatusInfoCodes__init_0($rt_s(1293), 0, ong_GqlStatus__init_($rt_s(1294)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_00001 = ong_GqlStatusInfoCodes__init_0($rt_s(1295), 1, ong_GqlStatus__init_($rt_s(1296)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1297)); + let var$1, var$2, var$3, var$4, var$5, var$6; + ong_GqlStatusInfoCodes_STATUS_00000 = ong_GqlStatusInfoCodes__init_0($rt_s(1340), 0, ong_GqlStatus__init_($rt_s(1341)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(4), ong_NotificationClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_00001 = ong_GqlStatusInfoCodes__init_0($rt_s(1342), 1, ong_GqlStatus__init_($rt_s(1343)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1344), ong_NotificationClassification_UNKNOWN); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1298)); + var$2 = ong_GqlStatus__init_($rt_s(1345)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1299), 2, var$2, $rt_s(1300), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1301)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1346), 2, var$2, $rt_s(1347), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1348), ong_NotificationClassification_UNRECOGNIZED); ong_GqlStatusInfoCodes_STATUS_00N50 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1302)); + var$2 = ong_GqlStatus__init_($rt_s(1349)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_cmd; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1303), 3, var$2, $rt_s(1304), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1305)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1350), 3, var$2, $rt_s(1351), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1352), ong_NotificationClassification_SECURITY); ong_GqlStatusInfoCodes_STATUS_00N70 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1306)); + var$2 = ong_GqlStatus__init_($rt_s(1353)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_cmd; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1307), 4, var$2, $rt_s(1308), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1309)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1354), 4, var$2, $rt_s(1355), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1356), ong_NotificationClassification_SECURITY); ong_GqlStatusInfoCodes_STATUS_00N71 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1310)); + var$2 = ong_GqlStatus__init_($rt_s(1357)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$5 = ong_GqlParams$StringParam_auth; var$4[0] = var$5; var$4[1] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1311), 5, var$2, $rt_s(1312), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1313)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1358), 5, var$2, $rt_s(1359), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1360), ong_NotificationClassification_SECURITY); ong_GqlStatusInfoCodes_STATUS_00N72 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1314)); + var$2 = ong_GqlStatus__init_($rt_s(1361)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1315), 6, var$2, $rt_s(1316), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1317)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1362), 6, var$2, $rt_s(1363), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1364), ong_NotificationClassification_TOPOLOGY); ong_GqlStatusInfoCodes_STATUS_00N80 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1318)); + var$2 = ong_GqlStatus__init_($rt_s(1365)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1319), 7, var$2, $rt_s(1320), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1321)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1366), 7, var$2, $rt_s(1367), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1368), ong_NotificationClassification_TOPOLOGY); ong_GqlStatusInfoCodes_STATUS_00N81 = var$1; - ong_GqlStatusInfoCodes_STATUS_00N82 = ong_GqlStatusInfoCodes__init_0($rt_s(1322), 8, ong_GqlStatus__init_($rt_s(1323)), $rt_s(1324), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1325)); + ong_GqlStatusInfoCodes_STATUS_00N82 = ong_GqlStatusInfoCodes__init_0($rt_s(1369), 8, ong_GqlStatus__init_($rt_s(1370)), $rt_s(1371), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1372), ong_NotificationClassification_TOPOLOGY); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1326)); + var$2 = ong_GqlStatus__init_($rt_s(1373)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; ong_GqlParams$ListParam_$callClinit(); var$5 = ong_GqlParams$ListParam_serverList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1327), 9, var$2, $rt_s(1328), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1329)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1374), 9, var$2, $rt_s(1375), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1376), ong_NotificationClassification_TOPOLOGY); ong_GqlStatusInfoCodes_STATUS_00N83 = var$1; - ong_GqlStatusInfoCodes_STATUS_00N84 = ong_GqlStatusInfoCodes__init_0($rt_s(1330), 10, ong_GqlStatus__init_($rt_s(1331)), $rt_s(1332), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1333)); + ong_GqlStatusInfoCodes_STATUS_00N84 = ong_GqlStatusInfoCodes__init_0($rt_s(1377), 10, ong_GqlStatus__init_($rt_s(1378)), $rt_s(1379), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1380), ong_NotificationClassification_TOPOLOGY); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1334)); + var$2 = ong_GqlStatus__init_($rt_s(1381)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_cmd; var$4[1] = ong_GqlParams$StringParam_idxOrConstrPat; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1335), 11, var$2, $rt_s(1336), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1337)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1382), 11, var$2, $rt_s(1383), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1384), ong_NotificationClassification_SCHEMA); ong_GqlStatusInfoCodes_STATUS_00NA0 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1338)); + var$2 = ong_GqlStatus__init_($rt_s(1385)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_cmd; var$4[1] = ong_GqlParams$StringParam_idxOrConstr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1339), 12, var$2, $rt_s(1340), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1341)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1386), 12, var$2, $rt_s(1387), var$3, ju_Collections_emptyMap(), ong_Condition_SUCCESSFUL_COMPLETION, $rt_s(1388), ong_NotificationClassification_SCHEMA); ong_GqlStatusInfoCodes_STATUS_00NA1 = var$1; - ong_GqlStatusInfoCodes_STATUS_01000 = ong_GqlStatusInfoCodes__init_0($rt_s(1342), 13, ong_GqlStatus__init_($rt_s(1343)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_01004 = ong_GqlStatusInfoCodes__init_0($rt_s(1344), 14, ong_GqlStatus__init_($rt_s(1345)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1346)); - ong_GqlStatusInfoCodes_STATUS_01G03 = ong_GqlStatusInfoCodes__init_0($rt_s(1347), 15, ong_GqlStatus__init_($rt_s(1348)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1349)); - ong_GqlStatusInfoCodes_STATUS_01G04 = ong_GqlStatusInfoCodes__init_0($rt_s(1350), 16, ong_GqlStatus__init_($rt_s(1351)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1352)); - ong_GqlStatusInfoCodes_STATUS_01G11 = ong_GqlStatusInfoCodes__init_0($rt_s(1353), 17, ong_GqlStatus__init_($rt_s(1354)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1355)); + ong_GqlStatusInfoCodes_STATUS_01000 = ong_GqlStatusInfoCodes__init_0($rt_s(1389), 13, ong_GqlStatus__init_($rt_s(1390)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(4), ong_NotificationClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_01004 = ong_GqlStatusInfoCodes__init_0($rt_s(1391), 14, ong_GqlStatus__init_($rt_s(1392)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1393), ong_NotificationClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_01G03 = ong_GqlStatusInfoCodes__init_0($rt_s(1394), 15, ong_GqlStatus__init_($rt_s(1395)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1396), ong_NotificationClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_01G04 = ong_GqlStatusInfoCodes__init_0($rt_s(1397), 16, ong_GqlStatus__init_($rt_s(1398)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1399), ong_NotificationClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_01G11 = ong_GqlStatusInfoCodes__init_0($rt_s(1400), 17, ong_GqlStatus__init_($rt_s(1401)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1402), ong_NotificationClassification_UNRECOGNIZED); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1356)); + var$2 = ong_GqlStatus__init_($rt_s(1403)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_item; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1357), 18, var$2, $rt_s(882), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1358)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1404), 18, var$2, $rt_s(1339), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1405), ong_NotificationClassification_DEPRECATION); ong_GqlStatusInfoCodes_STATUS_01N00 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1359)); + var$2 = ong_GqlStatus__init_($rt_s(1406)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_feat1; var$4[1] = ong_GqlParams$StringParam_feat2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1360), 19, var$2, $rt_s(1361), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1362)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1407), 19, var$2, $rt_s(1408), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1409), ong_NotificationClassification_DEPRECATION); ong_GqlStatusInfoCodes_STATUS_01N01 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1363)); + var$2 = ong_GqlStatus__init_($rt_s(1410)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_feat; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1364), 20, var$2, $rt_s(1365), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1366)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1411), 20, var$2, $rt_s(1412), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1413), ong_NotificationClassification_DEPRECATION); ong_GqlStatusInfoCodes_STATUS_01N02 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1367)); + var$2 = ong_GqlStatus__init_($rt_s(1414)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procField; var$4[1] = ong_GqlParams$StringParam_proc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1368), 21, var$2, $rt_s(1369), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1370)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1415), 21, var$2, $rt_s(1416), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1417), ong_NotificationClassification_DEPRECATION); ong_GqlStatusInfoCodes_STATUS_01N03 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1371)); + var$2 = ong_GqlStatus__init_($rt_s(1418)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_variableList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1372), 22, var$2, $rt_s(1373), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_WARNING, $rt_s(1374)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1419), 22, var$2, $rt_s(1420), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_WARNING, $rt_s(1421), ong_NotificationClassification_HINT); ong_GqlStatusInfoCodes_STATUS_01N30 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1375)); + var$2 = ong_GqlStatus__init_($rt_s(1422)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idxDescr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1376), 23, var$2, $rt_s(1377), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1378)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1423), 23, var$2, $rt_s(1424), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1425), ong_NotificationClassification_HINT); ong_GqlStatusInfoCodes_STATUS_01N31 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1379)); + var$2 = ong_GqlStatus__init_($rt_s(1426)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_preparserInput1; var$4[1] = ong_GqlParams$StringParam_preparserInput2; var$4[2] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1380), 24, var$2, $rt_s(1381), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1382)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1427), 24, var$2, $rt_s(1428), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1429), ong_NotificationClassification_UNSUPPORTED); ong_GqlStatusInfoCodes_STATUS_01N40 = var$1; - ong_GqlStatusInfoCodes_STATUS_01N42 = ong_GqlStatusInfoCodes__init_0($rt_s(1383), 25, ong_GqlStatus__init_($rt_s(1384)), $rt_s(1385), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1386)); + ong_GqlStatusInfoCodes_STATUS_01N42 = ong_GqlStatusInfoCodes__init_0($rt_s(1430), 25, ong_GqlStatus__init_($rt_s(1431)), $rt_s(1432), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1433), ong_NotificationClassification_UNKNOWN); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1387)); + var$2 = ong_GqlStatus__init_($rt_s(1434)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_label; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1388), 26, var$2, $rt_s(1389), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1390)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1435), 26, var$2, $rt_s(1436), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1437), ong_NotificationClassification_UNRECOGNIZED); ong_GqlStatusInfoCodes_STATUS_01N50 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1391)); + var$2 = ong_GqlStatus__init_($rt_s(1438)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_relType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1392), 27, var$2, $rt_s(1393), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1394)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1439), 27, var$2, $rt_s(1440), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1441), ong_NotificationClassification_UNRECOGNIZED); ong_GqlStatusInfoCodes_STATUS_01N51 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1395)); + var$2 = ong_GqlStatus__init_($rt_s(1442)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_propKey; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1396), 28, var$2, $rt_s(1397), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1398)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1443), 28, var$2, $rt_s(1444), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1445), ong_NotificationClassification_UNRECOGNIZED); ong_GqlStatusInfoCodes_STATUS_01N52 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1399)); + var$2 = ong_GqlStatus__init_($rt_s(1446)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_paramList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1400), 29, var$2, $rt_s(1401), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_WARNING, $rt_s(1402)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1447), 29, var$2, $rt_s(1448), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_WARNING, $rt_s(1449), ong_NotificationClassification_GENERIC); ong_GqlStatusInfoCodes_STATUS_01N60 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1403)); + var$2 = ong_GqlStatus__init_($rt_s(1450)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_labelExpr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1404), 30, var$2, $rt_s(1405), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1406)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1451), 30, var$2, $rt_s(1452), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1453), ong_NotificationClassification_GENERIC); ong_GqlStatusInfoCodes_STATUS_01N61 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1407)); + var$2 = ong_GqlStatus__init_($rt_s(1454)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_proc; var$4[1] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1408), 31, var$2, $rt_s(1409), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1410)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1455), 31, var$2, $rt_s(1456), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1457), ong_NotificationClassification_GENERIC); ong_GqlStatusInfoCodes_STATUS_01N62 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1411)); + var$2 = ong_GqlStatus__init_($rt_s(1458)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_variable; var$4[1] = ong_GqlParams$StringParam_pat; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1412), 32, var$2, $rt_s(1413), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1414)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1459), 32, var$2, $rt_s(1460), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1461), ong_NotificationClassification_GENERIC); ong_GqlStatusInfoCodes_STATUS_01N63 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1415)); + var$2 = ong_GqlStatus__init_($rt_s(1462)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_cmd; var$4[1] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1416), 33, var$2, $rt_s(1417), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1418)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1463), 33, var$2, $rt_s(1464), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1465), ong_NotificationClassification_SECURITY); ong_GqlStatusInfoCodes_STATUS_01N70 = var$1; - ong_GqlStatusInfoCodes_STATUS_01N71 = ong_GqlStatusInfoCodes__init_0($rt_s(1419), 34, ong_GqlStatus__init_($rt_s(1420)), $rt_s(1421), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1422)); + ong_GqlStatusInfoCodes_STATUS_01N71 = ong_GqlStatusInfoCodes__init_0($rt_s(1466), 34, ong_GqlStatus__init_($rt_s(1467)), $rt_s(1468), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1469), ong_NotificationClassification_SECURITY); + ong_GqlStatusInfoCodes_STATUS_01N72 = ong_GqlStatusInfoCodes__init_0($rt_s(1470), 35, ong_GqlStatus__init_($rt_s(1471)), $rt_s(1472), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1473), ong_NotificationClassification_SECURITY); + ong_GqlStatusInfoCodes_STATUS_02000 = ong_GqlStatusInfoCodes__init_0($rt_s(1474), 36, ong_GqlStatus__init_($rt_s(1475)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_NO_DATA, $rt_s(4), ong_NotificationClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_02N42 = ong_GqlStatusInfoCodes__init_0($rt_s(1476), 37, ong_GqlStatus__init_($rt_s(1477)), $rt_s(1478), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_NO_DATA, $rt_s(1479), ong_NotificationClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_03000 = ong_GqlStatusInfoCodes__init_0($rt_s(1480), 38, ong_GqlStatus__init_($rt_s(1481)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(4), ong_NotificationClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_03N42 = ong_GqlStatusInfoCodes__init_0($rt_s(1482), 39, ong_GqlStatus__init_($rt_s(1483)), $rt_s(1484), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1485), ong_NotificationClassification_UNKNOWN); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1423)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); - var$4 = var$3.data; - var$4[0] = ong_GqlParams$StringParam_proc; - var$4[1] = ong_GqlParams$StringParam_msgTitle; - var$4[2] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1424), 35, var$2, $rt_s(1425), var$3, ju_Collections_emptyMap(), ong_Condition_WARNING, $rt_s(1426)); - ong_GqlStatusInfoCodes_STATUS_01U00 = var$1; - ong_GqlStatusInfoCodes_STATUS_02000 = ong_GqlStatusInfoCodes__init_0($rt_s(1427), 36, ong_GqlStatus__init_($rt_s(1428)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_NO_DATA, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_02N42 = ong_GqlStatusInfoCodes__init_0($rt_s(1429), 37, ong_GqlStatus__init_($rt_s(1430)), $rt_s(1431), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_NO_DATA, $rt_s(1432)); - ong_GqlStatusInfoCodes_STATUS_03000 = ong_GqlStatusInfoCodes__init_0($rt_s(1433), 38, ong_GqlStatus__init_($rt_s(1434)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_03N42 = ong_GqlStatusInfoCodes__init_0($rt_s(1435), 39, ong_GqlStatus__init_($rt_s(1436)), $rt_s(1437), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1438)); - var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1439)); + var$2 = ong_GqlStatus__init_($rt_s(1486)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$5 = ong_GqlParams$StringParam_variable; var$4[0] = var$5; var$4[1] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1440), 40, var$2, $rt_s(1441), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1442)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1487), 40, var$2, $rt_s(1488), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1489), ong_NotificationClassification_GENERIC); ong_GqlStatusInfoCodes_STATUS_03N60 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1443)); + var$2 = ong_GqlStatus__init_($rt_s(1490)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_proc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1444), 41, var$2, $rt_s(1445), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1446)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1491), 41, var$2, $rt_s(1492), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1493), ong_NotificationClassification_GENERIC); ong_GqlStatusInfoCodes_STATUS_03N61 = var$1; - ong_GqlStatusInfoCodes_STATUS_03N62 = ong_GqlStatusInfoCodes__init_0($rt_s(1447), 42, ong_GqlStatus__init_($rt_s(1448)), $rt_s(1014), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1449)); + ong_GqlStatusInfoCodes_STATUS_03N62 = ong_GqlStatusInfoCodes__init_0($rt_s(1494), 42, ong_GqlStatus__init_($rt_s(1495)), $rt_s(1034), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1496), ong_NotificationClassification_GENERIC); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1450)); + var$2 = ong_GqlStatus__init_($rt_s(1497)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_pat; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1451), 43, var$2, $rt_s(1452), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1453)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1498), 43, var$2, $rt_s(1499), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1500), ong_NotificationClassification_PERFORMANCE); ong_GqlStatusInfoCodes_STATUS_03N90 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1454)); + var$2 = ong_GqlStatus__init_($rt_s(1501)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_pat; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1455), 44, var$2, $rt_s(1456), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1457)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1502), 44, var$2, $rt_s(1503), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1504), ong_NotificationClassification_PERFORMANCE); ong_GqlStatusInfoCodes_STATUS_03N91 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1458)); + var$2 = ong_GqlStatus__init_($rt_s(1505)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_predList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1459), 45, var$2, $rt_s(1460), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_INFORMATIONAL, $rt_s(1461)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1506), 45, var$2, $rt_s(1507), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_INFORMATIONAL, $rt_s(1508), ong_NotificationClassification_PERFORMANCE); ong_GqlStatusInfoCodes_STATUS_03N92 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1462)); + var$2 = ong_GqlStatus__init_($rt_s(1509)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_label; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1463), 46, var$2, $rt_s(1464), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1465)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1510), 46, var$2, $rt_s(1511), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1512), ong_NotificationClassification_PERFORMANCE); ong_GqlStatusInfoCodes_STATUS_03N93 = var$1; - ong_GqlStatusInfoCodes_STATUS_03N94 = ong_GqlStatusInfoCodes__init_0($rt_s(1466), 47, ong_GqlStatus__init_($rt_s(1467)), $rt_s(1468), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1469)); + ong_GqlStatusInfoCodes_STATUS_03N94 = ong_GqlStatusInfoCodes__init_0($rt_s(1513), 47, ong_GqlStatus__init_($rt_s(1514)), $rt_s(1515), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1516), ong_NotificationClassification_PERFORMANCE); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1470)); + var$2 = ong_GqlStatus__init_($rt_s(1517)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_labelList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1471), 48, var$2, $rt_s(1472), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_INFORMATIONAL, $rt_s(1473)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1518), 48, var$2, $rt_s(1519), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_INFORMATIONAL, $rt_s(1520), ong_NotificationClassification_PERFORMANCE); ong_GqlStatusInfoCodes_STATUS_03N95 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1474)); + var$2 = ong_GqlStatus__init_($rt_s(1521)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_cfgSetting; var$4[1] = ong_GqlParams$StringParam_cause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1475), 49, var$2, $rt_s(1476), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1477)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1522), 49, var$2, $rt_s(1523), var$3, ju_Collections_emptyMap(), ong_Condition_INFORMATIONAL, $rt_s(1524), ong_NotificationClassification_PERFORMANCE); ong_GqlStatusInfoCodes_STATUS_03N96 = var$1; - ong_GqlStatusInfoCodes_STATUS_08000 = ong_GqlStatusInfoCodes__init_0($rt_s(1478), 50, ong_GqlStatus__init_($rt_s(1479)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_08007 = ong_GqlStatusInfoCodes__init_0($rt_s(1480), 51, ong_GqlStatus__init_($rt_s(1481)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1482)); + ong_GqlStatusInfoCodes_STATUS_08000 = ong_GqlStatusInfoCodes__init_0($rt_s(1525), 50, ong_GqlStatus__init_($rt_s(1526)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(4), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_08007 = ong_GqlStatusInfoCodes__init_0($rt_s(1527), 51, ong_GqlStatus__init_($rt_s(1528)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1529), ong_ErrorClassification_UNKNOWN); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1483)); + var$2 = ong_GqlStatus__init_($rt_s(1530)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1484), 52, var$2, $rt_s(1485), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1486)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1531), 52, var$2, $rt_s(1532), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1533), ong_ErrorClassification_TRANSIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N00 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1487)); + var$2 = ong_GqlStatus__init_($rt_s(1534)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_db; var$4[1] = ong_GqlParams$StringParam_cfgSetting; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1488), 53, var$2, $rt_s(1489), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1490)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1535), 53, var$2, $rt_s(1536), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1537), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N01 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1491)); + var$2 = ong_GqlStatus__init_($rt_s(1538)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$5 = ong_GqlParams$StringParam_db; var$4[0] = var$5; var$4[1] = var$5; var$4[2] = ong_GqlParams$StringParam_cfgSetting; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1492), 54, var$2, $rt_s(1493), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1494)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1539), 54, var$2, $rt_s(1540), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1541), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N02 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1495)); + var$2 = ong_GqlStatus__init_($rt_s(1542)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_graph; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1496), 55, var$2, $rt_s(1497), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1498)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1543), 55, var$2, $rt_s(1544), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1545), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N03 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1499)); + var$2 = ong_GqlStatus__init_($rt_s(1546)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1500), 56, var$2, $rt_s(1501), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1502)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1547), 56, var$2, $rt_s(1548), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1549), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N04 = var$1; - ong_GqlStatusInfoCodes_STATUS_08N05 = ong_GqlStatusInfoCodes__init_0($rt_s(1503), 57, ong_GqlStatus__init_($rt_s(1504)), $rt_s(1505), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1506)); - ong_GqlStatusInfoCodes_STATUS_08N06 = ong_GqlStatusInfoCodes__init_0($rt_s(1507), 58, ong_GqlStatus__init_($rt_s(1508)), $rt_s(1509), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1510)); - ong_GqlStatusInfoCodes_STATUS_08N07 = ong_GqlStatusInfoCodes__init_0($rt_s(1511), 59, ong_GqlStatus__init_($rt_s(1512)), $rt_s(1513), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1514)); - ong_GqlStatusInfoCodes_STATUS_08N08 = ong_GqlStatusInfoCodes__init_0($rt_s(1515), 60, ong_GqlStatus__init_($rt_s(1516)), $rt_s(1517), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1518)); + ong_GqlStatusInfoCodes_STATUS_08N05 = ong_GqlStatusInfoCodes__init_0($rt_s(1550), 57, ong_GqlStatus__init_($rt_s(1551)), $rt_s(1552), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1553), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_08N06 = ong_GqlStatusInfoCodes__init_0($rt_s(1554), 58, ong_GqlStatus__init_($rt_s(1555)), $rt_s(1556), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1557), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_08N07 = ong_GqlStatusInfoCodes__init_0($rt_s(1558), 59, ong_GqlStatus__init_($rt_s(1559)), $rt_s(1560), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1561), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_08N08 = ong_GqlStatusInfoCodes__init_0($rt_s(1562), 60, ong_GqlStatus__init_($rt_s(1563)), $rt_s(1564), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1565), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1519)); + var$2 = ong_GqlStatus__init_($rt_s(1566)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1520), 61, var$2, $rt_s(1521), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1522)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1567), 61, var$2, $rt_s(1568), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1569), ong_ErrorClassification_TRANSIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N09 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1523)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); - var$3.data[0] = ong_GqlParams$StringParam_boltMsgType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1524), 62, var$2, $rt_s(1525), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1526)); + var$2 = ong_GqlStatus__init_($rt_s(1570)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); + var$4 = var$3.data; + var$4[0] = ong_GqlParams$StringParam_msg; + var$4[1] = ong_GqlParams$StringParam_boltServerState; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1571), 62, var$2, $rt_s(1572), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1573), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N10 = var$1; - ong_GqlStatusInfoCodes_STATUS_08N11 = ong_GqlStatusInfoCodes__init_0($rt_s(1527), 63, ong_GqlStatus__init_($rt_s(1528)), $rt_s(1529), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1530)); - ong_GqlStatusInfoCodes_STATUS_08N12 = ong_GqlStatusInfoCodes__init_0($rt_s(1531), 64, ong_GqlStatus__init_($rt_s(1532)), $rt_s(1533), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1534)); + ong_GqlStatusInfoCodes_STATUS_08N11 = ong_GqlStatusInfoCodes__init_0($rt_s(1574), 63, ong_GqlStatus__init_($rt_s(1575)), $rt_s(1576), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1577), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_08N12 = ong_GqlStatusInfoCodes__init_0($rt_s(1578), 64, ong_GqlStatus__init_($rt_s(1579)), $rt_s(1580), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1581), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1535)); + var$2 = ong_GqlStatus__init_($rt_s(1582)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_db; var$4[1] = ong_GqlParams$StringParam_transactionId1; var$4[2] = ong_GqlParams$StringParam_transactionId2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1536), 65, var$2, $rt_s(1537), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1538)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1583), 65, var$2, $rt_s(1584), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1585), ong_ErrorClassification_TRANSIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N13 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1539)); + var$2 = ong_GqlStatus__init_($rt_s(1586)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_alias1; var$4[1] = ong_GqlParams$StringParam_alias2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1540), 66, var$2, $rt_s(1541), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1542)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1587), 66, var$2, $rt_s(1588), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1589), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N14 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1543)); + var$2 = ong_GqlStatus__init_($rt_s(1590)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_routingPolicy; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1544), 67, var$2, $rt_s(1545), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1546)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1591), 67, var$2, $rt_s(1592), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1593), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_08N15 = var$1; - ong_GqlStatusInfoCodes_STATUS_22000 = ong_GqlStatusInfoCodes__init_0($rt_s(1547), 68, ong_GqlStatus__init_($rt_s(1548)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_22001 = ong_GqlStatusInfoCodes__init_0($rt_s(1549), 69, ong_GqlStatus__init_($rt_s(1550)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1346)); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1551)); + var$2 = ong_GqlStatus__init_($rt_s(1594)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); - var$4 = var$3.data; - ong_GqlParams$NumberParam_$callClinit(); - var$4[0] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1552), 70, var$2, $rt_s(1553), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1554)); + var$3.data[0] = ong_GqlParams$StringParam_msg; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1595), 68, var$2, $rt_s(1596), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1597), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_08N16 = var$1; + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(1598)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_msg; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1599), 69, var$2, $rt_s(1596), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1600), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_08N17 = var$1; + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(1601)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_msg; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1602), 70, var$2, $rt_s(1596), var$3, ju_Collections_emptyMap(), ong_Condition_CONNECTION_EXCEPTION, $rt_s(1603), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_08N18 = var$1; + ong_GqlStatusInfoCodes_STATUS_22000 = ong_GqlStatusInfoCodes__init_0($rt_s(1604), 71, ong_GqlStatus__init_($rt_s(1605)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(4), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22001 = ong_GqlStatusInfoCodes__init_0($rt_s(1606), 72, ong_GqlStatus__init_($rt_s(1607)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1393), ong_ErrorClassification_UNKNOWN); + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(1608)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_value; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1609), 73, var$2, $rt_s(1610), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1611), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22003 = var$1; - ong_GqlStatusInfoCodes_STATUS_22004 = ong_GqlStatusInfoCodes__init_0($rt_s(1555), 71, ong_GqlStatus__init_($rt_s(1556)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1557)); - ong_GqlStatusInfoCodes_STATUS_22007 = ong_GqlStatusInfoCodes__init_0($rt_s(1558), 72, ong_GqlStatus__init_($rt_s(1559)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1560)); - ong_GqlStatusInfoCodes_STATUS_22008 = ong_GqlStatusInfoCodes__init_0($rt_s(1561), 73, ong_GqlStatus__init_($rt_s(1562)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1563)); - ong_GqlStatusInfoCodes_STATUS_22011 = ong_GqlStatusInfoCodes__init_0($rt_s(1564), 74, ong_GqlStatus__init_($rt_s(1565)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1566)); - ong_GqlStatusInfoCodes_STATUS_22012 = ong_GqlStatusInfoCodes__init_0($rt_s(1567), 75, ong_GqlStatus__init_($rt_s(1568)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1569)); - ong_GqlStatusInfoCodes_STATUS_22015 = ong_GqlStatusInfoCodes__init_0($rt_s(1570), 76, ong_GqlStatus__init_($rt_s(1571)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1572)); + ong_GqlStatusInfoCodes_STATUS_22004 = ong_GqlStatusInfoCodes__init_0($rt_s(1612), 74, ong_GqlStatus__init_($rt_s(1613)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1614), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22007 = ong_GqlStatusInfoCodes__init_0($rt_s(1615), 75, ong_GqlStatus__init_($rt_s(1616)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1617), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22008 = ong_GqlStatusInfoCodes__init_0($rt_s(1618), 76, ong_GqlStatus__init_($rt_s(1619)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1620), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22011 = ong_GqlStatusInfoCodes__init_0($rt_s(1621), 77, ong_GqlStatus__init_($rt_s(1622)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1623), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22012 = ong_GqlStatusInfoCodes__init_0($rt_s(1624), 78, ong_GqlStatus__init_($rt_s(1625)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1626), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22015 = ong_GqlStatusInfoCodes__init_0($rt_s(1627), 79, ong_GqlStatus__init_($rt_s(1628)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1629), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1573)); + var$2 = ong_GqlStatus__init_($rt_s(1630)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1574), 77, var$2, $rt_s(1575), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1576)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1631), 80, var$2, $rt_s(1632), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1633), ong_ErrorClassification_UNKNOWN); ong_GqlStatusInfoCodes_STATUS_22018 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1577)); + var$2 = ong_GqlStatus__init_($rt_s(1634)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1578), 78, var$2, $rt_s(1579), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1580)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1635), 81, var$2, $rt_s(1636), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1637), ong_ErrorClassification_UNKNOWN); ong_GqlStatusInfoCodes_STATUS_2201E = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1581)); + var$2 = ong_GqlStatus__init_($rt_s(1638)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1582), 79, var$2, $rt_s(1583), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1584)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1639), 82, var$2, $rt_s(1640), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1641), ong_ErrorClassification_UNKNOWN); ong_GqlStatusInfoCodes_STATUS_2201F = var$1; - ong_GqlStatusInfoCodes_STATUS_22027 = ong_GqlStatusInfoCodes__init_0($rt_s(1585), 80, ong_GqlStatus__init_($rt_s(1586)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1587)); - ong_GqlStatusInfoCodes_STATUS_2202F = ong_GqlStatusInfoCodes__init_0($rt_s(1588), 81, ong_GqlStatus__init_($rt_s(1589)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1590)); - ong_GqlStatusInfoCodes_STATUS_22G02 = ong_GqlStatusInfoCodes__init_0($rt_s(1591), 82, ong_GqlStatus__init_($rt_s(1592)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1593)); - ong_GqlStatusInfoCodes_STATUS_22G03 = ong_GqlStatusInfoCodes__init_0($rt_s(1594), 83, ong_GqlStatus__init_($rt_s(1595)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1596)); - ong_GqlStatusInfoCodes_STATUS_22G04 = ong_GqlStatusInfoCodes__init_0($rt_s(1597), 84, ong_GqlStatus__init_($rt_s(1598)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1599)); - ong_GqlStatusInfoCodes_STATUS_22G05 = ong_GqlStatusInfoCodes__init_0($rt_s(1600), 85, ong_GqlStatus__init_($rt_s(1601)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1602)); - ong_GqlStatusInfoCodes_STATUS_22G06 = ong_GqlStatusInfoCodes__init_0($rt_s(1603), 86, ong_GqlStatus__init_($rt_s(1604)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1605)); - ong_GqlStatusInfoCodes_STATUS_22G07 = ong_GqlStatusInfoCodes__init_0($rt_s(1606), 87, ong_GqlStatus__init_($rt_s(1607)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1608)); - ong_GqlStatusInfoCodes_STATUS_22G0B = ong_GqlStatusInfoCodes__init_0($rt_s(1609), 88, ong_GqlStatus__init_($rt_s(1610)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1611)); - ong_GqlStatusInfoCodes_STATUS_22G0C = ong_GqlStatusInfoCodes__init_0($rt_s(1612), 89, ong_GqlStatus__init_($rt_s(1613)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1614)); - ong_GqlStatusInfoCodes_STATUS_22G0F = ong_GqlStatusInfoCodes__init_0($rt_s(1615), 90, ong_GqlStatus__init_($rt_s(1616)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1617)); + ong_GqlStatusInfoCodes_STATUS_22027 = ong_GqlStatusInfoCodes__init_0($rt_s(1642), 83, ong_GqlStatus__init_($rt_s(1643)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1644), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_2202F = ong_GqlStatusInfoCodes__init_0($rt_s(1645), 84, ong_GqlStatus__init_($rt_s(1646)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1647), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G02 = ong_GqlStatusInfoCodes__init_0($rt_s(1648), 85, ong_GqlStatus__init_($rt_s(1649)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1650), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G03 = ong_GqlStatusInfoCodes__init_0($rt_s(1651), 86, ong_GqlStatus__init_($rt_s(1652)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1653), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G04 = ong_GqlStatusInfoCodes__init_0($rt_s(1654), 87, ong_GqlStatus__init_($rt_s(1655)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1656), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G05 = ong_GqlStatusInfoCodes__init_0($rt_s(1657), 88, ong_GqlStatus__init_($rt_s(1658)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1659), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22G06 = ong_GqlStatusInfoCodes__init_0($rt_s(1660), 89, ong_GqlStatus__init_($rt_s(1661)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1662), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G07 = ong_GqlStatusInfoCodes__init_0($rt_s(1663), 90, ong_GqlStatus__init_($rt_s(1664)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1665), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0B = ong_GqlStatusInfoCodes__init_0($rt_s(1666), 91, ong_GqlStatus__init_($rt_s(1667)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1668), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0C = ong_GqlStatusInfoCodes__init_0($rt_s(1669), 92, ong_GqlStatus__init_($rt_s(1670)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1671), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0F = ong_GqlStatusInfoCodes__init_0($rt_s(1672), 93, ong_GqlStatus__init_($rt_s(1673)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1674), ong_ErrorClassification_UNKNOWN); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1618)); + var$2 = ong_GqlStatus__init_($rt_s(1675)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_format; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1619), 91, var$2, $rt_s(1620), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1621)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1676), 94, var$2, $rt_s(1677), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1678), ong_ErrorClassification_UNKNOWN); ong_GqlStatusInfoCodes_STATUS_22G0H = var$1; - ong_GqlStatusInfoCodes_STATUS_22G0M = ong_GqlStatusInfoCodes__init_0($rt_s(1622), 92, ong_GqlStatus__init_($rt_s(1623)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1624)); - ong_GqlStatusInfoCodes_STATUS_22G0N = ong_GqlStatusInfoCodes__init_0($rt_s(1625), 93, ong_GqlStatus__init_($rt_s(1626)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1627)); - ong_GqlStatusInfoCodes_STATUS_22G0P = ong_GqlStatusInfoCodes__init_0($rt_s(1628), 94, ong_GqlStatus__init_($rt_s(1629)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1630)); - ong_GqlStatusInfoCodes_STATUS_22G0Q = ong_GqlStatusInfoCodes__init_0($rt_s(1631), 95, ong_GqlStatus__init_($rt_s(1632)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1633)); - ong_GqlStatusInfoCodes_STATUS_22G0R = ong_GqlStatusInfoCodes__init_0($rt_s(1634), 96, ong_GqlStatus__init_($rt_s(1635)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1636)); - ong_GqlStatusInfoCodes_STATUS_22G0S = ong_GqlStatusInfoCodes__init_0($rt_s(1637), 97, ong_GqlStatus__init_($rt_s(1638)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1639)); - ong_GqlStatusInfoCodes_STATUS_22G0T = ong_GqlStatusInfoCodes__init_0($rt_s(1640), 98, ong_GqlStatus__init_($rt_s(1641)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1642)); - ong_GqlStatusInfoCodes_STATUS_22G0U = ong_GqlStatusInfoCodes__init_0($rt_s(1643), 99, ong_GqlStatus__init_($rt_s(1644)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1645)); - ong_GqlStatusInfoCodes_STATUS_22G0V = ong_GqlStatusInfoCodes__init_0($rt_s(1646), 100, ong_GqlStatus__init_($rt_s(1647)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1648)); - ong_GqlStatusInfoCodes_STATUS_22G0W = ong_GqlStatusInfoCodes__init_0($rt_s(1649), 101, ong_GqlStatus__init_($rt_s(1650)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1651)); - ong_GqlStatusInfoCodes_STATUS_22G0X = ong_GqlStatusInfoCodes__init_0($rt_s(1652), 102, ong_GqlStatus__init_($rt_s(1653)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1654)); - ong_GqlStatusInfoCodes_STATUS_22G0Y = ong_GqlStatusInfoCodes__init_0($rt_s(1655), 103, ong_GqlStatus__init_($rt_s(1656)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1657)); - ong_GqlStatusInfoCodes_STATUS_22G0Z = ong_GqlStatusInfoCodes__init_0($rt_s(1658), 104, ong_GqlStatus__init_($rt_s(1659)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1660)); - ong_GqlStatusInfoCodes_STATUS_22G10 = ong_GqlStatusInfoCodes__init_0($rt_s(1661), 105, ong_GqlStatus__init_($rt_s(1662)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1663)); - ong_GqlStatusInfoCodes_STATUS_22G11 = ong_GqlStatusInfoCodes__init_0($rt_s(1664), 106, ong_GqlStatus__init_($rt_s(1665)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1666)); - ong_GqlStatusInfoCodes_STATUS_22G12 = ong_GqlStatusInfoCodes__init_0($rt_s(1667), 107, ong_GqlStatus__init_($rt_s(1668)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1596)); - ong_GqlStatusInfoCodes_STATUS_22G13 = ong_GqlStatusInfoCodes__init_0($rt_s(1669), 108, ong_GqlStatus__init_($rt_s(1670)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1671)); - ong_GqlStatusInfoCodes_STATUS_22G14 = ong_GqlStatusInfoCodes__init_0($rt_s(1672), 109, ong_GqlStatus__init_($rt_s(1673)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1674)); - ong_GqlStatusInfoCodes_STATUS_22N00 = ong_GqlStatusInfoCodes__init_0($rt_s(1675), 110, ong_GqlStatus__init_($rt_s(1676)), $rt_s(1677), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1678)); + ong_GqlStatusInfoCodes_STATUS_22G0M = ong_GqlStatusInfoCodes__init_0($rt_s(1679), 95, ong_GqlStatus__init_($rt_s(1680)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1681), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0N = ong_GqlStatusInfoCodes__init_0($rt_s(1682), 96, ong_GqlStatus__init_($rt_s(1683)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1684), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0P = ong_GqlStatusInfoCodes__init_0($rt_s(1685), 97, ong_GqlStatus__init_($rt_s(1686)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1687), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0Q = ong_GqlStatusInfoCodes__init_0($rt_s(1688), 98, ong_GqlStatus__init_($rt_s(1689)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1690), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0R = ong_GqlStatusInfoCodes__init_0($rt_s(1691), 99, ong_GqlStatus__init_($rt_s(1692)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1693), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0S = ong_GqlStatusInfoCodes__init_0($rt_s(1694), 100, ong_GqlStatus__init_($rt_s(1695)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1696), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0T = ong_GqlStatusInfoCodes__init_0($rt_s(1697), 101, ong_GqlStatus__init_($rt_s(1698)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1699), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0U = ong_GqlStatusInfoCodes__init_0($rt_s(1700), 102, ong_GqlStatus__init_($rt_s(1701)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1702), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0V = ong_GqlStatusInfoCodes__init_0($rt_s(1703), 103, ong_GqlStatus__init_($rt_s(1704)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1705), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0W = ong_GqlStatusInfoCodes__init_0($rt_s(1706), 104, ong_GqlStatus__init_($rt_s(1707)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1708), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0X = ong_GqlStatusInfoCodes__init_0($rt_s(1709), 105, ong_GqlStatus__init_($rt_s(1710)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1711), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0Y = ong_GqlStatusInfoCodes__init_0($rt_s(1712), 106, ong_GqlStatus__init_($rt_s(1713)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1714), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G0Z = ong_GqlStatusInfoCodes__init_0($rt_s(1715), 107, ong_GqlStatus__init_($rt_s(1716)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1717), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G10 = ong_GqlStatusInfoCodes__init_0($rt_s(1718), 108, ong_GqlStatus__init_($rt_s(1719)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1720), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G11 = ong_GqlStatusInfoCodes__init_0($rt_s(1721), 109, ong_GqlStatus__init_($rt_s(1722)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1723), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G13 = ong_GqlStatusInfoCodes__init_0($rt_s(1724), 110, ong_GqlStatus__init_($rt_s(1725)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1726), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22G14 = ong_GqlStatusInfoCodes__init_0($rt_s(1727), 111, ong_GqlStatus__init_($rt_s(1728)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1729), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_22N00 = ong_GqlStatusInfoCodes__init_0($rt_s(1730), 112, ong_GqlStatus__init_($rt_s(1731)), $rt_s(1732), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1733), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1679)); + var$2 = ong_GqlStatus__init_($rt_s(1734)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_value; var$5 = ong_GqlParams$ListParam_valueTypeList; var$4[1] = var$5; var$4[2] = ong_GqlParams$StringParam_valueType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1680), 111, var$2, $rt_s(1681), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ORED), ong_Condition_DATA_EXCEPTION, $rt_s(1682)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1735), 113, var$2, $rt_s(1736), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ORED), ong_Condition_DATA_EXCEPTION, $rt_s(1737), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N01 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1683)); + var$2 = ong_GqlStatus__init_($rt_s(1738)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_option; var$4[1] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1684), 112, var$2, $rt_s(1685), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1686)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1739), 114, var$2, $rt_s(1740), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1741), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N02 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1687)); + var$2 = ong_GqlStatus__init_($rt_s(1742)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 5); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_component; var$4[1] = ong_GqlParams$StringParam_valueType; var$4[2] = ong_GqlParams$NumberParam_lower; var$4[3] = ong_GqlParams$NumberParam_upper; - var$4[4] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1688), 113, var$2, $rt_s(1689), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1690)); + var$4[4] = ong_GqlParams$StringParam_value; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1743), 115, var$2, $rt_s(1744), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1745), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N03 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1691)); + var$2 = ong_GqlStatus__init_($rt_s(1746)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; var$4[1] = ong_GqlParams$StringParam_context; var$5 = ong_GqlParams$ListParam_inputList; var$4[2] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1692), 114, var$2, $rt_s(1693), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ORED), ong_Condition_DATA_EXCEPTION, $rt_s(1694)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1747), 116, var$2, $rt_s(1748), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ORED), ong_Condition_DATA_EXCEPTION, $rt_s(1749), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N04 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1695)); + var$2 = ong_GqlStatus__init_($rt_s(1750)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; var$4[1] = ong_GqlParams$StringParam_context; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1696), 115, var$2, $rt_s(1697), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1698)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1751), 117, var$2, $rt_s(1752), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1753), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N05 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1699)); + var$2 = ong_GqlStatus__init_($rt_s(1754)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_option; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1700), 116, var$2, $rt_s(1701), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1702)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1755), 118, var$2, $rt_s(1756), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1757), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N06 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1703)); + var$2 = ong_GqlStatus__init_($rt_s(1758)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_optionList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1704), 117, var$2, $rt_s(1705), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_DATA_EXCEPTION, $rt_s(1706)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1759), 119, var$2, $rt_s(1760), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_DATA_EXCEPTION, $rt_s(1761), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N07 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1707)); + var$2 = ong_GqlStatus__init_($rt_s(1762)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_option1; var$4[1] = ong_GqlParams$StringParam_option2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1708), 118, var$2, $rt_s(1709), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1710)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1763), 120, var$2, $rt_s(1764), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1765), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N08 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1711)); + var$2 = ong_GqlStatus__init_($rt_s(1766)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_option; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1712), 119, var$2, $rt_s(1713), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1714)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1767), 121, var$2, $rt_s(1768), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1769), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N09 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1715)); + var$2 = ong_GqlStatus__init_($rt_s(1770)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; var$4[1] = ong_GqlParams$StringParam_option; var$5 = ong_GqlParams$ListParam_optionList; var$4[2] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1716), 120, var$2, $rt_s(1717), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_DATA_EXCEPTION, $rt_s(1718)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1771), 122, var$2, $rt_s(1772), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_DATA_EXCEPTION, $rt_s(1773), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N10 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1719)); + var$2 = ong_GqlStatus__init_($rt_s(1774)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1720), 121, var$2, $rt_s(1721), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1722)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1775), 123, var$2, $rt_s(1776), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1777), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N11 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1723)); + var$2 = ong_GqlStatus__init_($rt_s(1778)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1724), 122, var$2, $rt_s(1721), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1560)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1779), 124, var$2, $rt_s(1776), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1617), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N12 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N13 = ong_GqlStatusInfoCodes__init_0($rt_s(1725), 123, ong_GqlStatus__init_($rt_s(1726)), $rt_s(1727), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1728)); + ong_GqlStatusInfoCodes_STATUS_22N13 = ong_GqlStatusInfoCodes__init_0($rt_s(1780), 125, ong_GqlStatus__init_($rt_s(1781)), $rt_s(1782), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1783), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1729)); + var$2 = ong_GqlStatus__init_($rt_s(1784)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_temporal; var$4[1] = ong_GqlParams$StringParam_component; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1730), 124, var$2, $rt_s(1731), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1732)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1785), 126, var$2, $rt_s(1786), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1787), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N14 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1733)); + var$2 = ong_GqlStatus__init_($rt_s(1788)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_component; var$4[1] = ong_GqlParams$StringParam_temporal; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1734), 125, var$2, $rt_s(1735), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1736)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1789), 127, var$2, $rt_s(1790), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1791), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N15 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1737)); + var$2 = ong_GqlStatus__init_($rt_s(1792)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_expr; var$4[1] = ong_GqlParams$StringParam_graph; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1738), 126, var$2, $rt_s(1739), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1740)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1793), 128, var$2, $rt_s(1794), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1795), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N16 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1741)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); - var$4 = var$3.data; - var$4[0] = ong_GqlParams$StringParam_component; - var$4[1] = ong_GqlParams$StringParam_temporal; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1742), 127, var$2, $rt_s(1735), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1602)); - ong_GqlStatusInfoCodes_STATUS_22N17 = var$1; - var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1743)); + var$2 = ong_GqlStatus__init_($rt_s(1796)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_crs; var$5 = ong_GqlParams$ListParam_mapKeyList; var$4[1] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1744), 128, var$2, $rt_s(1745), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_DATA_EXCEPTION, $rt_s(1746)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1797), 129, var$2, $rt_s(1798), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_DATA_EXCEPTION, $rt_s(1799), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N18 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N19 = ong_GqlStatusInfoCodes__init_0($rt_s(1747), 129, ong_GqlStatus__init_($rt_s(1748)), $rt_s(1749), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1750)); + ong_GqlStatusInfoCodes_STATUS_22N19 = ong_GqlStatusInfoCodes__init_0($rt_s(1800), 130, ong_GqlStatus__init_($rt_s(1801)), $rt_s(1802), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1803), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1751)); + var$2 = ong_GqlStatus__init_($rt_s(1804)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$NumberParam_dim1; var$4[1] = ong_GqlParams$NumberParam_value; var$4[2] = ong_GqlParams$NumberParam_dim2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1752), 130, var$2, $rt_s(1753), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1754)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1805), 131, var$2, $rt_s(1806), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1807), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N20 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1755)); + var$2 = ong_GqlStatus__init_($rt_s(1808)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_crs; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1756), 131, var$2, $rt_s(1757), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1758)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1809), 132, var$2, $rt_s(1810), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1811), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N21 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N22 = ong_GqlStatusInfoCodes__init_0($rt_s(1759), 132, ong_GqlStatus__init_($rt_s(1760)), $rt_s(1761), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1762)); + ong_GqlStatusInfoCodes_STATUS_22N22 = ong_GqlStatusInfoCodes__init_0($rt_s(1812), 133, ong_GqlStatus__init_($rt_s(1813)), $rt_s(1814), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1815), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1763)); + var$2 = ong_GqlStatus__init_($rt_s(1816)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_coordinates; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1764), 133, var$2, $rt_s(1765), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1766)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1817), 134, var$2, $rt_s(1818), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1819), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N23 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1767)); + var$2 = ong_GqlStatus__init_($rt_s(1820)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_valueType; var$4[1] = ong_GqlParams$StringParam_coordinates; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1768), 134, var$2, $rt_s(1769), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1770)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1821), 135, var$2, $rt_s(1822), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1823), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N24 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1771)); + var$2 = ong_GqlStatus__init_($rt_s(1824)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_valueType; var$4[1] = ong_GqlParams$StringParam_temporal; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1772), 135, var$2, $rt_s(1769), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1773)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1825), 136, var$2, $rt_s(1822), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1826), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N25 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N26 = ong_GqlStatusInfoCodes__init_0($rt_s(1774), 136, ong_GqlStatus__init_($rt_s(1775)), $rt_s(1776), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1777)); + ong_GqlStatusInfoCodes_STATUS_22N26 = ong_GqlStatusInfoCodes__init_0($rt_s(1827), 137, ong_GqlStatus__init_($rt_s(1828)), $rt_s(1829), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1830), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1778)); + var$2 = ong_GqlStatus__init_($rt_s(1831)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; - var$4[1] = ong_GqlParams$StringParam_variable; + var$4[1] = ong_GqlParams$StringParam_context; var$5 = ong_GqlParams$ListParam_valueTypeList; var$4[2] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1779), 137, var$2, $rt_s(1780), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ORED), ong_Condition_DATA_EXCEPTION, $rt_s(1781)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1832), 138, var$2, $rt_s(1833), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ORED), ong_Condition_DATA_EXCEPTION, $rt_s(1834), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N27 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1782)); + var$2 = ong_GqlStatus__init_($rt_s(1835)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_operation; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1783), 138, var$2, $rt_s(1784), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1785)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1836), 139, var$2, $rt_s(1837), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1838), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N28 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N29 = ong_GqlStatusInfoCodes__init_0($rt_s(1786), 139, ong_GqlStatus__init_($rt_s(1787)), $rt_s(1788), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1789)); - ong_GqlStatusInfoCodes_STATUS_22N30 = ong_GqlStatusInfoCodes__init_0($rt_s(1790), 140, ong_GqlStatus__init_($rt_s(1791)), $rt_s(1792), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1793)); - ong_GqlStatusInfoCodes_STATUS_22N31 = ong_GqlStatusInfoCodes__init_0($rt_s(1794), 141, ong_GqlStatus__init_($rt_s(1795)), $rt_s(1796), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1797)); - ong_GqlStatusInfoCodes_STATUS_22N32 = ong_GqlStatusInfoCodes__init_0($rt_s(1798), 142, ong_GqlStatus__init_($rt_s(1799)), $rt_s(1800), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1801)); + ong_GqlStatusInfoCodes_STATUS_22N29 = ong_GqlStatusInfoCodes__init_0($rt_s(1839), 140, ong_GqlStatus__init_($rt_s(1840)), $rt_s(1841), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1842), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N30 = ong_GqlStatusInfoCodes__init_0($rt_s(1843), 141, ong_GqlStatus__init_($rt_s(1844)), $rt_s(1845), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1846), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N31 = ong_GqlStatusInfoCodes__init_0($rt_s(1847), 142, ong_GqlStatus__init_($rt_s(1848)), $rt_s(1849), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1850), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N32 = ong_GqlStatusInfoCodes__init_0($rt_s(1851), 143, ong_GqlStatus__init_($rt_s(1852)), $rt_s(1853), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1854), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1802)); + var$2 = ong_GqlStatus__init_($rt_s(1855)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1803), 143, var$2, $rt_s(1804), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1805)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1856), 144, var$2, $rt_s(1857), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1858), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N33 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1806)); + var$2 = ong_GqlStatus__init_($rt_s(1859)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1807), 144, var$2, $rt_s(1808), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1809)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1860), 145, var$2, $rt_s(1861), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1862), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N34 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1810)); + var$2 = ong_GqlStatus__init_($rt_s(1863)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1811), 145, var$2, $rt_s(1812), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1813)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1864), 146, var$2, $rt_s(1865), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1866), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N35 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1814)); + var$2 = ong_GqlStatus__init_($rt_s(1867)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; var$4[1] = ong_GqlParams$StringParam_valueType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1815), 146, var$2, $rt_s(1816), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1817)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1868), 147, var$2, $rt_s(1869), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1870), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N36 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1818)); + var$2 = ong_GqlStatus__init_($rt_s(1871)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; - var$4[0] = ong_GqlParams$NumberParam_value; + var$4[0] = ong_GqlParams$StringParam_value; var$4[1] = ong_GqlParams$StringParam_valueType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1819), 147, var$2, $rt_s(1820), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1821)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1872), 148, var$2, $rt_s(1873), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1874), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N37 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1822)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 4); - var$4 = var$3.data; - var$4[0] = ong_GqlParams$StringParam_fun; - var$5 = ong_GqlParams$ListParam_valueTypeList; - var$4[1] = var$5; - var$4[2] = ong_GqlParams$NumberParam_value; - var$4[3] = ong_GqlParams$StringParam_valueType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1823), 148, var$2, $rt_s(1824), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ORED), ong_Condition_DATA_EXCEPTION, $rt_s(1825)); + var$2 = ong_GqlStatus__init_($rt_s(1875)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_fun; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1876), 149, var$2, $rt_s(1877), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1878), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N38 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1826)); + var$2 = ong_GqlStatus__init_($rt_s(1879)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1827), 149, var$2, $rt_s(1828), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1829)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1880), 150, var$2, $rt_s(1881), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1882), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N39 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1830)); + var$2 = ong_GqlStatus__init_($rt_s(1883)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_component; var$4[1] = ong_GqlParams$StringParam_valueType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1831), 150, var$2, $rt_s(1832), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1833)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1884), 151, var$2, $rt_s(1885), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1886), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N40 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1834)); + var$2 = ong_GqlStatus__init_($rt_s(1887)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1835), 151, var$2, $rt_s(1836), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1837)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1888), 152, var$2, $rt_s(1889), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1890), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N41 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1838)); + var$2 = ong_GqlStatus__init_($rt_s(1891)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1839), 152, var$2, $rt_s(1840), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1841)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1892), 153, var$2, $rt_s(1893), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1894), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N42 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1842)); + var$2 = ong_GqlStatus__init_($rt_s(1895)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_url; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1843), 153, var$2, $rt_s(1844), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1845)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1896), 154, var$2, $rt_s(1897), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1898), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N43 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N44 = ong_GqlStatusInfoCodes__init_0($rt_s(1846), 154, ong_GqlStatus__init_($rt_s(1847)), $rt_s(1848), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1849)); - var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1850)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); - var$3.data[0] = ong_GqlParams$StringParam_feat; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1851), 155, var$2, $rt_s(1852), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1853)); - ong_GqlStatusInfoCodes_STATUS_22N45 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N46 = ong_GqlStatusInfoCodes__init_0($rt_s(1854), 156, ong_GqlStatus__init_($rt_s(1855)), $rt_s(1856), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1857)); - ong_GqlStatusInfoCodes_STATUS_22N47 = ong_GqlStatusInfoCodes__init_0($rt_s(1858), 157, ong_GqlStatus__init_($rt_s(1859)), $rt_s(1860), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1861)); + ong_GqlStatusInfoCodes_STATUS_22N44 = ong_GqlStatusInfoCodes__init_0($rt_s(1899), 155, ong_GqlStatus__init_($rt_s(1900)), $rt_s(1901), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1902), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N46 = ong_GqlStatusInfoCodes__init_0($rt_s(1903), 156, ong_GqlStatus__init_($rt_s(1904)), $rt_s(1905), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1906), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N47 = ong_GqlStatusInfoCodes__init_0($rt_s(1907), 157, ong_GqlStatus__init_($rt_s(1908)), $rt_s(1909), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1910), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1862)); + var$2 = ong_GqlStatus__init_($rt_s(1911)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_runtime; var$4[1] = ong_GqlParams$StringParam_cause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1863), 158, var$2, $rt_s(1864), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1865)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1912), 158, var$2, $rt_s(1913), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1914), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N48 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N49 = ong_GqlStatusInfoCodes__init_0($rt_s(1866), 159, ong_GqlStatus__init_($rt_s(1867)), $rt_s(1868), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1869)); + ong_GqlStatusInfoCodes_STATUS_22N49 = ong_GqlStatusInfoCodes__init_0($rt_s(1915), 159, ong_GqlStatus__init_($rt_s(1916)), $rt_s(1917), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1918), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1870)); + var$2 = ong_GqlStatus__init_($rt_s(1919)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1871), 160, var$2, $rt_s(1872), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1873)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1920), 160, var$2, $rt_s(1921), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1922), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N51 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N52 = ong_GqlStatusInfoCodes__init_0($rt_s(1874), 161, ong_GqlStatus__init_($rt_s(1875)), $rt_s(1876), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1877)); - ong_GqlStatusInfoCodes_STATUS_22N53 = ong_GqlStatusInfoCodes__init_0($rt_s(1878), 162, ong_GqlStatus__init_($rt_s(1879)), $rt_s(1880), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1881)); + ong_GqlStatusInfoCodes_STATUS_22N52 = ong_GqlStatusInfoCodes__init_0($rt_s(1923), 161, ong_GqlStatus__init_($rt_s(1924)), $rt_s(1925), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1926), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N53 = ong_GqlStatusInfoCodes__init_0($rt_s(1927), 162, ong_GqlStatus__init_($rt_s(1928)), $rt_s(1929), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1930), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1882)); + var$2 = ong_GqlStatus__init_($rt_s(1931)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_mapKey; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1883), 163, var$2, $rt_s(1884), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1885)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1932), 163, var$2, $rt_s(1933), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1934), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N54 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1886)); + var$2 = ong_GqlStatus__init_($rt_s(1935)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_mapKey; var$4[1] = ong_GqlParams$StringParam_field; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1887), 164, var$2, $rt_s(1888), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1889)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1936), 164, var$2, $rt_s(1937), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1938), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N55 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1890)); + var$2 = ong_GqlStatus__init_($rt_s(1939)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_boltMsgLenLimit; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1891), 165, var$2, $rt_s(1892), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1893)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1940), 165, var$2, $rt_s(1941), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1942), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N56 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1894)); + var$2 = ong_GqlStatus__init_($rt_s(1943)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$NumberParam_count1; var$4[1] = ong_GqlParams$NumberParam_count2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1895), 166, var$2, $rt_s(1896), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1897)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1944), 166, var$2, $rt_s(1945), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1946), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N57 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1898)); + var$2 = ong_GqlStatus__init_($rt_s(1947)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_component; var$4[1] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1899), 167, var$2, $rt_s(1735), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1900)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1948), 167, var$2, $rt_s(1790), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1949), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N58 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1901)); + var$2 = ong_GqlStatus__init_($rt_s(1950)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_tokenType; var$4[1] = ong_GqlParams$StringParam_tokenId; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1902), 168, var$2, $rt_s(1903), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1904)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1951), 168, var$2, $rt_s(1952), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1953), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_22N59 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1905)); + var$2 = ong_GqlStatus__init_($rt_s(1954)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_relType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1906), 169, var$2, $rt_s(1907), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1394)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1955), 169, var$2, $rt_s(1956), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1441), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_22N62 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1908)); + var$2 = ong_GqlStatus__init_($rt_s(1957)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_propKey; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1909), 170, var$2, $rt_s(1910), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1398)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1958), 170, var$2, $rt_s(1959), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1445), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_22N63 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1911)); + var$2 = ong_GqlStatus__init_($rt_s(1960)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_constrDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1912), 171, var$2, $rt_s(1913), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1914)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1961), 171, var$2, $rt_s(1962), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1963), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N64 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1915)); + var$2 = ong_GqlStatus__init_($rt_s(1964)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_constrDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1916), 172, var$2, $rt_s(1917), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1918)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1965), 172, var$2, $rt_s(1966), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1967), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N65 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1919)); + var$2 = ong_GqlStatus__init_($rt_s(1968)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_constrDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1920), 173, var$2, $rt_s(1921), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1922)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1969), 173, var$2, $rt_s(1970), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1971), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N66 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1923)); + var$2 = ong_GqlStatus__init_($rt_s(1972)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_constr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1924), 174, var$2, $rt_s(1925), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1926)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1973), 174, var$2, $rt_s(1974), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1975), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N67 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N68 = ong_GqlStatusInfoCodes__init_0($rt_s(1927), 175, ong_GqlStatus__init_($rt_s(1928)), $rt_s(1929), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1930)); + ong_GqlStatusInfoCodes_STATUS_22N68 = ong_GqlStatusInfoCodes__init_0($rt_s(1976), 175, ong_GqlStatus__init_($rt_s(1977)), $rt_s(1978), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1979), ong_ErrorClassification_DATABASE_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1931)); + var$2 = ong_GqlStatus__init_($rt_s(1980)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idxDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1932), 176, var$2, $rt_s(1933), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1934)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1981), 176, var$2, $rt_s(1982), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1983), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N69 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1935)); + var$2 = ong_GqlStatus__init_($rt_s(1984)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idxDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1936), 177, var$2, $rt_s(1937), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1938)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1985), 177, var$2, $rt_s(1986), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1987), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N70 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1939)); + var$2 = ong_GqlStatus__init_($rt_s(1988)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idx; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1940), 178, var$2, $rt_s(1941), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1942)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1989), 178, var$2, $rt_s(1990), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1991), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N71 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N72 = ong_GqlStatusInfoCodes__init_0($rt_s(1943), 179, ong_GqlStatus__init_($rt_s(1944)), $rt_s(1945), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1946)); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1947)); + var$2 = ong_GqlStatus__init_($rt_s(1992)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idx; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1948), 180, var$2, $rt_s(1949), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1950)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1993), 179, var$2, $rt_s(1994), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1995), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N73 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1951)); + var$2 = ong_GqlStatus__init_($rt_s(1996)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_constr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1952), 181, var$2, $rt_s(1953), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1954)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1997), 180, var$2, $rt_s(1998), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1999), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N74 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1955)); + var$2 = ong_GqlStatus__init_($rt_s(2000)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_constrDescrOrName; var$4[1] = ong_GqlParams$StringParam_token; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1956), 182, var$2, $rt_s(1957), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1958)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2001), 181, var$2, $rt_s(2002), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2003), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N75 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1959)); + var$2 = ong_GqlStatus__init_($rt_s(2004)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_idxDescrOrName; var$4[1] = ong_GqlParams$StringParam_token; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1960), 183, var$2, $rt_s(1961), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1962)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2005), 182, var$2, $rt_s(2006), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2007), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N76 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1963)); + var$2 = ong_GqlStatus__init_($rt_s(2008)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 5); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_entityType; @@ -64128,10 +65198,10 @@ ong_GqlStatusInfoCodes__clinit_ = () => { var$4[3] = ong_GqlParams$StringParam_token; var$5 = ong_GqlParams$ListParam_propKeyList; var$4[4] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1964), 184, var$2, $rt_s(1965), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_DATA_EXCEPTION, $rt_s(1966)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2009), 183, var$2, $rt_s(2010), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_DATA_EXCEPTION, $rt_s(2011), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N77 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1967)); + var$2 = ong_GqlStatus__init_($rt_s(2012)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 6); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_entityType; @@ -64140,10 +65210,10 @@ ong_GqlStatusInfoCodes__clinit_ = () => { var$4[3] = ong_GqlParams$StringParam_token; var$4[4] = ong_GqlParams$StringParam_propKey; var$4[5] = ong_GqlParams$StringParam_valueType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1968), 185, var$2, $rt_s(1969), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1970)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2013), 184, var$2, $rt_s(2014), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2015), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N78 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1971)); + var$2 = ong_GqlStatus__init_($rt_s(2016)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 5); var$4 = var$3.data; var$5 = ong_GqlParams$StringParam_entityType; @@ -64152,1374 +65222,1410 @@ ong_GqlStatusInfoCodes__clinit_ = () => { var$4[2] = var$5; var$4[3] = ong_GqlParams$StringParam_entityId2; var$4[4] = ong_GqlParams$StringParam_propKey; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1972), 186, var$2, $rt_s(1973), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1974)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2017), 185, var$2, $rt_s(2018), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2019), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N79 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1975)); + var$2 = ong_GqlStatus__init_($rt_s(2020)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_exprType; var$4[1] = ong_GqlParams$StringParam_context; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1976), 187, var$2, $rt_s(1977), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1978)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2021), 186, var$2, $rt_s(2022), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2023), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N81 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1979)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); + var$2 = ong_GqlStatus__init_($rt_s(2024)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; var$4[1] = ong_GqlParams$StringParam_context; - var$5 = ong_GqlParams$ListParam_characterRangeList; - var$4[2] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1980), 188, var$2, $rt_s(1981), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_DATA_EXCEPTION, $rt_s(1982)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2025), 187, var$2, $rt_s(2026), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2027), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N82 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1983)); + var$2 = ong_GqlStatus__init_($rt_s(2028)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_upper; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1984), 189, var$2, $rt_s(1985), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1986)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2029), 188, var$2, $rt_s(2030), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2031), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N83 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1987)); + var$2 = ong_GqlStatus__init_($rt_s(2032)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_upper; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1988), 190, var$2, $rt_s(1989), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1990)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2033), 189, var$2, $rt_s(2034), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2035), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N84 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(1991)); + var$2 = ong_GqlStatus__init_($rt_s(2036)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_lower; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(1992), 191, var$2, $rt_s(1993), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1994)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2037), 190, var$2, $rt_s(2038), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2039), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N85 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N86 = ong_GqlStatusInfoCodes__init_0($rt_s(1995), 192, ong_GqlStatus__init_($rt_s(1996)), $rt_s(1997), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(1998)); - ong_GqlStatusInfoCodes_STATUS_22N87 = ong_GqlStatusInfoCodes__init_0($rt_s(1999), 193, ong_GqlStatus__init_($rt_s(2000)), $rt_s(2001), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2002)); + ong_GqlStatusInfoCodes_STATUS_22N86 = ong_GqlStatusInfoCodes__init_0($rt_s(2040), 191, ong_GqlStatus__init_($rt_s(2041)), $rt_s(2042), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2043), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N87 = ong_GqlStatusInfoCodes__init_0($rt_s(2044), 192, ong_GqlStatus__init_($rt_s(2045)), $rt_s(2046), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2047), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2003)); + var$2 = ong_GqlStatus__init_($rt_s(2048)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2004), 194, var$2, $rt_s(2005), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2006)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2049), 193, var$2, $rt_s(2050), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2051), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N88 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N89 = ong_GqlStatusInfoCodes__init_0($rt_s(2007), 195, ong_GqlStatus__init_($rt_s(2008)), $rt_s(2009), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2010)); + ong_GqlStatusInfoCodes_STATUS_22N89 = ong_GqlStatusInfoCodes__init_0($rt_s(2052), 194, ong_GqlStatus__init_($rt_s(2053)), $rt_s(2054), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2055), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2011)); + var$2 = ong_GqlStatus__init_($rt_s(2056)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_item; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2012), 196, var$2, $rt_s(2013), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2014)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2057), 195, var$2, $rt_s(2058), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2059), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N90 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2015)); + var$2 = ong_GqlStatus__init_($rt_s(2060)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_alias; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2016), 197, var$2, $rt_s(2017), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2018)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2061), 196, var$2, $rt_s(2062), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2063), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N91 = var$1; - ong_GqlStatusInfoCodes_STATUS_22N92 = ong_GqlStatusInfoCodes__init_0($rt_s(2019), 198, ong_GqlStatus__init_($rt_s(2020)), $rt_s(2021), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2022)); - ong_GqlStatusInfoCodes_STATUS_22N93 = ong_GqlStatusInfoCodes__init_0($rt_s(2023), 199, ong_GqlStatus__init_($rt_s(2024)), $rt_s(2025), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2026)); - ong_GqlStatusInfoCodes_STATUS_22N94 = ong_GqlStatusInfoCodes__init_0($rt_s(2027), 200, ong_GqlStatus__init_($rt_s(2028)), $rt_s(2029), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2030)); - ong_GqlStatusInfoCodes_STATUS_22N95 = ong_GqlStatusInfoCodes__init_0($rt_s(2031), 201, ong_GqlStatus__init_($rt_s(2032)), $rt_s(2033), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2034)); - ong_GqlStatusInfoCodes_STATUS_22N96 = ong_GqlStatusInfoCodes__init_0($rt_s(2035), 202, ong_GqlStatus__init_($rt_s(2036)), $rt_s(2037), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2038)); + ong_GqlStatusInfoCodes_STATUS_22N92 = ong_GqlStatusInfoCodes__init_0($rt_s(2064), 197, ong_GqlStatus__init_($rt_s(2065)), $rt_s(2066), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2067), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N93 = ong_GqlStatusInfoCodes__init_0($rt_s(2068), 198, ong_GqlStatus__init_($rt_s(2069)), $rt_s(2070), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2071), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N94 = ong_GqlStatusInfoCodes__init_0($rt_s(2072), 199, ong_GqlStatus__init_($rt_s(2073)), $rt_s(2074), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2075), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N95 = ong_GqlStatusInfoCodes__init_0($rt_s(2076), 200, ong_GqlStatus__init_($rt_s(2077)), $rt_s(2078), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2079), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22N96 = ong_GqlStatusInfoCodes__init_0($rt_s(2080), 201, ong_GqlStatus__init_($rt_s(2081)), $rt_s(2082), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2083), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2039)); + var$2 = ong_GqlStatus__init_($rt_s(2084)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2040), 203, var$2, $rt_s(2041), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2042)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2085), 202, var$2, $rt_s(2086), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2087), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N97 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2043)); + var$2 = ong_GqlStatus__init_($rt_s(2088)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_field; var$4[1] = ong_GqlParams$StringParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2044), 204, var$2, $rt_s(2045), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2046)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2089), 203, var$2, $rt_s(2090), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2091), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N98 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2047)); + var$2 = ong_GqlStatus__init_($rt_s(2092)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_token; var$4[1] = ong_GqlParams$StringParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2048), 205, var$2, $rt_s(2049), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2050)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2093), 204, var$2, $rt_s(2094), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2095), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22N99 = var$1; - ong_GqlStatusInfoCodes_STATUS_22NA0 = ong_GqlStatusInfoCodes__init_0($rt_s(2051), 206, ong_GqlStatus__init_($rt_s(2052)), $rt_s(2053), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2054)); + ong_GqlStatusInfoCodes_STATUS_22NA0 = ong_GqlStatusInfoCodes__init_0($rt_s(2096), 205, ong_GqlStatus__init_($rt_s(2097)), $rt_s(2098), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2099), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2055)); + var$2 = ong_GqlStatus__init_($rt_s(2100)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_propKey; var$4[1] = ong_GqlParams$StringParam_operation; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2056), 207, var$2, $rt_s(2057), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2058)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2101), 206, var$2, $rt_s(2102), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2103), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22NA1 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2059)); + var$2 = ong_GqlStatus__init_($rt_s(2104)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_expr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2060), 208, var$2, $rt_s(2061), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2062)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2105), 207, var$2, $rt_s(2106), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2107), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22NA2 = var$1; - ong_GqlStatusInfoCodes_STATUS_22NA3 = ong_GqlStatusInfoCodes__init_0($rt_s(2063), 209, ong_GqlStatus__init_($rt_s(2064)), $rt_s(2065), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2066)); + ong_GqlStatusInfoCodes_STATUS_22NA3 = ong_GqlStatusInfoCodes__init_0($rt_s(2108), 208, ong_GqlStatus__init_($rt_s(2109)), $rt_s(2110), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2111), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2067)); + var$2 = ong_GqlStatus__init_($rt_s(2112)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_pred; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2068), 210, var$2, $rt_s(2069), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2070)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2113), 209, var$2, $rt_s(2114), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2115), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22NA4 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2071)); + var$2 = ong_GqlStatus__init_($rt_s(2116)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_pred; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2072), 211, var$2, $rt_s(2073), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2074)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2117), 210, var$2, $rt_s(2118), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2119), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22NA5 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2075)); + var$2 = ong_GqlStatus__init_($rt_s(2120)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_pred; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2076), 212, var$2, $rt_s(2077), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2078)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2121), 211, var$2, $rt_s(2122), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2123), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22NA6 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2079)); + var$2 = ong_GqlStatus__init_($rt_s(2124)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_expr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2080), 213, var$2, $rt_s(2081), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2082)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2125), 212, var$2, $rt_s(2126), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2127), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22NA7 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2083)); + var$2 = ong_GqlStatus__init_($rt_s(2128)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); - var$3.data[0] = ong_GqlParams$StringParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2084), 214, var$2, $rt_s(2085), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2086)); + var$3.data[0] = ong_GqlParams$StringParam_cause; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2129), 213, var$2, $rt_s(2130), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2131), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_22NA8 = var$1; - ong_GqlStatusInfoCodes_STATUS_22NFF = ong_GqlStatusInfoCodes__init_0($rt_s(2087), 215, ong_GqlStatus__init_($rt_s(2088)), $rt_s(2089), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2090)); - ong_GqlStatusInfoCodes_STATUS_25000 = ong_GqlStatusInfoCodes__init_0($rt_s(2091), 216, ong_GqlStatus__init_($rt_s(2092)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_25G01 = ong_GqlStatusInfoCodes__init_0($rt_s(2093), 217, ong_GqlStatus__init_($rt_s(2094)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2095)); - ong_GqlStatusInfoCodes_STATUS_25G02 = ong_GqlStatusInfoCodes__init_0($rt_s(2096), 218, ong_GqlStatus__init_($rt_s(2097)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2098)); - ong_GqlStatusInfoCodes_STATUS_25G03 = ong_GqlStatusInfoCodes__init_0($rt_s(2099), 219, ong_GqlStatus__init_($rt_s(2100)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2101)); - ong_GqlStatusInfoCodes_STATUS_25G04 = ong_GqlStatusInfoCodes__init_0($rt_s(2102), 220, ong_GqlStatus__init_($rt_s(2103)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2104)); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2105)); + var$2 = ong_GqlStatus__init_($rt_s(2132)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_pred; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2133), 214, var$2, $rt_s(2134), var$3, ju_Collections_emptyMap(), ong_Condition_DATA_EXCEPTION, $rt_s(2135), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22NB0 = var$1; + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(2136)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); + var$4 = var$3.data; + var$5 = ong_GqlParams$ListParam_valueTypeList; + var$4[0] = var$5; + var$4[1] = ong_GqlParams$StringParam_input; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2137), 215, var$2, $rt_s(2138), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ORED), ong_Condition_DATA_EXCEPTION, $rt_s(2139), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_22NB1 = var$1; + ong_GqlStatusInfoCodes_STATUS_25000 = ong_GqlStatusInfoCodes__init_0($rt_s(2140), 216, ong_GqlStatus__init_($rt_s(2141)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(4), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_25G01 = ong_GqlStatusInfoCodes__init_0($rt_s(2142), 217, ong_GqlStatus__init_($rt_s(2143)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2144), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_25G02 = ong_GqlStatusInfoCodes__init_0($rt_s(2145), 218, ong_GqlStatus__init_($rt_s(2146)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2147), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_25G03 = ong_GqlStatusInfoCodes__init_0($rt_s(2148), 219, ong_GqlStatus__init_($rt_s(2149)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2150), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_25G04 = ong_GqlStatusInfoCodes__init_0($rt_s(2151), 220, ong_GqlStatus__init_($rt_s(2152)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2153), ong_ErrorClassification_UNKNOWN); + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(2154)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_query; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2106), 221, var$2, $rt_s(2107), var$3, ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2108)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2155), 221, var$2, $rt_s(2156), var$3, ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2157), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_25N01 = var$1; - ong_GqlStatusInfoCodes_STATUS_25N02 = ong_GqlStatusInfoCodes__init_0($rt_s(2109), 222, ong_GqlStatus__init_($rt_s(2110)), $rt_s(2111), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2112)); - ong_GqlStatusInfoCodes_STATUS_25N03 = ong_GqlStatusInfoCodes__init_0($rt_s(2113), 223, ong_GqlStatus__init_($rt_s(2114)), $rt_s(2115), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2116)); + ong_GqlStatusInfoCodes_STATUS_25N02 = ong_GqlStatusInfoCodes__init_0($rt_s(2158), 222, ong_GqlStatus__init_($rt_s(2159)), $rt_s(2160), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2161), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_25N03 = ong_GqlStatusInfoCodes__init_0($rt_s(2162), 223, ong_GqlStatus__init_($rt_s(2163)), $rt_s(2164), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2165), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2117)); + var$2 = ong_GqlStatus__init_($rt_s(2166)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_transactionId; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2118), 224, var$2, $rt_s(2119), var$3, ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2120)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2167), 224, var$2, $rt_s(2168), var$3, ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2169), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_25N04 = var$1; - ong_GqlStatusInfoCodes_STATUS_25N05 = ong_GqlStatusInfoCodes__init_0($rt_s(2121), 225, ong_GqlStatus__init_($rt_s(2122)), $rt_s(2123), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2124)); - ong_GqlStatusInfoCodes_STATUS_25N06 = ong_GqlStatusInfoCodes__init_0($rt_s(2125), 226, ong_GqlStatus__init_($rt_s(2126)), $rt_s(2127), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2128)); - ong_GqlStatusInfoCodes_STATUS_25N07 = ong_GqlStatusInfoCodes__init_0($rt_s(2129), 227, ong_GqlStatus__init_($rt_s(2130)), $rt_s(2131), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2132)); - ong_GqlStatusInfoCodes_STATUS_25N08 = ong_GqlStatusInfoCodes__init_0($rt_s(2133), 228, ong_GqlStatus__init_($rt_s(2134)), $rt_s(2135), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2136)); - ong_GqlStatusInfoCodes_STATUS_25N09 = ong_GqlStatusInfoCodes__init_0($rt_s(2137), 229, ong_GqlStatus__init_($rt_s(2138)), $rt_s(2139), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2140)); - ong_GqlStatusInfoCodes_STATUS_25N11 = ong_GqlStatusInfoCodes__init_0($rt_s(2141), 230, ong_GqlStatus__init_($rt_s(2142)), $rt_s(2143), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2144)); + ong_GqlStatusInfoCodes_STATUS_25N05 = ong_GqlStatusInfoCodes__init_0($rt_s(2170), 225, ong_GqlStatus__init_($rt_s(2171)), $rt_s(2172), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2173), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_25N06 = ong_GqlStatusInfoCodes__init_0($rt_s(2174), 226, ong_GqlStatus__init_($rt_s(2175)), $rt_s(2176), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2177), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_25N07 = ong_GqlStatusInfoCodes__init_0($rt_s(2178), 227, ong_GqlStatus__init_($rt_s(2179)), $rt_s(2180), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2181), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_25N08 = ong_GqlStatusInfoCodes__init_0($rt_s(2182), 228, ong_GqlStatus__init_($rt_s(2183)), $rt_s(2184), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2185), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_25N09 = ong_GqlStatusInfoCodes__init_0($rt_s(2186), 229, ong_GqlStatus__init_($rt_s(2187)), $rt_s(2188), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2189), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_25N11 = ong_GqlStatusInfoCodes__init_0($rt_s(2190), 230, ong_GqlStatus__init_($rt_s(2191)), $rt_s(2192), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2193), ong_ErrorClassification_TRANSIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2145)); + var$2 = ong_GqlStatus__init_($rt_s(2194)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idx; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2146), 231, var$2, $rt_s(2147), var$3, ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2148)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2195), 231, var$2, $rt_s(2196), var$3, ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2197), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_25N12 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2149)); + var$2 = ong_GqlStatus__init_($rt_s(2198)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_entityType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2150), 232, var$2, $rt_s(2151), var$3, ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2152)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2199), 232, var$2, $rt_s(2200), var$3, ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_STATE, $rt_s(2201), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_25N13 = var$1; - ong_GqlStatusInfoCodes_STATUS_2D000 = ong_GqlStatusInfoCodes__init_0($rt_s(2153), 233, ong_GqlStatus__init_($rt_s(2154)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_2DN01 = ong_GqlStatusInfoCodes__init_0($rt_s(2155), 234, ong_GqlStatus__init_($rt_s(2156)), $rt_s(2157), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2158)); - ong_GqlStatusInfoCodes_STATUS_2DN02 = ong_GqlStatusInfoCodes__init_0($rt_s(2159), 235, ong_GqlStatus__init_($rt_s(2160)), $rt_s(2161), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2162)); - ong_GqlStatusInfoCodes_STATUS_2DN03 = ong_GqlStatusInfoCodes__init_0($rt_s(2163), 236, ong_GqlStatus__init_($rt_s(2164)), $rt_s(2165), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2166)); - ong_GqlStatusInfoCodes_STATUS_2DN04 = ong_GqlStatusInfoCodes__init_0($rt_s(2167), 237, ong_GqlStatus__init_($rt_s(2168)), $rt_s(2169), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2170)); - ong_GqlStatusInfoCodes_STATUS_2DN05 = ong_GqlStatusInfoCodes__init_0($rt_s(2171), 238, ong_GqlStatus__init_($rt_s(2172)), $rt_s(2173), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2174)); - ong_GqlStatusInfoCodes_STATUS_2DN06 = ong_GqlStatusInfoCodes__init_0($rt_s(2175), 239, ong_GqlStatus__init_($rt_s(2176)), $rt_s(2177), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2178)); - ong_GqlStatusInfoCodes_STATUS_2DN07 = ong_GqlStatusInfoCodes__init_0($rt_s(2179), 240, ong_GqlStatus__init_($rt_s(2180)), $rt_s(2181), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2182)); - ong_GqlStatusInfoCodes_STATUS_40000 = ong_GqlStatusInfoCodes__init_0($rt_s(2183), 241, ong_GqlStatus__init_($rt_s(2184)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_TRANSACTION_ROLLBACK, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_40003 = ong_GqlStatusInfoCodes__init_0($rt_s(2185), 242, ong_GqlStatus__init_($rt_s(2186)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_TRANSACTION_ROLLBACK, $rt_s(2187)); - ong_GqlStatusInfoCodes_STATUS_40N01 = ong_GqlStatusInfoCodes__init_0($rt_s(2188), 243, ong_GqlStatus__init_($rt_s(2189)), $rt_s(2190), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_TRANSACTION_ROLLBACK, $rt_s(2191)); - ong_GqlStatusInfoCodes_STATUS_40N02 = ong_GqlStatusInfoCodes__init_0($rt_s(2192), 244, ong_GqlStatus__init_($rt_s(2193)), $rt_s(2194), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_TRANSACTION_ROLLBACK, $rt_s(2195)); - ong_GqlStatusInfoCodes_STATUS_42000 = ong_GqlStatusInfoCodes__init_0($rt_s(2196), 245, ong_GqlStatus__init_($rt_s(2197)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_42001 = ong_GqlStatusInfoCodes__init_0($rt_s(2198), 246, ong_GqlStatus__init_($rt_s(2199)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2200)); - ong_GqlStatusInfoCodes_STATUS_42002 = ong_GqlStatusInfoCodes__init_0($rt_s(2201), 247, ong_GqlStatus__init_($rt_s(2202)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2203)); - ong_GqlStatusInfoCodes_STATUS_42004 = ong_GqlStatusInfoCodes__init_0($rt_s(2204), 248, ong_GqlStatus__init_($rt_s(2205)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2206)); - ong_GqlStatusInfoCodes_STATUS_42006 = ong_GqlStatusInfoCodes__init_0($rt_s(2207), 249, ong_GqlStatus__init_($rt_s(2208)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1633)); - ong_GqlStatusInfoCodes_STATUS_42007 = ong_GqlStatusInfoCodes__init_0($rt_s(2209), 250, ong_GqlStatus__init_($rt_s(2210)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1636)); - ong_GqlStatusInfoCodes_STATUS_42008 = ong_GqlStatusInfoCodes__init_0($rt_s(2211), 251, ong_GqlStatus__init_($rt_s(2212)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1642)); - ong_GqlStatusInfoCodes_STATUS_42009 = ong_GqlStatusInfoCodes__init_0($rt_s(2213), 252, ong_GqlStatus__init_($rt_s(2214)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1627)); - ong_GqlStatusInfoCodes_STATUS_42010 = ong_GqlStatusInfoCodes__init_0($rt_s(2215), 253, ong_GqlStatus__init_($rt_s(2216)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1630)); - ong_GqlStatusInfoCodes_STATUS_42011 = ong_GqlStatusInfoCodes__init_0($rt_s(2217), 254, ong_GqlStatus__init_($rt_s(2218)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1639)); - ong_GqlStatusInfoCodes_STATUS_42012 = ong_GqlStatusInfoCodes__init_0($rt_s(2219), 255, ong_GqlStatus__init_($rt_s(2220)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2221)); - ong_GqlStatusInfoCodes_STATUS_42013 = ong_GqlStatusInfoCodes__init_0($rt_s(2222), 256, ong_GqlStatus__init_($rt_s(2223)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2224)); - ong_GqlStatusInfoCodes_STATUS_42014 = ong_GqlStatusInfoCodes__init_0($rt_s(2225), 257, ong_GqlStatus__init_($rt_s(2226)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2227)); - ong_GqlStatusInfoCodes_STATUS_42015 = ong_GqlStatusInfoCodes__init_0($rt_s(2228), 258, ong_GqlStatus__init_($rt_s(2229)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2230)); - ong_GqlStatusInfoCodes_STATUS_42I00 = ong_GqlStatusInfoCodes__init_0($rt_s(2231), 259, ong_GqlStatus__init_($rt_s(2232)), $rt_s(2233), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2234)); + ong_GqlStatusInfoCodes_STATUS_2D000 = ong_GqlStatusInfoCodes__init_0($rt_s(2202), 233, ong_GqlStatus__init_($rt_s(2203)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(4), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_2DN01 = ong_GqlStatusInfoCodes__init_0($rt_s(2204), 234, ong_GqlStatus__init_($rt_s(2205)), $rt_s(2206), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2207), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_2DN02 = ong_GqlStatusInfoCodes__init_0($rt_s(2208), 235, ong_GqlStatus__init_($rt_s(2209)), $rt_s(2210), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2211), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_2DN03 = ong_GqlStatusInfoCodes__init_0($rt_s(2212), 236, ong_GqlStatus__init_($rt_s(2213)), $rt_s(2214), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2215), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_2DN04 = ong_GqlStatusInfoCodes__init_0($rt_s(2216), 237, ong_GqlStatus__init_($rt_s(2217)), $rt_s(2218), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2219), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_2DN05 = ong_GqlStatusInfoCodes__init_0($rt_s(2220), 238, ong_GqlStatus__init_($rt_s(2221)), $rt_s(2222), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2223), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_2DN06 = ong_GqlStatusInfoCodes__init_0($rt_s(2224), 239, ong_GqlStatus__init_($rt_s(2225)), $rt_s(2226), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2227), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_2DN07 = ong_GqlStatusInfoCodes__init_0($rt_s(2228), 240, ong_GqlStatus__init_($rt_s(2229)), $rt_s(2230), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_INVALID_TRANSACTION_TERMINATION, $rt_s(2231), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_40000 = ong_GqlStatusInfoCodes__init_0($rt_s(2232), 241, ong_GqlStatus__init_($rt_s(2233)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_TRANSACTION_ROLLBACK, $rt_s(4), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_40003 = ong_GqlStatusInfoCodes__init_0($rt_s(2234), 242, ong_GqlStatus__init_($rt_s(2235)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_TRANSACTION_ROLLBACK, $rt_s(2236), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_40N01 = ong_GqlStatusInfoCodes__init_0($rt_s(2237), 243, ong_GqlStatus__init_($rt_s(2238)), $rt_s(2239), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_TRANSACTION_ROLLBACK, $rt_s(2240), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_40N02 = ong_GqlStatusInfoCodes__init_0($rt_s(2241), 244, ong_GqlStatus__init_($rt_s(2242)), $rt_s(2243), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_TRANSACTION_ROLLBACK, $rt_s(2244), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_42000 = ong_GqlStatusInfoCodes__init_0($rt_s(2245), 245, ong_GqlStatus__init_($rt_s(2246)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(4), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42001 = ong_GqlStatusInfoCodes__init_0($rt_s(2247), 246, ong_GqlStatus__init_($rt_s(2248)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2249), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42002 = ong_GqlStatusInfoCodes__init_0($rt_s(2250), 247, ong_GqlStatus__init_($rt_s(2251)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2252), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42004 = ong_GqlStatusInfoCodes__init_0($rt_s(2253), 248, ong_GqlStatus__init_($rt_s(2254)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2255), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42006 = ong_GqlStatusInfoCodes__init_0($rt_s(2256), 249, ong_GqlStatus__init_($rt_s(2257)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1690), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42007 = ong_GqlStatusInfoCodes__init_0($rt_s(2258), 250, ong_GqlStatus__init_($rt_s(2259)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1693), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42008 = ong_GqlStatusInfoCodes__init_0($rt_s(2260), 251, ong_GqlStatus__init_($rt_s(2261)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1699), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42009 = ong_GqlStatusInfoCodes__init_0($rt_s(2262), 252, ong_GqlStatus__init_($rt_s(2263)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1684), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42010 = ong_GqlStatusInfoCodes__init_0($rt_s(2264), 253, ong_GqlStatus__init_($rt_s(2265)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1687), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42011 = ong_GqlStatusInfoCodes__init_0($rt_s(2266), 254, ong_GqlStatus__init_($rt_s(2267)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1696), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42012 = ong_GqlStatusInfoCodes__init_0($rt_s(2268), 255, ong_GqlStatus__init_($rt_s(2269)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2270), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42013 = ong_GqlStatusInfoCodes__init_0($rt_s(2271), 256, ong_GqlStatus__init_($rt_s(2272)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2273), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42014 = ong_GqlStatusInfoCodes__init_0($rt_s(2274), 257, ong_GqlStatus__init_($rt_s(2275)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2276), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42015 = ong_GqlStatusInfoCodes__init_0($rt_s(2277), 258, ong_GqlStatus__init_($rt_s(2278)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2279), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_42I00 = ong_GqlStatusInfoCodes__init_0($rt_s(2280), 259, ong_GqlStatus__init_($rt_s(2281)), $rt_s(2282), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2283), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2235)); + var$2 = ong_GqlStatus__init_($rt_s(2284)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2236), 260, var$2, $rt_s(2237), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2238)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2285), 260, var$2, $rt_s(2286), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2287), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I01 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I02 = ong_GqlStatusInfoCodes__init_0($rt_s(2239), 261, ong_GqlStatus__init_($rt_s(2240)), $rt_s(2241), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2242)); - ong_GqlStatusInfoCodes_STATUS_42I03 = ong_GqlStatusInfoCodes__init_0($rt_s(2243), 262, ong_GqlStatus__init_($rt_s(2244)), $rt_s(2245), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2246)); + ong_GqlStatusInfoCodes_STATUS_42I02 = ong_GqlStatusInfoCodes__init_0($rt_s(2288), 261, ong_GqlStatus__init_($rt_s(2289)), $rt_s(2290), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2291), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I03 = ong_GqlStatusInfoCodes__init_0($rt_s(2292), 262, ong_GqlStatus__init_($rt_s(2293)), $rt_s(2294), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2295), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2247)); + var$2 = ong_GqlStatus__init_($rt_s(2296)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_expr; var$4[1] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2248), 263, var$2, $rt_s(2249), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2250)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2297), 263, var$2, $rt_s(2298), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2299), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I04 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I05 = ong_GqlStatusInfoCodes__init_0($rt_s(2251), 264, ong_GqlStatus__init_($rt_s(2252)), $rt_s(2253), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2254)); + ong_GqlStatusInfoCodes_STATUS_42I05 = ong_GqlStatusInfoCodes__init_0($rt_s(2300), 264, ong_GqlStatus__init_($rt_s(2301)), $rt_s(2302), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2303), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2255)); + var$2 = ong_GqlStatus__init_($rt_s(2304)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; - var$4[0] = ong_GqlParams$StringParam_input1; - var$4[1] = ong_GqlParams$StringParam_input2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2256), 265, var$2, $rt_s(2257), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2258)); + var$4[0] = ong_GqlParams$StringParam_input; + var$4[1] = ong_GqlParams$ListParam_valueList; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2305), 265, var$2, $rt_s(2306), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2307), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I06 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2259)); + var$2 = ong_GqlStatus__init_($rt_s(2308)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_valueType; var$4[1] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2260), 266, var$2, $rt_s(2261), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2262)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2309), 266, var$2, $rt_s(2310), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2311), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I07 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2263)); + var$2 = ong_GqlStatus__init_($rt_s(2312)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2264), 267, var$2, $rt_s(2265), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2266)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2313), 267, var$2, $rt_s(2314), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2315), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I08 = var$1; - var$6 = new ong_GqlStatusInfoCodes; - var$7 = ong_GqlStatus__init_($rt_s(2267)); + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(2316)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; - var$8 = ong_GqlParams$ListParam_mapKeyList; - var$4[0] = var$8; - var$9 = ong_GqlParams$ListParam_valueList; - var$4[1] = var$9; - ong_GqlStatusInfoCodes__init_(var$6, $rt_s(2268), 268, var$7, $rt_s(2269), var$3, ju_Map_of1(var$8, ong_GqlParams$JoinStyle_ANDED, var$9, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1885)); - ong_GqlStatusInfoCodes_STATUS_42I09 = var$6; + var$5 = ong_GqlParams$ListParam_mapKeyList; + var$4[0] = var$5; + var$6 = ong_GqlParams$ListParam_valueList; + var$4[1] = var$6; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2317), 268, var$2, $rt_s(2318), var$3, ju_Map_of1(var$5, ong_GqlParams$JoinStyle_ANDED, var$6, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1934), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I09 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2270)); + var$2 = ong_GqlStatus__init_($rt_s(2319)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_syntax; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2271), 269, var$2, $rt_s(2272), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2273)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2320), 269, var$2, $rt_s(2321), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2322), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I10 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2274)); + var$2 = ong_GqlStatus__init_($rt_s(2323)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_tokenType; var$4[1] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2275), 270, var$2, $rt_s(2276), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2277)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2324), 270, var$2, $rt_s(2325), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2326), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I11 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I12 = ong_GqlStatusInfoCodes__init_0($rt_s(2278), 271, ong_GqlStatus__init_($rt_s(2279)), $rt_s(2280), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2281)); + ong_GqlStatusInfoCodes_STATUS_42I12 = ong_GqlStatusInfoCodes__init_0($rt_s(2327), 271, ong_GqlStatus__init_($rt_s(2328)), $rt_s(2329), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2330), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2282)); + var$2 = ong_GqlStatus__init_($rt_s(2331)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 4); var$4 = var$3.data; var$4[0] = ong_GqlParams$NumberParam_count1; var$4[1] = ong_GqlParams$NumberParam_count2; var$4[2] = ong_GqlParams$StringParam_procFun; var$4[3] = ong_GqlParams$StringParam_sig; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2283), 272, var$2, $rt_s(2284), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2285)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2332), 272, var$2, $rt_s(2333), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2334), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I13 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2286)); + var$2 = ong_GqlStatus__init_($rt_s(2335)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2287), 273, var$2, $rt_s(2288), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2289)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2336), 273, var$2, $rt_s(2337), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2338), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I14 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2290)); + var$2 = ong_GqlStatus__init_($rt_s(2339)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_count; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2291), 274, var$2, $rt_s(2292), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2293)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2340), 274, var$2, $rt_s(2341), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2342), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I15 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2294)); + var$2 = ong_GqlStatus__init_($rt_s(2343)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_mapKeyList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2295), 275, var$2, $rt_s(2296), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2297)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2344), 275, var$2, $rt_s(2345), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2346), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I16 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I17 = ong_GqlStatusInfoCodes__init_0($rt_s(2298), 276, ong_GqlStatus__init_($rt_s(2299)), $rt_s(2300), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2301)); + ong_GqlStatusInfoCodes_STATUS_42I17 = ong_GqlStatusInfoCodes__init_0($rt_s(2347), 276, ong_GqlStatus__init_($rt_s(2348)), $rt_s(2349), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2350), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2302)); + var$2 = ong_GqlStatus__init_($rt_s(2351)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_variableList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2303), 277, var$2, $rt_s(2304), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2305)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2352), 277, var$2, $rt_s(2353), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_COMMAD), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2354), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I18 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I19 = ong_GqlStatusInfoCodes__init_0($rt_s(2306), 278, ong_GqlStatus__init_($rt_s(2307)), $rt_s(2308), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2309)); + ong_GqlStatusInfoCodes_STATUS_42I19 = ong_GqlStatusInfoCodes__init_0($rt_s(2355), 278, ong_GqlStatus__init_($rt_s(2356)), $rt_s(2357), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2358), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2310)); + var$2 = ong_GqlStatus__init_($rt_s(2359)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; var$4[1] = ong_GqlParams$StringParam_labelExpr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2311), 279, var$2, $rt_s(2312), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2313)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2360), 279, var$2, $rt_s(2361), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2362), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I20 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I22 = ong_GqlStatusInfoCodes__init_0($rt_s(2314), 280, ong_GqlStatus__init_($rt_s(2315)), $rt_s(2316), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2317)); + ong_GqlStatusInfoCodes_STATUS_42I22 = ong_GqlStatusInfoCodes__init_0($rt_s(2363), 280, ong_GqlStatus__init_($rt_s(2364)), $rt_s(2365), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2366), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2318)); + var$2 = ong_GqlStatus__init_($rt_s(2367)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2319), 281, var$2, $rt_s(2320), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2321)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2368), 281, var$2, $rt_s(2369), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2370), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I23 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2322)); + var$2 = ong_GqlStatus__init_($rt_s(2371)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_expr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2323), 282, var$2, $rt_s(2324), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1809)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2372), 282, var$2, $rt_s(2373), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1862), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I24 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I25 = ong_GqlStatusInfoCodes__init_0($rt_s(2325), 283, ong_GqlStatus__init_($rt_s(2326)), $rt_s(2327), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2328)); - ong_GqlStatusInfoCodes_STATUS_42I26 = ong_GqlStatusInfoCodes__init_0($rt_s(2329), 284, ong_GqlStatus__init_($rt_s(2330)), $rt_s(2331), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2332)); + ong_GqlStatusInfoCodes_STATUS_42I25 = ong_GqlStatusInfoCodes__init_0($rt_s(2374), 283, ong_GqlStatus__init_($rt_s(2375)), $rt_s(2376), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2377), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I26 = ong_GqlStatusInfoCodes__init_0($rt_s(2378), 284, ong_GqlStatus__init_($rt_s(2379)), $rt_s(2380), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2381), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2333)); + var$2 = ong_GqlStatus__init_($rt_s(2382)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2334), 285, var$2, $rt_s(2335), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2336)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2383), 285, var$2, $rt_s(2384), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2385), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I27 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2337)); + var$2 = ong_GqlStatus__init_($rt_s(2386)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2338), 286, var$2, $rt_s(2339), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2340)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2387), 286, var$2, $rt_s(2388), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2389), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I28 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2341)); + var$2 = ong_GqlStatus__init_($rt_s(2390)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; var$4[1] = ong_GqlParams$StringParam_replacement; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2342), 287, var$2, $rt_s(2343), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2344)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2391), 287, var$2, $rt_s(2392), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2393), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I29 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2345)); + var$2 = ong_GqlStatus__init_($rt_s(2394)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_expr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2346), 288, var$2, $rt_s(2347), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2348)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2395), 288, var$2, $rt_s(2396), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2397), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I30 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I31 = ong_GqlStatusInfoCodes__init_0($rt_s(2349), 289, ong_GqlStatus__init_($rt_s(2350)), $rt_s(2351), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2352)); + ong_GqlStatusInfoCodes_STATUS_42I31 = ong_GqlStatusInfoCodes__init_0($rt_s(2398), 289, ong_GqlStatus__init_($rt_s(2399)), $rt_s(2400), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2401), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2353)); + var$2 = ong_GqlStatus__init_($rt_s(2402)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2354), 290, var$2, $rt_s(2355), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2356)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2403), 290, var$2, $rt_s(2404), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2405), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I32 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I33 = ong_GqlStatusInfoCodes__init_0($rt_s(2357), 291, ong_GqlStatus__init_($rt_s(2358)), $rt_s(2359), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2360)); - ong_GqlStatusInfoCodes_STATUS_42I34 = ong_GqlStatusInfoCodes__init_0($rt_s(2361), 292, ong_GqlStatus__init_($rt_s(2362)), $rt_s(2363), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2364)); - ong_GqlStatusInfoCodes_STATUS_42I35 = ong_GqlStatusInfoCodes__init_0($rt_s(2365), 293, ong_GqlStatus__init_($rt_s(2366)), $rt_s(2367), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2368)); - ong_GqlStatusInfoCodes_STATUS_42I36 = ong_GqlStatusInfoCodes__init_0($rt_s(2369), 294, ong_GqlStatus__init_($rt_s(2370)), $rt_s(2371), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2372)); - ong_GqlStatusInfoCodes_STATUS_42I37 = ong_GqlStatusInfoCodes__init_0($rt_s(2373), 295, ong_GqlStatus__init_($rt_s(2374)), $rt_s(2375), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2376)); - ong_GqlStatusInfoCodes_STATUS_42I38 = ong_GqlStatusInfoCodes__init_0($rt_s(2377), 296, ong_GqlStatus__init_($rt_s(2378)), $rt_s(2379), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2380)); + ong_GqlStatusInfoCodes_STATUS_42I33 = ong_GqlStatusInfoCodes__init_0($rt_s(2406), 291, ong_GqlStatus__init_($rt_s(2407)), $rt_s(2408), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2409), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I34 = ong_GqlStatusInfoCodes__init_0($rt_s(2410), 292, ong_GqlStatus__init_($rt_s(2411)), $rt_s(2412), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2413), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I35 = ong_GqlStatusInfoCodes__init_0($rt_s(2414), 293, ong_GqlStatus__init_($rt_s(2415)), $rt_s(2416), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2417), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I36 = ong_GqlStatusInfoCodes__init_0($rt_s(2418), 294, ong_GqlStatus__init_($rt_s(2419)), $rt_s(2420), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2421), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I37 = ong_GqlStatusInfoCodes__init_0($rt_s(2422), 295, ong_GqlStatus__init_($rt_s(2423)), $rt_s(2424), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2425), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I38 = ong_GqlStatusInfoCodes__init_0($rt_s(2426), 296, ong_GqlStatus__init_($rt_s(2427)), $rt_s(2428), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2429), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2381)); + var$2 = ong_GqlStatus__init_($rt_s(2430)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2382), 297, var$2, $rt_s(2383), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2384)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2431), 297, var$2, $rt_s(2432), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2433), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I39 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I40 = ong_GqlStatusInfoCodes__init_0($rt_s(2385), 298, ong_GqlStatus__init_($rt_s(2386)), $rt_s(2387), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2388)); + ong_GqlStatusInfoCodes_STATUS_42I40 = ong_GqlStatusInfoCodes__init_0($rt_s(2434), 298, ong_GqlStatus__init_($rt_s(2435)), $rt_s(2436), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2437), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2389)); + var$2 = ong_GqlStatus__init_($rt_s(2438)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_expr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2390), 299, var$2, $rt_s(2391), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2392)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2439), 299, var$2, $rt_s(2440), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2441), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I41 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I42 = ong_GqlStatusInfoCodes__init_0($rt_s(2393), 300, ong_GqlStatus__init_($rt_s(2394)), $rt_s(2395), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2396)); - ong_GqlStatusInfoCodes_STATUS_42I43 = ong_GqlStatusInfoCodes__init_0($rt_s(2397), 301, ong_GqlStatus__init_($rt_s(2398)), $rt_s(2399), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2400)); - ong_GqlStatusInfoCodes_STATUS_42I44 = ong_GqlStatusInfoCodes__init_0($rt_s(2401), 302, ong_GqlStatus__init_($rt_s(2402)), $rt_s(2403), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2404)); + ong_GqlStatusInfoCodes_STATUS_42I42 = ong_GqlStatusInfoCodes__init_0($rt_s(2442), 300, ong_GqlStatus__init_($rt_s(2443)), $rt_s(2444), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2445), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I43 = ong_GqlStatusInfoCodes__init_0($rt_s(2446), 301, ong_GqlStatus__init_($rt_s(2447)), $rt_s(2448), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2449), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I44 = ong_GqlStatusInfoCodes__init_0($rt_s(2450), 302, ong_GqlStatus__init_($rt_s(2451)), $rt_s(2452), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2453), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2405)); + var$2 = ong_GqlStatus__init_($rt_s(2454)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_action; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2406), 303, var$2, $rt_s(2407), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2408)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2455), 303, var$2, $rt_s(2456), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2457), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I45 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I46 = ong_GqlStatusInfoCodes__init_0($rt_s(2409), 304, ong_GqlStatus__init_($rt_s(2410)), $rt_s(2411), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2412)); + ong_GqlStatusInfoCodes_STATUS_42I46 = ong_GqlStatusInfoCodes__init_0($rt_s(2458), 304, ong_GqlStatus__init_($rt_s(2459)), $rt_s(2460), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2461), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2413)); + var$2 = ong_GqlStatus__init_($rt_s(2462)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2414), 305, var$2, $rt_s(2415), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2416)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2463), 305, var$2, $rt_s(2464), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2465), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I47 = var$1; - ong_GqlStatusInfoCodes_STATUS_42I48 = ong_GqlStatusInfoCodes__init_0($rt_s(2417), 306, ong_GqlStatus__init_($rt_s(2418)), $rt_s(2419), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2420)); - ong_GqlStatusInfoCodes_STATUS_42I49 = ong_GqlStatusInfoCodes__init_0($rt_s(2421), 307, ong_GqlStatus__init_($rt_s(2422)), $rt_s(2423), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2424)); + ong_GqlStatusInfoCodes_STATUS_42I48 = ong_GqlStatusInfoCodes__init_0($rt_s(2466), 306, ong_GqlStatus__init_($rt_s(2467)), $rt_s(2468), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2469), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I49 = ong_GqlStatusInfoCodes__init_0($rt_s(2470), 307, ong_GqlStatus__init_($rt_s(2471)), $rt_s(2472), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2473), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2425)); + var$2 = ong_GqlStatus__init_($rt_s(2474)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input; var$4[1] = ong_GqlParams$StringParam_tokenType; var$4[2] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2426), 308, var$2, $rt_s(2427), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2428)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2475), 308, var$2, $rt_s(2476), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2477), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42I50 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2429)); + var$2 = ong_GqlStatus__init_($rt_s(2478)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); + var$4 = var$3.data; + var$4[0] = ong_GqlParams$StringParam_procFun; + var$4[1] = ong_GqlParams$StringParam_sig; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2479), 309, var$2, $rt_s(2480), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2481), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42I51 = var$1; + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(2482)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2430), 309, var$2, $rt_s(2431), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2432)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2483), 310, var$2, $rt_s(2484), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2485), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N00 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2433)); + var$2 = ong_GqlStatus__init_($rt_s(2486)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_graph; var$4[1] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2434), 310, var$2, $rt_s(2435), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2436)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2487), 311, var$2, $rt_s(2488), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2489), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N01 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N02 = ong_GqlStatusInfoCodes__init_0($rt_s(2437), 311, ong_GqlStatus__init_($rt_s(2438)), $rt_s(2439), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2440)); - ong_GqlStatusInfoCodes_STATUS_42N03 = ong_GqlStatusInfoCodes__init_0($rt_s(2441), 312, ong_GqlStatus__init_($rt_s(2442)), $rt_s(2443), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2444)); + ong_GqlStatusInfoCodes_STATUS_42N02 = ong_GqlStatusInfoCodes__init_0($rt_s(2490), 312, ong_GqlStatus__init_($rt_s(2491)), $rt_s(2492), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2493), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N03 = ong_GqlStatusInfoCodes__init_0($rt_s(2494), 313, ong_GqlStatus__init_($rt_s(2495)), $rt_s(2496), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2497), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2445)); + var$2 = ong_GqlStatus__init_($rt_s(2498)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_db1; var$4[1] = ong_GqlParams$StringParam_db2; var$4[2] = ong_GqlParams$StringParam_db3; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2446), 313, var$2, $rt_s(2447), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2448)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2499), 314, var$2, $rt_s(2500), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2501), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N04 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2449)); + var$2 = ong_GqlStatus__init_($rt_s(2502)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_db1; var$4[1] = ong_GqlParams$StringParam_db2; var$4[2] = ong_GqlParams$StringParam_db3; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2450), 314, var$2, $rt_s(2451), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2452)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2503), 315, var$2, $rt_s(2504), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2505), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N05 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2453)); + var$2 = ong_GqlStatus__init_($rt_s(2506)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_action; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2454), 315, var$2, $rt_s(2455), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2456)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2507), 316, var$2, $rt_s(2508), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2509), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N06 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2457)); + var$2 = ong_GqlStatus__init_($rt_s(2510)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2458), 316, var$2, $rt_s(2459), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2460)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2511), 317, var$2, $rt_s(2512), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2513), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N07 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2461)); + var$2 = ong_GqlStatus__init_($rt_s(2514)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_procFun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2462), 317, var$2, $rt_s(2463), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2464)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2515), 318, var$2, $rt_s(2516), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2517), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N08 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2465)); + var$2 = ong_GqlStatus__init_($rt_s(2518)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_user; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2466), 318, var$2, $rt_s(2467), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2468)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2519), 319, var$2, $rt_s(2520), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2521), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N09 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2469)); + var$2 = ong_GqlStatus__init_($rt_s(2522)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_role; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2470), 319, var$2, $rt_s(2471), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2472)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2523), 320, var$2, $rt_s(2524), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2525), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N10 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2473)); + var$2 = ong_GqlStatus__init_($rt_s(2526)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2474), 320, var$2, $rt_s(2475), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2476)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2527), 321, var$2, $rt_s(2528), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2529), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N11 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2477)); + var$2 = ong_GqlStatus__init_($rt_s(2530)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_user; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2478), 321, var$2, $rt_s(2479), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2480)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2531), 322, var$2, $rt_s(2532), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2533), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N12 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2481)); + var$2 = ong_GqlStatus__init_($rt_s(2534)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_role; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2482), 322, var$2, $rt_s(2483), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2484)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2535), 323, var$2, $rt_s(2536), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2537), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N13 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2485)); + var$2 = ong_GqlStatus__init_($rt_s(2538)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_clause; var$4[1] = ong_GqlParams$StringParam_cmd; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2486), 323, var$2, $rt_s(2487), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2488)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2539), 324, var$2, $rt_s(2540), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2541), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N14 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2489)); + var$2 = ong_GqlStatus__init_($rt_s(2542)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_syntax; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2490), 324, var$2, $rt_s(2491), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2492)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2543), 325, var$2, $rt_s(2544), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2545), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N15 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2493)); + var$2 = ong_GqlStatus__init_($rt_s(2546)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idxType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2494), 325, var$2, $rt_s(2495), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2496)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2547), 326, var$2, $rt_s(2548), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2549), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N16 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2497)); + var$2 = ong_GqlStatus__init_($rt_s(2550)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2498), 326, var$2, $rt_s(2499), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2500)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2551), 327, var$2, $rt_s(2552), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2553), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N17 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N18 = ong_GqlStatusInfoCodes__init_0($rt_s(2501), 327, ong_GqlStatus__init_($rt_s(2502)), $rt_s(2503), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2504)); + ong_GqlStatusInfoCodes_STATUS_42N18 = ong_GqlStatusInfoCodes__init_0($rt_s(2554), 328, ong_GqlStatus__init_($rt_s(2555)), $rt_s(2556), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2557), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2505)); + var$2 = ong_GqlStatus__init_($rt_s(2558)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_syntax; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2506), 328, var$2, $rt_s(2507), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2508)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2559), 329, var$2, $rt_s(2560), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2561), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N19 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N20 = ong_GqlStatusInfoCodes__init_0($rt_s(2509), 329, ong_GqlStatus__init_($rt_s(2510)), $rt_s(2511), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2512)); + ong_GqlStatusInfoCodes_STATUS_42N20 = ong_GqlStatusInfoCodes__init_0($rt_s(2562), 330, ong_GqlStatus__init_($rt_s(2563)), $rt_s(2564), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2565), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2513)); + var$2 = ong_GqlStatus__init_($rt_s(2566)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2514), 330, var$2, $rt_s(2515), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2516)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2567), 331, var$2, $rt_s(2568), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2569), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N21 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N22 = ong_GqlStatusInfoCodes__init_0($rt_s(2517), 331, ong_GqlStatus__init_($rt_s(2518)), $rt_s(2519), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2520)); + ong_GqlStatusInfoCodes_STATUS_42N22 = ong_GqlStatusInfoCodes__init_0($rt_s(2570), 332, ong_GqlStatus__init_($rt_s(2571)), $rt_s(2572), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2573), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2521)); + var$2 = ong_GqlStatus__init_($rt_s(2574)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2522), 332, var$2, $rt_s(2523), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2524)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2575), 333, var$2, $rt_s(2576), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2577), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N23 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2525)); + var$2 = ong_GqlStatus__init_($rt_s(2578)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_input1; var$4[1] = ong_GqlParams$StringParam_input2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2526), 333, var$2, $rt_s(2527), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2528)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2579), 334, var$2, $rt_s(2580), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2581), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N24 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N25 = ong_GqlStatusInfoCodes__init_0($rt_s(2529), 334, ong_GqlStatus__init_($rt_s(2530)), $rt_s(2531), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2026)); + ong_GqlStatusInfoCodes_STATUS_42N25 = ong_GqlStatusInfoCodes__init_0($rt_s(2582), 335, ong_GqlStatus__init_($rt_s(2583)), $rt_s(2584), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2071), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2532)); + var$2 = ong_GqlStatus__init_($rt_s(2585)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2533), 335, var$2, $rt_s(2534), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2535)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2586), 336, var$2, $rt_s(2587), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2588), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N26 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2536)); + var$2 = ong_GqlStatus__init_($rt_s(2589)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2537), 336, var$2, $rt_s(2538), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2539)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2590), 337, var$2, $rt_s(2591), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2592), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N28 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2540)); + var$2 = ong_GqlStatus__init_($rt_s(2593)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2541), 337, var$2, $rt_s(2542), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2543)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2594), 338, var$2, $rt_s(2595), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2596), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N29 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2544)); + var$2 = ong_GqlStatus__init_($rt_s(2597)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 5); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_component; var$4[1] = ong_GqlParams$StringParam_valueType; var$4[2] = ong_GqlParams$NumberParam_lower; var$4[3] = ong_GqlParams$NumberParam_upper; - var$4[4] = ong_GqlParams$NumberParam_value; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2545), 338, var$2, $rt_s(2546), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2547)); + var$4[4] = ong_GqlParams$StringParam_value; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2598), 339, var$2, $rt_s(2599), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2600), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N31 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2548)); + var$2 = ong_GqlStatus__init_($rt_s(2601)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_keyword; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2549), 339, var$2, $rt_s(2550), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2551)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2602), 340, var$2, $rt_s(2603), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2604), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N32 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N34 = ong_GqlStatusInfoCodes__init_0($rt_s(2552), 340, ong_GqlStatus__init_($rt_s(2553)), $rt_s(2554), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2555)); + ong_GqlStatusInfoCodes_STATUS_42N34 = ong_GqlStatusInfoCodes__init_0($rt_s(2605), 341, ong_GqlStatus__init_($rt_s(2606)), $rt_s(2607), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2608), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2556)); + var$2 = ong_GqlStatus__init_($rt_s(2609)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_selector; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2557), 341, var$2, $rt_s(2558), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2559)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2610), 342, var$2, $rt_s(2611), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2612), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N35 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N36 = ong_GqlStatusInfoCodes__init_0($rt_s(2560), 342, ong_GqlStatus__init_($rt_s(2561)), $rt_s(2562), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2563)); - ong_GqlStatusInfoCodes_STATUS_42N37 = ong_GqlStatusInfoCodes__init_0($rt_s(2564), 343, ong_GqlStatus__init_($rt_s(2565)), $rt_s(2566), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2567)); - ong_GqlStatusInfoCodes_STATUS_42N38 = ong_GqlStatusInfoCodes__init_0($rt_s(2568), 344, ong_GqlStatus__init_($rt_s(2569)), $rt_s(2570), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2571)); - ong_GqlStatusInfoCodes_STATUS_42N39 = ong_GqlStatusInfoCodes__init_0($rt_s(2572), 345, ong_GqlStatus__init_($rt_s(2573)), $rt_s(2574), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2575)); + ong_GqlStatusInfoCodes_STATUS_42N36 = ong_GqlStatusInfoCodes__init_0($rt_s(2613), 343, ong_GqlStatus__init_($rt_s(2614)), $rt_s(2615), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2616), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N37 = ong_GqlStatusInfoCodes__init_0($rt_s(2617), 344, ong_GqlStatus__init_($rt_s(2618)), $rt_s(2619), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2620), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N38 = ong_GqlStatusInfoCodes__init_0($rt_s(2621), 345, ong_GqlStatus__init_($rt_s(2622)), $rt_s(2623), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2624), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N39 = ong_GqlStatusInfoCodes__init_0($rt_s(2625), 346, ong_GqlStatus__init_($rt_s(2626)), $rt_s(2627), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2628), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2576)); + var$2 = ong_GqlStatus__init_($rt_s(2629)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2577), 346, var$2, $rt_s(2578), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2579)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2630), 347, var$2, $rt_s(2631), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2632), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N40 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N41 = ong_GqlStatusInfoCodes__init_0($rt_s(2580), 347, ong_GqlStatus__init_($rt_s(2581)), $rt_s(2582), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2583)); - ong_GqlStatusInfoCodes_STATUS_42N42 = ong_GqlStatusInfoCodes__init_0($rt_s(2584), 348, ong_GqlStatus__init_($rt_s(2585)), $rt_s(2586), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2587)); + ong_GqlStatusInfoCodes_STATUS_42N41 = ong_GqlStatusInfoCodes__init_0($rt_s(2633), 348, ong_GqlStatus__init_($rt_s(2634)), $rt_s(2635), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2636), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N42 = ong_GqlStatusInfoCodes__init_0($rt_s(2637), 349, ong_GqlStatus__init_($rt_s(2638)), $rt_s(2639), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2640), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2588)); + var$2 = ong_GqlStatus__init_($rt_s(2641)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_variable; var$4[1] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2589), 349, var$2, $rt_s(2590), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2591)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2642), 350, var$2, $rt_s(2643), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2644), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N44 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N45 = ong_GqlStatusInfoCodes__init_0($rt_s(2592), 350, ong_GqlStatus__init_($rt_s(2593)), $rt_s(2594), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2595)); + ong_GqlStatusInfoCodes_STATUS_42N45 = ong_GqlStatusInfoCodes__init_0($rt_s(2645), 351, ong_GqlStatus__init_($rt_s(2646)), $rt_s(2647), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2648), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2596)); + var$2 = ong_GqlStatus__init_($rt_s(2649)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2597), 351, var$2, $rt_s(2598), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2599)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2650), 352, var$2, $rt_s(2651), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2652), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N46 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N47 = ong_GqlStatusInfoCodes__init_0($rt_s(2600), 352, ong_GqlStatus__init_($rt_s(2601)), $rt_s(2602), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2603)); + ong_GqlStatusInfoCodes_STATUS_42N47 = ong_GqlStatusInfoCodes__init_0($rt_s(2653), 353, ong_GqlStatus__init_($rt_s(2654)), $rt_s(2655), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2656), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2604)); + var$2 = ong_GqlStatus__init_($rt_s(2657)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2605), 353, var$2, $rt_s(2606), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2607)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2658), 354, var$2, $rt_s(2659), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2660), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N48 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2608)); + var$2 = ong_GqlStatus__init_($rt_s(2661)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2609), 354, var$2, $rt_s(2610), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2611)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2662), 355, var$2, $rt_s(2663), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2664), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N49 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2612)); + var$2 = ong_GqlStatus__init_($rt_s(2665)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_proc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2613), 355, var$2, $rt_s(2614), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2615)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2666), 356, var$2, $rt_s(2667), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2668), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N50 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2616)); + var$2 = ong_GqlStatus__init_($rt_s(2669)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_param; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2670), 357, var$2, $rt_s(2671), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2672), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N51 = var$1; + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(2673)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2617), 356, var$2, $rt_s(2598), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1596)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2674), 358, var$2, $rt_s(2651), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(1653), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N52 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N53 = ong_GqlStatusInfoCodes__init_0($rt_s(2618), 357, ong_GqlStatus__init_($rt_s(2619)), $rt_s(2620), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2621)); + ong_GqlStatusInfoCodes_STATUS_42N53 = ong_GqlStatusInfoCodes__init_0($rt_s(2675), 359, ong_GqlStatus__init_($rt_s(2676)), $rt_s(2677), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2678), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2622)); + var$2 = ong_GqlStatus__init_($rt_s(2679)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_matchMode; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2623), 358, var$2, $rt_s(2624), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2625)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2680), 360, var$2, $rt_s(2681), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2682), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N54 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2626)); + var$2 = ong_GqlStatus__init_($rt_s(2683)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_selector; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2627), 359, var$2, $rt_s(2628), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2629)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2684), 361, var$2, $rt_s(2685), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2686), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N55 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2630)); + var$2 = ong_GqlStatus__init_($rt_s(2687)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2631), 360, var$2, $rt_s(2632), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2633)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2688), 362, var$2, $rt_s(2689), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2690), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N56 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2634)); + var$2 = ong_GqlStatus__init_($rt_s(2691)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_expr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2635), 361, var$2, $rt_s(2636), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2637)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2692), 363, var$2, $rt_s(2693), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2694), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N57 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N58 = ong_GqlStatusInfoCodes__init_0($rt_s(2638), 362, ong_GqlStatus__init_($rt_s(2639)), $rt_s(2640), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2641)); + ong_GqlStatusInfoCodes_STATUS_42N58 = ong_GqlStatusInfoCodes__init_0($rt_s(2695), 364, ong_GqlStatus__init_($rt_s(2696)), $rt_s(2697), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2698), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2642)); + var$2 = ong_GqlStatus__init_($rt_s(2699)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2643), 363, var$2, $rt_s(2644), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2645)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2700), 365, var$2, $rt_s(2701), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2702), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N59 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2646)); + var$2 = ong_GqlStatus__init_($rt_s(2703)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2647), 364, var$2, $rt_s(2648), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2649)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2704), 366, var$2, $rt_s(2705), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2706), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N62 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N63 = ong_GqlStatusInfoCodes__init_0($rt_s(2650), 365, ong_GqlStatus__init_($rt_s(2651)), $rt_s(2652), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2653)); - ong_GqlStatusInfoCodes_STATUS_42N64 = ong_GqlStatusInfoCodes__init_0($rt_s(2654), 366, ong_GqlStatus__init_($rt_s(2655)), $rt_s(2656), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2657)); + ong_GqlStatusInfoCodes_STATUS_42N63 = ong_GqlStatusInfoCodes__init_0($rt_s(2707), 367, ong_GqlStatus__init_($rt_s(2708)), $rt_s(2709), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2710), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N64 = ong_GqlStatusInfoCodes__init_0($rt_s(2711), 368, ong_GqlStatus__init_($rt_s(2712)), $rt_s(2713), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2714), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2658)); + var$2 = ong_GqlStatus__init_($rt_s(2715)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2659), 367, var$2, $rt_s(2660), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2661)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2716), 369, var$2, $rt_s(2717), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2718), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N65 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2662)); + var$2 = ong_GqlStatus__init_($rt_s(2719)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2663), 368, var$2, $rt_s(2664), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2665)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2720), 370, var$2, $rt_s(2721), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2722), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N66 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2666)); + var$2 = ong_GqlStatus__init_($rt_s(2723)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_param; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2667), 369, var$2, $rt_s(2668), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2669)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2724), 371, var$2, $rt_s(2725), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2726), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N67 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2670)); + var$2 = ong_GqlStatus__init_($rt_s(2727)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2671), 370, var$2, $rt_s(2672), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2673)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2728), 372, var$2, $rt_s(2729), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2730), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N68 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2674)); + var$2 = ong_GqlStatus__init_($rt_s(2731)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_fun; var$4[1] = ong_GqlParams$StringParam_expr; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2675), 371, var$2, $rt_s(2676), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2677)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2732), 373, var$2, $rt_s(2733), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2734), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N69 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2678)); + var$2 = ong_GqlStatus__init_($rt_s(2735)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2679), 372, var$2, $rt_s(2680), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2681)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2736), 374, var$2, $rt_s(2737), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2738), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N70 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N71 = ong_GqlStatusInfoCodes__init_0($rt_s(2682), 373, ong_GqlStatus__init_($rt_s(2683)), $rt_s(2684), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2685)); - ong_GqlStatusInfoCodes_STATUS_42N72 = ong_GqlStatusInfoCodes__init_0($rt_s(2686), 374, ong_GqlStatus__init_($rt_s(2687)), $rt_s(2688), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2689)); - ong_GqlStatusInfoCodes_STATUS_42N73 = ong_GqlStatusInfoCodes__init_0($rt_s(2690), 375, ong_GqlStatus__init_($rt_s(2691)), $rt_s(2692), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2693)); + ong_GqlStatusInfoCodes_STATUS_42N71 = ong_GqlStatusInfoCodes__init_0($rt_s(2739), 375, ong_GqlStatus__init_($rt_s(2740)), $rt_s(2741), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2742), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N72 = ong_GqlStatusInfoCodes__init_0($rt_s(2743), 376, ong_GqlStatus__init_($rt_s(2744)), $rt_s(2745), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2746), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N73 = ong_GqlStatusInfoCodes__init_0($rt_s(2747), 377, ong_GqlStatus__init_($rt_s(2748)), $rt_s(2749), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2750), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2694)); + var$2 = ong_GqlStatus__init_($rt_s(2751)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_db1; var$4[1] = ong_GqlParams$StringParam_db2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2695), 376, var$2, $rt_s(2696), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2697)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2752), 378, var$2, $rt_s(2753), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2754), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N74 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2698)); + var$2 = ong_GqlStatus__init_($rt_s(2755)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_fun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2699), 377, var$2, $rt_s(2700), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2701)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2756), 379, var$2, $rt_s(2757), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2758), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N75 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2702)); + var$2 = ong_GqlStatus__init_($rt_s(2759)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); - var$3.data[0] = ong_GqlParams$StringParam_hint; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2703), 378, var$2, $rt_s(2704), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2705)); + var$4 = var$3.data; + var$5 = ong_GqlParams$ListParam_hintList; + var$4[0] = var$5; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2760), 380, var$2, $rt_s(2761), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2762), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N76 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2706)); + var$2 = ong_GqlStatus__init_($rt_s(2763)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_hint; var$4[1] = ong_GqlParams$StringParam_entityType; var$4[2] = ong_GqlParams$StringParam_variable; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2707), 379, var$2, $rt_s(2708), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2709)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2764), 381, var$2, $rt_s(2765), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2766), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N77 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2710)); + var$2 = ong_GqlStatus__init_($rt_s(2767)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_variable; var$4[1] = ong_GqlParams$StringParam_clause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2711), 380, var$2, $rt_s(2712), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2713)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2768), 382, var$2, $rt_s(2769), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2770), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N78 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2714)); + var$2 = ong_GqlStatus__init_($rt_s(2771)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_param; var$5 = ong_GqlParams$ListParam_paramList; var$4[1] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2715), 381, var$2, $rt_s(2716), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2717)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2772), 383, var$2, $rt_s(2773), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2774), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N81 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2718)); + var$2 = ong_GqlStatus__init_($rt_s(2775)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_db1; var$4[1] = ong_GqlParams$StringParam_db2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2719), 382, var$2, $rt_s(2720), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2721)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2776), 384, var$2, $rt_s(2777), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2778), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N82 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N83 = ong_GqlStatusInfoCodes__init_0($rt_s(2722), 383, ong_GqlStatus__init_($rt_s(2723)), $rt_s(2724), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2725)); - ong_GqlStatusInfoCodes_STATUS_42N84 = ong_GqlStatusInfoCodes__init_0($rt_s(2726), 384, ong_GqlStatus__init_($rt_s(2727)), $rt_s(2728), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2729)); - ong_GqlStatusInfoCodes_STATUS_42N85 = ong_GqlStatusInfoCodes__init_0($rt_s(2730), 385, ong_GqlStatus__init_($rt_s(2731)), $rt_s(2732), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2733)); + ong_GqlStatusInfoCodes_STATUS_42N83 = ong_GqlStatusInfoCodes__init_0($rt_s(2779), 385, ong_GqlStatus__init_($rt_s(2780)), $rt_s(2781), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2782), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N84 = ong_GqlStatusInfoCodes__init_0($rt_s(2783), 386, ong_GqlStatus__init_($rt_s(2784)), $rt_s(2785), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2786), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N85 = ong_GqlStatusInfoCodes__init_0($rt_s(2787), 387, ong_GqlStatus__init_($rt_s(2788)), $rt_s(2789), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2790), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2734)); + var$2 = ong_GqlStatus__init_($rt_s(2791)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_syntax; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2735), 386, var$2, $rt_s(2736), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2737)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2792), 388, var$2, $rt_s(2793), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2794), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N86 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2738)); + var$2 = ong_GqlStatus__init_($rt_s(2795)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_db1; var$4[1] = ong_GqlParams$StringParam_db2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2739), 387, var$2, $rt_s(2740), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2741)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2796), 389, var$2, $rt_s(2797), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2798), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N87 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N88 = ong_GqlStatusInfoCodes__init_0($rt_s(2742), 388, ong_GqlStatus__init_($rt_s(2743)), $rt_s(2744), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2745)); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2746)); + var$2 = ong_GqlStatus__init_($rt_s(2799)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_cause; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2747), 389, var$2, $rt_s(2748), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2749)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2800), 390, var$2, $rt_s(2801), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2802), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N89 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2750)); + var$2 = ong_GqlStatus__init_($rt_s(2803)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2751), 390, var$2, $rt_s(2752), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2753)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2804), 391, var$2, $rt_s(2805), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2806), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N90 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2754)); + var$2 = ong_GqlStatus__init_($rt_s(2807)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_propKey; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2755), 391, var$2, $rt_s(2756), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2757)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2808), 392, var$2, $rt_s(2809), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2810), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N91 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N92 = ong_GqlStatusInfoCodes__init_0($rt_s(2758), 392, ong_GqlStatus__init_($rt_s(2759)), $rt_s(2760), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2761)); - ong_GqlStatusInfoCodes_STATUS_42N93 = ong_GqlStatusInfoCodes__init_0($rt_s(2762), 393, ong_GqlStatus__init_($rt_s(2763)), $rt_s(2764), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2765)); - ong_GqlStatusInfoCodes_STATUS_42N94 = ong_GqlStatusInfoCodes__init_0($rt_s(2766), 394, ong_GqlStatus__init_($rt_s(2767)), $rt_s(2768), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2769)); - ong_GqlStatusInfoCodes_STATUS_42N95 = ong_GqlStatusInfoCodes__init_0($rt_s(2770), 395, ong_GqlStatus__init_($rt_s(2771)), $rt_s(2772), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2773)); - ong_GqlStatusInfoCodes_STATUS_42N96 = ong_GqlStatusInfoCodes__init_0($rt_s(2774), 396, ong_GqlStatus__init_($rt_s(2775)), $rt_s(2776), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2777)); + ong_GqlStatusInfoCodes_STATUS_42N92 = ong_GqlStatusInfoCodes__init_0($rt_s(2811), 393, ong_GqlStatus__init_($rt_s(2812)), $rt_s(2813), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2814), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N93 = ong_GqlStatusInfoCodes__init_0($rt_s(2815), 394, ong_GqlStatus__init_($rt_s(2816)), $rt_s(2817), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2818), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N94 = ong_GqlStatusInfoCodes__init_0($rt_s(2819), 395, ong_GqlStatus__init_($rt_s(2820)), $rt_s(2821), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2822), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N95 = ong_GqlStatusInfoCodes__init_0($rt_s(2823), 396, ong_GqlStatus__init_($rt_s(2824)), $rt_s(2825), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2826), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N96 = ong_GqlStatusInfoCodes__init_0($rt_s(2827), 397, ong_GqlStatus__init_($rt_s(2828)), $rt_s(2829), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2830), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2778)); + var$2 = ong_GqlStatus__init_($rt_s(2831)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_clause; var$4[1] = ong_GqlParams$StringParam_auth; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2779), 397, var$2, $rt_s(2780), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2781)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2832), 398, var$2, $rt_s(2833), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2834), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_42N97 = var$1; - ong_GqlStatusInfoCodes_STATUS_42N98 = ong_GqlStatusInfoCodes__init_0($rt_s(2782), 398, ong_GqlStatus__init_($rt_s(2783)), $rt_s(2784), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2785)); - ong_GqlStatusInfoCodes_STATUS_42N99 = ong_GqlStatusInfoCodes__init_0($rt_s(2786), 399, ong_GqlStatus__init_($rt_s(2787)), $rt_s(2788), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2789)); - ong_GqlStatusInfoCodes_STATUS_42NA0 = ong_GqlStatusInfoCodes__init_0($rt_s(2790), 400, ong_GqlStatus__init_($rt_s(2791)), $rt_s(2792), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2793)); - ong_GqlStatusInfoCodes_STATUS_42NA1 = ong_GqlStatusInfoCodes__init_0($rt_s(2794), 401, ong_GqlStatus__init_($rt_s(2795)), $rt_s(2796), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2797)); - ong_GqlStatusInfoCodes_STATUS_42NA2 = ong_GqlStatusInfoCodes__init_0($rt_s(2798), 402, ong_GqlStatus__init_($rt_s(2799)), $rt_s(2800), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2801)); - ong_GqlStatusInfoCodes_STATUS_42NA3 = ong_GqlStatusInfoCodes__init_0($rt_s(2802), 403, ong_GqlStatus__init_($rt_s(2803)), $rt_s(2804), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2805)); - ong_GqlStatusInfoCodes_STATUS_42NA4 = ong_GqlStatusInfoCodes__init_0($rt_s(2806), 404, ong_GqlStatus__init_($rt_s(2807)), $rt_s(2808), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2809)); - ong_GqlStatusInfoCodes_STATUS_42NA5 = ong_GqlStatusInfoCodes__init_0($rt_s(2810), 405, ong_GqlStatus__init_($rt_s(2811)), $rt_s(2812), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2813)); - ong_GqlStatusInfoCodes_STATUS_42NA6 = ong_GqlStatusInfoCodes__init_0($rt_s(2814), 406, ong_GqlStatus__init_($rt_s(2815)), $rt_s(2816), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2817)); - ong_GqlStatusInfoCodes_STATUS_42NFC = ong_GqlStatusInfoCodes__init_0($rt_s(2818), 407, ong_GqlStatus__init_($rt_s(2819)), $rt_s(2820), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2821)); - ong_GqlStatusInfoCodes_STATUS_42NFD = ong_GqlStatusInfoCodes__init_0($rt_s(2822), 408, ong_GqlStatus__init_($rt_s(2823)), $rt_s(2824), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2825)); - ong_GqlStatusInfoCodes_STATUS_42NFE = ong_GqlStatusInfoCodes__init_0($rt_s(2826), 409, ong_GqlStatus__init_($rt_s(2827)), $rt_s(2828), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2829)); - ong_GqlStatusInfoCodes_STATUS_42NFF = ong_GqlStatusInfoCodes__init_0($rt_s(2830), 410, ong_GqlStatus__init_($rt_s(2831)), $rt_s(2832), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2833)); + ong_GqlStatusInfoCodes_STATUS_42N98 = ong_GqlStatusInfoCodes__init_0($rt_s(2835), 399, ong_GqlStatus__init_($rt_s(2836)), $rt_s(2837), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2838), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42N99 = ong_GqlStatusInfoCodes__init_0($rt_s(2839), 400, ong_GqlStatus__init_($rt_s(2840)), $rt_s(2841), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2842), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA0 = ong_GqlStatusInfoCodes__init_0($rt_s(2843), 401, ong_GqlStatus__init_($rt_s(2844)), $rt_s(2845), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2846), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA1 = ong_GqlStatusInfoCodes__init_0($rt_s(2847), 402, ong_GqlStatus__init_($rt_s(2848)), $rt_s(2849), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2850), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA2 = ong_GqlStatusInfoCodes__init_0($rt_s(2851), 403, ong_GqlStatus__init_($rt_s(2852)), $rt_s(2853), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2854), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA3 = ong_GqlStatusInfoCodes__init_0($rt_s(2855), 404, ong_GqlStatus__init_($rt_s(2856)), $rt_s(2857), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2858), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA4 = ong_GqlStatusInfoCodes__init_0($rt_s(2859), 405, ong_GqlStatus__init_($rt_s(2860)), $rt_s(2861), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2862), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA5 = ong_GqlStatusInfoCodes__init_0($rt_s(2863), 406, ong_GqlStatus__init_($rt_s(2864)), $rt_s(2865), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2866), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA6 = ong_GqlStatusInfoCodes__init_0($rt_s(2867), 407, ong_GqlStatus__init_($rt_s(2868)), $rt_s(2869), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2870), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2834)); + var$2 = ong_GqlStatus__init_($rt_s(2871)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_db; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2872), 408, var$2, $rt_s(2873), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2874), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA7 = var$1; + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(2875)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_cmd; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2876), 409, var$2, $rt_s(2877), var$3, ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2878), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NA8 = var$1; + ong_GqlStatusInfoCodes_STATUS_42NFC = ong_GqlStatusInfoCodes__init_0($rt_s(2879), 410, ong_GqlStatus__init_($rt_s(2880)), $rt_s(2881), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2882), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NFD = ong_GqlStatusInfoCodes__init_0($rt_s(2883), 411, ong_GqlStatus__init_($rt_s(2884)), $rt_s(2885), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2886), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NFE = ong_GqlStatusInfoCodes__init_0($rt_s(2887), 412, ong_GqlStatus__init_($rt_s(2888)), $rt_s(2889), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2890), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_42NFF = ong_GqlStatusInfoCodes__init_0($rt_s(2891), 413, ong_GqlStatus__init_($rt_s(2892)), $rt_s(2893), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION, $rt_s(2894), ong_ErrorClassification_CLIENT_ERROR); + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(2895)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_msgTitle; var$4[1] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2835), 411, var$2, $rt_s(2836), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2837)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2896), 414, var$2, $rt_s(2897), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2898), ong_ErrorClassification_UNKNOWN); ong_GqlStatusInfoCodes_STATUS_50N00 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2838)); + var$2 = ong_GqlStatus__init_($rt_s(2899)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_server; var$4[1] = ong_GqlParams$StringParam_msgTitle; var$4[2] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2839), 412, var$2, $rt_s(2840), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2841)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2900), 415, var$2, $rt_s(2901), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2902), ong_ErrorClassification_UNKNOWN); ong_GqlStatusInfoCodes_STATUS_50N01 = var$1; - ong_GqlStatusInfoCodes_STATUS_50N05 = ong_GqlStatusInfoCodes__init_0($rt_s(2842), 413, ong_GqlStatus__init_($rt_s(2843)), $rt_s(2844), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2845)); - ong_GqlStatusInfoCodes_STATUS_50N07 = ong_GqlStatusInfoCodes__init_0($rt_s(2846), 414, ong_GqlStatus__init_($rt_s(2847)), $rt_s(2848), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2124)); + ong_GqlStatusInfoCodes_STATUS_50N05 = ong_GqlStatusInfoCodes__init_0($rt_s(2903), 416, ong_GqlStatus__init_($rt_s(2904)), $rt_s(2905), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2906), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_50N06 = ong_GqlStatusInfoCodes__init_0($rt_s(2907), 417, ong_GqlStatus__init_($rt_s(2908)), $rt_s(2909), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2910), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_50N07 = ong_GqlStatusInfoCodes__init_0($rt_s(2911), 418, ong_GqlStatus__init_($rt_s(2912)), $rt_s(2913), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2173), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2849)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); - var$3.data[0] = ong_GqlParams$StringParam_idxDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2850), 415, var$2, $rt_s(2851), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2852)); - ong_GqlStatusInfoCodes_STATUS_50N08 = var$1; - var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2853)); + var$2 = ong_GqlStatus__init_($rt_s(2914)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_boltServerState; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2854), 416, var$2, $rt_s(2855), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2856)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2915), 419, var$2, $rt_s(2916), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2917), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_50N09 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2857)); + var$2 = ong_GqlStatus__init_($rt_s(2918)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idxDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2858), 417, var$2, $rt_s(2859), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2860)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2919), 420, var$2, $rt_s(2920), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2921), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_50N10 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2861)); + var$2 = ong_GqlStatus__init_($rt_s(2922)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_constrDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2862), 418, var$2, $rt_s(2851), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2863)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2923), 421, var$2, $rt_s(2924), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2925), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_50N11 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2864)); + var$2 = ong_GqlStatus__init_($rt_s(2926)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_constrDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2865), 419, var$2, $rt_s(2859), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2866)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2927), 422, var$2, $rt_s(2920), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2928), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_50N12 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2867)); + var$2 = ong_GqlStatus__init_($rt_s(2929)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_constrDescrOrName; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2868), 420, var$2, $rt_s(2869), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2870)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2930), 423, var$2, $rt_s(2931), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2932), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_50N13 = var$1; - ong_GqlStatusInfoCodes_STATUS_50N14 = ong_GqlStatusInfoCodes__init_0($rt_s(2871), 421, ong_GqlStatus__init_($rt_s(2872)), $rt_s(2873), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2874)); + ong_GqlStatusInfoCodes_STATUS_50N14 = ong_GqlStatusInfoCodes__init_0($rt_s(2933), 424, ong_GqlStatus__init_($rt_s(2934)), $rt_s(2935), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2936), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2875)); + var$2 = ong_GqlStatus__init_($rt_s(2937)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idx; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2876), 422, var$2, $rt_s(2877), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2878)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2938), 425, var$2, $rt_s(2939), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2940), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_50N15 = var$1; + ong_GqlStatusInfoCodes_STATUS_50N16 = ong_GqlStatusInfoCodes__init_0($rt_s(2941), 426, ong_GqlStatus__init_($rt_s(2942)), $rt_s(2909), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2943), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_50N17 = ong_GqlStatusInfoCodes__init_0($rt_s(2944), 427, ong_GqlStatus__init_($rt_s(2945)), $rt_s(2909), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2946), ong_ErrorClassification_DATABASE_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2879)); + var$2 = ong_GqlStatus__init_($rt_s(2947)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_schemaDescr; var$4[1] = ong_GqlParams$StringParam_token; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2880), 423, var$2, $rt_s(2881), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2882)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2948), 428, var$2, $rt_s(2949), var$3, ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2950), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_50N21 = var$1; - ong_GqlStatusInfoCodes_STATUS_50N42 = ong_GqlStatusInfoCodes__init_0($rt_s(2883), 424, ong_GqlStatus__init_($rt_s(2884)), $rt_s(2885), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2886)); - ong_GqlStatusInfoCodes_STATUS_51N00 = ong_GqlStatusInfoCodes__init_0($rt_s(2887), 425, ong_GqlStatus__init_($rt_s(2888)), $rt_s(2889), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2890)); + ong_GqlStatusInfoCodes_STATUS_50N42 = ong_GqlStatusInfoCodes__init_0($rt_s(2951), 429, ong_GqlStatus__init_($rt_s(2952)), $rt_s(2953), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GENERAL_PROCESSING_EXCEPTION, $rt_s(2954), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_51N00 = ong_GqlStatusInfoCodes__init_0($rt_s(2955), 430, ong_GqlStatus__init_($rt_s(2956)), $rt_s(2957), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2958), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2891)); + var$2 = ong_GqlStatus__init_($rt_s(2959)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procField; var$4[1] = ong_GqlParams$StringParam_procClass; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2892), 426, var$2, $rt_s(2893), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2894)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2960), 431, var$2, $rt_s(2961), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2962), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N01 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2895)); + var$2 = ong_GqlStatus__init_($rt_s(2963)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procClass; var$4[1] = ong_GqlParams$StringParam_procField; var$4[2] = ong_GqlParams$StringParam_procFieldType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2896), 427, var$2, $rt_s(2897), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2898)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2964), 432, var$2, $rt_s(2965), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2966), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N02 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2899)); + var$2 = ong_GqlStatus__init_($rt_s(2967)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procClass; var$4[1] = ong_GqlParams$StringParam_procField; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2900), 428, var$2, $rt_s(2901), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2902)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2968), 433, var$2, $rt_s(2969), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2970), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N03 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2903)); + var$2 = ong_GqlStatus__init_($rt_s(2971)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procField; var$4[1] = ong_GqlParams$StringParam_procClass; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2904), 429, var$2, $rt_s(2905), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2906)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2972), 434, var$2, $rt_s(2973), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2974), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N04 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2907)); + var$2 = ong_GqlStatus__init_($rt_s(2975)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procField; var$4[1] = ong_GqlParams$StringParam_procClass; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2908), 430, var$2, $rt_s(2909), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2910)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2976), 435, var$2, $rt_s(2977), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2978), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N05 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2911)); + var$2 = ong_GqlStatus__init_($rt_s(2979)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$NumberParam_pos; var$4[1] = ong_GqlParams$StringParam_procMethod; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2912), 431, var$2, $rt_s(2913), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2914)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2980), 436, var$2, $rt_s(2981), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2982), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N06 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2915)); + var$2 = ong_GqlStatus__init_($rt_s(2983)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_procFun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2916), 432, var$2, $rt_s(2917), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2918)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2984), 437, var$2, $rt_s(2985), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2986), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N07 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2919)); + var$2 = ong_GqlStatus__init_($rt_s(2987)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_procClass; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2920), 433, var$2, $rt_s(2921), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2922)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2988), 438, var$2, $rt_s(2989), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2990), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N08 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2923)); + var$2 = ong_GqlStatus__init_($rt_s(2991)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procMethod; var$4[1] = ong_GqlParams$StringParam_procClass; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2924), 434, var$2, $rt_s(2925), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2926)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2992), 439, var$2, $rt_s(2993), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2994), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N09 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2927)); + var$2 = ong_GqlStatus__init_($rt_s(2995)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procMethod; var$4[1] = ong_GqlParams$StringParam_procClass; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2928), 435, var$2, $rt_s(2929), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2930)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2996), 440, var$2, $rt_s(2997), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2998), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N10 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2931)); + var$2 = ong_GqlStatus__init_($rt_s(2999)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_procClass; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2932), 436, var$2, $rt_s(2933), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2934)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3000), 441, var$2, $rt_s(3001), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3002), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N11 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2935)); + var$2 = ong_GqlStatus__init_($rt_s(3003)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_proc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2936), 437, var$2, $rt_s(2937), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2938)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3004), 442, var$2, $rt_s(3005), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3006), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N12 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2939)); + var$2 = ong_GqlStatus__init_($rt_s(3007)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_procFun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2940), 438, var$2, $rt_s(2941), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2942)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3008), 443, var$2, $rt_s(3009), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3010), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N13 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2943)); + var$2 = ong_GqlStatus__init_($rt_s(3011)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_proc; var$4[1] = ong_GqlParams$StringParam_procFieldType; var$4[2] = ong_GqlParams$StringParam_procField; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2944), 439, var$2, $rt_s(2945), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2946)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3012), 444, var$2, $rt_s(3013), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3014), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N14 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2947)); + var$2 = ong_GqlStatus__init_($rt_s(3015)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_valueType; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2948), 440, var$2, $rt_s(2949), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2950)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3016), 445, var$2, $rt_s(3017), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3018), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N15 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2951)); + var$2 = ong_GqlStatus__init_($rt_s(3019)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_valueType; var$4[1] = ong_GqlParams$StringParam_input; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2952), 441, var$2, $rt_s(2953), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2954)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3020), 446, var$2, $rt_s(3021), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3022), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N16 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2955)); + var$2 = ong_GqlStatus__init_($rt_s(3023)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_procFun; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2956), 442, var$2, $rt_s(2957), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2958)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3024), 447, var$2, $rt_s(3025), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3026), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N17 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2959)); + var$2 = ong_GqlStatus__init_($rt_s(3027)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_procMethod; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2960), 443, var$2, $rt_s(2961), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2962)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3028), 448, var$2, $rt_s(3029), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3030), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N18 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2963)); + var$2 = ong_GqlStatus__init_($rt_s(3031)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_procField; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2964), 444, var$2, $rt_s(2965), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2966)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3032), 449, var$2, $rt_s(3033), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3034), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N20 = var$1; - ong_GqlStatusInfoCodes_STATUS_51N21 = ong_GqlStatusInfoCodes__init_0($rt_s(2967), 445, ong_GqlStatus__init_($rt_s(2968)), $rt_s(2969), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2970)); - ong_GqlStatusInfoCodes_STATUS_51N22 = ong_GqlStatusInfoCodes__init_0($rt_s(2971), 446, ong_GqlStatus__init_($rt_s(2972)), $rt_s(2973), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2974)); - ong_GqlStatusInfoCodes_STATUS_51N23 = ong_GqlStatusInfoCodes__init_0($rt_s(2975), 447, ong_GqlStatus__init_($rt_s(2976)), $rt_s(2977), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2978)); - ong_GqlStatusInfoCodes_STATUS_51N24 = ong_GqlStatusInfoCodes__init_0($rt_s(2979), 448, ong_GqlStatus__init_($rt_s(2980)), $rt_s(2981), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2982)); - ong_GqlStatusInfoCodes_STATUS_51N25 = ong_GqlStatusInfoCodes__init_0($rt_s(2983), 449, ong_GqlStatus__init_($rt_s(2984)), $rt_s(2985), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2986)); + ong_GqlStatusInfoCodes_STATUS_51N21 = ong_GqlStatusInfoCodes__init_0($rt_s(3035), 450, ong_GqlStatus__init_($rt_s(3036)), $rt_s(3037), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3038), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N22 = ong_GqlStatusInfoCodes__init_0($rt_s(3039), 451, ong_GqlStatus__init_($rt_s(3040)), $rt_s(3041), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3042), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N23 = ong_GqlStatusInfoCodes__init_0($rt_s(3043), 452, ong_GqlStatus__init_($rt_s(3044)), $rt_s(3045), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3046), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N24 = ong_GqlStatusInfoCodes__init_0($rt_s(3047), 453, ong_GqlStatus__init_($rt_s(3048)), $rt_s(3049), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3050), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N25 = ong_GqlStatusInfoCodes__init_0($rt_s(3051), 454, ong_GqlStatus__init_($rt_s(3052)), $rt_s(3053), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3054), ong_ErrorClassification_TRANSIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2987)); + var$2 = ong_GqlStatus__init_($rt_s(3055)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_item; var$4[1] = ong_GqlParams$StringParam_feat; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2988), 450, var$2, $rt_s(2989), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2990)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3056), 455, var$2, $rt_s(3057), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3058), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N26 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2991)); + var$2 = ong_GqlStatus__init_($rt_s(3059)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_item; var$4[1] = ong_GqlParams$StringParam_edition; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2992), 451, var$2, $rt_s(2993), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2994)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3060), 456, var$2, $rt_s(3061), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3062), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N27 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2995)); + var$2 = ong_GqlStatus__init_($rt_s(3063)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(2996), 452, var$2, $rt_s(2997), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(2998)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3064), 457, var$2, $rt_s(3065), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3066), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N28 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(2999)); + var$2 = ong_GqlStatus__init_($rt_s(3067)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_cmd; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3000), 453, var$2, $rt_s(3001), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3002)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3068), 458, var$2, $rt_s(3069), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3070), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N29 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3003)); + var$2 = ong_GqlStatus__init_($rt_s(3071)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_item; var$4[1] = ong_GqlParams$StringParam_context; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3004), 454, var$2, $rt_s(2993), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3005)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3072), 459, var$2, $rt_s(3061), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3073), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N30 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3006)); + var$2 = ong_GqlStatus__init_($rt_s(3074)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_item; var$4[1] = ong_GqlParams$StringParam_context; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3007), 455, var$2, $rt_s(2993), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3008)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3075), 460, var$2, $rt_s(3061), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3076), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N31 = var$1; - ong_GqlStatusInfoCodes_STATUS_51N32 = ong_GqlStatusInfoCodes__init_0($rt_s(3009), 456, ong_GqlStatus__init_($rt_s(3010)), $rt_s(3011), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3012)); - ong_GqlStatusInfoCodes_STATUS_51N33 = ong_GqlStatusInfoCodes__init_0($rt_s(3013), 457, ong_GqlStatus__init_($rt_s(3014)), $rt_s(3015), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3016)); - ong_GqlStatusInfoCodes_STATUS_51N34 = ong_GqlStatusInfoCodes__init_0($rt_s(3017), 458, ong_GqlStatus__init_($rt_s(3018)), $rt_s(3019), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3020)); + ong_GqlStatusInfoCodes_STATUS_51N32 = ong_GqlStatusInfoCodes__init_0($rt_s(3077), 461, ong_GqlStatus__init_($rt_s(3078)), $rt_s(3079), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3080), ong_ErrorClassification_DATABASE_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N33 = ong_GqlStatusInfoCodes__init_0($rt_s(3081), 462, ong_GqlStatus__init_($rt_s(3082)), $rt_s(3083), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3084), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N34 = ong_GqlStatusInfoCodes__init_0($rt_s(3085), 463, ong_GqlStatus__init_($rt_s(3086)), $rt_s(3087), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3088), ong_ErrorClassification_TRANSIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3021)); + var$2 = ong_GqlStatus__init_($rt_s(3089)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3022), 459, var$2, $rt_s(3023), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3024)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3090), 464, var$2, $rt_s(3091), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3092), ong_ErrorClassification_TRANSIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N35 = var$1; - ong_GqlStatusInfoCodes_STATUS_51N36 = ong_GqlStatusInfoCodes__init_0($rt_s(3025), 460, ong_GqlStatus__init_($rt_s(3026)), $rt_s(3027), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3028)); - ong_GqlStatusInfoCodes_STATUS_51N37 = ong_GqlStatusInfoCodes__init_0($rt_s(3029), 461, ong_GqlStatus__init_($rt_s(3030)), $rt_s(3031), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3032)); - ong_GqlStatusInfoCodes_STATUS_51N38 = ong_GqlStatusInfoCodes__init_0($rt_s(3033), 462, ong_GqlStatus__init_($rt_s(3034)), $rt_s(3035), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3036)); - ong_GqlStatusInfoCodes_STATUS_51N39 = ong_GqlStatusInfoCodes__init_0($rt_s(3037), 463, ong_GqlStatus__init_($rt_s(3038)), $rt_s(3039), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3040)); + ong_GqlStatusInfoCodes_STATUS_51N36 = ong_GqlStatusInfoCodes__init_0($rt_s(3093), 465, ong_GqlStatus__init_($rt_s(3094)), $rt_s(3095), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3096), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N37 = ong_GqlStatusInfoCodes__init_0($rt_s(3097), 466, ong_GqlStatus__init_($rt_s(3098)), $rt_s(3099), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3100), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N38 = ong_GqlStatusInfoCodes__init_0($rt_s(3101), 467, ong_GqlStatus__init_($rt_s(3102)), $rt_s(3103), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3104), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N39 = ong_GqlStatusInfoCodes__init_0($rt_s(3105), 468, ong_GqlStatus__init_($rt_s(3106)), $rt_s(3107), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3108), ong_ErrorClassification_DATABASE_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3041)); + var$2 = ong_GqlStatus__init_($rt_s(3109)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3042), 464, var$2, $rt_s(3043), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3044)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3110), 469, var$2, $rt_s(3111), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3112), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_51N40 = var$1; - ong_GqlStatusInfoCodes_STATUS_51N41 = ong_GqlStatusInfoCodes__init_0($rt_s(3045), 465, ong_GqlStatus__init_($rt_s(3046)), $rt_s(3047), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3048)); + ong_GqlStatusInfoCodes_STATUS_51N41 = ong_GqlStatusInfoCodes__init_0($rt_s(3113), 470, ong_GqlStatus__init_($rt_s(3114)), $rt_s(3115), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3116), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3049)); + var$2 = ong_GqlStatus__init_($rt_s(3117)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_alloc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3050), 466, var$2, $rt_s(3051), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3052)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3118), 471, var$2, $rt_s(3119), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3120), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N42 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3053)); + var$2 = ong_GqlStatus__init_($rt_s(3121)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_serverList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3054), 467, var$2, $rt_s(3055), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3056)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3122), 472, var$2, $rt_s(3123), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3124), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N43 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3057)); + var$2 = ong_GqlStatus__init_($rt_s(3125)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3058), 468, var$2, $rt_s(3059), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3060)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3126), 473, var$2, $rt_s(3127), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3128), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N44 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3061)); + var$2 = ong_GqlStatus__init_($rt_s(3129)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3062), 469, var$2, $rt_s(3063), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3064)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3130), 474, var$2, $rt_s(3131), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3132), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N45 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3065)); + var$2 = ong_GqlStatus__init_($rt_s(3133)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3066), 470, var$2, $rt_s(3067), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3068)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3134), 475, var$2, $rt_s(3135), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3136), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N46 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3069)); + var$2 = ong_GqlStatus__init_($rt_s(3137)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3070), 471, var$2, $rt_s(3071), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3072)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3138), 476, var$2, $rt_s(3139), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3140), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N47 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3073)); + var$2 = ong_GqlStatus__init_($rt_s(3141)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3074), 472, var$2, $rt_s(3075), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3076)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3142), 477, var$2, $rt_s(3143), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3144), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N48 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3077)); + var$2 = ong_GqlStatus__init_($rt_s(3145)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3078), 473, var$2, $rt_s(3079), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3080)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3146), 478, var$2, $rt_s(3147), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3148), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N49 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3081)); + var$2 = ong_GqlStatus__init_($rt_s(3149)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3082), 474, var$2, $rt_s(3083), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3084)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3150), 479, var$2, $rt_s(3151), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3152), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N50 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3085)); + var$2 = ong_GqlStatus__init_($rt_s(3153)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3086), 475, var$2, $rt_s(3087), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3088)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3154), 480, var$2, $rt_s(3155), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3156), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N51 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3089)); + var$2 = ong_GqlStatus__init_($rt_s(3157)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$NumberParam_count; var$4[1] = ong_GqlParams$NumberParam_upper; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3090), 476, var$2, $rt_s(3091), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3092)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3158), 481, var$2, $rt_s(3159), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3160), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N52 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3093)); + var$2 = ong_GqlStatus__init_($rt_s(3161)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$NumberParam_count; var$4[1] = ong_GqlParams$NumberParam_upper; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3094), 477, var$2, $rt_s(3095), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3096)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3162), 482, var$2, $rt_s(3163), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3164), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N53 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3097)); + var$2 = ong_GqlStatus__init_($rt_s(3165)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3098), 478, var$2, $rt_s(3099), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3100)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3166), 483, var$2, $rt_s(3167), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3168), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N54 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3101)); + var$2 = ong_GqlStatus__init_($rt_s(3169)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_db; var$4[1] = ong_GqlParams$StringParam_cfgSetting; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3102), 479, var$2, $rt_s(3103), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3104)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3170), 484, var$2, $rt_s(3171), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3172), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_51N55 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3105)); + var$2 = ong_GqlStatus__init_($rt_s(3173)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 4); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_serverType; var$4[1] = ong_GqlParams$NumberParam_count1; var$4[2] = ong_GqlParams$StringParam_allocType; var$4[3] = ong_GqlParams$NumberParam_count2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3106), 480, var$2, $rt_s(3107), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3108)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3174), 485, var$2, $rt_s(3175), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3176), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N56 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3109)); + var$2 = ong_GqlStatus__init_($rt_s(3177)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3110), 481, var$2, $rt_s(3111), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3112)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3178), 486, var$2, $rt_s(3179), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3180), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_51N57 = var$1; - ong_GqlStatusInfoCodes_STATUS_51N59 = ong_GqlStatusInfoCodes__init_0($rt_s(3113), 482, ong_GqlStatus__init_($rt_s(3114)), $rt_s(3115), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3116)); - ong_GqlStatusInfoCodes_STATUS_51N60 = ong_GqlStatusInfoCodes__init_0($rt_s(3117), 483, ong_GqlStatus__init_($rt_s(3118)), $rt_s(3119), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3120)); + ong_GqlStatusInfoCodes_STATUS_51N59 = ong_GqlStatusInfoCodes__init_0($rt_s(3181), 487, ong_GqlStatus__init_($rt_s(3182)), $rt_s(3183), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3184), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N60 = ong_GqlStatusInfoCodes__init_0($rt_s(3185), 488, ong_GqlStatus__init_($rt_s(3186)), $rt_s(3187), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3188), ong_ErrorClassification_DATABASE_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3121)); + var$2 = ong_GqlStatus__init_($rt_s(3189)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idx; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3122), 484, var$2, $rt_s(3123), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3124)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3190), 489, var$2, $rt_s(3191), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3192), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_51N61 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3125)); + var$2 = ong_GqlStatus__init_($rt_s(3193)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_idx; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3126), 485, var$2, $rt_s(3127), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3128)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3194), 490, var$2, $rt_s(3195), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3196), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_51N62 = var$1; - ong_GqlStatusInfoCodes_STATUS_51N63 = ong_GqlStatusInfoCodes__init_0($rt_s(3129), 486, ong_GqlStatus__init_($rt_s(3130)), $rt_s(3131), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3132)); - ong_GqlStatusInfoCodes_STATUS_51N64 = ong_GqlStatusInfoCodes__init_0($rt_s(3133), 487, ong_GqlStatus__init_($rt_s(3134)), $rt_s(3135), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3136)); + ong_GqlStatusInfoCodes_STATUS_51N63 = ong_GqlStatusInfoCodes__init_0($rt_s(3197), 491, ong_GqlStatus__init_($rt_s(3198)), $rt_s(3199), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3200), ong_ErrorClassification_TRANSIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N64 = ong_GqlStatusInfoCodes__init_0($rt_s(3201), 492, ong_GqlStatus__init_($rt_s(3202)), $rt_s(3203), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3204), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3137)); + var$2 = ong_GqlStatus__init_($rt_s(3205)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_idx; var$4[1] = ong_GqlParams$NumberParam_dim1; var$4[2] = ong_GqlParams$NumberParam_dim2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3138), 488, var$2, $rt_s(3139), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3140)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3206), 493, var$2, $rt_s(3207), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3208), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N65 = var$1; - ong_GqlStatusInfoCodes_STATUS_51N66 = ong_GqlStatusInfoCodes__init_0($rt_s(3141), 489, ong_GqlStatus__init_($rt_s(3142)), $rt_s(3143), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3144)); + ong_GqlStatusInfoCodes_STATUS_51N66 = ong_GqlStatusInfoCodes__init_0($rt_s(3209), 494, ong_GqlStatus__init_($rt_s(3210)), $rt_s(3211), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3212), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3145)); + var$2 = ong_GqlStatus__init_($rt_s(3213)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_selectorType1; var$4[1] = ong_GqlParams$StringParam_input; var$4[2] = ong_GqlParams$StringParam_selectorType2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3146), 490, var$2, $rt_s(3147), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3148)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3214), 495, var$2, $rt_s(3215), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3216), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N67 = var$1; - ong_GqlStatusInfoCodes_STATUS_51N68 = ong_GqlStatusInfoCodes__init_0($rt_s(3149), 491, ong_GqlStatus__init_($rt_s(3150)), $rt_s(3151), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3152)); + ong_GqlStatusInfoCodes_STATUS_51N68 = ong_GqlStatusInfoCodes__init_0($rt_s(3217), 496, ong_GqlStatus__init_($rt_s(3218)), $rt_s(3219), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3220), ong_ErrorClassification_DATABASE_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3153)); + var$2 = ong_GqlStatus__init_($rt_s(3221)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_operation; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3154), 492, var$2, $rt_s(3155), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3156)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3222), 497, var$2, $rt_s(3223), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3224), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N69 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3157)); + var$2 = ong_GqlStatus__init_($rt_s(3225)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3158), 493, var$2, $rt_s(3159), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3160)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3226), 498, var$2, $rt_s(3227), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3228), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_51N70 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3161)); + var$2 = ong_GqlStatus__init_($rt_s(3229)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); + var$3.data[0] = ong_GqlParams$StringParam_feat; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3230), 499, var$2, $rt_s(3231), var$3, ju_Collections_emptyMap(), ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION, $rt_s(3232), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_51N71 = var$1; + var$1 = new ong_GqlStatusInfoCodes; + var$2 = ong_GqlStatus__init_($rt_s(3233)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_proc; var$4[1] = ong_GqlParams$NumberParam_timeAmount; var$4[2] = ong_GqlParams$StringParam_timeUnit; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3162), 494, var$2, $rt_s(3163), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3164)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3234), 500, var$2, $rt_s(3235), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3236), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N01 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3165)); + var$2 = ong_GqlStatus__init_($rt_s(3237)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_proc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3166), 495, var$2, $rt_s(3167), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3168)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3238), 501, var$2, $rt_s(3239), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3240), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N02 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3169)); + var$2 = ong_GqlStatus__init_($rt_s(3241)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_proc; var$4[1] = ong_GqlParams$StringParam_procExeMode; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3170), 496, var$2, $rt_s(3171), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3172)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3242), 502, var$2, $rt_s(3243), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3244), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N03 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3173)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); - var$3.data[0] = ong_GqlParams$StringParam_proc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3174), 497, var$2, $rt_s(3175), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3176)); - ong_GqlStatusInfoCodes_STATUS_52N04 = var$1; - var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3177)); + var$2 = ong_GqlStatus__init_($rt_s(3245)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3178), 498, var$2, $rt_s(3179), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3180)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3246), 503, var$2, $rt_s(3247), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3248), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N05 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3181)); + var$2 = ong_GqlStatus__init_($rt_s(3249)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$NumberParam_count; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3182), 499, var$2, $rt_s(3183), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3184)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3250), 504, var$2, $rt_s(3251), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3252), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N06 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3185)); + var$2 = ong_GqlStatus__init_($rt_s(3253)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_port; var$5 = ong_GqlParams$ListParam_portList; var$4[1] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3186), 500, var$2, $rt_s(3187), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3188)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3254), 505, var$2, $rt_s(3255), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3256), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N07 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3189)); + var$2 = ong_GqlStatus__init_($rt_s(3257)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3190), 501, var$2, $rt_s(3191), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3192)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3258), 506, var$2, $rt_s(3259), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3260), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N08 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3193)); + var$2 = ong_GqlStatus__init_($rt_s(3261)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_proc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3194), 502, var$2, $rt_s(3195), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3196)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3262), 507, var$2, $rt_s(3263), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3264), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_52N09 = var$1; - ong_GqlStatusInfoCodes_STATUS_52N10 = ong_GqlStatusInfoCodes__init_0($rt_s(3197), 503, ong_GqlStatus__init_($rt_s(3198)), $rt_s(3199), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3200)); - ong_GqlStatusInfoCodes_STATUS_52N11 = ong_GqlStatusInfoCodes__init_0($rt_s(3201), 504, ong_GqlStatus__init_($rt_s(3202)), $rt_s(3203), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3204)); + ong_GqlStatusInfoCodes_STATUS_52N10 = ong_GqlStatusInfoCodes__init_0($rt_s(3265), 508, ong_GqlStatus__init_($rt_s(3266)), $rt_s(3267), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3268), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_52N11 = ong_GqlStatusInfoCodes__init_0($rt_s(3269), 509, ong_GqlStatus__init_($rt_s(3270)), $rt_s(3271), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3272), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3205)); + var$2 = ong_GqlStatus__init_($rt_s(3273)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3206), 505, var$2, $rt_s(3207), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3208)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3274), 510, var$2, $rt_s(3275), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3276), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N12 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3209)); + var$2 = ong_GqlStatus__init_($rt_s(3277)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_db; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3210), 506, var$2, $rt_s(3211), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3212)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3278), 511, var$2, $rt_s(3279), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3280), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N13 = var$1; - ong_GqlStatusInfoCodes_STATUS_52N14 = ong_GqlStatusInfoCodes__init_0($rt_s(3213), 507, ong_GqlStatus__init_($rt_s(3214)), $rt_s(3215), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3216)); + ong_GqlStatusInfoCodes_STATUS_52N14 = ong_GqlStatusInfoCodes__init_0($rt_s(3281), 512, ong_GqlStatus__init_($rt_s(3282)), $rt_s(3283), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3284), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3217)); + var$2 = ong_GqlStatus__init_($rt_s(3285)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_alloc; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3218), 508, var$2, $rt_s(3219), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3220)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3286), 513, var$2, $rt_s(3287), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3288), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N15 = var$1; - ong_GqlStatusInfoCodes_STATUS_52N16 = ong_GqlStatusInfoCodes__init_0($rt_s(3221), 509, ong_GqlStatus__init_($rt_s(3222)), $rt_s(3223), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3224)); - ong_GqlStatusInfoCodes_STATUS_52N17 = ong_GqlStatusInfoCodes__init_0($rt_s(3225), 510, ong_GqlStatus__init_($rt_s(3226)), $rt_s(3227), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3228)); + ong_GqlStatusInfoCodes_STATUS_52N16 = ong_GqlStatusInfoCodes__init_0($rt_s(3289), 514, ong_GqlStatus__init_($rt_s(3290)), $rt_s(3291), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3292), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_52N17 = ong_GqlStatusInfoCodes__init_0($rt_s(3293), 515, ong_GqlStatus__init_($rt_s(3294)), $rt_s(3295), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3296), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3229)); + var$2 = ong_GqlStatus__init_($rt_s(3297)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$NumberParam_countSeeders; var$4[1] = ong_GqlParams$NumberParam_countAllocs; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3230), 511, var$2, $rt_s(3231), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3232)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3298), 516, var$2, $rt_s(3299), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3300), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N18 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3233)); + var$2 = ong_GqlStatus__init_($rt_s(3301)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_server; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3234), 512, var$2, $rt_s(3235), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3236)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3302), 517, var$2, $rt_s(3303), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3304), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N19 = var$1; - ong_GqlStatusInfoCodes_STATUS_52N20 = ong_GqlStatusInfoCodes__init_0($rt_s(3237), 513, ong_GqlStatus__init_($rt_s(3238)), $rt_s(3239), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3240)); - ong_GqlStatusInfoCodes_STATUS_52N21 = ong_GqlStatusInfoCodes__init_0($rt_s(3241), 514, ong_GqlStatus__init_($rt_s(3242)), $rt_s(3243), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3244)); + ong_GqlStatusInfoCodes_STATUS_52N20 = ong_GqlStatusInfoCodes__init_0($rt_s(3305), 518, ong_GqlStatus__init_($rt_s(3306)), $rt_s(3307), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3308), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_52N21 = ong_GqlStatusInfoCodes__init_0($rt_s(3309), 519, ong_GqlStatus__init_($rt_s(3310)), $rt_s(3311), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3312), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3245)); + var$2 = ong_GqlStatus__init_($rt_s(3313)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 5); var$4 = var$3.data; var$4[0] = ong_GqlParams$NumberParam_value; @@ -65528,83 +66634,86 @@ ong_GqlStatusInfoCodes__clinit_ = () => { var$4[2] = ong_GqlParams$StringParam_proc; var$4[3] = var$5; var$4[4] = ong_GqlParams$StringParam_procParamFmt; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3246), 515, var$2, $rt_s(3247), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3248)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3314), 520, var$2, $rt_s(3315), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3316), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N22 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3249)); + var$2 = ong_GqlStatus__init_($rt_s(3317)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$4 = var$3.data; var$5 = ong_GqlParams$ListParam_namespaceList; var$4[0] = var$5; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3250), 516, var$2, $rt_s(3251), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3252)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3318), 521, var$2, $rt_s(3319), var$3, ju_Map_of(var$5, ong_GqlParams$JoinStyle_ANDED), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3320), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N23 = var$1; - ong_GqlStatusInfoCodes_STATUS_52N24 = ong_GqlStatusInfoCodes__init_0($rt_s(3253), 517, ong_GqlStatus__init_($rt_s(3254)), $rt_s(3255), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3256)); + ong_GqlStatusInfoCodes_STATUS_52N24 = ong_GqlStatusInfoCodes__init_0($rt_s(3321), 522, ong_GqlStatus__init_($rt_s(3322)), $rt_s(3323), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3324), ong_ErrorClassification_DATABASE_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3257)); + var$2 = ong_GqlStatus__init_($rt_s(3325)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_param; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3258), 518, var$2, $rt_s(3259), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3260)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3326), 523, var$2, $rt_s(3327), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3328), ong_ErrorClassification_DATABASE_ERROR); ong_GqlStatusInfoCodes_STATUS_52N25 = var$1; - ong_GqlStatusInfoCodes_STATUS_52N26 = ong_GqlStatusInfoCodes__init_0($rt_s(3261), 519, ong_GqlStatus__init_($rt_s(3262)), $rt_s(3263), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3264)); - ong_GqlStatusInfoCodes_STATUS_52N27 = ong_GqlStatusInfoCodes__init_0($rt_s(3265), 520, ong_GqlStatus__init_($rt_s(3266)), $rt_s(3267), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3268)); + ong_GqlStatusInfoCodes_STATUS_52N26 = ong_GqlStatusInfoCodes__init_0($rt_s(3329), 524, ong_GqlStatus__init_($rt_s(3330)), $rt_s(3331), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3332), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_52N27 = ong_GqlStatusInfoCodes__init_0($rt_s(3333), 525, ong_GqlStatus__init_($rt_s(3334)), $rt_s(3335), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3336), ong_ErrorClassification_CLIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3269)); + var$2 = ong_GqlStatus__init_($rt_s(3337)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_transactionId; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3270), 521, var$2, $rt_s(3271), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3272)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3338), 526, var$2, $rt_s(3339), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3340), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N28 = var$1; - ong_GqlStatusInfoCodes_STATUS_52N29 = ong_GqlStatusInfoCodes__init_0($rt_s(3273), 522, ong_GqlStatus__init_($rt_s(3274)), $rt_s(3275), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3276)); - ong_GqlStatusInfoCodes_STATUS_52N30 = ong_GqlStatusInfoCodes__init_0($rt_s(3277), 523, ong_GqlStatus__init_($rt_s(3278)), $rt_s(3279), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3280)); + ong_GqlStatusInfoCodes_STATUS_52N29 = ong_GqlStatusInfoCodes__init_0($rt_s(3341), 527, ong_GqlStatus__init_($rt_s(3342)), $rt_s(3343), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3344), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_52N30 = ong_GqlStatusInfoCodes__init_0($rt_s(3345), 528, ong_GqlStatus__init_($rt_s(3346)), $rt_s(3347), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3348), ong_ErrorClassification_TRANSIENT_ERROR); var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3281)); + var$2 = ong_GqlStatus__init_($rt_s(3349)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_param; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3282), 524, var$2, $rt_s(3283), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3284)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3350), 529, var$2, $rt_s(3351), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3352), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N31 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3285)); + var$2 = ong_GqlStatus__init_($rt_s(3353)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_param1; var$4[1] = ong_GqlParams$StringParam_param2; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3286), 525, var$2, $rt_s(3287), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3288)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3354), 530, var$2, $rt_s(3355), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3356), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N32 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3289)); + var$2 = ong_GqlStatus__init_($rt_s(3357)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_sig; var$4[1] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3290), 526, var$2, $rt_s(3291), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3292)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3358), 531, var$2, $rt_s(3359), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3360), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N33 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3293)); + var$2 = ong_GqlStatus__init_($rt_s(3361)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 1); var$3.data[0] = ong_GqlParams$StringParam_sig; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3294), 527, var$2, $rt_s(3295), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3296)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3362), 532, var$2, $rt_s(3363), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3364), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N34 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3297)); + var$2 = ong_GqlStatus__init_($rt_s(3365)); var$3 = $rt_createArray(ong_GqlParams$GqlParam, 2); var$4 = var$3.data; var$4[0] = ong_GqlParams$StringParam_procClass; var$4[1] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3298), 528, var$2, $rt_s(3299), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3300)); + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3366), 533, var$2, $rt_s(3367), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3368), ong_ErrorClassification_CLIENT_ERROR); ong_GqlStatusInfoCodes_STATUS_52N35 = var$1; var$1 = new ong_GqlStatusInfoCodes; - var$2 = ong_GqlStatus__init_($rt_s(3301)); - var$3 = $rt_createArray(ong_GqlParams$GqlParam, 3); + var$2 = ong_GqlStatus__init_($rt_s(3369)); + var$3 = $rt_createArray(ong_GqlParams$GqlParam, 5); var$4 = var$3.data; - var$4[0] = ong_GqlParams$StringParam_proc; - var$4[1] = ong_GqlParams$StringParam_msgTitle; - var$4[2] = ong_GqlParams$StringParam_msg; - ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3302), 529, var$2, $rt_s(3303), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3304)); - ong_GqlStatusInfoCodes_STATUS_52U00 = var$1; - ong_GqlStatusInfoCodes_STATUS_G1000 = ong_GqlStatusInfoCodes__init_0($rt_s(3305), 530, ong_GqlStatus__init_($rt_s(3306)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DEPENDENT_OBJECT_ERROR, $rt_s(4)); - ong_GqlStatusInfoCodes_STATUS_G1001 = ong_GqlStatusInfoCodes__init_0($rt_s(3307), 531, ong_GqlStatus__init_($rt_s(3308)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DEPENDENT_OBJECT_ERROR, $rt_s(3309)); - ong_GqlStatusInfoCodes_STATUS_G1002 = ong_GqlStatusInfoCodes__init_0($rt_s(3310), 532, ong_GqlStatus__init_($rt_s(3311)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DEPENDENT_OBJECT_ERROR, $rt_s(3312)); - ong_GqlStatusInfoCodes_STATUS_G1003 = ong_GqlStatusInfoCodes__init_0($rt_s(3313), 533, ong_GqlStatus__init_($rt_s(3314)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DEPENDENT_OBJECT_ERROR, $rt_s(3315)); - ong_GqlStatusInfoCodes_STATUS_G2000 = ong_GqlStatusInfoCodes__init_0($rt_s(3316), 534, ong_GqlStatus__init_($rt_s(3317)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GRAPH_TYPE_VIOLATION, $rt_s(4)); + var$4[0] = ong_GqlParams$StringParam_field; + var$5 = ong_GqlParams$StringParam_procParam; + var$4[1] = var$5; + var$4[2] = ong_GqlParams$StringParam_proc; + var$4[3] = var$5; + var$4[4] = ong_GqlParams$StringParam_procParamFmt; + ong_GqlStatusInfoCodes__init_(var$1, $rt_s(3370), 534, var$2, $rt_s(3371), var$3, ju_Collections_emptyMap(), ong_Condition_PROCEDURE_EXCEPTION, $rt_s(3372), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_52N36 = var$1; + ong_GqlStatusInfoCodes_STATUS_G1000 = ong_GqlStatusInfoCodes__init_0($rt_s(3373), 535, ong_GqlStatus__init_($rt_s(3374)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DEPENDENT_OBJECT_ERROR, $rt_s(4), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_G1001 = ong_GqlStatusInfoCodes__init_0($rt_s(3375), 536, ong_GqlStatus__init_($rt_s(3376)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DEPENDENT_OBJECT_ERROR, $rt_s(3377), ong_ErrorClassification_CLIENT_ERROR); + ong_GqlStatusInfoCodes_STATUS_G1002 = ong_GqlStatusInfoCodes__init_0($rt_s(3378), 537, ong_GqlStatus__init_($rt_s(3379)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DEPENDENT_OBJECT_ERROR, $rt_s(3380), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_G1003 = ong_GqlStatusInfoCodes__init_0($rt_s(3381), 538, ong_GqlStatus__init_($rt_s(3382)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_DEPENDENT_OBJECT_ERROR, $rt_s(3383), ong_ErrorClassification_UNKNOWN); + ong_GqlStatusInfoCodes_STATUS_G2000 = ong_GqlStatusInfoCodes__init_0($rt_s(3384), 539, ong_GqlStatus__init_($rt_s(3385)), $rt_s(4), $rt_createArray(ong_GqlParams$GqlParam, 0), ju_Collections_emptyMap(), ong_Condition_GRAPH_TYPE_VIOLATION, $rt_s(4), ong_ErrorClassification_UNKNOWN); ong_GqlStatusInfoCodes_$VALUES = ong_GqlStatusInfoCodes_$values(); }; function onkae_Status$Schema() { @@ -65627,6 +66736,7 @@ onkae_Status$Schema_IndexWithNameAlreadyExists = null, onkae_Status$Schema_ConstraintWithNameAlreadyExists = null, onkae_Status$Schema_ForbiddenOnConstraintIndex = null, onkae_Status$Schema_TokenNameError = null, +onkae_Status$Schema_TokenLengthError = null, onkae_Status$Schema_HintedIndexNotFound = null, onkae_Status$Schema_IndexOrConstraintAlreadyExists = null, onkae_Status$Schema_IndexOrConstraintDoesNotExist = null, @@ -65675,7 +66785,7 @@ onkae_Status$Schema__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { onkae_Status$Schema_$values = () => { let var$1, var$2; onkae_Status$Schema_$callClinit(); - var$1 = $rt_createArray(onkae_Status$Schema, 29); + var$1 = $rt_createArray(onkae_Status$Schema, 30); var$2 = var$1.data; var$2[0] = onkae_Status$Schema_RepeatedPropertyInCompositeSchema; var$2[1] = onkae_Status$Schema_RepeatedLabelInSchema; @@ -65693,55 +66803,57 @@ onkae_Status$Schema_$values = () => { var$2[13] = onkae_Status$Schema_ConstraintWithNameAlreadyExists; var$2[14] = onkae_Status$Schema_ForbiddenOnConstraintIndex; var$2[15] = onkae_Status$Schema_TokenNameError; - var$2[16] = onkae_Status$Schema_HintedIndexNotFound; - var$2[17] = onkae_Status$Schema_IndexOrConstraintAlreadyExists; - var$2[18] = onkae_Status$Schema_IndexOrConstraintDoesNotExist; - var$2[19] = onkae_Status$Schema_ConstraintCreationFailed; - var$2[20] = onkae_Status$Schema_ConstraintDropFailed; - var$2[21] = onkae_Status$Schema_IndexCreationFailed; - var$2[22] = onkae_Status$Schema_IndexDropFailed; - var$2[23] = onkae_Status$Schema_LabelAccessFailed; - var$2[24] = onkae_Status$Schema_TokenLimitReached; - var$2[25] = onkae_Status$Schema_PropertyKeyAccessFailed; - var$2[26] = onkae_Status$Schema_RelationshipTypeAccessFailed; - var$2[27] = onkae_Status$Schema_SchemaRuleAccessFailed; - var$2[28] = onkae_Status$Schema_SchemaRuleDuplicateFound; + var$2[16] = onkae_Status$Schema_TokenLengthError; + var$2[17] = onkae_Status$Schema_HintedIndexNotFound; + var$2[18] = onkae_Status$Schema_IndexOrConstraintAlreadyExists; + var$2[19] = onkae_Status$Schema_IndexOrConstraintDoesNotExist; + var$2[20] = onkae_Status$Schema_ConstraintCreationFailed; + var$2[21] = onkae_Status$Schema_ConstraintDropFailed; + var$2[22] = onkae_Status$Schema_IndexCreationFailed; + var$2[23] = onkae_Status$Schema_IndexDropFailed; + var$2[24] = onkae_Status$Schema_LabelAccessFailed; + var$2[25] = onkae_Status$Schema_TokenLimitReached; + var$2[26] = onkae_Status$Schema_PropertyKeyAccessFailed; + var$2[27] = onkae_Status$Schema_RelationshipTypeAccessFailed; + var$2[28] = onkae_Status$Schema_SchemaRuleAccessFailed; + var$2[29] = onkae_Status$Schema_SchemaRuleDuplicateFound; return var$1; }, onkae_Status$Schema__clinit_ = () => { let var$1; var$1 = new onkae_Status$Schema; onkae_Status$Classification_$callClinit(); - onkae_Status$Schema__init_1(var$1, $rt_s(3318), 0, onkae_Status$Classification_ClientError, $rt_s(3319)); + onkae_Status$Schema__init_1(var$1, $rt_s(3386), 0, onkae_Status$Classification_ClientError, $rt_s(3387)); onkae_Status$Schema_RepeatedPropertyInCompositeSchema = var$1; - onkae_Status$Schema_RepeatedLabelInSchema = onkae_Status$Schema__init_($rt_s(3320), 1, onkae_Status$Classification_ClientError, $rt_s(3321)); - onkae_Status$Schema_RepeatedRelationshipTypeInSchema = onkae_Status$Schema__init_($rt_s(3322), 2, onkae_Status$Classification_ClientError, $rt_s(3323)); - onkae_Status$Schema_EquivalentSchemaRuleAlreadyExists = onkae_Status$Schema__init_($rt_s(3324), 3, onkae_Status$Classification_ClientError, $rt_s(3325)); - onkae_Status$Schema_ConstraintAlreadyExists = onkae_Status$Schema__init_($rt_s(3326), 4, onkae_Status$Classification_ClientError, $rt_s(3327)); - onkae_Status$Schema_ConstraintNotFound = onkae_Status$Schema__init_($rt_s(3328), 5, onkae_Status$Classification_ClientError, $rt_s(3329)); - onkae_Status$Schema_ConstraintValidationFailed = onkae_Status$Schema__init_($rt_s(3330), 6, onkae_Status$Classification_ClientError, $rt_s(2873)); - onkae_Status$Schema_ConstraintViolation = onkae_Status$Schema__init_($rt_s(3331), 7, onkae_Status$Classification_ClientError, $rt_s(3332)); - onkae_Status$Schema_IndexAlreadyExists = onkae_Status$Schema__init_($rt_s(3333), 8, onkae_Status$Classification_ClientError, $rt_s(3334)); - onkae_Status$Schema_IndexNotFound = onkae_Status$Schema__init_($rt_s(3335), 9, onkae_Status$Classification_ClientError, $rt_s(3336)); - onkae_Status$Schema_IndexMultipleFound = onkae_Status$Schema__init_($rt_s(3337), 10, onkae_Status$Classification_ClientError, $rt_s(3338)); - onkae_Status$Schema_IndexNotApplicable = onkae_Status$Schema__init_($rt_s(3339), 11, onkae_Status$Classification_ClientError, $rt_s(3340)); - onkae_Status$Schema_IndexWithNameAlreadyExists = onkae_Status$Schema__init_($rt_s(3341), 12, onkae_Status$Classification_ClientError, $rt_s(3342)); - onkae_Status$Schema_ConstraintWithNameAlreadyExists = onkae_Status$Schema__init_($rt_s(3343), 13, onkae_Status$Classification_ClientError, $rt_s(3344)); - onkae_Status$Schema_ForbiddenOnConstraintIndex = onkae_Status$Schema__init_($rt_s(3345), 14, onkae_Status$Classification_ClientError, $rt_s(3346)); - onkae_Status$Schema_TokenNameError = onkae_Status$Schema__init_($rt_s(3347), 15, onkae_Status$Classification_ClientError, $rt_s(3348)); - onkae_Status$Schema_HintedIndexNotFound = onkae_Status$Schema__init_0($rt_s(3349), 16, onkae_Status$Classification_ClientNotification, $rt_s(3336), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_HINT); - onkae_Status$Schema_IndexOrConstraintAlreadyExists = onkae_Status$Schema__init_0($rt_s(3350), 17, onkae_Status$Classification_ClientNotification, $rt_s(3351), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_SCHEMA); - onkae_Status$Schema_IndexOrConstraintDoesNotExist = onkae_Status$Schema__init_0($rt_s(3352), 18, onkae_Status$Classification_ClientNotification, $rt_s(3351), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_SCHEMA); - onkae_Status$Schema_ConstraintCreationFailed = onkae_Status$Schema__init_($rt_s(3353), 19, onkae_Status$Classification_DatabaseError, $rt_s(3354)); - onkae_Status$Schema_ConstraintDropFailed = onkae_Status$Schema__init_($rt_s(3355), 20, onkae_Status$Classification_DatabaseError, $rt_s(3356)); - onkae_Status$Schema_IndexCreationFailed = onkae_Status$Schema__init_($rt_s(3357), 21, onkae_Status$Classification_DatabaseError, $rt_s(3358)); - onkae_Status$Schema_IndexDropFailed = onkae_Status$Schema__init_($rt_s(3359), 22, onkae_Status$Classification_DatabaseError, $rt_s(3360)); - onkae_Status$Schema_LabelAccessFailed = onkae_Status$Schema__init_($rt_s(3361), 23, onkae_Status$Classification_DatabaseError, $rt_s(3362)); - onkae_Status$Schema_TokenLimitReached = onkae_Status$Schema__init_($rt_s(3363), 24, onkae_Status$Classification_DatabaseError, $rt_s(3364)); - onkae_Status$Schema_PropertyKeyAccessFailed = onkae_Status$Schema__init_($rt_s(3365), 25, onkae_Status$Classification_DatabaseError, $rt_s(3366)); - onkae_Status$Schema_RelationshipTypeAccessFailed = onkae_Status$Schema__init_($rt_s(3367), 26, onkae_Status$Classification_DatabaseError, $rt_s(3368)); - onkae_Status$Schema_SchemaRuleAccessFailed = onkae_Status$Schema__init_($rt_s(3369), 27, onkae_Status$Classification_DatabaseError, $rt_s(3370)); - onkae_Status$Schema_SchemaRuleDuplicateFound = onkae_Status$Schema__init_($rt_s(3371), 28, onkae_Status$Classification_DatabaseError, $rt_s(3372)); + onkae_Status$Schema_RepeatedLabelInSchema = onkae_Status$Schema__init_($rt_s(3388), 1, onkae_Status$Classification_ClientError, $rt_s(3389)); + onkae_Status$Schema_RepeatedRelationshipTypeInSchema = onkae_Status$Schema__init_($rt_s(3390), 2, onkae_Status$Classification_ClientError, $rt_s(3391)); + onkae_Status$Schema_EquivalentSchemaRuleAlreadyExists = onkae_Status$Schema__init_($rt_s(3392), 3, onkae_Status$Classification_ClientError, $rt_s(3393)); + onkae_Status$Schema_ConstraintAlreadyExists = onkae_Status$Schema__init_($rt_s(3394), 4, onkae_Status$Classification_ClientError, $rt_s(3395)); + onkae_Status$Schema_ConstraintNotFound = onkae_Status$Schema__init_($rt_s(3396), 5, onkae_Status$Classification_ClientError, $rt_s(3397)); + onkae_Status$Schema_ConstraintValidationFailed = onkae_Status$Schema__init_($rt_s(3398), 6, onkae_Status$Classification_ClientError, $rt_s(2935)); + onkae_Status$Schema_ConstraintViolation = onkae_Status$Schema__init_($rt_s(3399), 7, onkae_Status$Classification_ClientError, $rt_s(3400)); + onkae_Status$Schema_IndexAlreadyExists = onkae_Status$Schema__init_($rt_s(3401), 8, onkae_Status$Classification_ClientError, $rt_s(3402)); + onkae_Status$Schema_IndexNotFound = onkae_Status$Schema__init_($rt_s(3403), 9, onkae_Status$Classification_ClientError, $rt_s(3404)); + onkae_Status$Schema_IndexMultipleFound = onkae_Status$Schema__init_($rt_s(3405), 10, onkae_Status$Classification_ClientError, $rt_s(3406)); + onkae_Status$Schema_IndexNotApplicable = onkae_Status$Schema__init_($rt_s(3407), 11, onkae_Status$Classification_ClientError, $rt_s(3408)); + onkae_Status$Schema_IndexWithNameAlreadyExists = onkae_Status$Schema__init_($rt_s(3409), 12, onkae_Status$Classification_ClientError, $rt_s(3410)); + onkae_Status$Schema_ConstraintWithNameAlreadyExists = onkae_Status$Schema__init_($rt_s(3411), 13, onkae_Status$Classification_ClientError, $rt_s(3412)); + onkae_Status$Schema_ForbiddenOnConstraintIndex = onkae_Status$Schema__init_($rt_s(3413), 14, onkae_Status$Classification_ClientError, $rt_s(3414)); + onkae_Status$Schema_TokenNameError = onkae_Status$Schema__init_($rt_s(3415), 15, onkae_Status$Classification_ClientError, $rt_s(3416)); + onkae_Status$Schema_TokenLengthError = onkae_Status$Schema__init_($rt_s(3417), 16, onkae_Status$Classification_ClientError, $rt_s(3418)); + onkae_Status$Schema_HintedIndexNotFound = onkae_Status$Schema__init_0($rt_s(3419), 17, onkae_Status$Classification_ClientNotification, $rt_s(3404), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_HINT); + onkae_Status$Schema_IndexOrConstraintAlreadyExists = onkae_Status$Schema__init_0($rt_s(3420), 18, onkae_Status$Classification_ClientNotification, $rt_s(3421), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_SCHEMA); + onkae_Status$Schema_IndexOrConstraintDoesNotExist = onkae_Status$Schema__init_0($rt_s(3422), 19, onkae_Status$Classification_ClientNotification, $rt_s(3421), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_SCHEMA); + onkae_Status$Schema_ConstraintCreationFailed = onkae_Status$Schema__init_($rt_s(3423), 20, onkae_Status$Classification_DatabaseError, $rt_s(3424)); + onkae_Status$Schema_ConstraintDropFailed = onkae_Status$Schema__init_($rt_s(3425), 21, onkae_Status$Classification_DatabaseError, $rt_s(3426)); + onkae_Status$Schema_IndexCreationFailed = onkae_Status$Schema__init_($rt_s(3427), 22, onkae_Status$Classification_DatabaseError, $rt_s(3428)); + onkae_Status$Schema_IndexDropFailed = onkae_Status$Schema__init_($rt_s(3429), 23, onkae_Status$Classification_DatabaseError, $rt_s(3430)); + onkae_Status$Schema_LabelAccessFailed = onkae_Status$Schema__init_($rt_s(3431), 24, onkae_Status$Classification_DatabaseError, $rt_s(3432)); + onkae_Status$Schema_TokenLimitReached = onkae_Status$Schema__init_($rt_s(3433), 25, onkae_Status$Classification_DatabaseError, $rt_s(3434)); + onkae_Status$Schema_PropertyKeyAccessFailed = onkae_Status$Schema__init_($rt_s(3435), 26, onkae_Status$Classification_DatabaseError, $rt_s(3436)); + onkae_Status$Schema_RelationshipTypeAccessFailed = onkae_Status$Schema__init_($rt_s(3437), 27, onkae_Status$Classification_DatabaseError, $rt_s(3438)); + onkae_Status$Schema_SchemaRuleAccessFailed = onkae_Status$Schema__init_($rt_s(3439), 28, onkae_Status$Classification_DatabaseError, $rt_s(3440)); + onkae_Status$Schema_SchemaRuleDuplicateFound = onkae_Status$Schema__init_($rt_s(3441), 29, onkae_Status$Classification_DatabaseError, $rt_s(3442)); onkae_Status$Schema_$VALUES = onkae_Status$Schema_$values(); }; function onkae_Status$Procedure() { @@ -65780,18 +66892,18 @@ onkae_Status$Procedure__clinit_ = () => { let var$1, var$2, var$3, var$4, var$5, var$6; var$1 = new onkae_Status$Procedure; onkae_Status$Classification_$callClinit(); - onkae_Status$Procedure__init_0(var$1, $rt_s(3373), 0, onkae_Status$Classification_ClientError, $rt_s(3374)); + onkae_Status$Procedure__init_0(var$1, $rt_s(3443), 0, onkae_Status$Classification_ClientError, $rt_s(3444)); onkae_Status$Procedure_ProcedureRegistrationFailed = var$1; - onkae_Status$Procedure_ProcedureNotFound = onkae_Status$Procedure__init_($rt_s(3375), 1, onkae_Status$Classification_ClientError, $rt_s(3376)); - onkae_Status$Procedure_ProcedureCallFailed = onkae_Status$Procedure__init_($rt_s(3377), 2, onkae_Status$Classification_ClientError, $rt_s(3378)); - onkae_Status$Procedure_TypeError = onkae_Status$Procedure__init_($rt_s(1225), 3, onkae_Status$Classification_ClientError, $rt_s(3379)); - onkae_Status$Procedure_ProcedureTimedOut = onkae_Status$Procedure__init_($rt_s(3380), 4, onkae_Status$Classification_ClientError, $rt_s(3381)); + onkae_Status$Procedure_ProcedureNotFound = onkae_Status$Procedure__init_($rt_s(3445), 1, onkae_Status$Classification_ClientError, $rt_s(3446)); + onkae_Status$Procedure_ProcedureCallFailed = onkae_Status$Procedure__init_($rt_s(3447), 2, onkae_Status$Classification_ClientError, $rt_s(3448)); + onkae_Status$Procedure_TypeError = onkae_Status$Procedure__init_($rt_s(1269), 3, onkae_Status$Classification_ClientError, $rt_s(3449)); + onkae_Status$Procedure_ProcedureTimedOut = onkae_Status$Procedure__init_($rt_s(3450), 4, onkae_Status$Classification_ClientError, $rt_s(3451)); var$2 = new onkae_Status$Procedure; var$3 = onkae_Status$Classification_ClientNotification; var$1 = onkae_SeverityLevel_WARNING; var$4 = onkae_NotificationCategory_GENERIC; - jl_Enum__init_(var$2, $rt_s(3382), 5); - var$2.$code4 = onkae_Status$NotificationCode__init_(var$3, var$2, $rt_s(3383), var$1, var$4); + jl_Enum__init_(var$2, $rt_s(3452), 5); + var$2.$code4 = onkae_Status$NotificationCode__init_(var$3, var$2, $rt_s(3453), var$1, var$4); onkae_Status$Procedure_ProcedureWarning = var$2; var$5 = $rt_createArray(onkae_Status$Procedure, 6); var$6 = var$5.data; @@ -65839,19 +66951,19 @@ onkae_Status$Request__clinit_ = () => { let var$1, var$2, var$3, var$4, var$5, var$6; var$1 = new onkae_Status$Request; onkae_Status$Classification_$callClinit(); - onkae_Status$Request__init_0(var$1, $rt_s(3384), 0, onkae_Status$Classification_ClientError, $rt_s(3385)); + onkae_Status$Request__init_0(var$1, $rt_s(3454), 0, onkae_Status$Classification_ClientError, $rt_s(3455)); onkae_Status$Request_Invalid = var$1; - onkae_Status$Request_InvalidFormat = onkae_Status$Request__init_($rt_s(3386), 1, onkae_Status$Classification_ClientError, $rt_s(3387)); - onkae_Status$Request_InvalidUsage = onkae_Status$Request__init_($rt_s(3388), 2, onkae_Status$Classification_ClientError, $rt_s(3389)); + onkae_Status$Request_InvalidFormat = onkae_Status$Request__init_($rt_s(3456), 1, onkae_Status$Classification_ClientError, $rt_s(3457)); + onkae_Status$Request_InvalidUsage = onkae_Status$Request__init_($rt_s(3458), 2, onkae_Status$Classification_ClientError, $rt_s(3459)); var$2 = new onkae_Status$Request; var$3 = onkae_Status$Classification_ClientNotification; var$1 = onkae_SeverityLevel_WARNING; var$4 = onkae_NotificationCategory_DEPRECATION; - jl_Enum__init_(var$2, $rt_s(3390), 3); - var$2.$code2 = onkae_Status$NotificationCode__init_(var$3, var$2, $rt_s(3391), var$1, var$4); + jl_Enum__init_(var$2, $rt_s(3460), 3); + var$2.$code2 = onkae_Status$NotificationCode__init_(var$3, var$2, $rt_s(3461), var$1, var$4); onkae_Status$Request_DeprecatedFormat = var$2; - onkae_Status$Request_NoThreadsAvailable = onkae_Status$Request__init_($rt_s(3392), 4, onkae_Status$Classification_TransientError, $rt_s(3393)); - var$1 = onkae_Status$Request__init_($rt_s(3394), 5, onkae_Status$Classification_TransientError, $rt_s(3395)); + onkae_Status$Request_NoThreadsAvailable = onkae_Status$Request__init_($rt_s(3462), 4, onkae_Status$Classification_TransientError, $rt_s(3463)); + var$1 = onkae_Status$Request__init_($rt_s(3464), 5, onkae_Status$Classification_TransientError, $rt_s(3465)); onkae_Status$Request_ResourceExhaustion = var$1; var$5 = $rt_createArray(onkae_Status$Request, 6); var$6 = var$5.data; @@ -65901,21 +67013,21 @@ onkae_Status$Database__clinit_ = () => { let var$1, var$2, var$3, var$4, var$5, var$6; var$1 = new onkae_Status$Database; onkae_Status$Classification_$callClinit(); - onkae_Status$Database__init_0(var$1, $rt_s(3396), 0, onkae_Status$Classification_ClientError, $rt_s(3397)); + onkae_Status$Database__init_0(var$1, $rt_s(3466), 0, onkae_Status$Classification_ClientError, $rt_s(3467)); onkae_Status$Database_DatabaseNotFound = var$1; var$2 = new onkae_Status$Database; var$3 = onkae_Status$Classification_ClientNotification; var$1 = onkae_SeverityLevel_INFORMATION; var$4 = onkae_NotificationCategory_UNRECOGNIZED; - jl_Enum__init_(var$2, $rt_s(3398), 1); - var$2.$code5 = onkae_Status$NotificationCode__init_(var$3, var$2, $rt_s(3399), var$1, var$4); + jl_Enum__init_(var$2, $rt_s(3468), 1); + var$2.$code5 = onkae_Status$NotificationCode__init_(var$3, var$2, $rt_s(3469), var$1, var$4); onkae_Status$Database_HomeDatabaseNotFound = var$2; - onkae_Status$Database_ExistingAliasFound = onkae_Status$Database__init_($rt_s(3400), 2, onkae_Status$Classification_ClientError, $rt_s(3401)); - onkae_Status$Database_ExistingDatabaseFound = onkae_Status$Database__init_($rt_s(3402), 3, onkae_Status$Classification_ClientError, $rt_s(3403)); - onkae_Status$Database_IllegalAliasChain = onkae_Status$Database__init_($rt_s(3404), 4, onkae_Status$Classification_ClientError, $rt_s(3405)); - onkae_Status$Database_DatabaseLimitReached = onkae_Status$Database__init_($rt_s(3406), 5, onkae_Status$Classification_DatabaseError, $rt_s(3407)); - onkae_Status$Database_UnableToStartDatabase = onkae_Status$Database__init_($rt_s(3408), 6, onkae_Status$Classification_DatabaseError, $rt_s(3409)); - var$1 = onkae_Status$Database__init_($rt_s(3410), 7, onkae_Status$Classification_DatabaseError, $rt_s(3411)); + onkae_Status$Database_ExistingAliasFound = onkae_Status$Database__init_($rt_s(3470), 2, onkae_Status$Classification_ClientError, $rt_s(3471)); + onkae_Status$Database_ExistingDatabaseFound = onkae_Status$Database__init_($rt_s(3472), 3, onkae_Status$Classification_ClientError, $rt_s(3473)); + onkae_Status$Database_IllegalAliasChain = onkae_Status$Database__init_($rt_s(3474), 4, onkae_Status$Classification_ClientError, $rt_s(3475)); + onkae_Status$Database_DatabaseLimitReached = onkae_Status$Database__init_($rt_s(3476), 5, onkae_Status$Classification_DatabaseError, $rt_s(3477)); + onkae_Status$Database_UnableToStartDatabase = onkae_Status$Database__init_($rt_s(3478), 6, onkae_Status$Classification_DatabaseError, $rt_s(3479)); + var$1 = onkae_Status$Database__init_($rt_s(3480), 7, onkae_Status$Classification_DatabaseError, $rt_s(3481)); onkae_Status$Database_Unknown = var$1; var$5 = $rt_createArray(onkae_Status$Database, 8); var$6 = var$5.data; @@ -65982,20 +67094,20 @@ onkae_Status$Security__clinit_ = () => { let var$1, var$2, var$3; var$1 = new onkae_Status$Security; onkae_Status$Classification_$callClinit(); - onkae_Status$Security__init_1(var$1, $rt_s(3412), 0, onkae_Status$Classification_ClientError, $rt_s(3413)); + onkae_Status$Security__init_1(var$1, $rt_s(3482), 0, onkae_Status$Classification_ClientError, $rt_s(3483)); onkae_Status$Security_CredentialsExpired = var$1; - onkae_Status$Security_Unauthorized = onkae_Status$Security__init_($rt_s(3414), 1, onkae_Status$Classification_ClientError, $rt_s(3415)); - onkae_Status$Security_AuthenticationRateLimit = onkae_Status$Security__init_($rt_s(3416), 2, onkae_Status$Classification_ClientError, $rt_s(3417)); - onkae_Status$Security_ModifiedConcurrently = onkae_Status$Security__init_($rt_s(3418), 3, onkae_Status$Classification_TransientError, $rt_s(3419)); - onkae_Status$Security_Forbidden = onkae_Status$Security__init_($rt_s(3420), 4, onkae_Status$Classification_ClientError, $rt_s(3421)); - onkae_Status$Security_AuthorizationExpired = onkae_Status$Security__init_($rt_s(3422), 5, onkae_Status$Classification_ClientError, $rt_s(3423)); - onkae_Status$Security_AuthProviderTimeout = onkae_Status$Security__init_($rt_s(3424), 6, onkae_Status$Classification_TransientError, $rt_s(3425)); - onkae_Status$Security_AuthProviderFailed = onkae_Status$Security__init_($rt_s(3426), 7, onkae_Status$Classification_TransientError, $rt_s(3427)); - onkae_Status$Security_TokenExpired = onkae_Status$Security__init_($rt_s(3428), 8, onkae_Status$Classification_ClientError, $rt_s(3429)); - onkae_Status$Security_AuthProviderNotDefined = onkae_Status$Security__init_0($rt_s(3430), 9, onkae_Status$Classification_ClientNotification, $rt_s(3431), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_SECURITY); - onkae_Status$Security_ExternalAuthNotEnabled = onkae_Status$Security__init_0($rt_s(3432), 10, onkae_Status$Classification_ClientNotification, $rt_s(3433), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_SECURITY); - onkae_Status$Security_CommandHasNoEffect = onkae_Status$Security__init_0($rt_s(3434), 11, onkae_Status$Classification_ClientNotification, $rt_s(3351), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_SECURITY); - var$1 = onkae_Status$Security__init_0($rt_s(3435), 12, onkae_Status$Classification_ClientNotification, $rt_s(3351), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_SECURITY); + onkae_Status$Security_Unauthorized = onkae_Status$Security__init_($rt_s(3484), 1, onkae_Status$Classification_ClientError, $rt_s(3485)); + onkae_Status$Security_AuthenticationRateLimit = onkae_Status$Security__init_($rt_s(3486), 2, onkae_Status$Classification_ClientError, $rt_s(3487)); + onkae_Status$Security_ModifiedConcurrently = onkae_Status$Security__init_($rt_s(3488), 3, onkae_Status$Classification_TransientError, $rt_s(3489)); + onkae_Status$Security_Forbidden = onkae_Status$Security__init_($rt_s(3490), 4, onkae_Status$Classification_ClientError, $rt_s(3491)); + onkae_Status$Security_AuthorizationExpired = onkae_Status$Security__init_($rt_s(3492), 5, onkae_Status$Classification_ClientError, $rt_s(3493)); + onkae_Status$Security_AuthProviderTimeout = onkae_Status$Security__init_($rt_s(3494), 6, onkae_Status$Classification_TransientError, $rt_s(3495)); + onkae_Status$Security_AuthProviderFailed = onkae_Status$Security__init_($rt_s(3496), 7, onkae_Status$Classification_TransientError, $rt_s(3497)); + onkae_Status$Security_TokenExpired = onkae_Status$Security__init_($rt_s(3498), 8, onkae_Status$Classification_ClientError, $rt_s(3499)); + onkae_Status$Security_AuthProviderNotDefined = onkae_Status$Security__init_0($rt_s(3500), 9, onkae_Status$Classification_ClientNotification, $rt_s(3501), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_SECURITY); + onkae_Status$Security_ExternalAuthNotEnabled = onkae_Status$Security__init_0($rt_s(3502), 10, onkae_Status$Classification_ClientNotification, $rt_s(3503), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_SECURITY); + onkae_Status$Security_CommandHasNoEffect = onkae_Status$Security__init_0($rt_s(3504), 11, onkae_Status$Classification_ClientNotification, $rt_s(3421), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_SECURITY); + var$1 = onkae_Status$Security__init_0($rt_s(3505), 12, onkae_Status$Classification_ClientNotification, $rt_s(3421), onkae_SeverityLevel_WARNING, onkae_NotificationCategory_SECURITY); onkae_Status$Security_ImpossibleRevokeCommand = var$1; var$2 = $rt_createArray(onkae_Status$Security, 13); var$3 = var$2.data; @@ -66062,15 +67174,15 @@ onkae_Status$Cluster__clinit_ = () => { let var$1, var$2, var$3; var$1 = new onkae_Status$Cluster; onkae_Status$Classification_$callClinit(); - onkae_Status$Cluster__init_0(var$1, $rt_s(3436), 0, onkae_Status$Classification_TransientError, $rt_s(3437)); + onkae_Status$Cluster__init_0(var$1, $rt_s(3506), 0, onkae_Status$Classification_TransientError, $rt_s(3507)); onkae_Status$Cluster_ReplicationFailure = var$1; - onkae_Status$Cluster_NotALeader = onkae_Status$Cluster__init_1($rt_s(3438), 1, onkae_Status$Classification_ClientError, $rt_s(3439)); - onkae_Status$Cluster_Routing = onkae_Status$Cluster__init_1($rt_s(3440), 2, onkae_Status$Classification_ClientError, $rt_s(3441)); - onkae_Status$Cluster_ServerAlreadyEnabled = onkae_Status$Cluster__init_($rt_s(3442), 3, onkae_Status$Classification_ClientNotification, $rt_s(3443), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); - onkae_Status$Cluster_ServerAlreadyCordoned = onkae_Status$Cluster__init_($rt_s(3444), 4, onkae_Status$Classification_ClientNotification, $rt_s(3445), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); - onkae_Status$Cluster_NoDatabasesReallocated = onkae_Status$Cluster__init_($rt_s(3446), 5, onkae_Status$Classification_ClientNotification, $rt_s(3447), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); - onkae_Status$Cluster_CordonedServersExistedDuringAllocation = onkae_Status$Cluster__init_($rt_s(3448), 6, onkae_Status$Classification_ClientNotification, $rt_s(3449), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); - var$1 = onkae_Status$Cluster__init_($rt_s(3450), 7, onkae_Status$Classification_ClientNotification, $rt_s(3451), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); + onkae_Status$Cluster_NotALeader = onkae_Status$Cluster__init_1($rt_s(3508), 1, onkae_Status$Classification_ClientError, $rt_s(3509)); + onkae_Status$Cluster_Routing = onkae_Status$Cluster__init_1($rt_s(3510), 2, onkae_Status$Classification_ClientError, $rt_s(3511)); + onkae_Status$Cluster_ServerAlreadyEnabled = onkae_Status$Cluster__init_($rt_s(3512), 3, onkae_Status$Classification_ClientNotification, $rt_s(3513), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); + onkae_Status$Cluster_ServerAlreadyCordoned = onkae_Status$Cluster__init_($rt_s(3514), 4, onkae_Status$Classification_ClientNotification, $rt_s(3515), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); + onkae_Status$Cluster_NoDatabasesReallocated = onkae_Status$Cluster__init_($rt_s(3516), 5, onkae_Status$Classification_ClientNotification, $rt_s(3517), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); + onkae_Status$Cluster_CordonedServersExistedDuringAllocation = onkae_Status$Cluster__init_($rt_s(3518), 6, onkae_Status$Classification_ClientNotification, $rt_s(3519), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); + var$1 = onkae_Status$Cluster__init_($rt_s(3520), 7, onkae_Status$Classification_ClientNotification, $rt_s(3521), onkae_SeverityLevel_INFORMATION, onkae_NotificationCategory_TOPOLOGY); onkae_Status$Cluster_RequestedTopologyMatchedCurrentTopology = var$1; var$2 = $rt_createArray(onkae_Status$Cluster, 8); var$3 = var$2.data; @@ -66090,15 +67202,15 @@ function onn_NotificationImplementation$NotificationBuilder() { a.$gqlStatusInfo1 = null; a.$messageParameterValues = null; a.$title = null; - a.$position74 = null; + a.$position86 = null; a.$notificationDetails = null; } let onn_NotificationImplementation$NotificationBuilder__init_0 = ($this, $notificationCodeWithDescription) => { $this.$messageParameterValues = $rt_createArray(jl_String, 0); $this.$notificationCodeWithDescription = $notificationCodeWithDescription; $this.$gqlStatusInfo1 = $notificationCodeWithDescription.$gqlStatusInfo0; - $this.$title = ($notificationCodeWithDescription.$status1.$code()).$description7; - $this.$position74 = ong_InputPosition_empty; + $this.$title = ($notificationCodeWithDescription.$status1.$code()).$description6; + $this.$position86 = ong_InputPosition_empty; }, onn_NotificationImplementation$NotificationBuilder__init_ = var_0 => { let var_1 = new onn_NotificationImplementation$NotificationBuilder(); @@ -66106,23 +67218,24 @@ onn_NotificationImplementation$NotificationBuilder__init_ = var_0 => { return var_1; }, onn_NotificationImplementation$NotificationBuilder_build = $this => { - let $statusCode, var$2, var$3, $notificationCode, $diagnosticRecord, var$6, var$7, var$8, var$9, $classification, var$11, var$12, var$13, var$14, var$15, var$16; + let $statusCode, var$2, var$3, $notificationCode, $diagnosticRecord, var$6, var$7, var$8, var$9, $classification, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18; $statusCode = $this.$notificationCodeWithDescription; var$2 = $this.$notificationDetails; var$3 = ong_SimpleMessageFormatter_format(null, null, $statusCode.$descriptionTemplate, $statusCode.$descriptionSubstitution, $statusCode.$descriptionOffsets, var$2); $statusCode = $this.$notificationCodeWithDescription.$status1.$code(); if (!($statusCode instanceof onkae_Status$NotificationCode)) { $notificationCode = new jl_IllegalStateException; + $statusCode = jl_String_valueOf($statusCode); $diagnosticRecord = new jl_StringBuilder; jl_AbstractStringBuilder__init_($diagnosticRecord); jl_AbstractStringBuilder_append0($diagnosticRecord, 39); - jl_StringBuilder_append(jl_StringBuilder_append($diagnosticRecord, $statusCode), $rt_s(3452)); - jl_Throwable__init_0($notificationCode, jl_AbstractStringBuilder_toString($diagnosticRecord)); + jl_StringBuilder_append(jl_StringBuilder_append($diagnosticRecord, $statusCode), $rt_s(3522)); + jl_Throwable__init_($notificationCode, jl_AbstractStringBuilder_toString($diagnosticRecord)); $rt_throw($notificationCode); } $notificationCode = $statusCode; - var$6 = $notificationCode.$severity.$name6; - var$7 = $notificationCode.$notificationCategory.$name6; + var$6 = $notificationCode.$severity.$name7; + var$7 = $notificationCode.$notificationCategory.$name7; if (!($rt_cls(ong_NotificationClassification).$platformClass.$meta.enum ? 1 : 0)) var$2 = null; else { @@ -66131,7 +67244,7 @@ onn_NotificationImplementation$NotificationBuilder_build = $this => { } if (var$2 === null) { $statusCode = new jl_IllegalArgumentException; - jl_Throwable__init_0($statusCode, $rt_s(3453)); + jl_Throwable__init_($statusCode, $rt_s(3523)); $rt_throw($statusCode); } var$2 = var$2.data; @@ -66139,74 +67252,74 @@ onn_NotificationImplementation$NotificationBuilder_build = $this => { var$9 = 0; while (var$9 < var$8) { $notificationCode = var$2[var$9]; - if (jl_String_equals($notificationCode.$name6, var$7)) { + if (jl_String_equals($notificationCode.$name7, var$7)) { $classification = $notificationCode; $diagnosticRecord = new ong_DiagnosticRecord; - $statusCode = $this.$position74; - var$11 = $statusCode.$offset1; - var$9 = $statusCode.$line2; - var$8 = $statusCode.$column1; + $statusCode = $this.$position86; + var$11 = $statusCode.$offset2; + var$9 = $statusCode.$line3; + var$8 = $statusCode.$column2; ong_DiagnosticRecord_$callClinit(); $statusCode = ju_HashMap__init_(); $diagnosticRecord.$innerDiagnosticRecord = $statusCode; - ju_HashMap_put($statusCode, $rt_s(3454), $rt_s(89)); - ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3455), $rt_s(4)); - ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3456), $rt_s(21)); - ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3457), var$6); - ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3458), jl_String_valueOf($classification)); - ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3459), ju_Map_of0($rt_s(3460), jl_Integer_valueOf(var$11), $rt_s(3461), jl_Integer_valueOf(var$9), $rt_s(3462), jl_Integer_valueOf(var$8))); + ju_HashMap_put($statusCode, $rt_s(3524), $rt_s(90)); + ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3525), $rt_s(4)); + ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3526), $rt_s(21)); + ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3527), var$6); + ong_DiagnosticRecord_addClassificationToMap($classification, $diagnosticRecord.$innerDiagnosticRecord); + ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3528), ju_Map_of0($rt_s(3529), jl_Integer_valueOf(var$11), $rt_s(3530), jl_Integer_valueOf(var$9), $rt_s(3531), jl_Integer_valueOf(var$8))); $statusCode = new onn_NotificationImplementation; var$6 = $this.$notificationCodeWithDescription.$status1; $notificationCode = $this.$gqlStatusInfo1; - var$7 = $this.$position74; + var$7 = $this.$position86; $classification = $this.$title; - var$12 = $this.$messageParameterValues; - var$13 = var$12.data; + var$2 = $this.$messageParameterValues; + var$12 = var$2.data; $statusCode.$gqlStatusInfo = $notificationCode; $statusCode.$diagnosticRecord = $diagnosticRecord; - var$2 = $notificationCode.$statusParameterKeys; - var$14 = var$2.data; - var$8 = var$14.length; - var$9 = var$13.length; - if (var$8 != var$9) { - var$2 = jusi_SimpleStreamImpl_toArray(jusi_SimpleStreamImpl_map(ju_Collection_stream(ju_Collections_unmodifiableList(ju_Arrays_asList(var$2))), new ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0)); + var$13 = $notificationCode.$statusParameterKeys; + var$14 = var$13.data; + var$15 = var$14.length; + var$9 = var$12.length; + if (var$15 != var$9) { + var$12 = jusi_SimpleStreamImpl_toArray(jusi_SimpleStreamImpl_map(ju_Collection_stream(ju_Collections_unmodifiableList(ju_Arrays_asList(var$13))), new ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0)); $statusCode = new jl_IllegalArgumentException; - var$14 = $rt_wrapArray(jl_Object, [ju_Arrays_toString(var$2), ju_Arrays_toString(var$12)]); - jl_Throwable__init_0($statusCode, jl_String_format($rt_s(3463), var$14)); + var$14 = $rt_wrapArray(jl_Object, [ju_Arrays_toString(var$12), ju_Arrays_toString(var$2)]); + jl_Throwable__init_($statusCode, jl_String_format($rt_s(3532), var$14)); $rt_throw($statusCode); } - if (var$8) { - if (var$8 == 1 && var$9 > 0) - ju_Collections_singletonMap(var$14[0].$name6, var$13[0]); + if (var$15) { + if (var$15 == 1 && var$9 > 0) + ju_Collections_singletonMap(var$14[0].$name7, var$12[0]); else { - $notificationCode = ju_HashMap__init_3(var$8, 1.0); - var$11 = 0; - while (var$11 < var$8 && var$11 < var$9) { - ju_HashMap_put($notificationCode, var$14[var$11].$name6, var$13[var$11]); - var$11 = var$11 + 1 | 0; + $notificationCode = ju_HashMap__init_3(var$15, 1.0); + var$8 = 0; + while (var$8 < var$15 && var$8 < var$9) { + ju_HashMap_put($notificationCode, var$14[var$8].$name7, var$12[var$8]); + var$8 = var$8 + 1 | 0; } } } $notificationCode = $statusCode.$gqlStatusInfo; - var$2 = $notificationCode.$statusParameterKeys; - var$13 = var$2.data; - var$15 = $notificationCode.$joinStyles; - var$16 = $notificationCode.$template; - var$14 = $notificationCode.$offsets1; - var$8 = var$13.length; + var$12 = $notificationCode.$statusParameterKeys; + var$14 = var$12.data; + var$16 = $notificationCode.$joinStyles; + var$17 = $notificationCode.$template; + var$18 = $notificationCode.$offsets0; + var$8 = var$14.length; if (var$9 < var$8) { - var$12 = ju_Arrays_copyOf(var$12, var$8); + var$2 = ju_Arrays_copyOf(var$2, var$8); while (true) { - var$13 = var$12.data; - if (var$9 >= var$13.length) + var$14 = var$2.data; + if (var$9 >= var$14.length) break; - var$13[var$9] = ong_GqlParams$GqlParam_toParamFormat($notificationCode.$statusParameterKeys.data[var$9]); + var$14[var$9] = ong_GqlParams$GqlParam_toParamFormat($notificationCode.$statusParameterKeys.data[var$9]); var$9 = var$9 + 1 | 0; } } - $statusCode.$messageWithParameters = ong_SimpleMessageFormatter_format(var$2, var$15, var$16, $rt_s(882), var$14, var$12); + $statusCode.$messageWithParameters = ong_SimpleMessageFormatter_format(var$12, var$16, var$17, $rt_s(1339), var$18, var$2); $statusCode.$neo4jStatus = var$6; - $statusCode.$position213 = var$7; + $statusCode.$position218 = var$7; $statusCode.$title1 = $classification; $statusCode.$descriptionWithParameters = var$3; return $statusCode; @@ -66216,8 +67329,8 @@ onn_NotificationImplementation$NotificationBuilder_build = $this => { $notificationCode = new jl_IllegalArgumentException; $diagnosticRecord = new jl_StringBuilder; jl_AbstractStringBuilder__init_($diagnosticRecord); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($diagnosticRecord, $rt_s(3464)), $rt_cls(ong_NotificationClassification)), $rt_s(3465)), var$7), $rt_s(3466)); - jl_Throwable__init_0($notificationCode, jl_AbstractStringBuilder_toString($diagnosticRecord)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($diagnosticRecord, $rt_s(3533)), $rt_cls(ong_NotificationClassification)), $rt_s(3534)), var$7), $rt_s(3535)); + jl_Throwable__init_($notificationCode, jl_AbstractStringBuilder_toString($diagnosticRecord)); $rt_throw($notificationCode); }; function ju_Arrays$ArrayAsList() { @@ -66232,12 +67345,12 @@ ju_Arrays$ArrayAsList_size = $this => { }; function one_IndexHintException$indexFormatString$lambda$_4_0() { jl_Object.call(this); - this.$_01146 = null; + this.$_01128 = null; } let one_IndexHintException$indexFormatString$lambda$_4_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_01146; + var$2 = var$0.$_01128; var$1 = one_IndexHintException_escape(var$1); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); @@ -66246,8 +67359,8 @@ let one_IndexHintException$indexFormatString$lambda$_4_0_apply = (var$0, var$1) jl_StringBuilder_append(var$2, var$1); return jl_AbstractStringBuilder_toString(var$3); }, +jl_MatchException = $rt_classWithoutFields(jl_RuntimeException), one_IndexHintException$1 = $rt_classWithoutFields(), -one_IndexHintException$1_$SwitchMap$org$neo4j$exceptions$IndexHintException$IndexHintIndexType = null, one_IndexHintException$1_$SwitchMap$org$neo4j$common$EntityType = null, one_IndexHintException$1_$callClinit = () => { one_IndexHintException$1_$callClinit = $rt_eraseClinit(one_IndexHintException$1); @@ -66260,16 +67373,7 @@ one_IndexHintException$1__clinit_ = () => { one_IndexHintException$1_$SwitchMap$org$neo4j$common$EntityType = var$1; var$2[onc_EntityType_NODE.$ordinal] = 1; var$2[onc_EntityType_RELATIONSHIP.$ordinal] = 2; - var$2 = $rt_createIntArray((one_IndexHintException$IndexHintIndexType_values()).data.length); - var$1 = var$2.data; - one_IndexHintException$1_$SwitchMap$org$neo4j$exceptions$IndexHintException$IndexHintIndexType = var$2; - var$1[one_IndexHintException$IndexHintIndexType_BTREE.$ordinal] = 1; - var$1[one_IndexHintException$IndexHintIndexType_TEXT.$ordinal] = 2; - var$1[one_IndexHintException$IndexHintIndexType_RANGE.$ordinal] = 3; - var$1[one_IndexHintException$IndexHintIndexType_POINT.$ordinal] = 4; }, -jl_LinkageError = $rt_classWithoutFields(jl_Error), -jl_IncompatibleClassChangeError = $rt_classWithoutFields(jl_LinkageError), juf_Supplier = $rt_classWithoutFields(0), jus_Collectors$toSet$lambda$_4_0 = $rt_classWithoutFields(), jus_Collectors$toSet$lambda$_4_0_get = var$0 => { @@ -66306,7 +67410,7 @@ ju_Formatter_requireOpen = $this => { if ($this.$out1 !== null) return; var$1 = new ju_FormatterClosedException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); }, ju_Formatter_toString = $this => { @@ -66343,12 +67447,12 @@ function onis_IndexProviderDescriptor() { let onis_IndexProviderDescriptor__init_0 = ($this, $key, $version) => { if ($key === null) { $key = new jl_IllegalArgumentException; - jl_Throwable__init_0($key, $rt_s(3467)); + jl_Throwable__init_($key, $rt_s(3536)); $rt_throw($key); } if (jl_String_isEmpty($key)) { $key = new jl_IllegalArgumentException; - jl_Throwable__init_0($key, $rt_s(3468)); + jl_Throwable__init_($key, $rt_s(3537)); $rt_throw($key); } if ($version !== null) { @@ -66357,7 +67461,7 @@ let onis_IndexProviderDescriptor__init_0 = ($this, $key, $version) => { return; } $version = new jl_IllegalArgumentException; - jl_Throwable__init_0($version, $rt_s(3469)); + jl_Throwable__init_($version, $rt_s(3538)); $rt_throw($version); }, onis_IndexProviderDescriptor__init_ = (var_0, var_1) => { @@ -66398,21 +67502,21 @@ onis_IndexProviderDescriptor_toString = $this => { var$2 = $this.$version; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3470)), var$1), $rt_s(3471)), var$2), 125); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3539)), var$1), $rt_s(3540)), var$2), 125); return jl_AbstractStringBuilder_toString(var$3); }; function onkae_Status$Code() { let a = this; jl_Object.call(a); a.$classification = null; - a.$description7 = null; + a.$description6 = null; a.$category3 = null; a.$title0 = null; } let onkae_Status$Code__init_0 = ($this, $classification, $categoryAndTitle, $description) => { $this.$classification = $classification; $this.$category3 = jl_Class_getSimpleName(jl_Enum_getDeclaringClass($categoryAndTitle)); - $this.$title0 = $categoryAndTitle.$name6; - $this.$description7 = $description; + $this.$title0 = $categoryAndTitle.$name7; + $this.$description6 = $description; }, onkae_Status$Code__init_ = (var_0, var_1, var_2) => { let var_3 = new onkae_Status$Code(); @@ -66426,10 +67530,10 @@ onkae_Status$Code_toString = $this => { var$2[0] = $this.$classification; var$2[1] = $this.$category3; var$2[2] = $this.$title0; - var$3 = jl_String_format($rt_s(3472), var$1); + var$3 = jl_String_format($rt_s(3541), var$1); var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3473)), var$3), 93); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3542)), var$3), 93); return jl_AbstractStringBuilder_toString(var$4); }, juf_BiConsumer = $rt_classWithoutFields(0), @@ -66451,13 +67555,13 @@ jus_Collector$Characteristics_values = () => { jus_Collector$Characteristics__clinit_ = () => { let var$1, var$2, var$3; var$1 = new jus_Collector$Characteristics; - jl_Enum__init_(var$1, $rt_s(3474), 0); + jl_Enum__init_(var$1, $rt_s(3543), 0); jus_Collector$Characteristics_CONCURRENT = var$1; var$1 = new jus_Collector$Characteristics; - jl_Enum__init_(var$1, $rt_s(3475), 1); + jl_Enum__init_(var$1, $rt_s(3544), 1); jus_Collector$Characteristics_UNORDERED = var$1; var$1 = new jus_Collector$Characteristics; - jl_Enum__init_(var$1, $rt_s(3476), 2); + jl_Enum__init_(var$1, $rt_s(3545), 2); jus_Collector$Characteristics_IDENTITY_FINISH = var$1; var$2 = $rt_createArray(jus_Collector$Characteristics, 3); var$3 = var$2.data; @@ -66550,7 +67654,7 @@ ju_Locale__init_0 = ($this, $language, $country, $variant) => { return; } $language = new jl_NullPointerException; - jl_Throwable__init_($language); + jl_Throwable__init_0($language); $rt_throw($language); }, ju_Locale__init_2 = (var_0, var_1, var_2) => { @@ -66566,7 +67670,7 @@ ju_Locale_toLanguageTag = $this => { let $result; $result = new jl_StringBuilder; jl_AbstractStringBuilder__init_($result); - jl_AbstractStringBuilder_append($result, !jl_String_isEmpty($this.$languageCode) ? $this.$languageCode : $rt_s(3477)); + jl_AbstractStringBuilder_append($result, !jl_String_isEmpty($this.$languageCode) ? $this.$languageCode : $rt_s(3546)); if (!jl_String_isEmpty($this.$countryCode)) { jl_AbstractStringBuilder_append0($result, 45); jl_AbstractStringBuilder_append($result, $this.$countryCode); @@ -66579,27 +67683,27 @@ ju_Locale_toLanguageTag = $this => { }, ju_Locale__clinit_ = () => { let $localeName, $countryIndex; - ju_Locale_CANADA = ju_Locale__init_($rt_s(3478), $rt_s(3479)); - ju_Locale_CANADA_FRENCH = ju_Locale__init_($rt_s(3480), $rt_s(3479)); - ju_Locale_CHINA = ju_Locale__init_($rt_s(3481), $rt_s(3482)); - ju_Locale_CHINESE = ju_Locale__init_($rt_s(3481), $rt_s(4)); - ju_Locale_ENGLISH = ju_Locale__init_($rt_s(3478), $rt_s(4)); - ju_Locale_FRANCE = ju_Locale__init_($rt_s(3480), $rt_s(3483)); - ju_Locale_FRENCH = ju_Locale__init_($rt_s(3480), $rt_s(4)); - ju_Locale_GERMAN = ju_Locale__init_($rt_s(3484), $rt_s(4)); - ju_Locale_GERMANY = ju_Locale__init_($rt_s(3484), $rt_s(3485)); - ju_Locale_ITALIAN = ju_Locale__init_($rt_s(3486), $rt_s(4)); - ju_Locale_ITALY = ju_Locale__init_($rt_s(3486), $rt_s(3487)); - ju_Locale_JAPAN = ju_Locale__init_($rt_s(3488), $rt_s(3489)); - ju_Locale_JAPANESE = ju_Locale__init_($rt_s(3488), $rt_s(4)); - ju_Locale_KOREA = ju_Locale__init_($rt_s(3490), $rt_s(3491)); - ju_Locale_KOREAN = ju_Locale__init_($rt_s(3490), $rt_s(4)); - ju_Locale_PRC = ju_Locale__init_($rt_s(3481), $rt_s(3482)); - ju_Locale_SIMPLIFIED_CHINESE = ju_Locale__init_($rt_s(3481), $rt_s(3482)); - ju_Locale_TAIWAN = ju_Locale__init_($rt_s(3481), $rt_s(3492)); - ju_Locale_TRADITIONAL_CHINESE = ju_Locale__init_($rt_s(3481), $rt_s(3492)); - ju_Locale_UK = ju_Locale__init_($rt_s(3478), $rt_s(3493)); - ju_Locale_US = ju_Locale__init_($rt_s(3478), $rt_s(3494)); + ju_Locale_CANADA = ju_Locale__init_($rt_s(3547), $rt_s(3548)); + ju_Locale_CANADA_FRENCH = ju_Locale__init_($rt_s(3549), $rt_s(3548)); + ju_Locale_CHINA = ju_Locale__init_($rt_s(3550), $rt_s(3551)); + ju_Locale_CHINESE = ju_Locale__init_($rt_s(3550), $rt_s(4)); + ju_Locale_ENGLISH = ju_Locale__init_($rt_s(3547), $rt_s(4)); + ju_Locale_FRANCE = ju_Locale__init_($rt_s(3549), $rt_s(3552)); + ju_Locale_FRENCH = ju_Locale__init_($rt_s(3549), $rt_s(4)); + ju_Locale_GERMAN = ju_Locale__init_($rt_s(3553), $rt_s(4)); + ju_Locale_GERMANY = ju_Locale__init_($rt_s(3553), $rt_s(3554)); + ju_Locale_ITALIAN = ju_Locale__init_($rt_s(3555), $rt_s(4)); + ju_Locale_ITALY = ju_Locale__init_($rt_s(3555), $rt_s(3556)); + ju_Locale_JAPAN = ju_Locale__init_($rt_s(3557), $rt_s(3558)); + ju_Locale_JAPANESE = ju_Locale__init_($rt_s(3557), $rt_s(4)); + ju_Locale_KOREA = ju_Locale__init_($rt_s(3559), $rt_s(3560)); + ju_Locale_KOREAN = ju_Locale__init_($rt_s(3559), $rt_s(4)); + ju_Locale_PRC = ju_Locale__init_($rt_s(3550), $rt_s(3551)); + ju_Locale_SIMPLIFIED_CHINESE = ju_Locale__init_($rt_s(3550), $rt_s(3551)); + ju_Locale_TAIWAN = ju_Locale__init_($rt_s(3550), $rt_s(3561)); + ju_Locale_TRADITIONAL_CHINESE = ju_Locale__init_($rt_s(3550), $rt_s(3561)); + ju_Locale_UK = ju_Locale__init_($rt_s(3547), $rt_s(3562)); + ju_Locale_US = ju_Locale__init_($rt_s(3547), $rt_s(3563)); ju_Locale_ROOT = ju_Locale__init_($rt_s(4), $rt_s(4)); if (otciu_CLDRHelper_$$metadata$$10 === null) otciu_CLDRHelper_$$metadata$$10 = otciu_CLDRHelper_getDefaultLocale$$create(); @@ -66638,6 +67742,7 @@ ong_GqlParams$IDENT__init_ = () => { }, ong_GqlParams$IDENT_process = ($this, $s) => { let var$2; + $s = jl_String_valueOf($s); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_AbstractStringBuilder_append0(var$2, 96); @@ -66655,6 +67760,7 @@ ong_GqlParams$STRLIT__init_ = () => { }, ong_GqlParams$STRLIT_process = ($this, $s) => { let var$2; + $s = jl_String_valueOf($s); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_AbstractStringBuilder_append0(var$2, 39); @@ -66672,6 +67778,7 @@ ong_GqlParams$CHAR_RANGE__init_0 = () => { }, ong_GqlParams$CHAR_RANGE_process = ($this, $o) => { let var$2; + $o = jl_String_valueOf($o); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_AbstractStringBuilder_append0(var$2, 96); @@ -66691,8 +67798,10 @@ ong_GqlParams$UPPER_process = ($this, $s) => { let var$2; var$2 = $this.$inner1; if (var$2 !== null) - $s = var$2.$process($s); - return jl_String_toUpperCase(jl_String_valueOf($s)); + $s = var$2.$process0($s); + var$2 = jl_String_valueOf($s); + ju_Locale_$callClinit(); + return jl_String_toUpperCase(var$2, ju_Locale_ROOT); }, ong_GqlParams$COORDINATES = $rt_classWithoutFields(ong_GqlParams$Processor), ong_GqlParams$COORDINATES__init_0 = $this => { @@ -66714,6 +67823,7 @@ ong_GqlParams$CALLABLE_IDENT__init_ = () => { }, ong_GqlParams$CALLABLE_IDENT_process = ($this, $s) => { let var$2; + $s = jl_String_valueOf($s); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_StringBuilder_append(jl_StringBuilder_append(var$2, $s), $rt_s(773)); @@ -66730,9 +67840,10 @@ ong_GqlParams$PARAM__init_ = () => { }, ong_GqlParams$PARAM_process = ($this, $s) => { let var$2; + $s = jl_String_valueOf($s); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3495)), $s), 96); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3564)), $s), 96); return jl_AbstractStringBuilder_toString(var$2); }, ong_GqlParams$TEMPORAL = $rt_classWithoutFields(ong_GqlParams$Processor), @@ -66787,12 +67898,12 @@ onis_IndexType__init_ = (var_0, var_1, var_2) => { }, onis_IndexType__clinit_ = () => { let var$1, var$2, var$3; - onis_IndexType_FULLTEXT = onis_IndexType__init_($rt_s(3496), 0, 1); - onis_IndexType_LOOKUP = onis_IndexType__init_($rt_s(3497), 1, 2); - onis_IndexType_TEXT = onis_IndexType__init_($rt_s(1066), 2, 3); - onis_IndexType_RANGE = onis_IndexType__init_($rt_s(1067), 3, 4); + onis_IndexType_FULLTEXT = onis_IndexType__init_($rt_s(3565), 0, 1); + onis_IndexType_LOOKUP = onis_IndexType__init_($rt_s(3566), 1, 2); + onis_IndexType_TEXT = onis_IndexType__init_($rt_s(1096), 2, 3); + onis_IndexType_RANGE = onis_IndexType__init_($rt_s(1097), 3, 4); onis_IndexType_POINT = onis_IndexType__init_($rt_s(734), 4, 5); - var$1 = onis_IndexType__init_($rt_s(3498), 5, 6); + var$1 = onis_IndexType__init_($rt_s(3567), 5, 6); onis_IndexType_VECTOR = var$1; var$2 = $rt_createArray(onis_IndexType, 6); var$3 = var$2.data; @@ -66807,7 +67918,7 @@ onis_IndexType__clinit_ = () => { function onkae_Status$Classification() { let a = this; jl_Enum.call(a); a.$rollbackTransaction = 0; - a.$description12 = null; + a.$description10 = null; } let onkae_Status$Classification_ClientError = null, onkae_Status$Classification_ClientNotification = null, @@ -66825,7 +67936,7 @@ onkae_Status$Classification_values = () => { onkae_Status$Classification__init_0 = ($this, var$1, var$2, $transactionEffect, $description) => { onkae_Status$Classification_$callClinit(); jl_Enum__init_($this, var$1, var$2); - $this.$description12 = $description; + $this.$description10 = $description; $this.$rollbackTransaction = $transactionEffect !== onkae_Status$Classification$TransactionEffect_ROLLBACK ? 0 : 1; }, onkae_Status$Classification__init_ = (var_0, var_1, var_2, var_3) => { @@ -66835,10 +67946,10 @@ onkae_Status$Classification__init_ = (var_0, var_1, var_2, var_3) => { }, onkae_Status$Classification__clinit_ = () => { let var$1, var$2, var$3; - onkae_Status$Classification_ClientError = onkae_Status$Classification__init_($rt_s(3499), 0, onkae_Status$Classification$TransactionEffect_ROLLBACK, $rt_s(3500)); - onkae_Status$Classification_ClientNotification = onkae_Status$Classification__init_($rt_s(3501), 1, onkae_Status$Classification$TransactionEffect_NONE, $rt_s(3502)); - onkae_Status$Classification_TransientError = onkae_Status$Classification__init_($rt_s(3503), 2, onkae_Status$Classification$TransactionEffect_ROLLBACK, $rt_s(3504)); - var$1 = onkae_Status$Classification__init_($rt_s(3505), 3, onkae_Status$Classification$TransactionEffect_ROLLBACK, $rt_s(3506)); + onkae_Status$Classification_ClientError = onkae_Status$Classification__init_($rt_s(3568), 0, onkae_Status$Classification$TransactionEffect_ROLLBACK, $rt_s(3569)); + onkae_Status$Classification_ClientNotification = onkae_Status$Classification__init_($rt_s(3570), 1, onkae_Status$Classification$TransactionEffect_NONE, $rt_s(3571)); + onkae_Status$Classification_TransientError = onkae_Status$Classification__init_($rt_s(3572), 2, onkae_Status$Classification$TransactionEffect_ROLLBACK, $rt_s(3573)); + var$1 = onkae_Status$Classification__init_($rt_s(3574), 3, onkae_Status$Classification$TransactionEffect_ROLLBACK, $rt_s(3575)); onkae_Status$Classification_DatabaseError = var$1; var$2 = $rt_createArray(onkae_Status$Classification, 4); var$3 = var$2.data; @@ -66858,10 +67969,10 @@ onkae_SeverityLevel_values = () => { onkae_SeverityLevel__clinit_ = () => { let var$1, var$2, var$3; var$1 = new onkae_SeverityLevel; - jl_Enum__init_(var$1, $rt_s(3507), 0); + jl_Enum__init_(var$1, $rt_s(3576), 0); onkae_SeverityLevel_WARNING = var$1; var$1 = new onkae_SeverityLevel; - jl_Enum__init_(var$1, $rt_s(3508), 1); + jl_Enum__init_(var$1, $rt_s(3577), 1); onkae_SeverityLevel_INFORMATION = var$1; var$2 = $rt_createArray(onkae_SeverityLevel, 2); var$3 = var$2.data; @@ -66887,31 +67998,31 @@ onkae_NotificationCategory_values = () => { onkae_NotificationCategory__clinit_ = () => { let var$1, var$2, var$3; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3509), 0); + jl_Enum__init_(var$1, $rt_s(3578), 0); onkae_NotificationCategory_DEPRECATION = var$1; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3510), 1); + jl_Enum__init_(var$1, $rt_s(3579), 1); onkae_NotificationCategory_HINT = var$1; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3511), 2); + jl_Enum__init_(var$1, $rt_s(3580), 2); onkae_NotificationCategory_PERFORMANCE = var$1; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3512), 3); + jl_Enum__init_(var$1, $rt_s(3581), 3); onkae_NotificationCategory_GENERIC = var$1; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3513), 4); + jl_Enum__init_(var$1, $rt_s(3582), 4); onkae_NotificationCategory_UNRECOGNIZED = var$1; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3514), 5); + jl_Enum__init_(var$1, $rt_s(3583), 5); onkae_NotificationCategory_UNKNOWN = var$1; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3515), 6); + jl_Enum__init_(var$1, $rt_s(3584), 6); onkae_NotificationCategory_UNSUPPORTED = var$1; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3516), 7); + jl_Enum__init_(var$1, $rt_s(3585), 7); onkae_NotificationCategory_SECURITY = var$1; var$1 = new onkae_NotificationCategory; - jl_Enum__init_(var$1, $rt_s(3517), 8); + jl_Enum__init_(var$1, $rt_s(3586), 8); onkae_NotificationCategory_TOPOLOGY = var$1; var$1 = new onkae_NotificationCategory; jl_Enum__init_(var$1, $rt_s(30), 9); @@ -66939,17 +68050,18 @@ let ong_GqlStatus__init_0 = ($this, $gqlStatusString) => { let var$2, var$3; if (jl_String_isEmpty($gqlStatusString)) { $gqlStatusString = new jl_IllegalArgumentException; - jl_Throwable__init_0($gqlStatusString, $rt_s(3518)); + jl_Throwable__init_($gqlStatusString, $rt_s(3587)); $rt_throw($gqlStatusString); } - if (jl_String_matches($gqlStatusString, $rt_s(3519))) { - $this.$gqlStatusString = jl_String_toUpperCase($gqlStatusString); + if (jl_String_matches($gqlStatusString, $rt_s(3588))) { + ju_Locale_$callClinit(); + $this.$gqlStatusString = jl_String_toUpperCase($gqlStatusString, ju_Locale_ROOT); return; } var$2 = new jl_IllegalArgumentException; var$3 = $rt_createArray(jl_Object, 1); var$3.data[0] = $gqlStatusString; - jl_Throwable__init_0(var$2, jl_String_format($rt_s(3520), var$3)); + jl_Throwable__init_(var$2, jl_String_format($rt_s(3589), var$3)); $rt_throw(var$2); }, ong_GqlStatus__init_ = var_0 => { @@ -66978,21 +68090,6 @@ ju_Collections_singletonMap = ($key, $value) => { $key.$val$entries = $entries; return $key; }, -ju_Collections_sort = ($list, $c) => { - let $array, var$4, $i, var$6; - if ($c === null) - $c = ju_Comparator$NaturalOrder_INSTANCE; - $array = $rt_createArray(jl_Object, $list.$size()); - var$4 = $array.data; - ju_AbstractCollection_toArray($list, $array); - ju_Arrays_sort($array, $c); - $i = 0; - var$6 = var$4.length; - while ($i < var$6) { - $list.$set1($i, var$4[$i]); - $i = $i + 1 | 0; - } -}, ju_Collections_unmodifiableList = $list => { let var$2; ju_Objects_requireNonNull($list); @@ -67035,104 +68132,52 @@ ong_Condition_$VALUES = null, ong_Condition_values = () => { return ong_Condition_$VALUES.$clone0(); }, -ong_Condition_createStandardDescription = ($condition, $subcondition) => { - let $successBaseMessage, var$4; - a: { - ong_Condition$1_$callClinit(); - switch (ong_Condition$1_$SwitchMap$org$neo4j$gqlstatus$Condition.data[$condition.$ordinal]) { - case 1: - break; - case 2: - $condition = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($condition); - jl_StringBuilder_append(jl_StringBuilder_append($condition, $rt_s(3521)), $subcondition); - $successBaseMessage = jl_AbstractStringBuilder_toString($condition); - break a; - case 3: - $successBaseMessage = $rt_s(3522); - if (jl_String_isEmpty($subcondition)) - break a; - $condition = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($condition); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($condition, $successBaseMessage), $rt_s(3523)), $subcondition); - $successBaseMessage = jl_AbstractStringBuilder_toString($condition); - break a; - case 4: - $successBaseMessage = $rt_s(3524); - if (jl_String_isEmpty($subcondition)) - break a; - $condition = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($condition); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($condition, $successBaseMessage), $rt_s(3523)), $subcondition); - $successBaseMessage = jl_AbstractStringBuilder_toString($condition); - break a; - default: - var$4 = jl_String_replace0(jl_String_toLowerCase($condition.$name6), 95, 32); - $condition = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($condition); - jl_StringBuilder_append(jl_StringBuilder_append($condition, $rt_s(3525)), var$4); - $successBaseMessage = jl_AbstractStringBuilder_toString($condition); - if (jl_String_isEmpty($subcondition)) - break a; - $condition = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($condition); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($condition, $successBaseMessage), $rt_s(3523)), $subcondition); - $successBaseMessage = jl_AbstractStringBuilder_toString($condition); - break a; - } - $condition = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($condition); - jl_StringBuilder_append(jl_StringBuilder_append($condition, $rt_s(3526)), $subcondition); - $successBaseMessage = jl_AbstractStringBuilder_toString($condition); - } - return $successBaseMessage; -}, ong_Condition__clinit_ = () => { let var$1, var$2, var$3; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3527), 0); + jl_Enum__init_(var$1, $rt_s(3590), 0); ong_Condition_NO_DATA = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3507), 1); + jl_Enum__init_(var$1, $rt_s(3576), 1); ong_Condition_WARNING = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3528), 2); + jl_Enum__init_(var$1, $rt_s(3591), 2); ong_Condition_SUCCESSFUL_COMPLETION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3529), 3); + jl_Enum__init_(var$1, $rt_s(3592), 3); ong_Condition_INFORMATIONAL = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3530), 4); + jl_Enum__init_(var$1, $rt_s(3593), 4); ong_Condition_CONNECTION_EXCEPTION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3531), 5); + jl_Enum__init_(var$1, $rt_s(3594), 5); ong_Condition_DATA_EXCEPTION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3532), 6); + jl_Enum__init_(var$1, $rt_s(3595), 6); ong_Condition_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3533), 7); + jl_Enum__init_(var$1, $rt_s(3596), 7); ong_Condition_GENERAL_PROCESSING_EXCEPTION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3534), 8); + jl_Enum__init_(var$1, $rt_s(3597), 8); ong_Condition_SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3535), 9); + jl_Enum__init_(var$1, $rt_s(3598), 9); ong_Condition_PROCEDURE_EXCEPTION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3536), 10); + jl_Enum__init_(var$1, $rt_s(3599), 10); ong_Condition_DEPENDENT_OBJECT_ERROR = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3537), 11); + jl_Enum__init_(var$1, $rt_s(3600), 11); ong_Condition_GRAPH_TYPE_VIOLATION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3538), 12); + jl_Enum__init_(var$1, $rt_s(3601), 12); ong_Condition_INVALID_TRANSACTION_STATE = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3539), 13); + jl_Enum__init_(var$1, $rt_s(3602), 13); ong_Condition_INVALID_TRANSACTION_TERMINATION = var$1; var$1 = new ong_Condition; - jl_Enum__init_(var$1, $rt_s(3540), 14); + jl_Enum__init_(var$1, $rt_s(3603), 14); ong_Condition_TRANSACTION_ROLLBACK = var$1; var$2 = $rt_createArray(ong_Condition, 15); var$3 = var$2.data; @@ -67153,12 +68198,75 @@ ong_Condition__clinit_ = () => { var$3[14] = var$1; ong_Condition_$VALUES = var$2; }, +ong_GqlClassification = $rt_classWithoutFields(0), +ong_NotificationClassification = $rt_classWithoutFields(jl_Enum), +ong_NotificationClassification_DEPRECATION = null, +ong_NotificationClassification_HINT = null, +ong_NotificationClassification_PERFORMANCE = null, +ong_NotificationClassification_GENERIC = null, +ong_NotificationClassification_UNRECOGNIZED = null, +ong_NotificationClassification_UNKNOWN = null, +ong_NotificationClassification_UNSUPPORTED = null, +ong_NotificationClassification_SECURITY = null, +ong_NotificationClassification_TOPOLOGY = null, +ong_NotificationClassification_SCHEMA = null, +ong_NotificationClassification_$VALUES = null, +ong_NotificationClassification_values = () => { + return ong_NotificationClassification_$VALUES.$clone0(); +}, +ong_NotificationClassification__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3578), 0); + ong_NotificationClassification_DEPRECATION = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3579), 1); + ong_NotificationClassification_HINT = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3580), 2); + ong_NotificationClassification_PERFORMANCE = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3581), 3); + ong_NotificationClassification_GENERIC = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3582), 4); + ong_NotificationClassification_UNRECOGNIZED = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3583), 5); + ong_NotificationClassification_UNKNOWN = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3584), 6); + ong_NotificationClassification_UNSUPPORTED = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3585), 7); + ong_NotificationClassification_SECURITY = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(3586), 8); + ong_NotificationClassification_TOPOLOGY = var$1; + var$1 = new ong_NotificationClassification; + jl_Enum__init_(var$1, $rt_s(30), 9); + ong_NotificationClassification_SCHEMA = var$1; + var$2 = $rt_createArray(ong_NotificationClassification, 10); + var$3 = var$2.data; + var$3[0] = ong_NotificationClassification_DEPRECATION; + var$3[1] = ong_NotificationClassification_HINT; + var$3[2] = ong_NotificationClassification_PERFORMANCE; + var$3[3] = ong_NotificationClassification_GENERIC; + var$3[4] = ong_NotificationClassification_UNRECOGNIZED; + var$3[5] = ong_NotificationClassification_UNKNOWN; + var$3[6] = ong_NotificationClassification_UNSUPPORTED; + var$3[7] = ong_NotificationClassification_SECURITY; + var$3[8] = ong_NotificationClassification_TOPOLOGY; + var$3[9] = var$1; + ong_NotificationClassification_$VALUES = var$2; +}, ong_GqlParams$HasJoinStyle = $rt_classWithoutFields(0); function ong_GqlParams$ListParam() { jl_Enum.call(this); this.$processor0 = null; } let ong_GqlParams$ListParam_characterRangeList = null, +ong_GqlParams$ListParam_hintList = null, ong_GqlParams$ListParam_inputList = null, ong_GqlParams$ListParam_labelList = null, ong_GqlParams$ListParam_mapKeyList = null, @@ -67199,89 +68307,95 @@ ong_GqlParams$ListParam__clinit_ = () => { var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_characterRange.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3541), 0, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3604), 0, var$2); ong_GqlParams$ListParam_characterRangeList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; + var$2.$inner1 = ong_GqlParams$StringParam_hint.$processor; + ong_GqlParams$ListParam__init_(var$1, $rt_s(3605), 1, var$2); + ong_GqlParams$ListParam_hintList = var$1; + var$1 = new ong_GqlParams$ListParam; + var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_input.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3542), 1, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3606), 2, var$2); ong_GqlParams$ListParam_inputList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_label.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3543), 2, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3607), 3, var$2); ong_GqlParams$ListParam_labelList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_mapKey.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3544), 3, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3608), 4, var$2); ong_GqlParams$ListParam_mapKeyList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_namespace.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3545), 4, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3609), 5, var$2); ong_GqlParams$ListParam_namespaceList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_option.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3546), 5, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3610), 6, var$2); ong_GqlParams$ListParam_optionList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_param.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3547), 6, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3611), 7, var$2); ong_GqlParams$ListParam_paramList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_port.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3548), 7, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3612), 8, var$2); ong_GqlParams$ListParam_portList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_pred.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3549), 8, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3613), 9, var$2); ong_GqlParams$ListParam_predList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_propKey.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3550), 9, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3614), 10, var$2); ong_GqlParams$ListParam_propKeyList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_server.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3551), 10, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3615), 11, var$2); ong_GqlParams$ListParam_serverList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_value.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3552), 11, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3616), 12, var$2); ong_GqlParams$ListParam_valueList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_valueType.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3553), 12, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3617), 13, var$2); ong_GqlParams$ListParam_valueTypeList = var$1; var$1 = new ong_GqlParams$ListParam; var$2 = new ong_GqlParams$NELIST; var$2.$inner1 = ong_GqlParams$StringParam_variable.$processor; - ong_GqlParams$ListParam__init_(var$1, $rt_s(3554), 13, var$2); + ong_GqlParams$ListParam__init_(var$1, $rt_s(3618), 14, var$2); ong_GqlParams$ListParam_variableList = var$1; - var$3 = $rt_createArray(ong_GqlParams$ListParam, 14); + var$3 = $rt_createArray(ong_GqlParams$ListParam, 15); var$4 = var$3.data; var$4[0] = ong_GqlParams$ListParam_characterRangeList; - var$4[1] = ong_GqlParams$ListParam_inputList; - var$4[2] = ong_GqlParams$ListParam_labelList; - var$4[3] = ong_GqlParams$ListParam_mapKeyList; - var$4[4] = ong_GqlParams$ListParam_namespaceList; - var$4[5] = ong_GqlParams$ListParam_optionList; - var$4[6] = ong_GqlParams$ListParam_paramList; - var$4[7] = ong_GqlParams$ListParam_portList; - var$4[8] = ong_GqlParams$ListParam_predList; - var$4[9] = ong_GqlParams$ListParam_propKeyList; - var$4[10] = ong_GqlParams$ListParam_serverList; - var$4[11] = ong_GqlParams$ListParam_valueList; - var$4[12] = ong_GqlParams$ListParam_valueTypeList; - var$4[13] = var$1; + var$4[1] = ong_GqlParams$ListParam_hintList; + var$4[2] = ong_GqlParams$ListParam_inputList; + var$4[3] = ong_GqlParams$ListParam_labelList; + var$4[4] = ong_GqlParams$ListParam_mapKeyList; + var$4[5] = ong_GqlParams$ListParam_namespaceList; + var$4[6] = ong_GqlParams$ListParam_optionList; + var$4[7] = ong_GqlParams$ListParam_paramList; + var$4[8] = ong_GqlParams$ListParam_portList; + var$4[9] = ong_GqlParams$ListParam_predList; + var$4[10] = ong_GqlParams$ListParam_propKeyList; + var$4[11] = ong_GqlParams$ListParam_serverList; + var$4[12] = ong_GqlParams$ListParam_valueList; + var$4[13] = ong_GqlParams$ListParam_valueTypeList; + var$4[14] = var$1; ong_GqlParams$ListParam_$VALUES = var$3; }, ong_GqlParams$SpecialRule = $rt_classWithoutFields(0), @@ -67296,13 +68410,13 @@ ong_GqlParams$JoinStyle_values = () => { ong_GqlParams$JoinStyle__clinit_ = () => { let var$1, var$2, var$3; var$1 = new ong_GqlParams$JoinStyle; - jl_Enum__init_(var$1, $rt_s(3555), 0); + jl_Enum__init_(var$1, $rt_s(3619), 0); ong_GqlParams$JoinStyle_ANDED = var$1; var$1 = new ong_GqlParams$JoinStyle; - jl_Enum__init_(var$1, $rt_s(3556), 1); + jl_Enum__init_(var$1, $rt_s(3620), 1); ong_GqlParams$JoinStyle_ORED = var$1; var$1 = new ong_GqlParams$JoinStyle; - jl_Enum__init_(var$1, $rt_s(3557), 2); + jl_Enum__init_(var$1, $rt_s(3621), 2); ong_GqlParams$JoinStyle_COMMAD = var$1; var$2 = $rt_createArray(ong_GqlParams$JoinStyle, 3); var$3 = var$2.data; @@ -67310,6 +68424,37 @@ ong_GqlParams$JoinStyle__clinit_ = () => { var$3[1] = ong_GqlParams$JoinStyle_ORED; var$3[2] = var$1; ong_GqlParams$JoinStyle_$VALUES = var$2; +}, +ong_ErrorClassification = $rt_classWithoutFields(jl_Enum), +ong_ErrorClassification_CLIENT_ERROR = null, +ong_ErrorClassification_DATABASE_ERROR = null, +ong_ErrorClassification_TRANSIENT_ERROR = null, +ong_ErrorClassification_UNKNOWN = null, +ong_ErrorClassification_$VALUES = null, +ong_ErrorClassification_values = () => { + return ong_ErrorClassification_$VALUES.$clone0(); +}, +ong_ErrorClassification__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new ong_ErrorClassification; + jl_Enum__init_(var$1, $rt_s(3622), 0); + ong_ErrorClassification_CLIENT_ERROR = var$1; + var$1 = new ong_ErrorClassification; + jl_Enum__init_(var$1, $rt_s(3623), 1); + ong_ErrorClassification_DATABASE_ERROR = var$1; + var$1 = new ong_ErrorClassification; + jl_Enum__init_(var$1, $rt_s(3624), 2); + ong_ErrorClassification_TRANSIENT_ERROR = var$1; + var$1 = new ong_ErrorClassification; + jl_Enum__init_(var$1, $rt_s(3583), 3); + ong_ErrorClassification_UNKNOWN = var$1; + var$2 = $rt_createArray(ong_ErrorClassification, 4); + var$3 = var$2.data; + var$3[0] = ong_ErrorClassification_CLIENT_ERROR; + var$3[1] = ong_ErrorClassification_DATABASE_ERROR; + var$3[2] = ong_ErrorClassification_TRANSIENT_ERROR; + var$3[3] = var$1; + ong_ErrorClassification_$VALUES = var$2; }; function ong_GqlParams$NumberParam() { jl_Enum.call(this); @@ -67330,19 +68475,13 @@ ong_GqlParams$NumberParam_timeAmount = null, ong_GqlParams$NumberParam_upper = null, ong_GqlParams$NumberParam_value = null, ong_GqlParams$NumberParam_$VALUES = null, -ong_GqlParams$NumberParam_$callClinit = () => { - ong_GqlParams$NumberParam_$callClinit = $rt_eraseClinit(ong_GqlParams$NumberParam); - ong_GqlParams$NumberParam__clinit_(); -}, ong_GqlParams$NumberParam_values = () => { - ong_GqlParams$NumberParam_$callClinit(); return ong_GqlParams$NumberParam_$VALUES.$clone0(); }, ong_GqlParams$NumberParam_process = ($this, $s) => { - return $this.$processor1.$process($s); + return $this.$processor1.$process0($s); }, ong_GqlParams$NumberParam__init_0 = ($this, var$1, var$2, $proc) => { - ong_GqlParams$NumberParam_$callClinit(); jl_Enum__init_($this, var$1, var$2); $this.$processor1 = $proc; }, @@ -67353,20 +68492,20 @@ ong_GqlParams$NumberParam__init_ = (var_0, var_1, var_2) => { }, ong_GqlParams$NumberParam__clinit_ = () => { let var$1, var$2, var$3; - ong_GqlParams$NumberParam_boltMsgLenLimit = ong_GqlParams$NumberParam__init_($rt_s(3558), 0, new ong_GqlParams$NUM); - ong_GqlParams$NumberParam_count = ong_GqlParams$NumberParam__init_($rt_s(3559), 1, new ong_GqlParams$NONNEG); - ong_GqlParams$NumberParam_count1 = ong_GqlParams$NumberParam__init_($rt_s(3560), 2, new ong_GqlParams$NONNEG); - ong_GqlParams$NumberParam_count2 = ong_GqlParams$NumberParam__init_($rt_s(3561), 3, new ong_GqlParams$NONNEG); - ong_GqlParams$NumberParam_countAllocs = ong_GqlParams$NumberParam__init_($rt_s(3562), 4, new ong_GqlParams$NUM); - ong_GqlParams$NumberParam_countSeeders = ong_GqlParams$NumberParam__init_($rt_s(3563), 5, new ong_GqlParams$NUM); - ong_GqlParams$NumberParam_dim1 = ong_GqlParams$NumberParam__init_($rt_s(3564), 6, new ong_GqlParams$NONNEG); - ong_GqlParams$NumberParam_dim2 = ong_GqlParams$NumberParam__init_($rt_s(3565), 7, new ong_GqlParams$NONNEG); - ong_GqlParams$NumberParam_entityId = ong_GqlParams$NumberParam__init_($rt_s(3566), 8, new ong_GqlParams$STRLIT); - ong_GqlParams$NumberParam_lower = ong_GqlParams$NumberParam__init_($rt_s(3567), 9, new ong_GqlParams$NUM); - ong_GqlParams$NumberParam_pos = ong_GqlParams$NumberParam__init_($rt_s(3568), 10, new ong_GqlParams$NUM); - ong_GqlParams$NumberParam_timeAmount = ong_GqlParams$NumberParam__init_($rt_s(3569), 11, new ong_GqlParams$NUM); - ong_GqlParams$NumberParam_upper = ong_GqlParams$NumberParam__init_($rt_s(3570), 12, new ong_GqlParams$NUM); - var$1 = ong_GqlParams$NumberParam__init_($rt_s(1201), 13, new ong_GqlParams$VAL); + ong_GqlParams$NumberParam_boltMsgLenLimit = ong_GqlParams$NumberParam__init_($rt_s(3625), 0, new ong_GqlParams$NUM); + ong_GqlParams$NumberParam_count = ong_GqlParams$NumberParam__init_($rt_s(3626), 1, new ong_GqlParams$NONNEG); + ong_GqlParams$NumberParam_count1 = ong_GqlParams$NumberParam__init_($rt_s(3627), 2, new ong_GqlParams$NONNEG); + ong_GqlParams$NumberParam_count2 = ong_GqlParams$NumberParam__init_($rt_s(3628), 3, new ong_GqlParams$NONNEG); + ong_GqlParams$NumberParam_countAllocs = ong_GqlParams$NumberParam__init_($rt_s(3629), 4, new ong_GqlParams$NUM); + ong_GqlParams$NumberParam_countSeeders = ong_GqlParams$NumberParam__init_($rt_s(3630), 5, new ong_GqlParams$NUM); + ong_GqlParams$NumberParam_dim1 = ong_GqlParams$NumberParam__init_($rt_s(3631), 6, new ong_GqlParams$NONNEG); + ong_GqlParams$NumberParam_dim2 = ong_GqlParams$NumberParam__init_($rt_s(3632), 7, new ong_GqlParams$NONNEG); + ong_GqlParams$NumberParam_entityId = ong_GqlParams$NumberParam__init_($rt_s(3633), 8, new ong_GqlParams$STRLIT); + ong_GqlParams$NumberParam_lower = ong_GqlParams$NumberParam__init_($rt_s(3634), 9, new ong_GqlParams$NUM); + ong_GqlParams$NumberParam_pos = ong_GqlParams$NumberParam__init_($rt_s(3635), 10, new ong_GqlParams$NUM); + ong_GqlParams$NumberParam_timeAmount = ong_GqlParams$NumberParam__init_($rt_s(3636), 11, new ong_GqlParams$NUM); + ong_GqlParams$NumberParam_upper = ong_GqlParams$NumberParam__init_($rt_s(3637), 12, new ong_GqlParams$NUM); + var$1 = ong_GqlParams$NumberParam__init_($rt_s(1243), 13, new ong_GqlParams$VAL); ong_GqlParams$NumberParam_value = var$1; var$2 = $rt_createArray(ong_GqlParams$NumberParam, 14); var$3 = var$2.data; @@ -67395,20 +68534,20 @@ ong_GqlStatusInfoCodes$getOffsets$lambda$_8_0_applyAsInt = (var$0, var$1) => { }; function jus_Collectors$joining$lambda$_8_0() { jl_Object.call(this); - this.$_0556 = null; + this.$_0537 = null; } let jus_Collectors$joining$lambda$_8_0_accept = (var$0, var$1, var$2) => { let var$3; var$1 = var$1; var$2 = var$2; - var$3 = var$0.$_0556; + var$3 = var$0.$_0537; if (var$1.$length1 > 0) - jl_AbstractStringBuilder_append1(var$1, var$3); - jl_AbstractStringBuilder_append1(var$1, var$2); + jl_AbstractStringBuilder_append2(var$1, var$3); + jl_AbstractStringBuilder_append2(var$1, var$2); }; function jus_Collectors$joining$lambda$_8_1() { jl_Object.call(this); - this.$_01206 = null; + this.$_01190 = null; } let jus_Collectors$joining$lambda$_8_2 = $rt_classWithoutFields(), jus_Collectors$joining$lambda$_8_2_get = var$0 => { @@ -67419,16 +68558,16 @@ jus_Collectors$joining$lambda$_8_2_get = var$0 => { }; function jus_Collectors$joining$lambda$_8_3() { let a = this; jl_Object.call(a); - a.$_0616 = null; - a.$_1210 = null; + a.$_0609 = null; + a.$_1206 = null; } let jus_Collectors$joining$lambda$_8_3_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0616; - var$3 = var$0.$_1210; + var$2 = var$0.$_0609; + var$3 = var$0.$_1206; jl_AbstractStringBuilder_insert0(var$1, 0, var$2, 0, var$2.$nativeString.length); - jl_AbstractStringBuilder_append1(var$1, var$3); + jl_AbstractStringBuilder_append2(var$1, var$3); return jl_AbstractStringBuilder_toString(var$1); }; function onc_EntityType() { @@ -67470,7 +68609,7 @@ function ju_Formatter$FormatWriter() { a.$formatter = null; a.$out0 = null; a.$locale = null; - a.$format7 = null; + a.$format8 = null; a.$args1 = null; a.$index3 = 0; a.$formatSpecifierStart = 0; @@ -67485,7 +68624,7 @@ let ju_Formatter$FormatWriter__init_0 = ($this, $formatter, $out, $locale, $form $this.$formatter = $formatter; $this.$out0 = $out; $this.$locale = $locale; - $this.$format7 = $format; + $this.$format8 = $format; $this.$args1 = $args; }, ju_Formatter$FormatWriter__init_ = (var_0, var_1, var_2, var_3, var_4) => { @@ -67496,12 +68635,12 @@ ju_Formatter$FormatWriter__init_ = (var_0, var_1, var_2, var_3, var_4) => { ju_Formatter$FormatWriter_write = $this => { let $next, $specifier, var$3; a: while (true) { - $next = jl_String_indexOf0($this.$format7, 37, $this.$index3); + $next = jl_String_indexOf0($this.$format8, 37, $this.$index3); if ($next < 0) { - $this.$out0.$append12(jl_String_substring0($this.$format7, $this.$index3)); + $this.$out0.$append12(jl_String_substring0($this.$format8, $this.$index3)); return; } - $this.$out0.$append12(jl_String_substring($this.$format7, $this.$index3, $next)); + $this.$out0.$append12(jl_String_substring($this.$format8, $this.$index3, $next)); $next = $next + 1 | 0; $this.$index3 = $next; $this.$formatSpecifierStart = $next; @@ -67614,16 +68753,16 @@ ju_Formatter$FormatWriter_formatFloat = ($this, $specifier, $upperCase) => { ju_Formatter$FormatWriter_verifyFlags($this, $specifier, 507); $decimalSize = $this.$flags; if ($decimalSize & 8 && $decimalSize & 16) - $rt_throw(ju_IllegalFormatFlagsException__init_($rt_s(3571))); + $rt_throw(ju_IllegalFormatFlagsException__init_($rt_s(3638))); if ($decimalSize & 32 && $decimalSize & 1) - $rt_throw(ju_IllegalFormatFlagsException__init_($rt_s(3572))); + $rt_throw(ju_IllegalFormatFlagsException__init_($rt_s(3639))); if ($decimalSize & 1 && $this.$width < 0) - $rt_throw(ju_MissingFormatWidthException__init_(jl_String_substring($this.$format7, $this.$formatSpecifierStart, $this.$index3))); + $rt_throw(ju_MissingFormatWidthException__init_(jl_String_substring($this.$format8, $this.$formatSpecifierStart, $this.$index3))); if ($this.$precision0 == (-1)) $this.$precision0 = 6; $arg = $this.$args1.data[$this.$argumentIndex]; if ($arg instanceof jl_Double) - $negative = $arg.$value12 >= 0.0 ? 0 : 1; + $negative = $arg.$value11 >= 0.0 ? 0 : 1; else if ($arg instanceof jl_Float) $negative = jl_Float_floatValue($arg) >= 0.0 ? 0 : 1; else { @@ -67660,7 +68799,7 @@ ju_Formatter$FormatWriter_formatFloat = ($this, $specifier, $upperCase) => { if ($specifier & 8) jt_DecimalFormat_setPositivePrefix($format, $rt_s(600)); else if ($specifier & 16) - jt_DecimalFormat_setPositivePrefix($format, $rt_s(384)); + jt_DecimalFormat_setPositivePrefix($format, $rt_s(370)); $str = new jl_StringBuffer; jl_AbstractStringBuilder__init_($str); var$8 = new jt_FieldPosition; @@ -67672,7 +68811,7 @@ ju_Formatter$FormatWriter_formatFloat = ($this, $specifier, $upperCase) => { else { if (!($arg instanceof jl_Number)) { $arg = new jl_IllegalArgumentException; - jl_Throwable__init_($arg); + jl_Throwable__init_0($arg); $rt_throw($arg); } $arg = $arg; @@ -67734,7 +68873,7 @@ ju_Formatter$FormatWriter_formatChar = ($this, $specifier, $upperCase) => { if ($c >= 0) $rt_throw(ju_IllegalFormatPrecisionException__init_($c)); if ($arg instanceof jl_Character) - $c = $arg.$value11; + $c = $arg.$value12; else if ($arg instanceof jl_Byte) $c = $arg.$value13 & 65535; else if ($arg instanceof jl_Short) @@ -67752,8 +68891,8 @@ ju_Formatter$FormatWriter_formatChar = ($this, $specifier, $upperCase) => { $arg = new ju_IllegalFormatCodePointException; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$5, $rt_s(3573)), $c), $rt_s(3574)); - jl_Throwable__init_0($arg, jl_AbstractStringBuilder_toString(var$5)); + jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$5, $rt_s(3640)), $c), $rt_s(3641)); + jl_Throwable__init_($arg, jl_AbstractStringBuilder_toString(var$5)); $arg.$codePoint = $c; $rt_throw($arg); } @@ -67829,7 +68968,7 @@ ju_Formatter$FormatWriter_formatDecimalInt = ($this, $specifier, $upperCase) => } } } - jl_AbstractStringBuilder_append1($sb, $valueSb); + jl_AbstractStringBuilder_append2($sb, $valueSb); if ($negative && $this.$flags & 128) jl_AbstractStringBuilder_append0($sb, 41); ju_Formatter$FormatWriter_formatGivenString($this, $upperCase, jl_AbstractStringBuilder_toString($sb)); @@ -67871,7 +69010,7 @@ ju_Formatter$FormatWriter_formatRadixInt = ($this, $specifier, $radixLog2, $uppe $sb = new jl_StringBuilder; jl_AbstractStringBuilder__init_($sb); if ($this.$flags & 4) { - $prefix = $radixLog2 != 4 ? $rt_s(21) : $rt_s(3575); + $prefix = $radixLog2 != 4 ? $rt_s(21) : $rt_s(3642); $arg = new jl_StringBuilder; jl_AbstractStringBuilder__init_($arg); jl_StringBuilder_append(jl_StringBuilder_append($arg, $prefix), $str); @@ -67895,14 +69034,14 @@ ju_Formatter$FormatWriter_verifyIntFlags = $this => { let var$1, var$2; var$1 = $this.$flags; if (var$1 & 8 && var$1 & 16) - $rt_throw(ju_IllegalFormatFlagsException__init_($rt_s(3571))); + $rt_throw(ju_IllegalFormatFlagsException__init_($rt_s(3638))); if (var$1 & 32 && var$1 & 1) - $rt_throw(ju_IllegalFormatFlagsException__init_($rt_s(3572))); + $rt_throw(ju_IllegalFormatFlagsException__init_($rt_s(3639))); var$2 = $this.$precision0; if (var$2 >= 0) $rt_throw(ju_IllegalFormatPrecisionException__init_(var$2)); if (var$1 & 1 && $this.$width < 0) - $rt_throw(ju_MissingFormatWidthException__init_(jl_String_substring($this.$format7, $this.$formatSpecifierStart, $this.$index3))); + $rt_throw(ju_MissingFormatWidthException__init_(jl_String_substring($this.$format8, $this.$formatSpecifierStart, $this.$index3))); }, ju_Formatter$FormatWriter_formatGivenString = ($this, $upperCase, $str) => { let var$3; @@ -67910,7 +69049,7 @@ ju_Formatter$FormatWriter_formatGivenString = ($this, $upperCase, $str) => { if (var$3 > 0 && var$3 < $str.$nativeString.length) $str = jl_String_substring($str, 0, $this.$precision0); if ($upperCase) - $str = jl_String_toUpperCase($str); + $str = jl_String_toUpperCase0($str); if (!($this.$flags & 1)) { ju_Formatter$FormatWriter_mayBeAppendSpaces($this, $str); $this.$out0.$append12($str); @@ -67928,11 +69067,11 @@ ju_Formatter$FormatWriter_verifyFlags = ($this, $conversion, $mask) => { if ((var$3 | $mask) == $mask) return; var$4 = new ju_FormatFlagsConversionMismatchException; - var$5 = jl_String_valueOf1(jl_String_charAt($rt_s(3576), jl_Integer_numberOfTrailingZeros(var$3 & ($mask ^ (-1))))); + var$5 = jl_String_valueOf1(jl_String_charAt($rt_s(3643), jl_Integer_numberOfTrailingZeros(var$3 & ($mask ^ (-1))))); var$6 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(3577)), var$5), $rt_s(3578)), $conversion); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$6)); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(3644)), var$5), $rt_s(3645)), $conversion); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$6)); var$4.$flags5 = var$5; var$4.$conversion0 = $conversion; $rt_throw(var$4); @@ -67957,10 +69096,10 @@ ju_Formatter$FormatWriter_parseFormatSpecifier = $this => { $this.$argumentIndex = (-1); $this.$width = (-1); $this.$precision0 = (-1); - $c = jl_String_charAt($this.$format7, $this.$index3); + $c = jl_String_charAt($this.$format8, $this.$index3); if ($c != 48 && ju_Formatter$FormatWriter_isDigit($c)) { $n = ju_Formatter$FormatWriter_readInt($this); - if ($this.$index3 < $this.$format7.$nativeString.length && jl_String_charAt($this.$format7, $this.$index3) == 36) { + if ($this.$index3 < $this.$format8.$nativeString.length && jl_String_charAt($this.$format8, $this.$index3) == 36) { $this.$index3 = $this.$index3 + 1 | 0; $this.$argumentIndex = $n - 1 | 0; } else @@ -67969,10 +69108,10 @@ ju_Formatter$FormatWriter_parseFormatSpecifier = $this => { a: { b: { while (true) { - if ($this.$index3 >= $this.$format7.$nativeString.length) + if ($this.$index3 >= $this.$format8.$nativeString.length) break a; c: { - $c = jl_String_charAt($this.$format7, $this.$index3); + $c = jl_String_charAt($this.$format8, $this.$index3); switch ($c) { case 32: break; @@ -68034,39 +69173,39 @@ ju_Formatter$FormatWriter_parseFormatSpecifier = $this => { var$5 = jl_String_valueOf1($c); var$6 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(3579)), var$5); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$6)); + jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(3646)), var$5); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$6)); var$4.$flags4 = var$5; $rt_throw(var$4); } } - if ($this.$width < 0 && $this.$index3 < $this.$format7.$nativeString.length && ju_Formatter$FormatWriter_isDigit(jl_String_charAt($this.$format7, $this.$index3))) + if ($this.$width < 0 && $this.$index3 < $this.$format8.$nativeString.length && ju_Formatter$FormatWriter_isDigit(jl_String_charAt($this.$format8, $this.$index3))) $this.$width = ju_Formatter$FormatWriter_readInt($this); - if ($this.$index3 < $this.$format7.$nativeString.length && jl_String_charAt($this.$format7, $this.$index3) == 46) { + if ($this.$index3 < $this.$format8.$nativeString.length && jl_String_charAt($this.$format8, $this.$index3) == 46) { $c = $this.$index3 + 1 | 0; $this.$index3 = $c; - if ($c < $this.$format7.$nativeString.length && ju_Formatter$FormatWriter_isDigit(jl_String_charAt($this.$format7, $this.$index3))) + if ($c < $this.$format8.$nativeString.length && ju_Formatter$FormatWriter_isDigit(jl_String_charAt($this.$format8, $this.$index3))) $this.$precision0 = ju_Formatter$FormatWriter_readInt($this); else - $rt_throw(ju_UnknownFormatConversionException__init_(jl_String_valueOf1(jl_String_charAt($this.$format7, $this.$index3 - 1 | 0)))); + $rt_throw(ju_UnknownFormatConversionException__init_(jl_String_valueOf1(jl_String_charAt($this.$format8, $this.$index3 - 1 | 0)))); } - if ($this.$index3 < $this.$format7.$nativeString.length) { - var$4 = $this.$format7; + if ($this.$index3 < $this.$format8.$nativeString.length) { + var$4 = $this.$format8; $n = $this.$index3; $this.$index3 = $n + 1 | 0; return jl_String_charAt(var$4, $n); } var$4 = new ju_UnknownFormatConversionException; - var$5 = $this.$format7; + var$5 = $this.$format8; ju_UnknownFormatConversionException__init_0(var$4, jl_String_valueOf1(jl_String_charAt(var$5, var$5.$nativeString.length - 1 | 0))); $rt_throw(var$4); }, ju_Formatter$FormatWriter_readInt = $this => { let $result, var$2, var$3, var$4; $result = 0; - while ($this.$index3 < $this.$format7.$nativeString.length && ju_Formatter$FormatWriter_isDigit(jl_String_charAt($this.$format7, $this.$index3))) { + while ($this.$index3 < $this.$format8.$nativeString.length && ju_Formatter$FormatWriter_isDigit(jl_String_charAt($this.$format8, $this.$index3))) { var$2 = $result * 10 | 0; - var$3 = $this.$format7; + var$3 = $this.$format8; var$4 = $this.$index3; $this.$index3 = var$4 + 1 | 0; $result = var$2 + (jl_String_charAt(var$3, var$4) - 48 | 0) | 0; @@ -68081,7 +69220,7 @@ ju_FormatterClosedException = $rt_classWithoutFields(jl_IllegalStateException), ju_TemplateCollections$AbstractImmutableMap = $rt_classWithoutFields(ju_AbstractMap), ju_TemplateCollections$AbstractImmutableMap_put = ($this, $key, $value) => { $key = new jl_UnsupportedOperationException; - jl_Throwable__init_($key); + jl_Throwable__init_0($key); $rt_throw($key); }; function ju_TemplateCollections$NEtriesMap() { @@ -68121,7 +69260,7 @@ ju_TemplateCollections$NEtriesMap_toEntryArray = ($this, $entries) => { } if (($existingEntry.$getKey()).$equals($entry.$getKey())) { $existingElement = new jl_IllegalArgumentException; - jl_Throwable__init_($existingElement); + jl_Throwable__init_0($existingElement); $rt_throw($existingElement); } var$9 = var$9 + 1 | 0; @@ -68136,7 +69275,7 @@ ju_TemplateCollections$NEtriesMap_toEntryArray = ($this, $entries) => { break b; if (($existingElement.$getKey()).$equals($entry.$getKey())) { $existingElement = new jl_IllegalArgumentException; - jl_Throwable__init_($existingElement); + jl_Throwable__init_0($existingElement); $rt_throw($existingElement); } var$9 = var$9 + 1 | 0; @@ -68151,9 +69290,6 @@ ju_TemplateCollections$NEtriesMap_toEntryArray = ($this, $entries) => { ju_TemplateCollections$NEtriesMap_size = $this => { return $this.$data0.data.length; }, -ju_TemplateCollections$NEtriesMap_isEmpty = $this => { - return $this.$data0.data.length ? 0 : 1; -}, ju_TemplateCollections$NEtriesMap_containsKey = ($this, $key) => { let $suggestedIndex, $i, var$4; if ($key !== null && $this.$data0.data.length) { @@ -68216,17 +69352,17 @@ function onkae_Status$NotificationCode() { let a = this; onkae_Status$Code.call(a); a.$severity = null; a.$notificationCategory = null; - a.$classification0 = null; + a.$classification1 = null; a.$category4 = null; a.$title2 = null; } let onkae_Status$NotificationCode__init_0 = ($this, $classification, $categoryAndTitle, $description, $severity, $notificationCategory) => { onkae_Status$Code__init_0($this, $classification, $categoryAndTitle, $description); $this.$severity = $severity; - $this.$classification0 = $classification; + $this.$classification1 = $classification; $this.$category4 = jl_Class_getSimpleName(jl_Enum_getDeclaringClass($categoryAndTitle)); $this.$notificationCategory = $notificationCategory; - $this.$title2 = $categoryAndTitle.$name6; + $this.$title2 = $categoryAndTitle.$name7; }, onkae_Status$NotificationCode__init_ = (var_0, var_1, var_2, var_3, var_4) => { let var_5 = new onkae_Status$NotificationCode(); @@ -68243,10 +69379,10 @@ let ju_TemplateCollections$SingleEntryMap_get = ($this, $key) => { function ju_TemplateCollections$TwoEntriesMap() { let a = this; ju_TemplateCollections$AbstractImmutableMap.call(a); a.$first3 = null; - a.$second = null; + a.$second0 = null; } let ju_TemplateCollections$TwoEntriesMap_get = ($this, $key) => { - return $this.$first3.$key3.$equals($key) ? $this.$first3.$value18 : !$this.$second.$key3.$equals($key) ? null : $this.$second.$value18; + return $this.$first3.$key3.$equals($key) ? $this.$first3.$value18 : !$this.$second0.$key3.$equals($key) ? null : $this.$second0.$value18; }, ju_AbstractSet = $rt_classWithoutFields(ju_AbstractCollection), ju_AbstractSet_equals = ($this, $obj) => { @@ -68286,7 +69422,7 @@ ju_EnumSet_noneOf = $elementType => { var$3 = ju_GenericEnumSet_getConstants($elementType); if (var$3 === null) { $elementType = new jl_ClassCastException; - jl_Throwable__init_($elementType); + jl_Throwable__init_0($elementType); $rt_throw($elementType); } var$4 = var$3.data.length; @@ -68474,7 +69610,7 @@ otciu_CLDRHelper_getNumberFormatMap$$create = () => { return {"root": {"value" : "#,##0.###"}, "en": {"value" : "#,##0.###"}}; }, otciu_CLDRHelper_getDecimalDataMap$$create = () => { - return {"root": {"exponentSeparator" : "E", "minusSign" : 45, "perMille" : 8240, "decimalSeparator" : 46, "listSeparator" : 59, "infinity" : "∞", "naN" : "NaN", "groupingSeparator" : 44, "percent" : 37}, "en": {"exponentSeparator" : "E", "minusSign" : 45, "perMille" : 8240, "decimalSeparator" : 46, "listSeparator" : 59, "infinity" : "∞", "naN" : "NaN", "groupingSeparator" : 44, "percent" : 37}}; + return {"root": {"exponentSeparator" : "E", "minusSign" : 45, "perMille" : 8240, "decimalSeparator" : 46, "listSeparator" : 59, "naN" : "NaN", "infinity" : "∞", "groupingSeparator" : 44, "percent" : 37}, "en": {"exponentSeparator" : "E", "minusSign" : 45, "perMille" : 8240, "decimalSeparator" : 46, "listSeparator" : 59, "naN" : "NaN", "infinity" : "∞", "groupingSeparator" : 44, "percent" : 37}}; }, otciu_CLDRHelper_getCurrencyMap$$create = () => { return {"root": {"UGS": {"symbol" : "UGS", "name" : "UGS"}, "FJD": {"symbol" : "FJD", "name" : "FJD"}, "MXN": {"symbol" : "MX$", "name" : "MXN"}, "STD": {"symbol" : "STD", "name" : "STD"}, "BRR": {"symbol" : "BRR", "name" : "BRR"}, "LVL": {"symbol" : "LVL", "name" : "LVL"}, "SCR": {"symbol" : "SCR", "name" : "SCR"}, "CDF": {"symbol" : "CDF", "name" : "CDF"}, "MXP": {"symbol" : "MXP", "name" : "MXP"}, "ZAL": {"symbol" : "ZAL", "name" : "ZAL"}, "BBD": {"symbol" : "BBD", "name" : "BBD"}, "HNL": {"symbol" : @@ -68591,10 +69727,10 @@ onkae_Status$Classification$TransactionEffect_values = () => { onkae_Status$Classification$TransactionEffect__clinit_ = () => { let var$1, var$2, var$3; var$1 = new onkae_Status$Classification$TransactionEffect; - jl_Enum__init_(var$1, $rt_s(3580), 0); + jl_Enum__init_(var$1, $rt_s(3647), 0); onkae_Status$Classification$TransactionEffect_ROLLBACK = var$1; var$1 = new onkae_Status$Classification$TransactionEffect; - jl_Enum__init_(var$1, $rt_s(3581), 1); + jl_Enum__init_(var$1, $rt_s(3648), 1); onkae_Status$Classification$TransactionEffect_NONE = var$1; var$2 = $rt_createArray(onkae_Status$Classification$TransactionEffect, 2); var$3 = var$2.data; @@ -68613,7 +69749,7 @@ ju_Collections$3 = $rt_classWithoutFields(ju_TemplateCollections$AbstractImmutab ju_Collections$3_get = ($this, $index) => { let var$2; var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); + jl_Throwable__init_0(var$2); $rt_throw(var$2); }, ju_Collections$3_size = $this => { @@ -68632,7 +69768,7 @@ ju_Collections$4_hasNext = $this => { ju_Collections$4_next = $this => { let var$1; var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); }, ju_ListIterator = $rt_classWithoutFields(0), @@ -68663,7 +69799,7 @@ ong_GqlParams$ListProcessor_commadFormat = $list => { var$4 = var$4 + 1 | 0; } jl_AbstractStringBuilder_append(var$3, $rt_s(41)); - jl_AbstractStringBuilder_append(var$3, $rt_s(384)); + jl_AbstractStringBuilder_append(var$3, $rt_s(370)); jl_StringBuilder_append(var$3, $list.$get0($list.$size() - 1 | 0)); $list = jl_AbstractStringBuilder_toString(var$3); } @@ -68702,7 +69838,7 @@ ju_GenericEnumSet_add = ($this, var$1) => { var$2 = jl_Object_getClass(var$1); if (var$2 !== $this.$cls && jl_Class_getSuperclass(var$2) !== $this.$cls) { var$1 = new jl_ClassCastException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); } var$3 = var$1.$ordinal; @@ -68719,20 +69855,24 @@ ju_GenericEnumSet_add = ($this, var$1) => { }, jus_BaseStream = $rt_classWithoutFields(0), jus_Stream = $rt_classWithoutFields(0), +jus_Stream_concat = ($a, $b) => { + let var$3; + if ($a instanceof jusi_SimpleStreamImpl && $b instanceof jusi_SimpleStreamImpl) { + var$3 = new jusi_SpecializedConcatStream; + var$3.$first5 = $a; + var$3.$second = $b; + var$3.$current5 = $a; + return var$3; + } + var$3 = new jusi_GenericConcatStream; + var$3.$first8 = $a; + var$3.$second2 = $b; + return var$3; +}, jus_Stream_toList = $this => { - let var$1; - var$1 = new ju_TemplateCollections$ImmutableArrayList; - var$1.$list3 = jusi_SimpleStreamImpl_toArray($this); - return var$1; + return ju_TemplateCollections$ImmutableArrayList__init_(jusi_SimpleStreamImpl_toArray($this)); }, jusi_SimpleStreamImpl = $rt_classWithoutFields(), -jusi_SimpleStreamImpl_filter = ($this, $predicate) => { - let var$2; - var$2 = new jusi_FilteringStreamImpl; - jusi_WrappingStreamImpl__init_(var$2, $this); - var$2.$filter6 = $predicate; - return var$2; -}, jusi_SimpleStreamImpl_map = ($this, $mapper) => { let var$2; var$2 = new jusi_MappingStreamImpl; @@ -68756,11 +69896,11 @@ jusi_SimpleStreamImpl_toArray0 = ($this, $generator) => { if ($estimatedSize >= 0) { var$3 = $rt_createArray(jl_Object, $estimatedSize); $consumer = new jusi_SimpleStreamImpl$ArrayFillingConsumer; - $consumer.$array20 = var$3; + $consumer.$array19 = var$3; while ($this.$next2($consumer)) { } var$5 = var$3.data; - $estimatedSize = $consumer.$index11; + $estimatedSize = $consumer.$index10; if ($estimatedSize < var$5.length) var$3 = ju_Arrays_copyOf(var$3, $estimatedSize); return var$3; @@ -68769,7 +69909,7 @@ jusi_SimpleStreamImpl_toArray0 = ($this, $generator) => { while (true) { ju_Objects_requireNonNull($list); $generator = new jusi_SimpleStreamImpl$toArray$lambda$_21_0; - $generator.$_0930 = $list; + $generator.$_0919 = $list; if (!$this.$next2($generator)) break; } @@ -68789,19 +69929,21 @@ jusi_SimpleStreamImpl_collect = ($this, $collector) => { $accumulator = $collector.$accumulator1; while (true) { var$4 = new jusi_SimpleStreamImpl$collect$lambda$_26_0; - var$4.$_0173 = $accumulator; - var$4.$_166 = $collection; - if (!jusi_WrappingStreamImpl_next($this, var$4)) + var$4.$_0171 = $accumulator; + var$4.$_160 = $collection; + if (!$this.$next2(var$4)) break; } return $collector.$finisher.$apply2($collection); }, -jusi_SimpleStreamImpl_findFirst = $this => { - let $consumer; - $consumer = new jusi_FindFirstConsumer; - while ($consumer.$result6 === null && jusi_WrappingStreamImpl_next($this, $consumer)) { - } - return ju_Optional_ofNullable($consumer.$result6); +jusi_SimpleStreamImpl_iterator = $this => { + let var$1; + var$1 = new jusi_SimpleStreamIterator; + var$1.$stream1 = $this; + return var$1; +}, +jusi_SimpleStreamImpl_estimateSize = $this => { + return (-1); }; function jusi_StreamOverSpliterator() { jusi_SimpleStreamImpl.call(this); @@ -68832,17 +69974,6 @@ jusi_StreamOverSpliterator_estimateSize = $this => { }, scc_AsJavaConverters = $rt_classWithoutFields(0), scc_AsScalaConverters = $rt_classWithoutFields(0), -scc_AsScalaConverters_asScala$ = ($$this, $l) => { - if ($l === null) - $$this = null; - else if ($l instanceof scc_JavaCollectionWrappers$MutableBufferWrapper) - $$this = $l.$underlying1(); - else { - $$this = new scc_JavaCollectionWrappers$JListWrapper; - $$this.$underlying22 = $l; - } - return $$this; -}, sjj_CollectionConverters$ = $rt_classWithoutFields(), sjj_CollectionConverters$_MODULE$ = null, sjj_CollectionConverters$__clinit_ = () => { @@ -68918,7 +70049,7 @@ sci_Map$Map1_apply = ($this, $key) => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$3, 15); jl_AbstractStringBuilder_append(var$3, $rt_s(684)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); $rt_throw(var$2); }, sci_Map$Map1_contains = ($this, $key) => { @@ -68995,228 +70126,55 @@ sci_Map$Map1__init_ = (var_0, var_1) => { }; function scm_MutationTracker$CheckedIterator() { let a = this; sc_AbstractIterator.call(a); - a.$underlying29 = null; + a.$underlying28 = null; a.$mutationCount4 = null; a.$expectedCount0 = 0; } let scm_MutationTracker$CheckedIterator_hasNext = $this => { - scm_MutationTracker$_checkMutations(scm_MutationTracker$_MODULE$, $this.$expectedCount0, scm_ListBuffer$iterator$lambda$_59_0_apply$mcI$sp($this.$mutationCount4), $rt_s(3582)); - return $this.$underlying29.$hasNext(); + scm_MutationTracker$_checkMutations(scm_MutationTracker$_MODULE$, $this.$expectedCount0, scm_ListBuffer$iterator$lambda$_59_0_apply$mcI$sp($this.$mutationCount4), $rt_s(3649)); + return $this.$underlying28.$hasNext(); }, scm_MutationTracker$CheckedIterator_next = $this => { - return $this.$underlying29.$next(); + return $this.$underlying28.$next(); }, srj_JFunction0$mcI$sp = $rt_classWithoutFields(0); function scm_ListBuffer$iterator$lambda$_59_0() { jl_Object.call(this); - this.$_0251 = null; + this.$_0238 = null; } let scm_ListBuffer$iterator$lambda$_59_0_apply$mcI$sp = var$0 => { - return var$0.$_0251.$mutationCount0; -}, -oncifpf_PlanPipelineTransformerFactory = $rt_classWithoutFields(0), -oncifp_SemanticAnalysis$ = $rt_classWithoutFields(), -oncifp_SemanticAnalysis$_MODULE$ = null, -oncifp_SemanticAnalysis$__clinit_ = () => { - oncifp_SemanticAnalysis$_MODULE$ = new oncifp_SemanticAnalysis$; -}; -function oncifp_StatementCondition() { - jl_Object.call(this); - this.$inner3 = null; -} -let oncifp_StatementCondition_toString = $this => { - return $this.$name(); -}, -oncifp_StatementCondition_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -oncifp_StatementCondition_apply = ($this, $state, $cancellationChecker) => { - let var$3; - if ($rt_isInstance($state, oncifp_BaseState)) { - $state = $state; - return $this.$inner3.$apply40(oncifp_InitialState_statement($state), $cancellationChecker); - } - $cancellationChecker = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(863)), $state); - jl_Throwable__init_0($cancellationChecker, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($cancellationChecker); + return var$0.$_0238.$mutationCount0; }, -oncifp_StatementCondition_name = $this => { - let var$1, var$2, var$3; - var$1 = $this.$inner3; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = jl_StringBuilder_append(var$2, $rt_s(3583)); - jl_AbstractStringBuilder_append0(var$3, 40); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$3, var$1), 41); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncifp_StatementCondition_productPrefix = $this => { - return $rt_s(3583); -}, -oncifp_StatementCondition_productArity = $this => { - return 1; -}, -oncifp_StatementCondition_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$inner3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncifp_StatementCondition_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_StatementCondition_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_StatementCondition_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncifp_StatementCondition) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$inner3; - $x$1 = $x$1.$inner3; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncifp_StatementCondition)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncifp_StatementCondition__init_ = ($this, $inner) => { - $this.$inner3 = $inner; -}, -oncifp_StatementCondition__init_0 = var_0 => { - let var_1 = new oncifp_StatementCondition(); - oncifp_StatementCondition__init_(var_1, var_0); - return var_1; -}, -oncifp_DeprecatedSyntaxReplaced$ = $rt_classWithoutFields(), -oncifp_DeprecatedSyntaxReplaced$_MODULE$ = null, -oncifp_DeprecatedSyntaxReplaced$__clinit_ = () => { - oncifp_DeprecatedSyntaxReplaced$_MODULE$ = new oncifp_DeprecatedSyntaxReplaced$; -}, -oncifp_DeprecatedSyntaxReplaced$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -oncifp_DeprecatedSyntaxReplaced$_productArity = $this => { - return 0; -}, -oncifp_DeprecatedSyntaxReplaced$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncifp_DeprecatedSyntaxReplaced$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_DeprecatedSyntaxReplaced$_hashCode = $this => { - return 1874952678; -}, -oncifp_DeprecatedSyntaxReplaced$_toString = $this => { - return $rt_s(3584); -}, -oncifp_DeprecatedSemanticsReplaced$ = $rt_classWithoutFields(), -oncifp_DeprecatedSemanticsReplaced$_MODULE$ = null, -oncifp_DeprecatedSemanticsReplaced$__clinit_ = () => { - oncifp_DeprecatedSemanticsReplaced$_MODULE$ = new oncifp_DeprecatedSemanticsReplaced$; -}, -oncifp_DeprecatedSemanticsReplaced$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -oncifp_DeprecatedSemanticsReplaced$_productArity = $this => { - return 0; -}, -oncifp_DeprecatedSemanticsReplaced$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncifp_DeprecatedSemanticsReplaced$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_DeprecatedSemanticsReplaced$_hashCode = $this => { - return (-85453526); +s_Predef$ArrowAssoc$ = $rt_classWithoutFields(), +s_Predef$ArrowAssoc$_MODULE$ = null, +s_Predef$ArrowAssoc$__clinit_ = () => { + s_Predef$ArrowAssoc$_MODULE$ = new s_Predef$ArrowAssoc$; }, -oncifp_DeprecatedSemanticsReplaced$_toString = $this => { - return $rt_s(3585); +s_Predef$ArrowAssoc$_$minus$greater$extension = ($this, $$this, $y) => { + return s_Tuple2__init_($$this, $y); }, -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$ = $rt_classWithoutFields(), -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_MODULE$ = null, -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$__clinit_ = () => { - oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_MODULE$ = new oncifp_PreparatoryRewriting$SemanticAnalysisPossible$; +oncirr_TopLevelBracesUnwrapped$ = $rt_classWithoutFields(), +oncirr_TopLevelBracesUnwrapped$_MODULE$ = null, +oncirr_TopLevelBracesUnwrapped$__clinit_ = () => { + oncirr_TopLevelBracesUnwrapped$_MODULE$ = new oncirr_TopLevelBracesUnwrapped$; }, -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_unary_$bang = $this => { +oncirr_TopLevelBracesUnwrapped$_unary_$bang = $this => { return onciu_StepSequencer$Condition_unary_$bang$($this); }, -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productArity = $this => { +oncirr_TopLevelBracesUnwrapped$_productArity = $this => { return 0; }, -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productElement = ($this, $x$1) => { +oncirr_TopLevelBracesUnwrapped$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productIterator = $this => { +oncirr_TopLevelBracesUnwrapped$_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_hashCode = $this => { - return 727969395; -}, -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_toString = $this => { - return $rt_s(3586); -}, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$ = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_MODULE$ = null, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$__clinit_ = () => { - oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_MODULE$ = new oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); +oncirr_TopLevelBracesUnwrapped$_hashCode = $this => { + return 2142753725; }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productArity = $this => { - return 0; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_hashCode = $this => { - return 638070250; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_toString = $this => { - return $rt_s(3587); -}, -oncifp_CompilationPhaseTracer = $rt_classWithoutFields(0), -oncifp_CompilationPhaseTracer_NONE_PHASE = null; -let oncifp_CompilationPhaseTracer_NO_TRACING = null, -oncifp_CompilationPhaseTracer__clinit_ = () => { - oncifp_CompilationPhaseTracer_NONE_PHASE = new oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_0; - oncifp_CompilationPhaseTracer_NO_TRACING = new oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_1; -}, -s_Predef$ArrowAssoc$ = $rt_classWithoutFields(), -s_Predef$ArrowAssoc$_MODULE$ = null, -s_Predef$ArrowAssoc$__clinit_ = () => { - s_Predef$ArrowAssoc$_MODULE$ = new s_Predef$ArrowAssoc$; -}, -s_Predef$ArrowAssoc$_$minus$greater$extension = ($this, $$this, $y) => { - return s_Tuple2__init_($$this, $y); +oncirr_TopLevelBracesUnwrapped$_toString = $this => { + return $rt_s(3650); }, oncirc_package$OptionalCallProcedureWrapped$ = $rt_classWithoutFields(), oncirc_package$OptionalCallProcedureWrapped$_MODULE$ = null, @@ -69239,7 +70197,7 @@ oncirc_package$OptionalCallProcedureWrapped$_hashCode = $this => { return (-1387217840); }, oncirc_package$OptionalCallProcedureWrapped$_toString = $this => { - return $rt_s(3588); + return $rt_s(3651); }, oncirc_package$LiteralsExtracted$ = $rt_classWithoutFields(), oncirc_package$LiteralsExtracted$_MODULE$ = null, @@ -69262,7 +70220,7 @@ oncirc_package$LiteralsExtracted$_hashCode = $this => { return 1638944636; }, oncirc_package$LiteralsExtracted$_toString = $this => { - return $rt_s(3589); + return $rt_s(3652); }, oncirc_package$SensitiveLiteralsExtracted$ = $rt_classWithoutFields(), oncirc_package$SensitiveLiteralsExtracted$_MODULE$ = null, @@ -69285,7 +70243,7 @@ oncirc_package$SensitiveLiteralsExtracted$_hashCode = $this => { return (-53945402); }, oncirc_package$SensitiveLiteralsExtracted$_toString = $this => { - return $rt_s(3590); + return $rt_s(3653); }, oncirc_package$FunctionInvocationsResolved$ = $rt_classWithoutFields(), oncirc_package$FunctionInvocationsResolved$_MODULE$ = null, @@ -69308,7 +70266,7 @@ oncirc_package$FunctionInvocationsResolved$_hashCode = $this => { return 1223713763; }, oncirc_package$FunctionInvocationsResolved$_toString = $this => { - return $rt_s(3591); + return $rt_s(3654); }; function sci_Set$Set2() { let a = this; sci_AbstractSet.call(a); @@ -69353,7 +70311,7 @@ sci_Set$Set2_contains = ($this, $elem) => { sci_Set$Set2_iterator = $this => { let var$1; var$1 = new sci_Set$Set2$$anon$1; - var$1.$$outer59 = $this; + var$1.$$outer53 = $this; sci_Set$SetNIterator__init_(var$1, 2); return var$1; }, @@ -69428,204 +70386,32 @@ sci_Set$Set2__init_ = (var_0, var_1) => { sci_Set$Set2__init_0(var_2, var_0, var_1); return var_2; }; -function oncirc_containsNoNodesOfType() { +function sci_HashSet$removedAll$lambda$_62_0() { jl_Object.call(this); - this.$tag = null; + this.$_0755 = null; } -let oncirc_containsNoNodesOfType_toString = $this => { - return $this.$name(); -}, -oncirc_containsNoNodesOfType_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -oncirc_containsNoNodesOfType_apply = ($this, $that, $cancellationChecker) => { - s_Option$_$callClinit(); - return (s_Option$_option2Iterable(s_Option$_MODULE$, s_Option_map(onciu_Foldable$Folder_treeFindByClass(onciu_Foldable_folder$0(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $that), $cancellationChecker), $this.$tag), new oncirc_containsNoNodesOfType$apply$lambda$_5_0))).$toSeq(); -}, -oncirc_containsNoNodesOfType_name = $this => { - let var$1, var$2, var$3; - var$1 = jl_Class_getSimpleName($this.$tag.$runtimeClass()); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = jl_StringBuilder_append(var$2, $rt_s(3592)); - jl_AbstractStringBuilder_append0(var$3, 91); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$3, var$1), 93); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncirc_containsNoNodesOfType_hashCode = $this => { - return $this.$tag.$hashCode(); -}, -oncirc_containsNoNodesOfType_equals = ($this, $obj) => { - if (!($obj instanceof oncirc_containsNoNodesOfType)) - return 0; - $obj = $obj; - return $this.$tag.$equals($obj.$tag); -}, -oncirc_containsNoNodesOfType_productArity = $this => { - return 0; -}, -oncirc_containsNoNodesOfType_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncirc_containsNoNodesOfType_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheckable = $rt_classWithoutFields(0), -oncia_ReturnItem = $rt_classWithoutFields(0), -oncia_ReturnItem_isPassThrough$ = $$this => { - return s_Option_contains($$this.$alias(), $$this.$expression()); +let sci_HashSet$removedAll$lambda$_62_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$2 = var$0.$_0755; + if (!(var$1 instanceof jl_Integer)) + var$3 = 1; + else { + var$3 = sr_BoxesRunTime_unboxToInt(var$1); + var$3 = (var$3 == var$2.$end() && !var$2.$isInclusive() ? 0 : var$2.$step0() > 0 ? (var$3 >= var$2.$start() && var$3 <= var$2.$end() ? (var$2.$step0() != 1 && $rt_umod((var$3 - var$2.$start() | 0), (var$2.$step0())) ? 0 : 1) : 0) : var$3 >= var$2.$end() && var$3 <= var$2.$start() ? (var$2.$step0() != (-1) && $rt_umod((var$2.$start() - var$3 | 0), ( -var$2.$step0() | 0)) ? 0 : 1) : 0) ? 0 : 1; + } + return jl_Boolean_valueOf(var$3); }, -oncia_ReturnItem_semanticCheck$ = $$this => { - let var$2; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - return oncias_SemanticExpressionCheck$_check0(var$2, oncie_Expression$SemanticContext$Results$_MODULE$, $$this.$expression()); +scm_LinkedHashSet = $rt_classWithoutFields(scm_AbstractSet), +scm_HashSet$$anon$2 = $rt_classWithoutFields(scm_HashSet$HashSetIterator), +scm_HashSet$$anon$2_extract = ($this, $nd) => { + return $nd; }; -function oncia_UnaliasedReturnItem() { +function scm_LinkedHashSet$Entry() { let a = this; jl_Object.call(a); - a.$expression17 = null; - a.$inputText1 = null; - a.$position94 = null; - a.$alias0 = null; - a.$name46 = null; + a.$key8 = null; + a.$hash2 = 0; } -let oncia_UnaliasedReturnItem_isPassThrough = $this => { - return oncia_ReturnItem_isPassThrough$($this); -}, -oncia_UnaliasedReturnItem_semanticCheck = $this => { - return oncia_ReturnItem_semanticCheck$($this); -}, -oncia_UnaliasedReturnItem_expression = $this => { - return $this.$expression17; -}, -oncia_UnaliasedReturnItem_position = $this => { - return $this.$position94; -}, -oncia_UnaliasedReturnItem_alias = $this => { - return $this.$alias0; -}, -oncia_UnaliasedReturnItem_name = $this => { - return $this.$name46; -}, -oncia_UnaliasedReturnItem_productPrefix = $this => { - return $rt_s(3593); -}, -oncia_UnaliasedReturnItem_productArity = $this => { - return 2; -}, -oncia_UnaliasedReturnItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression17; - case 1: - return $this.$inputText1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_UnaliasedReturnItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnaliasedReturnItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnaliasedReturnItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnaliasedReturnItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UnaliasedReturnItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expression17; - var$3 = $x$1.$expression17; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$inputText1; - $x$1 = $x$1.$inputText1; - if (var$3 !== null) { - if (!jl_String_equals(var$3, $x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_UnaliasedReturnItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_UnaliasedReturnItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_UnaliasedReturnItem__init_0 = ($this, $expression, $inputText, $position) => { - $this.$expression17 = $expression; - $this.$inputText1 = $inputText; - $this.$position94 = $position; - if ($expression instanceof oncie_LogicalVariable) { - $inputText = $expression; - $expression = s_Some__init_(oncie_Variable_copyId($inputText)); - } else if (!($expression instanceof oncie_MapProjection)) - $expression = s_None$_MODULE$; - else { - $inputText = $expression; - $expression = s_Some__init_(oncie_Variable_copyId($inputText.$name30)); - } - $this.$alias0 = $expression; - $expression = s_Option_map($expression, new oncia_UnaliasedReturnItem$_init_$lambda$_31_0); - $inputText = new oncia_UnaliasedReturnItem$_init_$lambda$_31_1; - $inputText.$_038 = $this; - $this.$name46 = s_Option_getOrElse($expression, $inputText); -}, -oncia_UnaliasedReturnItem__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_UnaliasedReturnItem(); - oncia_UnaliasedReturnItem__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$ = $rt_classWithoutFields(), -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_MODULE$ = null, -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$__clinit_ = () => { - oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_MODULE$ = new oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$; -}, -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productArity = $this => { - return 0; -}, -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_hashCode = $this => { - return (-85286343); -}, -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_toString = $this => { - return $rt_s(3594); -}, -ju_IllegalFormatException = $rt_classWithoutFields(jl_IllegalArgumentException); +let ju_IllegalFormatException = $rt_classWithoutFields(jl_IllegalArgumentException); function ju_UnknownFormatConversionException() { ju_IllegalFormatException.call(this); this.$conversion1 = null; @@ -69634,8 +70420,8 @@ let ju_UnknownFormatConversionException__init_0 = ($this, $conversion) => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3595)), $conversion); - jl_Throwable__init_0($this, jl_AbstractStringBuilder_toString(var$2)); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3655)), $conversion); + jl_Throwable__init_($this, jl_AbstractStringBuilder_toString(var$2)); $this.$conversion1 = $conversion; }, ju_UnknownFormatConversionException__init_ = var_0 => { @@ -69645,28 +70431,28 @@ ju_UnknownFormatConversionException__init_ = var_0 => { }; function sc_StrictOptimizedLinearSeqOps$$anon$1() { sc_AbstractIterator.call(this); - this.$current5 = null; + this.$current4 = null; } let sc_StrictOptimizedLinearSeqOps$$anon$1_hasNext = $this => { - if (sci_List_isEmpty($this.$current5)) + if (sci_List_isEmpty($this.$current4)) return 0; return 1; }, sc_StrictOptimizedLinearSeqOps$$anon$1_next = $this => { let $r; - $r = $this.$current5.$head(); - $this.$current5 = $this.$current5.$tail(); + $r = $this.$current4.$head(); + $this.$current4 = $this.$current4.$tail(); return $r; }; function onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_0() { let a = this; jl_Object.call(a); - a.$_047 = null; + a.$_052 = null; a.$_1394 = null; } let onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_047; + var$2 = var$0.$_052; if (!(var$1 instanceof onciu_StepSequencer$NegatedCondition)) { var$2 = sr_BoxedUnit_UNIT; return s_Tuple3__init_(var$1, var$2, var$2); @@ -69674,18 +70460,18 @@ let onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_0_apply = (var$0, var$1 var$3 = new jl_IllegalArgumentException; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(672)), var$2), $rt_s(3596)), var$1), $rt_s(3597)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$4)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(672)), var$2), $rt_s(3656)), var$1), $rt_s(3657)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$4)); $rt_throw(var$3); }; function onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_1() { jl_Object.call(this); - this.$_0730 = null; + this.$_0711 = null; } let onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_1_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0730; + var$2 = var$0.$_0711; if (var$1 === null) $rt_throw(s_MatchError__init_(var$1)); var$1 = var$1.$_11; @@ -69693,19 +70479,8 @@ let onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_1_apply = (var$0, var$1 s_Predef$_$callClinit(); s_package$_$callClinit(); return s_Predef$ArrowAssoc$_$minus$greater$extension(var$3, var$1, su_Right$_apply(s_package$_Right(s_package$_MODULE$), var$2)); -}; -function scc_JavaCollectionWrappers$JSetWrapper() { - scm_AbstractSet.call(this); - this.$underlying23 = null; -} -let scc_JavaCollectionWrappers$JSetWrapper_knownSize = $this => { - if (!ju_HashSet_isEmpty($this.$underlying23)) - return (-1); - return 0; }, -scc_JavaCollectionWrappers$JSetWrapper_iterator = $this => { - return scc_AsScalaExtensions$IteratorHasAsScala_asScala(scc_AsScalaExtensions$IteratorHasAsScala__init_(sj_CollectionConverters$_MODULE$, ju_HashSet_iterator($this.$underlying23))); -}; +scc_JavaCollectionWrappers$JSetWrapper = $rt_classWithoutFields(scm_AbstractSet); function scc_JavaCollectionWrappers$SetWrapper() { ju_AbstractSet.call(this); this.$scala$collection$convert$JavaCollectionWrappers$SetWrapper$$underlying = null; @@ -69736,215 +70511,335 @@ scc_JavaCollectionWrappers$SetWrapper_size = $this => { scc_JavaCollectionWrappers$SetWrapper_iterator = $this => { let var$1; var$1 = new scc_JavaCollectionWrappers$SetWrapper$$anon$1; - var$1.$$outer72 = $this; - var$1.$ui0 = $this.$scala$collection$convert$JavaCollectionWrappers$SetWrapper$$underlying.$iterator0(); + var$1.$$outer64 = $this; + var$1.$ui = $this.$scala$collection$convert$JavaCollectionWrappers$SetWrapper$$underlying.$iterator0(); var$1.$prev0 = s_None$_MODULE$; return var$1; }; function scc_JavaCollectionWrappers$JListWrapper() { scm_AbstractBuffer.call(this); - this.$underlying22 = null; + this.$underlying21 = null; } let scc_JavaCollectionWrappers$JListWrapper_knownSize = $this => { - if (!$this.$underlying22.$isEmpty()) + if (!$this.$underlying21.$isEmpty()) return (-1); return 0; }, scc_JavaCollectionWrappers$JListWrapper_iterator = $this => { - return scc_AsScalaExtensions$IteratorHasAsScala_asScala(scc_AsScalaExtensions$IteratorHasAsScala__init_(sj_CollectionConverters$_MODULE$, $this.$underlying22.$iterator())); + return scc_AsScalaExtensions$IteratorHasAsScala_asScala(scc_AsScalaExtensions$IteratorHasAsScala__init_(sj_CollectionConverters$_MODULE$, $this.$underlying21.$iterator())); }, scc_JavaCollectionWrappers$JListWrapper_iterableFactory = $this => { return scm_ArrayBuffer$_MODULE$; }, -scc_JavaCollectionWrappers$IterableWrapperTrait = $rt_classWithoutFields(0); +scc_JavaCollectionWrappers$IterableWrapperTrait = $rt_classWithoutFields(0), +scc_JavaCollectionWrappers$IterableWrapperTrait_size$ = $$this => { + return ($$this.$underlying1()).$length(); +}, +scc_JavaCollectionWrappers$IterableWrapperTrait_iterator$ = $$this => { + let var$2; + var$2 = new scc_JavaCollectionWrappers$IteratorWrapper; + var$2.$underlying14 = ($$this.$underlying1()).$iterator0(); + return var$2; +}; function scc_JavaCollectionWrappers$SeqWrapper() { ju_AbstractList.call(this); - this.$underlying12 = null; + this.$underlying11 = null; } let scc_JavaCollectionWrappers$SeqWrapper_size = $this => { - return $this.$underlying12.$size(); + return scc_JavaCollectionWrappers$IterableWrapperTrait_size$($this); }, scc_JavaCollectionWrappers$SeqWrapper_isEmpty = $this => { - return $this.$underlying12.$isEmpty(); + return $this.$underlying11.$isEmpty(); }, scc_JavaCollectionWrappers$SeqWrapper_get = ($this, $i) => { - return $this.$underlying12.$apply1($i); + return $this.$underlying11.$apply1($i); }, scc_JavaCollectionWrappers$SeqWrapper_iterator = $this => { - let var$1; - var$1 = new scc_JavaCollectionWrappers$IteratorWrapper; - var$1.$underlying15 = $this.$underlying12.$iterator0(); - return var$1; + return scc_JavaCollectionWrappers$IterableWrapperTrait_iterator$($this); +}, +scc_JavaCollectionWrappers$SeqWrapper_underlying = $this => { + return $this.$underlying11; +}, +sci_SetOps$removedAll$lambda$_9_0 = $rt_classWithoutFields(), +sci_SetOps$removedAll$lambda$_9_0_apply = (var$0, var$1, var$2) => { + return var$1.$excl(var$2); }; -function sc_Iterator$$anon$9() { - let a = this; sc_AbstractIterator.call(a); - a.$$outer15 = null; - a.$f$2 = null; +function sc_SetOps$concat$lambda$_23_0() { + jl_Object.call(this); + this.$_0298 = null; } -let sc_Iterator$$anon$9_knownSize = $this => { - return $this.$$outer15.$knownSize(); +let sc_SetOps$concat$lambda$_23_0_apply = var$0 => { + return var$0.$_0298.$iterator0(); +}; +function sc_View$Concat() { + let a = this; sc_AbstractView.call(a); + a.$prefix = null; + a.$suffix = null; +} +let sc_View$Concat_iterator = $this => { + let var$1, $$plus$plus_xs; + var$1 = $this.$prefix.$iterator0(); + $$plus$plus_xs = new sc_View$Concat$iterator$lambda$_0_0; + $$plus$plus_xs.$_01045 = $this; + if (var$1 === null) + $rt_throw(null); + return var$1.$concat0($$plus$plus_xs); }, -sc_Iterator$$anon$9_hasNext = $this => { - return $this.$$outer15.$hasNext(); +sc_View$Concat_knownSize = $this => { + let $prefixSize, $suffixSize; + $prefixSize = $this.$prefix.$knownSize(); + if ($prefixSize < 0) + return (-1); + $suffixSize = $this.$suffix.$knownSize(); + if ($suffixSize < 0) + return (-1); + return $prefixSize + $suffixSize | 0; }, -sc_Iterator$$anon$9_next = $this => { - return $this.$f$2.$apply2($this.$$outer15.$next()); +sc_View$Concat_isEmpty = $this => { + if ($this.$prefix.$isEmpty() && $this.$suffix.$isEmpty()) + return 1; + return 0; }, -oncifp_RewriteProcedureCalls = $rt_classWithoutFields(0), -oncifp_RewriteProcedureCalls_org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection = ($this, $resolved) => { - let var$2, $newResolved, $projection, var$5; - var$2 = !s_Option_isEmpty($resolved.$signature.$outputSignature) ? 0 : $resolved.$yieldAll3; - $newResolved = oncifp_ResolvedCall_copy($resolved, $resolved.$signature, $resolved.$callArguments, $resolved.$callResults, 1, 1, var$2, $resolved.$optional3, $resolved.$position9); - s_Option$_$callClinit(); - $projection = s_Option_filter(s_Option$_apply(s_Option$_MODULE$, $newResolved.$callResults), new oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_0); - var$5 = new oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_1; - var$5.$_01101 = $resolved; - return s_Tuple2__init_($newResolved, s_Option_map($projection, var$5)); +sc_View$Concat__init_0 = ($this, $prefix, $suffix) => { + $this.$prefix = $prefix; + $this.$suffix = $suffix; }, -oncifp_RewriteProcedureCalls_$anonfun$resolveProcedure$1 = ($resolver$2, $name) => { - return $resolver$2.$procedureSignature($name); +sc_View$Concat__init_ = (var_0, var_1) => { + let var_2 = new sc_View$Concat(); + sc_View$Concat__init_0(var_2, var_0, var_1); + return var_2; }; -function oncifp_TryRewriteProcedureCalls() { - let a = this; jl_Object.call(a); - a.$resolver0 = null; - a.$rewriter3 = null; - a.$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations = null; +function sci_Set$Set3() { + let a = this; sci_AbstractSet.call(a); + a.$elem10 = null; + a.$elem20 = null; + a.$elem30 = null; } -let oncifp_TryRewriteProcedureCalls_rewriter = ($this, $resolver) => { - let var$2, var$3, var$4; - onciu_bottomUp$_$callClinit(); - var$2 = onciu_bottomUp$_MODULE$; - onciu_Rewriter$_$callClinit(); - var$3 = onciu_Rewriter$_MODULE$; - var$4 = new oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1; - var$4.$$outer58 = $this; - var$4.$resolver$1 = $resolver; - $resolver = onciu_bottomUp$_apply(var$2, onciu_Rewriter$_lift(var$3, var$4), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$); - var$3 = $this.$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations; - var$2 = new s_Function1$andThen$lambda$_5_0; - var$2.$_01083 = $resolver; - var$2.$_1364 = var$3; - return var$2; +let sci_Set$Set3_partition = ($this, $p) => { + return sc_StrictOptimizedIterableOps_partition$($this, $p); }, -oncifp_TryRewriteProcedureCalls_transform = ($this, $from, $context) => { - return oncifp_Phase_transform$($this, $from, $context); +sci_Set$Set3_map = ($this, $f) => { + return sc_StrictOptimizedIterableOps_map$($this, $f); }, -oncifp_TryRewriteProcedureCalls_name = $this => { - return $this.$productPrefix(); +sci_Set$Set3_flatMap = ($this, $f) => { + return sc_StrictOptimizedIterableOps_flatMap$($this, $f); }, -oncifp_TryRewriteProcedureCalls_invalidatedConditions = $this => { - return oncifp_Transformer_invalidatedConditions$($this); +sci_Set$Set3_collect = ($this, $pf) => { + return sc_StrictOptimizedIterableOps_collect$($this, $pf); }, -oncifp_TryRewriteProcedureCalls_checkConditions = ($this, $state, $conditions, $cancellationChecker) => { - return oncifp_Transformer_checkConditions$($this, $state, $conditions, $cancellationChecker); +sci_Set$Set3_flatten = ($this, $toIterableOnce) => { + return sc_StrictOptimizedIterableOps_flatten$($this, $toIterableOnce); }, -oncifp_TryRewriteProcedureCalls_phase = $this => { - return oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE; +sci_Set$Set3_filter = ($this, $pred) => { + return sc_StrictOptimizedIterableOps_filter$($this, $pred); }, -oncifp_TryRewriteProcedureCalls_postConditions = $this => { - s_Predef$_$callClinit(); - return (s_Predef$_Set(s_Predef$_MODULE$)).$from0(sci_Nil$_MODULE$); +sci_Set$Set3_filterNot = ($this, $pred) => { + return sc_StrictOptimizedIterableOps_filterNot$($this, $pred); }, -oncifp_TryRewriteProcedureCalls_productPrefix = $this => { - return $rt_s(3598); +sci_Set$Set3_size = $this => { + return 3; }, -oncifp_TryRewriteProcedureCalls_process = ($this, $from, $context) => { - let var$3, var$4; - var$3 = $this.$resolver0; - $context = new oncifp_InstrumentedProcedureSignatureResolver; - $context.$resolver = var$3; - $context.$hasAttemptedToResolve = 0; - var$3 = oncifp_InitialState_statement($from); - var$3 = (oncifp_TryRewriteProcedureCalls_rewriter($this, $context)).$apply2(var$3); - $from = oncifp_InitialState_withStatement($from, var$3); - var$4 = s_Some__init_(sci_List_map(var$3.$returnColumns(), new oncifp_RewriteProcedureCalls$process$lambda$_2_0)); - $from = oncifp_InitialState_copy($from, $from.$queryText0, $from.$plannerName, $from.$anonymousVariableNameGenerator, $from.$maybeProcedureSignatureVersion, $from.$maybeStatement, $from.$maybeSemantics, $from.$maybeExtractedParams, $from.$maybeSemanticTable, $from.$accumulatedConditions, var$4, $from.$maybeObfuscationMetadata); - $context = !$context.$hasAttemptedToResolve ? s_None$_MODULE$ : s_Some__init_(jl_Long_valueOf(Long_fromInt(-1))); - return oncifp_InitialState_copy($from, $from.$queryText0, $from.$plannerName, $from.$anonymousVariableNameGenerator, $context, $from.$maybeStatement, $from.$maybeSemantics, $from.$maybeExtractedParams, $from.$maybeSemanticTable, $from.$accumulatedConditions, $from.$maybeReturnColumns, $from.$maybeObfuscationMetadata); +sci_Set$Set3_isEmpty = $this => { + return 0; }, -oncifp_extractSensitiveLiterals$ = $rt_classWithoutFields(), -oncifp_extractSensitiveLiterals$_MODULE$ = null, -oncifp_extractSensitiveLiterals$__clinit_ = () => { - oncifp_extractSensitiveLiterals$_MODULE$ = new oncifp_extractSensitiveLiterals$; +sci_Set$Set3_knownSize = $this => { + return 3; }, -oncifp_extractSensitiveLiterals$_transform = ($this, $from, $context) => { - return oncifp_Phase_transform$($this, $from, $context); +sci_Set$Set3_contains = ($this, $elem) => { + if (!sr_BoxesRunTime_equals($elem, $this.$elem10) && !sr_BoxesRunTime_equals($elem, $this.$elem20) && !sr_BoxesRunTime_equals($elem, $this.$elem30)) + return 0; + return 1; }, -oncifp_extractSensitiveLiterals$_name = $this => { - return $this.$productPrefix(); +sci_Set$Set3_iterator = $this => { + let var$1; + var$1 = new sci_Set$Set3$$anon$2; + var$1.$$outer31 = $this; + sci_Set$SetNIterator__init_(var$1, 3); + return var$1; }, -oncifp_extractSensitiveLiterals$_checkConditions = ($this, $state, $conditions, $cancellationChecker) => { - return oncifp_Transformer_checkConditions$($this, $state, $conditions, $cancellationChecker); +sci_Set$Set3_foreach = ($this, $f) => { + $f.$apply2($this.$elem10); + $f.$apply2($this.$elem20); + $f.$apply2($this.$elem30); }, -oncifp_extractSensitiveLiterals$_phase = $this => { - return oncifp_CompilationPhaseTracer$CompilationPhase_AST_REWRITE; +sci_Set$Set3_exists = ($this, $p) => { + if (!sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem10)) && !sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem20)) && !sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem30))) + return 0; + return 1; }, -oncifp_extractSensitiveLiterals$_postConditions = $this => { - let var$1, var$2, var$3; - s_Predef$_$callClinit(); - var$1 = s_Predef$_Set(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(onciu_StepSequencer$Condition, 1); - var$3.data[0] = oncirc_package$SensitiveLiteralsExtracted$_MODULE$; - return var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +sci_Set$Set3_forall = ($this, $p) => { + if (sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem10)) && sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem20)) && sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem30))) + return 1; + return 0; }, -oncifp_extractSensitiveLiterals$_invalidatedConditions = $this => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; +sci_Set$Set3_find = ($this, $p) => { + if (sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem10))) + return s_Some__init_($this.$elem10); + if (sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem20))) + return s_Some__init_($this.$elem20); + if (!sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem30))) + return s_None$_MODULE$; + return s_Some__init_($this.$elem30); }, -oncifp_extractSensitiveLiterals$_productPrefix = $this => { - return $rt_s(3599); +sci_Set$Set3_head = $this => { + return $this.$elem10; }, -oncifp_extractSensitiveLiterals$_process = ($this, $from, $context) => { - onciu_bottomUp$_$callClinit(); - $context = onciu_bottomUp$_MODULE$; - onciu_Rewriter$_$callClinit(); - return oncifp_InitialState_withStatement($from, (onciu_bottomUp$_apply($context, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncifp_extractSensitiveLiterals$$anonfun$1), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2(oncifp_InitialState_statement($from))); +sci_Set$Set3_tail = $this => { + return sci_Set$Set2__init_($this.$elem20, $this.$elem30); +}, +sci_Set$Set3_filterImpl = ($this, $pred, $isFlipped) => { + let var$3, var$4, var$5; + var$3 = null; + var$4 = null; + var$5 = 0; + if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2($this.$elem10)) != $isFlipped) { + var$3 = $this.$elem10; + var$5 = 1; + } + if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2($this.$elem20)) != $isFlipped) { + if (var$5) + var$4 = $this.$elem20; + else + var$3 = $this.$elem20; + var$5 = var$5 + 1 | 0; + } + if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2($this.$elem30)) != $isFlipped) { + if (!var$5) + var$3 = $this.$elem30; + else if (var$5 == 1) + var$4 = $this.$elem30; + var$5 = var$5 + 1 | 0; + } + a: { + switch (var$5) { + case 0: + $this = sci_Set$EmptySet$_MODULE$; + break a; + case 1: + $this = sci_Set$Set1__init_(var$3); + break a; + case 2: + $this = sci_Set$Set2__init_(var$3, var$4); + break a; + case 3: + break; + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$5))); + } + } + return $this; +}, +sci_Set$Set3_excl = ($this, $elem) => { + return sr_BoxesRunTime_equals($elem, $this.$elem10) ? sci_Set$Set2__init_($this.$elem20, $this.$elem30) : sr_BoxesRunTime_equals($elem, $this.$elem20) ? sci_Set$Set2__init_($this.$elem10, $this.$elem30) : !sr_BoxesRunTime_equals($elem, $this.$elem30) ? $this : sci_Set$Set2__init_($this.$elem10, $this.$elem20); +}, +sci_Set$Set3_incl = ($this, $elem) => { + let var$2, var$3, var$4, var$5; + if (sci_Set$Set3_contains($this, $elem)) + var$2 = $this; + else { + var$2 = new sci_Set$Set4; + var$3 = $this.$elem10; + var$4 = $this.$elem20; + var$5 = $this.$elem30; + var$2.$elem1 = var$3; + var$2.$elem2 = var$4; + var$2.$elem3 = var$5; + var$2.$elem4 = $elem; + } + return var$2; +}, +sci_Set$Set3__init_0 = ($this, $elem1, $elem2, $elem3) => { + $this.$elem10 = $elem1; + $this.$elem20 = $elem2; + $this.$elem30 = $elem3; +}, +sci_Set$Set3__init_ = (var_0, var_1, var_2) => { + let var_3 = new sci_Set$Set3(); + sci_Set$Set3__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function sc_IterableOps$concat$lambda$_94_0() { + jl_Object.call(this); + this.$_077 = null; +} +let sc_IterableOps$concat$lambda$_94_0_apply = var$0 => { + return var$0.$_077.$iterator0(); +}; +function sc_Iterator$$anon$9() { + let a = this; sc_AbstractIterator.call(a); + a.$$outer14 = null; + a.$f$2 = null; +} +let sc_Iterator$$anon$9_knownSize = $this => { + return $this.$$outer14.$knownSize(); +}, +sc_Iterator$$anon$9_hasNext = $this => { + return $this.$$outer14.$hasNext(); +}, +sc_Iterator$$anon$9_next = $this => { + return $this.$f$2.$apply2($this.$$outer14.$next()); }; function scm_HashSet$addAll$lambda$_52_0() { jl_Object.call(this); - this.$_0843 = null; + this.$_0819 = null; } let scm_HashSet$addAll$lambda$_52_0_apply = (var$0, var$1, var$2) => { - scm_HashSet_$anonfun$addAll$1(var$0.$_0843, var$1, sr_BoxesRunTime_unboxToInt(var$2)); + scm_HashSet_$anonfun$addAll$1(var$0.$_0819, var$1, sr_BoxesRunTime_unboxToInt(var$2)); return sr_BoxedUnit_UNIT; -}, -scm_LinkedHashSet = $rt_classWithoutFields(scm_AbstractSet), -scm_HashSet$$anon$2 = $rt_classWithoutFields(scm_HashSet$HashSetIterator), -scm_HashSet$$anon$2_extract = ($this, $nd) => { - return $nd; }; -function scm_LinkedHashSet$Entry() { - let a = this; jl_Object.call(a); - a.$key8 = null; - a.$hash2 = 0; +function sci_HashSet$diff$lambda$_60_0() { + jl_Object.call(this); + this.$_0923 = null; } +let sci_HashSet$diff$lambda$_60_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$0.$_0923.$contains(var$1)); +}, +scm_Queue$ = $rt_classWithoutFields(), +scm_Queue$_MODULE$ = null, +scm_Queue$__clinit_ = () => { + scm_Queue$_MODULE$ = new scm_Queue$; +}, +scm_Queue$_empty = $this => { + let var$1; + var$1 = new scm_Queue; + scm_ArrayDeque__init_(var$1, scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, 16), 0, 0); + return var$1; +}, +scm_Queue$_newBuilder = $this => { + return scm_GrowableBuilder__init_0(scm_Queue$_empty($this)); +}, +scm_Queue$_from = ($this, $source) => { + let var$2; + var$2 = scm_Queue$_empty($this); + if (var$2 === null) + $rt_throw(null); + return scm_ArrayDeque_addAll(var$2, $source); +}; function onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_0() { jl_Object.call(this); - this.$_0360 = null; + this.$_0345 = null; } let onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0360; + var$2 = var$0.$_0345; if (!(var$1 instanceof onciu_StepSequencer$NegatedCondition)) return s_Tuple2__init_(var$1, sr_BoxedUnit_UNIT); var$3 = new jl_IllegalArgumentException; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(672)), var$2), $rt_s(3600)), var$1), $rt_s(3597)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$4)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(672)), var$2), $rt_s(3658)), var$1), $rt_s(3657)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$4)); $rt_throw(var$3); }; function onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_1() { jl_Object.call(this); - this.$_0899 = null; + this.$_0883 = null; } let onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_1_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0899; + var$2 = var$0.$_0883; if (var$1 === null) $rt_throw(s_MatchError__init_(var$1)); var$1 = var$1.$_1(); @@ -69959,19 +70854,13 @@ function onciu_StepSequencer$$anonfun$$nestedInanonfun$sort$2$1() { let onciu_StepSequencer$$anonfun$$nestedInanonfun$sort$2$1_applyOrElse = ($this, $x, $default) => { $x = $x; return !$this.$introducingSteps$2.$contains($x) ? $default.$apply2($x) : $this.$introducingSteps$2.$apply2($x); -}, -oncifp_CompilationPhaseTracer$CompilationPhaseEvent = $rt_classWithoutFields(0), -oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_0 = $rt_classWithoutFields(), -oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_0_close = var$0 => { - return; -}, -oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_1 = $rt_classWithoutFields(); +}; function sc_SeqOps$contains$lambda$_84_0() { jl_Object.call(this); - this.$_0758 = null; + this.$_0743 = null; } let sc_SeqOps$contains$lambda$_84_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$1, var$0.$_0758) ? 0 : 1); + return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$1, var$0.$_0743) ? 0 : 1); }; function ju_DuplicateFormatFlagsException() { ju_IllegalFormatException.call(this); @@ -69985,8 +70874,8 @@ let ju_IllegalFormatPrecisionException__init_0 = ($this, $precision) => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(3601)), $precision); - jl_Throwable__init_0($this, jl_AbstractStringBuilder_toString(var$2)); + jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(3659)), $precision); + jl_Throwable__init_($this, jl_AbstractStringBuilder_toString(var$2)); $this.$precision3 = $precision; }, ju_IllegalFormatPrecisionException__init_ = var_0 => { @@ -70007,10 +70896,10 @@ let ju_IllegalFormatConversionException__init_0 = ($this, $conversion, $argument let var$3, var$4; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - var$4 = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3602)), $argumentClass), $rt_s(3603)); + var$4 = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3660)), $argumentClass), $rt_s(3661)); jl_AbstractStringBuilder_append0(var$4, $conversion); - jl_StringBuilder_append(var$4, $rt_s(3604)); - jl_Throwable__init_0($this, jl_AbstractStringBuilder_toString(var$3)); + jl_StringBuilder_append(var$4, $rt_s(3662)); + jl_Throwable__init_($this, jl_AbstractStringBuilder_toString(var$3)); $this.$conversion = $conversion; $this.$argumentClass = $argumentClass; }, @@ -70080,7 +70969,7 @@ jt_DecimalFormatSymbols_clone = $this => { return var$1; } var$3 = new jl_AssertionError; - jl_Throwable__init_1(var$3, $rt_s(3605), $e); + jl_Throwable__init_1(var$3, $rt_s(3663), $e); $rt_throw(var$3); }, jt_Format = $rt_classWithoutFields(); @@ -70147,7 +71036,7 @@ jt_DecimalFormat__init_0 = ($this, $pattern, $value) => { var$3 = ju_Locale_getDefault(); if (var$3 === null) { $pattern = new jl_NullPointerException; - jl_Throwable__init_($pattern); + jl_Throwable__init_0($pattern); $rt_throw($pattern); } var$4 = var$3.$languageCode; @@ -70170,7 +71059,7 @@ jt_DecimalFormat__init_0 = ($this, $pattern, $value) => { var$5 = (var$4[$rt_ustr(var$5)].value !== null ? $rt_str(var$4[$rt_ustr(var$5)].value) : null); if (var$5 === null) { $pattern = new jl_NullPointerException; - jl_Throwable__init_($pattern); + jl_Throwable__init_0($pattern); $rt_throw($pattern); } if (ju_Currency_currencies === null) { @@ -70184,7 +71073,7 @@ jt_DecimalFormat__init_0 = ($this, $pattern, $value) => { var$8 = ju_Currency_currencies; var$4 = (var$7.code !== null ? $rt_str(var$7.code) : null); var$9 = new ju_Currency; - var$9.$resource4 = var$7; + var$9.$resource3 = var$7; ju_HashMap_put(var$8, var$4, var$9); var$6 = var$6 + 1 | 0; } @@ -70194,15 +71083,15 @@ jt_DecimalFormat__init_0 = ($this, $pattern, $value) => { $pattern = new jl_IllegalArgumentException; $value = new jl_StringBuilder; jl_AbstractStringBuilder__init_($value); - jl_StringBuilder_append(jl_StringBuilder_append($value, $rt_s(3606)), var$5); - jl_Throwable__init_0($pattern, jl_AbstractStringBuilder_toString($value)); + jl_StringBuilder_append(jl_StringBuilder_append($value, $rt_s(3664)), var$5); + jl_Throwable__init_($pattern, jl_AbstractStringBuilder_toString($value)); $rt_throw($pattern); } } $this.$currency = var$4; $this.$positivePrefix = $rt_createArray(jt_DecimalFormat$FormatField, 0); var$10 = $rt_createArray(jt_DecimalFormat$FormatField, 1); - var$10.data[0] = jt_DecimalFormat$TextField__init_($rt_s(3607)); + var$10.data[0] = jt_DecimalFormat$TextField__init_($rt_s(3665)); $this.$negativePrefix = var$10; $this.$positiveSuffix = $rt_createArray(jt_DecimalFormat$FormatField, 0); $this.$negativeSuffix = $rt_createArray(jt_DecimalFormat$FormatField, 0); @@ -70215,15 +71104,15 @@ jt_DecimalFormat__init_0 = ($this, $pattern, $value) => { $value.$exponentLength = 0; $value.$decimalSeparatorRequired = 0; $value.$multiplier0 = 1; - $value.$string0 = $pattern; + $value.$string = $pattern; $value.$index1 = 0; $value.$positivePrefix0 = jt_DecimalFormatParser_parseText($value, 0, 0); if ($value.$index1 == $pattern.$nativeString.length) { $value = new jl_IllegalArgumentException; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3608)), $pattern); - jl_Throwable__init_0($value, jl_AbstractStringBuilder_toString(var$4)); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3666)), $pattern); + jl_Throwable__init_($value, jl_AbstractStringBuilder_toString(var$4)); $rt_throw($value); } jt_DecimalFormatParser_parseNumber($value, 1); @@ -70239,8 +71128,8 @@ jt_DecimalFormat__init_0 = ($this, $pattern, $value) => { var$11 = $value.$index1; $value = new jl_StringBuilder; jl_AbstractStringBuilder__init_($value); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($value, $rt_s(3609)), var$11), $rt_s(3610)), $pattern); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString($value)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($value, $rt_s(3667)), var$11), $rt_s(3668)), $pattern); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString($value)); $rt_throw(var$4); } $value.$negativePrefix0 = jt_DecimalFormatParser_parseText($value, 0, 1); @@ -70795,7 +71684,7 @@ jt_DecimalFormat_applyRounding0 = ($this, $mantissa, $mantissaLength, $exponent, if (Long_eq(Long_rem($mantissa, $rounding), Long_ZERO)) break a; var$6 = new jl_ArithmeticException; - jl_Throwable__init_0(var$6, $rt_s(3611)); + jl_Throwable__init_(var$6, $rt_s(3669)); $rt_throw(var$6); case 6: var$7 = Long_rem($mantissa, $rounding); @@ -70861,7 +71750,7 @@ jt_DecimalFormat_applyRounding = ($this, $mantissa, $mantissaLength, $exponent) if (!jm_BigInteger_equals(jm_BigInteger_remainder($mantissa, $rounding), jm_BigInteger_ZERO)) break a; $mantissa = new jl_ArithmeticException; - jl_Throwable__init_0($mantissa, $rt_s(3611)); + jl_Throwable__init_($mantissa, $rt_s(3669)); $rt_throw($mantissa); case 6: if (jm_BigInteger_equals(jm_BigInteger_remainder($mantissa, $rounding), jm_BigInteger_divide($signedRounding, jm_BigInteger_valueOf(Long_fromInt(2))))) { @@ -71008,7 +71897,7 @@ jm_BigDecimal__init_1 = ($this, $unscaledVal, $scale) => { jm_BigDecimal_$callClinit(); if ($unscaledVal === null) { $unscaledVal = new jl_NullPointerException; - jl_Throwable__init_($unscaledVal); + jl_Throwable__init_0($unscaledVal); $rt_throw($unscaledVal); } $this.$scale = $scale; @@ -71154,13 +72043,13 @@ jm_BigDecimal_toIntScale = $longScale => { jm_BigDecimal_$callClinit(); if (Long_lt($longScale, Long_fromInt(-2147483648))) { var$2 = new jl_ArithmeticException; - jl_Throwable__init_0(var$2, $rt_s(3612)); + jl_Throwable__init_(var$2, $rt_s(3670)); $rt_throw(var$2); } if (Long_le($longScale, Long_fromInt(2147483647))) return Long_lo($longScale); var$2 = new jl_ArithmeticException; - jl_Throwable__init_0(var$2, $rt_s(3613)); + jl_Throwable__init_(var$2, $rt_s(3671)); $rt_throw(var$2); }, jm_BigDecimal_getUnscaledValue = $this => { @@ -71270,6 +72159,433 @@ jm_BigDecimal__clinit_ = () => { jm_Multiplication_$callClinit(); jm_BigDecimal_TEN_POW = jm_Multiplication_bigTenPows; jm_BigDecimal_FIVE_POW = jm_Multiplication_bigFivePows; +}, +scm_ArrayDequeOps = $rt_classWithoutFields(0); +function scm_ArrayDeque() { + let a = this; scm_AbstractBuffer.call(a); + a.$array0 = null; + a.$scala$collection$mutable$ArrayDeque$$start = 0; + a.$scala$collection$mutable$ArrayDeque$$end = 0; +} +let scm_ArrayDeque_copySliceToArray = ($this, $srcStart, $dest, $destStart, $maxItems) => { + let var$5, var$6; + var$5 = jlr_Array_getLength($dest) + 1 | 0; + if ($destStart >= 0 && $destStart < var$5) { + $maxItems = jl_Math_min($maxItems, jl_Math_min(scm_ArrayDeque_length($this) - $srcStart | 0, jlr_Array_getLength($dest) - $destStart | 0)); + if ($maxItems > 0) { + var$5 = scm_ArrayDeque_length($this); + if ($srcStart >= 0 && $srcStart < var$5) { + var$5 = scm_ArrayDeque_start_$plus($this, $srcStart); + $srcStart = jl_Math_min($maxItems, $this.$array0.data.length - var$5 | 0); + s_Array$_copy(s_Array$_MODULE$, $this.$array0, var$5, $dest, $destStart, $srcStart); + $maxItems = $maxItems - $srcStart | 0; + if ($maxItems > 0) + s_Array$_copy(s_Array$_MODULE$, $this.$array0, 0, $dest, $destStart + $srcStart | 0, $maxItems); + } else { + $dest = new jl_IndexOutOfBoundsException; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$6, 31); + var$6 = jl_StringBuilder_append0(var$6, $srcStart); + jl_AbstractStringBuilder_append(var$6, $rt_s(685)); + var$6 = jl_StringBuilder_append0(var$6, var$5 - 1 | 0); + jl_AbstractStringBuilder_append(var$6, $rt_s(42)); + jl_Throwable__init_($dest, jl_AbstractStringBuilder_toString(var$6)); + $rt_throw($dest); + } + } + return $dest; + } + var$6 = new jl_IndexOutOfBoundsException; + $dest = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0($dest, 31); + $dest = jl_StringBuilder_append0($dest, $destStart); + jl_AbstractStringBuilder_append($dest, $rt_s(685)); + $dest = jl_StringBuilder_append0($dest, var$5 - 1 | 0); + jl_AbstractStringBuilder_append($dest, $rt_s(42)); + jl_Throwable__init_(var$6, jl_AbstractStringBuilder_toString($dest)); + $rt_throw(var$6); +}, +scm_ArrayDeque_distinctBy = ($this, $f) => { + return sc_StrictOptimizedSeqOps_distinctBy$($this, $f); +}, +scm_ArrayDeque_prepended = ($this, $elem) => { + return sc_StrictOptimizedSeqOps_prepended$($this, $elem); +}, +scm_ArrayDeque_appended = ($this, $elem) => { + return sc_StrictOptimizedSeqOps_appended$($this, $elem); +}, +scm_ArrayDeque_appendedAll = ($this, $suffix) => { + return sc_StrictOptimizedSeqOps_appendedAll$($this, $suffix); +}, +scm_ArrayDeque_map = ($this, $f) => { + return sc_StrictOptimizedIterableOps_map$($this, $f); +}, +scm_ArrayDeque_flatMap = ($this, $f) => { + return sc_StrictOptimizedIterableOps_flatMap$($this, $f); +}, +scm_ArrayDeque_flatten = ($this, $toIterableOnce) => { + return sc_StrictOptimizedIterableOps_flatten$($this, $toIterableOnce); +}, +scm_ArrayDeque_filter = ($this, $pred) => { + return sc_StrictOptimizedIterableOps_filter$($this, $pred); +}, +scm_ArrayDeque_filterNot = ($this, $pred) => { + return sc_StrictOptimizedIterableOps_filterNot$($this, $pred); +}, +scm_ArrayDeque_filterImpl = ($this, $pred, $isFlipped) => { + return sc_StrictOptimizedIterableOps_filterImpl$($this, $pred, $isFlipped); +}, +scm_ArrayDeque_iterator = $this => { + return sc_IndexedSeqOps_iterator$($this); +}, +scm_ArrayDeque_reverseIterator = $this => { + return sc_IndexedSeqOps_reverseIterator$($this); +}, +scm_ArrayDeque_view = $this => { + return sc_IndexedSeqOps_view$($this); +}, +scm_ArrayDeque_reversed = $this => { + return sc_IndexedSeqOps_reversed$($this); +}, +scm_ArrayDeque_drop = ($this, $n) => { + return sc_IndexedSeqOps_drop$($this, $n); +}, +scm_ArrayDeque_head = $this => { + return sc_IndexedSeqOps_head$($this); +}, +scm_ArrayDeque_headOption = $this => { + return sc_IndexedSeqOps_headOption$($this); +}, +scm_ArrayDeque_lengthCompare = ($this, $len) => { + return sc_IndexedSeqOps_lengthCompare$($this, $len); +}, +scm_ArrayDeque_array = $this => { + return $this.$array0; +}, +scm_ArrayDeque_array_$eq = ($this, $x$1) => { + $this.$array0 = $x$1; +}, +scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$start = $this => { + return $this.$scala$collection$mutable$ArrayDeque$$start; +}, +scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$start_$eq = ($this, $x$1) => { + $this.$scala$collection$mutable$ArrayDeque$$start = $x$1; +}, +scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$end = $this => { + return $this.$scala$collection$mutable$ArrayDeque$$end; +}, +scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$end_$eq = ($this, $x$1) => { + $this.$scala$collection$mutable$ArrayDeque$$end = $x$1; +}, +scm_ArrayDeque_reset = ($this, $array, $start, $end) => { + let var$4, var$5, var$6, var$7, var$8; + var$4 = $array.data.length; + var$5 = var$4 - 1 | 0; + if (!(var$4 & var$5 ? 0 : 1)) { + var$6 = new jl_AssertionError; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$7, 18); + jl_AbstractStringBuilder_append(var$7, $rt_s(3672)); + jl_AssertionError__init_0(var$6, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$7, $rt_s(3673)))); + $rt_throw(var$6); + } + if ($start >= 0 && $start < var$4) { + if ($end >= 0 && $end < var$4) { + $this.$array0 = $array; + $this.$scala$collection$mutable$ArrayDeque$$start = $start; + $this.$scala$collection$mutable$ArrayDeque$$end = $end; + return; + } + var$6 = new jl_IndexOutOfBoundsException; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$7, 31); + var$7 = jl_StringBuilder_append0(var$7, $end); + jl_AbstractStringBuilder_append(var$7, $rt_s(685)); + var$7 = jl_StringBuilder_append0(var$7, var$5); + jl_AbstractStringBuilder_append(var$7, $rt_s(42)); + jl_Throwable__init_(var$6, jl_AbstractStringBuilder_toString(var$7)); + $rt_throw(var$6); + } + var$7 = new jl_IndexOutOfBoundsException; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$6, 31); + var$8 = jl_StringBuilder_append0(var$6, $start); + jl_AbstractStringBuilder_append(var$8, $rt_s(685)); + var$6 = jl_StringBuilder_append0(var$8, var$5); + jl_AbstractStringBuilder_append(var$6, $rt_s(42)); + jl_Throwable__init_(var$7, jl_AbstractStringBuilder_toString(var$6)); + $rt_throw(var$7); +}, +scm_ArrayDeque_knownSize = $this => { + return $this.$length(); +}, +scm_ArrayDeque_apply = ($this, $idx) => { + let $requireBounds_until, var$3, var$4; + $requireBounds_until = scm_ArrayDeque_length($this); + if ($idx >= 0 && $idx < $requireBounds_until) + return $this.$array0.data[scm_ArrayDeque_start_$plus($this, $idx)]; + var$3 = new jl_IndexOutOfBoundsException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$4, 31); + var$4 = jl_StringBuilder_append0(var$4, $idx); + jl_AbstractStringBuilder_append(var$4, $rt_s(685)); + var$4 = jl_StringBuilder_append0(var$4, $requireBounds_until - 1 | 0); + jl_AbstractStringBuilder_append(var$4, $rt_s(42)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw(var$3); +}, +scm_ArrayDeque_addOne = ($this, $elem) => { + scm_ArrayDeque_ensureSize($this, scm_ArrayDeque_length($this) + 1 | 0); + return scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$appendAssumingCapacity($this, $elem); +}, +scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$appendAssumingCapacity = ($this, $elem) => { + let var$2, var$3; + var$2 = $this.$array0.data; + var$3 = $this.$scala$collection$mutable$ArrayDeque$$end; + var$2[var$3] = $elem; + $this.$scala$collection$mutable$ArrayDeque$$end = (var$3 + 1 | 0) & (var$2.length - 1 | 0); + return $this; +}, +scm_ArrayDeque_prependAll = ($this, $elems) => { + let $it, $n, var$4, $_set_idx, $array2, $i; + $it = $elems.$iterator0(); + if ($it.$nonEmpty()) { + $n = scm_ArrayDeque_length($this); + var$4 = $elems.$knownSize(); + if (var$4 < 0) { + scm_IndexedSeq$_$callClinit(); + scm_ArrayDeque_prependAll($this, $it.$to0(sc_IterableFactory$ToFactory__init_(scm_IndexedSeq$_MODULE$))); + } else { + $_set_idx = var$4 + $n | 0; + if ($_set_idx < $this.$array0.data.length ? 0 : 1) { + $array2 = scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, $_set_idx); + $it.$copyToArray1($array2); + scm_ArrayDeque_copySliceToArray($this, 0, $array2, var$4, $n); + scm_ArrayDeque_reset($this, $array2, 0, $_set_idx); + } else { + $i = 0; + while ($i < var$4) { + $_set_idx = $i - var$4 | 0; + $this.$array0.data[scm_ArrayDeque_start_$plus($this, $_set_idx)] = $it.$next(); + $i = $i + 1 | 0; + } + $this.$scala$collection$mutable$ArrayDeque$$start = ($this.$scala$collection$mutable$ArrayDeque$$start - var$4 | 0) & ($this.$array0.data.length - 1 | 0); + } + } + } + return $this; +}, +scm_ArrayDeque_addAll = ($this, $elems) => { + let var$2, var$3; + var$2 = $elems.$knownSize(); + if (var$2 <= 0) { + $elems = $elems.$iterator0(); + var$3 = new scm_ArrayDeque$addAll$lambda$_98_0; + var$3.$_01119 = $this; + $elems.$foreach(var$3); + } else { + scm_ArrayDeque_ensureSize($this, var$2 + scm_ArrayDeque_length($this) | 0); + $elems = $elems.$iterator0(); + var$3 = new scm_ArrayDeque$addAll$lambda$_98_1; + var$3.$_067 = $this; + $elems.$foreach(var$3); + } + return $this; +}, +scm_ArrayDeque_removeHead = ($this, $resizeInternalRepr) => { + let var$2, var$3, var$4, $removeHeadAssumingNonEmpty_elem; + if (scm_ArrayDeque_isEmpty($this)) { + var$2 = new ju_NoSuchElementException; + jl_Throwable__init_(var$2, $rt_s(3674)); + $rt_throw(var$2); + } + var$3 = $this.$array0.data; + var$4 = $this.$scala$collection$mutable$ArrayDeque$$start; + $removeHeadAssumingNonEmpty_elem = var$3[var$4]; + var$3[var$4] = null; + $this.$scala$collection$mutable$ArrayDeque$$start = scm_ArrayDeque_start_$plus($this, 1); + if ($resizeInternalRepr) + scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$resize($this, scm_ArrayDeque_length($this)); + return $removeHeadAssumingNonEmpty_elem; +}, +scm_ArrayDeque_removeLast = ($this, $resizeInternalRepr) => { + let $removeLastAssumingNonEmpty_elem, var$3, var$4, $removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx; + if (scm_ArrayDeque_isEmpty($this)) { + $removeLastAssumingNonEmpty_elem = new ju_NoSuchElementException; + jl_Throwable__init_($removeLastAssumingNonEmpty_elem, $rt_s(3674)); + $rt_throw($removeLastAssumingNonEmpty_elem); + } + var$3 = $this.$scala$collection$mutable$ArrayDeque$$end - 1 | 0; + var$4 = $this.$array0.data; + $removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx = var$3 & (var$4.length - 1 | 0); + $this.$scala$collection$mutable$ArrayDeque$$end = $removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx; + $removeLastAssumingNonEmpty_elem = var$4[$removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx]; + var$4[$removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx] = null; + if ($resizeInternalRepr) + scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$resize($this, scm_ArrayDeque_length($this)); + return $removeLastAssumingNonEmpty_elem; +}, +scm_ArrayDeque_ensureSize = ($this, $hint) => { + if ($hint > scm_ArrayDeque_length($this) && ($hint < $this.$array0.data.length ? 0 : 1)) { + scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$resize($this, $hint); + return; + } +}, +scm_ArrayDeque_length = $this => { + let $scala$collection$mutable$ArrayDeque$$end_$minus_idx; + $scala$collection$mutable$ArrayDeque$$end_$minus_idx = $this.$scala$collection$mutable$ArrayDeque$$start; + return ($this.$scala$collection$mutable$ArrayDeque$$end - $scala$collection$mutable$ArrayDeque$$end_$minus_idx | 0) & ($this.$array0.data.length - 1 | 0); +}, +scm_ArrayDeque_isEmpty = $this => { + if ($this.$scala$collection$mutable$ArrayDeque$$start != $this.$scala$collection$mutable$ArrayDeque$$end) + return 0; + return 1; +}, +scm_ArrayDeque_iterableFactory = $this => { + return scm_ArrayDeque$_MODULE$; +}, +scm_ArrayDeque_copyToArray = ($this, $dest, $destStart, $len) => { + let $elemsToCopyToArray_srcLen, $elemsToCopyToArray_destLen, $copied; + $elemsToCopyToArray_srcLen = scm_ArrayDeque_length($this); + $elemsToCopyToArray_destLen = jlr_Array_getLength($dest); + $copied = jl_Math_max(jl_Math_min(jl_Math_min($len, $elemsToCopyToArray_srcLen), $elemsToCopyToArray_destLen - $destStart | 0), 0); + if ($copied > 0) + scm_ArrayDeque_copySliceToArray($this, 0, $dest, $destStart, $len); + return $copied; +}, +scm_ArrayDeque_toArray = ($this, $evidence$1) => { + return scm_ArrayDeque_copySliceToArray($this, 0, $evidence$1.$newArray(scm_ArrayDeque_length($this)), 0, scm_ArrayDeque_length($this)); +}, +scm_ArrayDeque_start_$plus = ($this, $idx) => { + return ($this.$scala$collection$mutable$ArrayDeque$$start + $idx | 0) & ($this.$array0.data.length - 1 | 0); +}, +scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$resize = ($this, $len) => { + let $n, var$3; + $n = $this.$array0.data.length; + var$3 = $len < $n ? 0 : 1; + if (!var$3 && !($n > 16 && ($n - $len | 0) > $len ? 1 : 0)) + return; + $n = scm_ArrayDeque_length($this); + scm_ArrayDeque_reset($this, scm_ArrayDeque_copySliceToArray($this, 0, scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, $len), 0, $n), 0, $n); +}, +scm_ArrayDeque_stringPrefix = $this => { + return $rt_s(3675); +}, +scm_ArrayDeque_iterableFactory0 = $this => { + return $this.$iterableFactory0(); +}, +scm_ArrayDeque_addAll0 = ($this, $xs) => { + return scm_ArrayDeque_addAll($this, $xs); +}, +scm_ArrayDeque_addOne0 = ($this, $elem) => { + return scm_ArrayDeque_addOne($this, $elem); +}, +scm_ArrayDeque_apply0 = ($this, $v1) => { + return scm_ArrayDeque_apply($this, sr_BoxesRunTime_unboxToInt($v1)); +}, +scm_ArrayDeque__init_ = ($this, $array, $start, $end) => { + $this.$array0 = $array; + $this.$scala$collection$mutable$ArrayDeque$$start = $start; + $this.$scala$collection$mutable$ArrayDeque$$end = $end; + scm_ArrayDeque_reset($this, $array, $start, $end); +}, +scm_ArrayDeque__init_2 = (var_0, var_1, var_2) => { + let var_3 = new scm_ArrayDeque(); + scm_ArrayDeque__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +scm_ArrayDeque__init_1 = ($this, $initialSize) => { + scm_ArrayDeque__init_($this, scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, $initialSize), 0, 0); +}; +let scm_ArrayDeque__init_0 = var_0 => { + let var_1 = new scm_ArrayDeque(); + scm_ArrayDeque__init_1(var_1, var_0); + return var_1; +}, +scm_Queue = $rt_classWithoutFields(scm_ArrayDeque), +scm_Queue_iterableFactory = $this => { + return scm_Queue$_MODULE$; +}, +scm_Queue_stringPrefix = $this => { + return $rt_s(3676); +}, +scm_Queue_dequeue = $this => { + return scm_ArrayDeque_removeHead($this, 0); +}, +scm_Queue_iterableFactory0 = $this => { + return scm_Queue$_MODULE$; +}; +function oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer52 = null; + a.$resolver$1 = null; +} +let oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4, var$5, var$6, var$7, $$je; + if ($x1 instanceof oncia_UnresolvedCall) { + $x1 = $x1; + $default = $this.$$outer52; + var$3 = $this.$resolver$1; + var$4 = new oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0; + var$4.$_01186 = $default; + var$4.$_1309 = var$3; + var$4.$_2102 = $x1; + a: { + try { + $default = su_Success__init_(oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0_apply(var$4)); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $default = $$je; + } else { + throw $$e; + } + } + if ($default !== null) { + var$3 = suc_NonFatal$_unapply(suc_NonFatal$_MODULE$, $default); + if (!s_Option_isEmpty(var$3)) { + var$3 = var$3.$get1(); + $default = new su_Failure; + $default.$exception0 = var$3; + break a; + } + } + $rt_throw($default); + } + var$3 = new oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_1; + var$3.$_0335 = $x1; + return $default.$getOrElse(var$3); + } + if ($x1 instanceof oncie_FunctionInvocation) { + var$3 = $x1; + if (oncie_FunctionInvocation_needsToBeResolved(var$3)) { + $x1 = $this.$resolver$1; + oncifp_ResolvedFunctionInvocation$_$callClinit(); + var$5 = var$3.$position7; + var$6 = new oncifp_QualifiedName; + var$7 = var$3.$functionName2; + oncifp_QualifiedName__init_0(var$6, var$7.$namespace3.$parts0, var$7.$name6); + var$4 = $x1.$functionSignature(var$6); + $x1 = new oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0; + $x1.$_044 = var$3; + $x1 = s_Option_map(var$4, $x1); + $default = new oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1; + $default.$_01130 = var$3; + $x1 = oncifp_ResolvedFunctionInvocation__init_(var$6, var$4, s_Option_getOrElse($x1, $default), var$5); + var$4 = $x1.$fcnSignature; + if (var$4 instanceof s_Some) { + var$7 = sci_ArraySeq_map(var$4.$value5.$inputSignature, new oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0); + $default = (onciu_ZippableUtil$Zippable_zipLeft(onciu_ZippableUtil$_Zippable(onciu_ZippableUtil$_MODULE$, $x1.$callArguments0), var$7, s_None$_MODULE$, sc_BuildFrom$_buildFromIterableOps(sc_BuildFrom$_MODULE$))).$map(new oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1); + $x1 = oncifp_ResolvedFunctionInvocation_copy($x1, $x1.$qualifiedName, $x1.$fcnSignature, $default, $x1.$position12); + } else if (!jl_Object_equals(s_None$_MODULE$, var$4)) + $rt_throw(s_MatchError__init_(var$4)); + if (!($x1 instanceof oncifp_ResolvedFunctionInvocation && $x1.$fcnSignature instanceof s_Some)) + $x1 = var$3; + return $x1; + } + } + return $default.$apply2($x1); }; function ju_FormatFlagsConversionMismatchException() { let a = this; ju_IllegalFormatException.call(a); @@ -71284,8 +72600,8 @@ let ju_IllegalFormatFlagsException__init_0 = ($this, $flags) => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3614)), $flags); - jl_Throwable__init_0($this, jl_AbstractStringBuilder_toString(var$2)); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3677)), $flags); + jl_Throwable__init_($this, jl_AbstractStringBuilder_toString(var$2)); $this.$flags3 = $flags; }, ju_IllegalFormatFlagsException__init_ = var_0 => { @@ -71301,8 +72617,8 @@ let ju_MissingFormatWidthException__init_0 = ($this, $formatSpecifier) => { let var$2; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3615)), $formatSpecifier); - jl_Throwable__init_0($this, jl_AbstractStringBuilder_toString(var$2)); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3678)), $formatSpecifier); + jl_Throwable__init_($this, jl_AbstractStringBuilder_toString(var$2)); $this.$formatSpecifier = $formatSpecifier; }, ju_MissingFormatWidthException__init_ = var_0 => { @@ -71314,66 +72630,61 @@ function jt_FieldPosition() { jl_Object.call(this); this.$myField = 0; } -function oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1() { - sr_AbstractPartialFunction.call(this); - this.$$outer30 = null; -} -let oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4, $newResolved, $resolved, $projection, $newResolved_0, $graph; - var$3 = 0; - var$4 = null; - if ($x1 instanceof oncia_SingleQuery) { - var$3 = 1; - var$4 = $x1; - $newResolved = var$4.$clauses0; - if ($newResolved !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $newResolved); - if (!$newResolved.$lengthCompare(1)) { - $resolved = $newResolved.$apply1(0); - if ($resolved instanceof oncifp_ResolvedCall) { - $x1 = $resolved; - $default = oncifp_RewriteProcedureCalls_org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection($this.$$outer30, $x1); - if ($default === null) - $rt_throw(s_MatchError__init_($default)); - $default = s_Tuple2__init_($default.$_10, $default.$_20); - $newResolved = $default.$_10; - $projection = $default.$_20; - s_Option$_$callClinit(); - return oncia_SingleQuery_copy(var$4, ((s_Option$_option2Iterable(s_Option$_MODULE$, $projection)).$toSeq()).$prepended($newResolved), var$4.$position12); - } - } - } +let scm_ArrayDeque$ = $rt_classWithoutFields(), +scm_ArrayDeque$_MODULE$ = null, +scm_ArrayDeque$__clinit_ = () => { + scm_ArrayDeque$_MODULE$ = new scm_ArrayDeque$; +}, +scm_ArrayDeque$_newBuilder = $this => { + let var$1; + var$1 = new scm_ArrayDeque$$anon$1; + scm_GrowableBuilder__init_(var$1, scm_ArrayDeque__init_0(16)); + return var$1; +}, +scm_ArrayDeque$_alloc = ($this, $len) => { + let var$2, var$3, $size, var$5; + if (!($len < 0 ? 0 : 1)) { + var$2 = new jl_IllegalArgumentException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$3, 20); + jl_AbstractStringBuilder_append(var$3, $rt_s(824)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $rt_s(3679)))); + $rt_throw(var$2); } - if (var$3) { - $newResolved_0 = var$4.$clauses0; - if ($newResolved_0 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $newResolved_0); - if (!$newResolved_0.$lengthCompare(2)) { - $graph = $newResolved_0.$apply1(0); - $resolved = $newResolved_0.$apply1(1); - if ($rt_isInstance($graph, oncia_GraphSelection)) { - $newResolved = $graph; - if ($resolved instanceof oncifp_ResolvedCall) { - $x1 = $resolved; - $default = oncifp_RewriteProcedureCalls_org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection($this.$$outer30, $x1); - if ($default === null) - $rt_throw(s_MatchError__init_($default)); - $default = s_Tuple2__init_($default.$_10, $default.$_20); - $newResolved_0 = $default.$_10; - $projection = $default.$_20; - return oncia_SingleQuery_copy(var$4, (sci_$colon$colon__init_($newResolved, sci_$colon$colon__init_($newResolved_0, sci_Nil$_MODULE$))).$concat($projection), var$4.$position12); - } - } - } + $size = ((-2147483648) >>> jl_Integer_numberOfLeadingZeros($len) | 0) << 1; + if ($size < 0 ? 0 : 1) + return $rt_createArray(jl_Object, jl_Math_max($size, 16)); + var$3 = new jl_IllegalArgumentException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$2, 20); + jl_AbstractStringBuilder_append(var$2, $rt_s(824)); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$5, 58); + jl_AbstractStringBuilder_append(var$5, $rt_s(3680)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$5, $len))))); + $rt_throw(var$3); +}, +scm_ArrayDeque$_from = ($this, $source) => { + let var$2, var$3, var$4, var$5; + var$2 = $source.$knownSize(); + if (var$2 < 0) + $source = scm_ArrayDeque_addAll(scm_ArrayDeque__init_0(16), $source); + else { + var$3 = scm_ArrayDeque$_alloc($this, var$2); + var$4 = !$rt_isInstance($source, sc_Iterable) ? ($source.$iterator0()).$copyToArray(var$3, 0, 2147483647) : $source.$copyToArray(var$3, 0, 2147483647); + if (var$4 != var$2) { + $source = new jl_IllegalStateException; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$5, 11); + jl_AbstractStringBuilder_append(var$5, $rt_s(801)); + var$5 = jl_StringBuilder_append0(var$5, var$4); + jl_AbstractStringBuilder_append(var$5, $rt_s(802)); + jl_Throwable__init_($source, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$5, var$2))); + $rt_throw($source); } + $source = scm_ArrayDeque__init_2(var$3, 0, var$2); } - return $default.$apply2($x1); + return $source; }, jt_DecimalFormat$FormatField = $rt_classWithoutFields(0); function jt_DecimalFormat$TextField() { @@ -71403,16 +72714,25 @@ jt_DecimalFormat$TextField_equals = ($this, $obj) => { jt_DecimalFormat$TextField_hashCode = $this => { return jl_String_hashCode($this.$text); }; +function sc_StringOps$$format$extension$lambda$_92_0() { + jl_Object.call(this); + this.$_01151 = null; +} +let sc_StringOps$$format$extension$lambda$_92_0_apply = (var$0, var$1) => { + if (var$1 instanceof sm_ScalaNumber) + var$1 = var$1.$underlying2(); + return var$1; +}; function ju_Currency() { jl_Object.call(this); - this.$resource4 = null; + this.$resource3 = null; } let ju_Currency_currencies = null, ju_Currency_getCurrencyCode = $this => { - return ($this.$resource4.code !== null ? $rt_str($this.$resource4.code) : null); + return ($this.$resource3.code !== null ? $rt_str($this.$resource3.code) : null); }, ju_Currency_toString = $this => { - return ($this.$resource4.code !== null ? $rt_str($this.$resource4.code) : null); + return ($this.$resource3.code !== null ? $rt_str($this.$resource3.code) : null); }, jm_Multiplication = $rt_classWithoutFields(), jm_Multiplication_tenPows = null, @@ -71569,7 +72889,7 @@ jm_Multiplication_powerOf10 = $exp => { return jm_BigInteger_shiftLeft(jm_BigInteger_pow(jm_Multiplication_bigFivePows.data[1], $intExp), $intExp); if (Long_gt(Long_add(Long_fromInt(1), Long_fromNumber(Long_toNumber($exp) / 2.4082399653118496)), Long_fromInt(1000000))) { $powerOfFive = new jl_ArithmeticException; - jl_Throwable__init_0($powerOfFive, $rt_s(3616)); + jl_Throwable__init_($powerOfFive, $rt_s(3681)); $rt_throw($powerOfFive); } if (Long_le($exp, Long_fromInt(2147483647))) @@ -71721,7 +73041,7 @@ ju_HashMap__init_2 = ($this, $capacity, $loadFactor) => { return; } var$3 = new jl_IllegalArgumentException; - jl_Throwable__init_(var$3); + jl_Throwable__init_0(var$3); $rt_throw(var$3); }, ju_HashMap__init_3 = (var_0, var_1) => { @@ -71769,7 +73089,7 @@ ju_HashMap_findNonNullKeyEntry = ($this, $key, $index, $keyHash) => { let $m; $m = $this.$elementData.data[$index]; while ($m !== null && !($m.$origKeyHash == $keyHash && ju_HashMap_areEqualKeys($key, $m.$key0))) { - $m = $m.$next7; + $m = $m.$next6; } return $m; }, @@ -71777,7 +73097,7 @@ ju_HashMap_findNullKeyEntry = $this => { let $m; $m = $this.$elementData.data[0]; while ($m !== null && $m.$key0 !== null) { - $m = $m.$next7; + $m = $m.$next6; } return $m; }, @@ -71826,7 +73146,7 @@ ju_HashMap_createHashedEntry = ($this, $key, $index, $hash) => { let $entry, var$5; $entry = ju_HashMap$HashEntry__init_0($key, $hash); var$5 = $this.$elementData.data; - $entry.$next7 = var$5[$index]; + $entry.$next6 = var$5[$index]; var$5[$index] = $entry; return $entry; }, @@ -71845,8 +73165,8 @@ ju_HashMap_rehash0 = ($this, $capacity) => { while ($entry !== null) { var$5 = $newData.data; $index = $entry.$origKeyHash & $length; - $next = $entry.$next7; - $entry.$next7 = var$5[$index]; + $next = $entry.$next6; + $entry.$next6 = var$5[$index]; var$5[$index] = $entry; $entry = $next; } @@ -71875,7 +73195,7 @@ ju_HashMap_removeByKey = ($this, $key) => { while ($entry !== null) { if ($entry.$key0 === null) break a; - $entry_0 = $entry.$next7; + $entry_0 = $entry.$next6; $last = $entry; $entry = $entry_0; } @@ -71885,7 +73205,7 @@ ju_HashMap_removeByKey = ($this, $key) => { $index = $hash & (var$7.length - 1 | 0); $entry = var$7[$index]; while ($entry !== null && !($entry.$origKeyHash == $hash && ju_HashMap_areEqualKeys($key, $entry.$key0))) { - $entry_0 = $entry.$next7; + $entry_0 = $entry.$next6; $last = $entry; $entry = $entry_0; } @@ -71894,9 +73214,9 @@ ju_HashMap_removeByKey = ($this, $key) => { if ($entry === null) return null; if ($last !== null) - $last.$next7 = $entry.$next7; + $last.$next6 = $entry.$next6; else - $this.$elementData.data[$index] = $entry.$next7; + $this.$elementData.data[$index] = $entry.$next6; $this.$modCount0 = $this.$modCount0 + 1 | 0; $this.$elementCount = $this.$elementCount - 1 | 0; return $entry; @@ -71936,8 +73256,8 @@ function jusi_MappingStreamImpl() { let jusi_MappingStreamImpl_wrap = ($this, $consumer) => { let var$2; var$2 = new jusi_MappingStreamImpl$wrap$lambda$_1_0; - var$2.$_046 = $this; - var$2.$_119 = $consumer; + var$2.$_051 = $this; + var$2.$_120 = $consumer; return var$2; }, jus_IntStream = $rt_classWithoutFields(0), @@ -71960,8 +73280,8 @@ let jusi_MappingToIntStreamImpl_next = ($this, $consumer) => { let var$2, var$3; var$2 = $this.$source1; var$3 = new jusi_MappingToIntStreamImpl$next$lambda$_1_0; - var$3.$_01140 = $this; - var$3.$_1382 = $consumer; + var$3.$_01117 = $this; + var$3.$_1380 = $consumer; return jusi_StreamOverSpliterator_next(var$2, var$3); }, scm_MutationTracker$ = $rt_classWithoutFields(), @@ -71974,7 +73294,7 @@ scm_MutationTracker$_checkMutations = ($this, $expectedCount, $actualCount, $mes if ($actualCount == $expectedCount) return; var$4 = new ju_ConcurrentModificationException; - jl_Throwable__init_0(var$4, $message); + jl_Throwable__init_(var$4, $message); $rt_throw(var$4); }; function sci_Set$SetNIterator() { @@ -72012,12 +73332,12 @@ sci_Set$SetNIterator__init_ = ($this, $n) => { }; function sci_Set$Set2$$anon$1() { sci_Set$SetNIterator.call(this); - this.$$outer59 = null; + this.$$outer53 = null; } let sci_Set$Set2$$anon$1_apply = ($this, $i) => { let var$2; a: { - var$2 = $this.$$outer59; + var$2 = $this.$$outer53; switch ($i) { case 0: break; @@ -72031,18 +73351,25 @@ let sci_Set$Set2$$anon$1_apply = ($this, $i) => { } return var$2; }; +function sc_View$Concat$iterator$lambda$_0_0() { + jl_Object.call(this); + this.$_01045 = null; +} +let sc_View$Concat$iterator$lambda$_0_0_apply = var$0 => { + return var$0.$_01045.$suffix.$iterator0(); +}; function scc_JavaCollectionWrappers$SetWrapper$$anon$1() { let a = this; jl_Object.call(a); - a.$ui0 = null; + a.$ui = null; a.$prev0 = null; - a.$$outer72 = null; + a.$$outer64 = null; } let scc_JavaCollectionWrappers$SetWrapper$$anon$1_hasNext = $this => { - return $this.$ui0.$hasNext(); + return $this.$ui.$hasNext(); }, scc_JavaCollectionWrappers$SetWrapper$$anon$1_next = $this => { let $e; - $e = $this.$ui0.$next(); + $e = $this.$ui.$next(); $this.$prev0 = s_Some__init_($e); return $e; }, @@ -72050,14 +73377,14 @@ ju_Spliterator = $rt_classWithoutFields(0); function jusi_SpliteratorOverCollection() { let a = this; jl_Object.call(a); a.$collection = null; - a.$iterator1 = null; + a.$iterator2 = null; } let jusi_SpliteratorOverCollection_tryAdvance = ($this, $action) => { - if ($this.$iterator1 === null) - $this.$iterator1 = $this.$collection.$iterator(); - if (!$this.$iterator1.$hasNext()) + if ($this.$iterator2 === null) + $this.$iterator2 = $this.$collection.$iterator(); + if (!$this.$iterator2.$hasNext()) return 0; - jusi_StreamOverSpliterator$AdapterAction_accept($action, $this.$iterator1.$next()); + jusi_StreamOverSpliterator$AdapterAction_accept($action, $this.$iterator2.$next()); return 1; }, jusi_SpliteratorOverCollection_estimateSize = $this => { @@ -72122,7 +73449,7 @@ sci_SetHashIterator_next = $this => { let var$1; if (!sci_ChampBaseIterator_hasNext($this)) { var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); } $this.$hash4 = $this.$currentValueNode.$getHash($this.$currentValueCursor); @@ -72146,7 +73473,7 @@ sc_AbstractSeqView_sorted0 = ($this, $ord) => { return sc_SeqView_sorted$($this, $ord); }, sc_AbstractSeqView_stringPrefix = $this => { - return $rt_s(3617); + return $rt_s(3682); }, sc_AbstractSeqView_scala$collection$SeqOps$$super$concat = ($this, $suffix) => { return sc_IterableOps_concat$($this, $suffix); @@ -72208,14 +73535,14 @@ sc_AbstractIndexedSeqView_lengthCompare = ($this, $len) => { }; function scm_ArrayBufferView() { let a = this; sc_AbstractIndexedSeqView.call(a); - a.$underlying28 = null; + a.$underlying27 = null; a.$mutationCount1 = null; } let scm_ArrayBufferView_apply = ($this, $n) => { - return scm_ArrayBuffer_apply($this.$underlying28, $n); + return scm_ArrayBuffer_apply($this.$underlying27, $n); }, scm_ArrayBufferView_length = $this => { - return $this.$underlying28.$size00; + return $this.$underlying27.$size00; }, scm_ArrayBufferView_iterator = $this => { return scm_CheckedIndexedSeqView$CheckedIterator__init_($this, $this.$mutationCount1); @@ -72233,17 +73560,17 @@ scm_ArrayBufferView_reverse = $this => { let var$1, var$2; var$1 = new scm_CheckedIndexedSeqView$Reverse; var$2 = $this.$mutationCount1; - var$1.$underlying43 = $this; + var$1.$underlying41 = $this; var$1.$mutationCount3 = var$2; sc_IndexedSeqView$Reverse__init_0(var$1, $this); return var$1; }; function scm_ArrayBuffer$view$lambda$_88_0() { jl_Object.call(this); - this.$_064 = null; + this.$_063 = null; } let scm_ArrayBuffer$view$lambda$_88_0_apply$mcI$sp = var$0 => { - return var$0.$_064.$mutationCount; + return var$0.$_063.$mutationCount; }, oncirr_ReturnItemsAreAliased$ = $rt_classWithoutFields(), oncirr_ReturnItemsAreAliased$_MODULE$ = null, @@ -72266,7 +73593,7 @@ oncirr_ReturnItemsAreAliased$_hashCode = $this => { return (-1126646165); }, oncirr_ReturnItemsAreAliased$_toString = $this => { - return $rt_s(3618); + return $rt_s(3683); }, oncirr_ExpressionsInOrderByAndWhereUseAliases$ = $rt_classWithoutFields(), oncirr_ExpressionsInOrderByAndWhereUseAliases$_MODULE$ = null, @@ -72289,7 +73616,109 @@ oncirr_ExpressionsInOrderByAndWhereUseAliases$_hashCode = $this => { return (-1748277588); }, oncirr_ExpressionsInOrderByAndWhereUseAliases$_toString = $this => { - return $rt_s(3619); + return $rt_s(3684); +}; +function sci_HashCollisionSetNode$filterImpl$lambda$_18_0() { + let a = this; jl_Object.call(a); + a.$_0618 = null; + a.$_1209 = 0; + a.$_269 = null; +} +let sci_HashCollisionSetNode$filterImpl$lambda$_18_0__init_ = (var$0, var$1, var$2, var$3) => { + var$0.$_0618 = var$1; + var$0.$_1209 = var$2; + var$0.$_269 = var$3; +}, +sci_HashCollisionSetNode$filterImpl$lambda$_18_0__init_0 = (var_0, var_1, var_2) => { + let var_3 = new sci_HashCollisionSetNode$filterImpl$lambda$_18_0(); + sci_HashCollisionSetNode$filterImpl$lambda$_18_0__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +sci_HashCollisionSetNode$filterImpl$lambda$_18_0_apply = (var$0, var$1) => { + return sci_Vector_$anonfun$filterImpl$1(var$0.$_0618, var$0.$_1209, var$0.$_269, var$1); +}; +function sci_HashCollisionSetNode$filterImpl$lambda$_18_1() { + let a = this; jl_Object.call(a); + a.$_0135 = null; + a.$_147 = 0; + a.$_224 = null; +} +let sci_HashCollisionSetNode$filterImpl$lambda$_18_1__init_0 = (var$0, var$1, var$2, var$3) => { + var$0.$_0135 = var$1; + var$0.$_147 = var$2; + var$0.$_224 = var$3; +}, +sci_HashCollisionSetNode$filterImpl$lambda$_18_1__init_ = (var_0, var_1, var_2) => { + let var_3 = new sci_HashCollisionSetNode$filterImpl$lambda$_18_1(); + sci_HashCollisionSetNode$filterImpl$lambda$_18_1__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +sci_HashCollisionSetNode$filterImpl$lambda$_18_1_apply = (var$0, var$1) => { + return sci_Vector_$anonfun$filterImpl$2(var$0.$_0135, var$0.$_147, var$0.$_224, var$1); +}; +function sci_HashCollisionSetNode$removed$lambda$_6_0() { + jl_Object.call(this); + this.$_0237 = null; +} +let sci_HashCollisionSetNode$removed$lambda$_6_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$1, var$0.$_0237) ? 0 : 1); +}; +function sci_HashCollisionSetNode$diff$lambda$_19_0() { + let a = this; jl_Object.call(a); + a.$_0681 = null; + a.$_1231 = null; + a.$_276 = 0; +} +let sci_HashCollisionSetNode$diff$lambda$_19_0__init_0 = (var$0, var$1, var$2, var$3) => { + var$0.$_0681 = var$1; + var$0.$_1231 = var$2; + var$0.$_276 = var$3; +}, +sci_HashCollisionSetNode$diff$lambda$_19_0__init_ = (var_0, var_1, var_2) => { + let var_3 = new sci_HashCollisionSetNode$diff$lambda$_19_0(); + sci_HashCollisionSetNode$diff$lambda$_19_0__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +sci_HashCollisionSetNode$diff$lambda$_19_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sci_HashCollisionSetNode_$anonfun$diff$2(var$0.$_0681, var$0.$_1231, var$0.$_276, var$1)); +}; +function sci_HashCollisionSetNode$diff$lambda$_19_1() { + let a = this; jl_Object.call(a); + a.$_02 = null; + a.$_16 = 0; + a.$_25 = null; +} +let sci_HashCollisionSetNode$diff$lambda$_19_1__init_0 = (var$0, var$1, var$2, var$3) => { + var$0.$_02 = var$1; + var$0.$_16 = var$2; + var$0.$_25 = var$3; +}, +sci_HashCollisionSetNode$diff$lambda$_19_1__init_ = (var_0, var_1, var_2) => { + let var_3 = new sci_HashCollisionSetNode$diff$lambda$_19_1(); + sci_HashCollisionSetNode$diff$lambda$_19_1__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +sci_HashCollisionSetNode$diff$lambda$_19_1_apply = (var$0, var$1) => { + return sci_Vector_$anonfun$filterImpl$1(var$0.$_02, var$0.$_16, var$0.$_25, var$1); +}; +function sci_HashCollisionSetNode$diff$lambda$_19_2() { + let a = this; jl_Object.call(a); + a.$_0558 = null; + a.$_1189 = 0; + a.$_261 = null; +} +let sci_HashCollisionSetNode$diff$lambda$_19_2__init_0 = (var$0, var$1, var$2, var$3) => { + var$0.$_0558 = var$1; + var$0.$_1189 = var$2; + var$0.$_261 = var$3; +}, +sci_HashCollisionSetNode$diff$lambda$_19_2__init_ = (var_0, var_1, var_2) => { + let var_3 = new sci_HashCollisionSetNode$diff$lambda$_19_2(); + sci_HashCollisionSetNode$diff$lambda$_19_2__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +sci_HashCollisionSetNode$diff$lambda$_19_2_apply = (var$0, var$1) => { + return sci_Vector_$anonfun$filterImpl$2(var$0.$_0558, var$0.$_1189, var$0.$_261, var$1); }; function jt_DecimalFormatParser() { let a = this; jl_Object.call(a); @@ -72304,7 +73733,7 @@ function jt_DecimalFormatParser() { a.$fracLength = 0; a.$exponentLength = 0; a.$decimalSeparatorRequired = 0; - a.$string0 = null; + a.$string = null; a.$index1 = 0; a.$multiplier0 = 0; } @@ -72346,10 +73775,10 @@ jt_DecimalFormatParser_parseText = ($this, $suffix, $end) => { a: { b: { c: while (true) { - if ($this.$index1 >= $this.$string0.$nativeString.length) + if ($this.$index1 >= $this.$string.$nativeString.length) break a; d: { - $c = jl_String_charAt($this.$string0, $this.$index1); + $c = jl_String_charAt($this.$string, $this.$index1); switch ($c) { case 35: case 48: @@ -72357,11 +73786,11 @@ jt_DecimalFormatParser_parseText = ($this, $suffix, $end) => { break a; $fields = new jl_IllegalArgumentException; $suffix = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3620)), $suffix), $rt_s(3610)), var$6); - jl_Throwable__init_0($fields, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3685)), $suffix), $rt_s(3668)), var$6); + jl_Throwable__init_($fields, jl_AbstractStringBuilder_toString(var$7)); $rt_throw($fields); case 37: if ($sb.$length1 > 0) { @@ -72375,22 +73804,22 @@ jt_DecimalFormatParser_parseText = ($this, $suffix, $end) => { case 39: $c = $this.$index1 + 1 | 0; $this.$index1 = $c; - $next = jl_String_indexOf0($this.$string0, 39, $c); + $next = jl_String_indexOf0($this.$string, 39, $c); if ($next < 0) { $fields = new jl_IllegalArgumentException; $suffix = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3621)), $suffix), $rt_s(3622)), var$6); - jl_Throwable__init_0($fields, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3686)), $suffix), $rt_s(3687)), var$6); + jl_Throwable__init_($fields, jl_AbstractStringBuilder_toString(var$7)); $rt_throw($fields); } $c = $this.$index1; if ($next == $c) jl_AbstractStringBuilder_append0($sb, 39); else - jl_AbstractStringBuilder_append($sb, jl_String_substring($this.$string0, $c, $next)); + jl_AbstractStringBuilder_append($sb, jl_String_substring($this.$string, $c, $next)); $this.$index1 = $next + 1 | 0; break d; case 45: @@ -72431,21 +73860,21 @@ jt_DecimalFormatParser_parseText = ($this, $suffix, $end) => { } $fields = new jl_IllegalArgumentException; $suffix = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3620)), $suffix), $rt_s(3610)), var$6); - jl_Throwable__init_0($fields, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3685)), $suffix), $rt_s(3668)), var$6); + jl_Throwable__init_($fields, jl_AbstractStringBuilder_toString(var$7)); $rt_throw($fields); } if ($end) { $fields = new jl_IllegalArgumentException; $suffix = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3620)), $suffix), $rt_s(3610)), var$6); - jl_Throwable__init_0($fields, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3685)), $suffix), $rt_s(3668)), var$6); + jl_Throwable__init_($fields, jl_AbstractStringBuilder_toString(var$7)); $rt_throw($fields); } } @@ -72456,36 +73885,36 @@ jt_DecimalFormatParser_parseText = ($this, $suffix, $end) => { jt_DecimalFormatParser_parseNumber = ($this, $apply) => { let var$2, var$3, var$4, var$5, var$6, var$7; jt_DecimalFormatParser_parseIntegerPart($this, $apply); - if ($this.$index1 < $this.$string0.$nativeString.length && jl_String_charAt($this.$string0, $this.$index1) == 46) { + if ($this.$index1 < $this.$string.$nativeString.length && jl_String_charAt($this.$string, $this.$index1) == 46) { $this.$index1 = $this.$index1 + 1 | 0; var$2 = 0; var$3 = 0; var$4 = 0; a: { b: while (true) { - if ($this.$index1 >= $this.$string0.$nativeString.length) + if ($this.$index1 >= $this.$string.$nativeString.length) break a; c: { - switch (jl_String_charAt($this.$string0, $this.$index1)) { + switch (jl_String_charAt($this.$string, $this.$index1)) { case 35: break; case 44: var$5 = new jl_IllegalArgumentException; $apply = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3623)), $apply), $rt_s(3610)), var$6); - jl_Throwable__init_0(var$5, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3688)), $apply), $rt_s(3668)), var$6); + jl_Throwable__init_(var$5, jl_AbstractStringBuilder_toString(var$7)); $rt_throw(var$5); case 46: var$5 = new jl_IllegalArgumentException; $apply = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3624)), $apply), $rt_s(3610)), var$6); - jl_Throwable__init_0(var$5, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3689)), $apply), $rt_s(3668)), var$6); + jl_Throwable__init_(var$5, jl_AbstractStringBuilder_toString(var$7)); $rt_throw(var$5); case 48: if (var$2) @@ -72503,11 +73932,11 @@ jt_DecimalFormatParser_parseNumber = ($this, $apply) => { } var$5 = new jl_IllegalArgumentException; $apply = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3625)), $apply), $rt_s(3610)), var$6); - jl_Throwable__init_0(var$5, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3690)), $apply), $rt_s(3668)), var$6); + jl_Throwable__init_(var$5, jl_AbstractStringBuilder_toString(var$7)); $rt_throw(var$5); } if ($apply) { @@ -72516,14 +73945,14 @@ jt_DecimalFormatParser_parseNumber = ($this, $apply) => { $this.$decimalSeparatorRequired = var$3 ? 0 : 1; } } - if ($this.$index1 < $this.$string0.$nativeString.length && jl_String_charAt($this.$string0, $this.$index1) == 69) { + if ($this.$index1 < $this.$string.$nativeString.length && jl_String_charAt($this.$string, $this.$index1) == 69) { $this.$index1 = $this.$index1 + 1 | 0; var$2 = 0; d: { e: while (true) { - if ($this.$index1 >= $this.$string0.$nativeString.length) + if ($this.$index1 >= $this.$string.$nativeString.length) break d; - switch (jl_String_charAt($this.$string0, $this.$index1)) { + switch (jl_String_charAt($this.$string, $this.$index1)) { case 35: case 44: case 46: @@ -72539,21 +73968,21 @@ jt_DecimalFormatParser_parseNumber = ($this, $apply) => { } var$5 = new jl_IllegalArgumentException; $apply = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3626)), $apply), $rt_s(3610)), var$6); - jl_Throwable__init_0(var$5, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3691)), $apply), $rt_s(3668)), var$6); + jl_Throwable__init_(var$5, jl_AbstractStringBuilder_toString(var$7)); $rt_throw(var$5); } if (!var$2) { var$5 = new jl_IllegalArgumentException; $apply = $this.$index1; - var$6 = $this.$string0; + var$6 = $this.$string; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3627)), $apply), $rt_s(3610)), var$6); - jl_Throwable__init_0(var$5, jl_AbstractStringBuilder_toString(var$7)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$7, $rt_s(3692)), $apply), $rt_s(3668)), var$6); + jl_Throwable__init_(var$5, jl_AbstractStringBuilder_toString(var$7)); $rt_throw(var$5); } if ($apply) @@ -72569,20 +73998,20 @@ jt_DecimalFormatParser_parseIntegerPart = ($this, $apply) => { var$6 = $lastGroup; a: { b: while (true) { - if ($this.$index1 >= $this.$string0.$nativeString.length) + if ($this.$index1 >= $this.$string.$nativeString.length) break a; c: { d: { - switch (jl_String_charAt($this.$string0, $this.$index1)) { + switch (jl_String_charAt($this.$string, $this.$index1)) { case 35: if (!$optionalDigits) { var$7 = new jl_IllegalArgumentException; $apply = $this.$index1; - var$8 = $this.$string0; + var$8 = $this.$string; var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(3628)), $apply), $rt_s(3610)), var$8); - jl_Throwable__init_0(var$7, jl_AbstractStringBuilder_toString(var$9)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(3693)), $apply), $rt_s(3668)), var$8); + jl_Throwable__init_(var$7, jl_AbstractStringBuilder_toString(var$9)); $rt_throw(var$7); } $length = $length + 1 | 0; @@ -72609,31 +74038,31 @@ jt_DecimalFormatParser_parseIntegerPart = ($this, $apply) => { $this.$index1 = $this.$index1 + 1 | 0; } var$7 = new jl_IllegalArgumentException; - var$8 = $this.$string0; + var$8 = $this.$string; var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(3629)), var$10), $rt_s(3610)), var$8); - jl_Throwable__init_0(var$7, jl_AbstractStringBuilder_toString(var$9)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(3694)), var$10), $rt_s(3668)), var$8); + jl_Throwable__init_(var$7, jl_AbstractStringBuilder_toString(var$9)); $rt_throw(var$7); } if (!$length) { var$7 = new jl_IllegalArgumentException; $apply = $this.$index1; - var$8 = $this.$string0; + var$8 = $this.$string; var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(3630)), $apply), $rt_s(3610)), var$8); - jl_Throwable__init_0(var$7, jl_AbstractStringBuilder_toString(var$9)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(3695)), $apply), $rt_s(3668)), var$8); + jl_Throwable__init_(var$7, jl_AbstractStringBuilder_toString(var$9)); $rt_throw(var$7); } $optionalDigits = $this.$index1; if (var$6 == $optionalDigits) { var$7 = new jl_IllegalArgumentException; - var$8 = $this.$string0; + var$8 = $this.$string; var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(3631)), $optionalDigits), $rt_s(3610)), var$8); - jl_Throwable__init_0(var$7, jl_AbstractStringBuilder_toString(var$9)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$9, $rt_s(3696)), $optionalDigits), $rt_s(3668)), var$8); + jl_Throwable__init_(var$7, jl_AbstractStringBuilder_toString(var$9)); $rt_throw(var$7); } if ($apply && var$6 > $lastGroup) @@ -72646,7 +74075,7 @@ jt_DecimalFormatParser_parseIntegerPart = ($this, $apply) => { function ju_HashMap$HashEntry() { let a = this; ju_MapEntry.call(a); a.$origKeyHash = 0; - a.$next7 = null; + a.$next6 = null; } let ju_HashMap$HashEntry__init_ = ($this, $theKey, $hash) => { ju_MapEntry__init_($this, $theKey, null); @@ -72659,35 +74088,35 @@ ju_HashMap$HashEntry__init_0 = (var_0, var_1) => { }; function oncifp_FieldSignature$toString$lambda$_19_0() { jl_Object.call(this); - this.$_0603 = null; + this.$_0593 = null; } let oncifp_FieldSignature$toString$lambda$_19_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0603.$name9; + var$2 = var$0.$_0593.$name9; var$1 = !(var$1 instanceof onvs_Value) ? var$1.$value26 : var$1.$prettyPrint(); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(3632)), var$1); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(3697)), var$1); return jl_AbstractStringBuilder_toString(var$3); }; function oncifp_FieldSignature$toString$lambda$_19_1() { jl_Object.call(this); - this.$_042 = null; + this.$_046 = null; } let oncifp_FieldSignature$toString$lambda$_19_1_apply = var$0 => { - return var$0.$_042.$name9; + return var$0.$_046.$name9; }; function oncifp_ProcedureSignature$toString$lambda$_31_0() { let a = this; jl_Object.call(a); - a.$_01145 = null; - a.$_1384 = null; + a.$_01127 = null; + a.$_1383 = null; } let oncifp_ProcedureSignature$toString$lambda$_31_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_01145; - var$3 = var$0.$_1384; + var$2 = var$0.$_01127; + var$3 = var$0.$_1383; var$4 = var$2.$name10; var$1 = sc_AbstractIterable_mkString(var$1, $rt_s(45)); var$2 = new jl_StringBuilder; @@ -72699,13 +74128,13 @@ let oncifp_ProcedureSignature$toString$lambda$_31_0_apply = (var$0, var$1) => { }; function oncifp_ProcedureSignature$toString$lambda$_31_1() { let a = this; jl_Object.call(a); - a.$_0352 = null; - a.$_1127 = null; + a.$_0339 = null; + a.$_1119 = null; } let oncifp_ProcedureSignature$toString$lambda$_31_1_apply = var$0 => { let var$1, var$2, var$3; - var$1 = var$0.$_0352; - var$2 = var$0.$_1127; + var$1 = var$0.$_0339; + var$2 = var$0.$_1119; var$3 = var$1.$name10; var$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$1); @@ -72713,6 +74142,108 @@ let oncifp_ProcedureSignature$toString$lambda$_31_1_apply = var$0 => { jl_AbstractStringBuilder_append0(var$3, 40); jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$3, var$2), 41); return jl_AbstractStringBuilder_toString(var$1); +}, +oncifp_extractSensitiveLiterals$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncifp_extractSensitiveLiterals$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + if (!$rt_isInstance($x1, oncie_Literal)) + return $default.$apply2($x1); + return $x1.$asSensitiveLiteral(); +}, +onciu_Rewritable$RewritableAny$ = $rt_classWithoutFields(), +onciu_Rewritable$RewritableAny$_MODULE$ = null, +onciu_Rewritable$RewritableAny$__clinit_ = () => { + onciu_Rewritable$RewritableAny$_MODULE$ = new onciu_Rewritable$RewritableAny$; +}, +onciu_Rewritable$ = $rt_classWithoutFields(), +onciu_Rewritable$_MODULE$ = null, +onciu_Rewritable$__clinit_ = () => { + onciu_Rewritable$_MODULE$ = new onciu_Rewritable$; +}, +onciu_Rewritable$_copyProduct = ($this, $product, $children) => { + return onciu_RewritableJavascript_copyConstructor(jl_Object_getClass($product), $product, $children); +}, +onciu_Rewritable$_IteratorEq = ($this, $iterator) => { + let var$2; + var$2 = new onciu_Rewritable$IteratorEq; + var$2.$iterator3 = $iterator; + return var$2; +}, +onciu_Rewritable$_dupAny = ($this, $that, $children) => { + let var$3, $builder, var$5, $$je; + a: { + try { + b: { + if (onciu_Rewritable$IteratorEq_eqElements(onciu_Rewritable$_IteratorEq($this, $children.$iterator0()), onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, onciu_Foldable$_TreeAny(onciu_Foldable$_MODULE$, $that)))) { + var$3 = $that; + break b; + } + if ($rt_isInstance($that, onciu_RewritableUniversal)) { + var$3 = $that.$dup($children); + break b; + } + if ($that instanceof sci_ArraySeq) { + $builder = sci_ArraySeq$_MODULE$; + sr_ClassTag$_$callClinit(); + var$3 = sci_ArraySeq$_from($builder, $children, sr_ClassTag$_AnyRef(sr_ClassTag$_MODULE$)); + break b; + } + if ($rt_isInstance($that, sc_IndexedSeq)) { + var$3 = $children.$toIndexedSeq(); + break b; + } + if ($that instanceof sci_List) { + var$3 = $children.$toList(); + break b; + } + if ($rt_isInstance($that, sc_Seq)) { + var$3 = $children; + break b; + } + if ($that instanceof sci_ListSet) { + var$3 = sc_AbstractIterable_to($children, sc_IterableFactory$_toFactory(sc_IterableFactory$_MODULE$, onciuci_ListSet$_MODULE$)); + break b; + } + if ($that instanceof onciuci_ListSet) { + var$3 = sc_AbstractIterable_to($children, sc_IterableFactory$_toFactory(sc_IterableFactory$_MODULE$, onciuci_ListSet$_MODULE$)); + break b; + } + if ($rt_isInstance($that, sc_Set)) { + var$3 = sc_AbstractIterable_toSet($children); + break b; + } + if ($rt_isInstance($that, sc_Map)) { + s_Predef$_$callClinit(); + $builder = sci_Map$_newBuilder(s_Predef$_Map(s_Predef$_MODULE$)); + sc_AbstractIterator_foreach(($children.$iterator0()).$grouped(2), onciu_Rewritable$$dupAny$lambda$_5_0__init_0($builder)); + var$3 = sci_MapBuilderImpl_result($builder); + break b; + } + if ($rt_isInstance($that, s_Product)) { + var$3 = $that; + sr_ClassTag$_$callClinit(); + var$3 = onciu_Rewritable$_copyProduct($this, var$3, sc_AbstractIterable_toArray($children, sr_ClassTag$_AnyRef(sr_ClassTag$_MODULE$))); + break b; + } + var$3 = $that; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_IllegalArgumentException) { + var$3 = $$je; + break a; + } else { + throw $$e; + } + } + return var$3; + } + $builder = new jl_IllegalStateException; + $children = sc_AbstractIterable_mkString($children, $rt_s(41)); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(3698)), $that), $rt_s(3699)), $children); + jl_Throwable__init_1($builder, jl_AbstractStringBuilder_toString(var$5), var$3); + $rt_throw($builder); }; function sci_Map$Map2() { let a = this; sci_AbstractMap.call(a); @@ -72758,7 +74289,7 @@ sci_Map$Map2_apply = ($this, $key) => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$3, 15); jl_AbstractStringBuilder_append(var$3, $rt_s(684)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); $rt_throw(var$2); }, sci_Map$Map2_contains = ($this, $key) => { @@ -72881,281 +74412,363 @@ sci_Map$Map2__init_ = (var_0, var_1, var_2, var_3) => { sci_Map$Map2__init_0(var_4, var_0, var_1, var_2, var_3); return var_4; }; -function sci_Set$Set3() { - let a = this; sci_AbstractSet.call(a); - a.$elem10 = null; - a.$elem20 = null; - a.$elem30 = null; +function oncirr_expandStar() { + let a = this; jl_Object.call(a); + a.$state3 = null; + a.$rewriter2 = null; + a.$instance2 = null; } -let sci_Set$Set3_partition = ($this, $p) => { - return sc_StrictOptimizedIterableOps_partition$($this, $p); -}, -sci_Set$Set3_map = ($this, $f) => { - return sc_StrictOptimizedIterableOps_map$($this, $f); -}, -sci_Set$Set3_flatMap = ($this, $f) => { - return sc_StrictOptimizedIterableOps_flatMap$($this, $f); -}, -sci_Set$Set3_collect = ($this, $pf) => { - return sc_StrictOptimizedIterableOps_collect$($this, $pf); -}, -sci_Set$Set3_flatten = ($this, $toIterableOnce) => { - return sc_StrictOptimizedIterableOps_flatten$($this, $toIterableOnce); -}, -sci_Set$Set3_filter = ($this, $pred) => { - return sc_StrictOptimizedIterableOps_filter$($this, $pred); +let oncirr_expandStar_apply = ($this, $that) => { + return onciu_topDown$TopDownRewriter_apply($this.$instance2, $that); }, -sci_Set$Set3_filterNot = ($this, $pred) => { - return sc_StrictOptimizedIterableOps_filterNot$($this, $pred); +oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems = ($this, $clause, $listedItems, $defaultOrderOnColumns, $excludedNames) => { + let $scope, $clausePos, $orderedSymbolNames, $newItems; + $scope = oncias_SemanticState_scope($this.$state3, $clause); + $clausePos = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_0; + $clausePos.$_01084 = $clause; + $scope = s_Option_getOrElse($scope, $clausePos); + $clausePos = $clause.$position(); + $excludedNames = ((oncias_Scope_symbolNames($scope)).$removedAll($excludedNames)).$removedAll($listedItems.$map(new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_1)); + $clause = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_2; + $clause.$_0112 = $excludedNames; + $clause = s_Option_map($defaultOrderOnColumns, $clause); + $defaultOrderOnColumns = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_3; + $defaultOrderOnColumns.$_0678 = $excludedNames; + $orderedSymbolNames = s_Option_getOrElse($clause, $defaultOrderOnColumns); + $clause = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4; + $clause.$_070 = $clausePos; + $newItems = ($orderedSymbolNames.$map($clause)).$concat($listedItems); + $clause = new oncia_ReturnItems; + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_($clause, 0, $newItems, s_None$_MODULE$, $clausePos); + return $clause; }, -sci_Set$Set3_size = $this => { - return 3; +oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$default$4 = $this => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; }, -sci_Set$Set3_isEmpty = $this => { - return 0; +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_0 = $rt_classWithoutFields(), +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_0_apply = (var$0, var$1) => { + return sc_AbstractIterable_map(var$1.$keySet0(), new oncifp_ObfuscationMetadataCollection$$$anonfun$process$1$lambda$_23_0); }, -sci_Set$Set3_knownSize = $this => { - return 3; +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_1 = $rt_classWithoutFields(), +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_1_apply = var$0 => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; }, -sci_Set$Set3_contains = ($this, $elem) => { - if (!sr_BoxesRunTime_equals($elem, $this.$elem10) && !sr_BoxesRunTime_equals($elem, $this.$elem20) && !sr_BoxesRunTime_equals($elem, $this.$elem30)) - return 0; - return 1; +oncie_Parameter = $rt_classWithoutFields(0), +oncie_Parameter_asCanonicalStringVal$ = $$this => { + let var$2; + $$this = $$this.$name(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 36); + jl_StringBuilder_append(var$2, $$this); + return jl_AbstractStringBuilder_toString(var$2); }, -sci_Set$Set3_iterator = $this => { - let var$1; - var$1 = new sci_Set$Set3$$anon$2; - var$1.$$outer35 = $this; - sci_Set$SetNIterator__init_(var$1, 3); - return var$1; +oncie_Parameter_equals$ = ($$this, $obj) => { + let var$3, var$4, var$5; + if (!$rt_isInstance($obj, oncie_Parameter)) + var$3 = 0; + else + a: { + b: { + $obj = $obj; + if ($obj.$canEqual($$this)) { + c: { + var$4 = $$this.$name(); + var$5 = $obj.$name(); + if (var$4 !== null) { + if (!jl_String_equals(var$4, var$5)) + break b; + else + break c; + } + if (var$5 !== null) + break b; + } + d: { + var$4 = $$this.$parameterType(); + var$5 = $obj.$parameterType(); + if (var$4 !== null) { + if (!var$4.$equals(var$5)) + break b; + else + break d; + } + if (var$5 !== null) + break b; + } + e: { + $$this = $$this.$sizeHint1(); + $obj = $obj.$sizeHint1(); + if ($$this !== null) { + if (!jl_Object_equals($$this, $obj)) + break b; + else + break e; + } + if ($obj !== null) + break b; + } + var$3 = 1; + break a; + } + } + var$3 = 0; + } + return var$3; }, -sci_Set$Set3_foreach = ($this, $f) => { - $f.$apply2($this.$elem10); - $f.$apply2($this.$elem20); - $f.$apply2($this.$elem30); +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_2 = $rt_classWithoutFields(), +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_2_apply = var$0 => { + s_Predef$_$callClinit(); + return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); +}; +function onciu_ObfuscationMetadata() { + let a = this; jl_Object.call(a); + a.$sensitiveLiteralOffsets = null; + a.$sensitiveParameterNames = null; +} +let onciu_ObfuscationMetadata_productPrefix = $this => { + return $rt_s(3700); }, -sci_Set$Set3_exists = ($this, $p) => { - if (!sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem10)) && !sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem20)) && !sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem30))) - return 0; - return 1; +onciu_ObfuscationMetadata_productArity = $this => { + return 2; }, -sci_Set$Set3_forall = ($this, $p) => { - if (sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem10)) && sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem20)) && sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem30))) - return 1; - return 0; +onciu_ObfuscationMetadata_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$sensitiveLiteralOffsets; + case 1: + return $this.$sensitiveParameterNames; + default: + } + return sr_Statics_ioobe($x$1); }, -sci_Set$Set3_find = ($this, $p) => { - if (sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem10))) - return s_Some__init_($this.$elem10); - if (sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem20))) - return s_Some__init_($this.$elem20); - if (!sr_BoxesRunTime_unboxToBoolean($p.$apply2($this.$elem30))) - return s_None$_MODULE$; - return s_Some__init_($this.$elem30); +onciu_ObfuscationMetadata_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -sci_Set$Set3_head = $this => { - return $this.$elem10; +onciu_ObfuscationMetadata_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -sci_Set$Set3_tail = $this => { - return sci_Set$Set2__init_($this.$elem20, $this.$elem30); +onciu_ObfuscationMetadata_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -sci_Set$Set3_filterImpl = ($this, $pred, $isFlipped) => { - let var$3, var$4, var$5; - var$3 = null; - var$4 = null; - var$5 = 0; - if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2($this.$elem10)) != $isFlipped) { - var$3 = $this.$elem10; - var$5 = 1; - } - if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2($this.$elem20)) != $isFlipped) { - if (var$5) - var$4 = $this.$elem20; - else - var$3 = $this.$elem20; - var$5 = var$5 + 1 | 0; - } - if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2($this.$elem30)) != $isFlipped) { - if (!var$5) - var$3 = $this.$elem30; - else if (var$5 == 1) - var$4 = $this.$elem30; - var$5 = var$5 + 1 | 0; - } +onciu_ObfuscationMetadata_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - switch (var$5) { - case 0: - $this = sci_Set$EmptySet$_MODULE$; - break a; - case 1: - $this = sci_Set$Set1__init_(var$3); - break a; - case 2: - $this = sci_Set$Set2__init_(var$3, var$4); - break a; - case 3: - break; - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$5))); + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_ObfuscationMetadata) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$sensitiveLiteralOffsets; + var$3 = $x$1.$sensitiveLiteralOffsets; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$sensitiveParameterNames; + $x$1 = $x$1.$sensitiveParameterNames; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; } + var$4 = 0; } - return $this; -}, -sci_Set$Set3_excl = ($this, $elem) => { - return sr_BoxesRunTime_equals($elem, $this.$elem10) ? sci_Set$Set2__init_($this.$elem20, $this.$elem30) : sr_BoxesRunTime_equals($elem, $this.$elem20) ? sci_Set$Set2__init_($this.$elem10, $this.$elem30) : !sr_BoxesRunTime_equals($elem, $this.$elem30) ? $this : sci_Set$Set2__init_($this.$elem10, $this.$elem20); -}, -sci_Set$Set3_incl = ($this, $elem) => { - let var$2, var$3, var$4, var$5; - if (sci_Set$Set3_contains($this, $elem)) - var$2 = $this; - else { - var$2 = new sci_Set$Set4; - var$3 = $this.$elem10; - var$4 = $this.$elem20; - var$5 = $this.$elem30; - var$2.$elem1 = var$3; - var$2.$elem2 = var$4; - var$2.$elem3 = var$5; - var$2.$elem4 = $elem; - } - return var$2; -}, -sci_Set$Set3__init_0 = ($this, $elem1, $elem2, $elem3) => { - $this.$elem10 = $elem1; - $this.$elem20 = $elem2; - $this.$elem30 = $elem3; -}, -sci_Set$Set3__init_ = (var_0, var_1, var_2) => { - let var_3 = new sci_Set$Set3(); - sci_Set$Set3__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function onciu_StepSequencer$DefaultPostCondition$completed$() { - jl_Object.call(this); - this.$$outer48 = null; -} -let onciu_StepSequencer$DefaultPostCondition$completed$_unary_$bang = $this => { - return onciu_StepSequencer$Condition_unary_$bang$($this); -}, -onciu_StepSequencer$DefaultPostCondition$completed$_toString = $this => { - let var$1, var$2; - var$1 = $this.$$outer48.$toString(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(3633)); - return jl_AbstractStringBuilder_toString(var$2); -}, -onciu_StepSequencer$DefaultPostCondition$completed$__init_0 = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer48 = $$outer; -}, -onciu_StepSequencer$DefaultPostCondition$completed$__init_ = var_0 => { - let var_1 = new onciu_StepSequencer$DefaultPostCondition$completed$(); - onciu_StepSequencer$DefaultPostCondition$completed$__init_0(var_1, var_0); - return var_1; + return var$4; }; -function sci_HashSet$removedAll$lambda$_62_0() { +function oncifp_PreparatoryRewriting$$process$lambda$_9_0() { jl_Object.call(this); - this.$_0777 = null; + this.$_0989 = null; } -let sci_HashSet$removedAll$lambda$_62_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0777; - if (!(var$1 instanceof jl_Integer)) - var$3 = 1; - else { - var$3 = sr_BoxesRunTime_unboxToInt(var$1); - var$3 = (var$3 == var$2.$end() && !var$2.$isInclusive() ? 0 : var$2.$step0() > 0 ? (var$3 >= var$2.$start() && var$3 <= var$2.$end() ? (var$2.$step0() != 1 && $rt_umod((var$3 - var$2.$start() | 0), (var$2.$step0())) ? 0 : 1) : 0) : var$3 >= var$2.$end() && var$3 <= var$2.$start() ? (var$2.$step0() != (-1) && $rt_umod((var$2.$start() - var$3 | 0), ( -var$2.$step0() | 0)) ? 0 : 1) : 0) ? 0 : 1; +let oncifp_PreparatoryRewriting$$process$lambda$_9_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0989; + oncifp_PreparatoryRewriting$_$callClinit(); + var$2 = var$1.$getRewriter(cnsa_EnrichedContext_cypherExceptionFactory(var$2)); + var$3 = onciu_CancellationChecker$NeverCancelled$_MODULE$; + if (onciu_AssertionRunner_isAssertionsEnabled()) { + var$4 = new oncir_ValidatingRewriter; + var$4.$inner4 = var$2; + var$4.$step2 = var$1; + var$4.$cancellationChecker = var$3; + var$2 = var$4; } - return jl_Boolean_valueOf(var$3); + return var$2; +}, +onciu_inSequence$ = $rt_classWithoutFields(), +onciu_inSequence$_MODULE$ = null, +onciu_inSequence$__clinit_ = () => { + onciu_inSequence$_MODULE$ = new onciu_inSequence$; }; function sc_IterableOps$groupBy$lambda$_72_0() { jl_Object.call(this); - this.$_0646 = null; + this.$_0636 = null; } let sc_IterableOps$groupBy$lambda$_72_0_apply = var$0 => { - return var$0.$_0646.$newSpecificBuilder(); -}, -sci_SetOps$removedAll$lambda$_9_0 = $rt_classWithoutFields(), -sci_SetOps$removedAll$lambda$_9_0_apply = (var$0, var$1, var$2) => { - return var$1.$excl(var$2); -}; -function sc_SetOps$concat$lambda$_23_0() { - jl_Object.call(this); - this.$_0308 = null; -} -let sc_SetOps$concat$lambda$_23_0_apply = var$0 => { - return var$0.$_0308.$iterator0(); + return var$0.$_0636.$newSpecificBuilder(); }; -function sc_View$Concat() { - let a = this; sc_AbstractView.call(a); - a.$prefix = null; - a.$suffix = null; +function sc_Iterator$ConcatIterator() { + let a = this; sc_AbstractIterator.call(a); + a.$current = null; + a.$tail4 = null; + a.$last0 = null; + a.$currentHasNextChecked = 0; } -let sc_View$Concat_iterator = $this => { - let var$1, $$plus$plus_xs; - var$1 = $this.$prefix.$iterator0(); - $$plus$plus_xs = new sc_View$Concat$iterator$lambda$_0_0; - $$plus$plus_xs.$_01059 = $this; +let sc_Iterator$ConcatIterator_hasNext = $this => { + let var$1, var$2, var$3, var$4; + if ($this.$currentHasNextChecked) + return 1; + var$1 = $this.$current; if (var$1 === null) - $rt_throw(null); - return var$1.$concat0($$plus$plus_xs); + return 0; + if (var$1.$hasNext()) { + $this.$currentHasNextChecked = 1; + return 1; + } + a: { + while (true) { + var$1 = $this.$tail4; + if (var$1 === null) { + $this.$current = null; + $this.$last0 = null; + var$2 = 0; + break a; + } + $this.$current = (var$1.$head5.$apply4()).$iterator0(); + var$1 = $this.$last0; + var$3 = $this.$tail4; + if (var$1 === var$3) + $this.$last0 = var$1.$tail5; + $this.$tail4 = var$3.$tail5; + while (true) { + var$1 = $this.$current; + if (!(var$1 instanceof sc_Iterator$ConcatIterator)) + break; + var$1 = var$1; + $this.$current = var$1.$current; + $this.$currentHasNextChecked = var$1.$currentHasNextChecked; + var$4 = var$1.$tail4; + if (var$4 === null) + continue; + if ($this.$last0 === null) + $this.$last0 = var$1.$last0; + var$1.$last0.$tail5 = $this.$tail4; + $this.$tail4 = var$4; + } + if ($this.$currentHasNextChecked) + break; + if (var$1 === null) + continue; + if (!var$1.$hasNext()) + continue; + else { + $this.$currentHasNextChecked = 1; + var$2 = 1; + break a; + } + } + var$2 = 1; + } + return var$2; }, -sc_View$Concat_knownSize = $this => { - let $prefixSize, $suffixSize; - $prefixSize = $this.$prefix.$knownSize(); - if ($prefixSize < 0) - return (-1); - $suffixSize = $this.$suffix.$knownSize(); - if ($suffixSize < 0) - return (-1); - return $prefixSize + $suffixSize | 0; +sc_Iterator$ConcatIterator_next = $this => { + if (!sc_Iterator$ConcatIterator_hasNext($this)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + $this.$currentHasNextChecked = 0; + return $this.$current.$next(); }, -sc_View$Concat_isEmpty = $this => { - if ($this.$prefix.$isEmpty() && $this.$suffix.$isEmpty()) - return 1; - return 0; +sc_Iterator$ConcatIterator_concat = ($this, $that) => { + let $c, var$3; + $c = new sc_Iterator$ConcatIteratorCell; + var$3 = null; + $c.$head5 = $that; + $c.$tail5 = var$3; + if ($this.$tail4 === null) { + $this.$tail4 = $c; + $this.$last0 = $c; + } else { + $this.$last0.$tail5 = $c; + $this.$last0 = $c; + } + if ($this.$current === null) + $this.$current = sc_Iterator$_scala$collection$Iterator$$_empty; + return $this; +}; +function sc_View$Collect() { + let a = this; sc_AbstractView.call(a); + a.$underlying36 = null; + a.$pf2 = null; +} +let sc_View$Collect_iterator = $this => { + return ($this.$underlying36.$iterator0()).$collect2($this.$pf2); }, -sc_View$Concat__init_0 = ($this, $prefix, $suffix) => { - $this.$prefix = $prefix; - $this.$suffix = $suffix; +sc_View$Collect__init_0 = ($this, $underlying, $pf) => { + $this.$underlying36 = $underlying; + $this.$pf2 = $pf; }, -sc_View$Concat__init_ = (var_0, var_1) => { - let var_2 = new sc_View$Concat(); - sc_View$Concat__init_0(var_2, var_0, var_1); +sc_View$Collect__init_ = (var_0, var_1) => { + let var_2 = new sc_View$Collect(); + sc_View$Collect__init_0(var_2, var_0, var_1); return var_2; }; -function sc_IterableOps$concat$lambda$_94_0() { +function sc_StrictOptimizedMapOps$collect$lambda$_7_0() { jl_Object.call(this); - this.$_084 = null; + this.$_0410 = null; } -let sc_IterableOps$concat$lambda$_94_0_apply = var$0 => { - return var$0.$_084.$iterator0(); +let sc_StrictOptimizedMapOps$collect$lambda$_7_0_apply = (var$0, var$1) => { + return var$0.$_0410; +}; +function sc_StrictOptimizedIterableOps$collect$lambda$_19_0() { + jl_Object.call(this); + this.$_0689 = null; +} +let sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply = (var$0, var$1) => { + return var$0.$_0689; }; function onciu_StepSequencer$MutableDirectedGraph$$$anonfun$copyOf$2$lambda$_4_0() { let a = this; jl_Object.call(a); - a.$_0574 = null; - a.$_1197 = null; + a.$_0557 = null; + a.$_1188 = null; } let onciu_StepSequencer$MutableDirectedGraph$$$anonfun$copyOf$2$lambda$_4_0_apply = (var$0, var$1) => { let var$2, var$3; - var$2 = var$0.$_0574; - var$3 = var$0.$_1197; + var$2 = var$0.$_0557; + var$3 = var$0.$_1188; onciu_StepSequencer$MutableDirectedGraph$_$callClinit(); onciu_StepSequencer$MutableDirectedGraph_connect(var$2, var$3, var$1); return sr_BoxedUnit_UNIT; }; function onciu_StepSequencer$MutableDirectedGraph$$anonfun$toString$2$lambda$_10_0() { jl_Object.call(this); - this.$_0286 = null; + this.$_0272 = null; } let onciu_StepSequencer$MutableDirectedGraph$$anonfun$toString$2$lambda$_10_0_apply = (var$0, var$1) => { let var$2, var$3; - var$2 = var$0.$_0286; + var$2 = var$0.$_0272; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(859)), var$2), $rt_s(3634)), var$1), $rt_s(860)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(866)), var$2), $rt_s(3701)), var$1), $rt_s(867)); return jl_AbstractStringBuilder_toString(var$3); }; function onciu_StepSequencer$NegatedCondition() { @@ -73175,7 +74788,7 @@ onciu_StepSequencer$NegatedCondition_unary_$bang = $this => { return $this.$inner2; }, onciu_StepSequencer$NegatedCondition_productPrefix = $this => { - return $rt_s(3635); + return $rt_s(3702); }, onciu_StepSequencer$NegatedCondition_productArity = $this => { return 1; @@ -73224,93 +74837,351 @@ onciu_StepSequencer$NegatedCondition_equals = ($this, $x$1) => { } return var$3; }; -function sc_View$Collect() { - let a = this; sc_AbstractView.call(a); - a.$underlying39 = null; - a.$pf2 = null; +function oncirr_expandStar$$anonfun$1() { + sr_AbstractPartialFunction.call(this); + this.$$outer6 = null; } -let sc_View$Collect_iterator = $this => { - return ($this.$underlying39.$iterator0()).$collect2($this.$pf2); +let oncirr_expandStar$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let $newReturnItems, var$4, $excludedNames, $x$10, $iq, $innerQuery, $x$8, $x$17; + if ($x1 instanceof oncia_With) { + $default = $x1; + $newReturnItems = $default.$returnItems3; + var$4 = $newReturnItems.$includeExisting0; + if (var$4) { + if (var$4) { + $x1 = $this.$$outer6; + $newReturnItems = oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems($x1, $default, $newReturnItems.$items0, $newReturnItems.$defaultOrderOnColumns, oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$default$4($x1)); + } + return oncia_With_copy($default, $default.$distinct2, $newReturnItems, $default.$orderBy4, $default.$skip5, $default.$limit5, $default.$where2, $default.$withType, $default.$position20); + } + } + if ($x1 instanceof oncia_Return) { + $default = $x1; + $newReturnItems = $default.$returnItems2; + $excludedNames = $default.$excludedNames; + var$4 = $newReturnItems.$includeExisting0; + if (var$4) { + if (var$4) + $newReturnItems = oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems($this.$$outer6, $default, $newReturnItems.$items0, $newReturnItems.$defaultOrderOnColumns, $excludedNames); + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + $x$10 = sci_Set$EmptySet$_MODULE$; + return oncia_Return_copy($default, $default.$distinct1, $newReturnItems, $default.$orderBy2, $default.$skip3, $default.$limit3, $x$10, $default.$addedInRewrite, $default.$inTopLevelBraces, $default.$position23); + } + } + if ($x1 instanceof oncia_Yield) { + $default = $x1; + $newReturnItems = $default.$returnItems4; + var$4 = $newReturnItems.$includeExisting0; + if (var$4) { + if (var$4) { + $x1 = $this.$$outer6; + $newReturnItems = oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems($x1, $default, $newReturnItems.$items0, $newReturnItems.$defaultOrderOnColumns, oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$default$4($x1)); + } + return oncia_Yield_copy($default, $newReturnItems, $default.$orderBy3, $default.$skip4, $default.$limit4, $default.$where3, $default.$position31); + } + } + if ($x1 instanceof oncia_ScopeClauseSubqueryCall) { + $default = $x1; + $iq = $default.$innerQuery0; + if (1 == $default.$isImportingAll) { + $innerQuery = $this.$$outer6.$apply2($iq); + $x1 = $this.$$outer6; + $newReturnItems = oncias_SemanticState_scope($x1.$state3, $default); + $iq = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0; + $iq.$_01181 = $default; + $newReturnItems = s_Option_getOrElse($newReturnItems, $iq); + oncias_SemanticState$ScopeLocation$_$callClinit(); + $iq = oncias_SemanticState$ScopeLocation$_MODULE$; + $excludedNames = $x1.$state3.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + $x1 = oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $default); + $x$8 = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_1; + $x$8.$_01157 = $default; + $x1 = oncias_Scope_symbolNames(((oncias_SemanticState$ScopeLocation$_parent$extension($iq, ($excludedNames.$getOrElse1($x1, $x$8)).$location)).$get1()).$location.$elem0); + $x$17 = $default.$position75; + $iq = ($innerQuery.$returnVariables()).$explicitVariables.$map(new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_2); + $excludedNames = s_Option_flatMap($default.$inTransactionsParameters0, new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_3); + $newReturnItems = (((oncias_Scope_symbolNames($newReturnItems)).$concat1($x1)).$removedAll($iq)).$removedAll($excludedNames); + $x1 = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4; + $x1.$_0718 = $x$17; + return oncia_ScopeClauseSubqueryCall_copy($default, $innerQuery, 0, ($newReturnItems.$map($x1)).$toSeq(), $default.$inTransactionsParameters0, $default.$optional2, $default.$position75); + } + } + return $x1; +}; +function onciu_Foldable$Folder() { + let a = this; jl_Object.call(a); + a.$foldedOver0 = null; + a.$cancellation = null; +} +let onciu_Foldable$Folder_treeCollect = ($this, $f) => { + let var$2, var$3; + s_package$_$callClinit(); + var$2 = sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)); + var$3 = new onciu_Foldable$Folder$$anonfun$treeCollect$1; + var$3.$f$1 = $f; + return onciu_Foldable$Folder_fold($this, var$2, var$3); }, -sc_View$Collect__init_0 = ($this, $underlying, $pf) => { - $this.$underlying39 = $underlying; - $this.$pf2 = $pf; +onciu_Foldable$Folder_fold = ($this, $init, $f) => { + let var$3, var$4, var$5, var$6, var$7; + var$3 = scm_Stack$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(jl_Object, 1); + var$5.data[0] = $this.$foldedOver0; + var$3 = var$3.$from0(sr_ScalaRunTime$_genericWrapArray(var$4, var$5)); + $f = $f.$lift0(); + while (!scm_ArrayDeque_isEmpty(var$3)) { + var$6 = scm_Stack_pop(var$3); + var$3 = scm_Stack_pushAll(var$3, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$6)); + var$4 = s_PartialFunction$Lifted_apply($f, var$6); + var$6 = new onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0; + var$6.$_060 = $init; + var$7 = new onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1; + var$7.$_0611 = $init; + $init = s_Option_fold(var$4, var$6, var$7); + } + return $init; }, -sc_View$Collect__init_ = (var_0, var_1) => { - let var_2 = new sc_View$Collect(); - sc_View$Collect__init_0(var_2, var_0, var_1); +onciu_Foldable$Folder_treeFold = ($this, $init, $f) => { + let var$3, var$4, var$5, var$6, var$7, var$8; + var$3 = scm_Stack$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(jl_Object, 1); + var$5.data[0] = $this.$foldedOver0; + var$3 = var$3.$from0(sr_ScalaRunTime$_genericWrapArray(var$4, var$5)); + var$4 = new onciu_Foldable$Folder$$anonfun$treeFold$1; + var$4.$$outer62 = $this; + var$6 = s_PartialFunction_lift$(sr_AbstractPartialFunction_andThen($f, var$4)); + $f = scm_Stack__init_(16); + a: { + b: while (true) { + if (scm_ArrayDeque_isEmpty(var$3)) { + if (scm_ArrayDeque_isEmpty($f)) + break; + var$3 = scm_Stack_pop($f); + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$7 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); + var$3 = var$7.$_10; + $init = var$7.$_20.$apply2($init); + continue; + } + var$7 = scm_Stack_pop(var$3); + var$4 = s_PartialFunction$Lifted_apply(var$6, var$7); + if (jl_Object_equals(s_None$_MODULE$, var$4)) { + var$3 = scm_Stack_pushAll(var$3, !0 ? onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$7) : onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$7)); + continue; + } + if (!(var$4 instanceof s_Some)) + $rt_throw(s_MatchError__init_(var$4)); + c: { + var$8 = var$4.$value5.$apply2($init); + if (var$8 !== null) { + $init = var$8.$_1(); + var$4 = var$8.$_2(); + if (var$4 instanceof s_Some) + break c; + } + if (var$8 === null) + break a; + $init = var$8.$_1(); + var$4 = var$8.$_2(); + if (!jl_Object_equals(s_None$_MODULE$, var$4)) + break a; + continue b; + } + scm_Stack_push($f, s_Tuple2__init_(var$3, var$4.$value5)); + var$7 = !0 ? onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$7) : onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$7); + var$3 = scm_Stack_pushAll(scm_Stack$_MODULE$.$from0(sci_Nil$_MODULE$), var$7); + } + return $init; + } + $rt_throw(s_MatchError__init_(var$8)); +}, +onciu_Foldable$Folder_treeExists = ($this, $f) => { + let var$2, var$3, var$4, var$5; + var$2 = onciu_Foldable$_MODULE$; + var$3 = scm_Stack$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(jl_Object, 1); + var$5.data[0] = $this.$foldedOver0; + return onciu_Foldable$_org$neo4j$cypher$internal$util$Foldable$$existsAcc(var$2, var$3.$from0(sr_ScalaRunTime$_genericWrapArray(var$4, var$5)), s_PartialFunction_lift$($f), $this.$cancellation); +}, +onciu_Foldable$Folder_treeFind = ($this, $f, $evidence$1) => { + let var$3, var$4, var$5, var$6; + var$3 = scm_Stack$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(jl_Object, 1); + var$5.data[0] = $this.$foldedOver0; + var$3 = var$3.$from0(sr_ScalaRunTime$_genericWrapArray(var$4, var$5)); + $f = s_PartialFunction_lift$($f); + a: { + while (!scm_ArrayDeque_isEmpty(var$3)) { + var$4 = scm_Stack_pop(var$3); + if (var$4 !== null) { + var$6 = $evidence$1.$unapply8(var$4); + if (!s_Option_isEmpty(var$6) && var$6.$get1() instanceof jl_Object && s_Option_contains(s_PartialFunction$Lifted_apply($f, var$4), jl_Boolean_valueOf(1))) { + $f = s_Some__init_(var$4); + break a; + } + } + var$3 = scm_Stack_pushAll(var$3, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$4)); + } + $f = s_None$_MODULE$; + } + return $f; +}, +onciu_Foldable$Folder_treeFindByClass = ($this, $evidence$2) => { + let var$2, var$3, var$4, var$5; + var$2 = scm_Stack$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(jl_Object, 1); + var$4.data[0] = $this.$foldedOver0; + var$2 = var$2.$from0(sr_ScalaRunTime$_genericWrapArray(var$3, var$4)); + a: { + while (!scm_ArrayDeque_isEmpty(var$2)) { + var$3 = scm_Stack_pop(var$2); + if (var$3 !== null) { + var$5 = $evidence$2.$unapply8(var$3); + if (!s_Option_isEmpty(var$5) && var$5.$get1() instanceof jl_Object) { + $evidence$2 = s_Some__init_(var$3); + break a; + } + } + var$2 = var$2.$addAll0(onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$3)); + } + $evidence$2 = s_None$_MODULE$; + } + return $evidence$2; +}, +onciu_Foldable$Folder_findAllByClass = ($this, $evidence$3) => { + let $remaining, $result, var$4, $that, var$6; + $remaining = scm_Stack$_MODULE$; + $result = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(jl_Object, 1); + var$4.data[0] = $this.$foldedOver0; + $remaining = $remaining.$from0(sr_ScalaRunTime$_genericWrapArray($result, var$4)); + $result = scm_ListBuffer$_MODULE$.$from0(sci_Nil$_MODULE$); + while (sc_IterableOnceOps_nonEmpty$($remaining)) { + $that = scm_Stack_pop($remaining); + if ($that !== null) { + var$6 = $evidence$3.$unapply8($that); + if (!s_Option_isEmpty(var$6) && var$6.$get1() instanceof jl_Object) + $result.$addOne($that); + } + scm_Stack_pushAll($remaining, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $that)); + } + return sc_IterableOnceOps_toSeq$($result); +}, +onciu_Foldable$Folder__init_0 = ($this, $foldedOver, $cancellation) => { + $this.$foldedOver0 = $foldedOver; + $this.$cancellation = $cancellation; +}, +onciu_Foldable$Folder__init_ = (var_0, var_1) => { + let var_2 = new onciu_Foldable$Folder(); + onciu_Foldable$Folder__init_0(var_2, var_0, var_1); return var_2; }; -function sc_StrictOptimizedMapOps$collect$lambda$_7_0() { - jl_Object.call(this); - this.$_0419 = null; -} -let sc_StrictOptimizedMapOps$collect$lambda$_7_0_apply = (var$0, var$1) => { - return var$0.$_0419; -}; -function sci_HashSet$diff$lambda$_60_0() { - jl_Object.call(this); - this.$_0934 = null; +function oncifp_ObfuscationMetadataCollection$$anonfun$1() { + sr_AbstractPartialFunction.call(this); + this.$extractedParameters$1 = null; } -let sci_HashSet$diff$lambda$_60_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$0.$_0934.$contains(var$1)); -}, -scm_Queue$ = $rt_classWithoutFields(), -scm_Queue$_MODULE$ = null, -scm_Queue$__clinit_ = () => { - scm_Queue$_MODULE$ = new scm_Queue$; +let oncifp_ObfuscationMetadataCollection$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + if ($rt_isInstance($x1, oncie_SensitiveLiteral)) { + $x1 = $x1; + $default = new oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0; + $default.$_0789 = $x1; + return $default; + } + if ($x1 instanceof oncie_AutoExtractedParameter && $rt_isInstance($x1, oncie_SensitiveAutoParameter)) { + $x1 = $x1; + $default = new oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1; + $default.$_0175 = $this; + $default.$_161 = $x1; + return $default; + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); }, -scm_Queue$_empty = $this => { - let var$1; - var$1 = new scm_Queue; - scm_ArrayDeque__init_(var$1, scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, 16), 0, 0); - return var$1; +onciu_Foldable$ = $rt_classWithoutFields(), +onciu_Foldable$_MODULE$ = null, +onciu_Foldable$__clinit_ = () => { + onciu_Foldable$_MODULE$ = new onciu_Foldable$; }, -scm_Queue$_newBuilder = $this => { - return scm_GrowableBuilder__init_0(scm_Queue$_empty($this)); +onciu_Foldable$_TreeAny = ($this, $that) => { + return $that; }, -scm_Queue$_from = ($this, $source) => { +onciu_Foldable$_FoldableAny = ($this, $foldedOver) => { let var$2; - var$2 = scm_Queue$_empty($this); - if (var$2 === null) - $rt_throw(null); - return scm_ArrayDeque_addAll(var$2, $source); + var$2 = new onciu_Foldable$FoldableAny; + var$2.$foldedOver1 = $foldedOver; + return var$2; +}, +onciu_Foldable$_org$neo4j$cypher$internal$util$Foldable$$existsAcc = ($this, $remaining, $f, $that) => { + let var$4; + while (!scm_ArrayDeque_isEmpty($remaining)) { + $that = scm_Stack_pop($remaining); + var$4 = $f.$apply2($that); + if (var$4 instanceof s_Some && 1 == sr_BoxesRunTime_unboxToBoolean(var$4.$value5)) + return 1; + $remaining = scm_Stack_pushAll($remaining, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $that)); + } + return 0; +}, +oncifp_ObfuscationMetadataCollection$$collectSensitiveLiteralOffsets$lambda$_11_0 = $rt_classWithoutFields(), +oncifp_ObfuscationMetadataCollection$$collectSensitiveLiteralOffsets$lambda$_11_0_apply = (var$0, var$1) => { + return jl_Integer_valueOf(var$1.$start6 + 0 | 0); +}, +oncie_SensitiveParameter = $rt_classWithoutFields(0), +oncifp_ObfuscationMetadataCollection$$collectSensitiveParameterNames$lambda$_12_0 = $rt_classWithoutFields(), +oncifp_ObfuscationMetadataCollection$$collectSensitiveParameterNames$lambda$_12_0_apply = (var$0, var$1) => { + return var$1.$name(); +}, +oncip_AstParserFactory$ = $rt_classWithoutFields(), +oncip_AstParserFactory$_MODULE$ = null, +oncip_AstParserFactory$__clinit_ = () => { + oncip_AstParserFactory$_MODULE$ = new oncip_AstParserFactory$; }; -function sc_StrictOptimizedIterableOps$collect$lambda$_19_0() { +function onciu_inSequence$InSequenceRewriter() { jl_Object.call(this); - this.$_0704 = null; + this.$rewriters = null; } -let sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply = (var$0, var$1) => { - return var$0.$_0704; +let onciu_inSequence$InSequenceRewriter_apply = ($this, $result) => { + let $it; + $it = $this.$rewriters.$iterator0(); + while ($it.$hasNext()) { + $result = ($it.$next()).$apply2($result); + } + return $result; }; function onciu_StepSequencer$$anonfun$orderSteps$20$lambda$_38_0() { let a = this; jl_Object.call(a); - a.$_01117 = null; - a.$_1374 = null; + a.$_01092 = null; + a.$_1371 = null; } let onciu_StepSequencer$$anonfun$orderSteps$20$lambda$_38_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_01117; - var$3 = var$0.$_1374; + var$2 = var$0.$_01092; + var$3 = var$0.$_1371; var$4 = new onciu_StepSequencer$$anonfun$orderSteps$21$lambda$_37_0; - var$4.$_0170 = var$2; - var$4.$_165 = var$3; + var$4.$_0166 = var$2; + var$4.$_158 = var$3; su_Either_foreach(var$1, var$4); return sr_BoxedUnit_UNIT; }; function onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_1() { jl_Object.call(this); - this.$_0832 = null; + this.$_0804 = null; } let onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_1_apply = var$0 => { let var$1, var$2, var$3; - var$1 = var$0.$_0832; + var$1 = var$0.$_0804; var$2 = new jl_IllegalArgumentException; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3636)), var$1), $rt_s(3597)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3703)), var$1), $rt_s(3657)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); $rt_throw(var$2); }, su_Either = $rt_classWithoutFields(), @@ -73323,16 +75194,12 @@ su_Either_left = $this => { su_Either_fold = ($this, $fa, $fb) => { if ($this instanceof su_Right) { $fa = $this.$value7; - oncias_package$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, $fa); } if (!($this instanceof su_Left)) $rt_throw(s_MatchError__init_($this)); $fb = $this.$value6; - $fa = $fa.$_0683; - oncias_package$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); + $fa = $fa.$_0677; return oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, $fa, $fb); }, su_Either_foreach = ($this, $f) => { @@ -73340,7 +75207,7 @@ su_Either_foreach = ($this, $f) => { if (!($this instanceof su_Right)) return; $b = $this.$value7; - onciu_StepSequencer$MutableDirectedGraph_connect($f.$_0170, $f.$_165, $b); + onciu_StepSequencer$MutableDirectedGraph_connect($f.$_0166, $f.$_158, $b); }, su_Either_toOption = $this => { if (!($this instanceof su_Right)) @@ -73355,7 +75222,7 @@ let su_Left_value = $this => { return $this.$value6; }, su_Left_productPrefix = $this => { - return $rt_s(3637); + return $rt_s(3704); }, su_Left_productArity = $this => { return 1; @@ -73401,26 +75268,26 @@ su_Left__init_ = var_0 => { }; function onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_0() { let a = this; jl_Object.call(a); - a.$_0910 = null; - a.$_1316 = null; - a.$_2105 = null; - a.$_327 = null; + a.$_0894 = null; + a.$_1305 = null; + a.$_299 = null; + a.$_331 = null; } let onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6; var$1 = var$1; - var$2 = var$0.$_0910; - var$3 = var$0.$_1316; - var$4 = var$0.$_2105; - var$5 = var$0.$_327; + var$2 = var$0.$_0894; + var$3 = var$0.$_1305; + var$4 = var$0.$_299; + var$5 = var$0.$_331; if (var$1 instanceof su_Left) { var$6 = var$1.$value6; if (jl_Object_equals(onciu_StepSequencer$ByInitialCondition$_MODULE$, var$6)) { var$1 = new jl_IllegalArgumentException; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$2), $rt_s(3638)), var$3), $rt_s(3639)), var$4), $rt_s(3640)); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$5)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$2), $rt_s(3705)), var$3), $rt_s(3706)), var$4), $rt_s(3707)); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$5)); $rt_throw(var$1); } } @@ -73447,11 +75314,11 @@ onciu_StepSequencer$ByInitialCondition$_hashCode = $this => { return 1505272014; }, onciu_StepSequencer$ByInitialCondition$_toString = $this => { - return $rt_s(3641); + return $rt_s(3708); }; function onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_2() { jl_Object.call(this); - this.$_0176 = null; + this.$_0174 = null; } let onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_2_apply = (var$0, var$1) => { let var$2, var$3; @@ -73459,7 +75326,7 @@ let onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_2_apply = (var$0, var$ b: { c: { var$1 = var$1; - var$2 = var$0.$_0176; + var$2 = var$0.$_0174; if (var$1 !== null) { if (!jl_Object_equals(var$1, var$2)) break b; @@ -73478,12 +75345,12 @@ let onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_2_apply = (var$0, var$ }; function onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_3() { let a = this; jl_Object.call(a); - a.$_0813 = null; - a.$_1278 = null; + a.$_0787 = null; + a.$_1263 = null; } let onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_3_apply = (var$0, var$1) => { var$1 = var$1; - onciu_StepSequencer$MutableDirectedGraph_connect(var$0.$_0813, var$0.$_1278, var$1); + onciu_StepSequencer$MutableDirectedGraph_connect(var$0.$_0787, var$0.$_1263, var$1); return sr_BoxedUnit_UNIT; }; function su_Right() { @@ -73494,7 +75361,7 @@ let su_Right_value = $this => { return $this.$value7; }, su_Right_productPrefix = $this => { - return $rt_s(3642); + return $rt_s(3709); }, su_Right_productArity = $this => { return 1; @@ -73537,444 +75404,63 @@ su_Right__init_ = var_0 => { let var_1 = new su_Right(); su_Right__init_0(var_1, var_0); return var_1; -}, -scm_ArrayDequeOps = $rt_classWithoutFields(0); -function scm_ArrayDeque() { - let a = this; scm_AbstractBuffer.call(a); - a.$array0 = null; - a.$scala$collection$mutable$ArrayDeque$$start = 0; - a.$scala$collection$mutable$ArrayDeque$$end = 0; +}; +function sc_Iterator$ConcatIteratorCell() { + let a = this; jl_Object.call(a); + a.$head5 = null; + a.$tail5 = null; } -let scm_ArrayDeque_copySliceToArray = ($this, $srcStart, $dest, $destStart, $maxItems) => { - let var$5, var$6; - var$5 = jlr_Array_getLength($dest) + 1 | 0; - if ($destStart >= 0 && $destStart < var$5) { - $maxItems = jl_Math_min($maxItems, jl_Math_min(scm_ArrayDeque_length($this) - $srcStart | 0, jlr_Array_getLength($dest) - $destStart | 0)); - if ($maxItems > 0) { - var$5 = scm_ArrayDeque_length($this); - if ($srcStart >= 0 && $srcStart < var$5) { - var$5 = scm_ArrayDeque_start_$plus($this, $srcStart); - $srcStart = jl_Math_min($maxItems, $this.$array0.data.length - var$5 | 0); - s_Array$_copy(s_Array$_MODULE$, $this.$array0, var$5, $dest, $destStart, $srcStart); - $maxItems = $maxItems - $srcStart | 0; - if ($maxItems > 0) - s_Array$_copy(s_Array$_MODULE$, $this.$array0, 0, $dest, $destStart + $srcStart | 0, $maxItems); - } else { - $dest = new jl_IndexOutOfBoundsException; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$6, 31); - var$6 = jl_StringBuilder_append0(var$6, $srcStart); - jl_AbstractStringBuilder_append(var$6, $rt_s(685)); - var$6 = jl_StringBuilder_append0(var$6, var$5 - 1 | 0); - jl_AbstractStringBuilder_append(var$6, $rt_s(42)); - jl_Throwable__init_0($dest, jl_AbstractStringBuilder_toString(var$6)); - $rt_throw($dest); - } - } - return $dest; - } - var$6 = new jl_IndexOutOfBoundsException; - $dest = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0($dest, 31); - $dest = jl_StringBuilder_append0($dest, $destStart); - jl_AbstractStringBuilder_append($dest, $rt_s(685)); - $dest = jl_StringBuilder_append0($dest, var$5 - 1 | 0); - jl_AbstractStringBuilder_append($dest, $rt_s(42)); - jl_Throwable__init_0(var$6, jl_AbstractStringBuilder_toString($dest)); - $rt_throw(var$6); -}, -scm_ArrayDeque_distinctBy = ($this, $f) => { - return sc_StrictOptimizedSeqOps_distinctBy$($this, $f); -}, -scm_ArrayDeque_prepended = ($this, $elem) => { - return sc_StrictOptimizedSeqOps_prepended$($this, $elem); +function onciu_Foldable$FoldableAny() { + jl_Object.call(this); + this.$foldedOver1 = null; +} +let onciu_Foldable$FoldableAny_foldedOver = $this => { + return $this.$foldedOver1; }, -scm_ArrayDeque_appended = ($this, $elem) => { - return sc_StrictOptimizedSeqOps_appended$($this, $elem); +oncip_AstParserFactory = $rt_classWithoutFields(0), +oncip_Cypher5AstParserFactory$ = $rt_classWithoutFields(), +oncip_Cypher5AstParserFactory$_MODULE$ = null, +oncip_Cypher5AstParserFactory$__clinit_ = () => { + oncip_Cypher5AstParserFactory$_MODULE$ = new oncip_Cypher5AstParserFactory$; }, -scm_ArrayDeque_appendedAll = ($this, $suffix) => { - return sc_StrictOptimizedSeqOps_appendedAll$($this, $suffix); +oncip_Cypher5AstParserFactory$_apply = ($this, $query, $cypherExceptionFactory, $notificationLogger) => { + let var$4; + var$4 = new oncipvaf_Cypher5AstParser; + var$4.$query7 = $query; + var$4.$exceptionFactory4 = $cypherExceptionFactory; + var$4.$notificationLogger1 = $notificationLogger; + return var$4; }, -scm_ArrayDeque_map = ($this, $f) => { - return sc_StrictOptimizedIterableOps_map$($this, $f); +oncip_Cypher25AstParserFactory$ = $rt_classWithoutFields(), +oncip_Cypher25AstParserFactory$_MODULE$ = null, +oncip_Cypher25AstParserFactory$__clinit_ = () => { + oncip_Cypher25AstParserFactory$_MODULE$ = new oncip_Cypher25AstParserFactory$; }, -scm_ArrayDeque_flatMap = ($this, $f) => { - return sc_StrictOptimizedIterableOps_flatMap$($this, $f); +oncip_Cypher25AstParserFactory$_apply = ($this, $query, $cypherExceptionFactory, $notificationLogger) => { + let var$4; + var$4 = new oncipvaf_Cypher25AstParser; + var$4.$query5 = $query; + var$4.$exceptionFactory5 = $cypherExceptionFactory; + var$4.$notificationLogger0 = $notificationLogger; + return var$4; }, -scm_ArrayDeque_flatten = ($this, $toIterableOnce) => { - return sc_StrictOptimizedIterableOps_flatten$($this, $toIterableOnce); +oncipa_AstParser = $rt_classWithoutFields(0), +oncipa_AstParser_singleStatement = $this => { + let $statements, var$2, var$3; + $statements = $this.$statements(); + if (oncia_Statements_size($statements) == 1) + return $statements.$statements0.$apply1(0); + var$2 = $rt_createArray(jl_Object, 1); + var$2.data[0] = jl_Integer_valueOf(oncia_Statements_size($statements)); + var$3 = jl_String_format($rt_s(3710), var$2); + onciu_InputPosition$_$callClinit(); + $rt_throw($this.$syntaxException(var$3, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$))); }, -scm_ArrayDeque_filter = ($this, $pred) => { - return sc_StrictOptimizedIterableOps_filter$($this, $pred); -}, -scm_ArrayDeque_filterNot = ($this, $pred) => { - return sc_StrictOptimizedIterableOps_filterNot$($this, $pred); -}, -scm_ArrayDeque_filterImpl = ($this, $pred, $isFlipped) => { - return sc_StrictOptimizedIterableOps_filterImpl$($this, $pred, $isFlipped); -}, -scm_ArrayDeque_iterator = $this => { - return sc_IndexedSeqOps_iterator$($this); -}, -scm_ArrayDeque_reverseIterator = $this => { - return sc_IndexedSeqOps_reverseIterator$($this); -}, -scm_ArrayDeque_view = $this => { - return sc_IndexedSeqOps_view$($this); -}, -scm_ArrayDeque_reversed = $this => { - return sc_IndexedSeqOps_reversed$($this); -}, -scm_ArrayDeque_drop = ($this, $n) => { - return sc_IndexedSeqOps_drop$($this, $n); -}, -scm_ArrayDeque_head = $this => { - return sc_IndexedSeqOps_head$($this); -}, -scm_ArrayDeque_headOption = $this => { - return sc_IndexedSeqOps_headOption$($this); -}, -scm_ArrayDeque_lengthCompare = ($this, $len) => { - return sc_IndexedSeqOps_lengthCompare$($this, $len); -}, -scm_ArrayDeque_array = $this => { - return $this.$array0; -}, -scm_ArrayDeque_array_$eq = ($this, $x$1) => { - $this.$array0 = $x$1; -}, -scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$start = $this => { - return $this.$scala$collection$mutable$ArrayDeque$$start; -}, -scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$start_$eq = ($this, $x$1) => { - $this.$scala$collection$mutable$ArrayDeque$$start = $x$1; -}, -scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$end = $this => { - return $this.$scala$collection$mutable$ArrayDeque$$end; -}, -scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$end_$eq = ($this, $x$1) => { - $this.$scala$collection$mutable$ArrayDeque$$end = $x$1; -}, -scm_ArrayDeque_reset = ($this, $array, $start, $end) => { - let var$4, var$5, var$6, var$7, var$8; - var$4 = $array.data.length; - var$5 = var$4 - 1 | 0; - if (!(var$4 & var$5 ? 0 : 1)) { - var$6 = new jl_AssertionError; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$7, 18); - jl_AbstractStringBuilder_append(var$7, $rt_s(3643)); - jl_AssertionError__init_0(var$6, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$7, $rt_s(3644)))); - $rt_throw(var$6); - } - if ($start >= 0 && $start < var$4) { - if ($end >= 0 && $end < var$4) { - $this.$array0 = $array; - $this.$scala$collection$mutable$ArrayDeque$$start = $start; - $this.$scala$collection$mutable$ArrayDeque$$end = $end; - return; - } - var$6 = new jl_IndexOutOfBoundsException; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$7, 31); - var$7 = jl_StringBuilder_append0(var$7, $end); - jl_AbstractStringBuilder_append(var$7, $rt_s(685)); - var$7 = jl_StringBuilder_append0(var$7, var$5); - jl_AbstractStringBuilder_append(var$7, $rt_s(42)); - jl_Throwable__init_0(var$6, jl_AbstractStringBuilder_toString(var$7)); - $rt_throw(var$6); - } - var$7 = new jl_IndexOutOfBoundsException; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$6, 31); - var$8 = jl_StringBuilder_append0(var$6, $start); - jl_AbstractStringBuilder_append(var$8, $rt_s(685)); - var$6 = jl_StringBuilder_append0(var$8, var$5); - jl_AbstractStringBuilder_append(var$6, $rt_s(42)); - jl_Throwable__init_0(var$7, jl_AbstractStringBuilder_toString(var$6)); - $rt_throw(var$7); -}, -scm_ArrayDeque_knownSize = $this => { - return $this.$length(); -}, -scm_ArrayDeque_apply = ($this, $idx) => { - let $requireBounds_until, var$3, var$4; - $requireBounds_until = scm_ArrayDeque_length($this); - if ($idx >= 0 && $idx < $requireBounds_until) - return $this.$array0.data[scm_ArrayDeque_start_$plus($this, $idx)]; - var$3 = new jl_IndexOutOfBoundsException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$4, 31); - var$4 = jl_StringBuilder_append0(var$4, $idx); - jl_AbstractStringBuilder_append(var$4, $rt_s(685)); - var$4 = jl_StringBuilder_append0(var$4, $requireBounds_until - 1 | 0); - jl_AbstractStringBuilder_append(var$4, $rt_s(42)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw(var$3); -}, -scm_ArrayDeque_addOne = ($this, $elem) => { - scm_ArrayDeque_ensureSize($this, scm_ArrayDeque_length($this) + 1 | 0); - return scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$appendAssumingCapacity($this, $elem); -}, -scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$appendAssumingCapacity = ($this, $elem) => { - let var$2, var$3; - var$2 = $this.$array0.data; - var$3 = $this.$scala$collection$mutable$ArrayDeque$$end; - var$2[var$3] = $elem; - $this.$scala$collection$mutable$ArrayDeque$$end = (var$3 + 1 | 0) & (var$2.length - 1 | 0); - return $this; -}, -scm_ArrayDeque_prependAll = ($this, $elems) => { - let $it, $n, var$4, $_set_idx, $array2, $i; - $it = $elems.$iterator0(); - if ($it.$nonEmpty()) { - $n = scm_ArrayDeque_length($this); - var$4 = $elems.$knownSize(); - if (var$4 < 0) { - scm_IndexedSeq$_$callClinit(); - scm_ArrayDeque_prependAll($this, $it.$to0(sc_IterableFactory$ToFactory__init_(scm_IndexedSeq$_MODULE$))); - } else { - $_set_idx = var$4 + $n | 0; - if ($_set_idx < $this.$array0.data.length ? 0 : 1) { - $array2 = scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, $_set_idx); - $it.$copyToArray1($array2); - scm_ArrayDeque_copySliceToArray($this, 0, $array2, var$4, $n); - scm_ArrayDeque_reset($this, $array2, 0, $_set_idx); - } else { - $i = 0; - while ($i < var$4) { - $_set_idx = $i - var$4 | 0; - $this.$array0.data[scm_ArrayDeque_start_$plus($this, $_set_idx)] = $it.$next(); - $i = $i + 1 | 0; - } - $this.$scala$collection$mutable$ArrayDeque$$start = ($this.$scala$collection$mutable$ArrayDeque$$start - var$4 | 0) & ($this.$array0.data.length - 1 | 0); - } - } - } - return $this; -}, -scm_ArrayDeque_addAll = ($this, $elems) => { - let var$2, var$3; - var$2 = $elems.$knownSize(); - if (var$2 <= 0) { - $elems = $elems.$iterator0(); - var$3 = new scm_ArrayDeque$addAll$lambda$_98_0; - var$3.$_01141 = $this; - $elems.$foreach(var$3); - } else { - scm_ArrayDeque_ensureSize($this, var$2 + scm_ArrayDeque_length($this) | 0); - $elems = $elems.$iterator0(); - var$3 = new scm_ArrayDeque$addAll$lambda$_98_1; - var$3.$_072 = $this; - $elems.$foreach(var$3); - } - return $this; -}, -scm_ArrayDeque_removeHead = ($this, $resizeInternalRepr) => { - let var$2, var$3, var$4, $removeHeadAssumingNonEmpty_elem; - if (scm_ArrayDeque_isEmpty($this)) { - var$2 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$2, $rt_s(3645)); - $rt_throw(var$2); - } - var$3 = $this.$array0.data; - var$4 = $this.$scala$collection$mutable$ArrayDeque$$start; - $removeHeadAssumingNonEmpty_elem = var$3[var$4]; - var$3[var$4] = null; - $this.$scala$collection$mutable$ArrayDeque$$start = scm_ArrayDeque_start_$plus($this, 1); - if ($resizeInternalRepr) - scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$resize($this, scm_ArrayDeque_length($this)); - return $removeHeadAssumingNonEmpty_elem; -}, -scm_ArrayDeque_removeLast = ($this, $resizeInternalRepr) => { - let $removeLastAssumingNonEmpty_elem, var$3, var$4, $removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx; - if (scm_ArrayDeque_isEmpty($this)) { - $removeLastAssumingNonEmpty_elem = new ju_NoSuchElementException; - jl_Throwable__init_0($removeLastAssumingNonEmpty_elem, $rt_s(3645)); - $rt_throw($removeLastAssumingNonEmpty_elem); - } - var$3 = $this.$scala$collection$mutable$ArrayDeque$$end - 1 | 0; - var$4 = $this.$array0.data; - $removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx = var$3 & (var$4.length - 1 | 0); - $this.$scala$collection$mutable$ArrayDeque$$end = $removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx; - $removeLastAssumingNonEmpty_elem = var$4[$removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx]; - var$4[$removeLastAssumingNonEmpty_scala$collection$mutable$ArrayDeque$$end_$minus_idx] = null; - if ($resizeInternalRepr) - scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$resize($this, scm_ArrayDeque_length($this)); - return $removeLastAssumingNonEmpty_elem; -}, -scm_ArrayDeque_ensureSize = ($this, $hint) => { - if ($hint > scm_ArrayDeque_length($this) && ($hint < $this.$array0.data.length ? 0 : 1)) { - scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$resize($this, $hint); - return; - } -}, -scm_ArrayDeque_length = $this => { - let $scala$collection$mutable$ArrayDeque$$end_$minus_idx; - $scala$collection$mutable$ArrayDeque$$end_$minus_idx = $this.$scala$collection$mutable$ArrayDeque$$start; - return ($this.$scala$collection$mutable$ArrayDeque$$end - $scala$collection$mutable$ArrayDeque$$end_$minus_idx | 0) & ($this.$array0.data.length - 1 | 0); -}, -scm_ArrayDeque_isEmpty = $this => { - if ($this.$scala$collection$mutable$ArrayDeque$$start != $this.$scala$collection$mutable$ArrayDeque$$end) - return 0; - return 1; -}, -scm_ArrayDeque_iterableFactory = $this => { - return scm_ArrayDeque$_MODULE$; -}, -scm_ArrayDeque_copyToArray = ($this, $dest, $destStart, $len) => { - let $elemsToCopyToArray_srcLen, $elemsToCopyToArray_destLen, $copied; - $elemsToCopyToArray_srcLen = scm_ArrayDeque_length($this); - $elemsToCopyToArray_destLen = jlr_Array_getLength($dest); - $copied = jl_Math_max(jl_Math_min(jl_Math_min($len, $elemsToCopyToArray_srcLen), $elemsToCopyToArray_destLen - $destStart | 0), 0); - if ($copied > 0) - scm_ArrayDeque_copySliceToArray($this, 0, $dest, $destStart, $len); - return $copied; -}, -scm_ArrayDeque_toArray = ($this, $evidence$1) => { - return scm_ArrayDeque_copySliceToArray($this, 0, $evidence$1.$newArray(scm_ArrayDeque_length($this)), 0, scm_ArrayDeque_length($this)); -}, -scm_ArrayDeque_start_$plus = ($this, $idx) => { - return ($this.$scala$collection$mutable$ArrayDeque$$start + $idx | 0) & ($this.$array0.data.length - 1 | 0); -}, -scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$resize = ($this, $len) => { - let $n, var$3; - $n = $this.$array0.data.length; - var$3 = $len < $n ? 0 : 1; - if (!var$3 && !($n > 16 && ($n - $len | 0) > $len ? 1 : 0)) - return; - $n = scm_ArrayDeque_length($this); - scm_ArrayDeque_reset($this, scm_ArrayDeque_copySliceToArray($this, 0, scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, $len), 0, $n), 0, $n); -}, -scm_ArrayDeque_stringPrefix = $this => { - return $rt_s(3646); -}, -scm_ArrayDeque_iterableFactory0 = $this => { - return $this.$iterableFactory0(); -}, -scm_ArrayDeque_addAll0 = ($this, $xs) => { - return scm_ArrayDeque_addAll($this, $xs); -}, -scm_ArrayDeque_addOne0 = ($this, $elem) => { - return scm_ArrayDeque_addOne($this, $elem); -}, -scm_ArrayDeque_apply0 = ($this, $v1) => { - return scm_ArrayDeque_apply($this, sr_BoxesRunTime_unboxToInt($v1)); -}, -scm_ArrayDeque__init_ = ($this, $array, $start, $end) => { - $this.$array0 = $array; - $this.$scala$collection$mutable$ArrayDeque$$start = $start; - $this.$scala$collection$mutable$ArrayDeque$$end = $end; - scm_ArrayDeque_reset($this, $array, $start, $end); -}, -scm_ArrayDeque__init_2 = (var_0, var_1, var_2) => { - let var_3 = new scm_ArrayDeque(); - scm_ArrayDeque__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -scm_ArrayDeque__init_1 = ($this, $initialSize) => { - scm_ArrayDeque__init_($this, scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, $initialSize), 0, 0); -}; -let scm_ArrayDeque__init_0 = var_0 => { - let var_1 = new scm_ArrayDeque(); - scm_ArrayDeque__init_1(var_1, var_0); - return var_1; -}, -scm_Queue = $rt_classWithoutFields(scm_ArrayDeque), -scm_Queue_iterableFactory = $this => { - return scm_Queue$_MODULE$; -}, -scm_Queue_stringPrefix = $this => { - return $rt_s(3647); -}, -scm_Queue_dequeue = $this => { - return scm_ArrayDeque_removeHead($this, 0); -}, -scm_Queue_iterableFactory0 = $this => { - return scm_Queue$_MODULE$; -}; -function oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer58 = null; - a.$resolver$1 = null; -} -let oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4, var$5, var$6, var$7, $$je; - if ($x1 instanceof oncia_UnresolvedCall) { - $x1 = $x1; - $default = $this.$$outer58; - var$3 = $this.$resolver$1; - su_Try$_$callClinit(); - var$4 = new oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0; - var$4.$_01204 = $default; - var$4.$_1321 = var$3; - var$4.$_2108 = $x1; - a: { - try { - $default = su_Success__init_(oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0_apply(var$4)); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $default = $$je; - } else { - throw $$e; - } - } - if ($default !== null) { - var$3 = suc_NonFatal$_unapply(suc_NonFatal$_MODULE$, $default); - if (!s_Option_isEmpty(var$3)) { - var$3 = var$3.$get1(); - $default = new su_Failure; - $default.$exception0 = var$3; - break a; - } - } - $rt_throw($default); - } - var$3 = new oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_1; - var$3.$_0347 = $x1; - return $default.$getOrElse(var$3); - } - if ($x1 instanceof oncie_FunctionInvocation) { - var$3 = $x1; - if (oncie_FunctionInvocation_needsToBeResolved(var$3)) { - $x1 = $this.$resolver$1; - oncifp_ResolvedFunctionInvocation$_$callClinit(); - var$5 = var$3.$position7; - var$6 = new oncifp_QualifiedName; - var$7 = var$3.$functionName2; - oncifp_QualifiedName__init_0(var$6, var$7.$namespace3.$parts0, var$7.$name7); - var$4 = $x1.$functionSignature(var$6); - $x1 = new oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0; - $x1.$_040 = var$3; - $x1 = s_Option_map(var$4, $x1); - $default = new oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1; - $default.$_01150 = var$3; - $x1 = oncifp_ResolvedFunctionInvocation__init_(var$6, var$4, s_Option_getOrElse($x1, $default), var$5); - var$4 = $x1.$fcnSignature; - if (var$4 instanceof s_Some) { - var$7 = sci_ArraySeq_map(var$4.$value5.$inputSignature, new oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0); - onciu_ZippableUtil$_$callClinit(); - var$4 = onciu_ZippableUtil$_Zippable(onciu_ZippableUtil$_MODULE$, $x1.$callArguments0); - var$6 = s_None$_MODULE$; - sc_BuildFrom$_$callClinit(); - $default = (onciu_ZippableUtil$Zippable_zipLeft(var$4, var$7, var$6, sc_BuildFrom$_buildFromIterableOps(sc_BuildFrom$_MODULE$))).$map(new oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1); - $x1 = oncifp_ResolvedFunctionInvocation_copy($x1, $x1.$qualifiedName, $x1.$fcnSignature, $default, $x1.$position11); - } else if (!jl_Object_equals(s_None$_MODULE$, var$4)) - $rt_throw(s_MatchError__init_(var$4)); - if (!($x1 instanceof oncifp_ResolvedFunctionInvocation && $x1.$fcnSignature instanceof s_Some)) - $x1 = var$3; - return $x1; - } - } - return $default.$apply2($x1); -}, -jt_DecimalFormat$1 = $rt_classWithoutFields(), -jt_DecimalFormat$1_$SwitchMap$java$math$RoundingMode = null, -jt_DecimalFormat$1_$callClinit = () => { - jt_DecimalFormat$1_$callClinit = $rt_eraseClinit(jt_DecimalFormat$1); - jt_DecimalFormat$1__clinit_(); +jt_DecimalFormat$1 = $rt_classWithoutFields(), +jt_DecimalFormat$1_$SwitchMap$java$math$RoundingMode = null, +jt_DecimalFormat$1_$callClinit = () => { + jt_DecimalFormat$1_$callClinit = $rt_eraseClinit(jt_DecimalFormat$1); + jt_DecimalFormat$1__clinit_(); }, jt_DecimalFormat$1__clinit_ = () => { let var$1, var$2; @@ -73991,71 +75477,6 @@ jt_DecimalFormat$1__clinit_ = () => { var$2[jm_RoundingMode_HALF_EVEN.$ordinal] = 8; }, jl_ArithmeticException = $rt_classWithoutFields(jl_RuntimeException), -scm_ArrayDeque$ = $rt_classWithoutFields(), -scm_ArrayDeque$_MODULE$ = null, -scm_ArrayDeque$__clinit_ = () => { - scm_ArrayDeque$_MODULE$ = new scm_ArrayDeque$; -}, -scm_ArrayDeque$_newBuilder = $this => { - let var$1; - var$1 = new scm_ArrayDeque$$anon$1; - scm_GrowableBuilder__init_(var$1, scm_ArrayDeque__init_0(16)); - return var$1; -}, -scm_ArrayDeque$_alloc = ($this, $len) => { - let var$2, var$3, $size, var$5; - if (!($len < 0 ? 0 : 1)) { - var$2 = new jl_IllegalArgumentException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$3, 20); - jl_AbstractStringBuilder_append(var$3, $rt_s(824)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $rt_s(3648)))); - $rt_throw(var$2); - } - $size = ((-2147483648) >>> jl_Integer_numberOfLeadingZeros($len) | 0) << 1; - if ($size < 0 ? 0 : 1) - return $rt_createArray(jl_Object, jl_Math_max($size, 16)); - var$3 = new jl_IllegalArgumentException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$2, 20); - jl_AbstractStringBuilder_append(var$2, $rt_s(824)); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$5, 58); - jl_AbstractStringBuilder_append(var$5, $rt_s(3649)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$5, $len))))); - $rt_throw(var$3); -}, -scm_ArrayDeque$_from = ($this, $source) => { - let var$2, var$3, var$4, var$5; - var$2 = $source.$knownSize(); - if (var$2 < 0) - $source = scm_ArrayDeque_addAll(scm_ArrayDeque__init_0(16), $source); - else { - var$3 = scm_ArrayDeque$_alloc($this, var$2); - var$4 = !$rt_isInstance($source, sc_Iterable) ? ($source.$iterator0()).$copyToArray(var$3, 0, 2147483647) : $source.$copyToArray(var$3, 0, 2147483647); - if (var$4 != var$2) { - $source = new jl_IllegalStateException; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$5, 11); - jl_AbstractStringBuilder_append(var$5, $rt_s(801)); - var$5 = jl_StringBuilder_append0(var$5, var$4); - jl_AbstractStringBuilder_append(var$5, $rt_s(802)); - jl_Throwable__init_0($source, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$5, var$2))); - $rt_throw($source); - } - $source = scm_ArrayDeque__init_2(var$3, 0, var$2); - } - return $source; -}; -function sc_StringOps$$format$extension$lambda$_92_0() { - jl_Object.call(this); - this.$_01173 = null; -} -let sc_StringOps$$format$extension$lambda$_92_0_apply = (var$0, var$1) => { - if (var$1 instanceof sm_ScalaNumber) - var$1 = var$1.$underlying2(); - return var$1; -}, jm_BitLevel = $rt_classWithoutFields(), jm_BitLevel_shiftLeft0 = ($source, $count) => { let $intCount, $resLength, $resDigits, $result; @@ -74180,33 +75601,33 @@ jm_BitLevel_shiftRight0 = ($result, $resultLen, $source, $intCount, $count) => { juf_Predicate = $rt_classWithoutFields(0); function jusi_SimpleStreamImpl$collect$lambda$_26_0() { let a = this; jl_Object.call(a); - a.$_0173 = null; - a.$_166 = null; + a.$_0171 = null; + a.$_160 = null; } let jusi_SimpleStreamImpl$collect$lambda$_26_0_test = (var$0, var$1) => { - var$0.$_0173.$accept0(var$0.$_166, var$1); + var$0.$_0171.$accept0(var$0.$_160, var$1); return 1; }, juf_IntPredicate = $rt_classWithoutFields(0); function jusi_SimpleIntStreamImpl$ArrayFillingConsumer() { let a = this; jl_Object.call(a); a.$array18 = null; - a.$index15 = 0; + a.$index14 = 0; } let jusi_SimpleIntStreamImpl$ArrayFillingConsumer_test = ($this, $t) => { let var$2, var$3; var$2 = $this.$array18.data; - var$3 = $this.$index15; - $this.$index15 = var$3 + 1 | 0; + var$3 = $this.$index14; + $this.$index14 = var$3 + 1 | 0; var$2[var$3] = $t; return 1; }; function jusi_SimpleIntStreamImpl$toArray$lambda$_16_0() { jl_Object.call(this); - this.$_0808 = null; + this.$_0784 = null; } let jusi_SimpleIntStreamImpl$toArray$lambda$_16_0_test = (var$0, var$1) => { - return ju_ArrayList_add(var$0.$_0808, jl_Integer_valueOf(var$1)); + return ju_ArrayList_add(var$0.$_0784, jl_Integer_valueOf(var$1)); }; function sc_IndexedSeqView$IndexedSeqViewIterator() { let a = this; sc_AbstractIterator.call(a); @@ -74270,7 +75691,7 @@ function scm_CheckedIndexedSeqView$CheckedIterator() { a.$expectedCount1 = 0; } let scm_CheckedIndexedSeqView$CheckedIterator_hasNext = $this => { - scm_MutationTracker$_checkMutations(scm_MutationTracker$_MODULE$, $this.$expectedCount1, scm_ArrayBuffer$view$lambda$_88_0_apply$mcI$sp($this.$mutationCount5), $rt_s(3582)); + scm_MutationTracker$_checkMutations(scm_MutationTracker$_MODULE$, $this.$expectedCount1, scm_ArrayBuffer$view$lambda$_88_0_apply$mcI$sp($this.$mutationCount5), $rt_s(3649)); return sc_IndexedSeqView$IndexedSeqViewIterator_hasNext($this); }, scm_CheckedIndexedSeqView$CheckedIterator__init_0 = ($this, $self, $mutationCount) => { @@ -74310,8 +75731,8 @@ s_Tuple3_productElement = ($this, $n) => { var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$2, 32); var$2 = jl_StringBuilder_append0(var$2, $n); - jl_AbstractStringBuilder_append(var$2, $rt_s(3650)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$2)); + jl_AbstractStringBuilder_append(var$2, $rt_s(3711)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$2)); $rt_throw(var$3); } var$2 = $this.$_11; @@ -74335,7 +75756,7 @@ s_Tuple3_toString = $this => { return jl_AbstractStringBuilder_toString(var$1); }, s_Tuple3_productPrefix = $this => { - return $rt_s(3651); + return $rt_s(3712); }, s_Tuple3_productIterator = $this => { return sr_ScalaRunTime$$anon$1__init_($this); @@ -74373,12 +75794,12 @@ s_Tuple3__init_ = (var_0, var_1, var_2) => { }; function sci_Set$Set3$$anon$2() { sci_Set$SetNIterator.call(this); - this.$$outer35 = null; + this.$$outer31 = null; } let sci_Set$Set3$$anon$2_apply = ($this, $i) => { let var$2; a: { - var$2 = $this.$$outer35; + var$2 = $this.$$outer31; switch ($i) { case 0: break; @@ -74395,14 +75816,11 @@ let sci_Set$Set3$$anon$2_apply = ($this, $i) => { } return var$2; }; -function sc_View$Concat$iterator$lambda$_0_0() { +function oncifp_IsolateSubqueriesInMutatingPatterns$$instance$lambda$_13_0() { jl_Object.call(this); - this.$_01059 = null; + this.$_0482 = null; } -let sc_View$Concat$iterator$lambda$_0_0_apply = var$0 => { - return var$0.$_01059.$suffix.$iterator0(); -}, -jm_Elementary = $rt_classWithoutFields(), +let jm_Elementary = $rt_classWithoutFields(), jm_Elementary_compareArrays = ($a, $b, $size) => { let $i, var$5; $i = $size - 1 | 0; @@ -74636,6 +76054,439 @@ jm_Division_divideLongByInt = ($a, $b) => { } return Long_or(Long_shl($rem, 32), Long_and($quot, Long_create(4294967295, 0))); }, +oncipa_AntlrAstParser = $rt_classWithoutFields(0), +oncipa_AntlrAstParser_parse$ = ($$this, $f) => { + let var$3, var$4, var$5, var$6, var$7, $$je; + var$3 = new oncip_SyntaxErrorListener; + var$3.$exceptionFactory8 = $$this.$exceptionFactory(); + s_package$_$callClinit(); + var$3.$_syntaxErrors = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + var$4 = $$this.$newParser(oncipa_AntlrAstParser_preparsedTokens($$this, var$3, 0)); + var$4.$_interp.$mode1 = oavra_PredictionMode_SLL; + var$5 = new oavr_BailErrorStrategy; + oavr_DefaultErrorStrategy__init_(var$5); + var$4.$setErrorHandler(var$5); + a: { + try { + var$5 = oncipa_AntlrAstParser_doParse($$this, var$4, var$3, $f); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + var$5 = $$je; + } else { + throw $$e; + } + } + if (var$5 !== null && !s_Option_isEmpty(suc_NonFatal$_unapply(suc_NonFatal$_MODULE$, var$5))) { + oavr_Parser_setTokenStream(var$4, oncipa_AntlrAstParser_preparsedTokens($$this, var$3, 1)); + var$4.$_interp.$mode1 = oavra_PredictionMode_LL; + var$5 = new oncip_CypherErrorStrategy; + var$6 = $$this.$errorStrategyConf(); + var$5.$conf0 = var$6; + var$7 = new oncip_CypherErrorVocabulary; + var$7.$conf = var$6; + var$5.$vocabulary1 = var$7; + var$5.$inErrorMode = 0; + var$4.$setErrorHandler(var$5); + oavr_Recognizer_addErrorListener(var$4, var$3); + var$5 = oncipa_AntlrAstParser_doParse($$this, var$4, var$3, $f); + } else + $rt_throw(var$5); + } + return var$5; +}, +oncipa_AntlrAstParser_doParse = ($this, $parser, $listener, $f) => { + let $result; + $result = $f.$apply2($parser); + if (sc_IterableOnceOps_nonEmpty$(($parser.$syntaxChecker()).$errors())) + $rt_throw((($parser.$syntaxChecker()).$errors()).$reduceLeft(new oncipa_AntlrAstParser$doParse$lambda$_6_0)); + if (sc_IterableOnceOps_nonEmpty$($listener.$_syntaxErrors)) + $rt_throw($listener.$_syntaxErrors.$reduceLeft(new oncipa_AntlrAstParser$doParse$lambda$_6_1)); + if (!$parser.$matchedEOF && (oavr_Parser_getCurrentToken($parser)).$getType0() != (-1) ? 0 : 1) + return $result.$ast0; + $listener = $this.$exceptionFactory(); + $f = (oavr_Parser_getCurrentToken($parser)).$getText(); + $result = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($result); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($result, $rt_s(3713)), $f), 39); + $f = jl_AbstractStringBuilder_toString($result); + $parser = oavr_Parser_getCurrentToken($parser); + if ($rt_isInstance($parser, oncipl_CypherToken)) + $parser = $parser.$position(); + else { + onciu_InputPosition$_$callClinit(); + $parser = onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $parser.$getStartIndex(), $parser.$getLine(), $parser.$getCharPositionInLine() + 1 | 0); + } + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException($listener, $f, $parser)); +}, +oncipa_AntlrAstParser_preparsedTokens = ($this, $listener, $fullTokens) => { + let $lexer, var$4, $$je; + a: { + try { + $lexer = $this.$newLexer($fullTokens); + oavr_Recognizer_removeErrorListeners($lexer); + oavr_Recognizer_addErrorListener($lexer, $listener); + $listener = oavr_CommonTokenStream__init_0($lexer); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oncipl_UnicodeEscapeReplacementReader$InvalidUnicodeLiteral) { + $listener = $$je; + break a; + } else { + throw $$e; + } + } + return $listener; + } + $lexer = $this.$exceptionFactory(); + var$4 = $listener.$message; + onciu_InputPosition$_$callClinit(); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException($lexer, var$4, onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $listener.$offset6, $listener.$line8, $listener.$column4))); +}; +function oncipvaf_Cypher5AstParser() { + let a = this; jl_Object.call(a); + a.$query7 = null; + a.$exceptionFactory4 = null; + a.$notificationLogger1 = null; +} +let oncipvaf_Cypher5AstParser_exceptionFactory = $this => { + return $this.$exceptionFactory4; +}, +oncipvaf_Cypher5AstParser_statements = $this => { + return oncipa_AntlrAstParser_parse$($this, new oncipvaf_Cypher5AstParser$statements$lambda$_2_0); +}, +oncipvaf_Cypher5AstParser_syntaxException = ($this, $message, $position) => { + return onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory4, $message, $position); +}, +oncipvaf_Cypher5AstParser_newLexer = ($this, $fullTokens) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $this.$query7; + var$3 = oncipl_UnicodeEscapeReplacementReader_read(var$2, oncipl_UnicodeEscapeReplacementReader_DEFAULT_BUFFER_SIZE); + var$4 = new oncipvaf_Cypher5AstLexer; + var$5 = var$3.$charStream; + var$6 = var$3.$offsetTable1; + oncipv_Cypher5Lexer_$callClinit(); + oavr_Lexer__init_(var$4, var$5); + var$4.$_interp = oavra_LexerATNSimulator__init_(var$4, oncipv_Cypher5Lexer__ATN, oncipv_Cypher5Lexer__decisionToDFA, oncipv_Cypher5Lexer__sharedContextCache); + var$4.$inputQuery1 = var$2; + var$4.$offsetTable3 = var$6; + var$4.$_factory = oncipl_CypherToken_factory($fullTokens); + return var$4; +}, +oncipvaf_Cypher5AstParser_errorStrategyConf = $this => { + return new oncipvaf_Cypher5ErrorStrategyConf; +}, +oncipvaf_Cypher5AstParser_newParser = ($this, $tokens) => { + let var$2, var$3, var$4; + var$2 = new oncipvaf_CypherAstBuildingAntlrParser; + var$3 = $this.$exceptionFactory4; + var$4 = $this.$notificationLogger1; + var$2.$exceptionFactory6 = var$3; + var$2.$notificationLogger = var$4; + oncipv_Cypher5Parser_$callClinit(); + oavr_Parser__init_(var$2, $tokens); + var$2.$_interp = oavra_ParserATNSimulator__init_(var$2, oncipv_Cypher5Parser__ATN, oncipv_Cypher5Parser__decisionToDFA, oncipv_Cypher5Parser__sharedContextCache); + oncipa_AstBuildingAntlrParser_$init$(var$2); + oavr_Recognizer_removeErrorListeners(var$2); + return var$2; +}; +function oncipvaf_Cypher25AstParser() { + let a = this; jl_Object.call(a); + a.$query5 = null; + a.$exceptionFactory5 = null; + a.$notificationLogger0 = null; +} +let oncipvaf_Cypher25AstParser_exceptionFactory = $this => { + return $this.$exceptionFactory5; +}, +oncipvaf_Cypher25AstParser_statements = $this => { + return oncipa_AntlrAstParser_parse$($this, new oncipvaf_Cypher25AstParser$statements$lambda$_2_0); +}, +oncipvaf_Cypher25AstParser_syntaxException = ($this, $message, $position) => { + return onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory5, $message, $position); +}, +oncipvaf_Cypher25AstParser_newLexer = ($this, $fullTokens) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $this.$query5; + var$3 = oncipl_UnicodeEscapeReplacementReader_read(var$2, oncipl_UnicodeEscapeReplacementReader_DEFAULT_BUFFER_SIZE); + var$4 = new oncipvaf_Cypher25AstLexer; + var$5 = var$3.$charStream; + var$6 = var$3.$offsetTable1; + oncipv_Cypher25Lexer_$callClinit(); + oavr_Lexer__init_(var$4, var$5); + var$4.$_interp = oavra_LexerATNSimulator__init_(var$4, oncipv_Cypher25Lexer__ATN, oncipv_Cypher25Lexer__decisionToDFA, oncipv_Cypher25Lexer__sharedContextCache); + var$4.$inputQuery0 = var$2; + var$4.$offsetTable2 = var$6; + var$4.$_factory = oncipl_CypherToken_factory($fullTokens); + return var$4; +}, +oncipvaf_Cypher25AstParser_errorStrategyConf = $this => { + return new oncipvaf_Cypher25ErrorStrategyConf; +}, +oncipvaf_Cypher25AstParser_newParser = ($this, $tokens) => { + let var$2, var$3, var$4; + var$2 = new oncipvaf_CypherAstBuildingAntlrParser0; + var$3 = $this.$exceptionFactory5; + var$4 = $this.$notificationLogger0; + var$2.$exceptionFactory7 = var$3; + var$2.$notificationLogger3 = var$4; + oncipv_Cypher25Parser_$callClinit(); + oavr_Parser__init_(var$2, $tokens); + var$2.$_interp = oavra_ParserATNSimulator__init_(var$2, oncipv_Cypher25Parser__ATN, oncipv_Cypher25Parser__decisionToDFA, oncipv_Cypher25Parser__sharedContextCache); + oncipa_AstBuildingAntlrParser_$init$(var$2); + oavr_Recognizer_removeErrorListeners(var$2); + return var$2; +}, +oncias_SemanticState$ = $rt_classWithoutFields(), +oncias_SemanticState$_MODULE$ = null, +oncias_SemanticState$_clean = null, +oncias_SemanticState$_$callClinit = () => { + oncias_SemanticState$_$callClinit = $rt_eraseClinit(oncias_SemanticState$); + oncias_SemanticState$__clinit_(); +}, +oncias_SemanticState$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncias_SemanticState$; + oncias_SemanticState$_$callClinit(); + oncias_SemanticState$_MODULE$ = var$1; + var$2 = new oncias_SemanticState; + oncias_Scope$_$callClinit(); + var$3 = oncias_Scope$_empty(oncias_Scope$_MODULE$); + oncias_SemanticState$ScopeZipper$_$callClinit(); + var$1 = oncias_SemanticState$ScopeZipper$_MODULE$; + var$4 = onciuh_TreeZipper$Location__init_(var$1, var$3, onciuh_TreeZipper_Top(var$1)); + var$1 = oncia_ASTAnnotationMap$_empty(oncia_ASTAnnotationMap$_MODULE$); + var$3 = oncia_ASTAnnotationMap$_empty(oncia_ASTAnnotationMap$_MODULE$); + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + var$5 = sci_Set$EmptySet$_MODULE$; + s_Predef$_Set(s_Predef$_MODULE$); + var$6 = sci_Set$EmptySet$_MODULE$; + var$7 = s_None$_MODULE$; + oncias_SemanticState__init_(var$2, var$4, var$1, var$3, var$5, var$6, 1, 0, var$7, var$7); + oncias_SemanticState$_clean = var$2; +}, +oncias_SemanticState$_recordCurrentScope = ($this, $node) => { + let var$2, var$3; + var$2 = oncias_package$_MODULE$; + var$3 = new oncias_SemanticState$$recordCurrentScope$lambda$_9_0; + var$3.$_0824 = $node; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); +}, +oncias_SemanticCheckContext = $rt_classWithoutFields(0); +function oncifp_SemanticAnalysis$$anon$1() { + jl_Object.call(this); + this.$context$11 = null; +} +let oncifp_SemanticAnalysis$$anon$1_errorMessageProvider = $this => { + return $this.$context$11.$errorMessageProvider0; +}, +oncifp_SemanticAnalysis$$anon$1_sessionDatabaseReference = $this => { + return null; +}, +oncias_SemanticChecker$ = $rt_classWithoutFields(), +oncias_SemanticChecker$_MODULE$ = null, +oncias_SemanticChecker$__clinit_ = () => { + oncias_SemanticChecker$_MODULE$ = new oncias_SemanticChecker$; +}; +function oncias_SemanticCheckResult() { + let a = this; jl_Object.call(a); + a.$state = null; + a.$errors0 = null; +} +let oncias_SemanticCheckResult_productPrefix = $this => { + return $rt_s(3714); +}, +oncias_SemanticCheckResult_productArity = $this => { + return 2; +}, +oncias_SemanticCheckResult_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$state; + case 1: + return $this.$errors0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheckResult_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckResult_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckResult_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckResult_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticCheckResult) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$state; + var$3 = $x$1.$state; + if (var$2 !== null) { + if (!oncias_SemanticState_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$errors0; + $x$1 = $x$1.$errors0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncias_SemanticCheckResult__init_0 = ($this, $state, $errors) => { + $this.$state = $state; + $this.$errors0 = $errors; +}, +oncias_SemanticCheckResult__init_ = (var_0, var_1) => { + let var_2 = new oncias_SemanticCheckResult(); + oncias_SemanticCheckResult__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncifp_SemanticAnalysis$process$lambda$_13_0() { + jl_Object.call(this); + this.$_0525 = null; +} +let oncifp_SemanticAnalysis$process$lambda$_13_0_apply = (var$0, var$1) => { + var$1 = var$1; + onciu_RecordingNotificationLogger_log(var$0.$_0525, var$1); + return sr_BoxedUnit_UNIT; +}, +oncifp_SemanticAnalysis$process$lambda$_13_1 = $rt_classWithoutFields(), +oncifp_SemanticAnalysis$process$lambda$_13_1_apply = (var$0, var$1) => { + var$1 = var$1.$location; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return var$1.$elem0; +}; +function oncirr_computeDependenciesForExpressions() { + let a = this; jl_Object.call(a); + a.$semanticState = null; + a.$instance1 = null; +} +let oncirr_computeDependenciesForExpressions_apply = ($this, $that) => { + return onciu_topDown$TopDownRewriter_apply($this.$instance1, $that); +}, +oncifp_SemanticAnalysis$process$lambda$_13_2 = $rt_classWithoutFields(), +oncifp_SemanticAnalysis$process$lambda$_13_2__init_0 = var$0 => { + return; +}, +oncifp_SemanticAnalysis$process$lambda$_13_2__init_ = () => { + let var_0 = new oncifp_SemanticAnalysis$process$lambda$_13_2(); + oncifp_SemanticAnalysis$process$lambda$_13_2__init_0(var_0); + return var_0; +}, +oncifp_SemanticAnalysis$process$lambda$_13_2_apply = (var$0, var$1) => { + var$1 = var$1.$location; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return var$1.$elem0; +}, +oncias_SemanticTable$ = $rt_classWithoutFields(), +oncias_SemanticTable$_MODULE$ = null, +oncias_SemanticTable$__clinit_ = () => { + oncias_SemanticTable$_MODULE$ = new oncias_SemanticTable$; +}, +oncias_SemanticTable$_apply$default$3 = $this => { + s_Predef$_$callClinit(); + return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); +}, +oncias_SemanticTable$_apply$default$4 = $this => { + s_Predef$_$callClinit(); + return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); +}, +oncias_SemanticTable$_apply$default$5 = $this => { + s_Predef$_$callClinit(); + return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); +}, +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_0 = $rt_classWithoutFields(), +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0; + var$2.$_0705 = var$1; + return var$2; +}, +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_1 = $rt_classWithoutFields(), +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_1_apply = (var$0, var$1) => { + return var$1.$notification0; +}, +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_2 = $rt_classWithoutFields(), +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_2_apply = (var$0, var$1) => { + return var$1.$replacement1; +}; +function oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_3() { + jl_Object.call(this); + this.$_0424 = null; +} +let oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_3_apply = (var$0, var$1) => { + var$1 = var$1; + onciu_RecordingNotificationLogger_log(var$0.$_0424, var$1); + return sr_BoxedUnit_UNIT; +}; +function oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1() { + sr_AbstractPartialFunction.call(this); + this.$replacements$1 = null; +} +let oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4; + if (!$rt_isInstance($x1, onciu_ASTNode)) + return $default.$apply2($x1); + $x1 = $x1; + $default = $this.$replacements$1; + onciu_Ref$_$callClinit(); + var$3 = onciu_Ref$_apply(onciu_Ref$_MODULE$, $x1); + var$4 = new oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1$applyOrElse$lambda$_0_0; + var$4.$_0655 = $x1; + return $default.$getOrElse1(var$3, var$4); +}; +function oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4() { + jl_Object.call(this); + this.$_0224 = null; +} +let oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0224; + var$2 = new jl_IllegalStateException; + var$1 = jl_Class_getSimpleName(jl_Object_getClass(var$1)); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3715)), var$1), $rt_s(3716)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); +}, +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5 = $rt_classWithoutFields(), +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0; + var$2.$_0437 = var$1; + return var$2; +}, jt_DecimalFormat$MinusField = $rt_classWithoutFields(), jt_DecimalFormat$MinusField_render = ($this, $format, $buffer) => { jl_AbstractStringBuilder_append0($buffer, $format.$symbols.$minusSign); @@ -74659,7 +76510,7 @@ oncius_CypherType$_normalizeTypes = ($this, $typeToNormalize) => { if (!($simplifiedType instanceof oncius_ClosedDynamicUnionType)) { if ($simplifiedType instanceof oncius_ListType) { $typeToNormalize = $simplifiedType; - return oncius_ListType_copy($typeToNormalize, oncius_CypherType$_normalizeTypes($this, $typeToNormalize.$innerType), $typeToNormalize.$isNullable1, $typeToNormalize.$position24); + return oncius_ListType_copy($typeToNormalize, oncius_CypherType$_normalizeTypes($this, $typeToNormalize.$innerType), $typeToNormalize.$isNullable1, $typeToNormalize.$position25); } if ($simplifiedType instanceof oncius_PropertyValueType) { $typeToNormalize = $simplifiedType; @@ -74669,15 +76520,15 @@ oncius_CypherType$_normalizeTypes = ($this, $typeToNormalize) => { if (!($simplifiedType instanceof oncius_GeometryType)) return $simplifiedType; $typeToNormalize = $simplifiedType; - return oncius_PointType__init_($typeToNormalize.$isNullable3, $typeToNormalize.$position84); + return oncius_PointType__init_($typeToNormalize.$isNullable3, $typeToNormalize.$position95); } $typeToNormalize = $simplifiedType; $simplifiedType = new oncius_ClosedDynamicUnionType; s_Predef$_$callClinit(); $innerTypes = s_Predef$_Set(s_Predef$_MODULE$); var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_wrapArray(oncius_CypherType, [oncius_IntegerType__init_($typeToNormalize.$isNullable2, $typeToNormalize.$position25), oncius_FloatType__init_($typeToNormalize.$isNullable2, $typeToNormalize.$position25)]); - oncius_ClosedDynamicUnionType__init_($simplifiedType, $innerTypes.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5)), $typeToNormalize.$position25); + var$5 = $rt_wrapArray(oncius_CypherType, [oncius_IntegerType__init_($typeToNormalize.$isNullable2, $typeToNormalize.$position27), oncius_FloatType__init_($typeToNormalize.$isNullable2, $typeToNormalize.$position27)]); + oncius_ClosedDynamicUnionType__init_($simplifiedType, $innerTypes.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5)), $typeToNormalize.$position27); return $simplifiedType; } $simplifiedType = sc_IterableOnceOps_toList$($simplifiedType.$innerTypes0); @@ -74691,7 +76542,7 @@ oncius_CypherType$_normalizeTypes = ($this, $typeToNormalize) => { var$4 = oncius_CypherType$_allTypes($this, ($innerTypes.$head()).$isNullable()); var$6 = sci_List_map($innerTypes, new oncius_CypherType$$normalize$lambda$_3_7); var$7 = new oncius_CypherType$$normalize$lambda$_3_8; - var$7.$_01087 = var$6; + var$7.$_01069 = var$6; if (!var$4.$forall(var$7)) var$4 = $innerTypes; else { @@ -74882,7 +76733,7 @@ scm_ArraySeq$ofChar_iterator = $this => { }, scm_ArraySeq$ofChar_addString = ($this, $sb, $start, $sep, $end) => { let $jsb, $len, $i; - $jsb = $sb.$underlying8; + $jsb = $sb.$underlying7; if ($start.$nativeString.length) jl_AbstractStringBuilder_append($jsb, $start); a: { @@ -74967,7 +76818,7 @@ otcit_DoubleAnalyzer_analyze = ($d, $result) => { $binExponentCorrection = var$6.length; if (var$8 > $binExponentCorrection) { $result = new jl_IllegalArgumentException; - jl_Throwable__init_($result); + jl_Throwable__init_0($result); $rt_throw($result); } $mantissaShift = $binExponentCorrection - 1 | 0; @@ -75125,7 +76976,7 @@ function scm_HashMap$HashMapIterator() { a.$i5 = 0; a.$node2 = null; a.$len5 = 0; - a.$$outer26 = null; + a.$$outer23 = null; } let scm_HashMap$HashMapIterator_hasNext = $this => { let var$1, $n; @@ -75135,7 +76986,7 @@ let scm_HashMap$HashMapIterator_hasNext = $this => { var$1 = $this.$i5; if (var$1 >= $this.$len5) break; - $n = $this.$$outer26.$scala$collection$mutable$HashMap$$table.data[var$1]; + $n = $this.$$outer23.$scala$collection$mutable$HashMap$$table.data[var$1]; $this.$i5 = var$1 + 1 | 0; if ($n === null) continue; @@ -75155,12 +77006,12 @@ scm_HashMap$HashMapIterator_next = $this => { return $r; }, scm_HashMap$HashMapIterator_scala$collection$mutable$HashMap$HashMapIterator$$$outer = $this => { - return $this.$$outer26; + return $this.$$outer23; }, scm_HashMap$HashMapIterator__init_ = ($this, $$outer) => { if ($$outer === null) $rt_throw(null); - $this.$$outer26 = $$outer; + $this.$$outer23 = $$outer; $this.$i5 = 0; $this.$node2 = null; $this.$len5 = $$outer.$scala$collection$mutable$HashMap$$table.data.length; @@ -75249,240 +77100,298 @@ sci_MapKeyValueTupleIterator_next = $this => { let var$1; if (!sci_ChampBaseIterator_hasNext($this)) { var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); + jl_Throwable__init_0(var$1); $rt_throw(var$1); } var$1 = $this.$currentValueNode.$getPayload0($this.$currentValueCursor); $this.$currentValueCursor = $this.$currentValueCursor + 1 | 0; return var$1; -}; -function sci_HashCollisionSetNode$filterImpl$lambda$_18_0() { - let a = this; jl_Object.call(a); - a.$_0629 = null; - a.$_1215 = 0; - a.$_271 = null; -} -let sci_HashCollisionSetNode$filterImpl$lambda$_18_0__init_ = (var$0, var$1, var$2, var$3) => { - var$0.$_0629 = var$1; - var$0.$_1215 = var$2; - var$0.$_271 = var$3; -}, -sci_HashCollisionSetNode$filterImpl$lambda$_18_0__init_0 = (var_0, var_1, var_2) => { - let var_3 = new sci_HashCollisionSetNode$filterImpl$lambda$_18_0(); - sci_HashCollisionSetNode$filterImpl$lambda$_18_0__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -sci_HashCollisionSetNode$filterImpl$lambda$_18_0_apply = (var$0, var$1) => { - return sci_Vector_$anonfun$filterImpl$1(var$0.$_0629, var$0.$_1215, var$0.$_271, var$1); -}; -function sci_HashCollisionSetNode$filterImpl$lambda$_18_1() { - let a = this; jl_Object.call(a); - a.$_0142 = null; - a.$_155 = 0; - a.$_228 = null; -} -let sci_HashCollisionSetNode$filterImpl$lambda$_18_1__init_0 = (var$0, var$1, var$2, var$3) => { - var$0.$_0142 = var$1; - var$0.$_155 = var$2; - var$0.$_228 = var$3; -}, -sci_HashCollisionSetNode$filterImpl$lambda$_18_1__init_ = (var_0, var_1, var_2) => { - let var_3 = new sci_HashCollisionSetNode$filterImpl$lambda$_18_1(); - sci_HashCollisionSetNode$filterImpl$lambda$_18_1__init_0(var_3, var_0, var_1, var_2); - return var_3; }, -sci_HashCollisionSetNode$filterImpl$lambda$_18_1_apply = (var$0, var$1) => { - return sci_Vector_$anonfun$filterImpl$2(var$0.$_0142, var$0.$_155, var$0.$_228, var$1); -}; -function sci_HashCollisionSetNode$removed$lambda$_6_0() { +onciu_CypherExceptionFactory = $rt_classWithoutFields(0); +function onciu_OpenCypherExceptionFactory() { jl_Object.call(this); - this.$_0250 = null; -} -let sci_HashCollisionSetNode$removed$lambda$_6_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$1, var$0.$_0250) ? 0 : 1); -}; -function sci_HashCollisionSetNode$diff$lambda$_19_0() { - let a = this; jl_Object.call(a); - a.$_0689 = null; - a.$_1241 = null; - a.$_277 = 0; -} -let sci_HashCollisionSetNode$diff$lambda$_19_0__init_0 = (var$0, var$1, var$2, var$3) => { - var$0.$_0689 = var$1; - var$0.$_1241 = var$2; - var$0.$_277 = var$3; -}, -sci_HashCollisionSetNode$diff$lambda$_19_0__init_ = (var_0, var_1, var_2) => { - let var_3 = new sci_HashCollisionSetNode$diff$lambda$_19_0(); - sci_HashCollisionSetNode$diff$lambda$_19_0__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -sci_HashCollisionSetNode$diff$lambda$_19_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sci_HashCollisionSetNode_$anonfun$diff$2(var$0.$_0689, var$0.$_1241, var$0.$_277, var$1)); -}; -function sci_HashCollisionSetNode$diff$lambda$_19_1() { - let a = this; jl_Object.call(a); - a.$_04 = null; - a.$_16 = 0; - a.$_25 = null; -} -let sci_HashCollisionSetNode$diff$lambda$_19_1__init_0 = (var$0, var$1, var$2, var$3) => { - var$0.$_04 = var$1; - var$0.$_16 = var$2; - var$0.$_25 = var$3; -}, -sci_HashCollisionSetNode$diff$lambda$_19_1__init_ = (var_0, var_1, var_2) => { - let var_3 = new sci_HashCollisionSetNode$diff$lambda$_19_1(); - sci_HashCollisionSetNode$diff$lambda$_19_1__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -sci_HashCollisionSetNode$diff$lambda$_19_1_apply = (var$0, var$1) => { - return sci_Vector_$anonfun$filterImpl$1(var$0.$_04, var$0.$_16, var$0.$_25, var$1); -}; -function sci_HashCollisionSetNode$diff$lambda$_19_2() { - let a = this; jl_Object.call(a); - a.$_0577 = null; - a.$_1198 = 0; - a.$_265 = null; + this.$preParserOffset = null; } -let sci_HashCollisionSetNode$diff$lambda$_19_2__init_0 = (var$0, var$1, var$2, var$3) => { - var$0.$_0577 = var$1; - var$0.$_1198 = var$2; - var$0.$_265 = var$3; -}, -sci_HashCollisionSetNode$diff$lambda$_19_2__init_ = (var_0, var_1, var_2) => { - let var_3 = new sci_HashCollisionSetNode$diff$lambda$_19_2(); - sci_HashCollisionSetNode$diff$lambda$_19_2__init_0(var_3, var_0, var_1, var_2); - return var_3; +let onciu_OpenCypherExceptionFactory_invalidInputException = ($this, $wrongInput, $forField, $expectedInput, $legacyMessage, $pos) => { + let var$6; + ong_GqlStatusInfoCodes_$callClinit(); + var$6 = ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001); + $wrongInput = ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N04), ong_GqlParams$StringParam_input, $wrongInput), ong_GqlParams$StringParam_context, $forField); + ong_GqlParams$ListParam_$callClinit(); + return onciu_OpenCypherExceptionFactory_syntaxException0($this, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(var$6, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam1($wrongInput, ong_GqlParams$ListParam_inputList, ju_List_of($expectedInput))))), $legacyMessage, $pos); }, -sci_HashCollisionSetNode$diff$lambda$_19_2_apply = (var$0, var$1) => { - return sci_Vector_$anonfun$filterImpl$2(var$0.$_0577, var$0.$_1198, var$0.$_265, var$1); +onciu_OpenCypherExceptionFactory_productPrefix = $this => { + return $rt_s(3717); }, -oncifp_extractSensitiveLiterals$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncifp_extractSensitiveLiterals$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - if (!$rt_isInstance($x1, oncie_Literal)) - return $default.$apply2($x1); - return $x1.$asSensitiveLiteral(); +onciu_OpenCypherExceptionFactory_productArity = $this => { + return 1; }, -onciu_Rewritable$RewritableAny$ = $rt_classWithoutFields(), -onciu_Rewritable$RewritableAny$_MODULE$ = null, -onciu_Rewritable$RewritableAny$__clinit_ = () => { - onciu_Rewritable$RewritableAny$_MODULE$ = new onciu_Rewritable$RewritableAny$; +onciu_OpenCypherExceptionFactory_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$preParserOffset; + default: + } + return sr_Statics_ioobe($x$1); }, -onciu_Rewritable$ = $rt_classWithoutFields(), -onciu_Rewritable$_MODULE$ = null, -onciu_Rewritable$__clinit_ = () => { - onciu_Rewritable$_MODULE$ = new onciu_Rewritable$; +onciu_OpenCypherExceptionFactory_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Rewritable$_copyProduct = ($this, $product, $children) => { - return onciu_RewritableJavascript_copyConstructor(jl_Object_getClass($product), $product, $children); +onciu_OpenCypherExceptionFactory_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Rewritable$_IteratorEq = ($this, $iterator) => { - let var$2; - var$2 = new onciu_Rewritable$IteratorEq; - var$2.$iterator2 = $iterator; - return var$2; +onciu_OpenCypherExceptionFactory_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Rewritable$_dupAny = ($this, $that, $children) => { - let $builder, var$4, var$5, $$je; +onciu_OpenCypherExceptionFactory_equals = ($this, $x$1) => { + let var$2, var$3; a: { - try { - b: { - $builder = onciu_Rewritable$_IteratorEq($this, $children.$iterator0()); - onciu_Foldable$TreeAny$_$callClinit(); - if (onciu_Rewritable$IteratorEq_eqElements($builder, onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, onciu_Foldable$_TreeAny(onciu_Foldable$_MODULE$, $that)))) { - var$4 = $that; - break b; - } - if ($rt_isInstance($that, onciu_RewritableUniversal)) { - var$4 = $that.$dup($children); - break b; - } - if ($that instanceof sci_ArraySeq) { - $builder = sci_ArraySeq$_MODULE$; - sr_ClassTag$_$callClinit(); - var$4 = sci_ArraySeq$_from($builder, $children, sr_ClassTag$_AnyRef(sr_ClassTag$_MODULE$)); - break b; - } - if ($rt_isInstance($that, sc_IndexedSeq)) { - var$4 = $children.$toIndexedSeq(); - break b; - } - if ($that instanceof sci_List) { - var$4 = $children.$toList(); - break b; - } - if ($rt_isInstance($that, sc_Seq)) { - var$4 = $children; - break b; - } - if ($that instanceof sci_ListSet) { - sc_IterableFactory$_$callClinit(); - var$4 = sc_AbstractIterable_to($children, sc_IterableFactory$_toFactory(sc_IterableFactory$_MODULE$, onciuci_ListSet$_MODULE$)); - break b; - } - if ($that instanceof onciuci_ListSet) { - sc_IterableFactory$_$callClinit(); - var$4 = sc_AbstractIterable_to($children, sc_IterableFactory$_toFactory(sc_IterableFactory$_MODULE$, onciuci_ListSet$_MODULE$)); - break b; - } - if ($rt_isInstance($that, sc_Set)) { - var$4 = sc_AbstractIterable_toSet($children); - break b; - } - if ($rt_isInstance($that, sc_Map)) { - s_Predef$_$callClinit(); - $builder = sci_Map$_newBuilder(s_Predef$_Map(s_Predef$_MODULE$)); - sc_AbstractIterator_foreach(($children.$iterator0()).$grouped(2), onciu_Rewritable$$dupAny$lambda$_5_0__init_0($builder)); - var$4 = sci_MapBuilderImpl_result($builder); + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_OpenCypherExceptionFactory) ? 0 : 1)) break b; + c: { + $x$1 = $x$1; + var$2 = $this.$preParserOffset; + $x$1 = $x$1.$preParserOffset; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } - if ($rt_isInstance($that, s_Product)) { - var$4 = $that; - sr_ClassTag$_$callClinit(); - var$4 = onciu_Rewritable$_copyProduct($this, var$4, sc_AbstractIterable_toArray($children, sr_ClassTag$_AnyRef(sr_ClassTag$_MODULE$))); + if (!($this instanceof onciu_OpenCypherExceptionFactory)) break b; - } - var$4 = $that; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_IllegalArgumentException) { - var$4 = $$je; - break a; - } else { - throw $$e; } + var$3 = 1; + break a; } - return var$4; + var$3 = 0; } - $builder = new jl_IllegalStateException; - $children = sc_AbstractIterable_mkString($children, $rt_s(41)); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(3652)), $that), $rt_s(3653)), $children); - jl_Throwable__init_1($builder, jl_AbstractStringBuilder_toString(var$5), var$4); - $rt_throw($builder); -}; -function sci_Map$Map3() { - let a = this; sci_AbstractMap.call(a); - a.$scala$collection$immutable$Map$Map3$$key1 = null; - a.$scala$collection$immutable$Map$Map3$$value1 = null; - a.$scala$collection$immutable$Map$Map3$$key2 = null; - a.$scala$collection$immutable$Map$Map3$$value2 = null; - a.$scala$collection$immutable$Map$Map3$$key3 = null; - a.$scala$collection$immutable$Map$Map3$$value3 = null; -} -let sci_Map$Map3_map = ($this, $f) => { - return sc_StrictOptimizedIterableOps_map$($this, $f); + return var$3; }, -sci_Map$Map3_flatMap = ($this, $f) => { - return sc_StrictOptimizedIterableOps_flatMap$($this, $f); +onciu_OpenCypherExceptionFactory_syntaxException0 = ($this, $gqlStatusObject, $message, $pos) => { + let var$4; + var$4 = onciu_InputPosition_withOffset$($pos, $this.$preParserOffset); + if ($gqlStatusObject !== null) + ong_ErrorGqlStatusObjectImplementation_adjustPosition($gqlStatusObject, $pos.$line1, $pos.$column0, $pos.$offset0, var$4.$line(), var$4.$column(), var$4.$offset()); + return onciu_OpenCypherExceptionFactory$SyntaxException__init_($gqlStatusObject, $message, var$4); }, -sci_Map$Map3_collect = ($this, $pf) => { - return sc_StrictOptimizedIterableOps_collect$($this, $pf); +onciu_OpenCypherExceptionFactory_syntaxException = ($this, $message, $pos) => { + return onciu_OpenCypherExceptionFactory$SyntaxException__init_(null, $message, $pos.$withOffset($this.$preParserOffset)); }, -sci_Map$Map3_flatten = ($this, $toIterableOnce) => { +scm_Stack$ = $rt_classWithoutFields(), +scm_Stack$_MODULE$ = null, +scm_Stack$__clinit_ = () => { + scm_Stack$_MODULE$ = new scm_Stack$; +}, +scm_Stack$_empty = $this => { + return scm_Stack__init_(16); +}, +scm_Stack$_newBuilder = $this => { + return scm_GrowableBuilder__init_0(scm_Stack$_empty($this)); +}, +scm_Stack$_from = ($this, $source) => { + let var$2; + var$2 = scm_Stack$_empty($this); + if (var$2 === null) + $rt_throw(null); + return scm_ArrayDeque_addAll(var$2, $source); +}, +scm_Stack = $rt_classWithoutFields(scm_ArrayDeque), +scm_Stack_iterableFactory0 = $this => { + return scm_Stack$_MODULE$; +}, +scm_Stack_stringPrefix = $this => { + return $rt_s(3718); +}, +scm_Stack_push = ($this, $elem) => { + let var$2, var$3, var$4; + scm_ArrayDeque_ensureSize($this, scm_ArrayDeque_length($this) + 1 | 0); + var$2 = $this.$scala$collection$mutable$ArrayDeque$$start - 1 | 0; + var$3 = $this.$array0.data; + var$4 = var$2 & (var$3.length - 1 | 0); + $this.$scala$collection$mutable$ArrayDeque$$start = var$4; + var$3[var$4] = $elem; + return $this; +}, +scm_Stack_pushAll = ($this, $elems) => { + if ($rt_isInstance($elems, sc_Seq)) + $elems = ($elems.$view1()).$reverse2(); + else { + scm_IndexedSeq$_$callClinit(); + $elems = ((sc_SeqFactory$Delegate_from(scm_IndexedSeq$_MODULE$, $elems)).$view0()).$reverse3(); + } + return scm_ArrayDeque_prependAll($this, $elems); +}, +scm_Stack_pop = $this => { + return scm_ArrayDeque_removeHead($this, 0); +}, +scm_Stack_iterableFactory = $this => { + return scm_Stack$_MODULE$; +}, +scm_Stack__init_0 = ($this, $initialSize) => { + scm_ArrayDeque__init_($this, scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, $initialSize), 0, 0); +}, +scm_Stack__init_ = var_0 => { + let var_1 = new scm_Stack(); + scm_Stack__init_0(var_1, var_0); + return var_1; +}; +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter() { + let a = this; jl_Object.call(a); + a.$targetsComposite = 0; + a.$sessionDatabaseName = null; + a.$cancellationChecker0 = null; +} +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_apply = ($this, $that) => { + let $workGraph, var$3, var$4, var$5, var$6; + if (!$this.$targetsComposite) + return $that; + s_Option$_$callClinit(); + $workGraph = s_Option$_MODULE$; + var$3 = $this.$sessionDatabaseName === null ? 0 : 1; + var$4 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0; + var$4.$_0954 = $this; + $workGraph = s_Option$_when($workGraph, var$3, var$4); + var$4 = new sr_LazyRef; + var$5 = onciu_Foldable_folder$0(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $that), $this.$cancellationChecker0); + var$6 = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_org$neo4j$cypher$internal$frontend$phases$RemoveDuplicateUseClauses$UseClauseRewriter$$State$3($this, var$4); + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + $workGraph = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$_apply(var$6, sci_Set$EmptySet$_MODULE$, $workGraph); + var$6 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1; + var$6.$$outer25 = $this; + var$6.$State$module$1 = var$4; + $workGraph = onciu_Foldable$Folder_treeFold(var$5, $workGraph, var$6); + if ($workGraph === null) + $rt_throw(s_MatchError__init_($workGraph)); + var$6 = $workGraph.$useClausesToRemove; + onciu_Rewriter$_$callClinit(); + $workGraph = onciu_Rewriter$_MODULE$; + var$4 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2; + var$4.$useClausesToRemove$1 = var$6; + $workGraph = onciu_Rewriter$_lift($workGraph, var$4); + var$4 = $this.$cancellationChecker0; + var$6 = onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$); + return onciu_topDown$TopDownRewriter_apply(onciu_topDown$_apply(onciu_topDown$_MODULE$, $workGraph, var$6, 1, var$4), $that); +}, +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_org$neo4j$cypher$internal$frontend$phases$RemoveDuplicateUseClauses$UseClauseRewriter$$State$3 = ($this, $State$module$1) => { + let var$2, $$je; + if ($State$module$1.$_initialized) + return $State$module$1.$_value0; + jl_Object_monitorEnterSync($State$module$1); + a: { + try { + var$2 = sr_LazyRef_initialized($State$module$1) ? sr_LazyRef_value($State$module$1) : sr_LazyRef_initialize($State$module$1, oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$__init_0($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + break a; + + } + jl_Object_monitorExitSync($State$module$1); + return var$2; + } + jl_Object_monitorExitSync($State$module$1); + $rt_throw(var$2); +}; +function onkd_NormalizedDatabaseName() { + jl_Record.call(this); + this.$name45 = null; +} +function oncifp_ProcedureAndFunctionDeprecationWarnings$$visit$lambda$_10_0() { + jl_Object.call(this); + this.$_0959 = null; +} +let oncifp_ProcedureAndFunctionDeprecationWarnings$$visit$lambda$_10_0_apply = (var$0, var$1) => { + var$1 = var$1; + onciu_RecordingNotificationLogger_log(var$0.$_0959, var$1); + return sr_BoxedUnit_UNIT; +}; +function oncifp_ProcedureWarnings$$visit$lambda$_10_0() { + jl_Object.call(this); + this.$_0278 = null; +} +let oncifp_ProcedureWarnings$$visit$lambda$_10_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0278; + oncifp_ProcedureWarnings$_$callClinit(); + onciu_RecordingNotificationLogger_log(var$2, var$1); + return sr_BoxedUnit_UNIT; +}; +function oncifp_CollectSyntaxUsageMetrics$$anonfun$visit$1() { + sr_AbstractPartialFunction.call(this); + this.$context$1 = null; +} +let oncifp_CollectSyntaxUsageMetrics$$anonfun$visit$1_applyOrElse = ($this, $x1, $default) => { + if ($rt_isInstance($x1, oncie_PatternPart$SelectiveSelector)) { + oncifp_SyntaxUsageMetricKey_$callClinit(); + oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_GPM_SHORTEST, $this.$context$1); + return sr_BoxedUnit_UNIT; + } + if ($x1 instanceof oncie_ShortestPathsPatternPart) { + oncifp_SyntaxUsageMetricKey_$callClinit(); + oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_LEGACY_SHORTEST, $this.$context$1); + return sr_BoxedUnit_UNIT; + } + if ($x1 instanceof oncie_QuantifiedPath) { + oncifp_SyntaxUsageMetricKey_$callClinit(); + oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_QUANTIFIED_PATH_PATTERN, $this.$context$1); + return sr_BoxedUnit_UNIT; + } + if ($x1 instanceof oncia_ExistsExpression) { + oncifp_SyntaxUsageMetricKey_$callClinit(); + oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_EXISTS_SUBQUERY, $this.$context$1); + return sr_BoxedUnit_UNIT; + } + if ($x1 instanceof oncia_CountExpression) { + oncifp_SyntaxUsageMetricKey_$callClinit(); + oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_COUNT_SUBQUERY, $this.$context$1); + return sr_BoxedUnit_UNIT; + } + if (!($x1 instanceof oncia_CollectExpression)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + oncifp_SyntaxUsageMetricKey_$callClinit(); + oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_COLLECT_SUBQUERY, $this.$context$1); + return sr_BoxedUnit_UNIT; +}; +function oncifp_SemanticTypeCheck$$visit$lambda$_10_0() { + let a = this; jl_Object.call(a); + a.$_01096 = null; + a.$_1372 = null; +} +let oncifp_SemanticTypeCheck$$visit$lambda$_10_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01096; + var$3 = var$0.$_1372; + oncifp_SemanticTypeCheck$_$callClinit(); + return var$1.$apply3(var$2, var$3); +}; +function sci_Map$Map3() { + let a = this; sci_AbstractMap.call(a); + a.$scala$collection$immutable$Map$Map3$$key1 = null; + a.$scala$collection$immutable$Map$Map3$$value1 = null; + a.$scala$collection$immutable$Map$Map3$$key2 = null; + a.$scala$collection$immutable$Map$Map3$$value2 = null; + a.$scala$collection$immutable$Map$Map3$$key3 = null; + a.$scala$collection$immutable$Map$Map3$$value3 = null; +} +let sci_Map$Map3_map = ($this, $f) => { + return sc_StrictOptimizedIterableOps_map$($this, $f); +}, +sci_Map$Map3_flatMap = ($this, $f) => { + return sc_StrictOptimizedIterableOps_flatMap$($this, $f); +}, +sci_Map$Map3_collect = ($this, $pf) => { + return sc_StrictOptimizedIterableOps_collect$($this, $pf); +}, +sci_Map$Map3_flatten = ($this, $toIterableOnce) => { return sc_StrictOptimizedIterableOps_flatten$($this, $toIterableOnce); }, sci_Map$Map3_filter = ($this, $pred) => { @@ -75512,7 +77421,7 @@ sci_Map$Map3_apply = ($this, $key) => { var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_0(var$3, 15); jl_AbstractStringBuilder_append(var$3, $rt_s(684)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$3, $key))); $rt_throw(var$2); }, sci_Map$Map3_contains = ($this, $key) => { @@ -75666,15 +77575,97 @@ sci_Map$Map3__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { sci_Map$Map3__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); return var_6; }; +function oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$semanticTable$1 = null; + a.$anonymousVariableNameGenerator$1 = null; +} +let oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5_applyOrElse = ($this, $x1, $default) => { + let $rewrittenQuery; + if ($x1 instanceof oncia_ImportingWithSubqueryCall) { + $x1 = $x1; + $rewrittenQuery = $x1.$innerQuery1; + $default = new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_0; + $default.$_0296 = $this; + return oncia_ImportingWithSubqueryCall_copy($x1, $rewrittenQuery.$mapEachSingleQuery($default), $x1.$inTransactionsParameters1, $x1.$optional4, $x1.$position114); + } + if (!($x1 instanceof oncia_ScopeClauseSubqueryCall)) { + if (!($x1 instanceof oncia_SingleQuery)) + return $default.$apply2($x1); + $x1 = $x1; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + return oncifp_IsolateSubqueriesInMutatingPatterns$_org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1(oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$, $x1, 0, $this.$semanticTable$1, $this.$anonymousVariableNameGenerator$1); + } + $x1 = $x1; + $rewrittenQuery = $x1.$innerQuery0; + $default = new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_1; + $default.$_0348 = $this; + return oncia_ScopeClauseSubqueryCall_copy($x1, $rewrittenQuery.$mapEachSingleQuery($default), $x1.$isImportingAll, $x1.$importedVariables, $x1.$inTransactionsParameters0, $x1.$optional2, $x1.$position75); +}, +oncias_SemanticFeature$ = $rt_classWithoutFields(), +oncias_SemanticFeature$_MODULE$ = null, +oncias_SemanticFeature$_allSemanticFeatures = null, +oncias_SemanticFeature$_$callClinit = () => { + oncias_SemanticFeature$_$callClinit = $rt_eraseClinit(oncias_SemanticFeature$); + oncias_SemanticFeature$__clinit_(); +}, +oncias_SemanticFeature$__clinit_ = () => { + let var$1, var$2, var$3, var$4; + var$1 = new oncias_SemanticFeature$; + oncias_SemanticFeature$_$callClinit(); + oncias_SemanticFeature$_MODULE$ = var$1; + s_Predef$_$callClinit(); + var$1 = s_Predef$_Set(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncias_SemanticFeature, 8); + var$4 = var$3.data; + var$4[0] = oncias_SemanticFeature$MultipleDatabases$_MODULE$; + var$4[1] = oncias_SemanticFeature$MultipleGraphs$_MODULE$; + var$4[2] = oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$; + var$4[3] = oncias_SemanticFeature$UseAsSingleGraphSelector$_MODULE$; + var$4[4] = oncias_SemanticFeature$ShowSetting$_MODULE$; + var$4[5] = oncias_SemanticFeature$MatchModes$_MODULE$; + var$4[6] = oncias_SemanticFeature$ComposableCommands$_MODULE$; + var$4[7] = oncias_SemanticFeature$GraphTypes$_MODULE$; + oncias_SemanticFeature$_allSemanticFeatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncias_ScopeTreeVerifier$ = $rt_classWithoutFields(), +oncias_ScopeTreeVerifier$_MODULE$ = null, +oncias_ScopeTreeVerifier$__clinit_ = () => { + oncias_ScopeTreeVerifier$_MODULE$ = new oncias_ScopeTreeVerifier$; +}; +function oncirr_computeDependenciesForExpressions$$anonfun$1() { + sr_AbstractPartialFunction.call(this); + this.$$outer40 = null; +} +let oncirr_computeDependenciesForExpressions$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let var$3, $declarations, $dependencies; + if (!$rt_isInstance($x1, oncie_ExpressionWithComputedDependencies)) + return $default.$apply2($x1); + $x1 = $x1; + oncias_SemanticState$ScopeLocation$_$callClinit(); + $default = oncias_SemanticState$ScopeLocation$_MODULE$; + var$3 = $this.$$outer40.$semanticState.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + $default = oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension($default, (var$3.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $x1.$subqueryAstNode()))).$location); + if ($default === null) + $rt_throw(s_MatchError__init_($default)); + $declarations = $default.$declarations; + $dependencies = $default.$dependencies0; + $default = s_Tuple2__init_($declarations, $dependencies); + $declarations = $default.$_10; + $dependencies = $default.$_20; + return ($x1.$withComputedIntroducedVariables($declarations.$map(new oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_0))).$withComputedScopeDependencies($dependencies.$map(new oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_1)); +}; function oncius_ClosedDynamicUnionType() { let a = this; jl_Object.call(a); a.$covariant19 = null; a.$invariant11 = null; a.$innerTypes0 = null; - a.$position46 = null; + a.$position56 = null; a.$parentType19 = null; a.$sortedInnerTypes = null; - a.$toString16 = null; + a.$toString15 = null; a.$toCypherTypeString1 = null; a.$isAbstract1 = 0; a.$bitmap$022 = 0; @@ -75689,17 +77680,20 @@ oncius_ClosedDynamicUnionType_innerTypes = $this => { return $this.$innerTypes0; }, oncius_ClosedDynamicUnionType_position = $this => { - return $this.$position46; + return $this.$position56; }, oncius_ClosedDynamicUnionType_parentType = $this => { return $this.$parentType19; }, oncius_ClosedDynamicUnionType_toString = $this => { - return $this.$toString16; + return $this.$toString15; }, oncius_ClosedDynamicUnionType_toCypherTypeString = $this => { return $this.$toCypherTypeString1; }, +oncius_ClosedDynamicUnionType_normalizedCypherTypeString = $this => { + return (oncius_CypherType$_normalizeTypes(oncius_CypherType$_MODULE$, $this)).$toCypherTypeString(); +}, oncius_ClosedDynamicUnionType_sortOrder = $this => { oncius_CypherTypeOrder$_$callClinit(); return (oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION(oncius_CypherTypeOrder$_MODULE$)).$i; @@ -75715,7 +77709,7 @@ oncius_ClosedDynamicUnionType_simplify = $this => { $flattenedInner = sc_AbstractIterable_toSet(sci_List_flatMap($this.$sortedInnerTypes, new oncius_ClosedDynamicUnionType$simplify$lambda$_28_0)); if ($flattenedInner.$size() == 1) return $flattenedInner.$head(); - return oncius_ClosedDynamicUnionType_copy($this, $flattenedInner, $this.$position46); + return oncius_ClosedDynamicUnionType_copy($this, $flattenedInner, $this.$position56); }, oncius_ClosedDynamicUnionType_isSubtypeOf = ($this, $otherCypherType) => { let var$2, var$3; @@ -75723,22 +77717,22 @@ oncius_ClosedDynamicUnionType_isSubtypeOf = ($this, $otherCypherType) => { $otherCypherType = $otherCypherType; var$2 = $this.$innerTypes0; var$3 = new oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0; - var$3.$_0229 = $otherCypherType; + var$3.$_0223 = $otherCypherType; return var$2.$forall(var$3); } if ($otherCypherType instanceof oncius_AnyType) return oncius_CypherType_isNullableSubtypeOf$($this, $this, $otherCypherType); var$2 = $this.$innerTypes0; var$3 = new oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1; - var$3.$_0849 = $otherCypherType; + var$3.$_0826 = $otherCypherType; return var$2.$forall(var$3); }, oncius_ClosedDynamicUnionType_withIsNullable = ($this, $isNullable) => { let var$2, var$3; var$2 = $this.$innerTypes0; var$3 = new oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0; - var$3.$_0652 = $isNullable; - return oncius_ClosedDynamicUnionType_copy($this, var$2.$map(var$3), $this.$position46); + var$3.$_0642 = $isNullable; + return oncius_ClosedDynamicUnionType_copy($this, var$2.$map(var$3), $this.$position56); }, oncius_ClosedDynamicUnionType_withPosition = ($this, $newPosition) => { return oncius_ClosedDynamicUnionType_copy($this, $this.$innerTypes0, $newPosition); @@ -75753,7 +77747,7 @@ oncius_ClosedDynamicUnionType_isAssignableFrom = ($this, $other) => { let var$2, var$3; var$2 = $this.$innerTypes0; var$3 = new oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0; - var$3.$_0163 = $other; + var$3.$_0156 = $other; return var$2.$exists(var$3); }, oncius_ClosedDynamicUnionType_covariant = $this => { @@ -75812,8 +77806,8 @@ oncius_ClosedDynamicUnionType_greatestLowerBound = ($this, $other) => { $lowerBound = sr_ObjectRef_create(($this.$innerTypes0.$head()).$greatestLowerBound($other)); $lowerBounds = $this.$innerTypes0.$tail(); var$4 = new oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_4; - var$4.$_0642 = $lowerBound; - var$4.$_1219 = $other; + var$4.$_0628 = $lowerBound; + var$4.$_1211 = $other; $lowerBounds.$foreach(var$4); return $lowerBound.$elem; } @@ -75822,18 +77816,18 @@ oncius_ClosedDynamicUnionType_greatestLowerBound = ($this, $other) => { $lowerBounds = (s_Predef$_Set(s_Predef$_MODULE$)).$from0(sci_Nil$_MODULE$); var$4 = $this.$innerTypes0; $lowerBound = new oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_0; - $lowerBound.$_0851 = $other; - $lowerBound.$_1291 = $lowerBounds; + $lowerBound.$_0827 = $other; + $lowerBound.$_1277 = $lowerBounds; var$4.$foreach($lowerBound); if (!$lowerBounds.$exists(new oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_1)) return s_None$_MODULE$; - return s_Some__init_(oncius_ClosedDynamicUnionType__init_0(($lowerBounds.$filter1(new oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_2)).$map(new oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_3), $this.$position46)); + return s_Some__init_(oncius_ClosedDynamicUnionType__init_0(($lowerBounds.$filter1(new oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_2)).$map(new oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_3), $this.$position56)); }, oncius_ClosedDynamicUnionType_copy = ($this, $innerTypes, $position) => { return oncius_ClosedDynamicUnionType__init_0($innerTypes, $position); }, oncius_ClosedDynamicUnionType_productPrefix = $this => { - return $rt_s(3654); + return $rt_s(3719); }, oncius_ClosedDynamicUnionType_productArity = $this => { return 1; @@ -75857,14 +77851,14 @@ oncius_ClosedDynamicUnionType_dup = ($this, $children) => { }, oncius_ClosedDynamicUnionType__init_ = ($this, $innerTypes, $position) => { $this.$innerTypes0 = $innerTypes; - $this.$position46 = $position; + $this.$position56 = $position; oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType19 = oncius_package$_CTAny(oncius_package$_MODULE$); $innerTypes = (($innerTypes.$map(new oncius_ClosedDynamicUnionType$_init_$lambda$_70_0)).$toList()).$scala$collection$immutable$StrictOptimizedSeqOps$$super$sorted(oncius_CypherType$_order); $this.$sortedInnerTypes = $innerTypes; - $this.$toString16 = sc_AbstractIterable_mkString(sci_List_map($innerTypes, new oncius_ClosedDynamicUnionType$_init_$lambda$_70_1), $rt_s(450)); - $this.$toCypherTypeString1 = sc_AbstractIterable_mkString(sci_List_map($this.$sortedInnerTypes, new oncius_ClosedDynamicUnionType$_init_$lambda$_70_2), $rt_s(450)); + $this.$toString15 = sc_AbstractIterable_mkString(sci_List_map($innerTypes, new oncius_ClosedDynamicUnionType$_init_$lambda$_70_1), $rt_s(448)); + $this.$toCypherTypeString1 = sc_AbstractIterable_mkString(sci_List_map($this.$sortedInnerTypes, new oncius_ClosedDynamicUnionType$_init_$lambda$_70_2), $rt_s(448)); }, oncius_ClosedDynamicUnionType__init_0 = (var_0, var_1) => { let var_2 = new oncius_ClosedDynamicUnionType(); @@ -75876,12 +77870,12 @@ function oncius_PropertyValueType() { a.$isNullable0 = 0; a.$position5 = null; a.$parentType17 = null; - a.$toString21 = null; + a.$toString20 = null; a.$toCypherTypeString11 = null; a.$isAbstract21 = 0; a.$covariant6 = null; a.$invariant12 = null; - a.$bitmap$01 = 0; + a.$bitmap$02 = 0; } let oncius_PropertyValueType_description = $this => { return oncius_CypherType_description$($this); @@ -75889,6 +77883,9 @@ let oncius_PropertyValueType_description = $this => { oncius_PropertyValueType_simplify = $this => { return $this; }, +oncius_PropertyValueType_normalizedCypherTypeString = $this => { + return $this.$description(); +}, oncius_PropertyValueType_isSubtypeOf = ($this, $otherCypherType) => { return oncius_CypherType_isSubtypeOf$($this, $otherCypherType); }, @@ -75909,15 +77906,15 @@ oncius_PropertyValueType_greatestLowerBound = ($this, $other) => { }, oncius_PropertyValueType_covariant = $this => { let var$1, $$je; - if (($this.$bitmap$01 & 1) << 24 >> 24) + if (($this.$bitmap$02 & 1) << 24 >> 24) return $this.$covariant6; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$01 & 1) << 24 >> 24) + if (($this.$bitmap$02 & 1) << 24 >> 24) break a; $this.$covariant6 = oncius_CypherType_covariant$($this); - $this.$bitmap$01 = ($this.$bitmap$01 | 1) << 24 >> 24; + $this.$bitmap$02 = ($this.$bitmap$02 | 1) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -75932,15 +77929,15 @@ oncius_PropertyValueType_covariant = $this => { }, oncius_PropertyValueType_invariant = $this => { let var$1, $$je; - if (($this.$bitmap$01 & 2) << 24 >> 24) + if (($this.$bitmap$02 & 2) << 24 >> 24) return $this.$invariant12; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$01 & 2) << 24 >> 24) + if (($this.$bitmap$02 & 2) << 24 >> 24) break a; $this.$invariant12 = oncius_CypherType_invariant$($this); - $this.$bitmap$01 = ($this.$bitmap$01 | 2) << 24 >> 24; + $this.$bitmap$02 = ($this.$bitmap$02 | 2) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -75966,7 +77963,7 @@ oncius_PropertyValueType_parentType = $this => { return $this.$parentType17; }, oncius_PropertyValueType_toString = $this => { - return $this.$toString21; + return $this.$toString20; }, oncius_PropertyValueType_toCypherTypeString = $this => { return $this.$toCypherTypeString11; @@ -76040,7 +78037,7 @@ oncius_PropertyValueType_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, oncius_PropertyValueType_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(3655))), !$this.$isNullable0 ? 1237 : 1231), 1); + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(3720))), !$this.$isNullable0 ? 1237 : 1231), 1); }, oncius_PropertyValueType_equals = ($this, $x$1) => { let var$2; @@ -76071,174 +78068,480 @@ oncius_PropertyValueType__init_0 = ($this, $isNullable, $position) => { oncius_CypherType_$init$($this); oncius_package$_$callClinit(); $this.$parentType17 = oncius_package$_CTAny(oncius_package$_MODULE$); - $this.$toString21 = $rt_s(3656); - $this.$toCypherTypeString11 = $rt_s(3657); + $this.$toString20 = $rt_s(3721); + $this.$toCypherTypeString11 = $rt_s(3722); }, oncius_PropertyValueType__init_ = (var_0, var_1) => { let var_2 = new oncius_PropertyValueType(); oncius_PropertyValueType__init_0(var_2, var_0, var_1); return var_2; }; -function oncirr_expandStar() { - let a = this; jl_Object.call(a); - a.$state3 = null; - a.$rewriter2 = null; - a.$instance2 = null; +function sr_ScalaRunTime$$anon$1() { + let a = this; sc_AbstractIterator.call(a); + a.$c = 0; + a.$cmax = 0; + a.$x$2 = null; } -let oncirr_expandStar_apply = ($this, $that) => { - return onciu_topDown$TopDownRewriter_apply($this.$instance2, $that); +let sr_ScalaRunTime$$anon$1_hasNext = $this => { + if ($this.$c >= $this.$cmax) + return 0; + return 1; }, -oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems = ($this, $clause, $listedItems, $defaultOrderOnColumns, $excludedNames) => { - let $scope, $clausePos, $orderedSymbolNames, $newItems; - $scope = oncias_SemanticState_scope($this.$state3, $clause); - $clausePos = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_0; - $clausePos.$_01106 = $clause; - $scope = s_Option_getOrElse($scope, $clausePos); - $clausePos = $clause.$position(); - $excludedNames = ((oncias_Scope_symbolNames($scope)).$removedAll($excludedNames)).$removedAll($listedItems.$map(new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_1)); - $clause = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_2; - $clause.$_0120 = $excludedNames; - $clause = s_Option_map($defaultOrderOnColumns, $clause); - $defaultOrderOnColumns = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_3; - $defaultOrderOnColumns.$_0684 = $excludedNames; - $orderedSymbolNames = s_Option_getOrElse($clause, $defaultOrderOnColumns); - $clause = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4; - $clause.$_074 = $clausePos; - $newItems = ($orderedSymbolNames.$map($clause)).$concat($listedItems); - $clause = new oncia_ReturnItems; - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_($clause, 0, $newItems, s_None$_MODULE$, $clausePos); - return $clause; +sr_ScalaRunTime$$anon$1_next = $this => { + let $result; + $result = $this.$x$2.$productElement($this.$c); + $this.$c = $this.$c + 1 | 0; + return $result; }, -oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$default$4 = $this => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; +sr_ScalaRunTime$$anon$1__init_0 = ($this, $x$2) => { + $this.$x$2 = $x$2; + $this.$c = 0; + $this.$cmax = $x$2.$productArity(); }, -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_0 = $rt_classWithoutFields(), -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncifp_ObfuscationMetadataCollection$_$callClinit(); - return sc_AbstractIterable_map(var$1.$keySet0(), new oncifp_ObfuscationMetadataCollection$$$anonfun$process$1$lambda$_23_0); +sr_ScalaRunTime$$anon$1__init_ = var_0 => { + let var_1 = new sr_ScalaRunTime$$anon$1(); + sr_ScalaRunTime$$anon$1__init_0(var_1, var_0); + return var_1; +}; +function scm_HashSet$subtractAll$lambda$_53_0() { + jl_Object.call(this); + this.$_01005 = null; +} +let scm_HashSet$subtractAll$lambda$_53_0_apply = (var$0, var$1, var$2) => { + return jl_Boolean_valueOf(scm_HashSet_$anonfun$subtractAll$1(var$0.$_01005, var$1, sr_BoxesRunTime_unboxToInt(var$2))); }, -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_1 = $rt_classWithoutFields(), -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_1_apply = var$0 => { - oncifp_ObfuscationMetadataCollection$_$callClinit(); - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; +onciu_Foldable$TreeAny$ = $rt_classWithoutFields(), +onciu_Foldable$TreeAny$_MODULE$ = null, +onciu_Foldable$TreeAny$__clinit_ = () => { + onciu_Foldable$TreeAny$_MODULE$ = new onciu_Foldable$TreeAny$; }, -oncie_Parameter = $rt_classWithoutFields(0), -oncie_Parameter_asCanonicalStringVal$ = $$this => { +onciu_Foldable$TreeAny$_treeChildren$extension = ($this, $$this) => { + if ($rt_isInstance($$this, sc_Seq)) + return $$this.$iterator0(); + if ($rt_isInstance($$this, sci_Set)) + return $$this.$iterator0(); + if ($rt_isInstance($$this, sci_Map)) + return ($$this.$iterator0()).$flatMap2(new onciu_Foldable$TreeAny$$treeChildren$extension$lambda$_1_0); + if ($rt_isInstance($$this, s_Product)) + return $$this.$productIterator(); + s_package$_$callClinit(); + s_package$_Iterator(s_package$_MODULE$); + return sc_Iterator$_scala$collection$Iterator$$_empty; +}, +onciu_Foldable$TreeAny$_reverseTreeChildren$extension = ($this, $$this) => { let var$2; - $$this = $$this.$name(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 36); - jl_StringBuilder_append(var$2, $$this); - return jl_AbstractStringBuilder_toString(var$2); + if ($rt_isInstance($$this, sc_Seq)) + return $$this.$reverseIterator(); + if ($$this instanceof sci_ListSet) { + $$this = $$this; + var$2 = new onciu_Foldable$TreeAny$$anon$1; + var$2.$current6 = $$this; + return var$2; + } + if ($$this instanceof onciuci_ListSet) + return sc_IndexedSeqOps_reverseIterator$(sc_AbstractIterable_toVector($$this)); + if ($rt_isInstance($$this, sci_Set)) + return sc_IndexedSeqOps_reverseIterator$(sc_AbstractIterable_toVector($$this)); + if ($rt_isInstance($$this, sci_Map)) + return sc_Iterator_flatMap$(sc_IndexedSeqOps_reverseIterator$(sc_AbstractIterable_toVector($$this)), new onciu_Foldable$TreeAny$$reverseTreeChildren$extension$lambda$_2_0); + if (!$rt_isInstance($$this, s_Product)) { + s_package$_$callClinit(); + s_package$_Iterator(s_package$_MODULE$); + return sc_Iterator$_scala$collection$Iterator$$_empty; + } + $$this = $$this; + var$2 = new onciu_Foldable$TreeAny$$anon$2; + var$2.$p$10 = $$this; + var$2.$c0 = $$this.$productArity() - 1 | 0; + return var$2; }, -oncie_Parameter_equals$ = ($$this, $obj) => { - let var$3, var$4, var$5; - if (!$rt_isInstance($obj, oncie_Parameter)) - var$3 = 0; - else - a: { - b: { - $obj = $obj; - if ($obj.$canEqual($$this)) { - c: { - var$4 = $$this.$name(); - var$5 = $obj.$name(); - if (var$4 !== null) { - if (!jl_String_equals(var$4, var$5)) - break b; - else - break c; - } - if (var$5 !== null) - break b; - } - d: { - var$4 = $$this.$parameterType(); - var$5 = $obj.$parameterType(); - if (var$4 !== null) { - if (!var$4.$equals(var$5)) - break b; - else - break d; - } - if (var$5 !== null) - break b; +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1_applyOrElse = ($this, $x1, $default) => { + let var$3, $deprecatedBy, var$5, $deprecationWarnings, $inputFields, $name, $inputFields_0, var$10, $deprecatedBy_0; + var$3 = 0; + $deprecatedBy = null; + var$5 = 0; + $deprecationWarnings = null; + if ($x1 instanceof oncifp_ResolvedCall) { + var$3 = 1; + $deprecatedBy = $x1; + $inputFields = $deprecatedBy.$signature; + if ($inputFields !== null) { + $name = $inputFields.$name10; + $inputFields_0 = $inputFields.$inputSignature0; + $inputFields = $inputFields.$deprecationInfo; + if ($inputFields instanceof s_Some) { + $inputFields = $inputFields.$value5; + if ($inputFields !== null) { + var$10 = $inputFields.$isDeprecated(); + $deprecatedBy_0 = $inputFields.$deprecatedBy(); + if (1 == var$10) { + $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0; + $x1.$_01023 = $inputFields_0; + $x1.$_1350 = $deprecatedBy; + $x1.$_2117 = $name; + $x1.$_335 = $deprecatedBy_0; + return $x1; } - e: { - $$this = $$this.$sizeHint1(); - $obj = $obj.$sizeHint1(); - if ($$this !== null) { - if (!jl_Object_equals($$this, $obj)) - break b; - else - break e; + } + } + } + } + if (var$3) { + $inputFields = $deprecatedBy.$signature; + if ($inputFields !== null) { + $name = $inputFields.$name10; + $inputFields_0 = $inputFields.$inputSignature0; + if (sc_IterableOnceOps_exists$($inputFields_0, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1)) { + $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2; + $x1.$_0122 = $inputFields_0; + $x1.$_141 = $deprecatedBy; + $x1.$_221 = $name; + return $x1; + } + } + } + if ($x1 instanceof oncifp_ResolvedFunctionInvocation) { + var$5 = 1; + $deprecationWarnings = $x1; + $deprecatedBy = $deprecationWarnings.$fcnSignature; + if ($deprecatedBy instanceof s_Some) { + $deprecatedBy = $deprecatedBy.$value5; + if ($deprecatedBy !== null) { + $name = $deprecatedBy.$name16; + $inputFields = $deprecatedBy.$inputSignature; + $deprecatedBy = $deprecatedBy.$deprecationInfo0; + if ($deprecatedBy instanceof s_Some) { + $deprecatedBy = $deprecatedBy.$value5; + if ($deprecatedBy !== null) { + var$3 = $deprecatedBy.$isDeprecated(); + $deprecatedBy = $deprecatedBy.$deprecatedBy(); + if (1 == var$3) { + $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3; + $x1.$_0606 = $inputFields; + $x1.$_1204 = $deprecationWarnings; + $x1.$_267 = $name; + $x1.$_322 = $deprecatedBy; + return $x1; } - if ($obj !== null) - break b; } - var$3 = 1; - break a; } } - var$3 = 0; } - return var$3; + } + if (var$5) { + $name = $deprecationWarnings.$qualifiedName; + $deprecatedBy = $deprecationWarnings.$fcnSignature; + if ($deprecatedBy instanceof s_Some) { + $deprecatedBy = $deprecatedBy.$value5; + if ($deprecatedBy !== null) { + $inputFields = $deprecatedBy.$inputSignature; + if (sc_IterableOnceOps_exists$($inputFields, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4)) { + $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5; + $x1.$_0854 = $inputFields; + $x1.$_1287 = $deprecationWarnings; + $x1.$_292 = $name; + return $x1; + } + } + } + } + if (!($x1 instanceof oncie_FunctionInvocation)) { + if (!($x1 instanceof oncia_UnresolvedCall)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $rt_throw(one_InternalException__init_($rt_s(3723))); + } + $x1 = $x1; + $default = $x1.$function1.$signatures(); + $deprecatedBy = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6; + $deprecatedBy.$_0198 = $x1; + $default = ($default.$filter1($deprecatedBy)).$map(new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7); + $deprecatedBy = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8; + $deprecatedBy.$_0312 = $x1; + $deprecationWarnings = $default.$map($deprecatedBy); + $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9; + $x1.$_0913 = $deprecationWarnings; + return $x1; }, -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_2 = $rt_classWithoutFields(), -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_2_apply = var$0 => { - oncifp_ObfuscationMetadataCollection$_$callClinit(); - s_Predef$_$callClinit(); - return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); +oncifp_ProcedureWarnings$$anonfun$findWarnings$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncifp_ProcedureWarnings$$anonfun$findWarnings$1_applyOrElse = ($this, $x1, $default) => { + let var$3, $output, $warning, $name, $results; + var$3 = 0; + $output = null; + if ($x1 instanceof oncifp_ResolvedCall) { + var$3 = 1; + $output = $x1; + $warning = $output.$signature; + if ($warning !== null) { + $name = $warning.$name10; + $warning = $warning.$warning0; + if ($warning instanceof s_Some) { + $warning = $warning.$value5; + $x1 = new oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0; + $x1.$_07 = $output; + $x1.$_19 = $name; + $x1.$_28 = $warning; + return $x1; + } + } + } + if (var$3) { + $warning = $output.$signature; + $results = $output.$callResults; + if ($warning !== null) { + $name = $warning.$name10; + $output = $warning.$outputSignature; + if ($output instanceof s_Some) { + $output = $output.$value5; + if (sc_IterableOnceOps_exists$($output, new oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1)) { + $x1 = new oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2; + $x1.$_0126 = $name; + $x1.$_143 = $results; + $x1.$_222 = $output; + return $x1; + } + } + } + } + if (!($x1 instanceof oncia_UnresolvedCall)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $rt_throw(one_InternalException__init_($rt_s(3723))); +}, +oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1_applyOrElse = ($this, $x1, $default) => { + let var$3, $signature, var$5, var$6; + if ($x1 instanceof oncifp_ResolvedCall) { + var$3 = $x1; + $signature = var$3.$signature; + var$5 = var$3.$callResults; + var$6 = var$3.$optional3; + if (var$5 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$5); + if (!var$5.$lengthCompare(0) && 1 == var$6) { + $x1 = new oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0; + $x1.$_01090 = var$3; + $x1.$_1370 = $signature; + return $x1; + } + } + } + if (!($x1 instanceof oncia_UnresolvedCall)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $rt_throw(one_InternalException__init_($rt_s(3723))); +}, +oncifp_ObfuscationMetadataCollection$$$anonfun$process$1$lambda$_23_0 = $rt_classWithoutFields(), +oncifp_ObfuscationMetadataCollection$$$anonfun$process$1$lambda$_23_0_apply = (var$0, var$1) => { + return var$1.$name29; +}, +sc_AbstractMapView = $rt_classWithoutFields(sc_AbstractView), +sc_AbstractMapView_mapValues = ($this, $f) => { + let var$2; + var$2 = new sc_MapView$MapValues; + var$2.$underlying33 = $this; + var$2.$f8 = $f; + return var$2; }; -function onciu_ObfuscationMetadata() { +function sc_MapView$Id() { + sc_AbstractMapView.call(this); + this.$underlying30 = null; +} +let sc_MapView$Id_iterator = $this => { + return $this.$underlying30.$iterator0(); +}, +sc_MapView$Id_knownSize = $this => { + return $this.$underlying30.$knownSize(); +}, +oncir_RewriterStep$ = $rt_classWithoutFields(), +oncir_RewriterStep$_MODULE$ = null, +oncir_RewriterStep$__clinit_ = () => { + oncir_RewriterStep$_MODULE$ = new oncir_RewriterStep$; +}; +function scc_JavaCollectionWrappers$IteratorWrapper() { + jl_Object.call(this); + this.$underlying14 = null; +} +let scc_JavaCollectionWrappers$IteratorWrapper_hasNext = $this => { + return $this.$underlying14.$hasNext(); +}, +scc_JavaCollectionWrappers$IteratorWrapper_next = $this => { + return $this.$underlying14.$next(); +}, +oncias_Scope$ = $rt_classWithoutFields(), +oncias_Scope$_MODULE$ = null, +oncias_Scope$_empty0 = null, +oncias_Scope$_$callClinit = () => { + oncias_Scope$_$callClinit = $rt_eraseClinit(oncias_Scope$); + oncias_Scope$__clinit_(); +}, +oncias_Scope$__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new oncias_Scope$; + oncias_Scope$_$callClinit(); + oncias_Scope$_MODULE$ = var$1; + var$2 = new oncias_Scope; + sci_HashMap$_$callClinit(); + var$3 = sci_HashMap$_empty(sci_HashMap$_MODULE$); + s_package$_$callClinit(); + oncias_Scope__init_(var$2, var$3, (s_package$_Vector(s_package$_MODULE$)).$from0(sci_Nil$_MODULE$)); + oncias_Scope$_empty0 = var$2; +}, +oncias_Scope$_empty = $this => { + oncias_Scope$_$callClinit(); + return oncias_Scope$_empty0; +}; +function onciuh_TreeZipper() { let a = this; jl_Object.call(a); - a.$sensitiveLiteralOffsets = null; - a.$sensitiveParameterNames = null; + a.$Top$module = null; + a.$org$neo4j$cypher$internal$util$helpers$TreeZipper$$evidence$1 = null; } -let onciu_ObfuscationMetadata_productPrefix = $this => { - return $rt_s(3658); +let onciuh_TreeZipper_Top = $this => { + let var$1, $$je; + if ($this.$Top$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$Top$module !== null) + break a; + $this.$Top$module = onciuh_TreeZipper$Top$__init_0($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + } + return $this.$Top$module; }, -onciu_ObfuscationMetadata_productArity = $this => { +oncias_SemanticState$ScopeZipper$ = $rt_classWithoutFields(onciuh_TreeZipper), +oncias_SemanticState$ScopeZipper$_MODULE$ = null, +oncias_SemanticState$ScopeZipper$_$callClinit = () => { + oncias_SemanticState$ScopeZipper$_$callClinit = $rt_eraseClinit(oncias_SemanticState$ScopeZipper$); + oncias_SemanticState$ScopeZipper$__clinit_(); +}, +oncias_SemanticState$ScopeZipper$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticState$ScopeZipper$; + oncias_SemanticState$ScopeZipper$_$callClinit(); + sr_ClassTag$_$callClinit(); + var$1.$org$neo4j$cypher$internal$util$helpers$TreeZipper$$evidence$1 = sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncias_Scope)); + oncias_SemanticState$ScopeZipper$_MODULE$ = var$1; +}, +onciuh_TreeElem = $rt_classWithoutFields(0); +function oncias_Scope() { + let a = this; jl_Object.call(a); + a.$symbolTable = null; + a.$children2 = null; +} +let oncias_Scope_symbol = ($this, $name) => { + return $this.$symbolTable.$get2($name); +}, +oncias_Scope_symbolNames = $this => { + return $this.$symbolTable.$keySet0(); +}, +oncias_Scope_allSymbolDefinitions = $this => { + let var$1; + var$1 = oncias_Scope_allScopes($this); + s_Predef$_$callClinit(); + return var$1.$foldLeft(sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)), new oncias_Scope$allSymbolDefinitions$lambda$_15_0); +}, +oncias_Scope_allSymbols = $this => { + let var$1; + var$1 = oncias_Scope_allScopes($this); + s_Predef$_$callClinit(); + return var$1.$foldLeft(sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)), new oncias_Scope$allSymbols$lambda$_16_0); +}, +oncias_Scope_symbolDefinitions = $this => { + return sc_AbstractIterable_toSet(sc_AbstractIterable_map(sc_AbstractMap_values($this.$symbolTable), new oncias_Scope$symbolDefinitions$lambda$_17_0)); +}, +oncias_Scope_allScopes = $this => { + return (sci_$colon$colon__init_($this, sci_Nil$_MODULE$)).$concat($this.$children2.$flatMap(new oncias_Scope$allScopes$lambda$_20_0)); +}, +oncias_Scope_toString = $this => { + let $builder; + $builder = scm_StringBuilder__init_(); + oncias_Scope_dumpSingle($this, $rt_s(4), $builder); + return scm_StringBuilder_result($builder); +}, +oncias_Scope_dumpSingle = ($this, $indent, $builder) => { + let var$3, var$4, var$5; + onciu_Ref$_$callClinit(); + var$3 = onciu_Ref_toIdString(onciu_Ref$_apply(onciu_Ref$_MODULE$, $this)); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(var$4, 35); + jl_StringBuilder_append(var$4, var$3); + var$4 = jl_AbstractStringBuilder_toString(var$4); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $indent), var$4), $rt_s(568)), $rt_s(94)); + scm_StringBuilder_append($builder, jl_AbstractStringBuilder_toString(var$5)); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(83)), $indent); + var$5 = jl_AbstractStringBuilder_toString(var$3); + var$3 = sc_IterableOnceOps_toSeq$($this.$symbolTable.$keySet()); + sm_Ordering$String$_$callClinit(); + var$4 = var$3.$sorted(sm_Ordering$String$_MODULE$); + var$3 = new oncias_Scope$dumpTree$lambda$_24_0; + var$3.$_0115 = $this; + var$3.$_139 = $builder; + var$3.$_220 = var$5; + var$4.$foreach(var$3); + var$4 = $this.$children2; + var$3 = new oncias_Scope$dumpTree$lambda$_24_1; + var$3.$_0641 = var$5; + var$3.$_1216 = $builder; + var$4.$foreach(var$3); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + $indent = jl_StringBuilder_append(var$4, $indent); + jl_AbstractStringBuilder_append0($indent, 125); + jl_StringBuilder_append($indent, $rt_s(94)); + scm_StringBuilder_append($builder, jl_AbstractStringBuilder_toString(var$4)); +}, +oncias_Scope_copy = ($this, $symbolTable, $children) => { + return oncias_Scope__init_0($symbolTable, $children); +}, +oncias_Scope_productPrefix = $this => { + return $rt_s(3724); +}, +oncias_Scope_productArity = $this => { return 2; }, -onciu_ObfuscationMetadata_productElement = ($this, $x$1) => { +oncias_Scope_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$sensitiveLiteralOffsets; + return $this.$symbolTable; case 1: - return $this.$sensitiveParameterNames; + return $this.$children2; default: } return sr_Statics_ioobe($x$1); }, -onciu_ObfuscationMetadata_productIterator = $this => { +oncias_Scope_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_ObfuscationMetadata_hashCode = $this => { +oncias_Scope_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_ObfuscationMetadata_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_ObfuscationMetadata_equals = ($this, $x$1) => { +oncias_Scope_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { c: { if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_ObfuscationMetadata) ? 0 : 1)) + if (!(!($x$1 instanceof oncias_Scope) ? 0 : 1)) break b; d: { $x$1 = $x$1; - var$2 = $this.$sensitiveLiteralOffsets; - var$3 = $x$1.$sensitiveLiteralOffsets; + var$2 = $this.$symbolTable; + var$3 = $x$1.$symbolTable; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -76248,8 +78551,8 @@ onciu_ObfuscationMetadata_equals = ($this, $x$1) => { if (var$3 !== null) break b; } - var$3 = $this.$sensitiveParameterNames; - $x$1 = $x$1.$sensitiveParameterNames; + var$3 = $this.$children2; + $x$1 = $x$1.$children2; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; @@ -76266,190 +78569,99 @@ onciu_ObfuscationMetadata_equals = ($this, $x$1) => { var$4 = 0; } return var$4; -}; -function oncifp_PreparatoryRewriting$$process$lambda$_9_0() { - jl_Object.call(this); - this.$_0998 = null; -} -let oncifp_PreparatoryRewriting$$process$lambda$_9_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0998; - oncifp_PreparatoryRewriting$_$callClinit(); - var$2 = var$1.$getRewriter(cnsa_EnrichedContext_cypherExceptionFactory(var$2)); - var$3 = onciu_CancellationChecker$NeverCancelled$_MODULE$; - if (onciu_AssertionRunner_isAssertionsEnabled()) { - var$4 = new oncir_ValidatingRewriter; - var$4.$inner4 = var$2; - var$4.$step2 = var$1; - var$4.$cancellationChecker = var$3; - var$2 = var$4; - } - return var$2; }, -onciu_inSequence$ = $rt_classWithoutFields(), -onciu_inSequence$_MODULE$ = null, -onciu_inSequence$__clinit_ = () => { - onciu_inSequence$_MODULE$ = new onciu_inSequence$; -}; -function sr_ScalaRunTime$$anon$1() { - let a = this; sc_AbstractIterator.call(a); - a.$c = 0; - a.$cmax = 0; - a.$x$2 = null; -} -let sr_ScalaRunTime$$anon$1_hasNext = $this => { - if ($this.$c >= $this.$cmax) - return 0; - return 1; +oncias_Scope_updateChildren = ($this, $newChildren) => { + return oncias_Scope_copy($this, $this.$symbolTable, $newChildren); }, -sr_ScalaRunTime$$anon$1_next = $this => { - let $result; - $result = $this.$x$2.$productElement($this.$c); - $this.$c = $this.$c + 1 | 0; - return $result; +oncias_Scope__init_ = ($this, $symbolTable, $children) => { + $this.$symbolTable = $symbolTable; + $this.$children2 = $children; }, -sr_ScalaRunTime$$anon$1__init_0 = ($this, $x$2) => { - $this.$x$2 = $x$2; - $this.$c = 0; - $this.$cmax = $x$2.$productArity(); +oncias_Scope__init_0 = (var_0, var_1) => { + let var_2 = new oncias_Scope(); + oncias_Scope__init_(var_2, var_0, var_1); + return var_2; }, -sr_ScalaRunTime$$anon$1__init_ = var_0 => { - let var_1 = new sr_ScalaRunTime$$anon$1(); - sr_ScalaRunTime$$anon$1__init_0(var_1, var_0); - return var_1; -}; -function scm_HashSet$subtractAll$lambda$_53_0() { - jl_Object.call(this); - this.$_01013 = null; -} -let scm_HashSet$subtractAll$lambda$_53_0_apply = (var$0, var$1, var$2) => { - return jl_Boolean_valueOf(scm_HashSet_$anonfun$subtractAll$1(var$0.$_01013, var$1, sr_BoxesRunTime_unboxToInt(var$2))); +oncia_ASTAnnotationMap$ = $rt_classWithoutFields(), +oncia_ASTAnnotationMap$_MODULE$ = null, +oncia_ASTAnnotationMap$__clinit_ = () => { + oncia_ASTAnnotationMap$_MODULE$ = new oncia_ASTAnnotationMap$; }, -sc_AbstractMapView = $rt_classWithoutFields(sc_AbstractView), -sc_AbstractMapView_mapValues = ($this, $f) => { - let var$2; - var$2 = new sc_MapView$MapValues; - var$2.$underlying36 = $this; - var$2.$f8 = $f; - return var$2; -}; -function sc_MapView$Id() { - sc_AbstractMapView.call(this); - this.$underlying31 = null; -} -let sc_MapView$Id_iterator = $this => { - return $this.$underlying31.$iterator0(); +oncia_ASTAnnotationMap$_empty = $this => { + s_Predef$_$callClinit(); + return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); }, -sc_MapView$Id_knownSize = $this => { - return $this.$underlying31.$knownSize(); -}; -function s_Function1$andThen$lambda$_5_0() { - let a = this; jl_Object.call(a); - a.$_01083 = null; - a.$_1364 = null; -} -let s_Function1$andThen$lambda$_5_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_01083; - return var$0.$_1364.$apply2(onciu_bottomUp$BottomUpRewriter_apply(var$2, var$1)); -}; -function sc_Iterator$ConcatIterator() { - let a = this; sc_AbstractIterator.call(a); - a.$current = null; - a.$tail4 = null; - a.$last0 = null; - a.$currentHasNextChecked = 0; -} -let sc_Iterator$ConcatIterator_hasNext = $this => { - let var$1, var$2, var$3, var$4; - if ($this.$currentHasNextChecked) - return 1; - var$1 = $this.$current; - if (var$1 === null) - return 0; - if (var$1.$hasNext()) { - $this.$currentHasNextChecked = 1; - return 1; - } - a: { - while (true) { - var$1 = $this.$tail4; - if (var$1 === null) { - $this.$current = null; - $this.$last0 = null; - var$2 = 0; - break a; - } - $this.$current = (var$1.$head5.$apply4()).$iterator0(); - var$1 = $this.$last0; - var$3 = $this.$tail4; - if (var$1 === var$3) - $this.$last0 = var$1.$tail5; - $this.$tail4 = var$3.$tail5; - while (true) { - var$1 = $this.$current; - if (!(var$1 instanceof sc_Iterator$ConcatIterator)) - break; - var$1 = var$1; - $this.$current = var$1.$current; - $this.$currentHasNextChecked = var$1.$currentHasNextChecked; - var$4 = var$1.$tail4; - if (var$4 === null) - continue; - if ($this.$last0 === null) - $this.$last0 = var$1.$last0; - var$1.$last0.$tail5 = $this.$tail4; - $this.$tail4 = var$4; - } - if ($this.$currentHasNextChecked) - break; - if (var$1 === null) - continue; - if (!var$1.$hasNext()) - continue; - else { - $this.$currentHasNextChecked = 1; - var$2 = 1; - break a; - } - } - var$2 = 1; - } - return var$2; +oncias_SemanticFeature$UseAsMultipleGraphsSelector$ = $rt_classWithoutFields(), +oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$ = null, +oncias_SemanticFeature$UseAsMultipleGraphsSelector$__clinit_ = () => { + oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$ = new oncias_SemanticFeature$UseAsMultipleGraphsSelector$; }, -sc_Iterator$ConcatIterator_next = $this => { - if (!sc_Iterator$ConcatIterator_hasNext($this)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - $this.$currentHasNextChecked = 0; - return $this.$current.$next(); +oncias_SemanticFeature$UseAsMultipleGraphsSelector$_toString = $this => { + return $this.$name(); }, -sc_Iterator$ConcatIterator_concat = ($this, $that) => { - let $c, var$3; - $c = new sc_Iterator$ConcatIteratorCell; - var$3 = null; - $c.$head5 = $that; - $c.$tail5 = var$3; - if ($this.$tail4 === null) { - $this.$tail4 = $c; - $this.$last0 = $c; - } else { - $this.$last0.$tail5 = $c; - $this.$last0 = $c; - } - if ($this.$current === null) - $this.$current = sc_Iterator$_scala$collection$Iterator$$_empty; - return $this; +oncias_SemanticFeature$UseAsMultipleGraphsSelector$_name = $this => { + return $rt_s(3725); +}, +oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productArity = $this => { + return 0; +}, +oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticFeature$UseAsMultipleGraphsSelector$_hashCode = $this => { + return 164738413; +}, +oncias_SemanticCheck = $rt_classWithoutFields(0), +oncias_SemanticCheck_run$ = ($$this, $state, $context) => { + let var$4, var$5, var$6; + var$4 = oncias_SemanticCheckInterpreter$_MODULE$; + var$5 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, $state); + var$6 = sci_$colon$colon__init_(oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $$this), sci_Nil$_MODULE$); + s_package$_$callClinit(); + return oncias_SemanticCheckInterpreter$_run(var$4, var$5, var$6, $context, sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$))); +}, +oncias_SemanticCheck_chain$ = ($$this, $next) => { + let var$3; + var$3 = new oncias_SemanticCheck$chain$lambda$_15_0; + var$3.$_048 = $next; + return $$this.$flatMap3(var$3); +}, +oncias_SemanticCheck_ifOkChain$ = ($$this, $next) => { + let var$3; + var$3 = new oncias_SemanticCheck$ifOkChain$lambda$_17_0; + var$3.$_0706 = $next; + return $$this.$flatMap3(var$3); +}, +oncias_SemanticCheck_map$ = ($$this, $f) => { + let var$3; + var$3 = new oncias_SemanticCheck$Map; + var$3.$check10 = $$this; + var$3.$f3 = $f; + return var$3; +}, +oncias_SemanticCheck_flatMap$ = ($$this, $f) => { + let var$3; + var$3 = new oncias_SemanticCheck$FlatMap; + var$3.$check8 = $$this; + var$3.$f6 = $f; + return var$3; }; -function scc_JavaCollectionWrappers$IteratorWrapper() { +function oncias_ScopeTreeVerifier$$verify$lambda$_1_0() { jl_Object.call(this); - this.$underlying15 = null; + this.$_0715 = null; } -let scc_JavaCollectionWrappers$IteratorWrapper_hasNext = $this => { - return $this.$underlying15.$hasNext(); -}, -scc_JavaCollectionWrappers$IteratorWrapper_next = $this => { - return $this.$underlying15.$next(); +let oncias_ScopeTreeVerifier$$verify$lambda$_1_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0715; + var$3 = var$1.$symbolTable; + var$4 = new oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1; + var$4.$scope$1 = var$1; + var$4.$root$1 = var$2; + return var$3.$collect(var$4); }, oncius_CypherType$$anonfun$1 = $rt_classWithoutFields(), oncius_CypherType$$anonfun$1_compare = ($this, $x, $y) => { @@ -76502,345 +78714,446 @@ oncius_ClosedDynamicUnionType$_init_$lambda$_70_2 = $rt_classWithoutFields(), oncius_ClosedDynamicUnionType$_init_$lambda$_70_2_apply = (var$0, var$1) => { return var$1.$description(); }; -function oncirr_expandStar$$anonfun$1() { - sr_AbstractPartialFunction.call(this); - this.$$outer9 = null; +function oncifp_BaseState$statement$lambda$_12_0() { + jl_Object.call(this); + this.$_01001 = null; } -let oncirr_expandStar$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let $newReturnItems, var$4, $excludedNames, $x$10, $x$16, $x$8, $expandedItems; - if ($x1 instanceof oncia_With) { - $default = $x1; - $newReturnItems = $default.$returnItems4; - var$4 = $newReturnItems.$includeExisting0; - if (var$4) { - if (var$4) { - $x1 = $this.$$outer9; - $newReturnItems = oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems($x1, $default, $newReturnItems.$items0, $newReturnItems.$defaultOrderOnColumns, oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$default$4($x1)); - } - return oncia_With_copy($default, $default.$distinct2, $newReturnItems, $default.$orderBy4, $default.$skip5, $default.$limit5, $default.$where2, $default.$withType, $default.$position36); - } - } - if ($x1 instanceof oncia_Return) { - $default = $x1; - $newReturnItems = $default.$returnItems2; - $excludedNames = $default.$excludedNames; - var$4 = $newReturnItems.$includeExisting0; - if (var$4) { - if (var$4) - $newReturnItems = oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems($this.$$outer9, $default, $newReturnItems.$items0, $newReturnItems.$defaultOrderOnColumns, $excludedNames); - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - $x$10 = sci_Set$EmptySet$_MODULE$; - return oncia_Return_copy($default, $default.$distinct1, $newReturnItems, $default.$orderBy2, $default.$skip3, $default.$limit3, $x$10, $default.$addedInRewrite, $default.$position29); - } - } - if ($x1 instanceof oncia_Yield) { - $default = $x1; - $newReturnItems = $default.$returnItems3; - var$4 = $newReturnItems.$includeExisting0; - if (var$4) { - if (var$4) { - $x1 = $this.$$outer9; - $newReturnItems = oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems($x1, $default, $newReturnItems.$items0, $newReturnItems.$defaultOrderOnColumns, oncirr_expandStar_org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$default$4($x1)); - } - return oncia_Yield_copy($default, $newReturnItems, $default.$orderBy3, $default.$skip4, $default.$limit4, $default.$where3, $default.$position21); - } - } - if ($x1 instanceof oncia_ScopeClauseSubqueryCall) { - $default = $x1; - if (1 == $default.$isImportingAll) { - $x1 = $this.$$outer9; - $newReturnItems = oncias_SemanticState_scope($x1.$state3, $default); - $excludedNames = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0; - $excludedNames.$_01199 = $default; - $newReturnItems = s_Option_getOrElse($newReturnItems, $excludedNames); - $excludedNames = oncias_SemanticState$ScopeLocation$_MODULE$; - $x$16 = $x1.$state3.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - $x1 = oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $default); - $x$8 = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_1; - $x$8.$_01178 = $default; - $x1 = oncias_Scope_symbolNames(((oncias_SemanticState$ScopeLocation$_parent$extension($excludedNames, ($x$16.$getOrElse1($x1, $x$8)).$location)).$get1()).$location.$elem0); - $x$10 = $default.$position64; - $excludedNames = ($default.$innerQuery0.$returnVariables()).$explicitVariables.$map(new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_2); - $x$8 = s_Option_flatMap($default.$inTransactionsParameters0, new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_3); - $newReturnItems = (((oncias_Scope_symbolNames($newReturnItems)).$concat1($x1)).$removedAll($excludedNames)).$removedAll($x$8); - $x1 = new oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4; - $x1.$_0734 = $x$10; - $expandedItems = ($newReturnItems.$map($x1)).$toSeq(); - return oncia_ScopeClauseSubqueryCall_copy($default, $default.$innerQuery0, 0, $expandedItems, $default.$inTransactionsParameters0, $default.$optional2, $default.$position64); - } - } - return $x1; +let oncifp_BaseState$statement$lambda$_12_0_apply = var$0 => { + return oncifp_InitialState_fail(var$0.$_01001, $rt_s(3726)); }; -function onciu_Foldable$Folder() { - let a = this; jl_Object.call(a); - a.$foldedOver0 = null; - a.$cancellation = null; +function oncifp_BaseState$semantics$lambda$_16_0() { + jl_Object.call(this); + this.$_0 = null; } -let onciu_Foldable$Folder_treeCollect = ($this, $f) => { - let var$2, var$3; - s_package$_$callClinit(); - var$2 = sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)); - var$3 = new onciu_Foldable$Folder$$anonfun$treeCollect$1; - var$3.$f$1 = $f; - return onciu_Foldable$Folder_fold($this, var$2, var$3); +let oncifp_BaseState$semantics$lambda$_16_0_apply = var$0 => { + return oncifp_InitialState_fail(var$0.$_0, $rt_s(3727)); }, -onciu_Foldable$Folder_fold = ($this, $init, $f) => { - let var$3, var$4, var$5, var$6, var$7; - var$3 = scm_Stack$_MODULE$; - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(jl_Object, 1); - var$5.data[0] = $this.$foldedOver0; - var$3 = var$3.$from0(sr_ScalaRunTime$_genericWrapArray(var$4, var$5)); - $f = $f.$lift0(); - while (!scm_ArrayDeque_isEmpty(var$3)) { - var$6 = scm_Stack_pop(var$3); - onciu_Foldable$TreeAny$_$callClinit(); - var$3 = scm_Stack_pushAll(var$3, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$6)); - var$4 = s_PartialFunction$Lifted_apply($f, var$6); - var$6 = new onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0; - var$6.$_061 = $init; - var$7 = new onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1; - var$7.$_0619 = $init; - $init = s_Option_fold(var$4, var$6, var$7); - } - return $init; +sci_ListSet = $rt_classWithoutFields(sci_AbstractSet), +onciuci_ListSet$ = $rt_classWithoutFields(), +onciuci_ListSet$_MODULE$ = null, +onciuci_ListSet$__clinit_ = () => { + onciuci_ListSet$_MODULE$ = new onciuci_ListSet$; }, -onciu_Foldable$Folder_treeFold = ($this, $init, $f) => { - let var$3, var$4, var$5, var$6, var$7, var$8; - var$3 = scm_Stack$_MODULE$; - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(jl_Object, 1); - var$5.data[0] = $this.$foldedOver0; - var$3 = var$3.$from0(sr_ScalaRunTime$_genericWrapArray(var$4, var$5)); - var$4 = new onciu_Foldable$Folder$$anonfun$treeFold$1; - var$4.$$outer70 = $this; - var$6 = s_PartialFunction_lift$(sr_AbstractPartialFunction_andThen($f, var$4)); - $f = scm_Stack__init_(16); - a: { - b: while (true) { - if (scm_ArrayDeque_isEmpty(var$3)) { - if (scm_ArrayDeque_isEmpty($f)) - break; - var$3 = scm_Stack_pop($f); - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$7 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); - var$3 = var$7.$_10; - $init = var$7.$_20.$apply2($init); - continue; - } - var$7 = scm_Stack_pop(var$3); - var$4 = s_PartialFunction$Lifted_apply(var$6, var$7); - if (jl_Object_equals(s_None$_MODULE$, var$4)) { - if (!0) { - onciu_Foldable$TreeAny$_$callClinit(); - var$4 = onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$7); - } else { - onciu_Foldable$TreeAny$_$callClinit(); - var$4 = onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$7); - } - var$3 = scm_Stack_pushAll(var$3, var$4); - continue; +onciuci_ListSet$_from = ($this, $it) => { + if ($it instanceof onciuci_ListSet) + return $it; + if (!$it.$knownSize()) + return onciuci_ListSet$_empty($this); + return ((onciuci_ListSet$_newBuilder($this)).$addAll0($it)).$result(); +}, +onciuci_ListSet$_empty = $this => { + onciuci_ListSet$EmptyListSet$_$callClinit(); + return onciuci_ListSet$EmptyListSet$_MODULE$; +}, +onciuci_ListSet$_newBuilder = $this => { + let var$1; + var$1 = new onciuci_ListSet$Builder; + var$1.$javaSet = ju_LinkedHashSet__init_0(); + return var$1; +}, +onciuci_ListSet$_from0 = ($this, $source) => { + return onciuci_ListSet$_from($this, $source); +}; +function onciuci_ListSet() { + let a = this; sci_AbstractSet.call(a); + a.$underlying5 = null; + a.$hashCode10 = 0; +} +let onciuci_ListSet_partition = ($this, $p) => { + return sc_StrictOptimizedIterableOps_partition$($this, $p); +}, +onciuci_ListSet_map = ($this, $f) => { + return sc_StrictOptimizedIterableOps_map$($this, $f); +}, +onciuci_ListSet_flatMap = ($this, $f) => { + return sc_StrictOptimizedIterableOps_flatMap$($this, $f); +}, +onciuci_ListSet_collect = ($this, $pf) => { + return sc_StrictOptimizedIterableOps_collect$($this, $pf); +}, +onciuci_ListSet_flatten = ($this, $toIterableOnce) => { + return sc_StrictOptimizedIterableOps_flatten$($this, $toIterableOnce); +}, +onciuci_ListSet_filter = ($this, $pred) => { + return sc_StrictOptimizedIterableOps_filter$($this, $pred); +}, +onciuci_ListSet_filterNot = ($this, $pred) => { + return sc_StrictOptimizedIterableOps_filterNot$($this, $pred); +}, +onciuci_ListSet_filterImpl = ($this, $pred, $isFlipped) => { + return sc_StrictOptimizedIterableOps_filterImpl$($this, $pred, $isFlipped); +}, +onciuci_ListSet_className = $this => { + return $rt_s(3728); +}, +onciuci_ListSet_size = $this => { + return ju_HashSet_size($this.$underlying5); +}, +onciuci_ListSet_isEmpty = $this => { + return ju_HashSet_isEmpty($this.$underlying5); +}, +onciuci_ListSet_knownSize = $this => { + if (ju_HashSet_isEmpty($this.$underlying5)) + return 0; + return (-1); +}, +onciuci_ListSet_incl0 = ($this, $elem) => { + let $newJava; + if (onciuci_ListSet_contains($this, $elem)) + return $this; + $newJava = ju_LinkedHashSet__init_($this.$underlying5); + ju_HashSet_add($newJava, $elem); + return onciuci_ListSet__init_($newJava); +}, +onciuci_ListSet_excl0 = ($this, $elem) => { + let $newJava; + $newJava = ju_LinkedHashSet__init_($this.$underlying5); + ju_HashSet_remove($newJava, $elem); + return onciuci_ListSet__init_($newJava); +}, +onciuci_ListSet_contains = ($this, $elem) => { + return ju_HashSet_contains($this.$underlying5, $elem); +}, +onciuci_ListSet_iterator = $this => { + return scc_AsScalaExtensions$IteratorHasAsScala_asScala(scc_AsScalaExtensions$IteratorHasAsScala__init_(sj_CollectionConverters$_MODULE$, ju_HashSet_iterator($this.$underlying5))); +}, +onciuci_ListSet_iterableFactory = $this => { + return onciuci_ListSet$_MODULE$; +}, +onciuci_ListSet_concat0 = ($this, $that) => { + let $it; + $it = $that.$iterator0(); + if ($it.$isEmpty()) + return $this; + return ((scm_Growable_addAll$(onciuci_ListSet$_newBuilder(onciuci_ListSet$_MODULE$), $this)).$addAll0($it)).$result(); +}, +onciuci_ListSet_removedAll = ($this, $that) => { + let $it, $newJava, var$4, var$5; + $it = $that.$iterator0(); + if ($it.$isEmpty()) + return $this; + $newJava = ju_LinkedHashSet__init_($this.$underlying5); + if (!($that instanceof onciuci_ListSet)) { + $that = new onciuci_ListSet$removedAll$lambda$_51_0; + $that.$_0354 = $newJava; + $it.$foreach($that); + } else { + var$4 = $that.$underlying5; + var$5 = 0; + if (ju_HashSet_size($newJava) >= ju_HashSet_size(var$4)) { + $that = ju_HashSet_iterator(var$4); + while ($that.$hasNext()) { + if (!ju_HashSet_remove($newJava, $that.$next())) + continue; + var$5 = 1; } - if (!(var$4 instanceof s_Some)) - $rt_throw(s_MatchError__init_(var$4)); - c: { - var$8 = var$4.$value5.$apply2($init); - if (var$8 !== null) { - $init = var$8.$_1(); - var$4 = var$8.$_2(); - if (var$4 instanceof s_Some) - break c; + } else { + $that = ju_HashSet_iterator($newJava); + while ($that.$hasNext()) { + if (ju_HashSet_contains(var$4, $that.$next())) { + var$5 = 1; + $that.$remove2(); } - if (var$8 === null) - break a; - $init = var$8.$_1(); - var$4 = var$8.$_2(); - if (!jl_Object_equals(s_None$_MODULE$, var$4)) - break a; - continue b; } - scm_Stack_push($f, s_Tuple2__init_(var$3, var$4.$value5)); - if (!0) { - onciu_Foldable$TreeAny$_$callClinit(); - var$7 = onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$7); - } else { - onciu_Foldable$TreeAny$_$callClinit(); - var$7 = onciu_Foldable$TreeAny$_treeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$7); - } - var$3 = scm_Stack_pushAll(scm_Stack$_MODULE$.$from0(sci_Nil$_MODULE$), var$7); } - return $init; + jl_Boolean_valueOf(var$5); } - $rt_throw(s_MatchError__init_(var$8)); + return onciuci_ListSet__init_($newJava); }, -onciu_Foldable$Folder_treeExists = ($this, $f) => { - let var$2, var$3, var$4, var$5; - var$2 = onciu_Foldable$_MODULE$; - var$3 = scm_Stack$_MODULE$; - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(jl_Object, 1); - var$5.data[0] = $this.$foldedOver0; - return onciu_Foldable$_org$neo4j$cypher$internal$util$Foldable$$existsAcc(var$2, var$3.$from0(sr_ScalaRunTime$_genericWrapArray(var$4, var$5)), s_PartialFunction_lift$($f), $this.$cancellation); +onciuci_ListSet_hashCode = $this => { + return $this.$hashCode10; }, -onciu_Foldable$Folder_treeFind = ($this, $f, $evidence$1) => { - let var$3, var$4, var$5, var$6; - var$3 = scm_Stack$_MODULE$; - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(jl_Object, 1); - var$5.data[0] = $this.$foldedOver0; - var$3 = var$3.$from0(sr_ScalaRunTime$_genericWrapArray(var$4, var$5)); - $f = s_PartialFunction_lift$($f); - a: { - while (!scm_ArrayDeque_isEmpty(var$3)) { - var$4 = scm_Stack_pop(var$3); - if (var$4 !== null) { - var$6 = $evidence$1.$unapply8(var$4); - if (!s_Option_isEmpty(var$6) && var$6.$get1() instanceof jl_Object && s_Option_contains(s_PartialFunction$Lifted_apply($f, var$4), jl_Boolean_valueOf(1))) { - $f = s_Some__init_(var$4); - break a; - } - } - onciu_Foldable$TreeAny$_$callClinit(); - var$3 = scm_Stack_pushAll(var$3, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$4)); - } - $f = s_None$_MODULE$; +onciuci_ListSet_removedAll0 = ($this, $that) => { + return onciuci_ListSet_removedAll($this, $that); +}, +onciuci_ListSet_concat = ($this, $that) => { + return onciuci_ListSet_concat0($this, $that); +}, +onciuci_ListSet_excl = ($this, $elem) => { + return onciuci_ListSet_excl0($this, $elem); +}, +onciuci_ListSet_incl = ($this, $elem) => { + return onciuci_ListSet_incl0($this, $elem); +}, +onciuci_ListSet__init_0 = ($this, $underlying) => { + $this.$underlying5 = $underlying; + $this.$hashCode10 = sc_Set_hashCode$($this); +}, +onciuci_ListSet__init_ = var_0 => { + let var_1 = new onciuci_ListSet(); + onciuci_ListSet__init_0(var_1, var_0); + return var_1; +}; +function onciu_Rewritable$$dupAny$lambda$_5_0() { + jl_Object.call(this); + this.$_055 = null; +} +let onciu_Rewritable$$dupAny$lambda$_5_0__init_ = (var$0, var$1) => { + var$0.$_055 = var$1; +}, +onciu_Rewritable$$dupAny$lambda$_5_0__init_0 = var_0 => { + let var_1 = new onciu_Rewritable$$dupAny$lambda$_5_0(); + onciu_Rewritable$$dupAny$lambda$_5_0__init_(var_1, var_0); + return var_1; +}, +onciu_Rewritable$$dupAny$lambda$_5_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_055; + if (var$1 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$1); + if (!var$1.$lengthCompare(2)) + return sci_MapBuilderImpl_addOne(var$2, s_Tuple2__init_(var$1.$apply1(0), var$1.$apply1(1))); } - return $f; + var$1 = new jl_IllegalStateException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); }, -onciu_Foldable$Folder_treeFindByClass = ($this, $evidence$2) => { - let var$2, var$3, var$4, var$5; - var$2 = scm_Stack$_MODULE$; - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(jl_Object, 1); - var$4.data[0] = $this.$foldedOver0; - var$2 = var$2.$from0(sr_ScalaRunTime$_genericWrapArray(var$3, var$4)); +onciu_Foldable$TreeAny$$treeChildren$extension$lambda$_1_0 = $rt_classWithoutFields(), +onciu_Foldable$TreeAny$$treeChildren$extension$lambda$_1_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + s_package$_$callClinit(); + s_package$_Iterator(s_package$_MODULE$); + return (sr_ScalaRunTime$_genericWrapArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_Object, [var$2, var$1]))).$iterator0(); +}, +onvs_Value = $rt_classWithoutFields(onv_AnyValue); +function oncir_ValidatingRewriter() { + let a = this; jl_Object.call(a); + a.$inner4 = null; + a.$step2 = null; + a.$cancellationChecker = null; +} +let oncir_ValidatingRewriter_toString = $this => { + return $rt_s(37); +}, +oncir_ValidatingRewriter_apply = ($this, $that) => { + let $result, var$3, var$4; + $result = $this.$inner4.$apply2($that); + var$3 = $this.$step2.$postConditions(); + $that = new oncir_ValidatingRewriter$$anonfun$1; + $that.$$outer44 = $this; + $that.$input$1 = $result; + $that = var$3.$collect($that); + if (!$that.$exists(new oncir_ValidatingRewriter$validate$lambda$_35_0)) + return $result; + $result = new jl_IllegalStateException; + var$3 = scm_StringBuilder__init_(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3729)), $rt_s(37)), $rt_s(3730)); + scm_StringBuilder_$plus$plus$eq(var$3, jl_AbstractStringBuilder_toString(var$4)); + $that = sc_AbstractIterable_withFilter($that, new oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_0); + var$4 = new oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_1; + var$4.$_021 = var$3; + sc_IterableOnceOps_foreach$(sc_IterableOps$WithFilter_filtered($that), var$4); + jl_Throwable__init_($result, scm_StringBuilder_result(var$3)); + $rt_throw($result); +}, +oncir_ValidatingRewriter_productPrefix = $this => { + return $rt_s(3731); +}, +oncir_ValidatingRewriter_productArity = $this => { + return 3; +}, +oncir_ValidatingRewriter_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$inner4; + case 1: + return $this.$step2; + case 2: + return $this.$cancellationChecker; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncir_ValidatingRewriter_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncir_ValidatingRewriter_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncir_ValidatingRewriter_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - while (!scm_ArrayDeque_isEmpty(var$2)) { - var$3 = scm_Stack_pop(var$2); - if (var$3 !== null) { - var$5 = $evidence$2.$unapply8(var$3); - if (!s_Option_isEmpty(var$5) && var$5.$get1() instanceof jl_Object) { - $evidence$2 = s_Some__init_(var$3); - break a; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncir_ValidatingRewriter) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$inner4; + var$3 = $x$1.$inner4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$step2; + var$3 = $x$1.$step2; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; } + e: { + var$3 = $this.$cancellationChecker; + $x$1 = $x$1.$cancellationChecker; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncir_ValidatingRewriter)) + break b; } - onciu_Foldable$TreeAny$_$callClinit(); - var$2 = var$2.$addAll0(onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, var$3)); + var$4 = 1; + break a; } - $evidence$2 = s_None$_MODULE$; + var$4 = 0; } - return $evidence$2; + return var$4; }, -onciu_Foldable$Folder_findAllByClass = ($this, $evidence$3) => { - let $remaining, $result, var$4, $that, var$6; - $remaining = scm_Stack$_MODULE$; - $result = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(jl_Object, 1); - var$4.data[0] = $this.$foldedOver0; - $remaining = $remaining.$from0(sr_ScalaRunTime$_genericWrapArray($result, var$4)); - $result = scm_ListBuffer$_MODULE$.$from0(sci_Nil$_MODULE$); - while (sc_IterableOnceOps_nonEmpty$($remaining)) { - $that = scm_Stack_pop($remaining); - if ($that !== null) { - var$6 = $evidence$3.$unapply8($that); - if (!s_Option_isEmpty(var$6) && var$6.$get1() instanceof jl_Object) - $result.$addOne($that); - } - onciu_Foldable$TreeAny$_$callClinit(); - scm_Stack_pushAll($remaining, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $that)); - } - return sc_IterableOnceOps_toSeq$($result); +oncias_SemanticFeature$MultipleGraphs$ = $rt_classWithoutFields(), +oncias_SemanticFeature$MultipleGraphs$_MODULE$ = null, +oncias_SemanticFeature$MultipleGraphs$__clinit_ = () => { + oncias_SemanticFeature$MultipleGraphs$_MODULE$ = new oncias_SemanticFeature$MultipleGraphs$; }, -onciu_Foldable$Folder__init_0 = ($this, $foldedOver, $cancellation) => { - $this.$foldedOver0 = $foldedOver; - $this.$cancellation = $cancellation; +oncias_SemanticFeature$MultipleGraphs$_toString = $this => { + return $this.$name(); }, -onciu_Foldable$Folder__init_ = (var_0, var_1) => { - let var_2 = new onciu_Foldable$Folder(); - onciu_Foldable$Folder__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncifp_ObfuscationMetadataCollection$$anonfun$1() { - sr_AbstractPartialFunction.call(this); - this.$extractedParameters$1 = null; -} -let oncifp_ObfuscationMetadataCollection$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - if ($rt_isInstance($x1, oncie_SensitiveLiteral)) { - $x1 = $x1; - $default = new oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0; - $default.$_0815 = $x1; - return $default; - } - if ($x1 instanceof oncie_AutoExtractedParameter && $rt_isInstance($x1, oncie_SensitiveAutoParameter)) { - $x1 = $x1; - $default = new oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1; - $default.$_0178 = $this; - $default.$_167 = $x1; - return $default; - } - return s_PartialFunction$_fallback_fn; +oncias_SemanticFeature$MultipleGraphs$_name = $this => { + return $rt_s(3732); }, -onciu_Foldable$ = $rt_classWithoutFields(), -onciu_Foldable$_MODULE$ = null, -onciu_Foldable$__clinit_ = () => { - onciu_Foldable$_MODULE$ = new onciu_Foldable$; +oncias_SemanticFeature$MultipleGraphs$_productArity = $this => { + return 0; }, -onciu_Foldable$_TreeAny = ($this, $that) => { - return $that; +oncias_SemanticFeature$MultipleGraphs$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_Foldable$_FoldableAny = ($this, $foldedOver) => { - let var$2; - var$2 = new onciu_Foldable$FoldableAny; - var$2.$foldedOver1 = $foldedOver; - return var$2; +oncias_SemanticFeature$MultipleGraphs$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Foldable$_org$neo4j$cypher$internal$util$Foldable$$existsAcc = ($this, $remaining, $f, $that) => { - let var$4; - while (!scm_ArrayDeque_isEmpty($remaining)) { - $that = scm_Stack_pop($remaining); - var$4 = $f.$apply2($that); - if (var$4 instanceof s_Some && 1 == sr_BoxesRunTime_unboxToBoolean(var$4.$value5)) - return 1; - onciu_Foldable$TreeAny$_$callClinit(); - $remaining = scm_Stack_pushAll($remaining, onciu_Foldable$TreeAny$_reverseTreeChildren$extension(onciu_Foldable$TreeAny$_MODULE$, $that)); - } +oncias_SemanticFeature$MultipleGraphs$_hashCode = $this => { + return (-374670539); +}, +oncias_SemanticFeature$ShowSetting$ = $rt_classWithoutFields(), +oncias_SemanticFeature$ShowSetting$_MODULE$ = null, +oncias_SemanticFeature$ShowSetting$__clinit_ = () => { + oncias_SemanticFeature$ShowSetting$_MODULE$ = new oncias_SemanticFeature$ShowSetting$; +}, +oncias_SemanticFeature$ShowSetting$_toString = $this => { + return $this.$name(); +}, +oncias_SemanticFeature$ShowSetting$_name = $this => { + return $rt_s(3733); +}, +oncias_SemanticFeature$ShowSetting$_productArity = $this => { return 0; }, -oncifp_ObfuscationMetadataCollection$$collectSensitiveLiteralOffsets$lambda$_11_0 = $rt_classWithoutFields(), -oncifp_ObfuscationMetadataCollection$$collectSensitiveLiteralOffsets$lambda$_11_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncifp_ObfuscationMetadataCollection$_$callClinit(); - return jl_Integer_valueOf(var$1.$start6 + 0 | 0); +oncias_SemanticFeature$ShowSetting$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncie_SensitiveParameter = $rt_classWithoutFields(0), -oncifp_ObfuscationMetadataCollection$$collectSensitiveParameterNames$lambda$_12_0 = $rt_classWithoutFields(), -oncifp_ObfuscationMetadataCollection$$collectSensitiveParameterNames$lambda$_12_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncifp_ObfuscationMetadataCollection$_$callClinit(); - return var$1.$name(); +oncias_SemanticFeature$ShowSetting$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticFeature$ShowSetting$_hashCode = $this => { + return (-252998541); +}, +oncias_SemanticFeature$MatchModes$ = $rt_classWithoutFields(), +oncias_SemanticFeature$MatchModes$_MODULE$ = null, +oncias_SemanticFeature$MatchModes$__clinit_ = () => { + oncias_SemanticFeature$MatchModes$_MODULE$ = new oncias_SemanticFeature$MatchModes$; +}, +oncias_SemanticFeature$MatchModes$_toString = $this => { + return $this.$name(); +}, +oncias_SemanticFeature$MatchModes$_name = $this => { + return $rt_s(3734); +}, +oncias_SemanticFeature$MatchModes$_productArity = $this => { + return 0; +}, +oncias_SemanticFeature$MatchModes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticFeature$MatchModes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticFeature$MatchModes$_hashCode = $this => { + return (-453025653); +}, +oncias_SemanticFeature$ComposableCommands$ = $rt_classWithoutFields(), +oncias_SemanticFeature$ComposableCommands$_MODULE$ = null, +oncias_SemanticFeature$ComposableCommands$__clinit_ = () => { + oncias_SemanticFeature$ComposableCommands$_MODULE$ = new oncias_SemanticFeature$ComposableCommands$; +}, +oncias_SemanticFeature$ComposableCommands$_toString = $this => { + return $this.$name(); +}, +oncias_SemanticFeature$ComposableCommands$_name = $this => { + return $rt_s(3735); +}, +oncias_SemanticFeature$ComposableCommands$_productArity = $this => { + return 0; +}, +oncias_SemanticFeature$ComposableCommands$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticFeature$ComposableCommands$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticFeature$ComposableCommands$_hashCode = $this => { + return 851298005; +}, +oncias_SemanticFeature$GraphTypes$ = $rt_classWithoutFields(), +oncias_SemanticFeature$GraphTypes$_MODULE$ = null, +oncias_SemanticFeature$GraphTypes$__clinit_ = () => { + oncias_SemanticFeature$GraphTypes$_MODULE$ = new oncias_SemanticFeature$GraphTypes$; +}, +oncias_SemanticFeature$GraphTypes$_toString = $this => { + return $this.$name(); +}, +oncias_SemanticFeature$GraphTypes$_name = $this => { + return $rt_s(3736); +}, +oncias_SemanticFeature$GraphTypes$_productArity = $this => { + return 0; }; -function onciu_inSequence$InSequenceRewriter() { - jl_Object.call(this); - this.$rewriters = null; -} -let onciu_inSequence$InSequenceRewriter_apply = ($this, $result) => { - let $it; - $it = $this.$rewriters.$iterator0(); - while ($it.$hasNext()) { - $result = ($it.$next()).$apply2($result); - } - return $result; +let oncias_SemanticFeature$GraphTypes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onvs_Value = $rt_classWithoutFields(onv_AnyValue); -function sc_Iterator$ConcatIteratorCell() { - let a = this; jl_Object.call(a); - a.$head5 = null; - a.$tail5 = null; -} -let oncius_CypherType$$normalize$lambda$_3_0 = $rt_classWithoutFields(), +oncias_SemanticFeature$GraphTypes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticFeature$GraphTypes$_hashCode = $this => { + return (-30137365); +}, +oncias_Scope$allScopes$lambda$_20_0 = $rt_classWithoutFields(), +oncias_Scope$allScopes$lambda$_20_0_apply = (var$0, var$1) => { + return oncias_Scope_allScopes(var$1); +}, +oncius_CypherType$$normalize$lambda$_3_0 = $rt_classWithoutFields(), oncius_CypherType$$normalize$lambda$_3_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; @@ -76851,11 +79164,11 @@ oncius_CypherType$$normalize$lambda$_3_0_apply = (var$0, var$1) => { var$2 = sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$); else { var$1 = var$1; - var$2 = sci_$colon$colon__init_(oncius_PointType__init_(var$1.$isNullable3, var$1.$position84), sci_Nil$_MODULE$); + var$2 = sci_$colon$colon__init_(oncius_PointType__init_(var$1.$isNullable3, var$1.$position95), sci_Nil$_MODULE$); } } else { var$1 = var$1; - var$2 = sci_$colon$colon__init_(oncius_IntegerType__init_(var$1.$isNullable2, var$1.$position25), sci_$colon$colon__init_(oncius_FloatType__init_(var$1.$isNullable2, var$1.$position25), sci_Nil$_MODULE$)); + var$2 = sci_$colon$colon__init_(oncius_IntegerType__init_(var$1.$isNullable2, var$1.$position27), sci_$colon$colon__init_(oncius_FloatType__init_(var$1.$isNullable2, var$1.$position27), sci_Nil$_MODULE$)); } return var$2; }, @@ -76877,7 +79190,7 @@ oncius_CypherType$$normalize$lambda$_3_3_apply = (var$0, var$1, var$2) => { var$1 = var$3.$_10; var$2 = var$3.$_20; var$3 = new oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0; - var$3.$_0435 = var$2; + var$3.$_0428 = var$2; return (sci_List_filterNot(var$1, var$3)).$appended(var$2); }, oncius_CypherType$$normalize$lambda$_3_4 = $rt_classWithoutFields(), @@ -76903,123860 +79216,9422 @@ oncius_CypherType$$normalize$lambda$_3_7_apply = (var$0, var$1) => { }; function oncius_CypherType$$normalize$lambda$_3_8() { jl_Object.call(this); - this.$_01087 = null; + this.$_01069 = null; } let oncius_CypherType$$normalize$lambda$_3_8_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sci_List_contains(var$0.$_01087, var$1)); + return jl_Boolean_valueOf(sci_List_contains(var$0.$_01069, var$1)); }, oncius_CypherType$$normalize$lambda$_3_9 = $rt_classWithoutFields(), oncius_CypherType$$normalize$lambda$_3_9_apply = (var$0, var$1) => { return var$1.$position(); }; -function onciu_Foldable$FoldableAny() { - jl_Object.call(this); - this.$foldedOver1 = null; -} -let onciu_Foldable$FoldableAny_foldedOver = $this => { - return $this.$foldedOver1; -}; function scm_Shrinkable$subtractAll$lambda$_6_0() { jl_Object.call(this); - this.$_0844 = null; + this.$_0820 = null; } let scm_Shrinkable$subtractAll$lambda$_6_0_apply = (var$0, var$1) => { - return var$0.$_0844.$subtractOne(var$1); -}; -function onciu_StepSequencer$$anonfun$orderSteps$21$lambda$_37_0() { - let a = this; jl_Object.call(a); - a.$_0170 = null; - a.$_165 = null; -} -let ong_GqlClassification = $rt_classWithoutFields(0), -ong_NotificationClassification = $rt_classWithoutFields(jl_Enum), -ong_NotificationClassification_DEPRECATION = null, -ong_NotificationClassification_HINT = null, -ong_NotificationClassification_PERFORMANCE = null, -ong_NotificationClassification_GENERIC = null, -ong_NotificationClassification_UNRECOGNIZED = null, -ong_NotificationClassification_UNKNOWN = null, -ong_NotificationClassification_UNSUPPORTED = null, -ong_NotificationClassification_SECURITY = null, -ong_NotificationClassification_TOPOLOGY = null, -ong_NotificationClassification_SCHEMA = null, -ong_NotificationClassification_$VALUES = null, -ong_NotificationClassification_values = () => { - return ong_NotificationClassification_$VALUES.$clone0(); -}, -ong_NotificationClassification__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3509), 0); - ong_NotificationClassification_DEPRECATION = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3510), 1); - ong_NotificationClassification_HINT = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3511), 2); - ong_NotificationClassification_PERFORMANCE = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3512), 3); - ong_NotificationClassification_GENERIC = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3513), 4); - ong_NotificationClassification_UNRECOGNIZED = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3514), 5); - ong_NotificationClassification_UNKNOWN = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3515), 6); - ong_NotificationClassification_UNSUPPORTED = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3516), 7); - ong_NotificationClassification_SECURITY = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(3517), 8); - ong_NotificationClassification_TOPOLOGY = var$1; - var$1 = new ong_NotificationClassification; - jl_Enum__init_(var$1, $rt_s(30), 9); - ong_NotificationClassification_SCHEMA = var$1; - var$2 = $rt_createArray(ong_NotificationClassification, 10); - var$3 = var$2.data; - var$3[0] = ong_NotificationClassification_DEPRECATION; - var$3[1] = ong_NotificationClassification_HINT; - var$3[2] = ong_NotificationClassification_PERFORMANCE; - var$3[3] = ong_NotificationClassification_GENERIC; - var$3[4] = ong_NotificationClassification_UNRECOGNIZED; - var$3[5] = ong_NotificationClassification_UNKNOWN; - var$3[6] = ong_NotificationClassification_UNSUPPORTED; - var$3[7] = ong_NotificationClassification_SECURITY; - var$3[8] = ong_NotificationClassification_TOPOLOGY; - var$3[9] = var$1; - ong_NotificationClassification_$VALUES = var$2; -}; -function ong_DiagnosticRecord() { - jl_Object.call(this); - this.$innerDiagnosticRecord = null; -} -let ong_DiagnosticRecord_DEFAULT_DIAGNOSTIC_RECORD = null, -ong_DiagnosticRecord_$callClinit = () => { - ong_DiagnosticRecord_$callClinit = $rt_eraseClinit(ong_DiagnosticRecord); - ong_DiagnosticRecord__clinit_(); -}, -ong_DiagnosticRecord_hashCode = $this => { - return ju_AbstractMap_hashCode($this.$innerDiagnosticRecord); -}, -ong_DiagnosticRecord_equals = ($this, $o) => { - let $that; - if ($this === $o) - return 1; - if ($o !== null && jl_Object_getClass($this) === jl_Object_getClass($o)) { - $that = $o; - return ju_AbstractMap_equals($this.$innerDiagnosticRecord, $that.$innerDiagnosticRecord); - } - return 0; -}, -ong_DiagnosticRecord__clinit_ = () => { - let var$1; - ong_DiagnosticRecord_$callClinit(); - var$1 = ju_HashMap__init_(); - ju_HashMap_put(var$1, $rt_s(3454), $rt_s(89)); - ju_HashMap_put(var$1, $rt_s(3455), $rt_s(4)); - ju_HashMap_put(var$1, $rt_s(3456), $rt_s(21)); - ong_DiagnosticRecord_DEFAULT_DIAGNOSTIC_RECORD = ju_Collections_unmodifiableMap(var$1); -}; -function sci_Map$Map3$Map3Iterator() { - let a = this; sc_AbstractIterator.call(a); - a.$i1 = 0; - a.$$outer11 = null; -} -let sci_Map$Map3$Map3Iterator_hasNext = $this => { - if ($this.$i1 >= 3) - return 0; - return 1; -}, -sci_Map$Map3$Map3Iterator_next = $this => { - let var$1, $result; - a: { - switch ($this.$i1) { - case 0: - var$1 = $this.$$outer11; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map3$$key1, var$1.$scala$collection$immutable$Map$Map3$$value1); - break a; - case 1: - var$1 = $this.$$outer11; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map3$$key2, var$1.$scala$collection$immutable$Map$Map3$$value2); - break a; - case 2: - var$1 = $this.$$outer11; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map3$$key3, var$1.$scala$collection$immutable$Map$Map3$$value3); - break a; - default: - } - $result = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - } - $this.$i1 = $this.$i1 + 1 | 0; - return $result; -}, -sci_Map$Map3$Map3Iterator_drop = ($this, $n) => { - $this.$i1 = $this.$i1 + $n | 0; - return $this; -}, -sci_Map$Map3$Map3Iterator_scala$collection$immutable$Map$Map3$Map3Iterator$$$outer = $this => { - return $this.$$outer11; -}, -sci_Map$Map3$Map3Iterator__init_ = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer11 = $$outer; - $this.$i1 = 0; -}, -sci_Map$Map3$$anon$4 = $rt_classWithoutFields(sci_Map$Map3$Map3Iterator), -sci_Map$Map3$$anon$4_nextResult = ($this, $k, $v) => { - return s_Tuple2__init_($k, $v); -}; -function sci_Set$Set4$$anon$3() { - sci_Set$SetNIterator.call(this); - this.$$outer42 = null; -} -let sci_Set$Set4$$anon$3_apply = ($this, $i) => { - let var$2; - a: { - var$2 = $this.$$outer42; - switch ($i) { - case 0: - break; - case 1: - var$2 = var$2.$elem2; - break a; - case 2: - var$2 = var$2.$elem3; - break a; - case 3: - var$2 = var$2.$elem4; - break a; - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($i))); - } - var$2 = var$2.$elem1; - } - return var$2; + return var$0.$_0820.$subtractOne(var$1); }; -function oncifp_IsolateSubqueriesInMutatingPatterns$$instance$lambda$_13_0() { +function onciu_Rewritable$IteratorEq() { jl_Object.call(this); - this.$_0493 = null; -} -let jm_Conversion = $rt_classWithoutFields(), -jm_Conversion_digitFitInInt = null, -jm_Conversion_bigRadices = null, -jm_Conversion__clinit_ = () => { - jm_Conversion_digitFitInInt = $rt_createIntArrayFromData([(-1), (-1), 31, 19, 15, 13, 11, 11, 10, 9, 9, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5]); - jm_Conversion_bigRadices = $rt_createIntArrayFromData([(-2147483648), 1162261467, 1073741824, 1220703125, 362797056, 1977326743, 1073741824, 387420489, 1000000000, 214358881, 429981696, 815730721, 1475789056, 170859375, 268435456, 410338673, 612220032, 893871739, 1280000000, 1801088541, 113379904, 148035889, 191102976, 244140625, 308915776, 387420489, 481890304, 594823321, 729000000, 887503681, 1073741824, 1291467969, 1544804416, 1838265625, 60466176]); -}; -function jusi_MappingToIntStreamImpl$next$lambda$_1_0() { - let a = this; jl_Object.call(a); - a.$_01140 = null; - a.$_1382 = null; -} -let jusi_MappingToIntStreamImpl$next$lambda$_1_0_test = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_01140; - return var$0.$_1382.$test(var$2.$mapper.$applyAsInt(var$1)); -}; -function sci_Map$Map2$Map2Iterator() { - let a = this; sc_AbstractIterator.call(a); - a.$i2 = 0; - a.$$outer17 = null; + this.$iterator3 = null; } -let sci_Map$Map2$Map2Iterator_hasNext = $this => { - if ($this.$i2 >= 2) - return 0; - return 1; -}, -sci_Map$Map2$Map2Iterator_next = $this => { - let var$1, $result; +let onciu_Rewritable$IteratorEq_eqElements = ($this, $that) => { + let $dis, $dat, $same; a: { - switch ($this.$i2) { - case 0: - var$1 = $this.$$outer17; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map2$$key1, var$1.$scala$collection$immutable$Map$Map2$$value1); + while (true) { + if (!$this.$iterator3.$hasNext()) break a; - case 1: - var$1 = $this.$$outer17; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map2$$key2, var$1.$scala$collection$immutable$Map$Map2$$value2); + if (!$that.$hasNext()) break a; - default: - } - $result = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - } - $this.$i2 = $this.$i2 + 1 | 0; - return $result; -}, -sci_Map$Map2$Map2Iterator_drop = ($this, $n) => { - $this.$i2 = $this.$i2 + $n | 0; - return $this; -}, -sci_Map$Map2$Map2Iterator_scala$collection$immutable$Map$Map2$Map2Iterator$$$outer = $this => { - return $this.$$outer17; -}, -sci_Map$Map2$Map2Iterator__init_ = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer17 = $$outer; - $this.$i2 = 0; -}, -sci_Map$Map2$$anon$1 = $rt_classWithoutFields(sci_Map$Map2$Map2Iterator), -sci_Map$Map2$$anon$1_nextResult = ($this, $k, $v) => { - return s_Tuple2__init_($k, $v); -}, -jt_DecimalFormat$PerMillField = $rt_classWithoutFields(), -jt_DecimalFormat$PerMillField_render = ($this, $format, $buffer) => { - jl_AbstractStringBuilder_append0($buffer, $format.$symbols.$perMill); -}, -jt_DecimalFormat$PerMillField_equals = ($this, $obj) => { - return $obj instanceof jt_DecimalFormat$PerMillField; -}, -jt_DecimalFormat$PerMillField_hashCode = $this => { - return 2; -}, -jt_DecimalFormat$CurrencyField = $rt_classWithoutFields(), -jt_DecimalFormat$CurrencyField_render = ($this, $format, $buffer) => { - let var$3, var$4, var$5, var$6; - var$3 = $format.$currency; - if (var$3 === null) - jl_AbstractStringBuilder_append0($buffer, 164); - else { - $format = $format.$symbols.$locale0; - var$4 = $format.$languageCode; - var$5 = $format.$countryCode; - $format = ju_Currency_getCurrencyCode(var$3); - var$5 = otciu_CLDRHelper_getCode(var$4, var$5); - if (otciu_CLDRHelper_$$metadata$$21 === null) - otciu_CLDRHelper_$$metadata$$21 = otciu_CLDRHelper_getCurrencyMap$$create(); - a: { - var$6 = otciu_CLDRHelper_$$metadata$$21; - if (var$6.hasOwnProperty($rt_ustr(var$5))) { - var$5 = var$6[$rt_ustr(var$5)]; - if (var$5.hasOwnProperty($rt_ustr($format))) { - $format = var$5[$rt_ustr($format)]; - break a; + b: { + $dis = $this.$iterator3.$next(); + $dat = $that.$next(); + if ($dis instanceof jl_Integer) { + $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; + break b; } - } - if (var$6.hasOwnProperty($rt_ustr(var$4))) { - var$5 = var$6[$rt_ustr(var$4)]; - if (var$5.hasOwnProperty($rt_ustr($format))) { - $format = var$5[$rt_ustr($format)]; - break a; + if ($dis instanceof jl_Long) { + $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; + break b; + } + if ($dis instanceof jl_Double) { + $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; + break b; + } + if ($dis instanceof jl_Float) { + $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; + break b; + } + if ($dis instanceof jl_Short) { + $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; + break b; + } + if ($dis instanceof jl_Byte) { + $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; + break b; + } + if ($dis instanceof jl_Character) { + $same = !sr_BoxesRunTime_equals($dis, $dat) ? 0 : 1; + break b; + } + if (!($dis instanceof jl_Boolean)) { + $same = $dis !== $dat ? 0 : 1; + break b; } + $same = !sr_BoxesRunTime_equals($dis, $dat) ? 0 : 1; } - $format = null; + if (!$same) + break; } - jl_AbstractStringBuilder_append($buffer, $format !== null && !jl_String_isEmpty(($format.symbol !== null ? $rt_str($format.symbol) : null)) ? ($format.symbol !== null ? $rt_str($format.symbol) : null) : ju_Currency_getCurrencyCode(var$3)); - } -}, -jt_DecimalFormat$CurrencyField_equals = ($this, $obj) => { - return $obj instanceof jt_DecimalFormat$CurrencyField; -}, -jt_DecimalFormat$CurrencyField_hashCode = $this => { - return 0; -}, -jt_DecimalFormat$PercentField = $rt_classWithoutFields(), -jt_DecimalFormat$PercentField_render = ($this, $format, $buffer) => { - jl_AbstractStringBuilder_append0($buffer, $format.$symbols.$percent); -}, -jt_DecimalFormat$PercentField_equals = ($this, $obj) => { - return $obj instanceof jt_DecimalFormat$PercentField; -}, -jt_DecimalFormat$PercentField_hashCode = $this => { - return 1; -}, -oncias_SemanticState$ = $rt_classWithoutFields(), -oncias_SemanticState$_MODULE$ = null, -oncias_SemanticState$_clean = null, -oncias_SemanticState$_$callClinit = () => { - oncias_SemanticState$_$callClinit = $rt_eraseClinit(oncias_SemanticState$); - oncias_SemanticState$__clinit_(); -}, -oncias_SemanticState$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new oncias_SemanticState$; - oncias_SemanticState$_$callClinit(); - oncias_SemanticState$_MODULE$ = var$1; - var$2 = new oncias_SemanticState; - oncias_Scope$_$callClinit(); - var$3 = oncias_Scope$_empty(oncias_Scope$_MODULE$); - oncias_SemanticState$ScopeZipper$_$callClinit(); - var$1 = oncias_SemanticState$ScopeZipper$_MODULE$; - var$4 = onciuh_TreeZipper$Location__init_(var$1, var$3, onciuh_TreeZipper_Top(var$1)); - var$1 = oncia_ASTAnnotationMap$_empty(oncia_ASTAnnotationMap$_MODULE$); - var$3 = oncia_ASTAnnotationMap$_empty(oncia_ASTAnnotationMap$_MODULE$); - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - var$5 = sci_Set$EmptySet$_MODULE$; - s_Predef$_Set(s_Predef$_MODULE$); - var$6 = sci_Set$EmptySet$_MODULE$; - var$7 = s_None$_MODULE$; - oncias_SemanticState__init_(var$2, var$4, var$1, var$3, var$5, var$6, 1, 0, var$7, var$7); - oncias_SemanticState$_clean = var$2; -}, -oncias_SemanticState$_recordCurrentScope = ($this, $node) => { - let var$2, var$3; - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncias_SemanticState$$recordCurrentScope$lambda$_9_0; - var$3.$_0848 = $node; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); -}, -oncias_SemanticCheckContext = $rt_classWithoutFields(0); -function oncifp_SemanticAnalysis$$anon$1() { - jl_Object.call(this); - this.$context$11 = null; -} -let oncifp_SemanticAnalysis$$anon$1_errorMessageProvider = $this => { - return $this.$context$11.$errorMessageProvider0; -}, -oncifp_SemanticAnalysis$$anon$1_sessionDatabaseReference = $this => { - return null; -}, -oncias_SemanticChecker$ = $rt_classWithoutFields(), -oncias_SemanticChecker$_MODULE$ = null, -oncias_SemanticChecker$__clinit_ = () => { - oncias_SemanticChecker$_MODULE$ = new oncias_SemanticChecker$; -}; -function oncias_SemanticCheckResult() { - let a = this; jl_Object.call(a); - a.$state = null; - a.$errors0 = null; -} -let oncias_SemanticCheckResult_productPrefix = $this => { - return $rt_s(3659); -}, -oncias_SemanticCheckResult_productArity = $this => { - return 2; -}, -oncias_SemanticCheckResult_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$state; - case 1: - return $this.$errors0; - default: + return 0; } - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticCheckResult_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheckResult_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheckResult_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return !$this.$iterator3.$hasNext() && !$that.$hasNext() ? 1 : 0; }, -oncias_SemanticCheckResult_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +onciu_RewritableJavascript = $rt_classWithoutFields(), +onciu_RewritableJavascript_copyConstructor = (var$1, var$2, var$3) => { + let var$4; a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticCheckResult) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$state; - var$3 = $x$1.$state; - if (var$2 !== null) { - if (!oncias_SemanticState_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$errors0; - $x$1 = $x$1.$errors0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncias_SemanticCheckResult__init_0 = ($this, $state, $errors) => { - $this.$state = $state; - $this.$errors0 = $errors; -}, -oncias_SemanticCheckResult__init_ = (var_0, var_1) => { - let var_2 = new oncias_SemanticCheckResult(); - oncias_SemanticCheckResult__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncifp_SemanticAnalysis$process$lambda$_13_0() { - jl_Object.call(this); - this.$_0540 = null; -} -let oncifp_SemanticAnalysis$process$lambda$_13_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciu_RecordingNotificationLogger_log(var$0.$_0540, var$1); - return sr_BoxedUnit_UNIT; -}, -oncifp_SemanticAnalysis$process$lambda$_13_1 = $rt_classWithoutFields(), -oncifp_SemanticAnalysis$process$lambda$_13_1_apply = (var$0, var$1) => { - return var$1.$location.$elem0; -}; -function oncirr_computeDependenciesForExpressions() { - let a = this; jl_Object.call(a); - a.$semanticState = null; - a.$instance1 = null; -} -let oncirr_computeDependenciesForExpressions_apply = ($this, $that) => { - return onciu_topDown$TopDownRewriter_apply($this.$instance1, $that); -}, -oncifp_SemanticAnalysis$process$lambda$_13_2 = $rt_classWithoutFields(), -oncifp_SemanticAnalysis$process$lambda$_13_2__init_0 = var$0 => { - return; -}, -oncifp_SemanticAnalysis$process$lambda$_13_2__init_ = () => { - let var_0 = new oncifp_SemanticAnalysis$process$lambda$_13_2(); - oncifp_SemanticAnalysis$process$lambda$_13_2__init_0(var_0); - return var_0; -}, -oncifp_SemanticAnalysis$process$lambda$_13_2_apply = (var$0, var$1) => { - return var$1.$location.$elem0; -}, -oncias_SemanticTable$ = $rt_classWithoutFields(), -oncias_SemanticTable$_MODULE$ = null, -oncias_SemanticTable$__clinit_ = () => { - oncias_SemanticTable$_MODULE$ = new oncias_SemanticTable$; -}, -oncias_SemanticTable$_apply$default$3 = $this => { - s_Predef$_$callClinit(); - return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); -}, -oncias_SemanticTable$_apply$default$4 = $this => { - s_Predef$_$callClinit(); - return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); -}, -oncias_SemanticTable$_apply$default$5 = $this => { - s_Predef$_$callClinit(); - return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); -}, -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_0 = $rt_classWithoutFields(), -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0; - var$2.$_0721 = var$1; - return var$2; -}, -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_1 = $rt_classWithoutFields(), -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_1_apply = (var$0, var$1) => { - return var$1.$notification0; -}, -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_2 = $rt_classWithoutFields(), -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_2_apply = (var$0, var$1) => { - return var$1.$replacement1; -}; -function oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_3() { - jl_Object.call(this); - this.$_0431 = null; -} -let oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_3_apply = (var$0, var$1) => { - var$1 = var$1; - onciu_RecordingNotificationLogger_log(var$0.$_0431, var$1); - return sr_BoxedUnit_UNIT; -}; -function oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1() { - sr_AbstractPartialFunction.call(this); - this.$replacements$1 = null; -} -let oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4; - if (!$rt_isInstance($x1, onciu_ASTNode)) - return $default.$apply2($x1); - $x1 = $x1; - $default = $this.$replacements$1; - onciu_Ref$_$callClinit(); - var$3 = onciu_Ref$_apply(onciu_Ref$_MODULE$, $x1); - var$4 = new oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1$applyOrElse$lambda$_0_0; - var$4.$_0663 = $x1; - return $default.$getOrElse1(var$3, var$4); -}; -function oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4() { - jl_Object.call(this); - this.$_0230 = null; -} -let oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0230; - var$2 = new jl_IllegalStateException; - var$1 = jl_Class_getSimpleName(jl_Object_getClass(var$1)); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3660)), var$1), $rt_s(3661)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); -}, -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5 = $rt_classWithoutFields(), -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0; - var$2.$_0449 = var$1; - return var$2; -}, -oncius_ClosedDynamicUnionType$simplify$lambda$_28_0 = $rt_classWithoutFields(), -oncius_ClosedDynamicUnionType$simplify$lambda$_28_0_apply = (var$0, var$1) => { - var$1 = var$1; - return !(var$1 instanceof oncius_ClosedDynamicUnionType) ? sci_$colon$colon__init_(var$1.$simplify(), sci_Nil$_MODULE$) : sci_List_map(var$1.$sortedInnerTypes, new oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0); -}, -scm_Stack$ = $rt_classWithoutFields(), -scm_Stack$_MODULE$ = null, -scm_Stack$__clinit_ = () => { - scm_Stack$_MODULE$ = new scm_Stack$; -}, -scm_Stack$_empty = $this => { - return scm_Stack__init_(16); -}, -scm_Stack$_newBuilder = $this => { - return scm_GrowableBuilder__init_0(scm_Stack$_empty($this)); -}, -scm_Stack$_from = ($this, $source) => { - let var$2; - var$2 = scm_Stack$_empty($this); - if (var$2 === null) - $rt_throw(null); - return scm_ArrayDeque_addAll(var$2, $source); -}, -scm_Stack = $rt_classWithoutFields(scm_ArrayDeque), -scm_Stack_iterableFactory0 = $this => { - return scm_Stack$_MODULE$; -}, -scm_Stack_stringPrefix = $this => { - return $rt_s(3662); -}, -scm_Stack_push = ($this, $elem) => { - let var$2, var$3, var$4; - scm_ArrayDeque_ensureSize($this, scm_ArrayDeque_length($this) + 1 | 0); - var$2 = $this.$scala$collection$mutable$ArrayDeque$$start - 1 | 0; - var$3 = $this.$array0.data; - var$4 = var$2 & (var$3.length - 1 | 0); - $this.$scala$collection$mutable$ArrayDeque$$start = var$4; - var$3[var$4] = $elem; - return $this; -}, -scm_Stack_pushAll = ($this, $elems) => { - if ($rt_isInstance($elems, sc_Seq)) - $elems = ($elems.$view1()).$reverse2(); - else { - scm_IndexedSeq$_$callClinit(); - $elems = ((sc_SeqFactory$Delegate_from(scm_IndexedSeq$_MODULE$, $elems)).$view0()).$reverse3(); - } - return scm_ArrayDeque_prependAll($this, $elems); -}, -scm_Stack_pop = $this => { - return scm_ArrayDeque_removeHead($this, 0); -}, -scm_Stack_iterableFactory = $this => { - return scm_Stack$_MODULE$; -}, -scm_Stack__init_0 = ($this, $initialSize) => { - scm_ArrayDeque__init_($this, scm_ArrayDeque$_alloc(scm_ArrayDeque$_MODULE$, $initialSize), 0, 0); -}, -scm_Stack__init_ = var_0 => { - let var_1 = new scm_Stack(); - scm_Stack__init_0(var_1, var_0); - return var_1; -}; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter() { - let a = this; jl_Object.call(a); - a.$targetsComposite = 0; - a.$sessionDatabaseName = null; - a.$cancellationChecker0 = null; -} -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_apply = ($this, $that) => { - let $workGraph, var$3, var$4, var$5, var$6; - if (!$this.$targetsComposite) - return $that; - s_Option$_$callClinit(); - $workGraph = s_Option$_MODULE$; - var$3 = $this.$sessionDatabaseName === null ? 0 : 1; - var$4 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0; - var$4.$_0963 = $this; - $workGraph = s_Option$_when($workGraph, var$3, var$4); - var$4 = new sr_LazyRef; - var$5 = onciu_Foldable_folder$0(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, $that), $this.$cancellationChecker0); - var$6 = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_org$neo4j$cypher$internal$frontend$phases$RemoveDuplicateUseClauses$UseClauseRewriter$$State$3($this, var$4); - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - $workGraph = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$_apply(var$6, sci_Set$EmptySet$_MODULE$, $workGraph); - var$6 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1; - var$6.$$outer28 = $this; - var$6.$State$module$1 = var$4; - $workGraph = onciu_Foldable$Folder_treeFold(var$5, $workGraph, var$6); - if ($workGraph === null) - $rt_throw(s_MatchError__init_($workGraph)); - var$6 = $workGraph.$useClausesToRemove; - onciu_Rewriter$_$callClinit(); - $workGraph = onciu_Rewriter$_MODULE$; - var$4 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2; - var$4.$useClausesToRemove$1 = var$6; - $workGraph = onciu_Rewriter$_lift($workGraph, var$4); - var$4 = $this.$cancellationChecker0; - onciu_topDown$_$callClinit(); - var$6 = onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$); - return onciu_topDown$TopDownRewriter_apply(onciu_topDown$_apply(onciu_topDown$_MODULE$, $workGraph, var$6, 1, var$4), $that); -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_org$neo4j$cypher$internal$frontend$phases$RemoveDuplicateUseClauses$UseClauseRewriter$$State$3 = ($this, $State$module$1) => { - let var$2, $$je; - if ($State$module$1.$_initialized) - return $State$module$1.$_value0; - jl_Object_monitorEnterSync($State$module$1); - a: { - try { - var$2 = sr_LazyRef_initialized($State$module$1) ? sr_LazyRef_value($State$module$1) : sr_LazyRef_initialize($State$module$1, oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$__init_0($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($State$module$1); - return var$2; - } - jl_Object_monitorExitSync($State$module$1); - $rt_throw(var$2); -}; -function onkd_NormalizedDatabaseName() { - jl_Record.call(this); - this.$name45 = null; -} -function scm_HashSet$$anon$3() { - let a = this; scm_HashSet$HashSetIterator.call(a); - a.$hash8 = 0; - a.$$outer45 = null; -} -let scm_HashSet$$anon$3_hashCode = $this => { - return $this.$hash8; -}, -scm_HashSet$$anon$3_extract = ($this, $nd) => { - let var$2, $unimproveHash_improvedHash; - var$2 = $this.$$outer45; - $unimproveHash_improvedHash = $nd.$_hash; - if (var$2 === null) - $rt_throw(null); - $this.$hash8 = $unimproveHash_improvedHash ^ ($unimproveHash_improvedHash >>> 16 | 0); - return $this; -}, -ong_SimpleMessageFormatter = $rt_classWithoutFields(), -ong_SimpleMessageFormatter_format = ($statusParameterKeys, $joinStyles, $template, $substitution, $offsets, $params) => { - let var$7, $message, $currentParam, $prevOffset, var$11, var$12, $offset, var$14, $formattedParam, var$16, var$17, var$18, var$19; - var$7 = $offsets.data; - $message = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($message); - $currentParam = 0; - $prevOffset = 0; - var$11 = var$7.length; - var$12 = 0; - while (var$12 < var$11) { - $offset = var$7[var$12]; - if ($params !== null) { - $offsets = $params.data; - if ($offsets[$currentParam] !== null && !($offsets[$currentParam] instanceof jl_String) && !($offsets[$currentParam] instanceof jl_Boolean) && !($offsets[$currentParam] instanceof jl_Integer) && !($offsets[$currentParam] instanceof jl_Long) && !$rt_isInstance($offsets[$currentParam], ju_List)) { - $joinStyles = new jl_IllegalArgumentException; - $template = $offsets[$currentParam]; - $substitution = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($substitution); - jl_StringBuilder_append(jl_StringBuilder_append($substitution, $rt_s(3663)), $template); - jl_Throwable__init_0($joinStyles, jl_AbstractStringBuilder_toString($substitution)); - $rt_throw($joinStyles); - } - } - a: { - jl_AbstractStringBuilder_append2($message, $template, $prevOffset, $offset); - var$14 = $currentParam + 1 | 0; - if ($params === null) - $formattedParam = $rt_s(10); - else if ($statusParameterKeys === null) - $formattedParam = jl_String_valueOf($params.data[$currentParam]); - else { - var$16 = $statusParameterKeys.data[$currentParam]; - if (var$16 instanceof ong_GqlParams$ListParam) { - $offsets = $params.data; - $formattedParam = var$16; - var$17 = $offsets[$currentParam]; - if ($rt_isInstance(var$17, ju_List)) { - var$17 = var$17; - var$16 = $joinStyles.$get6(var$16); - $formattedParam = $formattedParam.$processor0.$inner1; - if ($formattedParam !== null) { - $offsets = $rt_createArray(jl_String, var$17.$size()); - var$18 = $offsets.data; - var$19 = 0; - while (var$19 < var$17.$size()) { - var$18[var$19] = $formattedParam.$process(var$17.$get0(var$19)); - var$19 = var$19 + 1 | 0; - } - var$17 = jus_Stream_toList(ju_Arrays_stream($offsets)); - } - if (var$16 === null) - $formattedParam = ong_GqlParams$ListProcessor_commadFormat(var$17); - else if (jl_Enum_equals(var$16, ong_GqlParams$JoinStyle_ANDED)) { - if (var$17.$isEmpty()) - $formattedParam = $rt_s(4); - else if (var$17.$size() == 1) - $formattedParam = jl_String_valueOf(var$17.$get0(0)); - else { - $formattedParam = ong_GqlParams$ListProcessor_initialCommas(var$17); - jl_AbstractStringBuilder_append($formattedParam, $rt_s(119)); - jl_AbstractStringBuilder_append($formattedParam, jl_String_valueOf(var$17.$get0(var$17.$size() - 1 | 0))); - $formattedParam = jl_AbstractStringBuilder_toString($formattedParam); - } - } else if (!jl_Enum_equals(var$16, ong_GqlParams$JoinStyle_ORED)) - $formattedParam = ong_GqlParams$ListProcessor_commadFormat(var$17); - else if (var$17.$isEmpty()) - $formattedParam = $rt_s(4); - else if (var$17.$size() == 1) - $formattedParam = jl_String_valueOf(var$17.$get0(0)); - else { - $formattedParam = ong_GqlParams$ListProcessor_initialCommas(var$17); - jl_AbstractStringBuilder_append($formattedParam, $rt_s(872)); - jl_AbstractStringBuilder_append($formattedParam, jl_String_valueOf(var$17.$get0(var$17.$size() - 1 | 0))); - $formattedParam = jl_AbstractStringBuilder_toString($formattedParam); - } - break a; - } - } - $formattedParam = var$16.$process($params.data[$currentParam]); - } - } - jl_AbstractStringBuilder_append($message, $formattedParam); - $prevOffset = $offset + $substitution.$nativeString.length | 0; - var$12 = var$12 + 1 | 0; - $currentParam = var$14; - } - if ($prevOffset < $template.$nativeString.length) - jl_AbstractStringBuilder_append2($message, $template, $prevOffset, $template.$nativeString.length); - return jl_AbstractStringBuilder_toString($message); -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$visit$lambda$_10_0() { - jl_Object.call(this); - this.$_0965 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$visit$lambda$_10_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0965; - oncifp_ProcedureAndFunctionDeprecationWarnings$_$callClinit(); - onciu_RecordingNotificationLogger_log(var$2, var$1); - return sr_BoxedUnit_UNIT; -}; -function oncifp_ProcedureWarnings$$visit$lambda$_10_0() { - jl_Object.call(this); - this.$_0293 = null; -} -let oncifp_ProcedureWarnings$$visit$lambda$_10_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0293; - oncifp_ProcedureWarnings$_$callClinit(); - onciu_RecordingNotificationLogger_log(var$2, var$1); - return sr_BoxedUnit_UNIT; -}; -function oncifp_CollectSyntaxUsageMetrics$$anonfun$visit$1() { - sr_AbstractPartialFunction.call(this); - this.$context$1 = null; -} -let oncifp_CollectSyntaxUsageMetrics$$anonfun$visit$1_applyOrElse = ($this, $x1, $default) => { - if ($rt_isInstance($x1, oncie_PatternPart$SelectiveSelector)) { - oncifp_SyntaxUsageMetricKey_$callClinit(); - oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_GPM_SHORTEST, $this.$context$1); - return sr_BoxedUnit_UNIT; - } - if ($x1 instanceof oncie_ShortestPathsPatternPart) { - oncifp_SyntaxUsageMetricKey_$callClinit(); - oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_LEGACY_SHORTEST, $this.$context$1); - return sr_BoxedUnit_UNIT; - } - if ($x1 instanceof oncie_QuantifiedPath) { - oncifp_SyntaxUsageMetricKey_$callClinit(); - oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_QUANTIFIED_PATH_PATTERN, $this.$context$1); - return sr_BoxedUnit_UNIT; - } - if ($x1 instanceof oncia_ExistsExpression) { - oncifp_SyntaxUsageMetricKey_$callClinit(); - oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_EXISTS_SUBQUERY, $this.$context$1); - return sr_BoxedUnit_UNIT; - } - if ($x1 instanceof oncia_CountExpression) { - oncifp_SyntaxUsageMetricKey_$callClinit(); - oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_COUNT_SUBQUERY, $this.$context$1); - return sr_BoxedUnit_UNIT; - } - if (!($x1 instanceof oncia_CollectExpression)) - return s_PartialFunction$_fallback_fn; - oncifp_SyntaxUsageMetricKey_$callClinit(); - oncifp_CollectSyntaxUsageMetrics$_org$neo4j$cypher$internal$frontend$phases$CollectSyntaxUsageMetrics$$increaseMetric$1(oncifp_SyntaxUsageMetricKey_COLLECT_SUBQUERY, $this.$context$1); - return sr_BoxedUnit_UNIT; -}; -function oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$semanticTable$1 = null; - a.$anonymousVariableNameGenerator$1 = null; -} -let oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5_applyOrElse = ($this, $x1, $default) => { - let $rewrittenQuery; - if ($x1 instanceof oncia_ImportingWithSubqueryCall) { - $x1 = $x1; - $rewrittenQuery = $x1.$innerQuery1; - $default = new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_0; - $default.$_0306 = $this; - return oncia_ImportingWithSubqueryCall_copy($x1, $rewrittenQuery.$mapEachSingleQuery($default), $x1.$inTransactionsParameters1, $x1.$optional4, $x1.$position103); - } - if (!($x1 instanceof oncia_ScopeClauseSubqueryCall)) { - if (!($x1 instanceof oncia_SingleQuery)) - return $default.$apply2($x1); - $x1 = $x1; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - return oncifp_IsolateSubqueriesInMutatingPatterns$_org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1(oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$, $x1, 0, $this.$semanticTable$1, $this.$anonymousVariableNameGenerator$1); - } - $x1 = $x1; - $rewrittenQuery = $x1.$innerQuery0; - $default = new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_1; - $default.$_0362 = $this; - return oncia_ScopeClauseSubqueryCall_copy($x1, $rewrittenQuery.$mapEachSingleQuery($default), $x1.$isImportingAll, $x1.$importedVariables, $x1.$inTransactionsParameters0, $x1.$optional2, $x1.$position64); -}, -oncias_SemanticFeature$ = $rt_classWithoutFields(), -oncias_SemanticFeature$_MODULE$ = null, -oncias_SemanticFeature$_allSemanticFeatures = null, -oncias_SemanticFeature$_$callClinit = () => { - oncias_SemanticFeature$_$callClinit = $rt_eraseClinit(oncias_SemanticFeature$); - oncias_SemanticFeature$__clinit_(); -}, -oncias_SemanticFeature$__clinit_ = () => { - let var$1, var$2, var$3, var$4; - var$1 = new oncias_SemanticFeature$; - oncias_SemanticFeature$_$callClinit(); - oncias_SemanticFeature$_MODULE$ = var$1; - s_Predef$_$callClinit(); - var$1 = s_Predef$_Set(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncias_SemanticFeature, 8); - var$4 = var$3.data; - var$4[0] = oncias_SemanticFeature$MultipleDatabases$_MODULE$; - var$4[1] = oncias_SemanticFeature$MultipleGraphs$_MODULE$; - var$4[2] = oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$; - var$4[3] = oncias_SemanticFeature$UseAsSingleGraphSelector$_MODULE$; - var$4[4] = oncias_SemanticFeature$ShowSetting$_MODULE$; - oncias_SemanticFeature$MatchModes$_$callClinit(); - var$4[5] = oncias_SemanticFeature$MatchModes$_MODULE$; - var$4[6] = oncias_SemanticFeature$ComposableCommands$_MODULE$; - var$4[7] = oncias_SemanticFeature$DynamicLabelsAndTypes$_MODULE$; - oncias_SemanticFeature$_allSemanticFeatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncias_ScopeTreeVerifier$ = $rt_classWithoutFields(), -oncias_ScopeTreeVerifier$_MODULE$ = null, -oncias_ScopeTreeVerifier$_$callClinit = () => { - oncias_ScopeTreeVerifier$_$callClinit = $rt_eraseClinit(oncias_ScopeTreeVerifier$); - oncias_ScopeTreeVerifier$__clinit_(); -}, -oncias_ScopeTreeVerifier$__clinit_ = () => { - let var$1; - var$1 = new oncias_ScopeTreeVerifier$; - oncias_ScopeTreeVerifier$_$callClinit(); - oncias_ScopeTreeVerifier$_MODULE$ = var$1; -}; -function oncirr_computeDependenciesForExpressions$$anonfun$1() { - sr_AbstractPartialFunction.call(this); - this.$$outer44 = null; -} -let oncirr_computeDependenciesForExpressions$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let var$3, $declarations, $dependencies; - if (!$rt_isInstance($x1, oncie_ExpressionWithComputedDependencies)) - return $default.$apply2($x1); - $x1 = $x1; - $default = oncias_SemanticState$ScopeLocation$_MODULE$; - var$3 = $this.$$outer44.$semanticState.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - $default = oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension($default, (var$3.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $x1.$subqueryAstNode()))).$location); - if ($default === null) - $rt_throw(s_MatchError__init_($default)); - $declarations = $default.$declarations; - $dependencies = $default.$dependencies0; - $default = s_Tuple2__init_($declarations, $dependencies); - $declarations = $default.$_10; - $dependencies = $default.$_20; - return ($x1.$withComputedIntroducedVariables($declarations.$map(new oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_0))).$withComputedScopeDependencies($dependencies.$map(new oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_1)); -}; -function sr_ObjectRef() { - jl_Object.call(this); - this.$elem = null; -} -let sr_ObjectRef__init_0 = ($this, $elem) => { - $this.$elem = $elem; -}, -sr_ObjectRef__init_ = var_0 => { - let var_1 = new sr_ObjectRef(); - sr_ObjectRef__init_0(var_1, var_0); - return var_1; -}, -sr_ObjectRef_create = $e => { - return sr_ObjectRef__init_($e); -}; -function sci_Vector$appendedAll0$lambda$_77_0() { - jl_Object.call(this); - this.$_0962 = null; -} -let sci_Vector$appendedAll0$lambda$_77_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0962; - var$2.$elem = var$2.$elem.$appended1(var$1); - return sr_BoxedUnit_UNIT; -}; -function sci_Vector$appendedAll0$lambda$_77_1() { - jl_Object.call(this); - this.$_0425 = null; -} -let sci_Vector$appendedAll0$lambda$_77_1_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0425; - var$2.$elem = var$2.$elem.$appended1(var$1); - return sr_BoxedUnit_UNIT; -}, -onciu_Foldable$TreeAny$ = $rt_classWithoutFields(), -onciu_Foldable$TreeAny$_MODULE$ = null, -onciu_Foldable$TreeAny$_$callClinit = () => { - onciu_Foldable$TreeAny$_$callClinit = $rt_eraseClinit(onciu_Foldable$TreeAny$); - onciu_Foldable$TreeAny$__clinit_(); -}, -onciu_Foldable$TreeAny$__clinit_ = () => { - let var$1; - var$1 = new onciu_Foldable$TreeAny$; - onciu_Foldable$TreeAny$_$callClinit(); - onciu_Foldable$TreeAny$_MODULE$ = var$1; -}, -onciu_Foldable$TreeAny$_treeChildren$extension = ($this, $$this) => { - if ($rt_isInstance($$this, sc_Seq)) - return $$this.$iterator0(); - if ($rt_isInstance($$this, sci_Set)) - return $$this.$iterator0(); - if ($rt_isInstance($$this, sci_Map)) - return ($$this.$iterator0()).$flatMap2(new onciu_Foldable$TreeAny$$treeChildren$extension$lambda$_1_0); - if ($rt_isInstance($$this, s_Product)) - return $$this.$productIterator(); - s_package$_$callClinit(); - s_package$_Iterator(s_package$_MODULE$); - return sc_Iterator$_scala$collection$Iterator$$_empty; -}, -onciu_Foldable$TreeAny$_reverseTreeChildren$extension = ($this, $$this) => { - let var$2; - if ($rt_isInstance($$this, sc_Seq)) - return $$this.$reverseIterator(); - if ($$this instanceof sci_ListSet) { - $$this = $$this; - var$2 = new onciu_Foldable$TreeAny$$anon$1; - var$2.$current6 = $$this; - return var$2; - } - if ($$this instanceof onciuci_ListSet) - return sc_IndexedSeqOps_reverseIterator$(sc_AbstractIterable_toVector($$this)); - if ($rt_isInstance($$this, sci_Set)) - return sc_IndexedSeqOps_reverseIterator$(sc_AbstractIterable_toVector($$this)); - if ($rt_isInstance($$this, sci_Map)) - return sc_Iterator_flatMap$(sc_IndexedSeqOps_reverseIterator$(sc_AbstractIterable_toVector($$this)), new onciu_Foldable$TreeAny$$reverseTreeChildren$extension$lambda$_2_0); - if (!$rt_isInstance($$this, s_Product)) { - s_package$_$callClinit(); - s_package$_Iterator(s_package$_MODULE$); - return sc_Iterator$_scala$collection$Iterator$$_empty; - } - $$this = $$this; - var$2 = new onciu_Foldable$TreeAny$$anon$2; - var$2.$p$10 = $$this; - var$2.$c0 = $$this.$productArity() - 1 | 0; - return var$2; -}, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4, $deprecationWarnings, $inputFields, $name, $inputFields_0, var$9, $deprecatedBy; - var$3 = 0; - $default = null; - var$4 = 0; - $deprecationWarnings = null; - if ($x1 instanceof oncifp_ResolvedCall) { - var$3 = 1; - $default = $x1; - $inputFields = $default.$signature; - if ($inputFields !== null) { - $name = $inputFields.$name10; - $inputFields_0 = $inputFields.$inputSignature0; - $inputFields = $inputFields.$deprecationInfo; - if ($inputFields instanceof s_Some) { - $inputFields = $inputFields.$value5; - if ($inputFields !== null) { - var$9 = $inputFields.$isDeprecated(); - $deprecatedBy = $inputFields.$deprecatedBy(); - if (1 == var$9) { - $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0; - $x1.$_01033 = $inputFields_0; - $x1.$_1354 = $default; - $x1.$_2117 = $name; - $x1.$_330 = $deprecatedBy; - return $x1; - } - } - } - } - } - if (var$3) { - $inputFields = $default.$signature; - if ($inputFields !== null) { - $name = $inputFields.$name10; - $inputFields = $inputFields.$inputSignature0; - if (sc_IterableOnceOps_exists$($inputFields, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1)) { - $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2; - $x1.$_0129 = $inputFields; - $x1.$_148 = $default; - $x1.$_224 = $name; - return $x1; - } - } - } - if ($x1 instanceof oncifp_ResolvedFunctionInvocation) { - var$4 = 1; - $deprecationWarnings = $x1; - $default = $deprecationWarnings.$fcnSignature; - if ($default instanceof s_Some) { - $default = $default.$value5; - if ($default !== null) { - $name = $default.$name15; - $inputFields = $default.$inputSignature; - $default = $default.$deprecationInfo0; - if ($default instanceof s_Some) { - $default = $default.$value5; - if ($default !== null) { - var$3 = $default.$isDeprecated(); - $deprecatedBy = $default.$deprecatedBy(); - if (1 == var$3) { - $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3; - $x1.$_0614 = $inputFields; - $x1.$_1209 = $deprecationWarnings; - $x1.$_269 = $name; - $x1.$_321 = $deprecatedBy; - return $x1; - } - } - } - } - } - } - if (var$4) { - $name = $deprecationWarnings.$qualifiedName; - $default = $deprecationWarnings.$fcnSignature; - if ($default instanceof s_Some) { - $default = $default.$value5; - if ($default !== null) { - $inputFields = $default.$inputSignature; - if (sc_IterableOnceOps_exists$($inputFields, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4)) { - $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5; - $x1.$_0871 = $inputFields; - $x1.$_1299 = $deprecationWarnings; - $x1.$_297 = $name; - return $x1; - } - } - } - } - if (!($x1 instanceof oncie_FunctionInvocation)) { - if (!($x1 instanceof oncia_UnresolvedCall)) - return s_PartialFunction$_fallback_fn; - $rt_throw(one_InternalException__init_($rt_s(3664))); - } - $x1 = $x1; - $default = $x1.$function1.$signatures(); - $deprecationWarnings = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6; - $deprecationWarnings.$_0205 = $x1; - $default = ($default.$filter1($deprecationWarnings)).$map(new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7); - $deprecationWarnings = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8; - $deprecationWarnings.$_0321 = $x1; - $deprecationWarnings = $default.$map($deprecationWarnings); - $x1 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9; - $x1.$_0926 = $deprecationWarnings; - return $x1; -}, -oncifp_ProcedureWarnings$$anonfun$findWarnings$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncifp_ProcedureWarnings$$anonfun$findWarnings$1_applyOrElse = ($this, $x1, $default) => { - let var$3, $output, $name, $warning, $results; - var$3 = 0; - $default = null; - if ($x1 instanceof oncifp_ResolvedCall) { - var$3 = 1; - $default = $x1; - $output = $default.$signature; - if ($output !== null) { - $name = $output.$name10; - $output = $output.$warning0; - if ($output instanceof s_Some) { - $warning = $output.$value5; - $x1 = new oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0; - $x1.$_010 = $default; - $x1.$_19 = $name; - $x1.$_27 = $warning; - return $x1; - } - } - } - if (var$3) { - $output = $default.$signature; - $results = $default.$callResults; - if ($output !== null) { - $name = $output.$name10; - $default = $output.$outputSignature; - if ($default instanceof s_Some) { - $output = $default.$value5; - if (sc_IterableOnceOps_exists$($output, new oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1)) { - $x1 = new oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2; - $x1.$_0135 = $name; - $x1.$_151 = $results; - $x1.$_225 = $output; - return $x1; - } - } - } - } - if (!($x1 instanceof oncia_UnresolvedCall)) - return s_PartialFunction$_fallback_fn; - $rt_throw(one_InternalException__init_($rt_s(3664))); -}, -oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1_applyOrElse = ($this, $x1, $default) => { - let $signature, var$4, var$5; - if ($x1 instanceof oncifp_ResolvedCall) { - $default = $x1; - $signature = $default.$signature; - var$4 = $default.$callResults; - var$5 = $default.$optional3; - if (var$4 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$4); - if (!var$4.$lengthCompare(0) && 1 == var$5) { - $x1 = new oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0; - $x1.$_01115 = $default; - $x1.$_1373 = $signature; - return $x1; - } - } - } - if (!($x1 instanceof oncia_UnresolvedCall)) - return s_PartialFunction$_fallback_fn; - $rt_throw(one_InternalException__init_($rt_s(3664))); -}, -oncifp_ObfuscationMetadataCollection$$$anonfun$process$1$lambda$_23_0 = $rt_classWithoutFields(), -oncifp_ObfuscationMetadataCollection$$$anonfun$process$1$lambda$_23_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncifp_ObfuscationMetadataCollection$_$callClinit(); - return var$1.$name28; -}; -function sc_MapView$MapValues() { - let a = this; sc_AbstractMapView.call(a); - a.$underlying36 = null; - a.$f8 = null; -} -let sc_MapView$MapValues_iterator = $this => { - let var$1, var$2; - var$1 = sc_MapView$Id_iterator($this.$underlying36); - var$2 = new sc_MapView$MapValues$iterator$lambda$_0_0; - var$2.$_01069 = $this; - return var$1.$map5(var$2); -}, -sc_MapView$MapValues_knownSize = $this => { - return sc_MapView$Id_knownSize($this.$underlying36); -}, -oncir_RewriterStep$ = $rt_classWithoutFields(), -oncir_RewriterStep$_MODULE$ = null, -oncir_RewriterStep$__clinit_ = () => { - oncir_RewriterStep$_MODULE$ = new oncir_RewriterStep$; -}; -function sc_Iterator$$anon$7() { - let a = this; sc_AbstractIterator.call(a); - a.$hd1 = null; - a.$status0 = 0; - a.$$outer23 = null; - a.$pf$1 = null; -} -let sc_Iterator$$anon$7_toString = $this => { - return $rt_s(37); -}, -sc_Iterator$$anon$7_apply = ($this, $value) => { - return sr_Statics_pfMarker; -}, -sc_Iterator$$anon$7_hasNext = $this => { - let $marker, var$2, $x, $v; - $marker = sr_Statics_pfMarker; - while (true) { - var$2 = $this.$status0; - if (var$2) - break; - if (!$this.$$outer23.$hasNext()) { - $this.$status0 = (-1); - continue; - } - $x = $this.$$outer23.$next(); - $v = $this.$pf$1.$applyOrElse($x, $this); - if ($marker === $v) - continue; - $this.$hd1 = $v; - $this.$status0 = 1; - } - if (var$2 != 1) - return 0; - return 1; -}, -sc_Iterator$$anon$7_next = $this => { - if (!sc_Iterator$$anon$7_hasNext($this)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - $this.$status0 = 0; - return $this.$hd1; -}, -oncias_Scope$ = $rt_classWithoutFields(), -oncias_Scope$_MODULE$ = null, -oncias_Scope$_empty0 = null, -oncias_Scope$_$callClinit = () => { - oncias_Scope$_$callClinit = $rt_eraseClinit(oncias_Scope$); - oncias_Scope$__clinit_(); -}, -oncias_Scope$__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncias_Scope$; - oncias_Scope$_$callClinit(); - oncias_Scope$_MODULE$ = var$1; - var$2 = new oncias_Scope; - sci_HashMap$_$callClinit(); - var$3 = sci_HashMap$_empty(sci_HashMap$_MODULE$); - s_package$_$callClinit(); - oncias_Scope__init_(var$2, var$3, (s_package$_Vector(s_package$_MODULE$)).$from0(sci_Nil$_MODULE$)); - oncias_Scope$_empty0 = var$2; -}, -oncias_Scope$_empty = $this => { - oncias_Scope$_$callClinit(); - return oncias_Scope$_empty0; -}; -function onciuh_TreeZipper() { - let a = this; jl_Object.call(a); - a.$Top$module = null; - a.$org$neo4j$cypher$internal$util$helpers$TreeZipper$$evidence$1 = null; -} -let onciuh_TreeZipper_Top = $this => { - let var$1, $$je; - if ($this.$Top$module === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$Top$module !== null) - break a; - $this.$Top$module = onciuh_TreeZipper$Top$__init_0($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$Top$module; -}, -oncias_SemanticState$ScopeZipper$ = $rt_classWithoutFields(onciuh_TreeZipper), -oncias_SemanticState$ScopeZipper$_MODULE$ = null, -oncias_SemanticState$ScopeZipper$_$callClinit = () => { - oncias_SemanticState$ScopeZipper$_$callClinit = $rt_eraseClinit(oncias_SemanticState$ScopeZipper$); - oncias_SemanticState$ScopeZipper$__clinit_(); -}, -oncias_SemanticState$ScopeZipper$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticState$ScopeZipper$; - oncias_SemanticState$ScopeZipper$_$callClinit(); - sr_ClassTag$_$callClinit(); - var$1.$org$neo4j$cypher$internal$util$helpers$TreeZipper$$evidence$1 = sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncias_Scope)); - oncias_SemanticState$ScopeZipper$_MODULE$ = var$1; -}, -onciuh_TreeElem = $rt_classWithoutFields(0); -function oncias_Scope() { - let a = this; jl_Object.call(a); - a.$symbolTable = null; - a.$children2 = null; -} -let oncias_Scope_symbol = ($this, $name) => { - return $this.$symbolTable.$get2($name); -}, -oncias_Scope_symbolNames = $this => { - return $this.$symbolTable.$keySet0(); -}, -oncias_Scope_allSymbolDefinitions = $this => { - let var$1; - var$1 = oncias_Scope_allScopes($this); - s_Predef$_$callClinit(); - return var$1.$foldLeft(sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)), new oncias_Scope$allSymbolDefinitions$lambda$_15_0); -}, -oncias_Scope_allSymbols = $this => { - let var$1; - var$1 = oncias_Scope_allScopes($this); - s_Predef$_$callClinit(); - return var$1.$foldLeft(sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)), new oncias_Scope$allSymbols$lambda$_16_0); -}, -oncias_Scope_symbolDefinitions = $this => { - return sc_AbstractIterable_toSet(sc_AbstractIterable_map(sc_AbstractMap_values($this.$symbolTable), new oncias_Scope$symbolDefinitions$lambda$_17_0)); -}, -oncias_Scope_allScopes = $this => { - return (sci_$colon$colon__init_($this, sci_Nil$_MODULE$)).$concat($this.$children2.$flatMap(new oncias_Scope$allScopes$lambda$_20_0)); -}, -oncias_Scope_toString = $this => { - let $builder; - $builder = scm_StringBuilder__init_(); - oncias_Scope_dumpSingle($this, $rt_s(4), $builder); - return scm_StringBuilder_result($builder); -}, -oncias_Scope_dumpSingle = ($this, $indent, $builder) => { - let var$3, var$4, var$5; - onciu_Ref$_$callClinit(); - var$3 = onciu_Ref_toIdString(onciu_Ref$_apply(onciu_Ref$_MODULE$, $this)); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(var$4, 35); - jl_StringBuilder_append(var$4, var$3); - var$4 = jl_AbstractStringBuilder_toString(var$4); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $indent), var$4), $rt_s(569)), $rt_s(93)); - scm_StringBuilder_append($builder, jl_AbstractStringBuilder_toString(var$5)); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(82)), $indent); - var$5 = jl_AbstractStringBuilder_toString(var$3); - var$3 = sc_IterableOnceOps_toSeq$($this.$symbolTable.$keySet()); - sm_Ordering$String$_$callClinit(); - var$4 = var$3.$sorted(sm_Ordering$String$_MODULE$); - var$3 = new oncias_Scope$dumpTree$lambda$_24_0; - var$3.$_0123 = $this; - var$3.$_146 = $builder; - var$3.$_223 = var$5; - var$4.$foreach(var$3); - var$4 = $this.$children2; - var$3 = new oncias_Scope$dumpTree$lambda$_24_1; - var$3.$_0649 = var$5; - var$3.$_1222 = $builder; - var$4.$foreach(var$3); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - $indent = jl_StringBuilder_append(var$4, $indent); - jl_AbstractStringBuilder_append0($indent, 125); - jl_StringBuilder_append($indent, $rt_s(93)); - scm_StringBuilder_append($builder, jl_AbstractStringBuilder_toString(var$4)); -}, -oncias_Scope_copy = ($this, $symbolTable, $children) => { - return oncias_Scope__init_0($symbolTable, $children); -}, -oncias_Scope_productPrefix = $this => { - return $rt_s(3665); -}, -oncias_Scope_productArity = $this => { - return 2; -}, -oncias_Scope_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$symbolTable; - case 1: - return $this.$children2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncias_Scope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_Scope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_Scope_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_Scope) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$symbolTable; - var$3 = $x$1.$symbolTable; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$children2; - $x$1 = $x$1.$children2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncias_Scope_updateChildren = ($this, $newChildren) => { - return oncias_Scope_copy($this, $this.$symbolTable, $newChildren); -}, -oncias_Scope__init_ = ($this, $symbolTable, $children) => { - $this.$symbolTable = $symbolTable; - $this.$children2 = $children; -}, -oncias_Scope__init_0 = (var_0, var_1) => { - let var_2 = new oncias_Scope(); - oncias_Scope__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_ASTAnnotationMap$ = $rt_classWithoutFields(), -oncia_ASTAnnotationMap$_MODULE$ = null, -oncia_ASTAnnotationMap$__clinit_ = () => { - oncia_ASTAnnotationMap$_MODULE$ = new oncia_ASTAnnotationMap$; -}, -oncia_ASTAnnotationMap$_empty = $this => { - s_Predef$_$callClinit(); - return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); -}, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$ = $rt_classWithoutFields(), -oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$ = null, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$__clinit_ = () => { - oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$ = new oncias_SemanticFeature$UseAsMultipleGraphsSelector$; -}, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$_toString = $this => { - return $this.$name(); -}, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$_name = $this => { - return $rt_s(3666); -}, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productArity = $this => { - return 0; -}, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$_hashCode = $this => { - return 164738413; -}, -oncias_SemanticCheck = $rt_classWithoutFields(0), -oncias_SemanticCheck_run$ = ($$this, $state, $context) => { - let var$4, var$5, var$6; - oncias_SemanticCheckInterpreter$_$callClinit(); - var$4 = oncias_SemanticCheckInterpreter$_MODULE$; - oncias_SemanticCheckResult$_$callClinit(); - var$5 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, $state); - var$6 = sci_$colon$colon__init_(oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $$this), sci_Nil$_MODULE$); - s_package$_$callClinit(); - return oncias_SemanticCheckInterpreter$_run(var$4, var$5, var$6, $context, sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$))); -}, -oncias_SemanticCheck_chain$ = ($$this, $next) => { - let var$3; - var$3 = new oncias_SemanticCheck$chain$lambda$_15_0; - var$3.$_043 = $next; - return $$this.$flatMap3(var$3); -}, -oncias_SemanticCheck_ifOkChain$ = ($$this, $next) => { - let var$3; - var$3 = new oncias_SemanticCheck$ifOkChain$lambda$_17_0; - var$3.$_0722 = $next; - return $$this.$flatMap3(var$3); -}, -oncias_SemanticCheck_map$ = ($$this, $f) => { - let var$3; - var$3 = new oncias_SemanticCheck$Map; - var$3.$check11 = $$this; - var$3.$f3 = $f; - return var$3; -}, -oncias_SemanticCheck_flatMap$ = ($$this, $f) => { - let var$3; - var$3 = new oncias_SemanticCheck$FlatMap; - var$3.$check9 = $$this; - var$3.$f6 = $f; - return var$3; -}; -function oncias_ScopeTreeVerifier$$verify$lambda$_1_0() { - jl_Object.call(this); - this.$_0731 = null; -} -let oncias_ScopeTreeVerifier$$verify$lambda$_1_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0731; - oncias_ScopeTreeVerifier$_$callClinit(); - var$3 = var$1.$symbolTable; - var$4 = new oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1; - var$4.$scope$1 = var$1; - var$4.$root$1 = var$2; - return var$3.$collect(var$4); -}; -function oncifp_BaseState$statement$lambda$_12_0() { - jl_Object.call(this); - this.$_01009 = null; -} -let oncifp_BaseState$statement$lambda$_12_0_apply = var$0 => { - return oncifp_InitialState_fail(var$0.$_01009, $rt_s(3667)); -}; -function oncifp_BaseState$semantics$lambda$_16_0() { - jl_Object.call(this); - this.$_0 = null; -} -let oncifp_BaseState$semantics$lambda$_16_0_apply = var$0 => { - return oncifp_InitialState_fail(var$0.$_0, $rt_s(3668)); -}, -sci_ListSet = $rt_classWithoutFields(sci_AbstractSet), -onciuci_ListSet$ = $rt_classWithoutFields(), -onciuci_ListSet$_MODULE$ = null, -onciuci_ListSet$__clinit_ = () => { - onciuci_ListSet$_MODULE$ = new onciuci_ListSet$; -}, -onciuci_ListSet$_from = ($this, $it) => { - if ($it instanceof onciuci_ListSet) - return $it; - if (!$it.$knownSize()) - return onciuci_ListSet$_empty($this); - return ((onciuci_ListSet$_newBuilder($this)).$addAll0($it)).$result(); -}, -onciuci_ListSet$_empty = $this => { - onciuci_ListSet$EmptyListSet$_$callClinit(); - return onciuci_ListSet$EmptyListSet$_MODULE$; -}, -onciuci_ListSet$_newBuilder = $this => { - let var$1; - var$1 = new onciuci_ListSet$Builder; - var$1.$javaSet = ju_LinkedHashSet__init_0(); - return var$1; -}, -onciuci_ListSet$_from0 = ($this, $source) => { - return onciuci_ListSet$_from($this, $source); -}; -function onciuci_ListSet() { - let a = this; sci_AbstractSet.call(a); - a.$underlying6 = null; - a.$hashCode10 = 0; -} -let onciuci_ListSet_partition = ($this, $p) => { - return sc_StrictOptimizedIterableOps_partition$($this, $p); -}, -onciuci_ListSet_map = ($this, $f) => { - return sc_StrictOptimizedIterableOps_map$($this, $f); -}, -onciuci_ListSet_flatMap = ($this, $f) => { - return sc_StrictOptimizedIterableOps_flatMap$($this, $f); -}, -onciuci_ListSet_collect = ($this, $pf) => { - return sc_StrictOptimizedIterableOps_collect$($this, $pf); -}, -onciuci_ListSet_flatten = ($this, $toIterableOnce) => { - return sc_StrictOptimizedIterableOps_flatten$($this, $toIterableOnce); -}, -onciuci_ListSet_filter = ($this, $pred) => { - return sc_StrictOptimizedIterableOps_filter$($this, $pred); -}, -onciuci_ListSet_filterNot = ($this, $pred) => { - return sc_StrictOptimizedIterableOps_filterNot$($this, $pred); -}, -onciuci_ListSet_filterImpl = ($this, $pred, $isFlipped) => { - return sc_StrictOptimizedIterableOps_filterImpl$($this, $pred, $isFlipped); -}, -onciuci_ListSet_className = $this => { - return $rt_s(3669); -}, -onciuci_ListSet_size = $this => { - return ju_HashSet_size($this.$underlying6); -}, -onciuci_ListSet_isEmpty = $this => { - return ju_HashSet_isEmpty($this.$underlying6); -}, -onciuci_ListSet_knownSize = $this => { - if (ju_HashSet_isEmpty($this.$underlying6)) - return 0; - return (-1); -}, -onciuci_ListSet_incl0 = ($this, $elem) => { - let $newJava; - if (onciuci_ListSet_contains($this, $elem)) - return $this; - $newJava = ju_LinkedHashSet__init_($this.$underlying6); - ju_HashSet_add($newJava, $elem); - return onciuci_ListSet__init_($newJava); -}, -onciuci_ListSet_excl0 = ($this, $elem) => { - let $newJava; - $newJava = ju_LinkedHashSet__init_($this.$underlying6); - ju_HashSet_remove($newJava, $elem); - return onciuci_ListSet__init_($newJava); -}, -onciuci_ListSet_contains = ($this, $elem) => { - return ju_HashSet_contains($this.$underlying6, $elem); -}, -onciuci_ListSet_iterator = $this => { - return scc_AsScalaExtensions$IteratorHasAsScala_asScala(sj_CollectionConverters$_IteratorHasAsScala(sj_CollectionConverters$_MODULE$, ju_HashSet_iterator($this.$underlying6))); -}, -onciuci_ListSet_iterableFactory = $this => { - return onciuci_ListSet$_MODULE$; -}, -onciuci_ListSet_concat0 = ($this, $that) => { - let $it; - $it = $that.$iterator0(); - if ($it.$isEmpty()) - return $this; - return ((scm_Growable_addAll$(onciuci_ListSet$_newBuilder(onciuci_ListSet$_MODULE$), $this)).$addAll0($it)).$result(); -}, -onciuci_ListSet_removedAll = ($this, $that) => { - let $it, $newJava, var$4, var$5; - $it = $that.$iterator0(); - if ($it.$isEmpty()) - return $this; - $newJava = ju_LinkedHashSet__init_($this.$underlying6); - if (!($that instanceof onciuci_ListSet)) { - $that = new onciuci_ListSet$removedAll$lambda$_51_0; - $that.$_0367 = $newJava; - $it.$foreach($that); - } else { - var$4 = $that.$underlying6; - var$5 = 0; - if (ju_HashSet_size($newJava) >= ju_HashSet_size(var$4)) { - $that = ju_HashSet_iterator(var$4); - while ($that.$hasNext()) { - if (!ju_HashSet_remove($newJava, $that.$next())) - continue; - var$5 = 1; - } - } else { - $that = ju_HashSet_iterator($newJava); - while ($that.$hasNext()) { - if (ju_HashSet_contains(var$4, $that.$next())) { - var$5 = 1; - $that.$remove2(); - } - } - } - jl_Boolean_valueOf(var$5); - } - return onciuci_ListSet__init_($newJava); -}, -onciuci_ListSet_hashCode = $this => { - return $this.$hashCode10; -}, -onciuci_ListSet_removedAll0 = ($this, $that) => { - return onciuci_ListSet_removedAll($this, $that); -}, -onciuci_ListSet_concat = ($this, $that) => { - return onciuci_ListSet_concat0($this, $that); -}, -onciuci_ListSet_excl = ($this, $elem) => { - return onciuci_ListSet_excl0($this, $elem); -}, -onciuci_ListSet_incl = ($this, $elem) => { - return onciuci_ListSet_incl0($this, $elem); -}, -onciuci_ListSet__init_0 = ($this, $underlying) => { - $this.$underlying6 = $underlying; - $this.$hashCode10 = sc_Set_hashCode$($this); -}, -onciuci_ListSet__init_ = var_0 => { - let var_1 = new onciuci_ListSet(); - onciuci_ListSet__init_0(var_1, var_0); - return var_1; -}; -function onciu_Rewritable$$dupAny$lambda$_5_0() { - jl_Object.call(this); - this.$_054 = null; -} -let onciu_Rewritable$$dupAny$lambda$_5_0__init_ = (var$0, var$1) => { - var$0.$_054 = var$1; -}, -onciu_Rewritable$$dupAny$lambda$_5_0__init_0 = var_0 => { - let var_1 = new onciu_Rewritable$$dupAny$lambda$_5_0(); - onciu_Rewritable$$dupAny$lambda$_5_0__init_(var_1, var_0); - return var_1; -}, -onciu_Rewritable$$dupAny$lambda$_5_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_054; - if (var$1 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$1); - if (!var$1.$lengthCompare(2)) - return sci_MapBuilderImpl_addOne(var$2, s_Tuple2__init_(var$1.$apply1(0), var$1.$apply1(1))); - } - var$1 = new jl_IllegalStateException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}, -onciu_Foldable$TreeAny$$treeChildren$extension$lambda$_1_0 = $rt_classWithoutFields(), -onciu_Foldable$TreeAny$$treeChildren$extension$lambda$_1_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - onciu_Foldable$TreeAny$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - s_package$_$callClinit(); - s_package$_Iterator(s_package$_MODULE$); - return (sr_ScalaRunTime$_genericWrapArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_Object, [var$2, var$1]))).$iterator0(); -}; -function sc_IterableOnceOps$min$lambda$_77_0() { - jl_Object.call(this); - this.$_0536 = null; -} -let sc_IterableOnceOps$min$lambda$_77_0_apply = (var$0, var$1, var$2) => { - return var$0.$_0536.$min0(var$1, var$2); -}; -function oncir_ValidatingRewriter() { - let a = this; jl_Object.call(a); - a.$inner4 = null; - a.$step2 = null; - a.$cancellationChecker = null; -} -let oncir_ValidatingRewriter_toString = $this => { - return $rt_s(37); -}, -oncir_ValidatingRewriter_apply = ($this, $that) => { - let $result, var$3, var$4; - $result = $this.$inner4.$apply2($that); - var$3 = $this.$step2.$postConditions(); - $that = new oncir_ValidatingRewriter$$anonfun$1; - $that.$$outer49 = $this; - $that.$input$1 = $result; - $that = var$3.$collect($that); - if (!$that.$exists(new oncir_ValidatingRewriter$validate$lambda$_35_0)) - return $result; - $result = new jl_IllegalStateException; - var$3 = scm_StringBuilder__init_(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3670)), $rt_s(37)), $rt_s(3671)); - scm_StringBuilder_$plus$plus$eq(var$3, jl_AbstractStringBuilder_toString(var$4)); - $that = sc_AbstractIterable_withFilter($that, new oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_0); - var$4 = new oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_1; - var$4.$_023 = var$3; - sc_IterableOps$WithFilter_foreach($that, var$4); - jl_Throwable__init_0($result, scm_StringBuilder_result(var$3)); - $rt_throw($result); -}, -oncir_ValidatingRewriter_productPrefix = $this => { - return $rt_s(3672); -}, -oncir_ValidatingRewriter_productArity = $this => { - return 3; -}, -oncir_ValidatingRewriter_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$inner4; - case 1: - return $this.$step2; - case 2: - return $this.$cancellationChecker; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncir_ValidatingRewriter_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncir_ValidatingRewriter_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncir_ValidatingRewriter_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncir_ValidatingRewriter) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$inner4; - var$3 = $x$1.$inner4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$step2; - var$3 = $x$1.$step2; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$cancellationChecker; - $x$1 = $x$1.$cancellationChecker; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncir_ValidatingRewriter)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncias_SemanticFeature$MultipleGraphs$ = $rt_classWithoutFields(), -oncias_SemanticFeature$MultipleGraphs$_MODULE$ = null, -oncias_SemanticFeature$MultipleGraphs$__clinit_ = () => { - oncias_SemanticFeature$MultipleGraphs$_MODULE$ = new oncias_SemanticFeature$MultipleGraphs$; -}, -oncias_SemanticFeature$MultipleGraphs$_toString = $this => { - return $this.$name(); -}, -oncias_SemanticFeature$MultipleGraphs$_name = $this => { - return $rt_s(3673); -}, -oncias_SemanticFeature$MultipleGraphs$_productArity = $this => { - return 0; -}, -oncias_SemanticFeature$MultipleGraphs$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticFeature$MultipleGraphs$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticFeature$MultipleGraphs$_hashCode = $this => { - return (-374670539); -}, -oncias_SemanticFeature$ShowSetting$ = $rt_classWithoutFields(), -oncias_SemanticFeature$ShowSetting$_MODULE$ = null, -oncias_SemanticFeature$ShowSetting$__clinit_ = () => { - oncias_SemanticFeature$ShowSetting$_MODULE$ = new oncias_SemanticFeature$ShowSetting$; -}, -oncias_SemanticFeature$ShowSetting$_toString = $this => { - return $this.$name(); -}, -oncias_SemanticFeature$ShowSetting$_name = $this => { - return $rt_s(3674); -}, -oncias_SemanticFeature$ShowSetting$_productArity = $this => { - return 0; -}, -oncias_SemanticFeature$ShowSetting$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticFeature$ShowSetting$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticFeature$ShowSetting$_hashCode = $this => { - return (-252998541); -}, -oncias_SemanticFeature$MatchModes$ = $rt_classWithoutFields(), -oncias_SemanticFeature$MatchModes$_MODULE$ = null, -oncias_SemanticFeature$MatchModes$_$callClinit = () => { - oncias_SemanticFeature$MatchModes$_$callClinit = $rt_eraseClinit(oncias_SemanticFeature$MatchModes$); - oncias_SemanticFeature$MatchModes$__clinit_(); -}, -oncias_SemanticFeature$MatchModes$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticFeature$MatchModes$; - oncias_SemanticFeature$MatchModes$_$callClinit(); - oncias_SemanticFeature$MatchModes$_MODULE$ = var$1; -}, -oncias_SemanticFeature$MatchModes$_toString = $this => { - return $this.$name(); -}, -oncias_SemanticFeature$MatchModes$_name = $this => { - return $rt_s(3675); -}, -oncias_SemanticFeature$MatchModes$_productArity = $this => { - return 0; -}, -oncias_SemanticFeature$MatchModes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticFeature$MatchModes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticFeature$MatchModes$_hashCode = $this => { - return (-453025653); -}, -oncias_SemanticFeature$ComposableCommands$ = $rt_classWithoutFields(), -oncias_SemanticFeature$ComposableCommands$_MODULE$ = null, -oncias_SemanticFeature$ComposableCommands$__clinit_ = () => { - oncias_SemanticFeature$ComposableCommands$_MODULE$ = new oncias_SemanticFeature$ComposableCommands$; -}, -oncias_SemanticFeature$ComposableCommands$_toString = $this => { - return $this.$name(); -}, -oncias_SemanticFeature$ComposableCommands$_name = $this => { - return $rt_s(3676); -}, -oncias_SemanticFeature$ComposableCommands$_productArity = $this => { - return 0; -}, -oncias_SemanticFeature$ComposableCommands$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticFeature$ComposableCommands$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticFeature$ComposableCommands$_hashCode = $this => { - return 851298005; -}, -oncias_SemanticFeature$DynamicLabelsAndTypes$ = $rt_classWithoutFields(), -oncias_SemanticFeature$DynamicLabelsAndTypes$_MODULE$ = null, -oncias_SemanticFeature$DynamicLabelsAndTypes$__clinit_ = () => { - oncias_SemanticFeature$DynamicLabelsAndTypes$_MODULE$ = new oncias_SemanticFeature$DynamicLabelsAndTypes$; -}, -oncias_SemanticFeature$DynamicLabelsAndTypes$_toString = $this => { - return $this.$name(); -}, -oncias_SemanticFeature$DynamicLabelsAndTypes$_name = $this => { - return $rt_s(3677); -}; -let oncias_SemanticFeature$DynamicLabelsAndTypes$_productArity = $this => { - return 0; -}, -oncias_SemanticFeature$DynamicLabelsAndTypes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticFeature$DynamicLabelsAndTypes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticFeature$DynamicLabelsAndTypes$_hashCode = $this => { - return (-576228352); -}, -oncias_Scope$allScopes$lambda$_20_0 = $rt_classWithoutFields(), -oncias_Scope$allScopes$lambda$_20_0_apply = (var$0, var$1) => { - return oncias_Scope_allScopes(var$1); -}; -function onciu_Rewritable$IteratorEq() { - jl_Object.call(this); - this.$iterator2 = null; -} -let onciu_Rewritable$IteratorEq_eqElements = ($this, $that) => { - let $dis, $dat, $same; - a: { - while (true) { - if (!$this.$iterator2.$hasNext()) - break a; - if (!$that.$hasNext()) - break a; - b: { - $dis = $this.$iterator2.$next(); - $dat = $that.$next(); - if ($dis instanceof jl_Integer) { - $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; - break b; - } - if ($dis instanceof jl_Long) { - $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; - break b; - } - if ($dis instanceof jl_Double) { - $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; - break b; - } - if ($dis instanceof jl_Float) { - $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; - break b; - } - if ($dis instanceof jl_Short) { - $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; - break b; - } - if ($dis instanceof jl_Byte) { - $same = !sr_BoxesRunTime_equalsNumObject($dis, $dat) ? 0 : 1; - break b; - } - if ($dis instanceof jl_Character) { - $same = !sr_BoxesRunTime_equals($dis, $dat) ? 0 : 1; - break b; - } - if (!($dis instanceof jl_Boolean)) { - $same = $dis !== $dat ? 0 : 1; - break b; - } - $same = !sr_BoxesRunTime_equals($dis, $dat) ? 0 : 1; - } - if (!$same) - break; - } - return 0; - } - return !$this.$iterator2.$hasNext() && !$that.$hasNext() ? 1 : 0; -}, -onciu_RewritableJavascript = $rt_classWithoutFields(), -onciu_RewritableJavascript_copyConstructor = (var$1, var$2, var$3) => { - let var$4; - a: { - b: { - c: { - d: { - e: { - f: { - g: { - h: { - i: { - j: { - k: { - l: { - m: { - n: { - o: { - p: { - q: { - r: { - s: { - t: { - u: { - v: { - w: { - x: { - y: { - z: { - ba: { - bb: { - bc: { - bd: { - be: { - bf: { - bg: { - bh: { - bi: { - bj: { - bk: { - bl: { - bm: { - bn: { - bo: { - bp: { - bq: { - br: { - bs: { - bt: { - bu: { - bv: { - bw: { - bx: { - by: { - bz: { - bA: { - bB: { - bC: { - bD: { - bE: { - bF: { - bG: { - bH: { - bI: { - bJ: { - bK: { - bL: { - bM: { - bN: { - bO: { - bP: { - bQ: { - bR: { - bS: { - bT: { - bU: { - bV: { - bW: { - bX: { - bY: { - bZ: { - b0: { - b1: { - b2: { - b3: { - b4: { - b5: { - b6: { - b7: { - b8: { - b9: { - b$: { - b_: { - ca: { - cb: { - cc: { - cd: { - ce: { - cf: { - cg: { - ch: { - ci: { - cj: { - ck: { - cl: { - cm: { - cn: { - co: { - cp: { - cq: { - cr: { - cs: { - ct: { - cu: { - cv: { - cw: { - cx: { - cy: { - cz: { - cA: { - cB: { - cC: { - cD: { - cE: { - cF: { - cG: { - cH: { - cI: { - cJ: { - cK: { - cL: - { - cM: - { - cN: - { - cO: - { - cP: - { - cQ: - { - cR: - { - cS: - { - cT: - { - cU: - { - cV: - { - cW: - { - cX: - { - cY: - { - cZ: - { - c0: - { - c1: - { - c2: - { - c3: - { - c4: - { - c5: - { - c6: - { - c7: - { - c8: - { - c9: - { - c$: - { - c_: - { - da: - { - db: - { - dc: - { - dd: - { - de: - { - df: - { - dg: - { - dh: - { - di: - { - dj: - { - dk: - { - dl: - { - dm: - { - dn: - { - dp: - { - dq: - { - dr: - { - ds: - { - dt: - { - du: - { - dv: - { - dw: - { - dx: - { - dy: - { - dz: - { - dA: - { - dB: - { - dC: - { - dD: - { - dE: - { - dF: - { - dG: - { - dH: - { - dI: - { - dJ: - { - dK: - { - dL: - { - dM: - { - dN: - { - dO: - { - dP: - { - dQ: - { - dR: - { - dS: - { - dT: - { - dU: - { - dV: - { - dW: - { - dX: - { - dY: - { - dZ: - { - d0: - { - d1: - { - d2: - { - d3: - { - d4: - { - d5: - { - d6: - { - d7: - { - d8: - { - d9: - { - d$: - { - d_: - { - ea: - { - eb: - { - ec: - { - ed: - { - ee: - { - ef: - { - eg: - { - eh: - { - ei: - { - ej: - { - ek: - { - el: - { - em: - { - en: - { - eo: - { - ep: - { - eq: - { - er: - { - es: - { - et: - { - eu: - { - ev: - { - ew: - { - ex: - { - ey: - { - ez: - { - eA: - { - eB: - { - eC: - { - eD: - { - eE: - { - eF: - { - eG: - { - eH: - { - eI: - { - eJ: - { - eK: - { - eL: - { - eM: - { - eN: - { - eO: - { - eP: - { - eQ: - { - eR: - { - eS: - { - eT: - { - eU: - { - eV: - { - eW: - { - eX: - { - eY: - { - eZ: - { - e0: - { - e1: - { - e2: - { - e3: - { - e4: - { - e5: - { - e6: - { - e7: - { - e8: - { - e9: - { - e$: - { - e_: - { - fa: - { - fb: - { - fc: - { - fd: - { - fe: - { - ff: - { - var$4 - = - jl_Class_getName(var$1); - switch - (jl_String_hashCode(var$4)) - { - case 455596914: - break; - case -696583615: - break ff; - case -1108946791: - break fe; - case 814608189: - break fd; - case -1944844053: - break fc; - case -149837559: - break fb; - case -173726688: - break fa; - case 463217861: - break e_; - case 1344819286: - break e$; - case -1885430284: - break e9; - case -1990238911: - break e8; - case -1624236093: - break e7; - case 1139703987: - break e6; - case 218162326: - break e5; - case 161043599: - break e4; - case -2109905426: - break e3; - case -1699139200: - break e2; - case 257300197: - break e1; - case -1567460475: - break e0; - case -1849450182: - break eZ; - case -1161986269: - break eY; - case -871373505: - break eX; - case -2004672172: - break eW; - case -1854989025: - break eV; - case 1995730627: - break eU; - case -1446274576: - break eT; - case -59220920: - break eS; - case 1905747848: - break eR; - case 876306657: - break eQ; - case 563302816: - break eP; - case -1509369838: - break eO; - case -551872710: - break eN; - case -1603524070: - break eM; - case -309054547: - break eL; - case 597069130: - break eK; - case -1780947554: - break eJ; - case -83434525: - break eI; - case 1106883801: - break eH; - case 791743121: - break eG; - case 994181372: - break eF; - case -173726498: - break eE; - case -1090567930: - break eD; - case -324525645: - break eC; - case -985722153: - break eB; - case 552142263: - break eA; - case 35532533: - break ez; - case 808140963: - break ey; - case 552536514: - break ex; - case 1113043596: - break ew; - case 180309318: - break ev; - case 1098373913: - break eu; - case 171553019: - break et; - case -1601654356: - break es; - case 1993308723: - break er; - case 1956588185: - break eq; - case -690264973: - break ep; - case -185398452: - break eo; - case -354016038: - break en; - case -547163946: - break em; - case 1836487610: - break el; - case -124559559: - break ek; - case 1298739788: - break ej; - case -527102827: - break ei; - case 1505287241: - break eh; - case 1687177394: - break eg; - case -1375343095: - break ef; - case -2107404354: - break ee; - case 1252416461: - break ed; - case -799399769: - break ec; - case 1835843740: - break eb; - case 1693844367: - break ea; - case -1971775404: - break d_; - case 1143216060: - break d$; - case -596404360: - break d9; - case 1836370035: - break d8; - case -57639779: - break d7; - case 386603235: - break d6; - case 140909333: - break d5; - case 1111213695: - break d4; - case -1875460719: - break d3; - case -974095529: - break d2; - case -2008336743: - break d1; - case 767481184: - break d0; - case -446332315: - break dZ; - case -1846818353: - break dY; - case 25975226: - break dX; - case -1672152040: - break dW; - case -1869678611: - break dV; - case 2123943227: - break dU; - case -925030859: - break dT; - case -1525448294: - break dS; - case 490543052: - break dR; - case 553477153: - break dQ; - case 1032130721: - break dP; - case 2021177853: - break dO; - case -1399872522: - break dN; - case -101943729: - break dM; - case 68785030: - break dL; - case 630773776: - break dK; - case -382919541: - break dJ; - case -1036156617: - break dI; - case 44260601: - break dH; - case -1053180719: - break dG; - case 941027000: - break dF; - case -2097338776: - break dE; - case -1430315311: - break dD; - case 1743234077: - break dC; - case -1002775686: - break dB; - case 1994092090: - break dA; - case -2007159869: - break dz; - case 1400223240: - break dy; - case -1889018242: - break dx; - case 773610978: - break dw; - case 549588447: - break dv; - case 545017439: - break du; - case 924040911: - break dt; - case 715403871: - break ds; - case 488962701: - break dr; - case 773878287: - break dq; - case -853835129: - break dp; - case -862437735: - break dn; - case -4879682: - break dm; - case 1590622701: - break dl; - case 654843427: - break dk; - case -72889640: - break dj; - case 51139985: - break di; - case 1257722521: - break dh; - case -1509467160: - break dg; - case 1763538108: - break df; - case -931686672: - break de; - case -1569671430: - break dd; - case 1086375751: - break dc; - case -692014538: - break db; - case -1215424878: - break da; - case -1377215654: - break c_; - case 1085962297: - break c$; - case -1397478846: - break c9; - case -1930616743: - break c8; - case -1629866976: - break c7; - case 1344230015: - break c6; - case 967704049: - break c5; - case -2070218311: - break c4; - case -1651308197: - break c3; - case 1131485948: - break c2; - case -1631614488: - break c1; - case 257458495: - break c0; - case -361629069: - break cZ; - case -14881129: - break cY; - case 1148049014: - break cX; - case 1887073695: - break cW; - case 1903613124: - break cV; - case 1743141064: - break cU; - case 345156959: - break cT; - case -721388032: - break cS; - case -391096479: - break cR; - case -1942599922: - break cQ; - case -2013484445: - break cP; - case -335388913: - break cO; - case 838435105: - break cN; - case 68878043: - break cM; - case 390701443: - break cL; - case 201251871: - break cK; - case 1605005311: - break cJ; - case 1087067473: - break cI; - case 1131043253: - break cH; - case -1167383453: - break cG; - case -769608440: - break cF; - case 1412105672: - break cE; - case 1400329004: - break cD; - case -1845562242: - break cC; - case 825085381: - break cB; - case 224696041: - break cA; - case -766295774: - break cz; - case -1814577755: - break cy; - case 2117196269: - break cx; - case 1752564371: - break cw; - case 352140276: - break cv; - case 86719663: - break cu; - case 884425735: - break ct; - case -1622751247: - break cs; - case 2111686605: - break cr; - case -921688526: - break cq; - case 185377688: - break cp; - case 1553787535: - break co; - case 1087184836: - break cn; - case -1092119273: - break cm; - case -1388906993: - break cl; - case -1734229172: - break ck; - case -2128450866: - break cj; - case 2016921081: - break ci; - case 1555225207: - break ch; - case -1683547861: - break cg; - case -523752746: - break cf; - case -1223363698: - break ce; - case 421974435: - break cd; - case -393782920: - break cc; - case -1090555552: - break cb; - case -2060497514: - break ca; - case 1628021123: - break b_; - case 722610464: - break b$; - case -48137118: - break b9; - case -779711344: - break b8; - case 433120830: - break b7; - case -1189054542: - break b6; - case -429840592: - break b5; - case 1878523352: - break b4; - case -395643130: - break b3; - case -1090555080: - break b2; - case -1154925950: - break b1; - case 984874708: - break b0; - case 49269903: - break bZ; - case 1674145006: - break bY; - case 839143939: - break bX; - case -1991860843: - break bW; - case -1757559093: - break bV; - case -914850913: - break bU; - case 2129483779: - break bT; - case 513352456: - break bS; - case -1054021648: - break bR; - case 1713437764: - break bQ; - case 867259615: - break bP; - case -514003336: - break bO; - case -169006806: - break bN; - case 473626369: - break bM; - case -613470511: - break bL; - case -225666173: - break bK; - case -2114881767: - break bJ; - case -1210939641: - break bI; - case 1319121459: - break bH; - case -2109192114: - break bG; - case 893432812: - break bF; - case -1137178901: - break bE; - case -424824043: - break bD; - case -1090545472: - break bC; - case 1040811906: - break bB; - case 1367871194: - break bA; - case -1515462440: - break bz; - case -165889114: - break by; - case -4879681: - break bx; - case 140235448: - break bw; - case -213184938: - break bv; - case 737899923: - break bu; - case -1231296631: - break bt; - case -1818883748: - break bs; - case -1090553155: - break br; - case 41837598: - break bq; - case 979786518: - break bp; - case -2119301848: - break bo; - case -763184979: - break bn; - case -419512299: - break bm; - case 953953403: - break bl; - case 44353614: - break bk; - case 976534482: - break bj; - case -1588700173: - break bi; - case -2045600235: - break bh; - case 616494848: - break bg; - case 1567771547: - break bf; - case 1671927173: - break be; - case 1091776181: - break bd; - case -677401976: - break bc; - case 1522974895: - break bb; - case 906154098: - break ba; - case 1721669609: - break z; - case -246593737: - break y; - case -621882202: - break x; - case -299067664: - break w; - case 24898165: - break v; - case 841414265: - break u; - case 1096497267: - break t; - case 1803262547: - break s; - case -513789148: - break r; - case -1306656222: - break q; - case 2136683676: - break p; - case -1684645191: - break o; - case -17764532: - break n; - case 736006033: - break m; - case -1240947019: - break l; - case 552712649: - break k; - case -160977132: - break j; - case -493082050: - break i; - case 1996487587: - break h; - case -411300885: - break g; - case 250317358: - break f; - case 342871275: - break e; - case 605400192: - break d; - case -2068787732: - break c; - case -1090567620: - break b; - default: - break a; - } - if - (!jl_String_equals(var$4, - $rt_s(3678))) - break a; - return onciu_RewritableJavascript$PROXY$7_96_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3679))) - break a; - return onciu_RewritableJavascript$PROXY$7_404_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3680))) - break a; - return onciu_RewritableJavascript$PROXY$7_453_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3681))) - break a; - return onciu_RewritableJavascript$PROXY$7_427_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3682))) - break a; - return onciu_RewritableJavascript$PROXY$7_535_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3683))) - break a; - return onciu_RewritableJavascript$PROXY$7_40_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3684))) - break a; - return onciu_RewritableJavascript$PROXY$7_236_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3685))) - break a; - return onciu_RewritableJavascript$PROXY$7_44_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3686))) - break a; - return onciu_RewritableJavascript$PROXY$7_39_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3687))) - break a; - return onciu_RewritableJavascript$PROXY$7_292_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3688))) - break a; - return onciu_RewritableJavascript$PROXY$7_353_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3689))) - break a; - return onciu_RewritableJavascript$PROXY$7_340_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3690))) - break a; - return onciu_RewritableJavascript$PROXY$7_92_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3691))) - break a; - return onciu_RewritableJavascript$PROXY$7_251_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3692))) - break a; - return onciu_RewritableJavascript$PROXY$7_351_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3693))) - break a; - return onciu_RewritableJavascript$PROXY$7_352_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3694))) - break a; - return onciu_RewritableJavascript$PROXY$7_374_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3695))) - break a; - return onciu_RewritableJavascript$PROXY$7_400_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3696))) - break a; - return onciu_RewritableJavascript$PROXY$7_549_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3697))) - break a; - return onciu_RewritableJavascript$PROXY$7_71_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3698))) - break a; - return onciu_RewritableJavascript$PROXY$7_315_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3699))) - break a; - return onciu_RewritableJavascript$PROXY$7_300_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3700))) - break a; - return onciu_RewritableJavascript$PROXY$7_343_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3701))) - break a; - return onciu_RewritableJavascript$PROXY$7_520_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3702))) - break a; - return onciu_RewritableJavascript$PROXY$7_385_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3703))) - break a; - return onciu_RewritableJavascript$PROXY$7_674_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3704))) - break a; - return onciu_RewritableJavascript$PROXY$7_193_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3705))) - break a; - return onciu_RewritableJavascript$PROXY$7_291_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3706))) - break a; - return onciu_RewritableJavascript$PROXY$7_34_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3707))) - break a; - return onciu_RewritableJavascript$PROXY$7_323_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3708))) - break a; - return onciu_RewritableJavascript$PROXY$7_399_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3709))) - break a; - return onciu_RewritableJavascript$PROXY$7_492_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3710))) - break a; - return onciu_RewritableJavascript$PROXY$7_274_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3711))) - break a; - return onciu_RewritableJavascript$PROXY$7_235_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3712))) - break a; - return onciu_RewritableJavascript$PROXY$7_560_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3713))) - break a; - return onciu_RewritableJavascript$PROXY$7_565_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3714))) - break a; - return onciu_RewritableJavascript$PROXY$7_242_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3715))) - break a; - return onciu_RewritableJavascript$PROXY$7_336_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3716))) - break a; - return onciu_RewritableJavascript$PROXY$7_380_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3717))) - break a; - return onciu_RewritableJavascript$PROXY$7_552_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3718))) - break a; - return onciu_RewritableJavascript$PROXY$7_264_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3719))) - break a; - return onciu_RewritableJavascript$PROXY$7_265_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3720))) - break a; - return onciu_RewritableJavascript$PROXY$7_36_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3721))) - break a; - return onciu_RewritableJavascript$PROXY$7_295_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3722))) - break a; - return onciu_RewritableJavascript$PROXY$7_245_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3723))) - break a; - return onciu_RewritableJavascript$PROXY$7_257_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3724))) - break a; - return onciu_RewritableJavascript$PROXY$7_1_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3725))) - break a; - return onciu_RewritableJavascript$PROXY$7_73_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3726))) - break a; - return onciu_RewritableJavascript$PROXY$7_86_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3727))) - break a; - return onciu_RewritableJavascript$PROXY$7_241_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3728))) - break a; - return onciu_RewritableJavascript$PROXY$7_75_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3729))) - break a; - return onciu_RewritableJavascript$PROXY$7_109_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3730))) - break a; - return onciu_RewritableJavascript$PROXY$7_255_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3731))) - break a; - return onciu_RewritableJavascript$PROXY$7_695_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3732))) - break a; - return onciu_RewritableJavascript$PROXY$7_285_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3733))) - break a; - return onciu_RewritableJavascript$PROXY$7_425_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3734))) - break a; - return onciu_RewritableJavascript$PROXY$7_254_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3735))) - break a; - return onciu_RewritableJavascript$PROXY$7_289_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3736))) - break a; - return onciu_RewritableJavascript$PROXY$7_512_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3737))) - break a; - return onciu_RewritableJavascript$PROXY$7_76_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3738))) - break a; - return onciu_RewritableJavascript$PROXY$7_238_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3739))) - break a; - return onciu_RewritableJavascript$PROXY$7_133_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3740))) - break a; - return onciu_RewritableJavascript$PROXY$7_267_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3741))) - break a; - return onciu_RewritableJavascript$PROXY$7_354_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3742))) - break a; - return onciu_RewritableJavascript$PROXY$7_246_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3743))) - break a; - return onciu_RewritableJavascript$PROXY$7_532_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3744))) - break a; - return onciu_RewritableJavascript$PROXY$7_498_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3745))) - break a; - return onciu_RewritableJavascript$PROXY$7_3_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3746))) - break a; - return onciu_RewritableJavascript$PROXY$7_503_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3747))) - break a; - return onciu_RewritableJavascript$PROXY$7_105_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3748))) - break a; - return onciu_RewritableJavascript$PROXY$7_266_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3749))) - break a; - return onciu_RewritableJavascript$PROXY$7_430_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3750))) - break a; - return onciu_RewritableJavascript$PROXY$7_312_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3751))) - break a; - return onciu_RewritableJavascript$PROXY$7_553_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3752))) - break a; - return onciu_RewritableJavascript$PROXY$7_412_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3753))) - break a; - return onciu_RewritableJavascript$PROXY$7_303_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3754))) - break a; - return onciu_RewritableJavascript$PROXY$7_290_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3755))) - break a; - return onciu_RewritableJavascript$PROXY$7_419_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3756))) - break a; - return onciu_RewritableJavascript$PROXY$7_369_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3757))) - break a; - return onciu_RewritableJavascript$PROXY$7_402_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3758))) - break a; - return onciu_RewritableJavascript$PROXY$7_470_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3759))) - break a; - return onciu_RewritableJavascript$PROXY$7_115_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3760))) - break a; - return onciu_RewritableJavascript$PROXY$7_413_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3761))) - break a; - return onciu_RewritableJavascript$PROXY$7_335_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3762))) - break a; - return onciu_RewritableJavascript$PROXY$7_280_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3763))) - break a; - return onciu_RewritableJavascript$PROXY$7_2_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3764))) - break a; - return onciu_RewritableJavascript$PROXY$7_329_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3765))) - break a; - return onciu_RewritableJavascript$PROXY$7_390_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3766))) - break a; - return onciu_RewritableJavascript$PROXY$7_43_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3767))) - break a; - return onciu_RewritableJavascript$PROXY$7_344_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3768))) - break a; - return onciu_RewritableJavascript$PROXY$7_392_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3769))) - break a; - return onciu_RewritableJavascript$PROXY$7_308_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3770))) - break a; - return onciu_RewritableJavascript$PROXY$7_326_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3771))) - break a; - return onciu_RewritableJavascript$PROXY$7_205_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3772))) - break a; - return onciu_RewritableJavascript$PROXY$7_287_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3773))) - break a; - return onciu_RewritableJavascript$PROXY$7_313_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3774))) - break a; - return onciu_RewritableJavascript$PROXY$7_46_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3775))) - break a; - return onciu_RewritableJavascript$PROXY$7_393_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3776))) - break a; - return onciu_RewritableJavascript$PROXY$7_494_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3777))) - break a; - return onciu_RewritableJavascript$PROXY$7_391_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3778))) - break a; - return onciu_RewritableJavascript$PROXY$7_107_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3779))) - break a; - return onciu_RewritableJavascript$PROXY$7_418_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3780))) - break a; - return onciu_RewritableJavascript$PROXY$7_116_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3781))) - break a; - return onciu_RewritableJavascript$PROXY$7_367_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3782))) - break a; - return onciu_RewritableJavascript$PROXY$7_85_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3783))) - break a; - return onciu_RewritableJavascript$PROXY$7_337_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3784))) - break a; - return onciu_RewritableJavascript$PROXY$7_417_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3785))) - break a; - return onciu_RewritableJavascript$PROXY$7_108_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3786))) - break a; - return onciu_RewritableJavascript$PROXY$7_331_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3787))) - break a; - return onciu_RewritableJavascript$PROXY$7_551_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3788))) - break a; - return onciu_RewritableJavascript$PROXY$7_275_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3789))) - break a; - return onciu_RewritableJavascript$PROXY$7_428_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3790))) - break a; - return onciu_RewritableJavascript$PROXY$7_273_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3791))) - break a; - return onciu_RewritableJavascript$PROXY$7_398_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3792))) - break a; - return onciu_RewritableJavascript$PROXY$7_692_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3793))) - break a; - return onciu_RewritableJavascript$PROXY$7_338_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3794))) - break a; - return onciu_RewritableJavascript$PROXY$7_87_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3795))) - break a; - return onciu_RewritableJavascript$PROXY$7_429_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3796))) - break a; - return onciu_RewritableJavascript$PROXY$7_262_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3797))) - break a; - return onciu_RewritableJavascript$PROXY$7_327_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3798))) - break a; - return onciu_RewritableJavascript$PROXY$7_550_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3799))) - break a; - return onciu_RewritableJavascript$PROXY$7_646_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3800))) - break a; - return onciu_RewritableJavascript$PROXY$7_345_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3801))) - break a; - return onciu_RewritableJavascript$PROXY$7_533_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3802))) - break a; - return onciu_RewritableJavascript$PROXY$7_311_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3803))) - break a; - return onciu_RewritableJavascript$PROXY$7_468_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3804))) - break a; - return onciu_RewritableJavascript$PROXY$7_341_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3805))) - break a; - return onciu_RewritableJavascript$PROXY$7_350_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3806))) - break a; - return onciu_RewritableJavascript$PROXY$7_74_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3807))) - break a; - return onciu_RewritableJavascript$PROXY$7_330_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3808))) - break a; - return onciu_RewritableJavascript$PROXY$7_383_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3809))) - break a; - return onciu_RewritableJavascript$PROXY$7_409_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3810))) - break a; - return onciu_RewritableJavascript$PROXY$7_297_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3811))) - break a; - return onciu_RewritableJavascript$PROXY$7_564_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3812))) - break a; - return onciu_RewritableJavascript$PROXY$7_546_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3813))) - break a; - return onciu_RewritableJavascript$PROXY$7_247_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3814))) - break a; - return onciu_RewritableJavascript$PROXY$7_239_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3815))) - break a; - return onciu_RewritableJavascript$PROXY$7_286_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3816))) - break a; - return onciu_RewritableJavascript$PROXY$7_299_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3817))) - break a; - return onciu_RewritableJavascript$PROXY$7_35_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3818))) - break a; - return onciu_RewritableJavascript$PROXY$7_233_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3819))) - break a; - return onciu_RewritableJavascript$PROXY$7_276_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3820))) - break a; - return onciu_RewritableJavascript$PROXY$7_421_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3821))) - break a; - return onciu_RewritableJavascript$PROXY$7_433_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3822))) - break a; - return onciu_RewritableJavascript$PROXY$7_476_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3823))) - break a; - return onciu_RewritableJavascript$PROXY$7_33_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3824))) - break a; - return onciu_RewritableJavascript$PROXY$7_38_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3825))) - break a; - return onciu_RewritableJavascript$PROXY$7_88_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3826))) - break a; - return onciu_RewritableJavascript$PROXY$7_321_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3827))) - break a; - return onciu_RewritableJavascript$PROXY$7_515_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3828))) - break a; - return onciu_RewritableJavascript$PROXY$7_389_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3829))) - break a; - return onciu_RewritableJavascript$PROXY$7_426_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3830))) - break a; - return onciu_RewritableJavascript$PROXY$7_41_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3831))) - break a; - return onciu_RewritableJavascript$PROXY$7_509_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3832))) - break a; - return onciu_RewritableJavascript$PROXY$7_394_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3833))) - break a; - return onciu_RewritableJavascript$PROXY$7_356_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3834))) - break a; - return onciu_RewritableJavascript$PROXY$7_524_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3835))) - break a; - return onciu_RewritableJavascript$PROXY$7_30_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3836))) - break a; - return onciu_RewritableJavascript$PROXY$7_530_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3837))) - break a; - return onciu_RewritableJavascript$PROXY$7_388_copyConstructor(var$1, - var$2, - var$3); - } - if - (!jl_String_equals(var$4, - $rt_s(3838))) - break a; - return onciu_RewritableJavascript$PROXY$7_322_copyConstructor(var$1, - var$2, - var$3); - } - if (!jl_String_equals(var$4, - $rt_s(3839))) - break a; - return onciu_RewritableJavascript$PROXY$7_293_copyConstructor(var$1, - var$2, - var$3); - } - if (!jl_String_equals(var$4, - $rt_s(3840))) - break a; - return onciu_RewritableJavascript$PROXY$7_277_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, - $rt_s(3841))) - break a; - return onciu_RewritableJavascript$PROXY$7_146_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, - $rt_s(3842))) - break a; - return onciu_RewritableJavascript$PROXY$7_234_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, - $rt_s(3843))) - break a; - return onciu_RewritableJavascript$PROXY$7_77_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, - $rt_s(3844))) - break a; - return onciu_RewritableJavascript$PROXY$7_270_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, - $rt_s(3845))) - break a; - return onciu_RewritableJavascript$PROXY$7_693_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3846))) - break a; - return onciu_RewritableJavascript$PROXY$7_395_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3847))) - break a; - return onciu_RewritableJavascript$PROXY$7_420_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3848))) - break a; - return onciu_RewritableJavascript$PROXY$7_342_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3849))) - break a; - return onciu_RewritableJavascript$PROXY$7_471_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3850))) - break a; - return onciu_RewritableJavascript$PROXY$7_537_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3851))) - break a; - return onciu_RewritableJavascript$PROXY$7_253_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3852))) - break a; - return onciu_RewritableJavascript$PROXY$7_260_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3853))) - break a; - return onciu_RewritableJavascript$PROXY$7_316_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3854))) - break a; - return onciu_RewritableJavascript$PROXY$7_705_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3855))) - break a; - return onciu_RewritableJavascript$PROXY$7_534_copyConstructor(var$1, - var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3856))) - break a; - return onciu_RewritableJavascript$PROXY$7_460_copyConstructor(var$1, var$2, - var$3); - } - if (!jl_String_equals(var$4, $rt_s(3857))) - break a; - return onciu_RewritableJavascript$PROXY$7_284_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3858))) - break a; - return onciu_RewritableJavascript$PROXY$7_89_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3859))) - break a; - return onciu_RewritableJavascript$PROXY$7_263_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3860))) - break a; - return onciu_RewritableJavascript$PROXY$7_431_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3861))) - break a; - return onciu_RewritableJavascript$PROXY$7_334_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3862))) - break a; - return onciu_RewritableJavascript$PROXY$7_318_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3863))) - break a; - return onciu_RewritableJavascript$PROXY$7_348_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3864))) - break a; - return onciu_RewritableJavascript$PROXY$7_401_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3865))) - break a; - return onciu_RewritableJavascript$PROXY$7_279_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3866))) - break a; - return onciu_RewritableJavascript$PROXY$7_397_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3867))) - break a; - return onciu_RewritableJavascript$PROXY$7_112_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3868))) - break a; - return onciu_RewritableJavascript$PROXY$7_294_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3869))) - break a; - return onciu_RewritableJavascript$PROXY$7_269_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3870))) - break a; - return onciu_RewritableJavascript$PROXY$7_310_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3871))) - break a; - return onciu_RewritableJavascript$PROXY$7_490_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3872))) - break a; - return onciu_RewritableJavascript$PROXY$7_304_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3873))) - break a; - return onciu_RewritableJavascript$PROXY$7_514_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3874))) - break a; - return onciu_RewritableJavascript$PROXY$7_231_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3875))) - break a; - return onciu_RewritableJavascript$PROXY$7_271_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3876))) - break a; - return onciu_RewritableJavascript$PROXY$7_224_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3877))) - break a; - return onciu_RewritableJavascript$PROXY$7_229_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3878))) - break a; - return onciu_RewritableJavascript$PROXY$7_97_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3879))) - break a; - return onciu_RewritableJavascript$PROXY$7_78_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3880))) - break a; - return onciu_RewritableJavascript$PROXY$7_307_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3881))) - break a; - return onciu_RewritableJavascript$PROXY$7_363_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3882))) - break a; - return onciu_RewritableJavascript$PROXY$7_378_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3883))) - break a; - return onciu_RewritableJavascript$PROXY$7_523_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3884))) - break a; - return onciu_RewritableJavascript$PROXY$7_422_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3885))) - break a; - return onciu_RewritableJavascript$PROXY$7_283_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3886))) - break a; - return onciu_RewritableJavascript$PROXY$7_32_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3887))) - break a; - return onciu_RewritableJavascript$PROXY$7_324_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3888))) - break a; - return onciu_RewritableJavascript$PROXY$7_349_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3889))) - break a; - return onciu_RewritableJavascript$PROXY$7_232_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3890))) - break a; - return onciu_RewritableJavascript$PROXY$7_510_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3891))) - break a; - return onciu_RewritableJavascript$PROXY$7_328_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3892))) - break a; - return onciu_RewritableJavascript$PROXY$7_31_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3893))) - break a; - return onciu_RewritableJavascript$PROXY$7_325_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3894))) - break a; - return onciu_RewritableJavascript$PROXY$7_366_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3895))) - break a; - return onciu_RewritableJavascript$PROXY$7_42_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3896))) - break a; - return onciu_RewritableJavascript$PROXY$7_373_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3897))) - break a; - return onciu_RewritableJavascript$PROXY$7_364_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3898))) - break a; - return onciu_RewritableJavascript$PROXY$7_230_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3899))) - break a; - return onciu_RewritableJavascript$PROXY$7_306_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3900))) - break a; - return onciu_RewritableJavascript$PROXY$7_562_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3901))) - break a; - return onciu_RewritableJavascript$PROXY$7_346_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3902))) - break a; - return onciu_RewritableJavascript$PROXY$7_673_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3903))) - break a; - return onciu_RewritableJavascript$PROXY$7_288_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3904))) - break a; - return onciu_RewritableJavascript$PROXY$7_119_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3905))) - break a; - return onciu_RewritableJavascript$PROXY$7_375_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3906))) - break a; - return onciu_RewritableJavascript$PROXY$7_91_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3907))) - break a; - return onciu_RewritableJavascript$PROXY$7_117_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3908))) - break a; - return onciu_RewritableJavascript$PROXY$7_79_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3909))) - break a; - return onciu_RewritableJavascript$PROXY$7_118_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3910))) - break a; - return onciu_RewritableJavascript$PROXY$7_244_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3911))) - break a; - return onciu_RewritableJavascript$PROXY$7_258_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3912))) - break a; - return onciu_RewritableJavascript$PROXY$7_106_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3913))) - break a; - return onciu_RewritableJavascript$PROXY$7_178_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3914))) - break a; - return onciu_RewritableJavascript$PROXY$7_706_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3915))) - break a; - return onciu_RewritableJavascript$PROXY$7_355_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3916))) - break a; - return onciu_RewritableJavascript$PROXY$7_607_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3917))) - break a; - return onciu_RewritableJavascript$PROXY$7_66_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3918))) - break a; - return onciu_RewritableJavascript$PROXY$7_45_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3919))) - break a; - return onciu_RewritableJavascript$PROXY$7_248_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3920))) - break a; - return onciu_RewritableJavascript$PROXY$7_381_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3921))) - break a; - return onciu_RewritableJavascript$PROXY$7_408_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3922))) - break a; - return onciu_RewritableJavascript$PROXY$7_243_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3923))) - break a; - return onciu_RewritableJavascript$PROXY$7_302_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3924))) - break a; - return onciu_RewritableJavascript$PROXY$7_68_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3925))) - break a; - return onciu_RewritableJavascript$PROXY$7_95_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3926))) - break a; - return onciu_RewritableJavascript$PROXY$7_298_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3927))) - break a; - return onciu_RewritableJavascript$PROXY$7_314_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3928))) - break a; - return onciu_RewritableJavascript$PROXY$7_317_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3929))) - break a; - return onciu_RewritableJavascript$PROXY$7_416_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3930))) - break a; - return onciu_RewritableJavascript$PROXY$7_434_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3931))) - break a; - return onciu_RewritableJavascript$PROXY$7_501_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3932))) - break a; - return onciu_RewritableJavascript$PROXY$7_80_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3933))) - break a; - return onciu_RewritableJavascript$PROXY$7_111_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3934))) - break a; - return onciu_RewritableJavascript$PROXY$7_464_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3935))) - break a; - return onciu_RewritableJavascript$PROXY$7_423_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3936))) - break a; - return onciu_RewritableJavascript$PROXY$7_281_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3937))) - break a; - return onciu_RewritableJavascript$PROXY$7_415_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3938))) - break a; - return onciu_RewritableJavascript$PROXY$7_386_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3939))) - break a; - return onciu_RewritableJavascript$PROXY$7_424_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3940))) - break a; - return onciu_RewritableJavascript$PROXY$7_37_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3941))) - break a; - return onciu_RewritableJavascript$PROXY$7_90_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3942))) - break a; - return onciu_RewritableJavascript$PROXY$7_250_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3943))) - break a; - return onciu_RewritableJavascript$PROXY$7_252_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3944))) - break a; - return onciu_RewritableJavascript$PROXY$7_489_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3945))) - break a; - return onciu_RewritableJavascript$PROXY$7_500_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3946))) - break a; - return onciu_RewritableJavascript$PROXY$7_114_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3947))) - break a; - return onciu_RewritableJavascript$PROXY$7_396_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3948))) - break a; - return onciu_RewritableJavascript$PROXY$7_81_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3949))) - break a; - return onciu_RewritableJavascript$PROXY$7_379_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3950))) - break a; - return onciu_RewritableJavascript$PROXY$7_259_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3951))) - break a; - return onciu_RewritableJavascript$PROXY$7_309_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3952))) - break a; - return onciu_RewritableJavascript$PROXY$7_84_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3953))) - break a; - return onciu_RewritableJavascript$PROXY$7_256_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3954))) - break a; - return onciu_RewritableJavascript$PROXY$7_339_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3955))) - break a; - return onciu_RewritableJavascript$PROXY$7_272_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3956))) - break a; - return onciu_RewritableJavascript$PROXY$7_296_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3957))) - break a; - return onciu_RewritableJavascript$PROXY$7_160_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3958))) - break a; - return onciu_RewritableJavascript$PROXY$7_525_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3959))) - break a; - return onciu_RewritableJavascript$PROXY$7_65_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3960))) - break a; - return onciu_RewritableJavascript$PROXY$7_110_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3961))) - break a; - return onciu_RewritableJavascript$PROXY$7_484_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3962))) - break a; - return onciu_RewritableJavascript$PROXY$7_703_copyConstructor(var$1, var$2, var$3); - } - if (!jl_String_equals(var$4, $rt_s(3963))) - break a; - return onciu_RewritableJavascript$PROXY$7_282_copyConstructor(var$1, var$2, var$3); - } - if (jl_String_equals(var$4, $rt_s(3964))) - return onciu_RewritableJavascript$PROXY$7_249_copyConstructor(var$1, var$2, var$3); - } - return null; -}, -onciu_RewritableJavascript_numParameters = var$1 => { - let var$2; - a: { - b: { - c: { - d: { - e: { - f: { - g: { - h: { - i: { - j: { - k: { - l: { - m: { - n: { - o: { - p: { - q: { - r: { - s: { - t: { - u: { - v: { - w: { - x: { - y: { - z: { - ba: { - bb: { - bc: { - bd: { - be: { - bf: { - bg: { - bh: { - bi: { - bj: { - bk: { - bl: { - bm: { - bn: { - bo: { - bp: { - bq: { - br: { - bs: { - bt: { - bu: { - bv: { - bw: { - bx: { - by: { - bz: { - bA: { - bB: { - bC: { - bD: { - bE: { - bF: { - bG: { - bH: { - bI: { - bJ: { - bK: { - bL: { - bM: { - bN: { - bO: { - bP: { - bQ: { - bR: { - bS: { - bT: { - bU: { - bV: { - bW: { - bX: { - bY: { - bZ: { - b0: { - b1: { - b2: { - b3: { - b4: { - b5: { - b6: { - b7: { - b8: { - b9: { - b$: { - b_: { - ca: { - cb: { - cc: { - cd: { - ce: { - cf: { - cg: { - ch: { - ci: { - cj: { - ck: { - cl: { - cm: { - cn: { - co: { - cp: { - cq: { - cr: { - cs: { - ct: { - cu: { - cv: { - cw: { - cx: { - cy: { - cz: { - cA: { - cB: { - cC: { - cD: { - cE: { - cF: { - cG: { - cH: { - cI: { - cJ: { - cK: { - cL: - { - cM: - { - cN: - { - cO: - { - cP: - { - cQ: - { - cR: - { - cS: - { - cT: - { - cU: - { - cV: - { - cW: - { - cX: - { - cY: - { - cZ: - { - c0: - { - c1: - { - c2: - { - c3: - { - c4: - { - c5: - { - c6: - { - c7: - { - c8: - { - c9: - { - c$: - { - c_: - { - da: - { - db: - { - dc: - { - dd: - { - de: - { - df: - { - dg: - { - dh: - { - di: - { - dj: - { - dk: - { - dl: - { - dm: - { - dn: - { - dp: - { - dq: - { - dr: - { - ds: - { - dt: - { - du: - { - dv: - { - dw: - { - dx: - { - dy: - { - dz: - { - dA: - { - dB: - { - dC: - { - dD: - { - dE: - { - dF: - { - dG: - { - dH: - { - dI: - { - dJ: - { - dK: - { - dL: - { - dM: - { - dN: - { - dO: - { - dP: - { - dQ: - { - dR: - { - dS: - { - dT: - { - dU: - { - dV: - { - dW: - { - dX: - { - dY: - { - dZ: - { - d0: - { - d1: - { - d2: - { - d3: - { - d4: - { - d5: - { - d6: - { - d7: - { - d8: - { - d9: - { - d$: - { - d_: - { - ea: - { - eb: - { - ec: - { - ed: - { - ee: - { - ef: - { - eg: - { - eh: - { - ei: - { - ej: - { - ek: - { - el: - { - em: - { - en: - { - eo: - { - ep: - { - eq: - { - er: - { - es: - { - et: - { - eu: - { - ev: - { - ew: - { - ex: - { - ey: - { - ez: - { - eA: - { - eB: - { - eC: - { - eD: - { - eE: - { - eF: - { - eG: - { - eH: - { - eI: - { - eJ: - { - eK: - { - eL: - { - eM: - { - eN: - { - eO: - { - eP: - { - eQ: - { - eR: - { - eS: - { - eT: - { - eU: - { - eV: - { - eW: - { - eX: - { - eY: - { - eZ: - { - e0: - { - e1: - { - e2: - { - e3: - { - e4: - { - e5: - { - e6: - { - e7: - { - e8: - { - e9: - { - e$: - { - e_: - { - var$2 - = - jl_Class_getName(var$1); - switch - (jl_String_hashCode(var$2)) - { - case 455596914: - break; - case -696583615: - break e_; - case -1108946791: - break e$; - case 814608189: - break e9; - case -1944844053: - break e8; - case -149837559: - break e7; - case -173726688: - break e6; - case 463217861: - break e5; - case 1344819286: - break e4; - case -1885430284: - break e3; - case -1990238911: - break e2; - case -1624236093: - break e1; - case 1139703987: - break e0; - case 161043599: - break eZ; - case -1699139200: - break eY; - case 218162326: - break eX; - case 257300197: - break eW; - case -1567460475: - break eV; - case -1849450182: - break eU; - case -1161986269: - break eT; - case -871373505: - break eS; - case -2004672172: - break eR; - case -1854989025: - break eQ; - case 1995730627: - break eP; - case -1446274576: - break eO; - case 1905747848: - break eN; - case -59220920: - break eM; - case 876306657: - break eL; - case 563302816: - break eK; - case -1509369838: - break eJ; - case -551872710: - break eI; - case -1603524070: - break eH; - case -309054547: - break eG; - case 597069130: - break eF; - case -1780947554: - break eE; - case -83434525: - break eD; - case 1106883801: - break eC; - case 791743121: - break eB; - case 994181372: - break eA; - case -173726498: - break ez; - case -1090567930: - break ey; - case -324525645: - break ex; - case -985722153: - break ew; - case 552142263: - break ev; - case 35532533: - break eu; - case 808140963: - break et; - case 1113043596: - break es; - case 552536514: - break er; - case 180309318: - break eq; - case 1098373913: - break ep; - case -1601654356: - break eo; - case 171553019: - break en; - case 1993308723: - break em; - case 1956588185: - break el; - case -690264973: - break ek; - case -185398452: - break ej; - case -354016038: - break ei; - case -547163946: - break eh; - case 1836487610: - break eg; - case -124559559: - break ef; - case 1298739788: - break ee; - case -527102827: - break ed; - case 1505287241: - break ec; - case 1687177394: - break eb; - case -1375343095: - break ea; - case -2107404354: - break d_; - case 1252416461: - break d$; - case -799399769: - break d9; - case 1693844367: - break d8; - case 1835843740: - break d7; - case -1971775404: - break d6; - case 1143216060: - break d5; - case -596404360: - break d4; - case 1836370035: - break d3; - case -57639779: - break d2; - case 386603235: - break d1; - case 140909333: - break d0; - case 1111213695: - break dZ; - case -1875460719: - break dY; - case -974095529: - break dX; - case -2008336743: - break dW; - case 767481184: - break dV; - case -446332315: - break dU; - case -1846818353: - break dT; - case 25975226: - break dS; - case -1672152040: - break dR; - case -1869678611: - break dQ; - case 2123943227: - break dP; - case -925030859: - break dO; - case -1525448294: - break dN; - case 490543052: - break dM; - case 553477153: - break dL; - case 1032130721: - break dK; - case 2021177853: - break dJ; - case -1399872522: - break dI; - case -101943729: - break dH; - case 68785030: - break dG; - case 630773776: - break dF; - case -382919541: - break dE; - case -1036156617: - break dD; - case 44260601: - break dC; - case -1053180719: - break dB; - case 941027000: - break dA; - case -2097338776: - break dz; - case -1430315311: - break dy; - case 1743234077: - break dx; - case -1002775686: - break dw; - case 1994092090: - break dv; - case -2007159869: - break du; - case 1400223240: - break dt; - case -1889018242: - break ds; - case 773610978: - break dr; - case 549588447: - break dq; - case 545017439: - break dp; - case 924040911: - break dn; - case 715403871: - break dm; - case 488962701: - break dl; - case 773878287: - break dk; - case -853835129: - break dj; - case -4879682: - break di; - case -862437735: - break dh; - case 1590622701: - break dg; - case 654843427: - break df; - case -72889640: - break de; - case 51139985: - break dd; - case 1257722521: - break dc; - case -1509467160: - break db; - case -931686672: - break da; - case -1569671430: - break c_; - case 1086375751: - break c$; - case -692014538: - break c9; - case -1215424878: - break c8; - case -1377215654: - break c7; - case 1085962297: - break c6; - case -1397478846: - break c5; - case -1930616743: - break c4; - case -1629866976: - break c3; - case 1344230015: - break c2; - case -2070218311: - break c1; - case 967704049: - break c0; - case -1651308197: - break cZ; - case 1131485948: - break cY; - case -1631614488: - break cX; - case 257458495: - break cW; - case -361629069: - break cV; - case -14881129: - break cU; - case 1887073695: - break cT; - case 1903613124: - break cS; - case 1743141064: - break cR; - case 345156959: - break cQ; - case -721388032: - break cP; - case -391096479: - break cO; - case -1942599922: - break cN; - case -2013484445: - break cM; - case -335388913: - break cL; - case 838435105: - break cK; - case 68878043: - break cJ; - case 390701443: - break cI; - case 201251871: - break cH; - case 1605005311: - break cG; - case 1131043253: - break cF; - case 1087067473: - break cE; - case -1167383453: - break cD; - case -769608440: - break cC; - case 1412105672: - break cB; - case -1845562242: - break cA; - case 1400329004: - break cz; - case 825085381: - break cy; - case -766295774: - break cx; - case 224696041: - break cw; - case -1814577755: - break cv; - case 2117196269: - break cu; - case 1752564371: - break ct; - case 352140276: - break cs; - case 86719663: - break cr; - case 884425735: - break cq; - case -1622751247: - break cp; - case -921688526: - break co; - case 2111686605: - break cn; - case 185377688: - break cm; - case 1553787535: - break cl; - case -1092119273: - break ck; - case 1087184836: - break cj; - case -1388906993: - break ci; - case -1734229172: - break ch; - case -2128450866: - break cg; - case 2016921081: - break cf; - case 1555225207: - break ce; - case -1683547861: - break cd; - case -523752746: - break cc; - case -1223363698: - break cb; - case 421974435: - break ca; - case -393782920: - break b_; - case -1090555552: - break b$; - case -2060497514: - break b9; - case 1628021123: - break b8; - case 722610464: - break b7; - case -48137118: - break b6; - case -779711344: - break b5; - case 433120830: - break b4; - case -429840592: - break b3; - case -1189054542: - break b2; - case 1878523352: - break b1; - case -395643130: - break b0; - case -1090555080: - break bZ; - case -1154925950: - break bY; - case 49269903: - break bX; - case 984874708: - break bW; - case 1674145006: - break bV; - case 839143939: - break bU; - case -1991860843: - break bT; - case -1757559093: - break bS; - case -914850913: - break bR; - case 2129483779: - break bQ; - case 513352456: - break bP; - case -1054021648: - break bO; - case 1713437764: - break bN; - case 867259615: - break bM; - case -514003336: - break bL; - case -169006806: - break bK; - case 473626369: - break bJ; - case -613470511: - break bI; - case -225666173: - break bH; - case -2114881767: - break bG; - case -1210939641: - break bF; - case 1319121459: - break bE; - case -2109192114: - break bD; - case -1137178901: - break bC; - case 893432812: - break bB; - case -424824043: - break bA; - case -1090545472: - break bz; - case 1040811906: - break by; - case 1367871194: - break bx; - case -1515462440: - break bw; - case -165889114: - break bv; - case -4879681: - break bu; - case -213184938: - break bt; - case 737899923: - break bs; - case -1231296631: - break br; - case -1818883748: - break bq; - case -1090553155: - break bp; - case 41837598: - break bo; - case 979786518: - break bn; - case -2119301848: - break bm; - case -763184979: - break bl; - case -419512299: - break bk; - case 953953403: - break bj; - case 44353614: - break bi; - case 976534482: - break bh; - case -1588700173: - break bg; - case -2045600235: - break bf; - case 616494848: - break be; - case 1567771547: - break bd; - case 1671927173: - break bc; - case 1091776181: - break bb; - case -677401976: - break ba; - case 1522974895: - break z; - case 906154098: - break y; - case 1721669609: - break x; - case -246593737: - break w; - case -621882202: - break v; - case -299067664: - break u; - case 24898165: - break t; - case 841414265: - break s; - case 1803262547: - break r; - case 1096497267: - break q; - case -513789148: - break p; - case -1306656222: - break o; - case 2136683676: - break n; - case -1684645191: - break m; - case -17764532: - break l; - case 736006033: - break k; - case -1240947019: - break j; - case -160977132: - break i; - case 552712649: - break h; - case 1996487587: - break g; - case 250317358: - break f; - case 342871275: - break e; - case 605400192: - break d; - case -2068787732: - break c; - case -1090567620: - break b; - default: - break a; - } - if - (!jl_String_equals(var$2, - $rt_s(3678))) - break a; - return onciu_RewritableJavascript$PROXY$9_65_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3679))) - break a; - return onciu_RewritableJavascript$PROXY$9_124_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3680))) - break a; - return onciu_RewritableJavascript$PROXY$9_191_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3681))) - break a; - return onciu_RewritableJavascript$PROXY$9_229_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3682))) - break a; - return onciu_RewritableJavascript$PROXY$9_248_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3683))) - break a; - return onciu_RewritableJavascript$PROXY$9_12_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3684))) - break a; - return onciu_RewritableJavascript$PROXY$9_115_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3685))) - break a; - return onciu_RewritableJavascript$PROXY$9_16_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3686))) - break a; - return onciu_RewritableJavascript$PROXY$9_11_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3687))) - break a; - return onciu_RewritableJavascript$PROXY$9_59_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3688))) - break a; - return onciu_RewritableJavascript$PROXY$9_141_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3689))) - break a; - return onciu_RewritableJavascript$PROXY$9_183_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3690))) - break a; - return onciu_RewritableJavascript$PROXY$9_85_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3692))) - break a; - return onciu_RewritableJavascript$PROXY$9_33_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3694))) - break a; - return onciu_RewritableJavascript$PROXY$9_121_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3691))) - break a; - return onciu_RewritableJavascript$PROXY$9_182_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3695))) - break a; - return onciu_RewritableJavascript$PROXY$9_123_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3696))) - break a; - return onciu_RewritableJavascript$PROXY$9_262_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3697))) - break a; - return onciu_RewritableJavascript$PROXY$9_46_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3698))) - break a; - return onciu_RewritableJavascript$PROXY$9_151_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3699))) - break a; - return onciu_RewritableJavascript$PROXY$9_138_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3700))) - break a; - return onciu_RewritableJavascript$PROXY$9_172_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3701))) - break a; - return onciu_RewritableJavascript$PROXY$9_247_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3702))) - break a; - return onciu_RewritableJavascript$PROXY$9_126_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3703))) - break a; - return onciu_RewritableJavascript$PROXY$9_273_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3705))) - break a; - return onciu_RewritableJavascript$PROXY$9_103_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3704))) - break a; - return onciu_RewritableJavascript$PROXY$9_104_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3706))) - break a; - return onciu_RewritableJavascript$PROXY$9_6_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3707))) - break a; - return onciu_RewritableJavascript$PROXY$9_175_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3708))) - break a; - return onciu_RewritableJavascript$PROXY$9_222_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3709))) - break a; - return onciu_RewritableJavascript$PROXY$9_254_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3710))) - break a; - return onciu_RewritableJavascript$PROXY$9_78_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3711))) - break a; - return onciu_RewritableJavascript$PROXY$9_35_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3712))) - break a; - return onciu_RewritableJavascript$PROXY$9_270_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3713))) - break a; - return onciu_RewritableJavascript$PROXY$9_263_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3714))) - break a; - return onciu_RewritableJavascript$PROXY$9_62_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3715))) - break a; - return onciu_RewritableJavascript$PROXY$9_144_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3716))) - break a; - return onciu_RewritableJavascript$PROXY$9_228_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3717))) - break a; - return onciu_RewritableJavascript$PROXY$9_266_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3718))) - break a; - return onciu_RewritableJavascript$PROXY$9_80_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3719))) - break a; - return onciu_RewritableJavascript$PROXY$9_82_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3720))) - break a; - return onciu_RewritableJavascript$PROXY$9_8_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3721))) - break a; - return onciu_RewritableJavascript$PROXY$9_48_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3722))) - break a; - return onciu_RewritableJavascript$PROXY$9_120_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3723))) - break a; - return onciu_RewritableJavascript$PROXY$9_150_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3724))) - break a; - return onciu_RewritableJavascript$PROXY$9_19_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3726))) - break a; - return onciu_RewritableJavascript$PROXY$9_81_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3725))) - break a; - return onciu_RewritableJavascript$PROXY$9_86_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3727))) - break a; - return onciu_RewritableJavascript$PROXY$9_170_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3728))) - break a; - return onciu_RewritableJavascript$PROXY$9_37_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3730))) - break a; - return onciu_RewritableJavascript$PROXY$9_73_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3729))) - break a; - return onciu_RewritableJavascript$PROXY$9_110_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3731))) - break a; - return onciu_RewritableJavascript$PROXY$9_275_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3732))) - break a; - return onciu_RewritableJavascript$PROXY$9_100_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3733))) - break a; - return onciu_RewritableJavascript$PROXY$9_224_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3734))) - break a; - return onciu_RewritableJavascript$PROXY$9_71_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3735))) - break a; - return onciu_RewritableJavascript$PROXY$9_89_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3736))) - break a; - return onciu_RewritableJavascript$PROXY$9_255_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3737))) - break a; - return onciu_RewritableJavascript$PROXY$9_52_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3738))) - break a; - return onciu_RewritableJavascript$PROXY$9_116_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3739))) - break a; - return onciu_RewritableJavascript$PROXY$9_90_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3740))) - break a; - return onciu_RewritableJavascript$PROXY$9_70_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3741))) - break a; - return onciu_RewritableJavascript$PROXY$9_177_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3742))) - break a; - return onciu_RewritableJavascript$PROXY$9_21_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3743))) - break a; - return onciu_RewritableJavascript$PROXY$9_258_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3744))) - break a; - return onciu_RewritableJavascript$PROXY$9_245_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3745))) - break a; - return onciu_RewritableJavascript$PROXY$9_1_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3746))) - break a; - return onciu_RewritableJavascript$PROXY$9_241_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3748))) - break a; - return onciu_RewritableJavascript$PROXY$9_32_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3747))) - break a; - return onciu_RewritableJavascript$PROXY$9_134_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3749))) - break a; - return onciu_RewritableJavascript$PROXY$9_213_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3750))) - break a; - return onciu_RewritableJavascript$PROXY$9_43_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3751))) - break a; - return onciu_RewritableJavascript$PROXY$9_237_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3752))) - break a; - return onciu_RewritableJavascript$PROXY$9_220_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3753))) - break a; - return onciu_RewritableJavascript$PROXY$9_143_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3754))) - break a; - return onciu_RewritableJavascript$PROXY$9_47_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3755))) - break a; - return onciu_RewritableJavascript$PROXY$9_230_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3756))) - break a; - return onciu_RewritableJavascript$PROXY$9_197_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3757))) - break a; - return onciu_RewritableJavascript$PROXY$9_125_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3758))) - break a; - return onciu_RewritableJavascript$PROXY$9_264_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3759))) - break a; - return onciu_RewritableJavascript$PROXY$9_180_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3760))) - break a; - return onciu_RewritableJavascript$PROXY$9_207_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3761))) - break a; - return onciu_RewritableJavascript$PROXY$9_158_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3762))) - break a; - return onciu_RewritableJavascript$PROXY$9_38_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3763))) - break a; - return onciu_RewritableJavascript$PROXY$9_0_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3764))) - break a; - return onciu_RewritableJavascript$PROXY$9_142_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3765))) - break a; - return onciu_RewritableJavascript$PROXY$9_211_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3766))) - break a; - return onciu_RewritableJavascript$PROXY$9_15_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3767))) - break a; - return onciu_RewritableJavascript$PROXY$9_161_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3768))) - break a; - return onciu_RewritableJavascript$PROXY$9_219_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3769))) - break a; - return onciu_RewritableJavascript$PROXY$9_156_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3770))) - break a; - return onciu_RewritableJavascript$PROXY$9_163_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3771))) - break a; - return onciu_RewritableJavascript$PROXY$9_76_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3772))) - break a; - return onciu_RewritableJavascript$PROXY$9_152_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3773))) - break a; - return onciu_RewritableJavascript$PROXY$9_61_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3774))) - break a; - return onciu_RewritableJavascript$PROXY$9_18_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3775))) - break a; - return onciu_RewritableJavascript$PROXY$9_208_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3776))) - break a; - return onciu_RewritableJavascript$PROXY$9_251_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3777))) - break a; - return onciu_RewritableJavascript$PROXY$9_199_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3778))) - break a; - return onciu_RewritableJavascript$PROXY$9_105_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3779))) - break a; - return onciu_RewritableJavascript$PROXY$9_209_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3780))) - break a; - return onciu_RewritableJavascript$PROXY$9_147_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3781))) - break a; - return onciu_RewritableJavascript$PROXY$9_214_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3782))) - break a; - return onciu_RewritableJavascript$PROXY$9_117_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3783))) - break a; - return onciu_RewritableJavascript$PROXY$9_108_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3784))) - break a; - return onciu_RewritableJavascript$PROXY$9_235_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3785))) - break a; - return onciu_RewritableJavascript$PROXY$9_113_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3786))) - break a; - return onciu_RewritableJavascript$PROXY$9_139_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3787))) - break a; - return onciu_RewritableJavascript$PROXY$9_268_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3788))) - break a; - return onciu_RewritableJavascript$PROXY$9_87_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3789))) - break a; - return onciu_RewritableJavascript$PROXY$9_231_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3790))) - break a; - return onciu_RewritableJavascript$PROXY$9_77_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3791))) - break a; - return onciu_RewritableJavascript$PROXY$9_200_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3792))) - break a; - return onciu_RewritableJavascript$PROXY$9_278_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3793))) - break a; - return onciu_RewritableJavascript$PROXY$9_181_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3794))) - break a; - return onciu_RewritableJavascript$PROXY$9_60_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3795))) - break a; - return onciu_RewritableJavascript$PROXY$9_202_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3796))) - break a; - return onciu_RewritableJavascript$PROXY$9_88_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3797))) - break a; - return onciu_RewritableJavascript$PROXY$9_186_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3799))) - break a; - return onciu_RewritableJavascript$PROXY$9_261_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3798))) - break a; - return onciu_RewritableJavascript$PROXY$9_271_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3800))) - break a; - return onciu_RewritableJavascript$PROXY$9_155_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3801))) - break a; - return onciu_RewritableJavascript$PROXY$9_252_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3802))) - break a; - return onciu_RewritableJavascript$PROXY$9_107_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3803))) - break a; - return onciu_RewritableJavascript$PROXY$9_265_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3804))) - break a; - return onciu_RewritableJavascript$PROXY$9_168_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3805))) - break a; - return onciu_RewritableJavascript$PROXY$9_185_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3807))) - break a; - return onciu_RewritableJavascript$PROXY$9_166_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3808))) - break a; - return onciu_RewritableJavascript$PROXY$9_226_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3809))) - break a; - return onciu_RewritableJavascript$PROXY$9_221_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3810))) - break a; - return onciu_RewritableJavascript$PROXY$9_58_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3811))) - break a; - return onciu_RewritableJavascript$PROXY$9_238_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3812))) - break a; - return onciu_RewritableJavascript$PROXY$9_267_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3813))) - break a; - return onciu_RewritableJavascript$PROXY$9_64_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3814))) - break a; - return onciu_RewritableJavascript$PROXY$9_69_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3815))) - break a; - return onciu_RewritableJavascript$PROXY$9_44_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3816))) - break a; - return onciu_RewritableJavascript$PROXY$9_54_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3817))) - break a; - return onciu_RewritableJavascript$PROXY$9_7_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3819))) - break a; - return onciu_RewritableJavascript$PROXY$9_36_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3818))) - break a; - return onciu_RewritableJavascript$PROXY$9_149_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3820))) - break a; - return onciu_RewritableJavascript$PROXY$9_227_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3821))) - break a; - return onciu_RewritableJavascript$PROXY$9_187_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3822))) - break a; - return onciu_RewritableJavascript$PROXY$9_244_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3823))) - break a; - return onciu_RewritableJavascript$PROXY$9_5_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3824))) - break a; - return onciu_RewritableJavascript$PROXY$9_10_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3825))) - break a; - return onciu_RewritableJavascript$PROXY$9_79_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3827))) - break a; - return onciu_RewritableJavascript$PROXY$9_250_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3828))) - break a; - return onciu_RewritableJavascript$PROXY$9_127_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3829))) - break a; - return onciu_RewritableJavascript$PROXY$9_196_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3830))) - break a; - return onciu_RewritableJavascript$PROXY$9_13_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3831))) - break a; - return onciu_RewritableJavascript$PROXY$9_256_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3832))) - break a; - return onciu_RewritableJavascript$PROXY$9_128_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3833))) - break a; - return onciu_RewritableJavascript$PROXY$9_137_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3834))) - break a; - return onciu_RewritableJavascript$PROXY$9_198_numParameters(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3835))) - break a; - return onciu_RewritableJavascript$PROXY$9_2_numParameters(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3836))) - break a; - return onciu_RewritableJavascript$PROXY$9_194_numParameters(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3837))) - break a; - return onciu_RewritableJavascript$PROXY$9_234_numParameters(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3838))) - break a; - return onciu_RewritableJavascript$PROXY$9_188_numParameters(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3839))) - break a; - return onciu_RewritableJavascript$PROXY$9_83_numParameters(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3840))) - break a; - return onciu_RewritableJavascript$PROXY$9_92_numParameters(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3842))) - break a; - return onciu_RewritableJavascript$PROXY$9_114_numParameters(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3841))) - break a; - return onciu_RewritableJavascript$PROXY$9_146_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3843))) - break a; - return onciu_RewritableJavascript$PROXY$9_57_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3844))) - break a; - return onciu_RewritableJavascript$PROXY$9_39_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3845))) - break a; - return onciu_RewritableJavascript$PROXY$9_279_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3847))) - break a; - return onciu_RewritableJavascript$PROXY$9_218_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3846))) - break a; - return onciu_RewritableJavascript$PROXY$9_233_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3848))) - break a; - return onciu_RewritableJavascript$PROXY$9_154_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3850))) - break a; - return onciu_RewritableJavascript$PROXY$9_246_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3849))) - break a; - return onciu_RewritableJavascript$PROXY$9_272_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3851))) - break a; - return onciu_RewritableJavascript$PROXY$9_25_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3852))) - break a; - return onciu_RewritableJavascript$PROXY$9_30_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3853))) - break a; - return onciu_RewritableJavascript$PROXY$9_135_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3854))) - break a; - return onciu_RewritableJavascript$PROXY$9_277_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3855))) - break a; - return onciu_RewritableJavascript$PROXY$9_239_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3856))) - break a; - return onciu_RewritableJavascript$PROXY$9_242_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3857))) - break a; - return onciu_RewritableJavascript$PROXY$9_41_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3859))) - break a; - return onciu_RewritableJavascript$PROXY$9_31_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3858))) - break a; - return onciu_RewritableJavascript$PROXY$9_53_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3860))) - break a; - return onciu_RewritableJavascript$PROXY$9_216_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3861))) - break a; - return onciu_RewritableJavascript$PROXY$9_173_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3863))) - break a; - return onciu_RewritableJavascript$PROXY$9_112_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3862))) - break a; - return onciu_RewritableJavascript$PROXY$9_140_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3864))) - break a; - return onciu_RewritableJavascript$PROXY$9_148_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3865))) - break a; - return onciu_RewritableJavascript$PROXY$9_94_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3866))) - break a; - return onciu_RewritableJavascript$PROXY$9_122_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3867))) - break a; - return onciu_RewritableJavascript$PROXY$9_23_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3868))) - break a; - return onciu_RewritableJavascript$PROXY$9_178_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3869))) - break a; - return onciu_RewritableJavascript$PROXY$9_24_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3870))) - break a; - return onciu_RewritableJavascript$PROXY$9_160_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3871))) - break a; - return onciu_RewritableJavascript$PROXY$9_192_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3872))) - break a; - return onciu_RewritableJavascript$PROXY$9_190_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3873))) - break a; - return onciu_RewritableJavascript$PROXY$9_253_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3874))) - break a; - return onciu_RewritableJavascript$PROXY$9_27_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3875))) - break a; - return onciu_RewritableJavascript$PROXY$9_98_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3876))) - break a; - return onciu_RewritableJavascript$PROXY$9_51_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3877))) - break a; - return onciu_RewritableJavascript$PROXY$9_164_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3878))) - break a; - return onciu_RewritableJavascript$PROXY$9_42_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3879))) - break a; - return onciu_RewritableJavascript$PROXY$9_22_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3880))) - break a; - return onciu_RewritableJavascript$PROXY$9_102_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3882))) - break a; - return onciu_RewritableJavascript$PROXY$9_129_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3881))) - break a; - return onciu_RewritableJavascript$PROXY$9_212_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3883))) - break a; - return onciu_RewritableJavascript$PROXY$9_193_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3884))) - break a; - return onciu_RewritableJavascript$PROXY$9_223_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3885))) - break a; - return onciu_RewritableJavascript$PROXY$9_40_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3886))) - break a; - return onciu_RewritableJavascript$PROXY$9_4_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3888))) - break a; - return onciu_RewritableJavascript$PROXY$9_136_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3887))) - break a; - return onciu_RewritableJavascript$PROXY$9_162_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3889))) - break a; - return onciu_RewritableJavascript$PROXY$9_55_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3890))) - break a; - return onciu_RewritableJavascript$PROXY$9_243_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3891))) - break a; - return onciu_RewritableJavascript$PROXY$9_50_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3892))) - break a; - return onciu_RewritableJavascript$PROXY$9_3_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3893))) - break a; - return onciu_RewritableJavascript$PROXY$9_179_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3894))) - break a; - return onciu_RewritableJavascript$PROXY$9_210_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3895))) - break a; - return onciu_RewritableJavascript$PROXY$9_14_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3896))) - break a; - return onciu_RewritableJavascript$PROXY$9_203_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3897))) - break a; - return onciu_RewritableJavascript$PROXY$9_236_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3898))) - break a; - return onciu_RewritableJavascript$PROXY$9_26_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3899))) - break a; - return onciu_RewritableJavascript$PROXY$9_153_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3900))) - break a; - return onciu_RewritableJavascript$PROXY$9_269_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3901))) - break a; - return onciu_RewritableJavascript$PROXY$9_132_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3902))) - break a; - return onciu_RewritableJavascript$PROXY$9_274_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3903))) - break a; - return onciu_RewritableJavascript$PROXY$9_45_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3904))) - break a; - return onciu_RewritableJavascript$PROXY$9_28_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3905))) - break a; - return onciu_RewritableJavascript$PROXY$9_171_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3906))) - break a; - return onciu_RewritableJavascript$PROXY$9_93_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3907))) - break a; - return onciu_RewritableJavascript$PROXY$9_99_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3909))) - break a; - return onciu_RewritableJavascript$PROXY$9_95_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3908))) - break a; - return onciu_RewritableJavascript$PROXY$9_118_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3910))) - break a; - return onciu_RewritableJavascript$PROXY$9_63_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3911))) - break a; - return onciu_RewritableJavascript$PROXY$9_75_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3912))) - break a; - return onciu_RewritableJavascript$PROXY$9_72_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3913))) - break a; - return onciu_RewritableJavascript$PROXY$9_174_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3914))) - break a; - return onciu_RewritableJavascript$PROXY$9_280_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3915))) - break a; - return onciu_RewritableJavascript$PROXY$9_165_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3916))) - break a; - return onciu_RewritableJavascript$PROXY$9_260_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3918))) - break a; - return onciu_RewritableJavascript$PROXY$9_17_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3919))) - break a; - return onciu_RewritableJavascript$PROXY$9_66_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3920))) - break a; - return onciu_RewritableJavascript$PROXY$9_217_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3921))) - break a; - return onciu_RewritableJavascript$PROXY$9_225_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3922))) - break a; - return onciu_RewritableJavascript$PROXY$9_119_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3923))) - break a; - return onciu_RewritableJavascript$PROXY$9_159_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3924))) - break a; - return onciu_RewritableJavascript$PROXY$9_20_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3925))) - break a; - return onciu_RewritableJavascript$PROXY$9_106_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3926))) - break a; - return onciu_RewritableJavascript$PROXY$9_169_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3927))) - break a; - return onciu_RewritableJavascript$PROXY$9_167_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3928))) - break a; - return onciu_RewritableJavascript$PROXY$9_184_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3929))) - break a; - return onciu_RewritableJavascript$PROXY$9_206_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3930))) - break a; - return onciu_RewritableJavascript$PROXY$9_131_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3931))) - break a; - return onciu_RewritableJavascript$PROXY$9_195_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3932))) - break a; - return onciu_RewritableJavascript$PROXY$9_29_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3933))) - break a; - return onciu_RewritableJavascript$PROXY$9_109_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3934))) - break a; - return onciu_RewritableJavascript$PROXY$9_240_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3935))) - break a; - return onciu_RewritableJavascript$PROXY$9_201_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3936))) - break a; - return onciu_RewritableJavascript$PROXY$9_34_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3937))) - break a; - return onciu_RewritableJavascript$PROXY$9_204_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3938))) - break a; - return onciu_RewritableJavascript$PROXY$9_215_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3939))) - break a; - return onciu_RewritableJavascript$PROXY$9_205_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3940))) - break a; - return onciu_RewritableJavascript$PROXY$9_9_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3941))) - break a; - return onciu_RewritableJavascript$PROXY$9_91_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3942))) - break a; - return onciu_RewritableJavascript$PROXY$9_68_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3943))) - break a; - return onciu_RewritableJavascript$PROXY$9_84_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3944))) - break a; - return onciu_RewritableJavascript$PROXY$9_259_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3945))) - break a; - return onciu_RewritableJavascript$PROXY$9_257_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3947))) - break a; - return onciu_RewritableJavascript$PROXY$9_133_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3946))) - break a; - return onciu_RewritableJavascript$PROXY$9_176_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3948))) - break a; - return onciu_RewritableJavascript$PROXY$9_96_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3949))) - break a; - return onciu_RewritableJavascript$PROXY$9_130_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3950))) - break a; - return onciu_RewritableJavascript$PROXY$9_145_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3951))) - break a; - return onciu_RewritableJavascript$PROXY$9_189_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3952))) - break a; - return onciu_RewritableJavascript$PROXY$9_56_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3953))) - break a; - return onciu_RewritableJavascript$PROXY$9_111_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3954))) - break a; - return onciu_RewritableJavascript$PROXY$9_157_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3956))) - break a; - return onciu_RewritableJavascript$PROXY$9_49_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3955))) - break a; - return onciu_RewritableJavascript$PROXY$9_74_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3958))) - break a; - return onciu_RewritableJavascript$PROXY$9_249_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3960))) - break a; - return onciu_RewritableJavascript$PROXY$9_101_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3961))) - break a; - return onciu_RewritableJavascript$PROXY$9_232_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3962))) - break a; - return onciu_RewritableJavascript$PROXY$9_276_numParameters(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3963))) - break a; - return onciu_RewritableJavascript$PROXY$9_97_numParameters(var$1); - } - if (jl_String_equals(var$2, $rt_s(3964))) - return onciu_RewritableJavascript$PROXY$9_67_numParameters(var$1); - } - return 0; -}, -onciu_RewritableJavascript_lastParamIsPosition = var$1 => { - let var$2; - a: { - b: { - c: { - d: { - e: { - f: { - g: { - h: { - i: { - j: { - k: { - l: { - m: { - n: { - o: { - p: { - q: { - r: { - s: { - t: { - u: { - v: { - w: { - x: { - y: { - z: { - ba: { - bb: { - bc: { - bd: { - be: { - bf: { - bg: { - bh: { - bi: { - bj: { - bk: { - bl: { - bm: { - bn: { - bo: { - bp: { - bq: { - br: { - bs: { - bt: { - bu: { - bv: { - bw: { - bx: { - by: { - bz: { - bA: { - bB: { - bC: { - bD: { - bE: { - bF: { - bG: { - bH: { - bI: { - bJ: { - bK: { - bL: { - bM: { - bN: { - bO: { - bP: { - bQ: { - bR: { - bS: { - bT: { - bU: { - bV: { - bW: { - bX: { - bY: { - bZ: { - b0: { - b1: { - b2: { - b3: { - b4: { - b5: { - b6: { - b7: { - b8: { - b9: { - b$: { - b_: { - ca: { - cb: { - cc: { - cd: { - ce: { - cf: { - cg: { - ch: { - ci: { - cj: { - ck: { - cl: { - cm: { - cn: { - co: { - cp: { - cq: { - cr: { - cs: { - ct: { - cu: { - cv: { - cw: { - cx: { - cy: { - cz: { - cA: { - cB: { - cC: { - cD: { - cE: { - cF: { - cG: { - cH: { - cI: { - cJ: { - cK: { - cL: - { - cM: - { - cN: - { - cO: - { - cP: - { - cQ: - { - cR: - { - cS: - { - cT: - { - cU: - { - cV: - { - cW: - { - cX: - { - cY: - { - cZ: - { - c0: - { - c1: - { - c2: - { - c3: - { - c4: - { - c5: - { - c6: - { - c7: - { - c8: - { - c9: - { - c$: - { - c_: - { - da: - { - db: - { - dc: - { - dd: - { - de: - { - df: - { - dg: - { - dh: - { - di: - { - dj: - { - dk: - { - dl: - { - dm: - { - dn: - { - dp: - { - dq: - { - dr: - { - ds: - { - dt: - { - du: - { - dv: - { - dw: - { - dx: - { - dy: - { - dz: - { - dA: - { - dB: - { - dC: - { - dD: - { - dE: - { - dF: - { - dG: - { - dH: - { - dI: - { - dJ: - { - dK: - { - dL: - { - dM: - { - dN: - { - dO: - { - dP: - { - dQ: - { - dR: - { - dS: - { - dT: - { - dU: - { - dV: - { - dW: - { - dX: - { - dY: - { - dZ: - { - d0: - { - d1: - { - d2: - { - d3: - { - d4: - { - d5: - { - d6: - { - d7: - { - d8: - { - d9: - { - d$: - { - d_: - { - ea: - { - eb: - { - ec: - { - ed: - { - ee: - { - ef: - { - eg: - { - eh: - { - ei: - { - ej: - { - ek: - { - el: - { - em: - { - en: - { - eo: - { - ep: - { - eq: - { - er: - { - es: - { - et: - { - eu: - { - ev: - { - ew: - { - ex: - { - ey: - { - ez: - { - eA: - { - eB: - { - eC: - { - eD: - { - eE: - { - eF: - { - eG: - { - eH: - { - eI: - { - eJ: - { - eK: - { - eL: - { - eM: - { - eN: - { - eO: - { - eP: - { - eQ: - { - eR: - { - eS: - { - eT: - { - eU: - { - eV: - { - eW: - { - eX: - { - eY: - { - eZ: - { - e0: - { - e1: - { - e2: - { - e3: - { - e4: - { - e5: - { - e6: - { - e7: - { - e8: - { - e9: - { - e$: - { - e_: - { - var$2 - = - jl_Class_getName(var$1); - switch - (jl_String_hashCode(var$2)) - { - case 455596914: - break; - case -696583615: - break e_; - case -1108946791: - break e$; - case 814608189: - break e9; - case -1944844053: - break e8; - case -149837559: - break e7; - case -173726688: - break e6; - case 463217861: - break e5; - case 1344819286: - break e4; - case -1885430284: - break e3; - case -1990238911: - break e2; - case -1624236093: - break e1; - case 1139703987: - break e0; - case 161043599: - break eZ; - case -1699139200: - break eY; - case 218162326: - break eX; - case 257300197: - break eW; - case -1567460475: - break eV; - case -1849450182: - break eU; - case -1161986269: - break eT; - case -871373505: - break eS; - case -2004672172: - break eR; - case -1854989025: - break eQ; - case 1995730627: - break eP; - case -1446274576: - break eO; - case -59220920: - break eN; - case 1905747848: - break eM; - case 876306657: - break eL; - case 563302816: - break eK; - case -1509369838: - break eJ; - case -551872710: - break eI; - case -1603524070: - break eH; - case -309054547: - break eG; - case 597069130: - break eF; - case -1780947554: - break eE; - case -83434525: - break eD; - case 1106883801: - break eC; - case 791743121: - break eB; - case 994181372: - break eA; - case -1090567930: - break ez; - case -173726498: - break ey; - case -324525645: - break ex; - case -985722153: - break ew; - case 552142263: - break ev; - case 35532533: - break eu; - case 808140963: - break et; - case 552536514: - break es; - case 1113043596: - break er; - case 180309318: - break eq; - case 1098373913: - break ep; - case -1601654356: - break eo; - case 171553019: - break en; - case 1993308723: - break em; - case 1956588185: - break el; - case -690264973: - break ek; - case -185398452: - break ej; - case -354016038: - break ei; - case -547163946: - break eh; - case -124559559: - break eg; - case 1836487610: - break ef; - case 1298739788: - break ee; - case -527102827: - break ed; - case 1505287241: - break ec; - case 1687177394: - break eb; - case -1375343095: - break ea; - case -2107404354: - break d_; - case 1252416461: - break d$; - case -799399769: - break d9; - case 1693844367: - break d8; - case 1835843740: - break d7; - case -1971775404: - break d6; - case 1143216060: - break d5; - case -596404360: - break d4; - case 1836370035: - break d3; - case -57639779: - break d2; - case 386603235: - break d1; - case 140909333: - break d0; - case 1111213695: - break dZ; - case -1875460719: - break dY; - case -974095529: - break dX; - case -2008336743: - break dW; - case 767481184: - break dV; - case -446332315: - break dU; - case -1846818353: - break dT; - case 25975226: - break dS; - case -1672152040: - break dR; - case -1869678611: - break dQ; - case 2123943227: - break dP; - case -925030859: - break dO; - case -1525448294: - break dN; - case 490543052: - break dM; - case 553477153: - break dL; - case 1032130721: - break dK; - case 2021177853: - break dJ; - case -1399872522: - break dI; - case -101943729: - break dH; - case 68785030: - break dG; - case 630773776: - break dF; - case -382919541: - break dE; - case -1036156617: - break dD; - case 44260601: - break dC; - case -1053180719: - break dB; - case 941027000: - break dA; - case -2097338776: - break dz; - case -1430315311: - break dy; - case 1743234077: - break dx; - case -1002775686: - break dw; - case 1994092090: - break dv; - case -2007159869: - break du; - case 1400223240: - break dt; - case -1889018242: - break ds; - case 773610978: - break dr; - case 549588447: - break dq; - case 545017439: - break dp; - case 924040911: - break dn; - case 715403871: - break dm; - case 488962701: - break dl; - case 773878287: - break dk; - case -853835129: - break dj; - case -4879682: - break di; - case -862437735: - break dh; - case 1590622701: - break dg; - case 654843427: - break df; - case -72889640: - break de; - case 51139985: - break dd; - case 1257722521: - break dc; - case -1509467160: - break db; - case -931686672: - break da; - case -1569671430: - break c_; - case 1086375751: - break c$; - case -692014538: - break c9; - case -1215424878: - break c8; - case -1377215654: - break c7; - case 1085962297: - break c6; - case -1397478846: - break c5; - case -1930616743: - break c4; - case -1629866976: - break c3; - case 1344230015: - break c2; - case -2070218311: - break c1; - case 967704049: - break c0; - case -1651308197: - break cZ; - case 1131485948: - break cY; - case -1631614488: - break cX; - case 257458495: - break cW; - case -361629069: - break cV; - case -14881129: - break cU; - case 1887073695: - break cT; - case 1903613124: - break cS; - case 1743141064: - break cR; - case 345156959: - break cQ; - case -721388032: - break cP; - case -391096479: - break cO; - case -1942599922: - break cN; - case -2013484445: - break cM; - case -335388913: - break cL; - case 838435105: - break cK; - case 68878043: - break cJ; - case 390701443: - break cI; - case 201251871: - break cH; - case 1605005311: - break cG; - case 1131043253: - break cF; - case 1087067473: - break cE; - case -1167383453: - break cD; - case -769608440: - break cC; - case 1412105672: - break cB; - case 1400329004: - break cA; - case -1845562242: - break cz; - case 825085381: - break cy; - case -766295774: - break cx; - case 224696041: - break cw; - case -1814577755: - break cv; - case 2117196269: - break cu; - case 1752564371: - break ct; - case 352140276: - break cs; - case 86719663: - break cr; - case 884425735: - break cq; - case -1622751247: - break cp; - case 2111686605: - break co; - case -921688526: - break cn; - case 185377688: - break cm; - case 1553787535: - break cl; - case -1092119273: - break ck; - case 1087184836: - break cj; - case -1388906993: - break ci; - case -1734229172: - break ch; - case -2128450866: - break cg; - case 2016921081: - break cf; - case 1555225207: - break ce; - case -1683547861: - break cd; - case -523752746: - break cc; - case -1223363698: - break cb; - case 421974435: - break ca; - case -393782920: - break b_; - case -1090555552: - break b$; - case -2060497514: - break b9; - case 1628021123: - break b8; - case 722610464: - break b7; - case -48137118: - break b6; - case -779711344: - break b5; - case 433120830: - break b4; - case -429840592: - break b3; - case -1189054542: - break b2; - case 1878523352: - break b1; - case -395643130: - break b0; - case -1090555080: - break bZ; - case -1154925950: - break bY; - case 49269903: - break bX; - case 984874708: - break bW; - case 1674145006: - break bV; - case 839143939: - break bU; - case -1991860843: - break bT; - case -1757559093: - break bS; - case -914850913: - break bR; - case 2129483779: - break bQ; - case 513352456: - break bP; - case -1054021648: - break bO; - case 1713437764: - break bN; - case 867259615: - break bM; - case -514003336: - break bL; - case -169006806: - break bK; - case 473626369: - break bJ; - case -613470511: - break bI; - case -225666173: - break bH; - case -2114881767: - break bG; - case -1210939641: - break bF; - case 1319121459: - break bE; - case -2109192114: - break bD; - case -1137178901: - break bC; - case 893432812: - break bB; - case -1090545472: - break bA; - case -424824043: - break bz; - case 1040811906: - break by; - case 1367871194: - break bx; - case -1515462440: - break bw; - case -165889114: - break bv; - case -4879681: - break bu; - case -213184938: - break bt; - case 737899923: - break bs; - case -1231296631: - break br; - case -1818883748: - break bq; - case -1090553155: - break bp; - case 41837598: - break bo; - case 979786518: - break bn; - case -2119301848: - break bm; - case -763184979: - break bl; - case 953953403: - break bk; - case -419512299: - break bj; - case 44353614: - break bi; - case 976534482: - break bh; - case -1588700173: - break bg; - case -2045600235: - break bf; - case 616494848: - break be; - case 1567771547: - break bd; - case 1671927173: - break bc; - case 1091776181: - break bb; - case -677401976: - break ba; - case 1522974895: - break z; - case 906154098: - break y; - case 1721669609: - break x; - case -246593737: - break w; - case -299067664: - break v; - case -621882202: - break u; - case 24898165: - break t; - case 841414265: - break s; - case 1096497267: - break r; - case 1803262547: - break q; - case -513789148: - break p; - case -1306656222: - break o; - case 2136683676: - break n; - case -1684645191: - break m; - case 736006033: - break l; - case -17764532: - break k; - case -1240947019: - break j; - case 552712649: - break i; - case -160977132: - break h; - case 1996487587: - break g; - case 250317358: - break f; - case 342871275: - break e; - case 605400192: - break d; - case -2068787732: - break c; - case -1090567620: - break b; - default: - break a; - } - if - (!jl_String_equals(var$2, - $rt_s(3678))) - break a; - return onciu_RewritableJavascript$PROXY$11_108_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3679))) - break a; - return onciu_RewritableJavascript$PROXY$11_121_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3680))) - break a; - return onciu_RewritableJavascript$PROXY$11_191_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3681))) - break a; - return onciu_RewritableJavascript$PROXY$11_221_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3682))) - break a; - return onciu_RewritableJavascript$PROXY$11_259_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3683))) - break a; - return onciu_RewritableJavascript$PROXY$11_12_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3684))) - break a; - return onciu_RewritableJavascript$PROXY$11_90_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3685))) - break a; - return onciu_RewritableJavascript$PROXY$11_16_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3686))) - break a; - return onciu_RewritableJavascript$PROXY$11_11_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3687))) - break a; - return onciu_RewritableJavascript$PROXY$11_34_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3688))) - break a; - return onciu_RewritableJavascript$PROXY$11_162_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3689))) - break a; - return onciu_RewritableJavascript$PROXY$11_145_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3690))) - break a; - return onciu_RewritableJavascript$PROXY$11_59_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3692))) - break a; - return onciu_RewritableJavascript$PROXY$11_93_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3694))) - break a; - return onciu_RewritableJavascript$PROXY$11_126_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3691))) - break a; - return onciu_RewritableJavascript$PROXY$11_144_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3695))) - break a; - return onciu_RewritableJavascript$PROXY$11_122_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3696))) - break a; - return onciu_RewritableJavascript$PROXY$11_268_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3697))) - break a; - return onciu_RewritableJavascript$PROXY$11_109_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3698))) - break a; - return onciu_RewritableJavascript$PROXY$11_172_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3699))) - break a; - return onciu_RewritableJavascript$PROXY$11_159_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3700))) - break a; - return onciu_RewritableJavascript$PROXY$11_134_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3701))) - break a; - return onciu_RewritableJavascript$PROXY$11_249_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3702))) - break a; - return onciu_RewritableJavascript$PROXY$11_129_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3703))) - break a; - return onciu_RewritableJavascript$PROXY$11_274_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3704))) - break a; - return onciu_RewritableJavascript$PROXY$11_33_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3705))) - break a; - return onciu_RewritableJavascript$PROXY$11_116_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3706))) - break a; - return onciu_RewritableJavascript$PROXY$11_6_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3707))) - break a; - return onciu_RewritableJavascript$PROXY$11_137_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3708))) - break a; - return onciu_RewritableJavascript$PROXY$11_223_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3709))) - break a; - return onciu_RewritableJavascript$PROXY$11_251_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3710))) - break a; - return onciu_RewritableJavascript$PROXY$11_22_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3711))) - break a; - return onciu_RewritableJavascript$PROXY$11_51_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3712))) - break a; - return onciu_RewritableJavascript$PROXY$11_271_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3713))) - break a; - return onciu_RewritableJavascript$PROXY$11_262_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3714))) - break a; - return onciu_RewritableJavascript$PROXY$11_60_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3715))) - break a; - return onciu_RewritableJavascript$PROXY$11_165_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3716))) - break a; - return onciu_RewritableJavascript$PROXY$11_229_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3717))) - break a; - return onciu_RewritableJavascript$PROXY$11_265_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3719))) - break a; - return onciu_RewritableJavascript$PROXY$11_52_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3718))) - break a; - return onciu_RewritableJavascript$PROXY$11_76_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3720))) - break a; - return onciu_RewritableJavascript$PROXY$11_8_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3721))) - break a; - return onciu_RewritableJavascript$PROXY$11_92_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3722))) - break a; - return onciu_RewritableJavascript$PROXY$11_65_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3723))) - break a; - return onciu_RewritableJavascript$PROXY$11_171_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3724))) - break a; - return onciu_RewritableJavascript$PROXY$11_19_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3725))) - break a; - return onciu_RewritableJavascript$PROXY$11_37_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3726))) - break a; - return onciu_RewritableJavascript$PROXY$11_95_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3727))) - break a; - return onciu_RewritableJavascript$PROXY$11_132_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3728))) - break a; - return onciu_RewritableJavascript$PROXY$11_42_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3730))) - break a; - return onciu_RewritableJavascript$PROXY$11_56_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3729))) - break a; - return onciu_RewritableJavascript$PROXY$11_88_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3731))) - break a; - return onciu_RewritableJavascript$PROXY$11_275_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3732))) - break a; - return onciu_RewritableJavascript$PROXY$11_31_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3733))) - break a; - return onciu_RewritableJavascript$PROXY$11_230_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3734))) - break a; - return onciu_RewritableJavascript$PROXY$11_102_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3735))) - break a; - return onciu_RewritableJavascript$PROXY$11_99_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3736))) - break a; - return onciu_RewritableJavascript$PROXY$11_241_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3738))) - break a; - return onciu_RewritableJavascript$PROXY$11_63_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3737))) - break a; - return onciu_RewritableJavascript$PROXY$11_80_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3739))) - break a; - return onciu_RewritableJavascript$PROXY$11_39_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3740))) - break a; - return onciu_RewritableJavascript$PROXY$11_27_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3741))) - break a; - return onciu_RewritableJavascript$PROXY$11_139_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3742))) - break a; - return onciu_RewritableJavascript$PROXY$11_103_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3743))) - break a; - return onciu_RewritableJavascript$PROXY$11_247_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3744))) - break a; - return onciu_RewritableJavascript$PROXY$11_244_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3745))) - break a; - return onciu_RewritableJavascript$PROXY$11_1_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3746))) - break a; - return onciu_RewritableJavascript$PROXY$11_255_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3748))) - break a; - return onciu_RewritableJavascript$PROXY$11_119_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3747))) - break a; - return onciu_RewritableJavascript$PROXY$11_155_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3749))) - break a; - return onciu_RewritableJavascript$PROXY$11_233_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3750))) - break a; - return onciu_RewritableJavascript$PROXY$11_97_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3751))) - break a; - return onciu_RewritableJavascript$PROXY$11_237_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3752))) - break a; - return onciu_RewritableJavascript$PROXY$11_200_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3753))) - break a; - return onciu_RewritableJavascript$PROXY$11_164_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3754))) - break a; - return onciu_RewritableJavascript$PROXY$11_26_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3755))) - break a; - return onciu_RewritableJavascript$PROXY$11_198_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3756))) - break a; - return onciu_RewritableJavascript$PROXY$11_213_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3757))) - break a; - return onciu_RewritableJavascript$PROXY$11_130_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3758))) - break a; - return onciu_RewritableJavascript$PROXY$11_264_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3759))) - break a; - return onciu_RewritableJavascript$PROXY$11_142_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3760))) - break a; - return onciu_RewritableJavascript$PROXY$11_234_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3761))) - break a; - return onciu_RewritableJavascript$PROXY$11_179_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3762))) - break a; - return onciu_RewritableJavascript$PROXY$11_53_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3763))) - break a; - return onciu_RewritableJavascript$PROXY$11_0_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3764))) - break a; - return onciu_RewritableJavascript$PROXY$11_163_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3765))) - break a; - return onciu_RewritableJavascript$PROXY$11_209_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3766))) - break a; - return onciu_RewritableJavascript$PROXY$11_15_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3767))) - break a; - return onciu_RewritableJavascript$PROXY$11_182_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3768))) - break a; - return onciu_RewritableJavascript$PROXY$11_231_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3769))) - break a; - return onciu_RewritableJavascript$PROXY$11_177_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3770))) - break a; - return onciu_RewritableJavascript$PROXY$11_184_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3771))) - break a; - return onciu_RewritableJavascript$PROXY$11_66_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3772))) - break a; - return onciu_RewritableJavascript$PROXY$11_173_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3773))) - break a; - return onciu_RewritableJavascript$PROXY$11_85_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3774))) - break a; - return onciu_RewritableJavascript$PROXY$11_18_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3775))) - break a; - return onciu_RewritableJavascript$PROXY$11_203_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3776))) - break a; - return onciu_RewritableJavascript$PROXY$11_248_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3777))) - break a; - return onciu_RewritableJavascript$PROXY$11_204_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3778))) - break a; - return onciu_RewritableJavascript$PROXY$11_68_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3779))) - break a; - return onciu_RewritableJavascript$PROXY$11_217_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3780))) - break a; - return onciu_RewritableJavascript$PROXY$11_168_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3781))) - break a; - return onciu_RewritableJavascript$PROXY$11_208_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3782))) - break a; - return onciu_RewritableJavascript$PROXY$11_73_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3783))) - break a; - return onciu_RewritableJavascript$PROXY$11_36_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3784))) - break a; - return onciu_RewritableJavascript$PROXY$11_205_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3785))) - break a; - return onciu_RewritableJavascript$PROXY$11_62_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3786))) - break a; - return onciu_RewritableJavascript$PROXY$11_160_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3787))) - break a; - return onciu_RewritableJavascript$PROXY$11_270_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3788))) - break a; - return onciu_RewritableJavascript$PROXY$11_46_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3789))) - break a; - return onciu_RewritableJavascript$PROXY$11_220_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3790))) - break a; - return onciu_RewritableJavascript$PROXY$11_81_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3791))) - break a; - return onciu_RewritableJavascript$PROXY$11_235_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3792))) - break a; - return onciu_RewritableJavascript$PROXY$11_279_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3793))) - break a; - return onciu_RewritableJavascript$PROXY$11_143_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3794))) - break a; - return onciu_RewritableJavascript$PROXY$11_70_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3795))) - break a; - return onciu_RewritableJavascript$PROXY$11_219_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3796))) - break a; - return onciu_RewritableJavascript$PROXY$11_79_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3797))) - break a; - return onciu_RewritableJavascript$PROXY$11_148_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3799))) - break a; - return onciu_RewritableJavascript$PROXY$11_260_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3798))) - break a; - return onciu_RewritableJavascript$PROXY$11_263_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3800))) - break a; - return onciu_RewritableJavascript$PROXY$11_176_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3801))) - break a; - return onciu_RewritableJavascript$PROXY$11_246_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3802))) - break a; - return onciu_RewritableJavascript$PROXY$11_106_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3803))) - break a; - return onciu_RewritableJavascript$PROXY$11_266_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3804))) - break a; - return onciu_RewritableJavascript$PROXY$11_189_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3805))) - break a; - return onciu_RewritableJavascript$PROXY$11_147_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3807))) - break a; - return onciu_RewritableJavascript$PROXY$11_187_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3808))) - break a; - return onciu_RewritableJavascript$PROXY$11_222_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3809))) - break a; - return onciu_RewritableJavascript$PROXY$11_207_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3810))) - break a; - return onciu_RewritableJavascript$PROXY$11_117_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3811))) - break a; - return onciu_RewritableJavascript$PROXY$11_238_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3812))) - break a; - return onciu_RewritableJavascript$PROXY$11_267_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3813))) - break a; - return onciu_RewritableJavascript$PROXY$11_72_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3814))) - break a; - return onciu_RewritableJavascript$PROXY$11_91_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3815))) - break a; - return onciu_RewritableJavascript$PROXY$11_118_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3816))) - break a; - return onciu_RewritableJavascript$PROXY$11_57_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3817))) - break a; - return onciu_RewritableJavascript$PROXY$11_7_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3819))) - break a; - return onciu_RewritableJavascript$PROXY$11_82_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3818))) - break a; - return onciu_RewritableJavascript$PROXY$11_170_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3820))) - break a; - return onciu_RewritableJavascript$PROXY$11_215_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3821))) - break a; - return onciu_RewritableJavascript$PROXY$11_149_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3822))) - break a; - return onciu_RewritableJavascript$PROXY$11_252_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3823))) - break a; - return onciu_RewritableJavascript$PROXY$11_5_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3824))) - break a; - return onciu_RewritableJavascript$PROXY$11_10_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3825))) - break a; - return onciu_RewritableJavascript$PROXY$11_41_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3827))) - break a; - return onciu_RewritableJavascript$PROXY$11_256_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3828))) - break a; - return onciu_RewritableJavascript$PROXY$11_127_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3829))) - break a; - return onciu_RewritableJavascript$PROXY$11_236_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3830))) - break a; - return onciu_RewritableJavascript$PROXY$11_13_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3831))) - break a; - return onciu_RewritableJavascript$PROXY$11_245_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3832))) - break a; - return onciu_RewritableJavascript$PROXY$11_125_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3833))) - break a; - return onciu_RewritableJavascript$PROXY$11_158_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3834))) - break a; - return onciu_RewritableJavascript$PROXY$11_227_lastParamIsPosition(var$1); - } - if - (!jl_String_equals(var$2, - $rt_s(3835))) - break a; - return onciu_RewritableJavascript$PROXY$11_2_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3836))) - break a; - return onciu_RewritableJavascript$PROXY$11_193_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3837))) - break a; - return onciu_RewritableJavascript$PROXY$11_214_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3838))) - break a; - return onciu_RewritableJavascript$PROXY$11_150_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3839))) - break a; - return onciu_RewritableJavascript$PROXY$11_69_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3840))) - break a; - return onciu_RewritableJavascript$PROXY$11_110_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3842))) - break a; - return onciu_RewritableJavascript$PROXY$11_78_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, - $rt_s(3841))) - break a; - return onciu_RewritableJavascript$PROXY$11_167_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3843))) - break a; - return onciu_RewritableJavascript$PROXY$11_67_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3844))) - break a; - return onciu_RewritableJavascript$PROXY$11_86_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3845))) - break a; - return onciu_RewritableJavascript$PROXY$11_278_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3846))) - break a; - return onciu_RewritableJavascript$PROXY$11_196_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3847))) - break a; - return onciu_RewritableJavascript$PROXY$11_216_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3848))) - break a; - return onciu_RewritableJavascript$PROXY$11_175_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3850))) - break a; - return onciu_RewritableJavascript$PROXY$11_257_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3849))) - break a; - return onciu_RewritableJavascript$PROXY$11_272_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3851))) - break a; - return onciu_RewritableJavascript$PROXY$11_35_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3852))) - break a; - return onciu_RewritableJavascript$PROXY$11_38_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3853))) - break a; - return onciu_RewritableJavascript$PROXY$11_156_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3854))) - break a; - return onciu_RewritableJavascript$PROXY$11_277_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3855))) - break a; - return onciu_RewritableJavascript$PROXY$11_242_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3856))) - break a; - return onciu_RewritableJavascript$PROXY$11_250_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3857))) - break a; - return onciu_RewritableJavascript$PROXY$11_61_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3858))) - break a; - return onciu_RewritableJavascript$PROXY$11_21_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3859))) - break a; - return onciu_RewritableJavascript$PROXY$11_89_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3860))) - break a; - return onciu_RewritableJavascript$PROXY$11_232_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3861))) - break a; - return onciu_RewritableJavascript$PROXY$11_135_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3863))) - break a; - return onciu_RewritableJavascript$PROXY$11_45_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3862))) - break a; - return onciu_RewritableJavascript$PROXY$11_161_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3864))) - break a; - return onciu_RewritableJavascript$PROXY$11_169_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3865))) - break a; - return onciu_RewritableJavascript$PROXY$11_64_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3866))) - break a; - return onciu_RewritableJavascript$PROXY$11_123_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3867))) - break a; - return onciu_RewritableJavascript$PROXY$11_105_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3868))) - break a; - return onciu_RewritableJavascript$PROXY$11_140_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3869))) - break a; - return onciu_RewritableJavascript$PROXY$11_23_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3870))) - break a; - return onciu_RewritableJavascript$PROXY$11_181_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3871))) - break a; - return onciu_RewritableJavascript$PROXY$11_195_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3872))) - break a; - return onciu_RewritableJavascript$PROXY$11_152_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3873))) - break a; - return onciu_RewritableJavascript$PROXY$11_258_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3874))) - break a; - return onciu_RewritableJavascript$PROXY$11_24_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3875))) - break a; - return onciu_RewritableJavascript$PROXY$11_94_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3876))) - break a; - return onciu_RewritableJavascript$PROXY$11_49_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3877))) - break a; - return onciu_RewritableJavascript$PROXY$11_185_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3878))) - break a; - return onciu_RewritableJavascript$PROXY$11_77_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3879))) - break a; - return onciu_RewritableJavascript$PROXY$11_115_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3880))) - break a; - return onciu_RewritableJavascript$PROXY$11_58_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3882))) - break a; - return onciu_RewritableJavascript$PROXY$11_124_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3881))) - break a; - return onciu_RewritableJavascript$PROXY$11_201_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3883))) - break a; - return onciu_RewritableJavascript$PROXY$11_194_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3884))) - break a; - return onciu_RewritableJavascript$PROXY$11_199_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3885))) - break a; - return onciu_RewritableJavascript$PROXY$11_43_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3886))) - break a; - return onciu_RewritableJavascript$PROXY$11_4_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3888))) - break a; - return onciu_RewritableJavascript$PROXY$11_157_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3887))) - break a; - return onciu_RewritableJavascript$PROXY$11_183_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3889))) - break a; - return onciu_RewritableJavascript$PROXY$11_75_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3890))) - break a; - return onciu_RewritableJavascript$PROXY$11_240_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3891))) - break a; - return onciu_RewritableJavascript$PROXY$11_28_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3892))) - break a; - return onciu_RewritableJavascript$PROXY$11_3_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3893))) - break a; - return onciu_RewritableJavascript$PROXY$11_141_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3894))) - break a; - return onciu_RewritableJavascript$PROXY$11_202_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3895))) - break a; - return onciu_RewritableJavascript$PROXY$11_14_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3896))) - break a; - return onciu_RewritableJavascript$PROXY$11_211_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3897))) - break a; - return onciu_RewritableJavascript$PROXY$11_228_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3898))) - break a; - return onciu_RewritableJavascript$PROXY$11_87_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3899))) - break a; - return onciu_RewritableJavascript$PROXY$11_174_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3900))) - break a; - return onciu_RewritableJavascript$PROXY$11_269_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3901))) - break a; - return onciu_RewritableJavascript$PROXY$11_153_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3902))) - break a; - return onciu_RewritableJavascript$PROXY$11_273_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3903))) - break a; - return onciu_RewritableJavascript$PROXY$11_54_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3904))) - break a; - return onciu_RewritableJavascript$PROXY$11_44_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3905))) - break a; - return onciu_RewritableJavascript$PROXY$11_133_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3906))) - break a; - return onciu_RewritableJavascript$PROXY$11_48_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3907))) - break a; - return onciu_RewritableJavascript$PROXY$11_113_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3909))) - break a; - return onciu_RewritableJavascript$PROXY$11_101_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3908))) - break a; - return onciu_RewritableJavascript$PROXY$11_112_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3911))) - break a; - return onciu_RewritableJavascript$PROXY$11_50_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3910))) - break a; - return onciu_RewritableJavascript$PROXY$11_96_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3912))) - break a; - return onciu_RewritableJavascript$PROXY$11_40_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3913))) - break a; - return onciu_RewritableJavascript$PROXY$11_136_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3914))) - break a; - return onciu_RewritableJavascript$PROXY$11_280_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3915))) - break a; - return onciu_RewritableJavascript$PROXY$11_186_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3916))) - break a; - return onciu_RewritableJavascript$PROXY$11_261_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3918))) - break a; - return onciu_RewritableJavascript$PROXY$11_17_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3919))) - break a; - return onciu_RewritableJavascript$PROXY$11_25_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3920))) - break a; - return onciu_RewritableJavascript$PROXY$11_224_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3921))) - break a; - return onciu_RewritableJavascript$PROXY$11_206_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3922))) - break a; - return onciu_RewritableJavascript$PROXY$11_30_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3923))) - break a; - return onciu_RewritableJavascript$PROXY$11_180_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3924))) - break a; - return onciu_RewritableJavascript$PROXY$11_20_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3925))) - break a; - return onciu_RewritableJavascript$PROXY$11_83_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3926))) - break a; - return onciu_RewritableJavascript$PROXY$11_190_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3928))) - break a; - return onciu_RewritableJavascript$PROXY$11_146_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3927))) - break a; - return onciu_RewritableJavascript$PROXY$11_188_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3929))) - break a; - return onciu_RewritableJavascript$PROXY$11_218_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3930))) - break a; - return onciu_RewritableJavascript$PROXY$11_131_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3931))) - break a; - return onciu_RewritableJavascript$PROXY$11_192_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3932))) - break a; - return onciu_RewritableJavascript$PROXY$11_98_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3933))) - break a; - return onciu_RewritableJavascript$PROXY$11_71_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3934))) - break a; - return onciu_RewritableJavascript$PROXY$11_254_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3935))) - break a; - return onciu_RewritableJavascript$PROXY$11_212_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3936))) - break a; - return onciu_RewritableJavascript$PROXY$11_29_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3937))) - break a; - return onciu_RewritableJavascript$PROXY$11_226_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3938))) - break a; - return onciu_RewritableJavascript$PROXY$11_225_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3939))) - break a; - return onciu_RewritableJavascript$PROXY$11_210_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3940))) - break a; - return onciu_RewritableJavascript$PROXY$11_9_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3941))) - break a; - return onciu_RewritableJavascript$PROXY$11_55_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3943))) - break a; - return onciu_RewritableJavascript$PROXY$11_84_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3942))) - break a; - return onciu_RewritableJavascript$PROXY$11_100_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3944))) - break a; - return onciu_RewritableJavascript$PROXY$11_253_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3945))) - break a; - return onciu_RewritableJavascript$PROXY$11_239_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3946))) - break a; - return onciu_RewritableJavascript$PROXY$11_138_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3947))) - break a; - return onciu_RewritableJavascript$PROXY$11_154_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3948))) - break a; - return onciu_RewritableJavascript$PROXY$11_120_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3949))) - break a; - return onciu_RewritableJavascript$PROXY$11_128_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3950))) - break a; - return onciu_RewritableJavascript$PROXY$11_166_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3951))) - break a; - return onciu_RewritableJavascript$PROXY$11_151_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3953))) - break a; - return onciu_RewritableJavascript$PROXY$11_107_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3952))) - break a; - return onciu_RewritableJavascript$PROXY$11_114_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3954))) - break a; - return onciu_RewritableJavascript$PROXY$11_178_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3955))) - break a; - return onciu_RewritableJavascript$PROXY$11_32_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3956))) - break a; - return onciu_RewritableJavascript$PROXY$11_111_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3958))) - break a; - return onciu_RewritableJavascript$PROXY$11_243_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3960))) - break a; - return onciu_RewritableJavascript$PROXY$11_104_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3961))) - break a; - return onciu_RewritableJavascript$PROXY$11_197_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3962))) - break a; - return onciu_RewritableJavascript$PROXY$11_276_lastParamIsPosition(var$1); - } - if (!jl_String_equals(var$2, $rt_s(3963))) - break a; - return onciu_RewritableJavascript$PROXY$11_74_lastParamIsPosition(var$1); - } - if (jl_String_equals(var$2, $rt_s(3964))) - return onciu_RewritableJavascript$PROXY$11_47_lastParamIsPosition(var$1); - } - return 0; -}, -onciu_RewritableJavascript$PROXY$7_1 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_1_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_GeometryType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_2 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_2_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_NumberType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_3 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_3_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_ClosedDynamicUnionType_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_30 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_30_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_AnyType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_31 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_31_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_BooleanType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_32 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_32_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_StringType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_33 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_33_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_FloatType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_34 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_34_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_IntegerType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_35 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_35_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_MapType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_36 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_36_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_NodeType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_37 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_37_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_RelationshipType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_38 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_38_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_PointType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_39 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_39_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_ZonedDateTimeType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_40 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_40_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_LocalDateTimeType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_41 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_41_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_DateType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_42 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_42_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_ZonedTimeType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_43 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_43_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_LocalTimeType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_44 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_44_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_DurationType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_45 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_45_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_PathType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_46 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_46_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_ListType_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_65 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_65_copyConstructor = (var$1, var$2, var$3) => { - return su_Left__init_(var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_66 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_66_copyConstructor = (var$1, var$2, var$3) => { - return su_Right__init_(var$3.data[0]); -}, -scm_HashMap$$anon$2 = $rt_classWithoutFields(scm_HashMap$HashMapIterator); -let scm_HashMap$$anon$2_extract = ($this, $nd) => { - return $nd.$_key0; -}; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0() { - jl_Object.call(this); - this.$_0963 = null; -} -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_0963; - var$2 = new oncia_GraphDirectReference; - var$3 = oncia_CatalogName$_MODULE$; - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(jl_String, 1); - var$5.data[0] = var$1.$sessionDatabaseName; - var$1 = oncia_CatalogName$_apply(var$3, sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); - onciu_InputPosition$_$callClinit(); - oncia_GraphDirectReference__init_(var$2, var$1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - return var$2; -}; -function sc_MapView$MapValues$iterator$lambda$_0_0() { - jl_Object.call(this); - this.$_01069 = null; -} -let sc_MapView$MapValues$iterator$lambda$_0_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01069; - return s_Tuple2__init_(var$1.$_1(), var$2.$f8.$apply2(var$1.$_2())); -}; -function onciu_Foldable$Folder$$anonfun$treeFold$1() { - sr_AbstractPartialFunction.call(this); - this.$$outer70 = null; -} -let scm_ListBuffer$ = $rt_classWithoutFields(), -scm_ListBuffer$_MODULE$ = null, -scm_ListBuffer$__clinit_ = () => { - scm_ListBuffer$_MODULE$ = new scm_ListBuffer$; -}, -scm_ListBuffer$_newBuilder = $this => { - return scm_GrowableBuilder__init_0(scm_ListBuffer__init_()); -}, -scm_ListBuffer$_from = ($this, $source) => { - return scm_ListBuffer_scala$collection$mutable$ListBuffer$$freshFrom(scm_ListBuffer__init_(), $source); -}, -oncias_SemanticState$withFeatures$lambda$_46_0 = $rt_classWithoutFields(), -oncias_SemanticState$withFeatures$lambda$_46_0_apply = (var$0, var$1, var$2) => { - let var$3; - var$1 = var$1; - var$2 = var$2; - var$3 = var$1.$features.$incl(var$2); - return oncias_SemanticState_copy(var$1, var$1.$currentScope, var$1.$typeTable0, var$1.$recordedScopes0, var$1.$notifications, var$3, var$1.$declareVariablesToSuppressDuplicateErrors, var$1.$semanticCheckHasRunOnce, var$1.$targetGraph, var$1.$workingGraph); -}; -function onciuh_TreeZipper$Location() { - let a = this; jl_Object.call(a); - a.$elem0 = null; - a.$context0 = null; - a.$$outer0 = null; -} -let onciuh_TreeZipper$Location_root = $this => { - let $this_0, var$2, $left, $right, $parentElem, $parentContext; - a: { - while (true) { - $this_0 = $this.$context0; - if (jl_Object_equals(onciuh_TreeZipper_Top($this.$$outer0), $this_0)) - break; - var$2 = $this.$context0; - if (!(var$2 instanceof onciuh_TreeZipper$TreeContext)) - break a; - var$2 = var$2; - $left = var$2.$left2; - $this_0 = var$2.$parent2; - $right = var$2.$right1; - if ($this_0 === null) - break a; - $parentElem = $this_0.$elem0; - $parentContext = $this_0.$context0; - $this = onciuh_TreeZipper$Location__init_($this.$$outer0, oncias_Scope_updateChildren($parentElem, ((sci_List_reverse($left)).$concat(sci_$colon$colon__init_($this.$elem0, sci_Nil$_MODULE$))).$concat($right)), $parentContext); - } - return $this; - } - $rt_throw(s_MatchError__init_($this)); -}, -onciuh_TreeZipper$Location_up = $this => { - let var$1, var$2, $left, $right, $parentElem, $parentContext; - var$1 = $this.$context0; - if (jl_Object_equals(onciuh_TreeZipper_Top($this.$$outer0), var$1)) - return s_None$_MODULE$; - var$2 = $this.$context0; - if (var$2 instanceof onciuh_TreeZipper$TreeContext) { - var$2 = var$2; - $left = var$2.$left2; - var$1 = var$2.$parent2; - $right = var$2.$right1; - if (var$1 !== null) { - $parentElem = var$1.$elem0; - $parentContext = var$1.$context0; - return s_Some__init_(onciuh_TreeZipper$Location__init_($this.$$outer0, oncias_Scope_updateChildren($parentElem, ((sci_List_reverse($left)).$concat(sci_$colon$colon__init_($this.$elem0, sci_Nil$_MODULE$))).$concat($right)), $parentContext)); - } - } - $rt_throw(s_MatchError__init_($this)); -}, -onciuh_TreeZipper$Location_replace = ($this, $newElem) => { - return onciuh_TreeZipper$Location__init_($this.$$outer0, $newElem, $this.$context0); -}, -onciuh_TreeZipper$Location_insertRight = ($this, $newElem) => { - let var$2, var$3, $left, $parent, $right, var$7, var$8; - var$2 = $this.$context0; - if (jl_Object_equals(onciuh_TreeZipper_Top($this.$$outer0), var$2)) - return s_None$_MODULE$; - var$3 = $this.$context0; - if (!(var$3 instanceof onciuh_TreeZipper$TreeContext)) - $rt_throw(s_MatchError__init_($this)); - var$3 = var$3; - $left = var$3.$left2; - $parent = var$3.$parent2; - $right = var$3.$right1; - var$7 = new s_Some; - var$3 = new onciuh_TreeZipper$Location; - var$8 = $this.$$outer0; - onciuh_TreeZipper$Location__init_0(var$3, var$8, $newElem, onciuh_TreeZipper$TreeContext__init_0(var$8, $left.$prepended($this.$elem0), $parent, $right)); - s_Some__init_0(var$7, var$3); - return var$7; -}, -onciuh_TreeZipper$Location_productPrefix = $this => { - return $rt_s(3965); -}, -onciuh_TreeZipper$Location_productArity = $this => { - return 2; -}, -onciuh_TreeZipper$Location_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$elem0; - case 1: - return $this.$context0; - default: - } - return sr_Statics_ioobe($x$1); -}, -onciuh_TreeZipper$Location_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -onciuh_TreeZipper$Location_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -onciuh_TreeZipper$Location_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -onciuh_TreeZipper$Location_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!($x$1 instanceof onciuh_TreeZipper$Location && $x$1.$$outer0 === $this.$$outer0 ? 1 : 0)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$elem0; - var$3 = $x$1.$elem0; - if (var$2 !== null) { - if (!oncias_Scope_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$context0; - $x$1 = $x$1.$context0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof onciuh_TreeZipper$Location)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -onciuh_TreeZipper$Location__init_0 = ($this, $$outer, $elem, $context) => { - $this.$elem0 = $elem; - $this.$context0 = $context; - if ($$outer === null) - $rt_throw(null); - $this.$$outer0 = $$outer; -}, -onciuh_TreeZipper$Location__init_ = (var_0, var_1, var_2) => { - let var_3 = new onciuh_TreeZipper$Location(); - onciuh_TreeZipper$Location__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function scm_HashMap$$anon$5() { - let a = this; scm_HashMap$HashMapIterator.call(a); - a.$hash7 = 0; - a.$$outer60 = null; -} -let scm_HashMap$$anon$5_hashCode = $this => { - return $this.$hash7; -}, -scm_HashMap$$anon$5_extract = ($this, $nd) => { - suh_MurmurHash3$_$callClinit(); - $this.$hash7 = suh_MurmurHash3$_tuple2Hash(suh_MurmurHash3$_MODULE$, jl_Integer_valueOf(scm_HashMap_unimproveHash($this.$$outer60, $nd.$_hash0)), jl_Integer_valueOf(sr_Statics_anyHash($nd.$_value))); - return $this; -}; -function oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0() { - jl_Object.call(this); - this.$_0652 = 0; -} -let oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0_apply = (var$0, var$1) => { - return var$1.$withIsNullable1(var$0.$_0652); -}; -function sci_MapOps$ImmutableKeySet() { - sci_AbstractSet.call(this); - this.$$outer4 = null; -} -let sci_MapOps$ImmutableKeySet_iterator = $this => { - return sc_MapOps$GenKeySet_iterator$($this); -}, -sci_MapOps$ImmutableKeySet_contains = ($this, $key) => { - return $this.$$outer4.$contains($key); -}, -sci_MapOps$ImmutableKeySet_size = $this => { - return $this.$$outer4.$size(); -}, -sci_MapOps$ImmutableKeySet_knownSize = $this => { - return sc_MapOps$GenKeySet_knownSize$($this); -}, -sci_MapOps$ImmutableKeySet_isEmpty = $this => { - return $this.$$outer4.$isEmpty(); -}, -sci_MapOps$ImmutableKeySet_incl0 = ($this, $elem) => { - let var$2; - if (sci_MapOps$ImmutableKeySet_contains($this, $elem)) - return $this; - var$2 = sc_AbstractIterable_empty($this); - if (var$2 === null) - $rt_throw(null); - var$2 = sc_AbstractSet_concat(var$2, $this); - if (var$2 !== null) - return var$2.$incl($elem); - $rt_throw(null); -}, -sci_MapOps$ImmutableKeySet_excl0 = ($this, $elem) => { - let var$2; - if (!sci_MapOps$ImmutableKeySet_contains($this, $elem)) - return $this; - var$2 = sc_AbstractIterable_empty($this); - if (var$2 === null) - $rt_throw(null); - var$2 = sc_AbstractSet_concat(var$2, $this); - if (var$2 !== null) - return var$2.$excl($elem); - $rt_throw(null); -}, -sci_MapOps$ImmutableKeySet_scala$collection$immutable$MapOps$ImmutableKeySet$$$outer = $this => { - return $this.$$outer4; -}, -sci_MapOps$ImmutableKeySet_scala$collection$MapOps$GenKeySet$$$outer = $this => { - return $this.$$outer4; -}, -sci_MapOps$ImmutableKeySet_excl = ($this, $elem) => { - return $this.$excl2($elem); -}, -sci_MapOps$ImmutableKeySet_incl = ($this, $elem) => { - return $this.$incl2($elem); -}, -sci_MapOps$ImmutableKeySet__init_ = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer4 = $$outer; -}, -sci_MapOps$ImmutableKeySet__init_0 = var_0 => { - let var_1 = new sci_MapOps$ImmutableKeySet(); - sci_MapOps$ImmutableKeySet__init_(var_1, var_0); - return var_1; -}, -sci_HashMap$HashKeySet = $rt_classWithoutFields(sci_MapOps$ImmutableKeySet), -sci_HashMap$HashKeySet_newKeySetOrThis = ($this, $newHashMap) => { - if ($newHashMap === sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this)) - return $this; - return sci_HashMap_keySet($newHashMap); -}, -sci_HashMap$HashKeySet_incl = ($this, $elem) => { - let $originalHash, $improvedHash, $newNode; - $originalHash = sr_Statics_anyHash($elem); - $improvedHash = sc_Hashing$_improve(sc_Hashing$_MODULE$, $originalHash); - $newNode = sci_BitmapIndexedMapNode_updated((sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this)).$rootNode0, $elem, null, $originalHash, $improvedHash, 0, 0); - if ($newNode !== (sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this)).$rootNode0) - $this = sci_HashMap_keySet(sci_HashMap__init_($newNode)); - return $this; -}, -sci_HashMap$HashKeySet_excl = ($this, $elem) => { - let var$2; - var$2 = sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this); - if (var$2 === null) - $rt_throw(null); - return sci_HashMap$HashKeySet_newKeySetOrThis($this, sci_HashMap_removed(var$2, $elem)); -}, -sci_HashMap$HashKeySet_filter0 = ($this, $pred) => { - let $filter_this, $filter_pred, $filterImpl_newRootNode, $filterImpl_filterImpl_i, $filterImpl_filterImpl_maximumIndex, $filterImpl_filterImpl_newDataMap, $filterImpl_filterImpl_newCachedHashCode, $filterImpl_filterImpl_dataIndex, $filterImpl_filterImpl_bitpos, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newContent, $filterImpl_filterImpl_newOriginalHashes, $filterImpl_filterImpl_newOriginalHashCodes, var$15, $filterImpl_filterImpl_newMaximumIndex, $filterImpl_filterImpl_j, $filterImpl_filterImpl_newDataIndex, - $filterImpl_filterImpl_oldIndex, $filterImpl_filterImpl_newContent_0, $filterImpl_filterImpl_allMap, $filterImpl_filterImpl_minimumIndex, $filterImpl_filterImpl_oldDataPassThrough, $filterImpl_filterImpl_nodeMigrateToDataTargetMap, $filterImpl_filterImpl_nodesToMigrateToData, $filterImpl_filterImpl_nodesToPassThroughMap, $filterImpl_filterImpl_mapOfNewNodes, $filterImpl_filterImpl_newNodes, $filterImpl_filterImpl_newNodeMap, $filterImpl_filterImpl_nodeIndex, $filterImpl_filterImpl_i_0, $filterImpl_filterImpl_oldSubNode, - $filterImpl_filterImpl_newSubNode, $filterImpl_filterImpl_newDataSize, $filterImpl_filterImpl_newContentSize, $filterImpl_filterImpl_maxIndex, $filterImpl_filterImpl_oldDataIndex, $filterImpl_filterImpl_oldNodeIndex, $filterImpl_filterImpl_newNodeIndex, $filterImpl_filterImpl_node; - $filter_this = sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this); - $filter_pred = sci_HashMap$HashKeySet$filter$lambda$_4_0__init_($pred); - if ($filter_this === null) - $rt_throw(null); - $filterImpl_newRootNode = sci_HashMap_rootNode($filter_this); - if ($filterImpl_newRootNode === null) - $rt_throw(null); - if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) { - if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode) == 1) { - if (!sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, 0))))) { - sci_MapNode$_$callClinit(); - $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); - } - } else if (!sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) { - $filterImpl_filterImpl_i = jl_Integer_numberOfTrailingZeros(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)); - $filterImpl_filterImpl_maximumIndex = 32 - jl_Integer_numberOfLeadingZeros(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) | 0; - $filterImpl_filterImpl_newDataMap = 0; - $filterImpl_filterImpl_newCachedHashCode = 0; - $filterImpl_filterImpl_dataIndex = 0; - while ($filterImpl_filterImpl_i < $filterImpl_filterImpl_maximumIndex) { - $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_i; - if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { - if (!sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, $filterImpl_filterImpl_dataIndex)))) ? 0 : 1) { - $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; - $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + sc_Hashing$_improve(sc_Hashing$_MODULE$, (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_dataIndex]) | 0; - } - $filterImpl_filterImpl_dataIndex = $filterImpl_filterImpl_dataIndex + 1 | 0; - } - $filterImpl_filterImpl_i = $filterImpl_filterImpl_i + 1 | 0; - } - if (!$filterImpl_filterImpl_newDataMap) { - sci_MapNode$_$callClinit(); - $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); - } else if ($filterImpl_filterImpl_newDataMap != sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { - $filterImpl_filterImpl_newSize = jl_Integer_bitCount($filterImpl_filterImpl_newDataMap); - $filterImpl_filterImpl_newContent = $rt_createArray(jl_Object, $filterImpl_filterImpl_newSize * 2 | 0); - $filterImpl_filterImpl_newOriginalHashes = $filterImpl_filterImpl_newContent.data; - $filterImpl_filterImpl_newOriginalHashCodes = $rt_createIntArray($filterImpl_filterImpl_newSize); - var$15 = $filterImpl_filterImpl_newOriginalHashCodes.data; - $filterImpl_filterImpl_newMaximumIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_newDataMap) | 0; - $filterImpl_filterImpl_j = jl_Integer_numberOfTrailingZeros($filterImpl_filterImpl_newDataMap); - $filterImpl_filterImpl_newDataIndex = 0; - while ($filterImpl_filterImpl_j < $filterImpl_filterImpl_newMaximumIndex) { - $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_j; - if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_newDataMap) { - $filterImpl_filterImpl_oldIndex = jl_Integer_bitCount(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode) & ($filterImpl_filterImpl_bitpos - 1 | 0)); - $filterImpl_filterImpl_i = $filterImpl_filterImpl_newDataIndex * 2 | 0; - $filterImpl_filterImpl_newContent_0 = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data; - $filterImpl_filterImpl_maximumIndex = $filterImpl_filterImpl_oldIndex * 2 | 0; - $filterImpl_filterImpl_newOriginalHashes[$filterImpl_filterImpl_i] = $filterImpl_filterImpl_newContent_0[$filterImpl_filterImpl_maximumIndex]; - $filterImpl_filterImpl_newOriginalHashes[$filterImpl_filterImpl_i + 1 | 0] = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data[$filterImpl_filterImpl_maximumIndex + 1 | 0]; - var$15[$filterImpl_filterImpl_newDataIndex] = (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_oldIndex]; - $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; - } - $filterImpl_filterImpl_j = $filterImpl_filterImpl_j + 1 | 0; - } - $filterImpl_newRootNode = sci_BitmapIndexedMapNode__init_($filterImpl_filterImpl_newDataMap, 0, $filterImpl_filterImpl_newContent, $filterImpl_filterImpl_newOriginalHashCodes, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newCachedHashCode); - } - } else { - $filterImpl_filterImpl_allMap = sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode) | sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode); - $filterImpl_filterImpl_minimumIndex = jl_Integer_numberOfTrailingZeros($filterImpl_filterImpl_allMap); - $filterImpl_filterImpl_maximumIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_allMap) | 0; - $filterImpl_filterImpl_oldDataPassThrough = 0; - $filterImpl_filterImpl_nodeMigrateToDataTargetMap = 0; - $filterImpl_filterImpl_nodesToMigrateToData = null; - $filterImpl_filterImpl_nodesToPassThroughMap = 0; - $filterImpl_filterImpl_mapOfNewNodes = 0; - $filterImpl_filterImpl_newNodes = null; - $filterImpl_filterImpl_newDataMap = 0; - $filterImpl_filterImpl_newNodeMap = 0; - $filterImpl_filterImpl_newSize = 0; - $filterImpl_filterImpl_newCachedHashCode = 0; - $filterImpl_filterImpl_dataIndex = 0; - $filterImpl_filterImpl_nodeIndex = 0; - $filterImpl_filterImpl_i_0 = $filterImpl_filterImpl_minimumIndex; - while ($filterImpl_filterImpl_i_0 < $filterImpl_filterImpl_maximumIndex) { - $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_i_0; - if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { - if (!sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, $filterImpl_filterImpl_dataIndex)))) ? 0 : 1) { - $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; - $filterImpl_filterImpl_oldDataPassThrough = $filterImpl_filterImpl_oldDataPassThrough | $filterImpl_filterImpl_bitpos; - $filterImpl_filterImpl_newSize = $filterImpl_filterImpl_newSize + 1 | 0; - $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + sc_Hashing$_improve(sc_Hashing$_MODULE$, (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_dataIndex]) | 0; - } - $filterImpl_filterImpl_dataIndex = $filterImpl_filterImpl_dataIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) { - $filterImpl_filterImpl_oldSubNode = sci_BitmapIndexedMapNode_getNode($filterImpl_newRootNode, $filterImpl_filterImpl_nodeIndex); - $filterImpl_filterImpl_newSubNode = $filterImpl_filterImpl_oldSubNode.$filterImpl4($filter_pred, 0); - $filterImpl_filterImpl_newSize = $filterImpl_filterImpl_newSize + $filterImpl_filterImpl_newSubNode.$size() | 0; - $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + $filterImpl_filterImpl_newSubNode.$cachedJavaKeySetHashCode() | 0; - if ($filterImpl_filterImpl_newSubNode.$size() > 1) { - $filterImpl_filterImpl_newNodeMap = $filterImpl_filterImpl_newNodeMap | $filterImpl_filterImpl_bitpos; - if ($filterImpl_filterImpl_oldSubNode === $filterImpl_filterImpl_newSubNode) - $filterImpl_filterImpl_nodesToPassThroughMap = $filterImpl_filterImpl_nodesToPassThroughMap | $filterImpl_filterImpl_bitpos; - else { - $filterImpl_filterImpl_mapOfNewNodes = $filterImpl_filterImpl_mapOfNewNodes | $filterImpl_filterImpl_bitpos; - if ($filterImpl_filterImpl_newNodes === null) - $filterImpl_filterImpl_newNodes = scm_Queue$_empty(scm_Queue$_MODULE$); - scm_AbstractBuffer_$plus$eq($filterImpl_filterImpl_newNodes, $filterImpl_filterImpl_newSubNode); - } - } else if ($filterImpl_filterImpl_newSubNode.$size() == 1) { - $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; - $filterImpl_filterImpl_nodeMigrateToDataTargetMap = $filterImpl_filterImpl_nodeMigrateToDataTargetMap | $filterImpl_filterImpl_bitpos; - if ($filterImpl_filterImpl_nodesToMigrateToData === null) - $filterImpl_filterImpl_nodesToMigrateToData = sc_IterableFactory_apply$(scm_Queue$_MODULE$, sci_Nil$_MODULE$); - scm_AbstractBuffer_$plus$eq($filterImpl_filterImpl_nodesToMigrateToData, $filterImpl_filterImpl_newSubNode); - } - $filterImpl_filterImpl_nodeIndex = $filterImpl_filterImpl_nodeIndex + 1 | 0; - } - $filterImpl_filterImpl_i_0 = $filterImpl_filterImpl_i_0 + 1 | 0; - } - if (!$filterImpl_filterImpl_newSize) { - sci_MapNode$_$callClinit(); - $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); - } else if ($filterImpl_filterImpl_newSize != sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) { - $filterImpl_filterImpl_newDataSize = jl_Integer_bitCount($filterImpl_filterImpl_newDataMap); - $filterImpl_filterImpl_newContentSize = (2 * $filterImpl_filterImpl_newDataSize | 0) + jl_Integer_bitCount($filterImpl_filterImpl_newNodeMap) | 0; - $filterImpl_filterImpl_newContent_0 = $rt_createArray(jl_Object, $filterImpl_filterImpl_newContentSize); - $filterImpl_filterImpl_newContent = $filterImpl_filterImpl_newContent_0.data; - $filterImpl_filterImpl_newOriginalHashes = $rt_createIntArray($filterImpl_filterImpl_newDataSize); - $filterImpl_filterImpl_newOriginalHashCodes = $filterImpl_filterImpl_newOriginalHashes.data; - $filterImpl_filterImpl_maxIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_newNodeMap) | 0; - $filterImpl_filterImpl_oldDataIndex = 0; - $filterImpl_filterImpl_oldNodeIndex = 0; - $filterImpl_filterImpl_newDataIndex = 0; - $filterImpl_filterImpl_newNodeIndex = 0; - while ($filterImpl_filterImpl_minimumIndex < $filterImpl_filterImpl_maxIndex) { - $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_minimumIndex; - if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_oldDataPassThrough) { - $filterImpl_filterImpl_maximumIndex = $filterImpl_filterImpl_newDataIndex * 2 | 0; - var$15 = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data; - $filterImpl_filterImpl_i = 2 * $filterImpl_filterImpl_oldDataIndex | 0; - $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_maximumIndex] = var$15[$filterImpl_filterImpl_i]; - $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_maximumIndex + 1 | 0] = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data[$filterImpl_filterImpl_i + 1 | 0]; - $filterImpl_filterImpl_newOriginalHashCodes[$filterImpl_filterImpl_newDataIndex] = (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_oldDataIndex]; - $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; - $filterImpl_filterImpl_oldDataIndex = $filterImpl_filterImpl_oldDataIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_nodesToPassThroughMap) { - $filterImpl_filterImpl_newContent[($filterImpl_filterImpl_newContentSize - $filterImpl_filterImpl_newNodeIndex | 0) - 1 | 0] = sci_BitmapIndexedMapNode_getNode($filterImpl_newRootNode, $filterImpl_filterImpl_oldNodeIndex); - $filterImpl_filterImpl_newNodeIndex = $filterImpl_filterImpl_newNodeIndex + 1 | 0; - $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_nodeMigrateToDataTargetMap) { - $filterImpl_filterImpl_node = scm_Queue_dequeue($filterImpl_filterImpl_nodesToMigrateToData); - $filterImpl_filterImpl_i = 2 * $filterImpl_filterImpl_newDataIndex | 0; - $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_i] = $filterImpl_filterImpl_node.$getKey0(0); - $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_i + 1 | 0] = $filterImpl_filterImpl_node.$getValue1(0); - $filterImpl_filterImpl_newOriginalHashCodes[$filterImpl_filterImpl_newDataIndex] = $filterImpl_filterImpl_node.$getHash(0); - $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; - $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_mapOfNewNodes) { - $filterImpl_filterImpl_newContent[($filterImpl_filterImpl_newContentSize - $filterImpl_filterImpl_newNodeIndex | 0) - 1 | 0] = scm_Queue_dequeue($filterImpl_filterImpl_newNodes); - $filterImpl_filterImpl_newNodeIndex = $filterImpl_filterImpl_newNodeIndex + 1 | 0; - $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) - $filterImpl_filterImpl_oldDataIndex = $filterImpl_filterImpl_oldDataIndex + 1 | 0; - else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) - $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; - $filterImpl_filterImpl_minimumIndex = $filterImpl_filterImpl_minimumIndex + 1 | 0; - } - $filterImpl_newRootNode = sci_BitmapIndexedMapNode__init_($filterImpl_filterImpl_newDataMap, $filterImpl_filterImpl_newNodeMap, $filterImpl_filterImpl_newContent_0, $filterImpl_filterImpl_newOriginalHashes, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newCachedHashCode); - } - } - } - if ($filterImpl_newRootNode !== sci_HashMap_rootNode($filter_this)) { - if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) - $filter_this = sci_HashMap__init_($filterImpl_newRootNode); - else { - sci_HashMap$_$callClinit(); - $filter_this = sci_HashMap$_empty(sci_HashMap$_MODULE$); - } - } - return sci_HashMap$HashKeySet_newKeySetOrThis($this, $filter_this); -}, -sci_HashMap$HashKeySet_filterNot0 = ($this, $pred) => { - let $filterNot_this, $filterNot_pred, $filterImpl_newRootNode, $filterImpl_filterImpl_i, $filterImpl_filterImpl_maximumIndex, $filterImpl_filterImpl_newDataMap, $filterImpl_filterImpl_newCachedHashCode, $filterImpl_filterImpl_dataIndex, $filterImpl_filterImpl_bitpos, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newContent, $filterImpl_filterImpl_newOriginalHashes, $filterImpl_filterImpl_newOriginalHashCodes, var$15, $filterImpl_filterImpl_newMaximumIndex, $filterImpl_filterImpl_j, $filterImpl_filterImpl_newDataIndex, - $filterImpl_filterImpl_oldIndex, $filterImpl_filterImpl_newContent_0, $filterImpl_filterImpl_allMap, $filterImpl_filterImpl_minimumIndex, $filterImpl_filterImpl_oldDataPassThrough, $filterImpl_filterImpl_nodeMigrateToDataTargetMap, $filterImpl_filterImpl_nodesToMigrateToData, $filterImpl_filterImpl_nodesToPassThroughMap, $filterImpl_filterImpl_mapOfNewNodes, $filterImpl_filterImpl_newNodes, $filterImpl_filterImpl_newNodeMap, $filterImpl_filterImpl_nodeIndex, $filterImpl_filterImpl_i_0, $filterImpl_filterImpl_oldSubNode, - $filterImpl_filterImpl_newSubNode, $filterImpl_filterImpl_newDataSize, $filterImpl_filterImpl_newContentSize, $filterImpl_filterImpl_maxIndex, $filterImpl_filterImpl_oldDataIndex, $filterImpl_filterImpl_oldNodeIndex, $filterImpl_filterImpl_newNodeIndex, $filterImpl_filterImpl_node; - $filterNot_this = sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this); - $filterNot_pred = sci_HashMap$HashKeySet$filterNot$lambda$_5_0__init_0($pred); - if ($filterNot_this === null) - $rt_throw(null); - $filterImpl_newRootNode = sci_HashMap_rootNode($filterNot_this); - if ($filterImpl_newRootNode === null) - $rt_throw(null); - if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) { - if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode) == 1) { - if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, 0)))) == 1) { - sci_MapNode$_$callClinit(); - $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); - } - } else if (!sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) { - $filterImpl_filterImpl_i = jl_Integer_numberOfTrailingZeros(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)); - $filterImpl_filterImpl_maximumIndex = 32 - jl_Integer_numberOfLeadingZeros(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) | 0; - $filterImpl_filterImpl_newDataMap = 0; - $filterImpl_filterImpl_newCachedHashCode = 0; - $filterImpl_filterImpl_dataIndex = 0; - while ($filterImpl_filterImpl_i < $filterImpl_filterImpl_maximumIndex) { - $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_i; - if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { - if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, $filterImpl_filterImpl_dataIndex)))) == 1 ? 0 : 1) { - $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; - $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + sc_Hashing$_improve(sc_Hashing$_MODULE$, (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_dataIndex]) | 0; - } - $filterImpl_filterImpl_dataIndex = $filterImpl_filterImpl_dataIndex + 1 | 0; - } - $filterImpl_filterImpl_i = $filterImpl_filterImpl_i + 1 | 0; - } - if (!$filterImpl_filterImpl_newDataMap) { - sci_MapNode$_$callClinit(); - $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); - } else if ($filterImpl_filterImpl_newDataMap != sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { - $filterImpl_filterImpl_newSize = jl_Integer_bitCount($filterImpl_filterImpl_newDataMap); - $filterImpl_filterImpl_newContent = $rt_createArray(jl_Object, $filterImpl_filterImpl_newSize * 2 | 0); - $filterImpl_filterImpl_newOriginalHashes = $filterImpl_filterImpl_newContent.data; - $filterImpl_filterImpl_newOriginalHashCodes = $rt_createIntArray($filterImpl_filterImpl_newSize); - var$15 = $filterImpl_filterImpl_newOriginalHashCodes.data; - $filterImpl_filterImpl_newMaximumIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_newDataMap) | 0; - $filterImpl_filterImpl_j = jl_Integer_numberOfTrailingZeros($filterImpl_filterImpl_newDataMap); - $filterImpl_filterImpl_newDataIndex = 0; - while ($filterImpl_filterImpl_j < $filterImpl_filterImpl_newMaximumIndex) { - $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_j; - if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_newDataMap) { - $filterImpl_filterImpl_oldIndex = jl_Integer_bitCount(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode) & ($filterImpl_filterImpl_bitpos - 1 | 0)); - $filterImpl_filterImpl_i = $filterImpl_filterImpl_newDataIndex * 2 | 0; - $filterImpl_filterImpl_newContent_0 = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data; - $filterImpl_filterImpl_maximumIndex = $filterImpl_filterImpl_oldIndex * 2 | 0; - $filterImpl_filterImpl_newOriginalHashes[$filterImpl_filterImpl_i] = $filterImpl_filterImpl_newContent_0[$filterImpl_filterImpl_maximumIndex]; - $filterImpl_filterImpl_newOriginalHashes[$filterImpl_filterImpl_i + 1 | 0] = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data[$filterImpl_filterImpl_maximumIndex + 1 | 0]; - var$15[$filterImpl_filterImpl_newDataIndex] = (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_oldIndex]; - $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; - } - $filterImpl_filterImpl_j = $filterImpl_filterImpl_j + 1 | 0; - } - $filterImpl_newRootNode = sci_BitmapIndexedMapNode__init_($filterImpl_filterImpl_newDataMap, 0, $filterImpl_filterImpl_newContent, $filterImpl_filterImpl_newOriginalHashCodes, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newCachedHashCode); - } - } else { - $filterImpl_filterImpl_allMap = sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode) | sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode); - $filterImpl_filterImpl_minimumIndex = jl_Integer_numberOfTrailingZeros($filterImpl_filterImpl_allMap); - $filterImpl_filterImpl_maximumIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_allMap) | 0; - $filterImpl_filterImpl_oldDataPassThrough = 0; - $filterImpl_filterImpl_nodeMigrateToDataTargetMap = 0; - $filterImpl_filterImpl_nodesToMigrateToData = null; - $filterImpl_filterImpl_nodesToPassThroughMap = 0; - $filterImpl_filterImpl_mapOfNewNodes = 0; - $filterImpl_filterImpl_newNodes = null; - $filterImpl_filterImpl_newDataMap = 0; - $filterImpl_filterImpl_newNodeMap = 0; - $filterImpl_filterImpl_newSize = 0; - $filterImpl_filterImpl_newCachedHashCode = 0; - $filterImpl_filterImpl_dataIndex = 0; - $filterImpl_filterImpl_nodeIndex = 0; - $filterImpl_filterImpl_i_0 = $filterImpl_filterImpl_minimumIndex; - while ($filterImpl_filterImpl_i_0 < $filterImpl_filterImpl_maximumIndex) { - $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_i_0; - if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { - if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, $filterImpl_filterImpl_dataIndex)))) == 1 ? 0 : 1) { - $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; - $filterImpl_filterImpl_oldDataPassThrough = $filterImpl_filterImpl_oldDataPassThrough | $filterImpl_filterImpl_bitpos; - $filterImpl_filterImpl_newSize = $filterImpl_filterImpl_newSize + 1 | 0; - $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + sc_Hashing$_improve(sc_Hashing$_MODULE$, (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_dataIndex]) | 0; - } - $filterImpl_filterImpl_dataIndex = $filterImpl_filterImpl_dataIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) { - $filterImpl_filterImpl_oldSubNode = sci_BitmapIndexedMapNode_getNode($filterImpl_newRootNode, $filterImpl_filterImpl_nodeIndex); - $filterImpl_filterImpl_newSubNode = $filterImpl_filterImpl_oldSubNode.$filterImpl4($filterNot_pred, 1); - $filterImpl_filterImpl_newSize = $filterImpl_filterImpl_newSize + $filterImpl_filterImpl_newSubNode.$size() | 0; - $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + $filterImpl_filterImpl_newSubNode.$cachedJavaKeySetHashCode() | 0; - if ($filterImpl_filterImpl_newSubNode.$size() > 1) { - $filterImpl_filterImpl_newNodeMap = $filterImpl_filterImpl_newNodeMap | $filterImpl_filterImpl_bitpos; - if ($filterImpl_filterImpl_oldSubNode === $filterImpl_filterImpl_newSubNode) - $filterImpl_filterImpl_nodesToPassThroughMap = $filterImpl_filterImpl_nodesToPassThroughMap | $filterImpl_filterImpl_bitpos; - else { - $filterImpl_filterImpl_mapOfNewNodes = $filterImpl_filterImpl_mapOfNewNodes | $filterImpl_filterImpl_bitpos; - if ($filterImpl_filterImpl_newNodes === null) - $filterImpl_filterImpl_newNodes = scm_Queue$_empty(scm_Queue$_MODULE$); - scm_AbstractBuffer_$plus$eq($filterImpl_filterImpl_newNodes, $filterImpl_filterImpl_newSubNode); - } - } else if ($filterImpl_filterImpl_newSubNode.$size() == 1) { - $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; - $filterImpl_filterImpl_nodeMigrateToDataTargetMap = $filterImpl_filterImpl_nodeMigrateToDataTargetMap | $filterImpl_filterImpl_bitpos; - if ($filterImpl_filterImpl_nodesToMigrateToData === null) - $filterImpl_filterImpl_nodesToMigrateToData = sc_IterableFactory_apply$(scm_Queue$_MODULE$, sci_Nil$_MODULE$); - scm_AbstractBuffer_$plus$eq($filterImpl_filterImpl_nodesToMigrateToData, $filterImpl_filterImpl_newSubNode); - } - $filterImpl_filterImpl_nodeIndex = $filterImpl_filterImpl_nodeIndex + 1 | 0; - } - $filterImpl_filterImpl_i_0 = $filterImpl_filterImpl_i_0 + 1 | 0; - } - if (!$filterImpl_filterImpl_newSize) { - sci_MapNode$_$callClinit(); - $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); - } else if ($filterImpl_filterImpl_newSize != sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) { - $filterImpl_filterImpl_newDataSize = jl_Integer_bitCount($filterImpl_filterImpl_newDataMap); - $filterImpl_filterImpl_newContentSize = (2 * $filterImpl_filterImpl_newDataSize | 0) + jl_Integer_bitCount($filterImpl_filterImpl_newNodeMap) | 0; - $filterImpl_filterImpl_newContent_0 = $rt_createArray(jl_Object, $filterImpl_filterImpl_newContentSize); - $filterImpl_filterImpl_newContent = $filterImpl_filterImpl_newContent_0.data; - $filterImpl_filterImpl_newOriginalHashes = $rt_createIntArray($filterImpl_filterImpl_newDataSize); - $filterImpl_filterImpl_newOriginalHashCodes = $filterImpl_filterImpl_newOriginalHashes.data; - $filterImpl_filterImpl_maxIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_newNodeMap) | 0; - $filterImpl_filterImpl_oldDataIndex = 0; - $filterImpl_filterImpl_oldNodeIndex = 0; - $filterImpl_filterImpl_newDataIndex = 0; - $filterImpl_filterImpl_newNodeIndex = 0; - while ($filterImpl_filterImpl_minimumIndex < $filterImpl_filterImpl_maxIndex) { - $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_minimumIndex; - if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_oldDataPassThrough) { - $filterImpl_filterImpl_maximumIndex = $filterImpl_filterImpl_newDataIndex * 2 | 0; - var$15 = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data; - $filterImpl_filterImpl_i = 2 * $filterImpl_filterImpl_oldDataIndex | 0; - $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_maximumIndex] = var$15[$filterImpl_filterImpl_i]; - $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_maximumIndex + 1 | 0] = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data[$filterImpl_filterImpl_i + 1 | 0]; - $filterImpl_filterImpl_newOriginalHashCodes[$filterImpl_filterImpl_newDataIndex] = (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_oldDataIndex]; - $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; - $filterImpl_filterImpl_oldDataIndex = $filterImpl_filterImpl_oldDataIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_nodesToPassThroughMap) { - $filterImpl_filterImpl_newContent[($filterImpl_filterImpl_newContentSize - $filterImpl_filterImpl_newNodeIndex | 0) - 1 | 0] = sci_BitmapIndexedMapNode_getNode($filterImpl_newRootNode, $filterImpl_filterImpl_oldNodeIndex); - $filterImpl_filterImpl_newNodeIndex = $filterImpl_filterImpl_newNodeIndex + 1 | 0; - $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_nodeMigrateToDataTargetMap) { - $filterImpl_filterImpl_node = scm_Queue_dequeue($filterImpl_filterImpl_nodesToMigrateToData); - $filterImpl_filterImpl_i = 2 * $filterImpl_filterImpl_newDataIndex | 0; - $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_i] = $filterImpl_filterImpl_node.$getKey0(0); - $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_i + 1 | 0] = $filterImpl_filterImpl_node.$getValue1(0); - $filterImpl_filterImpl_newOriginalHashCodes[$filterImpl_filterImpl_newDataIndex] = $filterImpl_filterImpl_node.$getHash(0); - $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; - $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_mapOfNewNodes) { - $filterImpl_filterImpl_newContent[($filterImpl_filterImpl_newContentSize - $filterImpl_filterImpl_newNodeIndex | 0) - 1 | 0] = scm_Queue_dequeue($filterImpl_filterImpl_newNodes); - $filterImpl_filterImpl_newNodeIndex = $filterImpl_filterImpl_newNodeIndex + 1 | 0; - $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; - } else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) - $filterImpl_filterImpl_oldDataIndex = $filterImpl_filterImpl_oldDataIndex + 1 | 0; - else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) - $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; - $filterImpl_filterImpl_minimumIndex = $filterImpl_filterImpl_minimumIndex + 1 | 0; - } - $filterImpl_newRootNode = sci_BitmapIndexedMapNode__init_($filterImpl_filterImpl_newDataMap, $filterImpl_filterImpl_newNodeMap, $filterImpl_filterImpl_newContent_0, $filterImpl_filterImpl_newOriginalHashes, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newCachedHashCode); - } - } - } - if ($filterImpl_newRootNode !== sci_HashMap_rootNode($filterNot_this)) { - if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) - $filterNot_this = sci_HashMap__init_($filterImpl_newRootNode); - else { - sci_HashMap$_$callClinit(); - $filterNot_this = sci_HashMap$_empty(sci_HashMap$_MODULE$); - } - } - return sci_HashMap$HashKeySet_newKeySetOrThis($this, $filterNot_this); -}, -sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer = $this => { - return $this.$$outer4; -}, -sci_HashMap$HashKeySet_filterNot = ($this, $pred) => { - return sci_HashMap$HashKeySet_filterNot0($this, $pred); -}, -sci_HashMap$HashKeySet_filter = ($this, $pred) => { - return sci_HashMap$HashKeySet_filter0($this, $pred); -}, -sci_HashMap$HashKeySet_excl0 = ($this, $elem) => { - return sci_HashMap$HashKeySet_excl($this, $elem); -}, -sci_HashMap$HashKeySet_incl0 = ($this, $elem) => { - return sci_HashMap$HashKeySet_incl($this, $elem); -}; -function sci_ChampBaseReverseIterator() { - let a = this; jl_Object.call(a); - a.$currentValueCursor0 = 0; - a.$currentValueNode0 = null; - a.$currentStackLevel0 = 0; - a.$nodeIndex0 = null; - a.$nodeStack = null; -} -let sci_ChampBaseReverseIterator_pushNode = ($this, $node) => { - let var$2; - var$2 = $this.$currentStackLevel0 + 1 | 0; - $this.$currentStackLevel0 = var$2; - $this.$nodeStack.data[var$2] = $node; - $this.$nodeIndex0.data[var$2] = $node.$nodeArity() - 1 | 0; -}, -sci_ChampBaseReverseIterator_searchNextValueNode = $this => { - let var$1, var$2, $nodeCursor, $currNode; - while (true) { - var$1 = $this.$currentStackLevel0; - if (var$1 < 0) - break; - var$2 = $this.$nodeIndex0.data; - $nodeCursor = var$2[var$1]; - var$2[var$1] = $nodeCursor - 1 | 0; - if ($nodeCursor >= 0) { - sci_ChampBaseReverseIterator_pushNode($this, $this.$nodeStack.data[var$1].$getNode0($nodeCursor)); - continue; - } - $currNode = $this.$nodeStack.data[var$1]; - $this.$currentStackLevel0 = var$1 - 1 | 0; - if (!$currNode.$hasPayload()) - continue; - else { - $this.$currentValueNode0 = $currNode; - $this.$currentValueCursor0 = $currNode.$payloadArity() - 1 | 0; - return 1; - } - } - return 0; -}, -sci_ChampBaseReverseIterator_hasNext = $this => { - if ($this.$currentValueCursor0 < 0 && !sci_ChampBaseReverseIterator_searchNextValueNode($this)) - return 0; - return 1; -}; -function sci_MapKeyValueTupleHashIterator() { - let a = this; sci_ChampBaseReverseIterator.call(a); - a.$hash5 = 0; - a.$value37 = null; -} -let sci_MapKeyValueTupleHashIterator_iterator = $this => { - return $this; -}, -sci_MapKeyValueTupleHashIterator_isEmpty = $this => { - return sc_Iterator_isEmpty$($this); -}, -sci_MapKeyValueTupleHashIterator_toString = $this => { - return $rt_s(818); -}, -sci_MapKeyValueTupleHashIterator_foreach = ($this, $f) => { - sc_IterableOnceOps_foreach$($this, $f); -}, -sci_MapKeyValueTupleHashIterator_exists = ($this, $p) => { - return sc_IterableOnceOps_exists$($this, $p); -}, -sci_MapKeyValueTupleHashIterator_find = ($this, $p) => { - return sc_IterableOnceOps_find$($this, $p); -}, -sci_MapKeyValueTupleHashIterator_foldLeft = ($this, $z, $op) => { - return sc_IterableOnceOps_foldLeft$($this, $z, $op); -}, -sci_MapKeyValueTupleHashIterator_nonEmpty = $this => { - return sc_IterableOnceOps_nonEmpty$($this); -}, -sci_MapKeyValueTupleHashIterator_size = $this => { - return sc_IterableOnceOps_size$($this); -}, -sci_MapKeyValueTupleHashIterator_copyToArray1 = ($this, $xs) => { - return sc_IterableOnceOps_copyToArray$($this, $xs); -}, -sci_MapKeyValueTupleHashIterator_copyToArray = ($this, $xs, $start) => { - return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); -}, -sci_MapKeyValueTupleHashIterator_copyToArray0 = ($this, $xs, $start, $len) => { - return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); -}, -sci_MapKeyValueTupleHashIterator_toList = $this => { - return sc_IterableOnceOps_toList$($this); -}, -sci_MapKeyValueTupleHashIterator_toSeq = $this => { - return sc_IterableOnceOps_toSeq$($this); -}, -sci_MapKeyValueTupleHashIterator_toArray = ($this, $evidence$2) => { - return sc_IterableOnceOps_toArray$($this, $evidence$2); -}, -sci_MapKeyValueTupleHashIterator_knownSize = $this => { - return (-1); -}, -sci_MapKeyValueTupleHashIterator_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3_tuple2Hash(suh_MurmurHash3$_MODULE$, $this.$hash5, sr_Statics_anyHash($this.$value37), (-889275714)); -}, -sci_MapKeyValueTupleHashIterator_next = $this => { - let var$1; - if (!sci_ChampBaseReverseIterator_hasNext($this)) { - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - } - $this.$hash5 = $this.$currentValueNode0.$getHash($this.$currentValueCursor0); - $this.$value37 = $this.$currentValueNode0.$getValue1($this.$currentValueCursor0); - $this.$currentValueCursor0 = $this.$currentValueCursor0 - 1 | 0; - return $this; -}; -function oncifp_SemanticTypeCheck$visit$lambda$_11_0() { - let a = this; jl_Object.call(a); - a.$_0279 = null; - a.$_1106 = null; -} -let oncifp_SemanticTypeCheck$visit$lambda$_11_0_apply = (var$0, var$1) => { - return var$1.$apply3(var$0.$_0279, var$0.$_1106); -}; -function jusi_MappingStreamImpl$wrap$lambda$_1_0() { - let a = this; jl_Object.call(a); - a.$_046 = null; - a.$_119 = null; -} -let jusi_MappingStreamImpl$wrap$lambda$_1_0_test = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_046; - return var$0.$_119.$test0(var$2.$mapper0.$apply2(var$1)); -}, -juf_Consumer = $rt_classWithoutFields(0); -function jusi_StreamOverSpliterator$AdapterAction() { - let a = this; jl_Object.call(a); - a.$consumer = null; - a.$wantsMore = 0; -} -let jusi_StreamOverSpliterator$AdapterAction_accept = ($this, $t) => { - $this.$wantsMore = $this.$consumer.$test0($t); -}; -function cnsa_EnrichedContext$errorHandler$lambda$_6_0() { - jl_Object.call(this); - this.$_0105 = null; -} -let cnsa_EnrichedContext$errorHandler$lambda$_6_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0105; - var$3 = new cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_14_0; - var$3.$_0801 = var$2; - var$1.$foreach(var$3); - return sr_BoxedUnit_UNIT; -}, -oncip_AstParserFactory$ = $rt_classWithoutFields(), -oncip_AstParserFactory$_MODULE$ = null, -oncip_AstParserFactory$__clinit_ = () => { - oncip_AstParserFactory$_MODULE$ = new oncip_AstParserFactory$; -}, -onciafn_JavaCCParser$ = $rt_classWithoutFields(), -onciafn_JavaCCParser$_MODULE$ = null, -onciafn_JavaCCParser$_$callClinit = () => { - onciafn_JavaCCParser$_$callClinit = $rt_eraseClinit(onciafn_JavaCCParser$); - onciafn_JavaCCParser$__clinit_(); -}, -onciafn_JavaCCParser$__clinit_ = () => { - let var$1; - var$1 = new onciafn_JavaCCParser$; - onciafn_JavaCCParser$_$callClinit(); - onciafn_JavaCCParser$_MODULE$ = var$1; -}, -onciafn_JavaCCParser$_findMismatchedDelimiters = ($this, $input) => { - let $currentDelimiter, var$3, var$4, var$5, $index, var$7, $index_0; - $currentDelimiter = sr_ObjectRef_create(s_None$_MODULE$); - s_Predef$_$callClinit(); - var$3 = s_LowPriorityImplicits_wrapString(s_Predef$_MODULE$, $input); - var$4 = sci_IndexedSeq_iterableFactory$(var$3); - var$5 = new sc_View$ZipWithIndex; - var$5.$underlying35 = var$3; - var$3 = sc_AbstractIterable_withFilter(sci_IndexedSeq$_from(var$4, var$5), new onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_0); - var$5 = new onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_1; - var$5.$_0812 = $currentDelimiter; - var$5.$_1277 = $input; - sc_IterableOps$WithFilter_foreach(var$3, var$5); - $index = 0; - $input = null; - $currentDelimiter = $currentDelimiter.$elem; - if ($currentDelimiter instanceof s_Some) { - $index = 1; - $input = $currentDelimiter; - var$3 = $input.$value5; - if (var$3 !== null) { - var$7 = var$3.$_1$mcC$sp(); - $index_0 = var$3.$_2$mcI$sp(); - if (47 == var$7) - return s_Some__init_(s_Tuple2__init_($rt_s(3966), jl_Integer_valueOf($index_0))); - } - } - if ($index) { - $input = $input.$value5; - if ($input !== null) { - $index = $input.$_2$mcI$sp(); - return s_Some__init_(s_Tuple2__init_($rt_s(2308), jl_Integer_valueOf($index))); - } - } - if (jl_Object_equals(s_None$_MODULE$, $currentDelimiter)) - return s_None$_MODULE$; - $rt_throw(s_MatchError__init_($currentDelimiter)); -}, -onciafn_JavaCCParser$_updateCurrentDelimiter$1 = ($currentDelimiter$1, $char$1, $index$1) => { - let var$4, var$5; - onciafn_JavaCCParser$_$callClinit(); - a: { - var$4 = $currentDelimiter$1.$elem; - if (jl_Object_equals(s_None$_MODULE$, var$4)) { - var$5 = new s_Some; - var$4 = new s_Tuple2$mcCI$sp; - var$4.$_1$mcC$sp0 = $char$1; - var$4.$_2$mcI$sp0 = $index$1; - s_Tuple2__init_0(var$4, null, null); - s_Some__init_0(var$5, var$4); - } else { - if (var$4 instanceof s_Some) { - var$4 = var$4.$value5; - if (var$4 !== null && $char$1 == var$4.$_1$mcC$sp()) { - var$5 = s_None$_MODULE$; - break a; - } - } - var$5 = $currentDelimiter$1.$elem; - } - } - $currentDelimiter$1.$elem = var$5; -}, -s_Function$ = $rt_classWithoutFields(), -s_Function$_MODULE$ = null, -s_Function$__clinit_ = () => { - s_Function$_MODULE$ = new s_Function$; -}; -function oncir_Deprecations$SemanticallyDeprecatedFeatures$find$lambda$_3_0() { - let a = this; jl_Object.call(a); - a.$_0445 = null; - a.$_1155 = null; -} -let oncifp_AmbiguousAggregationAnalysis$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncifp_AmbiguousAggregationAnalysis$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - if ($rt_isInstance($x1, oncia_ProjectionClause)) { - $x1 = $x1; - if (!($x1.$returnItems()).$includeExisting0) { - $default = new oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0; - $default.$_0857 = $x1; - return $default; - } - } - return s_PartialFunction$_fallback_fn; -}; -function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1() { - sr_AbstractPartialFunction.call(this); - this.$cancellationChecker$1 = null; -} -let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1_applyOrElse = ($this, $x1, $default) => { - let $labelExpression; - if ($x1 instanceof oncie_NodePattern) { - $default = $x1.$labelExpression7; - if ($default instanceof s_Some) { - $labelExpression = $default.$value5; - $x1 = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0; - $default = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1; - $default.$_0296 = $this; - $default.$_1110 = $labelExpression; - $default.$_242 = $x1; - return $default; - } - } - if ($x1 instanceof oncie_RelationshipPattern) { - $default = $x1.$labelExpression6; - if ($default instanceof s_Some) { - $labelExpression = $default.$value5; - $x1 = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2; - $default = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3; - $default.$_0331 = $this; - $default.$_1119 = $labelExpression; - $default.$_244 = $x1; - return $default; - } - } - if (!($x1 instanceof oncil_LabelExpressionPredicate)) - return s_PartialFunction$_fallback_fn; - $labelExpression = $x1.$labelExpression8; - $x1 = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4; - $default = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5; - $default.$_0492 = $this; - $default.$_1172 = $labelExpression; - $default.$_257 = $x1; - return $default; -}; -function sci_HashCollisionMapNode$filterImpl$lambda$_31_0() { - let a = this; jl_Object.call(a); - a.$_0756 = null; - a.$_1257 = 0; - a.$_285 = null; -} -let sci_HashCollisionMapNode$filterImpl$lambda$_31_0__init_0 = (var$0, var$1, var$2, var$3) => { - var$0.$_0756 = var$1; - var$0.$_1257 = var$2; - var$0.$_285 = var$3; -}, -sci_HashCollisionMapNode$filterImpl$lambda$_31_0__init_ = (var_0, var_1, var_2) => { - let var_3 = new sci_HashCollisionMapNode$filterImpl$lambda$_31_0(); - sci_HashCollisionMapNode$filterImpl$lambda$_31_0__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -sci_HashCollisionMapNode$filterImpl$lambda$_31_0_apply = (var$0, var$1) => { - return sci_Vector_$anonfun$filterImpl$1(var$0.$_0756, var$0.$_1257, var$0.$_285, var$1); -}; -function sci_HashCollisionMapNode$filterImpl$lambda$_31_1() { - let a = this; jl_Object.call(a); - a.$_0281 = null; - a.$_1107 = 0; - a.$_240 = null; -} -let sci_HashCollisionMapNode$filterImpl$lambda$_31_1__init_ = (var$0, var$1, var$2, var$3) => { - var$0.$_0281 = var$1; - var$0.$_1107 = var$2; - var$0.$_240 = var$3; -}, -sci_HashCollisionMapNode$filterImpl$lambda$_31_1__init_0 = (var_0, var_1, var_2) => { - let var_3 = new sci_HashCollisionMapNode$filterImpl$lambda$_31_1(); - sci_HashCollisionMapNode$filterImpl$lambda$_31_1__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -sci_HashCollisionMapNode$filterImpl$lambda$_31_1_apply = (var$0, var$1) => { - return sci_Vector_$anonfun$filterImpl$2(var$0.$_0281, var$0.$_1107, var$0.$_240, var$1); -}, -ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0 = $rt_classWithoutFields(), -ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0_apply = (var$0, var$1) => { - return var$1.$name6; -}, -onciu_CypherExceptionFactory = $rt_classWithoutFields(0); -function onciu_OpenCypherExceptionFactory() { - jl_Object.call(this); - this.$preParserOffset = null; -} -let onciu_OpenCypherExceptionFactory_productPrefix = $this => { - return $rt_s(3967); -}, -onciu_OpenCypherExceptionFactory_productArity = $this => { - return 1; -}, -onciu_OpenCypherExceptionFactory_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$preParserOffset; - default: - } - return sr_Statics_ioobe($x$1); -}, -onciu_OpenCypherExceptionFactory_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_OpenCypherExceptionFactory_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_OpenCypherExceptionFactory_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_OpenCypherExceptionFactory_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_OpenCypherExceptionFactory) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$preParserOffset; - $x$1 = $x$1.$preParserOffset; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof onciu_OpenCypherExceptionFactory)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -onciu_OpenCypherExceptionFactory_syntaxException = ($this, $message, $pos) => { - let var$3; - $pos = $pos.$withOffset($this.$preParserOffset); - var$3 = new onciu_OpenCypherExceptionFactory$SyntaxException; - var$3.$message1 = $message; - var$3.$pos8 = $pos; - $pos = null; - var$3.$message2 = $message; - jl_Throwable__init_1(var$3, $message, $pos); - return var$3; -}; -function oncirr_normalizeWithAndReturnClauses() { - let a = this; jl_Object.call(a); - a.$cypherExceptionFactory0 = null; - a.$rewriteProjectionsRecursively = null; -} -let oncirr_normalizeWithAndReturnClauses_toString = $this => { - return $rt_s(37); -}, -oncirr_normalizeWithAndReturnClauses_apply = ($this, $that) => { - let var$2, $returns, $yields, $x$1, $x$5, $x$10, $x$14, $x$18; - if ($rt_isInstance($that, oncia_Query)) - return oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery($this, $that); - if ($that instanceof oncia_ShowPrivileges) { - var$2 = $that; - $returns = oncia_ShowPrivileges_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $x$1 = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($x$1, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0__init_0($this))))); - return oncia_ShowPrivileges_withGraph(oncia_ShowPrivileges_copy(var$2, oncia_ShowPrivileges_copy$default$1(var$2), $x$1, oncia_ShowPrivileges_copy$default$3(var$2), oncia_ShowPrivileges_position(var$2)), oncia_ShowPrivileges_useGraph(var$2)); - } - } - } - } - if ($that instanceof oncia_ShowPrivilegeCommands) { - var$2 = $that; - $returns = oncia_ShowPrivilegeCommands_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $x$5 = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($x$5, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1__init_($this))))); - return oncia_ShowPrivilegeCommands_withGraph(oncia_ShowPrivilegeCommands_copy(var$2, oncia_ShowPrivilegeCommands_copy$default$1(var$2), oncia_ShowPrivilegeCommands_copy$default$2(var$2), $x$5, oncia_ShowPrivilegeCommands_copy$default$4(var$2), oncia_ShowPrivilegeCommands_position(var$2)), oncia_ShowPrivilegeCommands_useGraph(var$2)); - } - } - } - } - if ($that instanceof oncia_ShowSupportedPrivilegeCommand) { - var$2 = $that; - $returns = oncia_ShowSupportedPrivilegeCommand_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $that = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($that, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2__init_($this))))); - return oncia_ShowSupportedPrivilegeCommand_withGraph(oncia_ShowSupportedPrivilegeCommand_copy(var$2, $that, oncia_ShowSupportedPrivilegeCommand_copy$default$2(var$2), oncia_ShowSupportedPrivilegeCommand_position(var$2)), oncia_ShowSupportedPrivilegeCommand_useGraph(var$2)); - } - } - } - } - if ($that instanceof oncia_ShowDatabase) { - var$2 = $that; - $returns = oncia_ShowDatabase_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $x$10 = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($x$10, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3__init_($this))))); - return oncia_ShowDatabase_withGraph(oncia_ShowDatabase_copy(var$2, oncia_ShowDatabase_copy$default$1(var$2), $x$10, oncia_ShowDatabase_copy$default$3(var$2), oncia_ShowDatabase_position(var$2)), oncia_ShowDatabase_useGraph(var$2)); - } - } - } - } - if ($that instanceof oncia_ShowAliases) { - var$2 = $that; - $returns = oncia_ShowAliases_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $x$14 = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($x$14, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4__init_0($this))))); - return oncia_ShowAliases_withGraph(oncia_ShowAliases_copy(var$2, oncia_ShowAliases_copy$default$1(var$2), $x$14, oncia_ShowAliases_copy$default$3(var$2), oncia_ShowAliases_position(var$2)), oncia_ShowAliases_useGraph(var$2)); - } - } - } - } - if ($that instanceof oncia_ShowCurrentUser) { - var$2 = $that; - $returns = oncia_ShowCurrentUser_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $that = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($that, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5__init_($this))))); - return oncia_ShowCurrentUser_withGraph(oncia_ShowCurrentUser_copy(var$2, $that, oncia_ShowCurrentUser_copy$default$2(var$2), oncia_ShowCurrentUser_position(var$2)), oncia_ShowCurrentUser_useGraph(var$2)); - } - } - } - } - if ($that instanceof oncia_ShowUsers) { - var$2 = $that; - $returns = oncia_ShowUsers_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $that = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($that, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6__init_0($this))))); - return oncia_ShowUsers_withGraph(oncia_ShowUsers_copy(var$2, $that, oncia_ShowUsers_copy$default$2(var$2), oncia_ShowUsers_copy$default$3(var$2), oncia_ShowUsers_position(var$2)), oncia_ShowUsers_useGraph(var$2)); - } - } - } - } - if ($that instanceof oncia_ShowRoles) { - var$2 = $that; - $returns = oncia_ShowRoles_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $x$18 = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($x$18, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7__init_($this))))); - return oncia_ShowRoles_withGraph(oncia_ShowRoles_copy(var$2, oncia_ShowRoles_copy$default$1(var$2), oncia_ShowRoles_copy$default$2(var$2), $x$18, oncia_ShowRoles_copy$default$4(var$2), oncia_ShowRoles_position(var$2)), oncia_ShowRoles_useGraph(var$2)); - } - } - } - } - if ($that instanceof oncia_ShowServers) { - var$2 = $that; - $returns = oncia_ShowServers_yieldOrWhere(var$2); - if ($returns instanceof s_Some) { - $returns = s_Some_value($returns); - if ($returns instanceof su_Left) { - $returns = su_Left_value($returns); - if ($returns !== null) { - $yields = $returns.$_1(); - $returns = $returns.$_2(); - $that = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($that, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8__init_($this))))); - return oncia_ShowServers_withGraph(oncia_ShowServers_copy(var$2, $that, oncia_ShowServers_copy$default$2(var$2), oncia_ShowServers_position(var$2)), oncia_ShowServers_useGraph(var$2)); - } - } - } - } - return $that; -}, -oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery = ($this, $query) => { - let $lhs, $rhs; - if ($query instanceof oncia_SingleQuery) - return oncirr_normalizeWithAndReturnClauses_rewriteTopLevelSingleQuery($this, $query); - if ($query instanceof oncia_UnionAll) { - $query = $query; - $lhs = $query.$lhs5; - $rhs = $query.$rhs5; - return oncia_UnionAll_copy($query, oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery($this, $lhs), oncirr_normalizeWithAndReturnClauses_rewriteTopLevelSingleQuery($this, $rhs), $query.$differentReturnOrderAllowed0, $query.$position112); - } - if (!($query instanceof oncia_UnionDistinct)) { - if (!$rt_isInstance($query, oncia_ProjectingUnion)) - $rt_throw(s_MatchError__init_($query)); - $query = new jl_IllegalStateException; - jl_Throwable__init_0($query, $rt_s(3968)); - $rt_throw($query); - } - $query = $query; - $lhs = $query.$lhs6; - $rhs = $query.$rhs6; - return oncia_UnionDistinct_copy($query, oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery($this, $lhs), oncirr_normalizeWithAndReturnClauses_rewriteTopLevelSingleQuery($this, $rhs), $query.$differentReturnOrderAllowed1, $query.$position90); -}, -oncirr_normalizeWithAndReturnClauses_rewriteTopLevelSingleQuery = ($this, $singleQuery) => { - let var$2, $newClauses; - var$2 = $singleQuery.$clauses0; - $newClauses = new oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0; - $newClauses.$_0282 = $this; - $singleQuery = oncia_SingleQuery_copy($singleQuery, var$2.$map($newClauses), $singleQuery.$position12); - return $this.$rewriteProjectionsRecursively.$apply2($singleQuery); -}, -oncirr_normalizeWithAndReturnClauses_addAliasesToReturn = ($this, $r) => { - let $x$1; - $x$1 = oncirr_normalizeWithAndReturnClauses_aliasUnaliasedReturnItems($this, $r.$returnItems2); - return oncia_Return_copy($r, $r.$distinct1, $x$1, $r.$orderBy2, $r.$skip3, $r.$limit3, $r.$excludedNames, $r.$addedInRewrite, $r.$position29); -}, -oncirr_normalizeWithAndReturnClauses_addAliasesToYield = ($this, $y) => { - return oncia_Yield_copy($y, oncirr_normalizeWithAndReturnClauses_aliasUnaliasedReturnItems($this, $y.$returnItems3), $y.$orderBy3, $y.$skip4, $y.$limit4, $y.$where3, $y.$position21); -}, -oncirr_normalizeWithAndReturnClauses_aliasUnaliasedReturnItems = ($this, $ri) => { - let $aliasedReturnItems; - $aliasedReturnItems = $ri.$items0.$map(new oncirr_normalizeWithAndReturnClauses$aliasUnaliasedReturnItems$lambda$_39_0); - return oncia_ReturnItems_copy($ri, $ri.$includeExisting0, $aliasedReturnItems, $ri.$defaultOrderOnColumns, $ri.$position19); -}, -oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems = ($this, $ri) => { - let $newItems; - $newItems = $ri.$items0.$map(new oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems$lambda$_40_0); - return oncia_ReturnItems_copy($ri, $ri.$includeExisting0, $newItems, $ri.$defaultOrderOnColumns, $ri.$position19); -}, -oncirr_normalizeWithAndReturnClauses_aliasExpression = ($this, $existingAliases, $expression) => { - let $alias, var$4, $newExpression; - $alias = $existingAliases.$get2($expression); - if ($alias instanceof s_Some) { - $alias = $alias.$value5; - if (!($existingAliases.$valuesIterator()).$contains($expression)) - return oncie_Variable_withPosition(oncie_Variable_copyId($alias), $expression.$position()); - } - onciu_topDown$_$callClinit(); - var$4 = onciu_topDown$_MODULE$; - onciu_Rewriter$_$callClinit(); - $alias = onciu_Rewriter$_MODULE$; - $newExpression = new oncirr_normalizeWithAndReturnClauses$$anonfun$3; - $newExpression.$$outer77 = $this; - $newExpression.$existingAliases$3 = $existingAliases; - return (onciu_topDown$_apply(var$4, onciu_Rewriter$_lift($alias, $newExpression), new oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0, 1, onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2($expression); -}, -oncirr_normalizeWithAndReturnClauses_productPrefix = $this => { - return $rt_s(415); -}, -oncirr_normalizeWithAndReturnClauses_productArity = $this => { - return 1; -}, -oncirr_normalizeWithAndReturnClauses_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$cypherExceptionFactory0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncirr_normalizeWithAndReturnClauses_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncirr_normalizeWithAndReturnClauses_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncirr_normalizeWithAndReturnClauses_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncirr_normalizeWithAndReturnClauses) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$cypherExceptionFactory0; - $x$1 = $x$1.$cypherExceptionFactory0; - if (var$2 !== null) { - if (!onciu_OpenCypherExceptionFactory_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncirr_normalizeWithAndReturnClauses)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncirr_rewriteShortestPathWithFixedLengthRel$ = $rt_classWithoutFields(), -oncirr_rewriteShortestPathWithFixedLengthRel$_MODULE$ = null, -oncirr_rewriteShortestPathWithFixedLengthRel$_instance = null, -oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit = () => { - oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit = $rt_eraseClinit(oncirr_rewriteShortestPathWithFixedLengthRel$); - oncirr_rewriteShortestPathWithFixedLengthRel$__clinit_(); -}, -oncirr_rewriteShortestPathWithFixedLengthRel$__clinit_ = () => { - let var$1, var$2; - var$1 = new oncirr_rewriteShortestPathWithFixedLengthRel$; - oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit(); - oncirr_rewriteShortestPathWithFixedLengthRel$_MODULE$ = var$1; - onciu_topDown$_$callClinit(); - var$2 = onciu_topDown$_MODULE$; - onciu_Rewriter$_$callClinit(); - oncirr_rewriteShortestPathWithFixedLengthRel$_instance = onciu_topDown$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_rewriteShortestPathWithFixedLengthRel$$anonfun$1), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); -}, -oncirr_rewriteShortestPathWithFixedLengthRel$_toString = $this => { - return $rt_s(37); -}, -oncirr_rewriteShortestPathWithFixedLengthRel$_apply = ($this, $v) => { - oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit(); - return onciu_topDown$TopDownRewriter_apply(oncirr_rewriteShortestPathWithFixedLengthRel$_instance, $v); -}; -function ju_HashSet() { - ju_AbstractSet.call(this); - this.$backingMap = null; -} -let ju_HashSet__init_2 = $this => { - ju_HashSet__init_0($this, ju_HashMap__init_()); -}, -ju_HashSet__init_ = () => { - let var_0 = new ju_HashSet(); - ju_HashSet__init_2(var_0); - return var_0; -}, -ju_HashSet__init_1 = ($this, $collection) => { - let $iter; - ju_HashSet__init_0($this, ju_HashMap__init_4(ju_Arrays$ArrayAsList_size($collection) < 6 ? 11 : ju_Arrays$ArrayAsList_size($collection) * 2 | 0)); - $iter = ju_AbstractList_iterator($collection); - while (ju_AbstractList$1_hasNext($iter)) { - ju_HashSet_add($this, ju_AbstractList$1_next($iter)); - } -}, -ju_HashSet__init_3 = var_0 => { - let var_1 = new ju_HashSet(); - ju_HashSet__init_1(var_1, var_0); - return var_1; -}, -ju_HashSet__init_0 = ($this, $backingMap) => { - $this.$backingMap = $backingMap; -}, -ju_HashSet__init_4 = var_0 => { - let var_1 = new ju_HashSet(); - ju_HashSet__init_0(var_1, var_0); - return var_1; -}, -ju_HashSet_add = ($this, $object) => { - return $this.$backingMap.$put($object, $this) !== null ? 0 : 1; -}, -ju_HashSet_contains = ($this, $object) => { - return ju_HashMap_containsKey($this.$backingMap, $object); -}, -ju_HashSet_isEmpty = $this => { - return ju_HashMap_isEmpty($this.$backingMap); -}, -ju_HashSet_iterator = $this => { - return ($this.$backingMap.$keySet1()).$iterator(); -}, -ju_HashSet_remove = ($this, $object) => { - return $this.$backingMap.$remove3($object) === null ? 0 : 1; -}, -ju_HashSet_size = $this => { - return $this.$backingMap.$elementCount; -}; -function sr_LazyRef() { - let a = this; jl_Object.call(a); - a.$_initialized = 0; - a.$_value0 = null; -} -let sr_LazyRef_initialized = $this => { - return $this.$_initialized; -}, -sr_LazyRef_value = $this => { - return $this.$_value0; -}, -sr_LazyRef_initialize = ($this, $value) => { - $this.$_value0 = $value; - $this.$_initialized = 1; - return $value; -}; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer28 = null; - a.$State$module$1 = null; -} -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let $reference; - if ($x1 instanceof oncia_SingleQuery) - return new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0; - if (!($x1 instanceof oncia_UseGraph)) - return s_PartialFunction$_fallback_fn; - $x1 = $x1; - $reference = $x1.$graphReference2; - $default = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1; - $default.$_0197 = $this; - $default.$_176 = $reference; - $default.$_233 = $x1; - return $default; -}; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1() { - let a = this; jl_Object.call(a); - a.$useClausesToRemove = null; - a.$currentWorkGraph = null; - a.$$outer34 = null; -} -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productPrefix = $this => { - return $rt_s(3969); -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productArity = $this => { - return 2; -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$useClausesToRemove; - case 1: - return $this.$currentWorkGraph; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$useClausesToRemove; - var$3 = $x$1.$useClausesToRemove; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$currentWorkGraph; - $x$1 = $x$1.$currentWorkGraph; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_0 = ($this, $$outer, $useClausesToRemove, $currentWorkGraph) => { - $this.$useClausesToRemove = $useClausesToRemove; - $this.$currentWorkGraph = $currentWorkGraph; - if ($$outer === null) - $rt_throw(null); - $this.$$outer34 = $$outer; -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1(); - oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2() { - sr_AbstractPartialFunction.call(this); - this.$useClausesToRemove$1 = null; -} -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2_applyOrElse = ($this, $x2, $default) => { - let $clauses; - if (!($x2 instanceof oncia_SingleQuery)) - return $default.$apply2($x2); - $x2 = $x2; - $clauses = $x2.$clauses0; - $default = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2$applyOrElse$lambda$_0_0; - $default.$_0640 = $this; - return oncia_SingleQuery_copy($x2, $clauses.$filterNot0($default), $x2.$position12); -}, -onciu_Foldable$TreeAny$$reverseTreeChildren$extension$lambda$_2_0 = $rt_classWithoutFields(), -onciu_Foldable$TreeAny$$reverseTreeChildren$extension$lambda$_2_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - onciu_Foldable$TreeAny$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - s_package$_$callClinit(); - s_package$_Iterator(s_package$_MODULE$); - return (sr_ScalaRunTime$_genericWrapArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_Object, [var$1, var$2]))).$iterator0(); -}; -function oncir_ValidatingRewriter$$anonfun$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer49 = null; - a.$input$1 = null; -} -let oncir_ValidatingRewriter$$anonfun$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - if (!$rt_isInstance($x, oncir_ValidatingCondition)) - $x = $default.$apply2($x); - else { - $x = $x; - $default = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - $x = s_Predef$ArrowAssoc$_$minus$greater$extension($default, $x.$name(), $x.$apply40($this.$input$1, $this.$$outer49.$cancellationChecker)); - } - return $x; -}, -oncir_ValidatingRewriter$validate$lambda$_35_0 = $rt_classWithoutFields(), -oncir_ValidatingRewriter$validate$lambda$_35_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf((var$1.$_2()).$nonEmpty()); -}, -oncip_AstParserFactory = $rt_classWithoutFields(0), -oncip_Cypher5AstParserFactory$ = $rt_classWithoutFields(), -oncip_Cypher5AstParserFactory$_MODULE$ = null, -oncip_Cypher5AstParserFactory$__clinit_ = () => { - oncip_Cypher5AstParserFactory$_MODULE$ = new oncip_Cypher5AstParserFactory$; -}, -oncip_Cypher5AstParserFactory$_apply = ($this, $query, $cypherExceptionFactory, $notificationLogger) => { - let var$4; - var$4 = new oncipvaf_Cypher5AstParser; - var$4.$query7 = $query; - var$4.$exceptionFactory6 = $cypherExceptionFactory; - var$4.$notificationLogger1 = $notificationLogger; - return var$4; -}, -oncip_Cypher25AstParserFactory$ = $rt_classWithoutFields(), -oncip_Cypher25AstParserFactory$_MODULE$ = null, -oncip_Cypher25AstParserFactory$__clinit_ = () => { - oncip_Cypher25AstParserFactory$_MODULE$ = new oncip_Cypher25AstParserFactory$; -}, -oncip_Cypher25AstParserFactory$_apply = ($this, $query, $cypherExceptionFactory, $notificationLogger) => { - let var$4; - var$4 = new oncipvaf_Cypher25AstParser; - var$4.$query5 = $query; - var$4.$exceptionFactory7 = $cypherExceptionFactory; - var$4.$notificationLogger0 = $notificationLogger; - return var$4; -}, -oncipa_AstParser = $rt_classWithoutFields(0), -oncipa_AstParser_singleStatement = $this => { - let $statements, var$2, var$3; - $statements = $this.$statements(); - if (oncia_Statements_size($statements) == 1) - return oncia_Statements_get($statements, 0); - var$2 = $rt_createArray(jl_Object, 1); - var$2.data[0] = jl_Integer_valueOf(oncia_Statements_size($statements)); - var$3 = jl_String_format($rt_s(3970), var$2); - onciu_InputPosition$_$callClinit(); - $rt_throw($this.$syntaxException(var$3, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$))); -}, -oncipj_CharStream = $rt_classWithoutFields(0); -function oncipj_CypherCharStream() { - let a = this; jl_Object.call(a); - a.$query4 = null; - a.$queryCursor = 0; - a.$queryCursorColumn = 0; - a.$queryCursorLine = 0; - a.$queryCursorIsCR = 0; - a.$queryCursorIsLF = 0; - a.$result5 = null; - a.$resultCursor = 0; - a.$resultHighMark = 0; - a.$lines = null; - a.$columns0 = null; - a.$offsets0 = null; - a.$beginOffset0 = 0; - a.$tabSize = 0; -} -let oncipj_CypherCharStream_END_OF_INPUT = null, -oncipj_CypherCharStream_readChar = $this => { - let var$1, var$2, var$3, var$4, var$5, $$je; - a: { - if (($this.$resultCursor + 1 | 0) == $this.$resultHighMark) { - b: { - var$1 = oncipj_CypherCharStream_nextQueryChar($this); - if (var$1 != 92) - var$2 = var$1; - else { - var$2 = oncipj_CypherCharStream_nextQueryChar($this); - if (var$2 != 117) - oncipj_CypherCharStream_appendToResult($this, var$1); - else { - while (true) { - try { - if (var$2 != 117) - break; - var$2 = oncipj_CypherCharStream_nextQueryChar($this); - continue; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - var$3 = $$je; - break a; - } else { - throw $$e; - } - } - } - try { - var$2 = (oncipj_CypherCharStream_hexval(var$2) << 12 | oncipj_CypherCharStream_hexval(oncipj_CypherCharStream_nextQueryChar($this)) << 8 | oncipj_CypherCharStream_hexval(oncipj_CypherCharStream_nextQueryChar($this)) << 4 | oncipj_CypherCharStream_hexval(oncipj_CypherCharStream_nextQueryChar($this))) & 65535; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - var$3 = $$je; - break a; - } else { - throw $$e; - } - } - } - } - } - oncipj_CypherCharStream_appendToResult($this, var$2); - } - var$2 = $this.$resultCursor + 1 | 0; - $this.$resultCursor = var$2; - return $this.$result5.data[var$2]; - } - var$4 = new oncipc_InvalidUnicodeLiteral; - var$3 = var$3.$getMessage(); - var$2 = $this.$queryCursor; - var$1 = $this.$queryCursorLine; - var$5 = $this.$queryCursorColumn; - jl_Throwable__init_0(var$4, var$3); - var$4.$offset7 = var$2; - var$4.$line9 = var$1; - var$4.$column4 = var$5; - $rt_throw(var$4); -}, -oncipj_CypherCharStream_appendToResult = ($this, $c) => { - let var$2, var$3; - var$2 = $this.$result5.data; - var$3 = $this.$resultHighMark; - var$2[var$3] = $c; - $this.$lines.data[var$3] = $this.$queryCursorLine; - $this.$columns0.data[var$3] = $this.$queryCursorColumn; - $this.$offsets0.data[var$3] = $this.$queryCursor; - $this.$resultHighMark = var$3 + 1 | 0; -}, -oncipj_CypherCharStream_nextQueryChar = $this => { - let $c, var$2, var$3; - if (($this.$queryCursor + 1 | 0) >= $this.$query4.$nativeString.length) - $rt_throw(oncipj_CypherCharStream_END_OF_INPUT); - $c = $this.$queryCursor + 1 | 0; - $this.$queryCursor = $c; - $c = jl_String_charAt($this.$query4, $c); - $this.$queryCursorColumn = $this.$queryCursorColumn + 1 | 0; - if ($this.$queryCursorIsLF) { - $this.$queryCursorIsLF = 0; - $this.$queryCursorColumn = 1; - $this.$queryCursorLine = $this.$queryCursorLine + 1 | 0; - } else if ($this.$queryCursorIsCR) { - $this.$queryCursorIsCR = 0; - if ($c == 10) - $this.$queryCursorIsLF = 1; - else { - $this.$queryCursorColumn = 1; - $this.$queryCursorLine = $this.$queryCursorLine + 1 | 0; - } - } - a: { - switch ($c) { - case 9: - var$2 = $this.$queryCursorColumn - 1 | 0; - $this.$queryCursorColumn = var$2; - var$3 = $this.$tabSize; - $this.$queryCursorColumn = var$2 + (var$3 - (var$2 % var$3 | 0) | 0) | 0; - break a; - case 10: - break; - case 11: - case 12: - break a; - case 13: - $this.$queryCursorIsCR = 1; - break a; - default: - break a; - } - $this.$queryCursorIsLF = 1; - } - return $c; -}, -oncipj_CypherCharStream_backup = ($this, $amount) => { - $this.$resultCursor = $this.$resultCursor - $amount | 0; -}, -oncipj_CypherCharStream_getEndColumn = $this => { - return $this.$columns0.data[$this.$resultCursor]; -}, -oncipj_CypherCharStream_getEndLine = $this => { - return $this.$lines.data[$this.$resultCursor]; -}, -oncipj_CypherCharStream_beginToken = $this => { - let $c; - $c = oncipj_CypherCharStream_readChar($this); - $this.$beginOffset0 = $this.$resultCursor; - return $c; -}, -oncipj_CypherCharStream_getImage = $this => { - return jl_String__init_1($this.$result5, $this.$beginOffset0, oncipj_CypherCharStream_nextOffset($this) - $this.$beginOffset0 | 0); -}, -oncipj_CypherCharStream_nextOffset = $this => { - return $this.$resultCursor + 1 | 0; -}, -oncipj_CypherCharStream_getSuffix = ($this, $len) => { - let $suffix, $endOffset; - $suffix = $rt_createCharArray($len); - $endOffset = oncipj_CypherCharStream_nextOffset($this); - jl_System_fastArraycopy($this.$result5, $endOffset - $len | 0, $suffix, 0, $len); - return $suffix; -}, -oncipj_CypherCharStream_hexval = $c => { - let var$2, var$3, var$4; - a: { - switch ($c) { - case 48: - break; - case 49: - return 1; - case 50: - return 2; - case 51: - return 3; - case 52: - return 4; - case 53: - return 5; - case 54: - return 6; - case 55: - return 7; - case 56: - return 8; - case 57: - return 9; - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - break a; - case 65: - case 97: - return 10; - case 66: - case 98: - return 11; - case 67: - case 99: - return 12; - case 68: - case 100: - return 13; - case 69: - case 101: - return 14; - case 70: - case 102: - return 15; - default: - break a; - } - return 0; - } - var$2 = new ji_IOException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = jl_StringBuilder_append(var$3, $rt_s(3971)); - jl_AbstractStringBuilder_append0(var$4, $c); - jl_StringBuilder_append(var$4, $rt_s(3972)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); -}, -oncipj_CypherCharStream__clinit_ = () => { - let var$1; - var$1 = new ji_IOException; - jl_Throwable__init_0(var$1, $rt_s(3973)); - oncipj_CypherCharStream_END_OF_INPUT = var$1; -}, -oncipcaf_ASTExceptionFactory = $rt_classWithoutFields(0), -oncipcaf_ASTExceptionFactory_relationshipPatternNotAllowed = $type => { - let var$2; - var$2 = $rt_createArray(jl_Object, 1); - var$2.data[0] = $type.$description0; - return jl_String_format($rt_s(3974), var$2); -}, -oncipcaf_ASTExceptionFactory_nodePatternNotAllowed = $type => { - let var$2; - var$2 = $rt_createArray(jl_Object, 1); - var$2.data[0] = $type.$description0; - return jl_String_format($rt_s(3975), var$2); -}, -oncipcaf_ASTExceptionFactory_onlySinglePropertyAllowed = $type => { - let var$2; - var$2 = $rt_createArray(jl_Object, 1); - var$2.data[0] = $type.$description0; - return jl_String_format($rt_s(3976), var$2); -}, -oncipcaf_ASTExceptionFactory_invalidShowFilterType = ($command, $got) => { - let var$3, var$4; - var$3 = $rt_createArray(jl_Object, 2); - var$4 = var$3.data; - var$4[0] = $got.$description6; - var$4[1] = $command; - return jl_String_format($rt_s(3977), var$3); -}, -oncipcaf_ASTExceptionFactory_invalidBriefVerbose = $command => { - let var$2; - var$2 = $rt_createArray(jl_Object, 1); - var$2.data[0] = $command; - return jl_String_format($rt_s(3978), var$2); -}, -oncipcaf_ASTExceptionFactory_checkForInvalidCreateConstraint = ($type, $constraintVersion, $containsOn, $moreThanOneProperty) => { - let $errorMessageOnRequire, $message, var$7; - $errorMessageOnRequire = $rt_s(3979); - $message = null; - var$7 = oncipcaf_ConstraintType_NODE_EXISTS; - if ($type !== var$7 && $type !== oncipcaf_ConstraintType_NODE_IS_NOT_NULL && $type !== oncipcaf_ConstraintType_REL_EXISTS && $type !== oncipcaf_ConstraintType_REL_IS_NOT_NULL) { - if (!($constraintVersion === oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_2 && $containsOn.$value3)) { - $type = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_0; - $errorMessageOnRequire = $constraintVersion === $type && !$containsOn.$value3 ? $rt_s(3980) : $constraintVersion === $type ? $rt_s(3981) : $message; - } - } else if ($moreThanOneProperty.$value3 && !($type !== var$7 && $type !== oncipcaf_ConstraintType_REL_EXISTS)) - $errorMessageOnRequire = oncipcaf_ASTExceptionFactory_onlySinglePropertyAllowed($type); - else if (!($constraintVersion === oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_2 && $containsOn.$value3)) { - $type = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_1; - if ($constraintVersion === $type && !$containsOn.$value3) - $errorMessageOnRequire = $rt_s(3980); - else { - $moreThanOneProperty = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_0; - $errorMessageOnRequire = $constraintVersion === $moreThanOneProperty && !$containsOn.$value3 ? $rt_s(3982) : $constraintVersion === $type ? $rt_s(3981) : $constraintVersion === $moreThanOneProperty ? $rt_s(3983) : $message; - } - } - return $errorMessageOnRequire; -}, -oncipcaf_ASTExceptionFactory_invalidDropConstraint = ($type, $moreThanOneProperty) => { - let var$3, $message; - a: { - oncipcaf_ASTExceptionFactory$1_$callClinit(); - switch (oncipcaf_ASTExceptionFactory$1_$SwitchMap$org$neo4j$cypher$internal$parser$common$ast$factory$ConstraintType.data[$type.$ordinal]) { - case 1: - var$3 = $rt_createArray(jl_Object, 1); - var$3.data[0] = $rt_s(3984); - $message = jl_String_format($rt_s(3985), var$3); - break a; - case 2: - var$3 = $rt_createArray(jl_Object, 1); - var$3.data[0] = $rt_s(3986); - $message = jl_String_format($rt_s(3985), var$3); - break a; - case 3: - if ($moreThanOneProperty.$value3) { - $message = oncipcaf_ASTExceptionFactory_onlySinglePropertyAllowed($type); - break a; - } - var$3 = $rt_createArray(jl_Object, 1); - var$3.data[0] = $rt_s(3987); - $message = jl_String_format($rt_s(3985), var$3); - break a; - case 4: - if ($moreThanOneProperty.$value3) { - $message = oncipcaf_ASTExceptionFactory_onlySinglePropertyAllowed($type); - break a; - } - var$3 = $rt_createArray(jl_Object, 1); - var$3.data[0] = $rt_s(3988); - $message = jl_String_format($rt_s(3985), var$3); - break a; - default: - } - $message = $rt_s(3989); - } - return $message; -}, -oncipcaf_ASTExceptionFactory_invalidDefaultScope = $target => { - return jl_String_format($rt_s(3990), $rt_wrapArray(jl_Object, [$target, $target])); -}, -oncipcaf_ASTExceptionFactory_invalidHintIndexType = $got => { - let var$2, var$3, var$4, var$5, var$6, $HINT_TYPES, var$8, var$9, var$10, var$11, var$12, var$13; - var$2 = jusi_SimpleStreamImpl_map(jusi_SimpleStreamImpl_filter(ju_Arrays_stream(oncipcaf_HintIndexType_values()), new oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_0), new oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_1); - var$3 = jus_Collectors_toList(); - var$4 = new oncipcaf_ASTExceptionFactory$joiningLastDelimiter$lambda$_15_0; - var$4.$_0836 = $rt_s(872); - var$4.$_1287 = $rt_s(45); - var$5 = var$3.$characteristics; - if (var$5 instanceof ju_EnumSet) { - var$6 = new ju_GenericEnumSet; - $HINT_TYPES = var$5.$cls; - var$8 = var$5.$bits0.$clone0(); - var$6.$cls = $HINT_TYPES; - var$6.$bits0 = var$8; - } else { - var$9 = new ju_GenericEnumSet$1; - var$9.$this$01 = var$5; - var$9.$index4 = ju_GenericEnumSet$1_find(var$9); - var$9.$indexToRemove = (-1); - if (!ju_GenericEnumSet$1_hasNext(var$9)) { - $got = new jl_IllegalArgumentException; - jl_Throwable__init_($got); - $rt_throw($got); - } - $HINT_TYPES = ju_GenericEnumSet$1_next(var$9); - var$6 = ju_EnumSet_noneOf(jl_Enum_getDeclaringClass($HINT_TYPES)); - ju_GenericEnumSet_add(var$6, $HINT_TYPES); - while (ju_GenericEnumSet$1_hasNext(var$9)) { - ju_GenericEnumSet_add(var$6, ju_GenericEnumSet$1_next(var$9)); - } - } - $HINT_TYPES = jus_Collector$Characteristics_IDENTITY_FINISH; - if (jl_Class_isInstance(var$6.$cls, $HINT_TYPES)) { - var$10 = $HINT_TYPES.$ordinal; - var$11 = var$10 / 32 | 0; - var$12 = 1 << (var$10 % 32 | 0); - var$8 = var$6.$bits0.data; - if (var$8[var$11] & var$12) - var$8[var$11] = var$8[var$11] & (var$12 ^ (-1)); - } - $HINT_TYPES = jusi_SimpleStreamImpl_collect(var$2, jus_CollectorImpl__init_(var$3.$supplier, var$3.$accumulator1, var$3.$combiner, juf_Function_andThen(var$3.$finisher, var$4), var$6)); - if ($got !== oncipcaf_HintIndexType_BTREE) - return jl_String_format($rt_s(3991), $rt_wrapArray(jl_Object, [$got.$name6, $HINT_TYPES])); - var$8 = $rt_createArray(jl_Object, 2); - var$13 = var$8.data; - var$13[0] = $got.$name6; - var$13[1] = $HINT_TYPES; - return jl_String_format($rt_s(3992), var$8); -}; -function onciafn_Neo4jASTExceptionFactory() { - jl_Object.call(this); - this.$inner5 = null; -} -let onciafn_Neo4jASTExceptionFactory_syntaxException0 = ($this, $got, $expected, $source, $offset, $line, $column) => { - let $exp, $message; - $exp = sc_IterableOnceOps_toSeq$(scc_AsScalaConverters_asScala$($this, $expected)); - $expected = scm_StringBuilder_append(scm_StringBuilder_append(scm_StringBuilder_append(scm_StringBuilder__init_2(jl_StringBuilder__init_0($rt_s(3971))), $got), $rt_s(3993)), $rt_s(3994)); - if ($exp.$length() == 1) { - $got = $exp.$head(); - $source = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($source); - jl_AbstractStringBuilder_append0($source, 32); - jl_StringBuilder_append($source, $got); - $got = jl_AbstractStringBuilder_toString($source); - } else if ($exp.$length() >= 5) { - $exp = sc_AbstractIterable_mkString($exp.$map(new onciafn_Neo4jASTExceptionFactory$syntaxException$lambda$_10_0), $rt_s(93)); - $source = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($source); - jl_StringBuilder_append(jl_StringBuilder_append($source, $rt_s(93)), $exp); - $got = jl_AbstractStringBuilder_toString($source); - } else { - $got = sc_AbstractIterable_mkString($exp.$init1(), $rt_s(45)); - $source = $exp.$last(); - $exp = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($exp); - jl_AbstractStringBuilder_append0($exp, 32); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($exp, $got), $rt_s(872)), $source); - $got = jl_AbstractStringBuilder_toString($exp); - } - $message = scm_StringBuilder_result(scm_StringBuilder_append($expected, $got)); - $got = $this.$inner5; - onciu_InputPosition$_$callClinit(); - return onciu_OpenCypherExceptionFactory_syntaxException($got, $message, onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $offset, $line, $column)); -}, -onciafn_Neo4jASTExceptionFactory_syntaxException = ($this, $source, $offset, $line, $column) => { - let var$5, var$6; - var$5 = $this.$inner5; - var$6 = $source.$getMessage(); - onciu_InputPosition$_$callClinit(); - return onciu_OpenCypherExceptionFactory_syntaxException(var$5, var$6, onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $offset, $line, $column)); -}, -onciaf_ASTExpressionFactory = $rt_classWithoutFields(0), -onciaf_ASTFactory = $rt_classWithoutFields(0); -function onciafn_Neo4jASTFactory() { - let a = this; jl_Object.call(a); - a.$query8 = null; - a.$astExceptionFactory = null; - a.$logger0 = null; -} -let onciafn_Neo4jASTFactory_unwindClause = ($this, $p, $e, $v) => { - return oncia_Unwind__init_0($e, $v, $p); -}, -onciafn_Neo4jASTFactory_subqueryClause = ($this, $p, $subquery, $inTransactions, $scopeAll, $hasScope, $variables, $optional) => { - let var$8, var$9; - if (!$hasScope) { - var$8 = new oncia_ImportingWithSubqueryCall; - s_Option$_$callClinit(); - oncia_ImportingWithSubqueryCall__init_(var$8, $subquery, s_Option$_apply(s_Option$_MODULE$, $inTransactions), $optional, $p); - return var$8; - } - var$8 = new oncia_ScopeClauseSubqueryCall; - var$9 = sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $variables))); - s_Option$_$callClinit(); - oncia_ScopeClauseSubqueryCall__init_(var$8, $subquery, $scopeAll, var$9, s_Option$_apply(s_Option$_MODULE$, $inTransactions), $optional, $p); - return var$8; -}, -onciafn_Neo4jASTFactory_getPatternElement = ($this, $atoms) => { - let var$2, $factors, $pathElement, $patternElement, $relPattern, $rightNodePattern; - $atoms = scc_AsScalaExtensions$IteratorHasAsScala_asScala(sj_CollectionConverters$_IteratorHasAsScala(sj_CollectionConverters$_MODULE$, ju_AbstractList_iterator($atoms))); - var$2 = new sc_Iterator$$anon$1; - if ($atoms === null) - $rt_throw(null); - var$2.$$outer31 = $atoms; - var$2.$hdDefined = 0; - s_package$_$callClinit(); - $factors = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - while (true) { - if (!sc_Iterator$$anon$1_hasNext(var$2)) { - a: { - if ($factors !== null) { - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $factors); - if (!$factors.$lengthCompare(1)) { - $pathElement = $factors.$apply1(0); - break a; - } - } - $pathElement = oncie_PathConcatenation__init_0($factors, ($factors.$head()).$position()); - } - return $pathElement; - } - $atoms = sc_Iterator$$anon$1_next(var$2); - if (!($atoms instanceof oncie_NodePattern)) { - if ($atoms instanceof oncie_QuantifiedPath) - $factors = $factors.$appended($atoms); - else { - if (!($atoms instanceof oncie_ParenthesizedPath)) - break; - $factors = $factors.$appended($atoms); - } - } else { - $patternElement = $atoms; - while (sc_Iterator$$anon$1_hasNext(var$2)) { - if (!var$2.$hdDefined) { - var$2.$hd0 = sc_Iterator$$anon$1_next(var$2); - var$2.$hdDefined = 1; - } - if (!(var$2.$hd0 instanceof oncie_RelationshipPattern)) - break; - $relPattern = sc_Iterator$$anon$1_next(var$2); - $rightNodePattern = sc_Iterator$$anon$1_next(var$2); - $patternElement = oncie_RelationshipChain__init_($patternElement, $relPattern, $rightNodePattern, $patternElement.$position()); - } - $factors = $factors.$appended($patternElement); - } - } - if (!($atoms instanceof oncie_RelationshipPattern)) - $rt_throw(s_MatchError__init_($atoms)); - $atoms = new jl_IllegalStateException; - jl_Throwable__init_0($atoms, $rt_s(3995)); - $rt_throw($atoms); -}, -onciafn_Neo4jASTFactory_allPathSelector = ($this, $position) => { - return oncie_PatternPart$AllPaths__init_($position); -}, -onciafn_Neo4jASTFactory_defaultCountValue = ($this, $count, $countPosition, $position) => { - if ($count !== null) - return oncie_UnsignedDecimalIntegerLiteral__init_($count, $countPosition); - return oncie_UnsignedDecimalIntegerLiteral__init_($rt_s(414), $position); -}, -onciafn_Neo4jASTFactory_parenthesizedPathPattern = ($this, $p, $internalPattern, $where, $length) => { - let $pathPatternKind, var$6; - if ($rt_isInstance($internalPattern, oncie_NonPrefixedPatternPart)) { - $pathPatternKind = $internalPattern; - if ($length === null) { - $length = new oncie_ParenthesizedPath; - s_Option$_$callClinit(); - oncie_ParenthesizedPath__init_0($length, $pathPatternKind, s_Option$_apply(s_Option$_MODULE$, $where), $p); - return $length; - } - $internalPattern = oncie_QuantifiedPath$_MODULE$; - s_Option$_$callClinit(); - return oncie_QuantifiedPath$_apply($internalPattern, $pathPatternKind, $length, s_Option$_apply(s_Option$_MODULE$, $where), $p); - } - if (!($internalPattern instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_($internalPattern)); - $p = $internalPattern; - $pathPatternKind = $length !== null ? $rt_s(3996) : $rt_s(3997); - $internalPattern = $p.$selector1; - $p = $internalPattern.$position(); - $length = $this.$astExceptionFactory; - $where = new onciafn_Neo4jASTConstructionException; - $internalPattern = $internalPattern.$prettified(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(3998)), $internalPattern), $rt_s(3999)), $pathPatternKind), $rt_s(4000)); - onciafn_Neo4jASTConstructionException__init_($where, jl_AbstractStringBuilder_toString(var$6)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($length, $where, $p.$offset(), $p.$line(), $p.$column())); -}, -onciafn_Neo4jASTFactory_pathSelectorCannotBeUsedInClauseException = ($this, $clauseName, $selector) => { - let $p, var$4, var$5, var$6; - $p = $selector.$position(); - var$4 = $this.$astExceptionFactory; - var$5 = new onciafn_Neo4jASTConstructionException; - var$6 = $selector.$prettified(); - $selector = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($selector); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($selector, $rt_s(3998)), var$6), $rt_s(4001)), $clauseName), $rt_s(4002)); - onciafn_Neo4jASTConstructionException__init_(var$5, jl_AbstractStringBuilder_toString($selector)); - return onciafn_Neo4jASTExceptionFactory_syntaxException(var$4, var$5, $p.$offset(), $p.$line(), $p.$column()); -}, -onciafn_Neo4jASTFactory_transformParameterType = ($this, $t) => { - let var$2, var$3; - if (jl_Enum_equals(oncipcaf_ParameterType_ANY, $t)) { - oncius_package$_$callClinit(); - return oncius_package$_CTAny(oncius_package$_MODULE$); - } - if (jl_Enum_equals(oncipcaf_ParameterType_STRING, $t)) { - oncius_package$_$callClinit(); - return oncius_package$_CTString(oncius_package$_MODULE$); - } - if (jl_Enum_equals(oncipcaf_ParameterType_MAP, $t)) { - oncius_package$_$callClinit(); - return oncius_package$_CTMap(oncius_package$_MODULE$); - } - var$2 = new jl_IllegalArgumentException; - $t = jl_Enum_toString($t); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4003)), $t); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); -}, -onciafn_Neo4jASTFactory_convertSubqueryExpressionToUnifiedExpression = ($this, $finalMatchMode, $patterns, $query, $where) => { - let $patternParts, $patternPos, var$7, var$8, var$9; - if ($query !== null) - return $query; - $query = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $patterns))); - $patterns = new onciafn_Neo4jASTFactory$convertSubqueryExpressionToUnifiedExpression$lambda$_139_0; - $patterns.$_0694 = $this; - $patternParts = sci_List_map($query, $patterns); - $patternPos = oncie_PatternPartWithSelector_position($patternParts.$head()); - if ($finalMatchMode === null) - $finalMatchMode = oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, $patternPos); - var$7 = new oncia_SingleQuery; - $patterns = new sci_$colon$colon; - var$8 = new oncia_Match; - var$9 = oncie_Pattern$ForMatch__init_($patternParts, $patternPos); - s_package$_$callClinit(); - $patternParts = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - s_Option$_$callClinit(); - oncia_Match__init_(var$8, 0, $finalMatchMode, var$9, $patternParts, s_Option$_apply(s_Option$_MODULE$, $where), $patternPos); - sci_$colon$colon__init_0($patterns, var$8, sci_Nil$_MODULE$); - oncia_SingleQuery__init_(var$7, $patterns, $patternPos); - return var$7; -}, -onciafn_Neo4jASTFactory_inputPosition = ($this, $offset, $line, $column) => { - onciu_InputPosition$_$callClinit(); - return onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $offset, $line, $column); -}, -onciafn_Neo4jASTFactory_showConstraintClause0 = ($this, $p, $initialConstraintType, $where, $yieldClause) => { - let $constraintType, $yieldAll, $yieldedItems; - a: { - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_ALL, $initialConstraintType)) { - $constraintType = oncia_AllConstraints$_MODULE$; - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_UNIQUE, $initialConstraintType)) { - $constraintType = oncia_UniqueConstraintsCypher5$_MODULE$; - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_NODE_UNIQUE, $initialConstraintType)) { - $constraintType = oncia_NodeUniqueConstraintsCypher5$_MODULE$; - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_UNIQUE, $initialConstraintType)) { - $constraintType = oncia_RelUniqueConstraintsCypher5$_MODULE$; - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_KEY, $initialConstraintType)) { - $constraintType = oncia_KeyConstraints$_MODULE$; - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_NODE_KEY, $initialConstraintType)) { - $constraintType = oncia_NodeKeyConstraints$_MODULE$; - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_KEY, $initialConstraintType)) { - $constraintType = oncia_RelKeyConstraints$_MODULE$; - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_EXIST, $initialConstraintType)) { - $constraintType = oncia_ExistsConstraints$_cypher5(oncia_ExistsConstraints$_MODULE$); - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_OLD_EXIST, $initialConstraintType)) { - $constraintType = oncia_ExistsConstraints$_cypher5(oncia_ExistsConstraints$_MODULE$); - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_NODE_EXIST, $initialConstraintType)) { - $constraintType = oncia_NodeExistsConstraints$_cypher5(oncia_NodeExistsConstraints$_MODULE$); - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_NODE_OLD_EXIST, $initialConstraintType)) { - $constraintType = oncia_NodeExistsConstraints$_cypher5(oncia_NodeExistsConstraints$_MODULE$); - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST, $initialConstraintType)) { - $constraintType = oncia_RelExistsConstraints$_cypher5(oncia_RelExistsConstraints$_MODULE$); - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_OLD_EXIST, $initialConstraintType)) { - $constraintType = oncia_RelExistsConstraints$_cypher5(oncia_RelExistsConstraints$_MODULE$); - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_PROP_TYPE, $initialConstraintType)) { - $constraintType = oncia_PropTypeConstraints$_MODULE$; - break a; - } - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_NODE_PROP_TYPE, $initialConstraintType)) { - $constraintType = oncia_NodePropTypeConstraints$_MODULE$; - break a; - } - if (!jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_PROP_TYPE, $initialConstraintType)) - $rt_throw(onciafn_Neo4jASTConstructionException__init_0(oncipcaf_ASTExceptionFactory_invalidShowFilterType($rt_s(4004), $initialConstraintType))); - $constraintType = oncia_RelPropTypeConstraints$_MODULE$; - } - $initialConstraintType = onciafn_Neo4jASTFactory_getYieldAllAndYieldItems($this, $yieldClause); - if ($initialConstraintType === null) - $rt_throw(s_MatchError__init_($initialConstraintType)); - $yieldAll = s_Tuple2__1$mcZ$sp($initialConstraintType); - $yieldedItems = $initialConstraintType.$_20; - $initialConstraintType = s_Tuple2__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems); - $yieldAll = s_Tuple2__1$mcZ$sp($initialConstraintType); - $yieldedItems = $initialConstraintType.$_20; - $initialConstraintType = oncia_ShowConstraintsClause$_MODULE$; - s_Option$_$callClinit(); - return oncia_ShowConstraintsClause$_apply($initialConstraintType, $constraintType, s_Option$_apply(s_Option$_MODULE$, $where), $yieldedItems, $yieldAll, $p); -}, -onciafn_Neo4jASTFactory_getYieldAllAndYieldItems = ($this, $yieldClause) => { - let $yieldAll, $yieldedItems; - s_Option$_$callClinit(); - $yieldAll = s_Option_exists(s_Option$_apply(s_Option$_MODULE$, $yieldClause), new onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_0); - $yieldedItems = s_Option_getOrElse(s_Option_map(s_Option$_apply(s_Option$_MODULE$, $yieldClause), new onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_1), new onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_2); - return s_Tuple2__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems); -}, -onciafn_Neo4jASTFactory_createConstraint = ($this, $p, $constraintType, $replace, $ifNotExists, $constraintName, $variable, $label, $javaProperties, $javaPropertyType, $options) => { - let $name, $properties, $scalaPropertyType, $scalaPropertyTypes; - s_Option$_$callClinit(); - $name = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $constraintName), new onciafn_Neo4jASTFactory$createConstraint$lambda$_162_0); - $properties = sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $javaProperties))); - if (jl_Enum_equals(oncipcaf_ConstraintType_NODE_UNIQUE, $constraintType)) { - oncia_CreateConstraint$_$callClinit(); - return oncia_CreateConstraint$_createNodePropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - } - if (jl_Enum_equals(oncipcaf_ConstraintType_REL_UNIQUE, $constraintType)) { - oncia_CreateConstraint$_$callClinit(); - return oncia_CreateConstraint$_createRelationshipPropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - } - if (jl_Enum_equals(oncipcaf_ConstraintType_NODE_KEY, $constraintType)) { - oncia_CreateConstraint$_$callClinit(); - return oncia_CreateConstraint$_createNodeKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), 1, s_None$_MODULE$, $p); - } - if (jl_Enum_equals(oncipcaf_ConstraintType_REL_KEY, $constraintType)) { - oncia_CreateConstraint$_$callClinit(); - return oncia_CreateConstraint$_createRelationshipKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), 1, s_None$_MODULE$, $p); - } - if (jl_Enum_equals(oncipcaf_ConstraintType_NODE_EXISTS, $constraintType) ? 1 : !jl_Enum_equals(oncipcaf_ConstraintType_NODE_IS_NOT_NULL, $constraintType) ? 0 : 1) { - onciafn_Neo4jASTFactory_validateSingleProperty($this, $properties, $constraintType); - oncia_CreateConstraint$_$callClinit(); - return oncia_CreateConstraint$_createNodePropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties.$head(), $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - } - if (jl_Enum_equals(oncipcaf_ConstraintType_REL_EXISTS, $constraintType) ? 1 : !jl_Enum_equals(oncipcaf_ConstraintType_REL_IS_NOT_NULL, $constraintType) ? 0 : 1) { - onciafn_Neo4jASTFactory_validateSingleProperty($this, $properties, $constraintType); - oncia_CreateConstraint$_$callClinit(); - return oncia_CreateConstraint$_createRelationshipPropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties.$head(), $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - } - if (jl_Enum_equals(oncipcaf_ConstraintType_NODE_IS_TYPED, $constraintType)) { - onciafn_Neo4jASTFactory_validateSingleProperty($this, $properties, $constraintType); - $scalaPropertyType = onciafn_Neo4jASTFactory_convertCypherType($this, $javaPropertyType); - oncia_CreateConstraint$_$callClinit(); - return oncia_CreateConstraint$_createNodePropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties.$head(), $scalaPropertyType, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - } - if (!jl_Enum_equals(oncipcaf_ConstraintType_REL_IS_TYPED, $constraintType)) - $rt_throw(s_MatchError__init_($constraintType)); - onciafn_Neo4jASTFactory_validateSingleProperty($this, $properties, $constraintType); - $scalaPropertyTypes = onciafn_Neo4jASTFactory_convertCypherType($this, $javaPropertyType); - oncia_CreateConstraint$_$callClinit(); - return oncia_CreateConstraint$_createRelationshipPropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties.$head(), $scalaPropertyTypes, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); -}, -onciafn_Neo4jASTFactory_validateSingleProperty = ($this, $seq, $constraintType) => { - if ($seq.$length() == 1) - return; - $rt_throw(onciafn_Neo4jASTConstructionException__init_0(oncipcaf_ASTExceptionFactory_onlySinglePropertyAllowed($constraintType))); -}, -onciafn_Neo4jASTFactory_convertCypherType = ($this, $javaType) => { - let $pos, $unionOfTypes, $cypherTypeName; - a: { - s_Predef$_$callClinit(); - $pos = onciafn_Neo4jASTFactory_inputPosition($this, s_Predef$_Integer2int(s_Predef$_MODULE$, oncipcaf_ParserCypherTypeName_getOffset($javaType)), s_Predef$_Integer2int(s_Predef$_MODULE$, oncipcaf_ParserCypherTypeName_getLine($javaType)), s_Predef$_Integer2int(s_Predef$_MODULE$, oncipcaf_ParserCypherTypeName_getColumn($javaType))); - $unionOfTypes = oncipcaf_ParserCypherTypeName_NOTHING; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_NothingType__init_($pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_NullType__init_($pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_BOOLEAN; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_BooleanType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_BOOLEAN_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_BooleanType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_STRING; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_StringType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_STRING_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_StringType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_INTEGER; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_IntegerType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_INTEGER_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_IntegerType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_FLOAT; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_FloatType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_FLOAT_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_FloatType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_DATE; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_DateType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_DATE_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_DateType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_LOCAL_TIME; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_LocalTimeType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_LOCAL_TIME_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_LocalTimeType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_ZONED_TIME; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_ZonedTimeType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_ZONED_TIME_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_ZonedTimeType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_LOCAL_DATETIME; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_LocalDateTimeType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_LOCAL_DATETIME_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_LocalDateTimeType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_ZONED_DATETIME; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_ZonedDateTimeType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_ZONED_DATETIME_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_ZonedDateTimeType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_DURATION; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_DurationType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_DURATION_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_DurationType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_POINT; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_PointType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_POINT_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_PointType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_NODE; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_NodeType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_NODE_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_NodeType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_RELATIONSHIP; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_RelationshipType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_RELATIONSHIP_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_RelationshipType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_MAP; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_MapType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_MAP_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_MapType__init_(0, $pos); - break a; - } - if ($javaType instanceof oncipcaf_ParserCypherTypeName$ListParserCypherTypeName) { - $javaType = $javaType; - $cypherTypeName = oncius_ListType__init_(onciafn_Neo4jASTFactory_convertCypherType($this, oncipcaf_ParserCypherTypeName$ListParserCypherTypeName_getInnerType($javaType)), oncipcaf_ParserCypherTypeName$ListParserCypherTypeName_isNullable($javaType), $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_PATH; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_PathType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_PATH_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_PathType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_PROPERTY_VALUE; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_PropertyValueType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_PROPERTY_VALUE_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_PropertyValueType__init_(0, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_ANY; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_AnyType__init_(1, $pos); - break a; - } - $unionOfTypes = oncipcaf_ParserCypherTypeName_ANY_NOT_NULL; - if ($unionOfTypes !== null && jl_Object_equals($unionOfTypes, $javaType)) { - $cypherTypeName = oncius_AnyType__init_(0, $pos); - break a; - } - if (!($javaType instanceof oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName)) { - $pos = new onciafn_Neo4jASTConstructionException; - $unionOfTypes = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($unionOfTypes, $rt_s(4005)), $javaType); - onciafn_Neo4jASTConstructionException__init_($pos, jl_StringBuilder_toString($unionOfTypes)); - $rt_throw($pos); - } - $javaType = $javaType; - $cypherTypeName = oncius_ClosedDynamicUnionType__init_0(sc_AbstractIterable_toSet(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, jus_Stream_toList(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName_getUnionTypes($javaType)), onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0__init_0($this)))))), $pos); - } - return $cypherTypeName.$simplify(); -}, -onciafn_Neo4jASTFactory_convertNormalForm = ($this, $javaType) => { - let var$2, var$3; - if (jl_Enum_equals(oncipcaf_ParserNormalForm_NFC, $javaType)) { - oncie_NFCNormalForm$_$callClinit(); - return oncie_NFCNormalForm$_MODULE$; - } - if (jl_Enum_equals(oncipcaf_ParserNormalForm_NFD, $javaType)) { - oncie_NFDNormalForm$_$callClinit(); - return oncie_NFDNormalForm$_MODULE$; - } - if (jl_Enum_equals(oncipcaf_ParserNormalForm_NFKC, $javaType)) { - oncie_NFKCNormalForm$_$callClinit(); - return oncie_NFKCNormalForm$_MODULE$; - } - if (jl_Enum_equals(oncipcaf_ParserNormalForm_NFKD, $javaType)) { - oncie_NFKDNormalForm$_$callClinit(); - return oncie_NFKDNormalForm$_MODULE$; - } - var$2 = new onciafn_Neo4jASTConstructionException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4006)), $javaType); - onciafn_Neo4jASTConstructionException__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); -}, -onciafn_Neo4jASTFactory_createIndex = ($this, $p, $replace, $ifNotExists, $isNode, $indexName, $variable, $label, $javaProperties, $options, $indexType) => { - let $properties, $name, $t, var$14, var$15; - $properties = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $javaProperties))); - s_Option$_$callClinit(); - $name = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $indexName), new onciafn_Neo4jASTFactory$createIndex$lambda$_168_0); - $t = s_Tuple2__init_($indexType, jl_Boolean_valueOf($isNode)); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_DEFAULT, $indexName) && 1 == $isNode) - return oncia_CreateIndex$_createRangeNodeIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), 1, s_None$_MODULE$, $p); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_DEFAULT, $indexName) && 0 == $isNode) - return oncia_CreateIndex$_createRangeRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), 1, s_None$_MODULE$, $p); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_RANGE, $indexName) && 1 == $isNode) - return oncia_CreateIndex$_createRangeNodeIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), 0, s_None$_MODULE$, $p); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_RANGE, $indexName) && 0 == $isNode) - return oncia_CreateIndex$_createRangeRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), 0, s_None$_MODULE$, $p); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_TEXT, $indexName) && 1 == $isNode) - return oncia_CreateIndex$_createTextNodeIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - $indexName = $t.$_10; - var$14 = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_TEXT, $indexName) && 0 == var$14) - return oncia_CreateIndex$_createTextRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_POINT, $indexName) && 1 == $isNode) - return oncia_CreateIndex$_createPointNodeIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_POINT, $indexName) && 0 == $isNode) - return oncia_CreateIndex$_createPointRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_VECTOR, $indexName) && 1 == $isNode) - return oncia_CreateIndex$_createVectorNodeIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_LabelName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - $indexName = $t.$_10; - $isNode = s_Tuple2__2$mcZ$sp($t); - if (jl_Enum_equals(oncipcaf_CreateIndexTypes_VECTOR, $indexName) && 0 == $isNode) - return oncia_CreateIndex$_createVectorRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, oncie_RelTypeName__init_($label.$string, $label.$pos3), $properties, $name, onciafn_Neo4jASTFactory_ifExistsDo($this, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($this, $options), s_None$_MODULE$, $p); - $t = $t.$_10; - $p = new onciafn_Neo4jASTConstructionException; - var$15 = $rt_createArray(jl_Object, 1); - var$15.data[0] = $t.$description8; - onciafn_Neo4jASTConstructionException__init_($p, jl_String_format($rt_s(4007), var$15)); - $rt_throw($p); -}, -onciafn_Neo4jASTFactory_userPrivilegeScope = ($this, $p, $users) => { - let var$3, var$4; - s_Option$_$callClinit(); - if (!s_Option_isDefined(s_Option$_apply(s_Option$_MODULE$, $users))) - return oncia_ShowUserPrivileges__init_(s_None$_MODULE$, $p); - var$3 = new oncia_ShowUsersPrivileges; - $users = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $users)); - var$4 = new onciafn_Neo4jASTFactory$userPrivilegeScope$lambda$_194_0; - var$4.$_01074 = $this; - oncia_ShowUsersPrivileges__init_0(var$3, (sc_StrictOptimizedIterableOps_map$($users, var$4)).$toList(), $p); - return var$3; -}, -onciafn_Neo4jASTFactory_privilegeAction0 = ($this, $action) => { - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_ALL, $action)) - return oncia_AllDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ACCESS, $action)) - return oncia_AccessDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_START, $action)) - return oncia_StartDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_STOP, $action)) - return oncia_StopDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_INDEX_ALL, $action)) - return oncia_AllIndexActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_INDEX_CREATE, $action)) - return oncia_CreateIndexAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_INDEX_DROP, $action)) - return oncia_DropIndexAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_INDEX_SHOW, $action)) - return oncia_ShowIndexAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_CONSTRAINT_ALL, $action)) - return oncia_AllConstraintActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_CONSTRAINT_CREATE, $action)) - return oncia_CreateConstraintAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_CONSTRAINT_DROP, $action)) - return oncia_DropConstraintAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_CONSTRAINT_SHOW, $action)) - return oncia_ShowConstraintAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_CREATE_TOKEN, $action)) - return oncia_AllTokenActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_CREATE_PROPERTYKEY, $action)) - return oncia_CreatePropertyKeyAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_CREATE_LABEL, $action)) - return oncia_CreateNodeLabelAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_CREATE_RELTYPE, $action)) - return oncia_CreateRelationshipTypeAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_TRANSACTION_ALL, $action)) - return oncia_AllTransactionActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_TRANSACTION_SHOW, $action)) - return oncia_ShowTransactionAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_TRANSACTION_TERMINATE, $action)) - return oncia_TerminateTransactionAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DBMS_ALL, $action)) - return oncia_AllDbmsAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_ALL, $action)) - return oncia_AllUserActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_SHOW, $action)) - return oncia_ShowUserAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_ALTER, $action)) - return oncia_AlterUserAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_CREATE, $action)) - return oncia_CreateUserAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_DROP, $action)) - return oncia_DropUserAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_RENAME, $action)) - return oncia_RenameUserAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_PASSWORD, $action)) - return oncia_SetPasswordsAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_AUTH, $action)) - return oncia_SetAuthAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_STATUS, $action)) - return oncia_SetUserStatusAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_HOME, $action)) - return oncia_SetUserHomeDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_USER_IMPERSONATE, $action)) - return oncia_ImpersonateUserAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ROLE_ALL, $action)) - return oncia_AllRoleActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ROLE_SHOW, $action)) - return oncia_ShowRoleAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ROLE_CREATE, $action)) - return oncia_CreateRoleAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ROLE_DROP, $action)) - return oncia_DropRoleAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ROLE_RENAME, $action)) - return oncia_RenameRoleAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ROLE_ASSIGN, $action)) - return oncia_AssignRoleAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ROLE_REMOVE, $action)) - return oncia_RemoveRoleAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_MANAGEMENT, $action)) - return oncia_AllDatabaseManagementActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_CREATE, $action)) - return oncia_CreateDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_DROP, $action)) - return oncia_DropDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_COMPOSITE_MANAGEMENT, $action)) - return oncia_CompositeDatabaseManagementActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_COMPOSITE_CREATE, $action)) - return oncia_CreateCompositeDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_COMPOSITE_DROP, $action)) - return oncia_DropCompositeDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_DATABASE_ALTER, $action)) - return oncia_AlterDatabaseAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_SET_DATABASE_ACCESS, $action)) - return oncia_SetDatabaseAccessAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ALIAS_MANAGEMENT, $action)) - return oncia_AllAliasManagementActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ALIAS_CREATE, $action)) - return oncia_CreateAliasAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ALIAS_DROP, $action)) - return oncia_DropAliasAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ALIAS_ALTER, $action)) - return oncia_AlterAliasAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_ALIAS_SHOW, $action)) - return oncia_ShowAliasAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_PRIVILEGE_ALL, $action)) - return oncia_AllPrivilegeActions$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_PRIVILEGE_ASSIGN, $action)) - return oncia_AssignPrivilegeAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_PRIVILEGE_REMOVE, $action)) - return oncia_RemovePrivilegeAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_PRIVILEGE_SHOW, $action)) - return oncia_ShowPrivilegeAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_EXECUTE_FUNCTION, $action)) - return oncia_ExecuteFunctionAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_EXECUTE_BOOSTED_FUNCTION, $action)) - return oncia_ExecuteBoostedFunctionAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_EXECUTE_PROCEDURE, $action)) - return oncia_ExecuteProcedureAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_EXECUTE_BOOSTED_PROCEDURE, $action)) - return oncia_ExecuteBoostedProcedureAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_EXECUTE_ADMIN_PROCEDURE, $action)) - return oncia_ExecuteAdminProcedureAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_SERVER_SHOW, $action)) - return oncia_ShowServerAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_SERVER_MANAGEMENT, $action)) - return oncia_ServerManagementAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_SETTING_SHOW, $action)) - return oncia_ShowSettingAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_ALL, $action)) - return oncia_AllGraphAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_WRITE, $action)) - return oncia_WriteAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_CREATE, $action)) - return oncia_CreateElementAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_MERGE, $action)) - return oncia_MergeAdminAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_DELETE, $action)) - return oncia_DeleteElementAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_LABEL_SET, $action)) - return oncia_SetLabelAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_LABEL_REMOVE, $action)) - return oncia_RemoveLabelAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_PROPERTY_SET, $action)) - return oncia_SetPropertyAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_MATCH, $action)) - return oncia_MatchAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_READ, $action)) - return oncia_ReadAction$_MODULE$; - if (jl_Enum_equals(oncipcaf_ActionType_GRAPH_TRAVERSE, $action)) - return oncia_TraverseAction$_MODULE$; - $rt_throw(s_MatchError__init_($action)); -}, -onciafn_Neo4jASTFactory_allQualifier = $this => { - let $list, var$2; - $list = ju_ArrayList__init_(); - var$2 = new oncia_AllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - ju_ArrayList_add($list, var$2); - return $list; -}, -onciafn_Neo4jASTFactory_allDatabasesQualifier = $this => { - let $list, var$2; - $list = ju_ArrayList__init_(); - var$2 = new oncia_AllDatabasesQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllDatabasesQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - ju_ArrayList_add($list, var$2); - return $list; -}, -onciafn_Neo4jASTFactory_userQualifier = ($this, $users) => { - let $list, var$3; - $list = ju_ArrayList__init_(); - var$3 = new onciafn_Neo4jASTFactory$userQualifier$lambda$_218_0; - var$3.$_0363 = $this; - var$3.$_1132 = $list; - ju_ArrayList_forEach($users, var$3); - return $list; -}, -onciafn_Neo4jASTFactory_allUsersQualifier = $this => { - let $list, var$2; - $list = ju_ArrayList__init_(); - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - ju_ArrayList_add($list, var$2); - return $list; -}, -onciafn_Neo4jASTFactory_ifExistsDo = ($this, $replace, $ifNotExists) => { - let var$3, var$4, var$5; - var$3 = s_Tuple2$mcZZ$sp__init_($replace, $ifNotExists); - var$4 = var$3.$_1$mcZ$sp0; - var$5 = var$3.$_2$mcZ$sp0; - $replace = $rt_compare(1, var$4); - if (!$replace && 1 == var$5) { - oncia_IfExistsInvalidSyntax$_$callClinit(); - return oncia_IfExistsInvalidSyntax$_MODULE$; - } - if (!$replace && 0 == var$5) { - oncia_IfExistsReplace$_$callClinit(); - return oncia_IfExistsReplace$_MODULE$; - } - $replace = $rt_compare(0, var$4); - if (!$replace && 1 == var$5) { - oncia_IfExistsDoNothing$_$callClinit(); - return oncia_IfExistsDoNothing$_MODULE$; - } - if (!$replace && 0 == var$5) { - oncia_IfExistsThrowError$_$callClinit(); - return oncia_IfExistsThrowError$_MODULE$; - } - $rt_throw(s_MatchError__init_(var$3)); -}, -onciafn_Neo4jASTFactory_yieldOrWhere = ($this, $yieldExpr, $returnWithoutGraph, $where) => { - let var$4, var$5; - if ($yieldExpr === null) { - if ($where === null) - return s_None$_MODULE$; - $returnWithoutGraph = new s_Some; - s_package$_$callClinit(); - s_Some__init_0($returnWithoutGraph, su_Right$_apply(s_package$_Right(s_package$_MODULE$), $where)); - return $returnWithoutGraph; - } - $where = new s_Some; - s_package$_$callClinit(); - var$4 = s_package$_Left(s_package$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - s_Option$_$callClinit(); - s_Some__init_0($where, su_Left$_apply(var$4, s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, $yieldExpr, s_Option$_apply(s_Option$_MODULE$, $returnWithoutGraph)))); - return $where; -}, -onciafn_Neo4jASTFactory_asBooleanOption = ($this, $bool) => { - if ($bool === null) - return s_None$_MODULE$; - return s_Some__init_(jl_Boolean_valueOf($bool.$value3)); -}, -onciafn_Neo4jASTFactory_asOptionsAst = ($this, $options) => { - let var$2, $map, $param; - var$2 = 0; - $map = null; - s_Option$_$callClinit(); - $options = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $options), new onciafn_Neo4jASTFactory$asOptionsAst$lambda$_252_0); - if ($options instanceof s_Some) { - var$2 = 1; - $map = $options; - $param = $map.$value5; - if ($param instanceof su_Left) { - $map = $param.$value6; - return oncia_OptionsMap__init_(sc_AbstractIterable_toMap(scc_AsScalaExtensions$MapHasAsScala_asScala(sj_CollectionConverters$_MapHasAsScala(sj_CollectionConverters$_MODULE$, $map)), s_$less$colon$less$_singleton)); - } - } - if (var$2) { - $map = $map.$value5; - if ($map instanceof su_Right) - return oncia_OptionsParam__init_($map.$value7); - } - if (!jl_Object_equals(s_None$_MODULE$, $options)) - $rt_throw(s_MatchError__init_($options)); - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; -}, -onciafn_Neo4jASTFactory_asExpressionMapAst = ($this, $driverSettings) => { - let $param, $map; - onciafn_TupleConverter$_$callClinit(); - $driverSettings = onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, $driverSettings)); - if (!($driverSettings instanceof su_Left)) { - if (!($driverSettings instanceof su_Right)) - $rt_throw(s_MatchError__init_($driverSettings)); - $param = $driverSettings.$value7; - s_package$_$callClinit(); - return su_Right$_apply(s_package$_Right(s_package$_MODULE$), $param); - } - $map = $driverSettings.$value6; - s_package$_$callClinit(); - return su_Left$_apply(s_package$_Left(s_package$_MODULE$), sc_AbstractIterable_toMap(scc_AsScalaExtensions$MapHasAsScala_asScala(sj_CollectionConverters$_MapHasAsScala(sj_CollectionConverters$_MODULE$, $map)), s_$less$colon$less$_singleton)); -}, -onciafn_Neo4jASTFactory_pretty = ($this, $ts) => { - return jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream($ts), new onciafn_Neo4jASTFactory$pretty$lambda$_254_0), jus_Collectors_joining($rt_s(41))); -}, -onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression = ($this, $name) => { - let $literal, $param, var$4; - if (!($name instanceof su_Left)) { - if (!($name instanceof su_Right)) - $rt_throw(s_MatchError__init_($name)); - return $name.$value7; - } - $literal = $name.$value6; - $name = new oncie_StringLiteral; - $param = $literal.$string; - var$4 = $literal.$pos3; - oncie_StringLiteral__init_0($name, $param, onciu_InputPosition$Simple_withInputLength(var$4, ($literal.$endPos0.$offset0 - var$4.$offset0 | 0) + 1 | 0)); - return $name; -}, -onciafn_Neo4jASTFactory_nodeType = $this => { - return oncipj_EntityType_NODE; -}, -onciafn_Neo4jASTFactory_addDeprecatedIdentifierUnicodeNotification = ($this, $x$1, $x$2, $x$3) => { - let var$4, var$5; - if ($this.$logger0 !== null) { - if (!sr_BoxesRunTime_equals($x$2, jl_Character_valueOf(133))) { - var$4 = $this.$logger0; - var$5 = new onciu_DeprecatedIdentifierUnicode; - s_Predef$_$callClinit(); - onciu_DeprecatedIdentifierUnicode__init_(var$5, $x$1, sr_BoxesRunTime_unboxToChar($x$2), $x$3); - onciu_RecordingNotificationLogger_log(var$4, var$5); - } else { - var$4 = $this.$logger0; - var$5 = new onciu_DeprecatedIdentifierWhitespaceUnicode; - s_Predef$_$callClinit(); - onciu_DeprecatedIdentifierWhitespaceUnicode__init_(var$5, $x$1, sr_BoxesRunTime_unboxToChar($x$2), $x$3); - onciu_RecordingNotificationLogger_log(var$4, var$5); - } - } -}, -onciafn_Neo4jASTFactory_relationshipType = $this => { - return oncipj_EntityType_RELATIONSHIP; -}, -onciafn_Neo4jASTFactory_labelColonDisjunction = ($this, $x$1, $x$2, $x$3, $x$4) => { - return oncil_LabelExpression$ColonDisjunction__init_0($x$2, $x$3, $x$4, $x$1); -}, -onciafn_Neo4jASTFactory_labelColonConjunction = ($this, $x$1, $x$2, $x$3, $x$4) => { - return oncil_LabelExpression$ColonConjunction__init_0($x$2, $x$3, $x$4, $x$1); -}, -onciafn_Neo4jASTFactory_dynamicLabelLeaf = ($this, $x$1, $x$2, $x$3, $x$4, $x$5) => { - let var$6; - var$6 = $x$2; - if (jl_Enum_equals(oncipj_EntityType_NODE, $x$3)) - $x$3 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelExpression__init_(var$6, $x$4, $x$1), $x$5); - else if (jl_Enum_equals(oncipj_EntityType_NODE_OR_RELATIONSHIP, $x$3)) - $x$3 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression__init_0(var$6, $x$4, $x$1), $x$5); - else { - if (!jl_Enum_equals(oncipj_EntityType_RELATIONSHIP, $x$3)) - $rt_throw(s_MatchError__init_($x$3)); - $x$3 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicRelTypeExpression__init_(var$6, $x$4, $x$1), $x$5); - } - return $x$3; -}, -onciafn_Neo4jASTFactory_labelLeaf = ($this, $x$1, $x$2, $x$3, $x$4) => { - if (jl_Enum_equals(oncipj_EntityType_NODE, $x$3)) - $x$3 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_($x$2, $x$1), $x$4); - else if (jl_Enum_equals(oncipj_EntityType_NODE_OR_RELATIONSHIP, $x$3)) - $x$3 = oncil_LabelExpression$Leaf__init_0(oncie_LabelOrRelTypeName__init_($x$2, $x$1), $x$4); - else { - if (!jl_Enum_equals(oncipj_EntityType_RELATIONSHIP, $x$3)) - $rt_throw(s_MatchError__init_($x$3)); - $x$3 = oncil_LabelExpression$Leaf__init_0(oncie_RelTypeName__init_($x$2, $x$1), $x$4); - } - return $x$3; -}, -onciafn_Neo4jASTFactory_labelWildcard = ($this, $x$1, $x$2) => { - return oncil_LabelExpression$Wildcard__init_0($x$2, $x$1); -}, -onciafn_Neo4jASTFactory_labelNegation = ($this, $x$1, $x$2, $x$3) => { - return oncil_LabelExpression$Negation__init_0($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_labelDisjunction = ($this, $x$1, $x$2, $x$3, $x$4) => { - oncil_LabelExpression$Disjunctions$_$callClinit(); - return oncil_LabelExpression$Disjunctions$_flat(oncil_LabelExpression$Disjunctions$_MODULE$, $x$2, $x$3, $x$1, $x$4); -}, -onciafn_Neo4jASTFactory_labelConjunction = ($this, $x$1, $x$2, $x$3, $x$4) => { - oncil_LabelExpression$Conjunctions$_$callClinit(); - return oncil_LabelExpression$Conjunctions$_flat(oncil_LabelExpression$Conjunctions$_MODULE$, $x$2, $x$3, $x$1, $x$4); -}, -onciafn_Neo4jASTFactory_databaseName0 = ($this, $x$1) => { - return oncia_ParameterName__init_0($x$1, $x$1.$position52); -}, -onciafn_Neo4jASTFactory_databaseName = ($this, $x$1, $x$2) => { - return oncia_NamespacedName$_apply(oncia_NamespacedName$_MODULE$, sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2))), $x$1); -}, -onciafn_Neo4jASTFactory_wait = ($this, $x$1, $x$2) => { - let var$3; - if (!$x$1) { - oncia_NoWait$_$callClinit(); - var$3 = oncia_NoWait$_MODULE$; - } else if (Long_le($x$2, Long_ZERO)) { - oncia_IndefiniteWait$_$callClinit(); - var$3 = oncia_IndefiniteWait$_MODULE$; - } else - var$3 = oncia_TimeoutAfter__init_0($x$2); - return var$3; -}, -onciafn_Neo4jASTFactory_alterDatabase = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8, $x$9) => { - let var$10, var$11; - s_Option$_$callClinit(); - var$10 = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $x$4), new onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_0); - var$11 = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $x$5), new onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_1); - $x$4 = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $x$6), new onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_2); - if ($x$7 === null) { - oncia_NoOptions$_$callClinit(); - $x$5 = oncia_NoOptions$_MODULE$; - } else - $x$5 = oncia_OptionsMap__init_(sc_AbstractIterable_toMap(scc_AsScalaExtensions$MapHasAsScala_asScala(sj_CollectionConverters$_MapHasAsScala(sj_CollectionConverters$_MODULE$, $x$7)), s_$less$colon$less$_singleton)); - if (sj_CollectionConverters$_MODULE$ === null) - $rt_throw(null); - if ($x$8 === null) - $x$6 = null; - else if ($x$8 instanceof scc_JavaCollectionWrappers$MutableSetWrapper) - $x$6 = $x$8.$underlying3(); - else { - $x$6 = new scc_JavaCollectionWrappers$JSetWrapper; - $x$6.$underlying23 = $x$8; - jl_Object__init_($x$6); - } - $x$6 = sc_AbstractIterable_toSet($x$6); - return oncia_AlterDatabase__init_0($x$2, $x$3, var$10, !s_Option_isDefined(var$11) && !s_Option_isDefined($x$4) ? s_None$_MODULE$ : s_Some__init_(oncia_Topology__init_(var$11, $x$4)), $x$5, $x$6, $x$9, $x$1); -}, -onciafn_Neo4jASTFactory_databasePrivilegeScope = ($this, $x$1, $x$2, $x$3) => { - if (jl_Enum_equals(oncipcaf_ScopeType_ALL, $x$3)) - $x$3 = oncia_AllDatabasesScope__init_0($x$1); - else if (jl_Enum_equals(oncipcaf_ScopeType_HOME, $x$3)) - $x$3 = oncia_HomeDatabaseScope__init_0($x$1); - else { - if (!jl_Enum_equals(oncipcaf_ScopeType_NAMED, $x$3)) - $rt_throw(s_MatchError__init_($x$3)); - $x$3 = oncia_NamedDatabasesScope__init_0(sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2))), $x$1); - } - return $x$3; -}, -onciafn_Neo4jASTFactory_graphScope = ($this, $x$1, $x$2, $x$3) => { - if (jl_Enum_equals(oncipcaf_ScopeType_ALL, $x$3)) - $x$3 = oncia_AllGraphsScope__init_0($x$1); - else if (jl_Enum_equals(oncipcaf_ScopeType_HOME, $x$3)) - $x$3 = oncia_HomeGraphScope__init_0($x$1); - else { - if (!jl_Enum_equals(oncipcaf_ScopeType_NAMED, $x$3)) - $rt_throw(s_MatchError__init_($x$3)); - $x$3 = oncia_NamedGraphsScope__init_0(sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2))), $x$1); - } - return $x$3; -}, -onciafn_Neo4jASTFactory_patternQualifier = ($this, $x$1, $x$2, $x$3) => { - let var$4, var$5; - $x$3 = $x$3; - var$4 = new oncia_PatternQualifier; - var$5 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$1))); - s_Option$_$callClinit(); - oncia_PatternQualifier__init_(var$4, var$5, s_Option$_apply(s_Option$_MODULE$, $x$2), $x$3); - return var$4; -}, -onciafn_Neo4jASTFactory_allElementsQualifier = ($this, $x$1) => { - return oncia_ElementsAllQualifier__init_0($x$1); -}, -onciafn_Neo4jASTFactory_elementQualifier = ($this, $x$1, $x$2) => { - return oncia_ElementQualifier__init_0($x$2, $x$1); -}; -let onciafn_Neo4jASTFactory_allRelationshipsQualifier = ($this, $x$1) => { - return oncia_RelationshipAllQualifier__init_0($x$1); -}, -onciafn_Neo4jASTFactory_relationshipQualifier = ($this, $x$1, $x$2) => { - return oncia_RelationshipQualifier__init_0($x$2, $x$1); -}, -onciafn_Neo4jASTFactory_allLabelsQualifier = ($this, $x$1) => { - return oncia_LabelAllQualifier__init_($x$1); -}, -onciafn_Neo4jASTFactory_labelQualifier = ($this, $x$1, $x$2) => { - return oncia_LabelQualifier__init_0($x$2, $x$1); -}, -onciafn_Neo4jASTFactory_privilegeAction = ($this, $x$1) => { - return onciafn_Neo4jASTFactory_privilegeAction0($this, $x$1); -}, -onciafn_Neo4jASTFactory_graphPrivilege = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6) => { - return onciafn_Privilege__init_0(oncia_GraphPrivilege__init_0($x$2, $x$3, $x$1), $x$4, $x$5, $x$6); -}, -onciafn_Neo4jASTFactory_dbmsPrivilege = ($this, $x$1, $x$2, $x$3, $x$4) => { - return onciafn_Privilege__init_0(oncia_DbmsPrivilege__init_($x$2, $x$1), null, $x$3, $x$4); -}, -onciafn_Neo4jASTFactory_databasePrivilege = ($this, $x$1, $x$2, $x$3, $x$4, $x$5) => { - return onciafn_Privilege__init_0(oncia_DatabasePrivilege__init_0($x$2, $x$3, $x$1), null, $x$4, $x$5); -}, -onciafn_Neo4jASTFactory_revokePrivilege = ($this, $x$1, $x$2, $x$3, $x$4, $x$5) => { - let var$6, var$7, var$8, var$9, var$10; - var$6 = s_Tuple2$mcZZ$sp__init_($x$4, $x$5); - var$7 = var$6.$_1$mcZ$sp0; - $x$5 = var$6.$_2$mcZ$sp0; - if (1 == var$7 && 0 == $x$5) { - var$8 = new oncia_RevokePrivilege; - var$9 = $x$3.$privilegeType; - $x$4 = $x$3.$immutable; - s_Option$_$callClinit(); - var$6 = s_Option$_apply(s_Option$_MODULE$, $x$3.$resource1); - var$10 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$3.$qualifier2))); - $x$2 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2)); - $x$3 = new onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_0; - $x$3.$_0621 = $this; - oncia_RevokePrivilege__init_(var$8, var$9, $x$4, var$6, var$10, (sc_StrictOptimizedIterableOps_map$($x$2, $x$3)).$toSeq(), oncia_RevokeGrantType__init_($x$1), $x$1); - } else if (0 == var$7 && 1 == $x$5) { - var$8 = new oncia_RevokePrivilege; - var$9 = $x$3.$privilegeType; - $x$4 = $x$3.$immutable; - s_Option$_$callClinit(); - var$6 = s_Option$_apply(s_Option$_MODULE$, $x$3.$resource1); - var$10 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$3.$qualifier2))); - $x$2 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2)); - $x$3 = new onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_1; - $x$3.$_099 = $this; - oncia_RevokePrivilege__init_(var$8, var$9, $x$4, var$6, var$10, (sc_StrictOptimizedIterableOps_map$($x$2, $x$3)).$toSeq(), oncia_RevokeDenyType__init_($x$1), $x$1); - } else { - var$8 = new oncia_RevokePrivilege; - var$9 = $x$3.$privilegeType; - $x$4 = $x$3.$immutable; - s_Option$_$callClinit(); - var$6 = s_Option$_apply(s_Option$_MODULE$, $x$3.$resource1); - var$10 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$3.$qualifier2))); - $x$2 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2)); - $x$3 = new onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_2; - $x$3.$_0742 = $this; - oncia_RevokePrivilege__init_(var$8, var$9, $x$4, var$6, var$10, (sc_StrictOptimizedIterableOps_map$($x$2, $x$3)).$toSeq(), oncia_RevokeBothType__init_($x$1), $x$1); - } - return var$8; -}, -onciafn_Neo4jASTFactory_grantPrivilege = ($this, $x$1, $x$2, $x$3) => { - let var$4, var$5, var$6, var$7, var$8; - var$4 = new oncia_GrantPrivilege; - var$5 = $x$3.$privilegeType; - var$6 = $x$3.$immutable; - s_Option$_$callClinit(); - var$7 = s_Option$_apply(s_Option$_MODULE$, $x$3.$resource1); - var$8 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$3.$qualifier2))); - $x$2 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2)); - $x$3 = new onciafn_Neo4jASTFactory$grantPrivilege$lambda$_195_0; - $x$3.$_0394 = $this; - oncia_GrantPrivilege__init_0(var$4, var$5, var$6, var$7, var$8, (sc_StrictOptimizedIterableOps_map$($x$2, $x$3)).$toSeq(), $x$1); - return var$4; -}, -onciafn_Neo4jASTFactory_alterUser = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8, $x$9, $x$10) => { - let var$11, var$12; - var$11 = $x$5; - var$12 = s_Tuple2__init_(jl_Boolean_valueOf($x$6), var$11); - if (var$12.$_20 !== null) - $x$5 = s_Some__init_(oncia_SetHomeDatabaseAction__init_(var$11)); - else if (1 != s_Tuple2__1$mcZ$sp(var$12)) - $x$5 = s_None$_MODULE$; - else { - $x$5 = new s_Some; - oncia_RemoveHomeDatabaseAction$_$callClinit(); - s_Some__init_0($x$5, oncia_RemoveHomeDatabaseAction$_MODULE$); - } - var$12 = oncia_UserOptions__init_(onciafn_Neo4jASTFactory_asBooleanOption($this, $x$4), $x$5); - if (ju_AbstractCollection_isEmpty($x$8)) - $x$5 = s_None$_MODULE$; - else { - $x$4 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$8))); - $x$5 = new s_Some; - $x$8 = new oncia_Auth; - oncia_AdministrationCommand$_$callClinit(); - oncia_Auth__init_($x$8, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), $x$4, ($x$4.$head()).$position()); - s_Some__init_0($x$5, $x$8); - } - $x$8 = new oncia_AlterUser; - onciafn_TupleConverter$_$callClinit(); - oncia_AlterUser__init_0($x$8, onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression($this, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, $x$3))), var$12, $x$2, sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$7))), $x$5, oncia_RemoveAuth__init_($x$9, sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, - $x$10)))), $x$1); - return $x$8; -}, -onciafn_Neo4jASTFactory_createConstraint0 = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8, $x$9, $x$10) => { - return onciafn_Neo4jASTFactory_createConstraint($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8, $x$9, $x$10); -}, -onciafn_Neo4jASTFactory_turnYieldToWith = ($this, $x$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = $x$1.$returnItems3; - var$3 = !sc_IterableOnceOps_nonEmpty$(var$2.$items0) ? s_None$_MODULE$ : s_Some__init_((var$2.$items0.$map(new onciafn_Neo4jASTFactory$turnYieldToWith$lambda$_161_0)).$toList()); - oncia_CommandClause$_$callClinit(); - var$4 = oncia_CommandClause$_updateAliasedVariablesFromYieldInOrderByAndWhere(oncia_CommandClause$_MODULE$, $x$1); - if (var$4 === null) - $rt_throw(s_MatchError__init_(var$4)); - var$5 = var$4.$_10; - var$4 = var$4.$_20; - var$6 = s_Tuple2__init_(var$5, var$4); - var$5 = var$6.$_10; - var$6 = var$6.$_20; - var$7 = new oncia_With; - var$8 = oncia_ReturnItems__init_0(1, sci_Nil$_MODULE$, var$3, var$2.$position19); - var$2 = $x$1.$skip4; - var$3 = $x$1.$limit4; - oncia_ParsedAsYield$_$callClinit(); - oncia_With__init_(var$7, 0, var$8, var$5, var$2, var$3, var$6, oncia_ParsedAsYield$_MODULE$, $x$1.$position21); - return var$7; -}, -onciafn_Neo4jASTFactory_showSettingsClause = ($this, $x$1, $x$2, $x$3, $x$4) => { - let var$5, var$6; - onciafn_TupleConverter$_$callClinit(); - $x$2 = su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, $x$2))), new onciafn_Neo4jASTFactory$showSettingsClause$lambda$_159_0); - $x$4 = onciafn_Neo4jASTFactory_getYieldAllAndYieldItems($this, $x$4); - if ($x$4 === null) - $rt_throw(s_MatchError__init_($x$4)); - var$5 = s_Tuple2__1$mcZ$sp($x$4); - $x$4 = $x$4.$_20; - var$6 = s_Tuple2__init_(jl_Boolean_valueOf(var$5), $x$4); - var$5 = s_Tuple2__1$mcZ$sp(var$6); - $x$4 = var$6.$_20; - var$6 = oncia_ShowSettingsClause$_MODULE$; - s_Option$_$callClinit(); - return oncia_ShowSettingsClause$_apply(var$6, $x$2, s_Option$_apply(s_Option$_MODULE$, $x$3), $x$4, var$5, $x$1); -}, -onciafn_Neo4jASTFactory_terminateTransactionsClause = ($this, $x$1, $x$2, $x$3, $x$4) => { - let var$5, var$6, var$7; - onciafn_TupleConverter$_$callClinit(); - $x$2 = su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, $x$2))), new onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_0); - $x$4 = onciafn_Neo4jASTFactory_getYieldAllAndYieldItems($this, $x$4); - if ($x$4 === null) - $rt_throw(s_MatchError__init_($x$4)); - var$5 = s_Tuple2__1$mcZ$sp($x$4); - $x$4 = $x$4.$_20; - var$6 = s_Tuple2__init_(jl_Boolean_valueOf(var$5), $x$4); - var$5 = s_Tuple2__1$mcZ$sp(var$6); - var$6 = var$6.$_20; - var$7 = oncia_TerminateTransactionsClause$_MODULE$; - s_Option$_$callClinit(); - return oncia_TerminateTransactionsClause$_apply(var$7, $x$2, var$6, var$5, s_Option_map(s_Option$_apply(s_Option$_MODULE$, $x$3), new onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_1), $x$1); -}, -onciafn_Neo4jASTFactory_showTransactionsClause = ($this, $x$1, $x$2, $x$3, $x$4) => { - let var$5, var$6, var$7; - onciafn_TupleConverter$_$callClinit(); - $x$2 = su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, $x$2))), new onciafn_Neo4jASTFactory$showTransactionsClause$lambda$_157_0); - $x$4 = onciafn_Neo4jASTFactory_getYieldAllAndYieldItems($this, $x$4); - if ($x$4 === null) - $rt_throw(s_MatchError__init_($x$4)); - var$5 = s_Tuple2__1$mcZ$sp($x$4); - $x$4 = $x$4.$_20; - var$6 = s_Tuple2__init_(jl_Boolean_valueOf(var$5), $x$4); - var$7 = s_Tuple2__1$mcZ$sp(var$6); - $x$4 = var$6.$_20; - var$6 = oncia_ShowTransactionsClause$_MODULE$; - s_Option$_$callClinit(); - return oncia_ShowTransactionsClause$_apply(var$6, $x$2, s_Option$_apply(s_Option$_MODULE$, $x$3), $x$4, var$7, 1, $x$1); -}, -onciafn_Neo4jASTFactory_showFunctionClause = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6) => { - let var$7; - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_ALL, $x$2)) - $x$2 = oncia_AllFunctions$_MODULE$; - else if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_BUILT_IN, $x$2)) - $x$2 = oncia_BuiltInFunctions$_MODULE$; - else { - if (!jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_USER_DEFINED, $x$2)) - $rt_throw(onciafn_Neo4jASTConstructionException__init_0(oncipcaf_ASTExceptionFactory_invalidShowFilterType($rt_s(4008), $x$2))); - $x$2 = oncia_UserDefinedFunctions$_MODULE$; - } - var$7 = $x$4 !== null ? s_Some__init_(oncia_User__init_($x$4)) : !$x$3 ? s_None$_MODULE$ : s_Some__init_(oncia_CurrentUser$_MODULE$); - $x$4 = onciafn_Neo4jASTFactory_getYieldAllAndYieldItems($this, $x$6); - if ($x$4 === null) - $rt_throw(s_MatchError__init_($x$4)); - $x$3 = s_Tuple2__1$mcZ$sp($x$4); - $x$4 = $x$4.$_20; - $x$6 = s_Tuple2__init_(jl_Boolean_valueOf($x$3), $x$4); - $x$3 = s_Tuple2__1$mcZ$sp($x$6); - $x$4 = $x$6.$_20; - $x$6 = oncia_ShowFunctionsClause$_MODULE$; - s_Option$_$callClinit(); - return oncia_ShowFunctionsClause$_apply($x$6, $x$2, var$7, s_Option$_apply(s_Option$_MODULE$, $x$5), $x$4, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_showProcedureClause = ($this, $x$1, $x$2, $x$3, $x$4, $x$5) => { - let var$6, var$7; - var$6 = $x$3 !== null ? s_Some__init_(oncia_User__init_($x$3)) : !$x$2 ? s_None$_MODULE$ : s_Some__init_(oncia_CurrentUser$_MODULE$); - $x$3 = onciafn_Neo4jASTFactory_getYieldAllAndYieldItems($this, $x$5); - if ($x$3 === null) - $rt_throw(s_MatchError__init_($x$3)); - $x$2 = s_Tuple2__1$mcZ$sp($x$3); - $x$3 = $x$3.$_20; - $x$5 = s_Tuple2__init_(jl_Boolean_valueOf($x$2), $x$3); - $x$2 = s_Tuple2__1$mcZ$sp($x$5); - $x$5 = $x$5.$_20; - var$7 = oncia_ShowProceduresClause$_MODULE$; - s_Option$_$callClinit(); - return oncia_ShowProceduresClause$_apply(var$7, var$6, s_Option$_apply(s_Option$_MODULE$, $x$4), $x$5, $x$2, $x$1); -}, -onciafn_Neo4jASTFactory_showConstraintClause = ($this, $x$1, $x$2, $x$3, $x$4) => { - return onciafn_Neo4jASTFactory_showConstraintClause0($this, $x$1, $x$2, $x$3, $x$4); -}, -onciafn_Neo4jASTFactory_showIndexClause = ($this, $x$1, $x$2, $x$3, $x$4) => { - let var$5, var$6; - if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_ALL, $x$2)) - $x$2 = oncia_AllIndexes$_MODULE$; - else if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_RANGE, $x$2)) - $x$2 = oncia_RangeIndexes$_MODULE$; - else if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_FULLTEXT, $x$2)) - $x$2 = oncia_FulltextIndexes$_MODULE$; - else if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_TEXT, $x$2)) - $x$2 = oncia_TextIndexes$_MODULE$; - else if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_POINT, $x$2)) - $x$2 = oncia_PointIndexes$_MODULE$; - else if (jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_VECTOR, $x$2)) - $x$2 = oncia_VectorIndexes$_MODULE$; - else { - if (!jl_Enum_equals(oncipcaf_ShowCommandFilterTypes_LOOKUP, $x$2)) - $rt_throw(onciafn_Neo4jASTConstructionException__init_0(oncipcaf_ASTExceptionFactory_invalidShowFilterType($rt_s(4009), $x$2))); - $x$2 = oncia_LookupIndexes$_MODULE$; - } - $x$4 = onciafn_Neo4jASTFactory_getYieldAllAndYieldItems($this, $x$4); - if ($x$4 === null) - $rt_throw(s_MatchError__init_($x$4)); - var$5 = s_Tuple2__1$mcZ$sp($x$4); - $x$4 = $x$4.$_20; - var$6 = s_Tuple2__init_(jl_Boolean_valueOf(var$5), $x$4); - var$5 = s_Tuple2__1$mcZ$sp(var$6); - $x$4 = var$6.$_20; - var$6 = oncia_ShowIndexesClause$_MODULE$; - s_Option$_$callClinit(); - return oncia_ShowIndexesClause$_apply(var$6, $x$2, s_Option$_apply(s_Option$_MODULE$, $x$3), $x$4, var$5, $x$1); -}, -onciafn_Neo4jASTFactory_useGraph = ($this, $x$1, $x$2) => { - s_Option$_$callClinit(); - return $x$1.$withGraph0(s_Option$_apply(s_Option$_MODULE$, $x$2)); -}, -onciafn_Neo4jASTFactory_casePlaceholder = $this => { - oncie_CaseExpression$Placeholder$_$callClinit(); - return oncie_CaseExpression$Placeholder$_MODULE$; -}, -onciafn_Neo4jASTFactory_caseExpression = ($this, $x$1, $x$2, $x$3, $x$4, $x$5) => { - let var$6, var$7, var$8, var$9, var$10; - $x$2 = $x$2; - var$6 = $x$5; - var$7 = $x$3.$size0; - if (var$7 != $x$4.$size0) { - $x$1 = new onciafn_Neo4jASTConstructionException; - $x$2 = onciafn_Neo4jASTFactory_pretty($this, $x$3); - $x$3 = onciafn_Neo4jASTFactory_pretty($this, $x$4); - $x$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($x$4); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($x$4, $rt_s(4010)), $x$2), $rt_s(4011)), $x$3), 96); - onciafn_Neo4jASTConstructionException__init_($x$1, jl_AbstractStringBuilder_toString($x$4)); - $rt_throw($x$1); - } - var$8 = $rt_createArray(s_Tuple2, var$7); - var$9 = var$8.data; - var$7 = 0; - while (var$7 < $x$3.$size0) { - var$10 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - var$9[var$7] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$10, ju_ArrayList_get($x$3, var$7), ju_ArrayList_get($x$4, var$7)); - var$7 = var$7 + 1 | 0; - } - $x$4 = new oncie_CaseExpression; - s_Option$_$callClinit(); - $x$3 = s_Option$_apply(s_Option$_MODULE$, $x$2); - $x$5 = s_None$_MODULE$; - $x$2 = sc_ArrayOps$_MODULE$; - s_Predef$_$callClinit(); - oncie_CaseExpression__init_($x$4, $x$3, $x$5, sc_ArrayOps$_toIndexedSeq$extension($x$2, var$8), s_Option$_apply(s_Option$_MODULE$, var$6), $x$1); - return $x$4; -}, -onciafn_Neo4jASTFactory_patternExpression = ($this, $x$1, $x$2) => { - let var$3, var$4; - if ($x$2 instanceof oncie_ShortestPathsPatternPart) - var$3 = oncie_ShortestPathExpression__init_0($x$2); - else { - var$3 = new oncie_PatternExpression; - var$4 = oncie_RelationshipsPattern__init_($x$2.$element(), $x$1); - $x$1 = s_None$_MODULE$; - oncie_PatternExpression__init_(var$3, var$4, $x$1, $x$1); - } - return var$3; -}, -onciafn_Neo4jASTFactory_trimFunction = ($this, $x$1, $x$2, $x$3, $x$4) => { - let var$5, var$6, var$7, var$8, var$9, var$10; - $x$3 = $x$3; - $x$4 = $x$4; - if ($x$3 === null) { - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - $x$3 = oncie_FunctionName$_MODULE$; - oncief_Trim$_$callClinit(); - $x$3 = oncie_FunctionName$_apply($x$3, $rt_s(4012), $x$1); - s_package$_$callClinit(); - var$6 = s_package$_IndexedSeq(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($x$2.$description1, onciu_InputPosition$Simple_withInputLength($x$1, 0)), $x$4]); - $x$2 = sc_SeqFactory$Delegate_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, $x$3, 0, $x$2, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, $x$1); - } else { - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$6 = oncie_FunctionName$_MODULE$; - oncief_Trim$_$callClinit(); - var$9 = oncie_FunctionName$_apply(var$6, $rt_s(4012), $x$1); - s_package$_$callClinit(); - var$6 = s_package$_IndexedSeq(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$10 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($x$2.$description1, onciu_InputPosition$Simple_withInputLength($x$1, 0)), $x$3, $x$4]); - $x$2 = sc_SeqFactory$Delegate_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$10)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, var$9, 0, $x$2, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, $x$1); - } - return var$5; -}, -onciafn_Neo4jASTFactory_listLookup = ($this, $x$1, $x$2) => { - $x$1 = $x$1; - $x$2 = $x$2; - return oncie_ContainerIndex__init_($x$1, $x$2, $x$2.$position()); -}, -onciafn_Neo4jASTFactory_isNotNormalized = ($this, $x$1, $x$2, $x$3) => { - return oncia_IsNotNormalized__init_($x$2, onciafn_Neo4jASTFactory_convertNormalForm($this, $x$3), $x$1); -}, -onciafn_Neo4jASTFactory_isNormalized = ($this, $x$1, $x$2, $x$3) => { - return oncia_IsNormalized__init_($x$2, onciafn_Neo4jASTFactory_convertNormalForm($this, $x$3), $x$1); -}, -onciafn_Neo4jASTFactory_isNotTyped = ($this, $x$1, $x$2, $x$3) => { - return oncia_IsNotTyped__init_($x$2, onciafn_Neo4jASTFactory_convertCypherType($this, $x$3), $x$1); -}, -onciafn_Neo4jASTFactory_isTyped = ($this, $x$1, $x$2, $x$3) => { - return oncia_IsTyped__init_($x$2, onciafn_Neo4jASTFactory_convertCypherType($this, $x$3), $x$1); -}, -onciafn_Neo4jASTFactory_isNotNull = ($this, $x$1, $x$2) => { - return oncie_IsNotNull__init_($x$2, $x$1); -}, -onciafn_Neo4jASTFactory_isNull = ($this, $x$1, $x$2) => { - return oncie_IsNull__init_($x$2, $x$1); -}, -onciafn_Neo4jASTFactory_endsWith = ($this, $x$1, $x$2, $x$3) => { - return oncie_EndsWith__init_($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_startsWith = ($this, $x$1, $x$2, $x$3) => { - return oncie_StartsWith__init_($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_regeq = ($this, $x$1, $x$2, $x$3) => { - return oncie_RegexMatch__init_($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_gt = ($this, $x$1, $x$2, $x$3) => { - return oncie_GreaterThan__init_0($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_lt = ($this, $x$1, $x$2, $x$3) => { - return oncie_LessThan__init_0($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_gte = ($this, $x$1, $x$2, $x$3) => { - return oncie_GreaterThanOrEqual__init_0($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_lte = ($this, $x$1, $x$2, $x$3) => { - return oncie_LessThanOrEqual__init_0($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_neq2 = ($this, $x$1, $x$2, $x$3) => { - return oncie_NotEquals__init_0($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_neq = ($this, $x$1, $x$2, $x$3) => { - return oncie_InvalidNotEquals__init_0($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_eq = ($this, $x$1, $x$2, $x$3) => { - return oncie_Equals__init_0($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_listLiteral = ($this, $x$1, $x$2) => { - return oncie_ListLiteral__init_0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2))), $x$1); -}, -onciafn_Neo4jASTFactory_newInfinityLiteral = ($this, $x$1) => { - return oncie_Infinity__init_0($x$1); -}, -onciafn_Neo4jASTFactory_newDecimalInteger = ($this, $x$1, $x$2, $x$3) => { - let var$4, var$5; - if (!$x$3) - var$4 = oncie_SignedDecimalIntegerLiteral__init_0($x$2, $x$1); - else { - var$4 = new oncie_SignedDecimalIntegerLiteral; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_AbstractStringBuilder_append0(var$5, 45); - jl_StringBuilder_append(var$5, $x$2); - oncie_SignedDecimalIntegerLiteral__init_(var$4, jl_AbstractStringBuilder_toString(var$5), $x$1); - } - return var$4; -}, -onciafn_Neo4jASTFactory_newVariable = ($this, $x$1, $x$2) => { - return oncie_Variable__init_($x$2, $x$1); -}, -onciafn_Neo4jASTFactory_pathLength = ($this, $x$1, $x$2, $x$3, $x$4, $x$5) => { - let var$6; - if ($x$4 === null && $x$5 === null) - $x$3 = s_None$_MODULE$; - else { - var$6 = $x$4 !== null && jl_String_equals($x$4, $rt_s(4)) ? s_None$_MODULE$ : s_Some__init_(oncie_UnsignedDecimalIntegerLiteral__init_($x$4, $x$2)); - $x$4 = $x$5 !== null && jl_String_equals($x$5, $rt_s(4)) ? s_None$_MODULE$ : s_Some__init_(oncie_UnsignedDecimalIntegerLiteral__init_($x$5, $x$3)); - $x$3 = new s_Some; - $x$5 = new oncie_Range; - if ($x$2 !== null) - $x$1 = $x$2; - oncie_Range__init_0($x$5, var$6, $x$4, $x$1); - s_Some__init_0($x$3, $x$5); - } - return $x$3; -}, -onciafn_Neo4jASTFactory_relationshipPattern = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8) => { - let var$9, var$10; - $x$8 = $x$8; - if ($x$2 && !$x$3) { - oncie_SemanticDirection$INCOMING$_$callClinit(); - var$9 = oncie_SemanticDirection$INCOMING$_MODULE$; - } else if (!$x$2 && $x$3) { - oncie_SemanticDirection$OUTGOING$_$callClinit(); - var$9 = oncie_SemanticDirection$OUTGOING$_MODULE$; - } else - var$9 = oncie_SemanticDirection$BOTH$_MODULE$; - if ($x$6 === null) - $x$6 = s_None$_MODULE$; - else if (jl_Object_equals(s_None$_MODULE$, $x$6)) - $x$6 = s_Some__init_(s_None$_MODULE$); - else { - if (!($x$6 instanceof s_Some)) - $rt_throw(s_MatchError__init_($x$6)); - var$10 = $x$6.$value5; - $x$6 = s_Some__init_(s_Some__init_(var$10)); - } - var$10 = new oncie_RelationshipPattern; - s_Option$_$callClinit(); - oncie_RelationshipPattern__init_(var$10, s_Option$_apply(s_Option$_MODULE$, $x$4), s_Option$_apply(s_Option$_MODULE$, $x$5), $x$6, s_Option$_apply(s_Option$_MODULE$, $x$7), s_Option$_apply(s_Option$_MODULE$, $x$8), var$9, $x$1); - return var$10; -}, -onciafn_Neo4jASTFactory_nodePattern = ($this, $x$1, $x$2, $x$3, $x$4, $x$5) => { - let var$6, var$7; - var$6 = $x$5; - var$7 = new oncie_NodePattern; - s_Option$_$callClinit(); - oncie_NodePattern__init_(var$7, s_Option$_apply(s_Option$_MODULE$, $x$2), s_Option$_apply(s_Option$_MODULE$, $x$3), s_Option$_apply(s_Option$_MODULE$, $x$4), s_Option$_apply(s_Option$_MODULE$, var$6), $x$1); - return var$7; -}, -onciafn_Neo4jASTFactory_shortestGroupsSelector = ($this, $x$1, $x$2, $x$3) => { - return oncie_PatternPart$ShortestGroups__init_(onciafn_Neo4jASTFactory_defaultCountValue($this, $x$1, $x$2, $x$3), $x$3); -}; -let onciafn_Neo4jASTFactory_allShortestPathSelector = ($this, $x$1) => { - return oncie_PatternPart$AllShortestPaths__init_($x$1); -}, -onciafn_Neo4jASTFactory_anyShortestPathSelector = ($this, $x$1, $x$2, $x$3) => { - return oncie_PatternPart$AnyShortestPath__init_(onciafn_Neo4jASTFactory_defaultCountValue($this, $x$1, $x$2, $x$3), $x$3); -}, -onciafn_Neo4jASTFactory_allPathSelector0 = ($this, $x$1) => { - return onciafn_Neo4jASTFactory_allPathSelector($this, $x$1); -}, -onciafn_Neo4jASTFactory_anyPathSelector = ($this, $x$1, $x$2, $x$3) => { - return oncie_PatternPart$AnyPath__init_(onciafn_Neo4jASTFactory_defaultCountValue($this, $x$1, $x$2, $x$3), $x$3); -}, -onciafn_Neo4jASTFactory_pathPattern = ($this, $x$1) => { - return oncie_PathPatternPart__init_($x$1); -}, -onciafn_Neo4jASTFactory_subqueryInTransactionsConcurrencyParameters = ($this, $x$1, $x$2) => { - $x$2 = $x$2; - return $x$2 === null ? oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_(s_None$_MODULE$, $x$1) : oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_(s_Some__init_($x$2), $x$1); -}, -onciafn_Neo4jASTFactory_removeLabels = ($this, $x$1, $x$2, $x$3, $x$4) => { - return oncia_RemoveLabelItem__init_($x$1, sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2))), new onciafn_Neo4jASTFactory$removeLabels$lambda$_31_0), sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$3))), $x$4, $x$1.$position4); -}, -onciafn_Neo4jASTFactory_setLabels = ($this, $x$1, $x$2, $x$3, $x$4) => { - return oncia_SetLabelItem__init_($x$1, sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2))), new onciafn_Neo4jASTFactory$setLabels$lambda$_27_0), sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$3))), $x$4, $x$1.$position4); -}, -onciafn_Neo4jASTFactory_newReturnItem = ($this, $x$1, $x$2, $x$3, $x$4) => { - return oncia_UnaliasedReturnItem__init_($x$2, jl_String_substring($this.$query8, $x$3, $x$4 + 1 | 0), $x$1); -}, -onciafn_Neo4jASTFactory_newReturnItem0 = ($this, $x$1, $x$2, $x$3) => { - return oncia_AliasedReturnItem__init_($x$2, $x$3, $x$1); -}, -onciafn_Neo4jASTFactory_newSingleQuery0 = ($this, $x$1) => { - let var$2; - if (ju_AbstractCollection_isEmpty($x$1)) - $rt_throw(onciafn_Neo4jASTConstructionException__init_0($rt_s(4013))); - var$2 = (ju_ArrayList_get($x$1, 0)).$position(); - return oncia_SingleQuery__init_0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$1))), var$2); -}, -onciafn_Neo4jASTFactory_newSingleQuery = ($this, $x$1, $x$2) => { - if (ju_AbstractCollection_isEmpty($x$2)) - $rt_throw(onciafn_Neo4jASTConstructionException__init_0($rt_s(4013))); - return oncia_SingleQuery__init_0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$2))), $x$1); -}, -onciafn_Neo4jASTFactory_statements = ($this, $x$1) => { - return oncia_Statements__init_0(sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $x$1)))); -}; -function onciu_CypherException() { - jl_RuntimeException.call(this); - this.$message2 = null; -} -function onciu_OpenCypherExceptionFactory$SyntaxException() { - let a = this; onciu_CypherException.call(a); - a.$message1 = null; - a.$pos8 = null; -} -let onciu_OpenCypherExceptionFactory$SyntaxException_getMessage = $this => { - let var$1, var$2, var$3; - var$1 = $this.$message1; - var$2 = $this.$pos8; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(65)), var$2), 41); - return jl_AbstractStringBuilder_toString(var$3); -}; -function one_SyntaxException() { - let a = this; one_Neo4jException.call(a); - a.$offset6 = null; - a.$query6 = null; -} -let one_SyntaxException_getMessage = $this => { - let $split, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - if (!ju_Optional_isPresent($this.$offset6)) - return $this.$message; - $split = jl_String_split($this.$query6, $rt_s(93)); - var$2 = $split.data; - var$3 = $this.$message; - var$4 = (ju_Optional_get($this.$offset6)).$value4; - if (!var$2.length) { - $split = $rt_createArray(jl_String, 1); - $split.data[0] = $rt_s(4); - } - $split = $split.data; - var$5 = $split.length; - if (!var$5) { - var$6 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$6, $rt_s(4014)); - $rt_throw(var$6); - } - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$8 = 0; - var$9 = var$5 - 1 | 0; - a: { - while (true) { - if (var$8 >= var$5) - break a; - var$10 = $split[var$8]; - if (var$8 >= var$9) - one_SyntaxException_buildErrorString(var$7, var$10, jl_Math_min(var$10.$nativeString.length, var$4)); - else { - if (var$10.$nativeString.length >= var$4) - break; - var$4 = var$4 - (var$10.$nativeString.length + 1 | 0) | 0; - } - var$8 = var$8 + 1 | 0; - } - one_SyntaxException_buildErrorString(var$7, var$10, var$4); - } - var$10 = jl_AbstractStringBuilder_toString(var$7); - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, var$3), $rt_s(93)), var$10); - return jl_AbstractStringBuilder_toString(var$7); -}, -one_SyntaxException_buildErrorString = ($builder, $element, $currentOffset) => { - let var$4; - jl_AbstractStringBuilder_append($builder, $rt_s(481)); - var$4 = $element.$nativeString.trimEnd(); - if (var$4 !== $element.$nativeString) - $element = jl_String__init_0(var$4); - jl_AbstractStringBuilder_append($builder, $element); - jl_AbstractStringBuilder_append($builder, $rt_s(481)); - jl_AbstractStringBuilder_append($builder, $rt_s(93)); - jl_AbstractStringBuilder_append($builder, jl_String_repeat($rt_s(384), $currentOffset + 1 | 0)); - jl_AbstractStringBuilder_append0($builder, 94); -}, -one_CypherExecutionException = $rt_classWithoutFields(one_Neo4jException), -oncipj_CypherConstants = $rt_classWithoutFields(0), -oncipj_CypherConstants_tokenImage = null, -oncipj_CypherConstants__clinit_ = () => { - oncipj_CypherConstants_tokenImage = $rt_wrapArray(jl_String, [$rt_s(4015), $rt_s(4016), $rt_s(4017), $rt_s(4018), $rt_s(4019), $rt_s(4020), $rt_s(4021), $rt_s(4022), $rt_s(4023), $rt_s(4024), $rt_s(4025), $rt_s(4026), $rt_s(4027), $rt_s(4028), $rt_s(4029), $rt_s(4030), $rt_s(4031), $rt_s(4032), $rt_s(4033), $rt_s(4034), $rt_s(4035), $rt_s(4036), $rt_s(4037), $rt_s(4038), $rt_s(4039), $rt_s(4040), $rt_s(4041), $rt_s(4042), $rt_s(4043), $rt_s(4044), $rt_s(4045), $rt_s(4046), $rt_s(4047), $rt_s(4047), $rt_s(4048), - $rt_s(4049), $rt_s(4050), $rt_s(4051), $rt_s(4052), $rt_s(4053), $rt_s(4054), $rt_s(4055), $rt_s(4056), $rt_s(4057), $rt_s(4058), $rt_s(4059), $rt_s(4060), $rt_s(4061), $rt_s(4062), $rt_s(4063), $rt_s(4064), $rt_s(4065), $rt_s(4055), $rt_s(4066), $rt_s(4056), $rt_s(4057), $rt_s(4058), $rt_s(4059), $rt_s(4060), $rt_s(4061), $rt_s(4062), $rt_s(4063), $rt_s(4064), $rt_s(4067), $rt_s(4066), $rt_s(4068), $rt_s(4069), $rt_s(4070), $rt_s(4068), $rt_s(4071), $rt_s(4072), $rt_s(4073), $rt_s(4074), $rt_s(4075), $rt_s(4076), - $rt_s(4077), $rt_s(4078), $rt_s(4079), $rt_s(4080), $rt_s(4081), $rt_s(4082), $rt_s(4083), $rt_s(4084), $rt_s(4085), $rt_s(4086), $rt_s(4087), $rt_s(4088), $rt_s(4089), $rt_s(4090), $rt_s(4091), $rt_s(4092), $rt_s(4093), $rt_s(4094), $rt_s(4095), $rt_s(4096), $rt_s(4097), $rt_s(4098), $rt_s(4099), $rt_s(4100), $rt_s(4101), $rt_s(4102), $rt_s(4103), $rt_s(4104), $rt_s(4105), $rt_s(4106), $rt_s(4107), $rt_s(4108), $rt_s(4109), $rt_s(4110), $rt_s(4111), $rt_s(4112), $rt_s(4113), $rt_s(4114), $rt_s(4115), $rt_s(4116), - $rt_s(4117), $rt_s(4118), $rt_s(4119), $rt_s(4120), $rt_s(4121), $rt_s(4122), $rt_s(4123), $rt_s(4124), $rt_s(4125), $rt_s(4126), $rt_s(4127), $rt_s(4128), $rt_s(4129), $rt_s(4130), $rt_s(4131), $rt_s(4132), $rt_s(4133), $rt_s(4134), $rt_s(4135), $rt_s(4136), $rt_s(4137), $rt_s(4138), $rt_s(4139), $rt_s(4140), $rt_s(4141), $rt_s(4142), $rt_s(4143), $rt_s(4144), $rt_s(4145), $rt_s(4146), $rt_s(4147), $rt_s(4148), $rt_s(4149), $rt_s(4150), $rt_s(4151), $rt_s(4152), $rt_s(4153), $rt_s(4154), $rt_s(4155), $rt_s(4156), - $rt_s(4157), $rt_s(4158), $rt_s(4159), $rt_s(4160), $rt_s(4161), $rt_s(4162), $rt_s(4163), $rt_s(4164), $rt_s(4165), $rt_s(4166), $rt_s(4167), $rt_s(4168), $rt_s(4169), $rt_s(4170), $rt_s(4171), $rt_s(4172), $rt_s(4173), $rt_s(4174), $rt_s(4175), $rt_s(4176), $rt_s(4177), $rt_s(4178), $rt_s(4179), $rt_s(4180), $rt_s(4181), $rt_s(4182), $rt_s(4183), $rt_s(4184), $rt_s(4185), $rt_s(4186), $rt_s(4187), $rt_s(4188), $rt_s(4189), $rt_s(4190), $rt_s(4191), $rt_s(4192), $rt_s(4193), $rt_s(4194), $rt_s(4195), $rt_s(4196), - $rt_s(4197), $rt_s(4198), $rt_s(4199), $rt_s(4200), $rt_s(4201), $rt_s(4202), $rt_s(4203), $rt_s(4204), $rt_s(4205), $rt_s(4206), $rt_s(4207), $rt_s(4208), $rt_s(4209), $rt_s(4210), $rt_s(4211), $rt_s(4212), $rt_s(4213), $rt_s(4214), $rt_s(4215), $rt_s(4216), $rt_s(4217), $rt_s(4218), $rt_s(4219), $rt_s(4220), $rt_s(4221), $rt_s(4222), $rt_s(4223), $rt_s(4224), $rt_s(4225), $rt_s(4226), $rt_s(4227), $rt_s(4228), $rt_s(4229), $rt_s(4230), $rt_s(4231), $rt_s(4232), $rt_s(4233), $rt_s(4234), $rt_s(4235), $rt_s(4236), - $rt_s(4237), $rt_s(4238), $rt_s(4239), $rt_s(4240), $rt_s(4241), $rt_s(4242), $rt_s(4243), $rt_s(4244), $rt_s(4245), $rt_s(4246), $rt_s(4247), $rt_s(4248), $rt_s(4249), $rt_s(4250), $rt_s(4251), $rt_s(4252), $rt_s(4253), $rt_s(4254), $rt_s(4255), $rt_s(4256), $rt_s(4257), $rt_s(4258), $rt_s(4259), $rt_s(4260), $rt_s(4261), $rt_s(4262), $rt_s(4263), $rt_s(4264), $rt_s(4265), $rt_s(4266), $rt_s(4267), $rt_s(4268), $rt_s(4269), $rt_s(4270), $rt_s(4271), $rt_s(4272), $rt_s(4273), $rt_s(4274), $rt_s(4275), $rt_s(4276), - $rt_s(4277), $rt_s(4278), $rt_s(4279), $rt_s(4280), $rt_s(4281), $rt_s(4282), $rt_s(4283), $rt_s(4284), $rt_s(4285), $rt_s(4286), $rt_s(4287), $rt_s(4288), $rt_s(4289), $rt_s(4290), $rt_s(4291), $rt_s(4292), $rt_s(4293), $rt_s(4294), $rt_s(4295), $rt_s(4296), $rt_s(4297), $rt_s(4298), $rt_s(4299), $rt_s(4300), $rt_s(4301), $rt_s(4302), $rt_s(4303), $rt_s(4304), $rt_s(4305), $rt_s(4306), $rt_s(4307), $rt_s(4308), $rt_s(4309), $rt_s(4310), $rt_s(4311), $rt_s(4312), $rt_s(4313), $rt_s(4314), $rt_s(4315), $rt_s(4316), - $rt_s(4317), $rt_s(4318), $rt_s(4319), $rt_s(4320), $rt_s(4321), $rt_s(4322), $rt_s(4323), $rt_s(4324), $rt_s(4325), $rt_s(4326), $rt_s(4327), $rt_s(4328), $rt_s(4329), $rt_s(4330), $rt_s(4331), $rt_s(4332), $rt_s(4333), $rt_s(4334), $rt_s(4335), $rt_s(4336), $rt_s(4337), $rt_s(4338), $rt_s(4339), $rt_s(4340), $rt_s(4341), $rt_s(4342), $rt_s(4343), $rt_s(4344), $rt_s(4345), $rt_s(4346), $rt_s(4347), $rt_s(4348), $rt_s(4349), $rt_s(4350), $rt_s(4351), $rt_s(4352), $rt_s(4353), $rt_s(4354), $rt_s(4355), $rt_s(4356), - $rt_s(4357), $rt_s(4358), $rt_s(4359), $rt_s(4360), $rt_s(4361), $rt_s(4362), $rt_s(4363), $rt_s(4364), $rt_s(4365), $rt_s(4366), $rt_s(4367), $rt_s(4368), $rt_s(4369), $rt_s(4370), $rt_s(4371), $rt_s(4372), $rt_s(4373), $rt_s(4374), $rt_s(4375)]); -}; -function oncipj_Cypher() { - let a = this; jl_Object.call(a); - a.$exceptionFactory1 = null; - a.$astFactory = null; - a.$labelExpressionStack = null; - a.$token_source = null; - a.$token = null; - a.$jj_nt = null; - a.$jj_ntk = 0; - a.$jj_scanpos = null; - a.$jj_lastpos = null; - a.$jj_la = 0; - a.$jj_lookingAhead = 0; - a.$jj_semLA = 0; - a.$jj_gen = 0; - a.$jj_la1 = null; - a.$jj_2_rtns = null; - a.$jj_rescan = 0; - a.$jj_gc = 0; - a.$jj_ls = null; - a.$jj_expentries = null; - a.$jj_expentry = null; - a.$jj_kind = 0; - a.$jj_lasttokens = null; - a.$jj_endpos = 0; -} -let oncipj_Cypher_jj_la1_0 = null, -oncipj_Cypher_jj_la1_1 = null, -oncipj_Cypher_jj_la1_2 = null, -oncipj_Cypher_jj_la1_3 = null, -oncipj_Cypher_jj_la1_4 = null, -oncipj_Cypher_jj_la1_5 = null, -oncipj_Cypher_jj_la1_6 = null, -oncipj_Cypher_jj_la1_7 = null, -oncipj_Cypher_jj_la1_8 = null, -oncipj_Cypher_jj_la1_9 = null, -oncipj_Cypher_jj_la1_10 = null, -oncipj_Cypher_jj_la1_11 = null, -oncipj_Cypher__init_ = ($this, $astFactory, $exceptionFactory, $stream) => { - let var$4, var$5, var$6, var$7; - var$4 = new ju_Stack; - var$4.$elementData3 = $rt_createArray(jl_Object, 10); - var$4.$elementCount0 = 0; - var$4.$capacityIncrement = 0; - $this.$labelExpressionStack = var$4; - $this.$jj_lookingAhead = 0; - $this.$jj_la1 = $rt_createIntArray(742); - $this.$jj_2_rtns = $rt_createArray(oncipj_Cypher$JJCalls, 186); - $this.$jj_rescan = 0; - $this.$jj_gc = 0; - var$4 = new oncipj_Cypher$LookaheadSuccess; - jl_Throwable__init_(var$4); - $this.$jj_ls = var$4; - $this.$jj_expentries = ju_ArrayList__init_(); - $this.$jj_kind = (-1); - $this.$jj_lasttokens = $rt_createIntArray(100); - var$4 = new oncipj_CypherTokenManager; - var$4.$curLexState = 0; - var$4.$defaultLexState = 0; - var$4.$jjrounds = $rt_createIntArray(55); - var$4.$jjstateSet = $rt_createIntArray(110); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - var$4.$jjimage = var$5; - var$4.$image0 = var$5; - var$4.$input_stream = $stream; - $this.$token_source = var$4; - $this.$token = new oncipj_Token; - $this.$jj_ntk = (-1); - $this.$jj_gen = 0; - var$6 = 0; - while (var$6 < 742) { - $this.$jj_la1.data[var$6] = (-1); - var$6 = var$6 + 1 | 0; - } - var$6 = 0; - while (true) { - var$7 = $this.$jj_2_rtns.data; - if (var$6 >= var$7.length) - break; - var$7[var$6] = new oncipj_Cypher$JJCalls; - var$6 = var$6 + 1 | 0; - } - $this.$astFactory = $astFactory; - $this.$exceptionFactory1 = $exceptionFactory; -}, -oncipj_Cypher__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncipj_Cypher(); - oncipj_Cypher__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncipj_Cypher_pos = ($this, $t) => { - return $t === null ? null : onciafn_Neo4jASTFactory_inputPosition($this.$astFactory, $t.$beginOffset, $t.$beginLine, $t.$beginColumn); -}, -oncipj_Cypher_endPos = ($this, $t) => { - return $t === null ? null : onciafn_Neo4jASTFactory_inputPosition($this.$astFactory, $t.$endOffset, $t.$endLine, $t.$endColumn); -}, -oncipj_Cypher_assertValidType = ($this, $t, $expected, $actual) => { - let var$4, var$5, var$6; - if ($expected !== null && !jl_String_equals($expected, $actual)) { - var$4 = $this.$exceptionFactory1; - var$5 = new oncipj_ParseException; - var$6 = $rt_wrapArray(jl_Object, [$t.$image, $expected]); - jl_Throwable__init_0(var$5, jl_String_format($rt_s(4376), var$6)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException(var$4, var$5, $t.$beginOffset, $t.$beginLine, $t.$beginColumn)); - } -}, -oncipj_Cypher_assertNotAlreadySet = ($this, $object, $token, $errorMessage) => { - let var$4; - if ($object === null) - return; - var$4 = $this.$exceptionFactory1; - $object = new oncipj_ParseException; - jl_Throwable__init_0($object, $errorMessage); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException(var$4, $object, $token.$beginOffset, $token.$beginLine, $token.$beginColumn)); -}, -oncipj_Cypher_Statements = $this => { - let $stmts, $e, $t, $$je; - $stmts = ju_ArrayList__init_(); - a: { - b: { - try { - ju_ArrayList_add($stmts, oncipj_Cypher_Statement($this)); - while (oncipj_Cypher_jj_2_1($this, 2)) { - oncipj_Cypher_jj_consume_token($this, 305); - ju_ArrayList_add($stmts, oncipj_Cypher_Statement($this)); - } - if (oncipj_Cypher_jj_2_2($this, 2)) - oncipj_Cypher_jj_consume_token($this, 305); - oncipj_Cypher_jj_consume_token($this, 0); - $stmts = onciafn_Neo4jASTFactory_statements($this.$astFactory, $stmts); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_ParseException) { - $e = $$je; - break a; - } else if ($$je instanceof oncipc_InvalidUnicodeLiteral) { - $e = $$je; - break b; - } else { - throw $$e; - } - } - return $stmts; - } - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, $e, $e.$offset7, $e.$line9, $e.$column4)); - } - $t = $e.$currentToken.$next5; - if (!jl_String_contains($e.$message, $rt_s(4377))) - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException0($this.$exceptionFactory1, $t.$image, oncipj_ParseExceptions_expected($e.$expectedTokenSequences, $e.$tokenImage, $e.$currentToken.$image), $e, $t.$beginOffset, $t.$beginLine, $t.$beginColumn)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException0($this.$exceptionFactory1, $t.$image, oncipj_ParseExceptions_expected($e.$expectedTokenSequences, $e.$tokenImage, $e.$currentToken.$image), $e, $t.$endOffset + 1 | 0, $t.$endLine, $t.$endColumn + 1 | 0)); -}, -oncipj_Cypher_Statement = $this => { - let var$1, var$2, $statement, $statement_0, $statement_1, var$6, $$je; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - switch (var$1) { - case 351: - break; - default: - $this.$jj_la1.data[0] = $this.$jj_gen; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 77: - case 99: - case 119: - case 128: - case 131: - case 132: - case 136: - case 145: - case 146: - case 151: - case 168: - case 171: - case 177: - case 194: - case 208: - case 210: - case 217: - case 218: - case 232: - case 242: - case 245: - case 249: - case 278: - case 280: - case 285: - case 291: - case 292: - case 308: - case 313: - case 316: - case 317: - case 320: - case 325: - case 346: - case 360: - $statement = null; - $statement_0 = null; - $this.$jj_la = 2; - $statement_1 = $this.$token; - $this.$jj_scanpos = $statement_1; - $this.$jj_lastpos = $statement_1; - b: { - c: { - d: { - e: { - try { - var$1 = oncipj_Cypher_jj_3_3($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $statement = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 2, 2); - break b; - } - try { - var$1 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $statement = $$je; - - } - } - oncipj_Cypher_jj_save($this, 2, 2); - $rt_throw($statement); - } - oncipj_Cypher_jj_save($this, 2, 2); - } - f: { - if (var$1) - $statement = oncipj_Cypher_CreateCommand($this, null); - else { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 77: - case 128: - case 132: - case 145: - case 146: - case 151: - case 177: - case 278: - case 280: - case 292: - case 313: - case 317: - case 320: - case 325: - $statement = oncipj_Cypher_Command($this, null); - break f; - case 99: - case 119: - case 131: - case 136: - case 168: - case 171: - case 194: - case 208: - case 210: - case 217: - case 218: - case 232: - case 242: - case 245: - case 249: - case 285: - case 291: - case 308: - case 316: - case 346: - case 348: - case 360: - $statement_0 = oncipj_Cypher_SingleQuery($this); - g: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 343: - break; - default: - break g; - } - $statement_0 = oncipj_Cypher_Union($this, $statement_0); - } - $this.$jj_la1.data[2] = $this.$jj_gen; - break f; - default: - } - $this.$jj_la1.data[3] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $statement = new oncipj_ParseException; - jl_Throwable__init_($statement); - $rt_throw($statement); - } - } - if ($statement_0 !== null) - $statement = $statement_0; - break a; - case 348: - $statement_0 = oncipj_Cypher_UseClause($this); - $statement = null; - $statement_1 = null; - $this.$jj_la = 2; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - h: { - i: { - j: { - k: { - try { - var$1 = oncipj_Cypher_jj_3_4($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break k; - } else{ - $statement = $$je; - break j; - } - } - oncipj_Cypher_jj_save($this, 3, 2); - break h; - } - try { - var$1 = 1; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $statement = $$je; - - } - } - oncipj_Cypher_jj_save($this, 3, 2); - $rt_throw($statement); - } - oncipj_Cypher_jj_save($this, 3, 2); - } - l: { - if (var$1) - $statement = oncipj_Cypher_CreateCommand($this, $statement_0); - else { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 77: - case 128: - case 132: - case 145: - case 146: - case 151: - case 177: - case 278: - case 280: - case 292: - case 313: - case 317: - case 320: - case 325: - break; - default: - $this.$jj_la1.data[5] = $this.$jj_gen; - $statement_1 = ju_ArrayList__init_(); - if ($statement_0 !== null) - ju_ArrayList_add($statement_1, $statement_0); - m: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 99: - case 119: - case 131: - case 136: - case 168: - case 171: - case 194: - case 208: - case 210: - case 217: - case 218: - case 232: - case 242: - case 245: - case 249: - case 285: - case 291: - case 308: - case 316: - case 346: - case 348: - case 360: - break; - default: - break m; - } - ju_ArrayList_add($statement_1, oncipj_Cypher_Clause($this)); - } - $this.$jj_la1.data[11] = $this.$jj_gen; - $statement_1 = onciafn_Neo4jASTFactory_newSingleQuery0($this.$astFactory, $statement_1); - n: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 343: - break; - default: - break n; - } - $statement_1 = oncipj_Cypher_Union($this, $statement_1); - } - $this.$jj_la1.data[4] = $this.$jj_gen; - break l; - } - $statement = oncipj_Cypher_Command($this, $statement_0); - } - } - if ($statement_1 !== null) - $statement = $statement_1; - break a; - default: - } - $this.$jj_la1.data[1] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $statement = new oncipj_ParseException; - jl_Throwable__init_($statement); - $rt_throw($statement); - } - return $statement; - } - oncipj_Cypher_jj_consume_token($this, 351); - $statement = oncipj_Cypher_jj_consume_token($this, 255); - oncipj_Cypher_jj_consume_token($this, 110); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - o: { - switch (var$2) { - case 36: - break; - default: - $this.$jj_la1.data[6] = $this.$jj_gen; - break o; - } - oncipj_Cypher_jj_consume_token($this, 36); - } - $statement_1 = $this.$exceptionFactory1; - var$6 = new oncipj_ParseException; - jl_Throwable__init_0(var$6, $rt_s(4378)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($statement_1, var$6, $statement.$beginOffset, $statement.$beginLine, $statement.$beginColumn)); -}, -oncipj_Cypher_RegularQuery = $this => { - let $x, var$2; - $x = oncipj_Cypher_SingleQuery($this); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 343: - break; - default: - break a; - } - $x = oncipj_Cypher_Union($this, $x); - } - $this.$jj_la1.data[7] = $this.$jj_gen; - return $x; -}, -oncipj_Cypher_Union = ($this, $lhs) => { - let $all, $t, var$4, $rhs; - $all = 0; - $t = oncipj_Cypher_jj_consume_token($this, 343); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 76: - case 140: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 76: - oncipj_Cypher_jj_consume_token($this, 76); - $all = 1; - break a; - case 140: - oncipj_Cypher_jj_consume_token($this, 140); - break a; - default: - } - $this.$jj_la1.data[8] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - default: - } - $this.$jj_la1.data[9] = $this.$jj_gen; - } - $rhs = oncipj_Cypher_SingleQuery($this); - $t = oncipj_Cypher_pos($this, $t); - if ($rhs instanceof oncia_SingleQuery) - return !$all ? oncia_UnionDistinct__init_($lhs, $rhs, 1, $t) : oncia_UnionAll__init_($lhs, $rhs, 1, $t); - $lhs = new onciafn_Neo4jASTConstructionException; - $t = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($t); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($t, $rt_s(4379)), $rhs), 96); - onciafn_Neo4jASTConstructionException__init_($lhs, jl_AbstractStringBuilder_toString($t)); - $rt_throw($lhs); -}, -oncipj_Cypher_SingleQuery = $this => { - let $clauses, var$2; - $clauses = ju_ArrayList__init_(); - a: while (true) { - ju_ArrayList_add($clauses, oncipj_Cypher_Clause($this)); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 99: - case 119: - case 131: - case 136: - case 168: - case 171: - case 194: - case 208: - case 210: - case 217: - case 218: - case 232: - case 242: - case 245: - case 249: - case 285: - case 291: - case 308: - case 316: - case 346: - case 348: - case 360: - break; - default: - break a; - } - } - $this.$jj_la1.data[10] = $this.$jj_gen; - return onciafn_Neo4jASTFactory_newSingleQuery0($this.$astFactory, $clauses); -}, -oncipj_Cypher_Clause = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 119: - var$2 = oncipj_Cypher_jj_consume_token($this, 119); - var$3 = oncipj_Cypher_PatternList($this); - var$4 = $this.$astFactory; - var$2 = oncipj_Cypher_pos($this, var$2); - var$5 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$3))); - var$6 = new onciafn_Neo4jASTFactory$createClause$lambda$_13_0; - var$6.$_0636 = var$4; - var$7 = sci_List_map(var$5, var$6); - var$4 = new oncia_Create; - var$6 = new oncie_Pattern$ForUpdate; - var$8 = sc_StrictOptimizedIterableOps_map$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$3)), new onciafn_Neo4jASTFactory$createClause$lambda$_13_1); - var$5 = new onciafn_Neo4jASTFactory$createClause$lambda$_13_2; - sm_Ordering$Int$_$callClinit(); - oncie_Pattern$ForUpdate__init_(var$6, var$7, sc_AbstractIterable_minBy(var$8, var$5, sm_Ordering$Int$_MODULE$)); - oncia_Create__init_(var$4, var$6, var$2); - break a; - case 131: - case 136: - case 232: - var$2 = null; - var$9 = 0; - var$3 = ju_ArrayList__init_(); - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$1) { - case 136: - case 232: - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - switch (var$1) { - case 136: - var$2 = oncipj_Cypher_jj_consume_token($this, 136); - var$9 = 1; - break b; - case 232: - var$2 = oncipj_Cypher_jj_consume_token($this, 232); - break b; - default: - } - $this.$jj_la1.data[36] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$2 = new oncipj_ParseException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - default: - } - $this.$jj_la1.data[37] = $this.$jj_gen; - } - var$4 = oncipj_Cypher_jj_consume_token($this, 131); - ju_ArrayList_add(var$3, oncipj_Cypher_Expression($this)); - c: while (true) { - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - switch (var$1) { - case 107: - break; - default: - break c; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add(var$3, oncipj_Cypher_Expression($this)); - } - $this.$jj_la1.data[38] = $this.$jj_gen; - if (var$2 !== null) - var$4 = var$2; - var$2 = oncipj_Cypher_pos($this, var$4); - var$4 = oncia_Delete__init_0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$3))), var$9, var$2); - break a; - case 168: - var$4 = oncia_Finish__init_0(oncipj_Cypher_pos($this, oncipj_Cypher_jj_consume_token($this, 168))); - break a; - case 194: - var$2 = oncipj_Cypher_jj_consume_token($this, 194); - var$3 = ju_ArrayList__init_(); - ju_ArrayList_add(var$3, oncipj_Cypher_InsertPattern($this)); - d: while (true) { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 107: - break; - default: - break d; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add(var$3, oncipj_Cypher_InsertPattern($this)); - } - $this.$jj_la1.data[77] = $this.$jj_gen; - var$2 = oncipj_Cypher_pos($this, var$2); - var$7 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$3))); - var$4 = new oncia_Insert; - var$6 = new oncie_Pattern$ForUpdate; - var$8 = sc_StrictOptimizedIterableOps_map$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$3)), new onciafn_Neo4jASTFactory$insertClause$lambda$_14_0); - var$5 = new onciafn_Neo4jASTFactory$insertClause$lambda$_14_1; - sm_Ordering$Int$_$callClinit(); - oncie_Pattern$ForUpdate__init_(var$6, var$7, sc_AbstractIterable_minBy(var$8, var$5, sm_Ordering$Int$_MODULE$)); - oncia_Insert__init_(var$4, var$6, var$2); - break a; - case 285: - var$2 = ju_ArrayList__init_(); - var$3 = oncipj_Cypher_jj_consume_token($this, 285); - ju_ArrayList_add(var$2, oncipj_Cypher_RemoveItem($this)); - e: while (true) { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 107: - break; - default: - break e; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add(var$2, oncipj_Cypher_RemoveItem($this)); - } - $this.$jj_la1.data[34] = $this.$jj_gen; - var$3 = oncipj_Cypher_pos($this, var$3); - var$4 = oncia_Remove__init_0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$2))), var$3); - break a; - case 291: - break; - case 308: - var$4 = oncipj_Cypher_SetClause($this); - break a; - case 348: - var$4 = oncipj_Cypher_UseClause($this); - break a; - default: - $this.$jj_la1.data[12] = $this.$jj_gen; - if (oncipj_Cypher_jj_2_5($this, 2)) { - var$4 = oncipj_Cypher_MatchClause($this); - break a; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 218: - break; - case 346: - var$2 = oncipj_Cypher_jj_consume_token($this, 346); - var$3 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 81); - var$4 = oncipj_Cypher_Variable($this); - var$4 = onciafn_Neo4jASTFactory_unwindClause($this.$astFactory, oncipj_Cypher_pos($this, var$2), var$3, var$4); - break a; - case 360: - var$4 = oncipj_Cypher_WithClause($this); - break a; - default: - $this.$jj_la1.data[13] = $this.$jj_gen; - if (oncipj_Cypher_jj_2_6($this, 3)) { - var$4 = oncipj_Cypher_CallClause($this); - break a; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 99: - case 245: - break; - case 171: - var$4 = oncipj_Cypher_ForeachClause($this); - break a; - case 208: - case 242: - case 249: - case 316: - var$4 = oncipj_Cypher_OrderBySkipLimitClause($this); - break a; - case 210: - var$4 = oncipj_Cypher_LoadCSVClause($this); - break a; - default: - $this.$jj_la1.data[14] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$4 = oncipj_Cypher_SubqueryClause($this); - break a; - } - var$4 = oncipj_Cypher_MergeClause($this); - break a; - } - var$4 = oncipj_Cypher_ReturnClause($this); - } - return var$4; -}, -oncipj_Cypher_UseClause = $this => { - let $t, $useClause, var$3, var$4, $$je; - $t = oncipj_Cypher_jj_consume_token($this, 348); - $this.$jj_la = 2; - $useClause = $this.$token; - $this.$jj_scanpos = $useClause; - $this.$jj_lastpos = $useClause; - a: { - b: { - c: { - d: { - try { - var$3 = oncipj_Cypher_jj_3_7($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 6, 2); - break a; - } - try { - var$3 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 6, 2); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 6, 2); - } - e: { - if (var$3) { - oncipj_Cypher_jj_consume_token($this, 178); - $useClause = oncipj_Cypher_graphReference($this, $t); - } else { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break e; - default: - break e; - } - $useClause = oncipj_Cypher_graphReference($this, $t); - } - return $useClause; - } - $this.$jj_la1.data[15] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); -}, -oncipj_Cypher_graphReference = ($this, $t) => { - let var$2, $useClause, $functionInvocation, var$5, $aliasName, var$7, $$je; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 213: - break; - default: - $this.$jj_la1.data[16] = $this.$jj_gen; - $this.$jj_la = 2147483647; - $useClause = $this.$token; - $this.$jj_scanpos = $useClause; - $this.$jj_lastpos = $useClause; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_8($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 7, 2147483647); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 7, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 7, 2147483647); - } - if (var$2) { - $functionInvocation = oncipj_Cypher_FunctionInvocation($this, 1); - $t = oncipj_Cypher_pos($this, $t); - return oncia_UseGraph__init_(oncia_GraphFunctionReference__init_0($functionInvocation, $functionInvocation.$position7), $t); - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $aliasName = oncipj_Cypher_SymbolicAliasName($this); - $t = oncipj_Cypher_pos($this, $t); - $useClause = oncipj_AliasName_getLocalAliasName($aliasName, $this.$astFactory); - if (!($useClause instanceof oncia_NamespacedName)) { - if (!($useClause instanceof oncia_ParameterName)) - $rt_throw(s_MatchError__init_($useClause)); - $rt_throw(onciafn_Neo4jASTConstructionException__init_0($rt_s(4380))); - } - $aliasName = $useClause; - var$7 = $aliasName.$nameComponents; - $functionInvocation = $aliasName.$namespace4; - if (!($functionInvocation instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, $functionInvocation)) - $rt_throw(s_MatchError__init_($functionInvocation)); - $aliasName = oncia_UseGraph__init_(oncia_GraphDirectReference__init_0(oncia_CatalogName__init_(var$7), $useClause.$position()), $t); - } else { - $functionInvocation = $functionInvocation.$value5; - $aliasName = oncia_UseGraph__init_(oncia_GraphDirectReference__init_0(oncia_CatalogName__init_(var$7.$prepended($functionInvocation)), $useClause.$position()), $t); - } - return $aliasName; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[17] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - oncipj_Cypher_jj_consume_token($this, 213); - $useClause = oncipj_Cypher_graphReference($this, $t); - oncipj_Cypher_jj_consume_token($this, 297); - return $useClause; -}, -oncipj_Cypher_ReturnClause = $this => { - return oncipj_Cypher_ReturnBody($this, oncipj_Cypher_jj_consume_token($this, 291)); -}, -oncipj_Cypher_ReturnBody = ($this, $t) => { - let $skipPosition, $limitPosition, $distinct, $order, $orderPos, $skip, $limit, var$9, var$10, var$11, var$12, var$13, var$14, $$je; - $skipPosition = null; - $limitPosition = null; - $distinct = 0; - $order = ju_ArrayList__init_(); - $orderPos = null; - $skip = null; - $limit = null; - $this.$jj_la = 2; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - a: { - b: { - c: { - d: { - try { - var$10 = oncipj_Cypher_jj_3_9($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 8, 2); - break a; - } - try { - var$10 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 8, 2); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 8, 2); - } - if (var$10) { - oncipj_Cypher_jj_consume_token($this, 140); - $distinct = 1; - } - var$11 = ju_ArrayList__init_(); - var$10 = 0; - var$12 = $this.$token; - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$13) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_ArrayList_add(var$11, oncipj_Cypher_ReturnItem($this)); - f: while (true) { - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - switch (var$13) { - case 107: - break; - default: - break f; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add(var$11, oncipj_Cypher_ReturnItem($this)); - } - $this.$jj_la1.data[24] = $this.$jj_gen; - break e; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - var$10 = 1; - g: while (true) { - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - switch (var$13) { - case 107: - break; - default: - break g; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add(var$11, oncipj_Cypher_ReturnItem($this)); - } - $this.$jj_la1.data[23] = $this.$jj_gen; - break e; - default: - } - $this.$jj_la1.data[25] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - var$9 = oncipj_Cypher_pos($this, var$12.$next5); - var$12 = new oncia_ReturnItems; - var$11 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$11))); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_(var$12, var$10, var$11, s_None$_MODULE$, var$9); - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$13) { - case 249: - $orderPos = oncipj_Cypher_jj_consume_token($this, 249); - oncipj_Cypher_jj_consume_token($this, 98); - ju_ArrayList_add($order, oncipj_Cypher_OrderItem($this)); - i: while (true) { - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - switch (var$13) { - case 107: - break; - default: - break i; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($order, oncipj_Cypher_OrderItem($this)); - } - $this.$jj_la1.data[18] = $this.$jj_gen; - break h; - default: - } - $this.$jj_la1.data[19] = $this.$jj_gen; - } - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$13) { - case 242: - case 316: - break; - default: - $this.$jj_la1.data[20] = $this.$jj_gen; - break j; - } - $skipPosition = $this.$token.$next5; - $skip = oncipj_Cypher_Skip($this); - } - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$13) { - case 208: - break; - default: - $this.$jj_la1.data[21] = $this.$jj_gen; - break k; - } - $limitPosition = $this.$token.$next5; - $limit = oncipj_Cypher_Limit($this); - } - $t = oncipj_Cypher_pos($this, $t); - var$9 = oncipj_Cypher_pos($this, $orderPos); - $skipPosition = oncipj_Cypher_pos($this, $skipPosition); - var$14 = oncipj_Cypher_pos($this, $limitPosition); - var$11 = $skip; - $orderPos = $limit; - $limit = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $order))); - $skip = new oncia_Return; - $limitPosition = ju_AbstractCollection_isEmpty($order) ? s_None$_MODULE$ : s_Some__init_(oncia_OrderBy__init_($limit, var$9)); - s_Option$_$callClinit(); - var$9 = s_Option$_apply(s_Option$_MODULE$, var$11); - var$11 = new onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_0; - var$11.$_0421 = $skipPosition; - $skipPosition = s_Option_map(var$9, var$11); - var$9 = s_Option$_apply(s_Option$_MODULE$, $orderPos); - var$11 = new onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_1; - var$11.$_0999 = var$14; - var$9 = s_Option_map(var$9, var$11); - oncia_Return$_$callClinit(); - oncia_Return__init_($skip, $distinct, var$12, $limitPosition, $skipPosition, var$9, oncia_Return$_apply$default$6(oncia_Return$_MODULE$), 0, $t); - return $skip; -}, -oncipj_Cypher_ReturnItem = $this => { - let $v, $eStart, $e, $eEnd, var$5; - $v = null; - $eStart = $this.$token; - $e = oncipj_Cypher_Expression($this); - $eEnd = $this.$token; - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 81: - break; - default: - $this.$jj_la1.data[22] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 81); - $v = oncipj_Cypher_Variable($this); - } - if ($v !== null) - return onciafn_Neo4jASTFactory_newReturnItem0($this.$astFactory, oncipj_Cypher_pos($this, $eStart.$next5), $e, $v); - return onciafn_Neo4jASTFactory_newReturnItem($this.$astFactory, oncipj_Cypher_pos($this, $eStart.$next5), $e, $eStart.$next5.$beginOffset, $eEnd.$endOffset); -}, -oncipj_Cypher_OrderItem = $this => { - let $t, $e, var$3, var$4; - $t = $this.$token; - $e = oncipj_Cypher_Expression($this); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 133: - case 134: - break; - default: - $this.$jj_la1.data[29] = $this.$jj_gen; - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 82: - case 83: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 82: - break; - case 83: - oncipj_Cypher_jj_consume_token($this, 83); - break a; - default: - $this.$jj_la1.data[27] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - oncipj_Cypher_jj_consume_token($this, 82); - break a; - default: - } - $this.$jj_la1.data[28] = $this.$jj_gen; - } - $t = oncipj_Cypher_pos($this, $t.$next5); - return oncia_AscSortItem__init_($e, $t); - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$4) { - case 133: - break; - case 134: - oncipj_Cypher_jj_consume_token($this, 134); - break b; - default: - $this.$jj_la1.data[26] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - oncipj_Cypher_jj_consume_token($this, 133); - } - $t = oncipj_Cypher_pos($this, $t.$next5); - return oncia_DescSortItem__init_($e, $t); -}, -oncipj_Cypher_Skip = $this => { - let var$1, $e; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 242: - break; - case 316: - oncipj_Cypher_jj_consume_token($this, 316); - break a; - default: - $this.$jj_la1.data[30] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $e = new oncipj_ParseException; - jl_Throwable__init_($e); - $rt_throw($e); - } - oncipj_Cypher_jj_consume_token($this, 242); - } - return oncipj_Cypher_Expression($this); -}, -oncipj_Cypher_Limit = $this => { - oncipj_Cypher_jj_consume_token($this, 208); - return oncipj_Cypher_Expression($this); -}, -oncipj_Cypher_WhereClause = $this => { - let $t, $e; - $t = oncipj_Cypher_jj_consume_token($this, 359); - $e = oncipj_Cypher_Expression($this); - $t = oncipj_Cypher_pos($this, $t); - return oncia_Where__init_($e, $t); -}, -oncipj_Cypher_WithClause = $this => { - let $where, $t, $returnClause, var$4, var$5, var$6, var$7, var$8, var$9; - $where = null; - $t = oncipj_Cypher_jj_consume_token($this, 360); - $returnClause = oncipj_Cypher_ReturnBody($this, $t); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 359: - break; - default: - $this.$jj_la1.data[31] = $this.$jj_gen; - break a; - } - $where = oncipj_Cypher_WhereClause($this); - } - var$5 = oncipj_Cypher_pos($this, $t); - var$6 = new oncia_With; - var$4 = $returnClause.$distinct1; - $t = $returnClause.$returnItems2; - var$7 = $returnClause.$orderBy2; - var$8 = $returnClause.$skip3; - var$9 = $returnClause.$limit3; - s_Option$_$callClinit(); - $where = s_Option$_apply(s_Option$_MODULE$, $where); - oncia_With$_$callClinit(); - oncia_With__init_(var$6, var$4, $t, var$7, var$8, var$9, $where, oncia_DefaultWith$_MODULE$, var$5); - return var$6; -}, -oncipj_Cypher_SetClause = $this => { - let $items, $t, var$3; - $items = ju_ArrayList__init_(); - $t = oncipj_Cypher_jj_consume_token($this, 308); - ju_ArrayList_add($items, oncipj_Cypher_SetItem($this)); - a: while (true) { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 107: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($items, oncipj_Cypher_SetItem($this)); - } - $this.$jj_la1.data[32] = $this.$jj_gen; - $t = oncipj_Cypher_pos($this, $t); - return oncia_SetClause__init_0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $items))), $t); -}, -oncipj_Cypher_SetItem = $this => { - let $v, var$2, $p, $d, var$5, $e, $$je; - $this.$jj_la = 2147483647; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_10($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $v = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 9, 2147483647); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 9, 2147483647); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 9, 2147483647); - } - if (var$2) { - $p = oncipj_Cypher_PropertyExpression($this); - oncipj_Cypher_jj_consume_token($this, 158); - return oncia_SetPropertyItem__init_0($p, oncipj_Cypher_Expression($this), $p.$position14); - } - $this.$jj_la = 2147483647; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - e: { - f: { - g: { - h: { - try { - var$2 = oncipj_Cypher_jj_3_11($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break h; - } else{ - $v = $$je; - break g; - } - } - oncipj_Cypher_jj_save($this, 10, 2147483647); - break e; - } - try { - var$2 = 1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 10, 2147483647); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 10, 2147483647); - } - if (var$2) { - $d = oncipj_Cypher_DynamicPropertyExpression($this); - oncipj_Cypher_jj_consume_token($this, 158); - $v = oncipj_Cypher_Expression($this); - if ($d instanceof oncie_ContainerIndex) - return oncia_SetDynamicPropertyItem__init_($d, $v, $d.$position39); - $v = new jl_IllegalArgumentException; - $d = jl_Class_getSimpleName(jl_Object_getClass($d)); - $p = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($p); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(4381)), $d), 93); - jl_Throwable__init_0($v, jl_AbstractStringBuilder_toString($p)); - $rt_throw($v); - } - $this.$jj_la = 2; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - i: { - j: { - k: { - l: { - try { - var$2 = oncipj_Cypher_jj_3_12($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break l; - } else{ - $v = $$je; - break k; - } - } - oncipj_Cypher_jj_save($this, 11, 2); - break i; - } - try { - var$2 = 1; - break j; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 11, 2); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 11, 2); - } - if (var$2) { - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 158); - return oncia_SetExactPropertiesFromMapItem__init_0($v, oncipj_Cypher_Expression($this), $v.$position4); - } - $this.$jj_la = 2; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - m: { - n: { - o: { - p: { - try { - var$2 = oncipj_Cypher_jj_3_13($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break p; - } else{ - $v = $$je; - break o; - } - } - oncipj_Cypher_jj_save($this, 12, 2); - break m; - } - try { - var$2 = 1; - break n; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 12, 2); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 12, 2); - } - if (var$2) { - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 258); - return oncia_SetIncludingPropertiesFromMapItem__init_0($v, oncipj_Cypher_Expression($this), $v.$position4); - } - $this.$jj_la = 2; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - q: { - r: { - s: { - t: { - try { - var$2 = oncipj_Cypher_jj_3_14($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break t; - } else{ - $v = $$je; - break s; - } - } - oncipj_Cypher_jj_save($this, 13, 2); - break q; - } - try { - var$2 = 1; - break r; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 13, 2); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 13, 2); - } - if (!var$2) { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - u: { - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break u; - default: - break u; - } - return oncipj_Cypher_SetNodeLabelsIs($this, oncipj_Cypher_Variable($this)); - } - $this.$jj_la1.data[33] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $v = new oncipj_ParseException; - jl_Throwable__init_($v); - $rt_throw($v); - } - $v = oncipj_Cypher_Variable($this); - $d = ju_ArrayList__init_(); - $p = ju_ArrayList__init_(); - v: while (true) { - $this.$jj_la = 2; - $e = $this.$token; - $this.$jj_scanpos = $e; - $this.$jj_lastpos = $e; - w: { - x: { - try { - var$2 = oncipj_Cypher_jj_3_51($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break x; - } else{ - $v = $$je; - break v; - } - } - oncipj_Cypher_jj_save($this, 50, 2); - break w; - } - try { - var$2 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - break v; - - } - oncipj_Cypher_jj_save($this, 50, 2); - } - if (var$2) { - $e = oncipj_Cypher_LabelOrRelType($this); - ju_ArrayList_add($d, onciaf_ASTFactory$StringPos__init_($e.$image, oncipj_Cypher_pos($this, $e))); - } else { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 105: - break; - default: - $this.$jj_la1.data[123] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $v = new oncipj_ParseException; - jl_Throwable__init_($v); - $rt_throw($v); - } - oncipj_Cypher_jj_consume_token($this, 105); - oncipj_Cypher_jj_consume_token($this, 137); - oncipj_Cypher_jj_consume_token($this, 213); - $e = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - ju_ArrayList_add($p, $e); - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 105: - break; - default: - $this.$jj_la1.data[124] = $this.$jj_gen; - return onciafn_Neo4jASTFactory_setLabels($this.$astFactory, $v, $d, $p, 0); - } - } - oncipj_Cypher_jj_save($this, 50, 2); - $rt_throw($v); -}, -oncipj_Cypher_RemoveItem = $this => { - let $v, var$2, $e, $p, var$5, var$6, var$7, $$je; - $this.$jj_la = 2147483647; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_15($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $v = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 14, 2147483647); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 14, 2147483647); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 14, 2147483647); - } - if (var$2) - return oncia_RemovePropertyItem__init_0(oncipj_Cypher_PropertyExpression($this)); - $this.$jj_la = 2147483647; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - e: { - f: { - g: { - h: { - try { - var$2 = oncipj_Cypher_jj_3_16($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break h; - } else{ - $v = $$je; - break g; - } - } - oncipj_Cypher_jj_save($this, 15, 2147483647); - break e; - } - try { - var$2 = 1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 15, 2147483647); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 15, 2147483647); - } - if (var$2) { - $e = oncipj_Cypher_DynamicPropertyExpression($this); - if ($e instanceof oncie_ContainerIndex) - return oncia_RemoveDynamicPropertyItem__init_0($e); - $v = new jl_IllegalArgumentException; - $e = jl_Class_getSimpleName(jl_Object_getClass($e)); - $p = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($p); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(4381)), $e), 93); - jl_Throwable__init_0($v, jl_AbstractStringBuilder_toString($p)); - $rt_throw($v); - } - $this.$jj_la = 2; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - i: { - j: { - k: { - l: { - try { - var$2 = oncipj_Cypher_jj_3_17($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break l; - } else{ - $v = $$je; - break k; - } - } - oncipj_Cypher_jj_save($this, 16, 2); - break i; - } - try { - var$2 = 1; - break j; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 16, 2); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 16, 2); - } - if (var$2) { - $v = oncipj_Cypher_Variable($this); - $e = ju_ArrayList__init_(); - $p = ju_ArrayList__init_(); - m: while (true) { - $this.$jj_la = 2; - var$5 = $this.$token; - $this.$jj_scanpos = var$5; - $this.$jj_lastpos = var$5; - n: { - o: { - try { - var$6 = oncipj_Cypher_jj_3_54($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break o; - } else{ - $v = $$je; - break m; - } - } - oncipj_Cypher_jj_save($this, 53, 2); - break n; - } - try { - var$6 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - break m; - - } - oncipj_Cypher_jj_save($this, 53, 2); - } - if (var$6) { - var$5 = oncipj_Cypher_LabelOrRelType($this); - ju_ArrayList_add($e, onciaf_ASTFactory$StringPos__init_(var$5.$image, oncipj_Cypher_pos($this, var$5))); - } else { - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 105: - break; - default: - $this.$jj_la1.data[128] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $v = new oncipj_ParseException; - jl_Throwable__init_($v); - $rt_throw($v); - } - oncipj_Cypher_jj_consume_token($this, 105); - oncipj_Cypher_jj_consume_token($this, 137); - oncipj_Cypher_jj_consume_token($this, 213); - var$5 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - ju_ArrayList_add($p, var$5); - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 105: - break; - default: - $this.$jj_la1.data[129] = $this.$jj_gen; - return onciafn_Neo4jASTFactory_removeLabels($this.$astFactory, $v, $e, $p, 0); - } - } - oncipj_Cypher_jj_save($this, 53, 2); - $rt_throw($v); - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $v = oncipj_Cypher_Variable($this); - $e = ju_ArrayList__init_(); - $p = ju_ArrayList__init_(); - oncipj_Cypher_jj_consume_token($this, 197); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - p: { - switch (var$7) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$5 = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add($e, onciaf_ASTFactory$StringPos__init_(var$5.$image, oncipj_Cypher_pos($this, var$5))); - break p; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - case 137: - oncipj_Cypher_jj_consume_token($this, 137); - oncipj_Cypher_jj_consume_token($this, 213); - var$5 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - ju_ArrayList_add($p, var$5); - break p; - default: - } - $this.$jj_la1.data[130] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $v = new oncipj_ParseException; - jl_Throwable__init_($v); - $rt_throw($v); - } - q: while (true) { - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 105: - break; - default: - break q; - } - if (oncipj_Cypher_jj_2_55($this, 2)) { - var$5 = oncipj_Cypher_LabelOrRelType($this); - ju_ArrayList_add($e, onciaf_ASTFactory$StringPos__init_(var$5.$image, oncipj_Cypher_pos($this, var$5))); - continue; - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 105: - break; - default: - $this.$jj_la1.data[132] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $v = new oncipj_ParseException; - jl_Exception__init_($v); - $rt_throw($v); - } - oncipj_Cypher_jj_consume_token($this, 105); - oncipj_Cypher_jj_consume_token($this, 137); - oncipj_Cypher_jj_consume_token($this, 213); - var$5 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - ju_ArrayList_add($p, var$5); - } - $this.$jj_la1.data[131] = $this.$jj_gen; - return onciafn_Neo4jASTFactory_removeLabels($this.$astFactory, $v, $e, $p, 1); - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[35] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); -}, -oncipj_Cypher_MatchClause = $this => { - let $optionalT, $optional, $matchMode, $where, var$5, $t, var$7, $patterns, $hints, var$10, var$11, var$12, var$13, var$14, $$je; - $optionalT = null; - $optional = 0; - $matchMode = null; - $where = null; - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 245: - break; - default: - $this.$jj_la1.data[39] = $this.$jj_gen; - break a; - } - $optionalT = oncipj_Cypher_jj_consume_token($this, 245); - $optional = 1; - } - $t = oncipj_Cypher_jj_consume_token($this, 217); - $this.$jj_la = 2; - var$7 = $this.$token; - $this.$jj_scanpos = var$7; - $this.$jj_lastpos = var$7; - b: { - c: { - d: { - e: { - try { - var$5 = oncipj_Cypher_jj_3_18($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $optionalT = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 17, 2); - break b; - } - try { - var$5 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $optionalT = $$je; - - } - } - oncipj_Cypher_jj_save($this, 17, 2); - $rt_throw($optionalT); - } - oncipj_Cypher_jj_save($this, 17, 2); - } - if (var$5) - $matchMode = oncipj_Cypher_MatchMode($this); - $patterns = oncipj_Cypher_PatternList($this); - $hints = null; - f: while (true) { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 351: - break; - default: - $this.$jj_la1.data[44] = $this.$jj_gen; - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$10) { - case 359: - break; - default: - $this.$jj_la1.data[40] = $this.$jj_gen; - break g; - } - $where = oncipj_Cypher_WhereClause($this); - } - var$7 = $this.$astFactory; - if ($optionalT === null) - $optionalT = $t; - $optionalT = oncipj_Cypher_pos($this, $optionalT); - var$11 = oncipj_Cypher_pos($this, $t.$next5); - $patterns = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $patterns))); - var$12 = new onciafn_Neo4jASTFactory$matchClause$lambda$_15_0; - var$12.$_0890 = var$7; - var$12 = sci_List_map($patterns, var$12); - if ($matchMode === null) - $matchMode = oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, $optionalT); - $patterns = new oncia_Match; - var$7 = oncie_Pattern$ForMatch__init_(var$12, var$11); - var$11 = $hints === null ? sci_Nil$_MODULE$ : sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $hints))); - s_Option$_$callClinit(); - oncia_Match__init_($patterns, $optional, $matchMode, var$7, var$11, s_Option$_apply(s_Option$_MODULE$, $where), $optionalT); - return $patterns; - } - var$7 = oncipj_Cypher_jj_consume_token($this, 351); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$10) { - case 96: - oncipj_Cypher_jj_consume_token($this, 96); - oncipj_Cypher_jj_consume_token($this, 190); - var$7 = oncipj_Cypher_IndexHintBody($this, oncipcaf_HintIndexType_BTREE, oncipj_Cypher_pos($this, var$7)); - break h; - case 190: - break; - case 198: - oncipj_Cypher_jj_consume_token($this, 198); - oncipj_Cypher_jj_consume_token($this, 243); - var$12 = ju_ArrayList__init_(); - var$11 = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add(var$12, onciafn_Neo4jASTFactory_newVariable($this.$astFactory, oncipj_Cypher_pos($this, var$11), var$11.$image)); - i: while (true) { - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 107: - break; - default: - break i; - } - oncipj_Cypher_jj_consume_token($this, 107); - var$11 = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add(var$12, onciafn_Neo4jASTFactory_newVariable($this.$astFactory, oncipj_Cypher_pos($this, var$11), var$11.$image)); - } - $this.$jj_la1.data[276] = $this.$jj_gen; - var$11 = oncipj_Cypher_pos($this, var$7); - var$13 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$12))); - var$7 = oncia_UsingJoinHint__init_0(s_Option_getOrElse(onciu_NonEmptyList$IteratorConverter_asNonEmptyListOption(onciu_NonEmptyList$_IteratorConverter(onciu_NonEmptyList$_MODULE$, var$13.$iterator0())), new onciu_NonEmptyList$IterableConverter$toNonEmptyList$lambda$_1_0), var$11); - break h; - case 259: - oncipj_Cypher_jj_consume_token($this, 259); - oncipj_Cypher_jj_consume_token($this, 190); - var$7 = oncipj_Cypher_IndexHintBody($this, oncipcaf_HintIndexType_POINT, oncipj_Cypher_pos($this, var$7)); - break h; - case 274: - oncipj_Cypher_jj_consume_token($this, 274); - oncipj_Cypher_jj_consume_token($this, 190); - var$7 = oncipj_Cypher_IndexHintBody($this, oncipcaf_HintIndexType_RANGE, oncipj_Cypher_pos($this, var$7)); - break h; - case 298: - oncipj_Cypher_jj_consume_token($this, 298); - var$11 = oncipj_Cypher_Variable($this); - var$12 = oncipj_Cypher_LabelOrRelType($this); - var$13 = oncipj_Cypher_pos($this, var$7); - var$14 = var$12.$image; - var$7 = oncia_UsingScanHint__init_(var$11, oncie_LabelOrRelTypeName__init_(var$14, var$13), var$13); - break h; - case 326: - oncipj_Cypher_jj_consume_token($this, 326); - oncipj_Cypher_jj_consume_token($this, 190); - var$7 = oncipj_Cypher_IndexHintBody($this, oncipcaf_HintIndexType_TEXT, oncipj_Cypher_pos($this, var$7)); - break h; - default: - break f; - } - oncipj_Cypher_jj_consume_token($this, 190); - var$7 = oncipj_Cypher_IndexHintBody($this, oncipcaf_HintIndexType_ANY, oncipj_Cypher_pos($this, var$7)); - } - if ($hints === null) - $hints = ju_ArrayList__init_(); - ju_ArrayList_add($hints, var$7); - } - $this.$jj_la1.data[45] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $optionalT = new oncipj_ParseException; - jl_Throwable__init_($optionalT); - $rt_throw($optionalT); -}, -oncipj_Cypher_MatchMode = $this => { - let var$1, $t, $matchMode, var$4, $$je; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 139: - $t = oncipj_Cypher_jj_consume_token($this, 139); - $this.$jj_la = 2; - $matchMode = $this.$token; - $this.$jj_scanpos = $matchMode; - $this.$jj_lastpos = $matchMode; - b: { - c: { - d: { - e: { - try { - var$1 = oncipj_Cypher_jj_3_20($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $t = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 19, 2); - break b; - } - try { - var$1 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 19, 2); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 19, 2); - } - f: { - if (var$1) { - oncipj_Cypher_jj_consume_token($this, 283); - oncipj_Cypher_jj_consume_token($this, 89); - } else { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 283: - oncipj_Cypher_jj_consume_token($this, 283); - break f; - case 284: - oncipj_Cypher_jj_consume_token($this, 284); - break f; - default: - } - $this.$jj_la1.data[42] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - } - $matchMode = oncie_MatchMode$DifferentRelationships__init_(0, oncipj_Cypher_pos($this, $t)); - break a; - case 262: - $t = oncipj_Cypher_jj_consume_token($this, 262); - $this.$jj_la = 2; - $matchMode = $this.$token; - $this.$jj_scanpos = $matchMode; - $this.$jj_lastpos = $matchMode; - g: { - h: { - i: { - j: { - try { - var$1 = oncipj_Cypher_jj_3_19($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break j; - } else{ - $t = $$je; - break i; - } - } - oncipj_Cypher_jj_save($this, 18, 2); - break g; - } - try { - var$1 = 1; - break h; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 18, 2); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 18, 2); - } - k: { - if (var$1) { - oncipj_Cypher_jj_consume_token($this, 152); - oncipj_Cypher_jj_consume_token($this, 89); - } else { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 152: - break; - case 153: - oncipj_Cypher_jj_consume_token($this, 153); - break k; - default: - $this.$jj_la1.data[41] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - oncipj_Cypher_jj_consume_token($this, 152); - } - } - $matchMode = oncie_MatchMode$RepeatableElements__init_(oncipj_Cypher_pos($this, $t)); - break a; - default: - } - $this.$jj_la1.data[43] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - return $matchMode; -}, -oncipj_Cypher_IndexHintBody = ($this, $indexType, $p) => { - let $seek, $v, var$5, $labelOrRelType, $propNames, var$8, var$9, var$10, $$je; - $seek = 0; - $this.$jj_la = 2; - $v = $this.$token; - $this.$jj_scanpos = $v; - $this.$jj_lastpos = $v; - a: { - b: { - c: { - d: { - try { - var$5 = oncipj_Cypher_jj_3_21($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $indexType = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 20, 2); - break a; - } - try { - var$5 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $indexType = $$je; - - } - } - oncipj_Cypher_jj_save($this, 20, 2); - $rt_throw($indexType); - } - oncipj_Cypher_jj_save($this, 20, 2); - } - if (var$5) { - oncipj_Cypher_jj_consume_token($this, 304); - $seek = 1; - } - $v = oncipj_Cypher_Variable($this); - $labelOrRelType = oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 213); - $propNames = oncipj_Cypher_SymbolicNameList1($this); - oncipj_Cypher_jj_consume_token($this, 297); - $labelOrRelType = $labelOrRelType.$image; - var$8 = new oncia_UsingIndexHint; - var$9 = oncie_LabelOrRelTypeName__init_($labelOrRelType, $p); - $labelOrRelType = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $propNames))); - $propNames = new onciafn_Neo4jASTFactory$usingIndexHint$lambda$_16_0; - $propNames.$_0206 = $p; - $propNames = sci_List_map($labelOrRelType, $propNames); - var$10 = !$seek ? oncia_UsingIndexHint$SeekOrScan$_MODULE$ : oncia_UsingIndexHint$SeekOnly$_MODULE$; - if (jl_Enum_equals(oncipcaf_HintIndexType_ANY, $indexType)) - $indexType = oncia_UsingIndexHint$UsingAnyIndexType$_MODULE$; - else { - if (jl_Enum_equals(oncipcaf_HintIndexType_BTREE, $indexType)) - $rt_throw(onciafn_Neo4jASTConstructionException__init_0(oncipcaf_ASTExceptionFactory_invalidHintIndexType($indexType))); - if (jl_Enum_equals(oncipcaf_HintIndexType_TEXT, $indexType)) - $indexType = oncia_UsingIndexHint$UsingTextIndexType$_MODULE$; - else if (jl_Enum_equals(oncipcaf_HintIndexType_RANGE, $indexType)) - $indexType = oncia_UsingIndexHint$UsingRangeIndexType$_MODULE$; - else { - if (!jl_Enum_equals(oncipcaf_HintIndexType_POINT, $indexType)) - $rt_throw(s_MatchError__init_($indexType)); - $indexType = oncia_UsingIndexHint$UsingPointIndexType$_MODULE$; - } - } - oncia_UsingIndexHint__init_(var$8, $v, var$9, $propNames, var$10, $indexType, $p); - return var$8; -}, -oncipj_Cypher_MergeClause = $this => { - let $clauses, $positions, $actionTypes, $t, $p, var$6, $onToken; - $clauses = ju_ArrayList__init_(); - $positions = ju_ArrayList__init_(); - $actionTypes = ju_ArrayList__init_(); - $t = oncipj_Cypher_jj_consume_token($this, 218); - $p = oncipj_Cypher_Pattern($this); - a: while (true) { - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 243: - break; - default: - $this.$jj_la1.data[46] = $this.$jj_gen; - $onToken = $this.$astFactory; - $t = oncipj_Cypher_pos($this, $t); - if (!$rt_isInstance($p, oncie_NonPrefixedPatternPart)) { - if (!($p instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_($p)); - $rt_throw(onciafn_Neo4jASTFactory_pathSelectorCannotBeUsedInClauseException($onToken, $rt_s(4382), $p.$selector1)); - } - $onToken = $p; - $clauses = ju_AbstractList_iterator($clauses); - $positions = ju_AbstractList_iterator($positions); - $p = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $actionTypes))); - $actionTypes = new onciafn_Neo4jASTFactory$mergeClause$lambda$_34_0; - $actionTypes.$_01139 = $clauses; - $actionTypes.$_1381 = $positions; - return oncia_Merge__init_0($onToken, sci_List_map($p, $actionTypes), s_None$_MODULE$, $t); - } - $onToken = oncipj_Cypher_jj_consume_token($this, 243); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 119: - break; - case 217: - oncipj_Cypher_jj_consume_token($this, 217); - ju_ArrayList_add($clauses, oncipj_Cypher_SetClause($this)); - ju_ArrayList_add($actionTypes, onciaf_ASTFactory$MergeActionType_OnMatch); - ju_ArrayList_add($positions, oncipj_Cypher_pos($this, $onToken)); - continue a; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 119); - ju_ArrayList_add($clauses, oncipj_Cypher_SetClause($this)); - ju_ArrayList_add($actionTypes, onciaf_ASTFactory$MergeActionType_OnCreate); - ju_ArrayList_add($positions, oncipj_Cypher_pos($this, $onToken)); - } - $this.$jj_la1.data[47] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $clauses = new oncipj_ParseException; - jl_Throwable__init_($clauses); - $rt_throw($clauses); -}, -oncipj_Cypher_CallClause = $this => { - let $optionalT, $procedureResultPosition, $arguments, $yieldAll, $items, $where, $optional, var$8, $t, $namespace, $procedureNamePosition, $name, var$13, $x, var$15, var$16, $e; - $optionalT = null; - $procedureResultPosition = null; - $arguments = null; - $yieldAll = 0; - $items = null; - $where = null; - $optional = 0; - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 245: - break; - default: - $this.$jj_la1.data[48] = $this.$jj_gen; - break a; - } - $optionalT = oncipj_Cypher_jj_consume_token($this, 245); - $optional = 1; - } - $t = oncipj_Cypher_jj_consume_token($this, 99); - $namespace = oncipj_Cypher_Namespace($this); - $procedureNamePosition = $this.$token; - $name = (oncipj_Cypher_SymbolicNameString($this)).$image; - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$13) { - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - $arguments = ju_ArrayList__init_(); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_ArrayList_add($arguments, oncipj_Cypher_Expression($this)); - d: while (true) { - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - switch (var$13) { - case 107: - break; - default: - break d; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($arguments, oncipj_Cypher_Expression($this)); - } - $this.$jj_la1.data[49] = $this.$jj_gen; - break c; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[50] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 297); - break b; - default: - } - $this.$jj_la1.data[51] = $this.$jj_gen; - } - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$13) { - case 364: - $procedureResultPosition = oncipj_Cypher_jj_consume_token($this, 364); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $items = ju_ArrayList__init_(); - ju_ArrayList_add($items, oncipj_Cypher_ProcedureResultItem($this)); - f: while (true) { - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - switch (var$13) { - case 107: - break; - default: - break f; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($items, oncipj_Cypher_ProcedureResultItem($this)); - } - $this.$jj_la1.data[52] = $this.$jj_gen; - var$13 = $this.$jj_ntk; - if (var$13 == (-1)) - var$13 = oncipj_Cypher_jj_ntk_f($this); - switch (var$13) { - case 359: - break; - default: - $this.$jj_la1.data[53] = $this.$jj_gen; - break e; - } - $where = oncipj_Cypher_WhereClause($this); - break e; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - $yieldAll = 1; - break e; - default: - } - $this.$jj_la1.data[54] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $optionalT = new oncipj_ParseException; - jl_Throwable__init_($optionalT); - $rt_throw($optionalT); - default: - } - $this.$jj_la1.data[55] = $this.$jj_gen; - } - if ($optionalT === null) - $optionalT = $t; - $x = oncipj_Cypher_pos($this, $optionalT); - var$15 = oncipj_Cypher_pos($this, $t.$next5); - var$16 = oncipj_Cypher_pos($this, $procedureNamePosition.$next5); - $e = oncipj_Cypher_pos($this, $procedureResultPosition); - $t = new oncia_UnresolvedCall; - $procedureNamePosition = oncie_Namespace__init_0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $namespace))), var$15); - var$15 = oncie_ProcedureName__init_0($name, var$16); - var$16 = $arguments === null ? s_None$_MODULE$ : s_Some__init_(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $arguments)))); - s_Option$_$callClinit(); - $optionalT = s_Option$_apply(s_Option$_MODULE$, $items); - $procedureResultPosition = new onciafn_Neo4jASTFactory$callClause$lambda$_35_0; - $procedureResultPosition.$_0232 = $where; - $procedureResultPosition.$_189 = $e; - oncia_UnresolvedCall__init_($t, $procedureNamePosition, var$15, var$16, s_Option_map($optionalT, $procedureResultPosition), $yieldAll, $optional, $x); - return $t; -}, -oncipj_Cypher_ProcedureResultItem = $this => { - let $v, $t, var$3, var$4; - $v = null; - $t = oncipj_Cypher_SymbolicNameString($this); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 81: - break; - default: - $this.$jj_la1.data[56] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 81); - $v = oncipj_Cypher_Variable($this); - } - var$4 = oncipj_Cypher_pos($this, $t); - $t = $t.$image; - return $v === null ? oncia_ProcedureResultItem$_apply(oncia_ProcedureResultItem$_MODULE$, oncie_Variable__init_($t, var$4), var$4) : oncia_ProcedureResultItem$_apply0(oncia_ProcedureResultItem$_MODULE$, oncie_ProcedureOutput__init_($t, $v.$position4), $v, var$4); -}, -oncipj_Cypher_LoadCSVClause = $this => { - let $headers, $sep, $t, var$4, $source, $e, $v, var$8, $$je; - $headers = 0; - $sep = null; - $t = oncipj_Cypher_jj_consume_token($this, 210); - oncipj_Cypher_jj_consume_token($this, 120); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 360: - break; - default: - $this.$jj_la1.data[57] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 360); - oncipj_Cypher_jj_consume_token($this, 183); - $headers = 1; - } - oncipj_Cypher_jj_consume_token($this, 172); - b: { - try { - $source = oncipj_Cypher_Expression($this); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $e = $$je; - } else { - throw $$e; - } - } - $sep = new oncipj_ParseException; - $source = $e.$getMessage(); - $v = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($v); - $t = jl_StringBuilder_append($v, $rt_s(4383)); - jl_AbstractStringBuilder_append0($t, 32); - jl_StringBuilder_append($t, $source); - jl_Throwable__init_0($sep, jl_AbstractStringBuilder_toString($v)); - $rt_throw($sep); - } - oncipj_Cypher_jj_consume_token($this, 81); - $v = oncipj_Cypher_Variable($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$4) { - case 167: - break; - default: - $this.$jj_la1.data[58] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 167); - $sep = oncipj_Cypher_StringToken($this); - } - $t = oncipj_Cypher_pos($this, $t); - $sep = $sep !== null ? $sep.$image : null; - $source = $source; - oncia_LoadCSV$_$callClinit(); - $e = oncia_LoadCSV$_MODULE$; - s_Option$_$callClinit(); - $sep = s_Option$_apply(s_Option$_MODULE$, $sep); - var$8 = new onciafn_Neo4jASTFactory$loadCsvClause$lambda$_37_0; - var$8.$_065 = $t; - return oncia_LoadCSV$_fromUrl($e, $headers, $source, $v, s_Option_map($sep, var$8), $t); -}, -oncipj_Cypher_ForeachClause = $this => { - let $clauses, $t, var$3, $list, var$5; - $clauses = ju_ArrayList__init_(); - $t = oncipj_Cypher_jj_consume_token($this, 171); - oncipj_Cypher_jj_consume_token($this, 213); - var$3 = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 189); - $list = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 88); - a: while (true) { - ju_ArrayList_add($clauses, oncipj_Cypher_Clause($this)); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 99: - case 119: - case 131: - case 136: - case 168: - case 171: - case 194: - case 208: - case 210: - case 217: - case 218: - case 232: - case 242: - case 245: - case 249: - case 285: - case 291: - case 308: - case 316: - case 346: - case 348: - case 360: - break; - default: - break a; - } - } - $this.$jj_la1.data[59] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, 297); - $t = oncipj_Cypher_pos($this, $t); - return oncia_Foreach__init_0(var$3, $list, sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $clauses))), $t); -}, -oncipj_Cypher_SubqueryClause = $this => { - let $optionalT, $inTransactionsParams, $isImportingAll, $hasScope, $variables, $optional, var$7, $t, $q, $v, var$11, var$12, var$13, var$14, var$15, var$16, $$je; - $optionalT = null; - $inTransactionsParams = null; - $isImportingAll = 0; - $hasScope = 0; - $variables = ju_ArrayList__init_(); - $optional = 0; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$7) { - case 245: - break; - default: - $this.$jj_la1.data[60] = $this.$jj_gen; - break a; - } - $optionalT = oncipj_Cypher_jj_consume_token($this, 245); - $optional = 1; - } - $t = oncipj_Cypher_jj_consume_token($this, 99); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$7) { - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - $hasScope = 1; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$7) { - case 329: - break; - default: - $this.$jj_la1.data[63] = $this.$jj_gen; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_ArrayList_add($variables, oncipj_Cypher_Variable($this)); - d: while (true) { - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 107: - break; - default: - break d; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($variables, oncipj_Cypher_Variable($this)); - } - $this.$jj_la1.data[61] = $this.$jj_gen; - break c; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[62] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 329); - $isImportingAll = 1; - } - oncipj_Cypher_jj_consume_token($this, 297); - break b; - default: - } - $this.$jj_la1.data[64] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 205); - $q = oncipj_Cypher_RegularQuery($this); - oncipj_Cypher_jj_consume_token($this, 276); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$7) { - case 189: - $v = null; - var$11 = null; - var$12 = null; - var$13 = oncipj_Cypher_jj_consume_token($this, 189); - $this.$jj_la = 2; - $inTransactionsParams = $this.$token; - $this.$jj_scanpos = $inTransactionsParams; - $this.$jj_lastpos = $inTransactionsParams; - f: { - g: { - h: { - i: { - try { - var$7 = oncipj_Cypher_jj_3_22($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $optionalT = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 21, 2); - break f; - } - try { - var$7 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $optionalT = $$je; - - } - } - oncipj_Cypher_jj_save($this, 21, 2); - $rt_throw($optionalT); - } - oncipj_Cypher_jj_save($this, 21, 2); - } - j: { - if (var$7) { - $inTransactionsParams = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 112); - var$14 = onciafn_Neo4jASTFactory_subqueryInTransactionsConcurrencyParameters($this.$astFactory, oncipj_Cypher_pos($this, var$13), $inTransactionsParams); - } else { - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 112: - break; - default: - $this.$jj_la1.data[66] = $this.$jj_gen; - var$14 = null; - break j; - } - oncipj_Cypher_jj_consume_token($this, 112); - var$14 = onciafn_Neo4jASTFactory_subqueryInTransactionsConcurrencyParameters($this.$astFactory, oncipj_Cypher_pos($this, var$13), null); - } - } - $inTransactionsParams = oncipj_Cypher_jj_consume_token($this, 336); - k: while (true) { - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 241: - case 243: - case 287: - break; - default: - $this.$jj_la1.data[67] = $this.$jj_gen; - var$13 = oncipj_Cypher_pos($this, $inTransactionsParams); - $inTransactionsParams = new oncia_SubqueryCall$InTransactionsParameters; - s_Option$_$callClinit(); - oncia_SubqueryCall$InTransactionsParameters__init_($inTransactionsParams, s_Option$_apply(s_Option$_MODULE$, $v), s_Option$_apply(s_Option$_MODULE$, var$14), s_Option$_apply(s_Option$_MODULE$, var$11), s_Option$_apply(s_Option$_MODULE$, var$12), var$13); - break e; - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 241: - oncipj_Cypher_assertNotAlreadySet($this, $v, $inTransactionsParams, $rt_s(4384)); - $v = oncipj_Cypher_jj_consume_token($this, 241); - var$15 = oncipj_Cypher_Expression($this); - var$16 = $this.$jj_ntk; - if (var$16 == (-1)) - var$16 = oncipj_Cypher_jj_ntk_f($this); - l: { - switch (var$16) { - case 295: - break; - case 296: - oncipj_Cypher_jj_consume_token($this, 296); - break l; - default: - break k; - } - oncipj_Cypher_jj_consume_token($this, 295); - } - var$13 = oncipj_Cypher_pos($this, $v); - $v = oncia_SubqueryCall$InTransactionsBatchParameters__init_0(var$15, var$13); - continue k; - case 243: - break; - case 287: - oncipj_Cypher_assertNotAlreadySet($this, var$12, $inTransactionsParams, $rt_s(4385)); - var$13 = oncipj_Cypher_jj_consume_token($this, 287); - oncipj_Cypher_jj_consume_token($this, 319); - oncipj_Cypher_jj_consume_token($this, 81); - var$12 = oncia_SubqueryCall$InTransactionsReportParameters__init_0(oncipj_Cypher_Variable($this), oncipj_Cypher_pos($this, var$13)); - continue k; - default: - $this.$jj_la1.data[68] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $optionalT = new oncipj_ParseException; - jl_Throwable__init_($optionalT); - $rt_throw($optionalT); - } - oncipj_Cypher_assertNotAlreadySet($this, var$11, $inTransactionsParams, $rt_s(4386)); - var$11 = oncipj_Cypher_SubqueryInTransactionsErrorParameters($this); - } - $this.$jj_la1.data[69] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $optionalT = new oncipj_ParseException; - jl_Throwable__init_($optionalT); - $rt_throw($optionalT); - default: - } - $this.$jj_la1.data[65] = $this.$jj_gen; - } - $v = $this.$astFactory; - if ($optionalT !== null) - $t = $optionalT; - return onciafn_Neo4jASTFactory_subqueryClause($v, oncipj_Cypher_pos($this, $t), $q, $inTransactionsParams, $isImportingAll, $hasScope, $variables, $optional); -}, -oncipj_Cypher_SubqueryInTransactionsErrorParameters = $this => { - let $onErrorBehaviour, $t, var$3; - $onErrorBehaviour = oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_FAIL; - $t = oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 164); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 94: - oncipj_Cypher_jj_consume_token($this, 94); - $onErrorBehaviour = oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_BREAK; - break a; - case 117: - oncipj_Cypher_jj_consume_token($this, 117); - $onErrorBehaviour = oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_CONTINUE; - break a; - case 165: - oncipj_Cypher_jj_consume_token($this, 165); - break a; - default: - } - $this.$jj_la1.data[70] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $onErrorBehaviour = new oncipj_ParseException; - jl_Throwable__init_($onErrorBehaviour); - $rt_throw($onErrorBehaviour); - } - $t = oncipj_Cypher_pos($this, $t); - if (jl_Enum_equals(oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_CONTINUE, $onErrorBehaviour)) { - $onErrorBehaviour = new oncia_SubqueryCall$InTransactionsErrorParameters; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_$callClinit(); - oncia_SubqueryCall$InTransactionsErrorParameters__init_($onErrorBehaviour, oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$, $t); - } else if (jl_Enum_equals(oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_BREAK, $onErrorBehaviour)) { - $onErrorBehaviour = new oncia_SubqueryCall$InTransactionsErrorParameters; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_$callClinit(); - oncia_SubqueryCall$InTransactionsErrorParameters__init_($onErrorBehaviour, oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$, $t); - } else { - if (!jl_Enum_equals(oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_FAIL, $onErrorBehaviour)) - $rt_throw(s_MatchError__init_($onErrorBehaviour)); - $onErrorBehaviour = new oncia_SubqueryCall$InTransactionsErrorParameters; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit(); - oncia_SubqueryCall$InTransactionsErrorParameters__init_($onErrorBehaviour, oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$, $t); - } - return $onErrorBehaviour; -}, -oncipj_Cypher_OrderBySkipLimitClause = $this => { - let $orderPos, $skipPos, $limitPos, $skip, $limit, $order, var$7, var$8, var$9, var$10, var$11, var$12, var$13; - $orderPos = null; - $skipPos = null; - $limitPos = null; - $skip = null; - $limit = null; - $order = ju_ArrayList__init_(); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$7) { - case 208: - $limitPos = $this.$token.$next5; - $limit = oncipj_Cypher_Limit($this); - var$8 = $limitPos; - break a; - case 242: - case 316: - $skipPos = $this.$token.$next5; - $skip = oncipj_Cypher_Skip($this); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 208: - break; - default: - $this.$jj_la1.data[74] = $this.$jj_gen; - var$8 = $skipPos; - break a; - } - $limitPos = $this.$token.$next5; - $limit = oncipj_Cypher_Limit($this); - var$8 = $skipPos; - break a; - case 249: - var$8 = oncipj_Cypher_jj_consume_token($this, 249); - oncipj_Cypher_jj_consume_token($this, 98); - ju_ArrayList_add($order, oncipj_Cypher_OrderItem($this)); - b: while (true) { - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 107: - break; - default: - break b; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($order, oncipj_Cypher_OrderItem($this)); - } - $this.$jj_la1.data[71] = $this.$jj_gen; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$7) { - case 242: - case 316: - break; - default: - $this.$jj_la1.data[72] = $this.$jj_gen; - break c; - } - $skipPos = $this.$token.$next5; - $skip = oncipj_Cypher_Skip($this); - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 208: - break; - default: - $this.$jj_la1.data[73] = $this.$jj_gen; - $orderPos = var$8; - break a; - } - $limitPos = $this.$token.$next5; - $limit = oncipj_Cypher_Limit($this); - $orderPos = var$8; - break a; - default: - } - $this.$jj_la1.data[75] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $orderPos = new oncipj_ParseException; - jl_Throwable__init_($orderPos); - $rt_throw($orderPos); - } - var$8 = oncipj_Cypher_pos($this, var$8); - $orderPos = oncipj_Cypher_pos($this, $orderPos); - $skipPos = oncipj_Cypher_pos($this, $skipPos); - var$9 = oncipj_Cypher_pos($this, $limitPos); - var$10 = $skip; - var$11 = $limit; - var$12 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $order))); - $limitPos = new oncia_With; - var$13 = new oncia_ReturnItems; - s_package$_$callClinit(); - $skip = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_(var$13, 1, $skip, s_None$_MODULE$, var$8); - $skip = ju_AbstractCollection_isEmpty($order) ? s_None$_MODULE$ : s_Some__init_(oncia_OrderBy__init_(var$12, $orderPos)); - s_Option$_$callClinit(); - $orderPos = s_Option$_apply(s_Option$_MODULE$, var$10); - $limit = new onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_0; - $limit.$_0215 = $skipPos; - $limit = s_Option_map($orderPos, $limit); - $skipPos = s_Option$_apply(s_Option$_MODULE$, var$11); - $orderPos = new onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_1; - $orderPos.$_0706 = var$9; - var$12 = s_Option_map($skipPos, $orderPos); - $orderPos = s_None$_MODULE$; - oncia_With$_$callClinit(); - oncia_With__init_($limitPos, 0, var$13, $skip, $limit, var$12, $orderPos, oncia_DefaultWith$_MODULE$, var$8); - return $limitPos; -}, -oncipj_Cypher_PatternList = $this => { - let $patterns, var$2; - $patterns = ju_ArrayList__init_(); - ju_ArrayList_add($patterns, oncipj_Cypher_Pattern($this)); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 107: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($patterns, oncipj_Cypher_Pattern($this)); - } - $this.$jj_la1.data[76] = $this.$jj_gen; - return $patterns; -}, -oncipj_Cypher_Pattern = $this => { - let $v, $s, $p, var$4, var$5, var$6, $$je; - $v = null; - $s = null; - $this.$jj_la = 2; - $p = $this.$token; - $this.$jj_scanpos = $p; - $this.$jj_lastpos = $p; - a: { - b: { - c: { - d: { - try { - var$4 = oncipj_Cypher_jj_3_23($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $v = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 22, 2); - break a; - } - try { - var$4 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 22, 2); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 22, 2); - } - e: { - if (!var$4) { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 76: - case 79: - case 312: - break; - default: - $this.$jj_la1.data[79] = $this.$jj_gen; - break e; - } - $s = oncipj_Cypher_Selector($this); - } else { - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 158); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 76: - case 79: - case 312: - break; - default: - $this.$jj_la1.data[78] = $this.$jj_gen; - break e; - } - $s = oncipj_Cypher_Selector($this); - } - } - $this.$jj_la = 3; - $p = $this.$token; - $this.$jj_scanpos = $p; - $this.$jj_lastpos = $p; - f: { - g: { - h: { - i: { - try { - var$4 = oncipj_Cypher_jj_3_26($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $v = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 25, 3); - break f; - } - try { - var$4 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 25, 3); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 25, 3); - } - j: { - if (var$4) - $p = oncipj_Cypher_ShortestPathPattern($this); - else { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 213: - $p = oncipj_Cypher_PatternElement($this); - $p = onciafn_Neo4jASTFactory_pathPattern($this.$astFactory, $p); - break j; - default: - } - $this.$jj_la1.data[83] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $v = new oncipj_ParseException; - jl_Throwable__init_($v); - $rt_throw($v); - } - } - var$6 = $v === null ? $p : oncie_NamedPatternPart__init_($v, $p, $v.$position4); - if ($s === null) - $v = var$6; - else { - if (!$rt_isInstance(var$6, oncie_NonPrefixedPatternPart)) { - if (!(var$6 instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_(var$6)); - $v = var$6; - $s = new jl_IllegalArgumentException; - $p = jl_Class_getSimpleName(jl_Object_getClass($v)); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(4387)), $p), $rt_s(4388)), $v); - jl_Throwable__init_0($s, jl_AbstractStringBuilder_toString(var$6)); - $rt_throw($s); - } - $v = oncie_PatternPartWithSelector__init_($s, var$6); - } - return $v; -}; -let oncipj_Cypher_InsertPattern = $this => { - let $errorStart, $patternAtoms, var$3, var$4, var$5, $$je; - $errorStart = null; - ju_ArrayList__init_0(new ju_ArrayList); - $this.$jj_la = 2; - $patternAtoms = $this.$token; - $this.$jj_scanpos = $patternAtoms; - $this.$jj_lastpos = $patternAtoms; - a: { - b: { - c: { - d: { - try { - var$3 = oncipj_Cypher_jj_3_24($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $errorStart = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 23, 2); - break a; - } - try { - var$3 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $errorStart = $$je; - - } - } - oncipj_Cypher_jj_save($this, 23, 2); - $rt_throw($errorStart); - } - oncipj_Cypher_jj_save($this, 23, 2); - } - if (var$3) { - $errorStart = oncipj_Cypher_SymbolicNameString($this); - oncipj_Cypher_jj_consume_token($this, 158); - } - $patternAtoms = ju_ArrayList__init_(); - ju_ArrayList_add($patternAtoms, oncipj_Cypher_InsertNodePattern($this)); - e: while (true) { - $this.$jj_la = 2; - var$4 = $this.$token; - $this.$jj_scanpos = var$4; - $this.$jj_lastpos = var$4; - f: { - g: { - try { - var$3 = oncipj_Cypher_jj_3_29($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break g; - } else{ - $errorStart = $$je; - break e; - } - } - oncipj_Cypher_jj_save($this, 28, 2); - break f; - } - try { - var$3 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $errorStart = $$je; - break e; - - } - oncipj_Cypher_jj_save($this, 28, 2); - } - if (!var$3) { - if ($errorStart === null) { - $errorStart = $this.$astFactory; - return oncie_PathPatternPart__init_(onciafn_Neo4jASTFactory_getPatternElement($errorStart, $patternAtoms)); - } - var$4 = $this.$exceptionFactory1; - var$5 = new oncipj_ParseException; - jl_Throwable__init_0(var$5, $rt_s(4389)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException(var$4, var$5, $errorStart.$beginOffset, $errorStart.$beginLine, $errorStart.$beginColumn)); - } - ju_ArrayList_add($patternAtoms, oncipj_Cypher_InsertRelationshipPattern($this)); - ju_ArrayList_add($patternAtoms, oncipj_Cypher_InsertNodePattern($this)); - } - oncipj_Cypher_jj_save($this, 28, 2); - $rt_throw($errorStart); -}, -oncipj_Cypher_Quantifier = $this => { - let $l, $u, $range, var$4, var$5, var$6, var$7, var$8, var$9, $$je; - $l = null; - $u = null; - $this.$jj_la = 3; - $range = $this.$token; - $this.$jj_scanpos = $range; - $this.$jj_lastpos = $range; - a: { - b: { - c: { - d: { - try { - var$4 = oncipj_Cypher_jj_3_25($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $l = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 24, 3); - break a; - } - try { - var$4 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $l = $$je; - - } - } - oncipj_Cypher_jj_save($this, 24, 3); - $rt_throw($l); - } - oncipj_Cypher_jj_save($this, 24, 3); - } - if (var$4) { - $range = oncipj_Cypher_jj_consume_token($this, 205); - $l = oncipj_Cypher_jj_consume_token($this, 36); - oncipj_Cypher_jj_consume_token($this, 276); - $u = oncipj_Cypher_pos($this, $range); - $range = oncipj_Cypher_pos($this, $l); - $l = $l.$image; - return oncie_FixedQuantifier__init_0(oncie_UnsignedDecimalIntegerLiteral__init_($l, $range), $u); - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 205: - $range = oncipj_Cypher_jj_consume_token($this, 205); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$5) { - case 36: - break; - default: - $this.$jj_la1.data[80] = $this.$jj_gen; - break e; - } - $l = oncipj_Cypher_jj_consume_token($this, 36); - } - oncipj_Cypher_jj_consume_token($this, 107); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$5) { - case 36: - break; - default: - $this.$jj_la1.data[81] = $this.$jj_gen; - break f; - } - $u = oncipj_Cypher_jj_consume_token($this, 36); - } - oncipj_Cypher_jj_consume_token($this, 276); - $range = oncipj_Cypher_pos($this, $range); - var$6 = oncipj_Cypher_pos($this, $l); - var$7 = oncipj_Cypher_pos($this, $u); - var$8 = $l !== null ? $l.$image : null; - var$9 = $u !== null ? $u.$image : null; - return oncie_IntervalQuantifier__init_(var$8 === null ? s_None$_MODULE$ : s_Some__init_(oncie_UnsignedDecimalIntegerLiteral__init_(var$8, var$6)), var$9 === null ? s_None$_MODULE$ : s_Some__init_(oncie_UnsignedDecimalIntegerLiteral__init_(var$9, var$7)), $range); - case 257: - break; - case 329: - return oncie_StarQuantifier__init_(oncipj_Cypher_pos($this, oncipj_Cypher_jj_consume_token($this, 329))); - default: - $this.$jj_la1.data[82] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $l = new oncipj_ParseException; - jl_Throwable__init_($l); - $rt_throw($l); - } - return oncie_PlusQuantifier__init_(oncipj_Cypher_pos($this, oncipj_Cypher_jj_consume_token($this, 257))); -}, -oncipj_Cypher_ShortestPathPattern = $this => { - let var$1, $t, $pe; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - switch (var$1) { - case 75: - $t = oncipj_Cypher_jj_consume_token($this, 75); - oncipj_Cypher_jj_consume_token($this, 213); - $pe = oncipj_Cypher_PatternElement($this); - oncipj_Cypher_jj_consume_token($this, 297); - return oncie_ShortestPathsPatternPart__init_($pe, 0, oncipj_Cypher_pos($this, $t)); - case 311: - $t = oncipj_Cypher_jj_consume_token($this, 311); - oncipj_Cypher_jj_consume_token($this, 213); - $pe = oncipj_Cypher_PatternElement($this); - oncipj_Cypher_jj_consume_token($this, 297); - return oncie_ShortestPathsPatternPart__init_($pe, 1, oncipj_Cypher_pos($this, $t)); - default: - } - $this.$jj_la1.data[84] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); -}, -oncipj_Cypher_PatternElement = $this => { - let $patternAtoms, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, $$je; - ju_ArrayList__init_0(new ju_ArrayList); - $patternAtoms = ju_ArrayList__init_(); - ju_Stack_push($this.$labelExpressionStack, oncipj_ExpectBar_DO_NOT_EXPECT_BAR); - a: { - b: while (true) { - $this.$jj_la = 3; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - c: { - d: { - try { - var$3 = oncipj_Cypher_jj_3_28($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $patternAtoms = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 27, 3); - break c; - } - try { - var$3 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $patternAtoms = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 27, 3); - } - e: { - if (var$3) { - ju_ArrayList_add($patternAtoms, oncipj_Cypher_NodePattern($this)); - while (true) { - $this.$jj_la = 2; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - f: { - g: { - try { - var$3 = oncipj_Cypher_jj_3_27($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break g; - } else{ - $patternAtoms = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 26, 2); - break f; - } - try { - var$3 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $patternAtoms = $$je; - break b; - - } - oncipj_Cypher_jj_save($this, 26, 2); - } - if (!var$3) - break e; - var$4 = null; - var$2 = oncipj_Cypher_RelationshipPattern($this); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$3) { - case 205: - case 257: - case 329: - break; - default: - $this.$jj_la1.data[85] = $this.$jj_gen; - break h; - } - var$4 = oncipj_Cypher_Quantifier($this); - } - if (var$4 !== null) { - var$5 = $this.$astFactory; - var$6 = var$2.$position8; - var$7 = new oncie_PathPatternPart; - var$8 = new oncie_RelationshipChain; - var$9 = new oncie_NodePattern; - var$10 = s_None$_MODULE$; - oncie_NodePattern__init_(var$9, var$10, var$10, var$10, var$10, var$6); - var$10 = new oncie_NodePattern; - var$11 = s_None$_MODULE$; - oncie_NodePattern__init_(var$10, var$11, var$11, var$11, var$11, var$6); - oncie_RelationshipChain__init_0(var$8, var$9, var$2, var$10, var$6); - oncie_PathPatternPart__init_0(var$7, var$8); - var$2 = onciafn_Neo4jASTFactory_parenthesizedPathPattern(var$5, var$6, var$7, null, var$4); - } - ju_ArrayList_add($patternAtoms, var$2); - ju_ArrayList_add($patternAtoms, oncipj_Cypher_NodePattern($this)); - } - } - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 213: - break; - default: - $this.$jj_la1.data[86] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $patternAtoms = new oncipj_ParseException; - jl_Throwable__init_($patternAtoms); - $rt_throw($patternAtoms); - } - var$2 = null; - var$7 = null; - var$10 = oncipj_Cypher_jj_consume_token($this, 213); - var$11 = oncipj_Cypher_Pattern($this); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$12) { - case 359: - break; - default: - $this.$jj_la1.data[121] = $this.$jj_gen; - break i; - } - oncipj_Cypher_jj_consume_token($this, 359); - var$2 = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 297); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$12) { - case 205: - case 257: - case 329: - break; - default: - $this.$jj_la1.data[122] = $this.$jj_gen; - break j; - } - var$7 = oncipj_Cypher_Quantifier($this); - } - ju_ArrayList_add($patternAtoms, onciafn_Neo4jASTFactory_parenthesizedPathPattern($this.$astFactory, oncipj_Cypher_pos($this, var$10), var$11, var$2, var$7)); - } - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 213: - break; - default: - $this.$jj_la1.data[87] = $this.$jj_gen; - ju_Stack_pop($this.$labelExpressionStack); - return onciafn_Neo4jASTFactory_getPatternElement($this.$astFactory, $patternAtoms); - } - } - oncipj_Cypher_jj_save($this, 26, 2); - $rt_throw($patternAtoms); - } - oncipj_Cypher_jj_save($this, 27, 3); - $rt_throw($patternAtoms); -}, -oncipj_Cypher_Selector = $this => { - let $k, $s, var$3; - a: { - $k = null; - if (oncipj_Cypher_jj_2_30($this, 2)) { - $s = oncipj_Cypher_jj_consume_token($this, 79); - oncipj_Cypher_jj_consume_token($this, 312); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$3) { - case 253: - case 254: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 253: - oncipj_Cypher_jj_consume_token($this, 253); - break b; - case 254: - oncipj_Cypher_jj_consume_token($this, 254); - break b; - default: - } - $this.$jj_la1.data[88] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[89] = $this.$jj_gen; - } - $k = onciafn_Neo4jASTFactory_anyShortestPathSelector($this.$astFactory, null, null, oncipj_Cypher_pos($this, $s)); - } else if (oncipj_Cypher_jj_2_31($this, 2)) { - $s = oncipj_Cypher_jj_consume_token($this, 76); - oncipj_Cypher_jj_consume_token($this, 312); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$3) { - case 253: - case 254: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 253: - break; - case 254: - oncipj_Cypher_jj_consume_token($this, 254); - break c; - default: - $this.$jj_la1.data[90] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 253); - break c; - default: - } - $this.$jj_la1.data[91] = $this.$jj_gen; - } - $k = onciafn_Neo4jASTFactory_allShortestPathSelector($this.$astFactory, oncipj_Cypher_pos($this, $s)); - } else if (oncipj_Cypher_jj_2_32($this, 2)) { - $s = oncipj_Cypher_jj_consume_token($this, 79); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$3) { - case 36: - break; - default: - $this.$jj_la1.data[92] = $this.$jj_gen; - break d; - } - $k = oncipj_Cypher_jj_consume_token($this, 36); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$3) { - case 253: - case 254: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 253: - oncipj_Cypher_jj_consume_token($this, 253); - break e; - case 254: - oncipj_Cypher_jj_consume_token($this, 254); - break e; - default: - } - $this.$jj_la1.data[93] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[94] = $this.$jj_gen; - } - $k = onciafn_Neo4jASTFactory_anyPathSelector($this.$astFactory, $k === null ? null : $k.$image, oncipj_Cypher_pos($this, $k), oncipj_Cypher_pos($this, $s)); - } else if (oncipj_Cypher_jj_2_33($this, 2)) { - $s = oncipj_Cypher_jj_consume_token($this, 76); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$3) { - case 253: - case 254: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 253: - break; - case 254: - oncipj_Cypher_jj_consume_token($this, 254); - break f; - default: - $this.$jj_la1.data[95] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 253); - break f; - default: - } - $this.$jj_la1.data[96] = $this.$jj_gen; - } - $k = onciafn_Neo4jASTFactory_allPathSelector0($this.$astFactory, oncipj_Cypher_pos($this, $s)); - } else { - if (!oncipj_Cypher_jj_2_34($this, 4)) { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 312: - $s = oncipj_Cypher_jj_consume_token($this, 312); - $k = oncipj_Cypher_jj_consume_token($this, 36); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$3) { - case 253: - case 254: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 253: - oncipj_Cypher_jj_consume_token($this, 253); - break g; - case 254: - oncipj_Cypher_jj_consume_token($this, 254); - break g; - default: - } - $this.$jj_la1.data[101] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[102] = $this.$jj_gen; - } - $k = onciafn_Neo4jASTFactory_anyShortestPathSelector($this.$astFactory, $k.$image, oncipj_Cypher_pos($this, $k), oncipj_Cypher_pos($this, $s)); - break a; - default: - } - $this.$jj_la1.data[103] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $s = oncipj_Cypher_jj_consume_token($this, 312); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$3) { - case 36: - break; - default: - $this.$jj_la1.data[97] = $this.$jj_gen; - break h; - } - $k = oncipj_Cypher_jj_consume_token($this, 36); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$3) { - case 253: - case 254: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 253: - oncipj_Cypher_jj_consume_token($this, 253); - break i; - case 254: - oncipj_Cypher_jj_consume_token($this, 254); - break i; - default: - } - $this.$jj_la1.data[98] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[99] = $this.$jj_gen; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$3) { - case 180: - oncipj_Cypher_jj_consume_token($this, 180); - break j; - case 181: - oncipj_Cypher_jj_consume_token($this, 181); - break j; - default: - } - $this.$jj_la1.data[100] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $k = onciafn_Neo4jASTFactory_shortestGroupsSelector($this.$astFactory, $k === null ? null : $k.$image, oncipj_Cypher_pos($this, $k), oncipj_Cypher_pos($this, $s)); - } - } - return $k; -}, -oncipj_Cypher_PathPatternNonEmpty = $this => { - let $patternAtoms, $n, var$3, $$je; - $patternAtoms = ju_ArrayList__init_(); - ju_Stack_push($this.$labelExpressionStack, oncipj_ExpectBar_DO_NOT_EXPECT_BAR); - ju_ArrayList_add($patternAtoms, oncipj_Cypher_NodePattern($this)); - a: while (true) { - ju_ArrayList_add($patternAtoms, oncipj_Cypher_RelationshipPattern($this)); - ju_ArrayList_add($patternAtoms, oncipj_Cypher_NodePattern($this)); - $this.$jj_la = 2; - $n = $this.$token; - $this.$jj_scanpos = $n; - $this.$jj_lastpos = $n; - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_35($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - $patternAtoms = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 34, 2); - break b; - } - try { - var$3 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $patternAtoms = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 34, 2); - } - if (!var$3) { - ju_Stack_pop($this.$labelExpressionStack); - $n = $this.$astFactory; - return onciafn_Neo4jASTFactory_pathPattern($n, onciafn_Neo4jASTFactory_getPatternElement($n, $patternAtoms)); - } - } - oncipj_Cypher_jj_save($this, 34, 2); - $rt_throw($patternAtoms); -}, -oncipj_Cypher_NodePattern = $this => { - let $t, $n, var$3, var$4, var$5, var$6, var$7, $$je; - $t = oncipj_Cypher_jj_consume_token($this, 213); - $this.$jj_la = 2147483647; - $n = $this.$token; - $this.$jj_scanpos = $n; - $this.$jj_lastpos = $n; - a: { - b: { - c: { - d: { - try { - var$3 = oncipj_Cypher_jj_3_36($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 35, 2147483647); - break a; - } - try { - var$3 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 35, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 35, 2147483647); - } - e: { - if (var$3) { - oncipj_Cypher_jj_consume_token($this, 297); - $n = onciafn_Neo4jASTFactory_nodePattern($this.$astFactory, oncipj_Cypher_pos($this, $t), null, null, null, null); - } else { - $this.$jj_la = 2147483647; - $n = $this.$token; - $this.$jj_scanpos = $n; - $this.$jj_lastpos = $n; - f: { - g: { - h: { - i: { - try { - var$3 = oncipj_Cypher_jj_3_37($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $t = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 36, 2147483647); - break f; - } - try { - var$3 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 36, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 36, 2147483647); - } - if (var$3) { - var$4 = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 297); - $n = onciafn_Neo4jASTFactory_nodePattern($this.$astFactory, oncipj_Cypher_pos($this, $t), var$4, null, null, null); - } else { - $this.$jj_la = 2147483647; - $n = $this.$token; - $this.$jj_scanpos = $n; - $this.$jj_lastpos = $n; - j: { - k: { - l: { - m: { - try { - var$3 = oncipj_Cypher_jj_3_38($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break m; - } else{ - $t = $$je; - break l; - } - } - oncipj_Cypher_jj_save($this, 37, 2147483647); - break j; - } - try { - var$3 = 1; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 37, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 37, 2147483647); - } - if (var$3) { - $n = null; - var$5 = null; - var$4 = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_NODE); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - n: { - switch (var$6) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[105] = $this.$jj_gen; - break n; - } - $n = oncipj_Cypher_Properties($this); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - o: { - switch (var$6) { - case 359: - break; - default: - $this.$jj_la1.data[106] = $this.$jj_gen; - break o; - } - oncipj_Cypher_jj_consume_token($this, 359); - var$5 = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 297); - $n = onciafn_Neo4jASTFactory_nodePattern($this.$astFactory, oncipj_Cypher_pos($this, $t), null, var$4, $n, var$5); - } else { - $this.$jj_la = 2147483647; - $n = $this.$token; - $this.$jj_scanpos = $n; - $this.$jj_lastpos = $n; - p: { - q: { - r: { - s: { - try { - var$3 = oncipj_Cypher_jj_3_39($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break s; - } else{ - $t = $$je; - break r; - } - } - oncipj_Cypher_jj_save($this, 38, 2147483647); - break p; - } - try { - var$3 = 1; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 38, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 38, 2147483647); - } - if (var$3) { - $n = null; - var$5 = null; - var$4 = oncipj_Cypher_Variable($this); - var$7 = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_NODE); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - t: { - switch (var$6) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[107] = $this.$jj_gen; - break t; - } - $n = oncipj_Cypher_Properties($this); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - u: { - switch (var$6) { - case 359: - break; - default: - $this.$jj_la1.data[108] = $this.$jj_gen; - break u; - } - oncipj_Cypher_jj_consume_token($this, 359); - var$5 = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 297); - $n = onciafn_Neo4jASTFactory_nodePattern($this.$astFactory, oncipj_Cypher_pos($this, $t), var$4, var$7, $n, var$5); - } else { - $this.$jj_la = 2147483647; - $n = $this.$token; - $this.$jj_scanpos = $n; - $this.$jj_lastpos = $n; - v: { - w: { - x: { - y: { - try { - var$3 = oncipj_Cypher_jj_3_40($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break y; - } else{ - $t = $$je; - break x; - } - } - oncipj_Cypher_jj_save($this, 39, 2147483647); - break v; - } - try { - var$3 = 1; - break w; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 39, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 39, 2147483647); - } - if (!var$3) { - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - z: { - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break z; - default: - break z; - } - $n = oncipj_Cypher_NodePatternComplex($this, $t); - break e; - } - $this.$jj_la1.data[104] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - $n = null; - var$5 = oncipj_Cypher_Properties($this); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - ba: { - switch (var$3) { - case 359: - break; - default: - $this.$jj_la1.data[109] = $this.$jj_gen; - break ba; - } - oncipj_Cypher_jj_consume_token($this, 359); - $n = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 297); - $n = onciafn_Neo4jASTFactory_nodePattern($this.$astFactory, oncipj_Cypher_pos($this, $t), null, null, var$5, $n); - } - } - } - } - } - return $n; -}, -oncipj_Cypher_NodePatternComplex = ($this, $t) => { - let $v, $labelExpression, $properties, $predicate, var$6, var$7, var$8, var$9, $$je; - $v = null; - $labelExpression = null; - $properties = null; - $predicate = null; - $this.$jj_la = 2147483647; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - a: { - b: { - c: { - d: { - try { - var$7 = oncipj_Cypher_jj_3_41($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 40, 2147483647); - break a; - } - try { - var$7 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 40, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 40, 2147483647); - } - e: { - if (var$7) { - $labelExpression = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_NODE); - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else { - $this.$jj_la = 2147483647; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - f: { - g: { - h: { - i: { - try { - var$8 = oncipj_Cypher_jj_3_42($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $t = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 41, 2147483647); - break f; - } - try { - var$8 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 41, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 41, 2147483647); - } - if (var$8) { - $labelExpression = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_NODE); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$9) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[110] = $this.$jj_gen; - break j; - } - $properties = oncipj_Cypher_Properties($this); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - break; - default: - $this.$jj_la1.data[111] = $this.$jj_gen; - break e; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else { - $this.$jj_la = 3; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - k: { - l: { - m: { - n: { - try { - var$8 = oncipj_Cypher_jj_3_43($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break n; - } else{ - $t = $$je; - break m; - } - } - oncipj_Cypher_jj_save($this, 42, 3); - break k; - } - try { - var$8 = 1; - break l; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 42, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 42, 3); - } - if (var$8) { - $v = oncipj_Cypher_Variable($this); - $properties = oncipj_Cypher_Properties($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - break; - default: - $this.$jj_la1.data[112] = $this.$jj_gen; - break e; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else { - $this.$jj_la = 2147483647; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - o: { - p: { - q: { - r: { - try { - var$8 = oncipj_Cypher_jj_3_44($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break r; - } else{ - $t = $$je; - break q; - } - } - oncipj_Cypher_jj_save($this, 43, 2147483647); - break o; - } - try { - var$8 = 1; - break p; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 43, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 43, 2147483647); - } - if (var$8) { - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else { - $this.$jj_la = 2147483647; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - s: { - t: { - u: { - v: { - try { - var$8 = oncipj_Cypher_jj_3_45($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break v; - } else{ - $t = $$je; - break u; - } - } - oncipj_Cypher_jj_save($this, 44, 2147483647); - break s; - } - try { - var$8 = 1; - break t; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 44, 2147483647); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 44, 2147483647); - } - if (var$8) { - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else { - $this.$jj_la = 3; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - w: { - x: { - y: { - z: { - try { - var$8 = oncipj_Cypher_jj_3_46($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break z; - } else{ - $t = $$je; - break y; - } - } - oncipj_Cypher_jj_save($this, 45, 3); - break w; - } - try { - var$8 = 1; - break x; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 45, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 45, 3); - } - if (!var$8) { - if (!oncipj_Cypher_jj_2_47($this, 2147483647)) { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 105: - case 197: - $labelExpression = oncipj_Cypher_LabelExpression($this, onciafn_Neo4jASTFactory_nodeType($this.$astFactory)); - break e; - default: - } - $this.$jj_la1.data[116] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $labelExpression = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_NODE); - $properties = oncipj_Cypher_Properties($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - break; - default: - $this.$jj_la1.data[115] = $this.$jj_gen; - break e; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else { - $v = oncipj_Cypher_Variable($this); - $labelExpression = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_NODE); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - ba: { - switch (var$9) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[113] = $this.$jj_gen; - break ba; - } - $properties = oncipj_Cypher_Properties($this); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - break; - default: - $this.$jj_la1.data[114] = $this.$jj_gen; - break e; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } - } - } - } - } - } - } - oncipj_Cypher_jj_consume_token($this, 297); - return onciafn_Neo4jASTFactory_nodePattern($this.$astFactory, oncipj_Cypher_pos($this, $t), $v, $labelExpression, $properties, $predicate); -}, -oncipj_Cypher_InsertNodePattern = $this => { - let $v, $labelExpression, $properties, $t, var$5, var$6, var$7, var$8, $$je; - $v = null; - $labelExpression = null; - $properties = null; - $t = oncipj_Cypher_jj_consume_token($this, 213); - $this.$jj_la = 3; - var$5 = $this.$token; - $this.$jj_scanpos = var$5; - $this.$jj_lastpos = var$5; - a: { - b: { - c: { - d: { - try { - var$6 = oncipj_Cypher_jj_3_48($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $v = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 47, 3); - break a; - } - try { - var$6 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 47, 3); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 47, 3); - } - e: { - if (var$6) { - $v = oncipj_Cypher_Variable($this); - $labelExpression = oncipj_Cypher_InsertNodeLabelExpression($this); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 205: - break; - default: - $this.$jj_la1.data[117] = $this.$jj_gen; - break e; - } - $properties = oncipj_Cypher_MapLiteral($this); - } else { - $this.$jj_la = 2; - var$5 = $this.$token; - $this.$jj_scanpos = var$5; - $this.$jj_lastpos = var$5; - f: { - g: { - h: { - i: { - try { - var$8 = oncipj_Cypher_jj_3_49($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $v = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 48, 2); - break f; - } - try { - var$8 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 48, 2); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 48, 2); - } - if (var$8) { - $v = oncipj_Cypher_Variable($this); - $properties = oncipj_Cypher_MapLiteral($this); - } else { - $this.$jj_la = 2; - var$5 = $this.$token; - $this.$jj_scanpos = var$5; - $this.$jj_lastpos = var$5; - j: { - k: { - l: { - m: { - try { - var$8 = oncipj_Cypher_jj_3_50($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break m; - } else{ - $v = $$je; - break l; - } - } - oncipj_Cypher_jj_save($this, 49, 2); - break j; - } - try { - var$8 = 1; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 49, 2); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 49, 2); - } - if (var$8) { - $labelExpression = oncipj_Cypher_InsertNodeLabelExpression($this); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 205: - break; - default: - $this.$jj_la1.data[118] = $this.$jj_gen; - break e; - } - $properties = oncipj_Cypher_MapLiteral($this); - } else { - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 205: - break; - default: - $this.$jj_la1.data[120] = $this.$jj_gen; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - n: { - switch (var$7) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break n; - default: - break n; - } - $v = oncipj_Cypher_Variable($this); - break e; - } - $this.$jj_la1.data[119] = $this.$jj_gen; - break e; - } - $properties = oncipj_Cypher_MapLiteral($this); - } - } - } - } - oncipj_Cypher_jj_consume_token($this, 297); - return onciafn_Neo4jASTFactory_nodePattern($this.$astFactory, oncipj_Cypher_pos($this, $t), $v, $labelExpression, $properties, null); -}, -oncipj_Cypher_SetNodeLabelsIs = ($this, $v) => { - let $labels, $dynamicLabels, $label, var$5, var$6, $$je; - $labels = ju_ArrayList__init_(); - $dynamicLabels = ju_ArrayList__init_(); - oncipj_Cypher_jj_consume_token($this, 197); - $this.$jj_la = 2; - $label = $this.$token; - $this.$jj_scanpos = $label; - $this.$jj_lastpos = $label; - a: { - b: { - c: { - d: { - try { - var$5 = oncipj_Cypher_jj_3_52($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $v = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 51, 2); - break a; - } - try { - var$5 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - - } - } - oncipj_Cypher_jj_save($this, 51, 2); - $rt_throw($v); - } - oncipj_Cypher_jj_save($this, 51, 2); - } - e: { - if (var$5) { - $label = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add($labels, onciaf_ASTFactory$StringPos__init_($label.$image, oncipj_Cypher_pos($this, $label))); - } else { - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 137: - oncipj_Cypher_jj_consume_token($this, 137); - oncipj_Cypher_jj_consume_token($this, 213); - $label = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - ju_ArrayList_add($dynamicLabels, $label); - break e; - default: - } - $this.$jj_la1.data[125] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $v = new oncipj_ParseException; - jl_Throwable__init_($v); - $rt_throw($v); - } - } - f: while (true) { - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 105: - break; - default: - $this.$jj_la1.data[126] = $this.$jj_gen; - return onciafn_Neo4jASTFactory_setLabels($this.$astFactory, $v, $labels, $dynamicLabels, 1); - } - $this.$jj_la = 2; - $label = $this.$token; - $this.$jj_scanpos = $label; - $this.$jj_lastpos = $label; - g: { - h: { - try { - var$5 = oncipj_Cypher_jj_3_53($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break h; - } else{ - $v = $$je; - break f; - } - } - oncipj_Cypher_jj_save($this, 52, 2); - break g; - } - try { - var$5 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $v = $$je; - break f; - - } - oncipj_Cypher_jj_save($this, 52, 2); - } - if (var$5) { - $label = oncipj_Cypher_LabelOrRelType($this); - ju_ArrayList_add($labels, onciaf_ASTFactory$StringPos__init_($label.$image, oncipj_Cypher_pos($this, $label))); - continue; - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 105: - break; - default: - $this.$jj_la1.data[127] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $v = new oncipj_ParseException; - jl_Throwable__init_($v); - $rt_throw($v); - } - oncipj_Cypher_jj_consume_token($this, 105); - oncipj_Cypher_jj_consume_token($this, 137); - oncipj_Cypher_jj_consume_token($this, 213); - $label = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - ju_ArrayList_add($dynamicLabels, $label); - } - oncipj_Cypher_jj_save($this, 52, 2); - $rt_throw($v); -}, -oncipj_Cypher_LabelExpressionPredicate = ($this, $subject) => { - let var$2; - var$2 = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_NODE_OR_RELATIONSHIP); - $subject = $subject; - return oncil_LabelExpressionPredicate__init_0($subject, var$2, $subject.$position()); -}, -oncipj_Cypher_LabelOrRelType = $this => { - oncipj_Cypher_jj_consume_token($this, 105); - return oncipj_Cypher_SymbolicNameString($this); -}, -oncipj_Cypher_LabelOrRelTypes = $this => { - let $labels, var$2, var$3, var$4; - $labels = ju_ArrayList__init_(); - oncipj_Cypher_jj_consume_token($this, 105); - oncipj_Cypher_SymbolicNameString($this); - var$2 = new onciaf_ASTFactory$StringPos; - var$3 = $this.$token; - onciaf_ASTFactory$StringPos__init_0(var$2, var$3.$image, oncipj_Cypher_pos($this, var$3)); - ju_ArrayList_add($labels, var$2); - a: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 88: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 88); - oncipj_Cypher_SymbolicNameString($this); - var$2 = new onciaf_ASTFactory$StringPos; - var$3 = $this.$token; - onciaf_ASTFactory$StringPos__init_0(var$2, var$3.$image, oncipj_Cypher_pos($this, var$3)); - ju_ArrayList_add($labels, var$2); - } - $this.$jj_la1.data[133] = $this.$jj_gen; - return $labels; -}, -oncipj_Cypher_Properties = $this => { - let $e, var$2, var$3, $$je; - $this.$jj_la = 3; - $e = $this.$token; - $this.$jj_scanpos = $e; - $this.$jj_lastpos = $e; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_56($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $e = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 55, 3); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $e = $$je; - - } - } - oncipj_Cypher_jj_save($this, 55, 3); - $rt_throw($e); - } - oncipj_Cypher_jj_save($this, 55, 3); - } - if (var$2) - $e = oncipj_Cypher_MapLiteral($this); - else { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 137: - break; - default: - $this.$jj_la1.data[134] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $e = new oncipj_ParseException; - jl_Throwable__init_($e); - $rt_throw($e); - } - $e = oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_ANY); - } - return $e; -}, -oncipj_Cypher_RelationshipPattern = $this => { - let $firstToken, $left, var$3, var$4, var$5, $r, var$7, $$je; - $firstToken = $this.$token; - $left = 0; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 214: - case 371: - break; - default: - $this.$jj_la1.data[135] = $this.$jj_gen; - break a; - } - oncipj_Cypher_LeftArrow($this); - $left = 1; - } - b: { - c: { - oncipj_Cypher_ArrowLine($this); - if (oncipj_Cypher_jj_2_64($this, 2147483647)) { - var$4 = 0; - oncipj_Cypher_ArrowLine($this); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$5) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[138] = $this.$jj_gen; - break d; - } - oncipj_Cypher_RightArrow($this); - var$4 = 1; - } - $r = onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, var$4, null, null, null, null, null); - } else { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 204: - oncipj_Cypher_jj_consume_token($this, 204); - $this.$jj_la = 2147483647; - $r = $this.$token; - $this.$jj_scanpos = $r; - $this.$jj_lastpos = $r; - e: { - f: { - g: { - h: { - try { - var$5 = oncipj_Cypher_jj_3_57($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break h; - } else{ - $firstToken = $$je; - break g; - } - } - oncipj_Cypher_jj_save($this, 56, 2147483647); - break e; - } - try { - var$5 = 1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $firstToken = $$je; - - } - } - oncipj_Cypher_jj_save($this, 56, 2147483647); - $rt_throw($firstToken); - } - oncipj_Cypher_jj_save($this, 56, 2147483647); - } - if (var$5) { - var$5 = 0; - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$4) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[139] = $this.$jj_gen; - break i; - } - oncipj_Cypher_RightArrow($this); - var$5 = 1; - } - $r = onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, var$5, null, null, null, null, null); - break c; - } - $this.$jj_la = 2147483647; - $r = $this.$token; - $this.$jj_scanpos = $r; - $this.$jj_lastpos = $r; - j: { - k: { - l: { - m: { - try { - var$5 = oncipj_Cypher_jj_3_58($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break m; - } else{ - $firstToken = $$je; - break l; - } - } - oncipj_Cypher_jj_save($this, 57, 2147483647); - break j; - } - try { - var$5 = 1; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $firstToken = $$je; - - } - } - oncipj_Cypher_jj_save($this, 57, 2147483647); - $rt_throw($firstToken); - } - oncipj_Cypher_jj_save($this, 57, 2147483647); - } - if (var$5) { - var$4 = 0; - var$7 = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - n: { - switch (var$3) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[140] = $this.$jj_gen; - break n; - } - oncipj_Cypher_RightArrow($this); - var$4 = 1; - } - $r = onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, var$4, var$7, null, null, null, null); - break c; - } - $this.$jj_la = 2147483647; - $r = $this.$token; - $this.$jj_scanpos = $r; - $this.$jj_lastpos = $r; - o: { - p: { - q: { - r: { - try { - var$3 = oncipj_Cypher_jj_3_59($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break r; - } else{ - $firstToken = $$je; - break q; - } - } - oncipj_Cypher_jj_save($this, 58, 2147483647); - break o; - } - try { - var$3 = 1; - break p; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $firstToken = $$je; - - } - } - oncipj_Cypher_jj_save($this, 58, 2147483647); - $rt_throw($firstToken); - } - oncipj_Cypher_jj_save($this, 58, 2147483647); - } - if (var$3) { - $r = oncipj_Cypher_RelationshipPatternColon($this, $firstToken, $left); - break c; - } - $this.$jj_la = 2147483647; - $r = $this.$token; - $this.$jj_scanpos = $r; - $this.$jj_lastpos = $r; - s: { - t: { - u: { - v: { - try { - var$3 = oncipj_Cypher_jj_3_60($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break v; - } else{ - $firstToken = $$je; - break u; - } - } - oncipj_Cypher_jj_save($this, 59, 2147483647); - break s; - } - try { - var$3 = 1; - break t; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $firstToken = $$je; - - } - } - oncipj_Cypher_jj_save($this, 59, 2147483647); - $rt_throw($firstToken); - } - oncipj_Cypher_jj_save($this, 59, 2147483647); - } - if (var$3) { - $r = oncipj_Cypher_RelationshipPatternVariableColon($this, $firstToken, $left); - break c; - } - $this.$jj_la = 2147483647; - $r = $this.$token; - $this.$jj_scanpos = $r; - $this.$jj_lastpos = $r; - w: { - x: { - y: { - z: { - try { - var$3 = oncipj_Cypher_jj_3_61($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break z; - } else{ - $firstToken = $$je; - break y; - } - } - oncipj_Cypher_jj_save($this, 60, 2147483647); - break w; - } - try { - var$3 = 1; - break x; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $firstToken = $$je; - - } - } - oncipj_Cypher_jj_save($this, 60, 2147483647); - $rt_throw($firstToken); - } - oncipj_Cypher_jj_save($this, 60, 2147483647); - } - if (var$3) { - $r = oncipj_Cypher_RelationshipPatternProperties($this, $firstToken, $left); - break c; - } - $this.$jj_la = 2147483647; - $r = $this.$token; - $this.$jj_scanpos = $r; - $this.$jj_lastpos = $r; - ba: { - bb: { - bc: { - bd: { - try { - var$3 = oncipj_Cypher_jj_3_62($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break bd; - } else{ - $firstToken = $$je; - break bc; - } - } - oncipj_Cypher_jj_save($this, 61, 2147483647); - break ba; - } - try { - var$3 = 1; - break bb; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $firstToken = $$je; - - } - } - oncipj_Cypher_jj_save($this, 61, 2147483647); - $rt_throw($firstToken); - } - oncipj_Cypher_jj_save($this, 61, 2147483647); - } - if (var$3) { - $r = oncipj_Cypher_RelationshipPatternPathLength($this, $firstToken, $left); - break c; - } - if (oncipj_Cypher_jj_2_63($this, 2147483647)) { - $r = oncipj_Cypher_RelationshipPatternOnlyVariablePathLength($this, $firstToken, $left); - break c; - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break b; - default: - break b; - } - $r = oncipj_Cypher_RelationshipPatternComplex($this, $firstToken, $left); - break c; - default: - } - $this.$jj_la1.data[137] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $firstToken = new oncipj_ParseException; - jl_Throwable__init_($firstToken); - $rt_throw($firstToken); - } - } - return $r; - } - $this.$jj_la1.data[136] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $firstToken = new oncipj_ParseException; - jl_Throwable__init_($firstToken); - $rt_throw($firstToken); -}, -oncipj_Cypher_RelationshipPatternColon = ($this, $firstToken, $left) => { - let $right, $pathLength, $properties, $predicate, var$7, var$8; - $right = 0; - $pathLength = null; - $properties = null; - $predicate = null; - var$7 = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_RELATIONSHIP); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 329: - break; - default: - $this.$jj_la1.data[141] = $this.$jj_gen; - break a; - } - $pathLength = oncipj_Cypher_PathLength($this); - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$8) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[142] = $this.$jj_gen; - break b; - } - $properties = oncipj_Cypher_Properties($this); - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$8) { - case 359: - break; - default: - $this.$jj_la1.data[143] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$8) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[144] = $this.$jj_gen; - break d; - } - oncipj_Cypher_RightArrow($this); - $right = 1; - } - return onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, $right, null, var$7, $pathLength, $properties, $predicate); -}, -oncipj_Cypher_RelationshipPatternVariableColon = ($this, $firstToken, $left) => { - let $right, $pathLength, $properties, $predicate, var$7, var$8, var$9; - $right = 0; - $pathLength = null; - $properties = null; - $predicate = null; - var$7 = oncipj_Cypher_Variable($this); - var$8 = oncipj_Cypher_LabelExpression($this, oncipj_EntityType_RELATIONSHIP); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$9) { - case 329: - break; - default: - $this.$jj_la1.data[145] = $this.$jj_gen; - break a; - } - $pathLength = oncipj_Cypher_PathLength($this); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$9) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[146] = $this.$jj_gen; - break b; - } - $properties = oncipj_Cypher_Properties($this); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$9) { - case 359: - break; - default: - $this.$jj_la1.data[147] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$9) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[148] = $this.$jj_gen; - break d; - } - oncipj_Cypher_RightArrow($this); - $right = 1; - } - return onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, $right, var$7, var$8, $pathLength, $properties, $predicate); -}, -oncipj_Cypher_RelationshipPatternProperties = ($this, $firstToken, $left) => { - let $right, $predicate, var$5, var$6, var$7; - $right = 0; - $predicate = null; - var$5 = oncipj_Cypher_Properties($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 359: - break; - default: - $this.$jj_la1.data[149] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$7) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[150] = $this.$jj_gen; - break b; - } - oncipj_Cypher_RightArrow($this); - $right = 1; - } - return onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, $right, null, null, null, var$5, $predicate); -}, -oncipj_Cypher_RelationshipPatternPathLength = ($this, $firstToken, $left) => { - let $right, $properties, $predicate, var$6, var$7, var$8; - $right = 0; - $properties = null; - $predicate = null; - var$6 = oncipj_Cypher_PathLength($this); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$7) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[151] = $this.$jj_gen; - break a; - } - $properties = oncipj_Cypher_Properties($this); - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$7) { - case 359: - break; - default: - $this.$jj_la1.data[152] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$8) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[153] = $this.$jj_gen; - break c; - } - oncipj_Cypher_RightArrow($this); - $right = 1; - } - return onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, $right, null, null, var$6, $properties, $predicate); -}, -oncipj_Cypher_RelationshipPatternOnlyVariablePathLength = ($this, $firstToken, $left) => { - let $right, var$4, var$5, var$6; - $right = 0; - var$4 = oncipj_Cypher_Variable($this); - var$5 = oncipj_Cypher_PathLength($this); - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[154] = $this.$jj_gen; - break a; - } - oncipj_Cypher_RightArrow($this); - $right = 1; - } - return onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, $right, var$4, null, var$5, null, null); -}, -oncipj_Cypher_RelationshipPatternComplex = ($this, $firstToken, $left) => { - let $right, $v, $labelExpression, $pathLength, $properties, $predicate, var$9, var$10; - a: { - $right = 0; - $v = null; - $labelExpression = null; - $pathLength = null; - $properties = null; - $predicate = null; - if (oncipj_Cypher_jj_2_65($this, 2147483647)) { - $labelExpression = oncipj_Cypher_LabelExpression($this, onciafn_Neo4jASTFactory_relationshipType($this.$astFactory)); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$9) { - case 329: - break; - default: - $this.$jj_la1.data[155] = $this.$jj_gen; - break b; - } - $pathLength = oncipj_Cypher_PathLength($this); - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else if (oncipj_Cypher_jj_2_66($this, 2147483647)) { - $labelExpression = oncipj_Cypher_LabelExpression($this, onciafn_Neo4jASTFactory_relationshipType($this.$astFactory)); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$9) { - case 329: - break; - default: - $this.$jj_la1.data[156] = $this.$jj_gen; - break c; - } - $pathLength = oncipj_Cypher_PathLength($this); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$9) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[157] = $this.$jj_gen; - break d; - } - $properties = oncipj_Cypher_Properties($this); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - break; - default: - $this.$jj_la1.data[158] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else if (oncipj_Cypher_jj_2_67($this, 2147483647)) { - $v = oncipj_Cypher_Variable($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$9) { - case 329: - break; - default: - $this.$jj_la1.data[159] = $this.$jj_gen; - break e; - } - $pathLength = oncipj_Cypher_PathLength($this); - } - $properties = oncipj_Cypher_Properties($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - break; - default: - $this.$jj_la1.data[160] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else if (oncipj_Cypher_jj_2_68($this, 2147483647)) { - $v = oncipj_Cypher_Variable($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$9) { - case 329: - break; - default: - $this.$jj_la1.data[161] = $this.$jj_gen; - break f; - } - $pathLength = oncipj_Cypher_PathLength($this); - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else if (oncipj_Cypher_jj_2_69($this, 2147483647)) { - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else if (!oncipj_Cypher_jj_2_70($this, 3)) { - if (!oncipj_Cypher_jj_2_71($this, 2147483647)) { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 105: - case 197: - $labelExpression = oncipj_Cypher_LabelExpression($this, onciafn_Neo4jASTFactory_relationshipType($this.$astFactory)); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 329: - break; - default: - $this.$jj_la1.data[167] = $this.$jj_gen; - break a; - } - $pathLength = oncipj_Cypher_PathLength($this); - break a; - default: - } - $this.$jj_la1.data[168] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $labelExpression = oncipj_Cypher_LabelExpression($this, onciafn_Neo4jASTFactory_relationshipType($this.$astFactory)); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$9) { - case 329: - break; - default: - $this.$jj_la1.data[165] = $this.$jj_gen; - break g; - } - $pathLength = oncipj_Cypher_PathLength($this); - } - $properties = oncipj_Cypher_Properties($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - break; - default: - $this.$jj_la1.data[166] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } else { - $v = oncipj_Cypher_Variable($this); - $labelExpression = oncipj_Cypher_LabelExpression($this, onciafn_Neo4jASTFactory_relationshipType($this.$astFactory)); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$9) { - case 329: - break; - default: - $this.$jj_la1.data[162] = $this.$jj_gen; - break h; - } - $pathLength = oncipj_Cypher_PathLength($this); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$9) { - case 137: - case 205: - break; - default: - $this.$jj_la1.data[163] = $this.$jj_gen; - break i; - } - $properties = oncipj_Cypher_Properties($this); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 359: - break; - default: - $this.$jj_la1.data[164] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $predicate = oncipj_Cypher_Expression($this); - } - } - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$9) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[169] = $this.$jj_gen; - break j; - } - oncipj_Cypher_RightArrow($this); - $right = 1; - } - return onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, $right, $v, $labelExpression, $pathLength, $properties, $predicate); -}, -oncipj_Cypher_InsertRelationshipPattern = $this => { - let $firstToken, $left, $right, $v, $properties, var$6, var$7, var$8, var$9, $$je; - $firstToken = $this.$token; - $left = 0; - $right = 0; - $v = null; - $properties = null; - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 214: - case 371: - break; - default: - $this.$jj_la1.data[170] = $this.$jj_gen; - break a; - } - oncipj_Cypher_LeftArrow($this); - $left = 1; - } - oncipj_Cypher_ArrowLine($this); - oncipj_Cypher_jj_consume_token($this, 204); - $this.$jj_la = 3; - var$7 = $this.$token; - $this.$jj_scanpos = var$7; - $this.$jj_lastpos = var$7; - b: { - c: { - d: { - e: { - try { - var$6 = oncipj_Cypher_jj_3_72($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $firstToken = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 71, 3); - break b; - } - try { - var$6 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $firstToken = $$je; - - } - } - oncipj_Cypher_jj_save($this, 71, 3); - $rt_throw($firstToken); - } - oncipj_Cypher_jj_save($this, 71, 3); - } - f: { - if (var$6) { - $v = oncipj_Cypher_Variable($this); - var$8 = oncipj_Cypher_InsertRelationshipLabelExpression($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 205: - break; - default: - $this.$jj_la1.data[171] = $this.$jj_gen; - break f; - } - $properties = oncipj_Cypher_MapLiteral($this); - } else { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 105: - case 197: - var$8 = oncipj_Cypher_InsertRelationshipLabelExpression($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 205: - break; - default: - $this.$jj_la1.data[172] = $this.$jj_gen; - break f; - } - $properties = oncipj_Cypher_MapLiteral($this); - break f; - default: - } - $this.$jj_la1.data[173] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $firstToken = new oncipj_ParseException; - jl_Throwable__init_($firstToken); - $rt_throw($firstToken); - } - } - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$9) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[174] = $this.$jj_gen; - break g; - } - oncipj_Cypher_RightArrow($this); - $right = 1; - } - return onciafn_Neo4jASTFactory_relationshipPattern($this.$astFactory, oncipj_Cypher_pos($this, $firstToken.$next5), $left, $right, $v, var$8, null, $properties, null); -}, -oncipj_Cypher_LeftArrow = $this => { - let var$1, var$2; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 214: - break; - case 371: - oncipj_Cypher_jj_consume_token($this, 371); - break a; - default: - $this.$jj_la1.data[175] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$2 = new oncipj_ParseException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - oncipj_Cypher_jj_consume_token($this, 214); - } -}, -oncipj_Cypher_ArrowLine = $this => { - let var$1, var$2; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 219: - break; - case 370: - oncipj_Cypher_jj_consume_token($this, 370); - break a; - default: - $this.$jj_la1.data[176] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$2 = new oncipj_ParseException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - oncipj_Cypher_jj_consume_token($this, 219); - } -}, -oncipj_Cypher_RightArrow = $this => { - let var$1, var$2; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 182: - break; - case 372: - oncipj_Cypher_jj_consume_token($this, 372); - break a; - default: - $this.$jj_la1.data[177] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$2 = new oncipj_ParseException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - oncipj_Cypher_jj_consume_token($this, 182); - } -}, -oncipj_Cypher_PathLength = $this => { - let $p, $t, var$3, var$4, var$5, var$6, var$7, $$je; - $p = null; - $t = oncipj_Cypher_jj_consume_token($this, 329); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 36: - case 143: - $p = null; - var$4 = null; - $this.$jj_la = 2; - var$5 = $this.$token; - $this.$jj_scanpos = var$5; - $this.$jj_lastpos = var$5; - b: { - c: { - d: { - e: { - try { - var$6 = oncipj_Cypher_jj_3_73($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $p = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 72, 2); - break b; - } - try { - var$6 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $p = $$je; - - } - } - oncipj_Cypher_jj_save($this, 72, 2); - $rt_throw($p); - } - oncipj_Cypher_jj_save($this, 72, 2); - } - f: { - if (!var$6) { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 36: - $p = oncipj_Cypher_jj_consume_token($this, 36); - var$5 = $p !== null ? $p.$image : $rt_s(4); - $p = onciafn_Neo4jASTFactory_pathLength($this.$astFactory, oncipj_Cypher_pos($this, $t), $p !== null ? oncipj_Cypher_pos($this, $p) : null, $p !== null ? oncipj_Cypher_pos($this, $p) : null, var$5, var$5); - break f; - default: - } - $this.$jj_la1.data[181] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $p = new oncipj_ParseException; - jl_Throwable__init_($p); - $rt_throw($p); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$3) { - case 36: - break; - default: - $this.$jj_la1.data[179] = $this.$jj_gen; - break g; - } - $p = oncipj_Cypher_jj_consume_token($this, 36); - } - var$7 = oncipj_Cypher_jj_consume_token($this, 143); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$3) { - case 36: - break; - default: - $this.$jj_la1.data[180] = $this.$jj_gen; - break h; - } - var$4 = oncipj_Cypher_jj_consume_token($this, 36); - } - $p = onciafn_Neo4jASTFactory_pathLength($this.$astFactory, oncipj_Cypher_pos($this, var$7), $p !== null ? oncipj_Cypher_pos($this, $p) : null, var$4 !== null ? oncipj_Cypher_pos($this, var$4) : null, $p !== null ? $p.$image : $rt_s(4), var$4 !== null ? var$4.$image : $rt_s(4)); - } - break a; - default: - } - $this.$jj_la1.data[178] = $this.$jj_gen; - } - if ($p === null) - $p = onciafn_Neo4jASTFactory_pathLength($this.$astFactory, oncipj_Cypher_pos($this, $t), null, null, null, null); - return $p; -}, -oncipj_Cypher_LabelExpression = ($this, $type) => { - let var$2, $e, var$4, var$5, var$6, var$7, $$je; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - b: { - switch (var$2) { - case 105: - oncipj_Cypher_jj_consume_token($this, 105); - if (!ju_Vector_isEmpty($this.$labelExpressionStack) && ju_Stack_peek($this.$labelExpressionStack) === oncipj_ExpectBar_EXPECT_BAR) { - $e = oncipj_Cypher_LabelExpression3($this, $type); - c: { - d: while (true) { - $this.$jj_la = 2147483647; - var$4 = $this.$token; - $this.$jj_scanpos = var$4; - $this.$jj_lastpos = var$4; - e: { - f: { - try { - var$2 = oncipj_Cypher_jj_3_76($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $type = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 75, 2147483647); - break e; - } - try { - var$2 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $type = $$je; - break d; - - } - oncipj_Cypher_jj_save($this, 75, 2147483647); - } - if (!var$2) - break b; - var$4 = oncipj_Cypher_jj_consume_token($this, 88); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 203: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 220: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 204: - case 205: - case 206: - case 214: - case 219: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break c; - case 105: - oncipj_Cypher_jj_consume_token($this, 105); - var$6 = oncipj_Cypher_LabelExpression3($this, $type); - $e = onciafn_Neo4jASTFactory_labelColonDisjunction($this.$astFactory, oncipj_Cypher_pos($this, var$4), $e, var$6, 0); - continue d; - default: - break c; - } - var$6 = oncipj_Cypher_LabelExpression3($this, $type); - $e = onciafn_Neo4jASTFactory_labelDisjunction($this.$astFactory, oncipj_Cypher_pos($this, var$4), $e, var$6, 0); - } - oncipj_Cypher_jj_save($this, 75, 2147483647); - $rt_throw($type); - } - $this.$jj_la1.data[185] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - if (!ju_Vector_isEmpty($this.$labelExpressionStack) && ju_Stack_peek($this.$labelExpressionStack) !== oncipj_ExpectBar_DO_NOT_EXPECT_BAR) { - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - $e = oncipj_Cypher_LabelExpression4($this, $type); - break b; - case 197: - oncipj_Cypher_jj_consume_token($this, 197); - if (!ju_Vector_isEmpty($this.$labelExpressionStack) && ju_Stack_peek($this.$labelExpressionStack) === oncipj_ExpectBar_EXPECT_BAR) { - $e = oncipj_Cypher_LabelExpression3Is($this, $type); - g: while (true) { - $this.$jj_la = 2147483647; - var$4 = $this.$token; - $this.$jj_scanpos = var$4; - $this.$jj_lastpos = var$4; - h: { - i: { - try { - var$2 = oncipj_Cypher_jj_3_77($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $type = $$je; - break g; - } - } - oncipj_Cypher_jj_save($this, 76, 2147483647); - break h; - } - try { - var$2 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $type = $$je; - break g; - - } - oncipj_Cypher_jj_save($this, 76, 2147483647); - } - if (!var$2) - break b; - var$4 = oncipj_Cypher_jj_consume_token($this, 88); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 203: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 220: - case 223: - case 224: - case 225: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 238: - case 239: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 204: - case 205: - case 206: - case 214: - case 219: - case 221: - case 222: - case 226: - case 227: - case 228: - case 229: - case 236: - case 237: - case 240: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - case 341: - break a; - case 105: - oncipj_Cypher_jj_consume_token($this, 105); - var$6 = oncipj_Cypher_LabelExpression3Is($this, $type); - $e = onciafn_Neo4jASTFactory_labelColonDisjunction($this.$astFactory, oncipj_Cypher_pos($this, var$4), $e, var$6, 1); - continue g; - default: - break a; - } - var$7 = oncipj_Cypher_LabelExpression3Is($this, $type); - $e = onciafn_Neo4jASTFactory_labelDisjunction($this.$astFactory, oncipj_Cypher_pos($this, var$4), $e, var$7, 1); - } - oncipj_Cypher_jj_save($this, 76, 2147483647); - $rt_throw($type); - } - if (!ju_Vector_isEmpty($this.$labelExpressionStack) && ju_Stack_peek($this.$labelExpressionStack) !== oncipj_ExpectBar_DO_NOT_EXPECT_BAR) { - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - $e = oncipj_Cypher_LabelExpression4Is($this, $type); - break b; - default: - } - $this.$jj_la1.data[182] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - return $e; - } - $this.$jj_la1.data[186] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); -}, -oncipj_Cypher_LabelExpression4 = ($this, $type) => { - let $e, $temp, var$4, $t, var$6, $$je; - $e = oncipj_Cypher_LabelExpression3($this, $type); - a: { - b: { - c: while (true) { - $this.$jj_la = 2; - $temp = $this.$token; - $this.$jj_scanpos = $temp; - $this.$jj_lastpos = $temp; - d: { - e: { - try { - var$4 = oncipj_Cypher_jj_3_74($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $type = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 73, 2); - break d; - } - try { - var$4 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $type = $$je; - break b; - - } - oncipj_Cypher_jj_save($this, 73, 2); - } - if (!var$4) - break; - $t = oncipj_Cypher_jj_consume_token($this, 88); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 203: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 220: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 204: - case 205: - case 206: - case 214: - case 219: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break a; - case 105: - oncipj_Cypher_jj_consume_token($this, 105); - $temp = oncipj_Cypher_LabelExpression3($this, $type); - $e = onciafn_Neo4jASTFactory_labelColonDisjunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, $temp, 0); - continue c; - default: - break a; - } - $temp = oncipj_Cypher_LabelExpression3($this, $type); - $e = onciafn_Neo4jASTFactory_labelDisjunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, $temp, 0); - } - return $e; - } - oncipj_Cypher_jj_save($this, 73, 2); - $rt_throw($type); - } - $this.$jj_la1.data[183] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); -}, -oncipj_Cypher_LabelExpression4Is = ($this, $type) => { - let $e, $temp, var$4, $t, var$6, $$je; - $e = oncipj_Cypher_LabelExpression3Is($this, $type); - a: { - b: { - c: while (true) { - $this.$jj_la = 2; - $temp = $this.$token; - $this.$jj_scanpos = $temp; - $this.$jj_lastpos = $temp; - d: { - e: { - try { - var$4 = oncipj_Cypher_jj_3_75($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $type = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 74, 2); - break d; - } - try { - var$4 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $type = $$je; - break b; - - } - oncipj_Cypher_jj_save($this, 74, 2); - } - if (!var$4) - break; - $t = oncipj_Cypher_jj_consume_token($this, 88); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 203: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 220: - case 223: - case 224: - case 225: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 238: - case 239: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 204: - case 205: - case 206: - case 214: - case 219: - case 221: - case 222: - case 226: - case 227: - case 228: - case 229: - case 236: - case 237: - case 240: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - case 341: - break a; - case 105: - oncipj_Cypher_jj_consume_token($this, 105); - $temp = oncipj_Cypher_LabelExpression3Is($this, $type); - $e = onciafn_Neo4jASTFactory_labelColonDisjunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, $temp, 1); - continue c; - default: - break a; - } - $temp = oncipj_Cypher_LabelExpression3Is($this, $type); - $e = onciafn_Neo4jASTFactory_labelDisjunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, $temp, 1); - } - return $e; - } - oncipj_Cypher_jj_save($this, 74, 2); - $rt_throw($type); - } - $this.$jj_la1.data[184] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); -}, -oncipj_Cypher_LabelExpression3 = ($this, $type) => { - let $e, $t, var$4, var$5, $temp, $$je; - $e = oncipj_Cypher_LabelExpression2($this, $type); - a: { - b: while (true) { - $this.$jj_la = 2; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - c: { - d: { - try { - var$4 = oncipj_Cypher_jj_3_78($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $type = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 77, 2); - break c; - } - try { - var$4 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $type = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 77, 2); - } - if (!var$4) - break; - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 105: - break; - case 202: - $t = oncipj_Cypher_jj_consume_token($this, 202); - $temp = oncipj_Cypher_LabelExpression2($this, $type); - $e = onciafn_Neo4jASTFactory_labelConjunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, $temp, 0); - continue b; - default: - $this.$jj_la1.data[187] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - $t = oncipj_Cypher_jj_consume_token($this, 105); - $temp = oncipj_Cypher_LabelExpression2($this, $type); - $e = onciafn_Neo4jASTFactory_labelColonConjunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, $temp, 0); - } - return $e; - } - oncipj_Cypher_jj_save($this, 77, 2); - $rt_throw($type); -}, -oncipj_Cypher_LabelExpression3Is = ($this, $type) => { - let $e, $t, var$4, var$5, $temp, $$je; - $e = oncipj_Cypher_LabelExpression2Is($this, $type); - a: { - b: while (true) { - $this.$jj_la = 2; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - c: { - d: { - try { - var$4 = oncipj_Cypher_jj_3_79($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $type = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 78, 2); - break c; - } - try { - var$4 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $type = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 78, 2); - } - if (!var$4) - break; - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 105: - break; - case 202: - $t = oncipj_Cypher_jj_consume_token($this, 202); - $temp = oncipj_Cypher_LabelExpression2Is($this, $type); - $e = onciafn_Neo4jASTFactory_labelConjunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, $temp, 1); - continue b; - default: - $this.$jj_la1.data[188] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - $t = oncipj_Cypher_jj_consume_token($this, 105); - $temp = oncipj_Cypher_LabelExpression2Is($this, $type); - $e = onciafn_Neo4jASTFactory_labelColonConjunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, $temp, 1); - } - return $e; - } - oncipj_Cypher_jj_save($this, 78, 2); - $rt_throw($type); -}, -oncipj_Cypher_LabelExpression2 = ($this, $type) => { - let $t, var$3, $e, var$5, var$6, $$je; - $this.$jj_la = 3; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - a: { - b: { - c: { - d: { - try { - var$3 = oncipj_Cypher_jj_3_80($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $type = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 79, 3); - break a; - } - try { - var$3 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $type = $$je; - - } - } - oncipj_Cypher_jj_save($this, 79, 3); - $rt_throw($type); - } - oncipj_Cypher_jj_save($this, 79, 3); - } - e: { - if (var$3) { - $t = oncipj_Cypher_jj_consume_token($this, 203); - $e = oncipj_Cypher_LabelExpression2($this, $type); - $e = onciafn_Neo4jASTFactory_labelNegation($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, 0); - } else { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 220: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_Stack_push($this.$labelExpressionStack, oncipj_ExpectBar_DO_NOT_EXPECT_BAR); - $t = jl_Boolean_valueOf(1); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $t = oncipj_Cypher_SymbolicNameString($this); - $e = onciafn_Neo4jASTFactory_labelLeaf($this.$astFactory, oncipj_Cypher_pos($this, $t), $t.$image, $type, 0); - break f; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - case 137: - $e = oncipj_Cypher_jj_consume_token($this, 137); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$5) { - case 76: - case 79: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 76: - oncipj_Cypher_jj_consume_token($this, 76); - break g; - case 79: - oncipj_Cypher_jj_consume_token($this, 79); - $t = jl_Boolean_valueOf(0); - break g; - default: - } - $this.$jj_la1.data[191] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - default: - } - $this.$jj_la1.data[192] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 213); - var$6 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - $e = onciafn_Neo4jASTFactory_dynamicLabelLeaf($this.$astFactory, oncipj_Cypher_pos($this, $e), var$6, $type, $t.$value3, 0); - break f; - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - $e = oncipj_Cypher_LabelExpression4($this, $type); - oncipj_Cypher_jj_consume_token($this, 297); - break f; - case 220: - $type = oncipj_Cypher_jj_consume_token($this, 220); - $e = onciafn_Neo4jASTFactory_labelWildcard($this.$astFactory, oncipj_Cypher_pos($this, $type), 0); - break f; - default: - } - $this.$jj_la1.data[193] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - ju_Stack_pop($this.$labelExpressionStack); - break e; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[189] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - } - return $e; -}, -oncipj_Cypher_LabelExpression2Is = ($this, $type) => { - let $t, var$3, $e, var$5, var$6, $$je; - $this.$jj_la = 3; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - a: { - b: { - c: { - d: { - try { - var$3 = oncipj_Cypher_jj_3_81($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $type = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 80, 3); - break a; - } - try { - var$3 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $type = $$je; - - } - } - oncipj_Cypher_jj_save($this, 80, 3); - $rt_throw($type); - } - oncipj_Cypher_jj_save($this, 80, 3); - } - e: { - if (var$3) { - $t = oncipj_Cypher_jj_consume_token($this, 203); - $e = oncipj_Cypher_LabelExpression2Is($this, $type); - $e = onciafn_Neo4jASTFactory_labelNegation($this.$astFactory, oncipj_Cypher_pos($this, $t), $e, 1); - } else { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 220: - case 223: - case 224: - case 225: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 238: - case 239: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_Stack_push($this.$labelExpressionStack, oncipj_ExpectBar_DO_NOT_EXPECT_BAR); - $t = jl_Boolean_valueOf(1); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 238: - case 239: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$3) { - case 68: - var$6 = oncipj_Cypher_EscapedSymbolicNameString($this); - break g; - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 238: - case 239: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$6 = oncipj_Cypher_UnescapedLabelSymbolicNameString($this); - break g; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 226: - case 227: - case 228: - case 229: - case 236: - case 237: - case 240: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - case 341: - break; - default: - } - $this.$jj_la1.data[740] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - $e = onciafn_Neo4jASTFactory_labelLeaf($this.$astFactory, oncipj_Cypher_pos($this, var$6), var$6.$image, $type, 1); - break f; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 221: - case 222: - case 226: - case 227: - case 228: - case 229: - case 236: - case 237: - case 240: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - case 341: - break; - case 137: - $e = oncipj_Cypher_jj_consume_token($this, 137); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$5) { - case 76: - case 79: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 76: - oncipj_Cypher_jj_consume_token($this, 76); - break h; - case 79: - oncipj_Cypher_jj_consume_token($this, 79); - $t = jl_Boolean_valueOf(0); - break h; - default: - } - $this.$jj_la1.data[194] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - default: - } - $this.$jj_la1.data[195] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 213); - var$6 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - $e = onciafn_Neo4jASTFactory_dynamicLabelLeaf($this.$astFactory, oncipj_Cypher_pos($this, $e), var$6, $type, $t.$value3, 1); - break f; - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - $e = oncipj_Cypher_LabelExpression4Is($this, $type); - oncipj_Cypher_jj_consume_token($this, 297); - break f; - case 220: - $type = oncipj_Cypher_jj_consume_token($this, 220); - $e = onciafn_Neo4jASTFactory_labelWildcard($this.$astFactory, oncipj_Cypher_pos($this, $type), 1); - break f; - default: - } - $this.$jj_la1.data[196] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - ju_Stack_pop($this.$labelExpressionStack); - break e; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 221: - case 222: - case 226: - case 227: - case 228: - case 229: - case 236: - case 237: - case 240: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - case 341: - break; - default: - } - $this.$jj_la1.data[190] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); - } - } - return $e; -}, -oncipj_Cypher_InsertNodeLabelExpression = $this => { - let $containsIs, var$2, var$3, var$4, $e, var$6, var$7, var$8, $$je; - $containsIs = 0; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 105: - oncipj_Cypher_jj_consume_token($this, 105); - break a; - case 197: - oncipj_Cypher_jj_consume_token($this, 197); - $containsIs = 1; - break a; - default: - } - $this.$jj_la1.data[197] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$3 = new oncipj_ParseException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); - } - var$4 = oncipj_EntityType_NODE; - var$3 = null; - $e = oncipj_Cypher_InsertLabelLeaf($this, var$4, $containsIs); - b: while (true) { - $this.$jj_la = 2; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_82($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - var$3 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 81, 2); - break c; - } - try { - var$2 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$3 = $$je; - break b; - - } - oncipj_Cypher_jj_save($this, 81, 2); - } - if (!var$2) { - if (var$3 === null) - return $e; - var$4 = $this.$exceptionFactory1; - var$6 = new oncipj_ParseException; - jl_Throwable__init_0(var$6, $rt_s(4390)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException(var$4, var$6, var$3.$beginOffset, var$3.$beginLine, var$3.$beginColumn)); - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 105: - break; - case 202: - var$6 = oncipj_Cypher_jj_consume_token($this, 202); - var$8 = oncipj_Cypher_InsertLabelLeaf($this, var$4, $containsIs); - $e = onciafn_Neo4jASTFactory_labelConjunction($this.$astFactory, oncipj_Cypher_pos($this, var$6), $e, var$8, $containsIs); - continue b; - default: - $this.$jj_la1.data[199] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$3 = new oncipj_ParseException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); - } - var$3 = oncipj_Cypher_jj_consume_token($this, 105); - } - oncipj_Cypher_jj_save($this, 81, 2); - $rt_throw(var$3); -}, -oncipj_Cypher_InsertRelationshipLabelExpression = $this => { - let $containsIs, var$2, $e; - $containsIs = 0; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 105: - break; - case 197: - oncipj_Cypher_jj_consume_token($this, 197); - $containsIs = 1; - break a; - default: - $this.$jj_la1.data[198] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $e = new oncipj_ParseException; - jl_Throwable__init_($e); - $rt_throw($e); - } - oncipj_Cypher_jj_consume_token($this, 105); - } - return oncipj_Cypher_InsertLabelLeaf($this, oncipj_EntityType_RELATIONSHIP, $containsIs); -}, -oncipj_Cypher_InsertLabelLeaf = ($this, $type, $containsIs) => { - let $t; - $t = oncipj_Cypher_SymbolicNameString($this); - return onciafn_Neo4jASTFactory_labelLeaf($this.$astFactory, oncipj_Cypher_pos($this, $t), $t.$image, $type, $containsIs); -}, -oncipj_Cypher_Expression = $this => { - let $e, var$2, var$3, var$4; - $e = oncipj_Cypher_Expression11($this); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 248: - break; - default: - break a; - } - var$3 = oncipj_Cypher_jj_consume_token($this, 248); - var$4 = oncipj_Cypher_Expression11($this); - var$3 = oncipj_Cypher_pos($this, var$3); - $e = oncie_Or__init_0($e, var$4, var$3); - } - $this.$jj_la1.data[200] = $this.$jj_gen; - return $e; -}, -oncipj_Cypher_Expression11 = $this => { - let $e, var$2, $t, $temp; - $e = oncipj_Cypher_Expression10($this); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 363: - break; - default: - break a; - } - $t = oncipj_Cypher_jj_consume_token($this, 363); - $temp = oncipj_Cypher_Expression10($this); - $t = oncipj_Cypher_pos($this, $t); - $e = oncie_Xor__init_0($e, $temp, $t); - } - $this.$jj_la1.data[201] = $this.$jj_gen; - return $e; -}, -oncipj_Cypher_Expression10 = $this => { - let $e, var$2, $t, $temp; - $e = oncipj_Cypher_Expression9($this); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 78: - break; - default: - break a; - } - $t = oncipj_Cypher_jj_consume_token($this, 78); - $temp = oncipj_Cypher_Expression9($this); - $t = oncipj_Cypher_pos($this, $t); - $e = oncie_And__init_0($e, $temp, $t); - } - $this.$jj_la1.data[202] = $this.$jj_gen; - return $e; -}, -oncipj_Cypher_Expression9 = $this => { - let $t, var$2, $e, var$4, $$je; - $this.$jj_la = 3; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_83($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 82, 3); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 82, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 82, 3); - } - e: { - if (var$2) { - $t = oncipj_Cypher_jj_consume_token($this, 237); - $e = oncipj_Cypher_Expression9($this); - $t = oncipj_Cypher_pos($this, $t); - $e = oncie_Not__init_0($e, $t); - } else { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break e; - default: - break e; - } - $e = oncipj_Cypher_Expression8($this); - } - return $e; - } - $this.$jj_la1.data[203] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); -}, -oncipj_Cypher_Expression8 = $this => { - let $expressions, $e, $lhs, var$4, $lhs_0, var$6, $t, $t_0, $$je; - $expressions = ju_ArrayList__init_(); - $e = oncipj_Cypher_Expression7($this); - $lhs = $e; - a: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 158: - case 176: - case 182: - case 206: - case 214: - case 221: - case 222: - break; - default: - $this.$jj_la1.data[204] = $this.$jj_gen; - if (ju_AbstractCollection_isEmpty($expressions)) - return $e; - if ($expressions.$size0 == 1) - return ju_ArrayList_get($expressions, 0); - return oncie_Ands$_apply(oncie_Ands$_MODULE$, scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $expressions)), (ju_ArrayList_get($expressions, 0)).$position()); - } - $this.$jj_la = 2; - $lhs_0 = $this.$token; - $this.$jj_scanpos = $lhs_0; - $this.$jj_lastpos = $lhs_0; - b: { - c: { - try { - var$6 = oncipj_Cypher_jj_3_84($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - $expressions = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 83, 2); - break b; - } - try { - var$6 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $expressions = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 83, 2); - } - if (var$6) { - $t = oncipj_Cypher_jj_consume_token($this, 158); - $lhs_0 = oncipj_Cypher_Expression7($this); - ju_ArrayList_add($expressions, onciafn_Neo4jASTFactory_eq($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $lhs_0)); - $lhs = $lhs_0; - continue; - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 176: - break; - case 182: - $t = oncipj_Cypher_jj_consume_token($this, 182); - $lhs_0 = oncipj_Cypher_Expression7($this); - ju_ArrayList_add($expressions, onciafn_Neo4jASTFactory_gt($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $lhs_0)); - $lhs = $lhs_0; - continue a; - case 206: - $t = oncipj_Cypher_jj_consume_token($this, 206); - $lhs_0 = oncipj_Cypher_Expression7($this); - ju_ArrayList_add($expressions, onciafn_Neo4jASTFactory_lte($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $lhs_0)); - $lhs = $lhs_0; - continue a; - case 214: - $t = oncipj_Cypher_jj_consume_token($this, 214); - $lhs_0 = oncipj_Cypher_Expression7($this); - ju_ArrayList_add($expressions, onciafn_Neo4jASTFactory_lt($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $lhs_0)); - $lhs = $lhs_0; - continue a; - case 221: - $t_0 = oncipj_Cypher_jj_consume_token($this, 221); - $lhs_0 = oncipj_Cypher_Expression7($this); - ju_ArrayList_add($expressions, onciafn_Neo4jASTFactory_neq($this.$astFactory, oncipj_Cypher_pos($this, $t_0), $lhs, $lhs_0)); - $lhs = $lhs_0; - continue a; - case 222: - $t = oncipj_Cypher_jj_consume_token($this, 222); - $lhs_0 = oncipj_Cypher_Expression7($this); - ju_ArrayList_add($expressions, onciafn_Neo4jASTFactory_neq2($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $lhs_0)); - $lhs = $lhs_0; - continue a; - default: - $this.$jj_la1.data[205] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $expressions = new oncipj_ParseException; - jl_Throwable__init_($expressions); - $rt_throw($expressions); - } - $t = oncipj_Cypher_jj_consume_token($this, 176); - $lhs_0 = oncipj_Cypher_Expression7($this); - ju_ArrayList_add($expressions, onciafn_Neo4jASTFactory_gte($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $lhs_0)); - $lhs = $lhs_0; - } - oncipj_Cypher_jj_save($this, 83, 2); - $rt_throw($expressions); -}, -oncipj_Cypher_Expression8ComparatorExpression = ($this, $lhs) => { - let $t, var$3, $rhs, var$5, $$je; - $this.$jj_la = 2; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - a: { - b: { - c: { - d: { - try { - var$3 = oncipj_Cypher_jj_3_85($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $lhs = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 84, 2); - break a; - } - try { - var$3 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $lhs = $$je; - - } - } - oncipj_Cypher_jj_save($this, 84, 2); - $rt_throw($lhs); - } - oncipj_Cypher_jj_save($this, 84, 2); - } - if (var$3) { - $t = oncipj_Cypher_jj_consume_token($this, 158); - $rhs = oncipj_Cypher_Expression7($this); - return onciafn_Neo4jASTFactory_eq($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 176: - break; - case 182: - $t = oncipj_Cypher_jj_consume_token($this, 182); - $rhs = oncipj_Cypher_Expression7($this); - return onciafn_Neo4jASTFactory_gt($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - case 206: - $t = oncipj_Cypher_jj_consume_token($this, 206); - $rhs = oncipj_Cypher_Expression7($this); - return onciafn_Neo4jASTFactory_lte($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - case 214: - $t = oncipj_Cypher_jj_consume_token($this, 214); - $rhs = oncipj_Cypher_Expression7($this); - return onciafn_Neo4jASTFactory_lt($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - case 221: - $t = oncipj_Cypher_jj_consume_token($this, 221); - $rhs = oncipj_Cypher_Expression7($this); - return onciafn_Neo4jASTFactory_neq($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - case 222: - $t = oncipj_Cypher_jj_consume_token($this, 222); - $rhs = oncipj_Cypher_Expression7($this); - return onciafn_Neo4jASTFactory_neq2($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - default: - $this.$jj_la1.data[206] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - } - $t = oncipj_Cypher_jj_consume_token($this, 176); - $rhs = oncipj_Cypher_Expression7($this); - return onciafn_Neo4jASTFactory_gte($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); -}, -oncipj_Cypher_Expression7 = $this => { - let $e, var$2; - $e = oncipj_Cypher_Expression6($this); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 106: - case 115: - case 157: - case 189: - case 197: - case 281: - case 318: - break; - default: - $this.$jj_la1.data[207] = $this.$jj_gen; - break a; - } - $e = oncipj_Cypher_ComparisonExpression6($this, $e); - } - return $e; -}, -oncipj_Cypher_ComparisonExpression6 = ($this, $lhs) => { - let $t, var$3, $rhs, var$5, $typeName, $normalForm, $$je; - $this.$jj_la = 2; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - a: { - b: { - c: { - d: { - try { - var$3 = oncipj_Cypher_jj_3_86($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $lhs = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 85, 2); - break a; - } - try { - var$3 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $lhs = $$je; - - } - } - oncipj_Cypher_jj_save($this, 85, 2); - $rt_throw($lhs); - } - oncipj_Cypher_jj_save($this, 85, 2); - } - if (var$3) { - $t = oncipj_Cypher_jj_consume_token($this, 281); - $rhs = oncipj_Cypher_Expression6($this); - return onciafn_Neo4jASTFactory_regeq($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 106: - break; - case 115: - $t = oncipj_Cypher_jj_consume_token($this, 115); - $rhs = oncipj_Cypher_Expression6($this); - $t = oncipj_Cypher_pos($this, $t); - return oncie_Contains__init_($lhs, $rhs, $t); - case 157: - $t = oncipj_Cypher_jj_consume_token($this, 157); - oncipj_Cypher_jj_consume_token($this, 360); - $rhs = oncipj_Cypher_Expression6($this); - return onciafn_Neo4jASTFactory_endsWith($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - case 189: - $t = oncipj_Cypher_jj_consume_token($this, 189); - $rhs = oncipj_Cypher_Expression6($this); - $t = oncipj_Cypher_pos($this, $t); - return oncie_In__init_($lhs, $rhs, $t); - case 197: - $t = oncipj_Cypher_jj_consume_token($this, 197); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 106: - case 341: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$5) { - case 106: - break; - case 341: - oncipj_Cypher_jj_consume_token($this, 341); - break e; - default: - $this.$jj_la1.data[210] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - } - oncipj_Cypher_jj_consume_token($this, 106); - } - $typeName = oncipj_Cypher_cypherTypeName($this); - return onciafn_Neo4jASTFactory_isTyped($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $typeName); - case 226: - case 227: - case 228: - case 229: - case 236: - $normalForm = oncipj_Cypher_normalForm($this); - oncipj_Cypher_jj_consume_token($this, 236); - return onciafn_Neo4jASTFactory_isNormalized($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $normalForm); - case 237: - oncipj_Cypher_jj_consume_token($this, 237); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 106: - case 341: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$5) { - case 106: - break; - case 341: - oncipj_Cypher_jj_consume_token($this, 341); - break f; - default: - $this.$jj_la1.data[208] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - } - oncipj_Cypher_jj_consume_token($this, 106); - } - $typeName = oncipj_Cypher_cypherTypeName($this); - return onciafn_Neo4jASTFactory_isNotTyped($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $typeName); - case 226: - case 227: - case 228: - case 229: - case 236: - $normalForm = oncipj_Cypher_normalForm($this); - oncipj_Cypher_jj_consume_token($this, 236); - return onciafn_Neo4jASTFactory_isNotNormalized($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $normalForm); - case 240: - break; - default: - $this.$jj_la1.data[209] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - } - oncipj_Cypher_jj_consume_token($this, 240); - return onciafn_Neo4jASTFactory_isNotNull($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs); - case 240: - break; - default: - $this.$jj_la1.data[211] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - } - oncipj_Cypher_jj_consume_token($this, 240); - return onciafn_Neo4jASTFactory_isNull($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs); - case 318: - $t = oncipj_Cypher_jj_consume_token($this, 318); - oncipj_Cypher_jj_consume_token($this, 360); - $rhs = oncipj_Cypher_Expression6($this); - return onciafn_Neo4jASTFactory_startsWith($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $rhs); - default: - $this.$jj_la1.data[212] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - } - $t = oncipj_Cypher_jj_consume_token($this, 106); - $typeName = oncipj_Cypher_cypherTypeName($this); - return onciafn_Neo4jASTFactory_isTyped($this.$astFactory, oncipj_Cypher_pos($this, $t), $lhs, $typeName); -}, -oncipj_Cypher_normalForm = $this => { - let $normalForm, var$2, var$3; - $normalForm = oncipcaf_ParserNormalForm_NFC; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 226: - case 227: - case 228: - case 229: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 226: - break; - case 227: - oncipj_Cypher_jj_consume_token($this, 227); - $normalForm = oncipcaf_ParserNormalForm_NFD; - break a; - case 228: - oncipj_Cypher_jj_consume_token($this, 228); - $normalForm = oncipcaf_ParserNormalForm_NFKC; - break a; - case 229: - oncipj_Cypher_jj_consume_token($this, 229); - $normalForm = oncipcaf_ParserNormalForm_NFKD; - break a; - default: - $this.$jj_la1.data[213] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $normalForm = new oncipj_ParseException; - jl_Throwable__init_($normalForm); - $rt_throw($normalForm); - } - oncipj_Cypher_jj_consume_token($this, 226); - break a; - default: - } - $this.$jj_la1.data[214] = $this.$jj_gen; - } - return $normalForm; -}, -oncipj_Cypher_Expression6 = $this => { - let $lhs, var$2, var$3, $t, $rhs; - $lhs = oncipj_Cypher_Expression5($this); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 138: - case 219: - case 257: - break; - default: - break a; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 138: - break; - case 219: - $t = oncipj_Cypher_jj_consume_token($this, 219); - $rhs = oncipj_Cypher_Expression5($this); - $t = oncipj_Cypher_pos($this, $t); - $lhs = oncie_Subtract__init_0($lhs, $rhs, $t); - continue a; - case 257: - $t = oncipj_Cypher_jj_consume_token($this, 257); - $rhs = oncipj_Cypher_Expression5($this); - $t = oncipj_Cypher_pos($this, $t); - $lhs = oncie_Add__init_0($lhs, $rhs, $t); - continue a; - default: - $this.$jj_la1.data[216] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - } - $t = oncipj_Cypher_jj_consume_token($this, 138); - $rhs = oncipj_Cypher_Expression5($this); - $t = oncipj_Cypher_pos($this, $t); - $lhs = oncie_Concatenate__init_0($lhs, $rhs, $t); - } - $this.$jj_la1.data[215] = $this.$jj_gen; - return $lhs; -}, -oncipj_Cypher_Expression5 = $this => { - let $lhs, var$2, var$3, $t, $rhs; - $lhs = oncipj_Cypher_Expression4($this); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 141: - case 220: - case 329: - break; - default: - break a; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 141: - break; - case 220: - $t = oncipj_Cypher_jj_consume_token($this, 220); - $rhs = oncipj_Cypher_Expression4($this); - $t = oncipj_Cypher_pos($this, $t); - $lhs = oncie_Modulo__init_0($lhs, $rhs, $t); - continue a; - case 329: - $t = oncipj_Cypher_jj_consume_token($this, 329); - $rhs = oncipj_Cypher_Expression4($this); - $t = oncipj_Cypher_pos($this, $t); - $lhs = oncie_Multiply__init_0($lhs, $rhs, $t); - continue a; - default: - $this.$jj_la1.data[218] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $lhs = new oncipj_ParseException; - jl_Throwable__init_($lhs); - $rt_throw($lhs); - } - $t = oncipj_Cypher_jj_consume_token($this, 141); - $rhs = oncipj_Cypher_Expression4($this); - $t = oncipj_Cypher_pos($this, $t); - $lhs = oncie_Divide__init_0($lhs, $rhs, $t); - } - $this.$jj_la1.data[217] = $this.$jj_gen; - return $lhs; -}, -oncipj_Cypher_Expression4 = $this => { - let $lhs, var$2, $t, $rhs; - $lhs = oncipj_Cypher_Expression3($this); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 261: - break; - default: - break a; - } - $t = oncipj_Cypher_jj_consume_token($this, 261); - $rhs = oncipj_Cypher_Expression3($this); - $t = oncipj_Cypher_pos($this, $t); - $lhs = oncie_Pow__init_0($lhs, $rhs, $t); - } - $this.$jj_la1.data[219] = $this.$jj_gen; - return $lhs; -}, -oncipj_Cypher_Expression3 = $this => { - let $t, var$2, $e, var$4, $$je; - $this.$jj_la = 3; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_87($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 86, 3); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 86, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 86, 3); - } - e: { - if (var$2) - $e = oncipj_Cypher_Expression2($this); - else { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 219: - $t = oncipj_Cypher_jj_consume_token($this, 219); - $e = oncipj_Cypher_Expression2($this); - $t = oncipj_Cypher_pos($this, $t); - $e = oncie_UnarySubtract__init_0($e, $t); - break e; - case 257: - $t = oncipj_Cypher_jj_consume_token($this, 257); - $e = oncipj_Cypher_Expression2($this); - $t = oncipj_Cypher_pos($this, $t); - $e = oncie_UnaryAdd__init_0($e, $t); - break e; - default: - } - $this.$jj_la1.data[220] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - } - return $e; -}, -oncipj_Cypher_Expression2 = $this => { - let $e, var$2, var$3, var$4, var$5, var$6, var$7, var$8, $$je; - $e = oncipj_Cypher_Expression1($this); - a: { - b: { - c: { - d: { - while (true) { - $this.$jj_la = 2147483647; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - e: { - f: { - try { - var$3 = oncipj_Cypher_jj_3_88($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $e = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 87, 2147483647); - break e; - } - try { - var$3 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $e = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 87, 2147483647); - } - if (!var$3) - break; - var$2 = null; - var$4 = null; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$3) { - case 142: - break; - default: - $this.$jj_la1.data[223] = $this.$jj_gen; - $this.$jj_la = 2147483647; - var$5 = $this.$token; - $this.$jj_scanpos = var$5; - $this.$jj_lastpos = var$5; - h: { - i: { - try { - var$6 = oncipj_Cypher_jj_3_89($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $e = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 88, 2147483647); - break h; - } - try { - var$6 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $e = $$je; - break b; - - } - oncipj_Cypher_jj_save($this, 88, 2147483647); - } - if (var$6) { - $e = oncipj_Cypher_LabelExpressionPredicate($this, $e); - break g; - } - $this.$jj_la = 2147483647; - var$5 = $this.$token; - $this.$jj_scanpos = var$5; - $this.$jj_lastpos = var$5; - j: { - k: { - try { - var$6 = oncipj_Cypher_jj_3_90($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break k; - } else{ - $e = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 89, 2147483647); - break j; - } - try { - var$6 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $e = $$je; - break c; - - } - oncipj_Cypher_jj_save($this, 89, 2147483647); - } - if (var$6) { - $e = oncipj_Cypher_LabelExpressionPredicate($this, $e); - break g; - } - $this.$jj_la = 2147483647; - var$5 = $this.$token; - $this.$jj_scanpos = var$5; - $this.$jj_lastpos = var$5; - l: { - m: { - try { - var$6 = oncipj_Cypher_jj_3_91($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break m; - } else{ - $e = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 90, 2147483647); - break l; - } - try { - var$6 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $e = $$je; - break d; - - } - oncipj_Cypher_jj_save($this, 90, 2147483647); - } - if (var$6) { - oncipj_Cypher_jj_consume_token($this, 204); - var$2 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 275); - $e = onciafn_Neo4jASTFactory_listLookup($this.$astFactory, $e, var$2); - break g; - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 204: - break; - default: - $this.$jj_la1.data[224] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $e = new oncipj_ParseException; - jl_Throwable__init_($e); - $rt_throw($e); - } - var$5 = oncipj_Cypher_jj_consume_token($this, 204); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - n: { - o: { - switch (var$7) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break o; - default: - break o; - } - var$2 = oncipj_Cypher_Expression($this); - break n; - } - $this.$jj_la1.data[221] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 143); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - p: { - q: { - switch (var$7) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break q; - default: - break q; - } - var$4 = oncipj_Cypher_Expression($this); - break p; - } - $this.$jj_la1.data[222] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 275); - var$5 = oncipj_Cypher_pos($this, var$5); - var$8 = $e; - var$2 = var$2; - var$4 = var$4; - $e = new oncie_ListSlice; - s_Option$_$callClinit(); - oncie_ListSlice__init_($e, var$8, s_Option$_apply(s_Option$_MODULE$, var$2), s_Option$_apply(s_Option$_MODULE$, var$4), var$5); - break g; - } - $e = oncipj_Cypher_Property($this, $e); - } - } - return $e; - } - oncipj_Cypher_jj_save($this, 90, 2147483647); - $rt_throw($e); - } - oncipj_Cypher_jj_save($this, 89, 2147483647); - $rt_throw($e); - } - oncipj_Cypher_jj_save($this, 88, 2147483647); - $rt_throw($e); - } - oncipj_Cypher_jj_save($this, 87, 2147483647); - $rt_throw($e); -}; -let oncipj_Cypher_Property = ($this, $subject) => { - let $propKeyName; - oncipj_Cypher_jj_consume_token($this, 142); - $propKeyName = oncipj_Cypher_PropertyKeyName($this); - $subject = $subject; - return oncie_Property__init_($subject, oncie_PropertyKeyName__init_($propKeyName.$string, $propKeyName.$pos3), $subject.$position()); -}, -oncipj_Cypher_DynamicPropertyExpression = $this => { - let $subject, $e; - $subject = oncipj_Cypher_Expression1($this); - oncipj_Cypher_jj_consume_token($this, 204); - $e = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 275); - return onciafn_Neo4jASTFactory_listLookup($this.$astFactory, $subject, $e); -}, -oncipj_Cypher_PropertyExpression = $this => { - let $subject, var$2; - $subject = oncipj_Cypher_Expression1($this); - a: while (true) { - $subject = oncipj_Cypher_Property($this, $subject); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 142: - break; - default: - break a; - } - } - $this.$jj_la1.data[225] = $this.$jj_gen; - return $subject; -}, -oncipj_Cypher_Expression1 = $this => { - let var$1, $t, var$3, var$4, $$je; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - b: { - switch (var$1) { - case 35: - case 36: - case 39: - case 40: - case 219: - break; - case 52: - case 64: - $t = oncipj_Cypher_StringLiteral($this); - break b; - case 137: - $t = oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_ANY); - break b; - case 166: - $t = oncie_False__init_0(oncipj_Cypher_pos($this, oncipj_Cypher_jj_consume_token($this, 166))); - break b; - case 192: - case 193: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$3) { - case 192: - break; - case 193: - $t = oncipj_Cypher_jj_consume_token($this, 193); - break c; - default: - $this.$jj_la1.data[226] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Exception__init_($t); - $rt_throw($t); - } - $t = oncipj_Cypher_jj_consume_token($this, 192); - } - $t = onciafn_Neo4jASTFactory_newInfinityLiteral($this.$astFactory, oncipj_Cypher_pos($this, $t)); - break b; - case 225: - $t = oncie_NaN__init_0(oncipj_Cypher_pos($this, oncipj_Cypher_jj_consume_token($this, 225))); - break b; - case 339: - $t = oncie_True__init_0(oncipj_Cypher_pos($this, oncipj_Cypher_jj_consume_token($this, 339))); - break b; - default: - $this.$jj_la1.data[227] = $this.$jj_gen; - $this.$jj_la = 2; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - d: { - e: { - f: { - g: { - try { - var$1 = oncipj_Cypher_jj_3_92($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break g; - } else{ - $t = $$je; - break f; - } - } - oncipj_Cypher_jj_save($this, 91, 2); - break d; - } - try { - var$1 = 1; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 91, 2); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 91, 2); - } - if (var$1) { - $t = oncie_Null__init_0(oncipj_Cypher_pos($this, oncipj_Cypher_jj_consume_token($this, 240))); - break b; - } - $this.$jj_la = 3; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - h: { - i: { - j: { - k: { - try { - var$1 = oncipj_Cypher_jj_3_93($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break k; - } else{ - $t = $$je; - break j; - } - } - oncipj_Cypher_jj_save($this, 92, 3); - break h; - } - try { - var$1 = 1; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 92, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 92, 3); - } - if (var$1) { - $t = oncipj_Cypher_CaseExpression($this); - break b; - } - $this.$jj_la = 3; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - l: { - m: { - n: { - o: { - try { - var$1 = oncipj_Cypher_jj_3_94($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break o; - } else{ - $t = $$je; - break n; - } - } - oncipj_Cypher_jj_save($this, 93, 3); - break l; - } - try { - var$1 = 1; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 93, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 93, 3); - } - if (var$1) { - $t = oncipj_Cypher_jj_consume_token($this, 118); - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_jj_consume_token($this, 329); - oncipj_Cypher_jj_consume_token($this, 297); - $t = oncie_CountStar__init_0(oncipj_Cypher_pos($this, $t)); - break b; - } - if (oncipj_Cypher_jj_2_95($this, 3)) { - $t = oncipj_Cypher_MapLiteral($this); - break b; - } - if (oncipj_Cypher_jj_2_96($this, 3)) { - $t = oncipj_Cypher_ExistsExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_97($this, 3)) { - $t = oncipj_Cypher_CountExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_98($this, 3)) { - $t = oncipj_Cypher_CollectExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_99($this, 2)) { - $t = oncipj_Cypher_MapProjection($this); - break b; - } - if (oncipj_Cypher_jj_2_100($this, 2147483647)) { - $t = oncipj_Cypher_ListComprehension($this); - break b; - } - if (oncipj_Cypher_jj_2_101($this, 2147483647)) { - $t = oncipj_Cypher_PatternComprehension($this); - break b; - } - if (oncipj_Cypher_jj_2_102($this, 3)) { - $t = oncipj_Cypher_ListLiteral($this); - break b; - } - if (oncipj_Cypher_jj_2_103($this, 3)) { - $t = oncipj_Cypher_ReduceExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_104($this, 3)) { - $t = oncipj_Cypher_AllExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_105($this, 3)) { - $t = oncipj_Cypher_AnyExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_106($this, 3)) { - $t = oncipj_Cypher_NoneExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_107($this, 3)) { - $t = oncipj_Cypher_SingleExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_108($this, 2)) { - $t = oncipj_Cypher_NormalizeExpression($this); - break b; - } - if (oncipj_Cypher_jj_2_109($this, 2)) { - $t = oncipj_Cypher_TrimFunction($this); - break b; - } - if (oncipj_Cypher_jj_2_110($this, 2147483647)) { - $t = $this.$token; - var$4 = oncipj_Cypher_PathPatternNonEmpty($this); - $t = onciafn_Neo4jASTFactory_patternExpression($this.$astFactory, oncipj_Cypher_pos($this, $t.$next5), var$4); - break b; - } - if (oncipj_Cypher_jj_2_111($this, 2)) { - $t = oncipj_Cypher_ShortestPathExpression($this); - break b; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 213: - break; - default: - $this.$jj_la1.data[228] = $this.$jj_gen; - if (oncipj_Cypher_jj_2_112($this, 2147483647)) { - $t = oncipj_Cypher_FunctionInvocation($this, 0); - break b; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break a; - default: - break a; - } - $t = oncipj_Cypher_Variable($this); - break b; - } - oncipj_Cypher_jj_consume_token($this, 213); - ju_Stack_push($this.$labelExpressionStack, oncipj_ExpectBar_DO_NOT_EXPECT_BAR); - $t = oncipj_Cypher_Expression($this); - ju_Stack_pop($this.$labelExpressionStack); - oncipj_Cypher_jj_consume_token($this, 297); - break b; - } - $t = oncipj_Cypher_NumberLiteral($this); - } - return $t; - } - $this.$jj_la1.data[229] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); -}, -oncipj_Cypher_CaseExpression = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, $$je; - $this.$jj_la = 2147483647; - var$1 = $this.$token; - $this.$jj_scanpos = var$1; - $this.$jj_lastpos = var$1; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_113($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - var$1 = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 112, 2147483647); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 112, 2147483647); - $rt_throw(var$1); - } - oncipj_Cypher_jj_save($this, 112, 2147483647); - } - e: { - if (var$2) { - ju_ArrayList__init_0(new ju_ArrayList); - var$1 = ju_ArrayList__init_(); - var$3 = ju_ArrayList__init_(); - var$4 = null; - var$5 = oncipj_Cypher_jj_consume_token($this, 101); - var$6 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 358); - var$7 = oncipj_Cypher_simpleCaseWhenOperandList($this); - ju_AbstractCollection_addAll(var$1, var$7); - oncipj_Cypher_jj_consume_token($this, 327); - var$8 = oncipj_Cypher_Expression($this); - var$9 = 0; - while (var$9 < var$7.$size0) { - ju_ArrayList_add(var$3, var$8); - var$9 = var$9 + 1 | 0; - } - f: while (true) { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 358: - break; - default: - break f; - } - oncipj_Cypher_jj_consume_token($this, 358); - var$7 = oncipj_Cypher_simpleCaseWhenOperandList($this); - ju_AbstractCollection_addAll(var$1, var$7); - oncipj_Cypher_jj_consume_token($this, 327); - var$8 = oncipj_Cypher_Expression($this); - var$2 = 0; - while (var$2 < var$7.$size0) { - ju_ArrayList_add(var$3, var$8); - var$2 = var$2 + 1 | 0; - } - } - $this.$jj_la1.data[231] = $this.$jj_gen; - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$9) { - case 154: - break; - default: - $this.$jj_la1.data[232] = $this.$jj_gen; - break g; - } - oncipj_Cypher_jj_consume_token($this, 154); - var$4 = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 156); - var$1 = onciafn_Neo4jASTFactory_caseExpression($this.$astFactory, oncipj_Cypher_pos($this, var$5), var$6, var$1, var$3, var$4); - } else { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 101: - var$1 = null; - var$3 = ju_ArrayList__init_(); - var$4 = ju_ArrayList__init_(); - var$5 = null; - var$7 = oncipj_Cypher_jj_consume_token($this, 101); - oncipj_Cypher_jj_consume_token($this, 358); - ju_ArrayList_add(var$3, oncipj_Cypher_Expression($this)); - oncipj_Cypher_jj_consume_token($this, 327); - ju_ArrayList_add(var$4, oncipj_Cypher_Expression($this)); - h: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 358: - break; - default: - break h; - } - oncipj_Cypher_jj_consume_token($this, 358); - ju_ArrayList_add(var$3, oncipj_Cypher_Expression($this)); - oncipj_Cypher_jj_consume_token($this, 327); - ju_ArrayList_add(var$4, oncipj_Cypher_Expression($this)); - } - $this.$jj_la1.data[235] = $this.$jj_gen; - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$9) { - case 154: - break; - default: - $this.$jj_la1.data[236] = $this.$jj_gen; - break i; - } - oncipj_Cypher_jj_consume_token($this, 154); - var$5 = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 156); - var$1 = onciafn_Neo4jASTFactory_caseExpression($this.$astFactory, oncipj_Cypher_pos($this, var$7), var$1, var$3, var$4, var$5); - break e; - default: - } - $this.$jj_la1.data[230] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$1 = new oncipj_ParseException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - } - } - return var$1; -}, -oncipj_Cypher_simpleCaseWhenOperandList = $this => { - let $list, $e, var$3, $$je; - $list = ju_ArrayList__init_(); - ju_ArrayList_add($list, oncipj_Cypher_whenOperand($this)); - a: { - while (true) { - $this.$jj_la = 2; - $e = $this.$token; - $this.$jj_scanpos = $e; - $this.$jj_lastpos = $e; - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_114($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - $list = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 113, 2); - break b; - } - try { - var$3 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $list = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 113, 2); - } - if (!var$3) - break; - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($list, oncipj_Cypher_whenOperand($this)); - } - return $list; - } - oncipj_Cypher_jj_save($this, 113, 2); - $rt_throw($list); -}, -oncipj_Cypher_whenOperand = $this => { - let $t, var$2, $rhs, $normalForm, $typeName, var$6, $e, $$je; - $t = $this.$token; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 157: - $t = oncipj_Cypher_jj_consume_token($this, 157); - oncipj_Cypher_jj_consume_token($this, 360); - $rhs = oncipj_Cypher_Expression6($this); - return onciafn_Neo4jASTFactory_endsWith($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $rhs); - case 281: - break; - case 318: - $t = oncipj_Cypher_jj_consume_token($this, 318); - oncipj_Cypher_jj_consume_token($this, 360); - $rhs = oncipj_Cypher_Expression6($this); - return onciafn_Neo4jASTFactory_startsWith($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $rhs); - default: - $this.$jj_la1.data[233] = $this.$jj_gen; - $this.$jj_la = 3; - $rhs = $this.$token; - $this.$jj_scanpos = $rhs; - $this.$jj_lastpos = $rhs; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_115($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 114, 3); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 114, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 114, 3); - } - if (var$2) { - $t = oncipj_Cypher_jj_consume_token($this, 197); - oncipj_Cypher_jj_consume_token($this, 240); - return onciafn_Neo4jASTFactory_isNull($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory)); - } - $this.$jj_la = 3; - $rhs = $this.$token; - $this.$jj_scanpos = $rhs; - $this.$jj_lastpos = $rhs; - e: { - f: { - g: { - h: { - try { - var$2 = oncipj_Cypher_jj_3_116($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break h; - } else{ - $t = $$je; - break g; - } - } - oncipj_Cypher_jj_save($this, 115, 3); - break e; - } - try { - var$2 = 1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 115, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 115, 3); - } - if (var$2) { - $t = oncipj_Cypher_jj_consume_token($this, 197); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 240); - return onciafn_Neo4jASTFactory_isNotNull($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory)); - } - $this.$jj_la = 3; - $rhs = $this.$token; - $this.$jj_scanpos = $rhs; - $this.$jj_lastpos = $rhs; - i: { - j: { - k: { - l: { - try { - var$2 = oncipj_Cypher_jj_3_117($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break l; - } else{ - $t = $$je; - break k; - } - } - oncipj_Cypher_jj_save($this, 116, 3); - break i; - } - try { - var$2 = 1; - break j; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 116, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 116, 3); - } - if (var$2) { - $t = oncipj_Cypher_jj_consume_token($this, 197); - $normalForm = oncipj_Cypher_normalForm($this); - oncipj_Cypher_jj_consume_token($this, 236); - return onciafn_Neo4jASTFactory_isNormalized($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $normalForm); - } - $this.$jj_la = 3; - $rhs = $this.$token; - $this.$jj_scanpos = $rhs; - $this.$jj_lastpos = $rhs; - m: { - n: { - o: { - p: { - try { - var$2 = oncipj_Cypher_jj_3_118($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break p; - } else{ - $t = $$je; - break o; - } - } - oncipj_Cypher_jj_save($this, 117, 3); - break m; - } - try { - var$2 = 1; - break n; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 117, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 117, 3); - } - if (var$2) { - $t = oncipj_Cypher_jj_consume_token($this, 197); - oncipj_Cypher_jj_consume_token($this, 237); - $normalForm = oncipj_Cypher_normalForm($this); - oncipj_Cypher_jj_consume_token($this, 236); - return onciafn_Neo4jASTFactory_isNotNormalized($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $normalForm); - } - $this.$jj_la = 3; - $rhs = $this.$token; - $this.$jj_scanpos = $rhs; - $this.$jj_lastpos = $rhs; - q: { - r: { - s: { - t: { - try { - var$2 = oncipj_Cypher_jj_3_119($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break t; - } else{ - $t = $$je; - break s; - } - } - oncipj_Cypher_jj_save($this, 118, 3); - break q; - } - try { - var$2 = 1; - break r; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 118, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 118, 3); - } - if (var$2) { - $t = oncipj_Cypher_jj_consume_token($this, 197); - oncipj_Cypher_jj_consume_token($this, 341); - $typeName = oncipj_Cypher_cypherTypeName($this); - return onciafn_Neo4jASTFactory_isTyped($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $typeName); - } - $this.$jj_la = 3; - $rhs = $this.$token; - $this.$jj_scanpos = $rhs; - $this.$jj_lastpos = $rhs; - u: { - v: { - w: { - x: { - try { - var$2 = oncipj_Cypher_jj_3_120($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break x; - } else{ - $t = $$je; - break w; - } - } - oncipj_Cypher_jj_save($this, 119, 3); - break u; - } - try { - var$2 = 1; - break v; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 119, 3); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 119, 3); - } - if (var$2) { - $t = oncipj_Cypher_jj_consume_token($this, 197); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 341); - $typeName = oncipj_Cypher_cypherTypeName($this); - return onciafn_Neo4jASTFactory_isNotTyped($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $typeName); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - y: { - switch (var$6) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $e = oncipj_Cypher_Expression($this); - return onciafn_Neo4jASTFactory_eq($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $e); - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 107: - case 138: - case 141: - case 142: - case 143: - case 202: - case 203: - case 220: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break y; - case 106: - $t = oncipj_Cypher_jj_consume_token($this, 106); - $typeName = oncipj_Cypher_cypherTypeName($this); - return onciafn_Neo4jASTFactory_isTyped($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $typeName); - case 158: - case 176: - case 182: - case 206: - case 214: - case 221: - case 222: - break; - default: - break y; - } - return oncipj_Cypher_Expression8ComparatorExpression($this, onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory)); - } - $this.$jj_la1.data[234] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); - } - $t = oncipj_Cypher_jj_consume_token($this, 281); - $rhs = oncipj_Cypher_Expression6($this); - return onciafn_Neo4jASTFactory_regeq($this.$astFactory, oncipj_Cypher_pos($this, $t), onciafn_Neo4jASTFactory_casePlaceholder($this.$astFactory), $rhs); -}, -oncipj_Cypher_ListComprehension = $this => { - let $where, $projection, $t, $v, $e, var$6, var$7; - $where = null; - $projection = null; - ju_Stack_push($this.$labelExpressionStack, oncipj_ExpectBar_EXPECT_BAR); - $t = oncipj_Cypher_jj_consume_token($this, 204); - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 189); - $e = oncipj_Cypher_Expression($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 359: - break; - default: - $this.$jj_la1.data[237] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $where = oncipj_Cypher_Expression($this); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 88: - break; - default: - $this.$jj_la1.data[238] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 88); - $projection = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 275); - ju_Stack_pop($this.$labelExpressionStack); - $t = oncipj_Cypher_pos($this, $t); - $e = $e; - $where = $where; - $projection = $projection; - var$7 = oncie_ListComprehension$_MODULE$; - s_Option$_$callClinit(); - return oncie_ListComprehension$_apply(var$7, $v, $e, s_Option$_apply(s_Option$_MODULE$, $where), s_Option$_apply(s_Option$_MODULE$, $projection), $t); -}, -oncipj_Cypher_PatternComprehension = $this => { - let $v, $where, $t, var$4, $relationshipPatternPosition, $p, var$7, var$8, var$9; - $v = null; - $where = null; - $t = oncipj_Cypher_jj_consume_token($this, 204); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - b: { - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break b; - default: - break b; - } - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 158); - break a; - } - $this.$jj_la1.data[239] = $this.$jj_gen; - } - $relationshipPatternPosition = $this.$token; - $p = oncipj_Cypher_PathPatternNonEmpty($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$4) { - case 359: - oncipj_Cypher_jj_consume_token($this, 359); - ju_Stack_push($this.$labelExpressionStack, oncipj_ExpectBar_EXPECT_BAR); - $where = oncipj_Cypher_Expression($this); - ju_Stack_pop($this.$labelExpressionStack); - break c; - default: - } - $this.$jj_la1.data[240] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 88); - var$7 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 275); - $t = oncipj_Cypher_pos($this, $t); - $relationshipPatternPosition = oncipj_Cypher_pos($this, $relationshipPatternPosition.$next5); - $where = $where; - var$7 = var$7; - var$8 = new oncie_PatternComprehension; - s_Option$_$callClinit(); - $v = s_Option$_apply(s_Option$_MODULE$, $v); - var$9 = oncie_RelationshipsPattern__init_($p.$element3, $relationshipPatternPosition); - $relationshipPatternPosition = s_Option$_apply(s_Option$_MODULE$, $where); - $where = s_None$_MODULE$; - oncie_PatternComprehension__init_(var$8, $v, var$9, $relationshipPatternPosition, var$7, $t, $where, $where); - return var$8; -}, -oncipj_Cypher_ReduceExpression = $this => { - let $t, $acc, $accExpr, $v, $vExpr, $innerExpr; - $t = oncipj_Cypher_jj_consume_token($this, 279); - oncipj_Cypher_jj_consume_token($this, 213); - $acc = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 158); - $accExpr = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 107); - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 189); - $vExpr = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 88); - $innerExpr = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - $t = oncipj_Cypher_pos($this, $t); - $accExpr = $accExpr; - $vExpr = $vExpr; - $innerExpr = $innerExpr; - return oncie_ReduceExpression__init_(oncie_ReduceScope__init_($acc, $v, $innerExpr, $t), $accExpr, $vExpr, $t); -}, -oncipj_Cypher_AllExpression = $this => { - let $where, $t, $v, $e, var$5, var$6; - $where = null; - $t = oncipj_Cypher_jj_consume_token($this, 76); - oncipj_Cypher_jj_consume_token($this, 213); - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 189); - $e = oncipj_Cypher_Expression($this); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 359: - break; - default: - $this.$jj_la1.data[243] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $where = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 297); - $t = oncipj_Cypher_pos($this, $t); - $e = $e; - $where = $where; - oncie_AllIterablePredicate$_$callClinit(); - var$6 = oncie_AllIterablePredicate$_MODULE$; - s_Option$_$callClinit(); - return oncie_AllIterablePredicate$_apply(var$6, $v, $e, s_Option$_apply(s_Option$_MODULE$, $where), $t); -}, -oncipj_Cypher_AnyExpression = $this => { - let $where, $t, $v, $e, var$5, var$6; - $where = null; - $t = oncipj_Cypher_jj_consume_token($this, 79); - oncipj_Cypher_jj_consume_token($this, 213); - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 189); - $e = oncipj_Cypher_Expression($this); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 359: - break; - default: - $this.$jj_la1.data[244] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $where = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 297); - $t = oncipj_Cypher_pos($this, $t); - $e = $e; - $where = $where; - oncie_AnyIterablePredicate$_$callClinit(); - var$6 = oncie_AnyIterablePredicate$_MODULE$; - s_Option$_$callClinit(); - return oncie_AnyIterablePredicate$_apply(var$6, $v, $e, s_Option$_apply(s_Option$_MODULE$, $where), $t); -}, -oncipj_Cypher_NoneExpression = $this => { - let $where, $t, $v, $e, var$5, var$6; - $where = null; - $t = oncipj_Cypher_jj_consume_token($this, 234); - oncipj_Cypher_jj_consume_token($this, 213); - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 189); - $e = oncipj_Cypher_Expression($this); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 359: - break; - default: - $this.$jj_la1.data[245] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $where = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 297); - $t = oncipj_Cypher_pos($this, $t); - $e = $e; - $where = $where; - oncie_NoneIterablePredicate$_$callClinit(); - var$6 = oncie_NoneIterablePredicate$_MODULE$; - s_Option$_$callClinit(); - return oncie_NoneIterablePredicate$_apply(var$6, $v, $e, s_Option$_apply(s_Option$_MODULE$, $where), $t); -}, -oncipj_Cypher_SingleExpression = $this => { - let $where, $t, $v, $e, var$5, var$6; - $where = null; - $t = oncipj_Cypher_jj_consume_token($this, 315); - oncipj_Cypher_jj_consume_token($this, 213); - $v = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 189); - $e = oncipj_Cypher_Expression($this); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 359: - break; - default: - $this.$jj_la1.data[246] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 359); - $where = oncipj_Cypher_Expression($this); - } - oncipj_Cypher_jj_consume_token($this, 297); - $t = oncipj_Cypher_pos($this, $t); - $e = $e; - $where = $where; - oncie_SingleIterablePredicate$_$callClinit(); - var$6 = oncie_SingleIterablePredicate$_MODULE$; - s_Option$_$callClinit(); - return oncie_SingleIterablePredicate$_apply(var$6, $v, $e, s_Option$_apply(s_Option$_MODULE$, $where), $t); -}, -oncipj_Cypher_NormalizeExpression = $this => { - let $normalForm, $t, $e, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $normalForm = oncipcaf_ParserNormalForm_NFC; - $t = oncipj_Cypher_jj_consume_token($this, 235); - oncipj_Cypher_jj_consume_token($this, 213); - $e = oncipj_Cypher_Expression($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 107: - oncipj_Cypher_jj_consume_token($this, 107); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 226: - oncipj_Cypher_jj_consume_token($this, 226); - break a; - case 227: - oncipj_Cypher_jj_consume_token($this, 227); - $normalForm = oncipcaf_ParserNormalForm_NFD; - break a; - case 228: - oncipj_Cypher_jj_consume_token($this, 228); - $normalForm = oncipcaf_ParserNormalForm_NFKC; - break a; - case 229: - oncipj_Cypher_jj_consume_token($this, 229); - $normalForm = oncipcaf_ParserNormalForm_NFKD; - break a; - default: - } - $this.$jj_la1.data[247] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $normalForm = new oncipj_ParseException; - jl_Throwable__init_($normalForm); - $rt_throw($normalForm); - default: - } - $this.$jj_la1.data[248] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 297); - $t = oncipj_Cypher_pos($this, $t); - $e = $e; - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$6 = oncie_FunctionName$_MODULE$; - oncief_Normalize$_$callClinit(); - var$7 = oncie_FunctionName$_apply(var$6, $rt_s(428), $t); - s_package$_$callClinit(); - var$8 = s_package$_IndexedSeq(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncie_Expression, 2); - var$10 = var$9.data; - var$10[0] = $e; - var$10[1] = oncie_StringLiteral__init_($normalForm.$description10, onciu_InputPosition$Simple_withInputLength($t, 0)); - $normalForm = sc_SeqFactory$Delegate_apply(var$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$9)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, var$7, 0, $normalForm, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, $t); - return var$5; -}, -oncipj_Cypher_TrimFunction = $this => { - let $trimCharacterString, $trimSpec, $t, var$4, var$5, var$6, var$7, $$je; - $trimCharacterString = null; - $trimSpec = oncipcaf_ParserTrimSpecification_BOTH; - $t = oncipj_Cypher_jj_consume_token($this, 338); - oncipj_Cypher_jj_consume_token($this, 213); - $this.$jj_la = 2147483647; - var$4 = $this.$token; - $this.$jj_scanpos = var$4; - $this.$jj_lastpos = var$4; - a: { - b: { - c: { - d: { - try { - var$5 = oncipj_Cypher_jj_3_122($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $trimCharacterString = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 121, 2147483647); - break a; - } - try { - var$5 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $trimCharacterString = $$je; - - } - } - oncipj_Cypher_jj_save($this, 121, 2147483647); - $rt_throw($trimCharacterString); - } - oncipj_Cypher_jj_save($this, 121, 2147483647); - } - if (var$5) { - oncipj_Cypher_jj_consume_token($this, 172); - var$4 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - return onciafn_Neo4jASTFactory_trimFunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $trimSpec, $trimCharacterString, var$4); - } - $this.$jj_la = 2147483647; - var$4 = $this.$token; - $this.$jj_scanpos = var$4; - $this.$jj_lastpos = var$4; - e: { - f: { - g: { - h: { - try { - var$5 = oncipj_Cypher_jj_3_123($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break h; - } else{ - $trimCharacterString = $$je; - break g; - } - } - oncipj_Cypher_jj_save($this, 122, 2147483647); - break e; - } - try { - var$5 = 1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $trimCharacterString = $$je; - - } - } - oncipj_Cypher_jj_save($this, 122, 2147483647); - $rt_throw($trimCharacterString); - } - oncipj_Cypher_jj_save($this, 122, 2147483647); - } - if (var$5) { - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$6) { - case 93: - break; - case 207: - oncipj_Cypher_jj_consume_token($this, 207); - $trimSpec = oncipcaf_ParserTrimSpecification_LEADING; - break i; - case 334: - oncipj_Cypher_jj_consume_token($this, 334); - $trimSpec = oncipcaf_ParserTrimSpecification_TRAILING; - break i; - default: - $this.$jj_la1.data[249] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $trimCharacterString = new oncipj_ParseException; - jl_Throwable__init_($trimCharacterString); - $rt_throw($trimCharacterString); - } - oncipj_Cypher_jj_consume_token($this, 93); - } - oncipj_Cypher_jj_consume_token($this, 172); - var$4 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - return onciafn_Neo4jASTFactory_trimFunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $trimSpec, $trimCharacterString, var$4); - } - $this.$jj_la = 2147483647; - var$4 = $this.$token; - $this.$jj_scanpos = var$4; - $this.$jj_lastpos = var$4; - j: { - k: { - l: { - m: { - try { - var$5 = oncipj_Cypher_jj_3_124($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break m; - } else{ - $trimCharacterString = $$je; - break l; - } - } - oncipj_Cypher_jj_save($this, 123, 2147483647); - break j; - } - try { - var$5 = 1; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $trimCharacterString = $$je; - - } - } - oncipj_Cypher_jj_save($this, 123, 2147483647); - $rt_throw($trimCharacterString); - } - oncipj_Cypher_jj_save($this, 123, 2147483647); - } - if (var$5) { - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - n: { - switch (var$6) { - case 93: - oncipj_Cypher_jj_consume_token($this, 93); - break n; - case 207: - oncipj_Cypher_jj_consume_token($this, 207); - $trimSpec = oncipcaf_ParserTrimSpecification_LEADING; - break n; - case 334: - oncipj_Cypher_jj_consume_token($this, 334); - $trimSpec = oncipcaf_ParserTrimSpecification_TRAILING; - break n; - default: - } - $this.$jj_la1.data[250] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $trimCharacterString = new oncipj_ParseException; - jl_Throwable__init_($trimCharacterString); - $rt_throw($trimCharacterString); - } - $trimCharacterString = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 172); - var$4 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - return onciafn_Neo4jASTFactory_trimFunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $trimSpec, $trimCharacterString, var$4); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$7 = oncipj_Cypher_Expression($this); - $this.$jj_la = 2147483647; - var$4 = $this.$token; - $this.$jj_scanpos = var$4; - $this.$jj_lastpos = var$4; - o: { - p: { - q: { - r: { - try { - var$6 = oncipj_Cypher_jj_3_121($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break r; - } else{ - $trimCharacterString = $$je; - break q; - } - } - oncipj_Cypher_jj_save($this, 120, 2147483647); - break o; - } - try { - var$6 = 1; - break p; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $trimCharacterString = $$je; - - } - } - oncipj_Cypher_jj_save($this, 120, 2147483647); - $rt_throw($trimCharacterString); - } - oncipj_Cypher_jj_save($this, 120, 2147483647); - } - if (var$6) { - oncipj_Cypher_jj_consume_token($this, 297); - return onciafn_Neo4jASTFactory_trimFunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $trimSpec, $trimCharacterString, var$7); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 172: - break; - default: - $this.$jj_la1.data[251] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $trimCharacterString = new oncipj_ParseException; - jl_Throwable__init_($trimCharacterString); - $rt_throw($trimCharacterString); - } - oncipj_Cypher_jj_consume_token($this, 172); - $trimCharacterString = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - return onciafn_Neo4jASTFactory_trimFunction($this.$astFactory, oncipj_Cypher_pos($this, $t), $trimSpec, var$7, $trimCharacterString); - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[252] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $trimCharacterString = new oncipj_ParseException; - jl_Throwable__init_($trimCharacterString); - $rt_throw($trimCharacterString); -}, -oncipj_Cypher_ShortestPathExpression = $this => { - let $t, $p; - $t = $this.$token; - $p = oncipj_Cypher_ShortestPathPattern($this); - return onciafn_Neo4jASTFactory_patternExpression($this.$astFactory, oncipj_Cypher_pos($this, $t.$next5), $p); -}, -oncipj_Cypher_MapProjection = $this => { - let $items, $v, $t, var$4; - $items = ju_ArrayList__init_(); - $v = oncipj_Cypher_Variable($this); - $t = oncipj_Cypher_jj_consume_token($this, 205); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 142: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_ArrayList_add($items, oncipj_Cypher_MapProjectionItem($this)); - b: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 107: - break; - default: - break b; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($items, oncipj_Cypher_MapProjectionItem($this)); - } - $this.$jj_la1.data[253] = $this.$jj_gen; - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[254] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 276); - $t = oncipj_Cypher_pos($this, $t); - return oncie_MapProjection__init_0($v, sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $items))), $t); -}, -oncipj_Cypher_MapProjectionItem = $this => { - let $t, var$2, $p, var$4, $v, $$je; - $this.$jj_la = 2; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_125($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $t = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 124, 2); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 124, 2); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 124, 2); - } - if (var$2) { - $p = oncipj_Cypher_PropertyKeyName($this); - oncipj_Cypher_jj_consume_token($this, 105); - $t = oncipj_Cypher_Expression($this); - return oncie_LiteralEntry__init_(oncie_PropertyKeyName__init_($p.$string, $p.$pos3), $t, $t.$position()); - } - $this.$jj_la = 2; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - e: { - f: { - g: { - h: { - try { - var$2 = oncipj_Cypher_jj_3_126($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break h; - } else{ - $t = $$je; - break g; - } - } - oncipj_Cypher_jj_save($this, 125, 2); - break e; - } - try { - var$2 = 1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $t = $$je; - - } - } - oncipj_Cypher_jj_save($this, 125, 2); - $rt_throw($t); - } - oncipj_Cypher_jj_save($this, 125, 2); - } - if (var$2) { - oncipj_Cypher_jj_consume_token($this, 142); - $p = oncipj_Cypher_PropertyKeyName($this); - return oncie_PropertySelector__init_(oncie_PropertyKeyName__init_($p.$string, $p.$pos3), $p.$pos3); - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break i; - case 142: - oncipj_Cypher_jj_consume_token($this, 142); - return oncie_AllPropertiesSelector__init_0(oncipj_Cypher_pos($this, oncipj_Cypher_jj_consume_token($this, 329))); - default: - break i; - } - $v = oncipj_Cypher_Variable($this); - return oncie_VariableSelector__init_0($v, $v.$position4); - } - $this.$jj_la1.data[255] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); -}, -oncipj_Cypher_ExistsExpression = $this => { - let $patterns, $matchMode, $q, $where, $t, var$6, var$7, var$8; - $patterns = null; - $matchMode = null; - $q = null; - $where = null; - $t = oncipj_Cypher_jj_consume_token($this, 163); - oncipj_Cypher_jj_consume_token($this, 205); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 132: - case 133: - case 134: - case 135: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 169: - case 170: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 209: - case 211: - case 212: - case 213: - case 215: - case 216: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 243: - case 244: - case 246: - case 247: - case 248: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 286: - case 287: - case 288: - case 289: - case 290: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 347: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 139: - case 262: - break; - default: - $this.$jj_la1.data[256] = $this.$jj_gen; - break b; - } - $matchMode = oncipj_Cypher_MatchMode($this); - } - $patterns = oncipj_Cypher_PatternList($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 359: - break; - default: - $this.$jj_la1.data[257] = $this.$jj_gen; - break a; - } - $where = oncipj_Cypher_WhereClause($this); - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - case 99: - case 119: - case 131: - case 136: - case 168: - case 171: - case 194: - case 208: - case 210: - case 217: - case 218: - case 232: - case 242: - case 245: - case 249: - case 285: - case 291: - case 308: - case 316: - case 346: - case 348: - case 360: - $q = oncipj_Cypher_RegularQuery($this); - break a; - default: - } - $this.$jj_la1.data[258] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $patterns = new oncipj_ParseException; - jl_Throwable__init_($patterns); - $rt_throw($patterns); - } - oncipj_Cypher_jj_consume_token($this, 276); - var$7 = $this.$astFactory; - $t = oncipj_Cypher_pos($this, $t); - var$8 = new oncia_ExistsExpression; - $patterns = onciafn_Neo4jASTFactory_convertSubqueryExpressionToUnifiedExpression(var$7, $matchMode, $patterns, $q, $where); - $matchMode = s_None$_MODULE$; - oncia_ExistsExpression__init_(var$8, $patterns, $t, $matchMode, $matchMode); - return var$8; -}, -oncipj_Cypher_CountExpression = $this => { - let $patterns, $matchMode, $q, $where, $t, var$6, var$7, var$8; - $patterns = null; - $matchMode = null; - $q = null; - $where = null; - $t = oncipj_Cypher_jj_consume_token($this, 118); - oncipj_Cypher_jj_consume_token($this, 205); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 132: - case 133: - case 134: - case 135: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 169: - case 170: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 209: - case 211: - case 212: - case 213: - case 215: - case 216: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 243: - case 244: - case 246: - case 247: - case 248: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 286: - case 287: - case 288: - case 289: - case 290: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 347: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 139: - case 262: - break; - default: - $this.$jj_la1.data[259] = $this.$jj_gen; - break b; - } - $matchMode = oncipj_Cypher_MatchMode($this); - } - $patterns = oncipj_Cypher_PatternList($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 359: - break; - default: - $this.$jj_la1.data[260] = $this.$jj_gen; - break a; - } - $where = oncipj_Cypher_WhereClause($this); - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - case 99: - case 119: - case 131: - case 136: - case 168: - case 171: - case 194: - case 208: - case 210: - case 217: - case 218: - case 232: - case 242: - case 245: - case 249: - case 285: - case 291: - case 308: - case 316: - case 346: - case 348: - case 360: - $q = oncipj_Cypher_RegularQuery($this); - break a; - default: - } - $this.$jj_la1.data[261] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $patterns = new oncipj_ParseException; - jl_Throwable__init_($patterns); - $rt_throw($patterns); - } - oncipj_Cypher_jj_consume_token($this, 276); - var$7 = $this.$astFactory; - $t = oncipj_Cypher_pos($this, $t); - var$8 = new oncia_CountExpression; - $patterns = onciafn_Neo4jASTFactory_convertSubqueryExpressionToUnifiedExpression(var$7, $matchMode, $patterns, $q, $where); - $matchMode = s_None$_MODULE$; - oncia_CountExpression__init_(var$8, $patterns, $t, $matchMode, $matchMode); - return var$8; -}, -oncipj_Cypher_CollectExpression = $this => { - let $t, $q, var$3, var$4; - $t = oncipj_Cypher_jj_consume_token($this, 104); - oncipj_Cypher_jj_consume_token($this, 205); - $q = oncipj_Cypher_RegularQuery($this); - oncipj_Cypher_jj_consume_token($this, 276); - $t = oncipj_Cypher_pos($this, $t); - var$3 = new oncia_CollectExpression; - var$4 = s_None$_MODULE$; - oncia_CollectExpression__init_(var$3, $q, $t, var$4, var$4); - return var$3; -}, -oncipj_Cypher_StringLiteral = $this => { - let $t, var$2; - $t = oncipj_Cypher_StringToken($this); - var$2 = oncipj_Cypher_pos($this, $t); - $t = oncipj_Cypher_endPos($this, $t); - return oncie_StringLiteral__init_($this.$token.$image, onciu_InputPosition$Simple_withInputLength(var$2, ($t.$offset0 - var$2.$offset0 | 0) + 1 | 0)); -}, -oncipj_Cypher_NumberLiteral = $this => { - let $sign, $negated, var$3, var$4, $t, var$6, var$7; - $sign = null; - $negated = 0; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 219: - break; - default: - $this.$jj_la1.data[262] = $this.$jj_gen; - break a; - } - $sign = oncipj_Cypher_jj_consume_token($this, 219); - $negated = 1; - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 35: - $t = oncipj_Cypher_jj_consume_token($this, 35); - if ($sign !== null) - $t = $sign; - $t = oncipj_Cypher_pos($this, $t); - if ($sign === null) - $sign = $this.$token.$image; - else { - $sign = $sign.$image; - var$6 = $this.$token.$image; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(var$7, $sign), var$6); - $sign = jl_AbstractStringBuilder_toString(var$7); - } - return oncie_DecimalDoubleLiteral__init_($sign, $t); - case 36: - $t = oncipj_Cypher_jj_consume_token($this, 36); - var$6 = $this.$astFactory; - if ($sign !== null) - $t = $sign; - return onciafn_Neo4jASTFactory_newDecimalInteger(var$6, oncipj_Cypher_pos($this, $t), $this.$token.$image, $negated); - case 37: - case 38: - break; - case 39: - $t = oncipj_Cypher_jj_consume_token($this, 39); - if ($sign !== null) - $t = $sign; - $sign = oncipj_Cypher_pos($this, $t); - $t = $this.$token.$image; - if (!$negated) - var$6 = oncie_SignedHexIntegerLiteral__init_($t, $sign); - else { - var$6 = new oncie_SignedHexIntegerLiteral; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append0(var$7, 45); - jl_StringBuilder_append(var$7, $t); - oncie_SignedHexIntegerLiteral__init_0(var$6, jl_AbstractStringBuilder_toString(var$7), $sign); - } - return var$6; - case 40: - $t = oncipj_Cypher_jj_consume_token($this, 40); - if ($sign !== null) - $t = $sign; - $sign = oncipj_Cypher_pos($this, $t); - $t = $this.$token.$image; - if (!$negated) - var$6 = oncie_SignedOctalIntegerLiteral__init_($t, $sign); - else { - var$6 = new oncie_SignedOctalIntegerLiteral; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append0(var$7, 45); - jl_StringBuilder_append(var$7, $t); - oncie_SignedOctalIntegerLiteral__init_0(var$6, jl_AbstractStringBuilder_toString(var$7), $sign); - } - return var$6; - default: - } - $this.$jj_la1.data[263] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $sign = new oncipj_ParseException; - jl_Throwable__init_($sign); - $rt_throw($sign); -}, -oncipj_Cypher_SignedIntegerLiteral = $this => { - let $sign, $negated, var$3, $number, var$5; - $sign = null; - $negated = 0; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 219: - break; - default: - $this.$jj_la1.data[264] = $this.$jj_gen; - break a; - } - $sign = oncipj_Cypher_jj_consume_token($this, 219); - $negated = 1; - } - $number = oncipj_Cypher_jj_consume_token($this, 36); - var$5 = $this.$astFactory; - if ($sign !== null) - $number = $sign; - return onciafn_Neo4jASTFactory_newDecimalInteger(var$5, oncipj_Cypher_pos($this, $number), $this.$token.$image, $negated); -}, -oncipj_Cypher_ListLiteral = $this => { - let $list, $t, var$3, var$4; - $list = ju_ArrayList__init_(); - $t = oncipj_Cypher_jj_consume_token($this, 204); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_ArrayList_add($list, oncipj_Cypher_Expression($this)); - b: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 107: - break; - default: - break b; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($list, oncipj_Cypher_Expression($this)); - } - $this.$jj_la1.data[265] = $this.$jj_gen; - break a; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[266] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 275); - return onciafn_Neo4jASTFactory_listLiteral($this.$astFactory, oncipj_Cypher_pos($this, $t), $list); -}, -oncipj_Cypher_StringListLiteral = $this => { - let $list, $t, var$3, var$4; - $list = ju_ArrayList__init_(); - $t = oncipj_Cypher_jj_consume_token($this, 204); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 52: - case 64: - ju_ArrayList_add($list, oncipj_Cypher_StringLiteral($this)); - b: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 107: - break; - default: - break b; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($list, oncipj_Cypher_StringLiteral($this)); - } - $this.$jj_la1.data[267] = $this.$jj_gen; - break a; - default: - } - $this.$jj_la1.data[268] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 275); - return onciafn_Neo4jASTFactory_listLiteral($this.$astFactory, oncipj_Cypher_pos($this, $t), $list); -}, -oncipj_Cypher_MapLiteral = $this => { - let $keys, $values, $t, var$4, $key, $value, var$7, var$8, var$9; - $keys = ju_ArrayList__init_(); - $values = ju_ArrayList__init_(); - $t = oncipj_Cypher_jj_consume_token($this, 205); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $key = oncipj_Cypher_PropertyKeyName($this); - oncipj_Cypher_jj_consume_token($this, 105); - $value = oncipj_Cypher_Expression($this); - ju_ArrayList_add($keys, $key); - ju_ArrayList_add($values, $value); - b: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 107: - break; - default: - break b; - } - oncipj_Cypher_jj_consume_token($this, 107); - $key = oncipj_Cypher_PropertyKeyName($this); - oncipj_Cypher_jj_consume_token($this, 105); - $value = oncipj_Cypher_Expression($this); - ju_ArrayList_add($keys, $key); - ju_ArrayList_add($values, $value); - } - $this.$jj_la1.data[269] = $this.$jj_gen; - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[270] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 276); - $key = $this.$astFactory; - $t = oncipj_Cypher_pos($this, $t); - var$7 = $keys.$size0; - if (var$7 != $values.$size0) { - $t = new onciafn_Neo4jASTConstructionException; - $keys = onciafn_Neo4jASTFactory_pretty($key, $keys); - $values = onciafn_Neo4jASTFactory_pretty($key, $values); - $key = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($key); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($key, $rt_s(4391)), $keys), $rt_s(4392)), $values), 96); - onciafn_Neo4jASTConstructionException__init_($t, jl_AbstractStringBuilder_toString($key)); - $rt_throw($t); - } - var$4 = 0; - var$8 = $rt_createArray(s_Tuple2, var$7); - var$9 = var$8.data; - while (var$4 < $keys.$size0) { - $key = ju_ArrayList_get($keys, var$4); - $value = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - var$9[var$4] = s_Predef$ArrowAssoc$_$minus$greater$extension($value, oncie_PropertyKeyName__init_($key.$string, $key.$pos3), ju_ArrayList_get($values, var$4)); - var$4 = var$4 + 1 | 0; - } - $values = new oncie_MapExpression; - $keys = sc_ArrayOps$_MODULE$; - s_Predef$_$callClinit(); - oncie_MapExpression__init_($values, sc_ArrayOps$_toIndexedSeq$extension($keys, var$8), $t); - return $values; -}, -oncipj_Cypher_PropertyKeyName = $this => { - let $t; - $t = oncipj_Cypher_SymbolicNameString($this); - return onciaf_ASTFactory$StringPos__init_($t.$image, oncipj_Cypher_pos($this, $t)); -}, -oncipj_Cypher_Parameter = ($this, $type) => { - let $t, var$3, $v, var$5; - $t = oncipj_Cypher_jj_consume_token($this, 137); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 36: - oncipj_Cypher_jj_consume_token($this, 36); - $v = $this.$astFactory; - $t = oncipj_Cypher_pos($this, $t); - return oncie_ExplicitParameter__init_($this.$token.$image, onciafn_Neo4jASTFactory_transformParameterType($v, $type), onciu_UnknownSize$_MODULE$, $t); - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $v = oncipj_Cypher_Variable($this); - var$5 = $this.$astFactory; - $t = oncipj_Cypher_pos($this, $t); - return oncie_ExplicitParameter__init_($v.$name4, onciafn_Neo4jASTFactory_transformParameterType(var$5, $type), onciu_UnknownSize$_MODULE$, $t); - default: - } - $this.$jj_la1.data[271] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $type = new oncipj_ParseException; - jl_Throwable__init_($type); - $rt_throw($type); -}, -oncipj_Cypher_FunctionInvocation = ($this, $calledFromUseClause) => { - let $before, $distinct, $arguments, $namespace, $nameToken, var$7, $e, var$9, var$10, var$11, $$je; - $before = $this.$token; - $distinct = 0; - $arguments = ju_ArrayList__init_(); - $namespace = oncipj_Cypher_Namespace($this); - $nameToken = oncipj_Cypher_SymbolicNameString($this); - oncipj_Cypher_jj_consume_token($this, 213); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$7) { - case 76: - case 140: - $this.$jj_la = 2; - $e = $this.$token; - $this.$jj_scanpos = $e; - $this.$jj_lastpos = $e; - b: { - c: { - d: { - e: { - try { - var$9 = oncipj_Cypher_jj_3_127($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $before = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 126, 2); - break b; - } - try { - var$9 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $before = $$je; - - } - } - oncipj_Cypher_jj_save($this, 126, 2); - $rt_throw($before); - } - oncipj_Cypher_jj_save($this, 126, 2); - } - if (var$9) { - oncipj_Cypher_jj_consume_token($this, 140); - $distinct = 1; - break a; - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 76: - oncipj_Cypher_jj_consume_token($this, 76); - break a; - default: - } - $this.$jj_la1.data[272] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $before = new oncipj_ParseException; - jl_Throwable__init_($before); - $rt_throw($before); - default: - } - $this.$jj_la1.data[273] = $this.$jj_gen; - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$7) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_ArrayList_add($arguments, oncipj_Cypher_Expression($this)); - g: while (true) { - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 107: - break; - default: - break g; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($arguments, oncipj_Cypher_Expression($this)); - } - $this.$jj_la1.data[274] = $this.$jj_gen; - break f; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[275] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 297); - $e = oncipj_Cypher_pos($this, $before.$next5); - var$10 = oncipj_Cypher_pos($this, $nameToken); - $nameToken = $nameToken.$image; - var$11 = oncie_FunctionName__init_0(oncie_Namespace__init_0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $namespace))), $e), $nameToken, var$10); - $before = sc_AbstractIterable_toIndexedSeq(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $arguments))); - oncie_FunctionInvocation$_$callClinit(); - return oncie_FunctionInvocation__init_0(var$11, $distinct, $before, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, $calledFromUseClause, $e); -}, -oncipj_Cypher_Namespace = $this => { - let $parts, $t, var$3, $$je; - $parts = ju_ArrayList__init_(); - a: { - while (true) { - $this.$jj_la = 2; - $t = $this.$token; - $this.$jj_scanpos = $t; - $this.$jj_lastpos = $t; - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_128($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - $parts = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 127, 2); - break b; - } - try { - var$3 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $parts = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 127, 2); - } - if (!var$3) - break; - ju_ArrayList_add($parts, (oncipj_Cypher_SymbolicNameString($this)).$image); - oncipj_Cypher_jj_consume_token($this, 142); - } - return $parts; - } - oncipj_Cypher_jj_save($this, 127, 2); - $rt_throw($parts); -}, -oncipj_Cypher_Variable = $this => { - let $t; - $t = oncipj_Cypher_SymbolicNameString($this); - return onciafn_Neo4jASTFactory_newVariable($this.$astFactory, oncipj_Cypher_pos($this, $t), $t.$image); -}, -oncipj_Cypher_SymbolicNameList1 = $this => { - let $list, var$2; - $list = ju_ArrayList__init_(); - ju_ArrayList_add($list, (oncipj_Cypher_SymbolicNameString($this)).$image); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 107: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($list, (oncipj_Cypher_SymbolicNameString($this)).$image); - } - $this.$jj_la1.data[277] = $this.$jj_gen; - return $list; -}, -oncipj_Cypher_CreateCommand = ($this, $useClause) => { - let $replace, $start, var$4, var$5, $statement, var$7, var$8, var$9, var$10, $$je; - $replace = 0; - $start = oncipj_Cypher_jj_consume_token($this, 119); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 248: - break; - default: - $this.$jj_la1.data[278] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 248); - oncipj_Cypher_jj_consume_token($this, 286); - $replace = 1; - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - b: { - c: { - switch (var$4) { - case 73: - break; - case 96: - case 173: - case 190: - case 212: - case 259: - case 274: - case 326: - case 354: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$5) { - case 96: - oncipj_Cypher_jj_consume_token($this, 96); - oncipj_Cypher_jj_consume_token($this, 190); - $statement = oncipj_Cypher_createIndex($this, $start, $replace, oncipcaf_CreateIndexTypes_BTREE); - break d; - case 173: - break; - case 190: - oncipj_Cypher_jj_consume_token($this, 190); - $this.$jj_la = 2147483647; - var$7 = $this.$token; - $this.$jj_scanpos = var$7; - $this.$jj_lastpos = var$7; - e: { - f: { - g: { - h: { - try { - var$8 = oncipj_Cypher_jj_3_165($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break h; - } else{ - $useClause = $$je; - break g; - } - } - oncipj_Cypher_jj_save($this, 164, 2147483647); - break e; - } - try { - var$8 = 1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $useClause = $$je; - - } - } - oncipj_Cypher_jj_save($this, 164, 2147483647); - $rt_throw($useClause); - } - oncipj_Cypher_jj_save($this, 164, 2147483647); - } - if (var$8) { - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_SymbolicNamePositions($this); - oncipj_Cypher_jj_consume_token($this, 297); - if (!$replace) { - var$7 = $this.$exceptionFactory1; - var$9 = new oncipj_ParseException; - jl_Throwable__init_0(var$9, $rt_s(4393)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException(var$7, var$9, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); - } - $useClause = $this.$exceptionFactory1; - var$7 = new oncipj_ParseException; - jl_Throwable__init_0(var$7, $rt_s(4394)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($useClause, var$7, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break b; - default: - break b; - } - $statement = oncipj_Cypher_createIndex($this, $start, $replace, oncipcaf_CreateIndexTypes_DEFAULT); - break d; - case 212: - oncipj_Cypher_jj_consume_token($this, 212); - oncipj_Cypher_jj_consume_token($this, 190); - $statement = oncipj_Cypher_createLookupIndex($this, $start, $replace); - break d; - case 259: - oncipj_Cypher_jj_consume_token($this, 259); - oncipj_Cypher_jj_consume_token($this, 190); - $statement = oncipj_Cypher_createIndex($this, $start, $replace, oncipcaf_CreateIndexTypes_POINT); - break d; - case 274: - oncipj_Cypher_jj_consume_token($this, 274); - oncipj_Cypher_jj_consume_token($this, 190); - $statement = oncipj_Cypher_createIndex($this, $start, $replace, oncipcaf_CreateIndexTypes_RANGE); - break d; - case 326: - oncipj_Cypher_jj_consume_token($this, 326); - oncipj_Cypher_jj_consume_token($this, 190); - $statement = oncipj_Cypher_createIndex($this, $start, $replace, oncipcaf_CreateIndexTypes_TEXT); - break d; - case 354: - oncipj_Cypher_jj_consume_token($this, 354); - oncipj_Cypher_jj_consume_token($this, 190); - $statement = oncipj_Cypher_createIndex($this, $start, $replace, oncipcaf_CreateIndexTypes_VECTOR); - break d; - default: - $this.$jj_la1.data[435] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - oncipj_Cypher_jj_consume_token($this, 173); - oncipj_Cypher_jj_consume_token($this, 190); - $statement = oncipj_Cypher_createFulltextIndex($this, $start, $replace); - } - break c; - case 111: - var$7 = null; - var$9 = onciafn_Neo4jASTFactory_wait($this.$astFactory, 0, Long_fromInt(-1)); - var$4 = 0; - oncipj_Cypher_jj_consume_token($this, 111); - oncipj_Cypher_jj_consume_token($this, 123); - $statement = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$5) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - var$4 = 1; - break i; - default: - } - $this.$jj_la1.data[664] = $this.$jj_gen; - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$5) { - case 246: - break; - default: - $this.$jj_la1.data[665] = $this.$jj_gen; - break j; - } - var$7 = oncipj_Cypher_Options($this); - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$5) { - case 239: - case 357: - break; - default: - $this.$jj_la1.data[666] = $this.$jj_gen; - break k; - } - var$9 = oncipj_Cypher_WaitClause($this); - } - var$10 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - $statement = oncia_CreateCompositeDatabase__init_0(oncipj_AliasName_getLocalAliasName($statement, $this.$astFactory), onciafn_Neo4jASTFactory_ifExistsDo(var$10, $replace, var$4), onciafn_Neo4jASTFactory_asOptionsAst(var$10, var$7), var$9, $start); - break c; - case 113: - $statement = oncipj_Cypher_CreateConstraint($this, $start, $replace); - break c; - case 123: - $statement = oncipj_Cypher_CreateDatabase($this, $start, $replace); - break c; - case 293: - $statement = oncipj_Cypher_CreateRole($this, $start, $replace); - break c; - case 349: - $statement = oncipj_Cypher_CreateUser($this, $start, $replace); - break c; - default: - $this.$jj_la1.data[279] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - $statement = oncipj_Cypher_CreateAlias($this, $start, $replace); - } - return onciafn_Neo4jASTFactory_useGraph($this.$astFactory, $statement, $useClause); - } - $this.$jj_la1.data[434] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); -}, -oncipj_Cypher_Command = ($this, $useClause) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 77: - case 128: - case 132: - case 145: - case 146: - case 151: - case 177: - case 278: - case 280: - case 292: - case 317: - case 320: - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$2) { - case 77: - var$3 = oncipj_Cypher_jj_consume_token($this, 77); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$4) { - case 73: - break; - case 121: - oncipj_Cypher_jj_consume_token($this, 121); - oncipj_Cypher_jj_consume_token($this, 349); - oncipj_Cypher_jj_consume_token($this, 308); - oncipj_Cypher_jj_consume_token($this, 251); - oncipj_Cypher_jj_consume_token($this, 172); - var$5 = oncipj_Cypher_passwordExpression($this); - oncipj_Cypher_jj_consume_token($this, 332); - var$3 = oncia_SetOwnPassword__init_0(oncipj_Cypher_passwordExpression($this), var$5, oncipj_Cypher_pos($this, var$3)); - break c; - case 123: - var$3 = oncipj_Cypher_AlterDatabase($this, var$3); - break c; - case 306: - oncipj_Cypher_jj_consume_token($this, 306); - var$5 = oncipj_Cypher_StringOrParameter($this); - oncipj_Cypher_jj_consume_token($this, 308); - var$6 = oncipj_Cypher_Options($this); - var$7 = $this.$astFactory; - var$8 = oncipj_Cypher_pos($this, var$3); - var$3 = new oncia_AlterServer; - onciafn_TupleConverter$_$callClinit(); - oncia_AlterServer__init_(var$3, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$5)), onciafn_Neo4jASTFactory_asOptionsAst(var$7, var$6), var$8); - break c; - case 349: - var$3 = oncipj_Cypher_AlterUser($this, var$3); - break c; - default: - $this.$jj_la1.data[283] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - var$3 = oncipj_Cypher_AlterAlias($this, var$3); - } - break b; - case 128: - case 146: - case 278: - var$4 = 0; - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$9) { - case 146: - break; - default: - $this.$jj_la1.data[478] = $this.$jj_gen; - break d; - } - oncipj_Cypher_jj_consume_token($this, 146); - var$4 = 1; - } - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$2) { - case 128: - var$6 = ju_ArrayList__init_(); - var$3 = oncipj_Cypher_jj_consume_token($this, 128); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$2) { - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - break f; - case 124: - oncipj_Cypher_jj_consume_token($this, 124); - break f; - default: - } - $this.$jj_la1.data[480] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - oncipj_Cypher_jj_consume_token($this, 172); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$2) { - case 306: - oncipj_Cypher_jj_consume_token($this, 306); - break g; - case 307: - oncipj_Cypher_jj_consume_token($this, 307); - break g; - default: - } - $this.$jj_la1.data[481] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - ju_ArrayList_add(var$6, oncipj_Cypher_StringOrParameter($this)); - h: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 107: - break; - default: - break h; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add(var$6, oncipj_Cypher_StringOrParameter($this)); - } - $this.$jj_la1.data[482] = $this.$jj_gen; - var$7 = oncipj_Cypher_pos($this, var$3); - var$3 = oncia_DeallocateServers__init_0(var$4, (sc_StrictOptimizedIterableOps_map$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$6)), new onciafn_Neo4jASTFactory$deallocateServers$lambda$_230_0)).$toList(), var$7); - break e; - case 278: - var$3 = oncipj_Cypher_jj_consume_token($this, 278); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$2) { - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - break i; - case 124: - oncipj_Cypher_jj_consume_token($this, 124); - break i; - default: - } - $this.$jj_la1.data[483] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - var$3 = oncia_ReallocateDatabases__init_0(var$4, oncipj_Cypher_pos($this, var$3)); - break e; - default: - } - $this.$jj_la1.data[479] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - break b; - case 132: - break; - case 145: - var$3 = oncipj_Cypher_DropCommand($this); - break b; - case 151: - var$3 = oncipj_Cypher_EnableServerCommand($this); - break b; - case 177: - var$3 = oncipj_Cypher_GrantCommand($this); - break b; - case 280: - var$3 = oncipj_Cypher_RenameCommand($this); - break b; - case 292: - var$3 = oncipj_Cypher_RevokeCommand($this); - break b; - case 317: - var$3 = oncipj_Cypher_StartDatabase($this); - break b; - case 320: - var$3 = oncipj_Cypher_StopDatabase($this); - break b; - default: - $this.$jj_la1.data[281] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - var$3 = oncipj_Cypher_DenyPrivilege($this); - } - $useClause = onciafn_Neo4jASTFactory_useGraph($this.$astFactory, var$3, $useClause); - break a; - case 313: - break; - case 325: - var$3 = oncipj_Cypher_jj_consume_token($this, 325); - var$5 = oncipj_Cypher_TerminateTransactions($this, var$3); - if ($useClause !== null) - ju_AbstractSequentialList_add(var$5, 0, $useClause); - $useClause = onciafn_Neo4jASTFactory_newSingleQuery($this.$astFactory, oncipj_Cypher_pos($this, var$3), var$5); - break a; - default: - $this.$jj_la1.data[280] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - $useClause = oncipj_Cypher_ShowCommand($this, $useClause); - } - return $useClause; -}, -oncipj_Cypher_DropCommand = $this => { - let $start, var$2, var$3, var$4, $s, var$6, var$7, $$je; - $start = oncipj_Cypher_jj_consume_token($this, 145); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 73: - var$2 = 0; - oncipj_Cypher_jj_consume_token($this, 73); - var$3 = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$4) { - case 186: - break; - default: - $this.$jj_la1.data[713] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - var$2 = 1; - } - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 123); - $start = oncipj_Cypher_pos($this, $start); - $s = oncia_DropDatabaseAlias__init_0(oncipj_AliasName_getLocalAliasName(var$3, $this.$astFactory), var$2, $start); - break a; - case 111: - case 123: - break; - case 113: - $s = oncipj_Cypher_DropConstraint($this, $start); - break a; - case 190: - var$2 = 0; - oncipj_Cypher_jj_consume_token($this, 190); - $this.$jj_la = 2; - var$3 = $this.$token; - $this.$jj_scanpos = var$3; - $this.$jj_lastpos = var$3; - c: { - d: { - e: { - f: { - try { - var$6 = oncipj_Cypher_jj_3_173($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $start = $$je; - break e; - } - } - oncipj_Cypher_jj_save($this, 172, 2); - break c; - } - try { - var$6 = 1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 172, 2); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 172, 2); - } - if (var$6) { - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_SymbolicNamePositions($this); - oncipj_Cypher_jj_consume_token($this, 297); - var$3 = $this.$exceptionFactory1; - var$7 = new oncipj_ParseException; - jl_Throwable__init_0(var$7, $rt_s(4395)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException(var$3, var$7, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$3 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$4) { - case 186: - break; - default: - $this.$jj_la1.data[455] = $this.$jj_gen; - break g; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - var$2 = 1; - } - $start = oncipj_Cypher_pos($this, $start); - $s = new oncia_DropIndexOnName; - onciafn_TupleConverter$_$callClinit(); - oncia_DropIndexOnName__init_($s, su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$3))), new onciafn_Neo4jASTFactory$dropIndex$lambda$_170_0), var$2, s_None$_MODULE$, $start); - break a; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[456] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - case 293: - var$4 = 0; - oncipj_Cypher_jj_consume_token($this, 293); - var$3 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$2) { - case 186: - break; - default: - $this.$jj_la1.data[486] = $this.$jj_gen; - break h; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - var$4 = 1; - } - var$7 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - $s = new oncia_DropRole; - onciafn_TupleConverter$_$callClinit(); - oncia_DropRole__init_($s, onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$7, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$3))), var$4, $start); - break a; - case 306: - oncipj_Cypher_jj_consume_token($this, 306); - var$3 = oncipj_Cypher_StringOrParameter($this); - $start = oncipj_Cypher_pos($this, $start); - $s = new oncia_DropServer; - onciafn_TupleConverter$_$callClinit(); - oncia_DropServer__init_($s, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$3)), $start); - break a; - case 349: - var$4 = 0; - oncipj_Cypher_jj_consume_token($this, 349); - var$3 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$2) { - case 186: - break; - default: - $this.$jj_la1.data[500] = $this.$jj_gen; - break i; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - var$4 = 1; - } - var$7 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - $s = new oncia_DropUser; - onciafn_TupleConverter$_$callClinit(); - oncia_DropUser__init_($s, onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$7, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$3))), var$4, $start); - break a; - default: - $this.$jj_la1.data[282] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $s = oncipj_Cypher_DropDatabase($this, $start); - } - return $s; -}, -oncipj_Cypher_ShowCommand = ($this, $useClause) => { - let $statement, $clauses, var$4, var$5, var$6, var$7, $$je; - $statement = null; - $clauses = null; - var$4 = oncipj_Cypher_jj_consume_token($this, 313); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 73: - case 74: - break; - case 76: - oncipj_Cypher_jj_consume_token($this, 76); - $statement = oncipj_Cypher_ShowAllCommand($this, var$4, $useClause); - break a; - case 96: - oncipj_Cypher_jj_consume_token($this, 96); - $clauses = oncipj_Cypher_ShowIndexesAllowBrief($this, var$4, oncipcaf_ShowCommandFilterTypes_BTREE); - break a; - case 97: - oncipj_Cypher_jj_consume_token($this, 97); - oncipj_Cypher_jj_consume_token($this, 189); - $clauses = oncipj_Cypher_ShowFunctions($this, var$4, oncipcaf_ShowCommandFilterTypes_BUILT_IN); - break a; - case 113: - case 114: - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, var$4, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - case 121: - $statement = oncipj_Cypher_ShowCurrentUser($this, var$4, $useClause); - break a; - case 123: - case 124: - case 129: - case 184: - $statement = oncipj_Cypher_ShowDatabase($this, var$4, $useClause); - break a; - case 161: - oncipj_Cypher_jj_consume_token($this, 161); - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, var$4, oncipcaf_ShowCommandFilterTypes_OLD_EXIST); - break a; - case 162: - oncipj_Cypher_jj_consume_token($this, 162); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, var$4, oncipcaf_ShowCommandFilterTypes_EXIST); - break a; - case 163: - oncipj_Cypher_jj_consume_token($this, 163); - oncipj_Cypher_ShowConstraintsAllowBrief($this, var$4); - break a; - case 173: - oncipj_Cypher_jj_consume_token($this, 173); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$4, oncipcaf_ShowCommandFilterTypes_FULLTEXT); - break a; - case 174: - case 175: - $clauses = oncipj_Cypher_ShowFunctions($this, var$4, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - case 190: - case 191: - $clauses = oncipj_Cypher_ShowIndexesAllowBrief($this, var$4, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - case 199: - oncipj_Cypher_jj_consume_token($this, 199); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, var$4, oncipcaf_ShowCommandFilterTypes_KEY); - break a; - case 212: - oncipj_Cypher_jj_consume_token($this, 212); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$4, oncipcaf_ShowCommandFilterTypes_LOOKUP); - break a; - case 231: - oncipj_Cypher_jj_consume_token($this, 231); - $clauses = oncipj_Cypher_ShowNodeCommand($this, var$4); - break a; - case 259: - oncipj_Cypher_jj_consume_token($this, 259); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$4, oncipcaf_ShowCommandFilterTypes_POINT); - break a; - case 260: - oncipj_Cypher_jj_consume_token($this, 260); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$5) { - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - break b; - case 294: - oncipj_Cypher_jj_consume_token($this, 294); - break b; - default: - } - $this.$jj_la1.data[284] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $statement = oncipj_Cypher_ShowRoles($this, var$4, $useClause, 0); - break a; - case 265: - case 266: - $statement = oncipj_Cypher_ShowPrivileges($this, var$4, $useClause); - break a; - case 267: - case 268: - $clauses = oncipj_Cypher_ShowProcedures($this, var$4); - break a; - case 270: - oncipj_Cypher_jj_consume_token($this, 270); - $clauses = oncipj_Cypher_ShowPropertyCommand($this, var$4, oncipcaf_ShowCommandFilterTypes_EXIST); - break a; - case 274: - oncipj_Cypher_jj_consume_token($this, 274); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$4, oncipcaf_ShowCommandFilterTypes_RANGE); - break a; - case 282: - oncipj_Cypher_jj_consume_token($this, 282); - $clauses = oncipj_Cypher_ShowRelCommand($this, var$4); - break a; - case 283: - oncipj_Cypher_jj_consume_token($this, 283); - $clauses = oncipj_Cypher_ShowRelationshipCommand($this, var$4); - break a; - case 293: - case 294: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$5) { - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - break c; - case 294: - oncipj_Cypher_jj_consume_token($this, 294); - break c; - default: - } - $this.$jj_la1.data[285] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - if (oncipj_Cypher_jj_2_129($this, 2147483647)) { - $statement = oncipj_Cypher_ShowRolePrivileges($this, var$4, $useClause); - break a; - } - if (oncipj_Cypher_jj_2_130($this, 2147483647)) { - $statement = oncipj_Cypher_ShowRoles($this, var$4, $useClause, 1); - break a; - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $statement = oncipj_Cypher_ShowRolePrivileges($this, var$4, $useClause); - break a; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[286] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 306: - case 307: - $statement = oncipj_Cypher_ShowServers($this, var$4, $useClause); - break a; - case 309: - case 310: - $clauses = oncipj_Cypher_ShowSettings($this, var$4); - break a; - case 322: - $statement = oncipj_Cypher_ShowSupportedPrivileges($this, var$4, $useClause); - break a; - case 326: - oncipj_Cypher_jj_consume_token($this, 326); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$4, oncipcaf_ShowCommandFilterTypes_TEXT); - break a; - case 335: - case 336: - $clauses = oncipj_Cypher_ShowTransactions($this, var$4); - break a; - case 344: - oncipj_Cypher_jj_consume_token($this, 344); - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, var$4, oncipcaf_ShowCommandFilterTypes_UNIQUE); - break a; - case 345: - oncipj_Cypher_jj_consume_token($this, 345); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, var$4, oncipcaf_ShowCommandFilterTypes_UNIQUE); - break a; - case 354: - oncipj_Cypher_jj_consume_token($this, 354); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$4, oncipcaf_ShowCommandFilterTypes_VECTOR); - break a; - default: - $this.$jj_la1.data[289] = $this.$jj_gen; - $this.$jj_la = 2147483647; - var$6 = $this.$token; - $this.$jj_scanpos = var$6; - $this.$jj_lastpos = var$6; - d: { - e: { - f: { - g: { - try { - var$7 = oncipj_Cypher_jj_3_133($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break g; - } else{ - $useClause = $$je; - break f; - } - } - oncipj_Cypher_jj_save($this, 132, 2147483647); - break d; - } - try { - var$7 = 1; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $useClause = $$je; - - } - } - oncipj_Cypher_jj_save($this, 132, 2147483647); - $rt_throw($useClause); - } - oncipj_Cypher_jj_save($this, 132, 2147483647); - } - if (var$7) { - oncipj_Cypher_jj_consume_token($this, 349); - oncipj_Cypher_jj_consume_token($this, 130); - $clauses = oncipj_Cypher_ShowFunctions($this, var$4, oncipcaf_ShowCommandFilterTypes_USER_DEFINED); - break a; - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 349: - case 350: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$5) { - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - break h; - case 350: - oncipj_Cypher_jj_consume_token($this, 350); - break h; - default: - } - $this.$jj_la1.data[287] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - if (oncipj_Cypher_jj_2_131($this, 2147483647)) { - $statement = oncipj_Cypher_ShowUserPrivileges($this, var$4, $useClause); - break a; - } - if (oncipj_Cypher_jj_2_132($this, 2147483647)) { - $statement = oncipj_Cypher_ShowUsers($this, var$4, $useClause); - break a; - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $statement = oncipj_Cypher_ShowUserPrivileges($this, var$4, $useClause); - break a; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[288] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[290] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $useClause = new oncipj_ParseException; - jl_Throwable__init_($useClause); - $rt_throw($useClause); - } - $statement = oncipj_Cypher_ShowAliases($this, var$4, $useClause); - } - if ($clauses !== null) { - if ($useClause !== null) - $clauses.$add3(0, $useClause); - $statement = onciafn_Neo4jASTFactory_newSingleQuery($this.$astFactory, oncipj_Cypher_pos($this, var$4), $clauses); - } - return $statement; -}, -oncipj_Cypher_ShowAllCommand = ($this, $start, $useClause) => { - let $statement, $clauses, var$5, var$6; - $statement = null; - $clauses = null; - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 113: - case 114: - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, $start, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - case 174: - case 175: - $clauses = oncipj_Cypher_ShowFunctions($this, $start, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - case 190: - case 191: - $clauses = oncipj_Cypher_ShowIndexesAllowBrief($this, $start, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - case 265: - case 266: - $statement = oncipj_Cypher_ShowPrivileges($this, $start, $useClause); - break a; - case 293: - case 294: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - break b; - case 294: - oncipj_Cypher_jj_consume_token($this, 294); - break b; - default: - } - $this.$jj_la1.data[291] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $statement = oncipj_Cypher_ShowRoles($this, $start, $useClause, 1); - break a; - default: - } - $this.$jj_la1.data[292] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - if ($clauses !== null) { - if ($useClause !== null) - ju_ArrayList_add0($clauses, 0, $useClause); - $statement = onciafn_Neo4jASTFactory_newSingleQuery($this.$astFactory, oncipj_Cypher_pos($this, $start), $clauses); - } - return $statement; -}, -oncipj_Cypher_ShowNodeCommand = ($this, $start) => { - let $clauses, var$3, var$4; - $clauses = null; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 161: - oncipj_Cypher_jj_consume_token($this, 161); - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, $start, oncipcaf_ShowCommandFilterTypes_NODE_OLD_EXIST); - break a; - case 162: - oncipj_Cypher_jj_consume_token($this, 162); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_NODE_EXIST); - break a; - case 163: - break; - case 199: - oncipj_Cypher_jj_consume_token($this, 199); - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, $start, oncipcaf_ShowCommandFilterTypes_NODE_KEY); - break a; - case 270: - oncipj_Cypher_jj_consume_token($this, 270); - $clauses = oncipj_Cypher_ShowPropertyCommand($this, $start, oncipcaf_ShowCommandFilterTypes_NODE_EXIST); - break a; - case 344: - case 345: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$4) { - case 344: - break; - case 345: - oncipj_Cypher_jj_consume_token($this, 345); - break b; - default: - $this.$jj_la1.data[293] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 344); - } - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_NODE_UNIQUE); - break a; - default: - $this.$jj_la1.data[294] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 163); - oncipj_Cypher_ShowConstraintsAllowBrief($this, $start); - } - return $clauses; -}, -oncipj_Cypher_ShowRelationshipCommand = ($this, $start) => { - let $clauses, var$3, var$4; - $clauses = null; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 161: - oncipj_Cypher_jj_consume_token($this, 161); - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_OLD_EXIST); - break a; - case 162: - oncipj_Cypher_jj_consume_token($this, 162); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST); - break a; - case 163: - break; - case 199: - oncipj_Cypher_jj_consume_token($this, 199); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_KEY); - break a; - case 270: - oncipj_Cypher_jj_consume_token($this, 270); - $clauses = oncipj_Cypher_ShowPropertyCommand($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST); - break a; - case 344: - case 345: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$4) { - case 344: - break; - case 345: - oncipj_Cypher_jj_consume_token($this, 345); - break b; - default: - $this.$jj_la1.data[295] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 344); - } - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_UNIQUE); - break a; - default: - $this.$jj_la1.data[296] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 163); - oncipj_Cypher_ShowConstraintsAllowBrief($this, $start); - } - return $clauses; -}, -oncipj_Cypher_ShowRelCommand = ($this, $start) => { - let var$2, var$3; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 161: - break; - case 162: - oncipj_Cypher_jj_consume_token($this, 162); - $start = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST); - break a; - case 199: - oncipj_Cypher_jj_consume_token($this, 199); - $start = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_KEY); - break a; - case 270: - oncipj_Cypher_jj_consume_token($this, 270); - $start = oncipj_Cypher_ShowPropertyCommand($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST); - break a; - case 344: - case 345: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$3) { - case 344: - break; - case 345: - oncipj_Cypher_jj_consume_token($this, 345); - break b; - default: - $this.$jj_la1.data[297] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 344); - } - $start = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_UNIQUE); - break a; - default: - $this.$jj_la1.data[298] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 161); - $start = oncipj_Cypher_ShowConstraintsAllowYield($this, $start, oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST); - } - return $start; -}, -oncipj_Cypher_ShowPropertyCommand = ($this, $start, $constraintType) => { - let $constraintType_0, var$4; - $constraintType_0 = jl_String_startsWith($constraintType.$description6, $rt_s(727)) ? oncipcaf_ShowCommandFilterTypes_NODE_PROP_TYPE : !jl_String_startsWith($constraintType.$description6, $rt_s(4396)) ? oncipcaf_ShowCommandFilterTypes_PROP_TYPE : oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_PROP_TYPE; - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 161: - case 162: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$4) { - case 161: - break; - case 162: - oncipj_Cypher_jj_consume_token($this, 162); - break b; - default: - $this.$jj_la1.data[299] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 161); - } - $constraintType_0 = $constraintType; - break a; - case 340: - break; - default: - $this.$jj_la1.data[300] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 340); - } - return oncipj_Cypher_ShowConstraintsAllowYield($this, $start, $constraintType_0); -}, -oncipj_Cypher_YieldItem = $this => { - let $v, $eStart, $e, $eEnd, var$5; - $v = null; - $eStart = $this.$token; - $e = oncipj_Cypher_Variable($this); - $eEnd = $this.$token; - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 81: - break; - default: - $this.$jj_la1.data[301] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 81); - $v = oncipj_Cypher_Variable($this); - } - if ($v !== null) - return onciafn_Neo4jASTFactory_newReturnItem0($this.$astFactory, oncipj_Cypher_pos($this, $eStart.$next5), $e, $v); - return onciafn_Neo4jASTFactory_newReturnItem($this.$astFactory, oncipj_Cypher_pos($this, $eStart.$next5), $e, $eStart.$next5.$beginOffset, $eEnd.$endOffset); -}, -oncipj_Cypher_YieldClause = $this => { - let $skipPosition, $limitPosition, $orderToken, $returnAll, $returnItems, $orders, $skip, $limit, $where, $start, var$11, var$12, $item, $o, var$15; - $skipPosition = null; - $limitPosition = null; - $orderToken = null; - $returnAll = 0; - $returnItems = ju_ArrayList__init_(); - $orders = ju_ArrayList__init_(); - $skip = null; - $limit = null; - $where = null; - $start = oncipj_Cypher_jj_consume_token($this, 364); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$11) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - ju_ArrayList_add($returnItems, oncipj_Cypher_YieldItem($this)); - b: while (true) { - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 107: - break; - default: - break b; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($returnItems, oncipj_Cypher_YieldItem($this)); - } - $this.$jj_la1.data[302] = $this.$jj_gen; - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - $returnAll = 1; - break a; - default: - } - $this.$jj_la1.data[303] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $skipPosition = new oncipj_ParseException; - jl_Throwable__init_($skipPosition); - $rt_throw($skipPosition); - } - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$12) { - case 249: - $orderToken = oncipj_Cypher_jj_consume_token($this, 249); - oncipj_Cypher_jj_consume_token($this, 98); - ju_ArrayList_add($orders, oncipj_Cypher_OrderItem($this)); - d: while (true) { - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 107: - break; - default: - break d; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($orders, oncipj_Cypher_OrderItem($this)); - } - $this.$jj_la1.data[304] = $this.$jj_gen; - break c; - default: - } - $this.$jj_la1.data[305] = $this.$jj_gen; - } - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$12) { - case 242: - case 316: - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 242: - $skipPosition = oncipj_Cypher_jj_consume_token($this, 242); - $skip = oncipj_Cypher_SignedIntegerLiteral($this); - break e; - case 316: - $skipPosition = oncipj_Cypher_jj_consume_token($this, 316); - $skip = oncipj_Cypher_SignedIntegerLiteral($this); - break e; - default: - } - $this.$jj_la1.data[306] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $skipPosition = new oncipj_ParseException; - jl_Throwable__init_($skipPosition); - $rt_throw($skipPosition); - default: - } - $this.$jj_la1.data[307] = $this.$jj_gen; - } - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$12) { - case 208: - break; - default: - $this.$jj_la1.data[308] = $this.$jj_gen; - break f; - } - $limitPosition = oncipj_Cypher_jj_consume_token($this, 208); - $limit = oncipj_Cypher_SignedIntegerLiteral($this); - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$11) { - case 359: - break; - default: - $this.$jj_la1.data[309] = $this.$jj_gen; - break g; - } - $where = oncipj_Cypher_WhereClause($this); - } - $item = oncipj_Cypher_pos($this, $start); - $o = oncipj_Cypher_pos($this, $start.$next5); - $orderToken = oncipj_Cypher_pos($this, $orderToken); - $skipPosition = oncipj_Cypher_pos($this, $skipPosition); - $limitPosition = oncipj_Cypher_pos($this, $limitPosition); - $start = new oncia_ReturnItems; - var$15 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $returnItems))); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_($start, $returnAll, var$15, s_None$_MODULE$, $o); - $o = new oncia_Yield; - s_Option$_$callClinit(); - $returnItems = s_Option_filter(s_Option$_apply(s_Option$_MODULE$, sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $orders)))), new onciafn_Neo4jASTFactory$yieldClause$lambda$_152_0); - $orders = new onciafn_Neo4jASTFactory$yieldClause$lambda$_152_1; - $orders.$_0153 = $orderToken; - $orderToken = s_Option_map($returnItems, $orders); - $returnItems = s_Option$_apply(s_Option$_MODULE$, $skip); - $orders = new onciafn_Neo4jASTFactory$yieldClause$lambda$_152_2; - $orders.$_0600 = $skipPosition; - $skipPosition = s_Option_map($returnItems, $orders); - $returnItems = s_Option$_apply(s_Option$_MODULE$, $limit); - $orders = new onciafn_Neo4jASTFactory$yieldClause$lambda$_152_3; - $orders.$_0550 = $limitPosition; - oncia_Yield__init_($o, $start, $orderToken, $skipPosition, s_Option_map($returnItems, $orders), s_Option$_apply(s_Option$_MODULE$, $where), $item); - return $o; -}, -oncipj_Cypher_ShowIndexesAllowBrief = ($this, $start, $indexType) => { - let $clauses, $brief, $verbose, $where, $yieldClause, $returnClause, $tailClauses, var$10; - $clauses = ju_ArrayList__init_(); - $brief = 0; - $verbose = 0; - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$10) { - case 190: - oncipj_Cypher_jj_consume_token($this, 190); - break a; - case 191: - oncipj_Cypher_jj_consume_token($this, 191); - break a; - default: - } - $this.$jj_la1.data[310] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$10) { - case 95: - case 355: - case 359: - case 364: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 95: - case 355: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$10) { - case 95: - oncipj_Cypher_jj_consume_token($this, 95); - $brief = 1; - break c; - case 355: - oncipj_Cypher_jj_consume_token($this, 355); - $verbose = 1; - break c; - default: - } - $this.$jj_la1.data[311] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 250: - break; - default: - $this.$jj_la1.data[312] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 250); - break b; - case 359: - $where = oncipj_Cypher_WhereClause($this); - break b; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 291: - break; - default: - $this.$jj_la1.data[313] = $this.$jj_gen; - break b; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break b; - default: - } - $this.$jj_la1.data[314] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[315] = $this.$jj_gen; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$10) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[316] = $this.$jj_gen; - break d; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - } - if (!$brief && !$verbose) { - if ($indexType === oncipcaf_ShowCommandFilterTypes_BTREE) { - $indexType = $this.$exceptionFactory1; - $clauses = new oncipj_ParseException; - jl_Throwable__init_0($clauses, $rt_s(4397)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($indexType, $clauses, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); - } - if ($yieldClause === null) - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showIndexClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $indexType, $where, null)); - else { - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showIndexClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $indexType, $where, $yieldClause)); - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_ArrayList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; - } - $clauses = $this.$exceptionFactory1; - $where = new oncipj_ParseException; - jl_Throwable__init_0($where, oncipcaf_ASTExceptionFactory_invalidBriefVerbose($rt_s(4398))); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($clauses, $where, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); -}, -oncipj_Cypher_ShowIndexesNoBrief = ($this, $start, $indexType) => { - let $clauses, $where, $yieldClause, $returnClause, $tailClauses, var$8; - $clauses = ju_ArrayList__init_(); - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 190: - oncipj_Cypher_jj_consume_token($this, 190); - break a; - case 191: - oncipj_Cypher_jj_consume_token($this, 191); - break a; - default: - } - $this.$jj_la1.data[317] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$8) { - case 359: - case 364: - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break b; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[318] = $this.$jj_gen; - break b; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break b; - default: - } - $this.$jj_la1.data[319] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[320] = $this.$jj_gen; - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$8) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[321] = $this.$jj_gen; - break c; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - } - if ($yieldClause === null) - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showIndexClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $indexType, $where, null)); - else { - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showIndexClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $indexType, $where, $yieldClause)); - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_ArrayList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; -}, -oncipj_Cypher_ShowConstraintsAllowBriefAndYield = ($this, $start, $constraintType) => { - let $clauses, $brief, $verbose, $where, $yieldClause, $returnClause, $tailClauses, var$10, var$11; - $clauses = ju_ArrayList__init_(); - $brief = 0; - $verbose = 0; - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$10) { - case 113: - oncipj_Cypher_jj_consume_token($this, 113); - break a; - case 114: - oncipj_Cypher_jj_consume_token($this, 114); - break a; - default: - } - $this.$jj_la1.data[322] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$10) { - case 95: - case 355: - case 359: - case 364: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 95: - case 355: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$10) { - case 95: - oncipj_Cypher_jj_consume_token($this, 95); - $brief = 1; - break c; - case 355: - oncipj_Cypher_jj_consume_token($this, 355); - $verbose = 1; - break c; - default: - } - $this.$jj_la1.data[323] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 250: - break; - default: - $this.$jj_la1.data[324] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 250); - break b; - case 359: - $where = oncipj_Cypher_WhereClause($this); - break b; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 291: - break; - default: - $this.$jj_la1.data[325] = $this.$jj_gen; - break b; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break b; - default: - } - $this.$jj_la1.data[326] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[327] = $this.$jj_gen; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$10) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[328] = $this.$jj_gen; - break d; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - } - if (!$brief && !$verbose) { - if ($yieldClause === null) - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showConstraintClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $constraintType, $where, null)); - else { - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showConstraintClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $constraintType, $where, $yieldClause)); - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_ArrayList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; - } - var$11 = $this.$exceptionFactory1; - $clauses = new oncipj_ParseException; - jl_Throwable__init_0($clauses, oncipcaf_ASTExceptionFactory_invalidBriefVerbose($rt_s(4399))); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException(var$11, $clauses, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); -}, -oncipj_Cypher_ShowConstraintsAllowBrief = ($this, $start) => { - let var$2, var$3, var$4, var$5; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 113: - oncipj_Cypher_jj_consume_token($this, 113); - break a; - case 114: - oncipj_Cypher_jj_consume_token($this, 114); - break a; - default: - } - $this.$jj_la1.data[329] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$3) { - case 95: - case 355: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$3) { - case 95: - oncipj_Cypher_jj_consume_token($this, 95); - break c; - case 355: - oncipj_Cypher_jj_consume_token($this, 355); - break c; - default: - } - $this.$jj_la1.data[330] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 250: - break; - default: - $this.$jj_la1.data[331] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 250); - break b; - default: - } - $this.$jj_la1.data[332] = $this.$jj_gen; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$3) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[333] = $this.$jj_gen; - break d; - } - oncipj_Cypher_composableCommandClauses($this); - } - var$4 = $this.$exceptionFactory1; - var$5 = new oncipj_ParseException; - jl_Throwable__init_0(var$5, $rt_s(4400)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException(var$4, var$5, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); -}, -oncipj_Cypher_ShowConstraintsAllowYield = ($this, $start, $constraintType) => { - let $clauses, $where, $yieldClause, $returnClause, $tailClauses, var$8; - $clauses = ju_ArrayList__init_(); - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 113: - oncipj_Cypher_jj_consume_token($this, 113); - break a; - case 114: - oncipj_Cypher_jj_consume_token($this, 114); - break a; - default: - } - $this.$jj_la1.data[334] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$8) { - case 359: - case 364: - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break b; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[335] = $this.$jj_gen; - break b; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break b; - default: - } - $this.$jj_la1.data[336] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[337] = $this.$jj_gen; - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$8) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[338] = $this.$jj_gen; - break c; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - } - if ($yieldClause === null) - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showConstraintClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $constraintType, $where, null)); - else { - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showConstraintClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $constraintType, $where, $yieldClause)); - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_ArrayList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; -}; -let oncipj_Cypher_ShowProcedures = ($this, $start) => { - let $clauses, $currentUser, $user, $where, $yieldClause, $returnClause, $tailClauses, var$9, var$10, var$11, $$je; - $clauses = ju_ArrayList__init_(); - $currentUser = 0; - $user = null; - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$9) { - case 267: - oncipj_Cypher_jj_consume_token($this, 267); - break a; - case 268: - oncipj_Cypher_jj_consume_token($this, 268); - break a; - default: - } - $this.$jj_la1.data[339] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$10) { - case 159: - oncipj_Cypher_jj_consume_token($this, 159); - $currentUser = 1; - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 98: - oncipj_Cypher_jj_consume_token($this, 98); - $this.$jj_la = 2147483647; - var$11 = $this.$token; - $this.$jj_scanpos = var$11; - $this.$jj_lastpos = var$11; - c: { - d: { - e: { - f: { - try { - $currentUser = oncipj_Cypher_jj_3_134($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $start = $$je; - break e; - } - } - oncipj_Cypher_jj_save($this, 133, 2147483647); - break c; - } - try { - $currentUser = 1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 133, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 133, 2147483647); - } - if ($currentUser) { - oncipj_Cypher_jj_consume_token($this, 121); - oncipj_Cypher_jj_consume_token($this, 349); - $currentUser = 1; - break b; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $user = (oncipj_Cypher_SymbolicNameString($this)).$image; - $currentUser = 0; - break b; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[340] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[341] = $this.$jj_gen; - break b; - default: - } - $this.$jj_la1.data[342] = $this.$jj_gen; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$9) { - case 359: - case 364: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break g; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 291: - break; - default: - $this.$jj_la1.data[343] = $this.$jj_gen; - break g; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break g; - default: - } - $this.$jj_la1.data[344] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[345] = $this.$jj_gen; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$9) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[346] = $this.$jj_gen; - break h; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - } - if ($yieldClause === null) - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showProcedureClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $currentUser, $user, $where, null)); - else { - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showProcedureClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $currentUser, $user, $where, $yieldClause)); - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_ArrayList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; -}, -oncipj_Cypher_ShowFunctions = ($this, $start, $functionType) => { - let $clauses, $currentUser, $user, $where, $yieldClause, $returnClause, $tailClauses, var$10, var$11, $$je; - $clauses = ju_ArrayList__init_(); - $currentUser = 0; - $user = null; - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$10) { - case 174: - oncipj_Cypher_jj_consume_token($this, 174); - break a; - case 175: - oncipj_Cypher_jj_consume_token($this, 175); - break a; - default: - } - $this.$jj_la1.data[347] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$10) { - case 159: - oncipj_Cypher_jj_consume_token($this, 159); - $currentUser = 1; - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 98: - oncipj_Cypher_jj_consume_token($this, 98); - $this.$jj_la = 2147483647; - var$11 = $this.$token; - $this.$jj_scanpos = var$11; - $this.$jj_lastpos = var$11; - c: { - d: { - e: { - f: { - try { - $currentUser = oncipj_Cypher_jj_3_135($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $start = $$je; - break e; - } - } - oncipj_Cypher_jj_save($this, 134, 2147483647); - break c; - } - try { - $currentUser = 1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 134, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 134, 2147483647); - } - if ($currentUser) { - oncipj_Cypher_jj_consume_token($this, 121); - oncipj_Cypher_jj_consume_token($this, 349); - $currentUser = 1; - break b; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $user = (oncipj_Cypher_SymbolicNameString($this)).$image; - $currentUser = 0; - break b; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[348] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[349] = $this.$jj_gen; - break b; - default: - } - $this.$jj_la1.data[350] = $this.$jj_gen; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$10) { - case 359: - case 364: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break g; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 291: - break; - default: - $this.$jj_la1.data[351] = $this.$jj_gen; - break g; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break g; - default: - } - $this.$jj_la1.data[352] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[353] = $this.$jj_gen; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$10) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[354] = $this.$jj_gen; - break h; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - } - if ($yieldClause === null) - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showFunctionClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $functionType, $currentUser, $user, $where, null)); - else { - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showFunctionClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $functionType, $currentUser, $user, $where, $yieldClause)); - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_ArrayList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; -}, -oncipj_Cypher_ShowTransactions = ($this, $start) => { - let $clauses, $idEither, $where, $yieldClause, $returnClause, $tailClauses, var$8, var$9, var$10, $$je; - $clauses = new ju_LinkedList; - $idEither = oncipcaf_SimpleEither_left(ju_ArrayList__init_()); - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 335: - oncipj_Cypher_jj_consume_token($this, 335); - break a; - case 336: - oncipj_Cypher_jj_consume_token($this, 336); - break a; - default: - } - $this.$jj_la1.data[355] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - c: { - d: { - e: { - f: { - try { - var$10 = oncipj_Cypher_jj_3_139($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $start = $$je; - break e; - } - } - oncipj_Cypher_jj_save($this, 138, 2147483647); - break c; - } - try { - var$10 = 1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 138, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 138, 2147483647); - } - if (var$10) { - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - break b; - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - g: { - h: { - i: { - j: { - try { - var$10 = oncipj_Cypher_jj_3_136($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break j; - } else{ - $start = $$je; - break i; - } - } - oncipj_Cypher_jj_save($this, 135, 2147483647); - break g; - } - try { - var$10 = 1; - break h; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 135, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 135, 2147483647); - } - k: { - if (var$10) { - $idEither = oncipj_Cypher_stringsOrExpression($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break k; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[356] = $this.$jj_gen; - break k; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break k; - default: - } - $this.$jj_la1.data[357] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - l: { - m: { - n: { - o: { - try { - var$10 = oncipj_Cypher_jj_3_137($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break o; - } else{ - $start = $$je; - break n; - } - } - oncipj_Cypher_jj_save($this, 136, 2147483647); - break l; - } - try { - var$10 = 1; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 136, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 136, 2147483647); - } - if (var$10) { - $yieldClause = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[358] = $this.$jj_gen; - break k; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - } else { - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - p: { - q: { - r: { - s: { - try { - var$10 = oncipj_Cypher_jj_3_138($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break s; - } else{ - $start = $$je; - break r; - } - } - oncipj_Cypher_jj_save($this, 137, 2147483647); - break p; - } - try { - var$10 = 1; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 137, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 137, 2147483647); - } - if (var$10) - $where = oncipj_Cypher_WhereClause($this); - else { - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $idEither = oncipj_Cypher_stringsOrExpression($this); - break k; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[359] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - } - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[360] = $this.$jj_gen; - break b; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - break b; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[361] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[362] = $this.$jj_gen; - } - if ($yieldClause === null) - ju_AbstractList_add($clauses, onciafn_Neo4jASTFactory_showTransactionsClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $idEither, $where, null)); - else { - ju_AbstractList_add($clauses, onciafn_Neo4jASTFactory_showTransactionsClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $idEither, $where, $yieldClause)); - ju_AbstractList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_AbstractList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; -}, -oncipj_Cypher_TerminateTransactions = ($this, $start) => { - let $clauses, $idEither, $where, $yieldClause, $returnClause, $tailClauses, var$8, var$9, var$10, $$je; - $clauses = new ju_LinkedList; - $idEither = oncipcaf_SimpleEither_left(ju_ArrayList__init_()); - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 335: - oncipj_Cypher_jj_consume_token($this, 335); - break a; - case 336: - oncipj_Cypher_jj_consume_token($this, 336); - break a; - default: - } - $this.$jj_la1.data[363] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - c: { - d: { - e: { - f: { - try { - var$10 = oncipj_Cypher_jj_3_143($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $start = $$je; - break e; - } - } - oncipj_Cypher_jj_save($this, 142, 2147483647); - break c; - } - try { - var$10 = 1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 142, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 142, 2147483647); - } - if (var$10) { - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - break b; - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - g: { - h: { - i: { - j: { - try { - var$10 = oncipj_Cypher_jj_3_140($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break j; - } else{ - $start = $$je; - break i; - } - } - oncipj_Cypher_jj_save($this, 139, 2147483647); - break g; - } - try { - var$10 = 1; - break h; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 139, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 139, 2147483647); - } - k: { - if (var$10) { - $idEither = oncipj_Cypher_stringsOrExpression($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break k; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[364] = $this.$jj_gen; - break k; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break k; - default: - } - $this.$jj_la1.data[365] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - l: { - m: { - n: { - o: { - try { - var$10 = oncipj_Cypher_jj_3_141($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break o; - } else{ - $start = $$je; - break n; - } - } - oncipj_Cypher_jj_save($this, 140, 2147483647); - break l; - } - try { - var$10 = 1; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 140, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 140, 2147483647); - } - if (var$10) { - $yieldClause = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[366] = $this.$jj_gen; - break k; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - } else { - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - p: { - q: { - r: { - s: { - try { - var$10 = oncipj_Cypher_jj_3_142($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break s; - } else{ - $start = $$je; - break r; - } - } - oncipj_Cypher_jj_save($this, 141, 2147483647); - break p; - } - try { - var$10 = 1; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 141, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 141, 2147483647); - } - if (var$10) - $where = oncipj_Cypher_WhereClause($this); - else { - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $idEither = oncipj_Cypher_stringsOrExpression($this); - break k; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[367] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - } - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[368] = $this.$jj_gen; - break b; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - break b; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[369] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[370] = $this.$jj_gen; - } - if ($yieldClause === null) - ju_AbstractList_add($clauses, onciafn_Neo4jASTFactory_terminateTransactionsClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $idEither, $where, null)); - else { - ju_AbstractList_add($clauses, onciafn_Neo4jASTFactory_terminateTransactionsClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $idEither, $where, $yieldClause)); - ju_AbstractList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_AbstractList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; -}, -oncipj_Cypher_ShowSettings = ($this, $start) => { - let $clauses, $nameEither, $where, $yieldClause, $returnClause, $tailClauses, var$8, var$9, var$10, $$je; - $clauses = ju_ArrayList__init_(); - $nameEither = oncipcaf_SimpleEither_left(ju_ArrayList__init_()); - $where = null; - $yieldClause = null; - $returnClause = null; - $tailClauses = null; - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 309: - oncipj_Cypher_jj_consume_token($this, 309); - break a; - case 310: - oncipj_Cypher_jj_consume_token($this, 310); - break a; - default: - } - $this.$jj_la1.data[371] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - c: { - d: { - e: { - f: { - try { - var$10 = oncipj_Cypher_jj_3_147($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $start = $$je; - break e; - } - } - oncipj_Cypher_jj_save($this, 146, 2147483647); - break c; - } - try { - var$10 = 1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 146, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 146, 2147483647); - } - if (var$10) { - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - break b; - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - g: { - h: { - i: { - j: { - try { - var$10 = oncipj_Cypher_jj_3_144($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break j; - } else{ - $start = $$je; - break i; - } - } - oncipj_Cypher_jj_save($this, 143, 2147483647); - break g; - } - try { - var$10 = 1; - break h; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 143, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 143, 2147483647); - } - k: { - if (var$10) { - $nameEither = oncipj_Cypher_stringsOrExpression($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break k; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[372] = $this.$jj_gen; - break k; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break k; - default: - } - $this.$jj_la1.data[373] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - l: { - m: { - n: { - o: { - try { - var$10 = oncipj_Cypher_jj_3_145($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break o; - } else{ - $start = $$je; - break n; - } - } - oncipj_Cypher_jj_save($this, 144, 2147483647); - break l; - } - try { - var$10 = 1; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 144, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 144, 2147483647); - } - if (var$10) { - $yieldClause = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[374] = $this.$jj_gen; - break k; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - } else { - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - p: { - q: { - r: { - s: { - try { - var$10 = oncipj_Cypher_jj_3_146($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break s; - } else{ - $start = $$je; - break r; - } - } - oncipj_Cypher_jj_save($this, 145, 2147483647); - break p; - } - try { - var$10 = 1; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 145, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 145, 2147483647); - } - if (var$10) - $where = oncipj_Cypher_WhereClause($this); - else { - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $nameEither = oncipj_Cypher_stringsOrExpression($this); - break k; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[375] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - } - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 313: - case 325: - break; - default: - $this.$jj_la1.data[376] = $this.$jj_gen; - break b; - } - $tailClauses = oncipj_Cypher_composableCommandClauses($this); - break b; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[377] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[378] = $this.$jj_gen; - } - if ($yieldClause === null) - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showSettingsClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $nameEither, $where, null)); - else { - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_showSettingsClause($this.$astFactory, oncipj_Cypher_pos($this, $start), $nameEither, $where, $yieldClause)); - ju_ArrayList_add($clauses, onciafn_Neo4jASTFactory_turnYieldToWith($this.$astFactory, $yieldClause)); - if ($returnClause !== null) - ju_ArrayList_add($clauses, $returnClause); - } - if ($tailClauses !== null) - ju_AbstractCollection_addAll($clauses, $tailClauses); - return $clauses; -}, -oncipj_Cypher_composableCommandClauses = $this => { - let $clauses, var$2, var$3, var$4, $$je; - $clauses = null; - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 313: - var$3 = oncipj_Cypher_jj_consume_token($this, 313); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 76: - oncipj_Cypher_jj_consume_token($this, 76); - $this.$jj_la = 2147483647; - $clauses = $this.$token; - $this.$jj_scanpos = $clauses; - $this.$jj_lastpos = $clauses; - b: { - c: { - d: { - e: { - try { - var$2 = oncipj_Cypher_jj_3_148($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $clauses = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 147, 2147483647); - break b; - } - try { - var$2 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $clauses = $$je; - - } - } - oncipj_Cypher_jj_save($this, 147, 2147483647); - $rt_throw($clauses); - } - oncipj_Cypher_jj_save($this, 147, 2147483647); - } - if (var$2) { - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, var$3, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - } - if (oncipj_Cypher_jj_2_149($this, 2147483647)) { - $clauses = oncipj_Cypher_ShowIndexesAllowBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 174: - case 175: - break; - default: - $this.$jj_la1.data[379] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $clauses = new oncipj_ParseException; - jl_Throwable__init_($clauses); - $rt_throw($clauses); - } - $clauses = oncipj_Cypher_ShowFunctions($this, var$3, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - case 96: - oncipj_Cypher_jj_consume_token($this, 96); - $clauses = oncipj_Cypher_ShowIndexesAllowBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_BTREE); - break a; - case 97: - oncipj_Cypher_jj_consume_token($this, 97); - oncipj_Cypher_jj_consume_token($this, 189); - $clauses = oncipj_Cypher_ShowFunctions($this, var$3, oncipcaf_ShowCommandFilterTypes_BUILT_IN); - break a; - case 161: - oncipj_Cypher_jj_consume_token($this, 161); - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, var$3, oncipcaf_ShowCommandFilterTypes_OLD_EXIST); - break a; - case 162: - oncipj_Cypher_jj_consume_token($this, 162); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, var$3, oncipcaf_ShowCommandFilterTypes_EXIST); - break a; - case 163: - break; - case 173: - oncipj_Cypher_jj_consume_token($this, 173); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_FULLTEXT); - break a; - case 199: - oncipj_Cypher_jj_consume_token($this, 199); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, var$3, oncipcaf_ShowCommandFilterTypes_KEY); - break a; - case 212: - oncipj_Cypher_jj_consume_token($this, 212); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_LOOKUP); - break a; - case 231: - oncipj_Cypher_jj_consume_token($this, 231); - $clauses = oncipj_Cypher_ShowNodeCommand($this, var$3); - break a; - case 259: - oncipj_Cypher_jj_consume_token($this, 259); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_POINT); - break a; - case 270: - oncipj_Cypher_jj_consume_token($this, 270); - $clauses = oncipj_Cypher_ShowPropertyCommand($this, var$3, oncipcaf_ShowCommandFilterTypes_EXIST); - break a; - case 274: - oncipj_Cypher_jj_consume_token($this, 274); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_RANGE); - break a; - case 282: - oncipj_Cypher_jj_consume_token($this, 282); - $clauses = oncipj_Cypher_ShowRelCommand($this, var$3); - break a; - case 283: - oncipj_Cypher_jj_consume_token($this, 283); - $clauses = oncipj_Cypher_ShowRelationshipCommand($this, var$3); - break a; - case 326: - oncipj_Cypher_jj_consume_token($this, 326); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_TEXT); - break a; - case 344: - oncipj_Cypher_jj_consume_token($this, 344); - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, var$3, oncipcaf_ShowCommandFilterTypes_UNIQUE); - break a; - case 345: - oncipj_Cypher_jj_consume_token($this, 345); - $clauses = oncipj_Cypher_ShowConstraintsAllowYield($this, var$3, oncipcaf_ShowCommandFilterTypes_UNIQUE); - break a; - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - oncipj_Cypher_jj_consume_token($this, 130); - $clauses = oncipj_Cypher_ShowFunctions($this, var$3, oncipcaf_ShowCommandFilterTypes_USER_DEFINED); - break a; - case 354: - oncipj_Cypher_jj_consume_token($this, 354); - $clauses = oncipj_Cypher_ShowIndexesNoBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_VECTOR); - break a; - default: - $this.$jj_la1.data[380] = $this.$jj_gen; - $this.$jj_la = 2147483647; - $clauses = $this.$token; - $this.$jj_scanpos = $clauses; - $this.$jj_lastpos = $clauses; - f: { - g: { - h: { - i: { - try { - var$2 = oncipj_Cypher_jj_3_150($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $clauses = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 149, 2147483647); - break f; - } - try { - var$2 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $clauses = $$je; - - } - } - oncipj_Cypher_jj_save($this, 149, 2147483647); - $rt_throw($clauses); - } - oncipj_Cypher_jj_save($this, 149, 2147483647); - } - if (var$2) { - $clauses = oncipj_Cypher_ShowConstraintsAllowBriefAndYield($this, var$3, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - } - $this.$jj_la = 2147483647; - $clauses = $this.$token; - $this.$jj_scanpos = $clauses; - $this.$jj_lastpos = $clauses; - j: { - k: { - l: { - m: { - try { - var$2 = oncipj_Cypher_jj_3_151($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break m; - } else{ - $clauses = $$je; - break l; - } - } - oncipj_Cypher_jj_save($this, 150, 2147483647); - break j; - } - try { - var$2 = 1; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $clauses = $$je; - - } - } - oncipj_Cypher_jj_save($this, 150, 2147483647); - $rt_throw($clauses); - } - oncipj_Cypher_jj_save($this, 150, 2147483647); - } - if (var$2) { - $clauses = oncipj_Cypher_ShowFunctions($this, var$3, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - } - $this.$jj_la = 2147483647; - $clauses = $this.$token; - $this.$jj_scanpos = $clauses; - $this.$jj_lastpos = $clauses; - n: { - o: { - p: { - q: { - try { - var$2 = oncipj_Cypher_jj_3_152($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break q; - } else{ - $clauses = $$je; - break p; - } - } - oncipj_Cypher_jj_save($this, 151, 2147483647); - break n; - } - try { - var$2 = 1; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $clauses = $$je; - - } - } - oncipj_Cypher_jj_save($this, 151, 2147483647); - $rt_throw($clauses); - } - oncipj_Cypher_jj_save($this, 151, 2147483647); - } - if (var$2) { - $clauses = oncipj_Cypher_ShowIndexesAllowBrief($this, var$3, oncipcaf_ShowCommandFilterTypes_ALL); - break a; - } - $this.$jj_la = 2147483647; - $clauses = $this.$token; - $this.$jj_scanpos = $clauses; - $this.$jj_lastpos = $clauses; - r: { - s: { - t: { - u: { - try { - var$2 = oncipj_Cypher_jj_3_153($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break u; - } else{ - $clauses = $$je; - break t; - } - } - oncipj_Cypher_jj_save($this, 152, 2147483647); - break r; - } - try { - var$2 = 1; - break s; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $clauses = $$je; - - } - } - oncipj_Cypher_jj_save($this, 152, 2147483647); - $rt_throw($clauses); - } - oncipj_Cypher_jj_save($this, 152, 2147483647); - } - if (var$2) { - $clauses = oncipj_Cypher_ShowProcedures($this, var$3); - break a; - } - if (oncipj_Cypher_jj_2_154($this, 2147483647)) { - $clauses = oncipj_Cypher_ShowSettings($this, var$3); - break a; - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 335: - case 336: - break; - default: - $this.$jj_la1.data[381] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $clauses = new oncipj_ParseException; - jl_Throwable__init_($clauses); - $rt_throw($clauses); - } - $clauses = oncipj_Cypher_ShowTransactions($this, var$3); - break a; - } - oncipj_Cypher_jj_consume_token($this, 163); - oncipj_Cypher_ShowConstraintsAllowBrief($this, var$3); - break a; - case 325: - break; - default: - $this.$jj_la1.data[382] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $clauses = new oncipj_ParseException; - jl_Throwable__init_($clauses); - $rt_throw($clauses); - } - $clauses = oncipj_Cypher_TerminateTransactions($this, oncipj_Cypher_jj_consume_token($this, 325)); - } - return $clauses; -}, -oncipj_Cypher_stringsOrExpression = $this => { - let $ids, var$2, var$3, $$je; - oncipcaf_SimpleEither_left(ju_ArrayList__init_()); - $this.$jj_la = 2147483647; - $ids = $this.$token; - $this.$jj_scanpos = $ids; - $this.$jj_lastpos = $ids; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_155($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $ids = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 154, 2147483647); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $ids = $$je; - - } - } - oncipj_Cypher_jj_save($this, 154, 2147483647); - $rt_throw($ids); - } - oncipj_Cypher_jj_save($this, 154, 2147483647); - } - e: { - if (!var$2) { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$3) { - case 35: - case 36: - case 39: - case 40: - case 52: - case 64: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 204: - case 205: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 219: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 37: - case 38: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 47: - case 48: - case 49: - case 50: - case 51: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 65: - case 66: - case 67: - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 206: - case 214: - case 220: - case 221: - case 222: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break f; - default: - break f; - } - $ids = oncipcaf_SimpleEither_right(oncipj_Cypher_Expression($this)); - break e; - } - $this.$jj_la1.data[383] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $ids = new oncipj_ParseException; - jl_Throwable__init_($ids); - $rt_throw($ids); - } - $ids = ju_ArrayList__init_(); - ju_ArrayList_add($ids, oncipj_Cypher_StringImage($this)); - g: while (true) { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 107: - break; - default: - break g; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($ids, oncipj_Cypher_StringImage($this)); - } - $this.$jj_la1.data[731] = $this.$jj_gen; - $ids = oncipcaf_SimpleEither_left($ids); - } - return $ids; -}, -oncipj_Cypher_CreateConstraint = ($this, $start, $replace) => { - let $name, $ifNotExists, $propertyType, $options, $isNode, $containsOn, var$9, $properties, $label, $error, var$13, var$14, $errorStart; - a: { - $name = null; - $ifNotExists = 0; - ju_ArrayList__init_0(new ju_ArrayList); - $propertyType = null; - $options = null; - $isNode = 0; - $containsOn = 1; - oncipj_Cypher_jj_consume_token($this, 113); - if (oncipj_Cypher_jj_2_157($this, 2147483647)) { - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 213); - } else if (oncipj_Cypher_jj_2_158($this, 2147483647)) { - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - $containsOn = 0; - } else if (oncipj_Cypher_jj_2_159($this, 2147483647)) { - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$9) { - case 170: - oncipj_Cypher_jj_consume_token($this, 170); - $containsOn = 0; - break b; - case 243: - oncipj_Cypher_jj_consume_token($this, 243); - break b; - default: - } - $this.$jj_la1.data[384] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 213); - } else { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - if (oncipj_Cypher_jj_2_156($this, 2)) - $name = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$9) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - break c; - default: - } - $this.$jj_la1.data[385] = $this.$jj_gen; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$9) { - case 170: - oncipj_Cypher_jj_consume_token($this, 170); - $containsOn = 0; - break d; - case 243: - oncipj_Cypher_jj_consume_token($this, 243); - break d; - default: - } - $this.$jj_la1.data[386] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 213); - break a; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[387] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$9) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $properties = oncipj_Cypher_Variable($this); - $label = oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 297); - $isNode = 1; - break e; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 305: - case 329: - break; - case 297: - oncipj_Cypher_jj_consume_token($this, 297); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$9) { - case 214: - case 371: - break; - default: - $this.$jj_la1.data[388] = $this.$jj_gen; - break f; - } - oncipj_Cypher_LeftArrow($this); - } - oncipj_Cypher_ArrowLine($this); - oncipj_Cypher_jj_consume_token($this, 204); - $properties = oncipj_Cypher_Variable($this); - $label = oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$9) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[389] = $this.$jj_gen; - break g; - } - oncipj_Cypher_RightArrow($this); - } - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_jj_consume_token($this, 297); - break e; - default: - } - $this.$jj_la1.data[390] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - h: { - if (oncipj_Cypher_jj_2_160($this, 2147483647)) { - oncipj_Cypher_jj_consume_token($this, 84); - $error = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_0; - oncipj_Cypher_jj_consume_token($this, 163); - var$13 = !$isNode ? oncipcaf_ConstraintType_REL_EXISTS : oncipcaf_ConstraintType_NODE_EXISTS; - var$14 = oncipj_Cypher_PropertyList($this); - } else { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 84: - case 288: - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$9) { - case 84: - oncipj_Cypher_jj_consume_token($this, 84); - $error = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_0; - break i; - case 288: - oncipj_Cypher_jj_consume_token($this, 288); - $error = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_2; - break i; - default: - } - $this.$jj_la1.data[391] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$14 = oncipj_Cypher_PropertyList($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 106: - oncipj_Cypher_jj_consume_token($this, 106); - $propertyType = oncipj_Cypher_cypherTypeName($this); - var$13 = !$isNode ? oncipcaf_ConstraintType_REL_IS_TYPED : oncipcaf_ConstraintType_NODE_IS_TYPED; - break h; - case 197: - $errorStart = oncipj_Cypher_jj_consume_token($this, 197); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 106: - case 341: - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$9) { - case 106: - oncipj_Cypher_jj_consume_token($this, 106); - break j; - case 341: - oncipj_Cypher_jj_consume_token($this, 341); - break j; - default: - } - $this.$jj_la1.data[395] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $propertyType = oncipj_Cypher_cypherTypeName($this); - var$13 = !$isNode ? oncipcaf_ConstraintType_REL_IS_TYPED : oncipcaf_ConstraintType_NODE_IS_TYPED; - break h; - case 199: - oncipj_Cypher_jj_consume_token($this, 199); - var$13 = !$isNode ? oncipcaf_ConstraintType_REL_KEY : oncipcaf_ConstraintType_NODE_KEY; - break h; - case 231: - oncipj_Cypher_jj_consume_token($this, 231); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 199: - oncipj_Cypher_jj_consume_token($this, 199); - var$13 = oncipcaf_ConstraintType_NODE_KEY; - if (!$isNode) - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, oncipj_ParseException__init_0(oncipcaf_ASTExceptionFactory_relationshipPatternNotAllowed(var$13)), $errorStart.$beginOffset, $errorStart.$beginLine, $errorStart.$beginColumn)); - break h; - case 344: - oncipj_Cypher_jj_consume_token($this, 344); - var$13 = oncipcaf_ConstraintType_NODE_UNIQUE; - if (!$isNode) - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, oncipj_ParseException__init_0(oncipcaf_ASTExceptionFactory_relationshipPatternNotAllowed(var$13)), $errorStart.$beginOffset, $errorStart.$beginLine, $errorStart.$beginColumn)); - break h; - default: - } - $this.$jj_la1.data[392] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 237: - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 240); - var$13 = !$isNode ? oncipcaf_ConstraintType_REL_IS_NOT_NULL : oncipcaf_ConstraintType_NODE_IS_NOT_NULL; - if ($error !== oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_0) - break h; - $error = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_1; - break h; - case 282: - case 283: - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$9) { - case 282: - oncipj_Cypher_jj_consume_token($this, 282); - break k; - case 283: - oncipj_Cypher_jj_consume_token($this, 283); - break k; - default: - } - $this.$jj_la1.data[393] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 199: - oncipj_Cypher_jj_consume_token($this, 199); - var$13 = oncipcaf_ConstraintType_REL_KEY; - if ($isNode) - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, oncipj_ParseException__init_0(oncipcaf_ASTExceptionFactory_nodePatternNotAllowed(var$13)), $errorStart.$beginOffset, $errorStart.$beginLine, $errorStart.$beginColumn)); - break h; - case 344: - oncipj_Cypher_jj_consume_token($this, 344); - var$13 = oncipcaf_ConstraintType_REL_UNIQUE; - if ($isNode) - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, oncipj_ParseException__init_0(oncipcaf_ASTExceptionFactory_nodePatternNotAllowed(var$13)), $errorStart.$beginOffset, $errorStart.$beginLine, $errorStart.$beginColumn)); - break h; - default: - } - $this.$jj_la1.data[394] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 344: - oncipj_Cypher_jj_consume_token($this, 344); - var$13 = !$isNode ? oncipcaf_ConstraintType_REL_UNIQUE : oncipcaf_ConstraintType_NODE_UNIQUE; - break h; - default: - } - $this.$jj_la1.data[396] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[397] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[398] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - l: { - switch (var$9) { - case 246: - break; - default: - $this.$jj_la1.data[399] = $this.$jj_gen; - break l; - } - oncipj_Cypher_jj_consume_token($this, 246); - $options = oncipj_Cypher_MapOrParameter($this); - } - $errorStart = jl_Boolean_valueOf($containsOn); - var$9 = ju_ArrayList_size(var$14) <= 1 ? 0 : 1; - $error = oncipcaf_ASTExceptionFactory_checkForInvalidCreateConstraint(var$13, $error, $errorStart, jl_Boolean_valueOf(var$9)); - if ($error === null) - return onciafn_Neo4jASTFactory_createConstraint0($this.$astFactory, oncipj_Cypher_pos($this, $start), var$13, $replace, $ifNotExists, $name, $properties, onciaf_ASTFactory$StringPos__init_($label.$image, oncipj_Cypher_pos($this, $label)), var$14, $propertyType, $options); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, oncipj_ParseException__init_0($error), $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); -}, -oncipj_Cypher_cypherTypeName = $this => { - let $list, var$2; - ju_ArrayList__init_0(new ju_ArrayList); - $list = $this.$token; - var$2 = oncipj_Cypher_cypherTypeNameList($this); - if (var$2.$size0 == 1) - return ju_ArrayList_get(var$2, 0); - $list = $list.$next5; - return oncipcaf_ParserCypherTypeName_withPos(oncipcaf_ParserCypherTypeName_closedDynamicUnionOf(var$2), jl_Integer_valueOf($list.$beginOffset), jl_Integer_valueOf($list.$beginLine), jl_Integer_valueOf($list.$beginColumn)); -}, -oncipj_Cypher_cypherTypeNameList = $this => { - let $list, $typeName, var$3, $$je; - $list = ju_ArrayList__init_(); - ju_ArrayList_add($list, oncipj_Cypher_cypherTypeNamePart($this)); - a: { - while (true) { - $this.$jj_la = 2; - $typeName = $this.$token; - $this.$jj_scanpos = $typeName; - $this.$jj_lastpos = $typeName; - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_161($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - $list = $$je; - break a; - } - } - oncipj_Cypher_jj_save($this, 160, 2); - break b; - } - try { - var$3 = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $list = $$je; - break a; - - } - oncipj_Cypher_jj_save($this, 160, 2); - } - if (!var$3) - break; - oncipj_Cypher_jj_consume_token($this, 88); - ju_ArrayList_add($list, oncipj_Cypher_cypherTypeNamePart($this)); - } - return $list; - } - oncipj_Cypher_jj_save($this, 160, 2); - $rt_throw($list); -}, -oncipj_Cypher_cypherTypeNamePart = $this => { - let var$1, var$2, var$3, $e, var$5, $$je; - var$1 = $this.$token; - a: { - try { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$2) { - case 79: - oncipj_Cypher_jj_consume_token($this, 79); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 150: - case 283: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$3) { - case 150: - oncipj_Cypher_jj_consume_token($this, 150); - break c; - case 283: - oncipj_Cypher_jj_consume_token($this, 283); - break c; - default: - } - $this.$jj_la1.data[416] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_RELATIONSHIP; - break b; - case 216: - break; - case 231: - case 356: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$3) { - case 231: - oncipj_Cypher_jj_consume_token($this, 231); - break d; - case 356: - oncipj_Cypher_jj_consume_token($this, 356); - break d; - default: - } - $this.$jj_la1.data[415] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_NODE; - break b; - case 270: - oncipj_Cypher_jj_consume_token($this, 270); - oncipj_Cypher_jj_consume_token($this, 352); - $e = oncipcaf_ParserCypherTypeName_PROPERTY_VALUE; - break b; - default: - $this.$jj_la1.data[419] = $this.$jj_gen; - if (!oncipj_Cypher_jj_2_162($this, 2)) { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$3) { - case 352: - break; - default: - $this.$jj_la1.data[418] = $this.$jj_gen; - break e; - } - oncipj_Cypher_jj_consume_token($this, 352); - } - $e = oncipcaf_ParserCypherTypeName_ANY; - break b; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$3) { - case 352: - break; - default: - $this.$jj_la1.data[417] = $this.$jj_gen; - break f; - } - oncipj_Cypher_jj_consume_token($this, 352); - } - oncipj_Cypher_jj_consume_token($this, 214); - $e = oncipj_Cypher_cypherTypeNameList($this); - oncipj_Cypher_jj_consume_token($this, 182); - $e = oncipcaf_ParserCypherTypeName_closedDynamicUnionOf($e); - break b; - } - oncipj_Cypher_jj_consume_token($this, 216); - $e = oncipcaf_ParserCypherTypeName_MAP; - break b; - case 80: - case 209: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$3) { - case 80: - oncipj_Cypher_jj_consume_token($this, 80); - break g; - case 209: - oncipj_Cypher_jj_consume_token($this, 209); - break g; - default: - } - $this.$jj_la1.data[414] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 214); - $e = oncipj_Cypher_cypherTypeName($this); - oncipj_Cypher_jj_consume_token($this, 182); - $e = oncipcaf_ParserCypherTypeName_listOf($e); - break b; - case 90: - case 91: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$3) { - case 90: - oncipj_Cypher_jj_consume_token($this, 90); - break h; - case 91: - oncipj_Cypher_jj_consume_token($this, 91); - break h; - default: - } - $this.$jj_la1.data[400] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_BOOLEAN; - break b; - case 125: - oncipj_Cypher_jj_consume_token($this, 125); - $e = oncipcaf_ParserCypherTypeName_DATE; - break b; - case 148: - oncipj_Cypher_jj_consume_token($this, 148); - $e = oncipcaf_ParserCypherTypeName_DURATION; - break b; - case 150: - case 283: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$3) { - case 150: - oncipj_Cypher_jj_consume_token($this, 150); - break i; - case 283: - oncipj_Cypher_jj_consume_token($this, 283); - break i; - default: - } - $this.$jj_la1.data[413] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_RELATIONSHIP; - break b; - case 169: - oncipj_Cypher_jj_consume_token($this, 169); - $e = oncipcaf_ParserCypherTypeName_FLOAT; - break b; - case 195: - case 196: - case 314: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$3) { - case 195: - oncipj_Cypher_jj_consume_token($this, 195); - break j; - case 196: - case 314: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$3) { - case 314: - break; - default: - $this.$jj_la1.data[402] = $this.$jj_gen; - break k; - } - oncipj_Cypher_jj_consume_token($this, 314); - } - oncipj_Cypher_jj_consume_token($this, 196); - break j; - default: - } - $this.$jj_la1.data[403] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_INTEGER; - break b; - case 211: - oncipj_Cypher_jj_consume_token($this, 211); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 126: - oncipj_Cypher_jj_consume_token($this, 126); - $e = oncipcaf_ParserCypherTypeName_LOCAL_DATETIME; - break b; - case 328: - oncipj_Cypher_jj_consume_token($this, 328); - $e = oncipcaf_ParserCypherTypeName_LOCAL_TIME; - break b; - default: - } - $this.$jj_la1.data[404] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 216: - oncipj_Cypher_jj_consume_token($this, 216); - $e = oncipcaf_ParserCypherTypeName_MAP; - break b; - case 231: - case 356: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - l: { - switch (var$3) { - case 231: - oncipj_Cypher_jj_consume_token($this, 231); - break l; - case 356: - oncipj_Cypher_jj_consume_token($this, 356); - break l; - default: - } - $this.$jj_la1.data[412] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_NODE; - break b; - case 238: - oncipj_Cypher_jj_consume_token($this, 238); - $e = oncipcaf_ParserCypherTypeName_NOTHING; - break b; - case 240: - oncipj_Cypher_jj_consume_token($this, 240); - $e = oncipcaf_ParserCypherTypeName_NULL; - break b; - case 253: - oncipj_Cypher_jj_consume_token($this, 253); - $e = oncipcaf_ParserCypherTypeName_PATH; - break b; - case 259: - oncipj_Cypher_jj_consume_token($this, 259); - $e = oncipcaf_ParserCypherTypeName_POINT; - break b; - case 270: - oncipj_Cypher_jj_consume_token($this, 270); - oncipj_Cypher_jj_consume_token($this, 352); - $e = oncipcaf_ParserCypherTypeName_PROPERTY_VALUE; - break b; - case 321: - case 353: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - m: { - switch (var$3) { - case 321: - oncipj_Cypher_jj_consume_token($this, 321); - break m; - case 353: - oncipj_Cypher_jj_consume_token($this, 353); - break m; - default: - } - $this.$jj_la1.data[401] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_STRING; - break b; - case 328: - oncipj_Cypher_jj_consume_token($this, 328); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 360: - oncipj_Cypher_jj_consume_token($this, 360); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - n: { - switch (var$3) { - case 328: - oncipj_Cypher_jj_consume_token($this, 328); - oncipj_Cypher_jj_consume_token($this, 365); - break n; - case 331: - oncipj_Cypher_jj_consume_token($this, 331); - break n; - default: - } - $this.$jj_la1.data[407] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_ZONED_TIME; - break b; - case 361: - oncipj_Cypher_jj_consume_token($this, 361); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - o: { - switch (var$3) { - case 328: - oncipj_Cypher_jj_consume_token($this, 328); - oncipj_Cypher_jj_consume_token($this, 365); - break o; - case 331: - oncipj_Cypher_jj_consume_token($this, 331); - break o; - default: - } - $this.$jj_la1.data[406] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_LOCAL_TIME; - break b; - default: - } - $this.$jj_la1.data[408] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 330: - oncipj_Cypher_jj_consume_token($this, 330); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 360: - oncipj_Cypher_jj_consume_token($this, 360); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - p: { - switch (var$3) { - case 328: - oncipj_Cypher_jj_consume_token($this, 328); - oncipj_Cypher_jj_consume_token($this, 365); - break p; - case 331: - oncipj_Cypher_jj_consume_token($this, 331); - break p; - default: - } - $this.$jj_la1.data[410] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_ZONED_DATETIME; - break b; - case 361: - oncipj_Cypher_jj_consume_token($this, 361); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - q: { - switch (var$3) { - case 328: - oncipj_Cypher_jj_consume_token($this, 328); - oncipj_Cypher_jj_consume_token($this, 365); - break q; - case 331: - oncipj_Cypher_jj_consume_token($this, 331); - break q; - default: - } - $this.$jj_la1.data[409] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_LOCAL_DATETIME; - break b; - default: - } - $this.$jj_la1.data[411] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 366: - oncipj_Cypher_jj_consume_token($this, 366); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 126: - oncipj_Cypher_jj_consume_token($this, 126); - $e = oncipcaf_ParserCypherTypeName_ZONED_DATETIME; - break b; - case 328: - oncipj_Cypher_jj_consume_token($this, 328); - $e = oncipcaf_ParserCypherTypeName_ZONED_TIME; - break b; - default: - } - $this.$jj_la1.data[405] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[420] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - r: { - switch (var$3) { - case 203: - case 237: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - s: { - switch (var$3) { - case 203: - oncipj_Cypher_jj_consume_token($this, 203); - break s; - case 237: - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 240); - break s; - default: - } - $this.$jj_la1.data[421] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $e = oncipcaf_ParserCypherTypeName_getNotNullTypeName($e); - break r; - default: - } - $this.$jj_la1.data[422] = $this.$jj_gen; - } - t: while (true) { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 80: - case 209: - break; - default: - $this.$jj_la1.data[423] = $this.$jj_gen; - break a; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - u: { - switch (var$3) { - case 80: - break; - case 209: - oncipj_Cypher_jj_consume_token($this, 209); - break u; - default: - $this.$jj_la1.data[424] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 80); - } - $e = oncipcaf_ParserCypherTypeName_listOf($e); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 203: - case 237: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - v: { - switch (var$3) { - case 203: - break; - case 237: - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 240); - break v; - default: - break t; - } - oncipj_Cypher_jj_consume_token($this, 203); - } - $e = oncipcaf_ParserCypherTypeName_getNotNullTypeName($e); - continue t; - default: - } - $this.$jj_la1.data[426] = $this.$jj_gen; - } - $this.$jj_la1.data[425] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_IllegalArgumentException) { - $e = $$je; - } else { - throw $$e; - } - } - var$1 = var$1.$next5; - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, $e, var$1.$beginOffset, var$1.$beginLine, var$1.$beginColumn)); - } - var$5 = var$1.$next5; - return oncipcaf_ParserCypherTypeName_withPos($e, jl_Integer_valueOf(var$5.$beginOffset), jl_Integer_valueOf(var$5.$beginLine), jl_Integer_valueOf(var$5.$beginColumn)); -}, -oncipj_Cypher_DropConstraint = ($this, $start) => { - let $ifExists, $isNode, $properties, var$5, $errorStart, var$7, var$8, var$9, $$je; - $ifExists = 0; - ju_ArrayList__init_0(new ju_ArrayList); - $isNode = 0; - oncipj_Cypher_jj_consume_token($this, 113); - $this.$jj_la = 2147483647; - $properties = $this.$token; - $this.$jj_scanpos = $properties; - $this.$jj_lastpos = $properties; - a: { - b: { - c: { - d: { - try { - var$5 = oncipj_Cypher_jj_3_164($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $start = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 163, 2147483647); - break a; - } - try { - var$5 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 163, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 163, 2147483647); - } - if (!var$5) { - $isNode = $this.$jj_ntk; - if ($isNode == (-1)) - $isNode = oncipj_Cypher_jj_ntk_f($this); - switch ($isNode) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $properties = oncipj_Cypher_SymbolicNameOrStringParameter($this); - $isNode = $this.$jj_ntk; - if ($isNode == (-1)) - $isNode = oncipj_Cypher_jj_ntk_f($this); - e: { - switch ($isNode) { - case 186: - break; - default: - $this.$jj_la1.data[432] = $this.$jj_gen; - break e; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - $ifExists = 1; - } - $start = oncipj_Cypher_pos($this, $start); - $errorStart = new oncia_DropConstraintOnName; - onciafn_TupleConverter$_$callClinit(); - oncia_DropConstraintOnName__init_0($errorStart, su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, $properties))), new onciafn_Neo4jASTFactory$dropConstraint$lambda$_163_0), $ifExists, s_None$_MODULE$, $start); - return $errorStart; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[433] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 213); - $ifExists = $this.$jj_ntk; - if ($ifExists == (-1)) - $ifExists = oncipj_Cypher_jj_ntk_f($this); - f: { - switch ($ifExists) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - oncipj_Cypher_Variable($this); - oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 297); - $isNode = 1; - break f; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 305: - case 329: - break; - case 297: - oncipj_Cypher_jj_consume_token($this, 297); - $ifExists = $this.$jj_ntk; - if ($ifExists == (-1)) - $ifExists = oncipj_Cypher_jj_ntk_f($this); - g: { - switch ($ifExists) { - case 214: - case 371: - break; - default: - $this.$jj_la1.data[427] = $this.$jj_gen; - break g; - } - oncipj_Cypher_LeftArrow($this); - } - oncipj_Cypher_ArrowLine($this); - oncipj_Cypher_jj_consume_token($this, 204); - oncipj_Cypher_Variable($this); - oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - $ifExists = $this.$jj_ntk; - if ($ifExists == (-1)) - $ifExists = oncipj_Cypher_jj_ntk_f($this); - h: { - switch ($ifExists) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[428] = $this.$jj_gen; - break h; - } - oncipj_Cypher_RightArrow($this); - } - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_jj_consume_token($this, 297); - break f; - default: - } - $this.$jj_la1.data[429] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 84); - $this.$jj_la = 2147483647; - $properties = $this.$token; - $this.$jj_scanpos = $properties; - $this.$jj_lastpos = $properties; - i: { - j: { - k: { - l: { - try { - var$7 = oncipj_Cypher_jj_3_163($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break l; - } else{ - $start = $$je; - break k; - } - } - oncipj_Cypher_jj_save($this, 162, 2147483647); - break i; - } - try { - var$7 = 1; - break j; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 162, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 162, 2147483647); - } - m: { - if (var$7) { - oncipj_Cypher_jj_consume_token($this, 163); - $properties = !$isNode ? oncipcaf_ConstraintType_REL_EXISTS : oncipcaf_ConstraintType_NODE_EXISTS; - var$8 = oncipj_Cypher_PropertyList($this); - } else { - $ifExists = $this.$jj_ntk; - if ($ifExists == (-1)) - $ifExists = oncipj_Cypher_jj_ntk_f($this); - switch ($ifExists) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$8 = oncipj_Cypher_PropertyList($this); - $errorStart = oncipj_Cypher_jj_consume_token($this, 197); - $ifExists = $this.$jj_ntk; - if ($ifExists == (-1)) - $ifExists = oncipj_Cypher_jj_ntk_f($this); - switch ($ifExists) { - case 231: - oncipj_Cypher_jj_consume_token($this, 231); - oncipj_Cypher_jj_consume_token($this, 199); - $properties = oncipcaf_ConstraintType_NODE_KEY; - if (!$isNode) { - $start = $this.$exceptionFactory1; - var$9 = new oncipj_ParseException; - jl_Throwable__init_0(var$9, oncipcaf_ASTExceptionFactory_relationshipPatternNotAllowed($properties)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($start, var$9, $errorStart.$beginOffset, $errorStart.$beginLine, $errorStart.$beginColumn)); - } - break m; - case 237: - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 240); - $properties = !$isNode ? oncipcaf_ConstraintType_REL_IS_NOT_NULL : oncipcaf_ConstraintType_NODE_IS_NOT_NULL; - break m; - case 344: - oncipj_Cypher_jj_consume_token($this, 344); - $properties = oncipcaf_ConstraintType_NODE_UNIQUE; - if (!$isNode) { - $start = $this.$exceptionFactory1; - var$9 = new oncipj_ParseException; - jl_Throwable__init_0(var$9, oncipcaf_ASTExceptionFactory_relationshipPatternNotAllowed($properties)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($start, var$9, $errorStart.$beginOffset, $errorStart.$beginLine, $errorStart.$beginColumn)); - } - break m; - default: - } - $this.$jj_la1.data[430] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[431] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - } - $errorStart = $this.$exceptionFactory1; - var$9 = new oncipj_ParseException; - jl_Throwable__init_0(var$9, oncipcaf_ASTExceptionFactory_invalidDropConstraint($properties, jl_Boolean_valueOf(var$8.$size0 <= 1 ? 0 : 1))); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($errorStart, var$9, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); -}, -oncipj_Cypher_createIndex = ($this, $start, $replace, $indexType) => { - let $ifNotExists, $isNode, $indexName, $options, $properties, var$9, var$10, var$11, var$12, var$13, $$je; - $ifNotExists = 0; - $isNode = 0; - $indexName = null; - ju_ArrayList__init_0(new ju_ArrayList); - $options = null; - $this.$jj_la = 2147483647; - $properties = $this.$token; - $this.$jj_scanpos = $properties; - $this.$jj_lastpos = $properties; - a: { - b: { - c: { - d: { - try { - var$9 = oncipj_Cypher_jj_3_166($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $start = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 165, 2147483647); - break a; - } - try { - var$9 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 165, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 165, 2147483647); - } - e: { - if (var$9) { - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - } else { - $this.$jj_la = 2147483647; - $properties = $this.$token; - $this.$jj_scanpos = $properties; - $this.$jj_lastpos = $properties; - f: { - g: { - h: { - i: { - try { - var$10 = oncipj_Cypher_jj_3_167($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $start = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 166, 2147483647); - break f; - } - try { - var$10 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 166, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 166, 2147483647); - } - if (var$10) { - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - } else { - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $indexName = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$11) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - break j; - default: - } - $this.$jj_la1.data[436] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - break e; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[437] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - } - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$11) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$12 = oncipj_Cypher_Variable($this); - var$13 = oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 297); - $isNode = 1; - break k; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 305: - case 329: - break; - case 297: - oncipj_Cypher_jj_consume_token($this, 297); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - l: { - switch (var$11) { - case 214: - case 371: - break; - default: - $this.$jj_la1.data[438] = $this.$jj_gen; - break l; - } - oncipj_Cypher_LeftArrow($this); - } - oncipj_Cypher_ArrowLine($this); - oncipj_Cypher_jj_consume_token($this, 204); - var$12 = oncipj_Cypher_Variable($this); - var$13 = oncipj_Cypher_LabelOrRelType($this); - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - m: { - switch (var$11) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[439] = $this.$jj_gen; - break m; - } - oncipj_Cypher_RightArrow($this); - } - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_jj_consume_token($this, 297); - break k; - default: - } - $this.$jj_la1.data[440] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - $properties = oncipj_Cypher_PropertyList($this); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - n: { - switch (var$11) { - case 246: - break; - default: - $this.$jj_la1.data[441] = $this.$jj_gen; - break n; - } - oncipj_Cypher_jj_consume_token($this, 246); - $options = oncipj_Cypher_MapOrParameter($this); - } - if ($indexType !== oncipcaf_CreateIndexTypes_BTREE) - return onciafn_Neo4jASTFactory_createIndex($this.$astFactory, oncipj_Cypher_pos($this, $start), $replace, $ifNotExists, $isNode, $indexName, var$12, onciaf_ASTFactory$StringPos__init_(var$13.$image, oncipj_Cypher_pos($this, var$13)), $properties, $options, $indexType); - $indexType = $this.$exceptionFactory1; - $properties = new oncipj_ParseException; - jl_Throwable__init_0($properties, $rt_s(4401)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($indexType, $properties, $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); -}, -oncipj_Cypher_createFulltextIndex = ($this, $start, $replace) => { - let $ifNotExists, $isNode, $indexName, $properties, $options, $labels, var$9, var$10, var$11, var$12, var$13, var$14, $$je; - $ifNotExists = 0; - $isNode = 0; - $indexName = null; - ju_ArrayList__init_0(new ju_ArrayList); - $properties = ju_ArrayList__init_(); - $options = null; - $this.$jj_la = 2147483647; - $labels = $this.$token; - $this.$jj_scanpos = $labels; - $this.$jj_lastpos = $labels; - a: { - b: { - c: { - d: { - try { - var$9 = oncipj_Cypher_jj_3_168($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $start = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 167, 2147483647); - break a; - } - try { - var$9 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 167, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 167, 2147483647); - } - e: { - if (var$9) { - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - } else { - $this.$jj_la = 2147483647; - $labels = $this.$token; - $this.$jj_scanpos = $labels; - $this.$jj_lastpos = $labels; - f: { - g: { - h: { - i: { - try { - var$9 = oncipj_Cypher_jj_3_169($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $start = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 168, 2147483647); - break f; - } - try { - var$9 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 168, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 168, 2147483647); - } - if (var$9) { - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - } else { - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $indexName = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$10) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - break j; - default: - } - $this.$jj_la1.data[442] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - break e; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[443] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - } - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$10) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$11 = oncipj_Cypher_Variable($this); - var$12 = oncipj_Cypher_LabelOrRelTypes($this); - oncipj_Cypher_jj_consume_token($this, 297); - $isNode = 1; - break k; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 305: - case 329: - break; - case 297: - oncipj_Cypher_jj_consume_token($this, 297); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - l: { - switch (var$10) { - case 214: - case 371: - break; - default: - $this.$jj_la1.data[444] = $this.$jj_gen; - break l; - } - oncipj_Cypher_LeftArrow($this); - } - oncipj_Cypher_ArrowLine($this); - oncipj_Cypher_jj_consume_token($this, 204); - var$11 = oncipj_Cypher_Variable($this); - var$12 = oncipj_Cypher_LabelOrRelTypes($this); - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - m: { - switch (var$10) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[445] = $this.$jj_gen; - break m; - } - oncipj_Cypher_RightArrow($this); - } - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_jj_consume_token($this, 297); - break k; - default: - } - $this.$jj_la1.data[446] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 149); - oncipj_Cypher_jj_consume_token($this, 204); - ju_ArrayList_add($properties, oncipj_Cypher_Property($this, oncipj_Cypher_Variable($this))); - n: while (true) { - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 107: - break; - default: - break n; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($properties, oncipj_Cypher_Property($this, oncipj_Cypher_Variable($this))); - } - $this.$jj_la1.data[447] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, 275); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - o: { - switch (var$10) { - case 246: - break; - default: - $this.$jj_la1.data[448] = $this.$jj_gen; - break o; - } - oncipj_Cypher_jj_consume_token($this, 246); - $options = oncipj_Cypher_MapOrParameter($this); - } - var$13 = $this.$astFactory; - var$14 = oncipj_Cypher_pos($this, $start); - $properties = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $properties))); - s_Option$_$callClinit(); - $start = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $indexName), new onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_0); - if (!$isNode) { - $labels = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$12))), new onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_1); - $start = oncia_CreateIndex$_createFulltextRelationshipIndex(oncia_CreateIndex$_MODULE$, var$11, $labels, $properties, $start, onciafn_Neo4jASTFactory_ifExistsDo(var$13, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst(var$13, $options), s_None$_MODULE$, var$14); - } else { - $labels = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$12))), new onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_2); - $start = oncia_CreateIndex$_createFulltextNodeIndex(oncia_CreateIndex$_MODULE$, var$11, $labels, $properties, $start, onciafn_Neo4jASTFactory_ifExistsDo(var$13, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst(var$13, $options), s_None$_MODULE$, var$14); - } - return $start; -}, -oncipj_Cypher_createLookupIndex = ($this, $start, $replace) => { - let $ifNotExists, $isNode, $indexName, $options, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, $$je; - $ifNotExists = 0; - $isNode = 0; - $indexName = null; - $options = null; - $this.$jj_la = 2147483647; - var$7 = $this.$token; - $this.$jj_scanpos = var$7; - $this.$jj_lastpos = var$7; - a: { - b: { - c: { - d: { - try { - var$8 = oncipj_Cypher_jj_3_170($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $start = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 169, 2147483647); - break a; - } - try { - var$8 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 169, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 169, 2147483647); - } - e: { - if (var$8) { - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - } else { - $this.$jj_la = 2147483647; - var$7 = $this.$token; - $this.$jj_scanpos = var$7; - $this.$jj_lastpos = var$7; - f: { - g: { - h: { - i: { - try { - var$8 = oncipj_Cypher_jj_3_171($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - $start = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 170, 2147483647); - break f; - } - try { - var$8 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 170, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 170, 2147483647); - } - if (var$8) { - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - } else { - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $indexName = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$9) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - break j; - default: - } - $this.$jj_la1.data[449] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - break e; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[450] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - } - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$9) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$10 = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 297); - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 149); - $isNode = 1; - break k; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 305: - case 329: - break; - case 297: - oncipj_Cypher_jj_consume_token($this, 297); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - l: { - switch (var$9) { - case 214: - case 371: - break; - default: - $this.$jj_la1.data[451] = $this.$jj_gen; - break l; - } - oncipj_Cypher_LeftArrow($this); - } - oncipj_Cypher_ArrowLine($this); - oncipj_Cypher_jj_consume_token($this, 204); - var$10 = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 275); - oncipj_Cypher_ArrowLine($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - m: { - switch (var$9) { - case 182: - case 372: - break; - default: - $this.$jj_la1.data[452] = $this.$jj_gen; - break m; - } - oncipj_Cypher_RightArrow($this); - } - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_jj_consume_token($this, 297); - oncipj_Cypher_jj_consume_token($this, 243); - $this.$jj_la = 2147483647; - var$7 = $this.$token; - $this.$jj_scanpos = var$7; - $this.$jj_lastpos = var$7; - n: { - o: { - p: { - q: { - try { - var$11 = oncipj_Cypher_jj_3_172($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break q; - } else{ - $start = $$je; - break p; - } - } - oncipj_Cypher_jj_save($this, 171, 2147483647); - break n; - } - try { - var$11 = 1; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 171, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 171, 2147483647); - } - if (!var$11) - break k; - oncipj_Cypher_jj_consume_token($this, 149); - break k; - default: - } - $this.$jj_la1.data[453] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_SymbolicNameString($this); - var$12 = new onciaf_ASTFactory$StringPos; - var$7 = $this.$token; - onciaf_ASTFactory$StringPos__init_0(var$12, var$7.$image, oncipj_Cypher_pos($this, var$7)); - oncipj_Cypher_jj_consume_token($this, 213); - var$13 = oncipj_Cypher_Variable($this); - oncipj_Cypher_jj_consume_token($this, 297); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - r: { - switch (var$9) { - case 246: - break; - default: - $this.$jj_la1.data[454] = $this.$jj_gen; - break r; - } - oncipj_Cypher_jj_consume_token($this, 246); - $options = oncipj_Cypher_MapOrParameter($this); - } - var$14 = $this.$astFactory; - var$15 = oncipj_Cypher_pos($this, $start); - var$16 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$7 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, var$12.$string, var$12.$pos3); - s_package$_$callClinit(); - var$17 = s_package$_IndexedSeq(s_package$_MODULE$); - $start = sr_ScalaRunTime$_MODULE$; - var$18 = $rt_createArray(oncie_Variable, 1); - var$18.data[0] = var$13; - $start = sc_SeqFactory$Delegate_apply(var$17, sr_ScalaRunTime$_wrapRefArray($start, var$18)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$16, var$7, 0, $start, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, var$12.$pos3); - s_Option$_$callClinit(); - $start = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $indexName), new onciafn_Neo4jASTFactory$createLookupIndex$lambda$_167_0); - return oncia_CreateIndex$_createLookupIndex(oncia_CreateIndex$_MODULE$, var$10, $isNode, var$16, $start, onciafn_Neo4jASTFactory_ifExistsDo(var$14, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst(var$14, $options), s_None$_MODULE$, var$15); -}, -oncipj_Cypher_PropertyList = $this => { - let $properties, var$2; - $properties = ju_ArrayList__init_(); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - b: { - switch (var$2) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break b; - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - ju_ArrayList_add($properties, oncipj_Cypher_Property($this, oncipj_Cypher_Variable($this))); - c: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 107: - break; - default: - break c; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($properties, oncipj_Cypher_Property($this, oncipj_Cypher_Variable($this))); - } - $this.$jj_la1.data[457] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, 297); - break a; - default: - break b; - } - ju_ArrayList_add($properties, oncipj_Cypher_Property($this, oncipj_Cypher_Variable($this))); - break a; - } - $this.$jj_la1.data[458] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $properties = new oncipj_ParseException; - jl_Throwable__init_($properties); - $rt_throw($properties); - } - return $properties; -}, -oncipj_Cypher_RenameCommand = $this => { - let $start, var$2, var$3, var$4, var$5, var$6, var$7, $command; - $start = oncipj_Cypher_jj_consume_token($this, 280); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$2) { - case 293: - var$3 = 0; - oncipj_Cypher_jj_consume_token($this, 293); - var$4 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$2) { - case 186: - break; - default: - $this.$jj_la1.data[487] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - var$3 = 1; - } - oncipj_Cypher_jj_consume_token($this, 332); - var$5 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$6 = $this.$astFactory; - var$7 = oncipj_Cypher_pos($this, $start); - $command = new oncia_RenameRole; - onciafn_TupleConverter$_$callClinit(); - oncia_RenameRole__init_($command, onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$6, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$4))), onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$6, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$5))), var$3, var$7); - break a; - case 306: - oncipj_Cypher_jj_consume_token($this, 306); - var$6 = oncipj_Cypher_StringOrParameter($this); - oncipj_Cypher_jj_consume_token($this, 332); - var$7 = oncipj_Cypher_StringOrParameter($this); - $start = oncipj_Cypher_pos($this, $start); - $command = new oncia_RenameServer; - onciafn_TupleConverter$_$callClinit(); - oncia_RenameServer__init_($command, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$6)), onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$7)), $start); - break a; - case 349: - var$3 = 0; - oncipj_Cypher_jj_consume_token($this, 349); - var$6 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$2) { - case 186: - break; - default: - $this.$jj_la1.data[501] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - var$3 = 1; - } - oncipj_Cypher_jj_consume_token($this, 332); - var$7 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$4 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - $command = new oncia_RenameUser; - onciafn_TupleConverter$_$callClinit(); - oncia_RenameUser__init_($command, onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$4, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$6))), onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$4, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$7))), var$3, $start); - break a; - default: - } - $this.$jj_la1.data[459] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - return $command; -}, -oncipj_Cypher_GrantCommand = $this => { - let $start, var$2, $c, var$4, $$je; - $start = oncipj_Cypher_jj_consume_token($this, 177); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - a: { - b: { - switch (var$2) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 293: - case 294: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - break; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - $this.$jj_la = 2147483647; - $c = $this.$token; - $this.$jj_scanpos = $c; - $this.$jj_lastpos = $c; - c: { - d: { - e: { - f: { - try { - var$4 = oncipj_Cypher_jj_3_174($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break f; - } else{ - $start = $$je; - break e; - } - } - oncipj_Cypher_jj_save($this, 173, 2147483647); - break c; - } - try { - var$4 = 1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 173, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 173, 2147483647); - } - if (var$4) { - $c = oncipj_Cypher_grantRoleManagement($this, $start, 0); - break b; - } - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break a; - default: - break a; - } - $c = oncipj_Cypher_GrantRole($this, $start); - break b; - case 294: - oncipj_Cypher_jj_consume_token($this, 294); - $c = oncipj_Cypher_GrantRole($this, $start); - break b; - default: - $this.$jj_la1.data[462] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $c = oncipj_Cypher_grantPrivilege($this, $start, 0); - break b; - case 188: - oncipj_Cypher_jj_consume_token($this, 188); - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - break; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - $c = oncipj_Cypher_grantRoleManagement($this, $start, 1); - break b; - default: - $this.$jj_la1.data[460] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $c = oncipj_Cypher_grantPrivilege($this, $start, 1); - break b; - default: - } - $this.$jj_la1.data[463] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - return $c; - } - $this.$jj_la1.data[461] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); -}, -oncipj_Cypher_RevokeCommand = $this => { - let $immutable, $start, var$3, var$4, $c, var$6, var$7, var$8, $$je; - $immutable = 0; - $start = oncipj_Cypher_jj_consume_token($this, 292); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 293: - case 294: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - $immutable = $this.$jj_ntk; - if ($immutable == (-1)) - $immutable = oncipj_Cypher_jj_ntk_f($this); - switch ($immutable) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - break; - default: - $this.$jj_la1.data[470] = $this.$jj_gen; - $this.$jj_la = 2147483647; - var$4 = $this.$token; - $this.$jj_scanpos = var$4; - $this.$jj_lastpos = var$4; - b: { - c: { - d: { - e: { - try { - var$3 = oncipj_Cypher_jj_3_175($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $start = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 174, 2147483647); - break b; - } - try { - var$3 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 174, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 174, 2147483647); - } - if (var$3) { - oncipj_Cypher_jj_consume_token($this, 293); - $c = oncipj_Cypher_revokeRoleManagement($this, $start, 1, 1, 0); - break a; - } - $immutable = $this.$jj_ntk; - if ($immutable == (-1)) - $immutable = oncipj_Cypher_jj_ntk_f($this); - switch ($immutable) { - case 293: - case 294: - $immutable = $this.$jj_ntk; - if ($immutable == (-1)) - $immutable = oncipj_Cypher_jj_ntk_f($this); - f: { - switch ($immutable) { - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - break f; - case 294: - oncipj_Cypher_jj_consume_token($this, 294); - break f; - default: - } - $this.$jj_la1.data[469] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$4 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - oncipj_Cypher_jj_consume_token($this, 172); - var$6 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - var$7 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - $c = new oncia_RevokeRolesFromUsers; - var$4 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$4)); - var$8 = new onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_0; - var$8.$_01034 = var$7; - var$4 = (sc_StrictOptimizedIterableOps_map$(var$4, var$8)).$toSeq(); - var$6 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$6)); - var$8 = new onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_1; - var$8.$_0420 = var$7; - oncia_RevokeRolesFromUsers__init_0($c, var$4, (sc_StrictOptimizedIterableOps_map$(var$6, var$8)).$toSeq(), $start); - break a; - default: - } - $this.$jj_la1.data[471] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $c = oncipj_Cypher_RevokePrivilege($this, $start, 1, 1, 0); - break a; - case 132: - oncipj_Cypher_jj_consume_token($this, 132); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$3) { - case 188: - break; - default: - $this.$jj_la1.data[464] = $this.$jj_gen; - break g; - } - oncipj_Cypher_jj_consume_token($this, 188); - $immutable = 1; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - break; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - $c = oncipj_Cypher_revokeRoleManagement($this, $start, 0, 1, $immutable); - break a; - default: - $this.$jj_la1.data[465] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $c = oncipj_Cypher_RevokePrivilege($this, $start, 0, 1, $immutable); - break a; - case 177: - oncipj_Cypher_jj_consume_token($this, 177); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$3) { - case 188: - break; - default: - $this.$jj_la1.data[466] = $this.$jj_gen; - break h; - } - oncipj_Cypher_jj_consume_token($this, 188); - $immutable = 1; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - break; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - $c = oncipj_Cypher_revokeRoleManagement($this, $start, 1, 0, $immutable); - break a; - default: - $this.$jj_la1.data[467] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $c = oncipj_Cypher_RevokePrivilege($this, $start, 1, 0, $immutable); - break a; - case 188: - oncipj_Cypher_jj_consume_token($this, 188); - $immutable = $this.$jj_ntk; - if ($immutable == (-1)) - $immutable = oncipj_Cypher_jj_ntk_f($this); - switch ($immutable) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - break; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - $c = oncipj_Cypher_revokeRoleManagement($this, $start, 1, 1, 1); - break a; - default: - $this.$jj_la1.data[468] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $c = oncipj_Cypher_RevokePrivilege($this, $start, 1, 1, 1); - break a; - default: - } - $this.$jj_la1.data[472] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - return $c; -}, -oncipj_Cypher_EnableServerCommand = $this => { - let $options, $start, var$3, var$4, var$5, var$6; - $options = null; - $start = oncipj_Cypher_jj_consume_token($this, 151); - oncipj_Cypher_jj_consume_token($this, 306); - var$3 = oncipj_Cypher_StringOrParameter($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 246: - break; - default: - $this.$jj_la1.data[473] = $this.$jj_gen; - break a; - } - $options = oncipj_Cypher_Options($this); - } - var$5 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - var$6 = new oncia_EnableServer; - onciafn_TupleConverter$_$callClinit(); - oncia_EnableServer__init_(var$6, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$3)), onciafn_Neo4jASTFactory_asOptionsAst(var$5, $options), $start); - return var$6; -}, -oncipj_Cypher_ShowServers = ($this, $start, $useClause) => { - let $yield, $returnClause, $where, var$6, var$7, var$8; - $yield = null; - $returnClause = null; - $where = null; - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 306: - oncipj_Cypher_jj_consume_token($this, 306); - break a; - case 307: - oncipj_Cypher_jj_consume_token($this, 307); - break a; - default: - } - $this.$jj_la1.data[474] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$7) { - case 359: - case 364: - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 359: - break; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 291: - break; - default: - $this.$jj_la1.data[475] = $this.$jj_gen; - break b; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break b; - default: - $this.$jj_la1.data[476] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $where = oncipj_Cypher_WhereClause($this); - break b; - default: - } - $this.$jj_la1.data[477] = $this.$jj_gen; - } - var$8 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - return onciafn_Neo4jASTFactory_useGraph(var$8, oncia_ShowServers$_apply(oncia_ShowServers$_MODULE$, onciafn_Neo4jASTFactory_yieldOrWhere(var$8, $yield, $returnClause, $where), $start), $useClause); -}, -oncipj_Cypher_CreateRole = ($this, $start, $replace) => { - let $sourceRoleName, $ifNotExists, var$5, var$6, var$7, var$8, var$9; - $sourceRoleName = null; - $ifNotExists = 0; - oncipj_Cypher_jj_consume_token($this, 293); - var$5 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - break a; - default: - } - $this.$jj_la1.data[484] = $this.$jj_gen; - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 81: - oncipj_Cypher_jj_consume_token($this, 81); - oncipj_Cypher_jj_consume_token($this, 116); - oncipj_Cypher_jj_consume_token($this, 241); - $sourceRoleName = oncipj_Cypher_SymbolicNameOrStringParameter($this); - break b; - default: - } - $this.$jj_la1.data[485] = $this.$jj_gen; - } - var$7 = $this.$astFactory; - var$8 = oncipj_Cypher_pos($this, $start); - var$9 = new oncia_CreateRole; - onciafn_TupleConverter$_$callClinit(); - $start = onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$7, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$5))); - s_Option$_$callClinit(); - var$5 = s_Option$_apply(s_Option$_MODULE$, $sourceRoleName); - $sourceRoleName = new onciafn_Neo4jASTFactory$createRole$lambda$_171_0; - $sourceRoleName.$_0486 = var$7; - oncia_CreateRole__init_(var$9, $start, s_Option_map(var$5, $sourceRoleName), onciafn_Neo4jASTFactory_ifExistsDo(var$7, $replace, $ifNotExists), var$8); - return var$9; -}, -oncipj_Cypher_ShowRoles = ($this, $start, $useClause, $showAll) => { - let $withUsers, $yield, $returnClause, $where, var$8, var$9, var$10; - $withUsers = 0; - $yield = null; - $returnClause = null; - $where = null; - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 360: - oncipj_Cypher_jj_consume_token($this, 360); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$9) { - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - break b; - case 350: - oncipj_Cypher_jj_consume_token($this, 350); - break b; - default: - } - $this.$jj_la1.data[488] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $withUsers = 1; - break a; - default: - } - $this.$jj_la1.data[489] = $this.$jj_gen; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$9) { - case 359: - case 364: - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - break; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 291: - break; - default: - $this.$jj_la1.data[490] = $this.$jj_gen; - break c; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break c; - default: - $this.$jj_la1.data[491] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $where = oncipj_Cypher_WhereClause($this); - break c; - default: - } - $this.$jj_la1.data[492] = $this.$jj_gen; - } - var$10 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - return onciafn_Neo4jASTFactory_useGraph(var$10, oncia_ShowRoles$_apply(oncia_ShowRoles$_MODULE$, $withUsers, $showAll, onciafn_Neo4jASTFactory_yieldOrWhere(var$10, $yield, $returnClause, $where), $start), $useClause); -}, -oncipj_Cypher_GrantRole = ($this, $start) => { - let $roles, $users, var$4, var$5, var$6; - $roles = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - oncipj_Cypher_jj_consume_token($this, 332); - $users = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - var$4 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - var$5 = new oncia_GrantRolesToUsers; - var$6 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $roles)); - $roles = new onciafn_Neo4jASTFactory$grantRoles$lambda$_175_0; - $roles.$_0611 = var$4; - var$6 = (sc_StrictOptimizedIterableOps_map$(var$6, $roles)).$toSeq(); - $roles = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $users)); - $users = new onciafn_Neo4jASTFactory$grantRoles$lambda$_175_1; - $users.$_091 = var$4; - oncia_GrantRolesToUsers__init_0(var$5, var$6, (sc_StrictOptimizedIterableOps_map$($roles, $users)).$toSeq(), $start); - return var$5; -}, -oncipj_Cypher_CreateUser = ($this, $start, $replace) => { - let $ifNotExists, $suspended, $homeDatabase, $auths, $systemAuthAttributes, var$8, var$9, var$10, var$11, var$12; - $ifNotExists = 0; - $suspended = ju_Optional_empty(); - $homeDatabase = ju_Optional_empty(); - $auths = ju_ArrayList__init_(); - $systemAuthAttributes = ju_ArrayList__init_(); - oncipj_Cypher_jj_consume_token($this, 349); - var$8 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$9) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - break a; - default: - } - $this.$jj_la1.data[493] = $this.$jj_gen; - } - b: while (true) { - var$10 = oncipj_Cypher_jj_consume_token($this, 308); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$9) { - case 87: - ju_ArrayList_add($auths, oncipj_Cypher_UserAuthObjects($this)); - break c; - case 155: - var$10 = oncipj_Cypher_jj_consume_token($this, 155); - oncipj_Cypher_jj_consume_token($this, 251); - oncipj_Cypher_SetPassword($this, var$10, $systemAuthAttributes, 1); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 102: - break; - default: - $this.$jj_la1.data[495] = $this.$jj_gen; - break c; - } - oncipj_Cypher_PasswordChangeRequired($this, $systemAuthAttributes); - break c; - case 184: - break; - case 251: - var$10 = oncipj_Cypher_jj_consume_token($this, 251); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 52: - case 64: - case 137: - oncipj_Cypher_SetPassword($this, var$10, $systemAuthAttributes, 0); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 102: - break; - default: - $this.$jj_la1.data[496] = $this.$jj_gen; - break c; - } - oncipj_Cypher_PasswordChangeRequired($this, $systemAuthAttributes); - break c; - case 102: - break; - default: - $this.$jj_la1.data[497] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_PasswordChangeRequired($this, $systemAuthAttributes); - break c; - case 256: - var$10 = oncipj_Cypher_jj_consume_token($this, 256); - oncipj_Cypher_jj_consume_token($this, 251); - oncipj_Cypher_SetPassword($this, var$10, $systemAuthAttributes, 0); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 102: - break; - default: - $this.$jj_la1.data[494] = $this.$jj_gen; - break c; - } - oncipj_Cypher_PasswordChangeRequired($this, $systemAuthAttributes); - break c; - case 319: - $suspended = oncipj_Cypher_UserStatus($this, var$10, $suspended); - break c; - default: - break b; - } - $homeDatabase = oncipj_Cypher_HomeDatabase($this, var$10, $homeDatabase); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 308: - break; - default: - $this.$jj_la1.data[499] = $this.$jj_gen; - var$10 = $this.$astFactory; - var$11 = oncipj_Cypher_pos($this, $start); - $start = ju_Optional_orElse($suspended, null); - $suspended = ju_Optional_orElse($homeDatabase, null); - var$12 = $suspended === null ? s_None$_MODULE$ : s_Some__init_(oncia_SetHomeDatabaseAction__init_($suspended)); - $homeDatabase = oncia_UserOptions__init_(onciafn_Neo4jASTFactory_asBooleanOption(var$10, $start), var$12); - if (ju_AbstractCollection_isEmpty($systemAuthAttributes)) - var$12 = s_None$_MODULE$; - else { - $suspended = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $systemAuthAttributes))); - var$12 = new s_Some; - $systemAuthAttributes = new oncia_Auth; - oncia_AdministrationCommand$_$callClinit(); - oncia_Auth__init_($systemAuthAttributes, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), $suspended, ($suspended.$head()).$position()); - s_Some__init_0(var$12, $systemAuthAttributes); - } - $start = new oncia_CreateUser; - onciafn_TupleConverter$_$callClinit(); - oncia_CreateUser__init_0($start, onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$10, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$8))), $homeDatabase, onciafn_Neo4jASTFactory_ifExistsDo(var$10, $replace, $ifNotExists), sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $auths))), var$12, var$11); - return $start; - } - } - $this.$jj_la1.data[498] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); -}, -oncipj_Cypher_AlterUser = ($this, $start) => { - let $ifExists, $suspended, $homeDatabase, $removeHome, $removeAllAuth, $removeAuths, $auths, $systemAuthAttributes, var$10, var$11, var$12, var$13; - $ifExists = 0; - $suspended = ju_Optional_empty(); - $homeDatabase = ju_Optional_empty(); - $removeHome = 0; - $removeAllAuth = 0; - $removeAuths = ju_ArrayList__init_(); - $auths = ju_ArrayList__init_(); - $systemAuthAttributes = ju_ArrayList__init_(); - oncipj_Cypher_jj_consume_token($this, 349); - var$10 = oncipj_Cypher_SymbolicNameOrStringParameter($this); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$11) { - case 186: - break; - default: - $this.$jj_la1.data[502] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - $ifExists = 1; - } - b: while (true) { - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 285: - break; - default: - $this.$jj_la1.data[503] = $this.$jj_gen; - c: while (true) { - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 308: - break; - default: - $this.$jj_la1.data[510] = $this.$jj_gen; - return onciafn_Neo4jASTFactory_alterUser($this.$astFactory, oncipj_Cypher_pos($this, $start), $ifExists, var$10, ju_Optional_orElse($suspended, null), ju_Optional_orElse($homeDatabase, null), $removeHome, $auths, $systemAuthAttributes, $removeAllAuth, $removeAuths); - } - var$13 = oncipj_Cypher_jj_consume_token($this, 308); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 87: - ju_ArrayList_add($auths, oncipj_Cypher_UserAuthObjects($this)); - continue c; - case 155: - var$13 = oncipj_Cypher_jj_consume_token($this, 155); - oncipj_Cypher_jj_consume_token($this, 251); - oncipj_Cypher_SetPassword($this, var$13, $systemAuthAttributes, 1); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 102: - break; - default: - $this.$jj_la1.data[512] = $this.$jj_gen; - continue c; - } - oncipj_Cypher_PasswordChangeRequired($this, $systemAuthAttributes); - continue c; - case 184: - break; - case 251: - var$13 = oncipj_Cypher_jj_consume_token($this, 251); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 52: - case 64: - case 137: - oncipj_Cypher_SetPassword($this, var$13, $systemAuthAttributes, 0); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 102: - break; - default: - $this.$jj_la1.data[513] = $this.$jj_gen; - continue c; - } - oncipj_Cypher_PasswordChangeRequired($this, $systemAuthAttributes); - continue c; - case 102: - break; - default: - $this.$jj_la1.data[514] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_PasswordChangeRequired($this, $systemAuthAttributes); - continue c; - case 256: - var$13 = oncipj_Cypher_jj_consume_token($this, 256); - oncipj_Cypher_jj_consume_token($this, 251); - oncipj_Cypher_SetPassword($this, var$13, $systemAuthAttributes, 0); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 102: - break; - default: - $this.$jj_la1.data[511] = $this.$jj_gen; - continue c; - } - oncipj_Cypher_PasswordChangeRequired($this, $systemAuthAttributes); - continue c; - case 319: - $suspended = oncipj_Cypher_UserStatus($this, var$13, $suspended); - continue c; - default: - break c; - } - $homeDatabase = oncipj_Cypher_HomeDatabase($this, var$13, $homeDatabase); - } - $this.$jj_la1.data[515] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 285); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 76: - oncipj_Cypher_jj_consume_token($this, 76); - oncipj_Cypher_jj_consume_token($this, 87); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$12) { - case 271: - case 272: - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 271: - break; - case 272: - oncipj_Cypher_jj_consume_token($this, 272); - break d; - default: - break b; - } - oncipj_Cypher_jj_consume_token($this, 271); - break d; - default: - } - $this.$jj_la1.data[505] = $this.$jj_gen; - } - $removeAllAuth = 1; - continue b; - case 87: - oncipj_Cypher_jj_consume_token($this, 87); - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$12) { - case 271: - case 272: - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - switch (var$12) { - case 271: - break; - case 272: - oncipj_Cypher_jj_consume_token($this, 272); - break e; - default: - $this.$jj_la1.data[506] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 271); - break e; - default: - } - $this.$jj_la1.data[507] = $this.$jj_gen; - } - var$12 = $this.$jj_ntk; - if (var$12 == (-1)) - var$12 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$12) { - case 52: - case 64: - break; - case 137: - var$13 = oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_ANY); - break f; - case 204: - var$13 = oncipj_Cypher_StringListLiteral($this); - break f; - default: - $this.$jj_la1.data[508] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$13 = oncipj_Cypher_StringLiteral($this); - } - ju_ArrayList_add($removeAuths, var$13); - continue b; - case 184: - break; - default: - $this.$jj_la1.data[509] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 184); - oncipj_Cypher_jj_consume_token($this, 123); - $removeHome = 1; - } - $this.$jj_la1.data[504] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); -}, -oncipj_Cypher_SetPassword = ($this, $start, $attributes, $encrypted) => { - ju_ArrayList_add($attributes, oncia_Password__init_0(oncipj_Cypher_passwordExpression($this), $encrypted, oncipj_Cypher_pos($this, $start))); -}, -oncipj_Cypher_passwordExpression = $this => { - let $name, $parameter, var$3, var$4, var$5, var$6; - $name = null; - $parameter = null; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 52: - case 64: - $name = oncipj_Cypher_StringToken($this); - break a; - case 137: - $parameter = oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_STRING); - break a; - default: - } - $this.$jj_la1.data[516] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $name = new oncipj_ParseException; - jl_Throwable__init_($name); - $rt_throw($name); - } - if ($name === null) { - $name = new onciafn_Neo4jASTFactory$$anon$3; - var$4 = $parameter.$name14; - oncius_package$_$callClinit(); - oncie_ExplicitParameter__init_0($name, var$4, oncius_package$_CTString(oncius_package$_MODULE$), onciu_UnknownSize$_MODULE$, $parameter.$position52); - return $name; - } - $parameter = oncipj_Cypher_pos($this, $name); - var$5 = oncipj_Cypher_endPos($this, $name); - $name = $name.$image; - var$6 = new oncie_SensitiveStringLiteral; - jnc_StandardCharsets_$callClinit(); - oncie_SensitiveStringLiteral__init_(var$6, jl_String_getBytes($name, jnc_StandardCharsets_UTF_8), onciu_InputPosition$Simple_withInputLength($parameter, (var$5.$offset0 - $parameter.$offset0 | 0) + 1 | 0)); - return var$6; -}, -oncipj_Cypher_PasswordChangeRequired = ($this, $attributes) => { - let $required, var$3, var$4; - $required = 1; - var$3 = oncipj_Cypher_jj_consume_token($this, 102); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 237: - break; - default: - $this.$jj_la1.data[517] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 237); - $required = 0; - } - oncipj_Cypher_jj_consume_token($this, 289); - ju_ArrayList_add($attributes, oncia_PasswordChange__init_0($required, oncipj_Cypher_pos($this, var$3))); -}, -oncipj_Cypher_UserStatus = ($this, $start, $suspended) => { - let var$3; - oncipj_Cypher_jj_consume_token($this, 319); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 70: - break; - case 323: - oncipj_Cypher_jj_consume_token($this, 323); - var$3 = 1; - break a; - default: - $this.$jj_la1.data[518] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 70); - var$3 = 0; - } - oncipj_Cypher_assertNotAlreadySet($this, ju_Optional_orElse($suspended, null), $start, $rt_s(4402)); - return ju_Optional_of(jl_Boolean_valueOf(var$3)); -}, -oncipj_Cypher_HomeDatabase = ($this, $start, $homeDatabase) => { - let var$3; - oncipj_Cypher_jj_consume_token($this, 184); - oncipj_Cypher_jj_consume_token($this, 123); - var$3 = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - oncipj_Cypher_assertNotAlreadySet($this, ju_Optional_orElse($homeDatabase, null), $start, $rt_s(4403)); - return ju_Optional_of(oncipj_AliasName_getLocalAliasName(var$3, $this.$astFactory)); -}, -oncipj_Cypher_UserAuthObjects = $this => { - let $authAttributes, var$2, var$3, var$4, var$5, var$6; - $authAttributes = ju_ArrayList__init_(); - var$2 = oncipj_Cypher_jj_consume_token($this, 87); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 271: - break; - default: - $this.$jj_la1.data[519] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 271); - } - var$4 = oncipj_Cypher_StringToken($this); - oncipj_Cypher_jj_consume_token($this, 205); - b: while (true) { - oncipj_Cypher_jj_consume_token($this, 308); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$3) { - case 155: - break; - case 185: - var$5 = oncipj_Cypher_jj_consume_token($this, 185); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$3) { - case 52: - case 64: - break; - case 137: - var$6 = oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_STRING); - break d; - default: - break b; - } - var$6 = oncipj_Cypher_StringLiteral($this); - } - ju_ArrayList_add($authAttributes, oncia_AuthId__init_0(var$6, oncipj_Cypher_pos($this, var$5))); - break c; - case 251: - var$5 = oncipj_Cypher_jj_consume_token($this, 251); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 52: - case 64: - case 137: - oncipj_Cypher_SetPassword($this, var$5, $authAttributes, 0); - break c; - case 102: - break; - default: - $this.$jj_la1.data[521] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $authAttributes = new oncipj_ParseException; - jl_Throwable__init_($authAttributes); - $rt_throw($authAttributes); - } - oncipj_Cypher_PasswordChangeRequired($this, $authAttributes); - break c; - case 256: - var$5 = oncipj_Cypher_jj_consume_token($this, 256); - oncipj_Cypher_jj_consume_token($this, 251); - oncipj_Cypher_SetPassword($this, var$5, $authAttributes, 0); - break c; - default: - $this.$jj_la1.data[522] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $authAttributes = new oncipj_ParseException; - jl_Throwable__init_($authAttributes); - $rt_throw($authAttributes); - } - var$5 = oncipj_Cypher_jj_consume_token($this, 155); - oncipj_Cypher_jj_consume_token($this, 251); - oncipj_Cypher_SetPassword($this, var$5, $authAttributes, 1); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 308: - break; - default: - $this.$jj_la1.data[523] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, 276); - var$5 = var$4.$image; - var$2 = oncipj_Cypher_pos($this, var$2); - return oncia_Auth__init_0(var$5, sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, $authAttributes))), var$2); - } - } - $this.$jj_la1.data[520] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $authAttributes = new oncipj_ParseException; - jl_Throwable__init_($authAttributes); - $rt_throw($authAttributes); -}, -oncipj_Cypher_ShowUsers = ($this, $start, $useClause) => { - let $withAuth, $yield, $returnClause, $where, var$7, var$8, var$9; - $withAuth = 0; - $yield = null; - $returnClause = null; - $where = null; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$7) { - case 360: - break; - default: - $this.$jj_la1.data[524] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 360); - oncipj_Cypher_jj_consume_token($this, 87); - $withAuth = 1; - } - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$8) { - case 359: - case 364: - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 359: - break; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - switch (var$8) { - case 291: - break; - default: - $this.$jj_la1.data[525] = $this.$jj_gen; - break b; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break b; - default: - $this.$jj_la1.data[526] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $where = oncipj_Cypher_WhereClause($this); - break b; - default: - } - $this.$jj_la1.data[527] = $this.$jj_gen; - } - var$9 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - return onciafn_Neo4jASTFactory_useGraph(var$9, oncia_ShowUsers$_apply(oncia_ShowUsers$_MODULE$, onciafn_Neo4jASTFactory_yieldOrWhere(var$9, $yield, $returnClause, $where), $withAuth, $start), $useClause); -}, -oncipj_Cypher_ShowCurrentUser = ($this, $start, $useClause) => { - let $yield, $returnClause, $where, var$6, var$7; - $yield = null; - $returnClause = null; - $where = null; - oncipj_Cypher_jj_consume_token($this, 121); - oncipj_Cypher_jj_consume_token($this, 349); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 359: - case 364: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 359: - break; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 291: - break; - default: - $this.$jj_la1.data[528] = $this.$jj_gen; - break a; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break a; - default: - $this.$jj_la1.data[529] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $where = oncipj_Cypher_WhereClause($this); - break a; - default: - } - $this.$jj_la1.data[530] = $this.$jj_gen; - } - var$7 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - return onciafn_Neo4jASTFactory_useGraph(var$7, oncia_ShowCurrentUser$_apply(oncia_ShowCurrentUser$_MODULE$, onciafn_Neo4jASTFactory_yieldOrWhere(var$7, $yield, $returnClause, $where), $start), $useClause); -}, -oncipj_Cypher_ShowSupportedPrivileges = ($this, $start, $useClause) => { - let $yield, $returnClause, $where, var$6, var$7, var$8; - $yield = null; - $returnClause = null; - $where = null; - oncipj_Cypher_jj_consume_token($this, 322); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$6) { - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - break a; - case 266: - oncipj_Cypher_jj_consume_token($this, 266); - break a; - default: - } - $this.$jj_la1.data[531] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 359: - case 364: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 359: - break; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 291: - break; - default: - $this.$jj_la1.data[532] = $this.$jj_gen; - break b; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break b; - default: - $this.$jj_la1.data[533] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $where = oncipj_Cypher_WhereClause($this); - break b; - default: - } - $this.$jj_la1.data[534] = $this.$jj_gen; - } - var$7 = $this.$astFactory; - var$8 = oncipj_Cypher_pos($this, $start); - return onciafn_Neo4jASTFactory_useGraph(var$7, oncia_ShowSupportedPrivilegeCommand$_apply(oncia_ShowSupportedPrivilegeCommand$_MODULE$, onciafn_Neo4jASTFactory_yieldOrWhere(var$7, $yield, $returnClause, $where), var$8), $useClause); -}, -oncipj_Cypher_ShowPrivileges = ($this, $start, $useClause) => { - let $asCommand, $asRevoke, $yield, $returnClause, $where, var$8, var$9, var$10; - $asCommand = 0; - $asRevoke = 0; - $yield = null; - $returnClause = null; - $where = null; - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$8) { - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - break a; - case 266: - oncipj_Cypher_jj_consume_token($this, 266); - break a; - default: - } - $this.$jj_la1.data[535] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$9) { - case 81: - oncipj_Cypher_jj_consume_token($this, 81); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$9) { - case 292: - break; - default: - $this.$jj_la1.data[536] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 292); - $asRevoke = 1; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$9) { - case 108: - oncipj_Cypher_jj_consume_token($this, 108); - break d; - case 109: - oncipj_Cypher_jj_consume_token($this, 109); - break d; - default: - } - $this.$jj_la1.data[537] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $asCommand = 1; - break b; - default: - } - $this.$jj_la1.data[538] = $this.$jj_gen; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$9) { - case 359: - case 364: - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break e; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 291: - break; - default: - $this.$jj_la1.data[539] = $this.$jj_gen; - break e; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break e; - default: - } - $this.$jj_la1.data[540] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[541] = $this.$jj_gen; - } - var$10 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - return onciafn_Neo4jASTFactory_useGraph(var$10, !$asCommand ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, oncia_ShowAllPrivileges__init_($start), onciafn_Neo4jASTFactory_yieldOrWhere(var$10, $yield, $returnClause, $where), $start) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, oncia_ShowAllPrivileges__init_($start), $asRevoke, onciafn_Neo4jASTFactory_yieldOrWhere(var$10, $yield, $returnClause, $where), $start), $useClause); -}, -oncipj_Cypher_ShowRolePrivileges = ($this, $start, $useClause) => { - let $asCommand, $asRevoke, $yield, $returnClause, $where, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15; - $asCommand = 0; - $asRevoke = 0; - $yield = null; - $returnClause = null; - $where = null; - var$8 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$9) { - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - break a; - case 266: - oncipj_Cypher_jj_consume_token($this, 266); - break a; - default: - } - $this.$jj_la1.data[542] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$10) { - case 81: - oncipj_Cypher_jj_consume_token($this, 81); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$10) { - case 292: - break; - default: - $this.$jj_la1.data[543] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 292); - $asRevoke = 1; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$10) { - case 108: - oncipj_Cypher_jj_consume_token($this, 108); - break d; - case 109: - oncipj_Cypher_jj_consume_token($this, 109); - break d; - default: - } - $this.$jj_la1.data[544] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $asCommand = 1; - break b; - default: - } - $this.$jj_la1.data[545] = $this.$jj_gen; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$10) { - case 359: - case 364: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break e; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 291: - break; - default: - $this.$jj_la1.data[546] = $this.$jj_gen; - break e; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break e; - default: - } - $this.$jj_la1.data[547] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[548] = $this.$jj_gen; - } - var$11 = $this.$astFactory; - var$12 = oncipj_Cypher_pos($this, $start); - if (!$asCommand) { - var$13 = oncia_ShowPrivileges$_MODULE$; - var$14 = new oncia_ShowRolesPrivileges; - $start = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$8)); - var$15 = new onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_0; - var$15.$_0810 = var$11; - oncia_ShowRolesPrivileges__init_0(var$14, (sc_StrictOptimizedIterableOps_map$($start, var$15)).$toList(), var$12); - $start = oncia_ShowPrivileges$_apply(var$13, var$14, onciafn_Neo4jASTFactory_yieldOrWhere(var$11, $yield, $returnClause, $where), var$12); - } else { - var$15 = oncia_ShowPrivilegeCommands$_MODULE$; - var$14 = new oncia_ShowRolesPrivileges; - $start = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$8)); - var$13 = new onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_1; - var$13.$_0297 = var$11; - oncia_ShowRolesPrivileges__init_0(var$14, (sc_StrictOptimizedIterableOps_map$($start, var$13)).$toList(), var$12); - $start = oncia_ShowPrivilegeCommands$_apply(var$15, var$14, $asRevoke, onciafn_Neo4jASTFactory_yieldOrWhere(var$11, $yield, $returnClause, $where), var$12); - } - return onciafn_Neo4jASTFactory_useGraph(var$11, $start, $useClause); -}, -oncipj_Cypher_ShowUserPrivileges = ($this, $start, $useClause) => { - let $users, $asCommand, $asRevoke, $yield, $returnClause, $where, var$9, var$10, var$11, var$12, var$13, $$je; - $users = null; - $asCommand = 0; - $asRevoke = 0; - $yield = null; - $returnClause = null; - $where = null; - $this.$jj_la = 2147483647; - var$9 = $this.$token; - $this.$jj_scanpos = var$9; - $this.$jj_lastpos = var$9; - a: { - b: { - c: { - d: { - try { - var$10 = oncipj_Cypher_jj_3_176($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - $start = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 175, 2147483647); - break a; - } - try { - var$10 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 175, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 175, 2147483647); - } - e: { - if (var$10) { - $users = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - break e; - case 266: - oncipj_Cypher_jj_consume_token($this, 266); - break e; - default: - } - $this.$jj_la1.data[549] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $users = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - break e; - case 266: - oncipj_Cypher_jj_consume_token($this, 266); - break e; - default: - } - $this.$jj_la1.data[551] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - case 265: - case 266: - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - break e; - case 266: - oncipj_Cypher_jj_consume_token($this, 266); - break e; - default: - } - $this.$jj_la1.data[550] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[552] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$11) { - case 81: - oncipj_Cypher_jj_consume_token($this, 81); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$11) { - case 292: - break; - default: - $this.$jj_la1.data[553] = $this.$jj_gen; - break g; - } - oncipj_Cypher_jj_consume_token($this, 292); - $asRevoke = 1; - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$11) { - case 108: - oncipj_Cypher_jj_consume_token($this, 108); - break h; - case 109: - oncipj_Cypher_jj_consume_token($this, 109); - break h; - default: - } - $this.$jj_la1.data[554] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $asCommand = 1; - break f; - default: - } - $this.$jj_la1.data[555] = $this.$jj_gen; - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$11) { - case 359: - case 364: - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break i; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 291: - break; - default: - $this.$jj_la1.data[556] = $this.$jj_gen; - break i; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break i; - default: - } - $this.$jj_la1.data[557] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[558] = $this.$jj_gen; - } - var$12 = $this.$astFactory; - var$13 = oncipj_Cypher_pos($this, $start); - return onciafn_Neo4jASTFactory_useGraph(var$12, !$asCommand ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, onciafn_Neo4jASTFactory_userPrivilegeScope(var$12, var$13, $users), onciafn_Neo4jASTFactory_yieldOrWhere(var$12, $yield, $returnClause, $where), var$13) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, onciafn_Neo4jASTFactory_userPrivilegeScope(var$12, var$13, $users), $asRevoke, onciafn_Neo4jASTFactory_yieldOrWhere(var$12, $yield, $returnClause, $where), var$13), - $useClause); -}, -oncipj_Cypher_grantRoleManagement = ($this, $start, $immutable) => { - let var$3, var$4; - var$3 = oncipj_Cypher_roleManagementPrivilege($this, $start, $immutable); - oncipj_Cypher_jj_consume_token($this, 332); - var$4 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - return onciafn_Neo4jASTFactory_grantPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$4, var$3); -}, -oncipj_Cypher_revokeRoleManagement = ($this, $start, $revokeGrant, $revokeDeny, $immutable) => { - let var$5, var$6; - var$5 = oncipj_Cypher_roleManagementPrivilege($this, $start, $immutable); - oncipj_Cypher_jj_consume_token($this, 172); - var$6 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - return onciafn_Neo4jASTFactory_revokePrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$6, var$5, $revokeGrant, $revokeDeny); -}, -oncipj_Cypher_roleManagementPrivilege = ($this, $start, $immutable) => { - oncipj_Cypher_jj_consume_token($this, 215); - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 127); - return onciafn_Neo4jASTFactory_dbmsPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ROLE_ALL), onciafn_Neo4jASTFactory_allQualifier($this.$astFactory), $immutable); -}, -oncipj_Cypher_grantPrivilege = ($this, $start, $immutable) => { - let var$3, var$4; - var$3 = oncipj_Cypher_privilege($this, $start, $immutable); - oncipj_Cypher_jj_consume_token($this, 332); - var$4 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - return onciafn_Neo4jASTFactory_grantPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$4, var$3); -}, -oncipj_Cypher_DenyPrivilege = $this => { - let $immutable, $start, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $immutable = 0; - $start = oncipj_Cypher_jj_consume_token($this, 132); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 188: - break; - default: - $this.$jj_la1.data[559] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 188); - $immutable = 1; - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$3) { - case 69: - case 73: - case 76: - case 77: - case 85: - case 111: - case 113: - case 114: - case 119: - case 123: - case 131: - case 145: - case 160: - case 187: - case 190: - case 191: - case 210: - case 217: - case 218: - case 223: - case 265: - case 277: - case 280: - case 285: - case 306: - case 308: - case 313: - case 317: - case 320: - case 325: - case 335: - case 337: - case 349: - case 362: - var$4 = oncipj_Cypher_privilege($this, $start, $immutable); - break b; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - var$4 = oncipj_Cypher_roleManagementPrivilege($this, $start, $immutable); - break b; - default: - } - $this.$jj_la1.data[560] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 332); - var$5 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - var$6 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - var$7 = new oncia_DenyPrivilege; - var$8 = var$4.$privilegeType; - var$3 = var$4.$immutable; - s_Option$_$callClinit(); - var$9 = s_Option$_apply(s_Option$_MODULE$, var$4.$resource1); - var$10 = sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$4.$qualifier2))); - var$4 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$5)); - var$5 = new onciafn_Neo4jASTFactory$denyPrivilege$lambda$_196_0; - var$5.$_0866 = var$6; - oncia_DenyPrivilege__init_0(var$7, var$8, var$3, var$9, var$10, (sc_StrictOptimizedIterableOps_map$(var$4, var$5)).$toSeq(), $start); - return var$7; -}, -oncipj_Cypher_RevokePrivilege = ($this, $start, $revokeGrant, $revokeDeny, $immutable) => { - let var$5, var$6; - var$5 = oncipj_Cypher_privilege($this, $start, $immutable); - oncipj_Cypher_jj_consume_token($this, 172); - var$6 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - return onciafn_Neo4jASTFactory_revokePrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$6, var$5, $revokeGrant, $revokeDeny); -}, -oncipj_Cypher_privilege = ($this, $start, $immutable) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 69: - case 113: - case 114: - case 190: - case 191: - case 223: - case 317: - case 320: - case 325: - case 335: - break; - case 73: - case 77: - case 85: - case 111: - case 123: - case 160: - case 187: - case 265: - case 280: - case 306: - case 349: - $start = oncipj_Cypher_dbmsPrivilege($this, $start, $immutable); - break a; - case 76: - $start = oncipj_Cypher_allPrivilege($this, $start, $immutable); - break a; - case 119: - $start = oncipj_Cypher_createPrivilege($this, $start, $immutable); - break a; - case 131: - case 218: - var$4 = null; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$3) { - case 131: - oncipj_Cypher_jj_consume_token($this, 131); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_DELETE); - break b; - case 218: - oncipj_Cypher_jj_consume_token($this, 218); - var$4 = oncipj_Cypher_propertyResource($this); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_MERGE); - break b; - default: - } - $this.$jj_la1.data[639] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - var$6 = oncipj_Cypher_GraphScope($this); - var$7 = oncipj_Cypher_graphQualifier($this); - $start = onciafn_Neo4jASTFactory_graphPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$5, var$6, var$4, var$7, $immutable); - break a; - case 145: - $start = oncipj_Cypher_dropPrivilege($this, $start, $immutable); - break a; - case 210: - var$6 = null; - var$7 = null; - oncipj_Cypher_jj_consume_token($this, 210); - oncipj_Cypher_jj_consume_token($this, 243); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$8) { - case 76: - oncipj_Cypher_jj_consume_token($this, 76); - oncipj_Cypher_jj_consume_token($this, 122); - break c; - case 103: - oncipj_Cypher_jj_consume_token($this, 103); - var$6 = oncipj_Cypher_StringOrParameter($this); - break c; - case 347: - oncipj_Cypher_jj_consume_token($this, 347); - var$7 = oncipj_Cypher_StringOrParameter($this); - break c; - default: - } - $this.$jj_la1.data[589] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$9 = oncipj_Cypher_pos($this, $start); - if (var$7 !== null) { - $start = new onciafn_Privilege; - var$6 = new oncia_LoadPrivilege; - oncia_LoadUrlAction$_$callClinit(); - oncia_LoadPrivilege__init_(var$6, oncia_LoadUrlAction$_MODULE$, var$9); - var$4 = oncia_FileResource__init_(var$9); - var$5 = new oncia_LoadUrlQualifier; - onciafn_TupleConverter$_$callClinit(); - oncia_LoadUrlQualifier__init_0(var$5, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$7)), var$9); - onciafn_Privilege__init_($start, var$6, var$4, ju_List_of(var$5), $immutable); - } else if (var$6 === null) { - $start = new onciafn_Privilege; - var$6 = new oncia_LoadPrivilege; - oncia_LoadAllDataAction$_$callClinit(); - oncia_LoadPrivilege__init_(var$6, oncia_LoadAllDataAction$_MODULE$, var$9); - onciafn_Privilege__init_($start, var$6, oncia_FileResource__init_(var$9), ju_List_of(oncia_LoadAllQualifier__init_(var$9)), $immutable); - } else { - $start = new onciafn_Privilege; - var$7 = new oncia_LoadPrivilege; - oncia_LoadCidrAction$_$callClinit(); - oncia_LoadPrivilege__init_(var$7, oncia_LoadCidrAction$_MODULE$, var$9); - var$4 = oncia_FileResource__init_(var$9); - var$5 = new oncia_LoadCidrQualifier; - onciafn_TupleConverter$_$callClinit(); - oncia_LoadCidrQualifier__init_0(var$5, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$6)), var$9); - onciafn_Privilege__init_($start, var$7, var$4, ju_List_of(var$5), $immutable); - } - break a; - case 217: - case 277: - case 337: - var$6 = null; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$3) { - case 217: - oncipj_Cypher_jj_consume_token($this, 217); - var$7 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_MATCH); - var$6 = oncipj_Cypher_propertyResource($this); - break d; - case 277: - oncipj_Cypher_jj_consume_token($this, 277); - var$7 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_READ); - var$6 = oncipj_Cypher_propertyResource($this); - break d; - case 337: - oncipj_Cypher_jj_consume_token($this, 337); - var$7 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_TRAVERSE); - break d; - default: - } - $this.$jj_la1.data[637] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - var$9 = oncipj_Cypher_GraphScope($this); - var$4 = oncipj_Cypher_graphQualifier($this); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$8) { - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - oncipj_Cypher_jj_consume_token($this, 329); - oncipj_Cypher_jj_consume_token($this, 297); - break e; - default: - } - $this.$jj_la1.data[638] = $this.$jj_gen; - } - $start = onciafn_Neo4jASTFactory_graphPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$7, var$9, var$6, var$4, $immutable); - break a; - case 285: - oncipj_Cypher_jj_consume_token($this, 285); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$8) { - case 200: - oncipj_Cypher_jj_consume_token($this, 200); - var$7 = oncipj_Cypher_labelResource($this); - oncipj_Cypher_jj_consume_token($this, 243); - var$9 = oncipj_Cypher_GraphScope($this); - $start = onciafn_Neo4jASTFactory_graphPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_LABEL_REMOVE), var$9, var$7, ju_List_of(onciafn_Neo4jASTFactory_allLabelsQualifier($this.$astFactory, oncipj_Cypher_pos($this, $start))), $immutable); - break f; - case 265: - case 293: - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$8) { - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - var$6 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_PRIVILEGE_REMOVE); - break g; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - var$6 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ROLE_REMOVE); - break g; - default: - } - $this.$jj_la1.data[605] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 127); - $start = onciafn_Neo4jASTFactory_dbmsPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$6, onciafn_Neo4jASTFactory_allQualifier($this.$astFactory), $immutable); - break f; - default: - } - $this.$jj_la1.data[606] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Exception__init_($start); - $rt_throw($start); - } - break a; - case 308: - $start = oncipj_Cypher_setPrivilege($this, $start, $immutable); - break a; - case 313: - $start = oncipj_Cypher_showPrivilege($this, $start, $immutable); - break a; - case 362: - $start = oncipj_Cypher_writePrivilege($this, $start, $immutable); - break a; - default: - $this.$jj_la1.data[561] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $start = oncipj_Cypher_databasePrivilege($this, $start, $immutable); - } - return $start; -}, -oncipj_Cypher_allPrivilege = ($this, $start, $immutable) => { - let $names, $type, $scopeType, $usingDefault, var$7, var$8, var$9; - $names = null; - $type = null; - $scopeType = oncipcaf_ScopeType_NAMED; - $usingDefault = 0; - oncipj_Cypher_jj_consume_token($this, 76); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$7) { - case 123: - case 127: - case 178: - case 266: - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$7) { - case 123: - case 127: - case 178: - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - $type = $rt_s(4404); - break b; - case 127: - oncipj_Cypher_jj_consume_token($this, 127); - $type = $rt_s(31); - break b; - case 178: - oncipj_Cypher_jj_consume_token($this, 178); - $type = $rt_s(761); - break b; - default: - } - $this.$jj_la1.data[562] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[563] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 266); - break a; - default: - } - $this.$jj_la1.data[564] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 243); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$7) { - case 123: - case 124: - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$7) { - case 123: - var$8 = oncipj_Cypher_jj_consume_token($this, 123); - break d; - case 124: - var$8 = oncipj_Cypher_jj_consume_token($this, 124); - break d; - default: - } - $this.$jj_la1.data[569] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$7) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $names = oncipj_Cypher_SymbolicAliasNameList($this); - break e; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - $scopeType = oncipcaf_ScopeType_ALL; - break e; - default: - } - $this.$jj_la1.data[570] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$9 = oncipcaf_ActionType_DATABASE_ALL; - break c; - case 127: - var$8 = oncipj_Cypher_jj_consume_token($this, 127); - var$9 = oncipcaf_ActionType_DBMS_ALL; - break c; - case 129: - var$8 = oncipj_Cypher_jj_consume_token($this, 129); - $usingDefault = 1; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - var$9 = oncipcaf_ActionType_DATABASE_ALL; - break c; - case 178: - oncipj_Cypher_jj_consume_token($this, 178); - var$9 = oncipcaf_ActionType_GRAPH_ALL; - break c; - default: - } - $this.$jj_la1.data[565] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 178: - case 179: - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$7) { - case 178: - var$8 = oncipj_Cypher_jj_consume_token($this, 178); - break f; - case 179: - var$8 = oncipj_Cypher_jj_consume_token($this, 179); - break f; - default: - } - $this.$jj_la1.data[567] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$7) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $names = oncipj_Cypher_SymbolicAliasNameList($this); - break g; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - $scopeType = oncipcaf_ScopeType_ALL; - break g; - default: - } - $this.$jj_la1.data[568] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$9 = oncipcaf_ActionType_GRAPH_ALL; - break c; - case 184: - var$8 = oncipj_Cypher_jj_consume_token($this, 184); - $scopeType = oncipcaf_ScopeType_HOME; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - var$9 = oncipcaf_ActionType_DATABASE_ALL; - break c; - case 178: - oncipj_Cypher_jj_consume_token($this, 178); - var$9 = oncipcaf_ActionType_GRAPH_ALL; - break c; - default: - } - $this.$jj_la1.data[566] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[571] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - if (var$9 === oncipcaf_ActionType_DATABASE_ALL) { - oncipj_Cypher_assertValidType($this, var$8, $type, $rt_s(4404)); - if ($usingDefault) - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, oncipj_ParseException__init_0(oncipcaf_ASTExceptionFactory_invalidDefaultScope($rt_s(4404))), $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); - return onciafn_Neo4jASTFactory_databasePrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, var$9), onciafn_Neo4jASTFactory_databasePrivilegeScope($this.$astFactory, oncipj_Cypher_pos($this, var$8), $names, $scopeType), onciafn_Neo4jASTFactory_allDatabasesQualifier($this.$astFactory), $immutable); - } - if (var$9 !== oncipcaf_ActionType_GRAPH_ALL) { - oncipj_Cypher_assertValidType($this, var$8, $type, $rt_s(31)); - return onciafn_Neo4jASTFactory_dbmsPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, var$9), onciafn_Neo4jASTFactory_allQualifier($this.$astFactory), $immutable); - } - oncipj_Cypher_assertValidType($this, var$8, $type, $rt_s(761)); - if ($usingDefault) - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($this.$exceptionFactory1, oncipj_ParseException__init_0(oncipcaf_ASTExceptionFactory_invalidDefaultScope($rt_s(761))), $start.$beginOffset, $start.$beginLine, $start.$beginColumn)); - return onciafn_Neo4jASTFactory_graphPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, var$9), onciafn_Neo4jASTFactory_graphScope($this.$astFactory, oncipj_Cypher_pos($this, var$8), $names, $scopeType), null, onciafn_Neo4jASTFactory_allQualifier($this.$astFactory), $immutable); -}, -oncipj_Cypher_createPrivilege = ($this, $start, $immutable) => { - let var$3, $qualifier, var$5, var$6; - ju_ArrayList__init_0(new ju_ArrayList); - oncipj_Cypher_jj_consume_token($this, 119); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 73: - case 111: - case 123: - case 293: - case 349: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$3) { - case 73: - oncipj_Cypher_jj_consume_token($this, 73); - $qualifier = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ALIAS_CREATE); - break b; - case 111: - oncipj_Cypher_jj_consume_token($this, 111); - oncipj_Cypher_jj_consume_token($this, 123); - $qualifier = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_COMPOSITE_CREATE); - break b; - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - $qualifier = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_CREATE); - break b; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - $qualifier = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ROLE_CREATE); - break b; - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - $qualifier = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_CREATE); - break b; - default: - } - $this.$jj_la1.data[582] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 127); - $start = onciafn_Neo4jASTFactory_dbmsPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), $qualifier, onciafn_Neo4jASTFactory_allQualifier($this.$astFactory), $immutable); - break a; - case 113: - case 114: - case 190: - case 191: - case 230: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$3) { - case 113: - case 114: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$3) { - case 113: - oncipj_Cypher_jj_consume_token($this, 113); - break d; - case 114: - oncipj_Cypher_jj_consume_token($this, 114); - break d; - default: - } - $this.$jj_la1.data[573] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_CONSTRAINT_CREATE); - break c; - case 190: - case 191: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$3) { - case 190: - oncipj_Cypher_jj_consume_token($this, 190); - break e; - case 191: - oncipj_Cypher_jj_consume_token($this, 191); - break e; - default: - } - $this.$jj_la1.data[572] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_INDEX_CREATE); - break c; - case 230: - oncipj_Cypher_jj_consume_token($this, 230); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 200: - case 201: - case 231: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$3) { - case 231: - break; - default: - $this.$jj_la1.data[574] = $this.$jj_gen; - break f; - } - oncipj_Cypher_jj_consume_token($this, 231); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$3) { - case 200: - oncipj_Cypher_jj_consume_token($this, 200); - break g; - case 201: - oncipj_Cypher_jj_consume_token($this, 201); - break g; - default: - } - $this.$jj_la1.data[575] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_CREATE_LABEL); - break c; - case 223: - case 224: - case 270: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$3) { - case 270: - break; - default: - $this.$jj_la1.data[578] = $this.$jj_gen; - break h; - } - oncipj_Cypher_jj_consume_token($this, 270); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$3) { - case 223: - oncipj_Cypher_jj_consume_token($this, 223); - break i; - case 224: - oncipj_Cypher_jj_consume_token($this, 224); - break i; - default: - } - $this.$jj_la1.data[579] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_CREATE_PROPERTYKEY); - break c; - case 283: - case 340: - case 342: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$3) { - case 283: - break; - default: - $this.$jj_la1.data[576] = $this.$jj_gen; - break j; - } - oncipj_Cypher_jj_consume_token($this, 283); - } - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$3) { - case 340: - oncipj_Cypher_jj_consume_token($this, 340); - break k; - case 342: - oncipj_Cypher_jj_consume_token($this, 342); - break k; - default: - } - $this.$jj_la1.data[577] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_CREATE_RELTYPE); - break c; - default: - } - $this.$jj_la1.data[580] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[581] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 243); - $qualifier = oncipj_Cypher_DatabaseScope($this); - $start = onciafn_Neo4jASTFactory_databasePrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$5, $qualifier, onciafn_Neo4jASTFactory_allDatabasesQualifier($this.$astFactory), $immutable); - break a; - case 243: - oncipj_Cypher_jj_consume_token($this, 243); - $qualifier = oncipj_Cypher_GraphScope($this); - var$6 = oncipj_Cypher_graphQualifier($this); - $start = onciafn_Neo4jASTFactory_graphPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_CREATE), $qualifier, null, var$6, $immutable); - break a; - default: - } - $this.$jj_la1.data[583] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - return $start; -}, -oncipj_Cypher_dropPrivilege = ($this, $start, $immutable) => { - let var$3, var$4, var$5; - oncipj_Cypher_jj_consume_token($this, 145); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 73: - case 111: - case 123: - case 293: - case 349: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$3) { - case 73: - oncipj_Cypher_jj_consume_token($this, 73); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ALIAS_DROP); - break b; - case 111: - oncipj_Cypher_jj_consume_token($this, 111); - oncipj_Cypher_jj_consume_token($this, 123); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_COMPOSITE_DROP); - break b; - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_DROP); - break b; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ROLE_DROP); - break b; - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_DROP); - break b; - default: - } - $this.$jj_la1.data[587] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 127); - $start = onciafn_Neo4jASTFactory_dbmsPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$4, onciafn_Neo4jASTFactory_allQualifier($this.$astFactory), $immutable); - break a; - case 113: - case 114: - case 190: - case 191: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$3) { - case 113: - case 114: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$3) { - case 113: - oncipj_Cypher_jj_consume_token($this, 113); - break d; - case 114: - oncipj_Cypher_jj_consume_token($this, 114); - break d; - default: - } - $this.$jj_la1.data[585] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_CONSTRAINT_DROP); - break c; - case 190: - case 191: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$3) { - case 190: - oncipj_Cypher_jj_consume_token($this, 190); - break e; - case 191: - oncipj_Cypher_jj_consume_token($this, 191); - break e; - default: - } - $this.$jj_la1.data[584] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_INDEX_DROP); - break c; - default: - } - $this.$jj_la1.data[586] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - var$5 = oncipj_Cypher_DatabaseScope($this); - $start = onciafn_Neo4jASTFactory_databasePrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$4, var$5, onciafn_Neo4jASTFactory_allDatabasesQualifier($this.$astFactory), $immutable); - break a; - default: - } - $this.$jj_la1.data[588] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - return $start; -}, -oncipj_Cypher_showPrivilege = ($this, $start, $immutable) => { - let $databaseQualifier, $dbmsQualifier, var$5, var$6, var$7, var$8; - $databaseQualifier = onciafn_Neo4jASTFactory_allDatabasesQualifier($this.$astFactory); - $dbmsQualifier = onciafn_Neo4jASTFactory_allQualifier($this.$astFactory); - oncipj_Cypher_jj_consume_token($this, 313); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$5) { - case 73: - case 265: - case 293: - case 306: - case 307: - case 309: - case 310: - case 349: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$5) { - case 73: - oncipj_Cypher_jj_consume_token($this, 73); - var$6 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ALIAS_SHOW); - break b; - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - var$6 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_PRIVILEGE_SHOW); - break b; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - var$6 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ROLE_SHOW); - break b; - case 306: - case 307: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$5) { - case 306: - oncipj_Cypher_jj_consume_token($this, 306); - break c; - case 307: - oncipj_Cypher_jj_consume_token($this, 307); - break c; - default: - } - $this.$jj_la1.data[596] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$6 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_SERVER_SHOW); - break b; - case 309: - case 310: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$5) { - case 309: - oncipj_Cypher_jj_consume_token($this, 309); - break d; - case 310: - oncipj_Cypher_jj_consume_token($this, 310); - break d; - default: - } - $this.$jj_la1.data[597] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$6 = oncipj_Cypher_pos($this, $start); - var$7 = oncipj_Cypher_globs($this); - $dbmsQualifier = ju_ArrayList__init_(); - $databaseQualifier = new onciafn_Neo4jASTFactory$settingQualifier$lambda$_222_0; - $databaseQualifier.$_0469 = $dbmsQualifier; - $databaseQualifier.$_1163 = var$6; - ju_ArrayList_forEach(var$7, $databaseQualifier); - var$6 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_SETTING_SHOW); - break b; - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - var$6 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_SHOW); - break b; - default: - } - $this.$jj_la1.data[598] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 127); - $start = onciafn_Neo4jASTFactory_dbmsPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$6, $dbmsQualifier, $immutable); - break a; - case 113: - case 114: - case 190: - case 191: - case 335: - case 336: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$5) { - case 113: - case 114: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$5) { - case 113: - oncipj_Cypher_jj_consume_token($this, 113); - break f; - case 114: - oncipj_Cypher_jj_consume_token($this, 114); - break f; - default: - } - $this.$jj_la1.data[591] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $dbmsQualifier = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_CONSTRAINT_SHOW); - break e; - case 190: - case 191: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$5) { - case 190: - oncipj_Cypher_jj_consume_token($this, 190); - break g; - case 191: - oncipj_Cypher_jj_consume_token($this, 191); - break g; - default: - } - $this.$jj_la1.data[590] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Exception__init_($start); - $rt_throw($start); - } - $dbmsQualifier = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_INDEX_SHOW); - break e; - case 335: - case 336: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$5) { - case 335: - oncipj_Cypher_jj_consume_token($this, 335); - break h; - case 336: - oncipj_Cypher_jj_consume_token($this, 336); - break h; - default: - } - $this.$jj_la1.data[592] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $dbmsQualifier = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_TRANSACTION_SHOW); - $databaseQualifier = onciafn_Neo4jASTFactory_allUsersQualifier($this.$astFactory); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - var$8 = $this.$jj_ntk; - if (var$8 == (-1)) - var$8 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$8) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$6 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - $databaseQualifier = onciafn_Neo4jASTFactory_userQualifier($this.$astFactory, var$6); - break i; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - break i; - default: - } - $this.$jj_la1.data[593] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 297); - break e; - default: - } - $this.$jj_la1.data[594] = $this.$jj_gen; - break e; - default: - } - $this.$jj_la1.data[595] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - var$6 = oncipj_Cypher_DatabaseScope($this); - $start = onciafn_Neo4jASTFactory_databasePrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), $dbmsQualifier, var$6, $databaseQualifier, $immutable); - break a; - default: - } - $this.$jj_la1.data[599] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - return $start; -}, -oncipj_Cypher_setPrivilege = ($this, $start, $immutable) => { - let var$3, var$4, var$5, var$6, var$7, var$8; - oncipj_Cypher_jj_consume_token($this, 308); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 87: - case 123: - case 251: - case 252: - case 349: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$3) { - case 87: - oncipj_Cypher_jj_consume_token($this, 87); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_AUTH); - break b; - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - oncipj_Cypher_jj_consume_token($this, 69); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_SET_DATABASE_ACCESS); - break b; - case 251: - case 252: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$3) { - case 251: - oncipj_Cypher_jj_consume_token($this, 251); - break c; - case 252: - oncipj_Cypher_jj_consume_token($this, 252); - break c; - default: - } - $this.$jj_la1.data[600] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_PASSWORD); - break b; - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 184: - oncipj_Cypher_jj_consume_token($this, 184); - oncipj_Cypher_jj_consume_token($this, 123); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_HOME); - break b; - case 319: - oncipj_Cypher_jj_consume_token($this, 319); - var$4 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_STATUS); - break b; - default: - } - $this.$jj_la1.data[601] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[602] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 127); - $start = onciafn_Neo4jASTFactory_dbmsPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$4, onciafn_Neo4jASTFactory_allQualifier($this.$astFactory), $immutable); - break a; - case 200: - case 270: - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 200: - oncipj_Cypher_jj_consume_token($this, 200); - var$4 = oncipj_Cypher_labelResource($this); - oncipj_Cypher_jj_consume_token($this, 243); - var$5 = oncipj_Cypher_GraphScope($this); - $start = onciafn_Neo4jASTFactory_graphPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_LABEL_SET), var$5, var$4, ju_List_of(onciafn_Neo4jASTFactory_allLabelsQualifier($this.$astFactory, oncipj_Cypher_pos($this, $start))), $immutable); - break a; - case 270: - oncipj_Cypher_jj_consume_token($this, 270); - var$6 = oncipj_Cypher_propertyResource($this); - oncipj_Cypher_jj_consume_token($this, 243); - var$7 = oncipj_Cypher_GraphScope($this); - var$8 = oncipj_Cypher_graphQualifier($this); - $start = onciafn_Neo4jASTFactory_graphPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_PROPERTY_SET), var$7, var$6, var$8, $immutable); - break a; - default: - } - $this.$jj_la1.data[603] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[604] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - return $start; -}; -let oncipj_Cypher_writePrivilege = ($this, $start, $immutable) => { - let var$3; - oncipj_Cypher_jj_consume_token($this, 362); - oncipj_Cypher_jj_consume_token($this, 243); - var$3 = oncipj_Cypher_GraphScope($this); - return onciafn_Neo4jASTFactory_graphPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_GRAPH_WRITE), var$3, null, ju_List_of(onciafn_Neo4jASTFactory_allElementsQualifier($this.$astFactory, oncipj_Cypher_pos($this, $start))), $immutable); -}, -oncipj_Cypher_databasePrivilege = ($this, $start, $immutable) => { - let $qualifier, var$4, var$5, var$6, var$7; - $qualifier = onciafn_Neo4jASTFactory_allDatabasesQualifier($this.$astFactory); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 69: - oncipj_Cypher_jj_consume_token($this, 69); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ACCESS); - break a; - case 113: - case 114: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 113: - oncipj_Cypher_jj_consume_token($this, 113); - break b; - case 114: - oncipj_Cypher_jj_consume_token($this, 114); - break b; - default: - } - $this.$jj_la1.data[609] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$6) { - case 215: - break; - default: - $this.$jj_la1.data[610] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 215); - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_CONSTRAINT_ALL); - break a; - case 190: - case 191: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$6) { - case 190: - oncipj_Cypher_jj_consume_token($this, 190); - break d; - case 191: - oncipj_Cypher_jj_consume_token($this, 191); - break d; - default: - } - $this.$jj_la1.data[607] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$6) { - case 215: - break; - default: - $this.$jj_la1.data[608] = $this.$jj_gen; - break e; - } - oncipj_Cypher_jj_consume_token($this, 215); - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_INDEX_ALL); - break a; - case 223: - oncipj_Cypher_jj_consume_token($this, 223); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$6) { - case 215: - break; - default: - $this.$jj_la1.data[617] = $this.$jj_gen; - break f; - } - oncipj_Cypher_jj_consume_token($this, 215); - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_CREATE_TOKEN); - break a; - case 317: - oncipj_Cypher_jj_consume_token($this, 317); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_START); - break a; - case 320: - oncipj_Cypher_jj_consume_token($this, 320); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_STOP); - break a; - case 325: - oncipj_Cypher_jj_consume_token($this, 325); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$6) { - case 335: - oncipj_Cypher_jj_consume_token($this, 335); - break g; - case 336: - oncipj_Cypher_jj_consume_token($this, 336); - break g; - default: - } - $this.$jj_la1.data[614] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $qualifier = onciafn_Neo4jASTFactory_allUsersQualifier($this.$astFactory); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$6) { - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$7 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - $qualifier = onciafn_Neo4jASTFactory_userQualifier($this.$astFactory, var$7); - break i; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - break i; - default: - } - $this.$jj_la1.data[615] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 297); - break h; - default: - } - $this.$jj_la1.data[616] = $this.$jj_gen; - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_TRANSACTION_TERMINATE); - break a; - case 335: - oncipj_Cypher_jj_consume_token($this, 335); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$6) { - case 215: - break; - default: - $this.$jj_la1.data[611] = $this.$jj_gen; - break j; - } - oncipj_Cypher_jj_consume_token($this, 215); - } - $qualifier = onciafn_Neo4jASTFactory_allUsersQualifier($this.$astFactory); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$6) { - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - l: { - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$7 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - $qualifier = onciafn_Neo4jASTFactory_userQualifier($this.$astFactory, var$7); - break l; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - break l; - default: - } - $this.$jj_la1.data[612] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 297); - break k; - default: - } - $this.$jj_la1.data[613] = $this.$jj_gen; - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_TRANSACTION_ALL); - break a; - default: - } - $this.$jj_la1.data[618] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 243); - var$7 = oncipj_Cypher_DatabaseScope($this); - return onciafn_Neo4jASTFactory_databasePrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$5, var$7, $qualifier, $immutable); -}, -oncipj_Cypher_dbmsPrivilege = ($this, $start, $immutable) => { - let $qualifier, var$4, var$5, var$6, var$7; - $qualifier = onciafn_Neo4jASTFactory_allQualifier($this.$astFactory); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 73: - oncipj_Cypher_jj_consume_token($this, 73); - oncipj_Cypher_jj_consume_token($this, 215); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ALIAS_MANAGEMENT); - break a; - case 77: - oncipj_Cypher_jj_consume_token($this, 77); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 73: - oncipj_Cypher_jj_consume_token($this, 73); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ALIAS_ALTER); - break a; - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_ALTER); - break a; - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_ALTER); - break a; - default: - } - $this.$jj_la1.data[619] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 85: - oncipj_Cypher_jj_consume_token($this, 85); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_PRIVILEGE_ASSIGN); - break a; - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ROLE_ASSIGN); - break a; - default: - } - $this.$jj_la1.data[620] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 111: - oncipj_Cypher_jj_consume_token($this, 111); - oncipj_Cypher_jj_consume_token($this, 123); - oncipj_Cypher_jj_consume_token($this, 215); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_COMPOSITE_MANAGEMENT); - break a; - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - oncipj_Cypher_jj_consume_token($this, 215); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_DATABASE_MANAGEMENT); - break a; - case 160: - oncipj_Cypher_jj_consume_token($this, 160); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 71: - case 72: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 71: - oncipj_Cypher_jj_consume_token($this, 71); - break b; - case 72: - oncipj_Cypher_jj_consume_token($this, 72); - break b; - default: - } - $this.$jj_la1.data[621] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 268); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_EXECUTE_ADMIN_PROCEDURE); - break a; - case 92: - oncipj_Cypher_jj_consume_token($this, 92); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 174: - case 175: - case 349: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$6) { - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 130: - break; - default: - $this.$jj_la1.data[623] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 130); - break c; - default: - } - $this.$jj_la1.data[624] = $this.$jj_gen; - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$6) { - case 174: - oncipj_Cypher_jj_consume_token($this, 174); - break d; - case 175: - oncipj_Cypher_jj_consume_token($this, 175); - break d; - default: - } - $this.$jj_la1.data[625] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $qualifier = oncipj_Cypher_executeFunctionQualifier($this, $start); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_EXECUTE_BOOSTED_FUNCTION); - break a; - case 267: - case 268: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$6) { - case 267: - oncipj_Cypher_jj_consume_token($this, 267); - break e; - case 268: - oncipj_Cypher_jj_consume_token($this, 268); - break e; - default: - } - $this.$jj_la1.data[622] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $qualifier = oncipj_Cypher_executeProcedureQualifier($this, $start); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_EXECUTE_BOOSTED_PROCEDURE); - break a; - default: - } - $this.$jj_la1.data[626] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 174: - case 175: - case 349: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$4) { - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 130: - break; - default: - $this.$jj_la1.data[628] = $this.$jj_gen; - break f; - } - oncipj_Cypher_jj_consume_token($this, 130); - break f; - default: - } - $this.$jj_la1.data[629] = $this.$jj_gen; - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$6) { - case 174: - oncipj_Cypher_jj_consume_token($this, 174); - break g; - case 175: - oncipj_Cypher_jj_consume_token($this, 175); - break g; - default: - } - $this.$jj_la1.data[630] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $qualifier = oncipj_Cypher_executeFunctionQualifier($this, $start); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_EXECUTE_FUNCTION); - break a; - case 267: - case 268: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$6) { - case 267: - oncipj_Cypher_jj_consume_token($this, 267); - break h; - case 268: - oncipj_Cypher_jj_consume_token($this, 268); - break h; - default: - } - $this.$jj_la1.data[627] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - $qualifier = oncipj_Cypher_executeProcedureQualifier($this, $start); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_EXECUTE_PROCEDURE); - break a; - default: - } - $this.$jj_la1.data[631] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 187: - oncipj_Cypher_jj_consume_token($this, 187); - $qualifier = onciafn_Neo4jASTFactory_allUsersQualifier($this.$astFactory); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$6) { - case 213: - oncipj_Cypher_jj_consume_token($this, 213); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$7 = oncipj_Cypher_SymbolicNameOrStringParameterList($this); - $qualifier = onciafn_Neo4jASTFactory_userQualifier($this.$astFactory, var$7); - break j; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - break j; - default: - } - $this.$jj_la1.data[633] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 297); - break i; - default: - } - $this.$jj_la1.data[634] = $this.$jj_gen; - } - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_IMPERSONATE); - break a; - case 265: - oncipj_Cypher_jj_consume_token($this, 265); - oncipj_Cypher_jj_consume_token($this, 215); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_PRIVILEGE_ALL); - break a; - case 280: - oncipj_Cypher_jj_consume_token($this, 280); - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 293: - oncipj_Cypher_jj_consume_token($this, 293); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_ROLE_RENAME); - break a; - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_RENAME); - break a; - default: - } - $this.$jj_la1.data[632] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 306: - oncipj_Cypher_jj_consume_token($this, 306); - oncipj_Cypher_jj_consume_token($this, 215); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_SERVER_MANAGEMENT); - break a; - case 349: - oncipj_Cypher_jj_consume_token($this, 349); - oncipj_Cypher_jj_consume_token($this, 215); - var$5 = onciafn_Neo4jASTFactory_privilegeAction($this.$astFactory, oncipcaf_ActionType_USER_ALL); - break a; - default: - } - $this.$jj_la1.data[635] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 243); - oncipj_Cypher_jj_consume_token($this, 127); - return onciafn_Neo4jASTFactory_dbmsPrivilege($this.$astFactory, oncipj_Cypher_pos($this, $start), var$5, $qualifier, $immutable); -}, -oncipj_Cypher_executeFunctionQualifier = ($this, $start) => { - let var$2, var$3, var$4; - $start = oncipj_Cypher_pos($this, $start); - var$2 = oncipj_Cypher_globs($this); - var$3 = ju_ArrayList__init_(); - var$4 = new onciafn_Neo4jASTFactory$functionQualifier$lambda$_220_0; - var$4.$_0928 = var$3; - var$4.$_1326 = $start; - ju_ArrayList_forEach(var$2, var$4); - return var$3; -}, -oncipj_Cypher_executeProcedureQualifier = ($this, $start) => { - let var$2, var$3, var$4; - $start = oncipj_Cypher_pos($this, $start); - var$2 = oncipj_Cypher_globs($this); - var$3 = ju_ArrayList__init_(); - var$4 = new onciafn_Neo4jASTFactory$procedureQualifier$lambda$_221_0; - var$4.$_0666 = var$3; - var$4.$_1233 = $start; - ju_ArrayList_forEach(var$2, var$4); - return var$3; -}, -oncipj_Cypher_globs = $this => { - let $executableList, var$2; - $executableList = ju_ArrayList__init_(); - ju_ArrayList_add($executableList, oncipj_Cypher_Glob($this)); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 107: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($executableList, oncipj_Cypher_Glob($this)); - } - $this.$jj_la1.data[636] = $this.$jj_gen; - return $executableList; -}, -oncipj_Cypher_labelResource = $this => { - let var$1, var$2, var$3; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$2 = oncipj_Cypher_SymbolicNameList1($this); - var$3 = oncipj_Cypher_pos($this, $this.$token); - return oncia_LabelsResource__init_0(sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$2))), var$3); - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break a; - case 329: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 329); - return oncia_AllLabelResource__init_0(oncipj_Cypher_pos($this, $this.$token)); - } - $this.$jj_la1.data[640] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$2 = new oncipj_ParseException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); -}, -oncipj_Cypher_propertyResource = $this => { - let var$1, var$2, var$3, var$4; - oncipj_Cypher_jj_consume_token($this, 205); - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$2 = oncipj_Cypher_SymbolicNameList1($this); - var$3 = oncipj_Cypher_pos($this, $this.$token); - var$4 = oncia_PropertiesResource__init_0(sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$2))), var$3); - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - var$4 = oncia_AllPropertyResource__init_0(oncipj_Cypher_pos($this, $this.$token)); - break a; - default: - } - $this.$jj_la1.data[641] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$2 = new oncipj_ParseException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - oncipj_Cypher_jj_consume_token($this, 276); - return var$4; -}, -oncipj_Cypher_graphQualifier = $this => { - let $qualifier, $v, $labels, var$4, var$5, var$6, $labelQualifiers, $label; - $qualifier = ju_ArrayList__init_(); - $v = null; - $labels = null; - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 152: - case 153: - case 170: - case 231: - case 233: - case 283: - case 284: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 152: - case 153: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$4) { - case 152: - oncipj_Cypher_jj_consume_token($this, 152); - break b; - case 153: - oncipj_Cypher_jj_consume_token($this, 153); - break b; - default: - } - $this.$jj_la1.data[648] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $v = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_elementQualifier($this.$astFactory, oncipj_Cypher_pos($this, $v), $v.$image)); - c: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 107: - break; - default: - break c; - } - oncipj_Cypher_jj_consume_token($this, 107); - $v = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_elementQualifier($this.$astFactory, oncipj_Cypher_pos($this, $v), $v.$image)); - } - $this.$jj_la1.data[649] = $this.$jj_gen; - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_allElementsQualifier($this.$astFactory, oncipj_Cypher_pos($this, $this.$token))); - break a; - default: - } - $this.$jj_la1.data[650] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 170: - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 213); - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - d: { - e: { - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break e; - default: - break e; - } - $v = oncipj_Cypher_Variable($this); - break d; - } - $this.$jj_la1.data[651] = $this.$jj_gen; - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$4) { - case 105: - break; - default: - $this.$jj_la1.data[652] = $this.$jj_gen; - break f; - } - $labels = oncipj_Cypher_LabelOrRelTypes($this); - } - g: { - if (oncipj_Cypher_jj_2_177($this, 2147483647)) { - oncipj_Cypher_jj_consume_token($this, 297); - oncipj_Cypher_jj_consume_token($this, 359); - var$6 = oncipj_Cypher_Expression($this); - } else if (oncipj_Cypher_jj_2_178($this, 2147483647)) { - oncipj_Cypher_jj_consume_token($this, 359); - var$6 = oncipj_Cypher_Expression($this); - oncipj_Cypher_jj_consume_token($this, 297); - } else { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 205: - var$6 = oncipj_Cypher_MapLiteral($this); - oncipj_Cypher_jj_consume_token($this, 297); - break g; - default: - } - $this.$jj_la1.data[653] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - } - h: { - $labelQualifiers = ju_ArrayList__init_(); - if ($labels === null) - ju_ArrayList_add($labelQualifiers, onciafn_Neo4jASTFactory_allLabelsQualifier($this.$astFactory, oncipj_Cypher_pos($this, $this.$token))); - else { - $labels = ju_AbstractList_iterator($labels); - while (true) { - if (!ju_AbstractList$1_hasNext($labels)) - break h; - $label = ju_AbstractList$1_next($labels); - ju_ArrayList_add($labelQualifiers, onciafn_Neo4jASTFactory_labelQualifier($this.$astFactory, $label.$pos3, $label.$string)); - } - } - } - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_patternQualifier($this.$astFactory, $labelQualifiers, $v, var$6)); - break a; - case 231: - case 233: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$4) { - case 231: - oncipj_Cypher_jj_consume_token($this, 231); - break i; - case 233: - oncipj_Cypher_jj_consume_token($this, 233); - break i; - default: - } - $this.$jj_la1.data[645] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $v = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_labelQualifier($this.$astFactory, oncipj_Cypher_pos($this, $v), $v.$image)); - j: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 107: - break; - default: - break j; - } - oncipj_Cypher_jj_consume_token($this, 107); - $v = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_labelQualifier($this.$astFactory, oncipj_Cypher_pos($this, $v), $v.$image)); - } - $this.$jj_la1.data[646] = $this.$jj_gen; - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_allLabelsQualifier($this.$astFactory, oncipj_Cypher_pos($this, $this.$token))); - break a; - default: - } - $this.$jj_la1.data[647] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - case 283: - case 284: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - k: { - switch (var$4) { - case 283: - oncipj_Cypher_jj_consume_token($this, 283); - break k; - case 284: - oncipj_Cypher_jj_consume_token($this, 284); - break k; - default: - } - $this.$jj_la1.data[642] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $v = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_relationshipQualifier($this.$astFactory, oncipj_Cypher_pos($this, $v), $v.$image)); - l: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 107: - break; - default: - break l; - } - oncipj_Cypher_jj_consume_token($this, 107); - $v = oncipj_Cypher_SymbolicNameString($this); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_relationshipQualifier($this.$astFactory, oncipj_Cypher_pos($this, $v), $v.$image)); - } - $this.$jj_la1.data[643] = $this.$jj_gen; - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_allRelationshipsQualifier($this.$astFactory, oncipj_Cypher_pos($this, $this.$token))); - break a; - default: - } - $this.$jj_la1.data[644] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[654] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[655] = $this.$jj_gen; - } - if (ju_AbstractCollection_isEmpty($qualifier)) - ju_ArrayList_add($qualifier, onciafn_Neo4jASTFactory_allElementsQualifier($this.$astFactory, oncipj_Cypher_pos($this, $this.$token))); - return $qualifier; -}, -oncipj_Cypher_CreateDatabase = ($this, $start, $replace) => { - let $ifNotExists, $wait, $options, $primaries, $secondaries, var$8, var$9, var$10, var$11, $topologyMultiplePrimaryError, $topologyMultipleSecondaryError, var$14; - $ifNotExists = 0; - $wait = onciafn_Neo4jASTFactory_wait($this.$astFactory, 0, Long_fromInt(-1)); - $options = null; - $primaries = null; - $secondaries = null; - oncipj_Cypher_jj_consume_token($this, 123); - var$8 = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$9) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - break a; - default: - } - $this.$jj_la1.data[656] = $this.$jj_gen; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$9) { - case 333: - oncipj_Cypher_jj_consume_token($this, 333); - c: while (true) { - var$10 = oncipj_Cypher_jj_consume_token($this, 36); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$9) { - case 263: - case 264: - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$9) { - case 263: - break; - case 264: - var$11 = oncipj_Cypher_jj_consume_token($this, 264); - break e; - default: - break c; - } - var$11 = oncipj_Cypher_jj_consume_token($this, 263); - } - oncipj_Cypher_assertNotAlreadySet($this, $primaries, var$11, $rt_s(4405)); - $primaries = var$10; - var$10 = $secondaries; - break d; - case 301: - case 302: - break; - default: - $this.$jj_la1.data[659] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$9) { - case 301: - break; - case 302: - var$11 = oncipj_Cypher_jj_consume_token($this, 302); - break f; - default: - $this.$jj_la1.data[658] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$11 = oncipj_Cypher_jj_consume_token($this, 301); - } - oncipj_Cypher_assertNotAlreadySet($this, $secondaries, var$11, $rt_s(4406)); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 36: - break; - default: - $this.$jj_la1.data[660] = $this.$jj_gen; - $secondaries = var$10; - break b; - } - $secondaries = var$10; - } - $this.$jj_la1.data[657] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[661] = $this.$jj_gen; - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$9) { - case 246: - break; - default: - $this.$jj_la1.data[662] = $this.$jj_gen; - break g; - } - $options = oncipj_Cypher_Options($this); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$9) { - case 239: - case 357: - break; - default: - $this.$jj_la1.data[663] = $this.$jj_gen; - break h; - } - $wait = oncipj_Cypher_WaitClause($this); - } - $topologyMultiplePrimaryError = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - $topologyMultipleSecondaryError = $this.$astFactory; - var$10 = var$8.$parameter4; - if (var$10 !== null) - $topologyMultipleSecondaryError = onciafn_Neo4jASTFactory_databaseName0($topologyMultipleSecondaryError, var$10); - else { - if (var$8.$componentCount > 1) { - var$10 = ju_Collection_stream(var$8.$names0); - var$11 = new oncipj_AliasName$getAsDatabaseName$lambda$_4_0; - var$11.$_01123 = var$8; - if (ju_Optional_isPresent(jusi_SimpleStreamImpl_findFirst(jusi_SimpleStreamImpl_filter(var$10, var$11)))) { - $start = var$8.$exceptionFactory4; - $topologyMultiplePrimaryError = new oncipj_ParseException; - $topologyMultipleSecondaryError = oncipj_AliasName_originalRepresentation(var$8); - var$14 = $rt_createArray(jl_Object, 1); - var$14.data[0] = $topologyMultipleSecondaryError; - jl_Throwable__init_0($topologyMultiplePrimaryError, jl_String_format($rt_s(4407), var$14)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($start, $topologyMultiplePrimaryError, (ju_ArrayList_get(var$8.$names0, 0)).$beginOffset, (ju_ArrayList_get(var$8.$names0, 0)).$beginLine, (ju_ArrayList_get(var$8.$names0, 0)).$beginColumn)); - } - } - $topologyMultipleSecondaryError = onciafn_Neo4jASTFactory_databaseName($topologyMultipleSecondaryError, onciafn_Neo4jASTFactory_inputPosition($topologyMultipleSecondaryError, (ju_ArrayList_get(var$8.$names0, 0)).$beginOffset, (ju_ArrayList_get(var$8.$names0, 0)).$beginLine, (ju_ArrayList_get(var$8.$names0, 0)).$beginColumn), oncipj_AliasName_tokensAsStrings(var$8)); - } - var$10 = $primaries === null ? null : jl_Integer_valueOf(jl_Integer_parseInt($primaries.$image)); - $primaries = $secondaries === null ? null : jl_Integer_valueOf(jl_Integer_parseInt($secondaries.$image)); - s_Option$_$callClinit(); - var$10 = s_Option_map(s_Option$_apply(s_Option$_MODULE$, var$10), new onciafn_Neo4jASTFactory$createDatabase$lambda$_232_0); - $primaries = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $primaries), new onciafn_Neo4jASTFactory$createDatabase$lambda$_232_1); - return oncia_CreateDatabase__init_0($topologyMultipleSecondaryError, onciafn_Neo4jASTFactory_ifExistsDo($topologyMultiplePrimaryError, $replace, $ifNotExists), onciafn_Neo4jASTFactory_asOptionsAst($topologyMultiplePrimaryError, $options), $wait, !s_Option_isDefined(var$10) && !s_Option_isDefined($primaries) ? s_None$_MODULE$ : s_Some__init_(oncia_Topology__init_(var$10, $primaries)), $start); -}, -oncipj_Cypher_Options = $this => { - oncipj_Cypher_jj_consume_token($this, 246); - return oncipj_Cypher_MapOrParameter($this); -}, -oncipj_Cypher_DropDatabase = ($this, $start) => { - let $ifExists, $wait, $dumpData, $composite, $aliasAction, var$7, var$8, var$9; - $ifExists = 0; - $wait = onciafn_Neo4jASTFactory_wait($this.$astFactory, 0, Long_fromInt(-1)); - $dumpData = 0; - $composite = 0; - $aliasAction = 0; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$7) { - case 111: - break; - default: - $this.$jj_la1.data[667] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 111); - $composite = 1; - } - oncipj_Cypher_jj_consume_token($this, 123); - var$8 = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$7) { - case 186: - break; - default: - $this.$jj_la1.data[668] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - $ifExists = 1; - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$7) { - case 100: - case 290: - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - switch (var$7) { - case 100: - oncipj_Cypher_jj_consume_token($this, 100); - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - d: { - switch (var$7) { - case 73: - oncipj_Cypher_jj_consume_token($this, 73); - break d; - case 74: - oncipj_Cypher_jj_consume_token($this, 74); - break d; - default: - } - $this.$jj_la1.data[669] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $aliasAction = 1; - break c; - case 290: - oncipj_Cypher_jj_consume_token($this, 290); - break c; - default: - } - $this.$jj_la1.data[670] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[671] = $this.$jj_gen; - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$7) { - case 135: - case 147: - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$7) { - case 135: - oncipj_Cypher_jj_consume_token($this, 135); - break f; - case 147: - oncipj_Cypher_jj_consume_token($this, 147); - $dumpData = 1; - break f; - default: - } - $this.$jj_la1.data[672] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - oncipj_Cypher_jj_consume_token($this, 122); - break e; - default: - } - $this.$jj_la1.data[673] = $this.$jj_gen; - } - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$7) { - case 239: - case 357: - break; - default: - $this.$jj_la1.data[674] = $this.$jj_gen; - break g; - } - $wait = oncipj_Cypher_WaitClause($this); - } - $start = oncipj_Cypher_pos($this, $start); - var$9 = oncipj_AliasName_getLocalAliasName(var$8, $this.$astFactory); - var$8 = !$dumpData ? oncia_DestroyData$_MODULE$ : oncia_DumpData$_MODULE$; - return oncia_DropDatabase__init_(var$9, $ifExists, $composite, !$aliasAction ? oncia_Restrict$_MODULE$ : oncia_CascadeAliases$_MODULE$, var$8, $wait, $start); -}, -oncipj_Cypher_AlterDatabase = ($this, $start) => { - let $ifExists, $accessType, $primaries, $secondaries, $count, $options, $optionsToRemove, $wait, var$10, var$11, var$12, var$13, $entryOrNull, var$15, $topologyMultiplePrimaryError, var$17, var$18; - $ifExists = 0; - $accessType = null; - $primaries = null; - $secondaries = null; - $count = null; - $options = null; - $optionsToRemove = ju_LinkedHashSet__init_0(); - $wait = onciafn_Neo4jASTFactory_wait($this.$astFactory, 0, Long_fromInt(-1)); - oncipj_Cypher_jj_consume_token($this, 123); - var$10 = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$11) { - case 186: - break; - default: - $this.$jj_la1.data[675] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - $ifExists = 1; - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$11) { - case 285: - c: while (true) { - var$12 = oncipj_Cypher_jj_consume_token($this, 285); - oncipj_Cypher_jj_consume_token($this, 247); - var$13 = oncipj_Cypher_SymbolicNameString($this); - $entryOrNull = !ju_HashSet_contains($optionsToRemove, var$13.$image) ? null : var$13.$image; - var$15 = var$13.$image; - $topologyMultiplePrimaryError = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($topologyMultiplePrimaryError, $rt_s(4408)), var$15), $rt_s(4409)); - oncipj_Cypher_assertNotAlreadySet($this, $entryOrNull, var$12, jl_StringBuilder_toString($topologyMultiplePrimaryError)); - ju_HashSet_add($optionsToRemove, var$13.$image); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 285: - break; - default: - break c; - } - } - $this.$jj_la1.data[683] = $this.$jj_gen; - break b; - case 308: - d: while (true) { - var$17 = oncipj_Cypher_jj_consume_token($this, 308); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - e: { - switch (var$11) { - case 69: - oncipj_Cypher_jj_consume_token($this, 69); - oncipj_Cypher_assertNotAlreadySet($this, $accessType, var$17, $rt_s(4410)); - oncipj_Cypher_jj_consume_token($this, 277); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 244: - break; - case 362: - oncipj_Cypher_jj_consume_token($this, 362); - oncipcaf_AccessType_$callClinit(); - $accessType = oncipcaf_AccessType_READ_WRITE; - break e; - default: - break d; - } - oncipj_Cypher_jj_consume_token($this, 244); - oncipcaf_AccessType_$callClinit(); - $accessType = oncipcaf_AccessType_READ_ONLY; - break e; - case 247: - break; - case 333: - oncipj_Cypher_jj_consume_token($this, 333); - oncipj_Cypher_assertNotAlreadySet($this, $count, var$17, $rt_s(4411)); - f: while (true) { - $count = oncipj_Cypher_jj_consume_token($this, 36); - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$11) { - case 263: - case 264: - break; - case 301: - case 302: - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - h: { - switch (var$11) { - case 301: - break; - case 302: - var$13 = oncipj_Cypher_jj_consume_token($this, 302); - break h; - default: - $this.$jj_la1.data[678] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$13 = oncipj_Cypher_jj_consume_token($this, 301); - } - oncipj_Cypher_assertNotAlreadySet($this, $secondaries, var$13, $rt_s(4406)); - $secondaries = $count; - break g; - default: - $this.$jj_la1.data[679] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - i: { - switch (var$11) { - case 263: - break; - case 264: - var$13 = oncipj_Cypher_jj_consume_token($this, 264); - break i; - default: - $this.$jj_la1.data[677] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$13 = oncipj_Cypher_jj_consume_token($this, 263); - } - oncipj_Cypher_assertNotAlreadySet($this, $primaries, var$13, $rt_s(4405)); - $primaries = $count; - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 36: - break; - default: - break f; - } - } - $this.$jj_la1.data[680] = $this.$jj_gen; - break e; - default: - $this.$jj_la1.data[681] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - oncipj_Cypher_jj_consume_token($this, 247); - var$13 = oncipj_Cypher_SymbolicNameString($this); - $entryOrNull = oncipj_Cypher_Expression($this); - if ($options === null) - $options = ju_LinkedHashMap__init_(); - var$15 = ju_LinkedHashMap_getOrDefault($options, var$13.$image, null); - var$12 = var$13.$image; - var$18 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$18, $rt_s(4412)), var$12), $rt_s(4409)); - oncipj_Cypher_assertNotAlreadySet($this, var$15, var$17, jl_StringBuilder_toString(var$18)); - ju_LinkedHashMap_put($options, var$13.$image, $entryOrNull); - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - switch (var$11) { - case 308: - break; - default: - $this.$jj_la1.data[682] = $this.$jj_gen; - break b; - } - } - $this.$jj_la1.data[676] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - default: - } - $this.$jj_la1.data[684] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - var$11 = $this.$jj_ntk; - if (var$11 == (-1)) - var$11 = oncipj_Cypher_jj_ntk_f($this); - j: { - switch (var$11) { - case 239: - case 357: - break; - default: - $this.$jj_la1.data[685] = $this.$jj_gen; - break j; - } - $wait = oncipj_Cypher_WaitClause($this); - } - return onciafn_Neo4jASTFactory_alterDatabase($this.$astFactory, oncipj_Cypher_pos($this, $start), oncipj_AliasName_getLocalAliasName(var$10, $this.$astFactory), $ifExists, $accessType, $primaries === null ? null : jl_Integer_valueOf(jl_Integer_parseInt($primaries.$image)), $secondaries === null ? null : jl_Integer_valueOf(jl_Integer_parseInt($secondaries.$image)), $options, $optionsToRemove, $wait); -}, -oncipj_Cypher_StartDatabase = $this => { - let $wait, $start, $databaseName, var$4; - $wait = onciafn_Neo4jASTFactory_wait($this.$astFactory, 0, Long_fromInt(-1)); - $start = oncipj_Cypher_jj_consume_token($this, 317); - oncipj_Cypher_jj_consume_token($this, 123); - $databaseName = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 239: - case 357: - break; - default: - $this.$jj_la1.data[686] = $this.$jj_gen; - break a; - } - $wait = oncipj_Cypher_WaitClause($this); - } - $start = oncipj_Cypher_pos($this, $start); - return oncia_StartDatabase__init_0(oncipj_AliasName_getLocalAliasName($databaseName, $this.$astFactory), $wait, $start); -}, -oncipj_Cypher_StopDatabase = $this => { - let $wait, $start, $databaseName, var$4; - $wait = onciafn_Neo4jASTFactory_wait($this.$astFactory, 0, Long_fromInt(-1)); - $start = oncipj_Cypher_jj_consume_token($this, 320); - oncipj_Cypher_jj_consume_token($this, 123); - $databaseName = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 239: - case 357: - break; - default: - $this.$jj_la1.data[687] = $this.$jj_gen; - break a; - } - $wait = oncipj_Cypher_WaitClause($this); - } - $start = oncipj_Cypher_pos($this, $start); - return oncia_StopDatabase__init_0(oncipj_AliasName_getLocalAliasName($databaseName, $this.$astFactory), $wait, $start); -}, -oncipj_Cypher_WaitClause = $this => { - let $number, $wait, var$3, var$4; - $number = null; - $wait = 0; - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 239: - oncipj_Cypher_jj_consume_token($this, 239); - break a; - case 357: - oncipj_Cypher_jj_consume_token($this, 357); - $wait = 1; - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 36: - $number = oncipj_Cypher_jj_consume_token($this, 36); - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 299: - case 300: - case 303: - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 299: - oncipj_Cypher_jj_consume_token($this, 299); - break a; - case 300: - oncipj_Cypher_jj_consume_token($this, 300); - break a; - case 301: - case 302: - break; - case 303: - oncipj_Cypher_jj_consume_token($this, 303); - break a; - default: - } - $this.$jj_la1.data[688] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $number = new oncipj_ParseException; - jl_Throwable__init_($number); - $rt_throw($number); - case 301: - case 302: - break; - default: - } - $this.$jj_la1.data[689] = $this.$jj_gen; - break a; - default: - } - $this.$jj_la1.data[690] = $this.$jj_gen; - break a; - default: - } - $this.$jj_la1.data[691] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $number = new oncipj_ParseException; - jl_Throwable__init_($number); - $rt_throw($number); - } - if ($number === null) - return onciafn_Neo4jASTFactory_wait($this.$astFactory, $wait, Long_fromInt(-1)); - return onciafn_Neo4jASTFactory_wait($this.$astFactory, $wait, jl_Long_parseLong($number.$image)); -}, -oncipj_Cypher_ShowDatabase = ($this, $start, $useClause) => { - let $name, $isDefault, $isHome, $yield, $returnClause, $where, var$9, var$10, var$11, var$12, $scope, var$14, var$15; - $name = null; - $isDefault = 0; - $isHome = 0; - $yield = null; - $returnClause = null; - $where = null; - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$9) { - case 123: - case 124: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$10) { - case 123: - var$11 = oncipj_Cypher_jj_consume_token($this, 123); - break b; - case 124: - var$11 = oncipj_Cypher_jj_consume_token($this, 124); - break b; - default: - } - $this.$jj_la1.data[692] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - if (!oncipj_Cypher_jj_2_179($this, 2147483647)) { - if (!oncipj_Cypher_jj_2_180($this, 2147483647)) { - if (oncipj_Cypher_jj_2_181($this, 2147483647)) { - $where = oncipj_Cypher_WhereClause($this); - break a; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $name = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - break a; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[696] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $yield = oncipj_Cypher_YieldClause($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 291: - break; - default: - $this.$jj_la1.data[695] = $this.$jj_gen; - break a; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break a; - } - $name = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break a; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 291: - break; - default: - $this.$jj_la1.data[693] = $this.$jj_gen; - break a; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break a; - default: - } - $this.$jj_la1.data[694] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[697] = $this.$jj_gen; - break a; - case 129: - case 184: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$10) { - case 129: - var$11 = oncipj_Cypher_jj_consume_token($this, 129); - oncipj_Cypher_jj_consume_token($this, 123); - $isDefault = 1; - break c; - case 184: - var$11 = oncipj_Cypher_jj_consume_token($this, 184); - oncipj_Cypher_jj_consume_token($this, 123); - $isHome = 1; - break c; - default: - } - $this.$jj_la1.data[698] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 359: - case 364: - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break a; - case 364: - $yield = oncipj_Cypher_YieldClause($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 291: - break; - default: - $this.$jj_la1.data[699] = $this.$jj_gen; - break a; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break a; - default: - } - $this.$jj_la1.data[700] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[701] = $this.$jj_gen; - break a; - default: - } - $this.$jj_la1.data[702] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$11 = oncipj_Cypher_pos($this, var$11); - var$12 = $name === null ? null : oncipj_AliasName_getLocalAliasName($name, $this.$astFactory); - $scope = var$12 !== null ? oncia_SingleNamedDatabaseScope__init_0(var$12, var$11) : $isDefault ? oncia_DefaultDatabaseScope__init_0(var$11) : !$isHome ? oncia_AllDatabasesScope__init_0(var$11) : oncia_HomeDatabaseScope__init_0(var$11); - var$14 = $this.$astFactory; - var$15 = oncipj_Cypher_pos($this, $start); - if ($yield === null) { - $start = oncia_ShowDatabase$_MODULE$; - s_Option$_$callClinit(); - $start = oncia_ShowDatabase$_apply($start, $scope, s_Option_map(s_Option$_apply(s_Option$_MODULE$, $where), new onciafn_Neo4jASTFactory$showDatabase$lambda$_236_0), var$15); - } else { - var$11 = oncia_ShowDatabase$_MODULE$; - var$12 = new s_Some; - s_package$_$callClinit(); - $name = s_package$_Left(s_package$_MODULE$); - $start = new s_Tuple2; - s_Option$_$callClinit(); - s_Tuple2__init_0($start, $yield, s_Option$_apply(s_Option$_MODULE$, $returnClause)); - s_Some__init_0(var$12, su_Left$_apply($name, $start)); - $start = oncia_ShowDatabase$_apply(var$11, $scope, var$12, var$15); - } - return onciafn_Neo4jASTFactory_useGraph(var$14, $start, $useClause); -}, -oncipj_Cypher_DatabaseScope = $this => { - let $names, $type, $usingDefault, var$4, var$5, var$6; - $names = null; - $type = oncipcaf_ScopeType_NAMED; - $usingDefault = 0; - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 123: - case 124: - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$5) { - case 123: - var$6 = oncipj_Cypher_jj_consume_token($this, 123); - break b; - case 124: - var$6 = oncipj_Cypher_jj_consume_token($this, 124); - break b; - default: - } - $this.$jj_la1.data[703] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $names = new oncipj_ParseException; - jl_Throwable__init_($names); - $rt_throw($names); - } - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $names = oncipj_Cypher_SymbolicAliasNameList($this); - break a; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - $type = oncipcaf_ScopeType_ALL; - break a; - default: - } - $this.$jj_la1.data[704] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $names = new oncipj_ParseException; - jl_Throwable__init_($names); - $rt_throw($names); - case 129: - var$6 = oncipj_Cypher_jj_consume_token($this, 129); - oncipj_Cypher_jj_consume_token($this, 123); - $usingDefault = 1; - break a; - case 184: - var$6 = oncipj_Cypher_jj_consume_token($this, 184); - oncipj_Cypher_jj_consume_token($this, 123); - $type = oncipcaf_ScopeType_HOME; - break a; - default: - } - $this.$jj_la1.data[705] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $names = new oncipj_ParseException; - jl_Throwable__init_($names); - $rt_throw($names); - } - if (!$usingDefault) - return onciafn_Neo4jASTFactory_databasePrivilegeScope($this.$astFactory, oncipj_Cypher_pos($this, var$6), $names, $type); - $names = $this.$exceptionFactory1; - $type = new oncipj_ParseException; - jl_Throwable__init_0($type, oncipcaf_ASTExceptionFactory_invalidDefaultScope($rt_s(4404))); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($names, $type, var$6.$beginOffset, var$6.$beginLine, var$6.$beginColumn)); -}, -oncipj_Cypher_GraphScope = $this => { - let $names, $type, $usingDefault, var$4, var$5, var$6; - $names = null; - $type = oncipcaf_ScopeType_NAMED; - $usingDefault = 0; - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$4) { - case 129: - var$5 = oncipj_Cypher_jj_consume_token($this, 129); - oncipj_Cypher_jj_consume_token($this, 178); - $usingDefault = 1; - break a; - case 178: - case 179: - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$6) { - case 178: - var$5 = oncipj_Cypher_jj_consume_token($this, 178); - break b; - case 179: - var$5 = oncipj_Cypher_jj_consume_token($this, 179); - break b; - default: - } - $this.$jj_la1.data[706] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $names = new oncipj_ParseException; - jl_Throwable__init_($names); - $rt_throw($names); - } - var$6 = $this.$jj_ntk; - if (var$6 == (-1)) - var$6 = oncipj_Cypher_jj_ntk_f($this); - switch (var$6) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $names = oncipj_Cypher_SymbolicAliasNameList($this); - break a; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - break; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - $type = oncipcaf_ScopeType_ALL; - break a; - default: - } - $this.$jj_la1.data[707] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $names = new oncipj_ParseException; - jl_Throwable__init_($names); - $rt_throw($names); - case 184: - var$5 = oncipj_Cypher_jj_consume_token($this, 184); - oncipj_Cypher_jj_consume_token($this, 178); - $type = oncipcaf_ScopeType_HOME; - break a; - default: - } - $this.$jj_la1.data[708] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $names = new oncipj_ParseException; - jl_Throwable__init_($names); - $rt_throw($names); - } - if (!$usingDefault) - return onciafn_Neo4jASTFactory_graphScope($this.$astFactory, oncipj_Cypher_pos($this, var$5), $names, $type); - $names = $this.$exceptionFactory1; - $type = new oncipj_ParseException; - jl_Throwable__init_0($type, oncipcaf_ASTExceptionFactory_invalidDefaultScope($rt_s(761))); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($names, $type, var$5.$beginOffset, var$5.$beginLine, var$5.$beginColumn)); -}, -oncipj_Cypher_CreateAlias = ($this, $start, $replace) => { - let $ifNotExists, $url, $username, $password, $driverSettings, $properties, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17; - $ifNotExists = 0; - $url = null; - $username = null; - $password = null; - $driverSettings = null; - $properties = null; - oncipj_Cypher_jj_consume_token($this, 73); - var$9 = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$10) { - case 186: - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 237); - oncipj_Cypher_jj_consume_token($this, 163); - $ifNotExists = 1; - break a; - default: - } - $this.$jj_la1.data[709] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 170); - oncipj_Cypher_jj_consume_token($this, 123); - var$11 = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - b: { - switch (var$10) { - case 86: - oncipj_Cypher_jj_consume_token($this, 86); - $url = oncipj_Cypher_StringOrParameter($this); - oncipj_Cypher_jj_consume_token($this, 349); - $username = oncipj_Cypher_SymbolicNameOrStringParameter($this); - oncipj_Cypher_jj_consume_token($this, 251); - $password = oncipj_Cypher_passwordExpression($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 144: - break; - default: - $this.$jj_la1.data[710] = $this.$jj_gen; - break b; - } - oncipj_Cypher_jj_consume_token($this, 144); - $driverSettings = oncipj_Cypher_MapOrParameter($this); - break b; - default: - } - $this.$jj_la1.data[711] = $this.$jj_gen; - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$10) { - case 269: - break; - default: - $this.$jj_la1.data[712] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 269); - $properties = oncipj_Cypher_MapOrParameter($this); - } - if ($url === null) { - $url = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - $username = oncipj_AliasName_getLocalAliasName(var$9, $this.$astFactory); - $password = oncipj_AliasName_getLocalAliasName(var$11, $this.$astFactory); - var$11 = new oncia_CreateLocalDatabaseAlias; - var$12 = onciafn_Neo4jASTFactory_ifExistsDo($url, $replace, $ifNotExists); - s_Option$_$callClinit(); - $driverSettings = s_Option$_apply(s_Option$_MODULE$, $properties); - $properties = new onciafn_Neo4jASTFactory$createLocalDatabaseAlias$lambda$_243_0; - $properties.$_0391 = $url; - oncia_CreateLocalDatabaseAlias__init_(var$11, $username, $password, var$12, s_Option_map($driverSettings, $properties), $start); - return var$11; - } - var$12 = $this.$astFactory; - var$13 = oncipj_Cypher_pos($this, $start); - var$9 = oncipj_AliasName_getRemoteAliasName(var$9, $this.$astFactory); - var$14 = oncipj_AliasName_getLocalAliasName(var$11, $this.$astFactory); - var$15 = new oncia_CreateRemoteDatabaseAlias; - var$16 = onciafn_Neo4jASTFactory_ifExistsDo(var$12, $replace, $ifNotExists); - onciafn_TupleConverter$_$callClinit(); - var$17 = onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, $url)); - $start = onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$12, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, $username))); - s_Option$_$callClinit(); - $url = s_Option$_apply(s_Option$_MODULE$, $driverSettings); - $username = new onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_0; - $username.$_0460 = var$12; - $url = s_Option_map($url, $username); - $username = s_Option$_apply(s_Option$_MODULE$, $properties); - var$11 = new onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_1; - var$11.$_01136 = var$12; - oncia_CreateRemoteDatabaseAlias__init_(var$15, var$9, var$14, var$16, var$17, $start, $password, $url, s_Option_map($username, var$11), var$13); - return var$15; -}, -oncipj_Cypher_AlterAlias = ($this, $start) => { - let $targetName, $ifExists, $url, $username, $password, $driverSettings, $properties, var$9, var$10, var$11, var$12, var$13, var$14, $alreadySet; - $targetName = null; - $ifExists = 0; - $url = null; - $username = null; - $password = null; - $driverSettings = null; - $properties = null; - oncipj_Cypher_jj_consume_token($this, 73); - var$9 = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$10) { - case 186: - break; - default: - $this.$jj_la1.data[714] = $this.$jj_gen; - break a; - } - oncipj_Cypher_jj_consume_token($this, 186); - oncipj_Cypher_jj_consume_token($this, 163); - $ifExists = 1; - } - oncipj_Cypher_jj_consume_token($this, 308); - oncipj_Cypher_jj_consume_token($this, 123); - b: while (true) { - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - c: { - switch (var$10) { - case 144: - break; - case 251: - var$11 = oncipj_Cypher_jj_consume_token($this, 251); - var$12 = $rt_createArray(jl_Object, 1); - var$12.data[0] = var$11.$image; - oncipj_Cypher_assertNotAlreadySet($this, $password, var$11, jl_String_format($rt_s(4413), var$12)); - $password = oncipj_Cypher_passwordExpression($this); - break c; - case 269: - var$13 = oncipj_Cypher_jj_consume_token($this, 269); - var$12 = $rt_createArray(jl_Object, 1); - var$12.data[0] = var$13.$image; - oncipj_Cypher_assertNotAlreadySet($this, $properties, var$13, jl_String_format($rt_s(4413), var$12)); - $properties = oncipj_Cypher_MapOrParameter($this); - break c; - case 324: - var$11 = oncipj_Cypher_jj_consume_token($this, 324); - var$12 = $rt_createArray(jl_Object, 1); - var$12.data[0] = var$11.$image; - oncipj_Cypher_assertNotAlreadySet($this, $targetName, var$11, jl_String_format($rt_s(4413), var$12)); - $targetName = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - var$14 = $this.$jj_ntk; - if (var$14 == (-1)) - var$14 = oncipj_Cypher_jj_ntk_f($this); - switch (var$14) { - case 86: - break; - default: - $this.$jj_la1.data[715] = $this.$jj_gen; - break c; - } - oncipj_Cypher_jj_consume_token($this, 86); - $url = oncipj_Cypher_StringOrParameter($this); - break c; - case 349: - var$11 = oncipj_Cypher_jj_consume_token($this, 349); - var$12 = $rt_createArray(jl_Object, 1); - var$12.data[0] = var$11.$image; - oncipj_Cypher_assertNotAlreadySet($this, $username, var$11, jl_String_format($rt_s(4413), var$12)); - $username = oncipj_Cypher_SymbolicNameOrStringParameter($this); - break c; - default: - break b; - } - var$11 = oncipj_Cypher_jj_consume_token($this, 144); - var$12 = $rt_createArray(jl_Object, 1); - var$12.data[0] = var$11.$image; - oncipj_Cypher_assertNotAlreadySet($this, $driverSettings, var$11, jl_String_format($rt_s(4413), var$12)); - $driverSettings = oncipj_Cypher_MapOrParameter($this); - } - var$10 = $this.$jj_ntk; - if (var$10 == (-1)) - var$10 = oncipj_Cypher_jj_ntk_f($this); - switch (var$10) { - case 144: - case 251: - case 269: - case 324: - case 349: - break; - default: - $this.$jj_la1.data[717] = $this.$jj_gen; - if ($url === null && $username === null && $password === null && $driverSettings === null) { - var$11 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - var$13 = oncipj_AliasName_getLocalAliasName(var$9, $this.$astFactory); - $targetName = $targetName === null ? null : oncipj_AliasName_getLocalAliasName($targetName, $this.$astFactory); - $alreadySet = new oncia_AlterLocalDatabaseAlias; - s_Option$_$callClinit(); - var$9 = s_Option$_apply(s_Option$_MODULE$, $targetName); - $targetName = s_Option$_apply(s_Option$_MODULE$, $properties); - $properties = new onciafn_Neo4jASTFactory$alterLocalDatabaseAlias$lambda$_245_0; - $properties.$_0133 = var$11; - oncia_AlterLocalDatabaseAlias__init_0($alreadySet, var$13, var$9, $ifExists, s_Option_map($targetName, $properties), $start); - return $alreadySet; - } - var$11 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - var$13 = oncipj_AliasName_getRemoteAliasName(var$9, $this.$astFactory); - $targetName = $targetName === null ? null : oncipj_AliasName_getRemoteAliasName($targetName, $this.$astFactory); - $alreadySet = new oncia_AlterRemoteDatabaseAlias; - s_Option$_$callClinit(); - var$9 = s_Option$_apply(s_Option$_MODULE$, $targetName); - $url = s_Option_map(s_Option$_apply(s_Option$_MODULE$, $url), new onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_0); - $targetName = s_Option$_apply(s_Option$_MODULE$, $username); - $username = new onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_1; - $username.$_0542 = var$11; - $username = s_Option_map($targetName, $username); - $password = s_Option$_apply(s_Option$_MODULE$, $password); - $driverSettings = s_Option$_apply(s_Option$_MODULE$, $driverSettings); - $targetName = new onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_2; - $targetName.$_01076 = var$11; - $driverSettings = s_Option_map($driverSettings, $targetName); - $properties = s_Option$_apply(s_Option$_MODULE$, $properties); - $targetName = new onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_3; - $targetName.$_0157 = var$11; - oncia_AlterRemoteDatabaseAlias__init_0($alreadySet, var$13, var$9, $ifExists, $url, $username, $password, $driverSettings, s_Option_map($properties, $targetName), $start); - return $alreadySet; - } - } - $this.$jj_la1.data[716] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); -}, -oncipj_Cypher_ShowAliases = ($this, $start, $useClause) => { - let $aliasName, $where, $yieldClause, $returnClause, var$7, var$8, var$9, $maybeAliasName, $$je; - $aliasName = null; - $where = null; - $yieldClause = null; - $returnClause = null; - var$7 = $this.$jj_ntk; - if (var$7 == (-1)) - var$7 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$7) { - case 73: - oncipj_Cypher_jj_consume_token($this, 73); - break a; - case 74: - oncipj_Cypher_jj_consume_token($this, 74); - break a; - default: - } - $this.$jj_la1.data[718] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - $this.$jj_la = 2147483647; - var$8 = $this.$token; - $this.$jj_scanpos = var$8; - $this.$jj_lastpos = var$8; - b: { - c: { - d: { - e: { - try { - var$7 = oncipj_Cypher_jj_3_182($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break e; - } else{ - $start = $$je; - break d; - } - } - oncipj_Cypher_jj_save($this, 181, 2147483647); - break b; - } - try { - var$7 = 1; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $start = $$je; - - } - } - oncipj_Cypher_jj_save($this, 181, 2147483647); - $rt_throw($start); - } - oncipj_Cypher_jj_save($this, 181, 2147483647); - } - if (var$7) - $aliasName = oncipj_Cypher_SymbolicAliasNameOrParameter($this); - oncipj_Cypher_jj_consume_token($this, 170); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - f: { - switch (var$9) { - case 123: - oncipj_Cypher_jj_consume_token($this, 123); - break f; - case 124: - oncipj_Cypher_jj_consume_token($this, 124); - break f; - default: - } - $this.$jj_la1.data[719] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - } - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - g: { - switch (var$9) { - case 359: - case 364: - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 359: - $where = oncipj_Cypher_WhereClause($this); - break g; - case 364: - $yieldClause = oncipj_Cypher_YieldClause($this); - var$9 = $this.$jj_ntk; - if (var$9 == (-1)) - var$9 = oncipj_Cypher_jj_ntk_f($this); - switch (var$9) { - case 291: - break; - default: - $this.$jj_la1.data[720] = $this.$jj_gen; - break g; - } - $returnClause = oncipj_Cypher_ReturnClause($this); - break g; - default: - } - $this.$jj_la1.data[721] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $start = new oncipj_ParseException; - jl_Throwable__init_($start); - $rt_throw($start); - default: - } - $this.$jj_la1.data[722] = $this.$jj_gen; - } - $maybeAliasName = $aliasName === null ? null : oncipj_AliasName_getLocalAliasName($aliasName, $this.$astFactory); - var$8 = $this.$astFactory; - $start = oncipj_Cypher_pos($this, $start); - $aliasName = oncia_ShowAliases$_MODULE$; - s_Option$_$callClinit(); - return onciafn_Neo4jASTFactory_useGraph(var$8, oncia_ShowAliases$_apply($aliasName, s_Option$_apply(s_Option$_MODULE$, $maybeAliasName), onciafn_Neo4jASTFactory_yieldOrWhere(var$8, $yieldClause, $returnClause, $where), $start), $useClause); -}, -oncipj_Cypher_SymbolicAliasNameList = $this => { - let $databases, var$2; - $databases = ju_ArrayList__init_(); - ju_ArrayList_add($databases, oncipj_AliasName_getLocalAliasName(oncipj_Cypher_SymbolicAliasNameOrParameter($this), $this.$astFactory)); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 107: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($databases, oncipj_AliasName_getLocalAliasName(oncipj_Cypher_SymbolicAliasNameOrParameter($this), $this.$astFactory)); - } - $this.$jj_la1.data[723] = $this.$jj_gen; - return $databases; -}, -oncipj_Cypher_SymbolicAliasNameOrParameter = $this => { - let var$1, $parameter, var$3, var$4; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break a; - case 137: - $parameter = oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_STRING); - var$3 = new oncipj_AliasName; - var$4 = $this.$exceptionFactory1; - var$3.$names0 = ju_ArrayList__init_(); - var$3.$componentCount = 1; - var$3.$exceptionFactory4 = var$4; - var$3.$parameter4 = $parameter; - return var$3; - default: - break a; - } - return oncipj_Cypher_SymbolicAliasName($this); - } - $this.$jj_la1.data[724] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $parameter = new oncipj_ParseException; - jl_Throwable__init_($parameter); - $rt_throw($parameter); -}, -oncipj_Cypher_SymbolicAliasName = $this => { - let $token, var$2, var$3, var$4, var$5; - $token = oncipj_Cypher_SymbolicNameString($this); - var$2 = new oncipj_AliasName; - var$3 = $this.$exceptionFactory1; - var$4 = ju_ArrayList__init_(); - var$2.$names0 = var$4; - var$2.$componentCount = 1; - var$2.$exceptionFactory4 = var$3; - var$2.$lastToken = $token; - ju_ArrayList_add(var$4, $token); - a: while (true) { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 142: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 142); - $token = oncipj_Cypher_SymbolicNameString($this); - if (!(!oncipj_AliasName_isEscaped(var$2, $token) && !oncipj_AliasName_isEscaped(var$2, var$2.$lastToken))) - var$2.$componentCount = var$2.$componentCount + 1 | 0; - var$2.$lastToken = $token; - ju_ArrayList_add(var$2.$names0, $token); - } - $this.$jj_la1.data[725] = $this.$jj_gen; - return var$2; -}, -oncipj_Cypher_SymbolicNameOrStringParameterList = $this => { - let $list, var$2; - $list = ju_ArrayList__init_(); - ju_ArrayList_add($list, oncipj_Cypher_SymbolicNameOrStringParameter($this)); - a: while (true) { - var$2 = $this.$jj_ntk; - if (var$2 == (-1)) - var$2 = oncipj_Cypher_jj_ntk_f($this); - switch (var$2) { - case 107: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 107); - ju_ArrayList_add($list, oncipj_Cypher_SymbolicNameOrStringParameter($this)); - } - $this.$jj_la1.data[726] = $this.$jj_gen; - return $list; -}, -oncipj_Cypher_SymbolicNameOrStringParameter = $this => { - let var$1, $parameter, var$3, var$4, var$5; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - oncipj_Cypher_SymbolicNameString($this); - $parameter = new onciaf_ASTFactory$StringPos; - var$3 = $this.$token; - var$4 = var$3.$image; - var$3 = oncipj_Cypher_pos($this, var$3); - var$5 = oncipj_Cypher_endPos($this, $this.$token); - $parameter.$string = var$4; - $parameter.$pos3 = var$3; - $parameter.$endPos0 = var$5; - return oncipcaf_SimpleEither_left($parameter); - case 88: - case 105: - case 106: - case 107: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break a; - case 137: - break; - default: - break a; - } - return oncipcaf_SimpleEither_right(oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_STRING)); - } - $this.$jj_la1.data[727] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $parameter = new oncipj_ParseException; - jl_Throwable__init_($parameter); - $rt_throw($parameter); -}, -oncipj_Cypher_Glob = $this => { - let var$1, var$2, var$3, var$4, var$5, $$je; - $this.$jj_la = 2147483647; - var$1 = $this.$token; - $this.$jj_scanpos = var$1; - $this.$jj_lastpos = var$1; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_183($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - var$1 = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 182, 2147483647); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 182, 2147483647); - $rt_throw(var$1); - } - oncipj_Cypher_jj_save($this, 182, 2147483647); - } - e: { - if (var$2) - var$1 = (oncipj_Cypher_EscapedSymbolicNameString($this)).$image; - else { - $this.$jj_la = 2147483647; - var$1 = $this.$token; - $this.$jj_scanpos = var$1; - $this.$jj_lastpos = var$1; - f: { - g: { - h: { - i: { - try { - var$2 = oncipj_Cypher_jj_3_184($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break i; - } else{ - var$1 = $$je; - break h; - } - } - oncipj_Cypher_jj_save($this, 183, 2147483647); - break f; - } - try { - var$2 = 1; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 183, 2147483647); - $rt_throw(var$1); - } - oncipj_Cypher_jj_save($this, 183, 2147483647); - } - if (var$2) { - var$1 = (oncipj_Cypher_EscapedSymbolicNameString($this)).$image; - var$3 = oncipj_Cypher_GlobRecursive($this); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$1), var$3); - var$1 = jl_AbstractStringBuilder_toString(var$4); - } else { - var$5 = $this.$jj_ntk; - if (var$5 == (-1)) - var$5 = oncipj_Cypher_jj_ntk_f($this); - switch (var$5) { - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 142: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 329: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 275: - case 276: - case 281: - case 297: - case 305: - break e; - default: - break e; - } - var$1 = oncipj_Cypher_GlobRecursive($this); - } - } - return var$1; - } - $this.$jj_la1.data[728] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$1 = new oncipj_ParseException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}, -oncipj_Cypher_GlobRecursive = $this => { - let var$1, var$2, var$3, var$4, var$5, $$je; - $this.$jj_la = 2147483647; - var$1 = $this.$token; - $this.$jj_scanpos = var$1; - $this.$jj_lastpos = var$1; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_185($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - var$1 = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 184, 2147483647); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 184, 2147483647); - $rt_throw(var$1); - } - oncipj_Cypher_jj_save($this, 184, 2147483647); - } - e: { - if (var$2) - var$1 = oncipj_Cypher_GlobPart($this); - else { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 142: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 329: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 275: - case 276: - case 281: - case 297: - case 305: - break e; - default: - break e; - } - var$1 = oncipj_Cypher_GlobPart($this); - var$4 = oncipj_Cypher_GlobRecursive($this); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$1), var$4); - var$1 = jl_AbstractStringBuilder_toString(var$5); - } - return var$1; - } - $this.$jj_la1.data[729] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$1 = new oncipj_ParseException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}, -oncipj_Cypher_GlobPart = $this => { - let var$1, var$2, var$3, var$4, $$je; - $this.$jj_la = 2147483647; - var$1 = $this.$token; - $this.$jj_scanpos = var$1; - $this.$jj_lastpos = var$1; - a: { - b: { - c: { - d: { - try { - var$2 = oncipj_Cypher_jj_3_186($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break d; - } else{ - var$1 = $$je; - break c; - } - } - oncipj_Cypher_jj_save($this, 185, 2147483647); - break a; - } - try { - var$2 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 185, 2147483647); - $rt_throw(var$1); - } - oncipj_Cypher_jj_save($this, 185, 2147483647); - } - e: { - f: { - if (var$2) { - oncipj_Cypher_jj_consume_token($this, 142); - var$1 = (oncipj_Cypher_EscapedSymbolicNameString($this)).$image; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(var$3, 46); - jl_StringBuilder_append(var$3, var$1); - var$1 = jl_AbstractStringBuilder_toString(var$3); - } else { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 275: - case 276: - case 281: - case 297: - case 305: - break e; - case 142: - oncipj_Cypher_jj_consume_token($this, 142); - var$1 = $rt_s(403); - break f; - case 273: - oncipj_Cypher_jj_consume_token($this, 273); - var$1 = $rt_s(4414); - break f; - case 329: - oncipj_Cypher_jj_consume_token($this, 329); - var$1 = $rt_s(172); - break f; - default: - break e; - } - var$1 = (oncipj_Cypher_UnescapedSymbolicNameString($this)).$image; - } - } - return var$1; - } - $this.$jj_la1.data[730] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$1 = new oncipj_ParseException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}, -oncipj_Cypher_StringImage = $this => { - oncipj_Cypher_StringToken($this); - return $this.$token.$image; -}, -oncipj_Cypher_StringToken = $this => { - let var$1, var$2; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 52: - break; - case 64: - var$2 = oncipj_Cypher_jj_consume_token($this, 64); - break a; - default: - $this.$jj_la1.data[732] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$2 = new oncipj_ParseException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - var$2 = oncipj_Cypher_jj_consume_token($this, 52); - } - return var$2; -}, -oncipj_Cypher_StringOrParameter = $this => { - let var$1, var$2; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - switch (var$1) { - case 52: - case 64: - break; - case 137: - return oncipcaf_SimpleEither_right(oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_STRING)); - default: - $this.$jj_la1.data[733] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - var$2 = new oncipj_ParseException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - return oncipcaf_SimpleEither_left((oncipj_Cypher_StringToken($this)).$image); -}, -oncipj_Cypher_MapOrParameter = $this => { - let var$1, $parameter, var$3, var$4, var$5; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - switch (var$1) { - case 137: - break; - case 205: - $parameter = ju_LinkedHashMap__init_(); - oncipj_Cypher_jj_consume_token($this, 205); - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$3) { - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - var$4 = oncipj_Cypher_SymbolicNameString($this); - oncipj_Cypher_jj_consume_token($this, 105); - var$5 = oncipj_Cypher_Expression($this); - ju_LinkedHashMap_put($parameter, var$4.$image, var$5); - b: while (true) { - var$3 = $this.$jj_ntk; - if (var$3 == (-1)) - var$3 = oncipj_Cypher_jj_ntk_f($this); - switch (var$3) { - case 107: - break; - default: - break b; - } - oncipj_Cypher_jj_consume_token($this, 107); - var$4 = oncipj_Cypher_SymbolicNameString($this); - oncipj_Cypher_jj_consume_token($this, 105); - var$5 = oncipj_Cypher_Expression($this); - ju_LinkedHashMap_put($parameter, var$4.$image, var$5); - } - $this.$jj_la1.data[735] = $this.$jj_gen; - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break; - default: - } - $this.$jj_la1.data[736] = $this.$jj_gen; - } - oncipj_Cypher_jj_consume_token($this, 276); - return oncipcaf_SimpleEither_left($parameter); - default: - $this.$jj_la1.data[734] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $parameter = new oncipj_ParseException; - jl_Throwable__init_($parameter); - $rt_throw($parameter); - } - return oncipcaf_SimpleEither_right(oncipj_Cypher_Parameter($this, oncipcaf_ParameterType_MAP)); -}, -oncipj_Cypher_SymbolicNamePositions = $this => { - let $names, var$2, var$3, var$4; - $names = ju_ArrayList__init_(); - oncipj_Cypher_SymbolicNameString($this); - var$2 = new onciaf_ASTFactory$StringPos; - var$3 = $this.$token; - onciaf_ASTFactory$StringPos__init_0(var$2, var$3.$image, oncipj_Cypher_pos($this, var$3)); - ju_ArrayList_add($names, var$2); - a: while (true) { - var$4 = $this.$jj_ntk; - if (var$4 == (-1)) - var$4 = oncipj_Cypher_jj_ntk_f($this); - switch (var$4) { - case 107: - break; - default: - break a; - } - oncipj_Cypher_jj_consume_token($this, 107); - oncipj_Cypher_SymbolicNameString($this); - var$2 = new onciaf_ASTFactory$StringPos; - var$3 = $this.$token; - onciaf_ASTFactory$StringPos__init_0(var$2, var$3.$image, oncipj_Cypher_pos($this, var$3)); - ju_ArrayList_add($names, var$2); - } - $this.$jj_la1.data[737] = $this.$jj_gen; - return $names; -}, -oncipj_Cypher_SymbolicNameString = $this => { - let var$1, $t; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - b: { - switch (var$1) { - case 68: - break; - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 341: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - $t = oncipj_Cypher_UnescapedSymbolicNameString($this); - break b; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break a; - default: - break a; - } - $t = oncipj_Cypher_EscapedSymbolicNameString($this); - } - return $t; - } - $this.$jj_la1.data[738] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); -}, -oncipj_Cypher_EscapedSymbolicNameString = $this => { - return oncipj_Cypher_jj_consume_token($this, 68); -}, -oncipj_Cypher_UnescapedSymbolicNameString = $this => { - let var$1, $t; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - b: { - switch (var$1) { - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - case 119: - case 120: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 139: - case 140: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 156: - case 157: - case 159: - case 160: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 177: - case 178: - case 179: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 200: - case 201: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 215: - case 216: - case 217: - case 218: - case 223: - case 224: - case 225: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 238: - case 239: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 259: - case 260: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 274: - case 277: - case 278: - case 279: - case 280: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 306: - case 307: - case 308: - case 309: - case 310: - case 311: - case 312: - case 313: - case 314: - case 315: - case 316: - case 317: - case 318: - case 319: - case 320: - case 321: - case 322: - case 323: - case 324: - case 325: - case 326: - case 327: - case 328: - case 330: - case 331: - case 332: - case 333: - case 334: - case 335: - case 336: - case 337: - case 338: - case 339: - case 340: - case 342: - case 343: - case 344: - case 345: - case 346: - case 347: - case 348: - case 349: - case 350: - case 351: - case 352: - case 353: - case 354: - case 355: - case 356: - case 357: - case 358: - case 359: - case 360: - case 361: - case 362: - case 363: - case 364: - case 365: - case 366: - case 367: - break; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - break a; - case 226: - $t = oncipj_Cypher_jj_consume_token($this, 226); - break b; - case 227: - $t = oncipj_Cypher_jj_consume_token($this, 227); - break b; - case 228: - $t = oncipj_Cypher_jj_consume_token($this, 228); - break b; - case 229: - $t = oncipj_Cypher_jj_consume_token($this, 229); - break b; - case 236: - $t = oncipj_Cypher_jj_consume_token($this, 236); - break b; - case 237: - $t = oncipj_Cypher_jj_consume_token($this, 237); - break b; - case 240: - $t = oncipj_Cypher_jj_consume_token($this, 240); - break b; - case 341: - $t = oncipj_Cypher_jj_consume_token($this, 341); - break b; - default: - break a; - } - $t = oncipj_Cypher_UnescapedLabelSymbolicNameString($this); - } - return $t; - } - $this.$jj_la1.data[739] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $t = new oncipj_ParseException; - jl_Throwable__init_($t); - $rt_throw($t); -}, -oncipj_Cypher_UnescapedLabelSymbolicNameString = $this => { - let var$1, $t, var$3, $depChar; - var$1 = $this.$jj_ntk; - if (var$1 == (-1)) - var$1 = oncipj_Cypher_jj_ntk_f($this); - a: { - switch (var$1) { - case 69: - $t = oncipj_Cypher_jj_consume_token($this, 69); - break a; - case 70: - $t = oncipj_Cypher_jj_consume_token($this, 70); - break a; - case 71: - $t = oncipj_Cypher_jj_consume_token($this, 71); - break a; - case 72: - $t = oncipj_Cypher_jj_consume_token($this, 72); - break a; - case 73: - $t = oncipj_Cypher_jj_consume_token($this, 73); - break a; - case 74: - $t = oncipj_Cypher_jj_consume_token($this, 74); - break a; - case 75: - $t = oncipj_Cypher_jj_consume_token($this, 75); - break a; - case 76: - $t = oncipj_Cypher_jj_consume_token($this, 76); - break a; - case 77: - $t = oncipj_Cypher_jj_consume_token($this, 77); - break a; - case 78: - $t = oncipj_Cypher_jj_consume_token($this, 78); - break a; - case 79: - $t = oncipj_Cypher_jj_consume_token($this, 79); - break a; - case 80: - $t = oncipj_Cypher_jj_consume_token($this, 80); - break a; - case 81: - $t = oncipj_Cypher_jj_consume_token($this, 81); - break a; - case 82: - $t = oncipj_Cypher_jj_consume_token($this, 82); - break a; - case 83: - $t = oncipj_Cypher_jj_consume_token($this, 83); - break a; - case 84: - $t = oncipj_Cypher_jj_consume_token($this, 84); - break a; - case 85: - $t = oncipj_Cypher_jj_consume_token($this, 85); - break a; - case 86: - $t = oncipj_Cypher_jj_consume_token($this, 86); - break a; - case 87: - $t = oncipj_Cypher_jj_consume_token($this, 87); - break a; - case 88: - case 105: - case 106: - case 107: - case 137: - case 138: - case 141: - case 142: - case 143: - case 158: - case 176: - case 182: - case 202: - case 203: - case 204: - case 205: - case 206: - case 213: - case 214: - case 219: - case 220: - case 221: - case 222: - case 226: - case 227: - case 228: - case 229: - case 236: - case 237: - case 240: - case 257: - case 258: - case 261: - case 273: - case 275: - case 276: - case 281: - case 297: - case 305: - case 329: - case 341: - break; - case 89: - $t = oncipj_Cypher_jj_consume_token($this, 89); - break a; - case 90: - $t = oncipj_Cypher_jj_consume_token($this, 90); - break a; - case 91: - $t = oncipj_Cypher_jj_consume_token($this, 91); - break a; - case 92: - $t = oncipj_Cypher_jj_consume_token($this, 92); - break a; - case 93: - $t = oncipj_Cypher_jj_consume_token($this, 93); - break a; - case 94: - $t = oncipj_Cypher_jj_consume_token($this, 94); - break a; - case 95: - $t = oncipj_Cypher_jj_consume_token($this, 95); - break a; - case 96: - $t = oncipj_Cypher_jj_consume_token($this, 96); - break a; - case 97: - $t = oncipj_Cypher_jj_consume_token($this, 97); - break a; - case 98: - $t = oncipj_Cypher_jj_consume_token($this, 98); - break a; - case 99: - $t = oncipj_Cypher_jj_consume_token($this, 99); - break a; - case 100: - $t = oncipj_Cypher_jj_consume_token($this, 100); - break a; - case 101: - $t = oncipj_Cypher_jj_consume_token($this, 101); - break a; - case 102: - $t = oncipj_Cypher_jj_consume_token($this, 102); - break a; - case 103: - $t = oncipj_Cypher_jj_consume_token($this, 103); - break a; - case 104: - $t = oncipj_Cypher_jj_consume_token($this, 104); - break a; - case 108: - $t = oncipj_Cypher_jj_consume_token($this, 108); - break a; - case 109: - $t = oncipj_Cypher_jj_consume_token($this, 109); - break a; - case 110: - $t = oncipj_Cypher_jj_consume_token($this, 110); - break a; - case 111: - $t = oncipj_Cypher_jj_consume_token($this, 111); - break a; - case 112: - $t = oncipj_Cypher_jj_consume_token($this, 112); - break a; - case 113: - $t = oncipj_Cypher_jj_consume_token($this, 113); - break a; - case 114: - $t = oncipj_Cypher_jj_consume_token($this, 114); - break a; - case 115: - $t = oncipj_Cypher_jj_consume_token($this, 115); - break a; - case 116: - $t = oncipj_Cypher_jj_consume_token($this, 116); - break a; - case 117: - $t = oncipj_Cypher_jj_consume_token($this, 117); - break a; - case 118: - $t = oncipj_Cypher_jj_consume_token($this, 118); - break a; - case 119: - $t = oncipj_Cypher_jj_consume_token($this, 119); - break a; - case 120: - $t = oncipj_Cypher_jj_consume_token($this, 120); - break a; - case 121: - $t = oncipj_Cypher_jj_consume_token($this, 121); - break a; - case 122: - $t = oncipj_Cypher_jj_consume_token($this, 122); - break a; - case 123: - $t = oncipj_Cypher_jj_consume_token($this, 123); - break a; - case 124: - $t = oncipj_Cypher_jj_consume_token($this, 124); - break a; - case 125: - $t = oncipj_Cypher_jj_consume_token($this, 125); - break a; - case 126: - $t = oncipj_Cypher_jj_consume_token($this, 126); - break a; - case 127: - $t = oncipj_Cypher_jj_consume_token($this, 127); - break a; - case 128: - $t = oncipj_Cypher_jj_consume_token($this, 128); - break a; - case 129: - $t = oncipj_Cypher_jj_consume_token($this, 129); - break a; - case 130: - $t = oncipj_Cypher_jj_consume_token($this, 130); - break a; - case 131: - $t = oncipj_Cypher_jj_consume_token($this, 131); - break a; - case 132: - $t = oncipj_Cypher_jj_consume_token($this, 132); - break a; - case 133: - $t = oncipj_Cypher_jj_consume_token($this, 133); - break a; - case 134: - $t = oncipj_Cypher_jj_consume_token($this, 134); - break a; - case 135: - $t = oncipj_Cypher_jj_consume_token($this, 135); - break a; - case 136: - $t = oncipj_Cypher_jj_consume_token($this, 136); - break a; - case 139: - $t = oncipj_Cypher_jj_consume_token($this, 139); - break a; - case 140: - $t = oncipj_Cypher_jj_consume_token($this, 140); - break a; - case 144: - $t = oncipj_Cypher_jj_consume_token($this, 144); - break a; - case 145: - $t = oncipj_Cypher_jj_consume_token($this, 145); - break a; - case 146: - $t = oncipj_Cypher_jj_consume_token($this, 146); - break a; - case 147: - $t = oncipj_Cypher_jj_consume_token($this, 147); - break a; - case 148: - $t = oncipj_Cypher_jj_consume_token($this, 148); - break a; - case 149: - $t = oncipj_Cypher_jj_consume_token($this, 149); - break a; - case 150: - $t = oncipj_Cypher_jj_consume_token($this, 150); - break a; - case 151: - $t = oncipj_Cypher_jj_consume_token($this, 151); - break a; - case 152: - $t = oncipj_Cypher_jj_consume_token($this, 152); - break a; - case 153: - $t = oncipj_Cypher_jj_consume_token($this, 153); - break a; - case 154: - $t = oncipj_Cypher_jj_consume_token($this, 154); - break a; - case 155: - $t = oncipj_Cypher_jj_consume_token($this, 155); - break a; - case 156: - $t = oncipj_Cypher_jj_consume_token($this, 156); - break a; - case 157: - $t = oncipj_Cypher_jj_consume_token($this, 157); - break a; - case 159: - $t = oncipj_Cypher_jj_consume_token($this, 159); - break a; - case 160: - $t = oncipj_Cypher_jj_consume_token($this, 160); - break a; - case 161: - $t = oncipj_Cypher_jj_consume_token($this, 161); - break a; - case 162: - $t = oncipj_Cypher_jj_consume_token($this, 162); - break a; - case 163: - $t = oncipj_Cypher_jj_consume_token($this, 163); - break a; - case 164: - $t = oncipj_Cypher_jj_consume_token($this, 164); - break a; - case 165: - $t = oncipj_Cypher_jj_consume_token($this, 165); - break a; - case 166: - $t = oncipj_Cypher_jj_consume_token($this, 166); - break a; - case 167: - $t = oncipj_Cypher_jj_consume_token($this, 167); - break a; - case 168: - $t = oncipj_Cypher_jj_consume_token($this, 168); - break a; - case 169: - $t = oncipj_Cypher_jj_consume_token($this, 169); - break a; - case 170: - $t = oncipj_Cypher_jj_consume_token($this, 170); - break a; - case 171: - $t = oncipj_Cypher_jj_consume_token($this, 171); - break a; - case 172: - $t = oncipj_Cypher_jj_consume_token($this, 172); - break a; - case 173: - $t = oncipj_Cypher_jj_consume_token($this, 173); - break a; - case 174: - $t = oncipj_Cypher_jj_consume_token($this, 174); - break a; - case 175: - $t = oncipj_Cypher_jj_consume_token($this, 175); - break a; - case 177: - $t = oncipj_Cypher_jj_consume_token($this, 177); - break a; - case 178: - $t = oncipj_Cypher_jj_consume_token($this, 178); - break a; - case 179: - $t = oncipj_Cypher_jj_consume_token($this, 179); - break a; - case 180: - $t = oncipj_Cypher_jj_consume_token($this, 180); - break a; - case 181: - $t = oncipj_Cypher_jj_consume_token($this, 181); - break a; - case 183: - $t = oncipj_Cypher_jj_consume_token($this, 183); - break a; - case 184: - $t = oncipj_Cypher_jj_consume_token($this, 184); - break a; - case 185: - $t = oncipj_Cypher_jj_consume_token($this, 185); - break a; - case 186: - $t = oncipj_Cypher_jj_consume_token($this, 186); - break a; - case 187: - $t = oncipj_Cypher_jj_consume_token($this, 187); - break a; - case 188: - $t = oncipj_Cypher_jj_consume_token($this, 188); - break a; - case 189: - $t = oncipj_Cypher_jj_consume_token($this, 189); - break a; - case 190: - $t = oncipj_Cypher_jj_consume_token($this, 190); - break a; - case 191: - $t = oncipj_Cypher_jj_consume_token($this, 191); - break a; - case 192: - $t = oncipj_Cypher_jj_consume_token($this, 192); - break a; - case 193: - $t = oncipj_Cypher_jj_consume_token($this, 193); - break a; - case 194: - $t = oncipj_Cypher_jj_consume_token($this, 194); - break a; - case 195: - $t = oncipj_Cypher_jj_consume_token($this, 195); - break a; - case 196: - $t = oncipj_Cypher_jj_consume_token($this, 196); - break a; - case 197: - $t = oncipj_Cypher_jj_consume_token($this, 197); - break a; - case 198: - $t = oncipj_Cypher_jj_consume_token($this, 198); - break a; - case 199: - $t = oncipj_Cypher_jj_consume_token($this, 199); - break a; - case 200: - $t = oncipj_Cypher_jj_consume_token($this, 200); - break a; - case 201: - $t = oncipj_Cypher_jj_consume_token($this, 201); - break a; - case 207: - $t = oncipj_Cypher_jj_consume_token($this, 207); - break a; - case 208: - $t = oncipj_Cypher_jj_consume_token($this, 208); - break a; - case 209: - $t = oncipj_Cypher_jj_consume_token($this, 209); - break a; - case 210: - $t = oncipj_Cypher_jj_consume_token($this, 210); - break a; - case 211: - $t = oncipj_Cypher_jj_consume_token($this, 211); - break a; - case 212: - $t = oncipj_Cypher_jj_consume_token($this, 212); - break a; - case 215: - $t = oncipj_Cypher_jj_consume_token($this, 215); - break a; - case 216: - $t = oncipj_Cypher_jj_consume_token($this, 216); - break a; - case 217: - $t = oncipj_Cypher_jj_consume_token($this, 217); - break a; - case 218: - $t = oncipj_Cypher_jj_consume_token($this, 218); - break a; - case 223: - $t = oncipj_Cypher_jj_consume_token($this, 223); - break a; - case 224: - $t = oncipj_Cypher_jj_consume_token($this, 224); - break a; - case 225: - $t = oncipj_Cypher_jj_consume_token($this, 225); - break a; - case 230: - $t = oncipj_Cypher_jj_consume_token($this, 230); - break a; - case 231: - $t = oncipj_Cypher_jj_consume_token($this, 231); - break a; - case 232: - $t = oncipj_Cypher_jj_consume_token($this, 232); - break a; - case 233: - $t = oncipj_Cypher_jj_consume_token($this, 233); - break a; - case 234: - $t = oncipj_Cypher_jj_consume_token($this, 234); - break a; - case 235: - $t = oncipj_Cypher_jj_consume_token($this, 235); - break a; - case 238: - $t = oncipj_Cypher_jj_consume_token($this, 238); - break a; - case 239: - $t = oncipj_Cypher_jj_consume_token($this, 239); - break a; - case 241: - $t = oncipj_Cypher_jj_consume_token($this, 241); - break a; - case 242: - $t = oncipj_Cypher_jj_consume_token($this, 242); - break a; - case 243: - $t = oncipj_Cypher_jj_consume_token($this, 243); - break a; - case 244: - $t = oncipj_Cypher_jj_consume_token($this, 244); - break a; - case 245: - $t = oncipj_Cypher_jj_consume_token($this, 245); - break a; - case 246: - $t = oncipj_Cypher_jj_consume_token($this, 246); - break a; - case 247: - $t = oncipj_Cypher_jj_consume_token($this, 247); - break a; - case 248: - $t = oncipj_Cypher_jj_consume_token($this, 248); - break a; - case 249: - $t = oncipj_Cypher_jj_consume_token($this, 249); - break a; - case 250: - $t = oncipj_Cypher_jj_consume_token($this, 250); - break a; - case 251: - $t = oncipj_Cypher_jj_consume_token($this, 251); - break a; - case 252: - $t = oncipj_Cypher_jj_consume_token($this, 252); - break a; - case 253: - $t = oncipj_Cypher_jj_consume_token($this, 253); - break a; - case 254: - $t = oncipj_Cypher_jj_consume_token($this, 254); - break a; - case 255: - $t = oncipj_Cypher_jj_consume_token($this, 255); - break a; - case 256: - $t = oncipj_Cypher_jj_consume_token($this, 256); - break a; - case 259: - $t = oncipj_Cypher_jj_consume_token($this, 259); - break a; - case 260: - $t = oncipj_Cypher_jj_consume_token($this, 260); - break a; - case 262: - $t = oncipj_Cypher_jj_consume_token($this, 262); - break a; - case 263: - $t = oncipj_Cypher_jj_consume_token($this, 263); - break a; - case 264: - $t = oncipj_Cypher_jj_consume_token($this, 264); - break a; - case 265: - $t = oncipj_Cypher_jj_consume_token($this, 265); - break a; - case 266: - $t = oncipj_Cypher_jj_consume_token($this, 266); - break a; - case 267: - $t = oncipj_Cypher_jj_consume_token($this, 267); - break a; - case 268: - $t = oncipj_Cypher_jj_consume_token($this, 268); - break a; - case 269: - $t = oncipj_Cypher_jj_consume_token($this, 269); - break a; - case 270: - $t = oncipj_Cypher_jj_consume_token($this, 270); - break a; - case 271: - $t = oncipj_Cypher_jj_consume_token($this, 271); - break a; - case 272: - $t = oncipj_Cypher_jj_consume_token($this, 272); - break a; - case 274: - $t = oncipj_Cypher_jj_consume_token($this, 274); - break a; - case 277: - $t = oncipj_Cypher_jj_consume_token($this, 277); - break a; - case 278: - $t = oncipj_Cypher_jj_consume_token($this, 278); - break a; - case 279: - $t = oncipj_Cypher_jj_consume_token($this, 279); - break a; - case 280: - $t = oncipj_Cypher_jj_consume_token($this, 280); - break a; - case 282: - $t = oncipj_Cypher_jj_consume_token($this, 282); - break a; - case 283: - $t = oncipj_Cypher_jj_consume_token($this, 283); - break a; - case 284: - $t = oncipj_Cypher_jj_consume_token($this, 284); - break a; - case 285: - $t = oncipj_Cypher_jj_consume_token($this, 285); - break a; - case 286: - $t = oncipj_Cypher_jj_consume_token($this, 286); - break a; - case 287: - $t = oncipj_Cypher_jj_consume_token($this, 287); - break a; - case 288: - $t = oncipj_Cypher_jj_consume_token($this, 288); - break a; - case 289: - $t = oncipj_Cypher_jj_consume_token($this, 289); - break a; - case 290: - $t = oncipj_Cypher_jj_consume_token($this, 290); - break a; - case 291: - $t = oncipj_Cypher_jj_consume_token($this, 291); - break a; - case 292: - $t = oncipj_Cypher_jj_consume_token($this, 292); - break a; - case 293: - $t = oncipj_Cypher_jj_consume_token($this, 293); - break a; - case 294: - $t = oncipj_Cypher_jj_consume_token($this, 294); - break a; - case 295: - $t = oncipj_Cypher_jj_consume_token($this, 295); - break a; - case 296: - $t = oncipj_Cypher_jj_consume_token($this, 296); - break a; - case 298: - $t = oncipj_Cypher_jj_consume_token($this, 298); - break a; - case 299: - $t = oncipj_Cypher_jj_consume_token($this, 299); - break a; - case 300: - $t = oncipj_Cypher_jj_consume_token($this, 300); - break a; - case 301: - $t = oncipj_Cypher_jj_consume_token($this, 301); - break a; - case 302: - $t = oncipj_Cypher_jj_consume_token($this, 302); - break a; - case 303: - $t = oncipj_Cypher_jj_consume_token($this, 303); - break a; - case 304: - $t = oncipj_Cypher_jj_consume_token($this, 304); - break a; - case 306: - $t = oncipj_Cypher_jj_consume_token($this, 306); - break a; - case 307: - $t = oncipj_Cypher_jj_consume_token($this, 307); - break a; - case 308: - $t = oncipj_Cypher_jj_consume_token($this, 308); - break a; - case 309: - $t = oncipj_Cypher_jj_consume_token($this, 309); - break a; - case 310: - $t = oncipj_Cypher_jj_consume_token($this, 310); - break a; - case 311: - $t = oncipj_Cypher_jj_consume_token($this, 311); - break a; - case 312: - $t = oncipj_Cypher_jj_consume_token($this, 312); - break a; - case 313: - $t = oncipj_Cypher_jj_consume_token($this, 313); - break a; - case 314: - $t = oncipj_Cypher_jj_consume_token($this, 314); - break a; - case 315: - $t = oncipj_Cypher_jj_consume_token($this, 315); - break a; - case 316: - $t = oncipj_Cypher_jj_consume_token($this, 316); - break a; - case 317: - $t = oncipj_Cypher_jj_consume_token($this, 317); - break a; - case 318: - $t = oncipj_Cypher_jj_consume_token($this, 318); - break a; - case 319: - $t = oncipj_Cypher_jj_consume_token($this, 319); - break a; - case 320: - $t = oncipj_Cypher_jj_consume_token($this, 320); - break a; - case 321: - $t = oncipj_Cypher_jj_consume_token($this, 321); - break a; - case 322: - $t = oncipj_Cypher_jj_consume_token($this, 322); - break a; - case 323: - $t = oncipj_Cypher_jj_consume_token($this, 323); - break a; - case 324: - $t = oncipj_Cypher_jj_consume_token($this, 324); - break a; - case 325: - $t = oncipj_Cypher_jj_consume_token($this, 325); - break a; - case 326: - $t = oncipj_Cypher_jj_consume_token($this, 326); - break a; - case 327: - $t = oncipj_Cypher_jj_consume_token($this, 327); - break a; - case 328: - $t = oncipj_Cypher_jj_consume_token($this, 328); - break a; - case 330: - $t = oncipj_Cypher_jj_consume_token($this, 330); - break a; - case 331: - $t = oncipj_Cypher_jj_consume_token($this, 331); - break a; - case 332: - $t = oncipj_Cypher_jj_consume_token($this, 332); - break a; - case 333: - $t = oncipj_Cypher_jj_consume_token($this, 333); - break a; - case 334: - $t = oncipj_Cypher_jj_consume_token($this, 334); - break a; - case 335: - $t = oncipj_Cypher_jj_consume_token($this, 335); - break a; - case 336: - $t = oncipj_Cypher_jj_consume_token($this, 336); - break a; - case 337: - $t = oncipj_Cypher_jj_consume_token($this, 337); - break a; - case 338: - $t = oncipj_Cypher_jj_consume_token($this, 338); - break a; - case 339: - $t = oncipj_Cypher_jj_consume_token($this, 339); - break a; - case 340: - $t = oncipj_Cypher_jj_consume_token($this, 340); - break a; - case 342: - $t = oncipj_Cypher_jj_consume_token($this, 342); - break a; - case 343: - $t = oncipj_Cypher_jj_consume_token($this, 343); - break a; - case 344: - $t = oncipj_Cypher_jj_consume_token($this, 344); - break a; - case 345: - $t = oncipj_Cypher_jj_consume_token($this, 345); - break a; - case 346: - $t = oncipj_Cypher_jj_consume_token($this, 346); - break a; - case 347: - $t = oncipj_Cypher_jj_consume_token($this, 347); - break a; - case 348: - $t = oncipj_Cypher_jj_consume_token($this, 348); - break a; - case 349: - $t = oncipj_Cypher_jj_consume_token($this, 349); - break a; - case 350: - $t = oncipj_Cypher_jj_consume_token($this, 350); - break a; - case 351: - $t = oncipj_Cypher_jj_consume_token($this, 351); - break a; - case 352: - $t = oncipj_Cypher_jj_consume_token($this, 352); - break a; - case 353: - $t = oncipj_Cypher_jj_consume_token($this, 353); - break a; - case 354: - $t = oncipj_Cypher_jj_consume_token($this, 354); - break a; - case 355: - $t = oncipj_Cypher_jj_consume_token($this, 355); - break a; - case 356: - $t = oncipj_Cypher_jj_consume_token($this, 356); - break a; - case 357: - $t = oncipj_Cypher_jj_consume_token($this, 357); - break a; - case 358: - $t = oncipj_Cypher_jj_consume_token($this, 358); - break a; - case 359: - $t = oncipj_Cypher_jj_consume_token($this, 359); - break a; - case 360: - $t = oncipj_Cypher_jj_consume_token($this, 360); - break a; - case 361: - $t = oncipj_Cypher_jj_consume_token($this, 361); - break a; - case 362: - $t = oncipj_Cypher_jj_consume_token($this, 362); - break a; - case 363: - $t = oncipj_Cypher_jj_consume_token($this, 363); - break a; - case 364: - $t = oncipj_Cypher_jj_consume_token($this, 364); - break a; - case 365: - $t = oncipj_Cypher_jj_consume_token($this, 365); - break a; - case 366: - $t = oncipj_Cypher_jj_consume_token($this, 366); - break a; - case 367: - $t = oncipj_Cypher_jj_consume_token($this, 367); - break a; - default: - } - $this.$jj_la1.data[741] = $this.$jj_gen; - oncipj_Cypher_jj_consume_token($this, (-1)); - $rt_throw(oncipj_ParseException__init_()); - } - b: { - if (oncipcd_DeprecatedChars_containsDeprecatedChar($t.$image)) { - var$3 = ju_AbstractList_iterator(oncipcd_DeprecatedChars_deprecatedChars($t.$image)); - while (true) { - if (!ju_AbstractList$1_hasNext(var$3)) - break b; - $depChar = ju_AbstractList$1_next(var$3); - onciafn_Neo4jASTFactory_addDeprecatedIdentifierUnicodeNotification($this.$astFactory, oncipj_Cypher_pos($this, $t), jl_Character_valueOf(jl_Character_charValue($depChar)), $t.$image); - } - } - } - return $t; -}, -oncipj_Cypher_jj_2_1 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_1($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 0, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 0, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 0, $xla); - return 1; -}, -oncipj_Cypher_jj_2_2 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_2($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 1, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 1, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 1, $xla); - return 1; -}, -oncipj_Cypher_jj_2_5 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_5($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 4, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 4, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 4, $xla); - return 1; -}, -oncipj_Cypher_jj_2_6 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_6($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 5, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 5, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 5, $xla); - return 1; -}, -oncipj_Cypher_jj_2_30 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_30($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 29, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 29, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 29, $xla); - return 1; -}, -oncipj_Cypher_jj_2_31 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_31($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 30, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 30, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 30, $xla); - return 1; -}, -oncipj_Cypher_jj_2_32 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_32($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 31, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 31, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 31, $xla); - return 1; -}, -oncipj_Cypher_jj_2_33 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_33($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 32, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 32, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 32, $xla); - return 1; -}, -oncipj_Cypher_jj_2_34 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_34($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 33, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 33, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 33, $xla); - return 1; -}, -oncipj_Cypher_jj_2_47 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_47($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 46, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 46, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 46, $xla); - return 1; -}, -oncipj_Cypher_jj_2_55 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_55($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 54, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 54, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 54, $xla); - return 1; -}; -let oncipj_Cypher_jj_2_63 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_63($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 62, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 62, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 62, $xla); - return 1; -}, -oncipj_Cypher_jj_2_64 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_64($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 63, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 63, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 63, $xla); - return 1; -}, -oncipj_Cypher_jj_2_65 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_65($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 64, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 64, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 64, $xla); - return 1; -}, -oncipj_Cypher_jj_2_66 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_66($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 65, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 65, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 65, $xla); - return 1; -}, -oncipj_Cypher_jj_2_67 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_67($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 66, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 66, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 66, $xla); - return 1; -}, -oncipj_Cypher_jj_2_68 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_68($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 67, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 67, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 67, $xla); - return 1; -}, -oncipj_Cypher_jj_2_69 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_69($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 68, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 68, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 68, $xla); - return 1; -}, -oncipj_Cypher_jj_2_70 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_70($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 69, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 69, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 69, $xla); - return 1; -}, -oncipj_Cypher_jj_2_71 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_71($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 70, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 70, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 70, $xla); - return 1; -}, -oncipj_Cypher_jj_2_95 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_95($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 94, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 94, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 94, $xla); - return 1; -}, -oncipj_Cypher_jj_2_96 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_96($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 95, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 95, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 95, $xla); - return 1; -}, -oncipj_Cypher_jj_2_97 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_97($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 96, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 96, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 96, $xla); - return 1; -}, -oncipj_Cypher_jj_2_98 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_98($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 97, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 97, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 97, $xla); - return 1; -}, -oncipj_Cypher_jj_2_99 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_99($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 98, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 98, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 98, $xla); - return 1; -}, -oncipj_Cypher_jj_2_100 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_100($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 99, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 99, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 99, $xla); - return 1; -}, -oncipj_Cypher_jj_2_101 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_101($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 100, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 100, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 100, $xla); - return 1; -}, -oncipj_Cypher_jj_2_102 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_102($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 101, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 101, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 101, $xla); - return 1; -}, -oncipj_Cypher_jj_2_103 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_103($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 102, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 102, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 102, $xla); - return 1; -}, -oncipj_Cypher_jj_2_104 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_104($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 103, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 103, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 103, $xla); - return 1; -}, -oncipj_Cypher_jj_2_105 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_105($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 104, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 104, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 104, $xla); - return 1; -}, -oncipj_Cypher_jj_2_106 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_106($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 105, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 105, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 105, $xla); - return 1; -}, -oncipj_Cypher_jj_2_107 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_107($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 106, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 106, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 106, $xla); - return 1; -}, -oncipj_Cypher_jj_2_108 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_108($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 107, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 107, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 107, $xla); - return 1; -}, -oncipj_Cypher_jj_2_109 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_109($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 108, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 108, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 108, $xla); - return 1; -}, -oncipj_Cypher_jj_2_110 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_110($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 109, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 109, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 109, $xla); - return 1; -}, -oncipj_Cypher_jj_2_111 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_111($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 110, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 110, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 110, $xla); - return 1; -}, -oncipj_Cypher_jj_2_112 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_112($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 111, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 111, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 111, $xla); - return 1; -}, -oncipj_Cypher_jj_2_129 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_129($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 128, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 128, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 128, $xla); - return 1; -}, -oncipj_Cypher_jj_2_130 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_130($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 129, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 129, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 129, $xla); - return 1; -}, -oncipj_Cypher_jj_2_131 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_131($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 130, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 130, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 130, $xla); - return 1; -}, -oncipj_Cypher_jj_2_132 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_132($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 131, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 131, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 131, $xla); - return 1; -}, -oncipj_Cypher_jj_2_149 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_149($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 148, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 148, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 148, $xla); - return 1; -}, -oncipj_Cypher_jj_2_154 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_154($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 153, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 153, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 153, $xla); - return 1; -}, -oncipj_Cypher_jj_2_156 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_156($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 155, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 155, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 155, $xla); - return 1; -}, -oncipj_Cypher_jj_2_157 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_157($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 156, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 156, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 156, $xla); - return 1; -}, -oncipj_Cypher_jj_2_158 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_158($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 157, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 157, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 157, $xla); - return 1; -}, -oncipj_Cypher_jj_2_159 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_159($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 158, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 158, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 158, $xla); - return 1; -}, -oncipj_Cypher_jj_2_160 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_160($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 159, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 159, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 159, $xla); - return 1; -}, -oncipj_Cypher_jj_2_162 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_162($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 161, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 161, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 161, $xla); - return 1; -}, -oncipj_Cypher_jj_2_177 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_177($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 176, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 176, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 176, $xla); - return 1; -}, -oncipj_Cypher_jj_2_178 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_178($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 177, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 177, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 177, $xla); - return 1; -}, -oncipj_Cypher_jj_2_179 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_179($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 178, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 178, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 178, $xla); - return 1; -}, -oncipj_Cypher_jj_2_180 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_180($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 179, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 179, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 179, $xla); - return 1; -}, -oncipj_Cypher_jj_2_181 = ($this, $xla) => { - let var$2, var$3, $$je; - $this.$jj_la = $xla; - var$2 = $this.$token; - $this.$jj_scanpos = var$2; - $this.$jj_lastpos = var$2; - a: { - b: { - c: { - try { - var$3 = oncipj_Cypher_jj_3_181($this) ? 0 : 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - break c; - } else{ - var$2 = $$je; - break b; - } - } - oncipj_Cypher_jj_save($this, 180, $xla); - return var$3; - } - try { - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - } - oncipj_Cypher_jj_save($this, 180, $xla); - $rt_throw(var$2); - } - oncipj_Cypher_jj_save($this, 180, $xla); - return 1; -}, -oncipj_Cypher_jj_3_15 = $this => { - if (oncipj_Cypher_jj_3R_91($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 142)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_16 = $this => { - if (oncipj_Cypher_jj_3R_91($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 204)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_95 = $this => { - let $xsp, var$2, var$3; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 262)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_19($this)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 152)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 153)) { - var$2 = 1; - break a; - } - } - } - var$2 = 0; - } - } - if (var$2) { - b: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 139)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_20($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 283)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 284)) { - var$2 = 1; - break b; - } - } - } - var$2 = 0; - } - } - if (var$2) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_19 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 152)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 89)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_20 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 283)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 89)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_122 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 172)) - return 0; - return 1; -}; -let oncipj_Cypher_jj_3_123 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 93)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 207)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 334)) - return 1; - } - } - if (!oncipj_Cypher_jj_scan_token($this, 172)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_124 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 93)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 207)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 334)) - return 1; - } - } - return 0; -}, -oncipj_Cypher_jj_3_18 = $this => { - if (!oncipj_Cypher_jj_3R_95($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_121 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_910 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_21($this)) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_111($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 213)) - return 1; - if (oncipj_Cypher_jj_3R_97($this)) - var$2 = 1; - else { - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_97($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - if (var$2) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_21 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 304)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_125 = $this => { - if (oncipj_Cypher_jj_3R_158($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 105)) - return 1; - if (!oncipj_Cypher_jj_3R_96($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_525 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_125($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_126($this)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_92($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 142) ? 1 : !oncipj_Cypher_jj_scan_token($this, 329) ? 0 : 1) - return 1; - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_126 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 142)) - return 1; - if (!oncipj_Cypher_jj_3R_158($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_726 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 346)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 81)) - return 1; - if (!oncipj_Cypher_jj_3R_92($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_871 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_97($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 81) ? 1 : !oncipj_Cypher_jj_3R_92($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_380 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 219) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 36)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_820 = $this => { - if (!oncipj_Cypher_jj_3R_554($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_110 = $this => { - let $xsp, var$2, var$3; - if (oncipj_Cypher_jj_scan_token($this, 205)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_158($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 105)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : oncipj_Cypher_jj_3R_158($this) ? 1 : oncipj_Cypher_jj_scan_token($this, 105) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 276)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_727 = $this => { - let $xsp, var$2, var$3, var$4; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 245) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 99)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 213)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 329) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_92($this)) - var$2 = 1; - else { - while (true) { - var$4 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_92($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$4; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$3; - } - var$2 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (var$2) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 205)) - return 1; - if (oncipj_Cypher_jj_3R_258($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 276)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 189)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_22($this)) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_scan_token($this, 112) ? 0 : 1) - $this.$jj_scanpos = var$3; - } - if (oncipj_Cypher_jj_scan_token($this, 336)) - var$2 = 1; - else { - while (true) { - a: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 241)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 295)) { - $this.$jj_scanpos = var$4; - if (oncipj_Cypher_jj_scan_token($this, 296)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - } - var$2 = !var$2 ? 0 : 1; - b: { - if (var$2) { - c: { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 243)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 164)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 117) ? 0 : 1) { - $this.$jj_scanpos = var$4; - if (!oncipj_Cypher_jj_scan_token($this, 94) ? 0 : 1) { - $this.$jj_scanpos = var$4; - if (oncipj_Cypher_jj_scan_token($this, 165)) { - var$2 = 1; - break c; - } - } - } - var$2 = 0; - } - } - if (!var$2 ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!(oncipj_Cypher_jj_scan_token($this, 287) ? 1 : oncipj_Cypher_jj_scan_token($this, 319) ? 1 : oncipj_Cypher_jj_scan_token($this, 81) ? 1 : !oncipj_Cypher_jj_3R_92($this) ? 0 : 1) ? 0 : 1) { - var$2 = 1; - break b; - } - } - } - var$2 = 0; - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - } - if (!var$2 ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_176 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 265)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 266)) - return 1; - } - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 265)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 266)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 107)) - return 1; - } - } - return 0; -}, -oncipj_Cypher_jj_3R_158 = $this => { - if (!oncipj_Cypher_jj_3R_97($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_325 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 137)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_92($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 36) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_90 = $this => { - let $xsp, var$2, var$3; - if (oncipj_Cypher_jj_3R_195($this)) - return 1; - if (oncipj_Cypher_jj_3R_97($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 213)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_127($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 76)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_22 = $this => { - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 112)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_127 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 140)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_195 = $this => { - let $xsp; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_128($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_128 = $this => { - if (oncipj_Cypher_jj_3R_97($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 142)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_789 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 132)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_92 = $this => { - if (!oncipj_Cypher_jj_3R_97($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_86 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 119)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 248) ? 0 : 1) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!(!oncipj_Cypher_jj_scan_token($this, 293) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 349) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 123) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 113) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - var$2 = !oncipj_Cypher_jj_scan_token($this, 96) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 274) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 173) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 326) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 259) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 354) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 212) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 190) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - } - } - } - } - var$2 = 0; - } - if (!var$2 ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 73) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 111) ? 0 : 1) ? 0 : 1) - return 1; - } - } - } - } - } - } - return 0; -}, -oncipj_Cypher_jj_3R_193 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_320($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_320($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_320 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_23($this)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_629($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - } - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_26($this)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_334($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_23 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 158)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_629($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_786 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 145)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_830 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_24($this)) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_902($this)) - var$2 = 1; - else { - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_29($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_24 = $this => { - if (oncipj_Cypher_jj_3R_97($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 158)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_787 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 77)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_25 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 205)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 36)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 276)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_879 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_25($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 205)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 36)) - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 107)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 36)) - $this.$jj_scanpos = var$3; - var$2 = !oncipj_Cypher_jj_scan_token($this, 276) ? 0 : 1; - } - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 257) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 329) ? 0 : 1) - return 1; - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_26 = $this => { - if (!oncipj_Cypher_jj_3R_98($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_98 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 311) ? 1 : oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_334($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 75) ? 1 : oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_334($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_334 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_3R_537($this)) - var$1 = 1; - else { - while (true) { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_537($this)) - continue; - else - break; - } - $this.$jj_scanpos = var$2; - var$1 = 0; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_133 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 349)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 130)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 174)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 175)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_129 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 364)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 359)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 360)) - return 1; - } - } - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 265)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 266)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 107)) - return 1; - } - } - return 0; -}, -oncipj_Cypher_jj_3_130 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 364)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 359)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 360)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 0)) - return 1; - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_28 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_100($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_27($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_131 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 364)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 359)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 360)) - return 1; - } - } - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 265)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 266)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 107)) - return 1; - } - } - return 0; -}, -oncipj_Cypher_jj_3R_537 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_28($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 213)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_320($this)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 297)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_879($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - } - if (!var$2 ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_132 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 364)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 359)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 360)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 0)) - return 1; - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_27 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_3R_105($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_879($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = 0; - } - if (var$1) - return 1; - if (!oncipj_Cypher_jj_3R_100($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_29 = $this => { - let var$1, var$2; - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_341($this) ? 0 : 1) - $this.$jj_scanpos = var$1; - a: { - if (oncipj_Cypher_jj_3R_113($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 204)) - var$2 = 1; - else { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_72($this)) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_119($this)) - var$2 = 1; - else { - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_110($this) ? 0 : 1) - $this.$jj_scanpos = var$1; - var$2 = 0; - } - if (var$2) { - var$2 = 1; - break a; - } - } - if (oncipj_Cypher_jj_scan_token($this, 275)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_113($this)) - var$2 = 1; - else { - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$1; - var$2 = 0; - } - } - } - if (var$2) - return 1; - if (!oncipj_Cypher_jj_3R_902($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_629 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_30($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_31($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_32($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_33($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_34($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 312)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 36)) - var$2 = 1; - else { - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 253)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 254)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - if (var$2) - return 1; - } - } - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_30 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 79)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 312)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 253)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 254)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_31 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 76)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 312)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 253)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 254)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - return 0; -}; -let oncipj_Cypher_jj_3_32 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 79)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 36)) - $this.$jj_scanpos = $xsp; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 253)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 254)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_33 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 76)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 253)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 254)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_34 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 312)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 36)) - $this.$jj_scanpos = $xsp; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 253)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 254)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 180)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 181)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_604 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 270)) - return 1; - if (!oncipj_Cypher_jj_3R_511($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_605 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 162)) - return 1; - if (!oncipj_Cypher_jj_3R_506($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_606 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 163)) - return 1; - if (!oncipj_Cypher_jj_3R_507($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_607 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 161)) - return 1; - if (!oncipj_Cypher_jj_3R_508($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_260 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_100($this)) - return 1; - if (oncipj_Cypher_jj_3_35($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_35($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_35 = $this => { - if (oncipj_Cypher_jj_3R_105($this)) - return 1; - if (!oncipj_Cypher_jj_3R_100($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_100 = $this => { - let $xsp, var$2, var$3; - if (oncipj_Cypher_jj_scan_token($this, 213)) - return 1; - $xsp = $this.$jj_scanpos; - if (!(!oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_3R_92($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_106($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 359) ? (!oncipj_Cypher_jj_3R_96($this) ? 0 : 1) : 1) - $this.$jj_scanpos = var$3; - var$2 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$2 ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_106($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$2 ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_108($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$2 ? 0 : 1) { - $this.$jj_scanpos = $xsp; - var$2 = oncipj_Cypher_jj_3R_106($this) ? 1 : oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1; - a: { - b: { - if (!var$2) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_106($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (!var$2) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_43($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_3R_92($this) ? 1 : oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_46($this)) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_106($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_108($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_560($this)) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (!var$2) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_452($this)) - break b; - var$2 = 1; - break a; - } - var$2 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$2 ? 0 : 1) - return 1; - } - } - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_36 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_37 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_38 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 105)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_39 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 105)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_40 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 205)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 137)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_511 = $this => { - let $xsp, var$2; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 162)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 161)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 340) ? 0 : 1) - return 1; - } - if (!oncipj_Cypher_jj_3R_506($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_374 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 81) ? 1 : !oncipj_Cypher_jj_3R_92($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_162 = $this => { - let $xsp, var$2, var$3; - if (oncipj_Cypher_jj_scan_token($this, 364)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 329) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_374($this)) - var$2 = 1; - else { - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_374($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - if (var$2) - return 1; - } - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 249)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 98)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_376($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_376($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - var$2 = oncipj_Cypher_jj_scan_token($this, 316) ? 1 : !oncipj_Cypher_jj_3R_380($this) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 242) ? 1 : !oncipj_Cypher_jj_3R_380($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 208) ? 1 : !oncipj_Cypher_jj_3R_380($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_504 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 190)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 191)) - return 1; - } - $xsp = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_scan_token($this, 95) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 355) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 250)) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - b: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break b; - } - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_43 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_108($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_41 = $this => { - if (oncipj_Cypher_jj_3R_106($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_46 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_106($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_42 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 137)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 79)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 76)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_44 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_452 = $this => { - if (!oncipj_Cypher_jj_3R_106($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_45 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_560 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (!oncipj_Cypher_jj_3R_96($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_47 = $this => { - if (oncipj_Cypher_jj_3R_106($this)) - return 1; - if (!oncipj_Cypher_jj_3R_108($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_902 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 213)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_48($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_49($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_50($this)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_110($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_92($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - } - } - } - } - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_48 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_109($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_110($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_49 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (!oncipj_Cypher_jj_3R_110($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_50 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_109($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_110($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_509 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 190)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 191)) - return 1; - } - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_51 = $this => { - if (!oncipj_Cypher_jj_3R_111($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_217 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_51($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : oncipj_Cypher_jj_scan_token($this, 137) ? 1 : oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_508 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 113)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 114)) - return 1; - } - $xsp = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_scan_token($this, 95) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 355) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 250)) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - b: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break b; - } - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_52 = $this => { - if (!oncipj_Cypher_jj_3R_97($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_53 = $this => { - if (!oncipj_Cypher_jj_3R_111($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_177 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_178 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 359)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_54 = $this => { - if (!oncipj_Cypher_jj_3R_111($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_218 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_54($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : oncipj_Cypher_jj_scan_token($this, 137) ? 1 : oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_507 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 113)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 114)) - return 1; - } - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 95)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 355)) { - var$2 = 1; - break a; - } - } - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 250)) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_55 = $this => { - if (!oncipj_Cypher_jj_3R_111($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_552 = $this => { - if (!oncipj_Cypher_jj_3R_106($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_506 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 113)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 114)) - return 1; - } - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_111 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 105)) - return 1; - if (!oncipj_Cypher_jj_3R_97($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_108 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_56($this)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_325($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_56 = $this => { - if (!oncipj_Cypher_jj_3R_110($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_105 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_341($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_113($this)) { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_113($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (!var$2 ? 0 : 1) { - a: { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 204)) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 275)) { - if (!oncipj_Cypher_jj_3R_113($this)) { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } else - var$2 = 1; - } else - var$2 = 1; - var$2 = !var$2 ? 0 : 1; - b: { - if (!var$2) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 275)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_113($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (!(!var$2 ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_106($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 275)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_113($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - } - if (!(!var$2 ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_106($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 275)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_113($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - } - if (!(!var$2 ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_108($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_572($this)) - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 275)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_113($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_573($this)) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - } - if (!(!var$2 ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_366($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_367($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_368($this)) - break b; - var$2 = 1; - break a; - } - var$2 = 0; - } else - var$2 = 1; - } - if (var$2) - return 1; - } - return 0; - } - return 1; -}; -let oncipj_Cypher_jj_3_134 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 121)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 349)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_64 = $this => { - if (!oncipj_Cypher_jj_3R_113($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_366 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_3R_112($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_scan_token($this, 275)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_113($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = 0; - } - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_367 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_3R_92($this)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_112($this)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 275)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_113($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = 0; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_57 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 275)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_368 = $this => { - let var$1, var$2, var$3; - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_106($this)) { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$3 = !oncipj_Cypher_jj_scan_token($this, 359) ? (!oncipj_Cypher_jj_3R_96($this) ? 0 : 1) : 1; - } else - var$3 = 1; - a: { - b: { - if (!var$3) - break b; - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_106($this)) - var$3 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$3 = 0; - } - if (!var$3) - break b; - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_92($this)) - var$3 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_3R_108($this)) - var$3 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$3 = 0; - } - } - if (!var$3) - break b; - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_92($this)) - var$3 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$3 = oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1; - } - if (!var$3) - break b; - $this.$jj_scanpos = var$1; - if (!(oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3_70($this)) - break b; - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_106($this)) - var$3 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_3R_108($this)) - var$3 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$3 = 0; - } - } - if (!var$3) - break b; - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_106($this)) - var$3 = 1; - else { - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = var$1; - var$3 = 0; - } - if (!var$3) - break b; - var$3 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 275)) - var$3 = 1; - else if (oncipj_Cypher_jj_3R_113($this)) - var$3 = 1; - else { - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_561($this) ? 0 : 1) - $this.$jj_scanpos = var$1; - var$3 = 0; - } - } - if (!var$3) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_58 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 275)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_59 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 105)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_60 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 105)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_61 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 205)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 137)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_62 = $this => { - if (!oncipj_Cypher_jj_3R_112($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_63 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_112($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 275)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_505 = $this => { - let $xsp, var$2, var$3, var$4; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 174)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 175)) - return 1; - } - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 159)) - var$2 = 1; - else { - a: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 98)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 121) ? 1 : !oncipj_Cypher_jj_scan_token($this, 349) ? 0 : 1) { - $this.$jj_scanpos = var$4; - if (!oncipj_Cypher_jj_3R_97($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - } - if (var$2) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - b: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_135 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 121)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 349)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_792 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 317)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_793 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 320)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_139 = $this => { - if (!oncipj_Cypher_jj_3R_164($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_136 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_159($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_162($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_137 = $this => { - if (!oncipj_Cypher_jj_3R_162($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_138 = $this => { - if (!oncipj_Cypher_jj_3R_163($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_572 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (!oncipj_Cypher_jj_3R_96($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_573 = $this => { - if (!oncipj_Cypher_jj_3R_561($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_179 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_173($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_162($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_180 = $this => { - if (!oncipj_Cypher_jj_3R_162($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_143 = $this => { - if (!oncipj_Cypher_jj_3R_164($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_181 = $this => { - if (!oncipj_Cypher_jj_3R_163($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_140 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_159($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_162($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_141 = $this => { - if (!oncipj_Cypher_jj_3R_162($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_142 = $this => { - if (!oncipj_Cypher_jj_3R_163($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_65 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_106($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 275)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_147 = $this => { - if (!oncipj_Cypher_jj_3R_164($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_66 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 137)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 79)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 76)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_70 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_106($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_108($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_144 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_159($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_162($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_67 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_108($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_145 = $this => { - if (!oncipj_Cypher_jj_3R_162($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_68 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 275)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_146 = $this => { - if (!oncipj_Cypher_jj_3R_163($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_69 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 275)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_71 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_106($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_112($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_108($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_164 = $this => { - let $xsp, var$2, var$3, var$4, var$5; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 325)) - var$2 = 1; - else { - a: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 335)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 336)) { - var$2 = 1; - break a; - } - } - var$3 = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_3R_164($this) ? 0 : 1; - b: { - if (var$2) { - c: { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_159($this)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$5 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$5; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = var$4; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break c; - } - } - var$2 = 0; - } - } - d: { - if (var$2) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$4; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_159($this) ? 0 : 1) { - var$2 = 1; - break d; - } - } - } - } - var$4 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = var$4; - var$2 = 0; - } - if (var$2) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - var$2 = !var$2 ? 0 : 1; - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_278($this)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_72 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_119($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_110($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_278 = $this => { - let $xsp, var$2, var$3; - if (oncipj_Cypher_jj_scan_token($this, 313)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 76)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_508($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_504($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_505($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - var$2 = 0; - } - } - b: { - if (!var$2) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 96) ? 1 : !oncipj_Cypher_jj_3R_504($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 97) ? 1 : oncipj_Cypher_jj_scan_token($this, 189) ? 1 : !oncipj_Cypher_jj_3R_505($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 162) ? 1 : !oncipj_Cypher_jj_3R_506($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 163) ? 1 : !oncipj_Cypher_jj_3R_507($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 161) ? 1 : !oncipj_Cypher_jj_3R_508($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 173) ? 1 : !oncipj_Cypher_jj_3R_509($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 199) ? 1 : !oncipj_Cypher_jj_3R_506($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 212) ? 1 : !oncipj_Cypher_jj_3R_509($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 231)) - var$2 = 1; - else { - c: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 344)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 345)) { - var$2 = 1; - break c; - } - } - var$2 = !oncipj_Cypher_jj_3R_506($this) ? 0 : 1; - } - d: { - if (var$2) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 199) ? 1 : !oncipj_Cypher_jj_3R_508($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_604($this)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_605($this)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_606($this)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_607($this)) { - var$2 = 1; - break d; - } - } - } - } - } - } - var$2 = 0; - } - var$2 = !var$2 ? 0 : 1; - } - if (!var$2) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_392($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_393($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_394($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_395($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_396($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_397($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_398($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_399($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_400($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_401($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_3R_508($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_403($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_404($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_405($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_406($this)) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_407($this)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_341 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 214)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 371)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_113 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 370)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 219)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_148 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 113)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 114)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_392 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 259)) - return 1; - if (!oncipj_Cypher_jj_3R_509($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_393 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 270)) - return 1; - if (!oncipj_Cypher_jj_3R_511($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_561 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 182)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 372)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_394 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 274)) - return 1; - if (!oncipj_Cypher_jj_3R_509($this)) - return 0; - return 1; -}; -let oncipj_Cypher_jj_3_149 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 190)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 191)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_395 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_scan_token($this, 283)) - return 1; - a: { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 344)) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 345)) { - var$2 = 1; - break a; - } - } - if (!oncipj_Cypher_jj_3R_506($this)) - var$2 = 0; - else - var$2 = 1; - } - b: { - if (var$2) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 199) ? 1 : !oncipj_Cypher_jj_3R_506($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 270) ? 1 : !oncipj_Cypher_jj_3R_511($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 162) ? 1 : !oncipj_Cypher_jj_3R_506($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 163) ? 1 : !oncipj_Cypher_jj_3R_507($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 161) ? 1 : !oncipj_Cypher_jj_3R_508($this) ? 0 : 1) { - var$2 = 1; - break b; - } - } - } - } - } - } - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_396 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_scan_token($this, 282)) - return 1; - a: { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 344)) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 345)) { - var$2 = 1; - break a; - } - } - if (!oncipj_Cypher_jj_3R_506($this)) - var$2 = 0; - else - var$2 = 1; - } - b: { - if (var$2) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 199) ? 1 : !oncipj_Cypher_jj_3R_506($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 270) ? 1 : !oncipj_Cypher_jj_3R_511($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 162) ? 1 : !oncipj_Cypher_jj_3R_506($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 161) ? 1 : !oncipj_Cypher_jj_3R_506($this) ? 0 : 1) { - var$2 = 1; - break b; - } - } - } - } - } - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_397 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 326)) - return 1; - if (!oncipj_Cypher_jj_3R_509($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_398 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 345)) - return 1; - if (!oncipj_Cypher_jj_3R_506($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_399 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 344)) - return 1; - if (!oncipj_Cypher_jj_3R_508($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_400 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 349)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 130)) - return 1; - if (!oncipj_Cypher_jj_3R_505($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_401 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 354)) - return 1; - if (!oncipj_Cypher_jj_3R_509($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_403 = $this => { - if (!oncipj_Cypher_jj_3R_505($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_112 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 329)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_73($this)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 36) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (!var$2 ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_404 = $this => { - if (!oncipj_Cypher_jj_3R_504($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_405 = $this => { - let var$1, var$2, var$3, var$4; - a: { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 267)) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 268)) { - var$2 = 1; - break a; - } - } - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 159)) - var$2 = 1; - else { - b: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 98)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 121) ? 1 : !oncipj_Cypher_jj_scan_token($this, 349) ? 0 : 1) { - $this.$jj_scanpos = var$4; - if (!oncipj_Cypher_jj_3R_97($this) ? 0 : 1) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - } - if (var$2) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$1; - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - c: { - if (var$2) { - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break c; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$1; - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = var$1; - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_406 = $this => { - let var$1, var$2, var$3, var$4; - a: { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 309)) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 310)) { - var$2 = 1; - break a; - } - } - var$1 = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_3R_164($this) ? 0 : 1; - b: { - if (var$2) { - c: { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_159($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$4; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break c; - } - } - var$2 = 0; - } - } - d: { - if (var$2) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_159($this) ? 0 : 1) { - var$2 = 1; - break d; - } - } - } - } - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$1; - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_407 = $this => { - let var$1, var$2, var$3, var$4; - a: { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 335)) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 336)) { - var$2 = 1; - break a; - } - } - var$1 = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_3R_164($this) ? 0 : 1; - b: { - if (var$2) { - c: { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_159($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$4; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - var$2 = 1; - break c; - } - } - var$2 = 0; - } - } - d: { - if (var$2) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_162($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_718($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_159($this) ? 0 : 1) { - var$2 = 1; - break d; - } - } - } - } - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_164($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$1; - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_159 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_169($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_169($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (!var$2 ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_150 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 113)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 114)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_151 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 174)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 175)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_152 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 190)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 191)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_73 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 36)) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 143)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 36)) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_153 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 267)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 268)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_154 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 309)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 310)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_155 = $this => { - if (oncipj_Cypher_jj_3R_169($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 107)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_106 = $this => { - let $xsp, var$2, var$3, var$4, var$5; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - $this.$jj_lookingAhead = 1; - var$2 = !ju_Vector_isEmpty($this.$labelExpressionStack) && ju_Stack_peek($this.$labelExpressionStack) === oncipj_ExpectBar_EXPECT_BAR ? 1 : 0; - b: { - c: { - $this.$jj_semLA = var$2; - $this.$jj_lookingAhead = 0; - if (var$2) { - if (oncipj_Cypher_jj_3R_124($this)) - var$2 = 1; - else { - while (true) { - d: { - var$4 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 88)) - var$2 = 1; - else { - var$5 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : !oncipj_Cypher_jj_3R_124($this) ? 0 : 1) { - $this.$jj_scanpos = var$5; - if (!oncipj_Cypher_jj_3R_124($this) ? 0 : 1) { - var$2 = 1; - break d; - } - } - var$2 = 0; - } - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = var$4; - var$2 = 0; - } - if (!(!var$2 ? 0 : 1)) - break c; - } - $this.$jj_scanpos = var$3; - $this.$jj_lookingAhead = 1; - var$2 = !ju_Vector_isEmpty($this.$labelExpressionStack) && ju_Stack_peek($this.$labelExpressionStack) !== oncipj_ExpectBar_DO_NOT_EXPECT_BAR ? 0 : 1; - $this.$jj_semLA = var$2; - $this.$jj_lookingAhead = 0; - if (!var$2) - break b; - if (!oncipj_Cypher_jj_3R_454($this) ? 0 : 1) - break b; - } - var$2 = 0; - break a; - } - var$2 = 1; - } - } - if (var$2) { - e: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 197)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - $this.$jj_lookingAhead = 1; - var$2 = !ju_Vector_isEmpty($this.$labelExpressionStack) && ju_Stack_peek($this.$labelExpressionStack) === oncipj_ExpectBar_EXPECT_BAR ? 1 : 0; - f: { - g: { - $this.$jj_semLA = var$2; - $this.$jj_lookingAhead = 0; - if (var$2) { - if (oncipj_Cypher_jj_3R_125($this)) - var$2 = 1; - else { - while (true) { - h: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 88)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : !oncipj_Cypher_jj_3R_125($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_125($this) ? 0 : 1) { - var$2 = 1; - break h; - } - } - var$2 = 0; - } - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - if (!(!var$2 ? 0 : 1)) - break g; - } - $this.$jj_scanpos = var$4; - $this.$jj_lookingAhead = 1; - var$2 = !ju_Vector_isEmpty($this.$labelExpressionStack) && ju_Stack_peek($this.$labelExpressionStack) !== oncipj_ExpectBar_DO_NOT_EXPECT_BAR ? 0 : 1; - $this.$jj_semLA = var$2; - $this.$jj_lookingAhead = 0; - if (!var$2) - break f; - if (!oncipj_Cypher_jj_3R_456($this) ? 0 : 1) - break f; - } - var$2 = 0; - break e; - } - var$2 = 1; - } - } - if (var$2) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_182 = $this => { - if (oncipj_Cypher_jj_3R_173($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 170)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_156 = $this => { - if (!oncipj_Cypher_jj_3R_170($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_157 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 243)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_173 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_321($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_325($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_158 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 170)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_159 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 186)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 237)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_454 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_124($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_74($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_74 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 88)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : !oncipj_Cypher_jj_3R_124($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_124($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_321 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_97($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 142) ? 1 : !oncipj_Cypher_jj_3R_97($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_160 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 84)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 163)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_304 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_170($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_170($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_456 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_125($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_75($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_75 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 88)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : !oncipj_Cypher_jj_3R_125($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_125($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_170 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_97($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_325($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_76 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 88)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105)) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_124($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 88)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_183 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_3R_176($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 107)) { - a: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 243)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 127)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 332)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 172)) { - var$2 = 1; - break a; - } - } - var$2 = oncipj_Cypher_jj_3R_304($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 0) ? 0 : 1; - } - } - if (var$2) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_184 = $this => { - if (oncipj_Cypher_jj_3R_176($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 142)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_77 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 88)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105)) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_125($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 88)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_185 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - var$2 = oncipj_Cypher_jj_scan_token($this, 142) ? 1 : !oncipj_Cypher_jj_3R_176($this) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 273) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 329) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 142) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_333($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - } - var$2 = 0; - } - if (var$2) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 107)) { - b: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 243)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 127)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 332)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 172)) { - var$2 = 1; - break b; - } - } - var$2 = oncipj_Cypher_jj_3R_304($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 0) ? 0 : 1; - } - } - if (var$2) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_124 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_130($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_78($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_78 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 202) ? 1 : !oncipj_Cypher_jj_3R_130($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : !oncipj_Cypher_jj_3R_130($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_186 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 142)) - return 1; - if (oncipj_Cypher_jj_3R_176($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 142)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 107)) { - a: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 243)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 127)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 332)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 172)) { - var$2 = 1; - break a; - } - } - var$2 = oncipj_Cypher_jj_3R_304($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 0) ? 0 : 1; - } - } - if (var$2) - return 1; - } - } - return 0; -}, -oncipj_Cypher_jj_3R_169 = $this => { - if (!oncipj_Cypher_jj_3R_279($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_157 = $this => { - if (!oncipj_Cypher_jj_3R_172($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_125 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_131($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_79($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_79 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 202) ? 1 : !oncipj_Cypher_jj_3R_131($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : !oncipj_Cypher_jj_3R_131($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_279 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 52)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 64)) - return 1; - } - return 0; -}; -let oncipj_Cypher_jj_3R_172 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_171($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_161($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_161 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 88)) - return 1; - if (!oncipj_Cypher_jj_3R_171($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_130 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_80($this)) { - $this.$jj_scanpos = $xsp; - var$2 = oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_454($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 220) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 137)) - var$2 = 1; - else { - b: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 76)) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_scan_token($this, 79) ? 0 : 1) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$3; - var$2 = oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_97($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - var$2 = 0; - } - if (!var$2 ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_80 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 203)) - return 1; - if (!oncipj_Cypher_jj_3R_130($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_171 = $this => { - let $xsp, var$2, var$3, var$4; - $xsp = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_scan_token($this, 238) ? 0 : 1; - a: { - if (!var$2) - break a; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 240) ? 0 : 1)) - break a; - b: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 91)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 90)) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (!var$2) - break a; - c: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 321)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 353)) { - var$2 = 1; - break c; - } - } - var$2 = 0; - } - if (!var$2) - break a; - d: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 195)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 314)) - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 196) ? 0 : 1) { - var$2 = 1; - break d; - } - } - var$2 = 0; - } - if (!var$2) - break a; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 169) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 125) ? 0 : 1)) - break a; - e: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 211)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 328) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_scan_token($this, 126) ? 0 : 1) { - var$2 = 1; - break e; - } - } - var$2 = 0; - } - } - if (!var$2) - break a; - f: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 366)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 328) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_scan_token($this, 126) ? 0 : 1) { - var$2 = 1; - break f; - } - } - var$2 = 0; - } - } - if (!var$2) - break a; - g: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 328)) - var$2 = 1; - else { - h: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 361)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 331)) { - $this.$jj_scanpos = var$4; - if (oncipj_Cypher_jj_scan_token($this, 328) ? 1 : !oncipj_Cypher_jj_scan_token($this, 365) ? 0 : 1) { - var$2 = 1; - break h; - } - } - var$2 = 0; - } - } - if (var$2) { - i: { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 360)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 331)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_925($this)) { - var$2 = 1; - break i; - } - } - var$2 = 0; - } - } - if (var$2) { - var$2 = 1; - break g; - } - } - var$2 = 0; - } - } - if (!var$2) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_292($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_293($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_294($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_295($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_296($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_297($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_298($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_299($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_300($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_301($this)) - break a; - return 1; - } - $xsp = $this.$jj_scanpos; - var$2 = oncipj_Cypher_jj_scan_token($this, 237) ? 1 : !oncipj_Cypher_jj_scan_token($this, 240) ? 0 : 1; - j: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 203)) { - var$2 = 1; - break j; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_857($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_131 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_81($this)) { - $this.$jj_scanpos = $xsp; - var$2 = oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_456($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 220) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 137)) - var$2 = 1; - else { - b: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 76)) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_scan_token($this, 79) ? 0 : 1) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$3; - var$2 = oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_251($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - var$2 = 0; - } - if (!var$2 ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_81 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 203)) - return 1; - if (!oncipj_Cypher_jj_3R_131($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_292 = $this => { - let $xsp, var$2, var$3; - if (oncipj_Cypher_jj_scan_token($this, 330)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 361)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 331)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 328) ? 1 : !oncipj_Cypher_jj_scan_token($this, 365) ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - } - if (var$2) { - b: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 360)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 331)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 328) ? 1 : !oncipj_Cypher_jj_scan_token($this, 365) ? 0 : 1) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - } - if (var$2) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_293 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 148)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_294 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 259)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_295 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 231)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 356)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_296 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 283)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 150)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_297 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 216)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_298 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 209)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 80)) - return 1; - } - if (oncipj_Cypher_jj_scan_token($this, 214)) - return 1; - if (oncipj_Cypher_jj_3R_157($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 182)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_299 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 253)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_300 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 270)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 352)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_301 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_scan_token($this, 79)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 231)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 356)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) { - b: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 283)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 150)) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 216) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 270) ? 1 : !oncipj_Cypher_jj_scan_token($this, 352) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_162($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 352)) - $this.$jj_scanpos = $xsp; - } - } - } - } - } - return 0; -}, -oncipj_Cypher_jj_3R_97 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_176($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_333($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_857 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 209)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 80)) - return 1; - } - $xsp = $this.$jj_scanpos; - var$2 = oncipj_Cypher_jj_scan_token($this, 237) ? 1 : !oncipj_Cypher_jj_scan_token($this, 240) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 203)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_162 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 352)) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 214)) - return 1; - if (oncipj_Cypher_jj_3R_172($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 182)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_925 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 328)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 365)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_176 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 68)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_109 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 197) ? 0 : 1) - return 1; - } - if (oncipj_Cypher_jj_3R_244($this)) - var$2 = 1; - else { - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_82($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_333 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_3R_473($this) ? 0 : 1; - a: { - if (!var$2) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 237)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 240)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 341)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 236)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 226)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 227)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 228)) - break a; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 229)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_119 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 105)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 197) ? 0 : 1) - return 1; - } - if (!oncipj_Cypher_jj_3R_244($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_164 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 243)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_163 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 163)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_251 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_176($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_473($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_82 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 202) ? 1 : !oncipj_Cypher_jj_3R_244($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 105)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_473 = $this => { - let $xsp; - a: { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 367)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 69)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 70)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 71)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 72)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 73)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 74)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 75)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 76)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 77)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 78)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 79)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 80)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 81)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 82)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 83)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 84)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 85)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 86)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 87)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 89)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 90)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 91)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 92)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 93)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 94)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 95)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 96)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 97)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 98)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 99)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 100)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 101)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 102)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 103)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 104)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 108)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 109)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 110)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 111)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 112)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 113)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 114)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 115)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 117)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 116)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 118)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 119)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 120)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 121)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 122)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 123)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 124)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 125)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 126)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 127)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 128)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 129)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 130)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 131)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 132)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 133)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 134)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 135)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 136)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 139)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 140)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 144)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 145)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 146)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 147)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 148)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 149)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 150)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 152)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 153)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 154)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 151)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 155)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 156)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 157)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 164)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 159)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 160)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 161)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 162)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 163)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 165)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 166)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 167)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 168)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 169)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 171)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 170)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 172)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 173)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 174)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 175)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 177)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 178)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 179)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 180)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 181)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 183)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 184)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 185)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 186)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 188)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 189)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 190)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 191)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 192)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 193)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 194)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 195)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 196)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 187)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 197)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 198)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 199)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 200)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 201)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 207)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 208)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 209)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 210)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 211)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 212)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 217)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 215)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 216)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 218)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 223)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 224)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 225)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 230)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 231)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 232)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 233)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 234)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 235)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 238)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 239)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 241)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 242)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 243)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 244)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 245)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 246)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 247)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 248)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 249)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 250)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 251)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 252)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 253)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 254)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 255)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 256)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 259)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 260)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 263)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 264)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 265)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 266)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 267)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 268)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 269)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 270)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 271)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 272)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 274)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 277)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 278)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 279)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 282)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 283)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 284)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 285)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 280)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 262)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 286)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 287)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 288)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 289)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 290)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 291)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 292)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 293)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 294)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 295)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 296)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 298)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 299)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 300)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 301)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 302)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 303)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 304)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 306)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 307)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 308)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 309)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 310)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 312)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 311)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 313)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 314)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 315)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 316)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 317)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 318)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 319)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 320)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 321)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 322)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 323)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 324)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 325)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 326)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 327)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 328)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 330)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 331)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 332)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 333)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 334)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 335)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 336)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 337)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 338)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 339)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 340)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 342)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 343)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 344)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 345)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 346)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 347)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 348)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 349)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 350)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 351)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 352)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 353)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 354)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 355)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 356)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 357)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 358)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 359)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 360)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 361)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 362)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 363)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 364)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 365)) - break a; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 366)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_244 = $this => { - if (!oncipj_Cypher_jj_3R_97($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_96 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_3R_331($this)) - var$1 = 1; - else { - while (true) { - var$2 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 248) ? 1 : !oncipj_Cypher_jj_3R_331($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$2; - var$1 = 0; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_165 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 243)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 105)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_331 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_443($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 363) ? 1 : !oncipj_Cypher_jj_3R_443($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_443 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_133($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 78) ? 1 : !oncipj_Cypher_jj_3R_133($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_133 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_83($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_134($this)) - var$2 = 1; - else { - while (true) { - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_84($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 221) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 222) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 206) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 176) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 214) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 182) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - } - } - } - var$2 = 0; - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - if (!var$2 ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_83 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 237)) - return 1; - if (!oncipj_Cypher_jj_3R_133($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_166 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 170)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_167 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 186)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 237)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_84 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 158)) - return 1; - if (!oncipj_Cypher_jj_3R_134($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_168 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 170)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_169 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 186)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 237)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_85 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 158)) - return 1; - if (!oncipj_Cypher_jj_3R_134($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_1 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_scan_token($this, 305)) - return 1; - var$1 = $this.$jj_scanpos; - if (!(!oncipj_Cypher_jj_scan_token($this, 351) ? 0 : 1) ? 0 : 1) - $this.$jj_scanpos = var$1; - var$1 = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_3R_311($this) ? 0 : 1; - a: { - if (var$2) { - b: { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3_3($this)) { - $this.$jj_scanpos = var$1; - var$2 = !oncipj_Cypher_jj_3R_786($this) ? 0 : 1; - c: { - d: { - if (!var$2) - break d; - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_3R_787($this) ? 0 : 1)) - break d; - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_3R_788($this) ? 0 : 1)) - break d; - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_3R_789($this) ? 0 : 1)) - break d; - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_3R_790($this) ? 0 : 1)) - break d; - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_3R_791($this) ? 0 : 1)) - break d; - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_3R_792($this) ? 0 : 1)) - break d; - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_3R_793($this) ? 0 : 1)) - break d; - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_3R_794($this) ? 0 : 1)) - break d; - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_795($this) ? 0 : 1) { - var$2 = 1; - break c; - } - } - var$2 = 0; - } - var$2 = !var$2 ? 0 : 1; - e: { - if (var$2) { - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_scan_token($this, 313) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (!(!oncipj_Cypher_jj_scan_token($this, 325) ? 0 : 1) ? 0 : 1) { - var$2 = 1; - break e; - } - } - } - var$2 = 0; - } - if (!var$2 ? 0 : 1) { - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_359($this) ? 0 : 1) { - var$2 = 1; - break b; - } - } - } - var$2 = 0; - } - if (!var$2 ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_134 = $this => { - let $xsp, var$2, var$3, var$4; - if (oncipj_Cypher_jj_3R_135($this)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_86($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 318) ? 1 : oncipj_Cypher_jj_scan_token($this, 360) ? 1 : !oncipj_Cypher_jj_3R_135($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 157) ? 1 : oncipj_Cypher_jj_scan_token($this, 360) ? 1 : !oncipj_Cypher_jj_3R_135($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 115) ? 1 : !oncipj_Cypher_jj_3R_135($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 189) ? 1 : !oncipj_Cypher_jj_3R_135($this) ? 0 : 1) { - b: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 197)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 240) ? 0 : 1) { - c: { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 237)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 240) ? 0 : 1) { - d: { - $this.$jj_scanpos = var$4; - if (oncipj_Cypher_jj_scan_token($this, 341)) { - $this.$jj_scanpos = var$4; - if (oncipj_Cypher_jj_scan_token($this, 106)) { - var$2 = 1; - break d; - } - } - var$2 = !oncipj_Cypher_jj_3R_157($this) ? 0 : 1; - } - if (var$2) { - $this.$jj_scanpos = var$4; - if (oncipj_Cypher_jj_3R_156($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 236) ? 0 : 1) { - var$2 = 1; - break c; - } - } - } - var$2 = 0; - } - } - if (var$2) { - e: { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 341)) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 106)) { - var$2 = 1; - break e; - } - } - var$2 = !oncipj_Cypher_jj_3R_157($this) ? 0 : 1; - } - if (var$2) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_156($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 236) ? 0 : 1) { - var$2 = 1; - break b; - } - } - } - } - var$2 = 0; - } - } - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 106) ? 1 : !oncipj_Cypher_jj_3R_157($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - } - } - } - var$2 = 0; - } - if (!var$2 ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_86 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 281)) - return 1; - if (!oncipj_Cypher_jj_3R_135($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_170 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 170)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_171 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 186)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 237)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_3 = $this => { - if (!oncipj_Cypher_jj_3R_86($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_173 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 243)) - return 1; - if (!oncipj_Cypher_jj_3R_111($this)) - return 0; - return 1; -}; -let oncipj_Cypher_jj_3R_156 = $this => { - let $xsp, var$2; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 226)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 227) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 228) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_scan_token($this, 229) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_135 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_3R_248($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - var$2 = oncipj_Cypher_jj_scan_token($this, 257) ? 1 : !oncipj_Cypher_jj_3R_248($this) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 219) ? 1 : !oncipj_Cypher_jj_3R_248($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 138) ? 1 : !oncipj_Cypher_jj_3R_248($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - var$2 = 0; - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_4 = $this => { - if (!oncipj_Cypher_jj_3R_86($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_2 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 305)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_788 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 280)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_248 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_3R_351($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - var$2 = oncipj_Cypher_jj_scan_token($this, 329) ? 1 : !oncipj_Cypher_jj_3R_351($this) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 141) ? 1 : !oncipj_Cypher_jj_3R_351($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 220) ? 1 : !oncipj_Cypher_jj_3R_351($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - var$2 = 0; - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_258 = $this => { - let $xsp, var$2, var$3; - if (oncipj_Cypher_jj_3R_359($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 343)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_scan_token($this, 76) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 140)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$3; - var$2 = !oncipj_Cypher_jj_3R_359($this) ? 0 : 1; - } - if (!(!var$2 ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_172 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 149)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_791 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 177)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_351 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_467($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 261) ? 1 : !oncipj_Cypher_jj_3R_467($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_467 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_87($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 257) ? 1 : !oncipj_Cypher_jj_3R_136($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 219) ? 1 : !oncipj_Cypher_jj_3R_136($this) ? 0 : 1) - return 1; - } - } - return 0; -}, -oncipj_Cypher_jj_3_87 = $this => { - if (!oncipj_Cypher_jj_3R_136($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_359 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_474($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_474($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_474 = $this => { - if (!oncipj_Cypher_jj_3R_554($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_790 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 292)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_136 = $this => { - let $xsp, var$2, var$3; - if (oncipj_Cypher_jj_3R_91($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_3R_551($this) ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_552($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_552($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 204) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 275) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 204)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 143)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = !oncipj_Cypher_jj_scan_token($this, 275) ? 0 : 1; - } - } - if (var$2) { - var$2 = 1; - break a; - } - } - } - } - } - var$2 = 0; - } - if (!(!var$2 ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_174 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 215)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 243)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_88 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 142)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 204)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 105)) { - a: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 197)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 203)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 220)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 213)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_251($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - var$2 = 0; - } - } - if (var$2) - return 1; - } - } - } - return 0; -}, -oncipj_Cypher_jj_3R_554 = $this => { - let $xsp, var$2, var$3, var$4; - $xsp = $this.$jj_scanpos; - var$2 = !oncipj_Cypher_jj_3R_311($this) ? 0 : 1; - a: { - if (!var$2) - break a; - $this.$jj_scanpos = $xsp; - if (!(!(!oncipj_Cypher_jj_scan_token($this, 168) ? 0 : 1) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_3R_718($this) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!(!(!oncipj_Cypher_jj_scan_token($this, 119) ? (!oncipj_Cypher_jj_3R_193($this) ? 0 : 1) : 1) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 194)) - var$2 = 1; - else { - if (oncipj_Cypher_jj_3R_830($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_830($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - var$2 = !var$2 ? 0 : 1; - } - if (!(!var$2 ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - var$2 = !oncipj_Cypher_jj_scan_token($this, 136) ? 0 : 1; - b: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 232)) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 131)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (!(!var$2 ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_3R_722($this) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 285)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_810($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_810($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (!(!var$2 ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_5($this)) - break a; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 218)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_320($this)) - var$2 = 1; - else { - while (true) { - c: { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 243)) - var$2 = 1; - else { - var$4 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 217) ? 1 : !oncipj_Cypher_jj_3R_722($this) ? 0 : 1) { - $this.$jj_scanpos = var$4; - if (oncipj_Cypher_jj_scan_token($this, 119) ? 1 : !oncipj_Cypher_jj_3R_722($this) ? 0 : 1) { - var$2 = 1; - break c; - } - } - var$2 = 0; - } - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (!(!var$2 ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_3R_725($this) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_3R_726($this) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_6($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_3R_727($this) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_660($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_661($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_662($this)) - break a; - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_175 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 293)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 215)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 243)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_794 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 151)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_89 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 105)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_551 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 142)) - return 1; - if (!oncipj_Cypher_jj_3R_158($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_5 = $this => { - let var$1, var$2, var$3, var$4; - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 245) ? 0 : 1) - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 217)) - var$2 = 1; - else { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_18($this)) - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_193($this)) - var$2 = 1; - else { - while (true) { - a: { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 351)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 190) ? 1 : !oncipj_Cypher_jj_3R_910($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 96) ? 1 : oncipj_Cypher_jj_scan_token($this, 190) ? 1 : !oncipj_Cypher_jj_3R_910($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 326) ? 1 : oncipj_Cypher_jj_scan_token($this, 190) ? 1 : !oncipj_Cypher_jj_3R_910($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 274) ? 1 : oncipj_Cypher_jj_scan_token($this, 190) ? 1 : !oncipj_Cypher_jj_3R_910($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 259) ? 1 : oncipj_Cypher_jj_scan_token($this, 190) ? 1 : !oncipj_Cypher_jj_3R_910($this) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 198)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 243)) - var$2 = 1; - else { - if (oncipj_Cypher_jj_3R_97($this)) - var$2 = 1; - else { - while (true) { - var$4 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_97($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$4; - var$2 = 0; - } - var$2 = !var$2 ? 0 : 1; - } - if (var$2) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 298) ? 1 : oncipj_Cypher_jj_3R_92($this) ? 1 : !oncipj_Cypher_jj_3R_111($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - } - } - } - } - var$2 = 0; - } - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) - $this.$jj_scanpos = var$1; - var$2 = 0; - } - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_90 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 203)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 220)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 213)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_251($this) ? 0 : 1) - return 1; - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_91 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 204)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 275)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_6 = $this => { - let var$1, var$2, var$3, var$4; - var$1 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 245) ? 0 : 1) - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 99)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_195($this)) - var$2 = 1; - else if (!oncipj_Cypher_jj_3R_97($this) ? 0 : 1) - var$2 = 1; - else { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 213)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else { - while (true) { - var$4 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$4; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = var$3; - var$2 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (var$2) - $this.$jj_scanpos = var$1; - a: { - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 364)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 329) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_3R_871($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_871($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - } - if (var$2) - $this.$jj_scanpos = var$1; - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_660 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_scan_token($this, 210)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 120)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 360) ? 1 : !oncipj_Cypher_jj_scan_token($this, 183) ? 0 : 1) - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_scan_token($this, 172)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 81)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_92($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 167) ? 1 : !oncipj_Cypher_jj_3R_279($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = 0; - } - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_661 = $this => { - let var$1, var$2; - a: { - if (oncipj_Cypher_jj_scan_token($this, 171)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 213)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_3R_92($this)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 189)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_3R_96($this)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 88)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_3R_820($this)) { - var$1 = 1; - break a; - } - while (true) { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_820($this)) - continue; - else - break; - } - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_scan_token($this, 297)) { - var$1 = 0; - break a; - } - var$1 = 1; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_662 = $this => { - let var$1, var$2, var$3; - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 249)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 98)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_376($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_376($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_3R_797($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_798($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - a: { - if (var$2) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_3R_797($this)) - var$2 = 1; - else { - var$3 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_798($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) { - $this.$jj_scanpos = var$1; - if (!oncipj_Cypher_jj_3R_798($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - } - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_860 = $this => { - if (oncipj_Cypher_jj_3R_91($this)) - return 1; - if (!(oncipj_Cypher_jj_scan_token($this, 204) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 275) ? 0 : 1)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_311 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 348)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_7($this)) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_89($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3_7 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 178)) - return 1; - if (!oncipj_Cypher_jj_3R_89($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_859 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_91($this)) - return 1; - if (oncipj_Cypher_jj_3R_903($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_903($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_89 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_89($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_90($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_321($this) ? 0 : 1) - return 1; - } - } - return 0; -}, -oncipj_Cypher_jj_3_8 = $this => { - if (!oncipj_Cypher_jj_3R_90($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_91 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 219) ? 0 : 1) - $this.$jj_scanpos = $xsp; - var$2 = $this.$jj_scanpos; - var$3 = !oncipj_Cypher_jj_scan_token($this, 35) ? 0 : 1; - a: { - if (var$3) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_scan_token($this, 36) ? 0 : 1) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_scan_token($this, 39) ? 0 : 1) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_scan_token($this, 40) ? 0 : 1) { - var$3 = 1; - break a; - } - } - } - } - var$3 = 0; - } - var$3 = !var$3 ? 0 : 1; - b: { - if (!var$3) - break b; - $this.$jj_scanpos = $xsp; - if (!(!(!oncipj_Cypher_jj_3R_279($this) ? 0 : 1) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_3R_325($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 339) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 166) ? 0 : 1)) - break b; - c: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 193)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 192)) { - var$3 = 1; - break c; - } - } - var$3 = 0; - } - if (!var$3) - break b; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 225) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_92($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_93($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_94($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_95($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_96($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_97($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_98($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_99($this)) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 204)) - var$3 = 1; - else if (oncipj_Cypher_jj_3R_92($this)) - var$3 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 189)) - var$3 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$3 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 88) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$3 = !oncipj_Cypher_jj_scan_token($this, 275) ? 0 : 1; - } - if (!(!var$3 ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_3R_327($this) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_102($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_103($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_104($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_105($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_106($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_107($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_108($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_109($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!(!(!oncipj_Cypher_jj_3R_260($this) ? 0 : 1) ? 0 : 1)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_111($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_214($this)) - break b; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_215($this)) - break b; - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_216($this)) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_903 = $this => { - if (!oncipj_Cypher_jj_3R_551($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_795 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 146) ? 0 : 1) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!(!oncipj_Cypher_jj_scan_token($this, 128) ? 0 : 1) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!(!oncipj_Cypher_jj_scan_token($this, 278) ? 0 : 1) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_718 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 291)) - return 1; - if (!oncipj_Cypher_jj_3R_799($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_92 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 240)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_93 = $this => { - let var$1, var$2, var$3; - var$1 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 101)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 358)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_630($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 327)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 358) ? 1 : oncipj_Cypher_jj_3R_630($this) ? 1 : oncipj_Cypher_jj_scan_token($this, 327) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - if (oncipj_Cypher_jj_scan_token($this, 154) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$3; - var$2 = !oncipj_Cypher_jj_scan_token($this, 156) ? 0 : 1; - } - var$2 = !var$2 ? 0 : 1; - a: { - if (var$2) { - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 101)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 358)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 327)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$2 = 1; - else { - while (true) { - var$1 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 358) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : oncipj_Cypher_jj_scan_token($this, 327) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$1; - if (oncipj_Cypher_jj_scan_token($this, 154) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$1; - var$2 = !oncipj_Cypher_jj_scan_token($this, 156) ? 0 : 1; - } - if (!var$2 ? 0 : 1) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (!var$2) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_94 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 118)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 213)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 329)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_95 = $this => { - if (!oncipj_Cypher_jj_3R_110($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_96 = $this => { - let var$1, var$2; - a: { - if (oncipj_Cypher_jj_scan_token($this, 163)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 205)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_258($this) ? 0 : 1) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_3R_95($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_3R_193($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = 0; - } - if (var$1) { - var$1 = 1; - break a; - } - } - if (!oncipj_Cypher_jj_scan_token($this, 276)) - var$1 = 0; - else - var$1 = 1; - } - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_97 = $this => { - let var$1, var$2; - a: { - if (oncipj_Cypher_jj_scan_token($this, 118)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 205)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_258($this) ? 0 : 1) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_3R_95($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_3R_193($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = 0; - } - if (var$1) { - var$1 = 1; - break a; - } - } - if (!oncipj_Cypher_jj_scan_token($this, 276)) - var$1 = 0; - else - var$1 = 1; - } - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_98 = $this => { - if (!(oncipj_Cypher_jj_scan_token($this, 104) ? 1 : oncipj_Cypher_jj_scan_token($this, 205) ? 1 : oncipj_Cypher_jj_3R_258($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 276) ? 0 : 1)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_99 = $this => { - let var$1, var$2, var$3; - if (oncipj_Cypher_jj_3R_92($this)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 205)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_525($this)) - var$1 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_525($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$1 = 0; - } - if (var$1) - $this.$jj_scanpos = var$2; - var$1 = !oncipj_Cypher_jj_scan_token($this, 276) ? 0 : 1; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_102 = $this => { - let var$1, var$2, var$3; - if (oncipj_Cypher_jj_scan_token($this, 204)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_96($this)) - var$1 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$1 = 0; - } - if (var$1) - $this.$jj_scanpos = var$2; - var$1 = !oncipj_Cypher_jj_scan_token($this, 275) ? 0 : 1; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_103 = $this => { - let var$1; - a: { - if (oncipj_Cypher_jj_scan_token($this, 279)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 213)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_3R_92($this)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 158)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_3R_96($this)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 107)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_3R_92($this)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 189)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_3R_96($this)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_scan_token($this, 88)) { - var$1 = 1; - break a; - } - if (oncipj_Cypher_jj_3R_96($this)) { - var$1 = 1; - break a; - } - if (!oncipj_Cypher_jj_scan_token($this, 297)) { - var$1 = 0; - break a; - } - var$1 = 1; - } - if (!var$1) - return 0; - return 1; -}; -let oncipj_Cypher_jj_3_104 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_scan_token($this, 76)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 213)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_92($this)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 189)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_105 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_scan_token($this, 79)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 213)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_92($this)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 189)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_106 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_scan_token($this, 234)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 213)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_92($this)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 189)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_107 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_scan_token($this, 315)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 213)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_92($this)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 189)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = var$2; - var$1 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_108 = $this => { - let var$1, var$2, var$3; - if (oncipj_Cypher_jj_scan_token($this, 235)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 213)) - var$1 = 1; - else if (oncipj_Cypher_jj_3R_96($this)) - var$1 = 1; - else { - a: { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 107)) - var$1 = 1; - else { - var$3 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 226)) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_scan_token($this, 227) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_scan_token($this, 228) ? 0 : 1) { - $this.$jj_scanpos = var$3; - if (!oncipj_Cypher_jj_scan_token($this, 229) ? 0 : 1) { - var$1 = 1; - break a; - } - } - } - } - var$1 = 0; - } - } - if (var$1) - $this.$jj_scanpos = var$2; - var$1 = !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_109 = $this => { - let var$1, var$2; - a: { - if (oncipj_Cypher_jj_scan_token($this, 338)) - var$1 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 213)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 172) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - b: { - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_scan_token($this, 93)) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_scan_token($this, 207) ? 0 : 1) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_scan_token($this, 334) ? 0 : 1) { - var$1 = 1; - break b; - } - } - } - var$1 = oncipj_Cypher_jj_scan_token($this, 172) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (var$1) { - c: { - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_scan_token($this, 93)) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_scan_token($this, 207) ? 0 : 1) { - $this.$jj_scanpos = var$2; - if (!oncipj_Cypher_jj_scan_token($this, 334) ? 0 : 1) { - var$1 = 1; - break c; - } - } - } - var$1 = oncipj_Cypher_jj_3R_96($this) ? 1 : oncipj_Cypher_jj_scan_token($this, 172) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1; - } - if (var$1) { - d: { - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_3R_96($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_scan_token($this, 172) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - var$1 = 1; - break d; - } - } - var$1 = 0; - } - } - if (var$1) { - var$1 = 1; - break a; - } - } - } - } - var$1 = 0; - } - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_100 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 204)) - return 1; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 189)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 88)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 275)) - return 1; - } - } - return 0; -}, -oncipj_Cypher_jj_3_111 = $this => { - if (!(!oncipj_Cypher_jj_3R_98($this) ? 0 : 1)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_101 = $this => { - let var$1, var$2; - a: { - if (oncipj_Cypher_jj_scan_token($this, 204)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_92($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 158) ? 0 : 1) - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_3R_260($this)) - var$1 = 1; - else { - var$2 = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359)) { - $this.$jj_scanpos = var$2; - if (oncipj_Cypher_jj_scan_token($this, 88)) { - var$1 = 1; - break a; - } - } - var$1 = 0; - } - } - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_214 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 213)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 297)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_799 = $this => { - let $xsp, var$2, var$3; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_9($this)) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 329)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_885($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - a: { - if (var$2) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_885($this)) - var$2 = 1; - else { - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_885($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - if (var$2) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 249)) - var$2 = 1; - else if (oncipj_Cypher_jj_scan_token($this, 98)) - var$2 = 1; - else if (oncipj_Cypher_jj_3R_376($this)) - var$2 = 1; - else { - while (true) { - var$3 = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_376($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = var$3; - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_797($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_798($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_9 = $this => { - if (!oncipj_Cypher_jj_scan_token($this, 140)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_215 = $this => { - if (!oncipj_Cypher_jj_3R_90($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_216 = $this => { - if (!oncipj_Cypher_jj_3R_92($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_110 = $this => { - if (oncipj_Cypher_jj_3R_100($this)) - return 1; - if (!oncipj_Cypher_jj_3R_105($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_112 = $this => { - let $xsp; - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_3R_97($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 142) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_97($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 213)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_885 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 81) ? 1 : !oncipj_Cypher_jj_3R_92($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3_113 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 101)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 358)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_630 = $this => { - let $xsp; - if (oncipj_Cypher_jj_3R_155($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3_114($this)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_376 = $this => { - let $xsp, var$2; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - a: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 133)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 134)) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - if (var$2) { - b: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 82)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 83)) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (var$2) - $this.$jj_scanpos = $xsp; - } - return 0; -}, -oncipj_Cypher_jj_3_114 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 107)) - return 1; - if (!oncipj_Cypher_jj_3R_155($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_797 = $this => { - let $xsp; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 242)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 316)) - return 1; - } - if (!oncipj_Cypher_jj_3R_96($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_155 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - var$2 = oncipj_Cypher_jj_scan_token($this, 281) ? 1 : !oncipj_Cypher_jj_3R_135($this) ? 0 : 1; - a: { - if (!var$2) - break a; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 318) ? 1 : oncipj_Cypher_jj_scan_token($this, 360) ? 1 : !oncipj_Cypher_jj_3R_135($this) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 157) ? 1 : oncipj_Cypher_jj_scan_token($this, 360) ? 1 : !oncipj_Cypher_jj_3R_135($this) ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_115($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_116($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_117($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_118($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_119($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3_120($this)) - break a; - $this.$jj_scanpos = $xsp; - if (!(oncipj_Cypher_jj_scan_token($this, 106) ? 1 : !oncipj_Cypher_jj_3R_157($this) ? 0 : 1)) - break a; - b: { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_85($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 221) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 222) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 206) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 176) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 214) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 182) ? 1 : !oncipj_Cypher_jj_3R_134($this) ? 0 : 1) { - var$2 = 1; - break b; - } - } - } - } - } - } - } - var$2 = 0; - } - if (!(!var$2 ? 0 : 1)) - break a; - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - return 1; - } - return 0; -}, -oncipj_Cypher_jj_3R_798 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 208)) - return 1; - if (!oncipj_Cypher_jj_3R_96($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_115 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 240)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_116 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 237)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 240)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_117 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - if (oncipj_Cypher_jj_3R_156($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 236)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_118 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 237)) - return 1; - if (oncipj_Cypher_jj_3R_156($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 236)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_119 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 341)) - return 1; - if (!oncipj_Cypher_jj_3R_157($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_120 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 197)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 237)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 341)) - return 1; - if (!oncipj_Cypher_jj_3R_157($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_163 = $this => { - if (oncipj_Cypher_jj_scan_token($this, 359)) - return 1; - if (!oncipj_Cypher_jj_3R_96($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_725 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 360)) - return 1; - if (oncipj_Cypher_jj_3R_799($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_163($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_327 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 204)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_92($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 158) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_260($this)) - return 1; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 359) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 88)) - return 1; - if (oncipj_Cypher_jj_3R_96($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 275)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_722 = $this => { - let $xsp; - if (oncipj_Cypher_jj_scan_token($this, 308)) - return 1; - if (oncipj_Cypher_jj_3R_808($this)) - return 1; - while (true) { - $xsp = $this.$jj_scanpos; - if (!(oncipj_Cypher_jj_scan_token($this, 107) ? 1 : !oncipj_Cypher_jj_3R_808($this) ? 0 : 1)) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - return 0; -}, -oncipj_Cypher_jj_3R_808 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3R_859($this) ? 1 : oncipj_Cypher_jj_scan_token($this, 158) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_860($this) ? 1 : oncipj_Cypher_jj_scan_token($this, 158) ? 1 : !oncipj_Cypher_jj_3R_96($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_12($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_13($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_14($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - var$2 = 1; - else { - a: { - if (oncipj_Cypher_jj_scan_token($this, 197)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_52($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 137) ? 1 : oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - var$2 = 1; - break a; - } - } - while (true) { - b: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_53($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : oncipj_Cypher_jj_scan_token($this, 137) ? 1 : oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - } - var$2 = !var$2 ? 0 : 1; - } - if (var$2) - return 1; - } - } - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_12 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 158)) - return 1; - if (!oncipj_Cypher_jj_3R_96($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_13 = $this => { - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_scan_token($this, 258)) - return 1; - if (!oncipj_Cypher_jj_3R_96($this)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_14 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_217($this)) - var$1 = 1; - else { - while (true) { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_217($this)) - continue; - else - break; - } - $this.$jj_scanpos = var$2; - var$1 = 0; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_10 = $this => { - if (oncipj_Cypher_jj_3R_91($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 142)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3_11 = $this => { - if (oncipj_Cypher_jj_3R_91($this)) - return 1; - if (!oncipj_Cypher_jj_scan_token($this, 204)) - return 0; - return 1; -}, -oncipj_Cypher_jj_3R_810 = $this => { - let $xsp, var$2; - $xsp = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_859($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_860($this) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3_17($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_3R_92($this)) - var$2 = 1; - else { - a: { - if (oncipj_Cypher_jj_scan_token($this, 197)) - var$2 = 1; - else { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_scan_token($this, 137) ? 1 : oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - $this.$jj_scanpos = $xsp; - if (!oncipj_Cypher_jj_3R_97($this) ? 0 : 1) { - var$2 = 1; - break a; - } - } - while (true) { - b: { - $xsp = $this.$jj_scanpos; - if (oncipj_Cypher_jj_3_55($this)) { - $this.$jj_scanpos = $xsp; - if (oncipj_Cypher_jj_scan_token($this, 105) ? 1 : oncipj_Cypher_jj_scan_token($this, 137) ? 1 : oncipj_Cypher_jj_scan_token($this, 213) ? 1 : oncipj_Cypher_jj_3R_96($this) ? 1 : !oncipj_Cypher_jj_scan_token($this, 297) ? 0 : 1) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - if (!var$2) - continue; - else - break; - } - $this.$jj_scanpos = $xsp; - var$2 = 0; - } - } - var$2 = !var$2 ? 0 : 1; - } - if (var$2) - return 1; - } - } - } - return 0; -}, -oncipj_Cypher_jj_3_17 = $this => { - let var$1, var$2; - if (oncipj_Cypher_jj_3R_92($this)) - return 1; - if (oncipj_Cypher_jj_3R_218($this)) - var$1 = 1; - else { - while (true) { - var$2 = $this.$jj_scanpos; - if (!oncipj_Cypher_jj_3R_218($this)) - continue; - else - break; - } - $this.$jj_scanpos = var$2; - var$1 = 0; - } - if (!var$1) - return 0; - return 1; -}, -oncipj_Cypher_jj_la1_init_0 = () => { - oncipj_Cypher_jj_la1_0 = $rt_createIntArrayFromData([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); -}, -oncipj_Cypher_jj_la1_init_1 = () => { - oncipj_Cypher_jj_la1_1 = $rt_createIntArrayFromData([0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048984, 1048984, 0, 0, 0, 0, 1048984, 0, 0, 0, 0, 0, 0, 1048984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 408, 0, 0, 1048984, 0, 1048576, 0, 0, 16, 0, 0, 0, 1048984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048984, 0, 1048984, 1048984, 0, 0, 0, 0, 1048984, 0, 1048984, 1048984, 0, 0, 0, 0, 1048984, 0, 1048984, 1048984, 0, 0, 0, 0, 1048984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048576, 0, 0, 0, 0, 0, 1048576, 0, 1048576, 0, 0, 0, 1048576, 1048576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048576, 1048576, 0, 0, 0, 0, 0, 0, 0, 0]); -}, -oncipj_Cypher_jj_la1_init_2 = () => { - oncipj_Cypher_jj_la1_2 = $rt_createIntArrayFromData([0, 8192, 0, 8192, 0, 8192, 0, 0, 4096, 4096, 0, 0, 0, 0, 0, (-16777232), 0, (-16777232), 0, 0, 0, 0, 131072, 0, 0, (-16777231), 0, 786432, 786432, 0, 0, 0, 0, (-16777232), 0, (-16777232), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-16777231), 0, 0, 0, (-16777232), 0, 131072, 0, 0, 0, 0, 0, (-16777232), 0, 0, 0, 0, 0, 0, 0, 1073741824, 0, 0, 0, 0, 0, 0, 0, 36864, 36864, 0, 0, 0, 0, 2048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-16777232), - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-16777232), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-16777232), 0, 0, 16777216, 0, 0, (-16777232), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-16777232), (-16777232), (-16777232), (-16777232), 0, 0, (-16777232), (-16777232), 36864, 36864, (-16777232), 36864, 36864, (-16777232), 0, 0, 0, 0, 0, 16384, (-16777231), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-16777231), (-16777231), - 0, 0, 0, 0, 1, 0, (-16777232), 0, 0, 0, 0, (-16777231), 0, 0, 0, 16777216, (-16777232), 0, (-16777232), 16777216, 0, 0, 0, 0, 0, 0, 536870912, 536870912, 0, (-16777231), 0, (-16777232), (-16777232), 0, 0, (-16777232), 0, 0, (-16777232), 0, 0, 0, 0, (-16777231), 0, 1, 0, (-16777232), (-16777232), 4096, 4096, 0, (-16777231), 0, 0, 0, 512, 8192, 8192, 512, 512, 0, 0, (-16777232), 0, (-16777232), 5632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131072, 0, (-16777232), 0, 0, 0, 0, 0, 0, 0, (-2147483648), 0, 0, (-2147483648), - (-2147483648), 0, 0, 0, 0, 0, 0, 0, (-2147483648), 0, 0, (-2147483648), (-2147483648), 0, 0, (-2147483648), 0, (-2147483648), 0, 0, 0, 0, 0, 0, 0, (-16777232), 0, 0, 0, 0, 0, 0, 0, (-16777232), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-16777231), 0, (-16777231), (-16777231), 0, 0, 0, 0, (-16777231), 0, (-16777231), (-16777231), 0, 0, 0, 0, (-16777231), 0, (-16777231), (-16777231), 0, 4096, 0, 0, (-16777231), 0, 0, 0, (-16777232), 0, 0, (-16777232), 1048576, 0, 0, 0, 0, 0, 0, 1048576, 0, 201326592, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0, 0, 0, 201424896, 0, 0, 65536, 65536, 0, 0, 0, 0, (-16777232), 0, (-16777232), 0, (-16777232), (-16777232), 0, 0, (-16777232), 0, 0, (-16777232), 0, 0, (-16777232), 0, 0, (-16777232), 0, 0, 0, (-16777232), 0, 0, (-16777232), 0, 0, (-16777232), 0, (-16777232), 0, 2109984, (-16777232), 2109984, 2109984, 0, 2109984, 0, 2109984, 2109984, 0, 2109984, 0, 2109984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8388608, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1, 8392704, 0, 0, 0, 0, 1, 8388608, 1, 0, 64, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131072, 0, 0, 0, 0, 0, 0, 131072, 0, 0, 0, 0, 0, 0, (-16777232), 0, 0, 131072, 0, 0, 0, 0, 2109984, 2109984, 0, 0, 0, 0, 0, 0, (-16777232), 0, (-16777232), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 0, 0, 0, 512, 512, 4096, 0, 0, 0, (-16777232), 0, 0, 0, 0, 512, 512, 0, 0, 8388608, 0, 8388608, 0, 0, 0, 0, 0, 0, 0, (-16777232), 0, 0, (-16777232), 0, 0, 32, 512, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268435840, - 0, (-16777232), 0, 2105856, 0, 0, 0, 0, (-16777232), (-16777232), 0, 0, (-16777232), 0, 0, (-16777232), 0, 0, (-16777232), (-16777232), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-16777232), (-16777232), 0, 0, 0, 0, 0, 0, (-16777232), 0, 0, (-16777232), 0, 0, 0, 4194304, 0, 0, 0, 4194304, 0, 0, 1536, 0, 0, 0, 0, 0, (-16777232), 0, 0, (-16777232), (-16777248), (-16777248), (-16777248), 0, 1, 1, 0, 0, (-16777232), - 0, (-16777232), (-16777248), (-16777232), (-16777248)]); -}, -oncipj_Cypher_jj_la1_init_3 = () => { - oncipj_Cypher_jj_la1_3 = $rt_createIntArrayFromData([0, 8388616, 0, 8388616, 0, 0, 0, 0, 0, 0, 8388616, 8388616, 8388608, 0, 8, (-3585), 0, (-3585), 2048, 0, 0, 0, 0, 2048, 2048, (-3585), 0, 0, 0, 0, 0, 0, 2048, (-3585), 2048, (-3585), 0, 0, 2048, 0, 0, 0, 0, 0, 0, 1, 0, 8388608, 0, 2048, (-3585), 0, 2048, 0, (-3585), 0, 0, 0, 0, 8388616, 0, 2048, (-3585), 0, 0, 0, 65536, 0, 0, 0, 2097152, 2048, 0, 0, 0, 0, 2048, 2048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-3073), - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 0, 0, (-3585), 0, 0, 0, 512, 512, 0, 512, 512, 512, 512, (-3585), 512, 512, 0, 0, 0, (-3073), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, 0, 512, (-3073), (-3073), (-3073), (-3073), 512, 512, (-3585), (-3585), 0, 0, (-3585), 0, 0, (-3585), 512, 512, 512, 0, 0, 0, (-3585), 0, 0, 0, 525312, 1024, 1024, 1024, 1024, 525312, 0, 0, 0, 0, 0, 0, 0, 0, (-3585), (-3585), 0, 0, 0, 0, 0, - 0, (-3585), 32, 0, 0, 0, (-2561), 0, 0, 0, 0, (-3585), 0, (-3585), 0, 0, 0, 0, 0, 0, 2048, 0, 0, 0, (-3585), 2048, (-3585), (-3585), 0, 0, (-3585), 0, 0, (-3585), 0, 0, 0, 2048, (-3585), 2048, 0, 2048, (-3585), (-3585), 0, 0, 2048, (-3585), 2048, 2048, 0, 134381569, 0, 0, 134381568, 167772160, 0, 0, (-3585), 0, (-3585), 436600835, 0, 0, 393216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2048, (-3585), 2048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393216, 0, 0, 0, 0, 0, 0, 393216, 0, 0, 0, 0, 393216, 0, 0, 0, - 0, 0, (-3585), 4, 0, 0, 0, 0, 0, 0, (-3585), 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-3585), 0, (-3585), (-3585), 0, 0, 0, 0, (-3585), 0, (-3585), (-3585), 0, 0, 0, 0, (-3585), 0, (-3585), (-3585), 0, 3, 0, 0, (-3585), 0, 0, 0, (-3585), 0, 0, (-3585), 0, 0, 0, 0, 1024, 1024, 1024, 0, 0, 0, 0, 0, 0, 1073741824, 1073741824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, (-3585), 0, (-3585), 0, (-3585), (-3585), 1, 0, (-3585), 0, 0, (-3585), 0, 0, (-3585), 0, 0, (-3585), 2048, 0, 0, (-3585), - 0, 0, (-3585), 0, 0, (-3585), 2048, (-3585), 0, 143032320, (-3585), 143032320, 143032320, 0, 143032320, 0, 143032320, 143032320, 0, 143032320, 0, 143032320, 0, 0, 0, 0, 0, 0, 0, 402653184, 0, 2048, 402653184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 64, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 64, 64, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12288, 0, 0, 0, 0, 0, 0, 12288, 0, 0, 0, 0, 0, 0, 0, (-3585), 0, 12288, 0, 0, 0, 0, 0, 143032320, 143032320, (-2013265920), (-2013265920), - (-2013265920), 134217728, 134217728, 0, (-3585), 402653184, (-3585), (-1744830464), 0, 393216, 0, 0, 0, 0, 0, 0, 0, 393216, 134250496, 134643712, 0, 393216, 393216, 134250496, 134643712, 128, 0, 393216, 0, (-3585), 0, 393216, 0, 0, 0, 393216, 0, 0, 134217728, 0, 134217728, 0, 0, 0, 0, 393216, 0, 0, (-3585), 0, 0, (-3585), 0, 0, 393216, 134217728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-3585), 0, 134250496, 2048, 0, 0, 0, (-3585), (-3585), 0, 2048, (-3585), 0, 2048, (-3585), 0, 2048, (-3585), (-3585), 512, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32768, 0, 0, 16, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402653184, 0, 0, 0, (-3585), (-3585), 0, 0, 0, 0, 402653184, 402653184, (-3585), 402653184, 0, (-3585), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402653184, 0, 0, 0, 2048, (-3585), 0, 2048, (-3585), (-3585), (-3585), (-3585), 2048, 0, 0, 0, 2048, (-3585), 2048, (-3585), (-3585), (-3585), (-3585)]); -}, -oncipj_Cypher_jj_la1_init_4 = () => { - oncipj_Cypher_jj_la1_4 = $rt_createIntArrayFromData([0, 8782105, 0, 8782105, 0, 8781841, 0, 0, 4096, 4096, 264, 264, 264, 0, 0, (-1073800705), 0, (-1073800705), 0, 0, 0, 0, 0, 0, 0, (-1073800193), 96, 0, 0, 96, 0, 0, 0, (-1073800705), 0, (-1073800705), 256, 256, 0, 0, 0, 50331648, 0, 2048, 0, 0, 0, 0, 0, 0, (-1073800193), 0, 0, 0, (-1073800705), 0, 0, 0, 0, 264, 0, 0, (-1073800705), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - (-1073800705), 512, 0, 512, 0, 0, 512, 0, 0, 512, 0, 0, 0, 0, 0, (-1073800705), 0, 0, 0, 0, 0, 512, 0, 0, 0, 0, (-1073800193), 0, 0, 0, 512, 0, (-1073800705), 0, 0, 0, 0, 0, 512, 0, 0, 0, 512, 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32768, 0, 0, 0, 0, (-1073800193), (-1073800193), (-1073800193), (-1073800193), 0, 0, (-1073800193), (-1073800193), 0, 0, (-1073800193), 0, 0, (-1073800193), 0, 0, 0, 0, 0, 0, (-1073800193), 1073741824, 0, 0, 536870912, - 0, 0, 0, 0, 536870912, 0, 0, 1024, 1024, 8192, 8192, 0, 0, (-1073800193), (-1073800193), 16384, 0, 16384, 0, 512, 0, (-1073800705), 0, 0, 67108864, 536870912, (-58369), 0, 67108864, 0, 0, (-1073800705), 0, (-1073800705), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1073800193), 0, (-1073784321), (-1073784321), 2048, 0, (-1073800705), 2048, 0, (-1073800705), 0, 0, 0, 0, (-1073800193), 0, 0, 0, (-1073800705), (-1073800705), 0, 4096, 0, (-1073800193), 0, 0, 0, 0, 8781841, 8781841, 0, 0, 0, 0, (-1073800193), 0, (-1073800193), - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1073800705), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1073800705), 0, (-2147483648), 0, 0, 0, 0, 0, (-1073800705), 0, (-2147483648), 0, 0, 0, 0, 0, 0, 0, 0, (-1073800193), 0, (-1073800193), (-1073800193), 0, 0, 0, 0, (-1073800193), 0, (-1073800193), (-1073800193), 0, 0, 0, 0, (-1073800193), 0, (-1073800193), (-1073800193), 0, 0, 0, 0, (-1073800193), 0, 0, 0, (-1073800193), 0, 0, (-1073800705), - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4194304, 0, 0, 4194304, 0, 0, 4194304, 5242880, 0, 0, 0, 0, 0, 0, 0, 0, (-1073800705), 0, (-1073800705), 0, (-1073800193), (-1073800193), 0, 0, (-1073800193), 0, 0, (-1073800705), 0, 0, (-1073800193), 0, 0, (-1073800705), 0, 0, 0, (-1073800193), 0, 0, (-1073800705), 0, 0, (-1073800193), 0, (-1073800705), 0, 131080, (-1073800193), 131080, 131080, 0, 131080, 0, 131080, 131080, 0, 131080, 0, 131096, 0, 0, 0, 0, 0, 262144, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 134217728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 512, 134217728, 512, 0, 0, 0, 512, 512, 134217728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1073800193), 0, 0, 0, 0, 0, 0, 0, 131080, 131080, 0, 0, 0, 0, 0, 0, (-1073800193), 0, (-1073800193), 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1073800193), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1073800193), 0, 0, (-1073800193), 0, - 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, (-1073800193), 0, 0, 0, 0, 0, 8, (-1073800705), (-1073800705), 0, 0, (-1073800705), 0, 0, (-1073800705), 50331648, 0, (-1073800705), (-1073800705), 0, 0, 50331648, 50331648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524416, 524416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1073800193), (-1073800193), 2, 0, 0, 0, 2, 0, (-1073800193), 2, 0, (-1073800193), 2, 0, 65536, 0, 0, 0, 0, 0, 65536, 65536, 0, 0, 0, 0, 0, 0, (-1073800193), - 16384, 0, (-1073800193), (-1073784321), (-1073784321), (-1073784321), 0, 0, 512, 512, 0, (-1073800705), 0, (-1073800705), (-1073800705), (-1073800705), (-1073800705)]); -}, -oncipj_Cypher_jj_la1_init_5 = () => { - oncipj_Cypher_jj_la1_5 = $rt_createIntArrayFromData([0, 133376, 0, 133376, 0, 131072, 0, 0, 0, 0, 2304, 2304, 256, 0, 2048, (-4259841), 0, (-4259841), 0, 0, 0, 0, 0, 0, 0, (-4259841), 0, 0, 0, 0, 0, 0, 0, (-4259841), 0, (-4259841), 0, 0, 0, 0, 0, 0, 0, 0, 0, 1073741824, 0, 0, 0, 0, (-4259841), 0, 0, 0, (-4259841), 0, 0, 0, 128, 2304, 0, 0, (-4259841), 0, 0, 536870912, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3145728, 0, 0, 0, (-4259841), 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-4259841), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-4259841), 0, 0, 0, 0, 0, (-4259841), 0, 4194304, 4194304, 4194304, 0, 0, 0, 4194304, 0, 0, 0, 4194304, 0, 4194304, 0, 0, 4194304, 4194304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4194304, 0, 0, 0, 0, 4194304, 0, 0, 4194304, 0, 0, 0, 0, 0, (-4259841), (-4259841), (-4259841), (-4259841), 0, 0, (-4259841), (-4259841), 0, 0, (-4259841), 0, 0, (-4259841), 0, 0, 0, 0, 0, 0, (-4259841), 4259840, 4259840, 4259840, 536870912, 0, 0, - 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, (-4259841), (-4259841), 0, 0, 0, 0, 64, 0, (-4259841), 0, 0, 0, 0, (-1), 0, 0, 0, 0, (-4259841), 0, (-4259841), 0, 0, 0, 0, 0, 0, 0, 0, 0, 4096, (-4259841), 0, (-4259841), (-4259841), 0, 0, (-4259841), 0, 0, (-4259841), 0, 0, 0, 0, (-4259841), 0, 0, 0, (-4259841), (-4259841), 0, 0, 0, (-4259841), 0, 0, 0, 1073750016, 131072, 131072, 1073741824, 0, 0, 0, (-4259841), 0, (-4259841), (-1056907250), 0, 0, (-1073692672), 0, 14, 0, 14, 0, 6, 6, 6, 0, 0, (-4259841), 0, 0, - 0, 0, 0, 0, (-1073741824), 0, 0, 0, 0, 0, 0, (-1073741824), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-4259841), 0, 0, 0, 0, 0, 0, 49152, (-4259841), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-4259841), 0, (-4259841), (-4259841), 0, 0, 0, 0, (-4259841), 0, (-4259841), (-4259841), 0, 0, 0, 0, (-4259841), 0, (-4259841), (-4259841), 49152, 8206, 0, 0, (-4259841), 1024, 67108864, 1024, (-4259841), 0, 4194304, (-4259841), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, 4194304, (-4259841), 0, (-4259841), 67108864, (-4259841), (-4259841), 1073750016, 67108864, (-4259841), 0, 4194304, (-4259841), 0, 67108864, (-4259841), 0, 4194304, (-4259841), 0, 0, 67108864, (-4259841), 0, 4194304, (-4259841), 0, 67108864, (-4259841), 0, (-4259841), 0, (-939524095), (-4259841), (-939524095), (-671088639), 268435456, (-939524095), 268435456, (-939524095), (-939524095), 0, (-939524095), 0, (-670957567), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67108864, 0, 67108864, - 67108864, 0, 0, 0, 0, 0, 67108864, 0, 0, 0, 0, 16777216, 0, 67108864, 67108864, 67108864, 0, 0, 0, 0, 0, 0, 16777216, 0, 0, 0, 0, 0, 16777216, 0, 0, 0, 0, 0, 0, 33554432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-4259841), 0, 0, 0, 0, 0, 0, 268435456, (-939524095), (-939524095), 262144, 262144, 262144, 262144, 262144, 786432, (-4259841), 0, (-4259841), 17563648, (-1073741824), 0, 0, 0, 0, 0, 0, 0, 0, (-1073741824), 0, (-1073741824), (-1073741824), 0, (-1073741824), - 0, (-1073741824), 0, (-1073741824), 0, 0, (-4259841), 0, (-1073741824), 0, 0, 0, (-1073741824), 0, 16777216, 0, 0, 0, 0, 0, (-1073741824), 0, 0, 0, 0, (-4259841), 0, 0, (-4259841), 0, 0, (-1073741824), 0, 0, 0, 0, 0, 0, 49152, 49152, 0, 0, 0, 49152, 49152, 0, (-4259841), 0, 134217729, 0, 0, 0, 0, (-4259841), (-4259841), 0, 0, (-4259841), 0, 0, (-4259841), 0, 0, (-4259841), (-4259841), 0, 0, 1024, 1024, 67108864, 0, 0, 0, 0, 0, 0, 0, 67108864, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-4259841), (-4259841), 16777216, 0, 0, 0, 16777216, 0, (-4259841), 16777216, 786432, (-4259841), 17563648, 67108864, 0, 0, 0, 67108864, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-4259841), 0, 0, (-4259841), (-4259841), (-4259841), (-4259841), 0, 0, 0, 0, 0, (-4259841), 0, (-4259841), (-4259841), (-4259841), (-4259841)]); -}, -oncipj_Cypher_jj_la1_init_6 = () => { - oncipj_Cypher_jj_la1_6 = $rt_createIntArrayFromData([0, 100990980, 0, 100990980, 0, 0, 0, 0, 0, 0, 100990980, 100990980, 4, 67108864, 327680, (-2017491969), 2097152, (-2019589121), 0, 0, 0, 65536, 0, 0, 0, (-1883261953), 0, 0, 0, 0, 0, 0, 0, (-2019589121), 0, (-2019589121), 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 33554432, 0, 0, (-1883261953), 2097152, 0, 0, (-2019589121), 0, 0, 0, 0, 100990980, 0, 0, (-2019589121), 0, 2097152, 0, 0, 0, 0, 0, 0, 0, 0, 65536, 65536, 65536, 0, 0, 0, 0, 0, 0, 8192, 2097152, 0, 8192, - 2097152, 2097152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-2019589121), 8192, 0, 8192, 0, 0, 8192, 0, 0, 8192, 0, 0, 32, 8192, 8192, (-2019589121), 8192, 0, 8192, 0, 0, 0, 0, 0, 0, 0, (-2019589121), 0, 0, 0, 0, 4194304, (-2019589121), 4096, 0, 0, 0, 0, 8192, 0, 0, 0, 8192, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 32, 0, 4194304, 8192, 8192, 32, 0, 4194304, 134217728, 0, 0, 0, 0, 0, 32, (-1749054465), (-1749054465), (-1749054465), (-1749054465), 1024, 1024, (-1749056513), - (-1749056513), 0, 0, (-1749056513), 0, 0, (-1749056513), 32, 32, 1024, 0, 0, 0, (-1883261953), 1614823424, 1614823424, 1614823424, 32, 0, 0, 0, 0, 32, 0, 0, 134217728, 134217728, 268435456, 268435456, 0, 134217728, (-1883261953), (-1883261953), 0, 4096, 0, 3, 134217731, 2097152, (-2019589121), 0, 0, 0, 0, (-268438529), 0, 0, 0, 0, (-2019589121), 0, (-2019589121), 0, 0, 0, 0, 0, 0, 0, 32768, 32768, 0, (-1883261953), 0, (-2019589121), (-2019589121), 0, 0, (-2017491969), 0, 0, (-2017491969), 134217728, 0, 134217728, - 0, (-1883261953), 0, 0, 0, (-2019589121), (-2019589121), 0, 0, 0, (-1883261953), 0, 0, 0, 1048576, 0, 0, 0, 0, 0, 0, (-2019589121), 0, (-2019589121), 1048704, 0, 0, 0, 0, 128, 0, 128, 0, 128, 0, 0, 0, 0, (-2019589121), 0, 0, 0, 0, 65536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-2019589121), 0, 0, 0, 0, 0, 0, 0, (-2019589121), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1883261953), 0, (-1883261953), (-1883261953), 0, 0, 0, 0, (-1883261953), 0, (-1883261953), (-1883261953), - 0, 0, 0, 0, (-1883261953), 0, (-1883261953), (-1883261953), 0, 1048704, 0, 0, (-1883261953), 0, 0, 0, (-2019589121), 4194304, 0, (-2019589121), 0, 128, 0, 128, 0, 128, 32, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131072, 0, 0, 0, 0, 16777216, 17432600, 2048, 2048, 131072, 131072, 2048, 2048, 4194304, 0, (-2019589121), 0, (-2017491969), 0, (-2019589121), (-2019589121), 1048576, 0, (-2019589121), 4194304, 0, (-2019589121), 0, 0, (-2019589121), 4194304, 0, (-2019589121), 0, 0, 0, (-2019589121), 4194304, - 0, (-2019589121), 0, 0, (-2019589121), 0, (-2017491969), 0, (-2046558208), (-2019589121), (-2046558208), (-2046558208), 0, (-2046558208), 0, (-2046558208), (-2046558208), 0, (-2046558208), 0, (-2046558208), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-2019589121), 0, 0, 0, 0, 0, 0, 0, (-2046558208), (-2046558208), - 0, 0, 0, 0, 0, 0, (-2019589121), 0, (-2019589121), 0, 0, 0, 0, 768, 0, 0, 0, (-2147483648), (-2147482880), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-2019589121), 2097152, 0, 0, 0, 0, 0, 0, 0, 0, 256, 256, 0, 256, 0, 8388608, 0, 8388608, 8388608, (-2019589121), 2097152, 0, (-2019589121), 2097152, 8388608, (-2147483648), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-2019589121), 2097152, 0, 0, 33554432, 2097152, 67108864, (-2019589121), (-2019589121), 0, 0, (-2019589121), 0, 0, (-2019589121), 0, 0, (-2019589121), - (-2019589121), 0, 8192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-2019589121), (-2019589121), 0, 0, 0, 0, 0, 0, (-2019589121), 0, 0, (-2019589121), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-2019589121), 0, 0, (-2019589121), (-2019589121), (-2019589121), (-2019589121), 0, 0, 0, 8192, 0, (-2019589121), 0, (-2019589121), (-2019589121), (-2019589121), (-2019589121)]); -}, -oncipj_Cypher_jj_la1_init_7 = () => { - oncipj_Cypher_jj_la1_7 = $rt_createIntArrayFromData([0, 35913984, 0, 35913984, 0, 0, 0, 0, 0, 0, 35913984, 35913984, 256, 0, 35913728, (-1), 0, (-1), 0, 33554432, 262144, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 262144, 0, 0, (-1), 0, (-1), 256, 256, 0, 2097152, 0, 0, 0, 0, 0, 0, 524288, 0, 2097152, 0, (-1), 0, 0, 0, (-1), 0, 0, 0, 0, 35913984, 2097152, 0, (-1), 0, 0, 0, 0, 655360, 655360, 0, 0, 0, 262144, 0, 0, 33816576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1610612736, 1610612736, 1610612736, 1610612736, 0, 1610612736, - 1610612736, 1610612736, 1610612736, 0, 1610612736, 1610612736, 0, 1610612736, 1610612736, 0, (-1), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1), (-77885), (-1), (-77885), 0, 0, (-1), (-77885), 0, 0, (-1), 0, 0, (-77885), 0, 0, 0, 16777216, 0, 0, (-1), 0, 0, 0, 0, 0, 69692, 0, 77884, 0, 60, 60, 0, 0, 0, 0, - 0, 0, (-1), (-1), 0, 0, 0, 0, 2, 0, (-1), 0, 0, 0, 0, (-1), 0, 0, 0, 0, (-1), 0, (-1), 0, 0, 0, 0, 0, 60, 0, 0, 0, 0, (-1), 0, (-1), (-1), 0, 0, (-1), 0, 0, (-1), 0, 0, 0, 0, (-1), 0, 0, 0, (-1), (-1), 0, 0, 0, (-1), 0, 0, 16777216, 0, 0, 0, 0, 0, 0, 0, (-1), 0, (-1), 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 33554432, 262144, 262144, 0, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, (-1), 0, (-1), (-1), 0, 0, 0, 0, (-1), 0, (-1), (-1), 0, 0, 0, 0, (-1), 0, (-1), (-1), 0, 128, 0, 0, (-1), 524288, 0, 524288, (-1), 0, 0, (-1), 0, 0, 0, 0, 0, 8320, 0, 0, 4194304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 128, 0, 0, 0, 128, 536952960, 8192, 8192, 0, 0, 8192, 8192, 0, 0, (-1), 8320, (-1), 0, (-1), (-1), 0, 0, (-1), 0, 0, (-1), 4194304, 0, (-1), 0, 0, (-1), 0, 4194304, 0, (-1), 0, 0, (-1), 4194304, 0, (-1), 0, (-1), 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4194304, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134217728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134217728, 0, 8192, 0, 0, 0, 0, 134217728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1), 0, (-1), 0, 0, 0, 128, 0, 0, 0, 0, 1, 129, 64, 0, 524352, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 0, 0, 402653184, 0, 402653184, 0, 402653184, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, (-1), 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 0, 0, (-1), (-1), 0, 0, (-1), 640, 0, (-1), 0, 0, (-1), (-1), 0, 0, 640, 640, 0, 0, 0, 0, 0, 0, 4194304, 32768, 0, 4194304, 32768, 0, 0, 0, 0, 0, 0, 0, 32768, 0, 1048576, 0, 0, 0, 0, 8388608, 0, 0, 0, 32768, 32768, 32768, 0, 0, 0, 32768, 0, 0, 0, 0, (-1), (-1), 0, 0, 0, 0, 0, 0, (-1), 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, 0, 134217728, 134217728, 0, 0, 0, 0, 0, 0, (-1), 0, 0, (-1), (-1), (-1), (-1), 0, 0, 0, 0, 0, (-1), 0, (-1), (-1), (-77885), (-77885)]); -}; -let oncipj_Cypher_jj_la1_init_8 = () => { - oncipj_Cypher_jj_la1_8 = $rt_createIntArrayFromData([0, 557842432, 0, 557842432, 0, 20971520, 0, 0, 0, 0, 536870912, 536870912, 536870912, 0, 0, (-35258407), 0, (-35258407), 0, 0, 0, 0, 0, 0, 0, (-35258405), 0, 0, 0, 0, 0, 0, 0, (-35258407), 0, (-35258407), 0, 0, 0, 0, 0, 0, 402653184, 64, 0, 262152, 0, 0, 0, 0, (-35258405), 0, 0, 0, (-35258407), 0, 0, 0, 0, 536870912, 0, 0, (-35258407), 0, 0, 0, 0, (-2147483648), (-2147483648), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, (-35258407), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-35258407), 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, (-35258407), 0, 0, 0, 0, 0, (-35258407), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-35258407), (-35258407), (-35258407), (-35258407), 0, 0, (-35258407), (-35258407), 0, 0, (-35258407), 0, 0, (-35258407), 0, 0, 0, 0, 0, 0, (-35258405), 0, 0, 0, 33554432, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, - 32, 2, (-35258405), (-35258405), 0, 0, 0, 0, 0, 0, (-35258407), 0, 0, 0, 33554432, (-35258405), 0, 0, 0, 0, (-35258407), 0, (-35258407), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-35258405), 0, (-35258407), (-35258407), 64, 0, (-35258407), 64, 0, (-35258407), 0, 0, 0, 0, (-35258405), 0, 0, 0, (-35258407), (-35258407), 0, 0, 0, (-35258405), 0, 0, 0, 262152, 20971520, 20971520, 0, 0, 0, 0, (-35258407), 0, (-35258407), 201612824, 0, 0, 1536, 0, 16384, 0, 16384, 0, 16384, 0, 0, 0, 0, (-35258407), 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6144, (-35258407), 0, 0, 0, 0, 0, 0, 0, (-35258407), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-35258405), 0, (-35258405), (-35258405), 0, 0, 0, 0, (-35258405), 0, (-35258405), (-35258405), 0, 0, 0, 0, (-35258405), 0, (-35258405), (-35258405), 0, 201605128, 0, 0, (-35258405), 0, 0, 0, (-35258407), 0, 0, (-35258407), 0, 0, 201326592, 0, 0, 201326592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134217728, 0, 0, 134217728, 0, 0, 134234112, - 134234120, 0, 0, 0, 0, 0, 0, 0, 0, (-35258407), 0, (-35258407), 0, (-35258407), (-35258407), 262152, 0, (-35258407), 0, 0, (-35258407), 0, 0, (-35258407), 0, 0, (-35258407), 0, 0, 0, (-35258407), 0, 0, (-35258407), 0, 0, (-35258407), 0, (-35258407), 0, 555745792, (-35258407), 555745792, 555745792, 0, 555745792, 0, 555745792, 555745792, 0, 555745792, 0, 555745792, 0, 0, 0, 0, 0, 0, 4194304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 536870912, 98304, 98304, 98304, 98304, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 32768, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1536, 0, 0, 0, 1536, 0, 0, 0, 0, 0, 0, 1536, 0, 0, 0, 0, 0, 0, 1536, 1536, 1536, (-35258407), 0, 0, 0, 0, 0, 0, 0, 555745792, 555745792, 0, 0, 1024, 0, 0, 0, (-35258407), 0, (-35258407), 0, 0, 0, 0, 0, 134217728, 0, 16384, 0, 134234112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-35258407), 0, 0, 0, 0, 512, 512, 0, 0, 0, 16384, 16384, 512, 512, 0, 0, 0, 0, 0, (-35258407), 0, 0, (-35258407), 0, 0, 0, 0, 512, 0, 6144, 0, 0, 0, 6144, 6144, 0, 0, 0, 6144, - 0, (-35258407), 0, 16777728, 0, 2097152, 0, 0, (-35258407), (-35258407), 402653184, 0, (-35258407), 0, 0, (-35258407), 0, 0, (-35258407), (-35258407), 0, 0, 402653184, 402653184, 0, 384, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384, 0, 384, 0, 0, 0, 536870912, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-35258407), (-35258407), 0, 0, 0, 0, 0, 0, (-35258407), 0, 0, (-35258407), 0, 0, 0, 0, 8192, 0, 0, 0, 8192, 8192, 0, 0, 0, 0, 0, 0, (-35258407), 0, 0, (-35258407), (-35127335), (-35127335), - (-35127335), 0, 0, 0, 0, 0, (-35258407), 0, (-35258407), (-35258407), (-35258407), (-35258407)]); -}, -oncipj_Cypher_jj_la1_init_9 = () => { - oncipj_Cypher_jj_la1_9 = $rt_createIntArrayFromData([0, 839909400, 0, 839909400, 0, 570425360, 0, 0, 0, 0, 269484040, 269484040, 1048584, 0, 268435456, (-131585), 0, (-131585), 0, 0, 268435456, 0, 0, 0, 0, (-131585), 0, 0, 0, 0, 268435456, 0, 0, (-131585), 0, (-131585), 0, 0, 0, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0, 0, (-131585), 0, 0, 0, (-131585), 0, 0, 0, 0, 269484040, 0, 0, (-131585), 0, 0, 0, 0, 0, 0, 384, 0, 0, 268435456, 0, 0, 268435456, 0, 0, 16777216, 16777216, 0, 0, 0, 0, 8388608, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16777216, (-131585), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-131585), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-131585), 0, 0, 0, 0, 0, (-131585), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-131585), (-131585), (-131585), (-131585), 0, 0, (-131585), (-131585), 0, 0, (-131585), 0, 0, (-131585), 0, 0, 0, 0, 0, 0, (-131585), 0, 0, 0, 1073741824, 0, 0, 0, 0, 1073741824, 0, 0, 0, 0, 0, - 0, 0, 0, (-131585), (-131585), 0, 0, 0, 0, 0, 0, (-131585), 0, 0, 0, 1073741824, (-131585), 0, 0, 0, 0, (-131585), 0, (-131585), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-131585), 0, (-131585), (-131585), 0, 0, (-131585), 0, 0, (-131585), 0, 0, 0, 0, (-131585), 0, 0, 0, (-131585), (-131585), 0, 0, 0, (-131585), 0, 0, 0, 32, 570425360, 536870928, 262176, 262144, 96, 96, (-131585), 0, (-131585), 7077984, 0, 96, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-131585), 0, 0, 268435456, 268435456, 0, 0, 0, 0, 0, 8, 0, 0, 33554432, - 0, 8, 0, 0, 33554432, 0, 0, 0, 8, 0, 0, 33554432, 0, 0, 0, 0, 33554432, 0, 8, 0, 0, 33554432, 0, (-131585), 0, 0, 8, 0, 0, 33554432, 0, (-131585), 0, 0, 8, 0, 0, 33554432, 0, 8, 0, 8, (-131585), 33554432, (-131585), (-131585), 0, 8, 0, 8, (-131585), 33554432, (-131585), (-131585), 6291456, 8, 0, 8, (-131585), 33554432, (-131585), (-131585), 0, 0, 0, 33554432, (-131585), 0, 0, 0, (-131585), 0, 0, (-131073), 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 67108864, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 67108864, 0, 0, 0, 0, 0, 0, 0, 0, (-131073), 0, (-131585), 0, (-131585), (-131585), 0, 0, (-131585), 0, 0, (-131073), 0, 0, (-131585), 0, 0, (-131073), 0, 0, 0, (-131585), 0, 0, (-131073), 0, 0, (-131585), 0, (-131585), 262176, 571736096, (-131585), 571736160, 571736160, 0, 571736096, 0, 571736096, 571736096, 96, 571736064, 96, 571736160, 0, 786432, 8, 0, 0, 0, 0, 0, 786432, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, (-2147483648), 1048576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1048576, 0, 0, 0, 0, (-2147483648), - 0, 0, 0, 0, 0, 0, 0, 1048576, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 16, 0, 0, 8, 0, 0, 0, 16, 0, 0, 8, 0, 0, 0, 0, 0, (-131585), 16, 0, 0, 8, 0, 0, 0, 571736096, 571736064, 0, 0, 0, 0, 0, 0, (-131585), 0, (-131585), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 32, 0, 0, 0, 32, 32, 0, 0, 0, 0, (-131585), 0, 0, 786432, 6291456, 7077920, 7077920, 0, (-2147483648), 0, 0, 0, 32, 32, 0, 0, 0, 0, 0, (-131585), 0, 0, (-131585), 0, 0, 536870912, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, (-131585), 0, 262144, 0, 0, 0, 0, - (-131585), (-131585), 0, 0, (-131585), 0, 0, (-131585), 0, 0, (-131585), (-131585), 0, 0, 0, 0, 0, 0, 24576, 24576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 24576, 24576, 0, 0, 1048576, 0, 1048576, 0, 0, 0, 38912, 38912, 0, 0, 0, 8, 0, 8, (-131585), (-131585), 0, 8, 0, 0, 0, 0, (-131585), 0, 0, (-131585), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, (-131585), 0, 0, (-131585), (-131585), (-131585), (-131585), 0, 0, 0, 0, 0, (-131585), 0, (-131585), (-131585), (-131585), (-131585)]); -}, -oncipj_Cypher_jj_la1_init_10 = () => { - oncipj_Cypher_jj_la1_10 = $rt_createIntArrayFromData([(-2147483648), 335544353, 8388608, 335544353, 8388608, 33, 0, 8388608, 0, 0, 335544320, 335544320, 268435456, 67108864, 0, (-513), 0, (-513), 0, 0, 0, 0, 0, 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, (-513), 0, (-513), 0, 0, 0, 0, 0, 0, 0, 0, (-2147483648), 64, 0, 0, 0, 0, (-513), 0, 0, 0, (-1), 0, 0, 0, 0, 335544320, 0, 0, (-513), 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-513), - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-513), 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, (-513), 0, 0, 0, 0, 0, (-513), 0, 0, 0, 0, 512, 0, 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 0, 0, 512, 0, 512, 512, 0, 0, 512, 0, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-513), (-2097665), (-513), (-2097665), 0, 0, (-513), (-2097665), 0, 0, (-513), 0, 0, (-2097665), 0, 0, 0, 0, 0, 0, (-513), 0, 0, 0, 0, 2097152, 2097152, 2097152, 2097152, 0, 0, 0, 0, 0, 512, 512, 0, 0, (-513), (-513), 0, 0, 0, 0, 524288, 0, - (-513), 0, 0, 0, 0, (-513), 0, 0, 0, 0, (-513), 0, (-513), 0, 0, 0, 0, 0, 0, 0, 16384, 16384, 0, (-513), 0, (-513), (-513), 0, 0, (-513), 0, 0, (-513), 0, 0, 0, 0, (-513), 0, 0, 0, (-513), (-513), 0, 0, 0, (-513), 0, 0, 0, 536870976, 33, 1, 536870912, 536870912, 0, 0, (-513), 1610612736, (-513), 50430020, 1610612736, 0, 0, 50331648, 50331648, 50331648, 50331648, 50331648, 50331648, 0, 1048576, 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 32, 0, 0, - 0, 0, 32, 0, (-513), 0, 0, 0, 0, 0, 32, 0, (-513), 0, 0, 0, 0, 0, 32, 98304, 0, 0, 0, (-513), 32, (-513), (-513), 98304, 0, 0, 0, (-513), 32, (-513), (-513), 0, 0, 0, 0, (-513), 32, (-513), (-513), 0, 587202624, 98304, 32, (-513), 0, 0, 0, (-513), 0, 0, (-513), 0, 16777216, 0, 16777216, 2097152, 18874368, 0, 0, 0, 0, 2, 0, 0, 256, 256, 2304, 2304, 0, 2304, 2304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1282, 0, 0, 0, 0, 0, 0, 0, 0, (-513), 16777216, (-513), 0, (-513), (-513), 64, 0, (-513), 0, 0, (-513), 0, 0, (-513), - 0, 0, (-513), 0, 0, 0, (-513), 0, 0, (-513), 0, 0, (-513), 0, (-513), 536870912, 537034785, (-513), 537034785, 537034785, 0, 537034785, 0, 537034785, 537034785, 0, 537034785, 0, 537034785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1610612736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-513), 0, 0, 0, 0, 0, 0, 0, 537034785, 537034785, 0, 0, 0, 0, 0, 0, (-1), - 0, (-1), 0, 0, 0, 0, 0, 0, 5242880, 0, 0, 5242880, 0, 536870912, 536870912, 0, 0, 0, 536870912, 536870912, 134217728, 0, 0, 98304, (-1), 0, 98304, 0, 0, 536870912, 536969216, 0, 0, 536870912, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, (-1), 0, 98304, (-1), 0, 0, 32801, 536870912, 0, 0, 0, 0, 536870912, 0, 536870912, 0, 0, 536870912, 0, 536870912, 536870912, (-1), 0, 536870912, 0, 131072, 0, 0, (-1), (-1), 0, 0, (-1), 0, 0, (-1), 0, 0, (-1), (-513), 0, 0, 0, 0, 0, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (-513), (-513), 0, 0, 0, 0, 0, 0, (-1), 0, 0, (-1), 0, 0, 0, 0, 0, 0, 0, 0, 536870928, 536870928, 0, 0, 0, 0, 0, 0, (-513), 0, 0, (-513), (-1), (-1), (-1), 0, 0, 0, 0, 0, (-513), 0, (-513), (-513), (-2097665), (-2097665)]); -}, -oncipj_Cypher_jj_la1_init_11 = () => { - oncipj_Cypher_jj_la1_11 = $rt_createIntArrayFromData([0, 256, 0, 256, 0, 0, 0, 0, 0, 0, 256, 256, 0, 256, 0, 65535, 0, 65535, 0, 0, 0, 0, 0, 0, 0, 65535, 0, 0, 0, 0, 0, 128, 0, 65535, 0, 65535, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 0, 0, 128, 65535, 4096, 0, 256, 0, 256, 0, 0, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 0, 128, 0, 128, 128, 0, 128, 128, 0, 128, 128, 0, 0, 0, 65535, 0, 128, 0, 0, 0, 0, - 0, 0, 0, 0, 65535, 0, 0, 0, 0, 524288, 65535, 0, 1048576, 1048576, 1048576, 0, 0, 128, 1048576, 0, 0, 128, 1048576, 128, 1048576, 0, 128, 1048576, 1048576, 0, 0, 0, 128, 0, 128, 0, 0, 0, 128, 0, 128, 0, 0, 1048576, 524288, 0, 0, 0, 1048576, 524288, 262144, 1048576, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 0, 0, 65535, 65535, 0, 0, 65535, 0, 0, 65535, 0, 0, 0, 0, 2048, 0, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 0, 0, 0, 0, 0, 0, 65535, 0, 64, 0, 0, 65535, 64, 0, 128, 0, 65535, - 128, 65535, 128, 128, 128, 128, 128, 0, 0, 0, 0, 0, 65535, 0, 65535, 65535, 0, 128, 65535, 0, 128, 65535, 0, 0, 0, 0, 65535, 0, 0, 0, 65535, 65535, 0, 0, 0, 65535, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 65535, 0, 65535, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 0, 0, 0, 0, 0, 128, 0, 8, 0, 0, 4232, 4232, 0, 0, 0, 4224, 4224, 0, 0, 8, 0, 0, 4232, 4232, 0, 0, 8, 0, 8, 0, 0, 0, 4224, 4224, 0, 0, 65535, 0, 0, 0, 4224, 4224, 0, 0, 65535, 0, 0, 0, 4224, 4224, 0, 0, 0, 4224, 0, 65535, 0, 65535, 65535, 0, 0, 4224, - 0, 65535, 0, 65535, 65535, 0, 0, 4224, 0, 65535, 0, 65535, 65535, 0, 4, 0, 0, 65535, 0, 0, 0, 65535, 524288, 1048576, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 768, 0, 0, 768, 16, 0, 0, 16, 0, 1, 1, 16, 16402, 0, 0, 0, 0, 0, 0, 524288, 1048576, 65535, 0, 65535, 0, 65535, 65535, 4, 0, 65535, 524288, 1048576, 65535, 0, 0, 65535, 524288, 1048576, 65535, 0, 0, 0, 65535, 524288, 1048576, 65535, 0, 0, 65535, 0, 65535, 0, 1024, 65535, 1024, 1024, 0, 1024, 0, 1024, 1024, 0, 1024, 0, 1024, 0, 0, 0, - 4224, 4224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, 0, 4224, 4224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, 0, 4224, 4224, 0, 4224, 4224, 0, 0, 4224, 4224, 0, 0, 0, 0, 0, 4224, 4224, 0, 0, 0, 0, 0, 4224, 4224, 0, 0, 0, 65535, 0, 0, 0, 0, 4224, 4224, 0, 1024, 1024, 0, 0, 0, 0, 0, 0, 65535, 0, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 0, 0, 65535, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 0, 0, 0, 0, 0, 0, 65535, 65535, 0, 0, 65535, 0, 0, 65535, 0, 0, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 32, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 32, 32, 32, 0, 0, 0, 32, 0, 0, 4224, 0, 65535, 65535, 0, 0, 4224, 4224, 0, 0, 65535, 0, 0, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4224, 4224, 0, 65535, 0, 0, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 65535, 0, 65535, 65535, 65535, 65535]); -}, -oncipj_Cypher_jj_consume_token = ($this, $kind) => { - let $oldToken, var$3, var$4, $i, var$6, $c; - $oldToken = $this.$token; - var$3 = $oldToken.$next5; - if (var$3 !== null) - $this.$token = var$3; - else { - $oldToken.$next5 = oncipj_CypherTokenManager_getNextToken($this.$token_source); - $this.$token = $this.$token.$next5; - } - $this.$jj_ntk = (-1); - var$3 = $this.$token; - if (var$3.$kind != $kind) { - $this.$token = $oldToken; - $this.$jj_kind = $kind; - $rt_throw(oncipj_Cypher_generateParseException($this)); - } - a: { - $kind = $this.$jj_gen + 1 | 0; - $this.$jj_gen = $kind; - var$4 = $this.$jj_gc + 1 | 0; - $this.$jj_gc = var$4; - if (var$4 > 100) { - $this.$jj_gc = 0; - $i = 0; - while (true) { - var$6 = $this.$jj_2_rtns.data; - if ($i >= var$6.length) - break a; - $c = var$6[$i]; - while ($c !== null) { - if ($c.$gen < $kind) - $c.$first4 = null; - $c = $c.$next13; - } - $i = $i + 1 | 0; - } - } - } - return var$3; -}, -oncipj_Cypher_jj_scan_token = ($this, $kind) => { - let $tok, var$3, $i; - $tok = $this.$jj_scanpos; - if ($tok !== $this.$jj_lastpos) - $this.$jj_scanpos = $tok.$next5; - else { - $this.$jj_la = $this.$jj_la - 1 | 0; - var$3 = $tok.$next5; - if (var$3 !== null) { - $this.$jj_scanpos = var$3; - $this.$jj_lastpos = var$3; - } else { - var$3 = oncipj_CypherTokenManager_getNextToken($this.$token_source); - $tok.$next5 = var$3; - $this.$jj_scanpos = var$3; - $this.$jj_lastpos = var$3; - } - } - if ($this.$jj_rescan) { - $i = 0; - $tok = $this.$token; - while ($tok !== null && $tok !== $this.$jj_scanpos) { - $i = $i + 1 | 0; - $tok = $tok.$next5; - } - if ($tok !== null) - oncipj_Cypher_jj_add_error_token($this, $kind, $i); - } - $tok = $this.$jj_scanpos; - if ($tok.$kind != $kind) - return 1; - if (!$this.$jj_la && $tok === $this.$jj_lastpos) - $rt_throw($this.$jj_ls); - return 0; -}, -oncipj_Cypher_jj_ntk_f = $this => { - let var$1, var$2, $ret; - var$1 = $this.$token; - var$2 = var$1.$next5; - $this.$jj_nt = var$2; - if (var$2 !== null) { - $ret = var$2.$kind; - $this.$jj_ntk = $ret; - } else { - var$1.$next5 = oncipj_CypherTokenManager_getNextToken($this.$token_source); - $ret = $this.$token.$next5.$kind; - $this.$jj_ntk = $ret; - } - return $ret; -}, -oncipj_Cypher_jj_add_error_token = ($this, $kind, $pos) => { - let $i, $isMatched, $oldentry, var$6, $i_0, var$8, var$9; - if ($pos >= 100) - return; - $i = $this.$jj_endpos; - $isMatched = $i + 1 | 0; - if ($pos == $isMatched) { - $oldentry = $this.$jj_lasttokens.data; - $this.$jj_endpos = $isMatched; - $oldentry[$i] = $kind; - } else if ($i) { - $oldentry = $rt_createIntArray($i); - var$6 = $oldentry.data; - $this.$jj_expentry = $oldentry; - $i_0 = 0; - while ($i_0 < $i) { - var$6[$i_0] = $this.$jj_lasttokens.data[$i_0]; - $i_0 = $i_0 + 1 | 0; - } - var$8 = ju_AbstractList_iterator($this.$jj_expentries); - a: { - while (true) { - if (!ju_AbstractList$1_hasNext(var$8)) - break a; - $oldentry = (ju_AbstractList$1_next(var$8)).data; - $isMatched = $oldentry.length; - var$6 = $this.$jj_expentry; - var$9 = var$6.data; - $i_0 = var$9.length; - if ($isMatched == $i_0) { - $isMatched = 1; - $i = 0; - b: { - while ($i < $i_0) { - if ($oldentry[$i] != var$9[$i]) { - $isMatched = 0; - break b; - } - $i = $i + 1 | 0; - } - } - if ($isMatched) - break; - } - } - ju_ArrayList_add($this.$jj_expentries, var$6); - } - if ($pos) { - $this.$jj_endpos = $pos; - $this.$jj_lasttokens.data[$pos - 1 | 0] = $kind; - } - } -}, -oncipj_Cypher_generateParseException = $this => { - let var$1, $la1tokens, $i, var$4, $i_0, $j, var$7, $exptokseq, var$9; - var$1 = $this.$jj_expentries; - ju_Arrays_fill1(var$1.$array1, 0, var$1.$size0, null); - var$1.$size0 = 0; - var$1.$modCount = var$1.$modCount + 1 | 0; - $la1tokens = $rt_createBooleanArray(374); - $i = $this.$jj_kind; - if ($i >= 0) { - $la1tokens.data[$i] = 1; - $this.$jj_kind = (-1); - } - var$4 = $la1tokens.data; - $i_0 = 0; - while ($i_0 < 742) { - a: { - if ($this.$jj_la1.data[$i_0] == $this.$jj_gen) { - $j = 0; - while (true) { - if ($j >= 32) - break a; - $i = oncipj_Cypher_jj_la1_0.data[$i_0]; - var$7 = 1 << $j; - if ($i & var$7) - var$4[$j] = 1; - if (oncipj_Cypher_jj_la1_1.data[$i_0] & var$7) - var$4[32 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_2.data[$i_0] & var$7) - var$4[64 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_3.data[$i_0] & var$7) - var$4[96 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_4.data[$i_0] & var$7) - var$4[128 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_5.data[$i_0] & var$7) - var$4[160 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_6.data[$i_0] & var$7) - var$4[192 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_7.data[$i_0] & var$7) - var$4[224 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_8.data[$i_0] & var$7) - var$4[256 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_9.data[$i_0] & var$7) - var$4[288 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_10.data[$i_0] & var$7) - var$4[320 + $j | 0] = 1; - if (oncipj_Cypher_jj_la1_11.data[$i_0] & var$7) - var$4[352 + $j | 0] = 1; - $j = $j + 1 | 0; - } - } - } - $i_0 = $i_0 + 1 | 0; - } - $i = 0; - while ($i < 374) { - if (var$4[$i]) { - $la1tokens = $rt_createIntArray(1); - $exptokseq = $la1tokens.data; - $this.$jj_expentry = $la1tokens; - $exptokseq[0] = $i; - ju_ArrayList_add($this.$jj_expentries, $la1tokens); - } - $i = $i + 1 | 0; - } - $this.$jj_endpos = 0; - oncipj_Cypher_jj_rescan_token($this); - oncipj_Cypher_jj_add_error_token($this, 0, 0); - $exptokseq = $rt_createArray($rt_arraycls($rt_intcls), $this.$jj_expentries.$size0); - var$4 = $exptokseq.data; - $i = 0; - while (true) { - var$1 = $this.$jj_expentries; - if ($i >= var$1.$size0) - break; - var$4[$i] = ju_ArrayList_get(var$1, $i); - $i = $i + 1 | 0; - } - var$1 = new oncipj_ParseException; - var$9 = $this.$token; - $la1tokens = oncipj_CypherConstants_tokenImage; - jl_Throwable__init_0(var$1, oncipj_ParseException__initialise(var$9, $exptokseq, $la1tokens)); - var$1.$currentToken = var$9; - var$1.$expectedTokenSequences = $exptokseq; - var$1.$tokenImage = $la1tokens; - return var$1; -}, -oncipj_Cypher_jj_rescan_token = $this => { - let $i, $p, var$3, $$je; - $this.$jj_rescan = 1; - $i = 0; - while ($i < 186) { - a: { - b: { - try { - $p = $this.$jj_2_rtns.data[$i]; - while (true) { - c: { - if ($p.$gen > $this.$jj_gen) { - $this.$jj_la = $p.$arg; - var$3 = $p.$first4; - $this.$jj_scanpos = var$3; - $this.$jj_lastpos = var$3; - switch ($i) { - case 0: - break; - case 1: - oncipj_Cypher_jj_3_2($this); - break c; - case 2: - oncipj_Cypher_jj_3_3($this); - break c; - case 3: - oncipj_Cypher_jj_3_4($this); - break c; - case 4: - oncipj_Cypher_jj_3_5($this); - break c; - case 5: - oncipj_Cypher_jj_3_6($this); - break c; - case 6: - oncipj_Cypher_jj_3_7($this); - break c; - case 7: - oncipj_Cypher_jj_3_8($this); - break c; - case 8: - oncipj_Cypher_jj_3_9($this); - break c; - case 9: - oncipj_Cypher_jj_3_10($this); - break c; - case 10: - oncipj_Cypher_jj_3_11($this); - break c; - case 11: - oncipj_Cypher_jj_3_12($this); - break c; - case 12: - oncipj_Cypher_jj_3_13($this); - break c; - case 13: - oncipj_Cypher_jj_3_14($this); - break c; - case 14: - oncipj_Cypher_jj_3_15($this); - break c; - case 15: - oncipj_Cypher_jj_3_16($this); - break c; - case 16: - oncipj_Cypher_jj_3_17($this); - break c; - case 17: - oncipj_Cypher_jj_3_18($this); - break c; - case 18: - oncipj_Cypher_jj_3_19($this); - break c; - case 19: - oncipj_Cypher_jj_3_20($this); - break c; - case 20: - oncipj_Cypher_jj_3_21($this); - break c; - case 21: - oncipj_Cypher_jj_3_22($this); - break c; - case 22: - oncipj_Cypher_jj_3_23($this); - break c; - case 23: - oncipj_Cypher_jj_3_24($this); - break c; - case 24: - oncipj_Cypher_jj_3_25($this); - break c; - case 25: - oncipj_Cypher_jj_3_26($this); - break c; - case 26: - oncipj_Cypher_jj_3_27($this); - break c; - case 27: - oncipj_Cypher_jj_3_28($this); - break c; - case 28: - oncipj_Cypher_jj_3_29($this); - break c; - case 29: - oncipj_Cypher_jj_3_30($this); - break c; - case 30: - oncipj_Cypher_jj_3_31($this); - break c; - case 31: - oncipj_Cypher_jj_3_32($this); - break c; - case 32: - oncipj_Cypher_jj_3_33($this); - break c; - case 33: - oncipj_Cypher_jj_3_34($this); - break c; - case 34: - oncipj_Cypher_jj_3_35($this); - break c; - case 35: - oncipj_Cypher_jj_3_36($this); - break c; - case 36: - oncipj_Cypher_jj_3_37($this); - break c; - case 37: - oncipj_Cypher_jj_3_38($this); - break c; - case 38: - oncipj_Cypher_jj_3_39($this); - break c; - case 39: - oncipj_Cypher_jj_3_40($this); - break c; - case 40: - oncipj_Cypher_jj_3_41($this); - break c; - case 41: - oncipj_Cypher_jj_3_42($this); - break c; - case 42: - oncipj_Cypher_jj_3_43($this); - break c; - case 43: - oncipj_Cypher_jj_3_44($this); - break c; - case 44: - oncipj_Cypher_jj_3_45($this); - break c; - case 45: - oncipj_Cypher_jj_3_46($this); - break c; - case 46: - oncipj_Cypher_jj_3_47($this); - break c; - case 47: - oncipj_Cypher_jj_3_48($this); - break c; - case 48: - oncipj_Cypher_jj_3_49($this); - break c; - case 49: - oncipj_Cypher_jj_3_50($this); - break c; - case 50: - oncipj_Cypher_jj_3_51($this); - break c; - case 51: - oncipj_Cypher_jj_3_52($this); - break c; - case 52: - oncipj_Cypher_jj_3_53($this); - break c; - case 53: - oncipj_Cypher_jj_3_54($this); - break c; - case 54: - oncipj_Cypher_jj_3_55($this); - break c; - case 55: - oncipj_Cypher_jj_3_56($this); - break c; - case 56: - oncipj_Cypher_jj_3_57($this); - break c; - case 57: - oncipj_Cypher_jj_3_58($this); - break c; - case 58: - oncipj_Cypher_jj_3_59($this); - break c; - case 59: - oncipj_Cypher_jj_3_60($this); - break c; - case 60: - oncipj_Cypher_jj_3_61($this); - break c; - case 61: - oncipj_Cypher_jj_3_62($this); - break c; - case 62: - oncipj_Cypher_jj_3_63($this); - break c; - case 63: - oncipj_Cypher_jj_3_64($this); - break c; - case 64: - oncipj_Cypher_jj_3_65($this); - break c; - case 65: - oncipj_Cypher_jj_3_66($this); - break c; - case 66: - oncipj_Cypher_jj_3_67($this); - break c; - case 67: - oncipj_Cypher_jj_3_68($this); - break c; - case 68: - oncipj_Cypher_jj_3_69($this); - break c; - case 69: - oncipj_Cypher_jj_3_70($this); - break c; - case 70: - oncipj_Cypher_jj_3_71($this); - break c; - case 71: - oncipj_Cypher_jj_3_72($this); - break c; - case 72: - oncipj_Cypher_jj_3_73($this); - break c; - case 73: - oncipj_Cypher_jj_3_74($this); - break c; - case 74: - oncipj_Cypher_jj_3_75($this); - break c; - case 75: - oncipj_Cypher_jj_3_76($this); - break c; - case 76: - oncipj_Cypher_jj_3_77($this); - break c; - case 77: - oncipj_Cypher_jj_3_78($this); - break c; - case 78: - oncipj_Cypher_jj_3_79($this); - break c; - case 79: - oncipj_Cypher_jj_3_80($this); - break c; - case 80: - oncipj_Cypher_jj_3_81($this); - break c; - case 81: - oncipj_Cypher_jj_3_82($this); - break c; - case 82: - oncipj_Cypher_jj_3_83($this); - break c; - case 83: - oncipj_Cypher_jj_3_84($this); - break c; - case 84: - oncipj_Cypher_jj_3_85($this); - break c; - case 85: - oncipj_Cypher_jj_3_86($this); - break c; - case 86: - oncipj_Cypher_jj_3_87($this); - break c; - case 87: - oncipj_Cypher_jj_3_88($this); - break c; - case 88: - oncipj_Cypher_jj_3_89($this); - break c; - case 89: - oncipj_Cypher_jj_3_90($this); - break c; - case 90: - oncipj_Cypher_jj_3_91($this); - break c; - case 91: - oncipj_Cypher_jj_3_92($this); - break c; - case 92: - oncipj_Cypher_jj_3_93($this); - break c; - case 93: - oncipj_Cypher_jj_3_94($this); - break c; - case 94: - oncipj_Cypher_jj_3_95($this); - break c; - case 95: - oncipj_Cypher_jj_3_96($this); - break c; - case 96: - oncipj_Cypher_jj_3_97($this); - break c; - case 97: - oncipj_Cypher_jj_3_98($this); - break c; - case 98: - oncipj_Cypher_jj_3_99($this); - break c; - case 99: - oncipj_Cypher_jj_3_100($this); - break c; - case 100: - oncipj_Cypher_jj_3_101($this); - break c; - case 101: - oncipj_Cypher_jj_3_102($this); - break c; - case 102: - oncipj_Cypher_jj_3_103($this); - break c; - case 103: - oncipj_Cypher_jj_3_104($this); - break c; - case 104: - oncipj_Cypher_jj_3_105($this); - break c; - case 105: - oncipj_Cypher_jj_3_106($this); - break c; - case 106: - oncipj_Cypher_jj_3_107($this); - break c; - case 107: - oncipj_Cypher_jj_3_108($this); - break c; - case 108: - oncipj_Cypher_jj_3_109($this); - break c; - case 109: - oncipj_Cypher_jj_3_110($this); - break c; - case 110: - oncipj_Cypher_jj_3_111($this); - break c; - case 111: - oncipj_Cypher_jj_3_112($this); - break c; - case 112: - oncipj_Cypher_jj_3_113($this); - break c; - case 113: - oncipj_Cypher_jj_3_114($this); - break c; - case 114: - oncipj_Cypher_jj_3_115($this); - break c; - case 115: - oncipj_Cypher_jj_3_116($this); - break c; - case 116: - oncipj_Cypher_jj_3_117($this); - break c; - case 117: - oncipj_Cypher_jj_3_118($this); - break c; - case 118: - oncipj_Cypher_jj_3_119($this); - break c; - case 119: - oncipj_Cypher_jj_3_120($this); - break c; - case 120: - oncipj_Cypher_jj_3_121($this); - break c; - case 121: - oncipj_Cypher_jj_3_122($this); - break c; - case 122: - oncipj_Cypher_jj_3_123($this); - break c; - case 123: - oncipj_Cypher_jj_3_124($this); - break c; - case 124: - oncipj_Cypher_jj_3_125($this); - break c; - case 125: - oncipj_Cypher_jj_3_126($this); - break c; - case 126: - oncipj_Cypher_jj_3_127($this); - break c; - case 127: - oncipj_Cypher_jj_3_128($this); - break c; - case 128: - oncipj_Cypher_jj_3_129($this); - break c; - case 129: - oncipj_Cypher_jj_3_130($this); - break c; - case 130: - oncipj_Cypher_jj_3_131($this); - break c; - case 131: - oncipj_Cypher_jj_3_132($this); - break c; - case 132: - oncipj_Cypher_jj_3_133($this); - break c; - case 133: - oncipj_Cypher_jj_3_134($this); - break c; - case 134: - oncipj_Cypher_jj_3_135($this); - break c; - case 135: - oncipj_Cypher_jj_3_136($this); - break c; - case 136: - oncipj_Cypher_jj_3_137($this); - break c; - case 137: - oncipj_Cypher_jj_3_138($this); - break c; - case 138: - oncipj_Cypher_jj_3_139($this); - break c; - case 139: - oncipj_Cypher_jj_3_140($this); - break c; - case 140: - oncipj_Cypher_jj_3_141($this); - break c; - case 141: - oncipj_Cypher_jj_3_142($this); - break c; - case 142: - oncipj_Cypher_jj_3_143($this); - break c; - case 143: - oncipj_Cypher_jj_3_144($this); - break c; - case 144: - oncipj_Cypher_jj_3_145($this); - break c; - case 145: - oncipj_Cypher_jj_3_146($this); - break c; - case 146: - oncipj_Cypher_jj_3_147($this); - break c; - case 147: - oncipj_Cypher_jj_3_148($this); - break c; - case 148: - oncipj_Cypher_jj_3_149($this); - break c; - case 149: - oncipj_Cypher_jj_3_150($this); - break c; - case 150: - oncipj_Cypher_jj_3_151($this); - break c; - case 151: - oncipj_Cypher_jj_3_152($this); - break c; - case 152: - oncipj_Cypher_jj_3_153($this); - break c; - case 153: - oncipj_Cypher_jj_3_154($this); - break c; - case 154: - oncipj_Cypher_jj_3_155($this); - break c; - case 155: - oncipj_Cypher_jj_3_156($this); - break c; - case 156: - oncipj_Cypher_jj_3_157($this); - break c; - case 157: - oncipj_Cypher_jj_3_158($this); - break c; - case 158: - oncipj_Cypher_jj_3_159($this); - break c; - case 159: - oncipj_Cypher_jj_3_160($this); - break c; - case 160: - oncipj_Cypher_jj_3_161($this); - break c; - case 161: - oncipj_Cypher_jj_3_162($this); - break c; - case 162: - oncipj_Cypher_jj_3_163($this); - break c; - case 163: - oncipj_Cypher_jj_3_164($this); - break c; - case 164: - oncipj_Cypher_jj_3_165($this); - break c; - case 165: - oncipj_Cypher_jj_3_166($this); - break c; - case 166: - oncipj_Cypher_jj_3_167($this); - break c; - case 167: - oncipj_Cypher_jj_3_168($this); - break c; - case 168: - oncipj_Cypher_jj_3_169($this); - break c; - case 169: - oncipj_Cypher_jj_3_170($this); - break c; - case 170: - oncipj_Cypher_jj_3_171($this); - break c; - case 171: - oncipj_Cypher_jj_3_172($this); - break c; - case 172: - oncipj_Cypher_jj_3_173($this); - break c; - case 173: - oncipj_Cypher_jj_3_174($this); - break c; - case 174: - oncipj_Cypher_jj_3_175($this); - break c; - case 175: - oncipj_Cypher_jj_3_176($this); - break c; - case 176: - oncipj_Cypher_jj_3_177($this); - break c; - case 177: - oncipj_Cypher_jj_3_178($this); - break c; - case 178: - oncipj_Cypher_jj_3_179($this); - break c; - case 179: - oncipj_Cypher_jj_3_180($this); - break c; - case 180: - oncipj_Cypher_jj_3_181($this); - break c; - case 181: - oncipj_Cypher_jj_3_182($this); - break c; - case 182: - oncipj_Cypher_jj_3_183($this); - break c; - case 183: - oncipj_Cypher_jj_3_184($this); - break c; - case 184: - oncipj_Cypher_jj_3_185($this); - break c; - case 185: - oncipj_Cypher_jj_3_186($this); - break c; - default: - break c; - } - oncipj_Cypher_jj_3_1($this); - } - } - $p = $p.$next13; - if ($p === null) - break b; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipj_Cypher$LookaheadSuccess) { - } else { - throw $$e; - } - } - break a; - } - } - $i = $i + 1 | 0; - } - $this.$jj_rescan = 0; -}, -oncipj_Cypher_jj_save = ($this, $index, $xla) => { - let $p, var$4, $p_0; - $p = $this.$jj_2_rtns.data[$index]; - a: { - while (true) { - $index = $p.$gen; - var$4 = $this.$jj_gen; - if ($index <= var$4) - break; - $p_0 = $p.$next13; - if ($p_0 === null) { - $p_0 = new oncipj_Cypher$JJCalls; - $p.$next13 = $p_0; - break a; - } - $p = $p_0; - } - $p_0 = $p; - } - $p_0.$gen = (var$4 + $xla | 0) - $this.$jj_la | 0; - $p_0.$first4 = $this.$token; - $p_0.$arg = $xla; -}, -oncipj_Cypher__clinit_ = () => { - oncipj_Cypher_jj_la1_init_0(); - oncipj_Cypher_jj_la1_init_1(); - oncipj_Cypher_jj_la1_init_2(); - oncipj_Cypher_jj_la1_init_3(); - oncipj_Cypher_jj_la1_init_4(); - oncipj_Cypher_jj_la1_init_5(); - oncipj_Cypher_jj_la1_init_6(); - oncipj_Cypher_jj_la1_init_7(); - oncipj_Cypher_jj_la1_init_8(); - oncipj_Cypher_jj_la1_init_9(); - oncipj_Cypher_jj_la1_init_10(); - oncipj_Cypher_jj_la1_init_11(); -}; -function oncia_Statements() { - jl_Object.call(this); - this.$statements1 = null; -} -let oncia_Statements_position = $this => { - onciu_InputPosition$_$callClinit(); - return onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$); -}, -oncia_Statements_size = $this => { - return $this.$statements1.$length(); -}, -oncia_Statements_get = ($this, $index) => { - return $this.$statements1.$apply1($index); -}, -oncia_Statements_productPrefix = $this => { - return $rt_s(4415); -}, -oncia_Statements_productArity = $this => { - return 1; -}, -oncia_Statements_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$statements1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Statements_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Statements_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Statements_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Statements_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Statements) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$statements1; - $x$1 = $x$1.$statements1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Statements)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_Statements_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Statements__init_ = ($this, $statements) => { - $this.$statements1 = $statements; -}, -oncia_Statements__init_0 = var_0 => { - let var_1 = new oncia_Statements(); - oncia_Statements__init_(var_1, var_0); - return var_1; -}; -function oncipj_TokenMgrException() { - jl_RuntimeException.call(this); - this.$errorCode = 0; -} -let oncipj_TokenMgrException_addEscapes = $str => { - let $retval, $i, $ch, var$5, var$6; - $retval = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($retval); - $i = 0; - while ($i < $str.$nativeString.length) { - a: { - $ch = jl_String_charAt($str, $i); - switch ($ch) { - case 8: - break; - case 9: - jl_AbstractStringBuilder_append($retval, $rt_s(4416)); - break a; - case 10: - jl_AbstractStringBuilder_append($retval, $rt_s(4417)); - break a; - case 12: - jl_AbstractStringBuilder_append($retval, $rt_s(4418)); - break a; - case 13: - jl_AbstractStringBuilder_append($retval, $rt_s(4419)); - break a; - case 34: - jl_AbstractStringBuilder_append($retval, $rt_s(4420)); - break a; - case 39: - jl_AbstractStringBuilder_append($retval, $rt_s(4421)); - break a; - case 92: - jl_AbstractStringBuilder_append($retval, $rt_s(479)); - break a; - default: - if ($ch >= 32 && $ch <= 126) { - jl_AbstractStringBuilder_append0($retval, $ch); - break a; - } - var$5 = jl_Integer_toString0($ch, 16); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(4422)), var$5); - var$6 = jl_AbstractStringBuilder_toString(var$6); - jl_AbstractStringBuilder_append($retval, $rt_s(4423)); - jl_AbstractStringBuilder_append($retval, jl_String_substring(var$6, var$6.$nativeString.length - 4 | 0, var$6.$nativeString.length)); - break a; - } - jl_AbstractStringBuilder_append($retval, $rt_s(4424)); - } - $i = $i + 1 | 0; - } - return jl_AbstractStringBuilder_toString($retval); -}, -oncipj_TokenMgrException_getMessage = $this => { - return $this.$message; -}, -oncipj_TokenMgrException__init_ = ($this, $EOFSeen, $lexState, $errorLine, $errorColumn, $errorAfter, $curChar, $reason) => { - let var$8, var$9, var$10; - $lexState = $curChar & 65535; - if ($EOFSeen) - var$8 = $rt_s(4425); - else { - var$9 = oncipj_TokenMgrException_addEscapes(jl_String_valueOf1($lexState)); - var$10 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$10); - jl_AbstractStringBuilder_append0(var$10, 34); - jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$10, var$9), $rt_s(4426)), $curChar), $rt_s(4427)); - var$8 = jl_AbstractStringBuilder_toString(var$10); - } - var$10 = oncipj_TokenMgrException_addEscapes($errorAfter); - $errorAfter = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($errorAfter); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($errorAfter, $rt_s(4428)), $errorLine), $rt_s(795)), $errorColumn), $rt_s(4429)), var$8), $rt_s(4430)), var$10), 34); - jl_Throwable__init_0($this, jl_AbstractStringBuilder_toString($errorAfter)); - $this.$errorCode = $reason; -}, -oncipj_TokenMgrException__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncipj_TokenMgrException(); - oncipj_TokenMgrException__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}; -function s_PartialFunction$Lifted() { - sr_AbstractFunction1.call(this); - this.$pf3 = null; -} -let s_PartialFunction$Lifted_apply = ($this, $v1) => { - let var$2; - var$2 = $this.$pf3.$applyOrElse($v1, s_PartialFunction$_fallback_fn); - return s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, var$2) ? s_None$_MODULE$ : s_Some__init_(var$2); -}; -function s_PartialFunction$Unlifted() { - sr_AbstractPartialFunction.call(this); - this.$f14 = null; -} -let s_PartialFunction$Unlifted_applyOrElse = ($this, $x, $default) => { - $default = $this.$f14; - $x = oncir_Deprecations$SemanticallyDeprecatedFeatures_$anonfun$find$1($default.$_0445, $default.$_1155, $x); - if ($x === null) - $rt_throw(null); - if (!s_Option_isEmpty($x)) - return $x.$get1(); - return s_PartialFunction$_fallback_fn; -}; -function ju_Collections$13() { - ju_AbstractMap.call(this); - this.$val$m = null; -} -function oncirr_normalizeWithAndReturnClauses$$anonfun$1() { - sr_AbstractPartialFunction.call(this); - this.$$outer5 = null; -} -let oncirr_normalizeWithAndReturnClauses$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let $x$2, var$4, $x$1, $x$4, $ri, $x$3, $orderBy, $where, $existingAliases, $updatedOrderBy, $updatedWhere, $x$7; - $x$2 = 0; - var$4 = null; - if ($rt_isInstance($x1, oncia_ProjectionClause)) { - $x$2 = 1; - var$4 = $x1; - oncia_ProjectionClause$_$callClinit(); - $x$1 = oncia_ProjectionClause$_unapply(oncia_ProjectionClause$_MODULE$, var$4); - if (!s_Option_isEmpty($x$1)) { - $x$4 = $x$1.$value5; - $ri = $x$4.$_22; - $x$3 = $x$4.$_31; - $x$4 = $x$4.$_60; - if ($ri !== null && jl_Object_equals(s_None$_MODULE$, $x$3) && jl_Object_equals(s_None$_MODULE$, $x$4)) { - $x$1 = oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems($this.$$outer5, $ri); - return var$4.$copyProjection(var$4.$copyProjection$default$1(), $x$1, var$4.$copyProjection$default$3(), var$4.$copyProjection$default$4(), var$4.$copyProjection$default$5(), var$4.$copyProjection$default$6()); - } - } - } - if ($rt_isInstance($x1, oncia_FullSubqueryExpression)) { - $x1 = $x1; - return $x1.$withQuery(oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery($this.$$outer5, $x1.$query())); - } - if ($x$2) { - oncia_ProjectionClause$_$callClinit(); - $x$1 = oncia_ProjectionClause$_unapply(oncia_ProjectionClause$_MODULE$, var$4); - if (!s_Option_isEmpty($x$1)) { - $x$1 = $x$1.$value5; - $ri = $x$1.$_22; - $orderBy = $x$1.$_31; - $where = $x$1.$_60; - if ($ri !== null) { - $x1 = new oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_0; - $x1.$_0506 = $this; - var$4.$verifyOrderByAggregationUse($x1); - $existingAliases = ($ri.$items0.$collect(new oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2)).$toMap(s_$less$colon$less$_singleton); - $x1 = new oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1; - $x1.$_01040 = $this; - $x1.$_1356 = $existingAliases; - $updatedOrderBy = s_Option_map($orderBy, $x1); - $x1 = new oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2; - $x1.$_085 = $this; - $x1.$_135 = $existingAliases; - $updatedWhere = s_Option_map($where, $x1); - $x$7 = oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems($this.$$outer5, $ri); - return var$4.$copyProjection(var$4.$copyProjection$default$1(), $x$7, $updatedOrderBy, var$4.$copyProjection$default$4(), var$4.$copyProjection$default$5(), $updatedWhere); - } - } - } - return $default.$apply2($x1); -}; -function sci_Vector$filterImpl$lambda$_70_0() { - let a = this; jl_Object.call(a); - a.$_0410 = null; - a.$_1148 = 0; - a.$_253 = null; -} -let sci_Vector$filterImpl$lambda$_70_0_apply = (var$0, var$1) => { - return sci_Vector_$anonfun$filterImpl$1(var$0.$_0410, var$0.$_1148, var$0.$_253, var$1); -}; -function sci_Vector$filterImpl$lambda$_70_1() { - let a = this; jl_Object.call(a); - a.$_0891 = null; - a.$_1306 = 0; - a.$_299 = null; -} -let sci_Vector$filterImpl$lambda$_70_1_apply = (var$0, var$1) => { - return sci_Vector_$anonfun$filterImpl$2(var$0.$_0891, var$0.$_1306, var$0.$_299, var$1); -}, -oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0 = $rt_classWithoutFields(), -oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0_apply = (var$0, var$1) => { - return var$1.$simplify(); -}, -sr_AbstractFunction2 = $rt_classWithoutFields(), -sr_AbstractFunction2_toString = $this => { - return $rt_s(425); -}; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$() { - sr_AbstractFunction2.call(this); - this.$$outer57 = null; -} -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$_apply = ($this, $useClausesToRemove, $currentWorkGraph) => { - return oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_($this.$$outer57, $useClausesToRemove, $currentWorkGraph); -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$__init_ = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer57 = $$outer; -}, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$__init_0 = var_0 => { - let var_1 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$(); - oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$__init_(var_1, var_0); - return var_1; -}; -function sci_Map$WithDefault() { - let a = this; sci_AbstractMap.call(a); - a.$underlying7 = null; - a.$defaultValue = null; -} -let sci_Map$WithDefault_get = ($this, $key) => { - return $this.$underlying7.$get2($key); -}, -sci_Map$WithDefault_default = ($this, $key) => { - return $this.$defaultValue.$_0633; -}, -sci_Map$WithDefault_iterableFactory = $this => { - return $this.$underlying7.$iterableFactory(); -}, -sci_Map$WithDefault_iterator = $this => { - return $this.$underlying7.$iterator0(); -}, -sci_Map$WithDefault_isEmpty = $this => { - return $this.$underlying7.$isEmpty(); -}, -sci_Map$WithDefault_mapFactory = $this => { - return $this.$underlying7.$mapFactory(); -}, -sci_Map$WithDefault_fromSpecific = ($this, $coll) => { - return sci_Map$WithDefault__init_((sci_Map$WithDefault_mapFactory($this)).$from0($coll), $this.$defaultValue); -}, -sci_Map$WithDefault_newSpecificBuilder = $this => { - let $mapResult_this, $mapResult_f; - $mapResult_this = sci_MapBuilderImpl__init_(); - $mapResult_f = new sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0; - $mapResult_f.$_0924 = $this; - return scm_Builder$$anon$1__init_($mapResult_this, $mapResult_f); -}, -sci_Map$WithDefault_fromSpecific1 = ($this, $coll) => { - return sci_Map$WithDefault_fromSpecific($this, $coll); -}, -sci_Map$WithDefault_fromSpecific0 = ($this, $coll) => { - return sci_Map$WithDefault_fromSpecific($this, $coll); -}, -sci_Map$WithDefault_updated = ($this, $key, $value) => { - return sci_Map$WithDefault__init_($this.$underlying7.$updated0($key, $value), $this.$defaultValue); -}, -sci_Map$WithDefault_removed = ($this, $key) => { - return sci_Map$WithDefault__init_($this.$underlying7.$removed($key), $this.$defaultValue); -}, -sci_Map$WithDefault_concat = ($this, $suffix) => { - return sci_Map$WithDefault__init_($this.$underlying7.$concat2($suffix), $this.$defaultValue); -}, -sci_Map$WithDefault__init_0 = ($this, $underlying, $defaultValue) => { - $this.$underlying7 = $underlying; - $this.$defaultValue = $defaultValue; -}, -sci_Map$WithDefault__init_ = (var_0, var_1) => { - let var_2 = new sci_Map$WithDefault(); - sci_Map$WithDefault__init_0(var_2, var_0, var_1); - return var_2; -}; -function sci_Map$withDefaultValue$lambda$_9_0() { - jl_Object.call(this); - this.$_0633 = null; -} -function onciu_Foldable$TreeAny$$anon$1() { - sc_AbstractIterator.call(this); - this.$current6 = null; -} -let onciu_Foldable$TreeAny$$anon$1_hasNext = $this => { - return $this.$current6.$nonEmpty(); -}, -onciu_Foldable$TreeAny$$anon$1_next = $this => { - let $r; - $r = $this.$current6.$last(); - $this.$current6 = $this.$current6.$init1(); - return $r; -}; -function onciu_Foldable$TreeAny$$anon$2() { - let a = this; jl_Object.call(a); - a.$c0 = 0; - a.$p$10 = null; -} -let onciu_Foldable$TreeAny$$anon$2_iterator = $this => { - return $this; -}, -onciu_Foldable$TreeAny$$anon$2_isEmpty = $this => { - return sc_Iterator_isEmpty$($this); -}, -onciu_Foldable$TreeAny$$anon$2_toString = $this => { - return $rt_s(818); -}, -onciu_Foldable$TreeAny$$anon$2_foreach = ($this, $f) => { - sc_IterableOnceOps_foreach$($this, $f); -}, -onciu_Foldable$TreeAny$$anon$2_exists = ($this, $p) => { - return sc_IterableOnceOps_exists$($this, $p); -}, -onciu_Foldable$TreeAny$$anon$2_find = ($this, $p) => { - return sc_IterableOnceOps_find$($this, $p); -}, -onciu_Foldable$TreeAny$$anon$2_foldLeft = ($this, $z, $op) => { - return sc_IterableOnceOps_foldLeft$($this, $z, $op); -}, -onciu_Foldable$TreeAny$$anon$2_nonEmpty = $this => { - return sc_IterableOnceOps_nonEmpty$($this); -}, -onciu_Foldable$TreeAny$$anon$2_size = $this => { - return sc_IterableOnceOps_size$($this); -}, -onciu_Foldable$TreeAny$$anon$2_copyToArray1 = ($this, $xs) => { - return sc_IterableOnceOps_copyToArray$($this, $xs); -}, -onciu_Foldable$TreeAny$$anon$2_copyToArray0 = ($this, $xs, $start) => { - return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); -}, -onciu_Foldable$TreeAny$$anon$2_copyToArray = ($this, $xs, $start, $len) => { - return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); -}, -onciu_Foldable$TreeAny$$anon$2_toList = $this => { - return sc_IterableOnceOps_toList$($this); -}, -onciu_Foldable$TreeAny$$anon$2_toSeq = $this => { - return sc_IterableOnceOps_toSeq$($this); -}, -onciu_Foldable$TreeAny$$anon$2_toArray = ($this, $evidence$2) => { - return sc_IterableOnceOps_toArray$($this, $evidence$2); -}, -onciu_Foldable$TreeAny$$anon$2_knownSize = $this => { - return (-1); -}, -onciu_Foldable$TreeAny$$anon$2_hasNext = $this => { - return $this.$c0 < 0 ? 0 : 1; -}, -onciu_Foldable$TreeAny$$anon$2_next = $this => { - let $result; - $result = $this.$p$10.$productElement($this.$c0); - $this.$c0 = $this.$c0 - 1 | 0; - return $result; -}; -function oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$scope$1 = null; - a.$root$1 = null; -} -let oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5, var$6; - a: { - b: { - $x = $x; - if ($x !== null) - c: { - var$3 = $x.$_1(); - var$4 = $x.$_2(); - var$5 = var$4.$name12; - if (var$3 !== null) { - if (jl_String_equals(var$3, var$5)) - break c; - else - break b; - } - if (var$5 !== null) - break b; - } - $x = $default.$apply2($x); - break a; - } - onciu_Ref$_$callClinit(); - $x = onciu_Ref_toIdString(onciu_Ref$_apply(onciu_Ref$_MODULE$, $this.$scope$1)); - var$5 = $this.$root$1; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(var$6, 39); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$3), $rt_s(4431)), var$4), $rt_s(4432)), $x), $rt_s(4433)), $rt_s(93)), var$5); - $x = jl_AbstractStringBuilder_toString(var$6); - } - return $x; -}, -onciuci_ListSet$EmptyListSet$ = $rt_classWithoutFields(onciuci_ListSet), -onciuci_ListSet$EmptyListSet$_MODULE$ = null, -onciuci_ListSet$EmptyListSet$_$callClinit = () => { - onciuci_ListSet$EmptyListSet$_$callClinit = $rt_eraseClinit(onciuci_ListSet$EmptyListSet$); - onciuci_ListSet$EmptyListSet$__clinit_(); -}, -onciuci_ListSet$EmptyListSet$__clinit_ = () => { - let var$1; - var$1 = new onciuci_ListSet$EmptyListSet$; - onciuci_ListSet$EmptyListSet$_$callClinit(); - onciuci_ListSet__init_0(var$1, ju_LinkedHashSet__init_0()); - onciuci_ListSet$EmptyListSet$_MODULE$ = var$1; -}, -onciuci_ListSet$EmptyListSet$_knownSize = $this => { - return 0; -}; -function onciuci_ListSet$Builder() { - jl_Object.call(this); - this.$javaSet = null; -} -let onciuci_ListSet$Builder_sizeHint0 = ($this, $size) => { - return; -}, -onciuci_ListSet$Builder_sizeHint = ($this, $coll, $delta) => { - scm_Builder_sizeHint$($this, $coll, $delta); -}, -onciuci_ListSet$Builder_addAll = ($this, $xs) => { - return scm_Growable_addAll$($this, $xs); -}, -onciuci_ListSet$Builder_result = $this => { - return onciuci_ListSet__init_($this.$javaSet); -}, -onciuci_ListSet$Builder_addOne = ($this, $elem) => { - ju_HashSet_add($this.$javaSet, $elem); - return $this; -}; -function sc_Map$equals$lambda$_7_0() { - jl_Object.call(this); - this.$_0596 = null; -} -let sc_Map$equals$lambda$_7_0__init_0 = (var$0, var$1) => { - var$0.$_0596 = var$1; -}, -sc_Map$equals$lambda$_7_0__init_ = var_0 => { - let var_1 = new sc_Map$equals$lambda$_7_0(); - sc_Map$equals$lambda$_7_0__init_0(var_1, var_0); - return var_1; -}, -sc_Map$equals$lambda$_7_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0596; - var$3 = var$1.$_1(); - sc_Map$_$callClinit(); - return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$2.$getOrElse1(var$3, sc_Map$_scala$collection$Map$$DefaultSentinelFn), var$1.$_2()) ? 0 : 1); -}, -oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_0 = $rt_classWithoutFields(), -oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 === null ? 0 : 1); -}; -function oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_1() { - jl_Object.call(this); - this.$_023 = null; -} -let oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_023; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - var$4 = new oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0; - var$4.$_0914 = var$2; - var$4.$_1317 = var$3; - var$1.$foreach(var$4); - return sr_BoxedUnit_UNIT; -}; -function oncifp_InstrumentedProcedureSignatureResolver() { - let a = this; jl_Object.call(a); - a.$resolver = null; - a.$hasAttemptedToResolve = 0; -} -let oncifp_InstrumentedProcedureSignatureResolver_procedureSignature = ($this, $name) => { - $this.$hasAttemptedToResolve = 1; - return cnsa_CustomSignatureResolver_procedureSignature($this.$resolver, $name); -}, -oncifp_InstrumentedProcedureSignatureResolver_functionSignature = ($this, $name) => { - $this.$hasAttemptedToResolve = 1; - return cnsa_CustomSignatureResolver_functionSignature($this.$resolver, $name); -}, -oncifp_RewriteProcedureCalls$process$lambda$_2_0 = $rt_classWithoutFields(), -oncifp_RewriteProcedureCalls$process$lambda$_2_0_apply = (var$0, var$1) => { - return var$1.$name4; -}, -onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_0 = $rt_classWithoutFields(), -onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciafn_JavaCCParser$_$callClinit(); - return jl_Boolean_valueOf(var$1 === null ? 0 : 1); -}; -function onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_1() { - let a = this; jl_Object.call(a); - a.$_0812 = null; - a.$_1277 = null; -} -let onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0812; - var$3 = var$0.$_1277; - onciafn_JavaCCParser$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - a: { - b: { - var$4 = var$1.$_1$mcC$sp(); - var$5 = var$1.$_2$mcI$sp(); - switch (var$4) { - case 34: - break; - case 39: - if (var$5 && jl_String_charAt(var$3, var$5 - 1 | 0) == 92) - break b; - onciafn_JavaCCParser$_updateCurrentDelimiter$1(var$2, var$4, var$5); - break a; - case 47: - if (var$5 >= (var$3.$nativeString.length - 1 | 0) && jl_String_charAt(var$3, var$5 + 1 | 0) != 42) - break b; - onciafn_JavaCCParser$_updateCurrentDelimiter$1(var$2, var$4, var$5); - break a; - default: - break b; - } - if (!(var$5 && jl_String_charAt(var$3, var$5 - 1 | 0) == 92)) { - onciafn_JavaCCParser$_updateCurrentDelimiter$1(var$2, var$4, var$5); - break a; - } - } - } - return sr_BoxedUnit_UNIT; -}; -function ju_Optional() { - jl_Object.call(this); - this.$value22 = null; -} -let ju_Optional_emptyInstance = null, -ju_Optional__init_0 = ($this, $value) => { - $this.$value22 = $value; -}, -ju_Optional__init_ = var_0 => { - let var_1 = new ju_Optional(); - ju_Optional__init_0(var_1, var_0); - return var_1; -}, -ju_Optional_empty = () => { - if (ju_Optional_emptyInstance === null) - ju_Optional_emptyInstance = ju_Optional__init_(null); - return ju_Optional_emptyInstance; -}, -ju_Optional_of = $value => { - return ju_Optional__init_(ju_Objects_requireNonNull($value)); -}, -ju_Optional_ofNullable = $value => { - return $value === null ? ju_Optional_empty() : ju_Optional_of($value); -}, -ju_Optional_get = $this => { - let var$1; - var$1 = $this.$value22; - if (var$1 !== null) - return var$1; - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}, -ju_Optional_isPresent = $this => { - return $this.$value22 === null ? 0 : 1; -}, -ju_Optional_ifPresent = ($this, $consumer) => { - let var$2; - var$2 = $this.$value22; - if (var$2 !== null) - $consumer.$accept(var$2); -}, -ju_Optional_orElse = ($this, $other) => { - let var$2; - var$2 = $this.$value22; - if (var$2 !== null) - $other = var$2; - return $other; -}; -function oncipj_ParseException() { - let a = this; jl_Exception.call(a); - a.$currentToken = null; - a.$expectedTokenSequences = null; - a.$tokenImage = null; -} -let oncipj_ParseException_EOL = null, -oncipj_ParseException__init_2 = $this => { - jl_Throwable__init_($this); -}, -oncipj_ParseException__init_ = () => { - let var_0 = new oncipj_ParseException(); - oncipj_ParseException__init_2(var_0); - return var_0; -}, -oncipj_ParseException__init_1 = ($this, $message) => { - jl_Throwable__init_0($this, $message); -}, -oncipj_ParseException__init_0 = var_0 => { - let var_1 = new oncipj_ParseException(); - oncipj_ParseException__init_1(var_1, var_0); - return var_1; -}, -oncipj_ParseException__initialise = ($currentToken, $expectedTokenSequences, $tokenImage) => { - let $expected, $maxSize, $i, var$7, $j, $sb, $tok, $i_0, $tokenText, var$13, var$14, var$15, var$16, var$17, var$18; - $expected = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($expected); - $maxSize = 0; - $i = 0; - while (true) { - var$7 = $expectedTokenSequences.data; - $j = var$7.length; - if ($i >= $j) - break; - if ($maxSize < var$7[$i].data.length) - $maxSize = var$7[$i].data.length; - $j = 0; - while ($j < var$7[$i].data.length) { - jl_AbstractStringBuilder_append($expected, $tokenImage.data[var$7[$i].data[$j]]); - jl_AbstractStringBuilder_append0($expected, 32); - $j = $j + 1 | 0; - } - if (var$7[$i].data[var$7[$i].data.length - 1 | 0]) - jl_AbstractStringBuilder_append($expected, $rt_s(4434)); - jl_AbstractStringBuilder_append($expected, oncipj_ParseException_EOL); - jl_AbstractStringBuilder_append($expected, $rt_s(4435)); - $i = $i + 1 | 0; - } - $sb = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($sb); - jl_AbstractStringBuilder_append($sb, $rt_s(4436)); - $tok = $currentToken.$next5; - $i_0 = 0; - a: { - while (true) { - if ($i_0 >= $maxSize) - break a; - $tokenText = $tok.$image; - var$13 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$13); - var$14 = 0; - while (var$14 < $tokenText.$nativeString.length) { - b: { - $i = jl_String_charAt($tokenText, var$14); - switch ($i) { - case 8: - break; - case 9: - jl_AbstractStringBuilder_append(var$13, $rt_s(4416)); - break b; - case 10: - jl_AbstractStringBuilder_append(var$13, $rt_s(4417)); - break b; - case 12: - jl_AbstractStringBuilder_append(var$13, $rt_s(4418)); - break b; - case 13: - jl_AbstractStringBuilder_append(var$13, $rt_s(4419)); - break b; - case 34: - jl_AbstractStringBuilder_append(var$13, $rt_s(4420)); - break b; - case 39: - jl_AbstractStringBuilder_append(var$13, $rt_s(4421)); - break b; - case 92: - jl_AbstractStringBuilder_append(var$13, $rt_s(479)); - break b; - default: - if ($i >= 32 && $i <= 126) { - jl_AbstractStringBuilder_append0(var$13, $i); - break b; - } - var$15 = jl_Integer_toString0($i, 16); - var$16 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$16); - jl_StringBuilder_append(jl_StringBuilder_append(var$16, $rt_s(4422)), var$15); - var$16 = jl_AbstractStringBuilder_toString(var$16); - jl_AbstractStringBuilder_append(var$13, $rt_s(4423)); - jl_AbstractStringBuilder_append(var$13, jl_String_substring(var$16, var$16.$nativeString.length - 4 | 0, var$16.$nativeString.length)); - break b; - } - jl_AbstractStringBuilder_append(var$13, $rt_s(4424)); - } - var$14 = var$14 + 1 | 0; - } - var$15 = jl_AbstractStringBuilder_toString(var$13); - if ($i_0) - jl_AbstractStringBuilder_append0($sb, 32); - var$17 = $tok.$kind; - if (!var$17) - break; - var$16 = $tokenImage.data[var$17]; - var$18 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$18); - jl_AbstractStringBuilder_append0(var$18, 32); - jl_StringBuilder_append(var$18, var$16); - jl_AbstractStringBuilder_append($sb, jl_AbstractStringBuilder_toString(var$18)); - jl_AbstractStringBuilder_append($sb, $rt_s(4437)); - jl_AbstractStringBuilder_append($sb, var$15); - jl_AbstractStringBuilder_append($sb, $rt_s(481)); - $tok = $tok.$next5; - $i_0 = $i_0 + 1 | 0; - } - jl_AbstractStringBuilder_append($sb, $tokenImage.data[0]); - } - jl_AbstractStringBuilder_append($sb, $rt_s(4438)); - var$15 = jl_StringBuilder_append0($sb, $currentToken.$next5.$beginLine); - jl_AbstractStringBuilder_append(var$15, $rt_s(795)); - jl_StringBuilder_append0(var$15, $currentToken.$next5.$beginColumn); - jl_AbstractStringBuilder_append($sb, $rt_s(403)); - jl_AbstractStringBuilder_append($sb, oncipj_ParseException_EOL); - if ($j) { - jl_AbstractStringBuilder_append($sb, oncipj_ParseException_EOL); - jl_AbstractStringBuilder_append($sb, $rt_s(4439)); - jl_AbstractStringBuilder_append($sb, $j != 1 ? $rt_s(4440) : $rt_s(91)); - jl_AbstractStringBuilder_append($sb, oncipj_ParseException_EOL); - jl_AbstractStringBuilder_append($sb, oncipj_ParseException_EOL); - jl_AbstractStringBuilder_append1($sb, $expected); - } - return jl_AbstractStringBuilder_toString($sb); -}, -oncipj_ParseException__clinit_ = () => { - oncipj_ParseException_EOL = jl_System_getProperty($rt_s(92), $rt_s(93)); -}; -function oncipc_InvalidUnicodeLiteral() { - let a = this; jl_RuntimeException.call(a); - a.$offset7 = 0; - a.$line9 = 0; - a.$column4 = 0; -} -function oncipj_WithOffset() { - let a = this; jl_Object.call(a); - a.$beginOffset = 0; - a.$endOffset = 0; -} -function oncipj_Token() { - let a = this; oncipj_WithOffset.call(a); - a.$kind = 0; - a.$beginLine = 0; - a.$beginColumn = 0; - a.$endLine = 0; - a.$endColumn = 0; - a.$image = null; - a.$next5 = null; - a.$specialToken = null; -} -let oncipj_Token_toString = $this => { - return $this.$image; -}, -oncipj_ParseExceptions = $rt_classWithoutFields(jl_RuntimeException), -oncipj_ParseExceptions_expected = ($expectedTokenSequences, $tokenImage, $currentToken) => { - let $tokenCount, $strings, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14; - $tokenCount = ju_HashMap__init_(); - $strings = ju_Arrays_stream($expectedTokenSequences); - var$6 = new oncipj_ParseExceptions$expected$lambda$_1_0; - var$7 = new jusi_FlatMappingToIntStreamImpl; - var$7.$sourceStream2 = $strings; - var$7.$mapper1 = var$6; - var$8 = new oncipj_ParseExceptions$expected$lambda$_1_1; - var$8.$_01043 = $tokenCount; - a: while (true) { - b: { - $strings = new jusi_SimpleStreamImpl$forEachOrdered$lambda$_19_0; - $strings.$_01166 = var$8; - ju_Objects_requireNonNull($strings); - var$9 = new jusi_BoxedIntStream$next$lambda$_1_0; - var$9.$_0940 = $strings; - if (var$7.$current3 === null) { - if (var$7.$done0) { - var$10 = 0; - break b; - } - var$7.$currentSet = 0; - c: { - while (true) { - if (var$7.$currentSet) - break c; - $strings = var$7.$sourceStream2; - var$6 = new jusi_FlatMappingToIntStreamImpl$next$lambda$_1_0; - var$6.$_0478 = var$7; - if (!jusi_ArrayStreamImpl_next($strings, var$6)) - break; - } - var$7.$done0 = 1; - } - if (var$7.$current3 === null) { - var$10 = 0; - break b; - } - } - d: { - var$6 = var$7.$current3; - if (var$6 instanceof jusi_SimpleIntStreamImpl) { - if (jusi_ArrayIntStreamImpl_next(var$6, var$9)) { - var$10 = 1; - break b; - } - var$7.$current3 = null; - } else { - $strings = new jusi_SimpleIntStreamIterator; - $strings.$stream1 = var$6; - var$7.$iterator5 = $strings; - while (true) { - $strings = var$7.$iterator5; - jusi_SimpleIntStreamIterator_fetchIfNeeded($strings); - if (!($strings.$state1 == 3 ? 0 : 1)) { - var$7.$iterator5 = null; - var$7.$current3 = null; - break d; - } - $strings = var$7.$iterator5; - jusi_SimpleIntStreamIterator_fetchIfNeeded($strings); - var$11 = $strings.$state1; - if (var$11 == 3) - break a; - var$12 = $strings.$lastElement; - $strings.$state1 = var$11 != 2 ? 0 : 3; - if (!jusi_BoxedIntStream$next$lambda$_1_0_test(var$9, (jl_Integer_valueOf(var$12)).$value4)) - break; - } - var$10 = 1; - break b; - } - } - var$10 = 1; - } - if (!var$10) { - var$13 = (ju_Map_getOrDefault($tokenCount, jl_Integer_valueOf(367), jl_Long_valueOf(Long_ZERO))).$value10; - var$14 = jl_Math_min0(var$13, (ju_Map_getOrDefault($tokenCount, jl_Integer_valueOf(257), jl_Long_valueOf(Long_ZERO))).$value10); - if (Long_gt(var$13, Long_ZERO)) { - oncipj_IdentifierTokens_$callClinit(); - oncipj_ParseExceptions_filterTokenSet($tokenCount, oncipj_IdentifierTokens_identifiers, var$13); - } - var$10 = Long_compare(var$14, Long_ZERO); - if (var$10 > 0) { - oncipj_ExpressionTokens_$callClinit(); - oncipj_ParseExceptions_filterTokenSet($tokenCount, oncipj_ExpressionTokens_expressions, var$14); - } - $tokenCount = ju_Collection_stream(ju_HashMap_keySet($tokenCount)); - $strings = new oncipj_ParseExceptions$processExpectedList$lambda$_2_0; - $strings.$_0480 = $tokenImage; - $strings.$_1168 = $currentToken; - $strings = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map($tokenCount, $strings), jus_Collectors_toList()); - if (Long_gt(Long_sub(var$13, var$14), Long_ZERO)) - $strings.$add($rt_s(4441)); - if (var$10 > 0) - $strings.$add($rt_s(4442)); - ju_Collections_sort($strings, ju_Comparator$NaturalOrder_INSTANCE); - return $strings; - } - } - $currentToken = new ju_NoSuchElementException; - jl_Exception__init_($currentToken); - $rt_throw($currentToken); -}, -oncipj_ParseExceptions_filterTokenSet = ($expectedTokens, $tokens, $quantitiy) => { - let $token, $newCount, var$6; - $tokens = ju_HashSet_iterator($tokens); - while ($tokens.$hasNext()) { - $token = $tokens.$next(); - if (ju_HashMap_containsKey($expectedTokens, $token)) { - $newCount = Long_sub((ju_HashMap_get($expectedTokens, $token)).$value10, $quantitiy); - if (Long_le($newCount, Long_ZERO)) - ju_HashMap_remove($expectedTokens, $token); - else { - var$6 = jl_Long_valueOf($newCount); - if (ju_HashMap_containsKey($expectedTokens, $token)) - ju_HashMap_put($expectedTokens, $token, var$6); - } - } - } - return $expectedTokens; -}; -function sc_View$FlatMap() { - let a = this; sc_AbstractView.call(a); - a.$underlying30 = null; - a.$f15 = null; -} -let sc_View$FlatMap_iterator = $this => { - return ($this.$underlying30.$iterator0()).$flatMap2($this.$f15); -}, -sc_View$FlatMap_knownSize = $this => { - if ($this.$underlying30.$knownSize()) - return (-1); - return 0; -}, -sc_View$FlatMap_isEmpty = $this => { - return sc_Iterator_isEmpty$(sc_View$FlatMap_iterator($this)); -}, -sc_View$FlatMap__init_0 = ($this, $underlying, $f) => { - $this.$underlying30 = $underlying; - $this.$f15 = $f; -}, -sc_View$FlatMap__init_ = (var_0, var_1) => { - let var_2 = new sc_View$FlatMap(); - sc_View$FlatMap__init_0(var_2, var_0, var_1); - return var_2; -}, -oncirr_rewriteShortestPathWithFixedLengthRel$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_rewriteShortestPathWithFixedLengthRel$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let var$3, $r, $relPat, $range, $one, $x$8; - if ($x1 instanceof oncie_ShortestPathsPatternPart) { - var$3 = $x1; - $r = var$3.$element2; - if ($r instanceof oncie_RelationshipChain) { - $r = $r; - $relPat = $r.$relationship1; - if ($r.$element4 instanceof oncie_NodePattern && $relPat !== null) { - $range = $relPat.$length3; - if (jl_Object_equals(s_None$_MODULE$, $range)) { - $one = new s_Some; - $range = new oncie_UnsignedDecimalIntegerLiteral; - onciu_InputPosition$_$callClinit(); - oncie_UnsignedDecimalIntegerLiteral__init_0($range, $rt_s(414), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - s_Some__init_0($one, $range); - $range = s_Some__init_(s_Some__init_(oncie_Range__init_($one, $one, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)))); - $x$8 = oncie_RelationshipPattern_copy($relPat, $relPat.$variable5, $relPat.$labelExpression6, $range, $relPat.$properties4, $relPat.$predicate1, $relPat.$direction0, $relPat.$position8); - return oncie_ShortestPathsPatternPart_copy(var$3, oncie_RelationshipChain_copy($r, $r.$element4, $x$8, $r.$rightNode0, $r.$position99), var$3.$single0, var$3.$position10); - } - } - } - } - return $default.$apply2($x1); -}; -function jusi_ArrayStreamImpl() { - let a = this; jusi_SimpleStreamImpl.call(a); - a.$array21 = null; - a.$index10 = 0; - a.$end3 = 0; - a.$size13 = 0; -} -let jusi_ArrayStreamImpl_next = ($this, $consumer) => { - let var$2, var$3; - a: { - while (true) { - var$2 = $this.$index10; - if (var$2 >= $this.$end3) - break a; - var$3 = $this.$array21.data; - $this.$index10 = var$2 + 1 | 0; - if ($consumer.$test0(var$3[var$2])) - continue; - else - break; - } - } - return $this.$index10 >= $this.$end3 ? 0 : 1; -}, -jusi_ArrayStreamImpl_estimateSize = $this => { - return $this.$size13; -}, -ju_SequencedSet = $rt_classWithoutFields(0), -ju_LinkedHashSet = $rt_classWithoutFields(ju_HashSet), -ju_LinkedHashSet__init_1 = $this => { - ju_HashSet__init_0($this, ju_LinkedHashMap__init_()); -}, -ju_LinkedHashSet__init_0 = () => { - let var_0 = new ju_LinkedHashSet(); - ju_LinkedHashSet__init_1(var_0); - return var_0; -}, -ju_LinkedHashSet__init_2 = ($this, $collection) => { - let $iter; - $iter = new ju_LinkedHashMap; - ju_HashMap__init_0($iter, ju_HashSet_size($collection) < 6 ? 11 : ju_HashSet_size($collection) * 2 | 0); - $iter.$accessOrder = 0; - $iter.$head2 = null; - ju_HashSet__init_0($this, $iter); - $iter = ju_HashSet_iterator($collection); - while ($iter.$hasNext()) { - ju_HashSet_add($this, $iter.$next()); - } -}, -ju_LinkedHashSet__init_ = var_0 => { - let var_1 = new ju_LinkedHashSet(); - ju_LinkedHashSet__init_2(var_1, var_0); - return var_1; -}; -function suh_MurmurHash3$accum$1() { - let a = this; jl_Object.call(a); - a.$a9 = 0; - a.$b1 = 0; - a.$n1 = 0; - a.$c1 = 0; -} -let suh_MurmurHash3$accum$1_apply = ($this, $v1, $v2) => { - let var$3; - suh_MurmurHash3$_$callClinit(); - var$3 = suh_MurmurHash3$_tuple2Hash(suh_MurmurHash3$_MODULE$, $v1, $v2); - $this.$a9 = $this.$a9 + var$3 | 0; - $this.$b1 = $this.$b1 ^ var$3; - $this.$c1 = $rt_imul($this.$c1, var$3 | 1); - $this.$n1 = $this.$n1 + 1 | 0; - return sr_BoxedUnit_UNIT; -}; -function ju_Vector() { - let a = this; ju_AbstractList.call(a); - a.$elementCount0 = 0; - a.$elementData3 = null; - a.$capacityIncrement = 0; -} -let ju_Vector_$assertionsDisabled = 0, -ju_Vector_addElement = ($this, $object) => { - let var$2, var$3, var$4, var$5, var$6; - jl_Object_monitorEnterSync($this); - try { - var$2 = $this.$elementCount0; - var$3 = $this.$elementData3; - var$4 = var$3.data.length; - if (var$2 == var$4) { - var$5 = $this.$capacityIncrement; - if (var$5 <= 0) - var$5 = !var$4 ? 1 : var$4; - var$6 = $rt_createArray(jl_Object, var$4 + var$5 | 0); - jl_System_fastArraycopy(var$3, 0, var$6, 0, var$2); - $this.$elementData3 = var$6; - } - var$6 = $this.$elementData3.data; - var$4 = $this.$elementCount0; - $this.$elementCount0 = var$4 + 1 | 0; - var$6[var$4] = $object; - $this.$modCount = $this.$modCount + 1 | 0; - } finally { - jl_Object_monitorExitSync($this); - } -}, -ju_Vector_isEmpty = $this => { - jl_Object_monitorEnterSync($this); - try { - return $this.$elementCount0 ? 0 : 1; - } finally { - jl_Object_monitorExitSync($this); - } -}, -ju_Vector__clinit_ = () => { - ju_Vector_$assertionsDisabled = 0; -}, -ju_Stack = $rt_classWithoutFields(ju_Vector), -ju_Stack_peek = $this => { - let var$1, $$je; - jl_Object_monitorEnterSync($this); - try { - a: { - try { - var$1 = $this.$elementData3.data[$this.$elementCount0 - 1 | 0]; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_IndexOutOfBoundsException) { - break a; - } else { - throw $$e; - } - } - return var$1; - } - var$1 = new ju_EmptyStackException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - } finally { - jl_Object_monitorExitSync($this); - } -}, -ju_Stack_pop = $this => { - let var$1, $obj, var$3, var$4; - jl_Object_monitorEnterSync($this); - try { - var$1 = $this.$elementCount0; - if (!var$1) { - $obj = new ju_EmptyStackException; - jl_Throwable__init_($obj); - $rt_throw($obj); - } - var$3 = var$1 - 1 | 0; - $this.$elementCount0 = var$3; - var$4 = $this.$elementData3.data; - $obj = var$4[var$3]; - var$4[var$3] = null; - $this.$modCount = $this.$modCount + 1 | 0; - return $obj; - } finally { - jl_Object_monitorExitSync($this); - } -}, -ju_Stack_push = ($this, $object) => { - ju_Vector_addElement($this, $object); - return $object; -}; -function oncipj_Cypher$JJCalls() { - let a = this; jl_Object.call(a); - a.$gen = 0; - a.$first4 = null; - a.$arg = 0; - a.$next13 = null; -} -let oncipj_Cypher$LookaheadSuccess = $rt_classWithoutFields(jl_IllegalStateException); -function oncipj_CypherTokenManager() { - let a = this; jl_Object.call(a); - a.$curLexState = 0; - a.$defaultLexState = 0; - a.$jjnewStateCnt = 0; - a.$jjround = 0; - a.$jjmatchedPos = 0; - a.$jjmatchedKind = 0; - a.$input_stream = null; - a.$jjrounds = null; - a.$jjstateSet = null; - a.$jjimage = null; - a.$image0 = null; - a.$jjimageLen = 0; - a.$lengthOfMatch = 0; - a.$curChar = 0; -} -let oncipj_CypherTokenManager_jjbitVec0 = null, -oncipj_CypherTokenManager_jjbitVec2 = null, -oncipj_CypherTokenManager_jjbitVec3 = null, -oncipj_CypherTokenManager_jjbitVec4 = null, -oncipj_CypherTokenManager_jjbitVec5 = null, -oncipj_CypherTokenManager_jjbitVec6 = null, -oncipj_CypherTokenManager_jjbitVec7 = null, -oncipj_CypherTokenManager_jjbitVec8 = null, -oncipj_CypherTokenManager_jjbitVec9 = null, -oncipj_CypherTokenManager_jjbitVec10 = null, -oncipj_CypherTokenManager_jjbitVec11 = null, -oncipj_CypherTokenManager_jjbitVec12 = null, -oncipj_CypherTokenManager_jjbitVec13 = null, -oncipj_CypherTokenManager_jjbitVec14 = null, -oncipj_CypherTokenManager_jjbitVec15 = null, -oncipj_CypherTokenManager_jjbitVec16 = null, -oncipj_CypherTokenManager_jjbitVec17 = null, -oncipj_CypherTokenManager_jjbitVec18 = null, -oncipj_CypherTokenManager_jjbitVec19 = null, -oncipj_CypherTokenManager_jjbitVec20 = null, -oncipj_CypherTokenManager_jjbitVec21 = null, -oncipj_CypherTokenManager_jjbitVec22 = null, -oncipj_CypherTokenManager_jjbitVec23 = null, -oncipj_CypherTokenManager_jjbitVec24 = null, -oncipj_CypherTokenManager_jjbitVec25 = null, -oncipj_CypherTokenManager_jjbitVec26 = null, -oncipj_CypherTokenManager_jjbitVec27 = null, -oncipj_CypherTokenManager_jjbitVec28 = null, -oncipj_CypherTokenManager_jjbitVec29 = null, -oncipj_CypherTokenManager_jjbitVec30 = null, -oncipj_CypherTokenManager_jjbitVec31 = null, -oncipj_CypherTokenManager_jjbitVec32 = null, -oncipj_CypherTokenManager_jjbitVec33 = null, -oncipj_CypherTokenManager_jjbitVec34 = null, -oncipj_CypherTokenManager_jjbitVec35 = null, -oncipj_CypherTokenManager_jjbitVec36 = null, -oncipj_CypherTokenManager_jjbitVec37 = null, -oncipj_CypherTokenManager_jjbitVec38 = null, -oncipj_CypherTokenManager_jjbitVec39 = null, -oncipj_CypherTokenManager_jjbitVec40 = null, -oncipj_CypherTokenManager_jjbitVec41 = null, -oncipj_CypherTokenManager_jjbitVec42 = null, -oncipj_CypherTokenManager_jjbitVec43 = null, -oncipj_CypherTokenManager_jjbitVec44 = null, -oncipj_CypherTokenManager_jjbitVec45 = null, -oncipj_CypherTokenManager_jjbitVec46 = null, -oncipj_CypherTokenManager_jjbitVec47 = null, -oncipj_CypherTokenManager_jjbitVec48 = null, -oncipj_CypherTokenManager_jjbitVec49 = null, -oncipj_CypherTokenManager_jjbitVec50 = null; -let oncipj_CypherTokenManager_jjbitVec51 = null, -oncipj_CypherTokenManager_jjbitVec52 = null, -oncipj_CypherTokenManager_jjbitVec53 = null, -oncipj_CypherTokenManager_jjbitVec54 = null, -oncipj_CypherTokenManager_jjbitVec55 = null, -oncipj_CypherTokenManager_jjbitVec56 = null, -oncipj_CypherTokenManager_jjbitVec57 = null, -oncipj_CypherTokenManager_jjbitVec58 = null, -oncipj_CypherTokenManager_jjbitVec59 = null, -oncipj_CypherTokenManager_jjbitVec60 = null, -oncipj_CypherTokenManager_jjbitVec61 = null, -oncipj_CypherTokenManager_jjbitVec62 = null, -oncipj_CypherTokenManager_jjbitVec63 = null, -oncipj_CypherTokenManager_jjbitVec64 = null, -oncipj_CypherTokenManager_jjbitVec65 = null, -oncipj_CypherTokenManager_jjbitVec66 = null, -oncipj_CypherTokenManager_jjbitVec67 = null, -oncipj_CypherTokenManager_jjbitVec68 = null, -oncipj_CypherTokenManager_jjbitVec69 = null, -oncipj_CypherTokenManager_jjbitVec70 = null, -oncipj_CypherTokenManager_jjbitVec71 = null, -oncipj_CypherTokenManager_jjbitVec72 = null, -oncipj_CypherTokenManager_jjbitVec73 = null, -oncipj_CypherTokenManager_jjbitVec74 = null, -oncipj_CypherTokenManager_jjbitVec75 = null, -oncipj_CypherTokenManager_jjbitVec76 = null, -oncipj_CypherTokenManager_jjbitVec77 = null, -oncipj_CypherTokenManager_jjbitVec78 = null, -oncipj_CypherTokenManager_jjbitVec79 = null, -oncipj_CypherTokenManager_jjbitVec80 = null, -oncipj_CypherTokenManager_jjbitVec81 = null, -oncipj_CypherTokenManager_jjbitVec82 = null, -oncipj_CypherTokenManager_jjbitVec83 = null, -oncipj_CypherTokenManager_jjbitVec84 = null, -oncipj_CypherTokenManager_jjbitVec85 = null, -oncipj_CypherTokenManager_jjbitVec86 = null, -oncipj_CypherTokenManager_jjbitVec87 = null, -oncipj_CypherTokenManager_jjbitVec88 = null, -oncipj_CypherTokenManager_jjbitVec89 = null, -oncipj_CypherTokenManager_jjbitVec90 = null, -oncipj_CypherTokenManager_jjbitVec91 = null, -oncipj_CypherTokenManager_jjbitVec92 = null, -oncipj_CypherTokenManager_jjbitVec93 = null, -oncipj_CypherTokenManager_jjbitVec94 = null, -oncipj_CypherTokenManager_jjbitVec95 = null, -oncipj_CypherTokenManager_jjbitVec96 = null, -oncipj_CypherTokenManager_jjbitVec97 = null, -oncipj_CypherTokenManager_jjbitVec98 = null, -oncipj_CypherTokenManager_jjbitVec99 = null, -oncipj_CypherTokenManager_jjbitVec100 = null; -let oncipj_CypherTokenManager_jjstrLiteralImages = null, -oncipj_CypherTokenManager_jjnextStates = null, -oncipj_CypherTokenManager_lexStateNames = null, -oncipj_CypherTokenManager_jjnewLexState = null, -oncipj_CypherTokenManager_jjtoToken = null, -oncipj_CypherTokenManager_jjtoSkip = null, -oncipj_CypherTokenManager_jjtoSpecial = null, -oncipj_CypherTokenManager_jjtoMore = null, -oncipj_CypherTokenManager_CommonTokenAction = ($this, $t) => { - let $ccStream, var$3; - $ccStream = $this.$input_stream; - var$3 = $ccStream.$offsets0.data; - $t.$beginOffset = var$3[$ccStream.$beginOffset0]; - $t.$endOffset = var$3[$ccStream.$resultCursor]; -}, -oncipj_CypherTokenManager_jjStopAtPos = ($this, $pos, $kind) => { - $this.$jjmatchedKind = $kind; - $this.$jjmatchedPos = $pos; - return $pos + 1 | 0; -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_0 = $this => { - switch ($this.$curChar) { - case 9: - $this.$jjmatchedKind = 1; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 10: - $this.$jjmatchedKind = 2; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 11: - $this.$jjmatchedKind = 3; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 12: - $this.$jjmatchedKind = 4; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 13: - $this.$jjmatchedKind = 5; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 28: - $this.$jjmatchedKind = 6; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 29: - $this.$jjmatchedKind = 7; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 30: - $this.$jjmatchedKind = 8; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 31: - $this.$jjmatchedKind = 9; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 32: - $this.$jjmatchedKind = 10; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 33: - $this.$jjmatchedKind = 203; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(536870912), Long_ZERO, Long_ZERO); - case 34: - $this.$jjmatchedKind = 53; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 36: - $this.$jjmatchedKind = 137; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 37: - $this.$jjmatchedKind = 220; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 38: - $this.$jjmatchedKind = 202; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 39: - $this.$jjmatchedKind = 41; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 40: - $this.$jjmatchedKind = 213; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 41: - $this.$jjmatchedKind = 297; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 42: - $this.$jjmatchedKind = 329; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 43: - $this.$jjmatchedKind = 257; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(4), Long_ZERO); - case 44: - $this.$jjmatchedKind = 107; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 45: - $this.$jjmatchedKind = 219; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 46: - $this.$jjmatchedKind = 142; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_fromInt(32768), Long_ZERO, Long_ZERO, Long_ZERO); - case 47: - $this.$jjmatchedKind = 141; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_create(2147483648, 0), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO); - case 58: - $this.$jjmatchedKind = 105; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_create(0, 1024), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO); - case 59: - $this.$jjmatchedKind = 305; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 60: - $this.$jjmatchedKind = 214; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(1073758208), Long_ZERO, Long_ZERO); - case 61: - $this.$jjmatchedKind = 158; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(33554432), Long_ZERO); - case 62: - $this.$jjmatchedKind = 182; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 65536), Long_ZERO, Long_ZERO, Long_ZERO); - case 63: - $this.$jjmatchedKind = 273; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 65: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_fromInt(16777184), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO); - case 66: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_create(4261412864, 7), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO); - case 67: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_create(0, 67105272), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO); - case 68: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_create(0, 4227858432), Long_fromInt(2038271), Long_ZERO, Long_ZERO, Long_ZERO); - case 69: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(3219128320, 31), Long_ZERO, Long_ZERO, Long_ZERO); - case 70: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 65504), Long_ZERO, Long_ZERO, Long_ZERO); - case 71: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 4063232), Long_ZERO, Long_ZERO, Long_ZERO); - case 72: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 25165824), Long_ZERO, Long_ZERO, Long_ZERO); - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 4261412864), Long_fromInt(63), Long_ZERO, Long_ZERO); - case 74: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(64), Long_ZERO, Long_ZERO); - case 75: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(128), Long_ZERO, Long_ZERO); - case 76: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(2065152), Long_ZERO, Long_ZERO); - case 77: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(125829120), Long_ZERO, Long_ZERO); - case 78: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(2147483648, 131071), Long_ZERO, Long_ZERO); - case 79: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 134086656), Long_ZERO, Long_ZERO); - case 80: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 4160749568), Long_fromInt(130969), Long_ZERO); - case 82: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(4259577920, 511), Long_ZERO); - case 83: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 4294835200), Long_fromInt(15)); - case 84: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(8388080)); - case 85: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(4286578688, 0)); - case 86: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 31)); - case 87: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 2016)); - case 88: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 2048)); - case 89: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 4096)); - case 90: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 24576)); - case 91: - $this.$jjmatchedKind = 204; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 93: - $this.$jjmatchedKind = 275; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 94: - $this.$jjmatchedKind = 261; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 96: - $this.$jjmatchedKind = 65; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_fromInt(16777184), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO); - case 98: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_create(4261412864, 7), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO); - case 99: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_create(0, 67105272), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO); - case 100: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_create(0, 4227858432), Long_fromInt(2038271), Long_ZERO, Long_ZERO, Long_ZERO); - case 101: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(3219128320, 31), Long_ZERO, Long_ZERO, Long_ZERO); - case 102: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 65504), Long_ZERO, Long_ZERO, Long_ZERO); - case 103: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 4063232), Long_ZERO, Long_ZERO, Long_ZERO); - case 104: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 25165824), Long_ZERO, Long_ZERO, Long_ZERO); - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_create(0, 4261412864), Long_fromInt(63), Long_ZERO, Long_ZERO); - case 106: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(64), Long_ZERO, Long_ZERO); - case 107: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(128), Long_ZERO, Long_ZERO); - case 108: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(2065152), Long_ZERO, Long_ZERO); - case 109: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(125829120), Long_ZERO, Long_ZERO); - case 110: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(2147483648, 131071), Long_ZERO, Long_ZERO); - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 134086656), Long_ZERO, Long_ZERO); - case 112: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 4160749568), Long_fromInt(130969), Long_ZERO); - case 114: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(4259577920, 511), Long_ZERO); - case 115: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 4294835200), Long_fromInt(15)); - case 116: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_fromInt(8388080)); - case 117: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(4286578688, 0)); - case 118: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 31)); - case 119: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 2016)); - case 120: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 2048)); - case 121: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 4096)); - case 122: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 24576)); - case 123: - $this.$jjmatchedKind = 205; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 124: - $this.$jjmatchedKind = 88; - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0($this, Long_ZERO, Long_ZERO, Long_fromInt(1024), Long_ZERO, Long_ZERO, Long_ZERO); - case 125: - $this.$jjmatchedKind = 276; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 160: - $this.$jjmatchedKind = 11; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 5760: - $this.$jjmatchedKind = 12; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8192: - $this.$jjmatchedKind = 13; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8193: - $this.$jjmatchedKind = 14; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8194: - $this.$jjmatchedKind = 15; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8195: - $this.$jjmatchedKind = 16; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8196: - $this.$jjmatchedKind = 17; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8197: - $this.$jjmatchedKind = 18; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8198: - $this.$jjmatchedKind = 19; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8199: - $this.$jjmatchedKind = 20; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8200: - $this.$jjmatchedKind = 21; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8201: - $this.$jjmatchedKind = 22; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8202: - $this.$jjmatchedKind = 23; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8232: - $this.$jjmatchedKind = 24; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8233: - $this.$jjmatchedKind = 25; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8239: - $this.$jjmatchedKind = 26; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 8287: - $this.$jjmatchedKind = 27; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - case 12288: - $this.$jjmatchedKind = 28; - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - default: - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa1_0 = ($this, $active0, $active1, $active2, $active3, $active4, $active5) => { - let var$7, $$je; - a: { - try { - var$7 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$7; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 0); - } - b: { - c: { - d: { - e: { - f: { - g: { - h: { - switch (var$7) { - case 42: - if (Long_eq(Long_and($active0, Long_create(2147483648, 0)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 31; - $this.$jjmatchedPos = 1; - break b; - case 43: - case 44: - case 45: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 59: - case 60: - case 63: - case 64: - case 71: - case 74: - case 81: - case 86: - case 87: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 103: - case 106: - case 113: - case 118: - case 119: - case 122: - case 123: - case 125: - break b; - case 46: - break h; - case 58: - break g; - case 61: - if (Long_ne(Long_and($active2, Long_create(0, 65536)), Long_ZERO)) { - $this.$jjmatchedKind = 176; - $this.$jjmatchedPos = 1; - break b; - } - if (Long_ne(Long_and($active3, Long_fromInt(16384)), Long_ZERO)) { - $this.$jjmatchedKind = 206; - $this.$jjmatchedPos = 1; - break b; - } - if (Long_ne(Long_and($active3, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 221; - $this.$jjmatchedPos = 1; - break b; - } - if (Long_eq(Long_and($active4, Long_fromInt(4)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 258; - $this.$jjmatchedPos = 1; - break b; - case 62: - break f; - case 65: - break; - case 66: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(0, 2147483648), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_ZERO); - case 67: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_fromInt(96), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_create(0, 1024), $active5, Long_ZERO); - case 68: - break c; - case 69: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_create(511, 8388608), $active3, Long_create(67141760, 2147483712), $active4, Long_create(4259315776, 8255519), $active5, Long_create(96, 28)); - case 70: - if (Long_ne(Long_and($active2, Long_create(0, 67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 186; - $this.$jjmatchedPos = 1; - } else if (Long_ne(Long_and($active3, Long_create(0, 131072)), Long_ZERO)) { - $this.$jjmatchedKind = 241; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_ZERO, $active3, Long_create(0, 262204), $active4, Long_ZERO, $active5, Long_ZERO); - case 72: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(0, 64), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_create(0, 58720256), $active5, Long_create(128, 192)); - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(33554432, 128), $active2, Long_create(6144, 384), $active3, Long_fromInt(196608), $active4, Long_create(0, 201326592), $active5, Long_create(3328, 4864)); - case 75: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_create(0, 268435456), $active5, Long_ZERO); - case 76: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_fromInt(15872), $active2, Long_create(117440512, 512), $active3, Long_ZERO, $active4, Long_fromInt(1), $active5, Long_ZERO); - case 77: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_create(0, 402653184), $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_ZERO); - case 78: - if (Long_ne(Long_and($active2, Long_create(0, 536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 189; - $this.$jjmatchedPos = 1; - } else if (Long_ne(Long_and($active3, Long_create(0, 524288)), Long_ZERO)) { - $this.$jjmatchedKind = 243; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_fromInt(49152), $active2, Long_create(947912704, 3221225472), $active3, Long_create(31, 1048576), $active4, Long_ZERO, $active5, Long_fromInt(125829120)); - case 79: - if (Long_ne(Long_and($active5, Long_fromInt(4096)), Long_ZERO)) { - $this.$jjmatchedKind = 332; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(1006632960, 8384768), $active2, Long_create(0, 16780288), $active3, Long_create(1835072, 65408), $active4, Long_create(24, 480), $active5, Long_create(8192, 26624)); - case 80: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_ZERO, $active3, Long_create(0, 14680064), $active4, Long_ZERO, $active5, Long_ZERO); - case 82: - if (Long_ne(Long_and($active3, Long_create(0, 16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 248; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(3221291008, 8388608), $active2, Long_create(458752, 4067344), $active3, Long_create(0, 33554432), $active4, Long_fromInt(130944), $active5, Long_create(135249920, 1024)); - case 83: - if (Long_ne(Long_and($active1, Long_fromInt(131072)), Long_ZERO)) { - $this.$jjmatchedKind = 81; - $this.$jjmatchedPos = 1; - } else if (Long_ne(Long_and($active3, Long_fromInt(32)), Long_ZERO)) { - $this.$jjmatchedKind = 197; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(3932160, 16777216), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_create(4026531840, 0)); - case 84: - if (Long_ne(Long_and($active1, Long_fromInt(4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 86; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(0, 1), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_create(0, 3758096384), $active5, Long_fromInt(3)); - case 85: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(8388608, 33554434), $active2, Long_create(1572864, 57344), $active3, Long_create(0, 67174400), $active4, Long_ZERO, $active5, Long_fromInt(12)); - case 88: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_create(2147483648, 15), $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_ZERO); - case 89: - if (Long_ne(Long_and($active1, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 98; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_fromInt(7340032)); - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(0, 2080374840), $active2, Long_create(2097152, 96), $active3, Long_create(2206204672, 2013265923), $active4, Long_fromInt(262144), $active5, Long_create(16, 35)); - case 98: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(0, 2147483648), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_ZERO); - case 99: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_fromInt(96), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_create(0, 1024), $active5, Long_ZERO); - case 100: - if (Long_ne(Long_and($active2, Long_create(0, 33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 185; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_fromInt(384), $active2, Long_fromInt(4194304), $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_ZERO); - case 101: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_create(511, 8388608), $active3, Long_create(67141760, 2147483712), $active4, Long_create(4259315776, 8255519), $active5, Long_create(96, 28)); - case 102: - if (Long_ne(Long_and($active2, Long_create(0, 67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 186; - $this.$jjmatchedPos = 1; - } else if (Long_ne(Long_and($active3, Long_create(0, 131072)), Long_ZERO)) { - $this.$jjmatchedKind = 241; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_ZERO, $active3, Long_create(0, 262204), $active4, Long_ZERO, $active5, Long_ZERO); - case 104: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(0, 64), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_create(0, 58720256), $active5, Long_create(128, 192)); - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(33554432, 128), $active2, Long_create(6144, 384), $active3, Long_fromInt(196608), $active4, Long_create(0, 201326592), $active5, Long_create(3328, 4864)); - case 107: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_create(0, 268435456), $active5, Long_ZERO); - case 108: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_fromInt(15872), $active2, Long_create(117440512, 512), $active3, Long_ZERO, $active4, Long_fromInt(1), $active5, Long_ZERO); - case 109: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_create(0, 402653184), $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_ZERO); - case 110: - if (Long_ne(Long_and($active2, Long_create(0, 536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 189; - $this.$jjmatchedPos = 1; - } else if (Long_ne(Long_and($active3, Long_create(0, 524288)), Long_ZERO)) { - $this.$jjmatchedKind = 243; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_fromInt(49152), $active2, Long_create(947912704, 3221225472), $active3, Long_create(31, 1048576), $active4, Long_ZERO, $active5, Long_fromInt(125829120)); - case 111: - if (Long_ne(Long_and($active5, Long_fromInt(4096)), Long_ZERO)) { - $this.$jjmatchedKind = 332; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(1006632960, 8384768), $active2, Long_create(0, 16780288), $active3, Long_create(1835072, 65408), $active4, Long_create(24, 480), $active5, Long_create(8192, 26624)); - case 112: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_ZERO, $active3, Long_create(0, 14680064), $active4, Long_ZERO, $active5, Long_ZERO); - case 114: - if (Long_ne(Long_and($active3, Long_create(0, 16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 248; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(3221291008, 8388608), $active2, Long_create(458752, 4067344), $active3, Long_create(0, 33554432), $active4, Long_fromInt(130944), $active5, Long_create(135249920, 1024)); - case 115: - if (Long_ne(Long_and($active1, Long_fromInt(131072)), Long_ZERO)) { - $this.$jjmatchedKind = 81; - $this.$jjmatchedPos = 1; - } else if (Long_ne(Long_and($active3, Long_fromInt(32)), Long_ZERO)) { - $this.$jjmatchedKind = 197; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(3932160, 16777216), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_create(4026531840, 0)); - case 116: - if (Long_ne(Long_and($active1, Long_fromInt(4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 86; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(0, 1), $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_create(0, 3758096384), $active5, Long_fromInt(3)); - case 117: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(8388608, 33554434), $active2, Long_create(1572864, 57344), $active3, Long_create(0, 67174400), $active4, Long_ZERO, $active5, Long_fromInt(12)); - case 120: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_create(2147483648, 15), $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_ZERO); - case 121: - if (Long_ne(Long_and($active1, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 98; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_ZERO, $active2, Long_ZERO, $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_fromInt(7340032)); - case 124: - break e; - case 126: - break d; - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_create(0, 2080374840), $active2, Long_create(2097152, 96), $active3, Long_create(2206204672, 2013265923), $active4, Long_fromInt(262144), $active5, Long_create(16, 35)); - } - if (Long_eq(Long_and($active2, Long_fromInt(32768)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 143; - $this.$jjmatchedPos = 1; - break b; - } - if (Long_eq(Long_and($active1, Long_create(0, 1024)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 106; - $this.$jjmatchedPos = 1; - break b; - } - if (Long_eq(Long_and($active3, Long_fromInt(1073741824)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 222; - $this.$jjmatchedPos = 1; - break b; - } - if (Long_eq(Long_and($active2, Long_fromInt(1024)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 138; - $this.$jjmatchedPos = 1; - break b; - } - if (Long_eq(Long_and($active4, Long_fromInt(33554432)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 281; - $this.$jjmatchedPos = 1; - break b; - } - if (Long_ne(Long_and($active2, Long_create(0, 33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 185; - $this.$jjmatchedPos = 1; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0($this, $active0, Long_ZERO, $active1, Long_fromInt(384), $active2, Long_fromInt(4194304), $active3, Long_ZERO, $active4, Long_ZERO, $active5, Long_ZERO); - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 1); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa2_0 = ($this, $old0, $active0, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$13, var$14, $$je; - $old0 = Long_and($active0, $old0); - var$13 = Long_and($active1, $old1); - $old0 = Long_or($old0, var$13); - $active2 = Long_and($active2, $old2); - $old0 = Long_or($old0, $active2); - $old3 = Long_and($active3, $old3); - $old0 = Long_or($old0, $old3); - $active3 = Long_and($active4, $old4); - $old0 = Long_or($old0, $active3); - $old4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old0, $old4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 1); - a: { - try { - var$14 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$14; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 1); - } - switch (var$14) { - case 65: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(0, 64), $active2, Long_create(8388609, 9306112), $old3, Long_fromInt(294912), $active3, Long_create(6291457, 3758097408), $old4, Long_fromInt(245760)); - case 66: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_fromInt(768), $active3, Long_ZERO, $old4, Long_ZERO); - case 67: - if (Long_ne(Long_and(var$13, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 82; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old3, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 226; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active3, Long_create(0, 2048)), Long_ZERO)) { - $this.$jjmatchedKind = 299; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_fromInt(524320), $active2, Long_fromInt(136314880), $old3, Long_fromInt(524288), $active3, Long_create(0, 61440), $old4, Long_create(0, 4)); - case 68: - if (Long_ne(Long_and(var$13, Long_fromInt(16384)), Long_ZERO)) { - $this.$jjmatchedKind = 78; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active2, Long_fromInt(268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 156; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old3, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 227; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(0, 128), $active2, Long_create(536870912, 3221225472), $old3, Long_create(0, 33555328), $active3, Long_fromInt(8388608), $old4, Long_ZERO); - case 69: - if (Long_ne(Long_and($old4, Long_fromInt(268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 348; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(1073741824, 8388608), $active2, Long_create(2197815296, 129), $old3, Long_ZERO, $active3, Long_create(0, 65536), $old4, Long_create(1610612864, 4288)); - case 70: - if (Long_ne(Long_and($old3, Long_fromInt(1)), Long_ZERO)) { - $this.$jjmatchedKind = 192; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_fromInt(2054), $old3, Long_create(2, 262144), $active3, Long_ZERO, $old4, Long_ZERO); - case 71: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_fromInt(4194304), $old3, Long_ZERO, $active3, Long_create(0, 67108864), $old4, Long_ZERO); - case 72: - case 74: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 104: - case 106: - break; - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(2147485184, 2), $active2, Long_create(65536, 46), $old3, Long_fromInt(64), $active3, Long_create(1928, 268435456), $old4, Long_create(2206466048, 1056)); - case 75: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_create(0, 48), $active3, Long_ZERO, $old4, Long_ZERO); - case 76: - if (Long_ne(Long_and(var$13, Long_fromInt(4096)), Long_ZERO)) { - $this.$jjmatchedKind = 76; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active3, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 282; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old4, Long_fromInt(134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 347; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(2048, 264), $active2, Long_create(8, 8256), $old3, Long_create(0, 1114112), $active3, Long_create(402653184, 96), $old4, Long_create(0, 1)); - case 77: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(384, 2147545088), $active2, Long_create(524288, 285212672), $old3, Long_create(2147549184, 1), $active3, Long_fromInt(536870912), $old4, Long_fromInt(3328)); - case 78: - if (Long_ne(Long_and($old3, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 225; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(33554432, 3080192), $active2, Long_create(16, 49408), $old3, Long_create(8388608, 1024), $active3, Long_create(17039360, 134217728), $old4, Long_create(0, 24576)); - case 79: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_fromInt(469762048), $active2, Long_create(131072, 3150336), $old3, Long_fromInt(1048576), $active3, Long_create(129024, 58720256), $old4, Long_fromInt(1)); - case 80: - if (Long_ne(Long_and($old3, Long_fromInt(16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 216; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(0, 1048576), $active2, Long_create(0, 134217728), $old3, Long_ZERO, $active3, Long_create(3221225552, 0), $old4, Long_fromInt(7348228)); - case 81: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_ZERO, $active3, Long_create(0, 3), $old4, Long_ZERO); - case 82: - if (Long_ne(Long_and($active2, Long_create(0, 1024)), Long_ZERO)) { - $this.$jjmatchedKind = 170; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old4, Long_create(0, 2048)), Long_ZERO)) { - $this.$jjmatchedKind = 363; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(65536, 33554433), $active2, Long_create(1048576, 2064), $old3, Long_create(67108864, 2147489792), $active3, Long_create(0, 786432), $old4, Long_create(50, 26)); - case 83: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(3145728, 48), $active2, Long_fromInt(67113184), $old3, Long_create(131076, 402653184), $active3, Long_create(0, 4), $old4, Long_fromInt(8)); - case 84: - if (Long_ne(Long_and($old3, Long_fromInt(8)), Long_ZERO)) { - $this.$jjmatchedKind = 195; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old3, Long_create(0, 8192)), Long_ZERO)) { - $this.$jjmatchedKind = 237; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active3, Long_create(0, 1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 308; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(545267776, 2080374784), $active2, Long_fromInt(256), $old3, Long_create(33554448, 1692418048), $active3, Long_create(0, 6291464), $old4, Long_create(0, 768)); - case 85: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(0, 4194304), $active2, Long_ZERO, $old3, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(524288)); - case 86: - if (Long_ne(Long_and(var$13, Long_create(0, 16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 120; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_ZERO, $active3, Long_create(0, 16), $old4, Long_ZERO); - case 87: - if (Long_ne(Long_and($old3, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 230; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active3, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 295; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_create(0, 32768), $active3, Long_create(0, 256), $old4, Long_fromInt(67108864)); - case 88: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(64)); - case 89: - if (Long_ne(Long_and(var$13, Long_fromInt(32768)), Long_ZERO)) { - $this.$jjmatchedKind = 79; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old3, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 199; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_fromInt(262144), $old3, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(0, 64), $active2, Long_create(8388609, 9306112), $old3, Long_fromInt(294912), $active3, Long_create(6291457, 3758097408), $old4, Long_fromInt(245760)); - case 98: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_fromInt(768), $active3, Long_ZERO, $old4, Long_ZERO); - case 99: - if (Long_ne(Long_and(var$13, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 82; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old3, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 226; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active3, Long_create(0, 2048)), Long_ZERO)) { - $this.$jjmatchedKind = 299; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_fromInt(524320), $active2, Long_fromInt(136314880), $old3, Long_fromInt(524288), $active3, Long_create(0, 61440), $old4, Long_create(0, 4)); - case 100: - if (Long_ne(Long_and(var$13, Long_fromInt(16384)), Long_ZERO)) { - $this.$jjmatchedKind = 78; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active2, Long_fromInt(268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 156; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old3, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 227; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(0, 128), $active2, Long_create(536870912, 3221225472), $old3, Long_create(0, 33555328), $active3, Long_fromInt(8388608), $old4, Long_ZERO); - case 101: - if (Long_ne(Long_and($old4, Long_fromInt(268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 348; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(1073741824, 8388608), $active2, Long_create(2197815296, 129), $old3, Long_ZERO, $active3, Long_create(0, 65536), $old4, Long_create(1610612864, 4288)); - case 102: - if (Long_ne(Long_and($old3, Long_fromInt(1)), Long_ZERO)) { - $this.$jjmatchedKind = 192; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_fromInt(2054), $old3, Long_create(2, 262144), $active3, Long_ZERO, $old4, Long_ZERO); - case 103: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_fromInt(4194304), $old3, Long_ZERO, $active3, Long_create(0, 67108864), $old4, Long_ZERO); - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(2147485184, 2), $active2, Long_create(65536, 46), $old3, Long_fromInt(64), $active3, Long_create(1928, 268435456), $old4, Long_create(2206466048, 1056)); - case 107: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_create(0, 48), $active3, Long_ZERO, $old4, Long_ZERO); - case 108: - if (Long_ne(Long_and(var$13, Long_fromInt(4096)), Long_ZERO)) { - $this.$jjmatchedKind = 76; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active3, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 282; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old4, Long_fromInt(134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 347; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(2048, 264), $active2, Long_create(8, 8256), $old3, Long_create(0, 1114112), $active3, Long_create(402653184, 96), $old4, Long_create(0, 1)); - case 109: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(384, 2147545088), $active2, Long_create(524288, 285212672), $old3, Long_create(2147549184, 1), $active3, Long_fromInt(536870912), $old4, Long_fromInt(3328)); - case 110: - if (Long_ne(Long_and($old3, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 225; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(33554432, 3080192), $active2, Long_create(16, 49408), $old3, Long_create(8388608, 1024), $active3, Long_create(17039360, 134217728), $old4, Long_create(0, 24576)); - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_fromInt(469762048), $active2, Long_create(131072, 3150336), $old3, Long_fromInt(1048576), $active3, Long_create(129024, 58720256), $old4, Long_fromInt(1)); - case 112: - if (Long_ne(Long_and($old3, Long_fromInt(16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 216; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(0, 1048576), $active2, Long_create(0, 134217728), $old3, Long_ZERO, $active3, Long_create(3221225552, 0), $old4, Long_fromInt(7348228)); - case 113: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_ZERO, $active3, Long_create(0, 3), $old4, Long_ZERO); - case 114: - if (Long_ne(Long_and($active2, Long_create(0, 1024)), Long_ZERO)) { - $this.$jjmatchedKind = 170; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old4, Long_create(0, 2048)), Long_ZERO)) { - $this.$jjmatchedKind = 363; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(65536, 33554433), $active2, Long_create(1048576, 2064), $old3, Long_create(67108864, 2147489792), $active3, Long_create(0, 786432), $old4, Long_create(50, 26)); - case 115: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(3145728, 48), $active2, Long_fromInt(67113184), $old3, Long_create(131076, 402653184), $active3, Long_create(0, 4), $old4, Long_fromInt(8)); - case 116: - if (Long_ne(Long_and($old3, Long_fromInt(8)), Long_ZERO)) { - $this.$jjmatchedKind = 195; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old3, Long_create(0, 8192)), Long_ZERO)) { - $this.$jjmatchedKind = 237; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active3, Long_create(0, 1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 308; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(545267776, 2080374784), $active2, Long_fromInt(256), $old3, Long_create(33554448, 1692418048), $active3, Long_create(0, 6291464), $old4, Long_create(0, 768)); - case 117: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_create(0, 4194304), $active2, Long_ZERO, $old3, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(524288)); - case 118: - if (Long_ne(Long_and(var$13, Long_create(0, 16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 120; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_ZERO, $active3, Long_create(0, 16), $old4, Long_ZERO); - case 119: - if (Long_ne(Long_and($old3, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 230; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($active3, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 295; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_create(0, 32768), $active3, Long_create(0, 256), $old4, Long_fromInt(67108864)); - case 120: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_ZERO, $old3, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(64)); - case 121: - if (Long_ne(Long_and(var$13, Long_fromInt(32768)), Long_ZERO)) { - $this.$jjmatchedKind = 79; - $this.$jjmatchedPos = 2; - } else if (Long_ne(Long_and($old3, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 199; - $this.$jjmatchedPos = 2; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0($this, var$13, Long_ZERO, $active2, Long_fromInt(262144), $old3, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - default: - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 2); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa3_0 = ($this, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$11, var$12, var$13, var$14, $$je; - var$11 = Long_and($active1, $old1); - var$12 = Long_and($active2, $old2); - $old1 = Long_or(var$11, var$12); - var$13 = Long_and($active3, $old3); - $old1 = Long_or($old1, var$13); - $active3 = Long_and($active4, $old4); - $old1 = Long_or($old1, $active3); - $old4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $old4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 2); - a: { - try { - var$14 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$14; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 2); - } - b: { - c: { - d: { - e: { - switch (var$14) { - case 65: - break d; - case 66: - break; - case 67: - if (Long_ne(Long_and(var$12, Long_fromInt(32)), Long_ZERO)) { - $this.$jjmatchedKind = 133; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 16)), Long_ZERO)) { - $this.$jjmatchedKind = 228; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 65552), var$12, Long_create(2147483712, 49153), var$13, Long_fromInt(33554432), $active3, Long_fromInt(6144), $old4, Long_create(0, 2)); - case 68: - if (Long_ne(Long_and(var$13, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 210; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 229; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($active3, Long_fromInt(2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 277; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_fromInt(33554432), var$12, Long_create(0, 8388608), var$13, Long_fromInt(32768), $active3, Long_ZERO, $old4, Long_ZERO); - case 69: - f: { - if (Long_ne(Long_and(var$11, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 101; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and(var$11, Long_create(0, 536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 125; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and(var$12, Long_fromInt(4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 150; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and(var$12, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 154; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and(var$12, Long_create(0, 16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 184; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and(var$13, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 223; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and(var$13, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 231; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and(var$13, Long_create(0, 1024)), Long_ZERO)) { - $this.$jjmatchedKind = 234; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and($active3, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 293; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and($old4, Long_fromInt(256)), Long_ZERO)) { - $this.$jjmatchedKind = 328; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and($old4, Long_fromInt(524288)), Long_ZERO)) { - $this.$jjmatchedKind = 339; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_ne(Long_and($old4, Long_fromInt(1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 340; - $this.$jjmatchedPos = 3; - break f; - } - if (Long_eq(Long_and($old4, Long_create(0, 8192)), Long_ZERO)) - break f; - $this.$jjmatchedKind = 365; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(2149064736, 1073741825), var$12, Long_create(8, 3355445248), var$13, Long_create(788, 33555201), $active3, Long_create(64, 64), $old4, Long_create(6294528, 16384)); - case 70: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_fromInt(2048), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 71: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_fromInt(67108864), $active3, Long_create(262144, 134217728), $old4, Long_fromInt(16)); - case 72: - if (Long_ne(Long_and(var$11, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 87; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$11, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 93; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_fromInt(2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 149; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 253; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_create(0, 256)), Long_ZERO)) { - $this.$jjmatchedKind = 360; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_create(0, 1073758208), $active3, Long_ZERO, $old4, Long_create(0, 512)); - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_fromInt(2097600), var$12, Long_create(4, 256), var$13, Long_create(65538, 2162163712), $active3, Long_fromInt(1), $old4, Long_fromInt(67125250)); - case 74: - case 88: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 106: - case 120: - break b; - case 75: - if (Long_ne(Long_and($active3, Long_create(0, 65536)), Long_ZERO)) { - $this.$jjmatchedKind = 304; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_fromInt(1048576), $active3, Long_ZERO, $old4, Long_ZERO); - case 76: - if (Long_ne(Long_and(var$11, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 90; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$11, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 99; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 165; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 65536)), Long_ZERO)) { - $this.$jjmatchedKind = 240; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(134217728, 258), var$12, Long_create(1, 8320), var$13, Long_ZERO, $active3, Long_fromInt(1077936128), $old4, Long_create(0, 4096)); - case 77: - if (Long_ne(Long_and(var$12, Long_create(0, 4096)), Long_ZERO)) { - $this.$jjmatchedKind = 172; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 338; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 28672), var$12, Long_fromInt(50331648), var$13, Long_create(0, 6144), $active3, Long_fromInt(384), $old4, Long_fromInt(32)); - case 78: - if (Long_ne(Long_and(var$13, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 198; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($active3, Long_create(0, 1024)), Long_ZERO)) { - $this.$jjmatchedKind = 298; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 327; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 358; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 4194368), var$12, Long_create(0, 131072), var$13, Long_ZERO, $active3, Long_create(8, 67108864), $old4, Long_create(2147581952, 0)); - case 79: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_create(0, 16), var$13, Long_ZERO, $active3, Long_create(2684354560, 61456), $old4, Long_fromInt(8396800)); - case 80: - if (Long_ne(Long_and(var$12, Long_fromInt(131072)), Long_ZERO)) { - $this.$jjmatchedKind = 145; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_fromInt(524288)), Long_ZERO)) { - $this.$jjmatchedKind = 147; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($active3, Long_create(0, 268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 316; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(1)), Long_ZERO)) { - $this.$jjmatchedKind = 320; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 32768), var$12, Long_create(0, 786432), var$13, Long_create(0, 67108864), $active3, Long_fromInt(24576), $old4, Long_fromInt(12)); - case 81: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(50331648)); - case 82: - if (Long_ne(Long_and(var$11, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 103; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 349; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 33554432), var$12, Long_fromInt(134479872), var$13, Long_ZERO, $active3, Long_create(0, 1635778560), $old4, Long_create(1073741824, 128)); - case 83: - if (Long_ne(Long_and(var$11, Long_create(0, 2147483648)), Long_ZERO)) { - $this.$jjmatchedKind = 127; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 157; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($active3, Long_create(0, 256)), Long_ZERO)) { - $this.$jjmatchedKind = 296; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(268437504, 393216), var$12, Long_create(0, 78), var$13, Long_create(0, 402915328), $active3, Long_ZERO, $old4, Long_ZERO); - case 84: - if (Long_ne(Long_and(var$13, Long_fromInt(131072)), Long_ZERO)) { - $this.$jjmatchedKind = 209; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 326; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 357; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 2621440), var$12, Long_fromInt(4224), var$13, Long_ZERO, $active3, Long_create(0, 2153775108), $old4, Long_create(0, 1044)); - case 85: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_create(0, 271581184), var$13, Long_ZERO, $active3, Long_create(8388624, 11), $old4, Long_create(0, 1)); - case 86: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_fromInt(65536), var$13, Long_ZERO, $active3, Long_create(99840, 786432), $old4, Long_fromInt(131072)); - case 87: - if (Long_eq(Long_and($active3, Long_create(0, 33554432)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 313; - $this.$jjmatchedPos = 3; - break b; - case 89: - if (Long_ne(Long_and(var$11, Long_create(0, 1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 116; - $this.$jjmatchedPos = 3; - break b; - } - if (Long_ne(Long_and(var$12, Long_fromInt(16)), Long_ZERO)) { - $this.$jjmatchedKind = 132; - $this.$jjmatchedPos = 3; - break b; - } - if (Long_eq(Long_and(var$13, Long_create(0, 1048576)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 244; - $this.$jjmatchedPos = 3; - break b; - case 97: - if (Long_ne(Long_and(var$11, Long_create(0, 67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 122; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(1073808896, 411041792), var$12, Long_create(1048834, 512), var$13, Long_create(8912896, 32768), $active3, Long_fromInt(419430400), $old4, Long_ZERO); - case 98: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_fromInt(8388608), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 8)); - case 99: - if (Long_ne(Long_and(var$12, Long_fromInt(32)), Long_ZERO)) { - $this.$jjmatchedKind = 133; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 16)), Long_ZERO)) { - $this.$jjmatchedKind = 228; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 65552), var$12, Long_create(2147483712, 49153), var$13, Long_fromInt(33554432), $active3, Long_fromInt(6144), $old4, Long_create(0, 2)); - case 100: - if (Long_ne(Long_and(var$13, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 210; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 229; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($active3, Long_fromInt(2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 277; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_fromInt(33554432), var$12, Long_create(0, 8388608), var$13, Long_fromInt(32768), $active3, Long_ZERO, $old4, Long_ZERO); - case 101: - g: { - if (Long_ne(Long_and(var$11, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 101; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and(var$11, Long_create(0, 536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 125; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and(var$12, Long_fromInt(4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 150; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and(var$12, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 154; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and(var$12, Long_create(0, 16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 184; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and(var$13, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 223; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and(var$13, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 231; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and(var$13, Long_create(0, 1024)), Long_ZERO)) { - $this.$jjmatchedKind = 234; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and($active3, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 293; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and($old4, Long_fromInt(256)), Long_ZERO)) { - $this.$jjmatchedKind = 328; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and($old4, Long_fromInt(524288)), Long_ZERO)) { - $this.$jjmatchedKind = 339; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_ne(Long_and($old4, Long_fromInt(1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 340; - $this.$jjmatchedPos = 3; - break g; - } - if (Long_eq(Long_and($old4, Long_create(0, 8192)), Long_ZERO)) - break g; - $this.$jjmatchedKind = 365; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(2149064736, 1073741825), var$12, Long_create(8, 3355445248), var$13, Long_create(788, 33555201), $active3, Long_create(64, 64), $old4, Long_create(6294528, 16384)); - case 102: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_fromInt(2048), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 103: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_fromInt(67108864), $active3, Long_create(262144, 134217728), $old4, Long_fromInt(16)); - case 104: - if (Long_ne(Long_and(var$11, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 87; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$11, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 93; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_fromInt(2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 149; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 253; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_create(0, 256)), Long_ZERO)) { - $this.$jjmatchedKind = 360; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_create(0, 1073758208), $active3, Long_ZERO, $old4, Long_create(0, 512)); - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_fromInt(2097600), var$12, Long_create(4, 256), var$13, Long_create(65538, 2162163712), $active3, Long_fromInt(1), $old4, Long_fromInt(67125250)); - case 107: - if (Long_ne(Long_and($active3, Long_create(0, 65536)), Long_ZERO)) { - $this.$jjmatchedKind = 304; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_fromInt(1048576), $active3, Long_ZERO, $old4, Long_ZERO); - case 108: - if (Long_ne(Long_and(var$11, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 90; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$11, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 99; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 165; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 65536)), Long_ZERO)) { - $this.$jjmatchedKind = 240; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(134217728, 258), var$12, Long_create(1, 8320), var$13, Long_ZERO, $active3, Long_fromInt(1077936128), $old4, Long_create(0, 4096)); - case 109: - if (Long_ne(Long_and(var$12, Long_create(0, 4096)), Long_ZERO)) { - $this.$jjmatchedKind = 172; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 338; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 28672), var$12, Long_fromInt(50331648), var$13, Long_create(0, 6144), $active3, Long_fromInt(384), $old4, Long_fromInt(32)); - case 110: - if (Long_ne(Long_and(var$13, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 198; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($active3, Long_create(0, 1024)), Long_ZERO)) { - $this.$jjmatchedKind = 298; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 327; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 358; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 4194368), var$12, Long_create(0, 131072), var$13, Long_ZERO, $active3, Long_create(8, 67108864), $old4, Long_create(2147581952, 0)); - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_create(0, 16), var$13, Long_ZERO, $active3, Long_create(2684354560, 61456), $old4, Long_fromInt(8396800)); - case 112: - if (Long_ne(Long_and(var$12, Long_fromInt(131072)), Long_ZERO)) { - $this.$jjmatchedKind = 145; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_fromInt(524288)), Long_ZERO)) { - $this.$jjmatchedKind = 147; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($active3, Long_create(0, 268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 316; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(1)), Long_ZERO)) { - $this.$jjmatchedKind = 320; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 32768), var$12, Long_create(0, 786432), var$13, Long_create(0, 67108864), $active3, Long_fromInt(24576), $old4, Long_fromInt(12)); - case 113: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(50331648)); - case 114: - if (Long_ne(Long_and(var$11, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 103; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 349; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 33554432), var$12, Long_fromInt(134479872), var$13, Long_ZERO, $active3, Long_create(0, 1635778560), $old4, Long_create(1073741824, 128)); - case 115: - if (Long_ne(Long_and(var$11, Long_create(0, 2147483648)), Long_ZERO)) { - $this.$jjmatchedKind = 127; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 157; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($active3, Long_create(0, 256)), Long_ZERO)) { - $this.$jjmatchedKind = 296; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(268437504, 393216), var$12, Long_create(0, 78), var$13, Long_create(0, 402915328), $active3, Long_ZERO, $old4, Long_ZERO); - case 116: - if (Long_ne(Long_and(var$13, Long_fromInt(131072)), Long_ZERO)) { - $this.$jjmatchedKind = 209; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 326; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and($old4, Long_create(0, 32)), Long_ZERO)) { - $this.$jjmatchedKind = 357; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(0, 2621440), var$12, Long_fromInt(4224), var$13, Long_ZERO, $active3, Long_create(0, 2153775108), $old4, Long_create(0, 1044)); - case 117: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_create(0, 271581184), var$13, Long_ZERO, $active3, Long_create(8388624, 11), $old4, Long_create(0, 1)); - case 118: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_fromInt(65536), var$13, Long_ZERO, $active3, Long_create(99840, 786432), $old4, Long_fromInt(131072)); - case 119: - break e; - case 121: - break c; - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_ZERO, var$12, Long_fromInt(8388608), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 8)); - } - if (Long_eq(Long_and($active3, Long_create(0, 33554432)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 313; - $this.$jjmatchedPos = 3; - break b; - } - if (Long_ne(Long_and(var$11, Long_create(0, 67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 122; - $this.$jjmatchedPos = 3; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0($this, var$11, Long_create(1073808896, 411041792), var$12, Long_create(1048834, 512), var$13, Long_create(8912896, 32768), $active3, Long_fromInt(419430400), $old4, Long_ZERO); - } - if (Long_ne(Long_and(var$11, Long_create(0, 1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 116; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$12, Long_fromInt(16)), Long_ZERO)) { - $this.$jjmatchedKind = 132; - $this.$jjmatchedPos = 3; - } else if (Long_ne(Long_and(var$13, Long_create(0, 1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 244; - $this.$jjmatchedPos = 3; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 3); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa4_0 = ($this, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$11, var$12, var$13, $$je; - var$11 = Long_and($active1, $old1); - var$12 = Long_and($active2, $old2); - $old1 = Long_or(var$11, var$12); - $active3 = Long_and($active3, $old3); - $old1 = Long_or($old1, $active3); - $old4 = Long_and($active4, $old4); - $old1 = Long_or($old1, $old4); - $active4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $active4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 3); - a: { - try { - var$13 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$13; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 3); - } - b: { - c: { - switch (var$13) { - case 65: - break; - case 66: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(0, 402653184), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 67: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_fromInt(256), $active3, Long_ZERO, $old4, Long_fromInt(8388608), $active4, Long_ZERO); - case 68: - if (Long_ne(Long_and($active4, Long_fromInt(2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 341; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 4096)), Long_ZERO)) { - $this.$jjmatchedKind = 364; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 366; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 69: - if (Long_ne(Long_and(var$11, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 96; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and(var$12, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 166; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 218; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($old4, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 274; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 352; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 359; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 1024)), Long_ZERO)) { - $this.$jjmatchedKind = 362; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(134217728, 33554688), var$12, Long_create(50399296, 8388608), $active3, Long_create(0, 262144), $old4, Long_create(30720, 67895296), $active4, Long_create(131096, 16)); - case 70: - if (Long_eq(Long_and(var$11, Long_create(2147483648, 0)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 95; - $this.$jjmatchedPos = 4; - break b; - case 71: - if (Long_ne(Long_and($active4, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 351; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(2097152, 64), var$12, Long_ZERO, $active3, Long_fromInt(8388624), $old4, Long_ZERO, $active4, Long_ZERO); - case 72: - if (Long_ne(Long_and(var$12, Long_create(0, 262144)), Long_ZERO)) { - $this.$jjmatchedKind = 178; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_fromInt(33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 217; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(2048), var$12, Long_create(0, 524288), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_create(0, 2)); - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(33554432, 2113536), var$12, Long_fromInt(4096), $active3, Long_create(32768, 49152), $old4, Long_create(99840, 6291459), $active4, Long_fromInt(32)); - case 74: - case 81: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 106: - case 113: - break b; - case 75: - if (Long_ne(Long_and(var$11, Long_fromInt(1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 94; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 16), $active4, Long_ZERO); - case 76: - if (Long_ne(Long_and($active3, Long_fromInt(256)), Long_ZERO)) { - $this.$jjmatchedKind = 200; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_fromInt(524288)), Long_ZERO)) { - $this.$jjmatchedKind = 211; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_fromInt(8388609), $active3, Long_fromInt(512), $old4, Long_create(4194320, 134217728), $active4, Long_fromInt(24576)); - case 77: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(16777216), $active4, Long_ZERO); - case 78: - if (Long_ne(Long_and(var$11, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 71; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 343; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(524544), var$12, Long_fromInt(4), $active3, Long_fromInt(2), $old4, Long_create(1, 61440), $active4, Long_fromInt(67108866)); - case 79: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(0, 32768), var$12, Long_ZERO, $active3, Long_create(0, 2162163712), $old4, Long_ZERO, $active4, Long_create(4, 524)); - case 80: - if (Long_ne(Long_and(var$12, Long_create(0, 1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 180; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_create(0, 2097152), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 82: - if (Long_ne(Long_and(var$11, Long_fromInt(8192)), Long_ZERO)) { - $this.$jjmatchedKind = 77; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and(var$12, Long_create(0, 16)), Long_ZERO)) { - $this.$jjmatchedKind = 164; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_create(0, 33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 249; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(1048576), var$12, Long_create(128, 134217728), $active3, Long_fromInt(4), $old4, Long_create(2147483648, 12), $active4, Long_ZERO); - case 83: - if (Long_ne(Long_and(var$11, Long_fromInt(512)), Long_ZERO)) { - $this.$jjmatchedKind = 73; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 224; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_create(0, 512)), Long_ZERO)) { - $this.$jjmatchedKind = 233; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_create(0, 1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 254; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($old4, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 294; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_fromInt(4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 342; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_fromInt(1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 350; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(1056), var$12, Long_create(0, 256), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_fromInt(99328)); - case 84: - d: { - if (Long_ne(Long_and(var$11, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 97; - $this.$jjmatchedPos = 4; - break d; - } - if (Long_ne(Long_and(var$11, Long_create(0, 4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 118; - $this.$jjmatchedPos = 4; - break d; - } - if (Long_ne(Long_and(var$12, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 161; - $this.$jjmatchedPos = 4; - break d; - } - if (Long_ne(Long_and(var$12, Long_create(0, 512)), Long_ZERO)) { - $this.$jjmatchedKind = 169; - $this.$jjmatchedPos = 4; - break d; - } - if (Long_ne(Long_and(var$12, Long_create(0, 131072)), Long_ZERO)) { - $this.$jjmatchedKind = 177; - $this.$jjmatchedPos = 4; - break d; - } - if (Long_ne(Long_and($active3, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 208; - $this.$jjmatchedPos = 4; - break d; - } - if (Long_ne(Long_and($old4, Long_fromInt(8)), Long_ZERO)) { - $this.$jjmatchedKind = 259; - $this.$jjmatchedPos = 4; - break d; - } - if (Long_eq(Long_and($old4, Long_create(0, 536870912)), Long_ZERO)) - break d; - $this.$jjmatchedKind = 317; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(268435456, 1082523648), var$12, Long_create(1048584, 268492812), $active3, Long_create(0, 256), $old4, Long_create(402653184, 1098907648), $active4, Long_ZERO); - case 85: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(0, 65536), var$12, Long_create(2147745794, 1), $active3, Long_create(1048576, 67108864), $old4, Long_create(0, 2147483648), $active4, Long_fromInt(50331648)); - case 86: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(64), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(536870912), $active4, Long_ZERO); - case 87: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_create(0, 402653184), $old4, Long_ZERO, $active4, Long_ZERO); - case 88: - if (Long_ne(Long_and(var$12, Long_create(0, 1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 190; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_create(0, 2147483648), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 89: - if (Long_ne(Long_and(var$11, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 80; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_fromInt(134217728), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 90: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_fromInt(2048)); - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(0, 536592), var$12, Long_create(0, 2048), $active3, Long_create(0, 6144), $old4, Long_fromInt(1073742272), $active4, Long_ZERO); - case 98: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(0, 402653184), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 99: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_fromInt(256), $active3, Long_ZERO, $old4, Long_fromInt(8388608), $active4, Long_ZERO); - case 100: - if (Long_ne(Long_and($active4, Long_fromInt(2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 341; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 4096)), Long_ZERO)) { - $this.$jjmatchedKind = 364; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 366; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 101: - if (Long_ne(Long_and(var$11, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 96; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and(var$12, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 166; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 218; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($old4, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 274; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 352; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 359; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_create(0, 1024)), Long_ZERO)) { - $this.$jjmatchedKind = 362; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(134217728, 33554688), var$12, Long_create(50399296, 8388608), $active3, Long_create(0, 262144), $old4, Long_create(30720, 67895296), $active4, Long_create(131096, 16)); - case 102: - break c; - case 103: - if (Long_ne(Long_and($active4, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 351; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(2097152, 64), var$12, Long_ZERO, $active3, Long_fromInt(8388624), $old4, Long_ZERO, $active4, Long_ZERO); - case 104: - if (Long_ne(Long_and(var$12, Long_create(0, 262144)), Long_ZERO)) { - $this.$jjmatchedKind = 178; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_fromInt(33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 217; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(2048), var$12, Long_create(0, 524288), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_create(0, 2)); - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(33554432, 2113536), var$12, Long_fromInt(4096), $active3, Long_create(32768, 49152), $old4, Long_create(99840, 6291459), $active4, Long_fromInt(32)); - case 107: - if (Long_ne(Long_and(var$11, Long_fromInt(1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 94; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 16), $active4, Long_ZERO); - case 108: - if (Long_ne(Long_and($active3, Long_fromInt(256)), Long_ZERO)) { - $this.$jjmatchedKind = 200; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_fromInt(524288)), Long_ZERO)) { - $this.$jjmatchedKind = 211; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_fromInt(8388609), $active3, Long_fromInt(512), $old4, Long_create(4194320, 134217728), $active4, Long_fromInt(24576)); - case 109: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(16777216), $active4, Long_ZERO); - case 110: - if (Long_ne(Long_and(var$11, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 71; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 343; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(524544), var$12, Long_fromInt(4), $active3, Long_fromInt(2), $old4, Long_create(1, 61440), $active4, Long_fromInt(67108866)); - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(0, 32768), var$12, Long_ZERO, $active3, Long_create(0, 2162163712), $old4, Long_ZERO, $active4, Long_create(4, 524)); - case 112: - if (Long_ne(Long_and(var$12, Long_create(0, 1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 180; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_create(0, 2097152), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 114: - if (Long_ne(Long_and(var$11, Long_fromInt(8192)), Long_ZERO)) { - $this.$jjmatchedKind = 77; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and(var$12, Long_create(0, 16)), Long_ZERO)) { - $this.$jjmatchedKind = 164; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_create(0, 33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 249; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(1048576), var$12, Long_create(128, 134217728), $active3, Long_fromInt(4), $old4, Long_create(2147483648, 12), $active4, Long_ZERO); - case 115: - if (Long_ne(Long_and(var$11, Long_fromInt(512)), Long_ZERO)) { - $this.$jjmatchedKind = 73; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 224; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_create(0, 512)), Long_ZERO)) { - $this.$jjmatchedKind = 233; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active3, Long_create(0, 1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 254; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($old4, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 294; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_fromInt(4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 342; - $this.$jjmatchedPos = 4; - } else if (Long_ne(Long_and($active4, Long_fromInt(1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 350; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(1056), var$12, Long_create(0, 256), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_fromInt(99328)); - case 116: - e: { - if (Long_ne(Long_and(var$11, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 97; - $this.$jjmatchedPos = 4; - break e; - } - if (Long_ne(Long_and(var$11, Long_create(0, 4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 118; - $this.$jjmatchedPos = 4; - break e; - } - if (Long_ne(Long_and(var$12, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 161; - $this.$jjmatchedPos = 4; - break e; - } - if (Long_ne(Long_and(var$12, Long_create(0, 512)), Long_ZERO)) { - $this.$jjmatchedKind = 169; - $this.$jjmatchedPos = 4; - break e; - } - if (Long_ne(Long_and(var$12, Long_create(0, 131072)), Long_ZERO)) { - $this.$jjmatchedKind = 177; - $this.$jjmatchedPos = 4; - break e; - } - if (Long_ne(Long_and($active3, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 208; - $this.$jjmatchedPos = 4; - break e; - } - if (Long_ne(Long_and($old4, Long_fromInt(8)), Long_ZERO)) { - $this.$jjmatchedKind = 259; - $this.$jjmatchedPos = 4; - break e; - } - if (Long_eq(Long_and($old4, Long_create(0, 536870912)), Long_ZERO)) - break e; - $this.$jjmatchedKind = 317; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(268435456, 1082523648), var$12, Long_create(1048584, 268492812), $active3, Long_create(0, 256), $old4, Long_create(402653184, 1098907648), $active4, Long_ZERO); - case 117: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(0, 65536), var$12, Long_create(2147745794, 1), $active3, Long_create(1048576, 67108864), $old4, Long_create(0, 2147483648), $active4, Long_fromInt(50331648)); - case 118: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_fromInt(64), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(536870912), $active4, Long_ZERO); - case 119: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_create(0, 402653184), $old4, Long_ZERO, $active4, Long_ZERO); - case 120: - if (Long_ne(Long_and(var$12, Long_create(0, 1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 190; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_create(0, 2147483648), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 121: - if (Long_ne(Long_and(var$11, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 80; - $this.$jjmatchedPos = 4; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_fromInt(134217728), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 122: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_fromInt(2048)); - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0($this, var$11, Long_create(0, 536592), var$12, Long_create(0, 2048), $active3, Long_create(0, 6144), $old4, Long_fromInt(1073742272), $active4, Long_ZERO); - } - if (Long_ne(Long_and(var$11, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 95; - $this.$jjmatchedPos = 4; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 4); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa5_0 = ($this, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$11, var$12, var$13, var$14, $$je; - var$11 = Long_and($active1, $old1); - var$12 = Long_and($active2, $old2); - $old1 = Long_or(var$11, var$12); - var$13 = Long_and($active3, $old3); - $old1 = Long_or($old1, var$13); - $active3 = Long_and($active4, $old4); - $old1 = Long_or($old1, $active3); - $old4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $old4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 4); - a: { - try { - var$14 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$14; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 4); - } - b: { - c: { - d: { - e: { - f: { - g: { - switch (var$14) { - case 65: - break; - case 66: - case 70: - case 74: - case 75: - case 77: - case 81: - case 86: - case 87: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 98: - case 102: - case 106: - case 107: - case 109: - case 113: - case 118: - case 119: - break b; - case 67: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(0, 256), var$12, Long_create(0, 2048), var$13, Long_ZERO, $active3, Long_fromInt(1073741824), $old4, Long_ZERO); - case 68: - if (Long_ne(Long_and($active3, Long_create(0, 4096)), Long_ZERO)) { - $this.$jjmatchedKind = 300; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 314; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($old4, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 346; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(524288, 16), var$12, Long_ZERO, var$13, Long_create(0, 2147483648), $active3, Long_create(104448, 57344), $old4, Long_ZERO); - case 69: - h: { - if (Long_ne(Long_and(var$11, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 70; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and(var$11, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 102; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and(var$11, Long_create(0, 8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 119; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and(var$12, Long_fromInt(8)), Long_ZERO)) { - $this.$jjmatchedKind = 131; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and(var$12, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 151; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and($active3, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 279; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and($active3, Long_fromInt(16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 280; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and($active3, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 285; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and($active3, Long_create(0, 16)), Long_ZERO)) { - $this.$jjmatchedKind = 292; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_ne(Long_and($active3, Long_create(0, 134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 315; - $this.$jjmatchedPos = 5; - break h; - } - if (Long_eq(Long_and($old4, Long_fromInt(16777216)), Long_ZERO)) - break h; - $this.$jjmatchedKind = 344; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_fromInt(268436480), var$12, Long_create(4, 2147491844), var$13, Long_fromInt(8388624), $active3, Long_create(0, 25165824), $old4, Long_fromInt(33554432)); - case 71: - if (Long_eq(Long_and($old4, Long_fromInt(2)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 321; - $this.$jjmatchedPos = 5; - break b; - case 72: - if (Long_ne(Long_and(var$12, Long_fromInt(256)), Long_ZERO)) { - $this.$jjmatchedKind = 136; - $this.$jjmatchedPos = 5; - break b; - } - if (Long_eq(Long_and(var$12, Long_create(0, 256)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 168; - $this.$jjmatchedPos = 5; - break b; - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(256, 1074266112), var$12, Long_create(1048576, 49152), var$13, Long_fromInt(2), $active3, Long_create(402653184, 4), $old4, Long_fromInt(16384)); - case 76: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_ZERO, var$12, Long_fromInt(2), var$13, Long_create(0, 6144), $active3, Long_fromInt(1536), $old4, Long_ZERO); - case 78: - if (Long_ne(Long_and(var$11, Long_fromInt(2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 85; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 146; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$13, Long_create(0, 8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 247; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 291; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(33554432, 35663872), var$12, Long_fromInt(50335808), var$13, Long_create(32768, 6307840), $active3, Long_create(0, 6291456), $old4, Long_fromInt(40)); - case 79: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_fromInt(2048), var$12, Long_fromInt(129), var$13, Long_create(0, 402653184), $active3, Long_fromInt(4194304), $old4, Long_fromInt(10240)); - case 80: - break d; - case 82: - if (Long_ne(Long_and(var$12, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 144; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 262144)), Long_ZERO)) { - $this.$jjmatchedKind = 306; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($old4, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 354; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(0, 458752), var$12, Long_create(2048, 8388608), var$13, Long_ZERO, $active3, Long_create(24960, 524291), $old4, Long_fromInt(131076)); - case 83: - if (Long_ne(Long_and(var$11, Long_fromInt(32)), Long_ZERO)) { - $this.$jjmatchedKind = 69; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 163; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_create(0, 524288)), Long_ZERO)) { - $this.$jjmatchedKind = 179; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_create(0, 2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 181; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$13, Long_fromInt(512)), Long_ZERO)) { - $this.$jjmatchedKind = 201; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 318; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 2147483648)), Long_ZERO)) { - $this.$jjmatchedKind = 319; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(0, 32768), var$12, Long_create(0, 134217728), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 8)); - case 84: - i: { - if (Long_ne(Long_and(var$11, Long_fromInt(1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 84; - $this.$jjmatchedPos = 5; - break i; - } - if (Long_ne(Long_and(var$11, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 110; - $this.$jjmatchedPos = 5; - break i; - } - if (Long_ne(Long_and(var$13, Long_fromInt(4)), Long_ZERO)) { - $this.$jjmatchedKind = 194; - $this.$jjmatchedPos = 5; - break i; - } - if (Long_ne(Long_and(var$13, Long_create(0, 32768)), Long_ZERO)) { - $this.$jjmatchedKind = 239; - $this.$jjmatchedPos = 5; - break i; - } - if (Long_ne(Long_and(var$13, Long_create(0, 262144)), Long_ZERO)) { - $this.$jjmatchedKind = 242; - $this.$jjmatchedPos = 5; - break i; - } - if (Long_ne(Long_and(var$13, Long_create(0, 67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 250; - $this.$jjmatchedPos = 5; - break i; - } - if (Long_ne(Long_and($active3, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 287; - $this.$jjmatchedPos = 5; - break i; - } - if (Long_eq(Long_and($old4, Long_fromInt(16)), Long_ZERO)) - break i; - $this.$jjmatchedKind = 324; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_ZERO, var$12, Long_create(2147483648, 129), var$13, Long_ZERO, $active3, Long_fromInt(65), $old4, Long_fromInt(1024)); - case 85: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 512)); - case 88: - break g; - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(134217728, 402653184), var$12, Long_create(0, 268435456), var$13, Long_create(0, 256), $active3, Long_fromInt(16), $old4, Long_create(98304, 2)); - case 99: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(0, 256), var$12, Long_create(0, 2048), var$13, Long_ZERO, $active3, Long_fromInt(1073741824), $old4, Long_ZERO); - case 100: - if (Long_ne(Long_and($active3, Long_create(0, 4096)), Long_ZERO)) { - $this.$jjmatchedKind = 300; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 314; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($old4, Long_fromInt(67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 346; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(524288, 16), var$12, Long_ZERO, var$13, Long_create(0, 2147483648), $active3, Long_create(104448, 57344), $old4, Long_ZERO); - case 101: - j: { - if (Long_ne(Long_and(var$11, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 70; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and(var$11, Long_create(0, 64)), Long_ZERO)) { - $this.$jjmatchedKind = 102; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and(var$11, Long_create(0, 8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 119; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and(var$12, Long_fromInt(8)), Long_ZERO)) { - $this.$jjmatchedKind = 131; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and(var$12, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 151; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and($active3, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 279; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and($active3, Long_fromInt(16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 280; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and($active3, Long_fromInt(536870912)), Long_ZERO)) { - $this.$jjmatchedKind = 285; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and($active3, Long_create(0, 16)), Long_ZERO)) { - $this.$jjmatchedKind = 292; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_ne(Long_and($active3, Long_create(0, 134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 315; - $this.$jjmatchedPos = 5; - break j; - } - if (Long_eq(Long_and($old4, Long_fromInt(16777216)), Long_ZERO)) - break j; - $this.$jjmatchedKind = 344; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_fromInt(268436480), var$12, Long_create(4, 2147491844), var$13, Long_fromInt(8388624), $active3, Long_create(0, 25165824), $old4, Long_fromInt(33554432)); - case 103: - break f; - case 104: - break c; - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(256, 1074266112), var$12, Long_create(1048576, 49152), var$13, Long_fromInt(2), $active3, Long_create(402653184, 4), $old4, Long_fromInt(16384)); - case 108: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_ZERO, var$12, Long_fromInt(2), var$13, Long_create(0, 6144), $active3, Long_fromInt(1536), $old4, Long_ZERO); - case 110: - if (Long_ne(Long_and(var$11, Long_fromInt(2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 85; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_fromInt(262144)), Long_ZERO)) { - $this.$jjmatchedKind = 146; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$13, Long_create(0, 8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 247; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 291; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(33554432, 35663872), var$12, Long_fromInt(50335808), var$13, Long_create(32768, 6307840), $active3, Long_create(0, 6291456), $old4, Long_fromInt(40)); - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_fromInt(2048), var$12, Long_fromInt(129), var$13, Long_create(0, 402653184), $active3, Long_fromInt(4194304), $old4, Long_fromInt(10240)); - case 112: - if (Long_ne(Long_and(var$13, Long_fromInt(1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 212; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_ZERO, var$12, Long_fromInt(134217728), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 114: - if (Long_ne(Long_and(var$12, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 144; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 262144)), Long_ZERO)) { - $this.$jjmatchedKind = 306; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($old4, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 354; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(0, 458752), var$12, Long_create(2048, 8388608), var$13, Long_ZERO, $active3, Long_create(24960, 524291), $old4, Long_fromInt(131076)); - case 115: - if (Long_ne(Long_and(var$11, Long_fromInt(32)), Long_ZERO)) { - $this.$jjmatchedKind = 69; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 163; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_create(0, 524288)), Long_ZERO)) { - $this.$jjmatchedKind = 179; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_create(0, 2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 181; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$13, Long_fromInt(512)), Long_ZERO)) { - $this.$jjmatchedKind = 201; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 318; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and($active3, Long_create(0, 2147483648)), Long_ZERO)) { - $this.$jjmatchedKind = 319; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(0, 32768), var$12, Long_create(0, 134217728), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 8)); - case 116: - k: { - if (Long_ne(Long_and(var$11, Long_fromInt(1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 84; - $this.$jjmatchedPos = 5; - break k; - } - if (Long_ne(Long_and(var$11, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 110; - $this.$jjmatchedPos = 5; - break k; - } - if (Long_ne(Long_and(var$13, Long_fromInt(4)), Long_ZERO)) { - $this.$jjmatchedKind = 194; - $this.$jjmatchedPos = 5; - break k; - } - if (Long_ne(Long_and(var$13, Long_create(0, 32768)), Long_ZERO)) { - $this.$jjmatchedKind = 239; - $this.$jjmatchedPos = 5; - break k; - } - if (Long_ne(Long_and(var$13, Long_create(0, 262144)), Long_ZERO)) { - $this.$jjmatchedKind = 242; - $this.$jjmatchedPos = 5; - break k; - } - if (Long_ne(Long_and(var$13, Long_create(0, 67108864)), Long_ZERO)) { - $this.$jjmatchedKind = 250; - $this.$jjmatchedPos = 5; - break k; - } - if (Long_ne(Long_and($active3, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 287; - $this.$jjmatchedPos = 5; - break k; - } - if (Long_eq(Long_and($old4, Long_fromInt(16)), Long_ZERO)) - break k; - $this.$jjmatchedKind = 324; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_ZERO, var$12, Long_create(2147483648, 129), var$13, Long_ZERO, $active3, Long_fromInt(65), $old4, Long_fromInt(1024)); - case 117: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 512)); - case 120: - break e; - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_create(134217728, 402653184), var$12, Long_create(0, 268435456), var$13, Long_create(0, 256), $active3, Long_fromInt(16), $old4, Long_create(98304, 2)); - } - if (Long_eq(Long_and($old4, Long_create(0, 16)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 356; - $this.$jjmatchedPos = 5; - break b; - } - if (Long_eq(Long_and($old4, Long_fromInt(2)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 321; - $this.$jjmatchedPos = 5; - break b; - } - if (Long_eq(Long_and($old4, Long_create(0, 16)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 356; - $this.$jjmatchedPos = 5; - break b; - } - if (Long_ne(Long_and(var$13, Long_fromInt(1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 212; - $this.$jjmatchedPos = 5; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0($this, var$11, Long_ZERO, var$12, Long_fromInt(134217728), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - } - if (Long_ne(Long_and(var$12, Long_fromInt(256)), Long_ZERO)) { - $this.$jjmatchedKind = 136; - $this.$jjmatchedPos = 5; - } else if (Long_ne(Long_and(var$12, Long_create(0, 256)), Long_ZERO)) { - $this.$jjmatchedKind = 168; - $this.$jjmatchedPos = 5; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 5); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa6_0 = ($this, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$11, var$12, var$13, var$14, $$je; - var$11 = Long_and($active1, $old1); - var$12 = Long_and($active2, $old2); - $old1 = Long_or(var$11, var$12); - var$13 = Long_and($active3, $old3); - $old1 = Long_or($old1, var$13); - $active3 = Long_and($active4, $old4); - $old1 = Long_or($old1, $active3); - $old4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $old4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 5); - a: { - try { - var$14 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$14; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 5); - } - b: { - c: { - d: { - e: { - switch (var$14) { - case 65: - break; - case 66: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_create(0, 268435456), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 67: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_fromInt(4097), var$13, Long_create(0, 256), $active3, Long_create(4194304, 4), $old4, Long_fromInt(98304)); - case 68: - if (Long_ne(Long_and(var$11, Long_fromInt(268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 92; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$11, Long_create(0, 4096)), Long_ZERO)) { - $this.$jjmatchedKind = 108; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_fromInt(4)), Long_ZERO)) { - $this.$jjmatchedKind = 130; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 8192), var$12, Long_fromInt(64), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(8)); - case 69: - if (Long_ne(Long_and(var$11, Long_create(0, 16)), Long_ZERO)) { - $this.$jjmatchedKind = 100; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 160; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_fromInt(1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 286; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 288; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($old4, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 355; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_create(2048, 128), var$13, Long_ZERO, $active3, Long_create(99841, 2), $old4, Long_ZERO); - case 70: - case 74: - case 75: - case 76: - case 80: - case 81: - case 86: - case 87: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 102: - case 106: - case 107: - case 108: - case 112: - case 113: - case 118: - case 119: - break b; - case 71: - if (Long_ne(Long_and(var$13, Long_fromInt(32768)), Long_ZERO)) { - $this.$jjmatchedKind = 207; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$13, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 238; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_create(0, 2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 309; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_fromInt(33554432), var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_create(0, 4194304), $old4, Long_fromInt(8192)); - case 72: - if (Long_eq(Long_and(var$12, Long_create(0, 2048)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 171; - $this.$jjmatchedPos = 6; - break b; - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(524288, 32768), var$12, Long_ZERO, var$13, Long_create(0, 2147489792), $active3, Long_fromInt(256), $old4, Long_ZERO); - case 77: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 1073741824), var$12, Long_ZERO, var$13, Long_fromInt(8388608), $active3, Long_ZERO, $old4, Long_ZERO); - case 78: - break d; - case 79: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_create(1048576, 134266880), var$13, Long_ZERO, $active3, Long_fromInt(402653184), $old4, Long_ZERO); - case 82: - if (Long_ne(Long_and(var$13, Long_fromInt(16)), Long_ZERO)) { - $this.$jjmatchedKind = 196; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($old4, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 353; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(2048, 65536), var$12, Long_ZERO, var$13, Long_create(0, 402653184), $active3, Long_ZERO, $old4, Long_ZERO); - case 83: - if (Long_ne(Long_and(var$11, Long_fromInt(1024)), Long_ZERO)) { - $this.$jjmatchedKind = 74; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_create(0, 8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 183; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_create(0, 2147483648)), Long_ZERO)) { - $this.$jjmatchedKind = 191; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$13, Long_create(0, 4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 246; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_create(0, 32768)), Long_ZERO)) { - $this.$jjmatchedKind = 303; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_create(0, 524288)), Long_ZERO)) { - $this.$jjmatchedKind = 307; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(256, 402653184), var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_create(0, 25165824), $old4, Long_fromInt(131072)); - case 84: - if (Long_ne(Long_and(var$11, Long_create(0, 256)), Long_ZERO)) { - $this.$jjmatchedKind = 104; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$11, Long_create(0, 33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 121; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_fromInt(2)), Long_ZERO)) { - $this.$jjmatchedKind = 129; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_fromInt(16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 152; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($old4, Long_create(0, 512)), Long_ZERO)) { - $this.$jjmatchedKind = 361; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_fromInt(167772160), var$13, Long_fromInt(2), $active3, Long_fromInt(24592), $old4, Long_fromInt(4)); - case 85: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 2097152), var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_fromInt(6144), $old4, Long_ZERO); - case 88: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_create(0, 8192), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 89: - if (Long_ne(Long_and(var$12, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 135; - $this.$jjmatchedPos = 6; - break b; - } - if (Long_eq(Long_and($active3, Long_fromInt(128)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 263; - $this.$jjmatchedPos = 6; - break b; - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 393216), var$12, Long_create(2147483648, 0), var$13, Long_create(0, 2097152), $active3, Long_create(64, 24576), $old4, Long_fromInt(1056)); - case 98: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_create(0, 268435456), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 99: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_fromInt(4097), var$13, Long_create(0, 256), $active3, Long_create(4194304, 4), $old4, Long_fromInt(98304)); - case 100: - if (Long_ne(Long_and(var$11, Long_fromInt(268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 92; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$11, Long_create(0, 4096)), Long_ZERO)) { - $this.$jjmatchedKind = 108; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_fromInt(4)), Long_ZERO)) { - $this.$jjmatchedKind = 130; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 8192), var$12, Long_fromInt(64), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(8)); - case 101: - if (Long_ne(Long_and(var$11, Long_create(0, 16)), Long_ZERO)) { - $this.$jjmatchedKind = 100; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 160; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_fromInt(1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 286; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_create(0, 1)), Long_ZERO)) { - $this.$jjmatchedKind = 288; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($old4, Long_create(0, 8)), Long_ZERO)) { - $this.$jjmatchedKind = 355; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_create(2048, 128), var$13, Long_ZERO, $active3, Long_create(99841, 2), $old4, Long_ZERO); - case 103: - if (Long_ne(Long_and(var$13, Long_fromInt(32768)), Long_ZERO)) { - $this.$jjmatchedKind = 207; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$13, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 238; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_create(0, 2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 309; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_fromInt(33554432), var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_create(0, 4194304), $old4, Long_fromInt(8192)); - case 104: - break e; - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(524288, 32768), var$12, Long_ZERO, var$13, Long_create(0, 2147489792), $active3, Long_fromInt(256), $old4, Long_ZERO); - case 109: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 1073741824), var$12, Long_ZERO, var$13, Long_fromInt(8388608), $active3, Long_ZERO, $old4, Long_ZERO); - case 110: - if (Long_ne(Long_and(var$11, Long_fromInt(134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 91; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 524288), var$12, Long_create(0, 4), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(33572864)); - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_create(1048576, 134266880), var$13, Long_ZERO, $active3, Long_fromInt(402653184), $old4, Long_ZERO); - case 114: - if (Long_ne(Long_and(var$13, Long_fromInt(16)), Long_ZERO)) { - $this.$jjmatchedKind = 196; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($old4, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 353; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(2048, 65536), var$12, Long_ZERO, var$13, Long_create(0, 402653184), $active3, Long_ZERO, $old4, Long_ZERO); - case 115: - if (Long_ne(Long_and(var$11, Long_fromInt(1024)), Long_ZERO)) { - $this.$jjmatchedKind = 74; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_create(0, 8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 183; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_create(0, 2147483648)), Long_ZERO)) { - $this.$jjmatchedKind = 191; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$13, Long_create(0, 4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 246; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_create(0, 32768)), Long_ZERO)) { - $this.$jjmatchedKind = 303; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_create(0, 524288)), Long_ZERO)) { - $this.$jjmatchedKind = 307; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(256, 402653184), var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_create(0, 25165824), $old4, Long_fromInt(131072)); - case 116: - if (Long_ne(Long_and(var$11, Long_create(0, 256)), Long_ZERO)) { - $this.$jjmatchedKind = 104; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$11, Long_create(0, 33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 121; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_fromInt(2)), Long_ZERO)) { - $this.$jjmatchedKind = 129; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and(var$12, Long_fromInt(16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 152; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($old4, Long_create(0, 512)), Long_ZERO)) { - $this.$jjmatchedKind = 361; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_fromInt(167772160), var$13, Long_fromInt(2), $active3, Long_fromInt(24592), $old4, Long_fromInt(4)); - case 117: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 2097152), var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_fromInt(6144), $old4, Long_ZERO); - case 120: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_ZERO, var$12, Long_create(0, 8192), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 121: - break c; - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 393216), var$12, Long_create(2147483648, 0), var$13, Long_create(0, 2097152), $active3, Long_create(64, 24576), $old4, Long_fromInt(1056)); - } - if (Long_eq(Long_and(var$12, Long_create(0, 2048)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 171; - $this.$jjmatchedPos = 6; - break b; - } - if (Long_ne(Long_and(var$11, Long_fromInt(134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 91; - $this.$jjmatchedPos = 6; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0($this, var$11, Long_create(0, 524288), var$12, Long_create(0, 4), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(33572864)); - } - if (Long_ne(Long_and(var$12, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 135; - $this.$jjmatchedPos = 6; - } else if (Long_ne(Long_and($active3, Long_fromInt(128)), Long_ZERO)) { - $this.$jjmatchedKind = 263; - $this.$jjmatchedPos = 6; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 6); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa7_0 = ($this, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$11, var$12, var$13, $$je; - var$11 = Long_and($active1, $old1); - var$12 = Long_and($active2, $old2); - $old1 = Long_or(var$11, var$12); - $active3 = Long_and($active3, $old3); - $old1 = Long_or($old1, $active3); - $old4 = Long_and($active4, $old4); - $old1 = Long_or($old1, $old4); - $active4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $active4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 6); - a: { - try { - var$13 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$13; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 6); - } - b: { - c: { - d: { - e: { - f: { - g: { - switch (var$13) { - case 65: - break; - case 66: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_create(2147483648, 0), $active3, Long_ZERO, $old4, Long_fromInt(64), $active4, Long_ZERO); - case 67: - break f; - case 68: - if (Long_ne(Long_and($active3, Long_create(0, 134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 251; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($old4, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 289; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_create(0, 268435456), $old4, Long_ZERO, $active4, Long_ZERO); - case 69: - if (Long_ne(Long_and(var$11, Long_create(0, 2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 117; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$11, Long_create(0, 134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 123; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$11, Long_create(0, 1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 126; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($active4, Long_fromInt(2048)), Long_ZERO)) { - $this.$jjmatchedKind = 331; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($active4, Long_fromInt(131072)), Long_ZERO)) { - $this.$jjmatchedKind = 337; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_create(0, 268500992), var$12, Long_fromInt(134217728), $active3, Long_fromInt(8388608), $old4, Long_fromInt(272), $active4, Long_fromInt(33554444)); - case 70: - case 74: - case 75: - case 79: - case 80: - case 81: - case 85: - case 86: - case 87: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 102: - case 106: - case 107: - case 111: - case 112: - case 113: - case 117: - case 118: - case 119: - break b; - case 71: - if (Long_ne(Long_and($active4, Long_fromInt(16384)), Long_ZERO)) { - $this.$jjmatchedKind = 334; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(1536), $active4, Long_ZERO); - case 72: - if (Long_eq(Long_and($active3, Long_create(0, 256)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 232; - $this.$jjmatchedPos = 7; - break b; - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_create(0, 393216), var$12, Long_fromInt(64), $active3, Long_ZERO, $old4, Long_fromInt(8192), $active4, Long_ZERO); - case 76: - if (Long_ne(Long_and($active3, Long_create(0, 2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 245; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_create(0, 268435456), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 77: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_fromInt(1024)); - case 78: - if (Long_ne(Long_and(var$12, Long_fromInt(1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 148; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$12, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 174; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_fromInt(524288), var$12, Long_create(2048, 134250496), $active3, Long_ZERO, $old4, Long_fromInt(402653184), $active4, Long_ZERO); - case 82: - if (Long_ne(Long_and($old4, Long_fromInt(32768)), Long_ZERO)) { - $this.$jjmatchedKind = 271; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), $active3, Long_ZERO, $old4, Long_create(71680, 24576), $active4, Long_ZERO); - case 83: - break d; - case 84: - if (Long_ne(Long_and(var$12, Long_fromInt(4096)), Long_ZERO)) { - $this.$jjmatchedKind = 140; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$12, Long_create(0, 8192)), Long_ZERO)) { - $this.$jjmatchedKind = 173; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($old4, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 290; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($old4, Long_create(0, 16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 312; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_create(2304, 32768), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 8388608), $active4, Long_fromInt(98336)); - case 88: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(1), $active4, Long_ZERO); - case 89: - if (Long_ne(Long_and($active3, Long_fromInt(2)), Long_ZERO)) { - $this.$jjmatchedKind = 193; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_ne(Long_and($old4, Long_fromInt(16384)), Long_ZERO)) { - $this.$jjmatchedKind = 270; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_eq(Long_and($active4, Long_fromInt(8192)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 333; - $this.$jjmatchedPos = 7; - break b; - case 90: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_create(0, 6144), $old4, Long_ZERO, $active4, Long_ZERO); - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_fromInt(1), $active3, Long_ZERO, $old4, Long_fromInt(4194304), $active4, Long_ZERO); - case 98: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_create(2147483648, 0), $active3, Long_ZERO, $old4, Long_fromInt(64), $active4, Long_ZERO); - case 99: - if (Long_ne(Long_and($active3, Long_create(0, 2147483648)), Long_ZERO)) { - $this.$jjmatchedKind = 255; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_create(0, 4), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 100: - if (Long_ne(Long_and($active3, Long_create(0, 134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 251; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($old4, Long_create(0, 2)), Long_ZERO)) { - $this.$jjmatchedKind = 289; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_create(0, 268435456), $old4, Long_ZERO, $active4, Long_ZERO); - case 101: - if (Long_ne(Long_and(var$11, Long_create(0, 2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 117; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$11, Long_create(0, 134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 123; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$11, Long_create(0, 1073741824)), Long_ZERO)) { - $this.$jjmatchedKind = 126; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($active4, Long_fromInt(2048)), Long_ZERO)) { - $this.$jjmatchedKind = 331; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($active4, Long_fromInt(131072)), Long_ZERO)) { - $this.$jjmatchedKind = 337; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_create(0, 268500992), var$12, Long_fromInt(134217728), $active3, Long_fromInt(8388608), $old4, Long_fromInt(272), $active4, Long_fromInt(33554444)); - case 103: - if (Long_ne(Long_and($active4, Long_fromInt(16384)), Long_ZERO)) { - $this.$jjmatchedKind = 334; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(1536), $active4, Long_ZERO); - case 104: - break g; - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_create(0, 393216), var$12, Long_fromInt(64), $active3, Long_ZERO, $old4, Long_fromInt(8192), $active4, Long_ZERO); - case 108: - if (Long_ne(Long_and($active3, Long_create(0, 2097152)), Long_ZERO)) { - $this.$jjmatchedKind = 245; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_create(0, 268435456), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 109: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_fromInt(1024)); - case 110: - if (Long_ne(Long_and(var$12, Long_fromInt(1048576)), Long_ZERO)) { - $this.$jjmatchedKind = 148; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$12, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 174; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_fromInt(524288), var$12, Long_create(2048, 134250496), $active3, Long_ZERO, $old4, Long_fromInt(402653184), $active4, Long_ZERO); - case 114: - if (Long_ne(Long_and($old4, Long_fromInt(32768)), Long_ZERO)) { - $this.$jjmatchedKind = 271; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), $active3, Long_ZERO, $old4, Long_create(71680, 24576), $active4, Long_ZERO); - case 115: - break c; - case 116: - if (Long_ne(Long_and(var$12, Long_fromInt(4096)), Long_ZERO)) { - $this.$jjmatchedKind = 140; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$12, Long_create(0, 8192)), Long_ZERO)) { - $this.$jjmatchedKind = 173; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($old4, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 290; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($old4, Long_create(0, 16777216)), Long_ZERO)) { - $this.$jjmatchedKind = 312; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_create(2304, 32768), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 8388608), $active4, Long_fromInt(98336)); - case 120: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(1), $active4, Long_ZERO); - case 121: - break e; - case 122: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_create(0, 6144), $old4, Long_ZERO, $active4, Long_ZERO); - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_fromInt(1), $active3, Long_ZERO, $old4, Long_fromInt(4194304), $active4, Long_ZERO); - } - if (Long_eq(Long_and($active3, Long_create(0, 256)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 232; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_ne(Long_and($active3, Long_create(0, 2147483648)), Long_ZERO)) { - $this.$jjmatchedKind = 255; - $this.$jjmatchedPos = 7; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0($this, var$11, Long_ZERO, var$12, Long_create(0, 4), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - } - if (Long_ne(Long_and($active3, Long_fromInt(2)), Long_ZERO)) { - $this.$jjmatchedKind = 193; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_ne(Long_and($old4, Long_fromInt(16384)), Long_ZERO)) { - $this.$jjmatchedKind = 270; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_eq(Long_and($active4, Long_fromInt(8192)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 333; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_ne(Long_and(var$11, Long_fromInt(33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 89; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_ne(Long_and(var$11, Long_create(0, 8192)), Long_ZERO)) { - $this.$jjmatchedKind = 109; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_ne(Long_and(var$11, Long_create(0, 524288)), Long_ZERO)) { - $this.$jjmatchedKind = 115; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_ne(Long_and(var$12, Long_fromInt(33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 153; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_eq(Long_and($old4, Long_create(0, 4194304)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 310; - $this.$jjmatchedPos = 7; - break b; - } - if (Long_ne(Long_and(var$11, Long_fromInt(33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 89; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$11, Long_create(0, 8192)), Long_ZERO)) { - $this.$jjmatchedKind = 109; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$11, Long_create(0, 524288)), Long_ZERO)) { - $this.$jjmatchedKind = 115; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and(var$12, Long_fromInt(33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 153; - $this.$jjmatchedPos = 7; - } else if (Long_ne(Long_and($old4, Long_create(0, 4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 310; - $this.$jjmatchedPos = 7; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 7); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa8_0 = ($this, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$11, var$12, var$13, var$14, $$je; - var$11 = Long_and($active1, $old1); - var$12 = Long_and($active2, $old2); - $old1 = Long_or(var$11, var$12); - var$13 = Long_and($active3, $old3); - $old1 = Long_or($old1, var$13); - $active3 = Long_and($active4, $old4); - $old1 = Long_or($old1, $active3); - $old4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $old4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 7); - a: { - try { - var$14 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$14; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 7); - } - b: { - c: { - d: { - e: { - f: { - g: { - switch (var$14) { - case 65: - break; - case 66: - case 67: - case 70: - case 72: - case 74: - case 75: - case 79: - case 81: - case 85: - case 86: - case 87: - case 88: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 98: - case 99: - case 102: - case 104: - case 106: - case 107: - case 111: - case 113: - case 117: - case 118: - case 119: - case 120: - break b; - case 68: - if (Long_ne(Long_and(var$12, Long_fromInt(134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 155; - $this.$jjmatchedPos = 8; - break b; - } - if (Long_ne(Long_and($active3, Long_fromInt(16)), Long_ZERO)) { - $this.$jjmatchedKind = 260; - $this.$jjmatchedPos = 8; - break b; - } - if (Long_ne(Long_and($old4, Long_fromInt(4)), Long_ZERO)) { - $this.$jjmatchedKind = 322; - $this.$jjmatchedPos = 8; - break b; - } - if (Long_eq(Long_and($old4, Long_fromInt(8)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 323; - $this.$jjmatchedPos = 8; - break b; - case 69: - if (Long_ne(Long_and(var$11, Long_create(0, 32768)), Long_ZERO)) { - $this.$jjmatchedKind = 111; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$12, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 162; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$12, Long_create(0, 268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 188; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$13, Long_create(0, 2048)), Long_ZERO)) { - $this.$jjmatchedKind = 235; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(512)), Long_ZERO)) { - $this.$jjmatchedKind = 265; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(2048)), Long_ZERO)) { - $this.$jjmatchedKind = 267; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($old4, Long_fromInt(32)), Long_ZERO)) { - $this.$jjmatchedKind = 325; - $this.$jjmatchedPos = 8; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_fromInt(2048), var$12, Long_ZERO, var$13, Long_create(0, 4096), $active3, Long_fromInt(13312), $old4, Long_ZERO); - case 71: - if (Long_eq(Long_and(var$11, Long_fromInt(524288)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 83; - $this.$jjmatchedPos = 8; - break b; - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_create(0, 16384), $old4, Long_fromInt(98304)); - case 76: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_create(2147483648, 0), var$13, Long_ZERO, $active3, Long_fromInt(64), $old4, Long_ZERO); - case 77: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 78: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_create(0, 458752), var$12, Long_fromInt(64), var$13, Long_fromInt(8388608), $active3, Long_ZERO, $old4, Long_ZERO); - case 80: - break d; - case 82: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_fromInt(256), var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 83: - if (Long_ne(Long_and(var$11, Long_create(0, 268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 124; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$12, Long_create(0, 32768)), Long_ZERO)) { - $this.$jjmatchedKind = 175; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$13, Long_create(0, 268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 252; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(256)), Long_ZERO)) { - $this.$jjmatchedKind = 264; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 272; - $this.$jjmatchedPos = 8; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_fromInt(402653184), $old4, Long_fromInt(33554432)); - case 84: - if (Long_ne(Long_and(var$12, Long_fromInt(2048)), Long_ZERO)) { - $this.$jjmatchedKind = 139; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(1)), Long_ZERO)) { - $this.$jjmatchedKind = 256; - $this.$jjmatchedPos = 8; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_fromInt(1), var$13, Long_ZERO, $active3, Long_fromInt(4194304), $old4, Long_ZERO); - case 89: - break g; - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_create(0, 134217728), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 100: - break c; - case 101: - if (Long_ne(Long_and(var$11, Long_create(0, 32768)), Long_ZERO)) { - $this.$jjmatchedKind = 111; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$12, Long_create(0, 4)), Long_ZERO)) { - $this.$jjmatchedKind = 162; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$12, Long_create(0, 268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 188; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$13, Long_create(0, 2048)), Long_ZERO)) { - $this.$jjmatchedKind = 235; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(512)), Long_ZERO)) { - $this.$jjmatchedKind = 265; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(2048)), Long_ZERO)) { - $this.$jjmatchedKind = 267; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($old4, Long_fromInt(32)), Long_ZERO)) { - $this.$jjmatchedKind = 325; - $this.$jjmatchedPos = 8; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_fromInt(2048), var$12, Long_ZERO, var$13, Long_create(0, 4096), $active3, Long_fromInt(13312), $old4, Long_ZERO); - case 103: - break f; - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_create(0, 16384), $old4, Long_fromInt(98304)); - case 108: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_create(2147483648, 0), var$13, Long_ZERO, $active3, Long_fromInt(64), $old4, Long_ZERO); - case 109: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 110: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_create(0, 458752), var$12, Long_fromInt(64), var$13, Long_fromInt(8388608), $active3, Long_ZERO, $old4, Long_ZERO); - case 112: - if (Long_ne(Long_and($old4, Long_fromInt(1024)), Long_ZERO)) { - $this.$jjmatchedKind = 330; - $this.$jjmatchedPos = 8; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_create(0, 8388608), $old4, Long_ZERO); - case 114: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_fromInt(256), var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - case 115: - if (Long_ne(Long_and(var$11, Long_create(0, 268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 124; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$12, Long_create(0, 32768)), Long_ZERO)) { - $this.$jjmatchedKind = 175; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and(var$13, Long_create(0, 268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 252; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(256)), Long_ZERO)) { - $this.$jjmatchedKind = 264; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 272; - $this.$jjmatchedPos = 8; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_fromInt(402653184), $old4, Long_fromInt(33554432)); - case 116: - if (Long_ne(Long_and(var$12, Long_fromInt(2048)), Long_ZERO)) { - $this.$jjmatchedKind = 139; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(1)), Long_ZERO)) { - $this.$jjmatchedKind = 256; - $this.$jjmatchedPos = 8; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_fromInt(1), var$13, Long_ZERO, $active3, Long_fromInt(4194304), $old4, Long_ZERO); - case 121: - break e; - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_create(0, 134217728), var$13, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO); - } - if (Long_eq(Long_and($active3, Long_create(0, 8192)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 301; - $this.$jjmatchedPos = 8; - break b; - } - if (Long_eq(Long_and(var$11, Long_fromInt(524288)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 83; - $this.$jjmatchedPos = 8; - break b; - } - if (Long_eq(Long_and($active3, Long_create(0, 8192)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 301; - $this.$jjmatchedPos = 8; - break b; - } - if (Long_ne(Long_and($old4, Long_fromInt(1024)), Long_ZERO)) { - $this.$jjmatchedKind = 330; - $this.$jjmatchedPos = 8; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0($this, var$11, Long_ZERO, var$12, Long_ZERO, var$13, Long_ZERO, $active3, Long_create(0, 8388608), $old4, Long_ZERO); - } - if (Long_ne(Long_and(var$12, Long_fromInt(134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 155; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($active3, Long_fromInt(16)), Long_ZERO)) { - $this.$jjmatchedKind = 260; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($old4, Long_fromInt(4)), Long_ZERO)) { - $this.$jjmatchedKind = 322; - $this.$jjmatchedPos = 8; - } else if (Long_ne(Long_and($old4, Long_fromInt(8)), Long_ZERO)) { - $this.$jjmatchedKind = 323; - $this.$jjmatchedPos = 8; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 8); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_0 = ($this, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$11, var$12, var$13, $$je; - var$11 = Long_and($active1, $old1); - var$12 = Long_and($active2, $old2); - $old1 = Long_or(var$11, var$12); - $active3 = Long_and($active3, $old3); - $old1 = Long_or($old1, $active3); - $old4 = Long_and($active4, $old4); - $old1 = Long_or($old1, $old4); - $active4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $active4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 8); - a: { - try { - var$13 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$13; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 8); - } - b: { - c: { - d: { - e: { - switch (var$13) { - case 65: - break; - case 66: - case 67: - case 70: - case 74: - case 75: - case 76: - case 77: - case 78: - case 80: - case 81: - case 82: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 98: - case 99: - case 102: - case 106: - case 107: - case 108: - case 109: - case 110: - case 112: - case 113: - case 114: - break b; - case 68: - if (Long_eq(Long_and($active3, Long_create(0, 4096)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 236; - $this.$jjmatchedPos = 9; - break b; - case 69: - if (Long_ne(Long_and(var$12, Long_fromInt(1)), Long_ZERO)) { - $this.$jjmatchedKind = 128; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and(var$12, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 159; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($old4, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 262; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($old4, Long_fromInt(4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 278; - $this.$jjmatchedPos = 9; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 16384), $active4, Long_ZERO); - case 71: - break e; - case 72: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(402653184), $active4, Long_ZERO); - case 73: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 79: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_fromInt(98304)); - case 83: - if (Long_ne(Long_and($old4, Long_fromInt(1024)), Long_ZERO)) { - $this.$jjmatchedKind = 266; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($old4, Long_fromInt(4096)), Long_ZERO)) { - $this.$jjmatchedKind = 268; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($old4, Long_fromInt(8192)), Long_ZERO)) { - $this.$jjmatchedKind = 269; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($active4, Long_fromInt(33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 345; - $this.$jjmatchedPos = 9; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_fromInt(2048), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 84: - if (Long_ne(Long_and(var$11, Long_create(0, 65536)), Long_ZERO)) { - $this.$jjmatchedKind = 112; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and(var$11, Long_create(0, 131072)), Long_ZERO)) { - $this.$jjmatchedKind = 113; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($active3, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 215; - $this.$jjmatchedPos = 9; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_create(0, 262144), var$12, Long_create(0, 134217728), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_fromInt(256), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 8388608), $active4, Long_ZERO); - case 100: - break d; - case 101: - if (Long_ne(Long_and(var$12, Long_fromInt(1)), Long_ZERO)) { - $this.$jjmatchedKind = 128; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and(var$12, Long_create(2147483648, 0)), Long_ZERO)) { - $this.$jjmatchedKind = 159; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($old4, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 262; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($old4, Long_fromInt(4194304)), Long_ZERO)) { - $this.$jjmatchedKind = 278; - $this.$jjmatchedPos = 9; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 16384), $active4, Long_ZERO); - case 103: - break c; - case 104: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_fromInt(402653184), $active4, Long_ZERO); - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_fromInt(98304)); - case 115: - if (Long_ne(Long_and($old4, Long_fromInt(1024)), Long_ZERO)) { - $this.$jjmatchedKind = 266; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($old4, Long_fromInt(4096)), Long_ZERO)) { - $this.$jjmatchedKind = 268; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($old4, Long_fromInt(8192)), Long_ZERO)) { - $this.$jjmatchedKind = 269; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($active4, Long_fromInt(33554432)), Long_ZERO)) { - $this.$jjmatchedKind = 345; - $this.$jjmatchedPos = 9; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_fromInt(2048), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 116: - if (Long_ne(Long_and(var$11, Long_create(0, 65536)), Long_ZERO)) { - $this.$jjmatchedKind = 112; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and(var$11, Long_create(0, 131072)), Long_ZERO)) { - $this.$jjmatchedKind = 113; - $this.$jjmatchedPos = 9; - } else if (Long_ne(Long_and($active3, Long_fromInt(8388608)), Long_ZERO)) { - $this.$jjmatchedKind = 215; - $this.$jjmatchedPos = 9; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_create(0, 262144), var$12, Long_create(0, 134217728), $active3, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0($this, var$11, Long_fromInt(256), var$12, Long_ZERO, $active3, Long_ZERO, $old4, Long_create(0, 8388608), $active4, Long_ZERO); - } - if (Long_eq(Long_and(var$12, Long_fromInt(64)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 134; - $this.$jjmatchedPos = 9; - break b; - } - if (Long_eq(Long_and($active3, Long_create(0, 4096)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 236; - $this.$jjmatchedPos = 9; - break b; - } - if (Long_ne(Long_and(var$12, Long_fromInt(64)), Long_ZERO)) { - $this.$jjmatchedKind = 134; - $this.$jjmatchedPos = 9; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 9); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa10_0 = ($this, $old1, $active1, $old2, $active2, $old3, $active3, $old4, $active4, $old5, $active5) => { - let var$11, var$12, var$13, $$je; - var$11 = Long_and($active1, $old1); - var$12 = Long_and($active2, $old2); - $old1 = Long_or(Long_or(var$11, var$12), Long_and($active3, $old3)); - $old3 = Long_and($active4, $old4); - $old1 = Long_or($old1, $old3); - $active3 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $active3), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 9); - a: { - try { - var$13 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$13; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 9); - } - b: { - c: { - d: { - e: { - switch (var$13) { - case 69: - if (Long_eq(Long_and(var$12, Long_create(0, 134217728)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 187; - $this.$jjmatchedPos = 10; - break b; - case 73: - break; - case 78: - break d; - case 83: - if (Long_ne(Long_and(var$11, Long_create(0, 262144)), Long_ZERO)) { - $this.$jjmatchedKind = 114; - $this.$jjmatchedPos = 10; - break b; - } - if (Long_eq(Long_and($old3, Long_create(0, 16384)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 302; - $this.$jjmatchedPos = 10; - break b; - case 84: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa11_0($this, var$11, Long_fromInt(2304), var$12, Long_ZERO, $old3, Long_create(0, 8388608), $active3, Long_ZERO); - case 101: - break e; - case 105: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa11_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $old3, Long_fromInt(402653184), $active3, Long_ZERO); - case 110: - if (Long_ne(Long_and($active3, Long_fromInt(32768)), Long_ZERO)) { - $this.$jjmatchedKind = 335; - $this.$jjmatchedPos = 10; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa11_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), $old3, Long_ZERO, $active3, Long_fromInt(65536)); - case 115: - break c; - case 116: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa11_0($this, var$11, Long_fromInt(2304), var$12, Long_ZERO, $old3, Long_create(0, 8388608), $active3, Long_ZERO); - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa11_0($this, var$11, Long_ZERO, var$12, Long_ZERO, $old3, Long_fromInt(402653184), $active3, Long_ZERO); - } - if (Long_eq(Long_and(var$12, Long_create(0, 134217728)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 187; - $this.$jjmatchedPos = 10; - break b; - } - if (Long_ne(Long_and($active3, Long_fromInt(32768)), Long_ZERO)) { - $this.$jjmatchedKind = 335; - $this.$jjmatchedPos = 10; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa11_0($this, var$11, Long_ZERO, var$12, Long_create(0, 128), $old3, Long_ZERO, $active3, Long_fromInt(65536)); - } - if (Long_ne(Long_and(var$11, Long_create(0, 262144)), Long_ZERO)) { - $this.$jjmatchedKind = 114; - $this.$jjmatchedPos = 10; - } else if (Long_ne(Long_and($old3, Long_create(0, 16384)), Long_ZERO)) { - $this.$jjmatchedKind = 302; - $this.$jjmatchedPos = 10; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 10); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa11_0 = ($this, $old1, $active1, $old2, $active2, $old4, $active4, $old5, $active5) => { - let var$9, var$10, var$11, $$je; - var$9 = Long_and($active1, $old1); - var$10 = Long_and($active2, $old2); - $old1 = Long_or(var$9, var$10); - $old4 = Long_and($active4, $old4); - $old1 = Long_or($old1, $old4); - $active4 = Long_and($active5, $old5); - if (Long_eq(Long_or($old1, $active4), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 10); - a: { - try { - var$11 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$11; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 10); - } - b: { - c: { - d: { - e: { - switch (var$11) { - case 65: - break; - case 72: - if (Long_eq(Long_and($old4, Long_create(0, 8388608)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 311; - $this.$jjmatchedPos = 11; - break b; - case 79: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa12_0($this, var$9, Long_fromInt(256), var$10, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 80: - if (Long_ne(Long_and($old4, Long_fromInt(134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 283; - $this.$jjmatchedPos = 11; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa12_0($this, var$9, Long_fromInt(2048), var$10, Long_ZERO, $old4, Long_fromInt(268435456), $active4, Long_ZERO); - case 83: - break e; - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa12_0($this, var$9, Long_ZERO, var$10, Long_create(0, 128), $old4, Long_ZERO, $active4, Long_ZERO); - case 104: - break d; - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa12_0($this, var$9, Long_fromInt(256), var$10, Long_ZERO, $old4, Long_ZERO, $active4, Long_ZERO); - case 112: - if (Long_ne(Long_and($old4, Long_fromInt(134217728)), Long_ZERO)) { - $this.$jjmatchedKind = 283; - $this.$jjmatchedPos = 11; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa12_0($this, var$9, Long_fromInt(2048), var$10, Long_ZERO, $old4, Long_fromInt(268435456), $active4, Long_ZERO); - case 115: - break c; - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa12_0($this, var$9, Long_ZERO, var$10, Long_create(0, 128), $old4, Long_ZERO, $active4, Long_ZERO); - } - if (Long_eq(Long_and($active4, Long_fromInt(65536)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 336; - $this.$jjmatchedPos = 11; - break b; - } - if (Long_eq(Long_and($old4, Long_create(0, 8388608)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 311; - $this.$jjmatchedPos = 11; - break b; - } - if (Long_ne(Long_and($active4, Long_fromInt(65536)), Long_ZERO)) { - $this.$jjmatchedKind = 336; - $this.$jjmatchedPos = 11; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 11); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa12_0 = ($this, $old1, $active1, $old2, $active2, $old4, $active4, $old5, $active5) => { - let var$9, var$10, $$je; - var$9 = Long_and($active1, $old1); - $active2 = Long_and($active2, $old2); - $old1 = Long_or(var$9, $active2); - $old4 = Long_and($active4, $old4); - if (Long_eq(Long_or(Long_or($old1, $old4), Long_and($active5, $old5)), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 11); - a: { - try { - var$10 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$10; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 11); - } - b: { - c: { - d: { - e: { - switch (var$10) { - case 65: - break; - case 82: - if (Long_eq(Long_and(var$9, Long_fromInt(256)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 72; - $this.$jjmatchedPos = 12; - break b; - case 83: - break e; - case 84: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa13_0($this, var$9, Long_ZERO, $active2, Long_create(0, 128), $old4, Long_ZERO); - case 97: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa13_0($this, var$9, Long_fromInt(2048), $active2, Long_ZERO, $old4, Long_ZERO); - case 114: - break d; - case 115: - break c; - case 116: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa13_0($this, var$9, Long_ZERO, $active2, Long_create(0, 128), $old4, Long_ZERO); - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa13_0($this, var$9, Long_fromInt(2048), $active2, Long_ZERO, $old4, Long_ZERO); - } - if (Long_eq(Long_and($old4, Long_fromInt(268435456)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 284; - $this.$jjmatchedPos = 12; - break b; - } - if (Long_eq(Long_and(var$9, Long_fromInt(256)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 72; - $this.$jjmatchedPos = 12; - break b; - } - if (Long_ne(Long_and($old4, Long_fromInt(268435456)), Long_ZERO)) { - $this.$jjmatchedKind = 284; - $this.$jjmatchedPos = 12; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 12); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa13_0 = ($this, $old1, $active1, $old2, $active2, $old4, $active4) => { - let var$7, var$8, $$je; - var$7 = Long_and($active1, $old1); - $old2 = Long_and($active2, $old2); - if (Long_eq(Long_or(Long_or(var$7, $old2), Long_and($active4, $old4)), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 12); - a: { - try { - var$8 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$8; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 12); - } - switch (var$8) { - case 79: - break; - case 84: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa14_0($this, var$7, Long_fromInt(2048), $old2, Long_ZERO); - case 111: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa14_0($this, var$7, Long_ZERO, $old2, Long_create(0, 128)); - case 116: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa14_0($this, var$7, Long_fromInt(2048), $old2, Long_ZERO); - default: - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 13); - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa14_0($this, var$7, Long_ZERO, $old2, Long_create(0, 128)); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa14_0 = ($this, $old1, $active1, $old2, $active2) => { - let var$5, var$6, $$je; - var$5 = Long_and($active1, $old1); - $old2 = Long_and($active2, $old2); - if (Long_eq(Long_or(var$5, $old2), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 13); - a: { - try { - var$6 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$6; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 13); - } - b: { - c: { - switch (var$6) { - case 72: - break; - case 82: - if (Long_eq(Long_and($old2, Long_create(0, 128)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 167; - $this.$jjmatchedPos = 14; - break b; - case 104: - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa15_0($this, var$5, Long_fromInt(2048), $old2, Long_ZERO); - case 114: - break c; - default: - break b; - } - return oncipj_CypherTokenManager_jjMoveStringLiteralDfa15_0($this, var$5, Long_fromInt(2048), $old2, Long_ZERO); - } - if (Long_ne(Long_and($old2, Long_create(0, 128)), Long_ZERO)) { - $this.$jjmatchedKind = 167; - $this.$jjmatchedPos = 14; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 14); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa15_0 = ($this, $old1, $active1, $old2, $active2) => { - let var$5, $$je; - $old1 = Long_and($active1, $old1); - if (Long_eq(Long_or($old1, Long_and($active2, $old2)), Long_ZERO)) - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 14); - a: { - try { - var$5 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$5; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 14); - } - b: { - c: { - switch (var$5) { - case 83: - break; - case 115: - break c; - default: - break b; - } - if (Long_eq(Long_and($old1, Long_fromInt(2048)), Long_ZERO)) - break b; - $this.$jjmatchedKind = 75; - $this.$jjmatchedPos = 15; - break b; - } - if (Long_ne(Long_and($old1, Long_fromInt(2048)), Long_ZERO)) { - $this.$jjmatchedKind = 75; - $this.$jjmatchedPos = 15; - } - } - return oncipj_CypherTokenManager_jjMoveNfa_0($this, 0, 15); -}, -oncipj_CypherTokenManager_jjMoveNfa_0 = ($this, $startState, $curPos) => { - let $strKind, $strPos, var$5, var$6, $startsAt, $i, $kind, $toRet, $l, var$12, var$13, var$14, var$15, $i2, $i1, $hiByte, var$19, $l1, $l2, $$je; - $strKind = $this.$jjmatchedKind; - $strPos = $this.$jjmatchedPos; - var$5 = $this.$input_stream; - $curPos = $curPos + 1 | 0; - oncipj_CypherCharStream_backup(var$5, $curPos); - a: { - try { - $this.$curChar = oncipj_CypherCharStream_readChar($this.$input_stream); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - $rt_throw(jl_Error__init_($rt_s(4443))); - } - var$6 = 0; - $startsAt = 0; - $this.$jjnewStateCnt = 55; - $i = 1; - $this.$jjstateSet.data[0] = $startState; - $kind = 2147483647; - b: { - while (true) { - $startState = $this.$jjround + 1 | 0; - $this.$jjround = $startState; - if ($startState == 2147483647) - oncipj_CypherTokenManager_ReInitRounds($this); - $toRet = $this.$curChar; - if ($toRet < 64) { - $l = Long_shl(Long_fromInt(1), $toRet); - var$12 = Long_compare(Long_and(Long_create(268419583, 67043344), $l), Long_ZERO); - var$13 = Long_compare(Long_and(Long_create(4294967295, 4294934527), $l), Long_ZERO); - var$14 = Long_compare(Long_and(Long_fromInt(9216), $l), Long_ZERO); - var$15 = Long_compare(Long_and(Long_fromInt(-9217), $l), Long_ZERO); - $i2 = Long_compare(Long_and(Long_create(0, 67043328), $l), Long_ZERO); - $i1 = Long_compare(Long_and(Long_create(0, 10240), $l), Long_ZERO); - $hiByte = Long_compare(Long_and(Long_create(0, 66977792), $l), Long_ZERO); - while (true) { - c: { - var$19 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$19[$i]) { - case 0: - if ($i2) - oncipj_CypherTokenManager_jjCheckNAddStates($this, 0, 5); - else { - $startState = $this.$curChar; - if ($startState == 47) - oncipj_CypherTokenManager_jjAddStates($this, 6, 7); - else if ($startState == 45) { - if ($kind > 370) - $kind = 370; - } else if ($startState == 46) - oncipj_CypherTokenManager_jjCheckNAdd($this, 1); - } - if ($hiByte) { - if ($kind > 36) - $kind = 36; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 8, 10); - break c; - } - if ($this.$curChar != 48) - break c; - if ($kind > 36) - $kind = 36; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 11, 13); - break c; - case 1: - if (!$i2) - break c; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 14, 17); - break c; - case 4: - if (!$i1) - break c; - oncipj_CypherTokenManager_jjCheckNAddTwoStates($this, 5, 6); - break c; - case 6: - if (!$i2) - break c; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 18, 21); - break c; - case 7: - if (!var$12) - break c; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAddTwoStates($this, 7, 8); - break c; - case 9: - if (!var$12) - break c; - if ($kind > 35) - $kind = 35; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 9; - break c; - case 10: - if (!$hiByte) - break c; - if ($kind > 36) - $kind = 36; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 8, 10); - break c; - case 12: - if (!$i2) - break c; - if ($kind > 36) - $kind = 36; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 8, 10); - break c; - case 13: - if (!var$12) - break c; - if ($kind > 36) - $kind = 36; - oncipj_CypherTokenManager_jjCheckNAdd($this, 13); - break c; - case 15: - if (!var$12) - break c; - if ($kind > 367) - $kind = 367; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 15; - break c; - case 16: - if ($this.$curChar != 45) - break c; - if ($kind <= 370) - break c; - $kind = 370; - break c; - case 19: - if (!$i2) - break c; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 0, 5); - break c; - case 21: - if (!$i2) - break c; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 22, 24); - break c; - case 22: - if ($this.$curChar != 46) - break c; - oncipj_CypherTokenManager_jjCheckNAdd($this, 23); - break c; - case 23: - if (!$i2) - break c; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 25, 28); - break c; - case 26: - if (!$i1) - break c; - oncipj_CypherTokenManager_jjCheckNAddTwoStates($this, 27, 28); - break c; - case 28: - if (!$i2) - break c; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 29, 32); - break c; - case 29: - if (!var$12) - break c; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAddTwoStates($this, 29, 30); - break c; - case 31: - if (!var$12) - break c; - if ($kind > 35) - $kind = 35; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 31; - break c; - case 33: - if (!$i2) - break c; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 33, 35); - break c; - case 35: - if (!$i1) - break c; - oncipj_CypherTokenManager_jjCheckNAddTwoStates($this, 36, 37); - break c; - case 37: - if (!$i2) - break c; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 36, 39); - break c; - case 38: - if (!var$12) - break c; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAddTwoStates($this, 38, 39); - break c; - case 40: - if (!var$12) - break c; - if ($kind > 35) - $kind = 35; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 40; - break c; - case 41: - if ($this.$curChar != 47) - break c; - oncipj_CypherTokenManager_jjAddStates($this, 6, 7); - break c; - case 42: - if ($this.$curChar != 47) - break c; - if ($kind > 29) - $kind = 29; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 40, 42); - break c; - case 43: - if (!var$15) - break c; - if ($kind > 29) - $kind = 29; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 40, 42); - break c; - case 44: - if (!var$14) - break c; - if ($kind <= 29) - break c; - $kind = 29; - break c; - case 45: - if ($this.$curChar != 10) - break c; - if ($kind <= 29) - break c; - $kind = 29; - break c; - case 46: - if ($this.$curChar != 13) - break c; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 45; - break c; - case 47: - if ($this.$curChar != 42) - break c; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 48; - break c; - case 48: - if (!var$13) - break c; - if ($kind <= 30) - break c; - $kind = 30; - break c; - case 49: - if ($this.$curChar != 42) - break c; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 47; - break c; - case 50: - if ($this.$curChar != 48) - break c; - if ($kind > 36) - $kind = 36; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 11, 13); - break c; - case 52: - if (!var$12) - break c; - if ($kind > 39) - $kind = 39; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 52; - break c; - case 54: - if (!var$12) - break c; - if ($kind > 40) - $kind = 40; - oncipj_CypherTokenManager_jjCheckNAdd($this, 54); - break c; - case 2: - case 3: - case 5: - case 8: - case 11: - case 14: - case 17: - case 18: - case 20: - case 24: - case 25: - case 27: - case 30: - case 32: - case 34: - case 36: - case 39: - case 51: - case 53: - break; - default: - } - } - if ($i == $startsAt) - break; - } - } else if ($toRet < 128) { - $l = Long_shl(Long_fromInt(1), $toRet & 63); - $i2 = Long_compare(Long_and(Long_create(2281701374, 2281701374), $l), Long_ZERO); - $i1 = Long_compare(Long_and(Long_create(16777216, 16777216), $l), Long_ZERO); - $hiByte = Long_compare(Long_and(Long_create(2281701374, 134217726), $l), Long_ZERO); - var$14 = Long_compare(Long_and(Long_create(32, 32), $l), Long_ZERO); - while (true) { - d: { - var$19 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$19[$i]) { - case 0: - if (!$hiByte) - break d; - if ($kind > 367) - $kind = 367; - oncipj_CypherTokenManager_jjCheckNAdd($this, 15); - break d; - case 2: - if ($this.$curChar != 95) - break d; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 1; - break d; - case 3: - if (!var$14) - break d; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 43, 45); - break d; - case 5: - if ($this.$curChar != 95) - break d; - oncipj_CypherTokenManager_jjCheckNAdd($this, 6); - break d; - case 7: - if (!$i2) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjAddStates($this, 46, 47); - break d; - case 8: - if (!$hiByte) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 9); - break d; - case 9: - if (!$i2) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 9); - break d; - case 11: - if ($this.$curChar != 95) - break d; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 12; - break d; - case 13: - if (!$i2) - break d; - if ($kind > 36) - $kind = 36; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 13; - break d; - case 15: - if (!$i2) - break d; - if ($kind > 367) - $kind = 367; - oncipj_CypherTokenManager_jjCheckNAdd($this, 15); - break d; - case 20: - if ($this.$curChar != 95) - break d; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 21; - break d; - case 24: - if ($this.$curChar != 95) - break d; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 23; - break d; - case 25: - if (!var$14) - break d; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 48, 50); - break d; - case 27: - if ($this.$curChar != 95) - break d; - oncipj_CypherTokenManager_jjCheckNAdd($this, 28); - break d; - case 29: - if (!$i2) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjAddStates($this, 51, 52); - break d; - case 30: - if (!$hiByte) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 31); - break d; - case 31: - if (!$i2) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 31); - break d; - case 32: - if ($this.$curChar != 95) - break d; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 33; - break d; - case 34: - if (!var$14) - break d; - oncipj_CypherTokenManager_jjCheckNAddStates($this, 53, 55); - break d; - case 36: - if ($this.$curChar != 95) - break d; - oncipj_CypherTokenManager_jjCheckNAdd($this, 37); - break d; - case 38: - if (!$i2) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjAddStates($this, 56, 57); - break d; - case 39: - if (!$hiByte) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 40); - break d; - case 40: - if (!$i2) - break d; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 40); - break d; - case 43: - if ($kind > 29) - $kind = 29; - oncipj_CypherTokenManager_jjAddStates($this, 40, 42); - break d; - case 48: - if ($kind <= 30) - break d; - $kind = 30; - break d; - case 51: - if (!$i1) - break d; - if ($kind > 39) - $kind = 39; - oncipj_CypherTokenManager_jjCheckNAdd($this, 52); - break d; - case 52: - if (!$i2) - break d; - if ($kind > 39) - $kind = 39; - oncipj_CypherTokenManager_jjCheckNAdd($this, 52); - break d; - case 53: - if ($this.$curChar != 111) - break d; - if ($kind > 40) - $kind = 40; - oncipj_CypherTokenManager_jjCheckNAdd($this, 54); - break d; - case 54: - if (!$i2) - break d; - if ($kind > 40) - $kind = 40; - oncipj_CypherTokenManager_jjCheckNAdd($this, 54); - break d; - case 1: - case 4: - case 6: - case 10: - case 12: - case 14: - case 16: - case 17: - case 18: - case 19: - case 21: - case 22: - case 23: - case 26: - case 28: - case 33: - case 35: - case 37: - case 41: - case 42: - case 44: - case 45: - case 46: - case 47: - case 49: - case 50: - break; - default: - } - } - if ($i == $startsAt) - break; - } - } else { - $hiByte = $toRet >> 8; - $i1 = $hiByte >> 6; - $l1 = Long_shl(Long_fromInt(1), $hiByte & 63); - $i2 = ($toRet & 255) >> 6; - $l2 = Long_shl(Long_fromInt(1), $toRet & 63); - $toRet = Long_compare($l1, Long_ZERO); - var$14 = Long_compare($l2, Long_ZERO); - while (true) { - e: { - f: { - g: { - var$19 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$19[$i]) { - case 0: - break f; - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 10: - case 11: - case 12: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 41: - case 42: - case 44: - case 45: - case 46: - case 47: - case 49: - case 50: - case 51: - case 53: - break g; - case 7: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjAddStates($this, 46, 47); - break e; - case 8: - if (!oncipj_CypherTokenManager_jjCanMove_1($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 9); - break e; - case 9: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 9); - break e; - case 13: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 36) - $kind = 36; - var$19 = $this.$jjstateSet.data; - var$13 = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = var$13 + 1 | 0; - var$19[var$13] = 13; - break e; - case 14: - if (!oncipj_CypherTokenManager_jjCanMove_1($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 367) - $kind = 367; - oncipj_CypherTokenManager_jjCheckNAdd($this, 15); - break e; - case 15: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 367) - $kind = 367; - oncipj_CypherTokenManager_jjCheckNAdd($this, 15); - break e; - case 16: - break; - case 17: - if (!oncipj_CypherTokenManager_jjCanMove_3($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind <= 371) - break e; - $kind = 371; - break e; - case 18: - if (!oncipj_CypherTokenManager_jjCanMove_4($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind <= 372) - break e; - $kind = 372; - break e; - case 29: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjAddStates($this, 51, 52); - break e; - case 30: - if (!oncipj_CypherTokenManager_jjCanMove_1($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 31); - break e; - case 31: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 31); - break e; - case 38: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjAddStates($this, 56, 57); - break e; - case 39: - if (!oncipj_CypherTokenManager_jjCanMove_1($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 40); - break e; - case 40: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 35) - $kind = 35; - oncipj_CypherTokenManager_jjCheckNAdd($this, 40); - break e; - case 43: - if (!oncipj_CypherTokenManager_jjCanMove_5($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 29) - $kind = 29; - oncipj_CypherTokenManager_jjAddStates($this, 40, 42); - break e; - case 48: - if (!oncipj_CypherTokenManager_jjCanMove_5($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind <= 30) - break e; - $kind = 30; - break e; - case 52: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 39) - $kind = 39; - var$19 = $this.$jjstateSet.data; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 52; - break e; - case 54: - if (!oncipj_CypherTokenManager_jjCanMove_0($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind > 40) - $kind = 40; - var$19 = $this.$jjstateSet.data; - $startState = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startState + 1 | 0; - var$19[$startState] = 54; - break e; - default: - break g; - } - if (!oncipj_CypherTokenManager_jjCanMove_2($hiByte, $i1, $i2, $l1, $l2)) - break e; - if ($kind <= 370) - break e; - $kind = 370; - break e; - } - if (!$i1) - break e; - if (!$toRet) - break e; - if (!$i2) - break e; - break e; - } - if (oncipj_CypherTokenManager_jjCanMove_1($hiByte, $i1, $i2, $l1, $l2)) { - if ($kind > 367) - $kind = 367; - oncipj_CypherTokenManager_jjCheckNAdd($this, 15); - } - if (oncipj_CypherTokenManager_jjCanMove_2($hiByte, $i1, $i2, $l1, $l2) && $kind > 370) - $kind = 370; - if (oncipj_CypherTokenManager_jjCanMove_3($hiByte, $i1, $i2, $l1, $l2) && $kind > 371) - $kind = 371; - if (oncipj_CypherTokenManager_jjCanMove_4($hiByte, $i1, $i2, $l1, $l2) && $kind > 372) - $kind = 372; - } - if ($i == $startsAt) - break; - } - } - if ($kind != 2147483647) { - $this.$jjmatchedKind = $kind; - $this.$jjmatchedPos = var$6; - $kind = 2147483647; - } - var$6 = var$6 + 1 | 0; - $i = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startsAt; - $startsAt = 55 - $startsAt | 0; - if ($i == $startsAt) - break; - try { - $this.$curChar = oncipj_CypherCharStream_readChar($this.$input_stream); - continue; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - break b; - } else { - throw $$e; - } - } - } - } - if ($this.$jjmatchedPos > $strPos) - return var$6; - h: { - $toRet = jl_Math_max(var$6, $curPos); - if (var$6 < $toRet) { - $curPos = $toRet - jl_Math_min(var$6, $curPos) | 0; - while (true) { - $startState = $curPos + (-1) | 0; - if ($curPos <= 0) - break h; - try { - $this.$curChar = oncipj_CypherCharStream_readChar($this.$input_stream); - $curPos = $startState; - continue; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - break; - } else { - throw $$e; - } - } - } - $rt_throw(jl_Error__init_($rt_s(4444))); - } - } - $startState = $rt_compare($this.$jjmatchedPos, $strPos); - if ($startState < 0) { - $this.$jjmatchedKind = $strKind; - $this.$jjmatchedPos = $strPos; - } else if (!$startState && $this.$jjmatchedKind > $strKind) - $this.$jjmatchedKind = $strKind; - return $toRet; -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_1 = $this => { - let var$1, $$je; - switch ($this.$curChar) { - case 42: - a: { - b: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - var$1 = 1; - break a; - } - switch (var$1) { - case 47: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 32); - break a; - default: - } - var$1 = 2; - } - return var$1; - default: - } - return 1; -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_2 = $this => { - let var$1, $$je; - switch ($this.$curChar) { - case 42: - a: { - b: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - var$1 = 1; - break a; - } - switch (var$1) { - case 47: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 33); - break a; - default: - } - var$1 = 2; - } - return var$1; - default: - } - return 1; -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_3 = $this => { - return 1; -}, -oncipj_CypherTokenManager_jjStopStringLiteralDfa_4 = ($this, $pos, $active0) => { - switch ($pos) { - case 0: - if (Long_eq(Long_and($active0, Long_create(0, 523264)), Long_ZERO)) - return (-1); - $this.$jjmatchedKind = 51; - return (-1); - case 1: - if (Long_eq(Long_and($active0, Long_create(0, 523264)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 2: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 3: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 4: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 5: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 6: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 7: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 8: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 9: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 10: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 11: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 12: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 13: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 14: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 15: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 16: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 17: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 18: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 19: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 20: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 21: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 22: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 23: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 24: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 25: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 26: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 27: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 28: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 29: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 30: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 31: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 32: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 33: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 34: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 35: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 36: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 37: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 38: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 39: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 40: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 41: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 42: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 43: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - case 44: - if (Long_eq(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 51; - $this.$jjmatchedPos = 0; - } - return (-1); - default: - } - return (-1); -}, -oncipj_CypherTokenManager_jjStartNfa_4 = ($this, $pos, $active0) => { - return oncipj_CypherTokenManager_jjMoveNfa_4($this, oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, $pos, $active0), $pos + 1 | 0); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_4 = $this => { - let var$1, $$je; - switch ($this.$curChar) { - case 39: - break; - case 92: - a: { - b: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 0, Long_create(0, 523264)); - var$1 = 1; - break a; - } - switch (var$1) { - case 34: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 44); - break a; - case 39: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 43); - break a; - case 92: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 42); - break a; - case 98: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 45); - break a; - case 102: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 46); - break a; - case 110: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 47); - break a; - case 114: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 48); - break a; - case 116: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 49); - break a; - case 117: - c: { - d: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 1, Long_create(0, 262144)); - var$1 = 2; - break c; - } - switch (var$1) { - case 91: - e: { - f: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 2, Long_create(0, 262144)); - var$1 = 3; - break e; - } - switch (var$1) { - case 48: - g: { - h: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break h; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 3, Long_create(0, 262144)); - var$1 = 4; - break g; - } - switch (var$1) { - case 45: - i: { - j: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break j; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 4, Long_create(0, 262144)); - var$1 = 5; - break i; - } - switch (var$1) { - case 57: - k: { - l: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break l; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 5, Long_create(0, 262144)); - var$1 = 6; - break k; - } - switch (var$1) { - case 97: - m: { - n: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break n; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 6, Long_create(0, 262144)); - var$1 = 7; - break m; - } - switch (var$1) { - case 45: - o: { - p: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break p; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 7, Long_create(0, 262144)); - var$1 = 8; - break o; - } - switch (var$1) { - case 102: - break; - default: - var$1 = oncipj_CypherTokenManager_jjStartNfa_4($this, 7, Long_create(0, 262144)); - break o; - } - var$1 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_4($this, Long_create(0, 262144), Long_create(0, 262144)); - } - break m; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_4($this, 6, Long_create(0, 262144)); - } - break k; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_4($this, 5, Long_create(0, 262144)); - } - break i; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_4($this, 4, Long_create(0, 262144)); - } - break g; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_4($this, 3, Long_create(0, 262144)); - } - break e; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_4($this, 2, Long_create(0, 262144)); - } - break c; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_4($this, 1, Long_create(0, 262144)); - } - break a; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_4($this, 0, Long_create(0, 523264)); - } - return var$1; - default: - return oncipj_CypherTokenManager_jjMoveNfa_4($this, 0, 0); - } - return oncipj_CypherTokenManager_jjStopAtPos($this, 0, 52); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_4 = ($this, $old0, $active0) => { - let var$3, var$4, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_4($this, 7, $old0); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 8, $active0); - return 9; - } - switch (var$3) { - case 65: - b: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 8, $active0); - else { - c: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 9, var$4); - var$3 = 10; - break b; - } - switch (var$3) { - case 45: - d: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 9, var$4); - else { - e: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 10, $active0); - var$3 = 11; - break d; - } - switch (var$3) { - case 70: - f: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 10, $active0); - else { - g: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 11, var$4); - var$3 = 12; - break f; - } - switch (var$3) { - case 93: - h: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 11, var$4); - else { - i: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 12, $active0); - var$3 = 13; - break h; - } - switch (var$3) { - case 91: - j: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 12, $active0); - else { - k: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 13, var$4); - var$3 = 14; - break j; - } - switch (var$3) { - case 48: - l: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 13, var$4); - else { - m: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 14, $active0); - var$3 = 15; - break l; - } - switch (var$3) { - case 45: - n: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 14, $active0); - else { - o: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 15, var$4); - var$3 = 16; - break n; - } - switch (var$3) { - case 57: - p: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 15, var$4); - else { - q: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 16, $active0); - var$3 = 17; - break p; - } - switch (var$3) { - case 97: - break; - default: - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 16, $active0); - break p; - } - var$3 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa18_4($this, $active0, Long_create(0, 262144)); - } - } - break n; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 15, var$4); - } - } - break l; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 14, $active0); - } - } - break j; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 13, var$4); - } - } - break h; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 12, $active0); - } - } - break f; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 11, var$4); - } - } - break d; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 10, $active0); - } - } - break b; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 9, var$4); - } - } - return var$3; - default: - } - return oncipj_CypherTokenManager_jjStartNfa_4($this, 8, $active0); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa18_4 = ($this, $old0, $active0) => { - let var$3, var$4, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_4($this, 16, $old0); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 17, $active0); - return 18; - } - switch (var$3) { - case 45: - b: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 17, $active0); - else { - c: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 18, var$4); - var$3 = 19; - break b; - } - switch (var$3) { - case 102: - d: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 18, var$4); - else { - e: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 19, $active0); - var$3 = 20; - break d; - } - switch (var$3) { - case 65: - f: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 19, $active0); - else { - g: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 20, var$4); - var$3 = 21; - break f; - } - switch (var$3) { - case 45: - h: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 20, var$4); - else { - i: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 21, $active0); - var$3 = 22; - break h; - } - switch (var$3) { - case 70: - j: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 21, $active0); - else { - k: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 22, var$4); - var$3 = 23; - break j; - } - switch (var$3) { - case 93: - l: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 22, var$4); - else { - m: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 23, $active0); - var$3 = 24; - break l; - } - switch (var$3) { - case 91: - n: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 23, $active0); - else { - o: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 24, var$4); - var$3 = 25; - break n; - } - switch (var$3) { - case 48: - p: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 24, var$4); - else { - q: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 25, $active0); - var$3 = 26; - break p; - } - switch (var$3) { - case 45: - break; - default: - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 25, $active0); - break p; - } - var$3 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa27_4($this, $active0, Long_create(0, 262144)); - } - } - break n; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 24, var$4); - } - } - break l; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 23, $active0); - } - } - break j; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 22, var$4); - } - } - break h; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 21, $active0); - } - } - break f; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 20, var$4); - } - } - break d; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 19, $active0); - } - } - break b; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 18, var$4); - } - } - return var$3; - default: - } - return oncipj_CypherTokenManager_jjStartNfa_4($this, 17, $active0); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa27_4 = ($this, $old0, $active0) => { - let var$3, var$4, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_4($this, 25, $old0); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 26, $active0); - return 27; - } - switch (var$3) { - case 57: - b: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 26, $active0); - else { - c: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 27, var$4); - var$3 = 28; - break b; - } - switch (var$3) { - case 97: - d: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 27, var$4); - else { - e: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 28, $active0); - var$3 = 29; - break d; - } - switch (var$3) { - case 45: - f: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 28, $active0); - else { - g: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 29, var$4); - var$3 = 30; - break f; - } - switch (var$3) { - case 102: - h: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 29, var$4); - else { - i: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 30, $active0); - var$3 = 31; - break h; - } - switch (var$3) { - case 65: - j: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 30, $active0); - else { - k: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 31, var$4); - var$3 = 32; - break j; - } - switch (var$3) { - case 45: - l: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 31, var$4); - else { - m: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 32, $active0); - var$3 = 33; - break l; - } - switch (var$3) { - case 70: - n: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 32, $active0); - else { - o: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 33, var$4); - var$3 = 34; - break n; - } - switch (var$3) { - case 93: - p: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 33, var$4); - else { - q: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 34, $active0); - var$3 = 35; - break p; - } - switch (var$3) { - case 91: - break; - default: - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 34, $active0); - break p; - } - var$3 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa36_4($this, $active0, Long_create(0, 262144)); - } - } - break n; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 33, var$4); - } - } - break l; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 32, $active0); - } - } - break j; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 31, var$4); - } - } - break h; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 30, $active0); - } - } - break f; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 29, var$4); - } - } - break d; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 28, $active0); - } - } - break b; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 27, var$4); - } - } - return var$3; - default: - } - return oncipj_CypherTokenManager_jjStartNfa_4($this, 26, $active0); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa36_4 = ($this, $old0, $active0) => { - let var$3, var$4, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_4($this, 34, $old0); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 35, $active0); - return 36; - } - switch (var$3) { - case 48: - b: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 35, $active0); - else { - c: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 36, var$4); - var$3 = 37; - break b; - } - switch (var$3) { - case 45: - d: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 36, var$4); - else { - e: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 37, $active0); - var$3 = 38; - break d; - } - switch (var$3) { - case 57: - f: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 37, $active0); - else { - g: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 38, var$4); - var$3 = 39; - break f; - } - switch (var$3) { - case 97: - h: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 38, var$4); - else { - i: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 39, $active0); - var$3 = 40; - break h; - } - switch (var$3) { - case 45: - j: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 39, $active0); - else { - k: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 40, var$4); - var$3 = 41; - break j; - } - switch (var$3) { - case 102: - l: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 40, var$4); - else { - m: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 41, $active0); - var$3 = 42; - break l; - } - switch (var$3) { - case 65: - n: { - var$4 = Long_and(Long_create(0, 262144), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 41, $active0); - else { - o: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 42, var$4); - var$3 = 43; - break n; - } - switch (var$3) { - case 45: - p: { - $active0 = Long_and(Long_create(0, 262144), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 42, var$4); - else { - q: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 43, $active0); - var$3 = 44; - break p; - } - switch (var$3) { - case 70: - break; - default: - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 43, $active0); - break p; - } - var$3 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa45_4($this, $active0, Long_create(0, 262144)); - } - } - break n; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 42, var$4); - } - } - break l; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 41, $active0); - } - } - break j; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 40, var$4); - } - } - break h; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 39, $active0); - } - } - break f; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 38, var$4); - } - } - break d; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 37, $active0); - } - } - break b; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_4($this, 36, var$4); - } - } - return var$3; - default: - } - return oncipj_CypherTokenManager_jjStartNfa_4($this, 35, $active0); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa45_4 = ($this, $old0, $active0) => { - let var$3, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_4($this, 43, $old0); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_4($this, 44, $active0); - return 45; - } - b: { - switch (var$3) { - case 93: - break; - default: - break b; - } - if (Long_ne(Long_and($active0, Long_create(0, 262144)), Long_ZERO)) - return oncipj_CypherTokenManager_jjStopAtPos($this, 45, 50); - } - return oncipj_CypherTokenManager_jjStartNfa_4($this, 44, $active0); -}, -oncipj_CypherTokenManager_jjMoveNfa_4 = ($this, $startState, $curPos) => { - let $startsAt, $i, $kind, var$6, $i1, var$8, $hiByte, $l1, $i2, $l2, var$13, $$je; - $startsAt = 0; - $this.$jjnewStateCnt = 1; - $i = 1; - $this.$jjstateSet.data[0] = $startState; - $kind = 2147483647; - while (true) { - $startState = $this.$jjround + 1 | 0; - $this.$jjround = $startState; - if ($startState == 2147483647) - oncipj_CypherTokenManager_ReInitRounds($this); - var$6 = $this.$curChar; - if (var$6 < 64) { - $i1 = Long_compare(Long_and(Long_create(4294967295, 4294967167), Long_shl(Long_fromInt(1), var$6)), Long_ZERO); - while (true) { - a: { - var$8 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$8[$i]) { - case 0: - if (!$i1) - break a; - $kind = 51; - break a; - default: - } - } - if ($i == $startsAt) - break; - } - } else if (var$6 < 128) - while (true) { - b: { - var$8 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$8[$i]) { - case 0: - $kind = 51; - break b; - default: - } - } - if ($i == $startsAt) - break; - } - else { - $hiByte = var$6 >> 8; - $i1 = $hiByte >> 6; - $l1 = Long_shl(Long_fromInt(1), $hiByte & 63); - $i2 = (var$6 & 255) >> 6; - $l2 = Long_shl(Long_fromInt(1), var$6 & 63); - var$6 = Long_compare($l1, Long_ZERO); - var$13 = Long_compare($l2, Long_ZERO); - while (true) { - c: { - var$8 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$8[$i]) { - case 0: - break; - default: - if (!$i1) - break c; - if (!var$6) - break c; - if (!$i2) - break c; - break c; - } - if (oncipj_CypherTokenManager_jjCanMove_5($hiByte, $i1, $i2, $l1, $l2) && $kind > 51) - $kind = 51; - } - if ($i == $startsAt) - break; - } - } - if ($kind != 2147483647) { - $this.$jjmatchedKind = $kind; - $this.$jjmatchedPos = $curPos; - $kind = 2147483647; - } - $curPos = $curPos + 1 | 0; - $i = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startsAt; - $startsAt = 1 - $startsAt | 0; - if ($i == $startsAt) - break; - try { - $this.$curChar = oncipj_CypherCharStream_readChar($this.$input_stream); - continue; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - return $curPos; - } else { - throw $$e; - } - } - } - return $curPos; -}, -oncipj_CypherTokenManager_jjStopStringLiteralDfa_5 = ($this, $pos, $active0, $active1) => { - switch ($pos) { - case 0: - if (Long_eq(Long_and($active0, Long_create(0, 2143289344)), Long_ZERO)) - return (-1); - $this.$jjmatchedKind = 63; - return (-1); - case 1: - if (Long_eq(Long_and($active0, Long_create(0, 2143289344)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 2: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 3: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 4: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 5: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 6: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 7: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 8: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 9: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 10: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 11: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 12: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 13: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 14: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 15: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 16: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 17: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 18: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 19: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 20: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 21: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 22: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 23: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 24: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 25: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 26: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 27: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 28: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 29: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 30: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 31: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 32: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 33: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 34: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 35: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 36: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 37: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 38: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 39: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 40: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 41: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 42: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 43: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - case 44: - if (Long_eq(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return (-1); - if (!$this.$jjmatchedPos) { - $this.$jjmatchedKind = 63; - $this.$jjmatchedPos = 0; - } - return (-1); - default: - } - return (-1); -}, -oncipj_CypherTokenManager_jjStartNfa_5 = ($this, $pos, $active0, $active1) => { - return oncipj_CypherTokenManager_jjMoveNfa_5($this, oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, $pos, $active0, $active1), $pos + 1 | 0); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_5 = $this => { - let var$1, $$je; - switch ($this.$curChar) { - case 34: - break; - case 92: - a: { - b: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 0, Long_create(0, 2143289344), Long_ZERO); - var$1 = 1; - break a; - } - switch (var$1) { - case 34: - break; - case 39: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 55); - break a; - case 92: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 54); - break a; - case 98: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 57); - break a; - case 102: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 58); - break a; - case 110: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 59); - break a; - case 114: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 60); - break a; - case 116: - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 61); - break a; - case 117: - c: { - d: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 1, Long_create(0, 1073741824), Long_ZERO); - var$1 = 2; - break c; - } - switch (var$1) { - case 91: - e: { - f: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break f; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 2, Long_create(0, 1073741824), Long_ZERO); - var$1 = 3; - break e; - } - switch (var$1) { - case 48: - g: { - h: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break h; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 3, Long_create(0, 1073741824), Long_ZERO); - var$1 = 4; - break g; - } - switch (var$1) { - case 45: - i: { - j: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break j; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 4, Long_create(0, 1073741824), Long_ZERO); - var$1 = 5; - break i; - } - switch (var$1) { - case 57: - k: { - l: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break l; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 5, Long_create(0, 1073741824), Long_ZERO); - var$1 = 6; - break k; - } - switch (var$1) { - case 97: - m: { - n: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break n; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 6, Long_create(0, 1073741824), Long_ZERO); - var$1 = 7; - break m; - } - switch (var$1) { - case 45: - o: { - p: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break p; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 7, Long_create(0, 1073741824), Long_ZERO); - var$1 = 8; - break o; - } - switch (var$1) { - case 102: - break; - default: - var$1 = oncipj_CypherTokenManager_jjStartNfa_5($this, 7, Long_create(0, 1073741824), Long_ZERO); - break o; - } - var$1 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_5($this, Long_create(0, 1073741824), Long_create(0, 1073741824)); - } - break m; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_5($this, 6, Long_create(0, 1073741824), Long_ZERO); - } - break k; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_5($this, 5, Long_create(0, 1073741824), Long_ZERO); - } - break i; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_5($this, 4, Long_create(0, 1073741824), Long_ZERO); - } - break g; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_5($this, 3, Long_create(0, 1073741824), Long_ZERO); - } - break e; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_5($this, 2, Long_create(0, 1073741824), Long_ZERO); - } - break c; - default: - } - var$1 = oncipj_CypherTokenManager_jjStartNfa_5($this, 1, Long_create(0, 1073741824), Long_ZERO); - } - break a; - default: - var$1 = oncipj_CypherTokenManager_jjStartNfa_5($this, 0, Long_create(0, 2143289344), Long_ZERO); - break a; - } - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 56); - } - return var$1; - default: - return oncipj_CypherTokenManager_jjMoveNfa_5($this, 0, 0); - } - return oncipj_CypherTokenManager_jjStopAtPos($this, 0, 64); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa9_5 = ($this, $old0, $active0) => { - let var$3, var$4, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_5($this, 7, $old0, Long_ZERO); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 8, $active0, Long_ZERO); - return 9; - } - switch (var$3) { - case 65: - b: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 8, $active0, Long_ZERO); - else { - c: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 9, var$4, Long_ZERO); - var$3 = 10; - break b; - } - switch (var$3) { - case 45: - d: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 9, var$4, Long_ZERO); - else { - e: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 10, $active0, Long_ZERO); - var$3 = 11; - break d; - } - switch (var$3) { - case 70: - f: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 10, $active0, Long_ZERO); - else { - g: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 11, var$4, Long_ZERO); - var$3 = 12; - break f; - } - switch (var$3) { - case 93: - h: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 11, var$4, Long_ZERO); - else { - i: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 12, $active0, Long_ZERO); - var$3 = 13; - break h; - } - switch (var$3) { - case 91: - j: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 12, $active0, Long_ZERO); - else { - k: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 13, var$4, Long_ZERO); - var$3 = 14; - break j; - } - switch (var$3) { - case 48: - l: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 13, var$4, Long_ZERO); - else { - m: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 14, $active0, Long_ZERO); - var$3 = 15; - break l; - } - switch (var$3) { - case 45: - n: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 14, $active0, Long_ZERO); - else { - o: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 15, var$4, Long_ZERO); - var$3 = 16; - break n; - } - switch (var$3) { - case 57: - p: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 15, var$4, Long_ZERO); - else { - q: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 16, $active0, Long_ZERO); - var$3 = 17; - break p; - } - switch (var$3) { - case 97: - break; - default: - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 16, $active0, Long_ZERO); - break p; - } - var$3 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa18_5($this, $active0, Long_create(0, 1073741824)); - } - } - break n; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 15, var$4, Long_ZERO); - } - } - break l; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 14, $active0, Long_ZERO); - } - } - break j; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 13, var$4, Long_ZERO); - } - } - break h; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 12, $active0, Long_ZERO); - } - } - break f; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 11, var$4, Long_ZERO); - } - } - break d; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 10, $active0, Long_ZERO); - } - } - break b; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 9, var$4, Long_ZERO); - } - } - return var$3; - default: - } - return oncipj_CypherTokenManager_jjStartNfa_5($this, 8, $active0, Long_ZERO); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa18_5 = ($this, $old0, $active0) => { - let var$3, var$4, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_5($this, 16, $old0, Long_ZERO); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 17, $active0, Long_ZERO); - return 18; - } - switch (var$3) { - case 45: - b: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 17, $active0, Long_ZERO); - else { - c: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 18, var$4, Long_ZERO); - var$3 = 19; - break b; - } - switch (var$3) { - case 102: - d: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 18, var$4, Long_ZERO); - else { - e: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 19, $active0, Long_ZERO); - var$3 = 20; - break d; - } - switch (var$3) { - case 65: - f: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 19, $active0, Long_ZERO); - else { - g: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 20, var$4, Long_ZERO); - var$3 = 21; - break f; - } - switch (var$3) { - case 45: - h: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 20, var$4, Long_ZERO); - else { - i: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 21, $active0, Long_ZERO); - var$3 = 22; - break h; - } - switch (var$3) { - case 70: - j: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 21, $active0, Long_ZERO); - else { - k: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 22, var$4, Long_ZERO); - var$3 = 23; - break j; - } - switch (var$3) { - case 93: - l: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 22, var$4, Long_ZERO); - else { - m: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 23, $active0, Long_ZERO); - var$3 = 24; - break l; - } - switch (var$3) { - case 91: - n: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 23, $active0, Long_ZERO); - else { - o: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 24, var$4, Long_ZERO); - var$3 = 25; - break n; - } - switch (var$3) { - case 48: - p: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 24, var$4, Long_ZERO); - else { - q: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 25, $active0, Long_ZERO); - var$3 = 26; - break p; - } - switch (var$3) { - case 45: - break; - default: - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 25, $active0, Long_ZERO); - break p; - } - var$3 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa27_5($this, $active0, Long_create(0, 1073741824)); - } - } - break n; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 24, var$4, Long_ZERO); - } - } - break l; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 23, $active0, Long_ZERO); - } - } - break j; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 22, var$4, Long_ZERO); - } - } - break h; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 21, $active0, Long_ZERO); - } - } - break f; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 20, var$4, Long_ZERO); - } - } - break d; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 19, $active0, Long_ZERO); - } - } - break b; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 18, var$4, Long_ZERO); - } - } - return var$3; - default: - } - return oncipj_CypherTokenManager_jjStartNfa_5($this, 17, $active0, Long_ZERO); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa27_5 = ($this, $old0, $active0) => { - let var$3, var$4, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_5($this, 25, $old0, Long_ZERO); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 26, $active0, Long_ZERO); - return 27; - } - switch (var$3) { - case 57: - b: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 26, $active0, Long_ZERO); - else { - c: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 27, var$4, Long_ZERO); - var$3 = 28; - break b; - } - switch (var$3) { - case 97: - d: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 27, var$4, Long_ZERO); - else { - e: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 28, $active0, Long_ZERO); - var$3 = 29; - break d; - } - switch (var$3) { - case 45: - f: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 28, $active0, Long_ZERO); - else { - g: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 29, var$4, Long_ZERO); - var$3 = 30; - break f; - } - switch (var$3) { - case 102: - h: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 29, var$4, Long_ZERO); - else { - i: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 30, $active0, Long_ZERO); - var$3 = 31; - break h; - } - switch (var$3) { - case 65: - j: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 30, $active0, Long_ZERO); - else { - k: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 31, var$4, Long_ZERO); - var$3 = 32; - break j; - } - switch (var$3) { - case 45: - l: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 31, var$4, Long_ZERO); - else { - m: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 32, $active0, Long_ZERO); - var$3 = 33; - break l; - } - switch (var$3) { - case 70: - n: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 32, $active0, Long_ZERO); - else { - o: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 33, var$4, Long_ZERO); - var$3 = 34; - break n; - } - switch (var$3) { - case 93: - p: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 33, var$4, Long_ZERO); - else { - q: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 34, $active0, Long_ZERO); - var$3 = 35; - break p; - } - switch (var$3) { - case 91: - break; - default: - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 34, $active0, Long_ZERO); - break p; - } - var$3 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa36_5($this, $active0, Long_create(0, 1073741824)); - } - } - break n; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 33, var$4, Long_ZERO); - } - } - break l; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 32, $active0, Long_ZERO); - } - } - break j; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 31, var$4, Long_ZERO); - } - } - break h; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 30, $active0, Long_ZERO); - } - } - break f; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 29, var$4, Long_ZERO); - } - } - break d; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 28, $active0, Long_ZERO); - } - } - break b; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 27, var$4, Long_ZERO); - } - } - return var$3; - default: - } - return oncipj_CypherTokenManager_jjStartNfa_5($this, 26, $active0, Long_ZERO); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa36_5 = ($this, $old0, $active0) => { - let var$3, var$4, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_5($this, 34, $old0, Long_ZERO); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 35, $active0, Long_ZERO); - return 36; - } - switch (var$3) { - case 48: - b: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 35, $active0, Long_ZERO); - else { - c: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 36, var$4, Long_ZERO); - var$3 = 37; - break b; - } - switch (var$3) { - case 45: - d: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 36, var$4, Long_ZERO); - else { - e: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break e; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 37, $active0, Long_ZERO); - var$3 = 38; - break d; - } - switch (var$3) { - case 57: - f: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 37, $active0, Long_ZERO); - else { - g: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break g; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 38, var$4, Long_ZERO); - var$3 = 39; - break f; - } - switch (var$3) { - case 97: - h: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 38, var$4, Long_ZERO); - else { - i: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break i; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 39, $active0, Long_ZERO); - var$3 = 40; - break h; - } - switch (var$3) { - case 45: - j: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 39, $active0, Long_ZERO); - else { - k: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break k; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 40, var$4, Long_ZERO); - var$3 = 41; - break j; - } - switch (var$3) { - case 102: - l: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 40, var$4, Long_ZERO); - else { - m: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break m; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 41, $active0, Long_ZERO); - var$3 = 42; - break l; - } - switch (var$3) { - case 65: - n: { - var$4 = Long_and(Long_create(0, 1073741824), $active0); - if (Long_eq(var$4, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 41, $active0, Long_ZERO); - else { - o: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break o; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 42, var$4, Long_ZERO); - var$3 = 43; - break n; - } - switch (var$3) { - case 45: - p: { - $active0 = Long_and(Long_create(0, 1073741824), var$4); - if (Long_eq($active0, Long_ZERO)) - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 42, var$4, Long_ZERO); - else { - q: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break q; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 43, $active0, Long_ZERO); - var$3 = 44; - break p; - } - switch (var$3) { - case 70: - break; - default: - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 43, $active0, Long_ZERO); - break p; - } - var$3 = oncipj_CypherTokenManager_jjMoveStringLiteralDfa45_5($this, $active0, Long_create(0, 1073741824)); - } - } - break n; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 42, var$4, Long_ZERO); - } - } - break l; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 41, $active0, Long_ZERO); - } - } - break j; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 40, var$4, Long_ZERO); - } - } - break h; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 39, $active0, Long_ZERO); - } - } - break f; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 38, var$4, Long_ZERO); - } - } - break d; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 37, $active0, Long_ZERO); - } - } - break b; - default: - } - var$3 = oncipj_CypherTokenManager_jjStartNfa_5($this, 36, var$4, Long_ZERO); - } - } - return var$3; - default: - } - return oncipj_CypherTokenManager_jjStartNfa_5($this, 35, $active0, Long_ZERO); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa45_5 = ($this, $old0, $active0) => { - let var$3, $$je; - $active0 = Long_and($active0, $old0); - if (Long_eq($active0, Long_ZERO)) - return oncipj_CypherTokenManager_jjStartNfa_5($this, 43, $old0, Long_ZERO); - a: { - try { - var$3 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$3; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_5($this, 44, $active0, Long_ZERO); - return 45; - } - b: { - switch (var$3) { - case 93: - break; - default: - break b; - } - if (Long_ne(Long_and($active0, Long_create(0, 1073741824)), Long_ZERO)) - return oncipj_CypherTokenManager_jjStopAtPos($this, 45, 62); - } - return oncipj_CypherTokenManager_jjStartNfa_5($this, 44, $active0, Long_ZERO); -}, -oncipj_CypherTokenManager_jjMoveNfa_5 = ($this, $startState, $curPos) => { - let $startsAt, $i, $kind, var$6, $i1, var$8, $hiByte, $l1, $i2, $l2, var$13, $$je; - $startsAt = 0; - $this.$jjnewStateCnt = 1; - $i = 1; - $this.$jjstateSet.data[0] = $startState; - $kind = 2147483647; - while (true) { - $startState = $this.$jjround + 1 | 0; - $this.$jjround = $startState; - if ($startState == 2147483647) - oncipj_CypherTokenManager_ReInitRounds($this); - var$6 = $this.$curChar; - if (var$6 < 64) { - $i1 = Long_compare(Long_and(Long_create(4294967295, 4294967291), Long_shl(Long_fromInt(1), var$6)), Long_ZERO); - while (true) { - a: { - var$8 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$8[$i]) { - case 0: - if (!$i1) - break a; - $kind = 63; - break a; - default: - } - } - if ($i == $startsAt) - break; - } - } else if (var$6 < 128) - while (true) { - b: { - var$8 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$8[$i]) { - case 0: - $kind = 63; - break b; - default: - } - } - if ($i == $startsAt) - break; - } - else { - $hiByte = var$6 >> 8; - $i1 = $hiByte >> 6; - $l1 = Long_shl(Long_fromInt(1), $hiByte & 63); - $i2 = (var$6 & 255) >> 6; - $l2 = Long_shl(Long_fromInt(1), var$6 & 63); - var$6 = Long_compare($l1, Long_ZERO); - var$13 = Long_compare($l2, Long_ZERO); - while (true) { - c: { - var$8 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$8[$i]) { - case 0: - break; - default: - if (!$i1) - break c; - if (!var$6) - break c; - if (!$i2) - break c; - break c; - } - if (oncipj_CypherTokenManager_jjCanMove_5($hiByte, $i1, $i2, $l1, $l2) && $kind > 63) - $kind = 63; - } - if ($i == $startsAt) - break; - } - } - if ($kind != 2147483647) { - $this.$jjmatchedKind = $kind; - $this.$jjmatchedPos = $curPos; - $kind = 2147483647; - } - $curPos = $curPos + 1 | 0; - $i = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startsAt; - $startsAt = 1 - $startsAt | 0; - if ($i == $startsAt) - break; - try { - $this.$curChar = oncipj_CypherCharStream_readChar($this.$input_stream); - continue; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - return $curPos; - } else { - throw $$e; - } - } - } - return $curPos; -}, -oncipj_CypherTokenManager_jjStopStringLiteralDfa_6 = ($this, $pos, $active0, $active1) => { - return (-1); -}, -oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_6 = $this => { - let var$1, $$je; - switch ($this.$curChar) { - case 96: - $this.$jjmatchedKind = 68; - a: { - b: { - try { - var$1 = oncipj_CypherCharStream_readChar($this.$input_stream); - $this.$curChar = var$1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - oncipj_CypherTokenManager_jjStopStringLiteralDfa_6($this, 0, Long_ZERO, Long_fromInt(8)); - var$1 = 1; - break a; - } - switch (var$1) { - case 96: - break; - default: - var$1 = oncipj_CypherTokenManager_jjMoveNfa_6($this, oncipj_CypherTokenManager_jjStopStringLiteralDfa_6($this, 0, Long_ZERO, Long_fromInt(8)), 1); - break a; - } - var$1 = oncipj_CypherTokenManager_jjStopAtPos($this, 1, 67); - } - return var$1; - default: - } - return oncipj_CypherTokenManager_jjMoveNfa_6($this, 0, 0); -}; -let oncipj_CypherTokenManager_jjMoveNfa_6 = ($this, $startState, $curPos) => { - let $startsAt, $i, $kind, var$6, var$7, $i1, $hiByte, $l1, $i2, $l2, var$13, $$je; - $startsAt = 0; - $this.$jjnewStateCnt = 1; - $i = 1; - $this.$jjstateSet.data[0] = $startState; - $kind = 2147483647; - while (true) { - $startState = $this.$jjround + 1 | 0; - $this.$jjround = $startState; - if ($startState == 2147483647) - oncipj_CypherTokenManager_ReInitRounds($this); - var$6 = $this.$curChar; - if (var$6 < 64) - while (true) { - a: { - var$7 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$7[$i]) { - case 0: - $kind = 66; - break a; - default: - } - } - if ($i == $startsAt) - break; - } - else if (var$6 < 128) { - $i1 = Long_compare(Long_and(Long_create(4294967295, 4294967294), Long_shl(Long_fromInt(1), var$6 & 63)), Long_ZERO); - while (true) { - b: { - var$7 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$7[$i]) { - case 0: - if (!$i1) - break b; - $kind = 66; - break b; - default: - } - } - if ($i == $startsAt) - break; - } - } else { - $hiByte = var$6 >> 8; - $i1 = $hiByte >> 6; - $l1 = Long_shl(Long_fromInt(1), $hiByte & 63); - $i2 = (var$6 & 255) >> 6; - $l2 = Long_shl(Long_fromInt(1), var$6 & 63); - var$6 = Long_compare($l1, Long_ZERO); - var$13 = Long_compare($l2, Long_ZERO); - while (true) { - c: { - var$7 = $this.$jjstateSet.data; - $i = $i + (-1) | 0; - switch (var$7[$i]) { - case 0: - break; - default: - if (!$i1) - break c; - if (!var$6) - break c; - if (!$i2) - break c; - break c; - } - if (oncipj_CypherTokenManager_jjCanMove_5($hiByte, $i1, $i2, $l1, $l2) && $kind > 66) - $kind = 66; - } - if ($i == $startsAt) - break; - } - } - if ($kind != 2147483647) { - $this.$jjmatchedKind = $kind; - $this.$jjmatchedPos = $curPos; - $kind = 2147483647; - } - $curPos = $curPos + 1 | 0; - $i = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = $startsAt; - $startsAt = 1 - $startsAt | 0; - if ($i == $startsAt) - break; - try { - $this.$curChar = oncipj_CypherCharStream_readChar($this.$input_stream); - continue; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - return $curPos; - } else { - throw $$e; - } - } - } - return $curPos; -}, -oncipj_CypherTokenManager_jjFillToken = $this => { - let $curTokenImage, var$2, var$3, $endLine, $beginLine, $beginColumn, $endColumn, var$8, var$9; - $curTokenImage = oncipj_CypherTokenManager_jjstrLiteralImages.data[$this.$jjmatchedKind]; - if ($curTokenImage === null) - $curTokenImage = oncipj_CypherCharStream_getImage($this.$input_stream); - var$2 = $this.$input_stream; - var$3 = var$2.$lines.data; - $endLine = var$2.$beginOffset0; - $beginLine = var$3[$endLine]; - $beginColumn = var$2.$columns0.data[$endLine]; - $endLine = oncipj_CypherCharStream_getEndLine(var$2); - $endColumn = oncipj_CypherCharStream_getEndColumn($this.$input_stream); - var$8 = $this.$jjmatchedKind; - var$9 = null; - var$2 = new oncipj_Token; - var$2.$kind = var$8; - var$2.$image = var$9; - var$2.$kind = var$8; - var$2.$image = $curTokenImage; - var$2.$beginLine = $beginLine; - var$2.$endLine = $endLine; - var$2.$beginColumn = $beginColumn; - var$2.$endColumn = $endColumn; - return var$2; -}, -oncipj_CypherTokenManager_jjCanMove_0 = ($hiByte, $i1, $i2, $l1, $l2) => { - switch ($hiByte) { - case 0: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec2.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 2: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec3.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 3: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec4.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 4: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec5.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 5: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec6.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 6: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec7.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 7: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec8.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 8: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec9.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 9: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec10.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 10: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec11.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 11: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec12.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 12: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec13.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 13: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec14.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 14: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec15.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 15: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec16.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 16: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec17.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 18: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec18.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 19: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec19.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 20: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec20.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 22: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec21.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 23: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec22.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 24: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec23.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 25: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec24.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 26: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec25.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 27: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec26.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 28: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec27.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 29: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec28.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 31: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec29.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 32: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec30.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 33: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec31.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 44: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec32.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 45: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec33.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 46: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec34.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 48: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec35.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 49: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec36.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 77: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec37.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 159: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec38.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 164: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec39.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 166: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec40.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 167: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec41.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 168: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec42.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 169: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec43.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 170: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec44.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 171: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec45.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 215: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec46.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 250: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec47.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 251: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec48.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 253: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec49.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 254: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec50.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 255: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec51.data[$i2], $l2), Long_ZERO) ? 0 : 1; - default: - } - if (Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec0.data[$i1], $l1), Long_ZERO)) - return 0; - return 1; -}, -oncipj_CypherTokenManager_jjCanMove_1 = ($hiByte, $i1, $i2, $l1, $l2) => { - switch ($hiByte) { - case 0: - break; - case 2: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec3.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 3: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec54.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 4: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec55.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 5: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec56.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 6: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec57.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 7: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec58.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 8: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec59.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 9: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec60.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 10: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec61.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 11: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec62.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 12: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec63.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 13: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec64.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 14: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec65.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 15: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec66.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 16: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec67.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 18: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec18.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 19: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec68.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 20: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec20.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 22: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec21.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 23: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec69.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 24: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec70.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 25: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec71.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 26: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec72.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 27: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec73.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 28: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec74.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 31: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec29.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 32: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec75.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 33: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec31.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 44: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec76.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 45: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec77.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 46: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec34.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 48: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec78.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 49: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec36.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 159: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec38.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 164: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec39.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 166: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec79.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 167: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec41.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 168: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec80.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 169: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec81.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 170: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec82.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 171: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec83.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 215: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec46.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 250: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec47.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 251: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec84.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 253: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec85.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 254: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec86.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 255: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec87.data[$i2], $l2), Long_ZERO) ? 0 : 1; - default: - if (Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec52.data[$i1], $l1), Long_ZERO)) { - if (Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec0.data[$i1], $l1), Long_ZERO)) - return 0; - return 1; - } - if (Long_ne(Long_and(oncipj_CypherTokenManager_jjbitVec37.data[$i2], $l2), Long_ZERO)) - return 1; - return 0; - } - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec53.data[$i2], $l2), Long_ZERO) ? 0 : 1; -}, -oncipj_CypherTokenManager_jjCanMove_2 = ($hiByte, $i1, $i2, $l1, $l2) => { - switch ($hiByte) { - case 0: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec88.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 32: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec89.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 254: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec90.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 255: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec91.data[$i2], $l2), Long_ZERO) ? 0 : 1; - default: - } - return 0; -}, -oncipj_CypherTokenManager_jjCanMove_3 = ($hiByte, $i1, $i2, $l1, $l2) => { - switch ($hiByte) { - case 39: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec92.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 48: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec93.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 254: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec94.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 255: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec95.data[$i2], $l2), Long_ZERO) ? 0 : 1; - default: - } - return 0; -}, -oncipj_CypherTokenManager_jjCanMove_4 = ($hiByte, $i1, $i2, $l1, $l2) => { - switch ($hiByte) { - case 39: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec96.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 48: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec97.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 254: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec98.data[$i2], $l2), Long_ZERO) ? 0 : 1; - case 255: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec99.data[$i2], $l2), Long_ZERO) ? 0 : 1; - default: - } - return 0; -}, -oncipj_CypherTokenManager_jjCanMove_5 = ($hiByte, $i1, $i2, $l1, $l2) => { - switch ($hiByte) { - case 0: - return Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec100.data[$i2], $l2), Long_ZERO) ? 0 : 1; - default: - } - if (Long_eq(Long_and(oncipj_CypherTokenManager_jjbitVec20.data[$i1], $l1), Long_ZERO)) - return 0; - return 1; -}, -oncipj_CypherTokenManager_getNextToken = $this => { - let $specialToken, $curPos, $error_after, $error_line, var$5, $error_column, var$7, var$8, $matchedToken, $EOFSeen, var$11, $$je; - $specialToken = null; - $curPos = 0; - a: { - while (true) { - try { - $this.$curChar = oncipj_CypherCharStream_beginToken($this.$input_stream); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - break; - } else { - throw $$e; - } - } - $error_after = $this.$jjimage; - $this.$image0 = $error_after; - jl_StringBuilder_setLength($error_after, 0); - $this.$jjimageLen = 0; - while (true) { - b: { - switch ($this.$curLexState) { - case 0: - $this.$jjmatchedKind = 2147483647; - $this.$jjmatchedPos = 0; - $curPos = oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_0($this); - if ($this.$jjmatchedPos) - break b; - if ($this.$jjmatchedKind <= 373) - break b; - $this.$jjmatchedKind = 373; - break b; - case 1: - $this.$jjmatchedKind = 2147483647; - $this.$jjmatchedPos = 0; - $curPos = oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_1($this); - if ($this.$jjmatchedPos) - break b; - if ($this.$jjmatchedKind <= 34) - break b; - $this.$jjmatchedKind = 34; - break b; - case 2: - $this.$jjmatchedKind = 2147483647; - $this.$jjmatchedPos = 0; - $curPos = oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_2($this); - if ($this.$jjmatchedPos) - break b; - if ($this.$jjmatchedKind <= 34) - break b; - $this.$jjmatchedKind = 34; - break b; - case 3: - $this.$jjmatchedKind = 2147483647; - $this.$jjmatchedPos = 0; - $curPos = oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_3($this); - if ($this.$jjmatchedPos) - break b; - if ($this.$jjmatchedKind <= 34) - break b; - $this.$jjmatchedKind = 34; - break b; - case 4: - $this.$jjmatchedKind = 2147483647; - $this.$jjmatchedPos = 0; - $curPos = oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_4($this); - if ($this.$jjmatchedPos) - break b; - if ($this.$jjmatchedKind <= 373) - break b; - $this.$jjmatchedKind = 373; - break b; - case 5: - $this.$jjmatchedKind = 2147483647; - $this.$jjmatchedPos = 0; - $curPos = oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_5($this); - if ($this.$jjmatchedPos) - break b; - if ($this.$jjmatchedKind <= 373) - break b; - $this.$jjmatchedKind = 373; - break b; - case 6: - $this.$jjmatchedKind = 2147483647; - $this.$jjmatchedPos = 0; - $curPos = oncipj_CypherTokenManager_jjMoveStringLiteralDfa0_6($this); - if ($this.$jjmatchedPos) - break b; - if ($this.$jjmatchedKind <= 373) - break b; - $this.$jjmatchedKind = 373; - break b; - default: - } - } - if ($this.$jjmatchedKind == 2147483647) - break a; - $error_line = $this.$jjmatchedPos; - if (($error_line + 1 | 0) < $curPos) - oncipj_CypherCharStream_backup($this.$input_stream, ($curPos - $error_line | 0) - 1 | 0); - var$5 = oncipj_CypherTokenManager_jjtoToken.data; - $error_line = $this.$jjmatchedKind; - $error_column = $error_line >> 6; - var$7 = var$5[$error_column]; - var$8 = Long_shl(Long_fromInt(1), $error_line & 63); - if (Long_ne(Long_and(var$7, var$8), Long_ZERO)) { - $matchedToken = oncipj_CypherTokenManager_jjFillToken($this); - $matchedToken.$specialToken = $specialToken; - oncipj_CypherTokenManager_TokenLexicalActions($this, $matchedToken); - var$5 = oncipj_CypherTokenManager_jjnewLexState.data; - $curPos = $this.$jjmatchedKind; - if (var$5[$curPos] != (-1)) - $this.$curLexState = var$5[$curPos]; - oncipj_CypherTokenManager_CommonTokenAction($this, $matchedToken); - return $matchedToken; - } - if (Long_ne(Long_and(oncipj_CypherTokenManager_jjtoSkip.data[$error_column], var$8), Long_ZERO)) - break; - oncipj_CypherTokenManager_MoreLexicalActions($this); - var$5 = oncipj_CypherTokenManager_jjnewLexState.data; - $curPos = $this.$jjmatchedKind; - if (var$5[$curPos] != (-1)) - $this.$curLexState = var$5[$curPos]; - $curPos = 0; - $this.$jjmatchedKind = 2147483647; - try { - $this.$curChar = oncipj_CypherCharStream_readChar($this.$input_stream); - continue; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - break a; - } else { - throw $$e; - } - } - } - if (Long_eq(Long_and(oncipj_CypherTokenManager_jjtoSpecial.data[$error_column], var$8), Long_ZERO)) - oncipj_CypherTokenManager_SkipLexicalActions($this, null); - else { - $matchedToken = oncipj_CypherTokenManager_jjFillToken($this); - if ($specialToken === null) - $specialToken = $matchedToken; - else { - $matchedToken.$specialToken = $specialToken; - $specialToken.$next5 = $matchedToken; - $specialToken = $matchedToken; - } - oncipj_CypherTokenManager_SkipLexicalActions($this, $matchedToken); - } - var$5 = oncipj_CypherTokenManager_jjnewLexState.data; - $error_line = $this.$jjmatchedKind; - if (var$5[$error_line] == (-1)) - continue; - $this.$curLexState = var$5[$error_line]; - } - $this.$jjmatchedKind = 0; - $this.$jjmatchedPos = (-1); - $matchedToken = oncipj_CypherTokenManager_jjFillToken($this); - $matchedToken.$specialToken = $specialToken; - oncipj_CypherTokenManager_CommonTokenAction($this, $matchedToken); - return $matchedToken; - } - $error_line = oncipj_CypherCharStream_getEndLine($this.$input_stream); - $error_column = oncipj_CypherCharStream_getEndColumn($this.$input_stream); - $error_after = null; - $EOFSeen = 0; - c: { - try { - oncipj_CypherCharStream_readChar($this.$input_stream); - oncipj_CypherCharStream_backup($this.$input_stream, 1); - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - $EOFSeen = 1; - $error_after = $curPos <= 1 ? $rt_s(4) : oncipj_CypherCharStream_getImage($this.$input_stream); - var$11 = $this.$curChar; - if (var$11 != 10 && var$11 != 13) - $error_column = $error_column + 1 | 0; - else { - $error_line = $error_line + 1 | 0; - $error_column = 0; - } - } - if (!$EOFSeen) { - oncipj_CypherCharStream_backup($this.$input_stream, 1); - $error_after = $curPos <= 1 ? $rt_s(4) : oncipj_CypherCharStream_getImage($this.$input_stream); - } - $rt_throw(oncipj_TokenMgrException__init_0($EOFSeen, $this.$curLexState, $error_line, $error_column, $error_after, $this.$curChar, 0)); -}, -oncipj_CypherTokenManager_SkipLexicalActions = ($this, $matchedToken) => { - return; -}, -oncipj_CypherTokenManager_MoreLexicalActions = $this => { - let var$1, var$2, var$3; - a: { - var$1 = $this.$jjimageLen; - var$2 = $this.$jjmatchedPos + 1 | 0; - $this.$lengthOfMatch = var$2; - var$2 = var$1 + var$2 | 0; - $this.$jjimageLen = var$2; - switch ($this.$jjmatchedKind) { - case 30: - break; - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 50: - case 51: - case 52: - case 53: - case 62: - case 63: - case 64: - case 65: - case 66: - break a; - case 42: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(34)); - break a; - case 43: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4445)); - break a; - case 44: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(481)); - break a; - case 45: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4446)); - break a; - case 46: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4447)); - break a; - case 47: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(93)); - break a; - case 48: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4448)); - break a; - case 49: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4449)); - break a; - case 54: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(34)); - break a; - case 55: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4445)); - break a; - case 56: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(481)); - break a; - case 57: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4446)); - break a; - case 58: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4447)); - break a; - case 59: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(93)); - break a; - case 60: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4448)); - break a; - case 61: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(4449)); - break a; - case 67: - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - var$3 = $this.$image0; - jl_StringBuilder_delete(var$3, jl_StringBuilder_length(var$3) - 2 | 0, jl_StringBuilder_length($this.$image0)); - jl_StringBuilder_append2($this.$image0, $rt_s(412)); - break a; - default: - break a; - } - jl_StringBuilder_append3($this.$image0, oncipj_CypherCharStream_getSuffix($this.$input_stream, var$2)); - $this.$jjimageLen = 0; - oncipj_CypherCharStream_backup($this.$input_stream, 1); - } -}, -oncipj_CypherTokenManager_TokenLexicalActions = ($this, $matchedToken) => { - let var$2, var$3, var$4, var$5; - a: { - switch ($this.$jjmatchedKind) { - case 52: - break; - case 64: - var$2 = $this.$image0; - var$3 = $this.$input_stream; - var$4 = $this.$jjimageLen; - var$5 = $this.$jjmatchedPos + 1 | 0; - $this.$lengthOfMatch = var$5; - jl_AbstractStringBuilder_append3(var$2, oncipj_CypherCharStream_getSuffix(var$3, var$4 + var$5 | 0)); - var$2 = $this.$image0; - $matchedToken.$image = jl_StringBuilder_substring(var$2, 1, var$2.$length1 - 1 | 0); - break a; - case 68: - var$2 = $this.$image0; - var$3 = $this.$input_stream; - var$5 = $this.$jjimageLen; - var$4 = $this.$jjmatchedPos + 1 | 0; - $this.$lengthOfMatch = var$4; - jl_AbstractStringBuilder_append3(var$2, oncipj_CypherCharStream_getSuffix(var$3, var$5 + var$4 | 0)); - var$2 = $this.$image0; - $matchedToken.$image = jl_StringBuilder_substring(var$2, 1, var$2.$length1 - 1 | 0); - break a; - default: - break a; - } - var$2 = $this.$image0; - var$3 = $this.$input_stream; - var$5 = $this.$jjimageLen; - var$4 = $this.$jjmatchedPos + 1 | 0; - $this.$lengthOfMatch = var$4; - jl_AbstractStringBuilder_append3(var$2, oncipj_CypherCharStream_getSuffix(var$3, var$5 + var$4 | 0)); - var$2 = $this.$image0; - $matchedToken.$image = jl_StringBuilder_substring(var$2, 1, var$2.$length1 - 1 | 0); - } -}, -oncipj_CypherTokenManager_jjCheckNAdd = ($this, $state) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $this.$jjrounds.data; - var$3 = var$2[$state]; - var$4 = $this.$jjround; - if (var$3 != var$4) { - var$5 = $this.$jjstateSet.data; - var$6 = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = var$6 + 1 | 0; - var$5[var$6] = $state; - var$2[$state] = var$4; - } -}, -oncipj_CypherTokenManager_jjAddStates = ($this, $start, $end) => { - let var$3, var$4, $start_0; - while (true) { - var$3 = $this.$jjstateSet.data; - var$4 = $this.$jjnewStateCnt; - $this.$jjnewStateCnt = var$4 + 1 | 0; - var$3[var$4] = oncipj_CypherTokenManager_jjnextStates.data[$start]; - $start_0 = $start + 1 | 0; - if ($start == $end) - break; - $start = $start_0; - } -}, -oncipj_CypherTokenManager_jjCheckNAddTwoStates = ($this, $state1, $state2) => { - oncipj_CypherTokenManager_jjCheckNAdd($this, $state1); - oncipj_CypherTokenManager_jjCheckNAdd($this, $state2); -}, -oncipj_CypherTokenManager_jjCheckNAddStates = ($this, $start, $end) => { - let $start_0; - while (true) { - oncipj_CypherTokenManager_jjCheckNAdd($this, oncipj_CypherTokenManager_jjnextStates.data[$start]); - $start_0 = $start + 1 | 0; - if ($start == $end) - break; - $start = $start_0; - } -}, -oncipj_CypherTokenManager_ReInitRounds = $this => { - let $i, $i_0; - $this.$jjround = (-2147483647); - $i = 55; - while (true) { - $i_0 = $i + (-1) | 0; - if ($i <= 0) - break; - $this.$jjrounds.data[$i_0] = (-2147483648); - $i = $i_0; - } -}, -oncipj_CypherTokenManager__clinit_ = () => { - let var$1, var$2; - oncipj_CypherTokenManager_jjbitVec0 = $rt_createLongArrayFromData([Long_create(1075970050, 4293918720), Long_fromInt(-8193), Long_create(2147483647, 4294963247), Long_create(8388607, 301989888)]); - oncipj_CypherTokenManager_jjbitVec2 = $rt_createLongArrayFromData([Long_ZERO, Long_ZERO, Long_create(4294967295, 69215292), Long_create(4286578687, 4286578687)]); - oncipj_CypherTokenManager_jjbitVec3 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(-1), Long_create(262083, 20511)]); - oncipj_CypherTokenManager_jjbitVec4 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_create(4294967295, 3168796671), Long_create(4294956864, 4294967291), Long_create(4294967295, 4290772991)]); - oncipj_CypherTokenManager_jjbitVec5 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(-773), Long_fromInt(-1)]); - oncipj_CypherTokenManager_jjbitVec6 = $rt_createLongArrayFromData([Long_create(4294967295, 4294901759), Long_create(41943039, 4294967295), Long_create(4294869503, 3221225471), Long_create(4294901942, 493567)]); - oncipj_CypherTokenManager_jjbitVec7 = $rt_createLongArrayFromData([Long_create(402589759, 4294967295), Long_create(4294967295, 4294951935), Long_fromInt(-1), Long_create(3220176895, 2684354047)]); - oncipj_CypherTokenManager_jjbitVec8 = $rt_createLongArrayFromData([Long_fromInt(-32768), Long_fromInt(-6145), Long_create(4294967295, 262143), Long_create(4294967295, 3829399551)]); - oncipj_CypherTokenManager_jjbitVec9 = $rt_createLongArrayFromData([Long_create(4294967295, 16383), Long_create(268435455, 2047), Long_create(0, 4292870143), Long_fromInt(-524033)]); - oncipj_CypherTokenManager_jjbitVec10 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_create(4294967295, 4294901711), Long_create(4294549487, 4089839103), Long_create(2961209759, 1477443535)]); - oncipj_CypherTokenManager_jjbitVec11 = $rt_createLongArrayFromData([Long_create(4294543342, 3547201023), Long_create(1577204103, 4194240), Long_create(4294688750, 4092460543), Long_create(80831, 4261609423)]); - oncipj_CypherTokenManager_jjbitVec12 = $rt_createLongArrayFromData([Long_create(4294549486, 4092460543), Long_create(2967484831, 196559), Long_create(3594373100, 3288319768), Long_create(8469959, 33619904)]); - oncipj_CypherTokenManager_jjbitVec13 = $rt_createLongArrayFromData([Long_create(4294828031, 3825204735), Long_create(123747807, 65487), Long_create(4294828015, 4092591615), Long_create(1080049119, 458703)]); - oncipj_CypherTokenManager_jjbitVec14 = $rt_createLongArrayFromData([Long_fromInt(-139265), Long_create(2163244511, 4227923919), Long_create(4236247022, 805044223), Long_create(4284449919, 851904)]); - oncipj_CypherTokenManager_jjbitVec15 = $rt_createLongArrayFromData([Long_create(4294967294, 2281701375), Long_fromInt(67076095), Long_create(4294965206, 1073741743), Long_create(4093591391, 0)]); - oncipj_CypherTokenManager_jjbitVec16 = $rt_createLongArrayFromData([Long_create(50331649, 3265266687), Long_create(4294967039, 4294844415), Long_create(4278190047, 536870911), Long_fromInt(64)]); - oncipj_CypherTokenManager_jjbitVec17 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-64513), Long_create(1073741823, 4294967295), Long_create(4294910143, 4160749567)]); - oncipj_CypherTokenManager_jjbitVec18 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_create(1031749119, 4294967295), Long_create(4294917631, 2134769663), Long_fromInt(-8388803)]); - oncipj_CypherTokenManager_jjbitVec19 = $rt_createLongArrayFromData([Long_fromInt(-12713985), Long_create(3892314111, 0), Long_create(65535, 4294967295), Long_create(4294967295, 1061158911)]); - oncipj_CypherTokenManager_jjbitVec20 = $rt_createLongArrayFromData([Long_fromInt(-2), Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(-1)]); - oncipj_CypherTokenManager_jjbitVec21 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_create(4294967295, 4294942719), Long_create(134217726, 4294967295), Long_create(4294967295, 33540095)]); - oncipj_CypherTokenManager_jjbitVec22 = $rt_createLongArrayFromData([Long_create(2088959, 2097151), Long_create(1048575, 909311), Long_fromInt(-1), Long_create(948961279, 1023)]); - oncipj_CypherTokenManager_jjbitVec23 = $rt_createLongArrayFromData([Long_create(67074048, 4294967295), Long_create(4294967295, 33554431), Long_create(4294967295, 4294903807), Long_create(4294967295, 4194303)]); - oncipj_CypherTokenManager_jjbitVec24 = $rt_createLongArrayFromData([Long_create(2147483647, 268374015), Long_create(4294967232, 2047999), Long_create(4294967295, 4294905855), Long_fromInt(67044351)]); - oncipj_CypherTokenManager_jjbitVec25 = $rt_createLongArrayFromData([Long_create(268435455, 4294967295), Long_create(2147483647, 2684354559), Long_create(67044351, 3221160064), Long_fromInt(1)]); - oncipj_CypherTokenManager_jjbitVec26 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_create(67047423, 1046528), Long_fromInt(-1), Long_create(4294967295, 1048575)]); - oncipj_CypherTokenManager_jjbitVec27 = $rt_createLongArrayFromData([Long_create(4294967295, 16777215), Long_create(4294960127, 1073741823), Long_create(4294902271, 3892314111), Long_create(4294377472, 134217727)]); - oncipj_CypherTokenManager_jjbitVec28 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(-1), Long_create(4294967295, 4227858431)]); - oncipj_CypherTokenManager_jjbitVec29 = $rt_createLongArrayFromData([Long_create(1061158911, 4294967295), Long_create(2868854591, 1073741823), Long_create(4294967295, 1608515583), Long_create(265232348, 534519807)]); - oncipj_CypherTokenManager_jjbitVec30 = $rt_createLongArrayFromData([Long_create(63488, 2147515392), Long_create(1048577, 2147680223), Long_create(536805376, 4294967295), Long_create(536805376, 131042)]); - oncipj_CypherTokenManager_jjbitVec31 = $rt_createLongArrayFromData([Long_create(1043332228, 4093623632), Long_create(17376, 4294967295), Long_fromInt(511), Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec32 = $rt_createLongArrayFromData([Long_create(4294967295, 4294934527), Long_create(2147483647, 4294967295), Long_fromInt(-1), Long_create(4294967295, 1046559)]); - oncipj_CypherTokenManager_jjbitVec33 = $rt_createLongArrayFromData([Long_create(4294967295, 4294910143), Long_create(4294967295, 2147516671), Long_create(8388607, 2139062143), Long_create(2139062143, 4294967295)]); - oncipj_CypherTokenManager_jjbitVec34 = $rt_createLongArrayFromData([Long_create(0, 32768), Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec35 = $rt_createLongArrayFromData([Long_create(224, 524222462), Long_fromInt(-2), Long_create(3867148287, 4294967294), Long_create(4294967295, 4160749567)]); - oncipj_CypherTokenManager_jjbitVec36 = $rt_createLongArrayFromData([Long_create(4294967264, 4294901759), Long_fromInt(-1), Long_create(32767, 4294967295), Long_create(0, 4294901760)]); - oncipj_CypherTokenManager_jjbitVec37 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(-1), Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec38 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(-1), Long_create(4294967295, 536870911)]); - oncipj_CypherTokenManager_jjbitVec39 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(8191), Long_create(4294901760, 1073741823)]); - oncipj_CypherTokenManager_jjbitVec40 = $rt_createLongArrayFromData([Long_create(4294909951, 4095), Long_create(4294967295, 3220242431), Long_fromInt(-1), Long_create(4294967295, 262143)]); - oncipj_CypherTokenManager_jjbitVec41 = $rt_createLongArrayFromData([Long_create(4286578688, 4294967292), Long_fromInt(-1), Long_fromInt(-1537), Long_create(2044, 4292870144)]); - oncipj_CypherTokenManager_jjbitVec42 = $rt_createLongArrayFromData([Long_create(4294967295, 16781567), Long_create(4294967295, 1048575), Long_fromInt(-1), Long_create(67043391, 3909091327)]); - oncipj_CypherTokenManager_jjbitVec43 = $rt_createLongArrayFromData([Long_create(4294967295, 4294918143), Long_create(1048575, 536870911), Long_fromInt(-1), Long_create(67076097, 2147483647)]); - oncipj_CypherTokenManager_jjbitVec44 = $rt_createLongArrayFromData([Long_create(4294967295, 8388607), Long_create(67059711, 4236247039), Long_fromInt(-1), Long_create(939524103, 8191999)]); - oncipj_CypherTokenManager_jjbitVec45 = $rt_createLongArrayFromData([Long_create(8289918, 4294934399), Long_create(4160749567, 4294902783), Long_fromInt(-1), Long_create(4294967295, 67057663)]); - oncipj_CypherTokenManager_jjbitVec46 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-1), Long_create(4294967295, 4294901775), Long_create(4294965375, 268435455)]); - oncipj_CypherTokenManager_jjbitVec47 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_create(4294967295, 4294918143), Long_fromInt(-1), Long_fromInt(67108863)]); - oncipj_CypherTokenManager_jjbitVec48 = $rt_createLongArrayFromData([Long_create(3774349439, 1602223615), Long_fromInt(-37), Long_create(4294967295, 262143), Long_fromInt(-524288)]); - oncipj_CypherTokenManager_jjbitVec49 = $rt_createLongArrayFromData([Long_create(4294967295, 1073741823), Long_fromInt(-65536), Long_fromInt(-196609), Long_create(255, 536805376)]); - oncipj_CypherTokenManager_jjbitVec50 = $rt_createLongArrayFromData([Long_create(65535, 1638399), Long_create(57344, 4292805120), Long_fromInt(-1), Long_create(4294967295, 2684354559)]); - oncipj_CypherTokenManager_jjbitVec51 = $rt_createLongArrayFromData([Long_create(67043344, 2281701374), Long_create(134217726, 4294967232), Long_create(4294967295, 2147483647), Long_create(486341884, 234881123)]); - oncipj_CypherTokenManager_jjbitVec52 = $rt_createLongArrayFromData([Long_fromInt(536870912), Long_fromInt(8192), Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec53 = $rt_createLongArrayFromData([Long_ZERO, Long_ZERO, Long_create(0, 69207040), Long_create(4286578687, 4286578687)]); - oncipj_CypherTokenManager_jjbitVec54 = $rt_createLongArrayFromData([Long_ZERO, Long_create(0, 3168731136), Long_create(4294956864, 4294967291), Long_create(4294967295, 4290772991)]); - oncipj_CypherTokenManager_jjbitVec55 = $rt_createLongArrayFromData([Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(-1021), Long_fromInt(-1)]); - oncipj_CypherTokenManager_jjbitVec56 = $rt_createLongArrayFromData([Long_create(4294967295, 4294901759), Long_create(41943039, 4294967295), Long_fromInt(511), Long_create(4294901760, 493567)]); - oncipj_CypherTokenManager_jjbitVec57 = $rt_createLongArrayFromData([Long_create(0, 4294967295), Long_create(2047, 4294885376), Long_fromInt(-1), Long_create(3145727, 2617294944)]); - oncipj_CypherTokenManager_jjbitVec58 = $rt_createLongArrayFromData([Long_create(4294770688, 65535), Long_fromInt(-8192), Long_create(4294967295, 131135), Long_create(4294966272, 70256639)]); - oncipj_CypherTokenManager_jjbitVec59 = $rt_createLongArrayFromData([Long_create(71303167, 272), Long_create(33554431, 2047), Long_create(0, 4292870143), Long_fromInt(255)]); - oncipj_CypherTokenManager_jjbitVec60 = $rt_createLongArrayFromData([Long_create(4294967280, 603979775), Long_create(4278255616, 4294836227), Long_create(4294549473, 600178175), Long_create(2952806400, 268632067)]); - oncipj_CypherTokenManager_jjbitVec61 = $rt_createLongArrayFromData([Long_create(4294543328, 57540095), Long_create(1577058304, 1835008), Long_create(4294688736, 602799615), Long_create(65536, 33554435)]); - oncipj_CypherTokenManager_jjbitVec62 = $rt_createLongArrayFromData([Long_create(4294549472, 602799615), Long_create(2952790016, 131075), Long_create(3594373096, 67094296), Long_fromInt(65536)]); - oncipj_CypherTokenManager_jjbitVec63 = $rt_createLongArrayFromData([Long_create(4294828000, 603979263), Long_create(117440512, 3), Long_create(4294828001, 602930687), Long_create(1073741824, 393219)]); - oncipj_CypherTokenManager_jjbitVec64 = $rt_createLongArrayFromData([Long_create(4294828016, 671088639), Long_create(2154840064, 4227858435), Long_create(4236247008, 805044223), Long_fromInt(127)]); - oncipj_CypherTokenManager_jjbitVec65 = $rt_createLongArrayFromData([Long_create(4294967294, 917503), Long_fromInt(127), Long_create(4294965206, 537788335), Long_create(4026531935, 0)]); - oncipj_CypherTokenManager_jjbitVec66 = $rt_createLongArrayFromData([Long_fromInt(1), Long_create(4294967039, 8191), Long_fromInt(7936), Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec67 = $rt_createLongArrayFromData([Long_create(4294967295, 2147485695), Long_create(1010761728, 4292984930), Long_create(16387, 4294967295), Long_create(4294910143, 4160749567)]); - oncipj_CypherTokenManager_jjbitVec68 = $rt_createLongArrayFromData([Long_fromInt(-12713985), Long_fromInt(134217727), Long_create(65535, 4294967295), Long_create(4294967295, 1061158911)]); - oncipj_CypherTokenManager_jjbitVec69 = $rt_createLongArrayFromData([Long_create(253951, 262143), Long_create(262143, 122879), Long_create(4294967295, 1048575), Long_fromInt(276824064)]); - oncipj_CypherTokenManager_jjbitVec70 = $rt_createLongArrayFromData([Long_create(0, 4294967295), Long_create(4294967295, 33554431), Long_create(4294967199, 4294903295), Long_create(4294967295, 4194303)]); - oncipj_CypherTokenManager_jjbitVec71 = $rt_createLongArrayFromData([Long_fromInt(2147483647), Long_create(4294901760, 2047999), Long_create(4294967295, 4294905855), Long_fromInt(1023)]); - oncipj_CypherTokenManager_jjbitVec72 = $rt_createLongArrayFromData([Long_create(8388607, 4294967295), Long_fromInt(2097151), Long_create(0, 128), Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec73 = $rt_createLongArrayFromData([Long_create(4294967264, 1048575), Long_fromInt(4064), Long_create(4294967288, 4227907585), Long_create(4294967295, 63)]); - oncipj_CypherTokenManager_jjbitVec74 = $rt_createLongArrayFromData([Long_create(4294967295, 15), Long_create(4227915776, 1073741823), Long_create(4294902271, 3892314111), Long_create(0, 74440192)]); - oncipj_CypherTokenManager_jjbitVec75 = $rt_createLongArrayFromData([Long_create(0, 2147483648), Long_create(1048577, 2147614720), Long_fromInt(536805376), Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec76 = $rt_createLongArrayFromData([Long_create(4294967295, 4294934527), Long_create(2147483647, 4294967295), Long_fromInt(-1), Long_create(4294967295, 817183)]); - oncipj_CypherTokenManager_jjbitVec77 = $rt_createLongArrayFromData([Long_create(4294967295, 4294910143), Long_create(4294967295, 33023), Long_create(8388607, 2139062143), Long_fromInt(2139062143)]); - oncipj_CypherTokenManager_jjbitVec78 = $rt_createLongArrayFromData([Long_create(224, 524157950), Long_fromInt(-2), Long_create(3766484991, 4294967294), Long_create(4294967295, 4160749567)]); - oncipj_CypherTokenManager_jjbitVec79 = $rt_createLongArrayFromData([Long_create(4294909951, 3072), Long_create(4294967295, 2147516415), Long_create(1073741823, 4294967295), Long_create(4294967295, 65535)]); - oncipj_CypherTokenManager_jjbitVec80 = $rt_createLongArrayFromData([Long_create(4294965179, 7), Long_create(4294967295, 1048575), Long_create(4294967292, 1048575), Long_create(0, 1761345536)]); - oncipj_CypherTokenManager_jjbitVec81 = $rt_createLongArrayFromData([Long_create(4294966272, 4294901823), Long_create(127, 536870911), Long_create(4294967280, 524287), Long_create(32768, 2080440287)]); - oncipj_CypherTokenManager_jjbitVec82 = $rt_createLongArrayFromData([Long_create(4294967295, 511), Long_create(4087, 3296722943), Long_create(4294967295, 1046675455), Long_create(939524101, 1837055)]); - oncipj_CypherTokenManager_jjbitVec83 = $rt_createLongArrayFromData([Long_create(8289918, 4294934399), Long_create(4160749567, 4294902783), Long_fromInt(-1), Long_create(4294967295, 7)]); - oncipj_CypherTokenManager_jjbitVec84 = $rt_createLongArrayFromData([Long_create(2700607615, 1602223615), Long_fromInt(-37), Long_create(4294967295, 262143), Long_fromInt(-524288)]); - oncipj_CypherTokenManager_jjbitVec85 = $rt_createLongArrayFromData([Long_create(4294967295, 1073741823), Long_fromInt(-65536), Long_fromInt(-196609), Long_create(255, 268369920)]); - oncipj_CypherTokenManager_jjbitVec86 = $rt_createLongArrayFromData([Long_create(0, 1572864), Long_create(57344, 4292804608), Long_fromInt(-1), Long_create(4294967295, 536870911)]); - oncipj_CypherTokenManager_jjbitVec87 = $rt_createLongArrayFromData([Long_create(0, 2281701374), Long_create(134217726, 4294967232), Long_create(4294967295, 2147483647), Long_fromInt(486341884)]); - oncipj_CypherTokenManager_jjbitVec88 = $rt_createLongArrayFromData([Long_ZERO, Long_ZERO, Long_create(0, 8192), Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec89 = $rt_createLongArrayFromData([Long_fromInt(4128768), Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec90 = $rt_createLongArrayFromData([Long_ZERO, Long_create(16777216, 8), Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec91 = $rt_createLongArrayFromData([Long_fromInt(8192), Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec92 = $rt_createLongArrayFromData([Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 256)]); - oncipj_CypherTokenManager_jjbitVec93 = $rt_createLongArrayFromData([Long_fromInt(256), Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec94 = $rt_createLongArrayFromData([Long_ZERO, Long_create(0, 16), Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec95 = $rt_createLongArrayFromData([Long_fromInt(268435456), Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec96 = $rt_createLongArrayFromData([Long_ZERO, Long_ZERO, Long_ZERO, Long_create(0, 512)]); - oncipj_CypherTokenManager_jjbitVec97 = $rt_createLongArrayFromData([Long_fromInt(512), Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec98 = $rt_createLongArrayFromData([Long_ZERO, Long_create(0, 32), Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec99 = $rt_createLongArrayFromData([Long_fromInt(1073741824), Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjbitVec100 = $rt_createLongArrayFromData([Long_ZERO, Long_ZERO, Long_fromInt(-1), Long_fromInt(-1)]); - var$1 = $rt_createArray(jl_String, 374); - var$2 = var$1.data; - var$2[0] = $rt_s(4); - var$2[1] = null; - var$2[2] = null; - var$2[3] = null; - var$2[4] = null; - var$2[5] = null; - var$2[6] = null; - var$2[7] = null; - var$2[8] = null; - var$2[9] = null; - var$2[10] = null; - var$2[11] = null; - var$2[12] = null; - var$2[13] = null; - var$2[14] = null; - var$2[15] = null; - var$2[16] = null; - var$2[17] = null; - var$2[18] = null; - var$2[19] = null; - var$2[20] = null; - var$2[21] = null; - var$2[22] = null; - var$2[23] = null; - var$2[24] = null; - var$2[25] = null; - var$2[26] = null; - var$2[27] = null; - var$2[28] = null; - var$2[29] = null; - var$2[30] = null; - var$2[31] = null; - var$2[32] = null; - var$2[33] = null; - var$2[34] = null; - var$2[35] = null; - var$2[36] = null; - var$2[37] = null; - var$2[38] = null; - var$2[39] = null; - var$2[40] = null; - var$2[41] = null; - var$2[42] = null; - var$2[43] = null; - var$2[44] = null; - var$2[45] = null; - var$2[46] = null; - var$2[47] = null; - var$2[48] = null; - var$2[49] = null; - var$2[50] = null; - var$2[51] = null; - var$2[52] = null; - var$2[53] = null; - var$2[54] = null; - var$2[55] = null; - var$2[56] = null; - var$2[57] = null; - var$2[58] = null; - var$2[59] = null; - var$2[60] = null; - var$2[61] = null; - var$2[62] = null; - var$2[63] = null; - var$2[64] = null; - var$2[65] = null; - var$2[66] = null; - var$2[67] = null; - var$2[68] = null; - var$2[69] = null; - var$2[70] = null; - var$2[71] = null; - var$2[72] = null; - var$2[73] = null; - var$2[74] = null; - var$2[75] = null; - var$2[76] = null; - var$2[77] = null; - var$2[78] = null; - var$2[79] = null; - var$2[80] = null; - var$2[81] = null; - var$2[82] = null; - var$2[83] = null; - var$2[84] = null; - var$2[85] = null; - var$2[86] = null; - var$2[87] = null; - var$2[88] = $rt_s(451); - var$2[89] = null; - var$2[90] = null; - var$2[91] = null; - var$2[92] = null; - var$2[93] = null; - var$2[94] = null; - var$2[95] = null; - var$2[96] = null; - var$2[97] = null; - var$2[98] = null; - var$2[99] = null; - var$2[100] = null; - var$2[101] = null; - var$2[102] = null; - var$2[103] = null; - var$2[104] = null; - var$2[105] = $rt_s(91); - var$2[106] = $rt_s(4450); - var$2[107] = $rt_s(41); - var$2[108] = null; - var$2[109] = null; - var$2[110] = null; - var$2[111] = null; - var$2[112] = null; - var$2[113] = null; - var$2[114] = null; - var$2[115] = null; - var$2[116] = null; - var$2[117] = null; - var$2[118] = null; - var$2[119] = null; - var$2[120] = null; - var$2[121] = null; - var$2[122] = null; - var$2[123] = null; - var$2[124] = null; - var$2[125] = null; - var$2[126] = null; - var$2[127] = null; - var$2[128] = null; - var$2[129] = null; - var$2[130] = null; - var$2[131] = null; - var$2[132] = null; - var$2[133] = null; - var$2[134] = null; - var$2[135] = null; - var$2[136] = null; - var$2[137] = $rt_s(4451); - var$2[138] = $rt_s(4452); - var$2[139] = null; - var$2[140] = null; - var$2[141] = $rt_s(89); - var$2[142] = $rt_s(403); - var$2[143] = $rt_s(446); - var$2[144] = null; - var$2[145] = null; - var$2[146] = null; - var$2[147] = null; - var$2[148] = null; - var$2[149] = null; - var$2[150] = null; - var$2[151] = null; - var$2[152] = null; - var$2[153] = null; - var$2[154] = null; - var$2[155] = null; - var$2[156] = null; - var$2[157] = null; - var$2[158] = $rt_s(4453); - var$2[159] = null; - var$2[160] = null; - var$2[161] = null; - var$2[162] = null; - var$2[163] = null; - var$2[164] = null; - var$2[165] = null; - var$2[166] = null; - var$2[167] = null; - var$2[168] = null; - var$2[169] = null; - var$2[170] = null; - var$2[171] = null; - var$2[172] = null; - var$2[173] = null; - var$2[174] = null; - var$2[175] = null; - var$2[176] = $rt_s(4454); - var$2[177] = null; - var$2[178] = null; - var$2[179] = null; - var$2[180] = null; - var$2[181] = null; - var$2[182] = $rt_s(604); - var$2[183] = null; - var$2[184] = null; - var$2[185] = null; - var$2[186] = null; - var$2[187] = null; - var$2[188] = null; - var$2[189] = null; - var$2[190] = null; - var$2[191] = null; - var$2[192] = null; - var$2[193] = null; - var$2[194] = null; - var$2[195] = null; - var$2[196] = null; - var$2[197] = null; - var$2[198] = null; - var$2[199] = null; - var$2[200] = null; - var$2[201] = null; - var$2[202] = $rt_s(486); - var$2[203] = $rt_s(4455); - var$2[204] = $rt_s(426); - var$2[205] = $rt_s(432); - var$2[206] = $rt_s(4456); - var$2[207] = null; - var$2[208] = null; - var$2[209] = null; - var$2[210] = null; - var$2[211] = null; - var$2[212] = null; - var$2[213] = $rt_s(40); - var$2[214] = $rt_s(603); - var$2[215] = null; - var$2[216] = null; - var$2[217] = null; - var$2[218] = null; - var$2[219] = $rt_s(3607); - var$2[220] = $rt_s(489); - var$2[221] = $rt_s(4457); - var$2[222] = $rt_s(4458); - var$2[223] = null; - var$2[224] = null; - var$2[225] = null; - var$2[226] = null; - var$2[227] = null; - var$2[228] = null; - var$2[229] = null; - var$2[230] = null; - var$2[231] = null; - var$2[232] = null; - var$2[233] = null; - var$2[234] = null; - var$2[235] = null; - var$2[236] = null; - var$2[237] = null; - var$2[238] = null; - var$2[239] = null; - var$2[240] = null; - var$2[241] = null; - var$2[242] = null; - var$2[243] = null; - var$2[244] = null; - var$2[245] = null; - var$2[246] = null; - var$2[247] = null; - var$2[248] = null; - var$2[249] = null; - var$2[250] = null; - var$2[251] = null; - var$2[252] = null; - var$2[253] = null; - var$2[254] = null; - var$2[255] = null; - var$2[256] = null; - var$2[257] = $rt_s(600); - var$2[258] = $rt_s(4459); - var$2[259] = null; - var$2[260] = null; - var$2[261] = $rt_s(401); - var$2[262] = null; - var$2[263] = null; - var$2[264] = null; - var$2[265] = null; - var$2[266] = null; - var$2[267] = null; - var$2[268] = null; - var$2[269] = null; - var$2[270] = null; - var$2[271] = null; - var$2[272] = null; - var$2[273] = $rt_s(4414); - var$2[274] = null; - var$2[275] = $rt_s(427); - var$2[276] = $rt_s(433); - var$2[277] = null; - var$2[278] = null; - var$2[279] = null; - var$2[280] = null; - var$2[281] = $rt_s(4460); - var$2[282] = null; - var$2[283] = null; - var$2[284] = null; - var$2[285] = null; - var$2[286] = null; - var$2[287] = null; - var$2[288] = null; - var$2[289] = null; - var$2[290] = null; - var$2[291] = null; - var$2[292] = null; - var$2[293] = null; - var$2[294] = null; - var$2[295] = null; - var$2[296] = null; - var$2[297] = $rt_s(42); - var$2[298] = null; - var$2[299] = null; - var$2[300] = null; - var$2[301] = null; - var$2[302] = null; - var$2[303] = null; - var$2[304] = null; - var$2[305] = $rt_s(4461); - var$2[306] = null; - var$2[307] = null; - var$2[308] = null; - var$2[309] = null; - var$2[310] = null; - var$2[311] = null; - var$2[312] = null; - var$2[313] = null; - var$2[314] = null; - var$2[315] = null; - var$2[316] = null; - var$2[317] = null; - var$2[318] = null; - var$2[319] = null; - var$2[320] = null; - var$2[321] = null; - var$2[322] = null; - var$2[323] = null; - var$2[324] = null; - var$2[325] = null; - var$2[326] = null; - var$2[327] = null; - var$2[328] = null; - var$2[329] = $rt_s(172); - var$2[330] = null; - var$2[331] = null; - var$2[332] = null; - var$2[333] = null; - var$2[334] = null; - var$2[335] = null; - var$2[336] = null; - var$2[337] = null; - var$2[338] = null; - var$2[339] = null; - var$2[340] = null; - var$2[341] = null; - var$2[342] = null; - var$2[343] = null; - var$2[344] = null; - var$2[345] = null; - var$2[346] = null; - var$2[347] = null; - var$2[348] = null; - var$2[349] = null; - var$2[350] = null; - var$2[351] = null; - var$2[352] = null; - var$2[353] = null; - var$2[354] = null; - var$2[355] = null; - var$2[356] = null; - var$2[357] = null; - var$2[358] = null; - var$2[359] = null; - var$2[360] = null; - var$2[361] = null; - var$2[362] = null; - var$2[363] = null; - var$2[364] = null; - var$2[365] = null; - var$2[366] = null; - var$2[367] = null; - var$2[368] = null; - var$2[369] = null; - var$2[370] = null; - var$2[371] = null; - var$2[372] = null; - var$2[373] = null; - oncipj_CypherTokenManager_jjstrLiteralImages = var$1; - oncipj_CypherTokenManager_jjnextStates = $rt_createIntArrayFromData([20, 21, 22, 32, 33, 34, 42, 49, 11, 12, 13, 51, 53, 54, 2, 1, 3, 8, 5, 6, 7, 8, 20, 21, 22, 24, 23, 25, 30, 27, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 43, 44, 46, 4, 5, 6, 7, 8, 26, 27, 28, 29, 30, 35, 36, 37, 38, 39]); - oncipj_CypherTokenManager_lexStateNames = $rt_wrapArray(jl_String, [$rt_s(588), $rt_s(4462), $rt_s(4463), $rt_s(4464), $rt_s(4465), $rt_s(4466), $rt_s(4467)]); - oncipj_CypherTokenManager_jjnewLexState = $rt_createIntArrayFromData([(-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), 1, 2, 0, 0, (-1), (-1), (-1), (-1), (-1), (-1), (-1), 4, (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), 0, 5, (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), 0, 6, (-1), (-1), 0, (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), - (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), - (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), - (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), - (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1), (-1)]); - oncipj_CypherTokenManager_jjtoToken = $rt_createLongArrayFromData([Long_create(1, 1048984), Long_fromInt(-15), Long_fromInt(-1), Long_fromInt(-1), Long_fromInt(-1), Long_create(4294967295, 3997695)]); - oncipj_CypherTokenManager_jjtoSkip = $rt_createLongArrayFromData([Long_create(1073741822, 3), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjtoSpecial = $rt_createLongArrayFromData([Long_create(536870912, 3), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO]); - oncipj_CypherTokenManager_jjtoMore = $rt_createLongArrayFromData([Long_create(3221225472, 4293918212), Long_fromInt(14), Long_ZERO, Long_ZERO, Long_ZERO, Long_ZERO]); -}, -oncipj_ParseExceptions$expected$lambda$_1_0 = $rt_classWithoutFields(); -function oncipj_ParseExceptions$expected$lambda$_1_1() { - jl_Object.call(this); - this.$_01043 = null; -} -let ju_Comparator$NaturalOrder = $rt_classWithoutFields(), -ju_Comparator$NaturalOrder_INSTANCE = null, -ju_Comparator$NaturalOrder_compare = ($this, $o1, $o2) => { - return $o1.$compareTo1($o2); -}, -ju_Comparator$NaturalOrder__clinit_ = () => { - ju_Comparator$NaturalOrder_INSTANCE = new ju_Comparator$NaturalOrder; -}, -ju_SequencedMap = $rt_classWithoutFields(0); -function ju_LinkedHashMap() { - let a = this; ju_HashMap.call(a); - a.$accessOrder = 0; - a.$head2 = null; - a.$tail3 = null; -} -let ju_LinkedHashMap__init_0 = $this => { - ju_HashMap__init_1($this); - $this.$accessOrder = 0; - $this.$head2 = null; -}, -ju_LinkedHashMap__init_ = () => { - let var_0 = new ju_LinkedHashMap(); - ju_LinkedHashMap__init_0(var_0); - return var_0; -}, -ju_LinkedHashMap_newElementArray = ($this, $s) => { - return $rt_createArray(ju_LinkedHashMap$LinkedHashMapEntry, $s); -}, -ju_LinkedHashMap_getOrDefault = ($this, $key, $defaultValue) => { - let $entry, $hash; - if ($key === null) - $entry = ju_HashMap_findNullKeyEntry($this); - else { - $hash = $key.$hashCode(); - $entry = ju_HashMap_findNonNullKeyEntry($this, $key, ($hash & 2147483647) % $this.$elementData.data.length | 0, $hash); - } - if ($entry === null) - return $defaultValue; - if ($this.$accessOrder) - ju_LinkedHashMap_linkEntry($this, $entry, 0); - return $entry.$value9; -}, -ju_LinkedHashMap_get = ($this, $key) => { - return ju_LinkedHashMap_getOrDefault($this, $key, null); -}, -ju_LinkedHashMap_put = ($this, $key, $value) => { - let $oldSize, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $existing; - $oldSize = $this.$elementCount; - var$4 = $this.$accessOrder; - if (!$oldSize) { - $this.$head2 = null; - $this.$tail3 = null; - } - var$5 = ju_Objects_hashCode($key); - var$6 = var$5 & 2147483647; - var$7 = var$6 % $this.$elementData.data.length | 0; - var$8 = $key === null ? ju_HashMap_findNullKeyEntry($this) : ju_HashMap_findNonNullKeyEntry($this, $key, var$7, var$5); - if (var$8 === null) { - $this.$modCount0 = $this.$modCount0 + 1 | 0; - var$9 = $this.$elementCount + 1 | 0; - $this.$elementCount = var$9; - if (var$9 > $this.$threshold0) { - ju_HashMap_rehash($this); - var$7 = var$6 % $this.$elementData.data.length | 0; - } - var$8 = new ju_LinkedHashMap$LinkedHashMapEntry; - ju_HashMap$HashEntry__init_(var$8, $key, var$5); - var$8.$chainForward = null; - var$8.$chainBackward = null; - var$10 = $this.$elementData.data; - var$8.$next7 = var$10[var$7]; - var$10[var$7] = var$8; - $key = $this.$tail3; - if ($key === null) - $this.$head2 = var$8; - else - $key.$chainForward = var$8; - var$8.$chainBackward = $key; - $this.$tail3 = var$8; - } else if (var$4) - ju_LinkedHashMap_linkEntry($this, var$8, 0); - $existing = var$8.$value9; - var$8.$value9 = $value; - return $existing; -}, -ju_LinkedHashMap_linkEntry = ($this, $entry, $first) => { - let $n, $p; - if (!$first) { - $n = $entry.$chainForward; - if ($n === null) - return; - $p = $entry.$chainBackward; - if ($p === null) - $this.$head2 = $n; - else - $p.$chainForward = $n; - $n.$chainBackward = $p; - $n = $this.$tail3; - if ($n !== null) - $n.$chainForward = $entry; - $entry.$chainBackward = $n; - $entry.$chainForward = null; - $this.$tail3 = $entry; - } else { - $p = $entry.$chainBackward; - if ($p === null) - return; - $n = $entry.$chainForward; - if ($n === null) - $this.$tail3 = $p; - else - $n.$chainBackward = $p; - $p.$chainForward = $n; - $n = $this.$head2; - if ($n !== null) - $n.$chainBackward = $entry; - $entry.$chainForward = $n; - $entry.$chainBackward = null; - $this.$head2 = $entry; - } -}, -ju_LinkedHashMap_entrySet = $this => { - let var$1; - var$1 = new ju_LinkedHashMapEntrySet; - var$1.$base2 = $this; - var$1.$reversed1 = 0; - return var$1; -}, -ju_LinkedHashMap_keySet = $this => { - let var$1; - if ($this.$cachedKeySet === null) { - var$1 = new ju_LinkedHashMapKeySet; - var$1.$base1 = $this; - var$1.$reversed0 = 0; - $this.$cachedKeySet = var$1; - } - return $this.$cachedKeySet; -}, -ju_LinkedHashMap_remove = ($this, $key) => { - let $m; - $m = ju_HashMap_removeByKey($this, $key); - if ($m === null) - return null; - ju_LinkedHashMap_unlinkEntry($this, $m); - return $m.$value9; -}, -ju_LinkedHashMap_removeLinkedEntry = ($this, $entry) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $entry.$origKeyHash; - var$3 = $this.$elementData.data; - var$4 = var$2 & (var$3.length - 1 | 0); - var$5 = var$3[var$4]; - if (var$5 === $entry) - var$3[var$4] = $entry.$next7; - else { - while (true) { - var$6 = var$5.$next7; - if (var$6 === $entry) - break; - var$5 = var$6; - } - var$5.$next7 = $entry.$next7; - } - $this.$modCount0 = $this.$modCount0 + 1 | 0; - $this.$elementCount = $this.$elementCount - 1 | 0; - ju_LinkedHashMap_unlinkEntry($this, $entry); -}, -ju_LinkedHashMap_unlinkEntry = ($this, $entry) => { - let $p, $n; - $p = $entry.$chainBackward; - $n = $entry.$chainForward; - if ($p !== null) { - $p.$chainForward = $n; - if ($n === null) - $this.$tail3 = $p; - else - $n.$chainBackward = $p; - } else { - $this.$head2 = $n; - if ($n === null) - $this.$tail3 = null; - else - $n.$chainBackward = null; - } -}, -oncipj_IdentifierTokens = $rt_classWithoutFields(), -oncipj_IdentifierTokens_identifiers = null, -oncipj_IdentifierTokens_$callClinit = () => { - oncipj_IdentifierTokens_$callClinit = $rt_eraseClinit(oncipj_IdentifierTokens); - oncipj_IdentifierTokens__clinit_(); -}, -oncipj_IdentifierTokens__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new ju_HashSet; - var$2 = $rt_createArray(jl_Integer, 267); - var$3 = var$2.data; - var$3[0] = jl_Integer_valueOf(68); - var$3[1] = jl_Integer_valueOf(69); - var$3[2] = jl_Integer_valueOf(70); - var$3[3] = jl_Integer_valueOf(71); - var$3[4] = jl_Integer_valueOf(72); - var$3[5] = jl_Integer_valueOf(73); - var$3[6] = jl_Integer_valueOf(74); - var$3[7] = jl_Integer_valueOf(75); - var$3[8] = jl_Integer_valueOf(76); - var$3[9] = jl_Integer_valueOf(77); - var$3[10] = jl_Integer_valueOf(78); - var$3[11] = jl_Integer_valueOf(79); - var$3[12] = jl_Integer_valueOf(80); - var$3[13] = jl_Integer_valueOf(81); - var$3[14] = jl_Integer_valueOf(82); - var$3[15] = jl_Integer_valueOf(83); - var$3[16] = jl_Integer_valueOf(84); - var$3[17] = jl_Integer_valueOf(85); - var$3[18] = jl_Integer_valueOf(86); - var$3[19] = jl_Integer_valueOf(87); - var$3[20] = jl_Integer_valueOf(89); - var$3[21] = jl_Integer_valueOf(90); - var$3[22] = jl_Integer_valueOf(91); - var$3[23] = jl_Integer_valueOf(92); - var$3[24] = jl_Integer_valueOf(93); - var$3[25] = jl_Integer_valueOf(94); - var$3[26] = jl_Integer_valueOf(95); - var$3[27] = jl_Integer_valueOf(96); - var$3[28] = jl_Integer_valueOf(97); - var$3[29] = jl_Integer_valueOf(98); - var$3[30] = jl_Integer_valueOf(99); - var$3[31] = jl_Integer_valueOf(100); - var$3[32] = jl_Integer_valueOf(101); - var$3[33] = jl_Integer_valueOf(103); - var$3[34] = jl_Integer_valueOf(102); - var$3[35] = jl_Integer_valueOf(104); - var$3[36] = jl_Integer_valueOf(108); - var$3[37] = jl_Integer_valueOf(109); - var$3[38] = jl_Integer_valueOf(110); - var$3[39] = jl_Integer_valueOf(111); - var$3[40] = jl_Integer_valueOf(112); - var$3[41] = jl_Integer_valueOf(113); - var$3[42] = jl_Integer_valueOf(114); - var$3[43] = jl_Integer_valueOf(115); - var$3[44] = jl_Integer_valueOf(117); - var$3[45] = jl_Integer_valueOf(116); - var$3[46] = jl_Integer_valueOf(118); - var$3[47] = jl_Integer_valueOf(119); - var$3[48] = jl_Integer_valueOf(120); - var$3[49] = jl_Integer_valueOf(121); - var$3[50] = jl_Integer_valueOf(122); - var$3[51] = jl_Integer_valueOf(123); - var$3[52] = jl_Integer_valueOf(124); - var$3[53] = jl_Integer_valueOf(125); - var$3[54] = jl_Integer_valueOf(126); - var$3[55] = jl_Integer_valueOf(127); - var$3[56] = jl_Integer_valueOf(128); - var$3[57] = jl_Integer_valueOf(129); - var$3[58] = jl_Integer_valueOf(130); - var$3[59] = jl_Integer_valueOf(131); - var$3[60] = jl_Integer_valueOf(132); - var$3[61] = jl_Integer_valueOf(133); - var$3[62] = jl_Integer_valueOf(134); - var$3[63] = jl_Integer_valueOf(135); - var$3[64] = jl_Integer_valueOf(136); - var$3[65] = jl_Integer_valueOf(139); - var$3[66] = jl_Integer_valueOf(140); - var$3[67] = jl_Integer_valueOf(144); - var$3[68] = jl_Integer_valueOf(145); - var$3[69] = jl_Integer_valueOf(146); - var$3[70] = jl_Integer_valueOf(147); - var$3[71] = jl_Integer_valueOf(148); - var$3[72] = jl_Integer_valueOf(149); - var$3[73] = jl_Integer_valueOf(150); - var$3[74] = jl_Integer_valueOf(152); - var$3[75] = jl_Integer_valueOf(153); - var$3[76] = jl_Integer_valueOf(154); - var$3[77] = jl_Integer_valueOf(151); - var$3[78] = jl_Integer_valueOf(155); - var$3[79] = jl_Integer_valueOf(156); - var$3[80] = jl_Integer_valueOf(157); - var$3[81] = jl_Integer_valueOf(164); - var$3[82] = jl_Integer_valueOf(159); - var$3[83] = jl_Integer_valueOf(160); - var$3[84] = jl_Integer_valueOf(161); - var$3[85] = jl_Integer_valueOf(162); - var$3[86] = jl_Integer_valueOf(163); - var$3[87] = jl_Integer_valueOf(165); - var$3[88] = jl_Integer_valueOf(166); - var$3[89] = jl_Integer_valueOf(167); - var$3[90] = jl_Integer_valueOf(168); - var$3[91] = jl_Integer_valueOf(169); - var$3[92] = jl_Integer_valueOf(170); - var$3[93] = jl_Integer_valueOf(171); - var$3[94] = jl_Integer_valueOf(172); - var$3[95] = jl_Integer_valueOf(173); - var$3[96] = jl_Integer_valueOf(174); - var$3[97] = jl_Integer_valueOf(175); - var$3[98] = jl_Integer_valueOf(177); - var$3[99] = jl_Integer_valueOf(178); - var$3[100] = jl_Integer_valueOf(179); - var$3[101] = jl_Integer_valueOf(180); - var$3[102] = jl_Integer_valueOf(181); - var$3[103] = jl_Integer_valueOf(183); - var$3[104] = jl_Integer_valueOf(184); - var$3[105] = jl_Integer_valueOf(367); - var$3[106] = jl_Integer_valueOf(185); - var$3[107] = jl_Integer_valueOf(186); - var$3[108] = jl_Integer_valueOf(187); - var$3[109] = jl_Integer_valueOf(188); - var$3[110] = jl_Integer_valueOf(189); - var$3[111] = jl_Integer_valueOf(190); - var$3[112] = jl_Integer_valueOf(191); - var$3[113] = jl_Integer_valueOf(192); - var$3[114] = jl_Integer_valueOf(193); - var$3[115] = jl_Integer_valueOf(194); - var$3[116] = jl_Integer_valueOf(195); - var$3[117] = jl_Integer_valueOf(196); - var$3[118] = jl_Integer_valueOf(197); - var$3[119] = jl_Integer_valueOf(198); - var$3[120] = jl_Integer_valueOf(199); - var$3[121] = jl_Integer_valueOf(200); - var$3[122] = jl_Integer_valueOf(201); - var$3[123] = jl_Integer_valueOf(207); - var$3[124] = jl_Integer_valueOf(208); - var$3[125] = jl_Integer_valueOf(209); - var$3[126] = jl_Integer_valueOf(210); - var$3[127] = jl_Integer_valueOf(211); - var$3[128] = jl_Integer_valueOf(212); - var$3[129] = jl_Integer_valueOf(215); - var$3[130] = jl_Integer_valueOf(216); - var$3[131] = jl_Integer_valueOf(217); - var$3[132] = jl_Integer_valueOf(218); - var$3[133] = jl_Integer_valueOf(223); - var$3[134] = jl_Integer_valueOf(224); - var$3[135] = jl_Integer_valueOf(225); - var$3[136] = jl_Integer_valueOf(226); - var$3[137] = jl_Integer_valueOf(227); - var$3[138] = jl_Integer_valueOf(228); - var$3[139] = jl_Integer_valueOf(229); - var$3[140] = jl_Integer_valueOf(230); - var$3[141] = jl_Integer_valueOf(231); - var$3[142] = jl_Integer_valueOf(232); - var$3[143] = jl_Integer_valueOf(233); - var$3[144] = jl_Integer_valueOf(234); - var$3[145] = jl_Integer_valueOf(235); - var$3[146] = jl_Integer_valueOf(236); - var$3[147] = jl_Integer_valueOf(237); - var$3[148] = jl_Integer_valueOf(238); - var$3[149] = jl_Integer_valueOf(239); - var$3[150] = jl_Integer_valueOf(240); - var$3[151] = jl_Integer_valueOf(241); - var$3[152] = jl_Integer_valueOf(242); - var$3[153] = jl_Integer_valueOf(243); - var$3[154] = jl_Integer_valueOf(244); - var$3[155] = jl_Integer_valueOf(246); - var$3[156] = jl_Integer_valueOf(247); - var$3[157] = jl_Integer_valueOf(245); - var$3[158] = jl_Integer_valueOf(248); - var$3[159] = jl_Integer_valueOf(249); - var$3[160] = jl_Integer_valueOf(250); - var$3[161] = jl_Integer_valueOf(251); - var$3[162] = jl_Integer_valueOf(252); - var$3[163] = jl_Integer_valueOf(253); - var$3[164] = jl_Integer_valueOf(254); - var$3[165] = jl_Integer_valueOf(255); - var$3[166] = jl_Integer_valueOf(256); - var$3[167] = jl_Integer_valueOf(259); - var$3[168] = jl_Integer_valueOf(260); - var$3[169] = jl_Integer_valueOf(263); - var$3[170] = jl_Integer_valueOf(264); - var$3[171] = jl_Integer_valueOf(265); - var$3[172] = jl_Integer_valueOf(266); - var$3[173] = jl_Integer_valueOf(267); - var$3[174] = jl_Integer_valueOf(268); - var$3[175] = jl_Integer_valueOf(269); - var$3[176] = jl_Integer_valueOf(270); - var$3[177] = jl_Integer_valueOf(271); - var$3[178] = jl_Integer_valueOf(272); - var$3[179] = jl_Integer_valueOf(274); - var$3[180] = jl_Integer_valueOf(277); - var$3[181] = jl_Integer_valueOf(278); - var$3[182] = jl_Integer_valueOf(279); - var$3[183] = jl_Integer_valueOf(282); - var$3[184] = jl_Integer_valueOf(283); - var$3[185] = jl_Integer_valueOf(284); - var$3[186] = jl_Integer_valueOf(285); - var$3[187] = jl_Integer_valueOf(280); - var$3[188] = jl_Integer_valueOf(262); - var$3[189] = jl_Integer_valueOf(286); - var$3[190] = jl_Integer_valueOf(287); - var$3[191] = jl_Integer_valueOf(288); - var$3[192] = jl_Integer_valueOf(289); - var$3[193] = jl_Integer_valueOf(290); - var$3[194] = jl_Integer_valueOf(291); - var$3[195] = jl_Integer_valueOf(292); - var$3[196] = jl_Integer_valueOf(293); - var$3[197] = jl_Integer_valueOf(294); - var$3[198] = jl_Integer_valueOf(295); - var$3[199] = jl_Integer_valueOf(296); - var$3[200] = jl_Integer_valueOf(298); - var$3[201] = jl_Integer_valueOf(299); - var$3[202] = jl_Integer_valueOf(300); - var$3[203] = jl_Integer_valueOf(301); - var$3[204] = jl_Integer_valueOf(302); - var$3[205] = jl_Integer_valueOf(303); - var$3[206] = jl_Integer_valueOf(304); - var$3[207] = jl_Integer_valueOf(306); - var$3[208] = jl_Integer_valueOf(307); - var$3[209] = jl_Integer_valueOf(308); - var$3[210] = jl_Integer_valueOf(309); - var$3[211] = jl_Integer_valueOf(310); - var$3[212] = jl_Integer_valueOf(312); - var$3[213] = jl_Integer_valueOf(311); - var$3[214] = jl_Integer_valueOf(313); - var$3[215] = jl_Integer_valueOf(314); - var$3[216] = jl_Integer_valueOf(315); - var$3[217] = jl_Integer_valueOf(316); - var$3[218] = jl_Integer_valueOf(317); - var$3[219] = jl_Integer_valueOf(318); - var$3[220] = jl_Integer_valueOf(319); - var$3[221] = jl_Integer_valueOf(320); - var$3[222] = jl_Integer_valueOf(321); - var$3[223] = jl_Integer_valueOf(322); - var$3[224] = jl_Integer_valueOf(323); - var$3[225] = jl_Integer_valueOf(324); - var$3[226] = jl_Integer_valueOf(325); - var$3[227] = jl_Integer_valueOf(326); - var$3[228] = jl_Integer_valueOf(327); - var$3[229] = jl_Integer_valueOf(328); - var$3[230] = jl_Integer_valueOf(330); - var$3[231] = jl_Integer_valueOf(331); - var$3[232] = jl_Integer_valueOf(332); - var$3[233] = jl_Integer_valueOf(333); - var$3[234] = jl_Integer_valueOf(334); - var$3[235] = jl_Integer_valueOf(335); - var$3[236] = jl_Integer_valueOf(336); - var$3[237] = jl_Integer_valueOf(337); - var$3[238] = jl_Integer_valueOf(338); - var$3[239] = jl_Integer_valueOf(339); - var$3[240] = jl_Integer_valueOf(340); - var$3[241] = jl_Integer_valueOf(341); - var$3[242] = jl_Integer_valueOf(342); - var$3[243] = jl_Integer_valueOf(343); - var$3[244] = jl_Integer_valueOf(344); - var$3[245] = jl_Integer_valueOf(345); - var$3[246] = jl_Integer_valueOf(346); - var$3[247] = jl_Integer_valueOf(347); - var$3[248] = jl_Integer_valueOf(348); - var$3[249] = jl_Integer_valueOf(349); - var$3[250] = jl_Integer_valueOf(350); - var$3[251] = jl_Integer_valueOf(351); - var$3[252] = jl_Integer_valueOf(353); - var$3[253] = jl_Integer_valueOf(352); - var$3[254] = jl_Integer_valueOf(354); - var$3[255] = jl_Integer_valueOf(355); - var$3[256] = jl_Integer_valueOf(356); - var$3[257] = jl_Integer_valueOf(357); - var$3[258] = jl_Integer_valueOf(361); - var$3[259] = jl_Integer_valueOf(358); - var$3[260] = jl_Integer_valueOf(359); - var$3[261] = jl_Integer_valueOf(360); - var$3[262] = jl_Integer_valueOf(362); - var$3[263] = jl_Integer_valueOf(363); - var$3[264] = jl_Integer_valueOf(364); - var$3[265] = jl_Integer_valueOf(365); - var$3[266] = jl_Integer_valueOf(366); - ju_HashSet__init_1(var$1, ju_Arrays_asList(var$2)); - oncipj_IdentifierTokens_identifiers = var$1; -}; -function oncipj_ParseExceptions$processExpectedList$lambda$_2_0() { - let a = this; jl_Object.call(a); - a.$_0480 = null; - a.$_1168 = null; -} -let oncipj_ParseExceptions$processExpectedList$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0480.data; - var$3 = var$0.$_1168; - var$1 = var$2[var$1.$value4]; - if (jl_String_equals(var$1, $rt_s(4139)) && !jl_String_equals(var$3, $rt_s(91))) - var$1 = $rt_s(4468); - return var$1; -}, -oncipj_ExpressionTokens = $rt_classWithoutFields(), -oncipj_ExpressionTokens_expressions = null, -oncipj_ExpressionTokens_$callClinit = () => { - oncipj_ExpressionTokens_$callClinit = $rt_eraseClinit(oncipj_ExpressionTokens); - oncipj_ExpressionTokens__clinit_(); -}, -oncipj_ExpressionTokens__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new ju_HashSet; - var$2 = $rt_createArray(jl_Integer, 13); - var$3 = var$2.data; - var$3[0] = jl_Integer_valueOf(35); - var$3[1] = jl_Integer_valueOf(137); - var$3[2] = jl_Integer_valueOf(367); - var$3[3] = jl_Integer_valueOf(204); - var$3[4] = jl_Integer_valueOf(205); - var$3[5] = jl_Integer_valueOf(213); - var$3[6] = jl_Integer_valueOf(219); - var$3[7] = jl_Integer_valueOf(257); - var$3[8] = jl_Integer_valueOf(52); - var$3[9] = jl_Integer_valueOf(64); - var$3[10] = jl_Integer_valueOf(36); - var$3[11] = jl_Integer_valueOf(39); - var$3[12] = jl_Integer_valueOf(40); - ju_HashSet__init_1(var$1, ju_Arrays_asList(var$2)); - oncipj_ExpressionTokens_expressions = var$1; -}, -jus_Collectors$toList$lambda$_2_0 = $rt_classWithoutFields(), -jus_Collectors$toList$lambda$_2_0_get = var$0 => { - return ju_ArrayList__init_(); -}; -function oncipcaf_CreateIndexTypes() { - jl_Enum.call(this); - this.$description8 = null; -} -let oncipcaf_CreateIndexTypes_BTREE = null, -oncipcaf_CreateIndexTypes_RANGE = null, -oncipcaf_CreateIndexTypes_FULLTEXT = null, -oncipcaf_CreateIndexTypes_LOOKUP = null, -oncipcaf_CreateIndexTypes_TEXT = null, -oncipcaf_CreateIndexTypes_POINT = null, -oncipcaf_CreateIndexTypes_VECTOR = null, -oncipcaf_CreateIndexTypes_DEFAULT = null, -oncipcaf_CreateIndexTypes_INVALID = null, -oncipcaf_CreateIndexTypes_$VALUES = null, -oncipcaf_CreateIndexTypes_values = () => { - return oncipcaf_CreateIndexTypes_$VALUES.$clone0(); -}, -oncipcaf_CreateIndexTypes__init_0 = ($this, var$1, var$2, $description) => { - jl_Enum__init_($this, var$1, var$2); - $this.$description8 = $description; -}, -oncipcaf_CreateIndexTypes__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncipcaf_CreateIndexTypes(); - oncipcaf_CreateIndexTypes__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncipcaf_CreateIndexTypes__clinit_ = () => { - let var$1, var$2, var$3; - oncipcaf_CreateIndexTypes_BTREE = oncipcaf_CreateIndexTypes__init_($rt_s(1065), 0, $rt_s(1065)); - oncipcaf_CreateIndexTypes_RANGE = oncipcaf_CreateIndexTypes__init_($rt_s(1067), 1, $rt_s(1067)); - oncipcaf_CreateIndexTypes_FULLTEXT = oncipcaf_CreateIndexTypes__init_($rt_s(3496), 2, $rt_s(3496)); - oncipcaf_CreateIndexTypes_LOOKUP = oncipcaf_CreateIndexTypes__init_($rt_s(3497), 3, $rt_s(3497)); - oncipcaf_CreateIndexTypes_TEXT = oncipcaf_CreateIndexTypes__init_($rt_s(1066), 4, $rt_s(1066)); - oncipcaf_CreateIndexTypes_POINT = oncipcaf_CreateIndexTypes__init_($rt_s(734), 5, $rt_s(734)); - oncipcaf_CreateIndexTypes_VECTOR = oncipcaf_CreateIndexTypes__init_($rt_s(3498), 6, $rt_s(3498)); - oncipcaf_CreateIndexTypes_DEFAULT = oncipcaf_CreateIndexTypes__init_($rt_s(588), 7, $rt_s(588)); - var$1 = oncipcaf_CreateIndexTypes__init_($rt_s(4469), 8, $rt_s(4469)); - oncipcaf_CreateIndexTypes_INVALID = var$1; - var$2 = $rt_createArray(oncipcaf_CreateIndexTypes, 9); - var$3 = var$2.data; - var$3[0] = oncipcaf_CreateIndexTypes_BTREE; - var$3[1] = oncipcaf_CreateIndexTypes_RANGE; - var$3[2] = oncipcaf_CreateIndexTypes_FULLTEXT; - var$3[3] = oncipcaf_CreateIndexTypes_LOOKUP; - var$3[4] = oncipcaf_CreateIndexTypes_TEXT; - var$3[5] = oncipcaf_CreateIndexTypes_POINT; - var$3[6] = oncipcaf_CreateIndexTypes_VECTOR; - var$3[7] = oncipcaf_CreateIndexTypes_DEFAULT; - var$3[8] = var$1; - oncipcaf_CreateIndexTypes_$VALUES = var$2; -}, -oncipcaf_ConstraintVersion = $rt_classWithoutFields(jl_Enum), -oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_0 = null, -oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_1 = null, -oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_2 = null, -oncipcaf_ConstraintVersion_$VALUES = null, -oncipcaf_ConstraintVersion_values = () => { - return oncipcaf_ConstraintVersion_$VALUES.$clone0(); -}, -oncipcaf_ConstraintVersion__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncipcaf_ConstraintVersion; - jl_Enum__init_(var$1, $rt_s(4470), 0); - oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_0 = var$1; - var$1 = new oncipcaf_ConstraintVersion; - jl_Enum__init_(var$1, $rt_s(4471), 1); - oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_1 = var$1; - var$1 = new oncipcaf_ConstraintVersion; - jl_Enum__init_(var$1, $rt_s(4472), 2); - oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_2 = var$1; - var$2 = $rt_createArray(oncipcaf_ConstraintVersion, 3); - var$3 = var$2.data; - var$3[0] = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_0; - var$3[1] = oncipcaf_ConstraintVersion_CONSTRAINT_VERSION_1; - var$3[2] = var$1; - oncipcaf_ConstraintVersion_$VALUES = var$2; -}; -function oncipcaf_ConstraintType() { - jl_Enum.call(this); - this.$description0 = null; -} -let oncipcaf_ConstraintType_NODE_UNIQUE = null, -oncipcaf_ConstraintType_REL_UNIQUE = null, -oncipcaf_ConstraintType_NODE_KEY = null, -oncipcaf_ConstraintType_REL_KEY = null, -oncipcaf_ConstraintType_NODE_EXISTS = null, -oncipcaf_ConstraintType_NODE_IS_NOT_NULL = null, -oncipcaf_ConstraintType_REL_EXISTS = null, -oncipcaf_ConstraintType_REL_IS_NOT_NULL = null, -oncipcaf_ConstraintType_NODE_IS_TYPED = null, -oncipcaf_ConstraintType_REL_IS_TYPED = null, -oncipcaf_ConstraintType_$VALUES = null, -oncipcaf_ConstraintType_values = () => { - return oncipcaf_ConstraintType_$VALUES.$clone0(); -}, -oncipcaf_ConstraintType__init_0 = ($this, var$1, var$2, $description) => { - jl_Enum__init_($this, var$1, var$2); - $this.$description0 = $description; -}, -oncipcaf_ConstraintType__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncipcaf_ConstraintType(); - oncipcaf_ConstraintType__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncipcaf_ConstraintType__clinit_ = () => { - let var$1, var$2, var$3; - oncipcaf_ConstraintType_NODE_UNIQUE = oncipcaf_ConstraintType__init_($rt_s(4473), 0, $rt_s(4474)); - oncipcaf_ConstraintType_REL_UNIQUE = oncipcaf_ConstraintType__init_($rt_s(4475), 1, $rt_s(4476)); - oncipcaf_ConstraintType_NODE_KEY = oncipcaf_ConstraintType__init_($rt_s(4477), 2, $rt_s(4478)); - oncipcaf_ConstraintType_REL_KEY = oncipcaf_ConstraintType__init_($rt_s(4479), 3, $rt_s(4480)); - oncipcaf_ConstraintType_NODE_EXISTS = oncipcaf_ConstraintType__init_($rt_s(4481), 4, $rt_s(4482)); - oncipcaf_ConstraintType_NODE_IS_NOT_NULL = oncipcaf_ConstraintType__init_($rt_s(4483), 5, $rt_s(438)); - oncipcaf_ConstraintType_REL_EXISTS = oncipcaf_ConstraintType__init_($rt_s(4484), 6, $rt_s(4482)); - oncipcaf_ConstraintType_REL_IS_NOT_NULL = oncipcaf_ConstraintType__init_($rt_s(4485), 7, $rt_s(438)); - oncipcaf_ConstraintType_NODE_IS_TYPED = oncipcaf_ConstraintType__init_($rt_s(4486), 8, $rt_s(4487)); - var$1 = oncipcaf_ConstraintType__init_($rt_s(4488), 9, $rt_s(4487)); - oncipcaf_ConstraintType_REL_IS_TYPED = var$1; - var$2 = $rt_createArray(oncipcaf_ConstraintType, 10); - var$3 = var$2.data; - var$3[0] = oncipcaf_ConstraintType_NODE_UNIQUE; - var$3[1] = oncipcaf_ConstraintType_REL_UNIQUE; - var$3[2] = oncipcaf_ConstraintType_NODE_KEY; - var$3[3] = oncipcaf_ConstraintType_REL_KEY; - var$3[4] = oncipcaf_ConstraintType_NODE_EXISTS; - var$3[5] = oncipcaf_ConstraintType_NODE_IS_NOT_NULL; - var$3[6] = oncipcaf_ConstraintType_REL_EXISTS; - var$3[7] = oncipcaf_ConstraintType_REL_IS_NOT_NULL; - var$3[8] = oncipcaf_ConstraintType_NODE_IS_TYPED; - var$3[9] = var$1; - oncipcaf_ConstraintType_$VALUES = var$2; -}; -function onciaf_ASTFactory$StringPos() { - let a = this; jl_Object.call(a); - a.$string = null; - a.$pos3 = null; - a.$endPos0 = null; -} -let onciaf_ASTFactory$StringPos__init_0 = ($this, $string, $pos) => { - $this.$string = $string; - $this.$pos3 = $pos; - $this.$endPos0 = null; -}, -onciaf_ASTFactory$StringPos__init_ = (var_0, var_1) => { - let var_2 = new onciaf_ASTFactory$StringPos(); - onciaf_ASTFactory$StringPos__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncipcaf_ShowCommandFilterTypes() { - jl_Enum.call(this); - this.$description6 = null; -} -let oncipcaf_ShowCommandFilterTypes_BTREE = null, -oncipcaf_ShowCommandFilterTypes_RANGE = null, -oncipcaf_ShowCommandFilterTypes_FULLTEXT = null, -oncipcaf_ShowCommandFilterTypes_TEXT = null, -oncipcaf_ShowCommandFilterTypes_POINT = null, -oncipcaf_ShowCommandFilterTypes_VECTOR = null, -oncipcaf_ShowCommandFilterTypes_LOOKUP = null, -oncipcaf_ShowCommandFilterTypes_UNIQUE = null, -oncipcaf_ShowCommandFilterTypes_NODE_UNIQUE = null, -oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_UNIQUE = null, -oncipcaf_ShowCommandFilterTypes_KEY = null, -oncipcaf_ShowCommandFilterTypes_NODE_KEY = null, -oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_KEY = null, -oncipcaf_ShowCommandFilterTypes_OLD_EXIST = null, -oncipcaf_ShowCommandFilterTypes_EXIST = null, -oncipcaf_ShowCommandFilterTypes_NODE_OLD_EXIST = null, -oncipcaf_ShowCommandFilterTypes_NODE_EXIST = null, -oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_OLD_EXIST = null, -oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST = null, -oncipcaf_ShowCommandFilterTypes_PROP_TYPE = null, -oncipcaf_ShowCommandFilterTypes_NODE_PROP_TYPE = null, -oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_PROP_TYPE = null, -oncipcaf_ShowCommandFilterTypes_BUILT_IN = null, -oncipcaf_ShowCommandFilterTypes_USER_DEFINED = null, -oncipcaf_ShowCommandFilterTypes_ALL = null, -oncipcaf_ShowCommandFilterTypes_INVALID = null, -oncipcaf_ShowCommandFilterTypes_$VALUES = null, -oncipcaf_ShowCommandFilterTypes_values = () => { - return oncipcaf_ShowCommandFilterTypes_$VALUES.$clone0(); -}, -oncipcaf_ShowCommandFilterTypes__init_0 = ($this, var$1, var$2, $description) => { - jl_Enum__init_($this, var$1, var$2); - $this.$description6 = $description; -}, -oncipcaf_ShowCommandFilterTypes__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncipcaf_ShowCommandFilterTypes(); - oncipcaf_ShowCommandFilterTypes__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncipcaf_ShowCommandFilterTypes__clinit_ = () => { - let var$1, var$2, var$3; - oncipcaf_ShowCommandFilterTypes_BTREE = oncipcaf_ShowCommandFilterTypes__init_($rt_s(1065), 0, $rt_s(1065)); - oncipcaf_ShowCommandFilterTypes_RANGE = oncipcaf_ShowCommandFilterTypes__init_($rt_s(1067), 1, $rt_s(1067)); - oncipcaf_ShowCommandFilterTypes_FULLTEXT = oncipcaf_ShowCommandFilterTypes__init_($rt_s(3496), 2, $rt_s(3496)); - oncipcaf_ShowCommandFilterTypes_TEXT = oncipcaf_ShowCommandFilterTypes__init_($rt_s(1066), 3, $rt_s(1066)); - oncipcaf_ShowCommandFilterTypes_POINT = oncipcaf_ShowCommandFilterTypes__init_($rt_s(734), 4, $rt_s(734)); - oncipcaf_ShowCommandFilterTypes_VECTOR = oncipcaf_ShowCommandFilterTypes__init_($rt_s(3498), 5, $rt_s(3498)); - oncipcaf_ShowCommandFilterTypes_LOOKUP = oncipcaf_ShowCommandFilterTypes__init_($rt_s(3497), 6, $rt_s(3497)); - oncipcaf_ShowCommandFilterTypes_UNIQUE = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4489), 7, $rt_s(4490)); - oncipcaf_ShowCommandFilterTypes_NODE_UNIQUE = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4473), 8, $rt_s(4491)); - oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_UNIQUE = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4492), 9, $rt_s(4493)); - oncipcaf_ShowCommandFilterTypes_KEY = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4494), 10, $rt_s(4494)); - oncipcaf_ShowCommandFilterTypes_NODE_KEY = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4477), 11, $rt_s(4495)); - oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_KEY = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4496), 12, $rt_s(4497)); - oncipcaf_ShowCommandFilterTypes_OLD_EXIST = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4498), 13, $rt_s(4499)); - oncipcaf_ShowCommandFilterTypes_EXIST = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4499), 14, $rt_s(4500)); - oncipcaf_ShowCommandFilterTypes_NODE_OLD_EXIST = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4501), 15, $rt_s(4502)); - oncipcaf_ShowCommandFilterTypes_NODE_EXIST = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4503), 16, $rt_s(4504)); - oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_OLD_EXIST = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4505), 17, $rt_s(4506)); - oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4507), 18, $rt_s(4508)); - oncipcaf_ShowCommandFilterTypes_PROP_TYPE = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4509), 19, $rt_s(4510)); - oncipcaf_ShowCommandFilterTypes_NODE_PROP_TYPE = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4511), 20, $rt_s(4512)); - oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_PROP_TYPE = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4513), 21, $rt_s(4514)); - oncipcaf_ShowCommandFilterTypes_BUILT_IN = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4515), 22, $rt_s(4516)); - oncipcaf_ShowCommandFilterTypes_USER_DEFINED = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4517), 23, $rt_s(4518)); - oncipcaf_ShowCommandFilterTypes_ALL = oncipcaf_ShowCommandFilterTypes__init_($rt_s(563), 24, $rt_s(563)); - var$1 = oncipcaf_ShowCommandFilterTypes__init_($rt_s(4469), 25, $rt_s(4469)); - oncipcaf_ShowCommandFilterTypes_INVALID = var$1; - var$2 = $rt_createArray(oncipcaf_ShowCommandFilterTypes, 26); - var$3 = var$2.data; - var$3[0] = oncipcaf_ShowCommandFilterTypes_BTREE; - var$3[1] = oncipcaf_ShowCommandFilterTypes_RANGE; - var$3[2] = oncipcaf_ShowCommandFilterTypes_FULLTEXT; - var$3[3] = oncipcaf_ShowCommandFilterTypes_TEXT; - var$3[4] = oncipcaf_ShowCommandFilterTypes_POINT; - var$3[5] = oncipcaf_ShowCommandFilterTypes_VECTOR; - var$3[6] = oncipcaf_ShowCommandFilterTypes_LOOKUP; - var$3[7] = oncipcaf_ShowCommandFilterTypes_UNIQUE; - var$3[8] = oncipcaf_ShowCommandFilterTypes_NODE_UNIQUE; - var$3[9] = oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_UNIQUE; - var$3[10] = oncipcaf_ShowCommandFilterTypes_KEY; - var$3[11] = oncipcaf_ShowCommandFilterTypes_NODE_KEY; - var$3[12] = oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_KEY; - var$3[13] = oncipcaf_ShowCommandFilterTypes_OLD_EXIST; - var$3[14] = oncipcaf_ShowCommandFilterTypes_EXIST; - var$3[15] = oncipcaf_ShowCommandFilterTypes_NODE_OLD_EXIST; - var$3[16] = oncipcaf_ShowCommandFilterTypes_NODE_EXIST; - var$3[17] = oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_OLD_EXIST; - var$3[18] = oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_EXIST; - var$3[19] = oncipcaf_ShowCommandFilterTypes_PROP_TYPE; - var$3[20] = oncipcaf_ShowCommandFilterTypes_NODE_PROP_TYPE; - var$3[21] = oncipcaf_ShowCommandFilterTypes_RELATIONSHIP_PROP_TYPE; - var$3[22] = oncipcaf_ShowCommandFilterTypes_BUILT_IN; - var$3[23] = oncipcaf_ShowCommandFilterTypes_USER_DEFINED; - var$3[24] = oncipcaf_ShowCommandFilterTypes_ALL; - var$3[25] = var$1; - oncipcaf_ShowCommandFilterTypes_$VALUES = var$2; -}; -function oncipj_AliasName() { - let a = this; jl_Object.call(a); - a.$exceptionFactory4 = null; - a.$names0 = null; - a.$parameter4 = null; - a.$componentCount = 0; - a.$lastToken = null; -} -let oncipj_AliasName_getRemoteAliasName = ($this, $astFactory) => { - let var$2, var$3, var$4; - var$2 = $this.$parameter4; - if (var$2 !== null) - return onciafn_Neo4jASTFactory_databaseName0($astFactory, var$2); - var$2 = $this.$names0; - if (var$2.$size0 <= 2) - return onciafn_Neo4jASTFactory_databaseName($astFactory, onciafn_Neo4jASTFactory_inputPosition($astFactory, (ju_ArrayList_get(var$2, 0)).$beginOffset, (ju_ArrayList_get($this.$names0, 0)).$beginLine, (ju_ArrayList_get($this.$names0, 0)).$beginColumn), oncipj_AliasName_tokensAsStrings($this)); - $astFactory = $this.$exceptionFactory4; - var$2 = new oncipj_ParseException; - var$3 = oncipj_AliasName_originalRepresentation($this); - var$4 = $rt_createArray(jl_Object, 1); - var$4.data[0] = var$3; - jl_Throwable__init_0(var$2, jl_String_format($rt_s(4519), var$4)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($astFactory, var$2, (ju_ArrayList_get($this.$names0, 0)).$beginOffset, (ju_ArrayList_get($this.$names0, 0)).$beginLine, (ju_ArrayList_get($this.$names0, 0)).$beginColumn)); -}, -oncipj_AliasName_getLocalAliasName = ($this, $astFactory) => { - let $invalidToken, var$3, var$4; - $invalidToken = $this.$parameter4; - if ($invalidToken !== null) - return onciafn_Neo4jASTFactory_databaseName0($astFactory, $invalidToken); - if ($this.$componentCount > 2) { - $invalidToken = ju_Collection_stream($this.$names0); - var$3 = new oncipj_AliasName$getLocalAliasName$lambda$_5_0; - var$3.$_0245 = $this; - if (ju_Optional_isPresent(jusi_SimpleStreamImpl_findFirst(jusi_SimpleStreamImpl_filter($invalidToken, var$3)))) { - $astFactory = $this.$exceptionFactory4; - $invalidToken = new oncipj_ParseException; - var$3 = oncipj_AliasName_originalRepresentation($this); - var$4 = $rt_createArray(jl_Object, 1); - var$4.data[0] = var$3; - jl_Throwable__init_0($invalidToken, jl_String_format($rt_s(4520), var$4)); - $rt_throw(onciafn_Neo4jASTExceptionFactory_syntaxException($astFactory, $invalidToken, (ju_ArrayList_get($this.$names0, 0)).$beginOffset, (ju_ArrayList_get($this.$names0, 0)).$beginLine, (ju_ArrayList_get($this.$names0, 0)).$beginColumn)); - } - } - return onciafn_Neo4jASTFactory_databaseName($astFactory, onciafn_Neo4jASTFactory_inputPosition($astFactory, (ju_ArrayList_get($this.$names0, 0)).$beginOffset, (ju_ArrayList_get($this.$names0, 0)).$beginLine, (ju_ArrayList_get($this.$names0, 0)).$beginColumn), oncipj_AliasName_tokensAsStrings($this)); -}, -oncipj_AliasName_isEscaped = ($this, $token) => { - return $token.$kind != 68 ? 0 : 1; -}, -oncipj_AliasName_tokensAsStrings = $this => { - return jus_Stream_toList(jusi_SimpleStreamImpl_map(ju_Collection_stream($this.$names0), new oncipj_AliasName$tokensAsStrings$lambda$_7_0)); -}, -oncipj_AliasName_originalRepresentation = $this => { - let var$1, var$2; - var$1 = ju_Collection_stream($this.$names0); - var$2 = new oncipj_AliasName$originalRepresentation$lambda$_8_0; - var$2.$_0554 = $this; - return jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(var$1, var$2), jus_Collectors_joining($rt_s(403))); -}, -oncipcaf_ParameterType = $rt_classWithoutFields(jl_Enum), -oncipcaf_ParameterType_ANY = null, -oncipcaf_ParameterType_STRING = null, -oncipcaf_ParameterType_MAP = null, -oncipcaf_ParameterType_$VALUES = null, -oncipcaf_ParameterType_values = () => { - return oncipcaf_ParameterType_$VALUES.$clone0(); -}, -oncipcaf_ParameterType__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncipcaf_ParameterType; - jl_Enum__init_(var$1, $rt_s(708), 0); - oncipcaf_ParameterType_ANY = var$1; - var$1 = new oncipcaf_ParameterType; - jl_Enum__init_(var$1, $rt_s(714), 1); - oncipcaf_ParameterType_STRING = var$1; - var$1 = new oncipcaf_ParameterType; - jl_Enum__init_(var$1, $rt_s(724), 2); - oncipcaf_ParameterType_MAP = var$1; - var$2 = $rt_createArray(oncipcaf_ParameterType, 3); - var$3 = var$2.data; - var$3[0] = oncipcaf_ParameterType_ANY; - var$3[1] = oncipcaf_ParameterType_STRING; - var$3[2] = var$1; - oncipcaf_ParameterType_$VALUES = var$2; -}, -oncipcaf_SimpleEither = $rt_classWithoutFields(0), -oncipcaf_SimpleEither_left = $value => { - return oncipcaf_EitherImpl__init_($value, null); -}, -oncipcaf_SimpleEither_right = $value => { - return oncipcaf_EitherImpl__init_(null, $value); -}; -function oncipcaf_ParserCypherTypeName() { - let a = this; jl_Object.call(a); - a.$typeName4 = null; - a.$offset8 = null; - a.$line8 = null; - a.$column6 = null; -} -let oncipcaf_ParserCypherTypeName_NOTHING = null, -oncipcaf_ParserCypherTypeName_NULL = null, -oncipcaf_ParserCypherTypeName_BOOLEAN = null, -oncipcaf_ParserCypherTypeName_BOOLEAN_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_STRING = null, -oncipcaf_ParserCypherTypeName_STRING_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_INTEGER = null, -oncipcaf_ParserCypherTypeName_INTEGER_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_FLOAT = null, -oncipcaf_ParserCypherTypeName_FLOAT_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_DATE = null, -oncipcaf_ParserCypherTypeName_DATE_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_LOCAL_TIME = null, -oncipcaf_ParserCypherTypeName_LOCAL_TIME_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_ZONED_TIME = null, -oncipcaf_ParserCypherTypeName_ZONED_TIME_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_LOCAL_DATETIME = null, -oncipcaf_ParserCypherTypeName_LOCAL_DATETIME_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_ZONED_DATETIME = null, -oncipcaf_ParserCypherTypeName_ZONED_DATETIME_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_DURATION = null, -oncipcaf_ParserCypherTypeName_DURATION_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_POINT = null, -oncipcaf_ParserCypherTypeName_POINT_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_NODE = null, -oncipcaf_ParserCypherTypeName_NODE_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_RELATIONSHIP = null, -oncipcaf_ParserCypherTypeName_RELATIONSHIP_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_MAP = null, -oncipcaf_ParserCypherTypeName_MAP_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_PATH = null, -oncipcaf_ParserCypherTypeName_PATH_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_ANY = null, -oncipcaf_ParserCypherTypeName_ANY_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_PROPERTY_VALUE = null, -oncipcaf_ParserCypherTypeName_PROPERTY_VALUE_NOT_NULL = null, -oncipcaf_ParserCypherTypeName_withPos = ($this, $offset, $line, $column) => { - $this.$offset8 = $offset; - $this.$line8 = $line; - $this.$column6 = $column; - return $this; -}, -oncipcaf_ParserCypherTypeName__init_0 = ($this, $typeName) => { - $this.$typeName4 = $typeName; -}, -oncipcaf_ParserCypherTypeName__init_ = var_0 => { - let var_1 = new oncipcaf_ParserCypherTypeName(); - oncipcaf_ParserCypherTypeName__init_0(var_1, var_0); - return var_1; -}, -oncipcaf_ParserCypherTypeName_listOf = $inner => { - return oncipcaf_ParserCypherTypeName$ListParserCypherTypeName__init_($inner, 1); -}, -oncipcaf_ParserCypherTypeName_closedDynamicUnionOf = $unionTypes => { - let var$2; - var$2 = new oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName; - oncipcaf_ParserCypherTypeName__init_0(var$2, jl_String_join($rt_s(450), jus_Stream_toList(jusi_SimpleStreamImpl_map(ju_Collection_stream($unionTypes), new oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName$_init_$lambda$_0_0)))); - var$2.$unionTypes = $unionTypes; - return var$2; -}, -oncipcaf_ParserCypherTypeName_description = $this => { - return $this.$typeName4; -}, -oncipcaf_ParserCypherTypeName_getNotNullTypeName = $parserCypherTypeName => { - let var$2, var$3; - if (!jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_NOTHING) && !jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_NULL)) { - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_BOOLEAN)) - return oncipcaf_ParserCypherTypeName_BOOLEAN_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_STRING)) - return oncipcaf_ParserCypherTypeName_STRING_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_INTEGER)) - return oncipcaf_ParserCypherTypeName_INTEGER_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_FLOAT)) - return oncipcaf_ParserCypherTypeName_FLOAT_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_DATE)) - return oncipcaf_ParserCypherTypeName_DATE_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_LOCAL_TIME)) - return oncipcaf_ParserCypherTypeName_LOCAL_TIME_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_ZONED_TIME)) - return oncipcaf_ParserCypherTypeName_ZONED_TIME_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_LOCAL_DATETIME)) - return oncipcaf_ParserCypherTypeName_LOCAL_DATETIME_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_ZONED_DATETIME)) - return oncipcaf_ParserCypherTypeName_ZONED_DATETIME_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_DURATION)) - return oncipcaf_ParserCypherTypeName_DURATION_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_POINT)) - return oncipcaf_ParserCypherTypeName_POINT_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_NODE)) - return oncipcaf_ParserCypherTypeName_NODE_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_RELATIONSHIP)) - return oncipcaf_ParserCypherTypeName_RELATIONSHIP_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_MAP)) - return oncipcaf_ParserCypherTypeName_MAP_NOT_NULL; - if ($parserCypherTypeName instanceof oncipcaf_ParserCypherTypeName$ListParserCypherTypeName) - return oncipcaf_ParserCypherTypeName$ListParserCypherTypeName__init_($parserCypherTypeName.$innerType0, 0); - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_PATH)) - return oncipcaf_ParserCypherTypeName_PATH_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_ANY)) - return oncipcaf_ParserCypherTypeName_ANY_NOT_NULL; - if (jl_Object_equals($parserCypherTypeName, oncipcaf_ParserCypherTypeName_PROPERTY_VALUE)) - return oncipcaf_ParserCypherTypeName_PROPERTY_VALUE_NOT_NULL; - if ($parserCypherTypeName instanceof oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName) { - $parserCypherTypeName = new jl_IllegalArgumentException; - jl_Throwable__init_0($parserCypherTypeName, $rt_s(4521)); - $rt_throw($parserCypherTypeName); - } - var$2 = new jl_IllegalArgumentException; - var$3 = $rt_createArray(jl_Object, 1); - var$3.data[0] = $parserCypherTypeName.$typeName4; - jl_Throwable__init_0(var$2, jl_String_format($rt_s(4522), var$3)); - $rt_throw(var$2); - } - return oncipcaf_ParserCypherTypeName_NOTHING; -}, -oncipcaf_ParserCypherTypeName_getOffset = $this => { - return $this.$offset8; -}, -oncipcaf_ParserCypherTypeName_getLine = $this => { - return $this.$line8; -}, -oncipcaf_ParserCypherTypeName_getColumn = $this => { - return $this.$column6; -}, -oncipcaf_ParserCypherTypeName__clinit_ = () => { - oncipcaf_ParserCypherTypeName_NOTHING = oncipcaf_ParserCypherTypeName__init_($rt_s(4523)); - oncipcaf_ParserCypherTypeName_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4524)); - oncipcaf_ParserCypherTypeName_BOOLEAN = oncipcaf_ParserCypherTypeName__init_($rt_s(710)); - oncipcaf_ParserCypherTypeName_BOOLEAN_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4525)); - oncipcaf_ParserCypherTypeName_STRING = oncipcaf_ParserCypherTypeName__init_($rt_s(714)); - oncipcaf_ParserCypherTypeName_STRING_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4526)); - oncipcaf_ParserCypherTypeName_INTEGER = oncipcaf_ParserCypherTypeName__init_($rt_s(722)); - oncipcaf_ParserCypherTypeName_INTEGER_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4527)); - oncipcaf_ParserCypherTypeName_FLOAT = oncipcaf_ParserCypherTypeName__init_($rt_s(719)); - oncipcaf_ParserCypherTypeName_FLOAT_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4528)); - oncipcaf_ParserCypherTypeName_DATE = oncipcaf_ParserCypherTypeName__init_($rt_s(743)); - oncipcaf_ParserCypherTypeName_DATE_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4529)); - oncipcaf_ParserCypherTypeName_LOCAL_TIME = oncipcaf_ParserCypherTypeName__init_($rt_s(749)); - oncipcaf_ParserCypherTypeName_LOCAL_TIME_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4530)); - oncipcaf_ParserCypherTypeName_ZONED_TIME = oncipcaf_ParserCypherTypeName__init_($rt_s(746)); - oncipcaf_ParserCypherTypeName_ZONED_TIME_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4531)); - oncipcaf_ParserCypherTypeName_LOCAL_DATETIME = oncipcaf_ParserCypherTypeName__init_($rt_s(740)); - oncipcaf_ParserCypherTypeName_LOCAL_DATETIME_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4532)); - oncipcaf_ParserCypherTypeName_ZONED_DATETIME = oncipcaf_ParserCypherTypeName__init_($rt_s(737)); - oncipcaf_ParserCypherTypeName_ZONED_DATETIME_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4533)); - oncipcaf_ParserCypherTypeName_DURATION = oncipcaf_ParserCypherTypeName__init_($rt_s(752)); - oncipcaf_ParserCypherTypeName_DURATION_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4534)); - oncipcaf_ParserCypherTypeName_POINT = oncipcaf_ParserCypherTypeName__init_($rt_s(734)); - oncipcaf_ParserCypherTypeName_POINT_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4535)); - oncipcaf_ParserCypherTypeName_NODE = oncipcaf_ParserCypherTypeName__init_($rt_s(727)); - oncipcaf_ParserCypherTypeName_NODE_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4536)); - oncipcaf_ParserCypherTypeName_RELATIONSHIP = oncipcaf_ParserCypherTypeName__init_($rt_s(730)); - oncipcaf_ParserCypherTypeName_RELATIONSHIP_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4537)); - oncipcaf_ParserCypherTypeName_MAP = oncipcaf_ParserCypherTypeName__init_($rt_s(724)); - oncipcaf_ParserCypherTypeName_MAP_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4538)); - oncipcaf_ParserCypherTypeName_PATH = oncipcaf_ParserCypherTypeName__init_($rt_s(758)); - oncipcaf_ParserCypherTypeName_PATH_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4539)); - oncipcaf_ParserCypherTypeName_ANY = oncipcaf_ParserCypherTypeName__init_($rt_s(708)); - oncipcaf_ParserCypherTypeName_ANY_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4540)); - oncipcaf_ParserCypherTypeName_PROPERTY_VALUE = oncipcaf_ParserCypherTypeName__init_($rt_s(3657)); - oncipcaf_ParserCypherTypeName_PROPERTY_VALUE_NOT_NULL = oncipcaf_ParserCypherTypeName__init_($rt_s(4541)); -}, -ju_AbstractSequentialList = $rt_classWithoutFields(ju_AbstractList), -ju_AbstractSequentialList_get = ($this, $index) => { - let $iter; - if ($index >= 0) - return ju_LinkedList$SequentialListIterator_next(ju_LinkedList_listIterator($this, $index)); - $iter = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($iter); - $rt_throw($iter); -}, -ju_AbstractSequentialList_set = ($this, $index, $element) => { - let $iter, $old; - if ($index < 0) { - $element = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($element); - $rt_throw($element); - } - $iter = ju_LinkedList_listIterator($this, $index); - $old = ju_LinkedList$SequentialListIterator_next($iter); - if ($iter.$currentEntry0 !== null) { - ju_LinkedList$SequentialListIterator_checkConcurrentModification($iter); - $iter.$currentEntry0.$item = $element; - $iter.$currentEntry0 = null; - return $old; - } - $element = new jl_IllegalStateException; - jl_Throwable__init_($element); - $rt_throw($element); -}; -let ju_AbstractSequentialList_add = ($this, $index, $element) => { - let $iter, var$4, var$5; - if ($index < 0) { - $element = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($element); - $rt_throw($element); - } - $iter = ju_LinkedList_listIterator($this, $index); - ju_LinkedList$SequentialListIterator_checkConcurrentModification($iter); - var$4 = new ju_LinkedList$Entry; - var$4.$item = $element; - $element = $iter.$prevEntry; - var$4.$previous0 = $element; - var$5 = $iter.$nextEntry; - var$4.$next8 = var$5; - if ($element !== null) - $element.$next8 = var$4; - else - $iter.$this$00.$firstEntry = var$4; - if (var$5 !== null) - var$5.$previous0 = var$4; - else - $iter.$this$00.$lastEntry = var$4; - $iter.$prevEntry = var$4; - $element = $iter.$this$00; - $element.$size5 = $element.$size5 + 1 | 0; - $index = $element.$modCount + 1 | 0; - $element.$modCount = $index; - $iter.$version0 = $index; - $iter.$currentEntry0 = null; -}, -ju_AbstractSequentialList_remove = ($this, $index) => { - let $iter, $elem, var$4, var$5, var$6, var$7; - if ($index < 0) { - $iter = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($iter); - $rt_throw($iter); - } - $iter = ju_LinkedList_listIterator($this, $index); - $elem = ju_LinkedList$SequentialListIterator_next($iter); - var$4 = $iter.$currentEntry0; - if (var$4 === null) { - $iter = new jl_IllegalStateException; - jl_Throwable__init_($iter); - $rt_throw($iter); - } - var$5 = $iter.$this$00; - var$6 = var$4.$previous0; - if (var$6 === null) - var$5.$firstEntry = var$4.$next8; - else - var$6.$next8 = var$4.$next8; - var$7 = var$4.$next8; - if (var$7 === null) - var$5.$lastEntry = var$6; - else - var$7.$previous0 = var$6; - var$5.$size5 = var$5.$size5 - 1 | 0; - var$5.$modCount = var$5.$modCount + 1 | 0; - var$5 = $iter.$prevEntry; - if (var$4 === var$5) { - $iter.$prevEntry = !ju_LinkedList$SequentialListIterator_hasNext($iter) ? null : $iter.$nextEntry.$previous0; - $iter.$index5 = $iter.$index5 - 1 | 0; - } else if (var$4 === $iter.$nextEntry) - $iter.$nextEntry = !(var$5 === null ? 0 : 1) ? null : var$5.$next8; - $iter.$version0 = $iter.$this$00.$modCount; - $iter.$currentEntry0 = null; - return $elem; -}, -ju_AbstractSequentialList_iterator = $this => { - return ju_LinkedList$SequentialListIterator__init_($this, $this.$firstEntry, null, 0); -}, -ju_Queue = $rt_classWithoutFields(0), -ju_Deque = $rt_classWithoutFields(0); -function ju_LinkedList() { - let a = this; ju_AbstractSequentialList.call(a); - a.$firstEntry = null; - a.$lastEntry = null; - a.$size5 = 0; -} -let ju_LinkedList__init_2 = $this => { - return; -}, -ju_LinkedList__init_ = () => { - let var_0 = new ju_LinkedList(); - ju_LinkedList__init_2(var_0); - return var_0; -}, -ju_LinkedList__init_1 = ($this, $coll) => { - let $iter, $prevEntry, $prevEntry_0; - $iter = ju_AbstractSequentialList_iterator($coll); - $prevEntry = null; - while (ju_LinkedList$SequentialListIterator_hasNext($iter)) { - $prevEntry_0 = new ju_LinkedList$Entry; - $prevEntry_0.$item = ju_LinkedList$SequentialListIterator_next($iter); - $prevEntry_0.$previous0 = $prevEntry; - if ($prevEntry !== null) - $prevEntry.$next8 = $prevEntry_0; - else - $this.$firstEntry = $prevEntry_0; - $this.$size5 = $this.$size5 + 1 | 0; - $prevEntry = $prevEntry_0; - } - $this.$lastEntry = $prevEntry; -}, -ju_LinkedList__init_0 = var_0 => { - let var_1 = new ju_LinkedList(); - ju_LinkedList__init_1(var_1, var_0); - return var_1; -}, -ju_LinkedList_size = $this => { - return $this.$size5; -}, -ju_LinkedList_listIterator = ($this, $index) => { - let $prev, var$3, $next, $i; - if ($index < 0) { - $prev = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($prev); - $rt_throw($prev); - } - var$3 = $this.$size5; - if ($index <= (var$3 / 2 | 0)) { - $next = $this.$firstEntry; - $i = 0; - while ($i < $index) { - $next = $next.$next8; - $i = $i + 1 | 0; - } - return ju_LinkedList$SequentialListIterator__init_($this, $next, $next === null ? null : $next.$previous0, $index); - } - if ($index > var$3) { - $prev = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($prev); - $rt_throw($prev); - } - $prev = $this.$lastEntry; - $i = $index; - while ($i < var$3) { - $prev = $prev.$previous0; - $i = $i + 1 | 0; - } - return ju_LinkedList$SequentialListIterator__init_($this, $prev === null ? null : $prev.$next8, $prev, $index); -}, -ju_LinkedList_addLast = ($this, $e) => { - let $entry; - $entry = new ju_LinkedList$Entry; - $entry.$item = $e; - $e = $this.$lastEntry; - $entry.$previous0 = $e; - if ($e === null) - $this.$firstEntry = $entry; - else - $e.$next8 = $entry; - $this.$lastEntry = $entry; - $this.$modCount = $this.$modCount + 1 | 0; - $this.$size5 = $this.$size5 + 1 | 0; -}, -ju_LinkedList_removeLast = $this => { - let var$1, var$2; - if (ju_AbstractCollection_isEmpty($this)) { - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - } - var$1 = $this.$lastEntry; - if (var$1 === null) - var$1 = null; - else { - var$2 = var$1.$previous0; - $this.$lastEntry = var$2; - if (var$2 !== null) - var$2.$next8 = null; - else - $this.$firstEntry = null; - $this.$size5 = $this.$size5 - 1 | 0; - $this.$modCount = $this.$modCount + 1 | 0; - var$1 = var$1.$item; - } - return var$1; -}, -onciaf_ASTFactory$MergeActionType = $rt_classWithoutFields(jl_Enum), -onciaf_ASTFactory$MergeActionType_OnCreate = null, -onciaf_ASTFactory$MergeActionType_OnMatch = null, -onciaf_ASTFactory$MergeActionType_$VALUES = null, -onciaf_ASTFactory$MergeActionType_values = () => { - return onciaf_ASTFactory$MergeActionType_$VALUES.$clone0(); -}, -onciaf_ASTFactory$MergeActionType__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new onciaf_ASTFactory$MergeActionType; - jl_Enum__init_(var$1, $rt_s(4542), 0); - onciaf_ASTFactory$MergeActionType_OnCreate = var$1; - var$1 = new onciaf_ASTFactory$MergeActionType; - jl_Enum__init_(var$1, $rt_s(4543), 1); - onciaf_ASTFactory$MergeActionType_OnMatch = var$1; - var$2 = $rt_createArray(onciaf_ASTFactory$MergeActionType, 2); - var$3 = var$2.data; - var$3[0] = onciaf_ASTFactory$MergeActionType_OnCreate; - var$3[1] = var$1; - onciaf_ASTFactory$MergeActionType_$VALUES = var$2; -}; -function oncipcaf_EitherImpl() { - let a = this; jl_Object.call(a); - a.$left4 = null; - a.$right2 = null; -} -let oncipcaf_EitherImpl__init_0 = ($this, $left, $right) => { - if ($left === null && $right === null) { - $right = new jl_IllegalStateException; - jl_Throwable__init_0($right, $rt_s(4544)); - $rt_throw($right); - } - $this.$left4 = $left; - $this.$right2 = $right; -}, -oncipcaf_EitherImpl__init_ = (var_0, var_1) => { - let var_2 = new oncipcaf_EitherImpl(); - oncipcaf_EitherImpl__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName() { - oncipcaf_ParserCypherTypeName.call(this); - this.$unionTypes = null; -} -let oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName_getUnionTypes = $this => { - return $this.$unionTypes; -}, -oncipcaf_AccessType = $rt_classWithoutFields(jl_Enum), -oncipcaf_AccessType_READ_ONLY = null, -oncipcaf_AccessType_READ_WRITE = null, -oncipcaf_AccessType_$VALUES = null, -oncipcaf_AccessType_$callClinit = () => { - oncipcaf_AccessType_$callClinit = $rt_eraseClinit(oncipcaf_AccessType); - oncipcaf_AccessType__clinit_(); -}, -oncipcaf_AccessType_values = () => { - oncipcaf_AccessType_$callClinit(); - return oncipcaf_AccessType_$VALUES.$clone0(); -}, -oncipcaf_AccessType__init_0 = ($this, var$1, var$2) => { - oncipcaf_AccessType_$callClinit(); - jl_Enum__init_($this, var$1, var$2); -}, -oncipcaf_AccessType__init_ = (var_0, var_1) => { - let var_2 = new oncipcaf_AccessType(); - oncipcaf_AccessType__init_0(var_2, var_0, var_1); - return var_2; -}, -oncipcaf_AccessType__clinit_ = () => { - let var$1, var$2, var$3; - oncipcaf_AccessType_READ_ONLY = oncipcaf_AccessType__init_($rt_s(4545), 0); - var$1 = oncipcaf_AccessType__init_($rt_s(4546), 1); - oncipcaf_AccessType_READ_WRITE = var$1; - var$2 = $rt_createArray(oncipcaf_AccessType, 2); - var$3 = var$2.data; - var$3[0] = oncipcaf_AccessType_READ_ONLY; - var$3[1] = var$1; - oncipcaf_AccessType_$VALUES = var$2; -}, -oncipcaf_ActionType = $rt_classWithoutFields(jl_Enum), -oncipcaf_ActionType_DATABASE_ALL = null, -oncipcaf_ActionType_DATABASE_START = null, -oncipcaf_ActionType_DATABASE_STOP = null, -oncipcaf_ActionType_ACCESS = null, -oncipcaf_ActionType_CREATE_TOKEN = null, -oncipcaf_ActionType_CREATE_PROPERTYKEY = null, -oncipcaf_ActionType_CREATE_LABEL = null, -oncipcaf_ActionType_CREATE_RELTYPE = null, -oncipcaf_ActionType_INDEX_ALL = null, -oncipcaf_ActionType_INDEX_CREATE = null, -oncipcaf_ActionType_INDEX_DROP = null, -oncipcaf_ActionType_INDEX_SHOW = null, -oncipcaf_ActionType_CONSTRAINT_ALL = null, -oncipcaf_ActionType_CONSTRAINT_CREATE = null, -oncipcaf_ActionType_CONSTRAINT_DROP = null, -oncipcaf_ActionType_CONSTRAINT_SHOW = null, -oncipcaf_ActionType_TRANSACTION_ALL = null, -oncipcaf_ActionType_TRANSACTION_SHOW = null, -oncipcaf_ActionType_TRANSACTION_TERMINATE = null, -oncipcaf_ActionType_DBMS_ALL = null, -oncipcaf_ActionType_USER_ALL = null, -oncipcaf_ActionType_USER_SHOW = null, -oncipcaf_ActionType_USER_CREATE = null, -oncipcaf_ActionType_USER_RENAME = null, -oncipcaf_ActionType_USER_ALTER = null, -oncipcaf_ActionType_USER_STATUS = null, -oncipcaf_ActionType_USER_PASSWORD = null, -oncipcaf_ActionType_USER_AUTH = null, -oncipcaf_ActionType_USER_HOME = null, -oncipcaf_ActionType_USER_DROP = null, -oncipcaf_ActionType_USER_IMPERSONATE = null, -oncipcaf_ActionType_ROLE_ALL = null, -oncipcaf_ActionType_ROLE_SHOW = null, -oncipcaf_ActionType_ROLE_CREATE = null, -oncipcaf_ActionType_ROLE_RENAME = null, -oncipcaf_ActionType_ROLE_DROP = null, -oncipcaf_ActionType_ROLE_ASSIGN = null, -oncipcaf_ActionType_ROLE_REMOVE = null, -oncipcaf_ActionType_DATABASE_MANAGEMENT = null; -let oncipcaf_ActionType_DATABASE_CREATE = null, -oncipcaf_ActionType_DATABASE_DROP = null, -oncipcaf_ActionType_DATABASE_COMPOSITE_MANAGEMENT = null, -oncipcaf_ActionType_DATABASE_COMPOSITE_CREATE = null, -oncipcaf_ActionType_DATABASE_COMPOSITE_DROP = null, -oncipcaf_ActionType_DATABASE_ALTER = null, -oncipcaf_ActionType_SET_DATABASE_ACCESS = null, -oncipcaf_ActionType_ALIAS_MANAGEMENT = null, -oncipcaf_ActionType_ALIAS_CREATE = null, -oncipcaf_ActionType_ALIAS_DROP = null, -oncipcaf_ActionType_ALIAS_ALTER = null, -oncipcaf_ActionType_ALIAS_SHOW = null, -oncipcaf_ActionType_PRIVILEGE_ALL = null, -oncipcaf_ActionType_PRIVILEGE_SHOW = null, -oncipcaf_ActionType_PRIVILEGE_ASSIGN = null, -oncipcaf_ActionType_PRIVILEGE_REMOVE = null, -oncipcaf_ActionType_EXECUTE_FUNCTION = null, -oncipcaf_ActionType_EXECUTE_BOOSTED_FUNCTION = null, -oncipcaf_ActionType_EXECUTE_PROCEDURE = null, -oncipcaf_ActionType_EXECUTE_BOOSTED_PROCEDURE = null, -oncipcaf_ActionType_EXECUTE_ADMIN_PROCEDURE = null, -oncipcaf_ActionType_SERVER_SHOW = null, -oncipcaf_ActionType_SERVER_MANAGEMENT = null, -oncipcaf_ActionType_SETTING_SHOW = null, -oncipcaf_ActionType_GRAPH_ALL = null, -oncipcaf_ActionType_GRAPH_WRITE = null, -oncipcaf_ActionType_GRAPH_CREATE = null, -oncipcaf_ActionType_GRAPH_MERGE = null, -oncipcaf_ActionType_GRAPH_DELETE = null, -oncipcaf_ActionType_GRAPH_LABEL_SET = null, -oncipcaf_ActionType_GRAPH_LABEL_REMOVE = null, -oncipcaf_ActionType_GRAPH_PROPERTY_SET = null, -oncipcaf_ActionType_GRAPH_MATCH = null, -oncipcaf_ActionType_GRAPH_READ = null, -oncipcaf_ActionType_GRAPH_TRAVERSE = null, -oncipcaf_ActionType_$VALUES = null, -oncipcaf_ActionType_values = () => { - return oncipcaf_ActionType_$VALUES.$clone0(); -}, -oncipcaf_ActionType__init_0 = ($this, var$1, var$2) => { - jl_Enum__init_($this, var$1, var$2); -}, -oncipcaf_ActionType__init_ = (var_0, var_1) => { - let var_2 = new oncipcaf_ActionType(); - oncipcaf_ActionType__init_0(var_2, var_0, var_1); - return var_2; -}, -oncipcaf_ActionType_$values = () => { - let var$1, var$2; - var$1 = $rt_createArray(oncipcaf_ActionType, 74); - var$2 = var$1.data; - var$2[0] = oncipcaf_ActionType_DATABASE_ALL; - var$2[1] = oncipcaf_ActionType_DATABASE_START; - var$2[2] = oncipcaf_ActionType_DATABASE_STOP; - var$2[3] = oncipcaf_ActionType_ACCESS; - var$2[4] = oncipcaf_ActionType_CREATE_TOKEN; - var$2[5] = oncipcaf_ActionType_CREATE_PROPERTYKEY; - var$2[6] = oncipcaf_ActionType_CREATE_LABEL; - var$2[7] = oncipcaf_ActionType_CREATE_RELTYPE; - var$2[8] = oncipcaf_ActionType_INDEX_ALL; - var$2[9] = oncipcaf_ActionType_INDEX_CREATE; - var$2[10] = oncipcaf_ActionType_INDEX_DROP; - var$2[11] = oncipcaf_ActionType_INDEX_SHOW; - var$2[12] = oncipcaf_ActionType_CONSTRAINT_ALL; - var$2[13] = oncipcaf_ActionType_CONSTRAINT_CREATE; - var$2[14] = oncipcaf_ActionType_CONSTRAINT_DROP; - var$2[15] = oncipcaf_ActionType_CONSTRAINT_SHOW; - var$2[16] = oncipcaf_ActionType_TRANSACTION_ALL; - var$2[17] = oncipcaf_ActionType_TRANSACTION_SHOW; - var$2[18] = oncipcaf_ActionType_TRANSACTION_TERMINATE; - var$2[19] = oncipcaf_ActionType_DBMS_ALL; - var$2[20] = oncipcaf_ActionType_USER_ALL; - var$2[21] = oncipcaf_ActionType_USER_SHOW; - var$2[22] = oncipcaf_ActionType_USER_CREATE; - var$2[23] = oncipcaf_ActionType_USER_RENAME; - var$2[24] = oncipcaf_ActionType_USER_ALTER; - var$2[25] = oncipcaf_ActionType_USER_STATUS; - var$2[26] = oncipcaf_ActionType_USER_PASSWORD; - var$2[27] = oncipcaf_ActionType_USER_AUTH; - var$2[28] = oncipcaf_ActionType_USER_HOME; - var$2[29] = oncipcaf_ActionType_USER_DROP; - var$2[30] = oncipcaf_ActionType_USER_IMPERSONATE; - var$2[31] = oncipcaf_ActionType_ROLE_ALL; - var$2[32] = oncipcaf_ActionType_ROLE_SHOW; - var$2[33] = oncipcaf_ActionType_ROLE_CREATE; - var$2[34] = oncipcaf_ActionType_ROLE_RENAME; - var$2[35] = oncipcaf_ActionType_ROLE_DROP; - var$2[36] = oncipcaf_ActionType_ROLE_ASSIGN; - var$2[37] = oncipcaf_ActionType_ROLE_REMOVE; - var$2[38] = oncipcaf_ActionType_DATABASE_MANAGEMENT; - var$2[39] = oncipcaf_ActionType_DATABASE_CREATE; - var$2[40] = oncipcaf_ActionType_DATABASE_DROP; - var$2[41] = oncipcaf_ActionType_DATABASE_COMPOSITE_MANAGEMENT; - var$2[42] = oncipcaf_ActionType_DATABASE_COMPOSITE_CREATE; - var$2[43] = oncipcaf_ActionType_DATABASE_COMPOSITE_DROP; - var$2[44] = oncipcaf_ActionType_DATABASE_ALTER; - var$2[45] = oncipcaf_ActionType_SET_DATABASE_ACCESS; - var$2[46] = oncipcaf_ActionType_ALIAS_MANAGEMENT; - var$2[47] = oncipcaf_ActionType_ALIAS_CREATE; - var$2[48] = oncipcaf_ActionType_ALIAS_DROP; - var$2[49] = oncipcaf_ActionType_ALIAS_ALTER; - var$2[50] = oncipcaf_ActionType_ALIAS_SHOW; - var$2[51] = oncipcaf_ActionType_PRIVILEGE_ALL; - var$2[52] = oncipcaf_ActionType_PRIVILEGE_SHOW; - var$2[53] = oncipcaf_ActionType_PRIVILEGE_ASSIGN; - var$2[54] = oncipcaf_ActionType_PRIVILEGE_REMOVE; - var$2[55] = oncipcaf_ActionType_EXECUTE_FUNCTION; - var$2[56] = oncipcaf_ActionType_EXECUTE_BOOSTED_FUNCTION; - var$2[57] = oncipcaf_ActionType_EXECUTE_PROCEDURE; - var$2[58] = oncipcaf_ActionType_EXECUTE_BOOSTED_PROCEDURE; - var$2[59] = oncipcaf_ActionType_EXECUTE_ADMIN_PROCEDURE; - var$2[60] = oncipcaf_ActionType_SERVER_SHOW; - var$2[61] = oncipcaf_ActionType_SERVER_MANAGEMENT; - var$2[62] = oncipcaf_ActionType_SETTING_SHOW; - var$2[63] = oncipcaf_ActionType_GRAPH_ALL; - var$2[64] = oncipcaf_ActionType_GRAPH_WRITE; - var$2[65] = oncipcaf_ActionType_GRAPH_CREATE; - var$2[66] = oncipcaf_ActionType_GRAPH_MERGE; - var$2[67] = oncipcaf_ActionType_GRAPH_DELETE; - var$2[68] = oncipcaf_ActionType_GRAPH_LABEL_SET; - var$2[69] = oncipcaf_ActionType_GRAPH_LABEL_REMOVE; - var$2[70] = oncipcaf_ActionType_GRAPH_PROPERTY_SET; - var$2[71] = oncipcaf_ActionType_GRAPH_MATCH; - var$2[72] = oncipcaf_ActionType_GRAPH_READ; - var$2[73] = oncipcaf_ActionType_GRAPH_TRAVERSE; - return var$1; -}, -oncipcaf_ActionType__clinit_ = () => { - oncipcaf_ActionType_DATABASE_ALL = oncipcaf_ActionType__init_($rt_s(4547), 0); - oncipcaf_ActionType_DATABASE_START = oncipcaf_ActionType__init_($rt_s(4548), 1); - oncipcaf_ActionType_DATABASE_STOP = oncipcaf_ActionType__init_($rt_s(4549), 2); - oncipcaf_ActionType_ACCESS = oncipcaf_ActionType__init_($rt_s(4550), 3); - oncipcaf_ActionType_CREATE_TOKEN = oncipcaf_ActionType__init_($rt_s(4551), 4); - oncipcaf_ActionType_CREATE_PROPERTYKEY = oncipcaf_ActionType__init_($rt_s(4552), 5); - oncipcaf_ActionType_CREATE_LABEL = oncipcaf_ActionType__init_($rt_s(4553), 6); - oncipcaf_ActionType_CREATE_RELTYPE = oncipcaf_ActionType__init_($rt_s(4554), 7); - oncipcaf_ActionType_INDEX_ALL = oncipcaf_ActionType__init_($rt_s(4555), 8); - oncipcaf_ActionType_INDEX_CREATE = oncipcaf_ActionType__init_($rt_s(4556), 9); - oncipcaf_ActionType_INDEX_DROP = oncipcaf_ActionType__init_($rt_s(4557), 10); - oncipcaf_ActionType_INDEX_SHOW = oncipcaf_ActionType__init_($rt_s(4558), 11); - oncipcaf_ActionType_CONSTRAINT_ALL = oncipcaf_ActionType__init_($rt_s(4559), 12); - oncipcaf_ActionType_CONSTRAINT_CREATE = oncipcaf_ActionType__init_($rt_s(4560), 13); - oncipcaf_ActionType_CONSTRAINT_DROP = oncipcaf_ActionType__init_($rt_s(4561), 14); - oncipcaf_ActionType_CONSTRAINT_SHOW = oncipcaf_ActionType__init_($rt_s(4562), 15); - oncipcaf_ActionType_TRANSACTION_ALL = oncipcaf_ActionType__init_($rt_s(4563), 16); - oncipcaf_ActionType_TRANSACTION_SHOW = oncipcaf_ActionType__init_($rt_s(4564), 17); - oncipcaf_ActionType_TRANSACTION_TERMINATE = oncipcaf_ActionType__init_($rt_s(4565), 18); - oncipcaf_ActionType_DBMS_ALL = oncipcaf_ActionType__init_($rt_s(4566), 19); - oncipcaf_ActionType_USER_ALL = oncipcaf_ActionType__init_($rt_s(4567), 20); - oncipcaf_ActionType_USER_SHOW = oncipcaf_ActionType__init_($rt_s(4568), 21); - oncipcaf_ActionType_USER_CREATE = oncipcaf_ActionType__init_($rt_s(4569), 22); - oncipcaf_ActionType_USER_RENAME = oncipcaf_ActionType__init_($rt_s(4570), 23); - oncipcaf_ActionType_USER_ALTER = oncipcaf_ActionType__init_($rt_s(4571), 24); - oncipcaf_ActionType_USER_STATUS = oncipcaf_ActionType__init_($rt_s(4572), 25); - oncipcaf_ActionType_USER_PASSWORD = oncipcaf_ActionType__init_($rt_s(4573), 26); - oncipcaf_ActionType_USER_AUTH = oncipcaf_ActionType__init_($rt_s(4574), 27); - oncipcaf_ActionType_USER_HOME = oncipcaf_ActionType__init_($rt_s(4575), 28); - oncipcaf_ActionType_USER_DROP = oncipcaf_ActionType__init_($rt_s(4576), 29); - oncipcaf_ActionType_USER_IMPERSONATE = oncipcaf_ActionType__init_($rt_s(4577), 30); - oncipcaf_ActionType_ROLE_ALL = oncipcaf_ActionType__init_($rt_s(4578), 31); - oncipcaf_ActionType_ROLE_SHOW = oncipcaf_ActionType__init_($rt_s(4579), 32); - oncipcaf_ActionType_ROLE_CREATE = oncipcaf_ActionType__init_($rt_s(4580), 33); - oncipcaf_ActionType_ROLE_RENAME = oncipcaf_ActionType__init_($rt_s(4581), 34); - oncipcaf_ActionType_ROLE_DROP = oncipcaf_ActionType__init_($rt_s(4582), 35); - oncipcaf_ActionType_ROLE_ASSIGN = oncipcaf_ActionType__init_($rt_s(4583), 36); - oncipcaf_ActionType_ROLE_REMOVE = oncipcaf_ActionType__init_($rt_s(4584), 37); - oncipcaf_ActionType_DATABASE_MANAGEMENT = oncipcaf_ActionType__init_($rt_s(4585), 38); - oncipcaf_ActionType_DATABASE_CREATE = oncipcaf_ActionType__init_($rt_s(4586), 39); - oncipcaf_ActionType_DATABASE_DROP = oncipcaf_ActionType__init_($rt_s(4587), 40); - oncipcaf_ActionType_DATABASE_COMPOSITE_MANAGEMENT = oncipcaf_ActionType__init_($rt_s(4588), 41); - oncipcaf_ActionType_DATABASE_COMPOSITE_CREATE = oncipcaf_ActionType__init_($rt_s(4589), 42); - oncipcaf_ActionType_DATABASE_COMPOSITE_DROP = oncipcaf_ActionType__init_($rt_s(4590), 43); - oncipcaf_ActionType_DATABASE_ALTER = oncipcaf_ActionType__init_($rt_s(4591), 44); - oncipcaf_ActionType_SET_DATABASE_ACCESS = oncipcaf_ActionType__init_($rt_s(4592), 45); - oncipcaf_ActionType_ALIAS_MANAGEMENT = oncipcaf_ActionType__init_($rt_s(4593), 46); - oncipcaf_ActionType_ALIAS_CREATE = oncipcaf_ActionType__init_($rt_s(4594), 47); - oncipcaf_ActionType_ALIAS_DROP = oncipcaf_ActionType__init_($rt_s(4595), 48); - oncipcaf_ActionType_ALIAS_ALTER = oncipcaf_ActionType__init_($rt_s(4596), 49); - oncipcaf_ActionType_ALIAS_SHOW = oncipcaf_ActionType__init_($rt_s(4597), 50); - oncipcaf_ActionType_PRIVILEGE_ALL = oncipcaf_ActionType__init_($rt_s(4598), 51); - oncipcaf_ActionType_PRIVILEGE_SHOW = oncipcaf_ActionType__init_($rt_s(4599), 52); - oncipcaf_ActionType_PRIVILEGE_ASSIGN = oncipcaf_ActionType__init_($rt_s(4600), 53); - oncipcaf_ActionType_PRIVILEGE_REMOVE = oncipcaf_ActionType__init_($rt_s(4601), 54); - oncipcaf_ActionType_EXECUTE_FUNCTION = oncipcaf_ActionType__init_($rt_s(4602), 55); - oncipcaf_ActionType_EXECUTE_BOOSTED_FUNCTION = oncipcaf_ActionType__init_($rt_s(4603), 56); - oncipcaf_ActionType_EXECUTE_PROCEDURE = oncipcaf_ActionType__init_($rt_s(4604), 57); - oncipcaf_ActionType_EXECUTE_BOOSTED_PROCEDURE = oncipcaf_ActionType__init_($rt_s(4605), 58); - oncipcaf_ActionType_EXECUTE_ADMIN_PROCEDURE = oncipcaf_ActionType__init_($rt_s(4606), 59); - oncipcaf_ActionType_SERVER_SHOW = oncipcaf_ActionType__init_($rt_s(4607), 60); - oncipcaf_ActionType_SERVER_MANAGEMENT = oncipcaf_ActionType__init_($rt_s(4608), 61); - oncipcaf_ActionType_SETTING_SHOW = oncipcaf_ActionType__init_($rt_s(4609), 62); - oncipcaf_ActionType_GRAPH_ALL = oncipcaf_ActionType__init_($rt_s(4610), 63); - oncipcaf_ActionType_GRAPH_WRITE = oncipcaf_ActionType__init_($rt_s(4611), 64); - oncipcaf_ActionType_GRAPH_CREATE = oncipcaf_ActionType__init_($rt_s(4612), 65); - oncipcaf_ActionType_GRAPH_MERGE = oncipcaf_ActionType__init_($rt_s(4613), 66); - oncipcaf_ActionType_GRAPH_DELETE = oncipcaf_ActionType__init_($rt_s(4614), 67); - oncipcaf_ActionType_GRAPH_LABEL_SET = oncipcaf_ActionType__init_($rt_s(4615), 68); - oncipcaf_ActionType_GRAPH_LABEL_REMOVE = oncipcaf_ActionType__init_($rt_s(4616), 69); - oncipcaf_ActionType_GRAPH_PROPERTY_SET = oncipcaf_ActionType__init_($rt_s(4617), 70); - oncipcaf_ActionType_GRAPH_MATCH = oncipcaf_ActionType__init_($rt_s(4618), 71); - oncipcaf_ActionType_GRAPH_READ = oncipcaf_ActionType__init_($rt_s(4619), 72); - oncipcaf_ActionType_GRAPH_TRAVERSE = oncipcaf_ActionType__init_($rt_s(4620), 73); - oncipcaf_ActionType_$VALUES = oncipcaf_ActionType_$values(); -}, -oncipcaf_HintIndexType = $rt_classWithoutFields(jl_Enum), -oncipcaf_HintIndexType_ANY = null, -oncipcaf_HintIndexType_BTREE = null, -oncipcaf_HintIndexType_TEXT = null, -oncipcaf_HintIndexType_RANGE = null, -oncipcaf_HintIndexType_POINT = null, -oncipcaf_HintIndexType_$VALUES = null, -oncipcaf_HintIndexType_values = () => { - return oncipcaf_HintIndexType_$VALUES.$clone0(); -}, -oncipcaf_HintIndexType__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncipcaf_HintIndexType; - jl_Enum__init_(var$1, $rt_s(708), 0); - oncipcaf_HintIndexType_ANY = var$1; - var$1 = new oncipcaf_HintIndexType; - jl_Enum__init_(var$1, $rt_s(1065), 1); - oncipcaf_HintIndexType_BTREE = var$1; - var$1 = new oncipcaf_HintIndexType; - jl_Enum__init_(var$1, $rt_s(1066), 2); - oncipcaf_HintIndexType_TEXT = var$1; - var$1 = new oncipcaf_HintIndexType; - jl_Enum__init_(var$1, $rt_s(1067), 3); - oncipcaf_HintIndexType_RANGE = var$1; - var$1 = new oncipcaf_HintIndexType; - jl_Enum__init_(var$1, $rt_s(734), 4); - oncipcaf_HintIndexType_POINT = var$1; - var$2 = $rt_createArray(oncipcaf_HintIndexType, 5); - var$3 = var$2.data; - var$3[0] = oncipcaf_HintIndexType_ANY; - var$3[1] = oncipcaf_HintIndexType_BTREE; - var$3[2] = oncipcaf_HintIndexType_TEXT; - var$3[3] = oncipcaf_HintIndexType_RANGE; - var$3[4] = var$1; - oncipcaf_HintIndexType_$VALUES = var$2; -}; -let oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName$_init_$lambda$_0_0 = $rt_classWithoutFields(), -oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName$_init_$lambda$_0_0_apply = (var$0, var$1) => { - return var$1.$typeName4; -}, -oncipcaf_ScopeType = $rt_classWithoutFields(jl_Enum), -oncipcaf_ScopeType_ALL = null, -oncipcaf_ScopeType_HOME = null, -oncipcaf_ScopeType_NAMED = null, -oncipcaf_ScopeType_$VALUES = null, -oncipcaf_ScopeType_values = () => { - return oncipcaf_ScopeType_$VALUES.$clone0(); -}, -oncipcaf_ScopeType__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncipcaf_ScopeType; - jl_Enum__init_(var$1, $rt_s(563), 0); - oncipcaf_ScopeType_ALL = var$1; - var$1 = new oncipcaf_ScopeType; - jl_Enum__init_(var$1, $rt_s(589), 1); - oncipcaf_ScopeType_HOME = var$1; - var$1 = new oncipcaf_ScopeType; - jl_Enum__init_(var$1, $rt_s(4621), 2); - oncipcaf_ScopeType_NAMED = var$1; - var$2 = $rt_createArray(oncipcaf_ScopeType, 3); - var$3 = var$2.data; - var$3[0] = oncipcaf_ScopeType_ALL; - var$3[1] = oncipcaf_ScopeType_HOME; - var$3[2] = var$1; - oncipcaf_ScopeType_$VALUES = var$2; -}, -oncipcaf_ASTExceptionFactory$1 = $rt_classWithoutFields(), -oncipcaf_ASTExceptionFactory$1_$SwitchMap$org$neo4j$cypher$internal$parser$common$ast$factory$ConstraintType = null, -oncipcaf_ASTExceptionFactory$1_$callClinit = () => { - oncipcaf_ASTExceptionFactory$1_$callClinit = $rt_eraseClinit(oncipcaf_ASTExceptionFactory$1); - oncipcaf_ASTExceptionFactory$1__clinit_(); -}, -oncipcaf_ASTExceptionFactory$1__clinit_ = () => { - let var$1, var$2; - var$1 = $rt_createIntArray((oncipcaf_ConstraintType_values()).data.length); - var$2 = var$1.data; - oncipcaf_ASTExceptionFactory$1_$SwitchMap$org$neo4j$cypher$internal$parser$common$ast$factory$ConstraintType = var$1; - var$2[oncipcaf_ConstraintType_NODE_UNIQUE.$ordinal] = 1; - var$2[oncipcaf_ConstraintType_NODE_KEY.$ordinal] = 2; - var$2[oncipcaf_ConstraintType_NODE_EXISTS.$ordinal] = 3; - var$2[oncipcaf_ConstraintType_REL_EXISTS.$ordinal] = 4; -}, -oncipcaf_CallInTxsOnErrorBehaviourType = $rt_classWithoutFields(jl_Enum), -oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_BREAK = null, -oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_CONTINUE = null, -oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_FAIL = null, -oncipcaf_CallInTxsOnErrorBehaviourType_$VALUES = null, -oncipcaf_CallInTxsOnErrorBehaviourType_values = () => { - return oncipcaf_CallInTxsOnErrorBehaviourType_$VALUES.$clone0(); -}, -oncipcaf_CallInTxsOnErrorBehaviourType__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncipcaf_CallInTxsOnErrorBehaviourType; - jl_Enum__init_(var$1, $rt_s(4622), 0); - oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_BREAK = var$1; - var$1 = new oncipcaf_CallInTxsOnErrorBehaviourType; - jl_Enum__init_(var$1, $rt_s(4623), 1); - oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_CONTINUE = var$1; - var$1 = new oncipcaf_CallInTxsOnErrorBehaviourType; - jl_Enum__init_(var$1, $rt_s(4624), 2); - oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_FAIL = var$1; - var$2 = $rt_createArray(oncipcaf_CallInTxsOnErrorBehaviourType, 3); - var$3 = var$2.data; - var$3[0] = oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_BREAK; - var$3[1] = oncipcaf_CallInTxsOnErrorBehaviourType_ON_ERROR_CONTINUE; - var$3[2] = var$1; - oncipcaf_CallInTxsOnErrorBehaviourType_$VALUES = var$2; -}, -oncipcd_DeprecatedChars = $rt_classWithoutFields(), -oncipcd_DeprecatedChars_DEPRECATED_CHARS = null, -oncipcd_DeprecatedChars_$callClinit = () => { - oncipcd_DeprecatedChars_$callClinit = $rt_eraseClinit(oncipcd_DeprecatedChars); - oncipcd_DeprecatedChars__clinit_(); -}, -oncipcd_DeprecatedChars_containsDeprecatedChar = $s => { - let $length, $offset, $codepoint, var$5, var$6, var$7, var$8; - oncipcd_DeprecatedChars_$callClinit(); - $length = $s.$nativeString.length; - $offset = 0; - while ($offset < $length) { - a: { - $codepoint = jl_String_codePointAt($s, $offset); - if ($codepoint >= 37 && $codepoint <= 126) - var$5 = 0; - else { - var$6 = oncipcd_DeprecatedChars_DEPRECATED_CHARS.data; - var$7 = var$6.length; - var$8 = 0; - while (var$8 < var$7) { - if (var$6[var$8] == $codepoint) { - var$5 = 1; - break a; - } - var$8 = var$8 + 1 | 0; - } - var$5 = 0; - } - } - if (var$5) - return 1; - $offset = $offset + ($codepoint < 65536 ? 1 : 2) | 0; - } - return 0; -}, -oncipcd_DeprecatedChars_deprecatedChars = $s => { - let $result, var$3, var$4, var$5, $deprecated; - oncipcd_DeprecatedChars_$callClinit(); - $result = ju_ArrayList__init_1(1); - var$3 = oncipcd_DeprecatedChars_DEPRECATED_CHARS.data; - var$4 = var$3.length; - var$5 = 0; - while (var$5 < var$4) { - $deprecated = var$3[var$5]; - if (jl_String_indexOf($s, $deprecated) != (-1)) - ju_ArrayList_add($result, jl_Character_valueOf($deprecated)); - var$5 = var$5 + 1 | 0; - } - return $result; -}, -oncipcd_DeprecatedChars__clinit_ = () => { - let var$1, var$2, var$3, $deprecated; - var$1 = $rt_createCharArrayFromData([0, 1, 2, 3, 4, 5, 6, 7, 8, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 36, 162, 163, 164, 165, 173, 1536, 1537, 1538, 1539, 1540, 1541, 1564, 1757, 1807, 2274, 6158, 8203, 8204, 8205, 8206, 8207, 8234, 8235, 8236, 8237, 8238, 8288, 8289, 8290, 8291, 8292, 8294, 8295, 8296, 8297, 8298, 8299, 8300, - 8301, 8302, 8303, 11823, 65279, 65529, 65530, 65531]); - oncipcd_DeprecatedChars_DEPRECATED_CHARS = var$1; - ju_Arrays_sort0(var$1); - var$1 = oncipcd_DeprecatedChars_DEPRECATED_CHARS.data; - var$2 = var$1.length; - var$3 = 0; - while (var$3 < var$2) { - $deprecated = var$1[var$3]; - if ($deprecated >= 37 && $deprecated <= 126) - $rt_throw(jl_IllegalStateException__init_1($rt_s(4625))); - var$3 = var$3 + 1 | 0; - } -}; -function oncipcaf_ParserCypherTypeName$ListParserCypherTypeName() { - let a = this; oncipcaf_ParserCypherTypeName.call(a); - a.$innerType0 = null; - a.$isNullable21 = 0; -} -let oncipcaf_ParserCypherTypeName$ListParserCypherTypeName__init_0 = ($this, $innerType, $isNullable) => { - let var$3, var$4; - var$3 = $rt_createArray(jl_Object, 2); - var$4 = var$3.data; - var$4[0] = $innerType.$typeName4; - var$4[1] = !$isNullable ? $rt_s(706) : $rt_s(4); - oncipcaf_ParserCypherTypeName__init_0($this, jl_String_format($rt_s(4626), var$3)); - $this.$innerType0 = $innerType; - $this.$isNullable21 = $isNullable; -}, -oncipcaf_ParserCypherTypeName$ListParserCypherTypeName__init_ = (var_0, var_1) => { - let var_2 = new oncipcaf_ParserCypherTypeName$ListParserCypherTypeName(); - oncipcaf_ParserCypherTypeName$ListParserCypherTypeName__init_0(var_2, var_0, var_1); - return var_2; -}, -oncipcaf_ParserCypherTypeName$ListParserCypherTypeName_getInnerType = $this => { - return $this.$innerType0; -}, -oncipcaf_ParserCypherTypeName$ListParserCypherTypeName_isNullable = $this => { - return $this.$isNullable21; -}, -oncipj_ExpectBar = $rt_classWithoutFields(jl_Enum), -oncipj_ExpectBar_EXPECT_BAR = null, -oncipj_ExpectBar_DO_NOT_EXPECT_BAR = null, -oncipj_ExpectBar_$VALUES = null, -oncipj_ExpectBar_values = () => { - return oncipj_ExpectBar_$VALUES.$clone0(); -}, -oncipj_ExpectBar__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncipj_ExpectBar; - jl_Enum__init_(var$1, $rt_s(4627), 0); - oncipj_ExpectBar_EXPECT_BAR = var$1; - var$1 = new oncipj_ExpectBar; - jl_Enum__init_(var$1, $rt_s(4628), 1); - oncipj_ExpectBar_DO_NOT_EXPECT_BAR = var$1; - var$2 = $rt_createArray(oncipj_ExpectBar, 2); - var$3 = var$2.data; - var$3[0] = oncipj_ExpectBar_EXPECT_BAR; - var$3[1] = var$1; - oncipj_ExpectBar_$VALUES = var$2; -}; -function ju_TemplateCollections$SingleElementList() { - ju_TemplateCollections$AbstractImmutableList.call(this); - this.$value38 = null; -} -let ju_TemplateCollections$SingleElementList_size = $this => { - return 1; -}, -ju_TemplateCollections$SingleElementList_get = ($this, $index) => { - let var$2; - if (!$index) - return $this.$value38; - var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); -}; -function oncipcaf_ParserNormalForm() { - jl_Enum.call(this); - this.$description10 = null; -} -let oncipcaf_ParserNormalForm_NFC = null, -oncipcaf_ParserNormalForm_NFD = null, -oncipcaf_ParserNormalForm_NFKC = null, -oncipcaf_ParserNormalForm_NFKD = null, -oncipcaf_ParserNormalForm_$VALUES = null, -oncipcaf_ParserNormalForm_values = () => { - return oncipcaf_ParserNormalForm_$VALUES.$clone0(); -}, -oncipcaf_ParserNormalForm__init_0 = ($this, var$1, var$2, $description) => { - jl_Enum__init_($this, var$1, var$2); - $this.$description10 = $description; -}, -oncipcaf_ParserNormalForm__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncipcaf_ParserNormalForm(); - oncipcaf_ParserNormalForm__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncipcaf_ParserNormalForm__clinit_ = () => { - let var$1, var$2, var$3; - oncipcaf_ParserNormalForm_NFC = oncipcaf_ParserNormalForm__init_($rt_s(4629), 0, $rt_s(4629)); - oncipcaf_ParserNormalForm_NFD = oncipcaf_ParserNormalForm__init_($rt_s(4630), 1, $rt_s(4630)); - oncipcaf_ParserNormalForm_NFKC = oncipcaf_ParserNormalForm__init_($rt_s(4631), 2, $rt_s(4631)); - var$1 = oncipcaf_ParserNormalForm__init_($rt_s(4632), 3, $rt_s(4632)); - oncipcaf_ParserNormalForm_NFKD = var$1; - var$2 = $rt_createArray(oncipcaf_ParserNormalForm, 4); - var$3 = var$2.data; - var$3[0] = oncipcaf_ParserNormalForm_NFC; - var$3[1] = oncipcaf_ParserNormalForm_NFD; - var$3[2] = oncipcaf_ParserNormalForm_NFKC; - var$3[3] = var$1; - oncipcaf_ParserNormalForm_$VALUES = var$2; -}; -function oncipcaf_ParserTrimSpecification() { - jl_Enum.call(this); - this.$description1 = null; -} -let oncipcaf_ParserTrimSpecification_BOTH = null, -oncipcaf_ParserTrimSpecification_LEADING = null, -oncipcaf_ParserTrimSpecification_TRAILING = null, -oncipcaf_ParserTrimSpecification_$VALUES = null, -oncipcaf_ParserTrimSpecification_values = () => { - return oncipcaf_ParserTrimSpecification_$VALUES.$clone0(); -}, -oncipcaf_ParserTrimSpecification__init_0 = ($this, var$1, var$2, $description) => { - jl_Enum__init_($this, var$1, var$2); - $this.$description1 = $description; -}, -oncipcaf_ParserTrimSpecification__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncipcaf_ParserTrimSpecification(); - oncipcaf_ParserTrimSpecification__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncipcaf_ParserTrimSpecification__clinit_ = () => { - let var$1, var$2, var$3; - oncipcaf_ParserTrimSpecification_BOTH = oncipcaf_ParserTrimSpecification__init_($rt_s(4633), 0, $rt_s(4633)); - oncipcaf_ParserTrimSpecification_LEADING = oncipcaf_ParserTrimSpecification__init_($rt_s(4634), 1, $rt_s(4634)); - var$1 = oncipcaf_ParserTrimSpecification__init_($rt_s(4635), 2, $rt_s(4635)); - oncipcaf_ParserTrimSpecification_TRAILING = var$1; - var$2 = $rt_createArray(oncipcaf_ParserTrimSpecification, 3); - var$3 = var$2.data; - var$3[0] = oncipcaf_ParserTrimSpecification_BOTH; - var$3[1] = oncipcaf_ParserTrimSpecification_LEADING; - var$3[2] = var$1; - oncipcaf_ParserTrimSpecification_$VALUES = var$2; -}, -onciu_RewritableJavascript$PROXY$7_68 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_68_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_GraphRefType_copy(var$2, var$3[0].$value3, var$3[1]); -}, -oncie_Expression = $rt_classWithoutFields(), -oncie_Expression_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_Expression_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncie_Expression_foldedOver = $this => { - return $this; -}, -oncie_Expression_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncie_Expression_arguments = $this => { - let var$1, var$2, var$3; - var$1 = onciu_Foldable_folder$($this); - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - var$2 = sci_Nil$_MODULE$; - var$3 = new oncie_Expression$$anonfun$arguments$1; - var$3.$$outer37 = $this; - return onciu_Foldable$Folder_treeFold(var$1, var$2, var$3); -}, -oncie_Expression_dependencies = $this => { - let var$1, var$2; - var$1 = onciu_Foldable_folder$($this); - var$2 = new oncie_Expression$TreeAcc; - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - oncie_Expression$TreeAcc__init_(var$2, sci_Set$EmptySet$_MODULE$, oncie_Expression$TreeAcc$_apply$default$2(oncie_Expression$TreeAcc$_MODULE$)); - return (onciu_Foldable$Folder_treeFold(var$1, var$2, new oncie_Expression$$anonfun$dependencies$1)).$data1; -}, -oncie_Expression_occurrences = ($this, $variable, $skipScopeExpression) => { - let var$3, var$4, var$5; - var$3 = onciu_Foldable_folder$($this); - var$4 = new oncie_Expression$TreeAcc; - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - oncie_Expression$TreeAcc__init_(var$4, sci_Set$EmptySet$_MODULE$, oncie_Expression$TreeAcc$_apply$default$2(oncie_Expression$TreeAcc$_MODULE$)); - var$5 = new oncie_Expression$$anonfun$occurrences$2; - var$5.$$outer73 = $this; - var$5.$skipScopeExpression$1 = $skipScopeExpression; - var$5.$variable$20 = $variable; - return (onciu_Foldable$Folder_treeFold(var$3, var$4, var$5)).$data1; -}, -oncie_Expression_replaceAllOccurrencesBy = ($this, $variable, $replacement, $skipExpressionsWithComputedDependencies) => { - let $occurrencesToReplace, var$5, var$6; - $occurrencesToReplace = oncie_Expression_occurrences($this, $variable, $skipExpressionsWithComputedDependencies); - onciu_bottomUp$_$callClinit(); - var$5 = onciu_bottomUp$_MODULE$; - onciu_Rewriter$_$callClinit(); - $variable = onciu_Rewriter$_MODULE$; - var$6 = new oncie_Expression$$anonfun$replaceAllOccurrencesBy$1; - var$6.$occurrencesToReplace$1 = $occurrencesToReplace; - var$6.$replacement$1 = $replacement; - var$6.$skipExpressionsWithComputedDependencies$1 = $skipExpressionsWithComputedDependencies; - return (onciu_bottomUp$_apply(var$5, onciu_Rewriter$_lift($variable, var$6), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2($this); -}, -oncie_Expression_containsAggregate = $this => { - return onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$($this), new oncie_Expression$$anonfun$containsAggregate$1); -}, -oncie_Expression_findAggregate = $this => { - let var$1, var$2; - var$1 = onciu_Foldable_folder$($this); - var$2 = new oncie_Expression$$anonfun$findAggregate$1; - sr_ClassTag$_$callClinit(); - return onciu_Foldable$Folder_treeFind(var$1, var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); -}, -oncie_Expression_dup0 = ($this, $children) => { - return $this.$dup0($children); -}, -oncie_Expression_org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1 = ($acc, $occurrence, $variable$2) => { - let var$4; - a: { - b: { - var$4 = $occurrence.$name4; - $variable$2 = $variable$2.$name4; - if (var$4 !== null) { - if (!jl_String_equals(var$4, $variable$2)) - break a; - else - break b; - } - if ($variable$2 !== null) - break a; - } - if (!oncie_Expression$TreeAcc_inScope($acc, $occurrence)) { - $variable$2 = new oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_27_0; - $variable$2.$_0892 = $occurrence; - return oncie_Expression$TreeAcc_mapData($acc, $variable$2); - } - } - return $acc; -}, -oncie_Expression__init_ = $this => { - return; -}; -function oncie_AutoExtractedParameter() { - let a = this; oncie_Expression.call(a); - a.$name28 = null; - a.$parameterType1 = null; - a.$sizeHint3 = null; - a.$position63 = null; -} -let oncie_AutoExtractedParameter_asCanonicalStringVal = $this => { - return oncie_Parameter_asCanonicalStringVal$($this); -}, -oncie_AutoExtractedParameter_isConstantForQuery = $this => { - return 1; -}, -oncie_AutoExtractedParameter_name = $this => { - return $this.$name28; -}, -oncie_AutoExtractedParameter_parameterType = $this => { - return $this.$parameterType1; -}, -oncie_AutoExtractedParameter_sizeHint = $this => { - return $this.$sizeHint3; -}, -oncie_AutoExtractedParameter_position = $this => { - return $this.$position63; -}, -oncie_AutoExtractedParameter_hashCode = $this => { - let var$1, var$2, var$3; - suh_MurmurHash3$_$callClinit(); - var$1 = suh_MurmurHash3$_MODULE$; - var$2 = $rt_createArray(jl_Object, 3); - var$3 = var$2.data; - var$3[0] = $this.$name28; - var$3[1] = $this.$parameterType1; - var$3[2] = $this.$sizeHint3; - return suh_MurmurHash3$_arrayHash(var$1, var$2); -}, -oncie_AutoExtractedParameter_canEqual = ($this, $that) => { - return $that instanceof oncie_AutoExtractedParameter; -}, -oncie_AutoExtractedParameter_equals = ($this, $obj) => { - if (!($obj instanceof oncie_AutoExtractedParameter)) - return 0; - $obj = $obj; - return $this instanceof oncie_AutoExtractedParameter && oncie_Parameter_equals$($this, $obj) ? 1 : 0; -}, -oncie_AutoExtractedParameter_copy = ($this, $name, $parameterType, $sizeHint, $position) => { - return oncie_AutoExtractedParameter__init_0($name, $parameterType, $sizeHint, $position); -}, -oncie_AutoExtractedParameter_productPrefix = $this => { - return $rt_s(4636); -}, -oncie_AutoExtractedParameter_productArity = $this => { - return 3; -}, -oncie_AutoExtractedParameter_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name28; - case 1: - return $this.$parameterType1; - case 2: - return $this.$sizeHint3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_AutoExtractedParameter_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_AutoExtractedParameter_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_AutoExtractedParameter__init_ = ($this, $name, $parameterType, $sizeHint, $position) => { - $this.$name28 = $name; - $this.$parameterType1 = $parameterType; - $this.$sizeHint3 = $sizeHint; - $this.$position63 = $position; - oncie_Expression__init_($this); -}, -oncie_AutoExtractedParameter__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncie_AutoExtractedParameter(); - oncie_AutoExtractedParameter__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function sci_Map$Map4$Map4Iterator() { - let a = this; sc_AbstractIterator.call(a); - a.$i3 = 0; - a.$$outer6 = null; -} -let sci_Map$Map4$Map4Iterator_hasNext = $this => { - if ($this.$i3 >= 4) - return 0; - return 1; -}, -sci_Map$Map4$Map4Iterator_next = $this => { - let var$1, $result; - a: { - switch ($this.$i3) { - case 0: - var$1 = $this.$$outer6; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map4$$key1, var$1.$scala$collection$immutable$Map$Map4$$value1); - break a; - case 1: - var$1 = $this.$$outer6; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map4$$key2, var$1.$scala$collection$immutable$Map$Map4$$value2); - break a; - case 2: - var$1 = $this.$$outer6; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map4$$key3, var$1.$scala$collection$immutable$Map$Map4$$value3); - break a; - case 3: - var$1 = $this.$$outer6; - $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map4$$key4, var$1.$scala$collection$immutable$Map$Map4$$value4); - break a; - default: - } - $result = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - } - $this.$i3 = $this.$i3 + 1 | 0; - return $result; -}, -sci_Map$Map4$Map4Iterator_drop = ($this, $n) => { - $this.$i3 = $this.$i3 + $n | 0; - return $this; -}, -sci_Map$Map4$Map4Iterator_scala$collection$immutable$Map$Map4$Map4Iterator$$$outer = $this => { - return $this.$$outer6; -}, -sci_Map$Map4$Map4Iterator__init_ = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer6 = $$outer; - $this.$i3 = 0; -}, -sci_Map$Map4$$anon$7 = $rt_classWithoutFields(sci_Map$Map4$Map4Iterator), -sci_Map$Map4$$anon$7_nextResult = ($this, $k, $v) => { - return s_Tuple2__init_($k, $v); -}, -oncias_SemanticAnalysisTooling = $rt_classWithoutFields(0), -oncias_SemanticAnalysisTooling_semanticCheckFold$ = ($$this, $iterable, $f) => { - let var$4; - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - var$4 = new oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0; - var$4.$_0503 = $f; - return $iterable.$foldLeft($$this, var$4); -}, -oncias_SemanticAnalysisTooling_specifyType$0 = ($$this, $typeGen, $expression) => { - let var$4; - var$4 = new oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0; - var$4.$_0285 = $$this; - var$4.$_1108 = $typeGen; - var$4.$_241 = $expression; - return var$4; -}, -oncias_SemanticAnalysisTooling_specifyType$ = ($$this, $possibleTypes, $expression) => { - $$this = new oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0; - $$this.$_032 = $expression; - $$this.$_116 = $possibleTypes; - return $$this; -}, -oncias_SemanticAnalysisTooling_expectType$2 = ($$this, $possibleTypes, $opt) => { - let var$4, var$5; - oncias_OptionSemanticChecking$_$callClinit(); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$5 = new oncias_SemanticAnalysisTooling$expectType$lambda$_15_0; - var$5.$_0571 = $$this; - var$5.$_1195 = $possibleTypes; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, $opt, var$5); -}, -oncias_SemanticAnalysisTooling_expectType$1 = ($$this, $possibleTypes, $expressions) => { - let var$4, var$5; - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = new oncias_SemanticAnalysisTooling$expectType$lambda$_19_0; - var$5.$_01084 = $$this; - var$5.$_1365 = $expressions; - var$5.$_2120 = $possibleTypes; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); -}, -oncias_SemanticAnalysisTooling_expectType$ = ($$this, $possibleTypes, $expression) => { - let var$4, var$5; - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = new oncias_SemanticAnalysisTooling$expectType$lambda$_23_0; - var$5.$_0240 = $$this; - var$5.$_192 = $possibleTypes; - var$5.$_237 = $expression; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); -}, -oncias_SemanticAnalysisTooling_expectType$0 = ($$this, $s, $possibleTypes, $expression, $messageGen) => { - let var$6, var$7, var$8, var$9; - a: { - b: { - c: { - var$6 = $possibleTypes.$apply4(); - $$this = oncias_SemanticState_expressionType($s, $expression); - var$7 = oncias_ExpressionTypeInfo$_apply(oncias_ExpressionTypeInfo$_MODULE$, $$this.$specified, s_Some__init_(var$6)); - var$8 = new s_Tuple2; - var$9 = $s.$typeTable0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - $$this = var$9.$updated0(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $expression), var$7); - s_Tuple2__init_0(var$8, oncias_SemanticState_copy($s, $s.$currentScope, $$this, $s.$recordedScopes0, $s.$notifications, $s.$features, $s.$declareVariablesToSuppressDuplicateErrors, $s.$semanticCheckHasRunOnce, $s.$targetGraph, $s.$workingGraph), oncias_ExpressionTypeInfo_actual(var$7)); - $$this = var$8.$_10; - $s = var$8.$_20; - oncius_TypeSpec$_$callClinit(); - var$9 = oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); - if (var$9 !== null) { - if (!oncius_TypeSpec_equals(var$9, $s)) - break c; - else - break b; - } - if ($s === null) - break b; - } - $$this = var$8.$_10; - oncias_SemanticCheckResult$_$callClinit(); - $$this = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, $$this); - break a; - } - $s = oncius_TypeSpec_mkString0((oncias_SemanticState_expressionType($$this, $expression)).$specified, $rt_s(45), $rt_s(872)); - $possibleTypes = oncius_TypeSpec_mkString0($possibleTypes.$apply4(), $rt_s(45), $rt_s(872)); - if ($rt_isInstance($expression, oncie_Parameter)) { - var$8 = $expression; - if (!jl_String_matches(var$8.$name(), $rt_s(4637))) { - oncias_SemanticCheckResult$_$callClinit(); - var$9 = oncias_SemanticCheckResult$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$6 = oncias_SemanticError$_MODULE$; - var$8 = var$8.$name(); - $s = $messageGen.$apply3($possibleTypes, $s); - $possibleTypes = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($possibleTypes); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($possibleTypes, $rt_s(4638)), var$8), $rt_s(4639)), $s); - $$this = oncias_SemanticCheckResult$_error(var$9, $$this, oncias_SemanticError$_apply(var$6, jl_AbstractStringBuilder_toString($possibleTypes), $expression.$position())); - break a; - } - } - oncias_SemanticCheckResult$_$callClinit(); - var$8 = oncias_SemanticCheckResult$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$9 = oncias_SemanticError$_MODULE$; - $s = $messageGen.$apply3($possibleTypes, $s); - $possibleTypes = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($possibleTypes); - jl_StringBuilder_append(jl_StringBuilder_append($possibleTypes, $rt_s(873)), $s); - $$this = oncias_SemanticCheckResult$_error(var$8, $$this, oncias_SemanticError$_apply(var$9, jl_AbstractStringBuilder_toString($possibleTypes), $expression.$position())); - } - return $$this; -}, -oncias_SemanticAnalysisTooling_expectType$default$4$ = $$this => { - return oncie_Expression$_DefaultTypeMismatchMessageGenerator; -}, -oncias_SemanticAnalysisTooling_checkTypes$ = ($$this, $expression, $signatures) => { - let var$4, var$5; - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = new oncias_SemanticAnalysisTooling$checkTypes$lambda$_31_0; - var$5.$_0531 = $$this; - var$5.$_1186 = $signatures; - var$5.$_262 = $expression; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); -}, -oncias_SemanticAnalysisTooling_whenState$ = ($$this, $condition, $thenBranch, $elseBranch) => { - let var$5; - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_MODULE$; - var$5 = new oncias_SemanticAnalysisTooling$whenState$lambda$_33_0; - var$5.$_0842 = $condition; - var$5.$_1289 = $thenBranch; - var$5.$_293 = $elseBranch; - return oncias_SemanticCheck$_fromState($$this, var$5); -}, -oncias_SemanticAnalysisTooling_whenState$default$3$ = ($$this, $condition) => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); -}, -oncias_SemanticAnalysisTooling_unionOfTypes$ = ($$this, $iterable) => { - let var$3; - var$3 = new oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_39_0; - var$3.$_0214 = $$this; - var$3.$_181 = $iterable; - return var$3; -}, -oncias_SemanticAnalysisTooling_withScopedState$ = ($$this, $check) => { - oncias_SemanticAnalysisTooling$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScope, $check.$apply4()), oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope0(oncias_SemanticAnalysisTooling$_MODULE$)); -}, -oncias_SemanticAnalysisTooling_ensureDefined$ = ($$this, $v) => { - $$this = new oncias_SemanticAnalysisTooling$ensureDefined$lambda$_55_0; - $$this.$_0820 = $v; - return $$this; -}, -oncias_SemanticAnalysisTooling_declareVariable$ = ($$this, $v, $possibleTypes) => { - $$this = new oncias_SemanticAnalysisTooling$declareVariable$lambda$_57_0; - $$this.$_080 = $v; - $$this.$_134 = $possibleTypes; - return $$this; -}, -oncias_SemanticAnalysisTooling_declareVariable$0 = ($$this, $v, $typeGen, $maybePreviousDeclaration, $overriding) => { - $$this = new oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0; - $$this.$_01092 = $v; - $$this.$_1367 = $typeGen; - $$this.$_2121 = $maybePreviousDeclaration; - $$this.$_331 = $overriding; - return $$this; -}, -oncias_SemanticAnalysisTooling_declareVariables$ = ($$this, $symbols) => { - let var$3, var$4; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = new oncias_SemanticAnalysisTooling$declareVariables$lambda$_69_0; - var$4.$_05 = $$this; - return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, $symbols, var$4); -}, -oncias_SemanticAnalysisTooling_recordCurrentScope$ = ($$this, $astNode) => { - let var$3; - oncias_package$_$callClinit(); - $$this = oncias_package$_MODULE$; - var$3 = new oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_71_0; - var$3.$_01064 = $astNode; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($$this, var$3); -}, -oncias_SemanticAnalysisTooling_requireFeatureSupport$ = ($$this, $msg, $feature, $position) => { - let var$5; - oncias_package$_$callClinit(); - $$this = oncias_package$_MODULE$; - var$5 = new oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_75_0; - var$5.$_0870 = $feature; - var$5.$_1298 = $msg; - var$5.$_296 = $position; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($$this, var$5); -}, -oncias_SemanticAnalysisTooling_error$ = ($$this, $msg, $position) => { - let var$4, var$5, var$6; - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_MODULE$; - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncias_SemanticErrorDef, 1); - var$6 = var$5.data; - oncias_SemanticError$_$callClinit(); - var$6[0] = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $msg, $position); - return oncias_SemanticCheck$_error($$this, sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); -}, -oncias_SemanticAnalysisTooling_error$0 = ($$this, $gqlStatusObject, $msg, $position) => { - let var$5, var$6; - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_MODULE$; - var$5 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); - var$6.data[0] = oncias_SemanticError__init_($gqlStatusObject, $msg, $position); - return oncias_SemanticCheck$_error($$this, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); -}, -oncias_SemanticAnalysisTooling_warn$ = ($$this, $notification) => { - let var$3; - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_MODULE$; - var$3 = new oncias_SemanticCheck$$warn$lambda$_4_0; - var$3.$_0877 = $notification; - return oncias_SemanticCheck$_fromFunction($$this, var$3); -}, -oncias_SemanticAnalysisTooling_types$ = ($$this, $expression) => { - $$this = new oncias_SemanticAnalysisTooling$types$lambda$_85_0; - $$this.$_0152 = $expression; - return $$this; -}, -oncia_Query = $rt_classWithoutFields(0), -oncia_Query_returnColumns$ = $$this => { - return ($$this.$returnVariables()).$explicitVariables.$toList(); -}; -function oncia_SingleQuery() { - let a = this; jl_Object.call(a); - a.$partitionedClauses0 = null; - a.$clauses0 = null; - a.$position12 = null; - a.$bitmap$033 = 0; -} -let oncia_SingleQuery_returnColumns = $this => { - return oncia_Query_returnColumns$($this); -}, -oncia_SingleQuery_foldedOver = $this => { - return $this; -}, -oncia_SingleQuery_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_SingleQuery_clauses = $this => { - return $this.$clauses0; -}, -oncia_SingleQuery_position = $this => { - return $this.$position12; -}, -oncia_SingleQuery_partitionedClauses = $this => { - let var$1, $$je; - if ($this.$bitmap$033) - return $this.$partitionedClauses0; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$033) - break a; - oncia_SingleQuery$_$callClinit(); - $this.$partitionedClauses0 = oncia_SingleQuery$_org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses(oncia_SingleQuery$_MODULE$, oncia_SingleQuery_clauses($this)); - $this.$bitmap$033 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$partitionedClauses0; -}, -oncia_SingleQuery_mapEachSingleQuery = ($this, $f) => { - return $f.$apply2($this); -}, -oncia_SingleQuery_containsUpdates = $this => { - return $this.$clauses0.$exists(new oncia_SingleQuery$containsUpdates$lambda$_57_0); -}, -oncia_SingleQuery_returnVariables = $this => { - return ($this.$clauses0.$last()).$returnVariables(); -}, -oncia_SingleQuery_getReturns = $this => { - let var$1; - var$1 = $this.$clauses0.$last(); - if (var$1 instanceof oncia_Return) - return sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$); - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); -}, -oncia_SingleQuery_isCorrelated = $this => { - return !s_Option_isDefined((oncia_SingleQuery_partitionedClauses($this)).$importingWith0) && !s_Option_exists((oncia_SingleQuery_partitionedClauses($this)).$initialGraphSelection, new oncia_SingleQuery$isCorrelated$lambda$_60_0) ? 0 : 1; -}, -oncia_SingleQuery_isReturning = $this => { - if (!($this.$clauses0.$last() instanceof oncia_Return)) - return 0; - return 1; -}, -oncia_SingleQuery_endsWithFinish = $this => { - if (!($this.$clauses0.$last() instanceof oncia_Finish)) - return 0; - return 1; -}, -oncia_SingleQuery_importColumns = $this => { - let $w; - $w = (oncia_SingleQuery_partitionedClauses($this)).$importingWith0; - if (!($w instanceof s_Some)) { - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - } - return $w.$value5.$returnItems4.$items0.$map(new oncia_SingleQuery$importColumns$lambda$_63_0); -}, -oncia_SingleQuery_semanticCheckAbstract = ($this, $clauses, $clauseCheck, $canOmitReturnClause) => { - let var$4, var$5, var$6; - var$4 = oncia_SingleQuery_checkStandaloneCall($this, $clauses); - var$5 = new oncia_SingleQuery$semanticCheckAbstract$lambda$_66_0; - var$5.$_0917 = $clauseCheck; - var$5.$_1318 = $clauses; - var$6 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$4.$chain(oncias_SemanticAnalysisTooling_withScopedState$($this, var$5)), oncia_SingleQuery_checkComposableNonTransactionCommandsAllowed($this, $clauses)), oncia_SingleQuery_checkOrder($this, $clauses, $canOmitReturnClause)), oncia_SingleQuery_checkNoCallInTransactionsAfterWriteClause($this, $clauses)), oncia_SingleQuery_checkInputDataStream($this, $clauses)); - var$5 = (oncia_SingleQuery_partitionedClauses($this)).$clausesExceptImportingWithAndLeadingGraphSelection0; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$4 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - $clauses = var$5.$collect(new oncia_SingleQuery$$anonfun$checkUsePosition$1); - var$5 = new oncia_SingleQuery$checkUsePosition$lambda$_85_0; - var$5.$_0790 = $this; - var$5.$_1266 = $rt_s(4640); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$6, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$4, $clauses, var$5)), oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $this)); -}, -oncia_SingleQuery_semanticCheck = $this => { - let var$1, var$2; - var$1 = $this.$clauses0; - var$2 = new oncia_SingleQuery$semanticCheck$lambda$_67_0; - var$2.$_0138 = $this; - return oncia_SingleQuery_semanticCheckAbstract($this, var$1, var$2, 0); -}, -oncia_SingleQuery_semanticCheckInSubqueryExpressionContext = ($this, $canOmitReturn) => { - let var$2, var$3; - var$2 = $this.$clauses0; - var$3 = new oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_70_0; - var$3.$_01089 = $this; - return oncia_SingleQuery_semanticCheckAbstract($this, var$2, var$3, $canOmitReturn); -}, -oncia_SingleQuery_checkImportingWith = $this => { - let var$1; - oncias_OptionSemanticChecking$_$callClinit(); - var$1 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$1, (oncia_SingleQuery_partitionedClauses($this)).$importingWith0, new oncia_SingleQuery$checkImportingWith$lambda$_71_0); -}, -oncia_SingleQuery_semanticCheckImportingWithSubQueryContext = ($this, $outer) => { - let $workingGraph, var$3, var$4, var$5, var$6, $$je; - a: { - $workingGraph = $outer.$workingGraph; - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - if (s_Option_isDefined((oncia_SingleQuery_partitionedClauses($this)).$importingWith0)) - var$4 = s_None$_MODULE$; - else { - var$4 = (oncia_SingleQuery_partitionedClauses($this)).$clausesExceptImportingWithAndLeadingGraphSelection0.$headOption(); - if (var$4 instanceof s_Some) { - var$4 = var$4.$value5; - if (var$4 instanceof oncia_With) { - var$4 = s_Some__init_(var$4); - break a; - } - } - var$4 = s_None$_MODULE$; - } - } - var$5 = new oncia_SingleQuery$checkIllegalImportWith$lambda$_76_0; - var$5.$_0623 = $this; - var$3 = (oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, var$5)).$chain(oncia_SingleQuery_checkInitialGraphSelection($this, $outer)); - var$6 = oncia_SingleQuery_partitionedClauses($this); - if ((var$6.$bitmap$018 & 2) << 24 >> 24) - var$4 = var$6.$clausesExceptImportingWithAndInitialGraphSelection; - else { - jl_Object_monitorEnterSync(var$6); - b: { - try { - if ((var$6.$bitmap$018 & 2) << 24 >> 24) - break b; - s_Option$_$callClinit(); - var$6.$clausesExceptImportingWithAndInitialGraphSelection = sc_AbstractIterable_$plus$plus((s_Option$_option2Iterable(s_Option$_MODULE$, oncia_SingleQuery$PartitionedClauses_subsequentGraphSelection(var$6))).$toSeq(), oncia_SingleQuery$PartitionedClauses_clausesExceptImportingWithAndLeadingGraphSelection(var$6)); - var$6.$bitmap$018 = (var$6.$bitmap$018 | 2) << 24 >> 24; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $outer = $$je; - - } - jl_Object_monitorExitSync(var$6); - $rt_throw($outer); - } - jl_Object_monitorExitSync(var$6); - var$4 = var$6.$clausesExceptImportingWithAndInitialGraphSelection; - } - var$5 = new oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_0; - var$5.$_01023 = $this; - var$5.$_1351 = $outer; - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$3, oncia_SingleQuery_semanticCheckAbstract($this, var$4, var$5, 0)), oncia_SingleQuery_warnOnPotentiallyShadowVariables($this, $outer)); - oncias_SemanticCheck$_$callClinit(); - $outer = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_1; - var$3.$_0576 = $workingGraph; - return oncias_SemanticCheck_chain$(var$4, oncias_SemanticCheck$_fromState($outer, var$3)); -}, -oncia_SingleQuery_semanticCheckInSubqueryContext = ($this, $outer, $current) => { - let $workingGraph, var$4, var$5, var$6, var$7, var$8, var$9; - $workingGraph = $outer.$workingGraph; - var$4 = oncia_SingleQuery_checkInitialGraphSelection($this, $outer); - var$5 = oncia_SingleQuery$PartitionedClauses_clausesExceptInitialGraphSelection(oncia_SingleQuery_partitionedClauses($this)); - var$6 = new oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_74_0; - var$6.$_0304 = $this; - var$6.$_1114 = $outer; - var$7 = oncia_SingleQuery_checkStandaloneCall($this, var$5); - var$8 = new oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_65_0; - var$8.$_0508 = var$6; - var$8.$_1177 = var$5; - var$9 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$7.$chain(oncias_SemanticAnalysisTooling_withScopedState$($this, var$8)), oncia_SingleQuery_checkComposableNonTransactionCommandsAllowed($this, var$5)), oncia_SingleQuery_checkOrder($this, var$5, 0)), oncia_SingleQuery_checkNoCallInTransactionsAfterWriteClause($this, var$5)), oncia_SingleQuery_checkInputDataStream($this, var$5)); - var$5 = oncia_SingleQuery$PartitionedClauses_clausesExceptInitialGraphSelection(oncia_SingleQuery_partitionedClauses($this)); - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$8 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$6 = var$5.$collect(new oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1); - var$5 = new oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_84_0; - var$5.$_0185 = $this; - var$5.$_171 = $rt_s(4641); - var$6 = var$4.$chain(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$9, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$8, var$6, var$5)), oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $this))); - var$5 = oncias_package$_MODULE$; - var$7 = new oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_87_0; - var$7.$_0626 = $this; - var$7.$_1214 = $outer; - var$6 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$6, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$5, var$7)), oncia_SingleQuery_warnOnPotentiallyShadowVariables($this, $current)); - oncias_SemanticCheck$_$callClinit(); - $outer = oncias_SemanticCheck$_MODULE$; - $current = new oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_74_1; - $current.$_0741 = $workingGraph; - return oncias_SemanticCheck_chain$(var$6, oncias_SemanticCheck$_fromState($outer, $current)); -}, -oncia_SingleQuery_checkInitialGraphSelection = ($this, $outer) => { - let var$2, var$3, var$4; - oncias_OptionSemanticChecking$_$callClinit(); - var$2 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$3 = (oncia_SingleQuery_partitionedClauses($this)).$initialGraphSelection; - var$4 = new oncia_SingleQuery$checkInitialGraphSelection$lambda$_75_0; - var$4.$_01063 = $this; - var$4.$_1361 = $outer; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4); -}, -oncia_SingleQuery_checkStandaloneCall = ($this, $clauses) => { - let $where; - if ($clauses !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses); - if (!$clauses.$lengthCompare(2)) { - $where = $clauses.$apply1(1); - if ($clauses.$apply1(0) instanceof oncia_UnresolvedCall && $where instanceof oncia_With) - return oncias_SemanticAnalysisTooling_error$($this, $rt_s(4642), $where.$position36); - } - } - if ($clauses !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses); - if (!$clauses.$lengthCompare(2) && $rt_isInstance($clauses.$apply1(0), oncia_GraphSelection) && $clauses.$apply1(1) instanceof oncia_UnresolvedCall) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - } - if ($clauses.$length() > 1 && $clauses.$exists(new oncia_SingleQuery$checkStandaloneCall$lambda$_77_0)) { - $clauses = $clauses.$find3(new oncia_SingleQuery$checkStandaloneCall$lambda$_77_1); - $where = new oncia_SingleQuery$checkStandaloneCall$lambda$_77_2; - $where.$_0448 = $this; - return s_Option_getOrElse(s_Option_map($clauses, $where), new oncia_SingleQuery$checkStandaloneCall$lambda$_77_3); - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); -}, -oncia_SingleQuery_checkComposableNonTransactionCommandsAllowed = ($this, $clauses) => { - let $commandClauses; - $commandClauses = $clauses.$filter1(new oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_0); - if ($commandClauses.$length() <= 1) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if (!sc_IterableOnceOps_nonEmpty$($commandClauses.$filter1(new oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_1))) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $rt_s(4643), oncias_SemanticFeature$ComposableCommands$_MODULE$, $this.$position12); -}, -oncia_SingleQuery_checkOrder = ($this, $clauses, $canOmitReturnClause) => { - let var$3, var$4; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = new oncia_SingleQuery$checkOrder$lambda$_79_0; - var$4.$_0622 = $this; - var$4.$_1212 = $clauses; - var$4.$_270 = $canOmitReturnClause; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); -}, -oncia_SingleQuery_checkNoCallInTransactionsAfterWriteClause = ($this, $clauses) => { - let $Acc$module, var$3, $errors; - $Acc$module = new sr_LazyRef; - var$3 = oncia_SingleQuery_Acc$3($this, $Acc$module); - s_package$_$callClinit(); - $errors = oncia_SingleQuery$Acc$2$_apply(var$3, 0, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); - var$3 = new oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_80_0; - var$3.$_089 = $this; - var$3.$_136 = $Acc$module; - $clauses = $clauses.$foldLeft($errors, var$3); - if ($clauses === null) - $rt_throw(s_MatchError__init_($clauses)); - $errors = $clauses.$errors1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, $errors); -}, -oncia_SingleQuery_checkClauses = ($this, $clauses, $outerScope) => { - let $lastIndex, var$4, var$5; - $lastIndex = $clauses.$length() - 1 | 0; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$4 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - $clauses = $clauses.$zipWithIndex(); - var$5 = new oncia_SingleQuery$checkClauses$lambda$_81_0; - var$5.$_0368 = $this; - var$5.$_1135 = $outerScope; - var$5.$_250 = $lastIndex; - return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$4, $clauses, var$5); -}, -oncia_SingleQuery_checkInputDataStream = ($this, $clauses) => { - let $idsClauses, var$3, var$4; - $idsClauses = $clauses.$filter1(new oncia_SingleQuery$checkInputDataStream$lambda$_83_0); - var$3 = $idsClauses.$length(); - var$4 = $rt_compare(var$3, 1); - if (var$4 > 0) - return oncias_SemanticAnalysisTooling_error$($this, $rt_s(4644), ($idsClauses.$apply1(1)).$position()); - if (var$4) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($clauses.$head() instanceof oncia_InputDataStream) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - return oncias_SemanticAnalysisTooling_error$($this, $rt_s(4645), ($idsClauses.$head()).$position()); -}, -oncia_SingleQuery_warnOnPotentiallyShadowVariables = ($this, $outer) => { - let var$2, var$3; - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_86_0; - var$3.$_0461 = $this; - var$3.$_1161 = $outer; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); -}, -oncia_SingleQuery_finalScope = ($this, $scope) => { - return $scope.$children2.$last(); -}, -oncia_SingleQuery_copy = ($this, $clauses, $position) => { - return oncia_SingleQuery__init_0($clauses, $position); -}, -oncia_SingleQuery_productPrefix = $this => { - return $rt_s(4646); -}, -oncia_SingleQuery_productArity = $this => { - return 1; -}, -oncia_SingleQuery_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$clauses0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SingleQuery_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SingleQuery_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SingleQuery_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SingleQuery_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SingleQuery) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$clauses0; - $x$1 = $x$1.$clauses0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SingleQuery)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_SingleQuery_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SingleQuery_err$1 = ($this, $msg, $wth$1) => { - let var$3; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4647)), $msg), 46); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$3), $wth$1.$position36); -}, -oncia_SingleQuery_$anonfun$checkOrder$2 = ($x0$1, $x1$1) => { - let $pair, $semanticErrors, $match1, $match2, $optError, $clause, $update; - a: { - $pair = s_Tuple2__init_($x0$1, $x1$1); - $semanticErrors = s_Tuple2__1($pair); - $pair = s_Tuple2__2($pair); - if ($pair !== null) { - s_package$_$callClinit(); - $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $match1 = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $match2 = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1); - if ($match1 instanceof oncia_Match) { - $x0$1 = $match1; - if ($match2 instanceof oncia_Match) { - $x1$1 = $match2; - if (oncia_Match_optional($x0$1) && !oncia_Match_optional($x1$1)) { - $optError = new s_Some; - oncias_SemanticError$_$callClinit(); - $pair = oncias_SemanticError$_MODULE$; - $match1 = oncia_Match_name($x1$1); - $x0$1 = oncia_Match_name($x0$1); - $match2 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($match2, $match1), $rt_s(4648)), $x0$1), $rt_s(4649)); - s_Some__init_0($optError, oncias_SemanticError$_apply($pair, jl_StringBuilder_toString($match2), oncia_Match_position($x1$1))); - break a; - } - } - } - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $clause = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0); - if ($clause instanceof oncia_Return) { - $x0$1 = $clause; - $optError = new s_Some; - oncias_SemanticError$_$callClinit(); - $x1$1 = oncias_SemanticError$_MODULE$; - $pair = oncia_Return_name($x0$1); - $match1 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($match1, $pair), $rt_s(4650)); - s_Some__init_0($optError, oncias_SemanticError$_apply($x1$1, jl_StringBuilder_toString($match1), oncia_Return_position($x0$1))); - break a; - } - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $clause = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0); - if ($clause instanceof oncia_Finish) { - $x0$1 = $clause; - $optError = new s_Some; - oncias_SemanticError$_$callClinit(); - $x1$1 = oncias_SemanticError$_MODULE$; - $pair = oncia_Finish_name($x0$1); - $match1 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($match1, $pair), $rt_s(4650)); - s_Some__init_0($optError, oncias_SemanticError$_apply($x1$1, jl_StringBuilder_toString($match1), oncia_Finish_position($x0$1))); - break a; - } - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0), oncia_UpdateClause)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1), oncia_UpdateClause)) { - $optError = s_None$_MODULE$; - break a; - } - } - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0), oncia_UpdateClause)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1) instanceof oncia_With) { - $optError = s_None$_MODULE$; - break a; - } - } - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0), oncia_UpdateClause)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1) instanceof oncia_Return) { - $optError = s_None$_MODULE$; - break a; - } - } - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0), oncia_UpdateClause)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1) instanceof oncia_Finish) { - $optError = s_None$_MODULE$; - break a; - } - } - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $update = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0); - $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $clause = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1); - if ($rt_isInstance($update, oncia_UpdateClause)) { - $x0$1 = $update; - $optError = new s_Some; - oncias_SemanticError$_$callClinit(); - $x1$1 = oncias_SemanticError$_MODULE$; - $x0$1 = $x0$1.$name(); - $pair = $clause.$name(); - $match1 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($match1, $rt_s(4651)), $x0$1), $rt_s(119)), $pair); - s_Some__init_0($optError, oncias_SemanticError$_apply($x1$1, jl_StringBuilder_toString($match1), $clause.$position())); - break a; - } - } - } - } - $optError = s_None$_MODULE$; - } - return s_Option_fold($optError, oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0__init_($semanticErrors), oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1__init_($semanticErrors)); -}, -oncia_SingleQuery_$anonfun$checkOrder$6 = ($x0$2, $x1$2) => { - let $pair, $semanticErrors, $command, $clause, $optError; - a: { - $pair = s_Tuple2__init_($x0$2, $x1$2); - $semanticErrors = $pair.$_10; - $pair = $pair.$_20; - if ($pair !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $pair); - if (!$pair.$lengthCompare(2)) { - $command = $pair.$apply1(0); - $clause = $pair.$apply1(1); - if ($rt_isInstance($command, oncia_CommandClause)) { - $x0$2 = $command; - if ($clause instanceof oncia_With) { - $x1$2 = $clause; - if ($x0$2.$yieldAll()) { - $optError = new s_Some; - oncias_SemanticError$_$callClinit(); - $pair = oncias_SemanticError$_MODULE$; - $x0$2 = $x0$2.$name(); - $command = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($command); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($command, $rt_s(4652)), $x0$2), $rt_s(4653)); - s_Some__init_0($optError, oncias_SemanticError$_apply($pair, jl_AbstractStringBuilder_toString($command), $x1$2.$position36)); - break a; - } - } - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $pair); - if (!$pair.$lengthCompare(2)) { - $clause = $pair.$apply1(1); - if ($rt_isInstance($pair.$apply1(0), oncia_CommandClause) && $clause instanceof oncia_With) - b: { - c: { - $x1$2 = $clause.$withType; - $x0$2 = oncia_AddedInRewrite$_MODULE$; - if ($x1$2 !== null) { - if (jl_Object_equals($x1$2, $x0$2)) - break b; - else - break c; - } - if ($x0$2 === null) - break b; - } - $optError = s_None$_MODULE$; - break a; - } - } - } - if ($pair !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $pair); - if (!$pair.$lengthCompare(2)) { - $command = $pair.$apply1(0); - if ($rt_isInstance($command, oncia_CommandClause)) { - $x0$2 = $command; - $optError = new s_Some; - oncias_SemanticError$_$callClinit(); - $x1$2 = oncias_SemanticError$_MODULE$; - $pair = $x0$2.$name(); - $command = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($command); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($command, $rt_s(4652)), $pair), $rt_s(4654)); - s_Some__init_0($optError, oncias_SemanticError$_apply($x1$2, jl_AbstractStringBuilder_toString($command), $x0$2.$position())); - break a; - } - } - } - $optError = s_None$_MODULE$; - } - $x0$2 = new oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_0; - $x0$2.$_01016 = $semanticErrors; - $x1$2 = new oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_1; - $x1$2.$_0764 = $semanticErrors; - return s_Option_fold($optError, $x0$2, $x1$2); -}, -oncia_SingleQuery_$anonfun$checkOrder$1 = ($$this, $clauses$3, $canOmitReturnClause$1, $s) => { - let $validLastClauses, $sequenceErrors, $commandErrors, $missingYield, $concludeError, $missingReturn, var$11; - $validLastClauses = sc_AbstractIterable_sliding($clauses$3, 2); - s_package$_$callClinit(); - $sequenceErrors = sc_IterableOnceOps_foldLeft$($validLastClauses, sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)), new oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_0); - if (sc_AbstractIterable_count($clauses$3, new oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_1) <= 1) - $commandErrors = sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)); - else { - $missingYield = sc_IterableOnceOps_foldLeft$(sc_AbstractIterable_sliding($clauses$3, 2), sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)), new oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_2); - $concludeError = $clauses$3.$last(); - if ($concludeError instanceof oncia_Return && !$concludeError.$addedInRewrite) - $missingReturn = s_None$_MODULE$; - else { - $missingReturn = new s_Some; - oncias_SemanticError$_$callClinit(); - s_Some__init_0($missingReturn, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(4655), $concludeError.$position())); - } - $commandErrors = $missingYield.$concat($missingReturn); - } - a: { - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses$3); - if (!$clauses$3.$lengthCompare(1) && $clauses$3.$apply1(0) instanceof oncia_CallClause) - $concludeError = s_None$_MODULE$; - else { - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses$3); - if (!$clauses$3.$lengthCompare(2) && $rt_isInstance($clauses$3.$apply1(0), oncia_GraphSelection) && $clauses$3.$apply1(1) instanceof oncia_CallClause) - $concludeError = s_None$_MODULE$; - else { - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses$3); - if (!$clauses$3.$lengthCompare(0)) { - $concludeError = new s_Some; - oncias_SemanticError$_$callClinit(); - $clauses$3 = oncias_SemanticError$_MODULE$; - $missingYield = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($missingYield); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($missingYield, $rt_s(4656)), $rt_s(4657)), 46); - s_Some__init_0($concludeError, oncias_SemanticError$_apply($clauses$3, jl_AbstractStringBuilder_toString($missingYield), $$this.$position12)); - } else { - var$11 = 0; - $$this = null; - $clauses$3 = $clauses$3.$last(); - if ($rt_isInstance($clauses$3, oncia_UpdateClause) ? 1 : $clauses$3 instanceof oncia_Return ? 1 : $clauses$3 instanceof oncia_Finish ? 1 : !$rt_isInstance($clauses$3, oncia_CommandClause) ? 0 : 1) - $concludeError = s_None$_MODULE$; - else { - if ($rt_isInstance($clauses$3, oncia_SubqueryCall)) { - $concludeError = $clauses$3; - if (!($concludeError.$innerQuery()).$isReturning() && s_Option_isEmpty($concludeError.$reportParams())) { - $concludeError = s_None$_MODULE$; - break a; - } - } - if ($clauses$3 instanceof oncia_CallClause) { - var$11 = 1; - $$this = $clauses$3; - if (($$this.$returnVariables()).$explicitVariables.$isEmpty() && !$$this.$yieldAll()) { - $concludeError = s_None$_MODULE$; - break a; - } - } - if (var$11) { - $concludeError = new s_Some; - oncias_SemanticError$_$callClinit(); - $clauses$3 = oncias_SemanticError$_MODULE$; - $validLastClauses = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($validLastClauses); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($validLastClauses, $rt_s(4658)), $rt_s(4659)), $rt_s(4660)); - s_Some__init_0($concludeError, oncias_SemanticError$_apply($clauses$3, jl_AbstractStringBuilder_toString($validLastClauses), $$this.$position())); - } else if ($canOmitReturnClause$1) - $concludeError = s_None$_MODULE$; - else { - $concludeError = new s_Some; - oncias_SemanticError$_$callClinit(); - $$this = oncias_SemanticError$_MODULE$; - $missingYield = $clauses$3.$name(); - $missingReturn = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($missingReturn); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($missingReturn, $rt_s(4658)), $missingYield), $rt_s(4661)), $rt_s(4657)), $rt_s(4662)); - s_Some__init_0($concludeError, oncias_SemanticError$_apply($$this, jl_AbstractStringBuilder_toString($missingReturn), $clauses$3.$position())); - } - } - } - } - } - } - return oncias_SemanticCheckResult__init_($s, ($sequenceErrors.$concat($concludeError)).$concat($commandErrors)); -}, -oncia_SingleQuery_Acc$3 = ($this, $Acc$module$1) => { - let var$2, $$je; - if ($Acc$module$1.$_initialized) - return $Acc$module$1.$_value0; - jl_Object_monitorEnterSync($Acc$module$1); - a: { - try { - var$2 = sr_LazyRef_initialized($Acc$module$1) ? sr_LazyRef_value($Acc$module$1) : sr_LazyRef_initialize($Acc$module$1, oncia_SingleQuery$Acc$2$__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($Acc$module$1); - return var$2; - } - jl_Object_monitorExitSync($Acc$module$1); - $rt_throw(var$2); -}, -oncia_SingleQuery__init_ = ($this, $clauses, $position) => { - $this.$clauses0 = $clauses; - $this.$position12 = $position; - s_Predef$_$callClinit(); - s_Predef$_assert(s_Predef$_MODULE$, sc_IterableOnceOps_nonEmpty$($clauses)); -}, -oncia_SingleQuery__init_0 = (var_0, var_1) => { - let var_2 = new oncia_SingleQuery(); - oncia_SingleQuery__init_(var_2, var_0, var_1); - return var_2; -}; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0640 = null; -} -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0640.$useClausesToRemove$1; - onciu_Ref$_$callClinit(); - return jl_Boolean_valueOf(var$2.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, var$1))); -}; -function oncirc_containsNoMatchingNodes$$anonfun$apply$1() { - sr_AbstractPartialFunction.call(this); - this.$$outer50 = null; -} -let oncirc_containsNoMatchingNodes$$anonfun$apply$1_applyOrElse = ($this, $x1, $default) => { - if ($rt_isInstance($x1, onciu_ASTNode)) { - $x1 = $x1; - if ($x1 instanceof oncia_ReturnItems && $x1.$includeExisting0 ? 1 : 0) { - $default = new oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0; - $default.$_0446 = $this; - $default.$_1156 = $x1; - return $default; - } - } - return s_PartialFunction$_fallback_fn; -}, -oncirc_containsNoMatchingNodes$apply$lambda$_7_0 = $rt_classWithoutFields(), -oncirc_containsNoMatchingNodes$apply$lambda$_7_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4663)), var$2), $rt_s(4664)), var$1); - return jl_AbstractStringBuilder_toString(var$3); -}, -oncia_Clause = $rt_classWithoutFields(0), -oncia_Clause_returnVariables$ = $$this => { - return oncia_ReturnItems$ReturnVariables$_empty(oncia_ReturnItems$ReturnVariables$_MODULE$); -}, -oncia_Clause_semanticCheck$ = $$this => { - let var$2, var$3, var$4, var$5; - var$2 = $$this.$clauseSpecificSemanticCheck(); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncia_Clause$semanticCheck$lambda$_6_0; - var$4.$_0316 = $$this; - var$3 = var$2.$chain(oncias_SemanticCheck$_fromState(var$3, var$4)); - var$2 = oncias_SemanticCheck$_MODULE$; - var$5 = $$this.$shouldRunQPPChecks(); - var$4 = new oncia_Clause$semanticCheck$lambda$_6_1; - var$4.$_0829 = $$this; - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticCheck$_when(var$2, var$5, var$4)); -}, -oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$Read$2 = ($this, $Read$module$1) => { - let var$2, $$je; - if ($Read$module$1.$_initialized) - return $Read$module$1.$_value0; - jl_Object_monitorEnterSync($Read$module$1); - a: { - try { - var$2 = sr_LazyRef_initialized($Read$module$1) ? sr_LazyRef_value($Read$module$1) : sr_LazyRef_initialize($Read$module$1, oncia_Clause$Read$1$__init_(null)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($Read$module$1); - return var$2; - } - jl_Object_monitorExitSync($Read$module$1); - $rt_throw(var$2); -}, -oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$Write$2 = ($this, $Write$module$1) => { - let var$2, $$je; - if ($Write$module$1.$_initialized) - return $Write$module$1.$_value0; - jl_Object_monitorEnterSync($Write$module$1); - a: { - try { - var$2 = sr_LazyRef_initialized($Write$module$1) ? sr_LazyRef_value($Write$module$1) : sr_LazyRef_initialize($Write$module$1, oncia_Clause$Write$1$__init_(null)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($Write$module$1); - return var$2; - } - jl_Object_monitorExitSync($Write$module$1); - $rt_throw(var$2); -}, -oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$ReadWrite$2 = ($this, $ReadWrite$module$1) => { - let var$2, $$je; - if ($ReadWrite$module$1.$_initialized) - return $ReadWrite$module$1.$_value0; - jl_Object_monitorEnterSync($ReadWrite$module$1); - a: { - try { - var$2 = sr_LazyRef_initialized($ReadWrite$module$1) ? sr_LazyRef_value($ReadWrite$module$1) : sr_LazyRef_initialize($ReadWrite$module$1, oncia_Clause$ReadWrite$1$__init_0(null)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($ReadWrite$module$1); - return var$2; - } - jl_Object_monitorExitSync($ReadWrite$module$1); - $rt_throw(var$2); -}, -oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LegacyLabelExpression$3 = ($this, $LegacyLabelExpression$module$1) => { - let var$2, $$je; - if ($LegacyLabelExpression$module$1.$_initialized) - return $LegacyLabelExpression$module$1.$_value0; - jl_Object_monitorEnterSync($LegacyLabelExpression$module$1); - a: { - try { - var$2 = sr_LazyRef_initialized($LegacyLabelExpression$module$1) ? sr_LazyRef_value($LegacyLabelExpression$module$1) : sr_LazyRef_initialize($LegacyLabelExpression$module$1, oncia_Clause$LegacyLabelExpression$2$__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($LegacyLabelExpression$module$1); - return var$2; - } - jl_Object_monitorExitSync($LegacyLabelExpression$module$1); - $rt_throw(var$2); -}, -oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3 = ($this, $LabelExpressionsPartitions$module$1, $LegacyLabelExpression$module$1) => { - let $$je; - if ($LabelExpressionsPartitions$module$1.$_initialized) - return $LabelExpressionsPartitions$module$1.$_value0; - jl_Object_monitorEnterSync($LabelExpressionsPartitions$module$1); - a: { - try { - $LegacyLabelExpression$module$1 = sr_LazyRef_initialized($LabelExpressionsPartitions$module$1) ? sr_LazyRef_value($LabelExpressionsPartitions$module$1) : sr_LazyRef_initialize($LabelExpressionsPartitions$module$1, oncia_Clause$LabelExpressionsPartitions$2$__init_0($this, $LegacyLabelExpression$module$1)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $LegacyLabelExpression$module$1 = $$je; - break a; - - } - jl_Object_monitorExitSync($LabelExpressionsPartitions$module$1); - return $LegacyLabelExpression$module$1; - } - jl_Object_monitorExitSync($LabelExpressionsPartitions$module$1); - $rt_throw($LegacyLabelExpression$module$1); -}, -oncia_Clause_Acc$3 = ($this, $Acc$module$1, $LabelExpressionsPartitions$module$1, $Read$module$1, $Write$module$1, $ReadWrite$module$1, $LegacyLabelExpression$module$1) => { - let $$je; - if ($Acc$module$1.$_initialized) - return $Acc$module$1.$_value0; - jl_Object_monitorEnterSync($Acc$module$1); - a: { - try { - $LabelExpressionsPartitions$module$1 = sr_LazyRef_initialized($Acc$module$1) ? sr_LazyRef_value($Acc$module$1) : sr_LazyRef_initialize($Acc$module$1, oncia_Clause$Acc$2$__init_($this, $LabelExpressionsPartitions$module$1, $Read$module$1, $Write$module$1, $ReadWrite$module$1, $LegacyLabelExpression$module$1)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $LabelExpressionsPartitions$module$1 = $$je; - break a; - - } - jl_Object_monitorExitSync($Acc$module$1); - return $LabelExpressionsPartitions$module$1; - } - jl_Object_monitorExitSync($Acc$module$1); - $rt_throw($LabelExpressionsPartitions$module$1); -}, -oncia_Clause_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_ExpressionStringifier$_failingExtender, 0, 0, 0, 0)); -}, -oncia_HorizonClause = $rt_classWithoutFields(0), -oncia_ProjectionClause = $rt_classWithoutFields(0), -oncia_ProjectionClause_copyProjection$ = ($$this, $distinct, $returnItems, $orderBy, $skip, $limit, $where) => { - let var$8; - if ($$this instanceof oncia_With) { - var$8 = $$this; - $$this = oncia_With_copy(var$8, $distinct, $returnItems, $orderBy, $skip, $limit, $where, var$8.$withType, $$this.$position()); - } else if (!($$this instanceof oncia_Return)) { - if (!($$this instanceof oncia_Yield)) - $rt_throw(s_MatchError__init_($$this)); - $$this = oncia_Yield_copy($$this, $returnItems, $orderBy, $skip, $limit, $where, $$this.$position()); - } else { - var$8 = $$this; - $$this = oncia_Return_copy(var$8, $distinct, $returnItems, $orderBy, $skip, $limit, var$8.$excludedNames, var$8.$addedInRewrite, $$this.$position()); - } - return $$this; -}, -oncia_ProjectionClause_clauseSpecificSemanticCheck$ = $$this => { - return oncia_ReturnItems_semanticCheck($$this.$returnItems()); -}, -oncia_ProjectionClause_semanticCheckContinuation$ = ($$this, $previousScope, $outerScope) => { - let var$4, var$5; - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_MODULE$; - var$5 = new oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0; - var$5.$_0589 = $$this; - var$5.$_1203 = $previousScope; - var$5.$_267 = $outerScope; - return oncias_SemanticCheck$_fromState(var$4, var$5); -}, -oncia_ProjectionClause_warnOnAccessToRestrictedVariableInOrderByOrWhere$ = ($$this, $previousScopeVars, $error) => { - $$this = new oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1; - $$this.$error$1 = $error; - $$this = sc_AbstractIterable_collectFirst($previousScopeVars, $$this); - $previousScopeVars = new oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0; - $previousScopeVars.$_0702 = $error; - return s_Option_getOrElse($$this, $previousScopeVars); -}, -oncia_ProjectionClause_verifyOrderByAggregationUse$ = ($$this, $fail) => { - let var$3, var$4, var$5, var$6; - var$3 = oncia_ReturnItems_containsAggregate($$this.$returnItems()); - var$4 = s_Option_exists($$this.$orderBy(), new oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0); - if (!var$3 && var$4) { - var$5 = $$this.$name(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(4665)), var$5); - var$5 = jl_AbstractStringBuilder_toString(var$6); - $$this = $$this.$position(); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException($fail.$_0506.$$outer5.$cypherExceptionFactory0, var$5, $$this)); - } -}, -oncia_ProjectionClause_runChecks$1 = ($this, $scopeToImportVariablesFrom) => { - let var$2; - $scopeToImportVariablesFrom = oncia_ReturnItems_declareVariables($this.$returnItems(), $scopeToImportVariablesFrom); - var$2 = oncias_SemanticCheckableOption$_MODULE$; - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$($scopeToImportVariablesFrom, oncias_SemanticCheckableOption$_semanticCheck$extension(var$2, $this.$orderBy())), oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, $this.$limit())), oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, $this.$skip())), oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, - $this.$where())); -}, -oncia_ProjectionClause$ = $rt_classWithoutFields(), -oncia_ProjectionClause$_MODULE$ = null, -oncia_ProjectionClause$_$callClinit = () => { - oncia_ProjectionClause$_$callClinit = $rt_eraseClinit(oncia_ProjectionClause$); - oncia_ProjectionClause$__clinit_(); -}, -oncia_ProjectionClause$__clinit_ = () => { - let var$1; - var$1 = new oncia_ProjectionClause$; - oncia_ProjectionClause$_$callClinit(); - oncia_ProjectionClause$_MODULE$ = var$1; -}, -oncia_ProjectionClause$_unapply = ($this, $arg) => { - let $distinct, $ri, $orderBy, $skip, $limit, $where, $limit_0, $skip_0, $where_0; - if ($arg instanceof oncia_With) { - $arg = $arg; - $distinct = $arg.$distinct2; - $ri = $arg.$returnItems4; - $orderBy = $arg.$orderBy4; - $skip = $arg.$skip5; - $limit = $arg.$limit5; - $where = $arg.$where2; - return s_Some__init_(s_Tuple6__init_(jl_Boolean_valueOf($distinct), $ri, $orderBy, $skip, $limit, $where)); - } - if ($arg instanceof oncia_Return) { - $arg = $arg; - $distinct = $arg.$distinct1; - $ri = $arg.$returnItems2; - $orderBy = $arg.$orderBy2; - $skip = $arg.$skip3; - $limit_0 = $arg.$limit3; - return s_Some__init_(s_Tuple6__init_(jl_Boolean_valueOf($distinct), $ri, $orderBy, $skip, $limit_0, s_None$_MODULE$)); - } - if (!($arg instanceof oncia_Yield)) - $rt_throw(s_MatchError__init_($arg)); - $arg = $arg; - $ri = $arg.$returnItems3; - $orderBy = $arg.$orderBy3; - $skip_0 = $arg.$skip4; - $limit = $arg.$limit4; - $where_0 = $arg.$where3; - return s_Some__init_(s_Tuple6__init_(jl_Boolean_valueOf(0), $ri, $orderBy, $skip_0, $limit, $where_0)); -}, -oncia_ProjectionClause$_checkAliasedReturnItems = ($this, $returnItems, $clauseName) => { - let var$3; - var$3 = new oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0; - var$3.$_0864 = $returnItems; - var$3.$_1296 = $clauseName; - return var$3; -}, -s_Product6 = $rt_classWithoutFields(0); -function s_Tuple6() { - let a = this; jl_Object.call(a); - a.$_13 = null; - a.$_22 = null; - a.$_31 = null; - a.$_41 = null; - a.$_51 = null; - a.$_60 = null; -} -let s_Tuple6_productArity = $this => { - return 6; -}, -s_Tuple6_productElement = ($this, $n) => { - let var$2, var$3; - a: { - switch ($n) { - case 0: - break; - case 1: - var$2 = $this.$_22; - break a; - case 2: - var$2 = $this.$_31; - break a; - case 3: - var$2 = $this.$_41; - break a; - case 4: - var$2 = $this.$_51; - break a; - case 5: - var$2 = $this.$_60; - break a; - default: - var$3 = new jl_IndexOutOfBoundsException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$2, 32); - var$2 = jl_StringBuilder_append0(var$2, $n); - jl_AbstractStringBuilder_append(var$2, $rt_s(4666)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$3); - } - var$2 = $this.$_13; - } - return var$2; -}, -s_Tuple6__1 = $this => { - return $this.$_13; -}, -s_Tuple6__2 = $this => { - return $this.$_22; -}, -s_Tuple6__3 = $this => { - return $this.$_31; -}, -s_Tuple6__4 = $this => { - return $this.$_41; -}, -s_Tuple6__5 = $this => { - return $this.$_51; -}, -s_Tuple6__6 = $this => { - return $this.$_60; -}, -s_Tuple6_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$1, 7); - jl_AbstractStringBuilder_append(var$1, $rt_s(40)); - var$1 = jl_StringBuilder_append(var$1, $this.$_13); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_22); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_31); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_41); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_51); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_60); - jl_AbstractStringBuilder_append(var$1, $rt_s(42)); - return jl_AbstractStringBuilder_toString(var$1); -}, -s_Tuple6_productPrefix = $this => { - return $rt_s(4667); -}, -s_Tuple6_productIterator = $this => { - return sr_ScalaRunTime$$anon$1__init_($this); -}, -s_Tuple6_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); -}, -s_Tuple6_equals = ($this, $x$1) => { - a: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof s_Tuple6) ? 0 : 1)) - break a; - $x$1 = $x$1; - if (!sr_BoxesRunTime_equals($this.$_13, $x$1.$_13)) - break a; - if (!sr_BoxesRunTime_equals($this.$_22, $x$1.$_22)) - break a; - if (!sr_BoxesRunTime_equals($this.$_31, $x$1.$_31)) - break a; - if (!sr_BoxesRunTime_equals($this.$_41, $x$1.$_41)) - break a; - if (!sr_BoxesRunTime_equals($this.$_51, $x$1.$_51)) - break a; - if (!sr_BoxesRunTime_equals($this.$_60, $x$1.$_60)) - break a; - } - return 1; - } - return 0; -}, -s_Tuple6__init_0 = ($this, $_1, $_2, $_3, $_4, $_5, $_6) => { - $this.$_13 = $_1; - $this.$_22 = $_2; - $this.$_31 = $_3; - $this.$_41 = $_4; - $this.$_51 = $_5; - $this.$_60 = $_6; -}, -s_Tuple6__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new s_Tuple6(); - s_Tuple6__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}; -function oncia_ReturnItems() { - let a = this; jl_Object.call(a); - a.$includeExisting0 = 0; - a.$items0 = null; - a.$defaultOrderOnColumns = null; - a.$position19 = null; -} -let oncia_ReturnItems_includeExisting = $this => { - return $this.$includeExisting0; -}, -oncia_ReturnItems_position = $this => { - return $this.$position19; -}, -oncia_ReturnItems_withDefaultOrderOnColumns = ($this, $defaultOrderOnColumns) => { - let $x$1; - $x$1 = s_Some__init_($defaultOrderOnColumns); - return oncia_ReturnItems_copy($this, $this.$includeExisting0, $this.$items0, $x$1, $this.$position19); -}, -oncia_ReturnItems_semanticCheck = $this => { - let var$1; - var$1 = oncias_SemanticCheckableIterableOnce$_MODULE$; - oncias_package$_$callClinit(); - var$1 = oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(var$1, $this.$items0); - oncias_IterableOnceSemanticChecking$_$callClinit(); - return var$1.$chain(oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, sc_AbstractIterable_groupBy($this.$items0, new oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_0), new oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_1)); -}, -oncia_ReturnItems_declareVariables = ($this, $previousScope) => { - let var$2, var$3, var$4, var$5, var$6; - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = $this.$includeExisting0; - var$4 = new oncia_ReturnItems$declareVariables$lambda$_64_0; - var$4.$_0712 = $previousScope; - var$2 = oncias_SemanticCheck$_when(var$2, var$3, var$4); - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$4 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$5 = $this.$items0; - var$6 = new oncia_ReturnItems$declareVariables$lambda$_64_1; - var$6.$_066 = $this; - var$6.$_129 = $previousScope; - return var$2.$chain(oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$4, var$5, var$6)); -}, -oncia_ReturnItems_returnVariables = $this => { - return oncia_ReturnItems$ReturnVariables__init_($this.$includeExisting0, $this.$items0.$flatMap(new oncia_ReturnItems$returnVariables$lambda$_66_0)); -}, -oncia_ReturnItems_containsAggregate = $this => { - return $this.$items0.$exists(new oncia_ReturnItems$containsAggregate$lambda$_67_0); -}, -oncia_ReturnItems_copy = ($this, $includeExisting, $items, $defaultOrderOnColumns, $position) => { - return oncia_ReturnItems__init_0($includeExisting, $items, $defaultOrderOnColumns, $position); -}, -oncia_ReturnItems_productPrefix = $this => { - return $rt_s(4668); -}, -oncia_ReturnItems_productArity = $this => { - return 3; -}, -oncia_ReturnItems_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$includeExisting0); - case 1: - return $this.$items0; - case 2: - return $this.$defaultOrderOnColumns; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ReturnItems_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ReturnItems_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4668))), !$this.$includeExisting0 ? 1237 : 1231), sr_Statics_anyHash($this.$items0)), sr_Statics_anyHash($this.$defaultOrderOnColumns)), 3); -}, -oncia_ReturnItems_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ReturnItems_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ReturnItems) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$includeExisting0 != $x$1.$includeExisting0) - break b; - d: { - var$2 = $this.$items0; - var$3 = $x$1.$items0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultOrderOnColumns; - $x$1 = $x$1.$defaultOrderOnColumns; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ReturnItems_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ReturnItems__init_ = ($this, $includeExisting, $items, $defaultOrderOnColumns, $position) => { - $this.$includeExisting0 = $includeExisting; - $this.$items0 = $items; - $this.$defaultOrderOnColumns = $defaultOrderOnColumns; - $this.$position19 = $position; -}, -oncia_ReturnItems__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_ReturnItems(); - oncia_ReturnItems__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oncie_ScopeExpression = $rt_classWithoutFields(0), -oncie_ExpressionWithComputedDependencies = $rt_classWithoutFields(0), -oncie_ExpressionWithComputedDependencies_introducedVariables$ = $$this => { - return s_Option_getOrElse($$this.$computedIntroducedVariables(), new oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0); -}, -oncie_ExpressionWithComputedDependencies_scopeDependencies$ = $$this => { - return s_Option_getOrElse($$this.$computedScopeDependencies(), new oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0); -}, -oncie_SubqueryExpression = $rt_classWithoutFields(0), -oncia_FullSubqueryExpression = $rt_classWithoutFields(0); -function oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0506 = null; -} -let oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2_applyOrElse = ($this, $x, $default) => { - let var$3; - $x = $x; - if (!($x instanceof oncia_AliasedReturnItem)) - $x = $default.$apply2($x); - else { - $x = $x; - var$3 = $x.$expression27; - $default = $x.$variable14; - $x = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - $x = s_Predef$ArrowAssoc$_$minus$greater$extension($x, var$3, $default); - } - return $x; -}; -function oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1() { - let a = this; jl_Object.call(a); - a.$_01040 = null; - a.$_1356 = null; -} -let oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_01040; - var$3 = var$0.$_1356; - var$2 = var$2.$$outer5; - var$4 = var$1.$sortItems; - var$5 = new oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0; - var$5.$_0762 = var$2; - var$5.$_1258 = var$3; - return oncia_OrderBy__init_(var$4.$map(var$5), var$1.$position104); -}; -function oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2() { - let a = this; jl_Object.call(a); - a.$_085 = null; - a.$_135 = null; -} -let oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_085; - var$3 = var$0.$_135; - var$2 = var$2.$$outer5; - return oncia_Where__init_(oncirr_normalizeWithAndReturnClauses_aliasExpression(var$2, var$3, var$1.$expression18), var$1.$position13); -}, -oncie_LogicalVariable = $rt_classWithoutFields(oncie_Expression), -oncie_LogicalVariable_isConstantForQuery = $this => { - return 0; -}, -oncie_PatternPart = $rt_classWithoutFields(), -oncie_PatternPart_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PatternPart_foldedOver = $this => { - return $this; -}, -oncie_PatternPart_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncie_PatternPart_dup0 = ($this, $children) => { - return $this.$dup0($children); -}, -oncie_PatternPart__init_ = $this => { - return; -}, -oncie_HasMappableExpressions = $rt_classWithoutFields(0), -oncie_NonPrefixedPatternPart = $rt_classWithoutFields(0), -oncie_AnonymousPatternPart = $rt_classWithoutFields(0), -oncie_AnonymousPatternPart_allVariables$ = $$this => { - return ($$this.$element()).$allVariables(); -}; -function oncie_ShortestPathsPatternPart() { - let a = this; oncie_PatternPart.call(a); - a.$element2 = null; - a.$single0 = 0; - a.$position10 = null; - a.$name11 = null; -} -let oncie_ShortestPathsPatternPart_allVariables = $this => { - return oncie_AnonymousPatternPart_allVariables$($this); -}, -oncie_ShortestPathsPatternPart_element = $this => { - return $this.$element2; -}, -oncie_ShortestPathsPatternPart_single = $this => { - return $this.$single0; -}, -oncie_ShortestPathsPatternPart_position = $this => { - return $this.$position10; -}, -oncie_ShortestPathsPatternPart_isBounded = $this => { - return 1; -}, -oncie_ShortestPathsPatternPart_copy = ($this, $element, $single, $position) => { - return oncie_ShortestPathsPatternPart__init_($element, $single, $position); -}, -oncie_ShortestPathsPatternPart_productPrefix = $this => { - return $rt_s(4669); -}, -oncie_ShortestPathsPatternPart_productArity = $this => { - return 2; -}, -oncie_ShortestPathsPatternPart_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$element2; - case 1: - return jl_Boolean_valueOf($this.$single0); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_ShortestPathsPatternPart_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ShortestPathsPatternPart_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4669))), sr_Statics_anyHash($this.$element2)), !$this.$single0 ? 1237 : 1231), 2); -}, -oncie_ShortestPathsPatternPart_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ShortestPathsPatternPart_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ShortestPathsPatternPart) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$single0 != $x$1.$single0) - break b; - c: { - var$2 = $this.$element2; - $x$1 = $x$1.$element2; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_ShortestPathsPatternPart)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_ShortestPathsPatternPart_mapExpressions = ($this, $f) => { - return oncie_ShortestPathsPatternPart_copy($this, $this.$element2.$mapExpressions($f), $this.$single0, $this.$position10); -}, -oncie_ShortestPathsPatternPart__init_0 = ($this, $element, $single, $position) => { - $this.$element2 = $element; - $this.$single0 = $single; - $this.$position10 = $position; - oncie_PatternPart__init_($this); - $this.$name11 = !$single ? $rt_s(4670) : $rt_s(4671); -}, -oncie_ShortestPathsPatternPart__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_ShortestPathsPatternPart(); - oncie_ShortestPathsPatternPart__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncie_PatternElement = $rt_classWithoutFields(), -oncie_PatternElement_dup0 = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PatternElement_foldedOver = $this => { - return $this; -}, -oncie_PatternElement_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncie_PatternElement_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PatternElement__init_ = $this => { - return; -}, -oncie_PathFactor = $rt_classWithoutFields(0), -oncie_SimplePattern = $rt_classWithoutFields(oncie_PatternElement); -function oncie_RelationshipChain() { - let a = this; oncie_SimplePattern.call(a); - a.$element4 = null; - a.$relationship1 = null; - a.$rightNode0 = null; - a.$position99 = null; -} -let oncie_RelationshipChain_element = $this => { - return $this.$element4; -}, -oncie_RelationshipChain_relationship = $this => { - return $this.$relationship1; -}, -oncie_RelationshipChain_rightNode = $this => { - return $this.$rightNode0; -}, -oncie_RelationshipChain_position = $this => { - return $this.$position99; -}, -oncie_RelationshipChain_allVariables = $this => { - return (($this.$element4.$allVariables()).$concat1($this.$relationship1.$variable5)).$concat1($this.$rightNode0.$variable6); -}, -oncie_RelationshipChain_isBounded = $this => { - let var$1, var$2, var$3; - a: { - var$1 = $this.$relationship1.$length3; - if (var$1 instanceof s_Some) { - var$2 = var$1.$value5; - if (var$2 instanceof s_Some) { - var$2 = var$2.$value5; - if (var$2 !== null && var$2.$upper2 instanceof s_Some) { - var$3 = 1; - break a; - } - } - } - if (!jl_Object_equals(s_None$_MODULE$, var$1)) - var$3 = 0; - else - var$3 = 1; - } - return var$3 && $this.$element4.$isBounded() ? 1 : 0; -}, -oncie_RelationshipChain_copy = ($this, $element, $relationship, $rightNode, $position) => { - return oncie_RelationshipChain__init_($element, $relationship, $rightNode, $position); -}, -oncie_RelationshipChain_productPrefix = $this => { - return $rt_s(4672); -}, -oncie_RelationshipChain_productArity = $this => { - return 3; -}, -oncie_RelationshipChain_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$element4; - case 1: - return $this.$relationship1; - case 2: - return $this.$rightNode0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_RelationshipChain_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipChain_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipChain_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipChain_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_RelationshipChain) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$element4; - var$3 = $x$1.$element4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$relationship1; - var$3 = $x$1.$relationship1; - if (var$2 !== null) { - if (!oncie_RelationshipPattern_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$rightNode0; - $x$1 = $x$1.$rightNode0; - if (var$3 !== null) { - if (!oncie_NodePattern_equals(var$3, $x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_RelationshipChain)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_RelationshipChain_mapExpressions = ($this, $f) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = $this.$element4.$mapExpressions($f); - var$3 = $this.$relationship1; - var$4 = var$3.$properties4; - var$5 = new oncie_RelationshipPattern$mapExpressions$lambda$_20_0; - var$5.$_0472 = $f; - var$6 = s_Option_map(var$4, var$5); - var$7 = s_Option_map(var$3.$variable5, $f); - var$5 = var$3.$length3; - var$4 = new oncie_RelationshipPattern$mapExpressions$lambda$_20_1; - var$4.$_0945 = $f; - var$8 = s_Option_map(var$5, var$4); - var$9 = s_Option_map(var$3.$predicate1, $f); - return oncie_RelationshipChain_copy($this, var$2, oncie_RelationshipPattern_copy(var$3, var$7, var$3.$labelExpression6, var$8, var$6, var$9, var$3.$direction0, var$3.$position8), oncie_NodePattern_mapExpressions($this.$rightNode0, $f), $this.$position99); -}, -oncie_RelationshipChain__init_0 = ($this, $element, $relationship, $rightNode, $position) => { - $this.$element4 = $element; - $this.$relationship1 = $relationship; - $this.$rightNode0 = $rightNode; - $this.$position99 = $position; - oncie_PatternElement__init_($this); -}, -oncie_RelationshipChain__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncie_RelationshipChain(); - oncie_RelationshipChain__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oncie_PatternAtom = $rt_classWithoutFields(0); -function oncie_NodePattern() { - let a = this; oncie_SimplePattern.call(a); - a.$variable6 = null; - a.$labelExpression7 = null; - a.$properties5 = null; - a.$predicate2 = null; - a.$position170 = null; -} -let oncie_NodePattern_labelExpression = $this => { - return $this.$labelExpression7; -}, -oncie_NodePattern_properties = $this => { - return $this.$properties5; -}, -oncie_NodePattern_position = $this => { - return $this.$position170; -}, -oncie_NodePattern_allVariables = $this => { - s_Option$_$callClinit(); - return sc_AbstractIterable_toSet(s_Option$_option2Iterable(s_Option$_MODULE$, $this.$variable6)); -}, -oncie_NodePattern_isBounded = $this => { - return 1; -}, -oncie_NodePattern_mapExpressions = ($this, $f) => { - let $x$1, $mappedProperties, $x$3; - $x$1 = $this.$properties5; - $mappedProperties = new oncie_NodePattern$mapExpressions$lambda$_12_0; - $mappedProperties.$_0103 = $f; - $mappedProperties = s_Option_map($x$1, $mappedProperties); - $x$1 = s_Option_map($this.$variable6, $f); - $x$3 = s_Option_map($this.$predicate2, $f); - return oncie_NodePattern_copy($this, $x$1, $this.$labelExpression7, $mappedProperties, $x$3, $this.$position170); -}, -oncie_NodePattern_copy = ($this, $variable, $labelExpression, $properties, $predicate, $position) => { - return oncie_NodePattern__init_0($variable, $labelExpression, $properties, $predicate, $position); -}, -oncie_NodePattern_productPrefix = $this => { - return $rt_s(4673); -}, -oncie_NodePattern_productArity = $this => { - return 4; -}, -oncie_NodePattern_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable6; - case 1: - return $this.$labelExpression7; - case 2: - return $this.$properties5; - case 3: - return $this.$predicate2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_NodePattern_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NodePattern_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NodePattern_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NodePattern_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_NodePattern) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable6; - var$3 = $x$1.$variable6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$labelExpression7; - var$3 = $x$1.$labelExpression7; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$properties5; - var$3 = $x$1.$properties5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$3 = $this.$predicate2; - $x$1 = $x$1.$predicate2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break f; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_NodePattern)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_NodePattern_mapExpressions0 = ($this, $f) => { - return oncie_NodePattern_mapExpressions($this, $f); -}, -oncie_NodePattern__init_ = ($this, $variable, $labelExpression, $properties, $predicate, $position) => { - $this.$variable6 = $variable; - $this.$labelExpression7 = $labelExpression; - $this.$properties5 = $properties; - $this.$predicate2 = $predicate; - $this.$position170 = $position; - oncie_PatternElement__init_($this); -}, -oncie_NodePattern__init_0 = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncie_NodePattern(); - oncie_NodePattern__init_(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}, -oncie_Literal = $rt_classWithoutFields(0), -oncie_NumberLiteral = $rt_classWithoutFields(0), -oncie_IntegerLiteral = $rt_classWithoutFields(0); -function oncie_DecimalIntegerLiteral() { - let a = this; oncie_Expression.call(a); - a.$integerMatcher0 = null; - a.$value32 = null; - a.$stringVal6 = null; - a.$bitmap$025 = 0; -} -let oncie_DecimalIntegerLiteral_asCanonicalStringVal = $this => { - return $this.$stringVal(); -}, -oncie_DecimalIntegerLiteral_isConstantForQuery = $this => { - return 1; -}, -oncie_DecimalIntegerLiteral_integerMatcher = $this => { - let var$1, var$2, $$je; - if (($this.$bitmap$025 & 1) << 24 >> 24) - return $this.$integerMatcher0; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$025 & 1) << 24 >> 24) - break a; - var$1 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - $this.$integerMatcher0 = sc_StringOps$_r$extension(var$1, s_Predef$_augmentString(s_Predef$_MODULE$, $rt_s(4674))); - $this.$bitmap$025 = ($this.$bitmap$025 | 1) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$2); - } - jl_Object_monitorExitSync($this); - return $this.$integerMatcher0; -}, -oncie_DecimalIntegerLiteral_value = $this => { - let var$1, $$je; - if (($this.$bitmap$025 & 2) << 24 >> 24) - return $this.$value32; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$025 & 2) << 24 >> 24) - break a; - var$1 = $this.$stringVal6; - if (var$1 !== null && !s_Option_isEmpty(sum_Regex_unapplySeq(oncie_DecimalIntegerLiteral_integerMatcher($this), var$1))) { - s_Predef$_$callClinit(); - var$1 = s_Predef$_MODULE$; - var$1 = s_Predef$_long2Long(var$1, jl_Long_parseLong(sc_AbstractIterable_mkString0(sci_List_filter(sc_AbstractIterable_toList(s_LowPriorityImplicits_wrapString(var$1, $this.$stringVal6)), oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0__init_())))); - } else { - s_Predef$_$callClinit(); - var$1 = s_Predef$_long2Long(s_Predef$_MODULE$, jl_Long_parseLong($this.$stringVal6)); - } - $this.$value32 = var$1; - $this.$bitmap$025 = ($this.$bitmap$025 | 2) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$value32; -}, -oncie_DecimalIntegerLiteral__init_ = ($this, $stringVal) => { - $this.$stringVal6 = $stringVal; - oncie_Expression__init_($this); -}, -oncie_UnsignedIntegerLiteral = $rt_classWithoutFields(0); -function oncie_UnsignedDecimalIntegerLiteral() { - let a = this; oncie_DecimalIntegerLiteral.call(a); - a.$stringVal0 = null; - a.$position22 = null; -} -let oncie_UnsignedDecimalIntegerLiteral_stringVal = $this => { - return $this.$stringVal0; -}, -oncie_UnsignedDecimalIntegerLiteral_position = $this => { - return $this.$position22; -}, -oncie_UnsignedDecimalIntegerLiteral_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_UnsignedDecimalIntegerLiteral$$anon$2; - oncie_UnsignedDecimalIntegerLiteral__init_0(var$1, $this.$stringVal0, $this.$position22); - return var$1; -}, -oncie_UnsignedDecimalIntegerLiteral_copy = ($this, $stringVal, $position) => { - return oncie_UnsignedDecimalIntegerLiteral__init_($stringVal, $position); -}, -oncie_UnsignedDecimalIntegerLiteral_productPrefix = $this => { - return $rt_s(4675); -}, -oncie_UnsignedDecimalIntegerLiteral_productArity = $this => { - return 1; -}, -oncie_UnsignedDecimalIntegerLiteral_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$stringVal0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_UnsignedDecimalIntegerLiteral_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_UnsignedDecimalIntegerLiteral_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_UnsignedDecimalIntegerLiteral; -}, -oncie_UnsignedDecimalIntegerLiteral_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_UnsignedDecimalIntegerLiteral_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_UnsignedDecimalIntegerLiteral_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_UnsignedDecimalIntegerLiteral) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$stringVal0; - $x$1 = $x$1.$stringVal0; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_UnsignedDecimalIntegerLiteral)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_UnsignedDecimalIntegerLiteral__init_0 = ($this, $stringVal, $position) => { - $this.$stringVal0 = $stringVal; - $this.$position22 = $position; - oncie_DecimalIntegerLiteral__init_($this, $stringVal); -}, -oncie_UnsignedDecimalIntegerLiteral__init_ = (var_0, var_1) => { - let var_2 = new oncie_UnsignedDecimalIntegerLiteral(); - oncie_UnsignedDecimalIntegerLiteral__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncie_Range() { - let a = this; jl_Object.call(a); - a.$lower2 = null; - a.$upper2 = null; - a.$position117 = null; -} -let oncie_Range_position = $this => { - return $this.$position117; -}, -oncie_Range_copy = ($this, $lower, $upper, $position) => { - return oncie_Range__init_($lower, $upper, $position); -}, -oncie_Range_productPrefix = $this => { - return $rt_s(4676); -}, -oncie_Range_productArity = $this => { - return 2; -}, -oncie_Range_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lower2; - case 1: - return $this.$upper2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Range_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Range_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Range_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Range_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Range) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lower2; - var$3 = $x$1.$lower2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$upper2; - $x$1 = $x$1.$upper2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Range)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_Range_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_Range__init_0 = ($this, $lower, $upper, $position) => { - $this.$lower2 = $lower; - $this.$upper2 = $upper; - $this.$position117 = $position; -}, -oncie_Range__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_Range(); - oncie_Range__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function ju_TemplateCollections$ImmutableArrayList() { - ju_TemplateCollections$AbstractImmutableList.call(this); - this.$list3 = null; -} -let ju_TemplateCollections$ImmutableArrayList_get = ($this, $index) => { - return $this.$list3.data[$index]; -}, -ju_TemplateCollections$ImmutableArrayList_size = $this => { - return $this.$list3.data.length; -}, -oncipa_AntlrAstParser = $rt_classWithoutFields(0), -oncipa_AntlrAstParser_parse$ = ($$this, $f) => { - let var$3, var$4, var$5, var$6, var$7, $$je; - var$3 = new oncip_SyntaxErrorListener; - var$3.$exceptionFactory10 = $$this.$exceptionFactory(); - s_package$_$callClinit(); - var$3.$_syntaxErrors = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - var$4 = $$this.$newParser(oncipa_AntlrAstParser_preparsedTokens($$this, var$3, 0)); - var$4.$_interp.$mode1 = oavra_PredictionMode_SLL; - var$5 = new oavr_BailErrorStrategy; - oavr_DefaultErrorStrategy__init_(var$5); - var$4.$setErrorHandler(var$5); - a: { - try { - var$5 = oncipa_AntlrAstParser_doParse($$this, var$4, var$3, $f); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - var$5 = $$je; - } else { - throw $$e; - } - } - if (var$5 !== null && !s_Option_isEmpty(suc_NonFatal$_unapply(suc_NonFatal$_MODULE$, var$5))) { - oavr_Parser_setTokenStream(var$4, oncipa_AntlrAstParser_preparsedTokens($$this, var$3, 1)); - var$4.$_interp.$mode1 = oavra_PredictionMode_LL; - var$5 = new oncip_CypherErrorStrategy; - var$6 = $$this.$errorStrategyConf(); - var$5.$conf0 = var$6; - var$7 = new oncip_CypherErrorVocabulary; - var$7.$conf = var$6; - var$5.$vocabulary1 = var$7; - var$5.$inErrorMode = 0; - var$4.$setErrorHandler(var$5); - oavr_Recognizer_addErrorListener(var$4, var$3); - var$5 = oncipa_AntlrAstParser_doParse($$this, var$4, var$3, $f); - } else - $rt_throw(var$5); - } - return var$5; -}, -oncipa_AntlrAstParser_doParse = ($this, $parser, $listener, $f) => { - let $result; - $result = $f.$apply2($parser); - if (sc_IterableOnceOps_nonEmpty$(($parser.$syntaxChecker()).$errors())) - $rt_throw((($parser.$syntaxChecker()).$errors()).$reduceLeft(new oncipa_AntlrAstParser$doParse$lambda$_6_0)); - if (sc_IterableOnceOps_nonEmpty$($listener.$_syntaxErrors)) - $rt_throw($listener.$_syntaxErrors.$reduceLeft(new oncipa_AntlrAstParser$doParse$lambda$_6_1)); - if (!$parser.$matchedEOF && (oavr_Parser_getCurrentToken($parser)).$getType0() != (-1) ? 0 : 1) - return $result.$ast0; - $listener = $this.$exceptionFactory(); - $f = (oavr_Parser_getCurrentToken($parser)).$getText(); - $result = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($result); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($result, $rt_s(3971)), $f), 39); - $f = jl_AbstractStringBuilder_toString($result); - $parser = oavr_Parser_getCurrentToken($parser); - if ($rt_isInstance($parser, oncipl_CypherToken)) - $parser = $parser.$position(); - else { - onciu_InputPosition$_$callClinit(); - $parser = onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $parser.$getStartIndex(), $parser.$getLine0(), $parser.$getCharPositionInLine() + 1 | 0); - } - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException($listener, $f, $parser)); -}, -oncipa_AntlrAstParser_preparsedTokens = ($this, $listener, $fullTokens) => { - let $lexer, var$4, $$je; - a: { - try { - $lexer = $this.$newLexer($fullTokens); - oavr_Recognizer_removeErrorListeners($lexer); - oavr_Recognizer_addErrorListener($lexer, $listener); - $listener = oavr_CommonTokenStream__init_0($lexer); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oncipl_UnicodeEscapeReplacementReader$InvalidUnicodeLiteral) { - $listener = $$je; - break a; - } else { - throw $$e; - } - } - return $listener; - } - $lexer = $this.$exceptionFactory(); - var$4 = $listener.$message; - onciu_InputPosition$_$callClinit(); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException($lexer, var$4, onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $listener.$offset9, $listener.$line10, $listener.$column5))); -}; -function oncipvaf_Cypher5AstParser() { - let a = this; jl_Object.call(a); - a.$query7 = null; - a.$exceptionFactory6 = null; - a.$notificationLogger1 = null; -} -let oncipvaf_Cypher5AstParser_exceptionFactory = $this => { - return $this.$exceptionFactory6; -}, -oncipvaf_Cypher5AstParser_statements = $this => { - return oncipa_AntlrAstParser_parse$($this, new oncipvaf_Cypher5AstParser$statements$lambda$_2_0); -}, -oncipvaf_Cypher5AstParser_syntaxException = ($this, $message, $position) => { - return onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory6, $message, $position); -}, -oncipvaf_Cypher5AstParser_newLexer = ($this, $fullTokens) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $this.$query7; - var$3 = oncipl_UnicodeEscapeReplacementReader_read(var$2, oncipl_UnicodeEscapeReplacementReader_DEFAULT_BUFFER_SIZE); - var$4 = new oncipvaf_Cypher5AstLexer; - var$5 = var$3.$charStream; - var$6 = var$3.$offsetTable1; - oncipv_Cypher5Lexer_$callClinit(); - oavr_Lexer__init_(var$4, var$5); - var$4.$_interp = oavra_LexerATNSimulator__init_(var$4, oncipv_Cypher5Lexer__ATN, oncipv_Cypher5Lexer__decisionToDFA, oncipv_Cypher5Lexer__sharedContextCache); - var$4.$inputQuery1 = var$2; - var$4.$offsetTable3 = var$6; - var$4.$_factory = oncipl_CypherToken_factory($fullTokens); - return var$4; -}, -oncipvaf_Cypher5AstParser_errorStrategyConf = $this => { - return new oncipvaf_Cypher5ErrorStrategyConf; -}, -oncipvaf_Cypher5AstParser_newParser = ($this, $tokens) => { - let var$2, var$3, var$4; - var$2 = new oncipvaf_CypherAstBuildingAntlrParser; - var$3 = $this.$exceptionFactory6; - var$4 = $this.$notificationLogger1; - var$2.$exceptionFactory8 = var$3; - var$2.$notificationLogger = var$4; - oncipv_Cypher5Parser_$callClinit(); - oavr_Parser__init_(var$2, $tokens); - var$2.$_interp = oavra_ParserATNSimulator__init_(var$2, oncipv_Cypher5Parser__ATN, oncipv_Cypher5Parser__decisionToDFA, oncipv_Cypher5Parser__sharedContextCache); - oncipa_AstBuildingAntlrParser_$init$(var$2); - oavr_Recognizer_removeErrorListeners(var$2); - return var$2; -}; -function ju_LinkedHashMap$LinkedHashMapEntry() { - let a = this; ju_HashMap$HashEntry.call(a); - a.$chainForward = null; - a.$chainBackward = null; -} -function oncipj_AliasName$getLocalAliasName$lambda$_5_0() { - jl_Object.call(this); - this.$_0245 = null; -} -let oncipj_AliasName$getLocalAliasName$lambda$_5_0_test = (var$0, var$1) => { - var$1 = var$1; - return oncipj_AliasName_isEscaped(var$0.$_0245, var$1); -}; -function oncipj_AliasName$getAsDatabaseName$lambda$_4_0() { - jl_Object.call(this); - this.$_01123 = null; -} -let oncipj_AliasName$getAsDatabaseName$lambda$_4_0_test = (var$0, var$1) => { - var$1 = var$1; - return oncipj_AliasName_isEscaped(var$0.$_01123, var$1); -}, -oncia_StatementWithGraph = $rt_classWithoutFields(0), -oncia_AdministrationCommand = $rt_classWithoutFields(0), -oncia_AdministrationCommand_semanticCheck$ = $$this => { - let var$2, var$3, var$4, var$5; - var$2 = $$this.$name(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(983)), var$2), $rt_s(4677)); - var$2 = $$this.$requireFeatureSupport(jl_AbstractStringBuilder_toString(var$3), oncias_SemanticFeature$MultipleDatabases$_MODULE$, $$this.$position()); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = s_Option_isDefined($$this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar()); - var$5 = new oncia_AdministrationCommand$semanticCheck$lambda$_13_0; - var$5.$_0359 = $$this; - return oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_when(var$3, var$4, var$5)); -}, -oncia_AdministrationCommand_dup$ = ($$this, $children) => { - return ($$this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup($children)).$withGraph($$this.$useGraph()); -}, -oncia_AdministrationCommand_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq(s_None$_MODULE$); -}, -oncia_ReadAdministrationCommand = $rt_classWithoutFields(0), -oncia_ReadAdministrationCommand_returnColumnNames$ = $$this => { - let var$2, var$3, var$4; - a: { - var$2 = s_Tuple2__init_($$this.$yields(), $$this.$returns()); - var$3 = var$2.$_20; - if (var$3 instanceof s_Some) - $$this = (var$3.$value5.$returnItems2.$items0.$map(new oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0)).$toList(); - else { - var$4 = var$2.$_10; - if (var$4 instanceof s_Some) { - var$4 = var$4.$value5; - if (jl_Object_equals(s_None$_MODULE$, var$3)) { - $$this = (var$4.$returnItems3.$items0.$map(new oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1)).$toList(); - break a; - } - } - var$3 = var$2.$_10; - var$4 = var$2.$_20; - if (jl_Object_equals(s_None$_MODULE$, var$3) && jl_Object_equals(s_None$_MODULE$, var$4)) - $$this = $$this.$defaultColumnNames(); - else - $rt_throw(s_MatchError__init_(var$2)); - } - } - return $$this; -}, -oncia_ReadAdministrationCommand_defaultColumnNames$ = $$this => { - return sci_List_map($$this.$defaultColumnSet(), new oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0); -}, -oncia_ReadAdministrationCommand_yields$ = $$this => { - return s_Option_flatMap($$this.$yieldOrWhere(), new oncia_ReadAdministrationCommand$yields$lambda$_11_0); -}, -oncia_ReadAdministrationCommand_returns$ = $$this => { - return s_Option_flatMap($$this.$yieldOrWhere(), new oncia_ReadAdministrationCommand$returns$lambda$_13_0); -}, -oncia_ReadAdministrationCommand_returnColumns$ = $$this => { - let var$2, var$3; - var$2 = $$this.$returnColumnNames(); - var$3 = new oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0; - var$3.$_0433 = $$this; - return sci_List_map(var$2, var$3); -}, -oncia_ReadAdministrationCommand_semanticCheck$ = $$this => { - let var$2, var$3; - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0; - var$3.$_0817 = $$this; - return oncias_SemanticCheck$_nestedCheck(var$2, var$3); -}, -oncia_ReadAdministrationCommand_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq(1); -}; -function oncia_ShowPrivileges() { - let a = this; jl_Object.call(a); - a.$scope10 = null; - a.$yieldOrWhere7 = null; - a.$defaultColumnSet3 = null; - a.$position288 = null; - a.$isReadOnly4 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar32 = null; -} -let oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowPrivileges_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowPrivileges_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowPrivileges_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowPrivileges_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowPrivileges_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowPrivileges_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowPrivileges_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowPrivileges_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowPrivileges_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowPrivileges_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowPrivileges_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowPrivileges_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowPrivileges_foldedOver = $this => { - return $this; -}, -oncia_ShowPrivileges_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly4 = $x$1; -}, -oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar32; -}, -oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar32 = $x$1; -}, -oncia_ShowPrivileges_scope = $this => { - return $this.$scope10; -}, -oncia_ShowPrivileges_yieldOrWhere = $this => { - return $this.$yieldOrWhere7; -}, -oncia_ShowPrivileges_defaultColumnSet = $this => { - return $this.$defaultColumnSet3; -}, -oncia_ShowPrivileges_position = $this => { - return $this.$position288; -}, -oncia_ShowPrivileges_name = $this => { - return $rt_s(4678); -}, -oncia_ShowPrivileges_semanticCheck = $this => { - let var$1; - var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ShowPrivileges_copy = ($this, $scope, $yieldOrWhere, $defaultColumnSet, $position) => { - return oncia_ShowPrivileges__init_($scope, $yieldOrWhere, $defaultColumnSet, $position); -}, -oncia_ShowPrivileges_copy$default$1 = $this => { - return $this.$scope10; -}, -oncia_ShowPrivileges_copy$default$3 = $this => { - return $this.$defaultColumnSet3; -}, -oncia_ShowPrivileges_productPrefix = $this => { - return $rt_s(4679); -}, -oncia_ShowPrivileges_productArity = $this => { - return 3; -}, -oncia_ShowPrivileges_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$scope10; - case 1: - return $this.$yieldOrWhere7; - case 2: - return $this.$defaultColumnSet3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowPrivileges_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowPrivileges_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowPrivileges_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowPrivileges_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowPrivileges) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$scope10; - var$3 = $x$1.$scope10; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$yieldOrWhere7; - var$3 = $x$1.$yieldOrWhere7; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumnSet3; - $x$1 = $x$1.$defaultColumnSet3; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowPrivileges_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowPrivileges_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowPrivileges__init_0 = ($this, $scope, $yieldOrWhere, $defaultColumnSet, $position) => { - $this.$scope10 = $scope; - $this.$yieldOrWhere7 = $yieldOrWhere; - $this.$defaultColumnSet3 = $defaultColumnSet; - $this.$position288 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); -}, -oncia_ShowPrivileges__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_ShowPrivileges(); - oncia_ShowPrivileges__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oncia_ClauseAllowedOnSystem = $rt_classWithoutFields(0); -function oncia_Yield() { - let a = this; jl_Object.call(a); - a.$returnItems3 = null; - a.$orderBy3 = null; - a.$skip4 = null; - a.$limit4 = null; - a.$where3 = null; - a.$position21 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier7 = null; - a.$SetExtractor$module14 = null; -} -let oncia_Yield_isReturn = $this => { - return 0; -}, -oncia_Yield_copyProjection = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where) => { - return oncia_ProjectionClause_copyProjection$($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where); -}, -oncia_Yield_copyProjection$default$1 = $this => { - return $this.$distinct(); -}, -oncia_Yield_copyProjection$default$3 = $this => { - return $this.$orderBy(); -}, -oncia_Yield_copyProjection$default$4 = $this => { - return $this.$skip(); -}, -oncia_Yield_copyProjection$default$5 = $this => { - return $this.$limit(); -}, -oncia_Yield_copyProjection$default$6 = $this => { - return $this.$where(); -}, -oncia_Yield_clauseSpecificSemanticCheck = $this => { - return oncia_ProjectionClause_clauseSpecificSemanticCheck$($this); -}, -oncia_Yield_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { - return oncia_ProjectionClause_semanticCheckContinuation$($this, $previousScope, $outerScope); -}, -oncia_Yield_semanticCheckContinuation$default$2 = $this => { - return s_None$_MODULE$; -}, -oncia_Yield_verifyOrderByAggregationUse = ($this, $fail) => { - oncia_ProjectionClause_verifyOrderByAggregationUse$($this, $fail); -}, -oncia_Yield_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_Yield_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Yield_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_Yield_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Yield_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Yield_foldedOver = $this => { - return $this; -}, -oncia_Yield_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Yield_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier7; -}, -oncia_Yield_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module14 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module14 !== null) - break a; - $this.$SetExtractor$module14 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module14; -}, -oncia_Yield_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier7 = $x$1; -}, -oncia_Yield_returnItems = $this => { - return $this.$returnItems3; -}, -oncia_Yield_orderBy = $this => { - return $this.$orderBy3; -}, -oncia_Yield_skip = $this => { - return $this.$skip4; -}, -oncia_Yield_limit = $this => { - return $this.$limit4; -}, -oncia_Yield_where = $this => { - return $this.$where3; -}, -oncia_Yield_position = $this => { - return $this.$position21; -}, -oncia_Yield_distinct = $this => { - return 0; -}, -oncia_Yield_name = $this => { - return $rt_s(4680); -}, -oncia_Yield_warnOnAccessToRestrictedVariableInOrderByOrWhere = ($this, $previousScopeVars, $error) => { - return $error; -}, -oncia_Yield_copy = ($this, $returnItems, $orderBy, $skip, $limit, $where, $position) => { - return oncia_Yield__init_0($returnItems, $orderBy, $skip, $limit, $where, $position); -}, -oncia_Yield_productPrefix = $this => { - return $rt_s(4681); -}, -oncia_Yield_productArity = $this => { - return 5; -}, -oncia_Yield_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$returnItems3; - case 1: - return $this.$orderBy3; - case 2: - return $this.$skip4; - case 3: - return $this.$limit4; - case 4: - return $this.$where3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Yield_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Yield_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Yield_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Yield_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Yield) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$returnItems3; - var$3 = $x$1.$returnItems3; - if (var$2 !== null) { - if (!oncia_ReturnItems_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$orderBy3; - var$3 = $x$1.$orderBy3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$skip4; - var$3 = $x$1.$skip4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$limit4; - var$3 = $x$1.$limit4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$3 = $this.$where3; - $x$1 = $x$1.$where3; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break g; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Yield)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_Yield_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Yield__init_ = ($this, $returnItems, $orderBy, $skip, $limit, $where, $position) => { - $this.$returnItems3 = $returnItems; - $this.$orderBy3 = $orderBy; - $this.$skip4 = $skip; - $this.$limit4 = $limit; - $this.$where3 = $where; - $this.$position21 = $position; - oncia_Clause_$init$($this); -}, -oncia_Yield__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_Yield(); - oncia_Yield__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0() { - jl_Object.call(this); - this.$_0501 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0__init_ = (var$0, var$1) => { - var$0.$_0501 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0__init_0 = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0__init_(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0501, var$1); -}; -function oncia_ShowPrivilegeCommands() { - let a = this; jl_Object.call(a); - a.$scope8 = null; - a.$asRevoke0 = 0; - a.$yieldOrWhere2 = null; - a.$defaultColumnSet1 = null; - a.$position228 = null; - a.$isReadOnly33 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar17 = null; -} -let oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowPrivilegeCommands_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowPrivilegeCommands_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowPrivilegeCommands_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowPrivilegeCommands_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowPrivilegeCommands_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowPrivilegeCommands_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowPrivilegeCommands_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowPrivilegeCommands_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowPrivilegeCommands_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowPrivilegeCommands_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowPrivilegeCommands_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowPrivilegeCommands_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowPrivilegeCommands_foldedOver = $this => { - return $this; -}, -oncia_ShowPrivilegeCommands_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly33 = $x$1; -}, -oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar17; -}, -oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar17 = $x$1; -}, -oncia_ShowPrivilegeCommands_scope = $this => { - return $this.$scope8; -}, -oncia_ShowPrivilegeCommands_asRevoke = $this => { - return $this.$asRevoke0; -}, -oncia_ShowPrivilegeCommands_yieldOrWhere = $this => { - return $this.$yieldOrWhere2; -}, -oncia_ShowPrivilegeCommands_defaultColumnSet = $this => { - return $this.$defaultColumnSet1; -}, -oncia_ShowPrivilegeCommands_position = $this => { - return $this.$position228; -}, -oncia_ShowPrivilegeCommands_name = $this => { - return $rt_s(4682); -}, -oncia_ShowPrivilegeCommands_semanticCheck = $this => { - let var$1; - var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ShowPrivilegeCommands_copy = ($this, $scope, $asRevoke, $yieldOrWhere, $defaultColumnSet, $position) => { - return oncia_ShowPrivilegeCommands__init_($scope, $asRevoke, $yieldOrWhere, $defaultColumnSet, $position); -}, -oncia_ShowPrivilegeCommands_copy$default$1 = $this => { - return $this.$scope8; -}, -oncia_ShowPrivilegeCommands_copy$default$2 = $this => { - return $this.$asRevoke0; -}, -oncia_ShowPrivilegeCommands_copy$default$4 = $this => { - return $this.$defaultColumnSet1; -}, -oncia_ShowPrivilegeCommands_productPrefix = $this => { - return $rt_s(4683); -}, -oncia_ShowPrivilegeCommands_productArity = $this => { - return 4; -}, -oncia_ShowPrivilegeCommands_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$scope8; - case 1: - return jl_Boolean_valueOf($this.$asRevoke0); - case 2: - return $this.$yieldOrWhere2; - case 3: - return $this.$defaultColumnSet1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowPrivilegeCommands_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowPrivilegeCommands_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4683))), sr_Statics_anyHash($this.$scope8)), !$this.$asRevoke0 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldOrWhere2)), sr_Statics_anyHash($this.$defaultColumnSet1)), 4); -}, -oncia_ShowPrivilegeCommands_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowPrivilegeCommands_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowPrivilegeCommands) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$asRevoke0 != $x$1.$asRevoke0) - break b; - d: { - var$2 = $this.$scope8; - var$3 = $x$1.$scope8; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$yieldOrWhere2; - var$3 = $x$1.$yieldOrWhere2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumnSet1; - $x$1 = $x$1.$defaultColumnSet1; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowPrivilegeCommands_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowPrivilegeCommands_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowPrivilegeCommands__init_0 = ($this, $scope, $asRevoke, $yieldOrWhere, $defaultColumnSet, $position) => { - $this.$scope8 = $scope; - $this.$asRevoke0 = $asRevoke; - $this.$yieldOrWhere2 = $yieldOrWhere; - $this.$defaultColumnSet1 = $defaultColumnSet; - $this.$position228 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); -}, -oncia_ShowPrivilegeCommands__init_ = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_ShowPrivilegeCommands(); - oncia_ShowPrivilegeCommands__init_0(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1() { - jl_Object.call(this); - this.$_01133 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1__init_0 = (var$0, var$1) => { - var$0.$_01133 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1__init_ = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1__init_0(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_01133, var$1); -}; -function oncia_ShowSupportedPrivilegeCommand() { - let a = this; jl_Object.call(a); - a.$yieldOrWhere5 = null; - a.$defaultColumnSet5 = null; - a.$position233 = null; - a.$isReadOnly18 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar4 = null; -} -let oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowSupportedPrivilegeCommand_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowSupportedPrivilegeCommand_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowSupportedPrivilegeCommand_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowSupportedPrivilegeCommand_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowSupportedPrivilegeCommand_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowSupportedPrivilegeCommand_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowSupportedPrivilegeCommand_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowSupportedPrivilegeCommand_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowSupportedPrivilegeCommand_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowSupportedPrivilegeCommand_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowSupportedPrivilegeCommand_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowSupportedPrivilegeCommand_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowSupportedPrivilegeCommand_foldedOver = $this => { - return $this; -}, -oncia_ShowSupportedPrivilegeCommand_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly18 = $x$1; -}, -oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar4; -}, -oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar4 = $x$1; -}, -oncia_ShowSupportedPrivilegeCommand_yieldOrWhere = $this => { - return $this.$yieldOrWhere5; -}, -oncia_ShowSupportedPrivilegeCommand_defaultColumnSet = $this => { - return $this.$defaultColumnSet5; -}, -oncia_ShowSupportedPrivilegeCommand_position = $this => { - return $this.$position233; -}, -oncia_ShowSupportedPrivilegeCommand_name = $this => { - return $rt_s(527); -}, -oncia_ShowSupportedPrivilegeCommand_semanticCheck = $this => { - let var$1; - var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ShowSupportedPrivilegeCommand_copy = ($this, $yieldOrWhere, $defaultColumnSet, $position) => { - return oncia_ShowSupportedPrivilegeCommand__init_($yieldOrWhere, $defaultColumnSet, $position); -}, -oncia_ShowSupportedPrivilegeCommand_copy$default$2 = $this => { - return $this.$defaultColumnSet5; -}, -oncia_ShowSupportedPrivilegeCommand_productPrefix = $this => { - return $rt_s(4684); -}, -oncia_ShowSupportedPrivilegeCommand_productArity = $this => { - return 2; -}, -oncia_ShowSupportedPrivilegeCommand_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$yieldOrWhere5; - case 1: - return $this.$defaultColumnSet5; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowSupportedPrivilegeCommand_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowSupportedPrivilegeCommand_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowSupportedPrivilegeCommand_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowSupportedPrivilegeCommand_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowSupportedPrivilegeCommand) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$yieldOrWhere5; - var$3 = $x$1.$yieldOrWhere5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumnSet5; - $x$1 = $x$1.$defaultColumnSet5; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowSupportedPrivilegeCommand_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowSupportedPrivilegeCommand_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowSupportedPrivilegeCommand__init_0 = ($this, $yieldOrWhere, $defaultColumnSet, $position) => { - $this.$yieldOrWhere5 = $yieldOrWhere; - $this.$defaultColumnSet5 = $defaultColumnSet; - $this.$position233 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); -}, -oncia_ShowSupportedPrivilegeCommand__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_ShowSupportedPrivilegeCommand(); - oncia_ShowSupportedPrivilegeCommand__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2() { - jl_Object.call(this); - this.$_0549 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2__init_0 = (var$0, var$1) => { - var$0.$_0549 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2__init_ = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2__init_0(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0549, var$1); -}; -function oncia_ShowDatabase() { - let a = this; jl_Object.call(a); - a.$scope9 = null; - a.$yieldOrWhere9 = null; - a.$defaultColumns0 = null; - a.$position221 = null; - a.$defaultColumnSet8 = null; - a.$isReadOnly10 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar18 = null; -} -let oncia_ShowDatabase_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowDatabase_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowDatabase_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowDatabase_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowDatabase_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowDatabase_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowDatabase_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowDatabase_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowDatabase_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowDatabase_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowDatabase_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowDatabase_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowDatabase_foldedOver = $this => { - return $this; -}, -oncia_ShowDatabase_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowDatabase_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly10 = $x$1; -}, -oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar18; -}, -oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar18 = $x$1; -}, -oncia_ShowDatabase_scope = $this => { - return $this.$scope9; -}, -oncia_ShowDatabase_yieldOrWhere = $this => { - return $this.$yieldOrWhere9; -}, -oncia_ShowDatabase_position = $this => { - return $this.$position221; -}, -oncia_ShowDatabase_defaultColumnSet = $this => { - return $this.$defaultColumnSet8; -}, -oncia_ShowDatabase_name = $this => { - let var$1; - var$1 = $this.$scope9; - if (var$1 instanceof oncia_SingleNamedDatabaseScope) - return $rt_s(4685); - if (var$1 instanceof oncia_AllDatabasesScope ? 1 : !(var$1 instanceof oncia_NamedDatabasesScope) ? 0 : 1) - return $rt_s(4686); - if (var$1 instanceof oncia_DefaultDatabaseScope) - return $rt_s(4687); - if (var$1 instanceof oncia_HomeDatabaseScope) - return $rt_s(4688); - $rt_throw(s_MatchError__init_(var$1)); -}, -oncia_ShowDatabase_semanticCheck = $this => { - let var$1; - var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ShowDatabase_copy = ($this, $scope, $yieldOrWhere, $defaultColumns, $position) => { - return oncia_ShowDatabase__init_0($scope, $yieldOrWhere, $defaultColumns, $position); -}, -oncia_ShowDatabase_copy$default$1 = $this => { - return $this.$scope9; -}, -oncia_ShowDatabase_copy$default$3 = $this => { - return $this.$defaultColumns0; -}, -oncia_ShowDatabase_productPrefix = $this => { - return $rt_s(4689); -}, -oncia_ShowDatabase_productArity = $this => { - return 3; -}, -oncia_ShowDatabase_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$scope9; - case 1: - return $this.$yieldOrWhere9; - case 2: - return $this.$defaultColumns0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowDatabase_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowDatabase_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowDatabase_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowDatabase_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowDatabase) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$scope9; - var$3 = $x$1.$scope9; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$yieldOrWhere9; - var$3 = $x$1.$yieldOrWhere9; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumns0; - $x$1 = $x$1.$defaultColumns0; - if (var$3 !== null) { - if (!oncia_DefaultOrAllShowColumns_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowDatabase_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowDatabase_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowDatabase__init_ = ($this, $scope, $yieldOrWhere, $defaultColumns, $position) => { - $this.$scope9 = $scope; - $this.$yieldOrWhere9 = $yieldOrWhere; - $this.$defaultColumns0 = $defaultColumns; - $this.$position221 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); - $this.$defaultColumnSet8 = $defaultColumns.$columns; -}, -oncia_ShowDatabase__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_ShowDatabase(); - oncia_ShowDatabase__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3() { - jl_Object.call(this); - this.$_0602 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3__init_0 = (var$0, var$1) => { - var$0.$_0602 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3__init_ = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3__init_0(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0602, var$1); -}; -function oncia_ShowAliases() { - let a = this; jl_Object.call(a); - a.$aliasName4 = null; - a.$yieldOrWhere6 = null; - a.$defaultColumns1 = null; - a.$position274 = null; - a.$defaultColumnSet6 = null; - a.$isReadOnly29 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar1 = null; -} -let oncia_ShowAliases_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowAliases_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowAliases_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowAliases_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowAliases_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowAliases_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowAliases_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowAliases_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowAliases_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowAliases_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowAliases_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowAliases_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowAliases_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowAliases_foldedOver = $this => { - return $this; -}, -oncia_ShowAliases_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowAliases_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly29 = $x$1; -}, -oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar1; -}, -oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar1 = $x$1; -}, -oncia_ShowAliases_aliasName = $this => { - return $this.$aliasName4; -}, -oncia_ShowAliases_yieldOrWhere = $this => { - return $this.$yieldOrWhere6; -}, -oncia_ShowAliases_position = $this => { - return $this.$position274; -}, -oncia_ShowAliases_defaultColumnSet = $this => { - return $this.$defaultColumnSet6; -}, -oncia_ShowAliases_name = $this => { - let var$1; - var$1 = $this.$aliasName4; - if (jl_Object_equals(s_None$_MODULE$, var$1)) - return $rt_s(4690); - if (var$1 instanceof s_Some) - return $rt_s(4691); - $rt_throw(s_MatchError__init_(var$1)); -}, -oncia_ShowAliases_semanticCheck = $this => { - let var$1; - var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ShowAliases_copy = ($this, $aliasName, $yieldOrWhere, $defaultColumns, $position) => { - return oncia_ShowAliases__init_0($aliasName, $yieldOrWhere, $defaultColumns, $position); -}, -oncia_ShowAliases_copy$default$1 = $this => { - return $this.$aliasName4; -}, -oncia_ShowAliases_copy$default$3 = $this => { - return $this.$defaultColumns1; -}, -oncia_ShowAliases_productPrefix = $this => { - return $rt_s(4692); -}, -oncia_ShowAliases_productArity = $this => { - return 3; -}, -oncia_ShowAliases_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$aliasName4; - case 1: - return $this.$yieldOrWhere6; - case 2: - return $this.$defaultColumns1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowAliases_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowAliases_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowAliases_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowAliases_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowAliases) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$aliasName4; - var$3 = $x$1.$aliasName4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$yieldOrWhere6; - var$3 = $x$1.$yieldOrWhere6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumns1; - $x$1 = $x$1.$defaultColumns1; - if (var$3 !== null) { - if (!oncia_DefaultOrAllShowColumns_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowAliases_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowAliases_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowAliases__init_ = ($this, $aliasName, $yieldOrWhere, $defaultColumns, $position) => { - $this.$aliasName4 = $aliasName; - $this.$yieldOrWhere6 = $yieldOrWhere; - $this.$defaultColumns1 = $defaultColumns; - $this.$position274 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); - $this.$defaultColumnSet6 = $defaultColumns.$columns; -}, -oncia_ShowAliases__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_ShowAliases(); - oncia_ShowAliases__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4() { - jl_Object.call(this); - this.$_0158 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4__init_ = (var$0, var$1) => { - var$0.$_0158 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4__init_0 = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4__init_(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0158, var$1); -}; -function oncia_ShowCurrentUser() { - let a = this; jl_Object.call(a); - a.$yieldOrWhere8 = null; - a.$defaultColumnSet4 = null; - a.$position277 = null; - a.$isReadOnly8 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar26 = null; -} -let oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowCurrentUser_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowCurrentUser_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowCurrentUser_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowCurrentUser_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowCurrentUser_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowCurrentUser_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowCurrentUser_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowCurrentUser_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowCurrentUser_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowCurrentUser_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowCurrentUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowCurrentUser_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowCurrentUser_foldedOver = $this => { - return $this; -}, -oncia_ShowCurrentUser_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly8 = $x$1; -}, -oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar26; -}, -oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar26 = $x$1; -}, -oncia_ShowCurrentUser_yieldOrWhere = $this => { - return $this.$yieldOrWhere8; -}, -oncia_ShowCurrentUser_defaultColumnSet = $this => { - return $this.$defaultColumnSet4; -}, -oncia_ShowCurrentUser_position = $this => { - return $this.$position277; -}, -oncia_ShowCurrentUser_name = $this => { - return $rt_s(4693); -}, -oncia_ShowCurrentUser_semanticCheck = $this => { - return oncia_ReadAdministrationCommand_semanticCheck$($this); -}, -oncia_ShowCurrentUser_copy = ($this, $yieldOrWhere, $defaultColumnSet, $position) => { - return oncia_ShowCurrentUser__init_0($yieldOrWhere, $defaultColumnSet, $position); -}, -oncia_ShowCurrentUser_copy$default$2 = $this => { - return $this.$defaultColumnSet4; -}, -oncia_ShowCurrentUser_productPrefix = $this => { - return $rt_s(4694); -}, -oncia_ShowCurrentUser_productArity = $this => { - return 2; -}, -oncia_ShowCurrentUser_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$yieldOrWhere8; - case 1: - return $this.$defaultColumnSet4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowCurrentUser_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowCurrentUser_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowCurrentUser_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowCurrentUser_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowCurrentUser) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$yieldOrWhere8; - var$3 = $x$1.$yieldOrWhere8; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumnSet4; - $x$1 = $x$1.$defaultColumnSet4; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowCurrentUser_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowCurrentUser_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowCurrentUser__init_ = ($this, $yieldOrWhere, $defaultColumnSet, $position) => { - $this.$yieldOrWhere8 = $yieldOrWhere; - $this.$defaultColumnSet4 = $defaultColumnSet; - $this.$position277 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); -}, -oncia_ShowCurrentUser__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_ShowCurrentUser(); - oncia_ShowCurrentUser__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5() { - jl_Object.call(this); - this.$_0794 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5__init_0 = (var$0, var$1) => { - var$0.$_0794 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5__init_ = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5__init_0(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0794, var$1); -}; -function oncia_ShowUsers() { - let a = this; jl_Object.call(a); - a.$yieldOrWhere3 = null; - a.$withAuth0 = 0; - a.$defaultColumnSet0 = null; - a.$position281 = null; - a.$isReadOnly13 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar31 = null; -} -let oncia_ShowUsers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowUsers_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowUsers_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowUsers_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowUsers_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowUsers_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowUsers_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowUsers_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowUsers_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowUsers_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowUsers_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowUsers_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowUsers_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowUsers_foldedOver = $this => { - return $this; -}, -oncia_ShowUsers_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowUsers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly13 = $x$1; -}, -oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar31; -}, -oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar31 = $x$1; -}, -oncia_ShowUsers_yieldOrWhere = $this => { - return $this.$yieldOrWhere3; -}, -oncia_ShowUsers_withAuth = $this => { - return $this.$withAuth0; -}, -oncia_ShowUsers_defaultColumnSet = $this => { - return $this.$defaultColumnSet0; -}, -oncia_ShowUsers_position = $this => { - return $this.$position281; -}, -oncia_ShowUsers_name = $this => { - return $rt_s(4695); -}, -oncia_ShowUsers_semanticCheck = $this => { - let var$1; - var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ShowUsers_copy = ($this, $yieldOrWhere, $withAuth, $defaultColumnSet, $position) => { - return oncia_ShowUsers__init_($yieldOrWhere, $withAuth, $defaultColumnSet, $position); -}, -oncia_ShowUsers_copy$default$2 = $this => { - return $this.$withAuth0; -}, -oncia_ShowUsers_copy$default$3 = $this => { - return $this.$defaultColumnSet0; -}, -oncia_ShowUsers_productPrefix = $this => { - return $rt_s(4696); -}, -oncia_ShowUsers_productArity = $this => { - return 3; -}, -oncia_ShowUsers_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$yieldOrWhere3; - case 1: - return jl_Boolean_valueOf($this.$withAuth0); - case 2: - return $this.$defaultColumnSet0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowUsers_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUsers_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4696))), sr_Statics_anyHash($this.$yieldOrWhere3)), !$this.$withAuth0 ? 1237 : 1231), sr_Statics_anyHash($this.$defaultColumnSet0)), 3); -}, -oncia_ShowUsers_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUsers_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowUsers) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$withAuth0 != $x$1.$withAuth0) - break b; - d: { - var$2 = $this.$yieldOrWhere3; - var$3 = $x$1.$yieldOrWhere3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumnSet0; - $x$1 = $x$1.$defaultColumnSet0; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowUsers_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowUsers_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowUsers__init_0 = ($this, $yieldOrWhere, $withAuth, $defaultColumnSet, $position) => { - $this.$yieldOrWhere3 = $yieldOrWhere; - $this.$withAuth0 = $withAuth; - $this.$defaultColumnSet0 = $defaultColumnSet; - $this.$position281 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); -}, -oncia_ShowUsers__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_ShowUsers(); - oncia_ShowUsers__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6() { - jl_Object.call(this); - this.$_0189 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6__init_ = (var$0, var$1) => { - var$0.$_0189 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6__init_0 = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6__init_(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0189, var$1); -}; -function oncia_ShowRoles() { - let a = this; jl_Object.call(a); - a.$withUsers0 = 0; - a.$showAll = 0; - a.$yieldOrWhere1 = null; - a.$defaultColumnSet2 = null; - a.$position286 = null; - a.$isReadOnly17 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar29 = null; -} -let oncia_ShowRoles_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowRoles_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowRoles_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowRoles_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowRoles_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowRoles_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowRoles_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowRoles_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowRoles_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowRoles_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowRoles_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowRoles_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowRoles_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowRoles_foldedOver = $this => { - return $this; -}, -oncia_ShowRoles_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowRoles_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly17 = $x$1; -}, -oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar29; -}, -oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar29 = $x$1; -}, -oncia_ShowRoles_withUsers = $this => { - return $this.$withUsers0; -}, -oncia_ShowRoles_yieldOrWhere = $this => { - return $this.$yieldOrWhere1; -}, -oncia_ShowRoles_defaultColumnSet = $this => { - return $this.$defaultColumnSet2; -}, -oncia_ShowRoles_position = $this => { - return $this.$position286; -}, -oncia_ShowRoles_name = $this => { - if (!$this.$showAll) - return $rt_s(4697); - return $rt_s(4698); -}, -oncia_ShowRoles_semanticCheck = $this => { - let var$1; - var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ShowRoles_copy = ($this, $withUsers, $showAll, $yieldOrWhere, $defaultColumnSet, $position) => { - return oncia_ShowRoles__init_($withUsers, $showAll, $yieldOrWhere, $defaultColumnSet, $position); -}, -oncia_ShowRoles_copy$default$1 = $this => { - return $this.$withUsers0; -}, -oncia_ShowRoles_copy$default$2 = $this => { - return $this.$showAll; -}, -oncia_ShowRoles_copy$default$4 = $this => { - return $this.$defaultColumnSet2; -}, -oncia_ShowRoles_productPrefix = $this => { - return $rt_s(4699); -}, -oncia_ShowRoles_productArity = $this => { - return 4; -}, -oncia_ShowRoles_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$withUsers0); - case 1: - return jl_Boolean_valueOf($this.$showAll); - case 2: - return $this.$yieldOrWhere1; - case 3: - return $this.$defaultColumnSet2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowRoles_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowRoles_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4699))), !$this.$withUsers0 ? 1237 : 1231), !$this.$showAll ? 1237 : 1231), sr_Statics_anyHash($this.$yieldOrWhere1)), sr_Statics_anyHash($this.$defaultColumnSet2)), 4); -}, -oncia_ShowRoles_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowRoles_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowRoles) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$withUsers0 != $x$1.$withUsers0) - break b; - if ($this.$showAll != $x$1.$showAll) - break b; - d: { - var$2 = $this.$yieldOrWhere1; - var$3 = $x$1.$yieldOrWhere1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumnSet2; - $x$1 = $x$1.$defaultColumnSet2; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowRoles_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowRoles_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowRoles__init_0 = ($this, $withUsers, $showAll, $yieldOrWhere, $defaultColumnSet, $position) => { - $this.$withUsers0 = $withUsers; - $this.$showAll = $showAll; - $this.$yieldOrWhere1 = $yieldOrWhere; - $this.$defaultColumnSet2 = $defaultColumnSet; - $this.$position286 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); -}, -oncia_ShowRoles__init_ = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_ShowRoles(); - oncia_ShowRoles__init_0(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7() { - jl_Object.call(this); - this.$_0872 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7__init_0 = (var$0, var$1) => { - var$0.$_0872 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7__init_ = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7__init_0(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0872, var$1); -}; -function oncia_ShowServers() { - let a = this; jl_Object.call(a); - a.$yieldOrWhere4 = null; - a.$defaultColumns = null; - a.$position225 = null; - a.$defaultColumnSet7 = null; - a.$isReadOnly16 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar10 = null; -} -let oncia_ShowServers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_ShowServers_returnColumnNames = $this => { - return oncia_ReadAdministrationCommand_returnColumnNames$($this); -}, -oncia_ShowServers_defaultColumnNames = $this => { - return oncia_ReadAdministrationCommand_defaultColumnNames$($this); -}, -oncia_ShowServers_yields = $this => { - return oncia_ReadAdministrationCommand_yields$($this); -}, -oncia_ShowServers_returns = $this => { - return oncia_ReadAdministrationCommand_returns$($this); -}, -oncia_ShowServers_returnColumns = $this => { - return oncia_ReadAdministrationCommand_returnColumns$($this); -}, -oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowServers_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ShowServers_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowServers_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowServers_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowServers_recordCurrentScope = ($this, $astNode) => { - return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); -}, -oncia_ShowServers_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ShowServers_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ShowServers_foldedOver = $this => { - return $this; -}, -oncia_ShowServers_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ShowServers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly16 = $x$1; -}, -oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar10; -}, -oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar10 = $x$1; -}, -oncia_ShowServers_yieldOrWhere = $this => { - return $this.$yieldOrWhere4; -}, -oncia_ShowServers_position = $this => { - return $this.$position225; -}, -oncia_ShowServers_defaultColumnSet = $this => { - return $this.$defaultColumnSet7; -}, -oncia_ShowServers_name = $this => { - return $rt_s(4700); -}, -oncia_ShowServers_semanticCheck = $this => { - let var$1; - var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ShowServers_copy = ($this, $yieldOrWhere, $defaultColumns, $position) => { - return oncia_ShowServers__init_($yieldOrWhere, $defaultColumns, $position); -}, -oncia_ShowServers_copy$default$2 = $this => { - return $this.$defaultColumns; -}, -oncia_ShowServers_productPrefix = $this => { - return $rt_s(4701); -}, -oncia_ShowServers_productArity = $this => { - return 2; -}, -oncia_ShowServers_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$yieldOrWhere4; - case 1: - return $this.$defaultColumns; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowServers_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowServers_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowServers_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowServers_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowServers) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$yieldOrWhere4; - var$3 = $x$1.$yieldOrWhere4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$defaultColumns; - $x$1 = $x$1.$defaultColumns; - if (var$3 !== null) { - if (!oncia_DefaultOrAllShowColumns_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowServers_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ShowServers_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ShowServers__init_0 = ($this, $yieldOrWhere, $defaultColumns, $position) => { - $this.$yieldOrWhere4 = $yieldOrWhere; - $this.$defaultColumns = $defaultColumns; - $this.$position225 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_ReadAdministrationCommand_$init$($this); - $this.$defaultColumnSet7 = $defaultColumns.$columns; -}, -oncia_ShowServers__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_ShowServers(); - oncia_ShowServers__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8() { - jl_Object.call(this); - this.$_0912 = null; -} -let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8__init_0 = (var$0, var$1) => { - var$0.$_0912 = var$1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8__init_ = var_0 => { - let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8(); - oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8__init_0(var_1, var_0); - return var_1; -}, -oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8_apply = (var$0, var$1) => { - var$1 = var$1; - return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0912, var$1); -}; -function oncipvaf_Cypher25AstParser() { - let a = this; jl_Object.call(a); - a.$query5 = null; - a.$exceptionFactory7 = null; - a.$notificationLogger0 = null; -} -let oncipvaf_Cypher25AstParser_exceptionFactory = $this => { - return $this.$exceptionFactory7; -}, -oncipvaf_Cypher25AstParser_statements = $this => { - return oncipa_AntlrAstParser_parse$($this, new oncipvaf_Cypher25AstParser$statements$lambda$_2_0); -}, -oncipvaf_Cypher25AstParser_syntaxException = ($this, $message, $position) => { - return onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory7, $message, $position); -}, -oncipvaf_Cypher25AstParser_newLexer = ($this, $fullTokens) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $this.$query5; - var$3 = oncipl_UnicodeEscapeReplacementReader_read(var$2, oncipl_UnicodeEscapeReplacementReader_DEFAULT_BUFFER_SIZE); - var$4 = new oncipvaf_Cypher25AstLexer; - var$5 = var$3.$charStream; - var$6 = var$3.$offsetTable1; - oncipv_Cypher25Lexer_$callClinit(); - oavr_Lexer__init_(var$4, var$5); - var$4.$_interp = oavra_LexerATNSimulator__init_(var$4, oncipv_Cypher25Lexer__ATN, oncipv_Cypher25Lexer__decisionToDFA, oncipv_Cypher25Lexer__sharedContextCache); - var$4.$inputQuery0 = var$2; - var$4.$offsetTable2 = var$6; - var$4.$_factory = oncipl_CypherToken_factory($fullTokens); - return var$4; -}, -oncipvaf_Cypher25AstParser_errorStrategyConf = $this => { - return new oncipvaf_Cypher25ErrorStrategyConf; -}, -oncipvaf_Cypher25AstParser_newParser = ($this, $tokens) => { - let var$2, var$3, var$4; - var$2 = new oncipvaf_CypherAstBuildingAntlrParser0; - var$3 = $this.$exceptionFactory7; - var$4 = $this.$notificationLogger0; - var$2.$exceptionFactory9 = var$3; - var$2.$notificationLogger3 = var$4; - oncipv_Cypher25Parser_$callClinit(); - oavr_Parser__init_(var$2, $tokens); - var$2.$_interp = oavra_ParserATNSimulator__init_(var$2, oncipv_Cypher25Parser__ATN, oncipv_Cypher25Parser__decisionToDFA, oncipv_Cypher25Parser__sharedContextCache); - oncipa_AstBuildingAntlrParser_$init$(var$2); - oavr_Recognizer_removeErrorListeners(var$2); - return var$2; -}, -oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2_applyOrElse0 = ($this, $x1, $default) => { - let $match1, $match2, $withStar; - if ($x1 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x1); - if (!$x1.$lengthCompare(2)) { - $match1 = $x1.$apply1(0); - $match2 = $x1.$apply1(1); - if ($match1 instanceof oncia_Match) { - $default = $match1; - if ($match2 instanceof oncia_Match) { - $match1 = $match2; - if ($default.$optional1 && !$match1.$optional1) { - $withStar = new oncia_With; - $match1 = new oncia_ReturnItems; - $x1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_($match1, 1, $x1, s_None$_MODULE$, $default.$position85); - $x1 = s_None$_MODULE$; - oncia_With$_$callClinit(); - oncia_With__init_($withStar, 0, $match1, $x1, $x1, $x1, $x1, oncia_DefaultWith$_MODULE$, $default.$position85); - return sci_$colon$colon__init_($default, sci_$colon$colon__init_($withStar, sci_Nil$_MODULE$)); - } - } - } - } - } - if ($x1 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x1); - if (!$x1.$lengthCompare(2)) - return sci_$colon$colon__init_($x1.$apply1(0), sci_Nil$_MODULE$); - } - return sr_Statics_pfMarker; -}, -oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2_applyOrElse = ($this, $x, $default) => { - return oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2_applyOrElse0($this, $x, $default); -}; -function oncia_CallClause() { - let a = this; jl_Object.call(a); - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier18 = null; - a.$SetExtractor$module3 = null; -} -let oncia_CallClause_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_CallClause_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_CallClause_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_CallClause_dup0 = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CallClause_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_CallClause_foldedOver = $this => { - return $this; -}, -oncia_CallClause_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_CallClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier18; -}, -oncia_CallClause_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module3 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module3 !== null) - break a; - $this.$SetExtractor$module3 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module3; -}, -oncia_CallClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier18 = $x$1; -}, -oncia_CallClause_name = $this => { - return $rt_s(4659); -}, -oncia_CallClause_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CallClause__init_ = $this => { - oncia_Clause_$init$($this); -}; -function oncia_UnresolvedCall() { - let a = this; oncia_CallClause.call(a); - a.$procedureNamespace = null; - a.$procedureName1 = null; - a.$declaredArguments = null; - a.$declaredResult = null; - a.$yieldAll2 = 0; - a.$optional0 = 0; - a.$position47 = null; -} -let oncia_UnresolvedCall_yieldAll = $this => { - return $this.$yieldAll2; -}, -oncia_UnresolvedCall_position = $this => { - return $this.$position47; -}, -oncia_UnresolvedCall_returnVariables = $this => { - return oncia_ReturnItems$ReturnVariables__init_(0, s_Option_getOrElse(s_Option_map($this.$declaredResult, new oncia_UnresolvedCall$returnVariables$lambda$_17_0), new oncia_UnresolvedCall$returnVariables$lambda$_17_1)); -}, -oncia_UnresolvedCall_clauseSpecificSemanticCheck = $this => { - let $argumentCheck, $resultsCheck, var$3, $invalidExpressionsCheck; - $argumentCheck = s_Option_getOrElse(s_Option_map($this.$declaredArguments, new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0), new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1); - $resultsCheck = s_Option_getOrElse(s_Option_map($this.$declaredResult, new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2), new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3); - var$3 = $this.$declaredArguments; - $invalidExpressionsCheck = new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4; - $invalidExpressionsCheck.$_0610 = $this; - $invalidExpressionsCheck = s_Option_getOrElse(s_Option_map(var$3, $invalidExpressionsCheck), new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5); - return oncias_SemanticCheck_chain$($argumentCheck.$chain($resultsCheck), $invalidExpressionsCheck); -}, -oncia_UnresolvedCall_containsNoUpdates = $this => { - return 1; -}, -oncia_UnresolvedCall_copy = ($this, $procedureNamespace, $procedureName, $declaredArguments, $declaredResult, $yieldAll, $optional, $position) => { - return oncia_UnresolvedCall__init_0($procedureNamespace, $procedureName, $declaredArguments, $declaredResult, $yieldAll, $optional, $position); -}, -oncia_UnresolvedCall_productPrefix = $this => { - return $rt_s(4702); -}, -oncia_UnresolvedCall_productArity = $this => { - return 6; -}, -oncia_UnresolvedCall_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$procedureNamespace; - case 1: - return $this.$procedureName1; - case 2: - return $this.$declaredArguments; - case 3: - return $this.$declaredResult; - case 4: - return jl_Boolean_valueOf($this.$yieldAll2); - case 5: - return jl_Boolean_valueOf($this.$optional0); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_UnresolvedCall_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnresolvedCall_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4702))), sr_Statics_anyHash($this.$procedureNamespace)), sr_Statics_anyHash($this.$procedureName1)), sr_Statics_anyHash($this.$declaredArguments)), sr_Statics_anyHash($this.$declaredResult)), !$this.$yieldAll2 ? 1237 : 1231), !$this.$optional0 ? 1237 : 1231), 6); -}, -oncia_UnresolvedCall_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnresolvedCall_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UnresolvedCall) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$yieldAll2 != $x$1.$yieldAll2) - break b; - if ($this.$optional0 != $x$1.$optional0) - break b; - c: { - var$2 = $this.$procedureNamespace; - var$3 = $x$1.$procedureNamespace; - if (var$2 !== null) { - if (!oncie_Namespace_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$procedureName1; - var$3 = $x$1.$procedureName1; - if (var$2 !== null) { - if (!oncie_ProcedureName_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$declaredArguments; - var$3 = $x$1.$declaredArguments; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$3 = $this.$declaredResult; - $x$1 = $x$1.$declaredResult; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break f; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_UnresolvedCall)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_UnresolvedCall__init_ = ($this, $procedureNamespace, $procedureName, $declaredArguments, $declaredResult, $yieldAll, $optional, $position) => { - $this.$procedureNamespace = $procedureNamespace; - $this.$procedureName1 = $procedureName; - $this.$declaredArguments = $declaredArguments; - $this.$declaredResult = $declaredResult; - $this.$yieldAll2 = $yieldAll; - $this.$optional0 = $optional; - $this.$position47 = $position; - oncia_CallClause__init_($this); -}, -oncia_UnresolvedCall__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_UnresolvedCall(); - oncia_UnresolvedCall__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}, -oncirr_wrapOptionalCallProcedure$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncirr_wrapOptionalCallProcedure$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncia_AliasedReturnItem__init_(oncie_Variable_copyId(var$1), oncie_Variable_copyId(var$1), var$1.$position4); -}, -oncia_Return$ = $rt_classWithoutFields(), -oncia_Return$_MODULE$ = null, -oncia_Return$_$callClinit = () => { - oncia_Return$_$callClinit = $rt_eraseClinit(oncia_Return$); - oncia_Return$__clinit_(); -}, -oncia_Return$__clinit_ = () => { - let var$1; - var$1 = new oncia_Return$; - oncia_Return$_$callClinit(); - oncia_Return$_MODULE$ = var$1; -}, -oncia_Return$_apply = ($this, $returnItems, $pos) => { - let var$3, var$4; - var$3 = new oncia_Return; - var$4 = s_None$_MODULE$; - oncia_Return__init_(var$3, 0, $returnItems, var$4, var$4, var$4, oncia_Return$_apply$default$6($this), 0, $pos); - return var$3; -}, -oncia_Return$_apply$default$6 = $this => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncia_ReturnItems$ = $rt_classWithoutFields(), -oncia_ReturnItems$_MODULE$ = null, -oncia_ReturnItems$_$callClinit = () => { - oncia_ReturnItems$_$callClinit = $rt_eraseClinit(oncia_ReturnItems$); - oncia_ReturnItems$__clinit_(); -}, -oncia_ReturnItems$__clinit_ = () => { - let var$1; - var$1 = new oncia_ReturnItems$; - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems$_MODULE$ = var$1; -}, -oncia_SubqueryCall = $rt_classWithoutFields(0), -oncia_SubqueryCall_clauseSpecificSemanticCheck$ = $$this => { - let var$2, var$3, var$4, var$5; - a: { - var$2 = $$this.$innerQuery(); - if (var$2 instanceof oncia_SingleQuery) { - var$2 = var$2; - if ($$this.$optional()) { - var$2 = var$2.$clauses0.$head(); - if (!(var$2 instanceof oncia_UnresolvedCall)) { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - break a; - } - var$2 = var$2; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - var$4 = new oncia_SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0; - var$4.$_01071 = var$2; - var$2 = oncias_SemanticCheck_flatMap$(var$3, var$4); - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - var$2 = var$2.$chain($$this.$checkSubquery()); - oncias_OptionSemanticChecking$_$callClinit(); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$3 = $$this.$inTransactionsParameters(); - var$5 = new oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0; - var$5.$_0711 = $$this; - var$3 = oncias_SemanticCheck_chain$(var$2, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$3, var$5)); - if ($$this.$optional() && !($$this.$innerQuery()).$isReturning()) { - var$2 = new onciu_RedundantOptionalSubquery; - var$2.$position78 = $$this.$position(); - var$2 = $$this.$warn(var$2); - } else { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - var$5 = oncias_SemanticCheck_chain$(var$3, var$2); - if (!s_Option_isEmpty($$this.$inTransactionsParameters())) - var$2 = s_None$_MODULE$; - else { - oncia_SubqueryCall$_$callClinit(); - var$2 = oncia_SubqueryCall$_findTransactionalSubquery(oncia_SubqueryCall$_MODULE$, $$this.$innerQuery()); - } - var$4 = oncias_OptionSemanticChecking$_MODULE$; - var$3 = new oncia_SubqueryCall$checkNoCallInTransactionsInsideRegularCall$lambda$_22_0; - var$3.$_0288 = $$this; - return oncias_SemanticCheck_chain$(var$5, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$2, var$3)); -}, -oncia_SubqueryCall_reportParams$ = $$this => { - return s_Option_flatMap($$this.$inTransactionsParameters(), new oncia_SubqueryCall$reportParams$lambda$_10_0); -}, -oncia_SubqueryCall_returnToOuterScope$ = ($$this, $outerScopeLocation) => { - let var$3; - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_SubqueryCall$returnToOuterScope$lambda$_14_0; - var$3.$_0743 = $outerScopeLocation; - return oncias_SemanticCheck$_fromFunction($$this, var$3); -}, -oncia_SubqueryCall_semanticCheckContinuation$ = ($$this, $previousScope, $outerScope) => { - oncias_package$_$callClinit(); - $$this = oncias_package$_MODULE$; - $outerScope = new oncia_SubqueryCall$semanticCheckContinuation$lambda$_18_0; - $outerScope.$_0936 = $previousScope; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($$this, $outerScope); -}; -function oncia_ScopeClauseSubqueryCall() { - let a = this; jl_Object.call(a); - a.$innerQuery0 = null; - a.$isImportingAll = 0; - a.$importedVariables = null; - a.$inTransactionsParameters0 = null; - a.$optional2 = 0; - a.$position64 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier0 = null; - a.$SetExtractor$module19 = null; -} -let oncia_ScopeClauseSubqueryCall_name = $this => { - return $rt_s(4659); -}, -oncia_ScopeClauseSubqueryCall_clauseSpecificSemanticCheck = $this => { - return oncia_SubqueryCall_clauseSpecificSemanticCheck$($this); -}, -oncia_ScopeClauseSubqueryCall_reportParams = $this => { - return oncia_SubqueryCall_reportParams$($this); -}, -oncia_ScopeClauseSubqueryCall_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { - return oncia_SubqueryCall_semanticCheckContinuation$($this, $previousScope, $outerScope); -}, -oncia_ScopeClauseSubqueryCall_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_ScopeClauseSubqueryCall_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_ScopeClauseSubqueryCall_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_ScopeClauseSubqueryCall_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ScopeClauseSubqueryCall_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ScopeClauseSubqueryCall_warn = ($this, $notification) => { - return oncias_SemanticAnalysisTooling_warn$($this, $notification); -}, -oncia_ScopeClauseSubqueryCall_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_ScopeClauseSubqueryCall_foldedOver = $this => { - return $this; -}, -oncia_ScopeClauseSubqueryCall_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ScopeClauseSubqueryCall_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier0; -}, -oncia_ScopeClauseSubqueryCall_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module19 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module19 !== null) - break a; - $this.$SetExtractor$module19 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module19; -}, -oncia_ScopeClauseSubqueryCall_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier0 = $x$1; -}, -oncia_ScopeClauseSubqueryCall_innerQuery = $this => { - return $this.$innerQuery0; -}, -oncia_ScopeClauseSubqueryCall_inTransactionsParameters = $this => { - return $this.$inTransactionsParameters0; -}, -oncia_ScopeClauseSubqueryCall_optional = $this => { - return $this.$optional2; -}, -oncia_ScopeClauseSubqueryCall_position = $this => { - return $this.$position64; -}, -oncia_ScopeClauseSubqueryCall_checkSubquery = $this => { - let var$1, var$2; - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - var$2 = new oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_70_0; - var$2.$_090 = $this; - return oncias_SemanticCheck_flatMap$(var$1, var$2); -}, -oncia_ScopeClauseSubqueryCall_copy = ($this, $innerQuery, $isImportingAll, $importedVariables, $inTransactionsParameters, $optional, $position) => { - return oncia_ScopeClauseSubqueryCall__init_0($innerQuery, $isImportingAll, $importedVariables, $inTransactionsParameters, $optional, $position); -}, -oncia_ScopeClauseSubqueryCall_productPrefix = $this => { - return $rt_s(4703); -}, -oncia_ScopeClauseSubqueryCall_productArity = $this => { - return 5; -}, -oncia_ScopeClauseSubqueryCall_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$innerQuery0; - case 1: - return jl_Boolean_valueOf($this.$isImportingAll); - case 2: - return $this.$importedVariables; - case 3: - return $this.$inTransactionsParameters0; - case 4: - return jl_Boolean_valueOf($this.$optional2); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ScopeClauseSubqueryCall_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ScopeClauseSubqueryCall_hashCode = $this => { - let var$1, var$2; - var$1 = sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4703))), sr_Statics_anyHash($this.$innerQuery0)); - var$2 = !$this.$isImportingAll ? 1237 : 1231; - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), sr_Statics_anyHash($this.$importedVariables)), sr_Statics_anyHash($this.$inTransactionsParameters0)), !$this.$optional2 ? 1237 : 1231), 5); -}, -oncia_ScopeClauseSubqueryCall_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ScopeClauseSubqueryCall_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ScopeClauseSubqueryCall) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$isImportingAll != $x$1.$isImportingAll) - break b; - if ($this.$optional2 != $x$1.$optional2) - break b; - c: { - var$2 = $this.$innerQuery0; - var$3 = $x$1.$innerQuery0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$importedVariables; - var$3 = $x$1.$importedVariables; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$inTransactionsParameters0; - $x$1 = $x$1.$inTransactionsParameters0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_ScopeClauseSubqueryCall)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ScopeClauseSubqueryCall_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ScopeClauseSubqueryCall__init_ = ($this, $innerQuery, $isImportingAll, $importedVariables, $inTransactionsParameters, $optional, $position) => { - $this.$innerQuery0 = $innerQuery; - $this.$isImportingAll = $isImportingAll; - $this.$importedVariables = $importedVariables; - $this.$inTransactionsParameters0 = $inTransactionsParameters; - $this.$optional2 = $optional; - $this.$position64 = $position; - oncia_Clause_$init$($this); -}, -oncia_ScopeClauseSubqueryCall__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_ScopeClauseSubqueryCall(); - oncia_ScopeClauseSubqueryCall__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}, -oncirr_expandCallWhere$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncirr_expandCallWhere$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - a: { - var$1 = var$1; - if (var$1 instanceof oncia_UnresolvedCall) { - var$2 = var$1; - var$3 = var$2.$declaredResult; - if (var$3 instanceof s_Some) { - var$3 = var$3.$value5; - if (var$3 !== null) { - var$4 = var$3.$where5; - if (var$4 instanceof s_Some) { - var$4 = var$4; - var$5 = var$4.$value5; - var$6 = s_None$_MODULE$; - var$7 = s_Some__init_(oncia_ProcedureResult_copy(var$3, var$3.$items2, var$6, var$3.$position153)); - var$1 = oncia_UnresolvedCall_copy(var$2, var$2.$procedureNamespace, var$2.$procedureName1, var$2.$declaredArguments, var$7, var$2.$yieldAll2, var$2.$optional0, var$2.$position47); - var$6 = new oncia_ReturnItems; - s_package$_$callClinit(); - var$8 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_(var$6, 1, var$8, s_None$_MODULE$, var$5.$position13); - var$3 = new oncia_With; - var$2 = s_None$_MODULE$; - oncia_With$_$callClinit(); - oncia_With__init_(var$3, 0, var$6, var$2, var$2, var$2, var$4, oncia_DefaultWith$_MODULE$, var$5.$position13); - var$2 = sci_$colon$colon__init_(var$1, sci_$colon$colon__init_(var$3, sci_Nil$_MODULE$)); - break a; - } - } - } - } - var$2 = s_Some__init_(var$1); - } - return var$2; -}; -function oncia_Where() { - let a = this; jl_Object.call(a); - a.$expression18 = null; - a.$position13 = null; -} -let oncia_Where_foldedOver = $this => { - return $this; -}, -oncia_Where_position = $this => { - return $this.$position13; -}, -oncia_Where_semanticCheck = $this => { - return oncia_Where$_checkExpression(oncia_Where$_MODULE$, $this.$expression18); -}, -oncia_Where_mapExpressions = ($this, $f) => { - return oncia_Where_copy($this, $f.$apply2($this.$expression18), $this.$position13); -}, -oncia_Where_copy = ($this, $expression, $position) => { - return oncia_Where__init_($expression, $position); -}, -oncia_Where_productPrefix = $this => { - return $rt_s(4704); -}, -oncia_Where_productArity = $this => { - return 1; -}, -oncia_Where_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression18; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Where_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Where_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Where_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Where_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Where) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expression18; - $x$1 = $x$1.$expression18; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Where)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_Where_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Where__init_0 = ($this, $expression, $position) => { - $this.$expression18 = $expression; - $this.$position13 = $position; -}, -oncia_Where__init_ = (var_0, var_1) => { - let var_2 = new oncia_Where(); - oncia_Where__init_0(var_2, var_0, var_1); - return var_2; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0__init_ = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0__init_0 = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0__init_(var_0); - return var_0; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1__init_0 = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1__init_ = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1__init_0(var_0); - return var_0; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2__init_0 = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2__init_ = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2__init_0(var_0); - return var_0; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3__init_0 = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3__init_ = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3__init_0(var_0); - return var_0; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4__init_ = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4__init_0 = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4__init_(var_0); - return var_0; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5__init_ = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5__init_0 = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5__init_(var_0); - return var_0; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6__init_0 = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6__init_ = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6__init_0(var_0); - return var_0; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7__init_ = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7__init_0 = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7__init_(var_0); - return var_0; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8__init_ = var$0 => { - return; -}, -oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8__init_0 = () => { - let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8(); - oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8__init_(var_0); - return var_0; -}; -let oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); -}, -oncie_BooleanExpression = $rt_classWithoutFields(0), -oncie_OperatorExpression = $rt_classWithoutFields(0), -oncie_OperatorExpression_canonicalOperatorSymbol$ = $$this => { - let var$2; - var$2 = $$this.$productPrefix(); - ju_Locale_$callClinit(); - $$this = ju_Locale_ROOT; - $$this = var$2.$nativeString.toLocaleUpperCase((ju_Locale_toLanguageTag($$this)).$nativeString); - if ($$this !== var$2.$nativeString) - var$2 = jl_String__init_0($$this); - return var$2; -}, -oncie_BinaryOperatorExpression = $rt_classWithoutFields(0), -oncie_BinaryOperatorExpression_asCanonicalStringVal$ = $$this => { - let var$2, var$3, var$4; - var$2 = ($$this.$lhs0()).$asCanonicalStringVal(); - var$3 = $$this.$canonicalOperatorSymbol(); - $$this = ($$this.$rhs0()).$asCanonicalStringVal(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$2 = jl_StringBuilder_append(var$4, var$2); - jl_AbstractStringBuilder_append0(var$2, 32); - var$2 = jl_StringBuilder_append(var$2, var$3); - jl_AbstractStringBuilder_append0(var$2, 32); - jl_StringBuilder_append(var$2, $$this); - return jl_AbstractStringBuilder_toString(var$4); -}, -oncie_BinaryOperatorExpression_isConstantForQuery$ = $$this => { - return ($$this.$lhs0()).$isConstantForQuery() && ($$this.$rhs0()).$isConstantForQuery() ? 1 : 0; -}; -function oncie_And() { - let a = this; oncie_Expression.call(a); - a.$lhs7 = null; - a.$rhs7 = null; - a.$position87 = null; - a.$signatures4 = null; -} -let oncie_And_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_And_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_And_canonicalOperatorSymbol = $this => { - return oncie_OperatorExpression_canonicalOperatorSymbol$($this); -}, -oncie_And_lhs = $this => { - return $this.$lhs7; -}, -oncie_And_rhs = $this => { - return $this.$rhs7; -}, -oncie_And_position = $this => { - return $this.$position87; -}, -oncie_And_signatures = $this => { - return $this.$signatures4; -}, -oncie_And_copy = ($this, $lhs, $rhs, $position) => { - return oncie_And__init_0($lhs, $rhs, $position); -}, -oncie_And_productPrefix = $this => { - return $rt_s(4705); -}, -oncie_And_productArity = $this => { - return 2; -}, -oncie_And_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs7; - case 1: - return $this.$rhs7; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_And_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_And_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_And_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_And_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_And) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs7; - var$3 = $x$1.$lhs7; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs7; - $x$1 = $x$1.$rhs7; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_And)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_And__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs7 = $lhs; - $this.$rhs7 = $rhs; - $this.$position87 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_BooleanType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures4 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); -}, -oncie_And__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_And(); - oncie_And__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1, var$2) => { - return var$1.$intersect1(var$2); -}; -function oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_1() { - jl_Object.call(this); - this.$_0399 = null; -} -let oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = var$0.$_0399; - return oncie_And_copy(var$3, var$1, var$2, var$3.$position87); -}, -oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1, var$2) => { - return var$1.$appendedAll(var$2); -}; -function oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_3() { - jl_Object.call(this); - this.$_0289 = null; -} -let oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = var$0.$_0289; - return oncie_And_copy(var$3, var$1, var$2, var$3.$position87); -}; -function oncie_Or() { - let a = this; oncie_Expression.call(a); - a.$lhs8 = null; - a.$rhs8 = null; - a.$position92 = null; - a.$signatures6 = null; -} -let oncie_Or_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_Or_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_Or_canonicalOperatorSymbol = $this => { - return oncie_OperatorExpression_canonicalOperatorSymbol$($this); -}, -oncie_Or_lhs = $this => { - return $this.$lhs8; -}, -oncie_Or_rhs = $this => { - return $this.$rhs8; -}, -oncie_Or_position = $this => { - return $this.$position92; -}, -oncie_Or_signatures = $this => { - return $this.$signatures6; -}, -oncie_Or_copy = ($this, $lhs, $rhs, $position) => { - return oncie_Or__init_0($lhs, $rhs, $position); -}, -oncie_Or_productPrefix = $this => { - return $rt_s(4706); -}, -oncie_Or_productArity = $this => { - return 2; -}, -oncie_Or_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs8; - case 1: - return $this.$rhs8; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Or_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Or_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Or_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Or_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Or) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs8; - var$3 = $x$1.$lhs8; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs8; - $x$1 = $x$1.$rhs8; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Or)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_Or__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs8 = $lhs; - $this.$rhs8 = $rhs; - $this.$position92 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_BooleanType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures6 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); -}, -oncie_Or__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Or(); - oncie_Or__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1, var$2) => { - return var$1.$appendedAll(var$2); -}; -function oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_5() { - jl_Object.call(this); - this.$_031 = null; -} -let oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = var$0.$_031; - return oncie_Or_copy(var$3, var$1, var$2, var$3.$position92); -}, -oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_6 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_6_apply = (var$0, var$1, var$2) => { - return var$1.$intersect1(var$2); -}; -function oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_7() { - jl_Object.call(this); - this.$_01081 = null; -} -let oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_7_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = var$0.$_01081; - return oncie_Or_copy(var$3, var$1, var$2, var$3.$position92); -}; -function oncie_FunctionInvocation() { - let a = this; oncie_Expression.call(a); - a.$functionName2 = null; - a.$distinct3 = 0; - a.$args0 = null; - a.$order0 = null; - a.$calledFromUseClause = 0; - a.$position7 = null; - a.$name40 = null; - a.$function1 = null; - a.$isOrdered = 0; -} -let oncie_FunctionInvocation_functionName = $this => { - return $this.$functionName2; -}, -oncie_FunctionInvocation_distinct = $this => { - return $this.$distinct3; -}, -oncie_FunctionInvocation_args = $this => { - return $this.$args0; -}, -oncie_FunctionInvocation_order = $this => { - return $this.$order0; -}, -oncie_FunctionInvocation_position = $this => { - return $this.$position7; -}, -oncie_FunctionInvocation_needsToBeResolved = $this => { - let var$1; - var$1 = $this.$function1; - oncief_UnresolvedFunction$_$callClinit(); - if (!jl_Object_equals(oncief_UnresolvedFunction$_MODULE$, var$1)) - return 0; - return 1; -}, -oncie_FunctionInvocation_asCanonicalStringVal = $this => { - let var$1, var$2, var$3; - var$1 = $this.$name40; - var$2 = sc_AbstractIterable_mkString($this.$args0.$map(new oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0), $rt_s(41)); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$1 = jl_StringBuilder_append(var$3, var$1); - jl_AbstractStringBuilder_append0(var$1, 40); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$2), 41); - return jl_AbstractStringBuilder_toString(var$3); -}, -oncie_FunctionInvocation_isConstantForQuery = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; - a: { - b: { - if (!oncie_FunctionInvocation_needsToBeResolved($this)) { - var$1 = onciu_Foldable_folder$($this); - var$2 = new oncie_Expression$isDeterministic$lambda$_22_0; - var$3 = s_Some__init_(jl_Boolean_valueOf(1)); - var$4 = onciu_Foldable$_MODULE$; - var$5 = scm_Stack$_MODULE$; - var$6 = sr_ScalaRunTime$_MODULE$; - var$7 = $rt_createArray(jl_Object, 1); - var$7.data[0] = var$1.$foldedOver0; - var$6 = var$5.$from0(sr_ScalaRunTime$_genericWrapArray(var$6, var$7)); - var$5 = new onciu_Foldable$Folder$treeForall$lambda$_6_0; - var$5.$_01176 = var$2; - var$5.$_198 = var$3; - if (onciu_Foldable$_org$neo4j$cypher$internal$util$Foldable$$existsAcc(var$4, var$6, var$5, var$1.$cancellation) ? 0 : 1) { - c: { - var$3 = $this.$function1; - oncief_File$_$callClinit(); - var$2 = oncief_File$_MODULE$; - if (var$3 !== null) { - if (jl_Object_equals(var$3, var$2)) - break b; - else - break c; - } - if (var$2 === null) - break b; - } - d: { - var$3 = $this.$function1; - oncief_Linenumber$_$callClinit(); - var$2 = oncief_Linenumber$_MODULE$; - if (var$3 !== null) { - if (jl_Object_equals(var$3, var$2)) - break b; - else - break d; - } - if (var$2 === null) - break b; - } - if (sc_IterableOnceOps_forall$($this.$args0, new oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0)) { - var$8 = 1; - break a; - } - } - } - } - var$8 = 0; - } - return var$8; -}, -oncie_FunctionInvocation_copy = ($this, $functionName, $distinct, $args, $order, $calledFromUseClause, $position) => { - return oncie_FunctionInvocation__init_0($functionName, $distinct, $args, $order, $calledFromUseClause, $position); -}, -oncie_FunctionInvocation_productPrefix = $this => { - return $rt_s(4707); -}, -oncie_FunctionInvocation_productArity = $this => { - return 5; -}, -oncie_FunctionInvocation_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$functionName2; - case 1: - return jl_Boolean_valueOf($this.$distinct3); - case 2: - return $this.$args0; - case 3: - return $this.$order0; - case 4: - return jl_Boolean_valueOf($this.$calledFromUseClause); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_FunctionInvocation_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_FunctionInvocation_hashCode = $this => { - let var$1, var$2; - var$1 = sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4707))), sr_Statics_anyHash($this.$functionName2)); - var$2 = !$this.$distinct3 ? 1237 : 1231; - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), sr_Statics_anyHash($this.$args0)), sr_Statics_anyHash($this.$order0)), !$this.$calledFromUseClause ? 1237 : 1231), 5); -}, -oncie_FunctionInvocation_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_FunctionInvocation_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_FunctionInvocation) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$distinct3 != $x$1.$distinct3) - break b; - if ($this.$calledFromUseClause != $x$1.$calledFromUseClause) - break b; - c: { - var$2 = $this.$functionName2; - var$3 = $x$1.$functionName2; - if (var$2 !== null) { - if (!oncie_FunctionName_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$args0; - var$3 = $x$1.$args0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$order0; - $x$1 = $x$1.$order0; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_FunctionInvocation)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_FunctionInvocation__init_ = ($this, $functionName, $distinct, $args, $order, $calledFromUseClause, $position) => { - let $$je; - $this.$functionName2 = $functionName; - $this.$distinct3 = $distinct; - $this.$args0 = $args; - $this.$order0 = $order; - $this.$calledFromUseClause = $calledFromUseClause; - $this.$position7 = $position; - oncie_Expression__init_($this); - $this.$name40 = sc_AbstractIterable_mkString($functionName.$namespace3.$parts0.$appended($functionName.$name7), $rt_s(403)); - oncief_Function$_$callClinit(); - $functionName = oncief_Function$_MODULE$; - if ((oncief_Function$_bitmap$0 & 1) << 24 >> 24) - $args = oncief_Function$_lookup; - else { - jl_Object_monitorEnterSync($functionName); - a: { - try { - if ((oncief_Function$_bitmap$0 & 1) << 24 >> 24) - break a; - oncief_Function$_lookup = sc_AbstractIterable_toMap((oncief_Function$_knownFunctions0($functionName)).$map(oncief_Function$$lookup$lzycompute$lambda$_2_0__init_0()), s_$less$colon$less$_refl(s_$less$colon$less$_MODULE$)); - oncief_Function$_bitmap$0 = (oncief_Function$_bitmap$0 | 1) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $args = $$je; - - } - jl_Object_monitorExitSync($functionName); - $rt_throw($args); - } - jl_Object_monitorExitSync($functionName); - oncief_Function$_knownFunctions = null; - $args = oncief_Function$_lookup; - } - b: { - c: { - d: { - $position = $this.$name40; - ju_Locale_$callClinit(); - $this.$function1 = $args.$getOrElse1(jl_String_toLowerCase0($position, ju_Locale_ROOT), new oncie_FunctionInvocation$_init_$lambda$_41_0); - $functionName = oncie_FunctionInvocation$ArgumentUnordered$_MODULE$; - if ($order !== null) { - if (jl_Object_equals($order, $functionName)) - break d; - else - break c; - } - if ($functionName !== null) - break c; - } - $distinct = 0; - break b; - } - $distinct = 1; - } - $this.$isOrdered = $distinct; -}, -oncie_FunctionInvocation__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncie_FunctionInvocation(); - oncie_FunctionInvocation__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}, -oncief_FunctionWithName = $rt_classWithoutFields(0), -oncie_TypeSignatures = $rt_classWithoutFields(0), -oncie_TypeSignatures_signatureLengths$ = $$this => { - return ($$this.$signatures()).$map(new oncie_TypeSignatures$signatureLengths$lambda$_3_0); -}; -function oncief_Function() { - let a = this; jl_Object.call(a); - a.$signatureLengths0 = null; - a.$bitmap$042 = 0; -} -let oncief_Function_signatures = $this => { - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); -}, -oncief_Function_signatureLengths = $this => { - let var$1, $$je; - if ($this.$bitmap$042) - return $this.$signatureLengths0; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$042) - break a; - $this.$signatureLengths0 = oncie_TypeSignatures_signatureLengths$($this); - $this.$bitmap$042 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$signatureLengths0; -}, -oncief_Function__init_ = $this => { - return; -}, -oncief_Timestamp$ = $rt_classWithoutFields(oncief_Function), -oncief_Timestamp$_MODULE$ = null, -oncief_Timestamp$_signatures = null, -oncief_Timestamp$_$callClinit = () => { - oncief_Timestamp$_$callClinit = $rt_eraseClinit(oncief_Timestamp$); - oncief_Timestamp$__clinit_(); -}, -oncief_Timestamp$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new oncief_Timestamp$; - oncief_Timestamp$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Timestamp$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - oncie_FunctionTypeSignature$_$callClinit(); - var$5 = oncie_FunctionTypeSignature$_MODULE$; - var$6 = oncief_Timestamp$_MODULE$; - oncius_package$_$callClinit(); - var$7 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(4708), oncief_Category$_SCALAR(oncief_Category$_MODULE$)); - oncief_Timestamp$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Timestamp$_name = $this => { - return $rt_s(594); -}, -oncief_Timestamp$_productArity = $this => { - return 0; -}, -oncief_Timestamp$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Timestamp$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Timestamp$_hashCode = $this => { - return 2059094262; -}, -oncief_Timestamp$_toString = $this => { - return $rt_s(4709); -}, -oncief_Timestamp$_signatures0 = $this => { - oncief_Timestamp$_$callClinit(); - return oncief_Timestamp$_signatures; -}, -oncie_FunctionName$ = $rt_classWithoutFields(), -oncie_FunctionName$_MODULE$ = null, -oncie_FunctionName$_$callClinit = () => { - oncie_FunctionName$_$callClinit = $rt_eraseClinit(oncie_FunctionName$); - oncie_FunctionName$__clinit_(); -}, -oncie_FunctionName$__clinit_ = () => { - let var$1; - var$1 = new oncie_FunctionName$; - oncie_FunctionName$_$callClinit(); - oncie_FunctionName$_MODULE$ = var$1; -}, -oncie_FunctionName$_apply = ($this, $name, $position) => { - let var$3, var$4; - var$3 = new oncie_FunctionName; - var$4 = new oncie_Namespace; - oncie_Namespace$_$callClinit(); - oncie_Namespace__init_(var$4, oncie_Namespace$_apply$default$1(oncie_Namespace$_MODULE$), $position); - oncie_FunctionName__init_(var$3, var$4, $name, $position); - return var$3; -}, -oncie_LogicalProperty = $rt_classWithoutFields(oncie_Expression), -oncie_LogicalProperty_isConstantForQuery = $this => { - return $this.$map16.$isConstantForQuery(); -}; -function oncie_Property() { - let a = this; oncie_LogicalProperty.call(a); - a.$map16 = null; - a.$propertyKey0 = null; - a.$position14 = null; -} -let oncie_Property_map = $this => { - return $this.$map16; -}, -oncie_Property_propertyKey = $this => { - return $this.$propertyKey0; -}, -oncie_Property_position = $this => { - return $this.$position14; -}, -oncie_Property_asCanonicalStringVal = $this => { - let var$1, var$2, var$3; - var$1 = $this.$map16.$asCanonicalStringVal(); - var$2 = $this.$propertyKey0.$name5; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$1 = jl_StringBuilder_append(var$3, var$1); - jl_AbstractStringBuilder_append0(var$1, 46); - jl_StringBuilder_append(var$1, var$2); - return jl_AbstractStringBuilder_toString(var$3); -}, -oncie_Property_productPrefix = $this => { - return $rt_s(4710); -}, -oncie_Property_productArity = $this => { - return 2; -}, -oncie_Property_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$map16; - case 1: - return $this.$propertyKey0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Property_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Property_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Property_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Property_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Property) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$map16; - var$3 = $x$1.$map16; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$propertyKey0; - $x$1 = $x$1.$propertyKey0; - if (var$3 !== null) { - if (!oncie_PropertyKeyName_equals(var$3, $x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Property)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_Property__init_0 = ($this, $map, $propertyKey, $position) => { - $this.$map16 = $map; - $this.$propertyKey0 = $propertyKey; - $this.$position14 = $position; - oncie_Expression__init_($this); -}, -oncie_Property__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_Property(); - oncie_Property__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncie_SymbolicName = $rt_classWithoutFields(0); -function oncie_PropertyKeyName() { - let a = this; jl_Object.call(a); - a.$name5 = null; - a.$position26 = null; -} -let oncie_PropertyKeyName_name = $this => { - return $this.$name5; -}, -oncie_PropertyKeyName_position = $this => { - return $this.$position26; -}, -oncie_PropertyKeyName_productPrefix = $this => { - return $rt_s(4711); -}, -oncie_PropertyKeyName_productArity = $this => { - return 1; -}, -oncie_PropertyKeyName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name5; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_PropertyKeyName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PropertyKeyName_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PropertyKeyName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PropertyKeyName_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PropertyKeyName) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name5; - $x$1 = $x$1.$name5; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_PropertyKeyName)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_PropertyKeyName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PropertyKeyName__init_0 = ($this, $name, $position) => { - $this.$name5 = $name; - $this.$position26 = $position; -}, -oncie_PropertyKeyName__init_ = (var_0, var_1) => { - let var_2 = new oncie_PropertyKeyName(); - oncie_PropertyKeyName__init_0(var_2, var_0, var_1); - return var_2; -}, -sc_SeqFactory$UnapplySeqWrapper$ = $rt_classWithoutFields(), -sc_SeqFactory$UnapplySeqWrapper$_MODULE$ = null, -sc_SeqFactory$UnapplySeqWrapper$_$callClinit = () => { - sc_SeqFactory$UnapplySeqWrapper$_$callClinit = $rt_eraseClinit(sc_SeqFactory$UnapplySeqWrapper$); - sc_SeqFactory$UnapplySeqWrapper$__clinit_(); -}, -sc_SeqFactory$UnapplySeqWrapper$__clinit_ = () => { - let var$1; - var$1 = new sc_SeqFactory$UnapplySeqWrapper$; - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper$_MODULE$ = var$1; -}, -sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension = ($this, $$this) => { - return 0; -}, -sc_SeqFactory$UnapplySeqWrapper$_get$extension = ($this, $$this) => { - return $$this; -}, -sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension = ($this, $$this, $len) => { - return $$this.$lengthCompare($len); -}, -sc_SeqFactory$UnapplySeqWrapper$_apply$extension = ($this, $$this, $i) => { - return $$this.$apply1($i); -}; -function sc_SeqFactory$UnapplySeqWrapper() { - jl_Object.call(this); - this.$scala$collection$SeqFactory$UnapplySeqWrapper$$c = null; -} -let sc_SeqFactory$UnapplySeqWrapper__init_ = ($this, $c) => { - $this.$scala$collection$SeqFactory$UnapplySeqWrapper$$c = $c; -}, -sc_SeqFactory$UnapplySeqWrapper__init_0 = var_0 => { - let var_1 = new sc_SeqFactory$UnapplySeqWrapper(); - sc_SeqFactory$UnapplySeqWrapper__init_(var_1, var_0); - return var_1; -}, -oncief_NullIf$ = $rt_classWithoutFields(oncief_Function), -oncief_NullIf$_MODULE$ = null, -oncief_NullIf$_signatures = null, -oncief_NullIf$_$callClinit = () => { - oncief_NullIf$_$callClinit = $rt_eraseClinit(oncief_NullIf$); - oncief_NullIf$__clinit_(); -}, -oncief_NullIf$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; - var$1 = new oncief_NullIf$; - oncief_NullIf$_$callClinit(); - oncief_Function__init_(var$1); - oncief_NullIf$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_NullIf$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(4712), $rt_s(4713)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$7 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(4712), $rt_s(4714)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(4713), $rt_s(4715)); - var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(4716), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); - oncief_NullIf$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_NullIf$_name = $this => { - return $rt_s(597); -}, -oncief_NullIf$_productArity = $this => { - return 0; -}, -oncief_NullIf$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_NullIf$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_NullIf$_hashCode = $this => { - return (-1950517980); -}, -oncief_NullIf$_toString = $this => { - return $rt_s(4717); -}, -oncief_NullIf$_signatures0 = $this => { - oncief_NullIf$_$callClinit(); - return oncief_NullIf$_signatures; -}, -oncie_ChainableBinaryOperatorExpression = $rt_classWithoutFields(0); -function oncie_Equals() { - let a = this; oncie_Expression.call(a); - a.$lhs13 = null; - a.$rhs17 = null; - a.$position210 = null; - a.$signatures22 = null; -} -let oncie_Equals_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_Equals_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_Equals_lhs = $this => { - return $this.$lhs13; -}, -oncie_Equals_rhs = $this => { - return $this.$rhs17; -}, -oncie_Equals_position = $this => { - return $this.$position210; -}, -oncie_Equals_signatures = $this => { - return $this.$signatures22; -}, -oncie_Equals_canonicalOperatorSymbol = $this => { - return $rt_s(4453); -}, -oncie_Equals_productPrefix = $this => { - return $rt_s(4718); -}, -oncie_Equals_productArity = $this => { - return 2; -}, -oncie_Equals_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs13; - case 1: - return $this.$rhs17; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Equals_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Equals_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Equals_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Equals_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Equals) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs13; - var$3 = $x$1.$lhs13; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs17; - $x$1 = $x$1.$rhs17; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Equals)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_Equals__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs13 = $lhs; - $this.$rhs17 = $rhs; - $this.$position210 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures22 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); -}, -oncie_Equals__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Equals(); - oncie_Equals__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_Null() { - let a = this; oncie_Expression.call(a); - a.$position164 = null; - a.$value46 = null; -} -let oncie_Null_isConstantForQuery = $this => { - return 1; -}, -oncie_Null_position = $this => { - return $this.$position164; -}, -oncie_Null_asCanonicalStringVal = $this => { - return $rt_s(4524); -}, -oncie_Null_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_Null$$anon$7; - oncie_Null__init_(var$1, $this.$position164); - return var$1; -}, -oncie_Null_copy = ($this, $position) => { - return oncie_Null__init_0($position); -}, -oncie_Null_productPrefix = $this => { - return $rt_s(133); -}, -oncie_Null_productArity = $this => { - return 0; -}, -oncie_Null_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_Null_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Null_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_Null; -}, -oncie_Null_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Null_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Null_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_Null) ? 0 : 1; - return var$2 && $this instanceof oncie_Null ? 1 : 0; -}, -oncie_Null__init_ = ($this, $position) => { - $this.$position164 = $position; - oncie_Expression__init_($this); - $this.$value46 = null; -}, -oncie_Null__init_0 = var_0 => { - let var_1 = new oncie_Null(); - oncie_Null__init_(var_1, var_0); - return var_1; -}; -function oncie_CaseExpression() { - let a = this; oncie_Expression.call(a); - a.$possibleExpressions0 = null; - a.$candidate0 = null; - a.$candidateVarName = null; - a.$alternatives0 = null; - a.$default3 = null; - a.$position278 = null; - a.$bitmap$036 = 0; -} -let oncie_CaseExpression_dependencies = $this => { - return $this.$scopeDependencies(); -}, -oncie_CaseExpression_candidate = $this => { - return $this.$candidate0; -}, -oncie_CaseExpression_alternatives = $this => { - return $this.$alternatives0; -}, -oncie_CaseExpression_default = $this => { - return $this.$default3; -}, -oncie_CaseExpression_position = $this => { - return $this.$position278; -}, -oncie_CaseExpression_possibleExpressions = $this => { - let var$1, $$je; - if ($this.$bitmap$036) - return $this.$possibleExpressions0; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$036) - break a; - $this.$possibleExpressions0 = sc_AbstractIterable_$plus$plus((oncie_CaseExpression_alternatives($this)).$map(oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0__init_0()), oncie_CaseExpression_default($this)); - $this.$bitmap$036 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$possibleExpressions0; -}, -oncie_CaseExpression_introducedVariables = $this => { - s_Option$_$callClinit(); - return sc_AbstractIterable_toSet(s_Option$_option2Iterable(s_Option$_MODULE$, $this.$candidateVarName)); -}, -oncie_CaseExpression_scopeDependencies = $this => { - return (((s_Option_fold($this.$candidate0, new oncie_CaseExpression$scopeDependencies$lambda$_13_0, new oncie_CaseExpression$scopeDependencies$lambda$_13_1)).$concat1($this.$alternatives0.$flatMap(new oncie_CaseExpression$scopeDependencies$lambda$_13_2))).$concat1(s_Option_fold($this.$default3, new oncie_CaseExpression$scopeDependencies$lambda$_13_3, new oncie_CaseExpression$scopeDependencies$lambda$_13_4))).$removedAll(oncie_CaseExpression_introducedVariables($this)); -}, -oncie_CaseExpression_isConstantForQuery = $this => { - return s_Option_forall($this.$candidate0, new oncie_CaseExpression$isConstantForQuery$lambda$_14_0) && sc_IterableOnceOps_forall$($this.$alternatives0, new oncie_CaseExpression$isConstantForQuery$lambda$_14_1) && s_Option_forall($this.$default3, new oncie_CaseExpression$isConstantForQuery$lambda$_14_2) ? 1 : 0; -}, -oncie_CaseExpression_productPrefix = $this => { - return $rt_s(4719); -}, -oncie_CaseExpression_productArity = $this => { - return 4; -}, -oncie_CaseExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$candidate0; - case 1: - return $this.$candidateVarName; - case 2: - return $this.$alternatives0; - case 3: - return $this.$default3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_CaseExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_CaseExpression_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_CaseExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_CaseExpression_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_CaseExpression) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$candidate0; - var$3 = $x$1.$candidate0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$candidateVarName; - var$3 = $x$1.$candidateVarName; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$alternatives0; - var$3 = $x$1.$alternatives0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$3 = $this.$default3; - $x$1 = $x$1.$default3; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break f; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_CaseExpression)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_CaseExpression__init_ = ($this, $candidate, $candidateVarName, $alternatives, $default, $position) => { - $this.$candidate0 = $candidate; - $this.$candidateVarName = $candidateVarName; - $this.$alternatives0 = $alternatives; - $this.$default3 = $default; - $this.$position278 = $position; - oncie_Expression__init_($this); -}, -oncie_CaseExpression__init_0 = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncie_CaseExpression(); - oncie_CaseExpression__init_(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}; -function oncifp_ResolvedCall() { - let a = this; oncia_CallClause.call(a); - a.$signature = null; - a.$callArguments = null; - a.$callResults = null; - a.$declaredArguments0 = 0; - a.$declaredResults = 0; - a.$yieldAll3 = 0; - a.$optional3 = 0; - a.$position9 = null; - a.$callOutputTypes = null; -} -let oncifp_ResolvedCall_yieldAll = $this => { - return $this.$yieldAll3; -}, -oncifp_ResolvedCall_position = $this => { - return $this.$position9; -}, -oncifp_ResolvedCall_returnVariables = $this => { - return oncia_ReturnItems$ReturnVariables__init_(0, sc_IterableOnceOps_toList$($this.$callResults.$map(new oncifp_ResolvedCall$returnVariables$lambda$_23_0))); -}, -oncifp_ResolvedCall_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3, var$4; - var$1 = oncifp_ResolvedCall_argumentCheck($this); - if ((oncifp_ProcedureSignature_outputFields($this.$signature)).$isEmpty() && !(!sc_IterableOnceOps_nonEmpty$($this.$callResults) && !$this.$yieldAll3)) - var$2 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(4720), $this.$position9); - else if ((oncifp_ProcedureSignature_outputFields($this.$signature)).$isEmpty()) { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else if (!$this.$declaredResults) - var$2 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(4721), $this.$position9); - else { - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$3 = $this.$callResults; - var$4 = new oncifp_ResolvedCall$resultCheck$lambda$_29_0; - var$4.$_0409 = $this; - var$2 = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4); - } - return var$1.$chain(var$2); -}, -oncifp_ResolvedCall_argumentCheck = $this => { - let $totalNumArgs, $numArgsWithDefaults, $minNumArgs, $givenNumArgs, var$5, $maxExpectedMsg, $tooFewArgs, $tooManyArgs, var$9, $argTypes, $sigDesc, $description; - $totalNumArgs = $this.$signature.$inputSignature0.$length(); - $numArgsWithDefaults = (sc_StrictOptimizedIterableOps_flatMap$($this.$signature.$inputSignature0, new oncifp_ResolvedCall$argumentCheck$lambda$_28_0)).$size(); - $minNumArgs = $totalNumArgs - $numArgsWithDefaults | 0; - $givenNumArgs = $this.$callArguments.$length(); - if (!$this.$declaredArguments0) { - if ($totalNumArgs) { - var$5 = $this.$signature.$name10; - $maxExpectedMsg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($maxExpectedMsg); - jl_StringBuilder_append(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4722)), var$5); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString($maxExpectedMsg), $this.$position9); - } - var$5 = $this.$signature.$name10; - $maxExpectedMsg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($maxExpectedMsg); - jl_StringBuilder_append(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4723)), var$5); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString($maxExpectedMsg), $this.$position9); - } - $tooFewArgs = $givenNumArgs >= $minNumArgs ? 0 : 1; - $tooManyArgs = $givenNumArgs <= $totalNumArgs ? 0 : 1; - if (!$tooFewArgs && !$tooManyArgs) { - var$5 = sci_ArraySeq_map(sci_ArraySeq_zip($this.$signature.$inputSignature0, $this.$callArguments), new oncifp_ResolvedCall$argumentCheck$lambda$_28_1); - oncias_SemanticCheck$_$callClinit(); - return sci_ArraySeq_foldLeft(var$5, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$), new oncifp_ResolvedCall$argumentCheck$lambda$_28_2); - } - a: { - switch ($minNumArgs) { - case 0: - break; - case 1: - var$9 = (sc_IndexedSeqOps_head$($this.$signature.$inputSignature0)).$typ.$normalizedCypherTypeString(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(4724)), var$9); - $argTypes = jl_AbstractStringBuilder_toString(var$5); - break a; - default: - $sigDesc = sc_AbstractIterable_mkString(sci_ArraySeq_map(sci_ArraySeq_take($this.$signature.$inputSignature0, $minNumArgs), new oncifp_ResolvedCall$argumentCheck$lambda$_28_3), $rt_s(45)); - $maxExpectedMsg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($maxExpectedMsg); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4725)), $minNumArgs), $rt_s(4726)), $sigDesc); - $argTypes = jl_AbstractStringBuilder_toString($maxExpectedMsg); - break a; - } - $argTypes = $rt_s(4727); - } - $description = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - $sigDesc = $this.$signature; - var$5 = $sigDesc.$name10; - $maxExpectedMsg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($maxExpectedMsg); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4728)), var$5), $rt_s(4729)), $sigDesc), $rt_s(4730)), $argTypes); - $sigDesc = sc_StringOps$_stripMargin$extension($description, jl_AbstractStringBuilder_toString($maxExpectedMsg)); - $description = s_Option_fold($this.$signature.$description4, new oncifp_ResolvedCall$argumentCheck$lambda$_28_4, new oncifp_ResolvedCall$argumentCheck$lambda$_28_5); - if ($tooFewArgs) { - $argTypes = sc_StringOps$_MODULE$; - $maxExpectedMsg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($maxExpectedMsg); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4731)), $givenNumArgs), $rt_s(4732)), $minNumArgs), $rt_s(4733)), $totalNumArgs), $rt_s(45)), $numArgsWithDefaults), $rt_s(4734)), $sigDesc), $rt_s(4735)), $description); - return oncias_SemanticAnalysisTooling_error$($this, sc_StringOps$_stripMargin$extension($argTypes, jl_AbstractStringBuilder_toString($maxExpectedMsg)), $this.$position9); - } - b: { - switch ($totalNumArgs) { - case 0: - break; - default: - $maxExpectedMsg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($maxExpectedMsg); - jl_StringBuilder_append0(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4736)), $totalNumArgs); - $maxExpectedMsg = jl_AbstractStringBuilder_toString($maxExpectedMsg); - break b; - } - $maxExpectedMsg = $rt_s(453); - } - var$9 = sc_StringOps$_MODULE$; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$5, $rt_s(4737)), $givenNumArgs), $rt_s(4738)), $maxExpectedMsg), $rt_s(4739)), $sigDesc), $rt_s(4735)), $description); - return oncias_SemanticAnalysisTooling_error$($this, sc_StringOps$_stripMargin$extension(var$9, jl_AbstractStringBuilder_toString(var$5)), $this.$position9); -}, -oncifp_ResolvedCall_containsNoUpdates = $this => { - let var$1; - var$1 = $this.$signature.$accessMode; - oncifp_ProcedureReadOnlyAccess$_$callClinit(); - if (jl_Object_equals(oncifp_ProcedureReadOnlyAccess$_MODULE$, var$1)) - return 1; - oncifp_ProcedureDbmsAccess$_$callClinit(); - if (!jl_Object_equals(oncifp_ProcedureDbmsAccess$_MODULE$, var$1)) - return 0; - return 1; -}, -oncifp_ResolvedCall_copy = ($this, $signature, $callArguments, $callResults, $declaredArguments, $declaredResults, $yieldAll, $optional, $position) => { - return oncifp_ResolvedCall__init_($signature, $callArguments, $callResults, $declaredArguments, $declaredResults, $yieldAll, $optional, $position); -}, -oncifp_ResolvedCall_productPrefix = $this => { - return $rt_s(4740); -}, -oncifp_ResolvedCall_productArity = $this => { - return 7; -}, -oncifp_ResolvedCall_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$signature; - case 1: - return $this.$callArguments; - case 2: - return $this.$callResults; - case 3: - return jl_Boolean_valueOf($this.$declaredArguments0); - case 4: - return jl_Boolean_valueOf($this.$declaredResults); - case 5: - return jl_Boolean_valueOf($this.$yieldAll3); - case 6: - return jl_Boolean_valueOf($this.$optional3); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncifp_ResolvedCall_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_ResolvedCall_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4740))), sr_Statics_anyHash($this.$signature)), sr_Statics_anyHash($this.$callArguments)), sr_Statics_anyHash($this.$callResults)), !$this.$declaredArguments0 ? 1237 : 1231), !$this.$declaredResults ? 1237 : 1231), !$this.$yieldAll3 ? 1237 : 1231), !$this.$optional3 ? 1237 : 1231), 7); -}, -oncifp_ResolvedCall_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_ResolvedCall_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncifp_ResolvedCall) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$declaredArguments0 != $x$1.$declaredArguments0) - break b; - if ($this.$declaredResults != $x$1.$declaredResults) - break b; - if ($this.$yieldAll3 != $x$1.$yieldAll3) - break b; - if ($this.$optional3 != $x$1.$optional3) - break b; - c: { - var$2 = $this.$signature; - var$3 = $x$1.$signature; - if (var$2 !== null) { - if (!oncifp_ProcedureSignature_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$callArguments; - var$3 = $x$1.$callArguments; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$callResults; - $x$1 = $x$1.$callResults; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncifp_ResolvedCall)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncifp_ResolvedCall__init_0 = ($this, $signature, $callArguments, $callResults, $declaredArguments, $declaredResults, $yieldAll, $optional, $position) => { - $this.$signature = $signature; - $this.$callArguments = $callArguments; - $this.$callResults = $callResults; - $this.$declaredArguments0 = $declaredArguments; - $this.$declaredResults = $declaredResults; - $this.$yieldAll3 = $yieldAll; - $this.$optional3 = $optional; - $this.$position9 = $position; - oncia_CallClause__init_($this); - $this.$callOutputTypes = s_Option_getOrElse(s_Option_map($signature.$outputSignature, new oncifp_ResolvedCall$_init_$lambda$_71_0), new oncifp_ResolvedCall$_init_$lambda$_71_1); -}, -oncifp_ResolvedCall__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { - let var_8 = new oncifp_ResolvedCall(); - oncifp_ResolvedCall__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); - return var_8; -}, -oncia_GraphSelection = $rt_classWithoutFields(0); -function oncia_With() { - let a = this; jl_Object.call(a); - a.$distinct2 = 0; - a.$returnItems4 = null; - a.$orderBy4 = null; - a.$skip5 = null; - a.$limit5 = null; - a.$where2 = null; - a.$withType = null; - a.$position36 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier3 = null; - a.$SetExtractor$module6 = null; -} -let oncia_With_isReturn = $this => { - return 0; -}, -oncia_With_copyProjection = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where) => { - return oncia_ProjectionClause_copyProjection$($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where); -}, -oncia_With_copyProjection$default$1 = $this => { - return $this.$distinct(); -}, -oncia_With_copyProjection$default$3 = $this => { - return $this.$orderBy(); -}, -oncia_With_copyProjection$default$4 = $this => { - return $this.$skip(); -}, -oncia_With_copyProjection$default$5 = $this => { - return $this.$limit(); -}, -oncia_With_copyProjection$default$6 = $this => { - return $this.$where(); -}, -oncia_With_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { - return oncia_ProjectionClause_semanticCheckContinuation$($this, $previousScope, $outerScope); -}, -oncia_With_semanticCheckContinuation$default$2 = $this => { - return s_None$_MODULE$; -}, -oncia_With_warnOnAccessToRestrictedVariableInOrderByOrWhere = ($this, $previousScopeVars, $error) => { - return oncia_ProjectionClause_warnOnAccessToRestrictedVariableInOrderByOrWhere$($this, $previousScopeVars, $error); -}, -oncia_With_verifyOrderByAggregationUse = ($this, $fail) => { - oncia_ProjectionClause_verifyOrderByAggregationUse$($this, $fail); -}, -oncia_With_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_With_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_With_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_With_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_With_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_With_foldedOver = $this => { - return $this; -}, -oncia_With_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_With_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier3; -}, -oncia_With_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module6 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module6 !== null) - break a; - $this.$SetExtractor$module6 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module6; -}, -oncia_With_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier3 = $x$1; -}, -oncia_With_distinct = $this => { - return $this.$distinct2; -}, -oncia_With_returnItems = $this => { - return $this.$returnItems4; -}, -oncia_With_orderBy = $this => { - return $this.$orderBy4; -}, -oncia_With_skip = $this => { - return $this.$skip5; -}, -oncia_With_limit = $this => { - return $this.$limit5; -}, -oncia_With_where = $this => { - return $this.$where2; -}, -oncia_With_position = $this => { - return $this.$position36; -}, -oncia_With_name = $this => { - return $rt_s(642); -}, -oncia_With_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3; - var$1 = oncia_ProjectionClause_clauseSpecificSemanticCheck$($this); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncia_ProjectionClause$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(var$1, oncias_package$_liftSemanticErrorDefsFunc(var$2, oncia_ProjectionClause$_checkAliasedReturnItems(oncia_ProjectionClause$_MODULE$, $this.$returnItems4, $rt_s(642)))); - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticPatternCheck$_checkValidPropertyKeyNamesInReturnItems(oncias_SemanticPatternCheck$_MODULE$, $this.$returnItems4)); -}, -oncia_With_copy = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where, $withType, $position) => { - return oncia_With__init_0($distinct, $returnItems, $orderBy, $skip, $limit, $where, $withType, $position); -}, -oncia_With_productPrefix = $this => { - return $rt_s(4741); -}, -oncia_With_productArity = $this => { - return 7; -}, -oncia_With_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$distinct2); - case 1: - return $this.$returnItems4; - case 2: - return $this.$orderBy4; - case 3: - return $this.$skip5; - case 4: - return $this.$limit5; - case 5: - return $this.$where2; - case 6: - return $this.$withType; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_With_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_With_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4741))), !$this.$distinct2 ? 1237 : 1231), sr_Statics_anyHash($this.$returnItems4)), sr_Statics_anyHash($this.$orderBy4)), sr_Statics_anyHash($this.$skip5)), sr_Statics_anyHash($this.$limit5)), sr_Statics_anyHash($this.$where2)), sr_Statics_anyHash($this.$withType)), 7); -}, -oncia_With_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_With_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_With) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$distinct2 != $x$1.$distinct2) - break b; - c: { - var$2 = $this.$returnItems4; - var$3 = $x$1.$returnItems4; - if (var$2 !== null) { - if (!oncia_ReturnItems_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$orderBy4; - var$3 = $x$1.$orderBy4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$skip5; - var$3 = $x$1.$skip5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$limit5; - var$3 = $x$1.$limit5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$where2; - var$3 = $x$1.$where2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$3 = $this.$withType; - $x$1 = $x$1.$withType; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break h; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_With)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_With_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_With__init_ = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where, $withType, $position) => { - $this.$distinct2 = $distinct; - $this.$returnItems4 = $returnItems; - $this.$orderBy4 = $orderBy; - $this.$skip5 = $skip; - $this.$limit5 = $limit; - $this.$where2 = $where; - $this.$withType = $withType; - $this.$position36 = $position; - oncia_Clause_$init$($this); -}, -oncia_With__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { - let var_8 = new oncia_With(); - oncia_With__init_(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); - return var_8; -}; -function oncia_Return() { - let a = this; jl_Object.call(a); - a.$distinct1 = 0; - a.$returnItems2 = null; - a.$orderBy2 = null; - a.$skip3 = null; - a.$limit3 = null; - a.$excludedNames = null; - a.$addedInRewrite = 0; - a.$position29 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier24 = null; - a.$SetExtractor$module13 = null; -} -let oncia_Return_copyProjection = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where) => { - return oncia_ProjectionClause_copyProjection$($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where); -}, -oncia_Return_copyProjection$default$1 = $this => { - return $this.$distinct(); -}, -oncia_Return_copyProjection$default$3 = $this => { - return $this.$orderBy(); -}, -oncia_Return_copyProjection$default$4 = $this => { - return $this.$skip(); -}, -oncia_Return_copyProjection$default$5 = $this => { - return $this.$limit(); -}, -oncia_Return_copyProjection$default$6 = $this => { - return $this.$where(); -}, -oncia_Return_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { - return oncia_ProjectionClause_semanticCheckContinuation$($this, $previousScope, $outerScope); -}, -oncia_Return_semanticCheckContinuation$default$2 = $this => { - return s_None$_MODULE$; -}, -oncia_Return_warnOnAccessToRestrictedVariableInOrderByOrWhere = ($this, $previousScopeVars, $error) => { - return oncia_ProjectionClause_warnOnAccessToRestrictedVariableInOrderByOrWhere$($this, $previousScopeVars, $error); -}, -oncia_Return_verifyOrderByAggregationUse = ($this, $fail) => { - oncia_ProjectionClause_verifyOrderByAggregationUse$($this, $fail); -}, -oncia_Return_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Return_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_Return_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Return_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Return_foldedOver = $this => { - return $this; -}, -oncia_Return_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Return_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier24; -}, -oncia_Return_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module13 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module13 !== null) - break a; - $this.$SetExtractor$module13 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module13; -}, -oncia_Return_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier24 = $x$1; -}, -oncia_Return_distinct = $this => { - return $this.$distinct1; -}, -oncia_Return_returnItems = $this => { - return $this.$returnItems2; -}, -oncia_Return_orderBy = $this => { - return $this.$orderBy2; -}, -oncia_Return_skip = $this => { - return $this.$skip3; -}, -oncia_Return_limit = $this => { - return $this.$limit3; -}, -oncia_Return_position = $this => { - return $this.$position29; -}, -oncia_Return_name = $this => { - return $rt_s(641); -}, -oncia_Return_isReturn = $this => { - return 1; -}, -oncia_Return_where = $this => { - return s_None$_MODULE$; -}, -oncia_Return_returnVariables = $this => { - return oncia_ReturnItems_returnVariables($this.$returnItems2); -}, -oncia_Return_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3, var$4; - var$1 = oncia_ProjectionClause_clauseSpecificSemanticCheck$($this); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncia_Return$checkVariableScope$lambda$_88_0; - var$3.$_0763 = $this; - var$4 = oncias_SemanticCheck_chain$(var$1, oncias_package$_liftSemanticErrorDefsFunc(var$2, var$3)); - var$1 = oncias_package$_MODULE$; - oncia_ProjectionClause$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(var$4, oncias_package$_liftSemanticErrorDefsFunc(var$1, oncia_ProjectionClause$_checkAliasedReturnItems(oncia_ProjectionClause$_MODULE$, $this.$returnItems2, $rt_s(4742)))); - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidPropertyKeyNamesInReturnItems(oncias_SemanticPatternCheck$_MODULE$, $this.$returnItems2)); -}, -oncia_Return_withReturnItems = ($this, $returnItems) => { - return oncia_Return_copy($this, $this.$distinct1, $returnItems, $this.$orderBy2, $this.$skip3, $this.$limit3, $this.$excludedNames, $this.$addedInRewrite, $this.$position29); -}, -oncia_Return_copy = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $excludedNames, $addedInRewrite, $position) => { - return oncia_Return__init_0($distinct, $returnItems, $orderBy, $skip, $limit, $excludedNames, $addedInRewrite, $position); -}, -oncia_Return_productPrefix = $this => { - return $rt_s(4743); -}, -oncia_Return_productArity = $this => { - return 7; -}, -oncia_Return_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$distinct1); - case 1: - return $this.$returnItems2; - case 2: - return $this.$orderBy2; - case 3: - return $this.$skip3; - case 4: - return $this.$limit3; - case 5: - return $this.$excludedNames; - case 6: - return jl_Boolean_valueOf($this.$addedInRewrite); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Return_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Return_hashCode = $this => { - let var$1, var$2; - var$1 = sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4743))); - var$2 = !$this.$distinct1 ? 1237 : 1231; - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), sr_Statics_anyHash($this.$returnItems2)), sr_Statics_anyHash($this.$orderBy2)), sr_Statics_anyHash($this.$skip3)), sr_Statics_anyHash($this.$limit3)), sr_Statics_anyHash($this.$excludedNames)), !$this.$addedInRewrite ? 1237 : 1231), 7); -}, -oncia_Return_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Return_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Return) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$distinct1 != $x$1.$distinct1) - break b; - if ($this.$addedInRewrite != $x$1.$addedInRewrite) - break b; - c: { - var$2 = $this.$returnItems2; - var$3 = $x$1.$returnItems2; - if (var$2 !== null) { - if (!oncia_ReturnItems_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$orderBy2; - var$3 = $x$1.$orderBy2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$skip3; - var$3 = $x$1.$skip3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$limit3; - var$3 = $x$1.$limit3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$3 = $this.$excludedNames; - $x$1 = $x$1.$excludedNames; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break g; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Return)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_Return_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Return__init_ = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $excludedNames, $addedInRewrite, $position) => { - $this.$distinct1 = $distinct; - $this.$returnItems2 = $returnItems; - $this.$orderBy2 = $orderBy; - $this.$skip3 = $skip; - $this.$limit3 = $limit; - $this.$excludedNames = $excludedNames; - $this.$addedInRewrite = $addedInRewrite; - $this.$position29 = $position; - oncia_Clause_$init$($this); -}, -oncia_Return__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { - let var_8 = new oncia_Return(); - oncia_Return__init_(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); - return var_8; -}, -onciu_Ref$ = $rt_classWithoutFields(), -onciu_Ref$_MODULE$ = null, -onciu_Ref$_$callClinit = () => { - onciu_Ref$_$callClinit = $rt_eraseClinit(onciu_Ref$); - onciu_Ref$__clinit_(); -}, -onciu_Ref$__clinit_ = () => { - let var$1; - var$1 = new onciu_Ref$; - onciu_Ref$_$callClinit(); - onciu_Ref$_MODULE$ = var$1; -}, -onciu_Ref$_apply = ($this, $v) => { - let var$2; - var$2 = new onciu_Ref; - var$2.$value20 = $v; - if ($v !== null) - return var$2; - var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$2, $rt_s(4744)); - $rt_throw(var$2); -}; -function oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0663 = null; -} -let oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1$applyOrElse$lambda$_0_0_apply = var$0 => { - return var$0.$_0663; -}; -function oncia_ImportingWithSubqueryCall() { - let a = this; jl_Object.call(a); - a.$innerQuery1 = null; - a.$inTransactionsParameters1 = null; - a.$optional4 = 0; - a.$position103 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier13 = null; - a.$SetExtractor$module7 = null; -} -let oncia_ImportingWithSubqueryCall_name = $this => { - return $rt_s(4659); -}, -oncia_ImportingWithSubqueryCall_clauseSpecificSemanticCheck = $this => { - return oncia_SubqueryCall_clauseSpecificSemanticCheck$($this); -}, -oncia_ImportingWithSubqueryCall_reportParams = $this => { - return oncia_SubqueryCall_reportParams$($this); -}, -oncia_ImportingWithSubqueryCall_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { - return oncia_SubqueryCall_semanticCheckContinuation$($this, $previousScope, $outerScope); -}, -oncia_ImportingWithSubqueryCall_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_ImportingWithSubqueryCall_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_ImportingWithSubqueryCall_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_ImportingWithSubqueryCall_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ImportingWithSubqueryCall_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ImportingWithSubqueryCall_warn = ($this, $notification) => { - return oncias_SemanticAnalysisTooling_warn$($this, $notification); -}, -oncia_ImportingWithSubqueryCall_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_ImportingWithSubqueryCall_foldedOver = $this => { - return $this; -}, -oncia_ImportingWithSubqueryCall_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ImportingWithSubqueryCall_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier13; -}, -oncia_ImportingWithSubqueryCall_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module7 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module7 !== null) - break a; - $this.$SetExtractor$module7 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module7; -}, -oncia_ImportingWithSubqueryCall_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier13 = $x$1; -}, -oncia_ImportingWithSubqueryCall_innerQuery = $this => { - return $this.$innerQuery1; -}, -oncia_ImportingWithSubqueryCall_inTransactionsParameters = $this => { - return $this.$inTransactionsParameters1; -}, -oncia_ImportingWithSubqueryCall_optional = $this => { - return $this.$optional4; -}, -oncia_ImportingWithSubqueryCall_position = $this => { - return $this.$position103; -}, -oncia_ImportingWithSubqueryCall_checkSubquery = $this => { - let var$1, var$2; - var$1 = $this.$innerQuery1.$checkImportingWith(); - var$2 = new oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_68_0; - var$2.$_0190 = $this; - return var$1.$flatMap3(var$2); -}, -oncia_ImportingWithSubqueryCall_copy = ($this, $innerQuery, $inTransactionsParameters, $optional, $position) => { - return oncia_ImportingWithSubqueryCall__init_0($innerQuery, $inTransactionsParameters, $optional, $position); -}, -oncia_ImportingWithSubqueryCall_productPrefix = $this => { - return $rt_s(4745); -}, -oncia_ImportingWithSubqueryCall_productArity = $this => { - return 3; -}, -oncia_ImportingWithSubqueryCall_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$innerQuery1; - case 1: - return $this.$inTransactionsParameters1; - case 2: - return jl_Boolean_valueOf($this.$optional4); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ImportingWithSubqueryCall_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ImportingWithSubqueryCall_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4745))), sr_Statics_anyHash($this.$innerQuery1)), sr_Statics_anyHash($this.$inTransactionsParameters1)), !$this.$optional4 ? 1237 : 1231), 3); -}, -oncia_ImportingWithSubqueryCall_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ImportingWithSubqueryCall_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ImportingWithSubqueryCall) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$optional4 != $x$1.$optional4) - break b; - c: { - var$2 = $this.$innerQuery1; - var$3 = $x$1.$innerQuery1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$inTransactionsParameters1; - $x$1 = $x$1.$inTransactionsParameters1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_ImportingWithSubqueryCall)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ImportingWithSubqueryCall_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ImportingWithSubqueryCall__init_ = ($this, $innerQuery, $inTransactionsParameters, $optional, $position) => { - $this.$innerQuery1 = $innerQuery; - $this.$inTransactionsParameters1 = $inTransactionsParameters; - $this.$optional4 = $optional; - $this.$position103 = $position; - oncia_Clause_$init$($this); -}, -oncia_ImportingWithSubqueryCall__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_ImportingWithSubqueryCall(); - oncia_ImportingWithSubqueryCall__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0306 = null; -} -let oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0306; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - return oncifp_IsolateSubqueriesInMutatingPatterns$_org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1(oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$, var$1, 1, var$2.$semanticTable$1, var$2.$anonymousVariableNameGenerator$1); -}; -function oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_1() { - jl_Object.call(this); - this.$_0362 = null; -} -let oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0362; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - return oncifp_IsolateSubqueriesInMutatingPatterns$_org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1(oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$, var$1, 1, var$2.$semanticTable$1, var$2.$anonymousVariableNameGenerator$1); -}, -oncias_SemanticState$ScopeLocation$ = $rt_classWithoutFields(), -oncias_SemanticState$ScopeLocation$_MODULE$ = null, -oncias_SemanticState$ScopeLocation$__clinit_ = () => { - oncias_SemanticState$ScopeLocation$_MODULE$ = new oncias_SemanticState$ScopeLocation$; -}, -oncias_SemanticState$ScopeLocation$_parent$extension = ($this, $$this) => { - return s_Option_map(onciuh_TreeZipper$Location_up($$this), new oncias_SemanticState$ScopeLocation$$parent$extension$lambda$_4_0); -}, -oncias_SemanticState$ScopeLocation$_newChildScope$extension = ($this, $$this) => { - let var$2, var$3, var$4, var$5, var$6; - oncias_SemanticState$_$callClinit(); - oncias_Scope$_$callClinit(); - var$2 = oncias_Scope$_empty(oncias_Scope$_MODULE$); - var$3 = new onciuh_TreeZipper$Location; - var$4 = $$this.$$outer0; - var$5 = new onciuh_TreeZipper$TreeContext; - var$6 = sci_List_reverse($$this.$elem0.$children2.$toList()); - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - onciuh_TreeZipper$TreeContext__init_(var$5, var$4, var$6, $$this, sci_Nil$_MODULE$); - onciuh_TreeZipper$Location__init_0(var$3, var$4, var$2, var$5); - return var$3; -}, -oncias_SemanticState$ScopeLocation$_localSymbol$extension = ($this, $$this, $name) => { - return oncias_Scope_symbol($$this.$elem0, $name); -}, -oncias_SemanticState$ScopeLocation$_symbol$extension = ($this, $$this, $name) => { - let var$3, var$4; - var$3 = oncias_SemanticState$ScopeLocation$_localSymbol$extension($this, $$this, $name); - var$4 = new oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0; - var$4.$_0888 = $$this; - var$4.$_1305 = $name; - return s_Option_orElse(var$3, var$4); -}, -oncias_SemanticState$ScopeLocation$_symbolNames$extension = ($this, $$this) => { - return oncias_Scope_symbolNames($$this.$elem0); -}, -oncias_SemanticState$ScopeLocation$_availableSymbolDefinitions$extension = ($this, $$this) => { - let var$2; - var$2 = oncias_Scope_symbolDefinitions($$this.$elem0); - s_Option$_$callClinit(); - return var$2.$concat1((sc_AbstractIterable_toSet(s_Option$_option2Iterable(s_Option$_MODULE$, onciuh_TreeZipper$Location_up($$this)))).$flatMap(new oncias_SemanticState$ScopeLocation$$availableSymbolDefinitions$extension$lambda$_12_0)); -}, -oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension = ($this, $$this) => { - let $allDefinitions, $parentDefinitions, $dependencies, $declarations; - $allDefinitions = sc_AbstractMap_values(oncias_Scope_allSymbolDefinitions($$this.$elem0)); - s_Predef$_$callClinit(); - $allDefinitions = sc_AbstractIterable_toSet($allDefinitions.$flatMap(s_Predef$_$conforms(s_Predef$_MODULE$))); - $parentDefinitions = oncias_SemanticState$ScopeLocation$_availableSymbolDefinitions$extension($this, ((oncias_SemanticState$ScopeLocation$_parent$extension($this, $$this)).$get1()).$location); - $$this = new oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0; - $$this.$_0437 = $parentDefinitions; - $$this = $allDefinitions.$partition($$this); - if ($$this === null) - $rt_throw(s_MatchError__init_($$this)); - $dependencies = $$this.$_10; - $declarations = $$this.$_20; - $$this = s_Tuple2__init_($dependencies, $declarations); - $dependencies = $$this.$_10; - $declarations = $$this.$_20; - $$this = new oncias_Scope$DeclarationsAndDependencies; - $$this.$declarations = $declarations; - $$this.$dependencies0 = $dependencies; - return $$this; -}, -oncia_ASTAnnotationMap$PositionedNode$ = $rt_classWithoutFields(), -oncia_ASTAnnotationMap$PositionedNode$_MODULE$ = null, -oncia_ASTAnnotationMap$PositionedNode$_$callClinit = () => { - oncia_ASTAnnotationMap$PositionedNode$_$callClinit = $rt_eraseClinit(oncia_ASTAnnotationMap$PositionedNode$); - oncia_ASTAnnotationMap$PositionedNode$__clinit_(); -}, -oncia_ASTAnnotationMap$PositionedNode$__clinit_ = () => { - let var$1; - var$1 = new oncia_ASTAnnotationMap$PositionedNode$; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - oncia_ASTAnnotationMap$PositionedNode$_MODULE$ = var$1; -}, -oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter = ($this, $i) => { - let var$2; - var$2 = new oncia_ASTAnnotationMap$PositionedNode; - var$2.$node1 = $i; - return var$2; -}; -function oncias_SemanticState$ScopeLocation() { - jl_Object.call(this); - this.$location = null; -} -let oncias_SemanticState$ScopeLocation_hashCode = $this => { - return onciuh_TreeZipper$Location_hashCode($this.$location); -}, -oncias_SemanticState$ScopeLocation_equals = ($this, $x$1) => { - let var$2, var$3; - var$2 = $this.$location; - var$3 = !($x$1 instanceof oncias_SemanticState$ScopeLocation) ? 0 : 1; - a: { - b: { - if (var$3) { - $x$1 = $x$1 === null ? null : $x$1.$location; - c: { - if (var$2 !== null) { - if (!onciuh_TreeZipper$Location_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - var$3 = 1; - break a; - } - } - var$3 = 0; - } - return var$3; -}, -oncias_SemanticState$ScopeLocation__init_0 = ($this, $location) => { - $this.$location = $location; -}, -oncias_SemanticState$ScopeLocation__init_ = var_0 => { - let var_1 = new oncias_SemanticState$ScopeLocation(); - oncias_SemanticState$ScopeLocation__init_0(var_1, var_0); - return var_1; -}, -oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return oncias_SymbolUse_asVariable(var$1); -}, -oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - return oncias_SymbolUse_asVariable(var$1); -}, -oncirc_containsNoNodesOfType$apply$lambda$_5_0 = $rt_classWithoutFields(), -oncirc_containsNoNodesOfType$apply$lambda$_5_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = jl_Class_getSimpleName(jl_Object_getClass(var$1)); - var$1 = var$1.$position(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4663)), var$2), $rt_s(4664)), var$1); - return jl_AbstractStringBuilder_toString(var$3); -}; -function sci_WrappedString() { - sci_AbstractSeq.call(this); - this.$scala$collection$immutable$WrappedString$$self = null; -} -let sci_WrappedString_iterator = $this => { - return sc_IndexedSeqOps_iterator$($this); -}, -sci_WrappedString_knownSize = $this => { - return $this.$length(); -}, -sci_WrappedString_length = $this => { - return $this.$scala$collection$immutable$WrappedString$$self.$nativeString.length; -}, -sci_WrappedString_view = $this => { - let var$1; - var$1 = new sc_StringView; - var$1.$s1 = $this.$scala$collection$immutable$WrappedString$$self; - return var$1; -}, -onciafn_Neo4jASTExceptionFactory$syntaxException$lambda$_10_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTExceptionFactory$syntaxException$lambda$_10_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(82)), var$1); - return jl_AbstractStringBuilder_toString(var$2); -}; -function jusi_FlatMappingToIntStreamImpl() { - let a = this; jusi_SimpleIntStreamImpl.call(a); - a.$sourceStream2 = null; - a.$current3 = null; - a.$currentSet = 0; - a.$iterator5 = null; - a.$mapper1 = null; - a.$done0 = 0; -} -function ju_HashMap$1() { - ju_AbstractSet.call(this); - this.$this$05 = null; -} -let ju_HashMap$1_size = $this => { - return $this.$this$05.$elementCount; -}, -ju_HashMap$1_iterator = $this => { - let var$1; - var$1 = new ju_HashMap$KeyIterator; - ju_HashMap$AbstractMapIterator__init_(var$1, $this.$this$05); - return var$1; -}; -function oncia_UseGraph() { - let a = this; jl_Object.call(a); - a.$graphReference2 = null; - a.$position30 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier23 = null; - a.$SetExtractor$module20 = null; -} -let oncia_UseGraph_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_UseGraph_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_UseGraph_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_UseGraph_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_UseGraph_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_UseGraph_foldedOver = $this => { - return $this; -}, -oncia_UseGraph_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_UseGraph_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier23; -}, -oncia_UseGraph_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module20 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module20 !== null) - break a; - $this.$SetExtractor$module20 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module20; -}, -oncia_UseGraph_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier23 = $x$1; -}, -oncia_UseGraph_position = $this => { - return $this.$position30; -}, -oncia_UseGraph_name = $this => { - return $rt_s(4746); -}, -oncia_UseGraph_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3; - var$1 = new oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_0; - var$2 = new oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_1; - var$2.$_0737 = $this; - var$3 = new oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_2; - var$3.$_051 = $this; - return oncias_SemanticAnalysisTooling_whenState$($this, var$1, var$2, var$3); -}, -oncia_UseGraph_productPrefix = $this => { - return $rt_s(4747); -}, -oncia_UseGraph_productArity = $this => { - return 1; -}, -oncia_UseGraph_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$graphReference2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_UseGraph_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UseGraph_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UseGraph_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UseGraph_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UseGraph) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$graphReference2; - $x$1 = $x$1.$graphReference2; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_UseGraph_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_UseGraph__init_0 = ($this, $graphReference, $position) => { - $this.$graphReference2 = $graphReference; - $this.$position30 = $position; - oncia_Clause_$init$($this); -}, -oncia_UseGraph__init_ = (var_0, var_1) => { - let var_2 = new oncia_UseGraph(); - oncia_UseGraph__init_0(var_2, var_0, var_1); - return var_2; -}, -oncia_DatabaseName = $rt_classWithoutFields(0), -oncia_WaitUntilComplete = $rt_classWithoutFields(0), -oncia_WaitUntilComplete_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq(Long_fromInt(300)); -}; -function oncie_Variable() { - let a = this; oncie_LogicalVariable.call(a); - a.$name4 = null; - a.$position4 = null; -} -let oncie_Variable_name = $this => { - return $this.$name4; -}, -oncie_Variable_position = $this => { - return $this.$position4; -}, -oncie_Variable_copyId = $this => { - return oncie_Variable_copy($this, $this.$name4, $this.$position4); -}, -oncie_Variable_withPosition = ($this, $position) => { - return oncie_Variable_copy($this, $this.$name4, $position); -}, -oncie_Variable_asCanonicalStringVal = $this => { - return $this.$name4; -}, -oncie_Variable_copy = ($this, $name, $position) => { - return oncie_Variable__init_($name, $position); -}, -oncie_Variable_productPrefix = $this => { - return $rt_s(4748); -}, -oncie_Variable_productArity = $this => { - return 1; -}, -oncie_Variable_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Variable_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Variable_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Variable_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Variable_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Variable) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name4; - $x$1 = $x$1.$name4; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Variable)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_Variable__init_0 = ($this, $name, $position) => { - $this.$name4 = $name; - $this.$position4 = $position; - oncie_Expression__init_($this); -}, -oncie_Variable__init_ = (var_0, var_1) => { - let var_2 = new oncie_Variable(); - oncie_Variable__init_0(var_2, var_0, var_1); - return var_2; -}; -function onciafn_Privilege() { - let a = this; jl_Object.call(a); - a.$privilegeType = null; - a.$resource1 = null; - a.$qualifier2 = null; - a.$immutable = 0; -} -let onciafn_Privilege__init_ = ($this, $privilegeType, $resource, $qualifier, $immutable) => { - $this.$privilegeType = $privilegeType; - $this.$resource1 = $resource; - $this.$qualifier2 = $qualifier; - $this.$immutable = $immutable; -}, -onciafn_Privilege__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new onciafn_Privilege(); - onciafn_Privilege__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oncia_DatabaseScope = $rt_classWithoutFields(0), -oncie_MatchMode$MatchMode = $rt_classWithoutFields(0); -function oncia_SubqueryCall$InTransactionsParameters() { - let a = this; jl_Object.call(a); - a.$batchParams = null; - a.$concurrencyParams = null; - a.$errorParams = null; - a.$reportParams0 = null; - a.$position222 = null; -} -let oncia_SubqueryCall$InTransactionsParameters_position = $this => { - return $this.$position222; -}, -oncia_SubqueryCall$InTransactionsParameters_semanticCheck = $this => { - let $checkBatchParams, $checkConcurrencyParams, $checkReportParams, var$4, $checkErrorReportCombination, $reportParams; - a: { - oncias_OptionSemanticChecking$_$callClinit(); - $checkBatchParams = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - $checkBatchParams = oncias_OptionSemanticChecking$_foldSemanticCheck$extension($checkBatchParams, $this.$batchParams, new oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_0); - $checkConcurrencyParams = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, $this.$concurrencyParams, new oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_1); - $checkReportParams = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, $this.$reportParams0, new oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_2); - var$4 = s_Tuple2__init_($this.$errorParams, $this.$reportParams0); - $checkErrorReportCombination = var$4.$_10; - $reportParams = var$4.$_20; - if (jl_Object_equals(s_None$_MODULE$, $checkErrorReportCombination) && $reportParams instanceof s_Some) { - $reportParams = $reportParams.$value5; - oncias_SemanticPatternCheck$_$callClinit(); - $checkErrorReportCombination = oncias_SemanticAnalysisTooling_error$(oncias_SemanticPatternCheck$_MODULE$, $rt_s(4749), $reportParams.$position113); - } else { - $reportParams = var$4.$_10; - $checkErrorReportCombination = var$4.$_20; - if ($reportParams instanceof s_Some) { - $reportParams = $reportParams.$value5; - if ($reportParams !== null) { - var$4 = $reportParams.$behaviour; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit(); - if (jl_Object_equals(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$, var$4) && $checkErrorReportCombination instanceof s_Some) { - $reportParams = $checkErrorReportCombination.$value5; - oncias_SemanticPatternCheck$_$callClinit(); - $checkErrorReportCombination = oncias_SemanticAnalysisTooling_error$(oncias_SemanticPatternCheck$_MODULE$, $rt_s(4749), $reportParams.$position113); - break a; - } - } - } - oncias_SemanticCheck$_$callClinit(); - $checkErrorReportCombination = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - } - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$($checkBatchParams.$chain($checkConcurrencyParams), $checkReportParams), $checkErrorReportCombination); -}, -oncia_SubqueryCall$InTransactionsParameters_productPrefix = $this => { - return $rt_s(4750); -}, -oncia_SubqueryCall$InTransactionsParameters_productArity = $this => { - return 4; -}, -oncia_SubqueryCall$InTransactionsParameters_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$batchParams; - case 1: - return $this.$concurrencyParams; - case 2: - return $this.$errorParams; - case 3: - return $this.$reportParams0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SubqueryCall$InTransactionsParameters_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsParameters_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsParameters_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsParameters_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsParameters) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$batchParams; - var$3 = $x$1.$batchParams; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$concurrencyParams; - var$3 = $x$1.$concurrencyParams; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$errorParams; - var$3 = $x$1.$errorParams; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$reportParams0; - $x$1 = $x$1.$reportParams0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_SubqueryCall$InTransactionsParameters_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SubqueryCall$InTransactionsParameters__init_ = ($this, $batchParams, $concurrencyParams, $errorParams, $reportParams, $position) => { - $this.$batchParams = $batchParams; - $this.$concurrencyParams = $concurrencyParams; - $this.$errorParams = $errorParams; - $this.$reportParams0 = $reportParams; - $this.$position222 = $position; -}, -oncia_SubqueryCall$InTransactionsParameters__init_0 = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_SubqueryCall$InTransactionsParameters(); - oncia_SubqueryCall$InTransactionsParameters__init_(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}, -oncia_PrivilegeQualifier = $rt_classWithoutFields(0), -oncia_GraphPrivilegeQualifier = $rt_classWithoutFields(0); -function oncia_AllQualifier() { - jl_Object.call(this); - this.$position313 = null; -} -let oncia_AllQualifier_productPrefix = $this => { - return $rt_s(4751); -}, -oncia_AllQualifier_productArity = $this => { - return 0; -}, -oncia_AllQualifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllQualifier_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_AllQualifier)) - return 0; - return 1; -}, -oncia_AllQualifier_dup = ($this, $children) => { - return $this; -}, -oncia_AllQualifier__init_ = ($this, $position) => { - $this.$position313 = $position; -}, -oncia_AllQualifier__init_0 = var_0 => { - let var_1 = new oncia_AllQualifier(); - oncia_AllQualifier__init_(var_1, var_0); - return var_1; -}, -oncia_AdministrationAction = $rt_classWithoutFields(0), -oncie_PatternPart$Selector = $rt_classWithoutFields(0); -function oncia_SubqueryCall$InTransactionsBatchParameters() { - let a = this; jl_Object.call(a); - a.$batchSize = null; - a.$position198 = null; -} -let oncia_SubqueryCall$InTransactionsBatchParameters_position = $this => { - return $this.$position198; -}, -oncia_SubqueryCall$InTransactionsBatchParameters_semanticCheck = $this => { - oncia_ASTSlicingPhrase$_$callClinit(); - return oncia_ASTSlicingPhrase$_checkExpressionIsStaticInt(oncia_ASTSlicingPhrase$_MODULE$, $this.$batchSize, $rt_s(4752), 0); -}, -oncia_SubqueryCall$InTransactionsBatchParameters_productPrefix = $this => { - return $rt_s(4753); -}, -oncia_SubqueryCall$InTransactionsBatchParameters_productArity = $this => { - return 1; -}, -oncia_SubqueryCall$InTransactionsBatchParameters_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$batchSize; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SubqueryCall$InTransactionsBatchParameters_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsBatchParameters_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsBatchParameters_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsBatchParameters_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsBatchParameters) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$batchSize; - $x$1 = $x$1.$batchSize; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_SubqueryCall$InTransactionsBatchParameters_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SubqueryCall$InTransactionsBatchParameters__init_ = ($this, $batchSize, $position) => { - $this.$batchSize = $batchSize; - $this.$position198 = $position; -}, -oncia_SubqueryCall$InTransactionsBatchParameters__init_0 = (var_0, var_1) => { - let var_2 = new oncia_SubqueryCall$InTransactionsBatchParameters(); - oncia_SubqueryCall$InTransactionsBatchParameters__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_SubqueryCall$InTransactionsConcurrencyParameters() { - let a = this; jl_Object.call(a); - a.$concurrency = null; - a.$position275 = null; -} -let oncia_SubqueryCall$InTransactionsConcurrencyParameters_position = $this => { - return $this.$position275; -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_semanticCheck = $this => { - if (s_Option_isEmpty($this.$concurrency)) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - oncia_ASTSlicingPhrase$_$callClinit(); - return oncia_ASTSlicingPhrase$_checkExpressionIsStaticInt(oncia_ASTSlicingPhrase$_MODULE$, $this.$concurrency.$get1(), $rt_s(4754), 0); -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_productPrefix = $this => { - return $rt_s(4755); -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_productArity = $this => { - return 1; -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$concurrency; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsConcurrencyParameters) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$concurrency; - $x$1 = $x$1.$concurrency; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_0 = ($this, $concurrency, $position) => { - $this.$concurrency = $concurrency; - $this.$position275 = $position; -}, -oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_ = (var_0, var_1) => { - let var_2 = new oncia_SubqueryCall$InTransactionsConcurrencyParameters(); - oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_SubqueryCall$InTransactionsErrorParameters() { - let a = this; jl_Object.call(a); - a.$behaviour = null; - a.$position239 = null; -} -let oncia_SubqueryCall$InTransactionsErrorParameters_position = $this => { - return $this.$position239; -}, -oncia_SubqueryCall$InTransactionsErrorParameters_productPrefix = $this => { - return $rt_s(4756); -}, -oncia_SubqueryCall$InTransactionsErrorParameters_productArity = $this => { - return 1; -}, -oncia_SubqueryCall$InTransactionsErrorParameters_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$behaviour; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SubqueryCall$InTransactionsErrorParameters_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsErrorParameters_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsErrorParameters_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsErrorParameters_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsErrorParameters) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$behaviour; - $x$1 = $x$1.$behaviour; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_SubqueryCall$InTransactionsErrorParameters_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SubqueryCall$InTransactionsErrorParameters__init_ = ($this, $behaviour, $position) => { - $this.$behaviour = $behaviour; - $this.$position239 = $position; -}, -oncia_SubqueryCall$InTransactionsErrorParameters__init_0 = (var_0, var_1) => { - let var_2 = new oncia_SubqueryCall$InTransactionsErrorParameters(); - oncia_SubqueryCall$InTransactionsErrorParameters__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_SubqueryCall$InTransactionsReportParameters() { - let a = this; jl_Object.call(a); - a.$reportAs = null; - a.$position113 = null; -} -let oncia_SubqueryCall$InTransactionsReportParameters_position = $this => { - return $this.$position113; -}, -oncia_SubqueryCall$InTransactionsReportParameters_semanticCheck = $this => { - let var$1, var$2; - oncias_package$_$callClinit(); - var$1 = oncias_package$_MODULE$; - var$2 = $this.$reportAs; - oncius_package$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(var$1, oncias_SemanticAnalysisTooling_declareVariable$($this, var$2, (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant())), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$($this, new oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_51_0, $this.$reportAs))); -}, -oncia_SubqueryCall$InTransactionsReportParameters_productPrefix = $this => { - return $rt_s(4757); -}, -oncia_SubqueryCall$InTransactionsReportParameters_productArity = $this => { - return 1; -}, -oncia_SubqueryCall$InTransactionsReportParameters_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$reportAs; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SubqueryCall$InTransactionsReportParameters_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsReportParameters_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsReportParameters_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsReportParameters_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsReportParameters) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$reportAs; - $x$1 = $x$1.$reportAs; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_SubqueryCall$InTransactionsReportParameters_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SubqueryCall$InTransactionsReportParameters__init_ = ($this, $reportAs, $position) => { - $this.$reportAs = $reportAs; - $this.$position113 = $position; -}, -oncia_SubqueryCall$InTransactionsReportParameters__init_0 = (var_0, var_1) => { - let var_2 = new oncia_SubqueryCall$InTransactionsReportParameters(); - oncia_SubqueryCall$InTransactionsReportParameters__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_DatabasePrivilegeQualifier = $rt_classWithoutFields(0); -function oncia_AllDatabasesQualifier() { - jl_Object.call(this); - this.$position330 = null; -} -let oncia_AllDatabasesQualifier_productPrefix = $this => { - return $rt_s(4758); -}, -oncia_AllDatabasesQualifier_productArity = $this => { - return 0; -}, -oncia_AllDatabasesQualifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllDatabasesQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDatabasesQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDatabasesQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDatabasesQualifier_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_AllDatabasesQualifier)) - return 0; - return 1; -}, -oncia_AllDatabasesQualifier_dup = ($this, $children) => { - return $this; -}, -oncia_AllDatabasesQualifier__init_ = ($this, $position) => { - $this.$position330 = $position; -}, -oncia_AllDatabasesQualifier__init_0 = var_0 => { - let var_1 = new oncia_AllDatabasesQualifier(); - oncia_AllDatabasesQualifier__init_(var_1, var_0); - return var_1; -}; -function onciafn_Neo4jASTFactory$userQualifier$lambda$_218_0() { - let a = this; jl_Object.call(a); - a.$_0363 = null; - a.$_1132 = null; -} -let onciafn_Neo4jASTFactory$userQualifier$lambda$_218_0_accept = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0363; - var$3 = var$0.$_1132; - onciafn_TupleConverter$_$callClinit(); - var$1 = onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1)); - if (var$1 instanceof su_Left) - var$4 = var$1.$value6.$pos3; - else { - if (!(var$1 instanceof su_Right)) - $rt_throw(s_MatchError__init_(var$1)); - var$4 = var$1.$value7.$position(); - } - ju_ArrayList_add(var$3, oncia_UserQualifier__init_0(onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, var$1), var$4)); -}; -function oncia_UserAllQualifier() { - jl_Object.call(this); - this.$position322 = null; -} -let oncia_UserAllQualifier_productPrefix = $this => { - return $rt_s(4759); -}, -oncia_UserAllQualifier_productArity = $this => { - return 0; -}, -oncia_UserAllQualifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_UserAllQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserAllQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserAllQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserAllQualifier_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_UserAllQualifier)) - return 0; - return 1; -}, -oncia_UserAllQualifier_dup = ($this, $children) => { - return $this; -}, -oncia_UserAllQualifier__init_ = ($this, $position) => { - $this.$position322 = $position; -}, -oncia_UserAllQualifier__init_0 = var_0 => { - let var_1 = new oncia_UserAllQualifier(); - oncia_UserAllQualifier__init_(var_1, var_0); - return var_1; -}, -oncia_GraphScope = $rt_classWithoutFields(0), -oncia_ActionResourceBase = $rt_classWithoutFields(0), -ju_EmptyStackException = $rt_classWithoutFields(jl_RuntimeException), -oncil_LabelExpression = $rt_classWithoutFields(0), -oncil_LabelExpression_containsGpmSpecificLabelExpression$ = $$this => { - let var$2; - if (!($$this instanceof oncil_LabelExpression$ColonConjunction)) - var$2 = $$this instanceof oncil_LabelExpression$Leaf ? 0 : !($$this instanceof oncil_LabelExpression$DynamicLeaf) ? 1 : 0; - else { - $$this = $$this; - var$2 = !$$this.$lhs2.$containsGpmSpecificLabelExpression() && !$$this.$rhs2.$containsGpmSpecificLabelExpression() ? 0 : 1; - } - return var$2; -}, -oncil_LabelExpression_containsGpmSpecificRelTypeExpression$ = $$this => { - let var$2, var$3; - if ($$this instanceof oncil_LabelExpression$Disjunctions) - var$2 = $$this.$children3.$exists(new oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0); - else if (!($$this instanceof oncil_LabelExpression$ColonDisjunction)) - var$2 = $$this instanceof oncil_LabelExpression$Leaf ? 0 : !($$this instanceof oncil_LabelExpression$DynamicLeaf) ? 1 : 0; - else { - $$this = $$this; - var$3 = $$this.$lhs3; - $$this = $$this.$rhs3; - var$2 = !var$3.$containsGpmSpecificRelTypeExpression() && !$$this.$containsGpmSpecificRelTypeExpression() ? 0 : 1; - } - return var$2; -}, -oncil_LabelExpression_containsMatchSpecificLabelExpression$ = $$this => { - let var$2; - if ($$this instanceof oncil_LabelExpression$ColonConjunction) { - $$this = $$this; - var$2 = !$$this.$lhs2.$containsMatchSpecificLabelExpression() && !$$this.$rhs2.$containsMatchSpecificLabelExpression() ? 0 : 1; - } else - var$2 = $$this instanceof oncil_LabelExpression$Conjunctions ? $$this.$children4.$exists(new oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0) : $$this instanceof oncil_LabelExpression$Leaf ? 0 : !($$this instanceof oncil_LabelExpression$DynamicLeaf) ? 1 : 0; - return var$2; -}, -oncil_LabelExpression_containsDynamicLabelOrTypeExpression$ = $$this => { - let var$2; - if ($$this instanceof oncil_LabelExpression$ColonConjunction) { - $$this = $$this; - var$2 = !$$this.$lhs2.$containsDynamicLabelOrTypeExpression() && !$$this.$rhs2.$containsDynamicLabelOrTypeExpression() ? 0 : 1; - } else - var$2 = $$this instanceof oncil_LabelExpression$Conjunctions ? $$this.$children4.$exists(new oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0) : $$this instanceof oncil_LabelExpression$Leaf ? 0 : !($$this instanceof oncil_LabelExpression$DynamicLeaf) ? 0 : 1; - return var$2; -}, -oncil_LabelExpression_replaceColonSyntax$ = $$this => { - let var$2; - onciu_bottomUp$_$callClinit(); - var$2 = onciu_bottomUp$_MODULE$; - return (onciu_bottomUp$_apply(var$2, new oncil_LabelExpression$replaceColonSyntax$lambda$_13_0, onciu_bottomUp$_apply$default$2(var$2), onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2($$this); -}; -function oncie_RelationshipPattern() { - let a = this; jl_Object.call(a); - a.$variable5 = null; - a.$labelExpression6 = null; - a.$length3 = null; - a.$properties4 = null; - a.$predicate1 = null; - a.$direction0 = null; - a.$position8 = null; -} -let oncie_RelationshipPattern_variable = $this => { - return $this.$variable5; -}, -oncie_RelationshipPattern_labelExpression = $this => { - return $this.$labelExpression6; -}, -oncie_RelationshipPattern_length = $this => { - return $this.$length3; -}, -oncie_RelationshipPattern_properties = $this => { - return $this.$properties4; -}, -oncie_RelationshipPattern_predicate = $this => { - return $this.$predicate1; -}, -oncie_RelationshipPattern_direction = $this => { - return $this.$direction0; -}, -oncie_RelationshipPattern_position = $this => { - return $this.$position8; -}, -oncie_RelationshipPattern_copy = ($this, $variable, $labelExpression, $length, $properties, $predicate, $direction, $position) => { - return oncie_RelationshipPattern__init_0($variable, $labelExpression, $length, $properties, $predicate, $direction, $position); -}, -oncie_RelationshipPattern_productPrefix = $this => { - return $rt_s(4760); -}, -oncie_RelationshipPattern_productArity = $this => { - return 6; -}, -oncie_RelationshipPattern_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable5; - case 1: - return $this.$labelExpression6; - case 2: - return $this.$length3; - case 3: - return $this.$properties4; - case 4: - return $this.$predicate1; - case 5: - return $this.$direction0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_RelationshipPattern_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipPattern_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipPattern_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipPattern_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_RelationshipPattern) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable5; - var$3 = $x$1.$variable5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$labelExpression6; - var$3 = $x$1.$labelExpression6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$length3; - var$3 = $x$1.$length3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$properties4; - var$3 = $x$1.$properties4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$predicate1; - var$3 = $x$1.$predicate1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$3 = $this.$direction0; - $x$1 = $x$1.$direction0; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break h; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_RelationshipPattern)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_RelationshipPattern_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_RelationshipPattern__init_ = ($this, $variable, $labelExpression, $length, $properties, $predicate, $direction, $position) => { - $this.$variable5 = $variable; - $this.$labelExpression6 = $labelExpression; - $this.$length3 = $length; - $this.$properties4 = $properties; - $this.$predicate1 = $predicate; - $this.$direction0 = $direction; - $this.$position8 = $position; -}, -oncie_RelationshipPattern__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncie_RelationshipPattern(); - oncie_RelationshipPattern__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}, -oncie_GraphPatternQuantifier = $rt_classWithoutFields(0), -oncipj_EntityType = $rt_classWithoutFields(jl_Enum), -oncipj_EntityType_NODE = null, -oncipj_EntityType_RELATIONSHIP = null, -oncipj_EntityType_NODE_OR_RELATIONSHIP = null, -oncipj_EntityType_$VALUES = null, -oncipj_EntityType_values = () => { - return oncipj_EntityType_$VALUES.$clone0(); -}, -oncipj_EntityType__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oncipj_EntityType; - jl_Enum__init_(var$1, $rt_s(727), 0); - oncipj_EntityType_NODE = var$1; - var$1 = new oncipj_EntityType; - jl_Enum__init_(var$1, $rt_s(730), 1); - oncipj_EntityType_RELATIONSHIP = var$1; - var$1 = new oncipj_EntityType; - jl_Enum__init_(var$1, $rt_s(4761), 2); - oncipj_EntityType_NODE_OR_RELATIONSHIP = var$1; - var$2 = $rt_createArray(oncipj_EntityType, 3); - var$3 = var$2.data; - var$3[0] = oncipj_EntityType_NODE; - var$3[1] = oncipj_EntityType_RELATIONSHIP; - var$3[2] = var$1; - oncipj_EntityType_$VALUES = var$2; -}; -function scc_AsScalaExtensions$IteratorHasAsScala() { - let a = this; jl_Object.call(a); - a.$i8 = null; - a.$$outer62 = null; -} -let scc_AsScalaExtensions$IteratorHasAsScala_asScala = $this => { - let var$1, var$2; - var$1 = $this.$i8; - if (var$1 === null) - var$2 = null; - else if (var$1 instanceof scc_JavaCollectionWrappers$IteratorWrapper) - var$2 = var$1.$underlying15; - else { - var$2 = new scc_JavaCollectionWrappers$JIteratorWrapper; - var$2.$underlying25 = var$1; - } - return var$2; -}, -scc_AsScalaExtensions$IteratorHasAsScala__init_0 = ($this, $$outer, $i) => { - $this.$i8 = $i; - if ($$outer === null) - $rt_throw(null); - $this.$$outer62 = $$outer; -}, -scc_AsScalaExtensions$IteratorHasAsScala__init_ = (var_0, var_1) => { - let var_2 = new scc_AsScalaExtensions$IteratorHasAsScala(); - scc_AsScalaExtensions$IteratorHasAsScala__init_0(var_2, var_0, var_1); - return var_2; -}, -oncipj_AliasName$tokensAsStrings$lambda$_7_0 = $rt_classWithoutFields(), -oncipj_AliasName$tokensAsStrings$lambda$_7_0_apply = (var$0, var$1) => { - return var$1.$image; -}; -function oncipj_AliasName$originalRepresentation$lambda$_8_0() { - jl_Object.call(this); - this.$_0554 = null; -} -let oncipj_AliasName$originalRepresentation$lambda$_8_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - if (!oncipj_AliasName_isEscaped(var$0.$_0554, var$1)) - var$1 = var$1.$image; - else { - var$1 = var$1.$image; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 96); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 96); - var$1 = jl_AbstractStringBuilder_toString(var$2); - } - return var$1; -}; -function oncia_ReturnItems$ReturnVariables() { - let a = this; jl_Object.call(a); - a.$includeExisting1 = 0; - a.$explicitVariables = null; -} -let oncia_ReturnItems$ReturnVariables__init_0 = ($this, $includeExisting, $explicitVariables) => { - $this.$includeExisting1 = $includeExisting; - $this.$explicitVariables = $explicitVariables; -}, -oncia_ReturnItems$ReturnVariables__init_ = (var_0, var_1) => { - let var_2 = new oncia_ReturnItems$ReturnVariables(); - oncia_ReturnItems$ReturnVariables__init_0(var_2, var_0, var_1); - return var_2; -}, -oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_0 = $rt_classWithoutFields(), -oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_expandShowWhere$_$callClinit(); - return var$1.$name(); -}; -function oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_1() { - jl_Object.call(this); - this.$_0237 = null; -} -let oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_1_apply = var$0 => { - let var$1; - var$1 = var$0.$_0237; - oncirr_expandShowWhere$_$callClinit(); - return var$1; -}; -function oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_2() { - jl_Object.call(this); - this.$_0768 = null; -} -let oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0768; - oncirr_expandShowWhere$_$callClinit(); - var$3 = var$1.$returnItems2; - if (var$3.$includeExisting0) { - var$4 = var$3.$defaultOrderOnColumns; - var$3 = new oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0; - var$3.$_0593 = var$2; - var$2 = s_Option_getOrElse(var$4, var$3); - var$1 = oncia_Return_withReturnItems(var$1, oncia_ReturnItems_withDefaultOrderOnColumns(var$1.$returnItems2, var$2)); - } - return var$1; -}, -oncia_CommandClause = $rt_classWithoutFields(0), -oncia_CommandClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$ = $$this => { - return sc_AbstractIterable_toMap(sci_List_map($$this.$originalColumns(), new oncia_CommandClause$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$lambda$_7_0), s_$less$colon$less$_singleton); -}, -oncia_CommandClause_clauseSpecificSemanticCheck$ = $$this => { - let var$2, var$3, var$4; - if (!sc_IterableOnceOps_nonEmpty$($$this.$yieldItems())) { - var$2 = ($$this.$unfilteredColumns()).$columns; - var$3 = new oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0; - var$3.$_0814 = $$this; - $$this = $$this.$semanticCheckFold(var$2, var$3); - } else { - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$2 = $$this.$yieldItems(); - var$4 = new oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_1; - var$4.$_0294 = $$this; - $$this = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$2, var$4); - } - return $$this; -}, -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNeitherOrsNorInnerScopes$lambda$_8_0 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNeitherOrsNorInnerScopes$lambda$_8_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_mergeInPredicates$_$callClinit(); - return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1) ? 0 : 1); -}, -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containIns$lambda$_12_0 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containIns$lambda$_12_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_mergeInPredicates$_$callClinit(); - return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1)); -}, -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoNots$lambda$_11_0 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoNots$lambda$_11_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_mergeInPredicates$_$callClinit(); - return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1) ? 0 : 1); -}, -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNots$lambda$_10_0 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNots$lambda$_10_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_mergeInPredicates$_$callClinit(); - return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1)); -}, -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoAnds$lambda$_9_0 = $rt_classWithoutFields(), -oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoAnds$lambda$_9_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_mergeInPredicates$_$callClinit(); - return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1) ? 0 : 1); -}; -function oncie_FunctionName() { - let a = this; jl_Object.call(a); - a.$namespace3 = null; - a.$name7 = null; - a.$position157 = null; -} -let oncie_FunctionName_namespace = $this => { - return $this.$namespace3; -}, -oncie_FunctionName_name = $this => { - return $this.$name7; -}, -oncie_FunctionName_position = $this => { - return $this.$position157; -}, -oncie_FunctionName_equals = ($this, $x) => { - let $otherNamespace, $otherName, var$4; - if (!($x instanceof oncie_FunctionName)) - return 0; - a: { - b: { - c: { - $x = $x; - $otherNamespace = $x.$namespace3; - $otherName = $x.$name7; - $x = $this.$namespace3; - if ($otherNamespace !== null) { - if (!oncie_Namespace_equals($otherNamespace, $x)) - break b; - else - break c; - } - if ($x !== null) - break b; - } - d: { - ju_Locale_$callClinit(); - $x = jl_String_toLowerCase0($otherName, ju_Locale_ROOT); - $otherName = jl_String_toLowerCase0($this.$name7, ju_Locale_ROOT); - if ($x !== null) { - if (!jl_String_equals($x, $otherName)) - break b; - else - break d; - } - if ($otherName !== null) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_FunctionName_hashCode = $this => { - let var$1; - var$1 = $this.$name7; - ju_Locale_$callClinit(); - return jl_String_hashCode(jl_String_toLowerCase0(var$1, ju_Locale_ROOT)); -}, -oncie_FunctionName_productPrefix = $this => { - return $rt_s(4762); -}, -oncie_FunctionName_productArity = $this => { - return 2; -}, -oncie_FunctionName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$namespace3; - case 1: - return $this.$name7; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_FunctionName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_FunctionName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_FunctionName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_FunctionName__init_ = ($this, $namespace, $name, $position) => { - $this.$namespace3 = $namespace; - $this.$name7 = $name; - $this.$position157 = $position; -}, -oncie_FunctionName__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_FunctionName(); - oncie_FunctionName__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_Namespace() { - let a = this; jl_Object.call(a); - a.$parts0 = null; - a.$position97 = null; -} -let oncie_Namespace_parts = $this => { - return $this.$parts0; -}, -oncie_Namespace_position = $this => { - return $this.$position97; -}, -oncie_Namespace_productPrefix = $this => { - return $rt_s(4763); -}, -oncie_Namespace_productArity = $this => { - return 1; -}, -oncie_Namespace_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$parts0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Namespace_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Namespace_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Namespace_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Namespace_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Namespace) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$parts0; - $x$1 = $x$1.$parts0; - if (var$2 !== null) { - if (!sci_List_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Namespace)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_Namespace_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_Namespace__init_ = ($this, $parts, $position) => { - $this.$parts0 = $parts; - $this.$position97 = $position; -}, -oncie_Namespace__init_0 = (var_0, var_1) => { - let var_2 = new oncie_Namespace(); - oncie_Namespace__init_(var_2, var_0, var_1); - return var_2; -}, -oncie_Namespace$ = $rt_classWithoutFields(), -oncie_Namespace$_MODULE$ = null, -oncie_Namespace$_$callClinit = () => { - oncie_Namespace$_$callClinit = $rt_eraseClinit(oncie_Namespace$); - oncie_Namespace$__clinit_(); -}, -oncie_Namespace$__clinit_ = () => { - let var$1; - var$1 = new oncie_Namespace$; - oncie_Namespace$_$callClinit(); - oncie_Namespace$_MODULE$ = var$1; -}, -oncie_Namespace$_apply$default$1 = $this => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; -}, -oncie_TypeSignature = $rt_classWithoutFields(0); -function oncie_ExpressionTypeSignature() { - let a = this; jl_Object.call(a); - a.$argumentTypes1 = null; - a.$outputType2 = null; - a.$overriddenArgumentTypeName0 = null; -} -let oncie_ExpressionTypeSignature_argumentTypes = $this => { - return $this.$argumentTypes1; -}, -oncie_ExpressionTypeSignature_outputType = $this => { - return $this.$outputType2; -}, -oncie_ExpressionTypeSignature_removeFirstArgumentType = $this => { - return oncie_ExpressionTypeSignature__init_0($this.$argumentTypes1.$tail(), $this.$outputType2, $this.$overriddenArgumentTypeName0); -}, -oncie_ExpressionTypeSignature_productPrefix = $this => { - return $rt_s(4764); -}, -oncie_ExpressionTypeSignature_productArity = $this => { - return 3; -}, -oncie_ExpressionTypeSignature_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$argumentTypes1; - case 1: - return $this.$outputType2; - case 2: - return $this.$overriddenArgumentTypeName0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_ExpressionTypeSignature_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ExpressionTypeSignature_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ExpressionTypeSignature_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ExpressionTypeSignature_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ExpressionTypeSignature) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$argumentTypes1; - var$3 = $x$1.$argumentTypes1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$outputType2; - var$3 = $x$1.$outputType2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$overriddenArgumentTypeName0; - $x$1 = $x$1.$overriddenArgumentTypeName0; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_ExpressionTypeSignature)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_ExpressionTypeSignature__init_ = ($this, $argumentTypes, $outputType, $overriddenArgumentTypeName) => { - $this.$argumentTypes1 = $argumentTypes; - $this.$outputType2 = $outputType; - $this.$overriddenArgumentTypeName0 = $overriddenArgumentTypeName; -}, -oncie_ExpressionTypeSignature__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_ExpressionTypeSignature(); - oncie_ExpressionTypeSignature__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncie_TypeSignature$ = $rt_classWithoutFields(), -oncie_TypeSignature$_MODULE$ = null, -oncie_TypeSignature$_$callClinit = () => { - oncie_TypeSignature$_$callClinit = $rt_eraseClinit(oncie_TypeSignature$); - oncie_TypeSignature$__clinit_(); -}, -oncie_TypeSignature$__clinit_ = () => { - let var$1; - var$1 = new oncie_TypeSignature$; - oncie_TypeSignature$_$callClinit(); - oncie_TypeSignature$_MODULE$ = var$1; -}, -oncie_TypeSignature$_apply = ($this, $argumentTypes, $outputType) => { - let var$3; - var$3 = new oncie_ExpressionTypeSignature; - oncie_ExpressionTypeSignature$_$callClinit(); - oncie_ExpressionTypeSignature__init_(var$3, $argumentTypes, $outputType, s_None$_MODULE$); - return var$3; -}; -function sc_Iterable$$anon$1() { - sc_AbstractIterable.call(this); - this.$a$1 = null; -} -let sc_Iterable$$anon$1_iterator = $this => { - return sc_Iterator$$anon$20__init_($this.$a$1); -}, -sc_Iterable$$anon$1_knownSize = $this => { - return 1; -}, -sc_Iterable$$anon$1_head = $this => { - return $this.$a$1; -}; -function onciu_Ref() { - jl_Object.call(this); - this.$value20 = null; -} -let onciu_Ref_id = $this => { - return jl_Object_identity($this.$value20); -}, -onciu_Ref_toIdString = $this => { - return jl_Integer_toHexString(onciu_Ref_id($this)); -}, -onciu_Ref_toString = $this => { - let var$1, var$2, var$3; - var$1 = onciu_Ref_toIdString($this); - var$2 = $this.$value20; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$1 = jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4765)), var$1); - jl_AbstractStringBuilder_append0(var$1, 40); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$2), 41); - return jl_AbstractStringBuilder_toString(var$3); -}, -onciu_Ref_hashCode = $this => { - return onciu_Ref_id($this); -}, -onciu_Ref_equals = ($this, $that) => { - if (!($that instanceof onciu_Ref)) - return 0; - $that = $that; - return $this.$value20 !== $that.$value20 ? 0 : 1; -}; -function oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1$lambda$_32_0() { - let a = this; jl_Object.call(a); - a.$_055 = null; - a.$_124 = null; - a.$_212 = null; - a.$_36 = null; - a.$_43 = 0; -} -let oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1$lambda$_32_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncifp_IsolateSubqueriesInMutatingPatterns$_$anonfun$getRewriter$1(var$0.$_055, var$0.$_124, var$0.$_212, var$0.$_36, var$0.$_43, var$1); -}; -function oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0() { - jl_Object.call(this); - this.$_0437 = null; -} -let oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(var$0.$_0437.$contains(var$1)); -}; -function oncias_Scope$DeclarationsAndDependencies() { - let a = this; jl_Object.call(a); - a.$declarations = null; - a.$dependencies0 = null; -} -let oncias_Scope$DeclarationsAndDependencies_productPrefix = $this => { - return $rt_s(4766); -}, -oncias_Scope$DeclarationsAndDependencies_productArity = $this => { - return 2; -}, -oncias_Scope$DeclarationsAndDependencies_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$declarations; - case 1: - return $this.$dependencies0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncias_Scope$DeclarationsAndDependencies_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_Scope$DeclarationsAndDependencies_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -onciuh_TreeZipper$Context = $rt_classWithoutFields(0), -onciuh_TreeZipper$Top$ = $rt_classWithoutFields(), -onciuh_TreeZipper$Top$_productArity = $this => { - return 0; -}, -onciuh_TreeZipper$Top$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -onciuh_TreeZipper$Top$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -onciuh_TreeZipper$Top$_hashCode = $this => { - return 84277; -}, -onciuh_TreeZipper$Top$_toString = $this => { - return $rt_s(4767); -}, -onciuh_TreeZipper$Top$__init_ = ($this, $$outer) => { - return; -}, -onciuh_TreeZipper$Top$__init_0 = var_0 => { - let var_1 = new onciuh_TreeZipper$Top$(); - onciuh_TreeZipper$Top$__init_(var_1, var_0); - return var_1; -}, -scm_SortedSetOps = $rt_classWithoutFields(0), -scm_SortedSet = $rt_classWithoutFields(0), -sc_StrictOptimizedSortedSetOps = $rt_classWithoutFields(0); -function scm_TreeSet() { - let a = this; scm_AbstractSet.call(a); - a.$scala$collection$mutable$TreeSet$$tree = null; - a.$ordering = null; -} -let scm_TreeSet_concat = ($this, $that) => { - let var$2; - var$2 = scm_TreeSet_newSpecificBuilder($this); - if (var$2 === null) - $rt_throw(null); - scm_Growable_addAll$(var$2, $this); - scm_Growable_addAll$(var$2, $that); - return scm_TreeSet$$anon$1_result(var$2); -}, -scm_TreeSet_map = ($this, $f) => { - return sc_StrictOptimizedIterableOps_map$($this, $f); -}, -scm_TreeSet_flatMap = ($this, $f) => { - return sc_StrictOptimizedIterableOps_flatMap$($this, $f); -}, -scm_TreeSet_filterNot = ($this, $pred) => { - return sc_StrictOptimizedIterableOps_filterNot$($this, $pred); -}, -scm_TreeSet_filterImpl = ($this, $pred, $isFlipped) => { - return sc_StrictOptimizedIterableOps_filterImpl$($this, $pred, $isFlipped); -}, -scm_TreeSet_stringPrefix = $this => { - return $rt_s(4768); -}, -scm_TreeSet_equals = ($this, $that) => { - let var$2, var$3, var$4, var$5; - a: { - if ($this === $that) - var$2 = 1; - else { - b: { - c: { - if ($rt_isInstance($that, sc_SortedSet)) { - var$3 = $that; - var$4 = var$3.$ordering; - var$5 = $this.$ordering; - if (var$4 !== null) { - if (!jl_Object_equals(var$4, var$5)) - break c; - else - break b; - } - if (var$5 === null) - break b; - } - } - var$2 = sc_Set_equals$($this, $that); - break a; - } - if (scm_TreeSet_size($this) == scm_TreeSet_size(var$3)) { - $that = scm_TreeSet_iterator($this); - var$3 = scm_TreeSet_iterator(var$3); - var$2 = 1; - while (var$2 && scm_RedBlackTree$TreeIterator_hasNext($that)) { - var$2 = onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($this.$ordering, scm_RedBlackTree$TreeIterator_next($that), scm_RedBlackTree$TreeIterator_next(var$3)) ? 0 : 1; - } - if (var$2) { - var$2 = 1; - break a; - } - } - var$2 = 0; - } - } - return var$2; -}, -scm_TreeSet_fromSpecific = ($this, $coll) => { - return scm_TreeSet$_from(scm_TreeSet_sortedIterableFactory($this), $coll, $this.$ordering); -}, -scm_TreeSet_newSpecificBuilder = $this => { - let var$1, var$2; - scm_TreeSet_sortedIterableFactory($this); - var$1 = $this.$ordering; - var$2 = new scm_TreeSet$$anon$1; - var$2.$ordering$1 = var$1; - var$2.$tree = scm_RedBlackTree$Tree$_empty(scm_RedBlackTree$Tree$_MODULE$); - return var$2; -}, -scm_TreeSet_sortedIterableFactory = $this => { - scm_TreeSet$_$callClinit(); - return scm_TreeSet$_MODULE$; -}, -scm_TreeSet_iterator = $this => { - let $keysIterator_tree, $keysIterator_end, $keysIterator_evidence$4, var$4, var$5, var$6, var$7, var$8; - $keysIterator_tree = $this.$scala$collection$mutable$TreeSet$$tree; - $keysIterator_end = s_None$_MODULE$; - $keysIterator_evidence$4 = $this.$ordering; - var$4 = new scm_RedBlackTree$KeysIterator; - var$4.$end5 = $keysIterator_end; - var$4.$ord1 = $keysIterator_evidence$4; - if (jl_Object_equals($keysIterator_end, $keysIterator_end)) - var$5 = scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$minNode(scm_RedBlackTree$_MODULE$, $keysIterator_tree.$root0); - else { - if (!($keysIterator_end instanceof s_Some)) - $rt_throw(s_MatchError__init_($keysIterator_end)); - var$6 = $keysIterator_end.$value5; - $keysIterator_end = scm_RedBlackTree$_MODULE$; - $keysIterator_tree = $keysIterator_tree.$root0; - if ($keysIterator_tree === null) - var$5 = null; - else { - var$5 = null; - var$7 = 1; - while ($keysIterator_tree !== null && var$7) { - var$7 = onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($keysIterator_evidence$4, var$6, $keysIterator_tree.$key2); - var$8 = var$7 >= 0 ? $keysIterator_tree.$right0 : $keysIterator_tree.$left1; - var$5 = $keysIterator_tree; - $keysIterator_tree = var$8; - } - if (var$7 > 0) - var$5 = scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$successor($keysIterator_end, var$5); - } - } - var$4.$nextNode = var$5; - scm_RedBlackTree$TreeIterator_setNullIfAfterEnd(var$4); - return var$4; -}, -scm_TreeSet_contains = ($this, $elem) => { - let var$2, var$3, var$4; - var$2 = scm_RedBlackTree$_MODULE$; - var$3 = $this.$scala$collection$mutable$TreeSet$$tree; - var$4 = $this.$ordering; - return scm_RedBlackTree$_getNode(var$2, var$3.$root0, $elem, var$4) === null ? 0 : 1; -}, -scm_TreeSet_className = $this => { - return $rt_s(4769); -}, -scm_TreeSet_size = $this => { - return $this.$scala$collection$mutable$TreeSet$$tree.$size8; -}, -scm_TreeSet_knownSize = $this => { - return scm_TreeSet_size($this); -}, -scm_TreeSet_isEmpty = $this => { - return $this.$scala$collection$mutable$TreeSet$$tree.$root0 !== null ? 0 : 1; -}, -scm_TreeSet_head = $this => { - let var$1; - var$1 = scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$minNode(scm_RedBlackTree$_MODULE$, $this.$scala$collection$mutable$TreeSet$$tree.$root0); - return (var$1 === null ? s_None$_MODULE$ : s_Some__init_(var$1.$key2)).$get1(); -}, -scm_TreeSet_foreach = ($this, $f) => { - let var$2, var$3, var$4; - var$2 = scm_RedBlackTree$_MODULE$; - var$3 = $this.$scala$collection$mutable$TreeSet$$tree.$root0; - if (var$3 !== null) - while (true) { - var$4 = var$3.$left1; - if (var$4 !== null) - scm_RedBlackTree$_g$1(var$2, var$4, $f); - $f.$apply2(var$3.$key2); - var$3 = var$3.$right0; - if (var$3 === null) - break; - } -}, -scm_TreeSet_fromSpecific1 = ($this, $coll) => { - return scm_TreeSet_fromSpecific($this, $coll); -}, -scm_TreeSet_fromSpecific0 = ($this, $coll) => { - return scm_TreeSet_fromSpecific($this, $coll); -}, -scm_TreeSet_subtractOne = ($this, $elem) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = scm_RedBlackTree$_MODULE$; - var$3 = $this.$scala$collection$mutable$TreeSet$$tree; - var$4 = $this.$ordering; - $elem = scm_RedBlackTree$_getNode(var$2, var$3.$root0, $elem, var$4); - if ($elem !== null) { - var$5 = $elem.$red; - var$6 = $elem.$left1; - if (var$6 === null) { - var$6 = $elem.$right0; - scm_RedBlackTree$_transplant(var$2, var$3, $elem, var$6); - var$4 = $elem.$parent0; - } else { - var$7 = $elem.$right0; - if (var$7 === null) { - scm_RedBlackTree$_transplant(var$2, var$3, $elem, var$6); - var$4 = $elem.$parent0; - } else { - var$7 = scm_RedBlackTree$_minNodeNonNull(var$2, var$7); - var$5 = var$7.$red; - var$6 = var$7.$right0; - var$4 = var$7.$parent0; - if (var$4 === $elem) - var$4 = var$7; - else { - scm_RedBlackTree$_transplant(var$2, var$3, var$7, var$6); - var$8 = $elem.$right0; - var$7.$right0 = var$8; - var$8.$parent0 = var$7; - } - scm_RedBlackTree$_transplant(var$2, var$3, $elem, var$7); - var$8 = $elem.$left1; - var$7.$left1 = var$8; - var$8.$parent0 = var$7; - var$7.$red = $elem.$red; - } - } - if (!var$5) { - while (var$6 !== var$3.$root0 && scm_RedBlackTree$_isBlack(var$2, var$6)) { - $elem = var$4.$left1; - if (var$6 !== $elem) { - if ($elem.$red) { - $elem.$red = 0; - var$4.$red = 1; - scm_RedBlackTree$_rotateRight(var$2, var$3, var$4); - $elem = var$4.$left1; - } - if (scm_RedBlackTree$_isBlack(var$2, $elem.$right0) && scm_RedBlackTree$_isBlack(var$2, $elem.$left1)) - $elem.$red = 1; - else { - if (scm_RedBlackTree$_isBlack(var$2, $elem.$left1)) { - $elem.$right0.$red = 0; - $elem.$red = 1; - scm_RedBlackTree$_rotateLeft(var$2, var$3, $elem); - $elem = var$4.$left1; - } - $elem.$red = var$4.$red; - var$4.$red = 0; - $elem.$left1.$red = 0; - scm_RedBlackTree$_rotateRight(var$2, var$3, var$4); - var$4 = var$3.$root0; - } - } else { - $elem = var$4.$right0; - if ($elem.$red) { - $elem.$red = 0; - var$4.$red = 1; - scm_RedBlackTree$_rotateLeft(var$2, var$3, var$4); - $elem = var$4.$right0; - } - if (scm_RedBlackTree$_isBlack(var$2, $elem.$left1) && scm_RedBlackTree$_isBlack(var$2, $elem.$right0)) - $elem.$red = 1; - else { - if (scm_RedBlackTree$_isBlack(var$2, $elem.$right0)) { - $elem.$left1.$red = 0; - $elem.$red = 1; - scm_RedBlackTree$_rotateRight(var$2, var$3, $elem); - $elem = var$4.$right0; - } - $elem.$red = var$4.$red; - var$4.$red = 0; - $elem.$right0.$red = 0; - scm_RedBlackTree$_rotateLeft(var$2, var$3, var$4); - var$4 = var$3.$root0; - } - } - $elem = var$4.$parent0; - var$6 = var$4; - var$4 = $elem; - } - if (var$6 !== null) - var$6.$red = 0; - } - var$3.$size8 = var$3.$size8 - 1 | 0; - } - return $this; -}, -scm_TreeSet_addOne = ($this, $elem) => { - scm_RedBlackTree$_insert(scm_RedBlackTree$_MODULE$, $this.$scala$collection$mutable$TreeSet$$tree, $elem, null, $this.$ordering); - return $this; -}, -scm_TreeSet__init_0 = ($this, $tree, $ordering) => { - $this.$scala$collection$mutable$TreeSet$$tree = $tree; - $this.$ordering = $ordering; - if ($ordering !== null) - return; - $ordering = new jl_NullPointerException; - jl_Throwable__init_0($ordering, $rt_s(4770)); - $rt_throw($ordering); -}, -scm_TreeSet__init_ = (var_0, var_1) => { - let var_2 = new scm_TreeSet(); - scm_TreeSet__init_0(var_2, var_0, var_1); - return var_2; -}; -function scm_RedBlackTree$Tree() { - let a = this; jl_Object.call(a); - a.$root0 = null; - a.$size8 = 0; -} -let scm_RedBlackTree$Tree__init_0 = ($this, $root, $size) => { - $this.$root0 = $root; - $this.$size8 = $size; -}, -scm_RedBlackTree$Tree__init_ = (var_0, var_1) => { - let var_2 = new scm_RedBlackTree$Tree(); - scm_RedBlackTree$Tree__init_0(var_2, var_0, var_1); - return var_2; -}, -scm_RedBlackTree$ = $rt_classWithoutFields(), -scm_RedBlackTree$_MODULE$ = null, -scm_RedBlackTree$__clinit_ = () => { - scm_RedBlackTree$_MODULE$ = new scm_RedBlackTree$; -}, -scm_RedBlackTree$_isRed = ($this, $node) => { - if ($node !== null && $node.$red) - return 1; - return 0; -}, -scm_RedBlackTree$_isBlack = ($this, $node) => { - if ($node !== null && $node.$red) - return 0; - return 1; -}, -scm_RedBlackTree$_getNode = ($this, $node, $key, $ord) => { - let $cmp; - while (true) { - if ($node === null) - return null; - $cmp = $rt_compare(onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($ord, $key, $node.$key2), 0); - if ($cmp < 0) { - $node = $node.$left1; - continue; - } - if ($cmp <= 0) - break; - $node = $node.$right0; - } - return $node; -}, -scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$minNode = ($this, $node) => { - if ($node !== null) - return scm_RedBlackTree$_minNodeNonNull($this, $node); - return null; -}, -scm_RedBlackTree$_minNodeNonNull = ($this, $node) => { - let $node_0; - while (true) { - $node_0 = $node.$left1; - if ($node_0 === null) - break; - $node = $node_0; - } - return $node; -}, -scm_RedBlackTree$_insert = ($this, $tree, $key, $value, $ord) => { - let $y, $x, $cmp, $z, var$9; - $y = null; - $x = $tree.$root0; - $cmp = 1; - while ($x !== null && $cmp) { - $cmp = onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($ord, $key, $x.$key2); - $z = $cmp >= 0 ? $x.$right0 : $x.$left1; - $y = $x; - $x = $z; - } - var$9 = $rt_compare($cmp, 0); - if (!var$9) { - $y.$value30 = $value; - return; - } - $z = scm_RedBlackTree$Node__init_($key, $value, 1, null, null, $y); - if ($y === null) - $tree.$root0 = $z; - else if (var$9 >= 0) - $y.$right0 = $z; - else - $y.$left1 = $z; - while (scm_RedBlackTree$_isRed($this, $z.$parent0)) { - $ord = $z.$parent0; - $value = $ord.$parent0; - $key = $value.$left1; - if ($ord !== $key) { - if (scm_RedBlackTree$_isRed($this, $key)) { - $value = $z.$parent0; - $value.$red = 0; - $key.$red = 0; - $z = $value.$parent0; - $z.$red = 1; - continue; - } - $value = $z.$parent0; - if ($z === $value.$left1) { - scm_RedBlackTree$_rotateRight($this, $tree, $value); - $z = $value; - } - $key = $z.$parent0; - $key.$red = 0; - $key = $key.$parent0; - $key.$red = 1; - scm_RedBlackTree$_rotateLeft($this, $tree, $key); - continue; - } - $key = $value.$right0; - if (scm_RedBlackTree$_isRed($this, $key)) { - $value = $z.$parent0; - $value.$red = 0; - $key.$red = 0; - $z = $value.$parent0; - $z.$red = 1; - continue; - } - $value = $z.$parent0; - if ($z === $value.$right0) { - scm_RedBlackTree$_rotateLeft($this, $tree, $value); - $z = $value; - } - $key = $z.$parent0; - $key.$red = 0; - $key = $key.$parent0; - $key.$red = 1; - scm_RedBlackTree$_rotateRight($this, $tree, $key); - } - $tree.$root0.$red = 0; - $tree.$size8 = $tree.$size8 + 1 | 0; -}, -scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$successor = ($this, $node) => { - let $y, $y_0; - $y = $node.$right0; - if ($y !== null) - return scm_RedBlackTree$_minNodeNonNull($this, $y); - $y = $node.$parent0; - while ($y !== null && $node === $y.$right0) { - $y_0 = $y.$parent0; - $node = $y; - $y = $y_0; - } - return $y; -}, -scm_RedBlackTree$_rotateLeft = ($this, $tree, $x) => { - let $y, var$4; - if ($x === null) - return; - $y = $x.$right0; - var$4 = $y.$left1; - $x.$right0 = var$4; - if (var$4 !== null) - var$4.$parent0 = $x; - $y.$parent0 = $x.$parent0; - var$4 = $x.$parent0; - if (var$4 === null) - $tree.$root0 = $y; - else if ($x !== var$4.$left1) - var$4.$right0 = $y; - else - var$4.$left1 = $y; - $y.$left1 = $x; - $x.$parent0 = $y; -}, -scm_RedBlackTree$_rotateRight = ($this, $tree, $x) => { - let $y, var$4; - if ($x === null) - return; - $y = $x.$left1; - var$4 = $y.$right0; - $x.$left1 = var$4; - if (var$4 !== null) - var$4.$parent0 = $x; - $y.$parent0 = $x.$parent0; - var$4 = $x.$parent0; - if (var$4 === null) - $tree.$root0 = $y; - else if ($x !== var$4.$right0) - var$4.$left1 = $y; - else - var$4.$right0 = $y; - $y.$right0 = $x; - $x.$parent0 = $y; -}, -scm_RedBlackTree$_transplant = ($this, $tree, $to, $from) => { - let var$4; - var$4 = $to.$parent0; - if (var$4 === null) - $tree.$root0 = $from; - else if ($to !== var$4.$left1) - var$4.$right0 = $from; - else - var$4.$left1 = $from; - if ($from === null) - return; - $from.$parent0 = var$4; -}, -scm_RedBlackTree$_fromOrderedKeys = ($this, $xs, $size) => { - let $maxUsedDepth; - $maxUsedDepth = 32 - jl_Integer_numberOfLeadingZeros($size) | 0; - return scm_RedBlackTree$Tree__init_(scm_RedBlackTree$_f$3(1, $size, $xs, $maxUsedDepth), $size); -}, -scm_RedBlackTree$_copyTree = ($this, $n) => { - let $c; - if ($n === null) - return null; - $c = scm_RedBlackTree$Node__init_($n.$key2, $n.$value30, $n.$red, scm_RedBlackTree$_copyTree($this, $n.$left1), scm_RedBlackTree$_copyTree($this, $n.$right0), null); - $n = $c.$left1; - if ($n !== null) - $n.$parent0 = $c; - $n = $c.$right0; - if ($n !== null) - $n.$parent0 = $c; - return $c; -}, -scm_RedBlackTree$_g$1 = ($this, $node, $f$1) => { - let $l; - while (true) { - $l = $node.$left1; - if ($l !== null) - scm_RedBlackTree$_g$1($this, $l, $f$1); - $f$1.$apply2($node.$key2); - $node = $node.$right0; - if ($node === null) - break; - } -}, -scm_RedBlackTree$_f$3 = ($level, $size, $xs$1, $maxUsedDepth$1) => { - let $leftSize, $left, $x, $right, $n; - switch ($size) { - case 0: - break; - case 1: - return scm_RedBlackTree$Node__init_($xs$1.$next(), null, $level == $maxUsedDepth$1 && $level != 1 ? 1 : 0, null, null, null); - default: - $size = $size - 1 | 0; - $leftSize = $size / 2 | 0; - $level = $level + 1 | 0; - $left = scm_RedBlackTree$_f$3($level, $leftSize, $xs$1, $maxUsedDepth$1); - $x = $xs$1.$next(); - $right = scm_RedBlackTree$_f$3($level, $size - $leftSize | 0, $xs$1, $maxUsedDepth$1); - $n = scm_RedBlackTree$Node__init_($x, null, 0, $left, $right, null); - if ($left !== null) - $left.$parent0 = $n; - $right.$parent0 = $n; - return $n; - } - return null; -}, -scm_RedBlackTree$Tree$ = $rt_classWithoutFields(), -scm_RedBlackTree$Tree$_MODULE$ = null, -scm_RedBlackTree$Tree$__clinit_ = () => { - scm_RedBlackTree$Tree$_MODULE$ = new scm_RedBlackTree$Tree$; -}, -scm_RedBlackTree$Tree$_empty = $this => { - return scm_RedBlackTree$Tree__init_(null, 0); -}; -function ju_AbstractMap$SimpleImmutableEntry() { - let a = this; jl_Object.call(a); - a.$key12 = null; - a.$value40 = null; -} -function ju_Collections$7() { - ju_AbstractMap.call(this); - this.$val$entries = null; -} -function ju_Collections$9() { - ju_AbstractList.call(this); - this.$val$list = null; -} -let ju_Collections$9_get = ($this, $index) => { - return ju_Arrays$ArrayAsList_get($this.$val$list, $index); -}, -ju_Collections$9_size = $this => { - return ju_Arrays$ArrayAsList_size($this.$val$list); -}; -function s_PartialFunction$AndThen() { - let a = this; jl_Object.call(a); - a.$pf0 = null; - a.$k = null; -} -let s_PartialFunction$AndThen_lift = $this => { - return s_PartialFunction_lift$($this); -}, -s_PartialFunction$AndThen_applyOrElse = ($this, $x, $default) => { - let $z; - $z = $this.$pf0.$applyOrElse($x, s_PartialFunction$_fallback_fn); - if (s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, $z)) - return s_PartialFunction$_fallback_fn; - return $this.$k.$apply2($z); -}, -sc_MapOps$addString$lambda$_49_0 = $rt_classWithoutFields(), -sc_MapOps$addString$lambda$_49_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(null)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$3, 4); - var$2 = jl_StringBuilder_append(var$3, var$2); - jl_AbstractStringBuilder_append(var$2, $rt_s(4771)); - return jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$2, var$1)); -}, -oncirr_normalizeWithAndReturnClauses$aliasUnaliasedReturnItems$lambda$_39_0 = $rt_classWithoutFields(), -oncirr_normalizeWithAndReturnClauses$aliasUnaliasedReturnItems$lambda$_39_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - if (var$1 instanceof oncia_UnaliasedReturnItem) { - var$2 = var$1; - var$3 = var$2.$alias0; - var$1 = new oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0; - var$1.$_0108 = var$2; - var$3 = s_Option_getOrElse(var$3, var$1); - var$1 = oncia_AliasedReturnItem__init_(var$2.$expression17, var$3, var$2.$position94); - } - return var$1; -}, -oncirr_rewriteShowQuery$$rewriteToWithAndReturn$lambda$_12_0 = $rt_classWithoutFields(), -oncirr_rewriteShowQuery$$rewriteToWithAndReturn$lambda$_12_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_rewriteShowQuery$_$callClinit(); - return var$1.$name20; -}, -oncia_WithType = $rt_classWithoutFields(0), -oncia_AddedInRewrite$ = $rt_classWithoutFields(), -oncia_AddedInRewrite$_MODULE$ = null, -oncia_AddedInRewrite$__clinit_ = () => { - oncia_AddedInRewrite$_MODULE$ = new oncia_AddedInRewrite$; -}, -oncia_AddedInRewrite$_productArity = $this => { - return 0; -}, -oncia_AddedInRewrite$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AddedInRewrite$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AddedInRewrite$_hashCode = $this => { - return 1072546727; -}, -oncia_AddedInRewrite$_toString = $this => { - return $rt_s(4772); -}, -oncirr_rewriteShowQuery$$anonfun$lastPosition$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_rewriteShowQuery$$anonfun$lastPosition$1_applyOrElse = ($this, $x1, $default) => { - if (!$rt_isInstance($x1, onciu_ASTNode)) - return s_PartialFunction$_fallback_fn; - $x1 = $x1; - $default = new oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0; - $default.$_0357 = $x1; - return $default; -}, -oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_0 = $rt_classWithoutFields(), -oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_rewriteShowQuery$_$callClinit(); - return var$1.$name(); -}; -function oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_1() { - jl_Object.call(this); - this.$_0473 = null; -} -let oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_1_apply = var$0 => { - let var$1; - var$1 = var$0.$_0473; - oncirr_rewriteShowQuery$_$callClinit(); - return sci_List_map((var$1.$unfilteredColumns()).$columns, new oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0); -}; -function oncirr_rewriteShowQuery$$updateDefaultOrderOnReturn$lambda$_10_0() { - let a = this; jl_Object.call(a); - a.$_01142 = null; - a.$_1383 = null; -} -let oncirr_rewriteShowQuery$$updateDefaultOrderOnReturn$lambda$_10_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_01142; - var$2 = var$0.$_1383; - oncirr_rewriteShowQuery$_$callClinit(); - return oncirr_rewriteShowQuery$_getDefaultOrderFromProjectionOrCommand(oncirr_rewriteShowQuery$_MODULE$, var$1, var$2); -}; -function oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_0() { - jl_Object.call(this); - this.$_0925 = null; -} -let oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0925; - oncirr_mergeInPredicates$_$callClinit(); - var$3 = onciu_Foldable_folder$(var$1); - s_Predef$_$callClinit(); - var$4 = sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); - var$1 = new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1; - var$1.$merge$1 = var$2; - return onciu_Foldable$Folder_treeFold(var$3, var$4, var$1); -}; -function oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_1() { - jl_Object.call(this); - this.$_0519 = null; -} -let oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_1_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$2; - var$3 = var$0.$_0519; - oncirr_mergeInPredicates$_$callClinit(); - var$4 = (var$1.$keySet0()).$intersect(var$2.$keySet0()); - var$5 = new oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0; - var$5.$_0900 = var$3; - var$5.$_1310 = var$1; - var$5.$_2101 = var$2; - return (var$1.$concat2(var$4.$map(var$5))).$concat2(var$2.$removedAll0(var$4)); -}; -function oncirr_mergeInPredicates$$anonfun$inRewriter$1() { - sr_AbstractPartialFunction.call(this); - this.$inPredicates$1 = null; -} -let oncirr_mergeInPredicates$$anonfun$inRewriter$1_applyOrElse = ($this, $x1, $default) => { - let var$3, $a, $list, $expressions, $x$1; - if ($x1 instanceof oncie_In) { - var$3 = $x1; - $a = var$3.$lhs4; - $list = var$3.$rhs4; - if ($list instanceof oncie_ListLiteral) { - $x1 = $list; - $expressions = $this.$inPredicates$1.$apply2($a); - if (!sc_IterableOnceOps_nonEmpty$($expressions)) - return oncie_False__init_0(var$3.$position96); - $x$1 = oncie_ListLiteral_copy($x1, $expressions, $x1.$position155); - return oncie_In_copy(var$3, var$3.$lhs4, $x$1, var$3.$position96); - } - } - return $default.$apply2($x1); -}; -function oncie_FunctionTypeSignature() { - let a = this; jl_Object.call(a); - a.$function3 = null; - a.$outputType0 = null; - a.$names6 = null; - a.$description3 = null; - a.$category = null; - a.$argumentTypes0 = null; - a.$optionalTypes = null; - a.$deprecated1 = 0; - a.$deprecatedBy0 = null; - a.$internal = 0; - a.$overrideDefaultAsString = null; - a.$overriddenArgumentTypeName = null; - a.$argumentDescriptions = null; -} -let oncie_FunctionTypeSignature_outputType = $this => { - return $this.$outputType0; -}, -oncie_FunctionTypeSignature_argumentTypes = $this => { - return $this.$argumentTypes0; -}, -oncie_FunctionTypeSignature_removeFirstArgumentType = $this => { - let $x$1; - $x$1 = $this.$argumentTypes0.$tail(); - return oncie_FunctionTypeSignature__init_($this.$function3, $this.$outputType0, $this.$names6, $this.$description3, $this.$category, $x$1, $this.$optionalTypes, $this.$deprecated1, $this.$deprecatedBy0, $this.$internal, $this.$overrideDefaultAsString, $this.$overriddenArgumentTypeName, $this.$argumentDescriptions); -}, -oncie_FunctionTypeSignature_productPrefix = $this => { - return $rt_s(4773); -}, -oncie_FunctionTypeSignature_productArity = $this => { - return 13; -}, -oncie_FunctionTypeSignature_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$function3; - case 1: - return $this.$outputType0; - case 2: - return $this.$names6; - case 3: - return $this.$description3; - case 4: - return $this.$category; - case 5: - return $this.$argumentTypes0; - case 6: - return $this.$optionalTypes; - case 7: - return jl_Boolean_valueOf($this.$deprecated1); - case 8: - return $this.$deprecatedBy0; - case 9: - return jl_Boolean_valueOf($this.$internal); - case 10: - return $this.$overrideDefaultAsString; - case 11: - return $this.$overriddenArgumentTypeName; - case 12: - return $this.$argumentDescriptions; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_FunctionTypeSignature_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_FunctionTypeSignature_hashCode = $this => { - let var$1, var$2; - var$1 = sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4773))), sr_Statics_anyHash($this.$function3)), sr_Statics_anyHash($this.$outputType0)), sr_Statics_anyHash($this.$names6)), sr_Statics_anyHash($this.$description3)), sr_Statics_anyHash($this.$category)), sr_Statics_anyHash($this.$argumentTypes0)), sr_Statics_anyHash($this.$optionalTypes)); - var$2 = !$this.$deprecated1 ? 1237 : 1231; - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), sr_Statics_anyHash($this.$deprecatedBy0)), !$this.$internal ? 1237 : 1231), sr_Statics_anyHash($this.$overrideDefaultAsString)), sr_Statics_anyHash($this.$overriddenArgumentTypeName)), sr_Statics_anyHash($this.$argumentDescriptions)), 13); -}, -oncie_FunctionTypeSignature_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_FunctionTypeSignature_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_FunctionTypeSignature) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$deprecated1 != $x$1.$deprecated1) - break b; - if ($this.$internal != $x$1.$internal) - break b; - c: { - var$2 = $this.$function3; - var$3 = $x$1.$function3; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$outputType0; - var$3 = $x$1.$outputType0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$names6; - var$3 = $x$1.$names6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$description3; - var$3 = $x$1.$description3; - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$category; - var$3 = $x$1.$category; - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$2 = $this.$argumentTypes0; - var$3 = $x$1.$argumentTypes0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break h; - } - if (var$3 !== null) - break b; - } - i: { - var$2 = $this.$optionalTypes; - var$3 = $x$1.$optionalTypes; - if (var$2 !== null) { - if (!sci_Vector0$_equals(var$2, var$3)) - break b; - else - break i; - } - if (var$3 !== null) - break b; - } - j: { - var$2 = $this.$deprecatedBy0; - var$3 = $x$1.$deprecatedBy0; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break j; - } - if (var$3 !== null) - break b; - } - k: { - var$2 = $this.$overrideDefaultAsString; - var$3 = $x$1.$overrideDefaultAsString; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break k; - } - if (var$3 !== null) - break b; - } - l: { - var$2 = $this.$overriddenArgumentTypeName; - var$3 = $x$1.$overriddenArgumentTypeName; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break l; - } - if (var$3 !== null) - break b; - } - m: { - var$3 = $this.$argumentDescriptions; - $x$1 = $x$1.$argumentDescriptions; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break m; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_FunctionTypeSignature)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_FunctionTypeSignature__init_0 = ($this, $function, $outputType, $names, $description, $category, $argumentTypes, $optionalTypes, $deprecated, $deprecatedBy, $internal, $overrideDefaultAsString, $overriddenArgumentTypeName, $argumentDescriptions) => { - $this.$function3 = $function; - $this.$outputType0 = $outputType; - $this.$names6 = $names; - $this.$description3 = $description; - $this.$category = $category; - $this.$argumentTypes0 = $argumentTypes; - $this.$optionalTypes = $optionalTypes; - $this.$deprecated1 = $deprecated; - $this.$deprecatedBy0 = $deprecatedBy; - $this.$internal = $internal; - $this.$overrideDefaultAsString = $overrideDefaultAsString; - $this.$overriddenArgumentTypeName = $overriddenArgumentTypeName; - $this.$argumentDescriptions = $argumentDescriptions; -}, -oncie_FunctionTypeSignature__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8, var_9, var_10, var_11, var_12) => { - let var_13 = new oncie_FunctionTypeSignature(); - oncie_FunctionTypeSignature__init_0(var_13, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8, var_9, var_10, var_11, var_12); - return var_13; -}, -oncie_FunctionTypeSignature$ = $rt_classWithoutFields(), -oncie_FunctionTypeSignature$_MODULE$ = null, -oncie_FunctionTypeSignature$_$callClinit = () => { - oncie_FunctionTypeSignature$_$callClinit = $rt_eraseClinit(oncie_FunctionTypeSignature$); - oncie_FunctionTypeSignature$__clinit_(); -}, -oncie_FunctionTypeSignature$__clinit_ = () => { - let var$1; - var$1 = new oncie_FunctionTypeSignature$; - oncie_FunctionTypeSignature$_$callClinit(); - oncie_FunctionTypeSignature$_MODULE$ = var$1; -}, -oncie_FunctionTypeSignature$_apply$default$7 = $this => { - s_package$_$callClinit(); - return sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)); -}, -oncie_FunctionTypeSignature$_apply$default$12 = $this => { - return s_None$_MODULE$; -}, -oncie_FunctionTypeSignature$_apply$default$13 = $this => { - s_Predef$_$callClinit(); - return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); -}, -oncie_FunctionTypeSignature$_noArg = ($this, $function, $outputType, $description, $category) => { - let var$5, var$6, var$7, var$8, var$9, var$10, var$11; - var$5 = new oncie_FunctionTypeSignature; - s_package$_$callClinit(); - var$6 = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - var$9 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); - var$10 = (s_package$_Vector(s_package$_MODULE$)).$from0(sci_Nil$_MODULE$); - var$11 = oncie_FunctionTypeSignature$_apply$default$7($this); - var$7 = s_None$_MODULE$; - oncie_FunctionTypeSignature__init_0(var$5, $function, $outputType, var$9, $description, $category, var$10, var$11, 0, var$7, 0, var$7, var$7, oncie_FunctionTypeSignature$_apply$default$13($this)); - return var$5; -}; -function s_Enumeration() { - let a = this; jl_Object.call(a); - a.$scala$Enumeration$$vmap = null; - a.$vset = null; - a.$scala$Enumeration$$vsetDefined = 0; - a.$nmap = null; - a.$nextId = 0; - a.$nextName0 = null; - a.$scala$Enumeration$$topId = 0; - a.$scala$Enumeration$$bottomId = 0; -} -let s_Enumeration_Value = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = $this.$nextId; - var$2 = $this.$nextName0; - var$2 = var$2 !== null && var$2.$hasNext() ? $this.$nextName0.$next() : null; - var$3 = new s_Enumeration$Val; - var$3.$i = var$1; - var$3.$name57 = var$2; - var$3.$$outer40 = $this; - var$3.$scala$Enumeration$$outerEnum0 = $this; - var$4 = $this.$scala$Enumeration$$vmap; - var$2 = jl_Integer_valueOf(var$1); - var$5 = sr_Statics_anyHash(var$2); - var$5 = var$5 ^ (var$5 >>> 16 | 0); - var$6 = var$4.$scala$collection$mutable$HashMap$$table.data; - var$4 = var$6[var$5 & (var$6.length - 1 | 0)]; - if (!(((var$4 !== null ? scm_HashMap$Node_findNode(var$4, var$2, var$5) : null) === null ? 0 : 1) ? 0 : 1)) { - var$2 = new jl_AssertionError; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$4, 18); - jl_AbstractStringBuilder_append(var$4, $rt_s(3643)); - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$7, 14); - jl_AbstractStringBuilder_append(var$7, $rt_s(4774)); - jl_AssertionError__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$4, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$7, var$3.$i))))); - $rt_throw(var$2); - } - scm_HashMap_update($this.$scala$Enumeration$$vmap, jl_Integer_valueOf(var$1), var$3); - $this.$scala$Enumeration$$vsetDefined = 0; - var$8 = var$1 + 1 | 0; - $this.$nextId = var$8; - if (var$8 > $this.$scala$Enumeration$$topId) - $this.$scala$Enumeration$$topId = var$8; - if (var$1 < $this.$scala$Enumeration$$bottomId) - $this.$scala$Enumeration$$bottomId = var$1; - return var$3; -}, -s_Enumeration_populateNameMap = $this => { - let $filter$extension_make_evidence$1, $fields, $filter$extension_res, $refArrayOps_xs, $filter$extension_i, $foreach$extension_len, $filter$extension_x, $foreach$extension_i, var$9, $foreach$extension_$this, var$11, var$12; - $filter$extension_make_evidence$1 = jl_Class_getSuperclass(jl_Object_getClass($this)); - $fields = jl_Class_getDeclaredFields(jl_Object_getClass($this)); - while ($filter$extension_make_evidence$1 !== null) { - $filter$extension_res = jl_Class_getSuperclass($filter$extension_make_evidence$1); - if (!((jl_Class_getDeclaredFields($filter$extension_make_evidence$1)).data.length ? 0 : 1)) { - $refArrayOps_xs = jl_Class_getDeclaredFields($filter$extension_make_evidence$1); - sr_ClassTag$_$callClinit(); - $filter$extension_make_evidence$1 = sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jlr_Field)); - $filter$extension_make_evidence$1 = s_Array$_copyAs(s_Array$_MODULE$, $fields, jlr_Array_getLength($fields) + jlr_Array_getLength($refArrayOps_xs) | 0, $filter$extension_make_evidence$1); - s_Array$_copy(s_Array$_MODULE$, $refArrayOps_xs, 0, $filter$extension_make_evidence$1, jlr_Array_getLength($fields), jlr_Array_getLength($refArrayOps_xs)); - $fields = $filter$extension_make_evidence$1; - } - $filter$extension_make_evidence$1 = $filter$extension_res; - } - a: { - $filter$extension_make_evidence$1 = jl_Object_getClass($this); - $filter$extension_res = ju_HashMap__init_(); - jl_Class_findMethods($filter$extension_make_evidence$1, $filter$extension_res); - $refArrayOps_xs = ju_AbstractCollection_toArray(ju_HashMap_values($filter$extension_res), $rt_createArray(jlr_Method, $filter$extension_res.$elementCount)); - sr_ClassTag$_$callClinit(); - $filter$extension_make_evidence$1 = sr_ClassTag$_apply(sr_ClassTag$_MODULE$, jl_Class_getComponentType(jl_Object_getClass($refArrayOps_xs))); - $filter$extension_res = $filter$extension_make_evidence$1.$runtimeClass(); - if (jl_Object_equals($rt_cls($rt_bytecls), $filter$extension_res)) { - $filter$extension_res = new scm_ArrayBuilder$ofByte; - scm_ArrayBuilder__init_($filter$extension_res); - break a; - } - if (jl_Object_equals($rt_cls($rt_shortcls), $filter$extension_res)) { - $filter$extension_res = new scm_ArrayBuilder$ofShort; - scm_ArrayBuilder__init_($filter$extension_res); - break a; - } - if (jl_Object_equals($rt_cls($rt_charcls), $filter$extension_res)) { - $filter$extension_res = new scm_ArrayBuilder$ofChar; - scm_ArrayBuilder__init_($filter$extension_res); - break a; - } - if (jl_Object_equals($rt_cls($rt_intcls), $filter$extension_res)) { - $filter$extension_res = new scm_ArrayBuilder$ofInt; - scm_ArrayBuilder__init_($filter$extension_res); - break a; - } - if (jl_Object_equals($rt_cls($rt_longcls), $filter$extension_res)) { - $filter$extension_res = new scm_ArrayBuilder$ofLong; - scm_ArrayBuilder__init_($filter$extension_res); - break a; - } - if (jl_Object_equals($rt_cls($rt_floatcls), $filter$extension_res)) { - $filter$extension_res = new scm_ArrayBuilder$ofFloat; - scm_ArrayBuilder__init_($filter$extension_res); - break a; - } - if (jl_Object_equals($rt_cls($rt_doublecls), $filter$extension_res)) { - $filter$extension_res = new scm_ArrayBuilder$ofDouble; - scm_ArrayBuilder__init_($filter$extension_res); - break a; - } - if (jl_Object_equals($rt_cls($rt_booleancls), $filter$extension_res)) { - $filter$extension_res = new scm_ArrayBuilder$ofBoolean; - scm_ArrayBuilder__init_($filter$extension_res); - break a; - } - if (!jl_Object_equals($rt_cls($rt_voidcls), $filter$extension_res)) { - $filter$extension_res = scm_ArrayBuilder$ofRef__init_($filter$extension_make_evidence$1); - break a; - } - $filter$extension_res = new scm_ArrayBuilder$ofUnit; - scm_ArrayBuilder__init_($filter$extension_res); - } - $refArrayOps_xs = $refArrayOps_xs.data; - $filter$extension_i = 0; - $foreach$extension_len = $refArrayOps_xs.length; - while ($filter$extension_i < $foreach$extension_len) { - $filter$extension_x = $refArrayOps_xs[$filter$extension_i]; - $foreach$extension_i = (jlr_Method_getParameterTypes($filter$extension_x)).data.length ? 0 : 1; - b: { - if ($foreach$extension_i && jl_Class_isAssignableFrom($rt_cls(s_Enumeration$Value), $filter$extension_x.$returnType)) { - var$9 = $filter$extension_x.$declaringClass; - if (!(var$9 !== null && jl_Object_equals(var$9, $rt_cls(s_Enumeration)))) { - $foreach$extension_i = 0; - c: { - while (true) { - $foreach$extension_$this = $fields.data; - if ($foreach$extension_i >= $foreach$extension_$this.length) { - $foreach$extension_i = (-1); - break c; - } - d: { - e: { - f: { - $filter$extension_make_evidence$1 = $foreach$extension_$this[$foreach$extension_i]; - var$11 = $filter$extension_make_evidence$1.$name43; - var$9 = $filter$extension_x.$name33; - if (var$11 !== null) { - if (!jl_String_equals(var$11, var$9)) - break e; - else - break f; - } - if (var$9 !== null) - break e; - } - g: { - var$9 = $filter$extension_make_evidence$1.$type6; - $filter$extension_make_evidence$1 = $filter$extension_x.$returnType; - if (var$9 !== null) { - if (!jl_Object_equals(var$9, $filter$extension_make_evidence$1)) - break e; - else - break g; - } - if ($filter$extension_make_evidence$1 !== null) - break e; - } - var$12 = 1; - break d; - } - var$12 = 0; - } - if (var$12) - break; - $foreach$extension_i = $foreach$extension_i + 1 | 0; - } - } - if ($foreach$extension_i < 0 ? 0 : 1) { - $foreach$extension_i = 1; - break b; - } - } - } - $foreach$extension_i = 0; - } - if ($foreach$extension_i) - $filter$extension_res.$addOne($filter$extension_x); - $filter$extension_i = $filter$extension_i + 1 | 0; - } - $fields = ($filter$extension_res.$result()).data; - $foreach$extension_len = $fields.length; - $foreach$extension_i = 0; - while ($foreach$extension_i < $foreach$extension_len) { - $filter$extension_make_evidence$1 = $fields[$foreach$extension_i]; - var$9 = $filter$extension_make_evidence$1.$name33; - $filter$extension_make_evidence$1 = jlr_Method_invoke($filter$extension_make_evidence$1, $this, $rt_createArray(jl_Object, 0)); - if ($filter$extension_make_evidence$1.$scala$Enumeration$$outerEnum() === $this) { - $filter$extension_i = $filter$extension_make_evidence$1.$id0(); - $filter$extension_make_evidence$1 = $this.$nmap; - $filter$extension_res = s_Tuple2__init_(jl_Integer_valueOf($filter$extension_i), var$9); - if ($filter$extension_make_evidence$1 === null) - $rt_throw(null); - scm_HashMap_addOne($filter$extension_make_evidence$1, $filter$extension_res); - } - $foreach$extension_i = $foreach$extension_i + 1 | 0; - } -}, -s_Enumeration_scala$Enumeration$$nameOf = ($this, $i) => { - let var$2, var$3, var$4; - jl_Object_monitorEnterSync($this); - try { - var$2 = $this.$nmap; - var$3 = jl_Integer_valueOf($i); - var$4 = new s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0; - var$4.$_0277 = $this; - var$4.$_1104 = $i; - return scm_HashMap_getOrElse(var$2, var$3, var$4); - } finally { - jl_Object_monitorExitSync($this); - } -}, -s_Enumeration__init_ = $this => { - $this.$scala$Enumeration$$vmap = scm_HashMap__init_(); - $this.$vset = null; - $this.$scala$Enumeration$$vsetDefined = 0; - $this.$nmap = scm_HashMap__init_(); - $this.$nextId = 0; - $this.$scala$Enumeration$$topId = 0; - $this.$scala$Enumeration$$bottomId = 0; -}, -oncief_Category$ = $rt_classWithoutFields(s_Enumeration), -oncief_Category$_MODULE$ = null, -oncief_Category$_NUMERIC0 = null, -oncief_Category$_TRIGONOMETRIC0 = null, -oncief_Category$_PREDICATE = null, -oncief_Category$_AGGREGATING0 = null, -oncief_Category$_SCALAR0 = null, -oncief_Category$_TEMPORAL = null, -oncief_Category$_LOGARITHMIC0 = null, -oncief_Category$_LIST0 = null, -oncief_Category$_STRING0 = null, -oncief_Category$_SPATIAL0 = null, -oncief_Category$_GRAPH = null, -oncief_Category$_VECTOR0 = null, -oncief_Category$_$callClinit = () => { - oncief_Category$_$callClinit = $rt_eraseClinit(oncief_Category$); - oncief_Category$__clinit_(); -}, -oncief_Category$__clinit_ = () => { - let var$1; - var$1 = new oncief_Category$; - oncief_Category$_$callClinit(); - s_Enumeration__init_(var$1); - oncief_Category$_MODULE$ = var$1; - oncief_Category$_NUMERIC0 = $rt_s(4775); - oncief_Category$_TRIGONOMETRIC0 = $rt_s(4776); - oncief_Category$_PREDICATE = $rt_s(4777); - oncief_Category$_AGGREGATING0 = $rt_s(4778); - oncief_Category$_SCALAR0 = $rt_s(4779); - oncief_Category$_TEMPORAL = $rt_s(4780); - oncief_Category$_LOGARITHMIC0 = $rt_s(4781); - oncief_Category$_LIST0 = $rt_s(54); - oncief_Category$_STRING0 = $rt_s(713); - oncief_Category$_SPATIAL0 = $rt_s(4782); - oncief_Category$_GRAPH = $rt_s(196); - oncief_Category$_VECTOR0 = $rt_s(777); -}, -oncief_Category$_NUMERIC = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_NUMERIC0; -}, -oncief_Category$_TRIGONOMETRIC = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_TRIGONOMETRIC0; -}, -oncief_Category$_PREDICATE0 = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_PREDICATE; -}, -oncief_Category$_AGGREGATING = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_AGGREGATING0; -}, -oncief_Category$_SCALAR = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_SCALAR0; -}, -oncief_Category$_LOGARITHMIC = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_LOGARITHMIC0; -}, -oncief_Category$_LIST = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_LIST0; -}, -oncief_Category$_STRING = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_STRING0; -}, -oncief_Category$_SPATIAL = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_SPATIAL0; -}, -oncief_Category$_GRAPH0 = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_GRAPH; -}, -oncief_Category$_VECTOR = $this => { - oncief_Category$_$callClinit(); - return oncief_Category$_VECTOR0; -}, -s_Function3 = $rt_classWithoutFields(0), -sr_AbstractFunction3 = $rt_classWithoutFields(), -oncie_ExpressionTypeSignature$ = $rt_classWithoutFields(sr_AbstractFunction3), -oncie_ExpressionTypeSignature$_MODULE$ = null, -oncie_ExpressionTypeSignature$_$callClinit = () => { - oncie_ExpressionTypeSignature$_$callClinit = $rt_eraseClinit(oncie_ExpressionTypeSignature$); - oncie_ExpressionTypeSignature$__clinit_(); -}, -oncie_ExpressionTypeSignature$__clinit_ = () => { - let var$1; - var$1 = new oncie_ExpressionTypeSignature$; - oncie_ExpressionTypeSignature$_$callClinit(); - oncie_ExpressionTypeSignature$_MODULE$ = var$1; -}, -oncias_Scope$allSymbolDefinitions$lambda$_15_0 = $rt_classWithoutFields(), -oncias_Scope$allSymbolDefinitions$lambda$_15_0_apply = (var$0, var$1, var$2) => { - let var$3; - var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - return sc_IterableOnceOps_foldLeft$(oncias_Scope_symbolDefinitions(var$3.$_20), var$1, new oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0); -}, -oncias_SemanticState$ScopeLocation$$parent$extension$lambda$_4_0 = $rt_classWithoutFields(), -oncias_SemanticState$ScopeLocation$$parent$extension$lambda$_4_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new oncias_SemanticState$ScopeLocation; - oncias_SemanticState$_$callClinit(); - oncias_SemanticState$ScopeLocation__init_0(var$2, var$1); - return var$2; -}, -oncias_SemanticState$ScopeLocation$$availableSymbolDefinitions$extension$lambda$_12_0 = $rt_classWithoutFields(), -oncias_SemanticState$ScopeLocation$$availableSymbolDefinitions$extension$lambda$_12_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = oncias_SemanticState$ScopeLocation$_MODULE$; - oncias_SemanticState$_$callClinit(); - return oncias_SemanticState$ScopeLocation$_availableSymbolDefinitions$extension(var$2, var$1); -}; -function s_PartialFunction$Combined() { - let a = this; jl_Object.call(a); - a.$pf1 = null; - a.$k0 = null; -} -let s_PartialFunction$Combined_lift = $this => { - return s_PartialFunction_lift$($this); -}, -s_PartialFunction$Combined_applyOrElse = ($this, $x, $default) => { - let $pfv; - $pfv = $this.$pf1.$applyOrElse($x, s_PartialFunction$_fallback_fn); - if (s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, $pfv)) - return s_PartialFunction$_fallback_fn; - $x = $pfv; - $default = new onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0; - $default.$_0234 = $x; - return $default; -}; -function sci_RangeIterator() { - let a = this; sc_AbstractIterator.call(a); - a.$step5 = 0; - a.$lastElement0 = 0; - a.$_hasNext0 = 0; - a.$_next1 = 0; -} -let sci_RangeIterator_hasNext = $this => { - return $this.$_hasNext0; -}, -sci_RangeIterator_next = $this => { - let var$1; - if (!$this.$_hasNext0) - sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - var$1 = $this.$_next1; - $this.$_hasNext0 = var$1 == $this.$lastElement0 ? 0 : 1; - $this.$_next1 = var$1 + $this.$step5 | 0; - return jl_Integer_valueOf(var$1); -}; -function scm_RedBlackTree$Node() { - let a = this; jl_Object.call(a); - a.$key2 = null; - a.$value30 = null; - a.$red = 0; - a.$left1 = null; - a.$right0 = null; - a.$parent0 = null; -} -let scm_RedBlackTree$Node__init_0 = ($this, $key, $value, $red, $left, $right, $parent) => { - $this.$key2 = $key; - $this.$value30 = $value; - $this.$red = $red; - $this.$left1 = $left; - $this.$right0 = $right; - $this.$parent0 = $parent; -}, -scm_RedBlackTree$Node__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new scm_RedBlackTree$Node(); - scm_RedBlackTree$Node__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}; -function ju_TemplateCollections$SingleElementSet() { - ju_TemplateCollections$AbstractImmutableSet.call(this); - this.$element6 = null; -} -let oncia_GraphReference = $rt_classWithoutFields(0), -oncia_GraphReference_semanticCheck$ = $$this => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); -}; -function oncia_GraphDirectReference() { - let a = this; oncie_Expression.call(a); - a.$catalogName = null; - a.$position241 = null; -} -let oncia_GraphDirectReference_semanticCheck = $this => { - return oncia_GraphReference_semanticCheck$($this); -}, -oncia_GraphDirectReference_position = $this => { - return $this.$position241; -}, -oncia_GraphDirectReference_print = $this => { - return oncia_CatalogName_qualifiedNameString($this.$catalogName); -}, -oncia_GraphDirectReference_dependencies = $this => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncia_GraphDirectReference_isConstantForQuery = $this => { - return 1; -}, -oncia_GraphDirectReference_equals = ($this, $other) => { - let $otherName; - if (!($other instanceof oncia_GraphDirectReference)) - return 0; - $otherName = $other.$catalogName; - return oncia_CatalogName_equals($this.$catalogName, $otherName); -}, -oncia_GraphDirectReference_hashCode = $this => { - return oncia_CatalogName_hashCode($this.$catalogName); -}, -oncia_GraphDirectReference_semanticallyEqual = ($this, $other) => { - let $otherName; - if (!($other instanceof oncia_GraphDirectReference)) - return 0; - $otherName = $other.$catalogName; - return oncia_CatalogName_equals($this.$catalogName, $otherName); -}, -oncia_GraphDirectReference_productPrefix = $this => { - return $rt_s(4783); -}, -oncia_GraphDirectReference_productArity = $this => { - return 1; -}, -oncia_GraphDirectReference_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$catalogName; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_GraphDirectReference_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GraphDirectReference_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GraphDirectReference__init_ = ($this, $catalogName, $position) => { - $this.$catalogName = $catalogName; - $this.$position241 = $position; - oncie_Expression__init_($this); -}, -oncia_GraphDirectReference__init_0 = (var_0, var_1) => { - let var_2 = new oncia_GraphDirectReference(); - oncia_GraphDirectReference__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_CatalogName$ = $rt_classWithoutFields(), -oncia_CatalogName$_MODULE$ = null, -oncia_CatalogName$_separatorChar = 0, -oncia_CatalogName$_separatorString = null, -oncia_CatalogName$_quoteChar = null, -oncia_CatalogName$__clinit_ = () => { - oncia_CatalogName$_MODULE$ = new oncia_CatalogName$; - oncia_CatalogName$_separatorChar = 46; - oncia_CatalogName$_separatorString = jl_Character_toString(46); - oncia_CatalogName$_quoteChar = $rt_s(412); -}, -oncia_CatalogName$_apply = ($this, $parts) => { - let var$2; - var$2 = $parts.$head(); - $parts = ($parts.$tail()).$toList(); - return oncia_CatalogName__init_(sci_List_$colon$colon($parts, var$2)); -}, -oncia_CatalogName$_quote = ($this, $str) => { - let var$2; - var$2 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - return sc_StringOps$_$plus$plus$extension(var$2, sc_StringOps$_$plus$plus$extension(var$2, oncia_CatalogName$_quoteChar, jl_String_replace($str, $rt_s(412), $rt_s(413))), oncia_CatalogName$_quoteChar); -}, -sc_SeqOps$distinct$lambda$_30_0 = $rt_classWithoutFields(), -sc_SeqOps$distinct$lambda$_30_0_apply = (var$0, var$1) => { - s_Predef$_$callClinit(); - return var$1; -}; -function sc_SeqView$Id() { - sc_AbstractSeqView.call(this); - this.$underlying10 = null; -} -let sc_SeqView$Id_apply = ($this, $idx) => { - return $this.$underlying10.$apply1($idx); -}, -sc_SeqView$Id_length = $this => { - return $this.$underlying10.$length(); -}, -sc_SeqView$Id_iterator = $this => { - return $this.$underlying10.$iterator0(); -}, -sc_SeqView$Id_knownSize = $this => { - return $this.$underlying10.$knownSize(); -}, -sc_SeqView$Id_isEmpty = $this => { - return $this.$underlying10.$isEmpty(); -}, -sc_SeqView$Id__init_ = ($this, $underlying) => { - $this.$underlying10 = $underlying; -}, -sc_SeqView$Id__init_0 = var_0 => { - let var_1 = new sc_SeqView$Id(); - sc_SeqView$Id__init_(var_1, var_0); - return var_1; -}, -sc_IndexedSeqView$Id = $rt_classWithoutFields(sc_SeqView$Id), -sc_IndexedSeqView$Id_iterator = $this => { - return sc_IndexedSeqView_iterator$($this); -}, -sc_IndexedSeqView$Id_reverseIterator = $this => { - return sc_IndexedSeqView_reverseIterator$($this); -}, -sc_IndexedSeqView$Id_reverse = $this => { - return sc_IndexedSeqView$Reverse__init_($this); -}, -sc_IndexedSeqView$Id_lengthCompare = ($this, $len) => { - return sc_IndexedSeqOps_lengthCompare$($this, $len); -}, -sc_IndexedSeqView$Id_knownSize = $this => { - return $this.$length(); -}, -s_Proxy = $rt_classWithoutFields(0), -s_Proxy$Typed = $rt_classWithoutFields(0), -sr_OrderedProxy = $rt_classWithoutFields(0), -sr_OrderedProxy_compare$ = ($$this, $y) => { - return ($$this.$ord()).$compare2($$this.$self(), $y); -}; -function sr_RichBoolean() { - jl_Object.call(this); - this.$self4 = 0; -} -let sr_RichBoolean_ord = $this => { - return sm_Ordering$Boolean$_MODULE$; -}, -sr_RichBoolean_self = $this => { - return jl_Boolean_valueOf($this.$self4); -}, -sr_RichBoolean__init_ = ($this, $self) => { - $this.$self4 = $self; -}, -sr_RichBoolean__init_0 = var_0 => { - let var_1 = new sr_RichBoolean(); - sr_RichBoolean__init_(var_1, var_0); - return var_1; -}, -sr_ScalaNumberProxy = $rt_classWithoutFields(0), -sr_RangedProxy = $rt_classWithoutFields(0); -function sr_RichInt() { - jl_Object.call(this); - this.$self6 = 0; -} -let sr_RichInt_ord = $this => { - sm_Ordering$Int$_$callClinit(); - return sm_Ordering$Int$_MODULE$; -}, -sr_RichInt_self = $this => { - return jl_Integer_valueOf($this.$self6); -}, -sr_RichInt__init_ = ($this, $self) => { - $this.$self6 = $self; -}, -sr_RichInt__init_0 = var_0 => { - let var_1 = new sr_RichInt(); - sr_RichInt__init_(var_1, var_0); - return var_1; -}; -function cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_14_0() { - jl_Object.call(this); - this.$_0801 = null; -} -let cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_14_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0801.$errorsSet; - oncias_SemanticError$_$callClinit(); - return jl_Boolean_valueOf(scm_HashSet_add(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$1.$msg(), var$1.$position()))); -}; -function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_0() { - jl_Object.call(this); - this.$_0823 = null; -} -let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0823; - return jl_Boolean_valueOf((var$1.$postConditions()).$subsetOf(var$2)); -}; -function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_1() { - jl_Object.call(this); - this.$_0180 = null; -} -let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0180; - return jl_Boolean_valueOf((var$1.$preConditions()).$subsetOf(var$2)); -}; -function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_2() { - let a = this; jl_Object.call(a); - a.$_0784 = null; - a.$_1263 = null; - a.$_287 = null; -} -let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0784; - var$3 = var$0.$_1263; - var$4 = var$0.$_287; - onciu_StepSequencer$MutableDirectedGraph_connect(var$2, var$3, var$1); - return var$4.$addOne(var$1); -}; -function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_3() { - jl_Object.call(this); - this.$_01015 = null; -} -let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_3_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01015; - return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$((var$1.$postConditions()).$intersect(var$2))); -}; -function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_4() { - let a = this; jl_Object.call(a); - a.$_0336 = null; - a.$_1121 = null; - a.$_245 = null; -} -let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_4_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0336; - var$3 = var$0.$_1121; - var$4 = var$0.$_245; - onciu_StepSequencer$MutableDirectedGraph_connect(var$2, var$1, var$3); - return var$4.$addOne(var$3); -}; -function oncia_DefaultOrAllShowColumns() { - let a = this; jl_Object.call(a); - a.$useAllColumns = 0; - a.$columns = null; -} -let oncia_DefaultOrAllShowColumns_productPrefix = $this => { - return $rt_s(4784); -}, -oncia_DefaultOrAllShowColumns_productArity = $this => { - return 2; -}, -oncia_DefaultOrAllShowColumns_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$useAllColumns); - case 1: - return $this.$columns; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DefaultOrAllShowColumns_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DefaultOrAllShowColumns_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4784))), !$this.$useAllColumns ? 1237 : 1231), sr_Statics_anyHash($this.$columns)), 2); -}, -oncia_DefaultOrAllShowColumns_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DefaultOrAllShowColumns_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DefaultOrAllShowColumns) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$useAllColumns != $x$1.$useAllColumns) - break b; - c: { - var$2 = $this.$columns; - $x$1 = $x$1.$columns; - if (var$2 !== null) { - if (!sci_List_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_DefaultOrAllShowColumns)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_DefaultOrAllShowColumns__init_0 = ($this, $useAllColumns, $columns) => { - $this.$useAllColumns = $useAllColumns; - $this.$columns = $columns; -}, -oncia_DefaultOrAllShowColumns__init_ = (var_0, var_1) => { - let var_2 = new oncia_DefaultOrAllShowColumns(); - oncia_DefaultOrAllShowColumns__init_0(var_2, var_0, var_1); - return var_2; -}, -oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0_apply = (var$0, var$1) => { - return var$1.$name20; -}, -oncias_Scope$symbolDefinitions$lambda$_17_0 = $rt_classWithoutFields(), -oncias_Scope$symbolDefinitions$lambda$_17_0_apply = (var$0, var$1) => { - return var$1.$definition; -}, -sc_Map$ = $rt_classWithoutFields(sc_MapFactory$Delegate), -sc_Map$_MODULE$ = null, -sc_Map$_DefaultSentinel = null, -sc_Map$_scala$collection$Map$$DefaultSentinelFn = null, -sc_Map$_$callClinit = () => { - sc_Map$_$callClinit = $rt_eraseClinit(sc_Map$); - sc_Map$__clinit_(); -}, -sc_Map$__clinit_ = () => { - let var$1; - var$1 = new sc_Map$; - sc_Map$_$callClinit(); - sc_MapFactory$Delegate__init_(var$1, sci_Map$_MODULE$); - sc_Map$_MODULE$ = var$1; - sc_Map$_DefaultSentinel = new jl_Object; - sc_Map$_scala$collection$Map$$DefaultSentinelFn = new sc_Map$$_clinit_$lambda$_0_0; -}; -function oncia_CatalogName() { - jl_Object.call(this); - this.$parts1 = null; -} -let oncia_CatalogName_qualifiedNameString = $this => { - return sc_AbstractIterable_mkString(sci_List_map($this.$parts1, new oncia_CatalogName$qualifiedNameString$lambda$_11_0), oncia_CatalogName$_separatorString); -}, -oncia_CatalogName_equals = ($this, $obj) => { - if (!($obj instanceof oncia_CatalogName)) - return 0; - return jl_String_equals(jl_String_toLowerCase(oncia_CatalogName_qualifiedNameString($obj)), jl_String_toLowerCase(oncia_CatalogName_qualifiedNameString($this))); -}, -oncia_CatalogName_hashCode = $this => { - return jl_String_hashCode(jl_String_toLowerCase(oncia_CatalogName_qualifiedNameString($this))); -}, -oncia_CatalogName_productPrefix = $this => { - return $rt_s(4785); -}, -oncia_CatalogName_productArity = $this => { - return 1; -}, -oncia_CatalogName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$parts1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_CatalogName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CatalogName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CatalogName__init_0 = ($this, $parts) => { - $this.$parts1 = $parts; -}, -oncia_CatalogName__init_ = var_0 => { - let var_1 = new oncia_CatalogName(); - oncia_CatalogName__init_0(var_1, var_0); - return var_1; -}, -sc_Map$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), -sc_Map$$_clinit_$lambda$_0_0_apply = var$0 => { - sc_Map$_$callClinit(); - return sc_Map$_DefaultSentinel; -}, -onciu_RewritableJavascript$PROXY$7_71 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_71_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Equals__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_73 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_73_copyConstructor = (var$1, var$2, var$3) => { - return oncie_Null_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_74 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_74_copyConstructor = (var$1, var$2, var$3) => { - return s_Some__init_(var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$9_0 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_0_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_0 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_0_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_1 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_1_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_1 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_1_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_2 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_2_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_2 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_2_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_3 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_3_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_3 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_3_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_4 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_4_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_4 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_4_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_5 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_5_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_5 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_5_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_6 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_6_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_6 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_6_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_7 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_7_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_7 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_7_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}; -let onciu_RewritableJavascript$PROXY$9_8 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_8_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_8 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_8_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_9 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_9_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_9 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_9_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_10 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_10_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_10 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_10_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_11 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_11_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_11 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_11_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_12 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_12_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_12 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_12_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_13 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_13_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_13 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_13_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_14 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_14_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_14 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_14_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_15 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_15_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_15 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_15_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_16 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_16_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_16 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_16_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_17 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_17_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_17 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_17_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$9_18 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_18_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_18 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_18_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$7_75 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_75_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Yield_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); -}, -onciu_RewritableJavascript$PROXY$7_76 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_76_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_With_copy(var$2, var$3[0].$value3, var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7]); -}, -onciu_RewritableJavascript$PROXY$7_77 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_77_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_CaseExpression__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); -}; -let onciu_RewritableJavascript$PROXY$7_78 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_78_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Property__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_79 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_79_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SingleQuery_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_80 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_80_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ScopeClauseSubqueryCall_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4].$value3, var$3[5]); -}, -onciu_RewritableJavascript$PROXY$7_81 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_81_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Return_copy(var$2, var$3[0].$value3, var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6].$value3, var$3[7]); -}, -onciu_RewritableJavascript$PROXY$7_84 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_84_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowRoles_copy(var$2, var$3[0].$value3, var$3[1].$value3, var$3[2], var$3[3], var$3[4]); -}, -onciu_RewritableJavascript$PROXY$7_85 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_85_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowPrivilegeCommands_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4]); -}, -onciu_RewritableJavascript$PROXY$7_86 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_86_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowDatabase_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_87 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_87_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowServers_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_88 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_88_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowUsers_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_89 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_89_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowAliases_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_90 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_90_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowSupportedPrivilegeCommand_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_91 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_91_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowCurrentUser_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_92 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_92_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowPrivileges_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$9_19 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_19_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_19 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_19_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$7_95 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_95_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_GraphDirectReference__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_96 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_96_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_UnsignedDecimalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_97 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_97_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Range_copy(var$2, var$3[0], var$3[1], var$3[2]); -}; -function oncia_OrderBy() { - let a = this; jl_Object.call(a); - a.$sortItems = null; - a.$position104 = null; -} -let oncia_OrderBy_position = $this => { - return $this.$position104; -}, -oncia_OrderBy_semanticCheck = $this => { - let var$1; - var$1 = oncias_SemanticCheckableIterableOnce$_MODULE$; - oncias_package$_$callClinit(); - return oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(var$1, $this.$sortItems); -}, -oncia_OrderBy_copy = ($this, $sortItems, $position) => { - return oncia_OrderBy__init_($sortItems, $position); -}, -oncia_OrderBy_productPrefix = $this => { - return $rt_s(4786); -}, -oncia_OrderBy_productArity = $this => { - return 1; -}, -oncia_OrderBy_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$sortItems; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_OrderBy_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OrderBy_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OrderBy_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OrderBy_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_OrderBy) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$sortItems; - $x$1 = $x$1.$sortItems; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_OrderBy)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_OrderBy_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_OrderBy__init_0 = ($this, $sortItems, $position) => { - $this.$sortItems = $sortItems; - $this.$position104 = $position; -}, -oncia_OrderBy__init_ = (var_0, var_1) => { - let var_2 = new oncia_OrderBy(); - oncia_OrderBy__init_0(var_2, var_0, var_1); - return var_2; -}, -oncie_SensitiveLiteral = $rt_classWithoutFields(0), -oncie_Null$$anon$7 = $rt_classWithoutFields(oncie_Null), -oncie_Null$$anon$7_literalLength = $this => { - return 4; -}; -function sc_IndexedSeqView$IndexedSeqViewReverseIterator() { - let a = this; sc_AbstractIterator.call(a); - a.$self5 = null; - a.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder = 0; - a.$pos6 = 0; -} -let sc_IndexedSeqView$IndexedSeqViewReverseIterator_hasNext = $this => { - if ($this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder <= 0) - return 0; - return 1; -}, -sc_IndexedSeqView$IndexedSeqViewReverseIterator_next = $this => { - let $r; - if (!($this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder <= 0 ? 0 : 1)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - $r = $this.$self5.$apply1($this.$pos6); - $this.$pos6 = $this.$pos6 - 1 | 0; - $this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder = $this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder - 1 | 0; - return $r; -}, -sc_IndexedSeqView$IndexedSeqViewReverseIterator__init_ = ($this, $self) => { - let var$2; - $this.$self5 = $self; - var$2 = $self.$length(); - $this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder = var$2; - $this.$pos6 = var$2 - 1 | 0; -}, -sc_IndexedSeqView$IndexedSeqViewReverseIterator__init_0 = var_0 => { - let var_1 = new sc_IndexedSeqView$IndexedSeqViewReverseIterator(); - sc_IndexedSeqView$IndexedSeqViewReverseIterator__init_(var_1, var_0); - return var_1; -}; -function scm_CheckedIndexedSeqView$CheckedReverseIterator() { - let a = this; sc_IndexedSeqView$IndexedSeqViewReverseIterator.call(a); - a.$mutationCount2 = null; - a.$expectedCount = 0; -} -let scm_CheckedIndexedSeqView$CheckedReverseIterator_hasNext = $this => { - scm_MutationTracker$_checkMutations(scm_MutationTracker$_MODULE$, $this.$expectedCount, scm_ArrayBuffer$view$lambda$_88_0_apply$mcI$sp($this.$mutationCount2), $rt_s(3582)); - return sc_IndexedSeqView$IndexedSeqViewReverseIterator_hasNext($this); -}; -function jusi_BoxedIntStream() { - jusi_SimpleStreamImpl.call(this); - this.$source2 = null; -} -function ju_HashMap$AbstractMapIterator() { - let a = this; jl_Object.call(a); - a.$position93 = 0; - a.$expectedModCount = 0; - a.$futureEntry = null; - a.$currentEntry = null; - a.$prevEntry0 = null; - a.$associatedMap = null; -} -let ju_HashMap$AbstractMapIterator__init_ = ($this, $hm) => { - $this.$associatedMap = $hm; - $this.$expectedModCount = $hm.$modCount0; - $this.$futureEntry = null; -}, -ju_HashMap$AbstractMapIterator__init_0 = var_0 => { - let var_1 = new ju_HashMap$AbstractMapIterator(); - ju_HashMap$AbstractMapIterator__init_(var_1, var_0); - return var_1; -}, -ju_HashMap$AbstractMapIterator_hasNext = $this => { - let var$1, var$2; - if ($this.$futureEntry !== null) - return 1; - while (true) { - var$1 = $this.$position93; - var$2 = $this.$associatedMap.$elementData.data; - if (var$1 >= var$2.length) - break; - if (var$2[var$1] !== null) - return 1; - $this.$position93 = var$1 + 1 | 0; - } - return 0; -}, -ju_HashMap$AbstractMapIterator_checkConcurrentMod = $this => { - let var$1; - if ($this.$expectedModCount == $this.$associatedMap.$modCount0) - return; - var$1 = new ju_ConcurrentModificationException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}, -ju_HashMap$AbstractMapIterator_makeNext = $this => { - let var$1, var$2, var$3, var$4; - ju_HashMap$AbstractMapIterator_checkConcurrentMod($this); - if (!ju_HashMap$AbstractMapIterator_hasNext($this)) { - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - } - var$1 = $this.$futureEntry; - if (var$1 !== null) { - var$2 = $this.$currentEntry; - if (var$2 !== null) - $this.$prevEntry0 = var$2; - $this.$currentEntry = var$1; - $this.$futureEntry = var$1.$next7; - } else { - var$3 = $this.$associatedMap.$elementData.data; - var$4 = $this.$position93; - $this.$position93 = var$4 + 1 | 0; - var$1 = var$3[var$4]; - $this.$currentEntry = var$1; - $this.$futureEntry = var$1.$next7; - $this.$prevEntry0 = null; - } -}, -ju_HashMap$AbstractMapIterator_remove = $this => { - let var$1, var$2, var$3, var$4, $index; - ju_HashMap$AbstractMapIterator_checkConcurrentMod($this); - var$1 = $this.$currentEntry; - if (var$1 === null) { - var$1 = new jl_IllegalStateException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - } - var$2 = $this.$prevEntry0; - if (var$2 !== null) - var$2.$next7 = var$1.$next7; - else { - var$3 = var$1.$origKeyHash; - var$4 = $this.$associatedMap.$elementData.data; - $index = var$3 & (var$4.length - 1 | 0); - var$4[$index] = var$4[$index].$next7; - } - $this.$currentEntry = null; - $this.$expectedModCount = $this.$expectedModCount + 1 | 0; - var$1 = $this.$associatedMap; - var$1.$modCount0 = var$1.$modCount0 + 1 | 0; - var$1.$elementCount = var$1.$elementCount - 1 | 0; -}, -ju_HashMap$KeyIterator = $rt_classWithoutFields(ju_HashMap$AbstractMapIterator), -ju_HashMap$KeyIterator_next = $this => { - ju_HashMap$AbstractMapIterator_makeNext($this); - return $this.$currentEntry.$key0; -}, -juf_IntFunction = $rt_classWithoutFields(0), -jusi_SimpleStreamImpl$toArray$lambda$_20_0 = $rt_classWithoutFields(); -function oncia_ShowColumn() { - let a = this; jl_Object.call(a); - a.$variable20 = null; - a.$cypherType0 = null; - a.$name20 = null; -} -let oncia_ShowColumn_productPrefix = $this => { - return $rt_s(4787); -}, -oncia_ShowColumn_productArity = $this => { - return 3; -}, -oncia_ShowColumn_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable20; - case 1: - return $this.$cypherType0; - case 2: - return $this.$name20; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowColumn_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowColumn_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowColumn_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowColumn_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowColumn) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable20; - var$3 = $x$1.$variable20; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$cypherType0; - var$3 = $x$1.$cypherType0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$name20; - $x$1 = $x$1.$name20; - if (var$3 !== null) { - if (!jl_String_equals(var$3, $x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_ShowColumn)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_ShowColumn__init_ = ($this, $variable, $cypherType, $name) => { - $this.$variable20 = $variable; - $this.$cypherType0 = $cypherType; - $this.$name20 = $name; -}, -oncia_ShowColumn__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_ShowColumn(); - oncia_ShowColumn__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_In() { - let a = this; oncie_Expression.call(a); - a.$lhs4 = null; - a.$rhs4 = null; - a.$position96 = null; -} -let oncie_In_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_In_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_In_canonicalOperatorSymbol = $this => { - return oncie_OperatorExpression_canonicalOperatorSymbol$($this); -}, -oncie_In_lhs = $this => { - return $this.$lhs4; -}, -oncie_In_rhs = $this => { - return $this.$rhs4; -}, -oncie_In_position = $this => { - return $this.$position96; -}, -oncie_In_copy = ($this, $lhs, $rhs, $position) => { - return oncie_In__init_($lhs, $rhs, $position); -}, -oncie_In_productPrefix = $this => { - return $rt_s(137); -}, -oncie_In_productArity = $this => { - return 2; -}, -oncie_In_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs4; - case 1: - return $this.$rhs4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_In_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_In_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_In_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_In_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_In) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs4; - var$3 = $x$1.$lhs4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs4; - $x$1 = $x$1.$rhs4; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_In)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_In__init_0 = ($this, $lhs, $rhs, $position) => { - $this.$lhs4 = $lhs; - $this.$rhs4 = $rhs; - $this.$position96 = $position; - oncie_Expression__init_($this); -}, -oncie_In__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_In(); - oncie_In__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_ListLiteral() { - let a = this; oncie_Expression.call(a); - a.$expressions0 = null; - a.$position155 = null; -} -let oncie_ListLiteral_expressions = $this => { - return $this.$expressions0; -}, -oncie_ListLiteral_position = $this => { - return $this.$position155; -}, -oncie_ListLiteral_asCanonicalStringVal = $this => { - return sc_IterableOnceOps_mkString$($this.$expressions0.$map(new oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0), $rt_s(426), $rt_s(45), $rt_s(427)); -}, -oncie_ListLiteral_isConstantForQuery = $this => { - return $this.$expressions0.$forall(new oncie_ListLiteral$isConstantForQuery$lambda$_6_0); -}, -oncie_ListLiteral_copy = ($this, $expressions, $position) => { - return oncie_ListLiteral__init_0($expressions, $position); -}, -oncie_ListLiteral_productPrefix = $this => { - return $rt_s(4788); -}, -oncie_ListLiteral_productArity = $this => { - return 1; -}, -oncie_ListLiteral_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expressions0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_ListLiteral_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ListLiteral_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ListLiteral_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ListLiteral_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ListLiteral) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expressions0; - $x$1 = $x$1.$expressions0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_ListLiteral)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_ListLiteral__init_ = ($this, $expressions, $position) => { - $this.$expressions0 = $expressions; - $this.$position155 = $position; - oncie_Expression__init_($this); -}, -oncie_ListLiteral__init_0 = (var_0, var_1) => { - let var_2 = new oncie_ListLiteral(); - oncie_ListLiteral__init_(var_2, var_0, var_1); - return var_2; -}, -oncie_BooleanLiteral = $rt_classWithoutFields(0); -function oncie_False() { - let a = this; oncie_Expression.call(a); - a.$position183 = null; - a.$value44 = null; -} -let oncie_False_isConstantForQuery = $this => { - return 1; -}, -oncie_False_position = $this => { - return $this.$position183; -}, -oncie_False_asCanonicalStringVal = $this => { - return $rt_s(19); -}, -oncie_False_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_False$$anon$11; - oncie_False__init_(var$1, $this.$position183); - return var$1; -}, -oncie_False_copy = ($this, $position) => { - return oncie_False__init_0($position); -}, -oncie_False_productPrefix = $this => { - return $rt_s(4789); -}, -oncie_False_productArity = $this => { - return 0; -}, -oncie_False_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_False_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_False_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_False; -}, -oncie_False_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_False_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_False_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_False) ? 0 : 1; - return var$2 && $this instanceof oncie_False ? 1 : 0; -}, -oncie_False__init_ = ($this, $position) => { - $this.$position183 = $position; - oncie_Expression__init_($this); - s_Predef$_$callClinit(); - $this.$value44 = jl_Boolean_valueOf(0); -}, -oncie_False__init_0 = var_0 => { - let var_1 = new oncie_False(); - oncie_False__init_(var_1, var_0); - return var_1; -}; -function oncia_ASTAnnotationMap$PositionedNode() { - jl_Object.call(this); - this.$node1 = null; -} -let oncia_ASTAnnotationMap$PositionedNode_toString = $this => { - let var$1, var$2, var$3, var$4; - var$1 = $this.$node1; - var$2 = (var$1.$position()).$offset(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4790)), var$1); - jl_AbstractStringBuilder_append0(var$4, 64); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(var$4, var$2), 41); - return jl_AbstractStringBuilder_toString(var$3); -}, -oncia_ASTAnnotationMap$PositionedNode_equals = ($this, $that) => { - let var$2, var$3, var$4; - if (!($that instanceof oncia_ASTAnnotationMap$PositionedNode)) - return 0; - a: { - b: { - $that = $that; - if ($this instanceof oncia_ASTAnnotationMap$PositionedNode) { - c: { - var$2 = $this.$node1; - var$3 = $that.$node1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$node1.$position(); - $that = $that.$node1.$position(); - if (var$3 !== null) { - if (!var$3.$equals($that)) - break b; - else - break d; - } - if ($that !== null) - break b; - } - var$4 = 1; - break a; - } - } - var$4 = 0; - } - return var$4; -}, -oncia_ASTAnnotationMap$PositionedNode_hashCode = $this => { - let var$1, var$2; - var$1 = new s_Tuple2; - var$2 = $this.$node1; - s_Tuple2__init_0(var$1, var$2, var$2.$position()); - return s_Tuple2_hashCode(var$1); -}, -oncia_ASTAnnotationMap$PositionedNode_productArity = $this => { - return 1; -}, -oncia_ASTAnnotationMap$PositionedNode_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$node1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ASTAnnotationMap$PositionedNode_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}; -function oncia_SingleQuery$semanticCheck$lambda$_67_0() { - jl_Object.call(this); - this.$_0138 = null; -} -let oncia_SingleQuery$semanticCheck$lambda$_67_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_checkClauses(var$0.$_0138, var$1, s_None$_MODULE$); -}; -function scm_RedBlackTree$TreeIterator() { - let a = this; sc_AbstractIterator.call(a); - a.$end5 = null; - a.$ord1 = null; - a.$nextNode = null; -} -let scm_RedBlackTree$TreeIterator_hasNext = $this => { - if ($this.$nextNode === null) - return 0; - return 1; -}, -scm_RedBlackTree$TreeIterator_next = $this => { - let var$1, var$2; - var$1 = $this.$nextNode; - if (var$1 === null) { - var$2 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$2, $rt_s(821)); - $rt_throw(var$2); - } - $this.$nextNode = scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$successor(scm_RedBlackTree$_MODULE$, var$1); - scm_RedBlackTree$TreeIterator_setNullIfAfterEnd($this); - return var$1.$key2; -}, -scm_RedBlackTree$TreeIterator_setNullIfAfterEnd = $this => { - let var$1; - if (s_Option_isDefined($this.$end5)) { - var$1 = $this.$nextNode; - if (var$1 !== null && onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($this.$ord1, var$1.$key2, s_None$_get($this.$end5)) >= 0) { - $this.$nextNode = null; - return; - } - } -}, -scm_RedBlackTree$KeysIterator = $rt_classWithoutFields(scm_RedBlackTree$TreeIterator), -oncia_ShowPrivilegeScope = $rt_classWithoutFields(0); -function ju_HashMap$HashMapEntrySet() { - ju_AbstractSet.call(this); - this.$associatedMap0 = null; -} -let ju_HashMap$HashMapEntrySet_size = $this => { - return $this.$associatedMap0.$elementCount; -}, -ju_HashMap$HashMapEntrySet_iterator = $this => { - let var$1; - var$1 = new ju_HashMap$EntryIterator; - ju_HashMap$AbstractMapIterator__init_(var$1, $this.$associatedMap0); - return var$1; -}, -oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems$lambda$_40_0 = $rt_classWithoutFields(), -oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems$lambda$_40_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - if (var$1 instanceof oncia_UnaliasedReturnItem) { - var$2 = var$1; - if (s_Option_isDefined(var$2.$alias0)) - var$1 = oncia_AliasedReturnItem__init_(var$2.$expression17, var$2.$alias0.$get1(), var$2.$position94); - } - return var$1; -}, -oncia_Union = $rt_classWithoutFields(0), -oncia_Union_returnVariables$ = $$this => { - return oncia_ReturnItems$ReturnVariables__init_(!(($$this.$lhs()).$returnVariables()).$includeExisting1 && !(oncia_SingleQuery_returnVariables($$this.$rhs())).$includeExisting1 ? 0 : 1, sci_List_map($$this.$unionMappings(), new oncia_Union$returnVariables$lambda$_6_0)); -}, -oncia_Union_getReturns$ = $$this => { - return (($$this.$lhs()).$getReturns()).$concat(oncia_SingleQuery_getReturns($$this.$rhs())); -}, -oncia_Union_importColumns$ = $$this => { - return (($$this.$lhs()).$importColumns()).$concat(oncia_SingleQuery_importColumns($$this.$rhs())); -}, -oncia_Union_containsUpdates$ = $$this => { - return !($$this.$lhs()).$containsUpdates() && !oncia_SingleQuery_containsUpdates($$this.$rhs()) ? 0 : 1; -}, -oncia_Union_checkRecursively = ($this, $semanticCheck) => { - let var$2, var$3; - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_Union$checkRecursively$lambda$_13_0; - var$3.$_0455 = $this; - var$3.$_1158 = $semanticCheck; - return oncias_SemanticCheck$_fromState(var$2, var$3); -}, -oncia_Union_semanticCheck$ = $$this => { - return oncia_Union_checkRecursively($$this, new oncia_Union$semanticCheck$lambda$_15_0); -}, -oncia_Union_semanticCheckInSubqueryExpressionContext$ = ($$this, $canOmitReturn) => { - let var$3; - var$3 = new oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0; - var$3.$_0911 = $canOmitReturn; - return oncia_Union_checkRecursively($$this, var$3); -}, -oncia_Union_checkImportingWith$ = $$this => { - let var$2, var$3; - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_Union$checkImportingWith$lambda$_19_0; - var$3.$_0876 = $$this; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck$_nestedCheck(var$2, var$3), oncia_SingleQuery_checkImportingWith($$this.$rhs())); -}, -oncia_Union_isCorrelated$ = $$this => { - return !($$this.$lhs()).$isCorrelated() && !oncia_SingleQuery_isCorrelated($$this.$rhs()) ? 0 : 1; -}, -oncia_Union_isReturning$ = $$this => { - return oncia_SingleQuery_isReturning($$this.$rhs()); -}, -oncia_Union_endsWithFinish$ = $$this => { - return !oncia_SingleQuery_endsWithFinish($$this.$rhs()) && !($$this.$lhs()).$endsWithFinish() ? 0 : 1; -}, -oncia_Union_semanticCheckInSubqueryContext$ = ($$this, $outer, $current) => { - let var$4; - var$4 = new oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0; - var$4.$_0952 = $outer; - var$4.$_1334 = $current; - return oncia_Union_checkRecursively($$this, var$4); -}, -oncia_Union_semanticCheckImportingWithSubQueryContext$ = ($$this, $outer) => { - let var$3; - var$3 = new oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_31_0; - var$3.$_0377 = $outer; - return oncia_Union_checkRecursively($$this, var$3); -}, -oncia_Union_finalScope$ = ($$this, $scope) => { - return $scope.$children2.$last(); -}, -oncia_Union_checkSingleQuery$1 = ($this, $singleQuery, $semanticCheck$1) => { - let var$3; - var$3 = new oncia_Union$checkSingleQuery$1$lambda$_41_0; - var$3.$_0919 = $this; - var$3.$_1320 = $semanticCheck$1; - var$3.$_2107 = $singleQuery; - return $this.$withScopedState(var$3); -}, -oncia_Union_Mapping$3 = ($this, $Mapping$module$1) => { - let var$2, $$je; - if ($Mapping$module$1.$_initialized) - return $Mapping$module$1.$_value0; - jl_Object_monitorEnterSync($Mapping$module$1); - a: { - try { - var$2 = sr_LazyRef_initialized($Mapping$module$1) ? sr_LazyRef_value($Mapping$module$1) : sr_LazyRef_initialize($Mapping$module$1, oncia_Union$Mapping$2$__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($Mapping$module$1); - return var$2; - } - jl_Object_monitorExitSync($Mapping$module$1); - $rt_throw(var$2); -}, -oncia_UnmappedUnion = $rt_classWithoutFields(0), -oncia_UnmappedUnion_dup$ = ($$this, $children) => { - let var$3, var$4, var$5, var$6; - $children = $$this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup($children); - var$3 = ($$this.$lhs()).$returnColumns(); - var$4 = oncia_Query_returnColumns$($$this.$rhs()); - var$5 = ($children.$lhs()).$returnColumns(); - var$6 = oncia_Query_returnColumns$($children.$rhs()); - if (oncia_UnmappedUnion_containTheSameInstances$1(var$3, var$5) && oncia_UnmappedUnion_containTheSameInstances$1(var$4, var$6)) - $children.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq($$this.$unionMappings()); - return $children; -}, -oncia_UnmappedUnion_checkColumnNamesAgree$ = $$this => { - let var$2, var$3; - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0; - var$3.$_0242 = $$this; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); -}, -oncia_UnmappedUnion_containTheSameInstances$1 = ($a, $b) => { - let var$3; - var$3 = new oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0; - var$3.$_0315 = $b; - return sci_List_forall($a, var$3) && $a.$length() == $b.$length() ? 1 : 0; -}, -oncia_UnmappedUnion_$init$ = $$this => { - let var$2, var$3; - var$2 = ($$this.$lhs()).$returnColumns(); - var$3 = new oncia_UnmappedUnion$$init$$lambda$_16_0; - var$3.$_012 = $$this; - $$this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq(sci_List_flatMap(var$2, var$3)); -}; -function oncia_UnionAll() { - let a = this; jl_Object.call(a); - a.$lhs5 = null; - a.$rhs5 = null; - a.$differentReturnOrderAllowed0 = 0; - a.$position112 = null; - a.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings0 = null; -} -let oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_UnionAll_unionMappings = $this => { - return $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings(); -}, -oncia_UnionAll_checkColumnNamesAgree = $this => { - return oncia_UnmappedUnion_checkColumnNamesAgree$($this); -}, -oncia_UnionAll_returnVariables = $this => { - return oncia_Union_returnVariables$($this); -}, -oncia_UnionAll_getReturns = $this => { - return oncia_Union_getReturns$($this); -}, -oncia_UnionAll_importColumns = $this => { - return oncia_Union_importColumns$($this); -}, -oncia_UnionAll_containsUpdates = $this => { - return oncia_Union_containsUpdates$($this); -}, -oncia_UnionAll_semanticCheck = $this => { - return oncia_Union_semanticCheck$($this); -}, -oncia_UnionAll_semanticCheckInSubqueryExpressionContext = ($this, $canOmitReturn) => { - return oncia_Union_semanticCheckInSubqueryExpressionContext$($this, $canOmitReturn); -}, -oncia_UnionAll_checkImportingWith = $this => { - return oncia_Union_checkImportingWith$($this); -}, -oncia_UnionAll_isCorrelated = $this => { - return oncia_Union_isCorrelated$($this); -}, -oncia_UnionAll_isReturning = $this => { - return oncia_Union_isReturning$($this); -}, -oncia_UnionAll_endsWithFinish = $this => { - return oncia_Union_endsWithFinish$($this); -}, -oncia_UnionAll_semanticCheckInSubqueryContext = ($this, $outer, $current) => { - return oncia_Union_semanticCheckInSubqueryContext$($this, $outer, $current); -}, -oncia_UnionAll_semanticCheckImportingWithSubQueryContext = ($this, $outer) => { - return oncia_Union_semanticCheckImportingWithSubQueryContext$($this, $outer); -}, -oncia_UnionAll_finalScope = ($this, $scope) => { - return oncia_Union_finalScope$($this, $scope); -}, -oncia_UnionAll_returnColumns = $this => { - return oncia_Query_returnColumns$($this); -}, -oncia_UnionAll_withScopedState = ($this, $check) => { - return oncias_SemanticAnalysisTooling_withScopedState$($this, $check); -}, -oncia_UnionAll_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_UnionAll_foldedOver = $this => { - return $this; -}, -oncia_UnionAll_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings = $this => { - return $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings0; -}, -oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings0 = $x$1; -}, -oncia_UnionAll_lhs = $this => { - return $this.$lhs5; -}, -oncia_UnionAll_rhs = $this => { - return $this.$rhs5; -}, -oncia_UnionAll_differentReturnOrderAllowed = $this => { - return $this.$differentReturnOrderAllowed0; -}, -oncia_UnionAll_position = $this => { - return $this.$position112; -}, -oncia_UnionAll_mapEachSingleQuery = ($this, $f) => { - return oncia_UnionAll_copy($this, $this.$lhs5.$mapEachSingleQuery($f), $f.$apply2($this.$rhs5), $this.$differentReturnOrderAllowed0, $this.$position112); -}, -oncia_UnionAll_copy = ($this, $lhs, $rhs, $differentReturnOrderAllowed, $position) => { - return oncia_UnionAll__init_($lhs, $rhs, $differentReturnOrderAllowed, $position); -}, -oncia_UnionAll_productPrefix = $this => { - return $rt_s(4791); -}, -oncia_UnionAll_productArity = $this => { - return 3; -}, -oncia_UnionAll_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs5; - case 1: - return $this.$rhs5; - case 2: - return jl_Boolean_valueOf($this.$differentReturnOrderAllowed0); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_UnionAll_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnionAll_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4791))), sr_Statics_anyHash($this.$lhs5)), sr_Statics_anyHash($this.$rhs5)), !$this.$differentReturnOrderAllowed0 ? 1237 : 1231), 3); -}, -oncia_UnionAll_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnionAll_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UnionAll) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$differentReturnOrderAllowed0 != $x$1.$differentReturnOrderAllowed0) - break b; - d: { - var$2 = $this.$lhs5; - var$3 = $x$1.$lhs5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$rhs5; - $x$1 = $x$1.$rhs5; - if (var$3 !== null) { - if (!oncia_SingleQuery_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_UnionAll_dup = ($this, $children) => { - return oncia_UnmappedUnion_dup$($this, $children); -}, -oncia_UnionAll__init_0 = ($this, $lhs, $rhs, $differentReturnOrderAllowed, $position) => { - $this.$lhs5 = $lhs; - $this.$rhs5 = $rhs; - $this.$differentReturnOrderAllowed0 = $differentReturnOrderAllowed; - $this.$position112 = $position; - oncia_UnmappedUnion_$init$($this); -}, -oncia_UnionAll__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_UnionAll(); - oncia_UnionAll__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncia_UnionDistinct() { - let a = this; jl_Object.call(a); - a.$lhs6 = null; - a.$rhs6 = null; - a.$differentReturnOrderAllowed1 = 0; - a.$position90 = null; - a.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings1 = null; -} -let oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_UnionDistinct_unionMappings = $this => { - return $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings(); -}, -oncia_UnionDistinct_checkColumnNamesAgree = $this => { - return oncia_UnmappedUnion_checkColumnNamesAgree$($this); -}, -oncia_UnionDistinct_returnVariables = $this => { - return oncia_Union_returnVariables$($this); -}, -oncia_UnionDistinct_getReturns = $this => { - return oncia_Union_getReturns$($this); -}, -oncia_UnionDistinct_importColumns = $this => { - return oncia_Union_importColumns$($this); -}, -oncia_UnionDistinct_containsUpdates = $this => { - return oncia_Union_containsUpdates$($this); -}, -oncia_UnionDistinct_semanticCheck = $this => { - return oncia_Union_semanticCheck$($this); -}, -oncia_UnionDistinct_semanticCheckInSubqueryExpressionContext = ($this, $canOmitReturn) => { - return oncia_Union_semanticCheckInSubqueryExpressionContext$($this, $canOmitReturn); -}, -oncia_UnionDistinct_checkImportingWith = $this => { - return oncia_Union_checkImportingWith$($this); -}, -oncia_UnionDistinct_isCorrelated = $this => { - return oncia_Union_isCorrelated$($this); -}, -oncia_UnionDistinct_isReturning = $this => { - return oncia_Union_isReturning$($this); -}, -oncia_UnionDistinct_endsWithFinish = $this => { - return oncia_Union_endsWithFinish$($this); -}, -oncia_UnionDistinct_semanticCheckInSubqueryContext = ($this, $outer, $current) => { - return oncia_Union_semanticCheckInSubqueryContext$($this, $outer, $current); -}, -oncia_UnionDistinct_semanticCheckImportingWithSubQueryContext = ($this, $outer) => { - return oncia_Union_semanticCheckImportingWithSubQueryContext$($this, $outer); -}, -oncia_UnionDistinct_finalScope = ($this, $scope) => { - return oncia_Union_finalScope$($this, $scope); -}, -oncia_UnionDistinct_returnColumns = $this => { - return oncia_Query_returnColumns$($this); -}, -oncia_UnionDistinct_withScopedState = ($this, $check) => { - return oncias_SemanticAnalysisTooling_withScopedState$($this, $check); -}, -oncia_UnionDistinct_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_UnionDistinct_foldedOver = $this => { - return $this; -}, -oncia_UnionDistinct_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings = $this => { - return $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings1; -}, -oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings1 = $x$1; -}, -oncia_UnionDistinct_lhs = $this => { - return $this.$lhs6; -}, -oncia_UnionDistinct_rhs = $this => { - return $this.$rhs6; -}, -oncia_UnionDistinct_differentReturnOrderAllowed = $this => { - return $this.$differentReturnOrderAllowed1; -}, -oncia_UnionDistinct_position = $this => { - return $this.$position90; -}, -oncia_UnionDistinct_mapEachSingleQuery = ($this, $f) => { - return oncia_UnionDistinct_copy($this, $this.$lhs6.$mapEachSingleQuery($f), $f.$apply2($this.$rhs6), $this.$differentReturnOrderAllowed1, $this.$position90); -}, -oncia_UnionDistinct_copy = ($this, $lhs, $rhs, $differentReturnOrderAllowed, $position) => { - return oncia_UnionDistinct__init_($lhs, $rhs, $differentReturnOrderAllowed, $position); -}, -oncia_UnionDistinct_productPrefix = $this => { - return $rt_s(4792); -}, -oncia_UnionDistinct_productArity = $this => { - return 3; -}, -oncia_UnionDistinct_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs6; - case 1: - return $this.$rhs6; - case 2: - return jl_Boolean_valueOf($this.$differentReturnOrderAllowed1); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_UnionDistinct_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnionDistinct_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4792))), sr_Statics_anyHash($this.$lhs6)), sr_Statics_anyHash($this.$rhs6)), !$this.$differentReturnOrderAllowed1 ? 1237 : 1231), 3); -}, -oncia_UnionDistinct_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UnionDistinct_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UnionDistinct) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$differentReturnOrderAllowed1 != $x$1.$differentReturnOrderAllowed1) - break b; - d: { - var$2 = $this.$lhs6; - var$3 = $x$1.$lhs6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$rhs6; - $x$1 = $x$1.$rhs6; - if (var$3 !== null) { - if (!oncia_SingleQuery_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_UnionDistinct_dup = ($this, $children) => { - return oncia_UnmappedUnion_dup$($this, $children); -}, -oncia_UnionDistinct__init_0 = ($this, $lhs, $rhs, $differentReturnOrderAllowed, $position) => { - $this.$lhs6 = $lhs; - $this.$rhs6 = $rhs; - $this.$differentReturnOrderAllowed1 = $differentReturnOrderAllowed; - $this.$position90 = $position; - oncia_UnmappedUnion_$init$($this); -}, -oncia_UnionDistinct__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_UnionDistinct(); - oncia_UnionDistinct__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oncia_ProjectingUnion = $rt_classWithoutFields(0); -function scm_ArrayDeque$addAll$lambda$_98_0() { - jl_Object.call(this); - this.$_01141 = null; -} -let scm_ArrayDeque$addAll$lambda$_98_0_apply = (var$0, var$1) => { - return var$0.$_01141.$addOne(var$1); -}; -function scm_ArrayDeque$addAll$lambda$_98_1() { - jl_Object.call(this); - this.$_072 = null; -} -let scm_ArrayDeque$addAll$lambda$_98_1_apply = (var$0, var$1) => { - return scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$appendAssumingCapacity(var$0.$_072, var$1); -}; -function jusi_FilteringStreamImpl() { - jusi_WrappingStreamImpl.call(this); - this.$filter6 = null; -} -let jusi_FilteringStreamImpl_wrap = ($this, $consumer) => { - let var$2; - var$2 = new jusi_FilteringStreamImpl$wrap$lambda$_1_0; - var$2.$_0127 = $this; - var$2.$_147 = $consumer; - return var$2; -}; -function ju_LinkedList$SequentialListIterator() { - let a = this; jl_Object.call(a); - a.$nextEntry = null; - a.$prevEntry = null; - a.$currentEntry0 = null; - a.$index5 = 0; - a.$version0 = 0; - a.$this$00 = null; -} -let ju_LinkedList$SequentialListIterator__init_0 = ($this, var$1, $nextEntry, $prevEntry, $index) => { - $this.$this$00 = var$1; - $this.$version0 = var$1.$modCount; - $this.$nextEntry = $nextEntry; - $this.$prevEntry = $prevEntry; - $this.$index5 = $index; -}, -ju_LinkedList$SequentialListIterator__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new ju_LinkedList$SequentialListIterator(); - ju_LinkedList$SequentialListIterator__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -ju_LinkedList$SequentialListIterator_hasNext = $this => { - return $this.$nextEntry === null ? 0 : 1; -}, -ju_LinkedList$SequentialListIterator_next = $this => { - let var$1, $result; - ju_LinkedList$SequentialListIterator_checkConcurrentModification($this); - var$1 = $this.$nextEntry; - if (var$1 === null) { - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - } - $result = var$1.$item; - $this.$currentEntry0 = var$1; - $this.$prevEntry = var$1; - $this.$nextEntry = var$1.$next8; - $this.$index5 = $this.$index5 + 1 | 0; - return $result; -}, -ju_LinkedList$SequentialListIterator_nextIndex = $this => { - return $this.$index5; -}, -ju_LinkedList$SequentialListIterator_checkConcurrentModification = $this => { - let var$1; - if ($this.$version0 >= $this.$this$00.$modCount) - return; - var$1 = new ju_ConcurrentModificationException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}; -function ju_LinkedList$Entry() { - let a = this; jl_Object.call(a); - a.$item = null; - a.$next8 = null; - a.$previous0 = null; -} -let oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_0 = $rt_classWithoutFields(), -oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1)); -}; -function oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_1() { - jl_Object.call(this); - this.$_01101 = null; -} -let oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_01101; - var$3 = new oncia_Return; - var$4 = new oncia_ReturnItems; - var$5 = new oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0; - var$5.$_0978 = var$2; - var$6 = var$1.$map(var$5); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_(var$4, 0, var$6, s_None$_MODULE$, var$2.$position9); - var$5 = s_None$_MODULE$; - oncia_Return$_$callClinit(); - oncia_Return__init_(var$3, 0, var$4, var$5, var$5, var$5, oncia_Return$_apply$default$6(oncia_Return$_MODULE$), 0, var$2.$position9); - return var$3; -}, -su_Try$ = $rt_classWithoutFields(), -su_Try$_MODULE$ = null, -su_Try$_$callClinit = () => { - su_Try$_$callClinit = $rt_eraseClinit(su_Try$); - su_Try$__clinit_(); -}, -su_Try$__clinit_ = () => { - let var$1; - var$1 = new su_Try$; - su_Try$_$callClinit(); - su_Try$_MODULE$ = var$1; -}; -function oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0() { - let a = this; jl_Object.call(a); - a.$_01204 = null; - a.$_1321 = null; - a.$_2108 = null; -} -let oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - var$1 = var$0.$_1321; - var$2 = var$0.$_2108; - oncifp_ResolvedCall$_$callClinit(); - var$3 = oncifp_ResolvedCall$_MODULE$; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$4 = var$2.$declaredArguments; - var$5 = var$2.$declaredResult; - var$6 = var$2.$yieldAll2; - var$7 = var$2.$optional0; - var$8 = jl_Boolean_valueOf(var$6); - var$9 = jl_Boolean_valueOf(var$7); - var$7 = sr_BoxesRunTime_unboxToBoolean(var$8); - var$6 = sr_BoxesRunTime_unboxToBoolean(var$9); - var$10 = var$2.$position47; - var$8 = oncifp_RewriteProcedureCalls_$anonfun$resolveProcedure$1(var$1, oncifp_QualifiedName__init_(var$2.$procedureNamespace.$parts0, var$2.$procedureName1.$name23)); - var$1 = new oncifp_ResolvedCall$$apply$lambda$_5_0; - var$1.$_0365 = var$8; - var$1.$_1134 = var$10; - var$11 = s_Option_getOrElse(var$4, var$1); - var$9 = (var$11.$zipAll(sci_ArraySeq_map(sci_ArraySeq_take(var$8.$inputSignature0, var$11.$length()), new oncifp_ResolvedCall$$apply$lambda$_5_1), null, jl_Boolean_valueOf(0))).$map(new oncifp_ResolvedCall$$apply$lambda$_5_2); - var$11 = s_Option_map(var$5, new oncifp_ResolvedCall$$apply$lambda$_5_3); - var$1 = new oncifp_ResolvedCall$$apply$lambda$_5_4; - var$1.$_01194 = var$3; - var$1.$_1245 = var$8; - var$1.$_278 = var$10; - var$3 = s_Option_getOrElse(var$11, var$1); - if (s_Option_isDefined(s_Option_flatMap(var$5, new oncifp_ResolvedCall$$apply$lambda$_5_5))) { - var$1 = new jl_IllegalArgumentException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4793)), var$2); - jl_Exception__init_0(var$1, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$1); - } - var$1 = oncifp_ResolvedCall__init_(var$8, var$9, var$3, s_Option_isDefined(var$4), s_Option_isDefined(var$5), var$7, var$6, var$10); - var$8 = sci_ArraySeq_map(var$1.$signature.$inputSignature0, new oncifp_ResolvedCall$coerceArguments$lambda$_22_0); - onciu_ZippableUtil$_$callClinit(); - var$9 = onciu_ZippableUtil$_Zippable(onciu_ZippableUtil$_MODULE$, var$1.$callArguments); - var$2 = s_None$_MODULE$; - sc_BuildFrom$_$callClinit(); - var$2 = (onciu_ZippableUtil$Zippable_zipLeft(var$9, var$8, var$2, sc_BuildFrom$_buildFromIterableOps(sc_BuildFrom$_MODULE$))).$map(new oncifp_ResolvedCall$coerceArguments$lambda$_22_1); - return oncifp_ResolvedCall_copy(var$1, var$1.$signature, var$2, var$1.$callResults, var$1.$declaredArguments0, var$1.$declaredResults, var$1.$yieldAll3, var$1.$optional3, var$1.$position9); -}; -function oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_1() { - jl_Object.call(this); - this.$_0347 = null; -} -let oncief_UserDefinedFunctionInvocation = $rt_classWithoutFields(0), -oncias_SemanticCheckableExpression = $rt_classWithoutFields(0); -function oncifp_ResolvedFunctionInvocation() { - let a = this; oncie_Expression.call(a); - a.$qualifiedName = null; - a.$fcnSignature = null; - a.$callArguments0 = null; - a.$position11 = null; -} -let oncifp_ResolvedFunctionInvocation_position = $this => { - return $this.$position11; -}, -oncifp_ResolvedFunctionInvocation_semanticCheck = ($this, $ctx) => { - let $signature, $qn, var$4, $usedDefaultArgs, $expectedNumArgs, $actualNumArgs; - $signature = $this.$fcnSignature; - if (jl_Object_equals(s_None$_MODULE$, $signature)) { - $ctx = $this.$qualifiedName; - if ($ctx !== null) { - $signature = $ctx.$namespace5; - $qn = $ctx.$name21; - if ($signature !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $signature); - if (!$signature.$lengthCompare(0) && jl_String_equalsIgnoreCase($qn, $rt_s(4794))) { - oncias_package$_$callClinit(); - $ctx = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - $signature = oncias_SemanticError$_MODULE$; - var$4 = $this.$qualifiedName; - $usedDefaultArgs = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($usedDefaultArgs); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($usedDefaultArgs, $rt_s(4795)), var$4), $rt_s(4796)); - return oncias_package$_liftSemanticErrorDef($ctx, oncias_SemanticError$_apply($signature, jl_AbstractStringBuilder_toString($usedDefaultArgs), $this.$position11)); - } - } - } - oncias_package$_$callClinit(); - $ctx = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - $signature = oncias_SemanticError$_MODULE$; - var$4 = $this.$qualifiedName; - $usedDefaultArgs = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($usedDefaultArgs); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($usedDefaultArgs, $rt_s(4795)), var$4), 39); - return oncias_package$_liftSemanticErrorDef($ctx, oncias_SemanticError$_apply($signature, jl_AbstractStringBuilder_toString($usedDefaultArgs), $this.$position11)); - } - if (!($signature instanceof s_Some)) - $rt_throw(s_MatchError__init_($signature)); - $signature = $signature.$value5; - $expectedNumArgs = $signature.$inputSignature.$length(); - $usedDefaultArgs = sc_StrictOptimizedIterableOps_flatMap$(sci_ArraySeq_drop($signature.$inputSignature, $this.$callArguments0.$length()), new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0); - $actualNumArgs = $this.$callArguments0.$length() + $usedDefaultArgs.$length() | 0; - if ($expectedNumArgs == $actualNumArgs) { - $qn = sci_ArraySeq_map(sci_ArraySeq_zip($signature.$inputSignature, $this.$callArguments0), new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1); - oncias_SemanticCheck$_$callClinit(); - $ctx = sci_ArraySeq_foldLeft($qn, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$), new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2); - oncias_package$_$callClinit(); - $usedDefaultArgs = oncias_package$_MODULE$; - oncias_SemanticExpressionCheck$_$callClinit(); - $qn = oncias_SemanticExpressionCheck$_MODULE$; - var$4 = new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3; - var$4.$_0233 = $signature; - return $ctx.$chain(oncias_package$_liftSemanticEitherFunc($usedDefaultArgs, oncias_SemanticAnalysisTooling_specifyType$($qn, var$4, $this))); - } - if (sc_SeqOps_isEmpty$($signature.$inputSignature)) - $usedDefaultArgs = $rt_s(4797); - else if ($signature.$inputSignature.$length() != 1) { - $ctx = sc_AbstractIterable_mkString(sci_ArraySeq_map($signature.$inputSignature, new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7), $rt_s(45)); - $usedDefaultArgs = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($usedDefaultArgs); - jl_StringBuilder_append(jl_StringBuilder_append($usedDefaultArgs, $rt_s(4798)), $ctx); - $usedDefaultArgs = jl_AbstractStringBuilder_toString($usedDefaultArgs); - } else { - $usedDefaultArgs = (sc_IndexedSeqOps_head$($signature.$inputSignature)).$typ.$normalizedCypherTypeString(); - $qn = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($qn); - jl_StringBuilder_append(jl_StringBuilder_append($qn, $rt_s(4799)), $usedDefaultArgs); - $usedDefaultArgs = jl_AbstractStringBuilder_toString($qn); - } - $ctx = s_Option_getOrElse(s_Option_map($signature.$description2, new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4), new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5); - $qn = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($qn); - jl_StringBuilder_append(jl_StringBuilder_append($qn, $usedDefaultArgs), $ctx); - $ctx = jl_AbstractStringBuilder_toString($qn); - oncias_package$_$callClinit(); - $usedDefaultArgs = oncias_package$_MODULE$; - $qn = new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6; - $qn.$_0918 = $this; - $qn.$_1319 = $expectedNumArgs; - $qn.$_2106 = $actualNumArgs; - $qn.$_328 = $signature; - $qn.$_46 = $ctx; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($usedDefaultArgs, $qn); -}, -oncifp_ResolvedFunctionInvocation_asUnresolvedFunction = $this => { - let var$1, var$2, var$3; - var$1 = new oncie_FunctionInvocation; - var$2 = oncie_FunctionName__init_0(oncie_Namespace__init_0($this.$qualifiedName.$namespace5.$toList(), $this.$position11), $this.$qualifiedName.$name21, $this.$position11); - var$3 = (oncie_Expression_arguments($this)).$toIndexedSeq(); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$1, var$2, 0, var$3, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, $this.$position11); - return var$1; -}, -oncifp_ResolvedFunctionInvocation_isConstantForQuery = $this => { - return 0; -}, -oncifp_ResolvedFunctionInvocation_copy = ($this, $qualifiedName, $fcnSignature, $callArguments, $position) => { - return oncifp_ResolvedFunctionInvocation__init_($qualifiedName, $fcnSignature, $callArguments, $position); -}, -oncifp_ResolvedFunctionInvocation_productPrefix = $this => { - return $rt_s(4800); -}, -oncifp_ResolvedFunctionInvocation_productArity = $this => { - return 3; -}, -oncifp_ResolvedFunctionInvocation_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$qualifiedName; - case 1: - return $this.$fcnSignature; - case 2: - return $this.$callArguments0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncifp_ResolvedFunctionInvocation_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_ResolvedFunctionInvocation_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_ResolvedFunctionInvocation_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_ResolvedFunctionInvocation_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncifp_ResolvedFunctionInvocation) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$qualifiedName; - var$3 = $x$1.$qualifiedName; - if (var$2 !== null) { - if (!oncifp_QualifiedName_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$fcnSignature; - var$3 = $x$1.$fcnSignature; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$callArguments0; - $x$1 = $x$1.$callArguments0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncifp_ResolvedFunctionInvocation)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncifp_ResolvedFunctionInvocation__init_0 = ($this, $qualifiedName, $fcnSignature, $callArguments, $position) => { - $this.$qualifiedName = $qualifiedName; - $this.$fcnSignature = $fcnSignature; - $this.$callArguments0 = $callArguments; - $this.$position11 = $position; - oncie_Expression__init_($this); -}, -oncifp_ResolvedFunctionInvocation__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncifp_ResolvedFunctionInvocation(); - oncifp_ResolvedFunctionInvocation__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_0() { - jl_Object.call(this); - this.$_01106 = null; -} -let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_01106; - var$2 = new jl_IllegalStateException; - var$1 = var$1.$name(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(4801)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); -}, -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_1 = $rt_classWithoutFields(), -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_1_apply = (var$0, var$1) => { - return var$1.$name(); -}; -function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_2() { - jl_Object.call(this); - this.$_0120 = null; -} -let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0120; - var$3 = var$2.$removedAll(var$1); - var$4 = new oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0; - var$4.$_0970 = var$2; - return sc_AbstractIterable_toIndexedSeq((sci_List_filter(var$1, var$4)).$concat(var$3)); -}; -function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_3() { - jl_Object.call(this); - this.$_0684 = null; -} -let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_3_apply = var$0 => { - let var$1; - var$1 = sc_AbstractIterable_toIndexedSeq(var$0.$_0684); - sm_Ordering$String$_$callClinit(); - return var$1.$sorted(sm_Ordering$String$_MODULE$); -}; -function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4() { - jl_Object.call(this); - this.$_074 = null; -} -let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_074; - var$3 = oncie_Variable__init_(var$1, var$2); - return oncia_AliasedReturnItem__init_(var$3, oncie_Variable_copyId(var$3), var$2); -}; -function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0() { - jl_Object.call(this); - this.$_01199 = null; -} -let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0_apply = var$0 => { - let var$1, var$2; - var$1 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(4659)), $rt_s(4801)); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$1); -}; -function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_1() { - jl_Object.call(this); - this.$_01178 = null; -} -let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_1_apply = var$0 => { - let var$1, var$2; - var$1 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(4659)), $rt_s(4801)); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$1); -}, -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_2 = $rt_classWithoutFields(), -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_2_apply = (var$0, var$1) => { - return var$1.$name4; -}, -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_3 = $rt_classWithoutFields(), -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_3_apply = (var$0, var$1) => { - return s_Option_map(var$1.$reportParams0, new oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0); -}; -function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4() { - jl_Object.call(this); - this.$_0734 = null; -} -let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4_apply = (var$0, var$1) => { - return oncie_Variable__init_(var$1, var$0.$_0734); -}; -function oncias_SymbolUse() { - jl_Object.call(this); - this.$use = null; -} -let oncias_SymbolUse_toString = $this => { - let var$1, var$2; - var$1 = oncias_SymbolUse_uniqueName($this); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(4802)), var$1), 41); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncias_SymbolUse_asVariable = $this => { - return $this.$use.$value20; -}, -oncias_SymbolUse_uniqueName = $this => { - let var$1, var$2, var$3, var$4; - var$1 = (oncias_SymbolUse_asVariable($this)).$name4; - var$2 = (oncias_SymbolUse_asVariable($this)).$position4.$offset(); - var$3 = onciu_Ref_toIdString($this.$use); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$1 = jl_StringBuilder_append(var$4, var$1); - jl_AbstractStringBuilder_append0(var$1, 64); - var$1 = jl_StringBuilder_append0(var$1, var$2); - jl_AbstractStringBuilder_append0(var$1, 40); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$3), 41); - return jl_AbstractStringBuilder_toString(var$4); -}, -oncias_SymbolUse_positionsAndUniqueIdString = $this => { - return s_Tuple2__init_(jl_Integer_valueOf((oncias_SymbolUse_asVariable($this)).$position4.$offset()), onciu_Ref_toIdString($this.$use)); -}, -oncias_SymbolUse_name = $this => { - return (oncias_SymbolUse_asVariable($this)).$name4; -}, -oncias_SymbolUse_productPrefix = $this => { - return $rt_s(4803); -}, -oncias_SymbolUse_productArity = $this => { - return 1; -}, -oncias_SymbolUse_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$use; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncias_SymbolUse_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SymbolUse_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SymbolUse_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SymbolUse) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$use; - $x$1 = $x$1.$use; - if (var$2 !== null) { - if (!onciu_Ref_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}; -function sci_HashCollisionMapNode$foreachEntry$lambda$_24_0() { - jl_Object.call(this); - this.$_01039 = null; -} -let sci_HashCollisionMapNode$foreachEntry$lambda$_24_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01039; - if (var$1 === null) - $rt_throw(s_MatchError__init_(null)); - return var$2.$apply3(var$1.$_1(), var$1.$_2()); -}; -function onciafn_Neo4jASTConstructionException() { - ong_GqlRuntimeException.call(this); - this.$msg2 = null; -} -let onciafn_Neo4jASTConstructionException__init_ = ($this, $msg) => { - let var$2, var$3; - var$2 = null; - $this.$msg2 = $msg; - var$3 = null; - jl_Throwable__init_1($this, $msg, var$3); - if ($rt_isInstance(var$3, ong_ErrorGqlStatusObject)) - var$2 = ong_GqlHelper_getErrorObjectWithRewrittenCause(var$2, var$3); - $this.$innerGqlStatusObject = var$2; - $this.$oldMessage = $msg; -}, -onciafn_Neo4jASTConstructionException__init_0 = var_0 => { - let var_1 = new onciafn_Neo4jASTConstructionException(); - onciafn_Neo4jASTConstructionException__init_(var_1, var_0); - return var_1; -}; -function oncia_GraphFunctionReference() { - let a = this; oncie_Expression.call(a); - a.$functionInvocation1 = null; - a.$position298 = null; -} -let oncia_GraphFunctionReference_semanticCheck = $this => { - return oncia_GraphReference_semanticCheck$($this); -}, -oncia_GraphFunctionReference_position = $this => { - return $this.$position298; -}, -oncia_GraphFunctionReference_print = $this => { - return onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new oncia_GraphFunctionReference$print$lambda$_48_0, 0, 0, 0, 0), $this.$functionInvocation1); -}, -oncia_GraphFunctionReference_dependencies = $this => { - return oncie_Expression_dependencies($this.$functionInvocation1); -}, -oncia_GraphFunctionReference_isConstantForQuery = $this => { - return 0; -}, -oncia_GraphFunctionReference_semanticallyEqual = ($this, $other) => { - let $other_0; - if (!($other instanceof oncia_GraphFunctionReference)) - return 0; - $other_0 = $other.$functionInvocation1; - return oncie_FunctionInvocation_equals($other_0, $this.$functionInvocation1) && (oncie_Expression_arguments($this.$functionInvocation1)).$forall(new oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_0) && (oncie_Expression_arguments($other_0)).$forall(new oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_1) ? 1 : 0; -}, -oncia_GraphFunctionReference_productPrefix = $this => { - return $rt_s(4804); -}, -oncia_GraphFunctionReference_productArity = $this => { - return 1; -}, -oncia_GraphFunctionReference_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$functionInvocation1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_GraphFunctionReference_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GraphFunctionReference_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GraphFunctionReference_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GraphFunctionReference_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_GraphFunctionReference) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$functionInvocation1; - $x$1 = $x$1.$functionInvocation1; - if (var$2 !== null) { - if (!oncie_FunctionInvocation_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_GraphFunctionReference__init_ = ($this, $functionInvocation, $position) => { - $this.$functionInvocation1 = $functionInvocation; - $this.$position298 = $position; - oncie_Expression__init_($this); -}, -oncia_GraphFunctionReference__init_0 = (var_0, var_1) => { - let var_2 = new oncia_GraphFunctionReference(); - oncia_GraphFunctionReference__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_NamespacedName() { - let a = this; jl_Object.call(a); - a.$nameComponents = null; - a.$namespace4 = null; - a.$position111 = null; - a.$name48 = null; -} -let oncia_NamespacedName_namespace = $this => { - return $this.$namespace4; -}, -oncia_NamespacedName_position = $this => { - return $this.$position111; -}, -oncia_NamespacedName_toString = $this => { - s_Option$_$callClinit(); - return sc_AbstractIterable_mkString((s_Option$_option2Iterable(s_Option$_MODULE$, $this.$namespace4)).$concat(sci_$colon$colon__init_($this.$name48, sci_Nil$_MODULE$)), $rt_s(403)); -}, -oncia_NamespacedName_productPrefix = $this => { - return $rt_s(4805); -}, -oncia_NamespacedName_productArity = $this => { - return 2; -}, -oncia_NamespacedName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$nameComponents; - case 1: - return $this.$namespace4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_NamespacedName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NamespacedName_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NamespacedName_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_NamespacedName) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$nameComponents; - var$3 = $x$1.$nameComponents; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$namespace4; - $x$1 = $x$1.$namespace4; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_NamespacedName)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_NamespacedName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_NamespacedName__init_0 = ($this, $nameComponents, $namespace, $position) => { - $this.$nameComponents = $nameComponents; - $this.$namespace4 = $namespace; - $this.$position111 = $position; - $this.$name48 = sc_AbstractIterable_mkString($nameComponents, $rt_s(403)); -}, -oncia_NamespacedName__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_NamespacedName(); - oncia_NamespacedName__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_ParameterName() { - let a = this; jl_Object.call(a); - a.$parameter2 = null; - a.$position224 = null; -} -let oncia_ParameterName_parameter = $this => { - return $this.$parameter2; -}, -oncia_ParameterName_position = $this => { - return $this.$position224; -}, -oncia_ParameterName_productPrefix = $this => { - return $rt_s(4806); -}, -oncia_ParameterName_productArity = $this => { - return 1; -}, -oncia_ParameterName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$parameter2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ParameterName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ParameterName_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ParameterName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ParameterName_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ParameterName) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$parameter2; - $x$1 = $x$1.$parameter2; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_ParameterName)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_ParameterName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ParameterName__init_ = ($this, $parameter, $position) => { - $this.$parameter2 = $parameter; - $this.$position224 = $position; -}, -oncia_ParameterName__init_0 = (var_0, var_1) => { - let var_2 = new oncia_ParameterName(); - oncia_ParameterName__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_WriteAdministrationCommand = $rt_classWithoutFields(0), -oncia_WriteAdministrationCommand_returnColumns$ = $$this => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; -}, -oncia_WriteAdministrationCommand_topologyCheck$ = ($$this, $topology, $command) => { - let var$4; - var$4 = new oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0; - var$4.$_0950 = $$this; - var$4.$_1333 = $command; - return s_Option_getOrElse(s_Option_map($topology, var$4), new oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1); -}, -oncia_WriteAdministrationCommand_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq(0); -}; -function oncia_CreateRemoteDatabaseAlias() { - let a = this; jl_Object.call(a); - a.$aliasName6 = null; - a.$targetName3 = null; - a.$ifExistsDo2 = null; - a.$url3 = null; - a.$username3 = null; - a.$password5 = null; - a.$driverSettings1 = null; - a.$properties14 = null; - a.$position175 = null; - a.$isReadOnly1 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar8 = null; -} -let oncia_CreateRemoteDatabaseAlias_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CreateRemoteDatabaseAlias_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_CreateRemoteDatabaseAlias_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateRemoteDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_CreateRemoteDatabaseAlias_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_CreateRemoteDatabaseAlias_foldedOver = $this => { - return $this; -}, -oncia_CreateRemoteDatabaseAlias_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly1 = $x$1; -}, -oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar8; -}, -oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar8 = $x$1; -}, -oncia_CreateRemoteDatabaseAlias_aliasName = $this => { - return $this.$aliasName6; -}, -oncia_CreateRemoteDatabaseAlias_targetName = $this => { - return $this.$targetName3; -}, -oncia_CreateRemoteDatabaseAlias_ifExistsDo = $this => { - return $this.$ifExistsDo2; -}, -oncia_CreateRemoteDatabaseAlias_url = $this => { - return $this.$url3; -}, -oncia_CreateRemoteDatabaseAlias_username = $this => { - return $this.$username3; -}, -oncia_CreateRemoteDatabaseAlias_password = $this => { - return $this.$password5; -}, -oncia_CreateRemoteDatabaseAlias_driverSettings = $this => { - return $this.$driverSettings1; -}, -oncia_CreateRemoteDatabaseAlias_properties = $this => { - return $this.$properties14; -}, -oncia_CreateRemoteDatabaseAlias_position = $this => { - return $this.$position175; -}, -oncia_CreateRemoteDatabaseAlias_name = $this => { - let var$1, var$2; - var$1 = $this.$ifExistsDo2; - oncia_IfExistsReplace$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) - var$2 = 1; - else { - oncia_IfExistsInvalidSyntax$_$callClinit(); - var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; - } - if (!var$2) - return $rt_s(4807); - return $rt_s(4808); -}, -oncia_CreateRemoteDatabaseAlias_semanticCheck = $this => { - let $expr, $expr_0, var$3, var$4; - $expr = $this.$ifExistsDo2; - oncia_IfExistsInvalidSyntax$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, $expr)) { - onciap_Prettifier$_$callClinit(); - $expr_0 = onciap_Prettifier$_MODULE$; - var$3 = $this.$aliasName6; - s_DummyImplicit$_$callClinit(); - $expr_0 = onciap_Prettifier$_escapeName($expr_0, var$3, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - $expr = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($expr); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($expr, $rt_s(4809)), $expr_0), $rt_s(4810)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString($expr), $this.$position175); - } - var$4 = 0; - $expr_0 = null; - $expr = oncia_AliasDriverSettingsCheck$_findInvalidDriverSettings(oncia_AliasDriverSettingsCheck$_MODULE$, $this.$driverSettings1); - if ($expr instanceof s_Some) { - var$4 = 1; - $expr_0 = $expr; - $expr = $expr_0.$value5; - if ($expr instanceof oncia_ExistsExpression) { - $expr_0 = $expr; - return oncias_SemanticAnalysisTooling_error$($this, oncia_AliasDriverSettingsCheck$_existsErrorMessage, $expr_0.$position16); - } - } - if (var$4) { - $expr = $expr_0.$value5; - if ($expr instanceof oncia_CountExpression) { - $expr_0 = $expr; - return oncias_SemanticAnalysisTooling_error$($this, oncia_AliasDriverSettingsCheck$_countErrorMessage, $expr_0.$position17); - } - } - if (var$4) { - $expr = $expr_0.$value5; - if ($expr instanceof oncia_CollectExpression) { - $expr_0 = $expr; - return oncias_SemanticAnalysisTooling_error$($this, oncia_AliasDriverSettingsCheck$_collectErrorMessage, $expr_0.$position15); - } - } - if (var$4) { - $expr_0 = $expr_0.$value5; - return oncias_SemanticAnalysisTooling_error$($this, oncia_AliasDriverSettingsCheck$_genericErrorMessage, $expr_0.$position()); - } - $expr_0 = oncia_AdministrationCommand_semanticCheck$($this); - oncia_AdministrationCommand$_$callClinit(); - $expr = oncias_SemanticCheck_chain$($expr_0, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4811), $this.$username3)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$($expr, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_CreateRemoteDatabaseAlias_productPrefix = $this => { - return $rt_s(4812); -}, -oncia_CreateRemoteDatabaseAlias_productArity = $this => { - return 8; -}, -oncia_CreateRemoteDatabaseAlias_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$aliasName6; - case 1: - return $this.$targetName3; - case 2: - return $this.$ifExistsDo2; - case 3: - return $this.$url3; - case 4: - return $this.$username3; - case 5: - return $this.$password5; - case 6: - return $this.$driverSettings1; - case 7: - return $this.$properties14; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_CreateRemoteDatabaseAlias_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateRemoteDatabaseAlias_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateRemoteDatabaseAlias_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateRemoteDatabaseAlias_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateRemoteDatabaseAlias) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$aliasName6; - var$3 = $x$1.$aliasName6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$targetName3; - var$3 = $x$1.$targetName3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$ifExistsDo2; - var$3 = $x$1.$ifExistsDo2; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$url3; - var$3 = $x$1.$url3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$2 = $this.$username3; - var$3 = $x$1.$username3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break h; - } - if (var$3 !== null) - break b; - } - i: { - var$2 = $this.$password5; - var$3 = $x$1.$password5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break i; - } - if (var$3 !== null) - break b; - } - j: { - var$2 = $this.$driverSettings1; - var$3 = $x$1.$driverSettings1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break j; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$properties14; - $x$1 = $x$1.$properties14; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_CreateRemoteDatabaseAlias_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_CreateRemoteDatabaseAlias_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateRemoteDatabaseAlias__init_ = ($this, $aliasName, $targetName, $ifExistsDo, $url, $username, $password, $driverSettings, $properties, $position) => { - $this.$aliasName6 = $aliasName; - $this.$targetName3 = $targetName; - $this.$ifExistsDo2 = $ifExistsDo; - $this.$url3 = $url; - $this.$username3 = $username; - $this.$password5 = $password; - $this.$driverSettings1 = $driverSettings; - $this.$properties14 = $properties; - $this.$position175 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_CreateRemoteDatabaseAlias__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { - let var_9 = new oncia_CreateRemoteDatabaseAlias(); - oncia_CreateRemoteDatabaseAlias__init_(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); - return var_9; -}, -onciafn_DecorateTuple = $rt_classWithoutFields(0), -onciafn_TupleConverter$ = $rt_classWithoutFields(), -onciafn_TupleConverter$_MODULE$ = null, -onciafn_TupleConverter$_$callClinit = () => { - onciafn_TupleConverter$_$callClinit = $rt_eraseClinit(onciafn_TupleConverter$); - onciafn_TupleConverter$__clinit_(); -}, -onciafn_TupleConverter$__clinit_ = () => { - let var$1; - var$1 = new onciafn_TupleConverter$; - onciafn_TupleConverter$_$callClinit(); - onciafn_TupleConverter$_MODULE$ = var$1; -}, -onciafn_TupleConverter$_asScalaEither = ($this, $i) => { - let var$2, var$3; - var$2 = new onciafn_DecorateTuple$AsScala; - var$3 = new onciafn_DecorateTuple$asScalaEither$lambda$_1_0; - var$3.$_0307 = $i; - var$2.$op = var$3; - var$2.$$outer64 = $this; - return var$2; -}; -function onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_0() { - jl_Object.call(this); - this.$_0460 = null; -} -let onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciafn_Neo4jASTFactory_asExpressionMapAst(var$0.$_0460, var$1); -}; -function onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_1() { - jl_Object.call(this); - this.$_01136 = null; -} -let onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciafn_Neo4jASTFactory_asExpressionMapAst(var$0.$_01136, var$1); -}; -function oncia_CreateLocalDatabaseAlias() { - let a = this; jl_Object.call(a); - a.$aliasName5 = null; - a.$targetName4 = null; - a.$ifExistsDo5 = null; - a.$properties13 = null; - a.$position184 = null; - a.$isReadOnly19 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar6 = null; -} -let oncia_CreateLocalDatabaseAlias_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CreateLocalDatabaseAlias_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_CreateLocalDatabaseAlias_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateLocalDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_CreateLocalDatabaseAlias_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_CreateLocalDatabaseAlias_foldedOver = $this => { - return $this; -}, -oncia_CreateLocalDatabaseAlias_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly19 = $x$1; -}, -oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar6; -}, -oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar6 = $x$1; -}, -oncia_CreateLocalDatabaseAlias_aliasName = $this => { - return $this.$aliasName5; -}, -oncia_CreateLocalDatabaseAlias_targetName = $this => { - return $this.$targetName4; -}, -oncia_CreateLocalDatabaseAlias_ifExistsDo = $this => { - return $this.$ifExistsDo5; -}, -oncia_CreateLocalDatabaseAlias_properties = $this => { - return $this.$properties13; -}, -oncia_CreateLocalDatabaseAlias_position = $this => { - return $this.$position184; -}, -oncia_CreateLocalDatabaseAlias_name = $this => { - let var$1, var$2; - var$1 = $this.$ifExistsDo5; - oncia_IfExistsReplace$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) - var$2 = 1; - else { - oncia_IfExistsInvalidSyntax$_$callClinit(); - var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; - } - if (!var$2) - return $rt_s(4807); - return $rt_s(4808); -}, -oncia_CreateLocalDatabaseAlias_semanticCheck = $this => { - let var$1, var$2, var$3, var$4; - var$1 = $this.$ifExistsDo5; - oncia_IfExistsInvalidSyntax$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { - onciap_Prettifier$_$callClinit(); - var$1 = onciap_Prettifier$_MODULE$; - var$2 = $this.$aliasName5; - s_DummyImplicit$_$callClinit(); - var$3 = onciap_Prettifier$_escapeName(var$1, var$2, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(4809)), var$3), $rt_s(4810)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$1), $this.$position184); - } - a: { - var$3 = oncia_AdministrationCommand_semanticCheck$($this); - var$1 = $this.$aliasName5; - if (var$1 instanceof oncia_NamespacedName) { - var$1 = var$1; - var$4 = var$1.$nameComponents; - if (var$1.$namespace4 instanceof s_Some) { - if (sci_List_length(var$4) <= 1) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - break a; - } - var$2 = oncia_NamespacedName_toString(var$1); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(4813)), var$2), $rt_s(4814)); - var$1 = oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$4), var$1.$position111); - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - var$1 = oncias_SemanticCheck_chain$(var$3, var$1); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_CreateLocalDatabaseAlias_productPrefix = $this => { - return $rt_s(4815); -}, -oncia_CreateLocalDatabaseAlias_productArity = $this => { - return 4; -}, -oncia_CreateLocalDatabaseAlias_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$aliasName5; - case 1: - return $this.$targetName4; - case 2: - return $this.$ifExistsDo5; - case 3: - return $this.$properties13; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_CreateLocalDatabaseAlias_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateLocalDatabaseAlias_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateLocalDatabaseAlias_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateLocalDatabaseAlias_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateLocalDatabaseAlias) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$aliasName5; - var$3 = $x$1.$aliasName5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$targetName4; - var$3 = $x$1.$targetName4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$ifExistsDo5; - var$3 = $x$1.$ifExistsDo5; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$properties13; - $x$1 = $x$1.$properties13; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_CreateLocalDatabaseAlias_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_CreateLocalDatabaseAlias_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateLocalDatabaseAlias__init_ = ($this, $aliasName, $targetName, $ifExistsDo, $properties, $position) => { - $this.$aliasName5 = $aliasName; - $this.$targetName4 = $targetName; - $this.$ifExistsDo5 = $ifExistsDo; - $this.$properties13 = $properties; - $this.$position184 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_CreateLocalDatabaseAlias__init_0 = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_CreateLocalDatabaseAlias(); - oncia_CreateLocalDatabaseAlias__init_(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}; -function onciafn_Neo4jASTFactory$createLocalDatabaseAlias$lambda$_243_0() { - jl_Object.call(this); - this.$_0391 = null; -} -let onciafn_Neo4jASTFactory$createLocalDatabaseAlias$lambda$_243_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciafn_Neo4jASTFactory_asExpressionMapAst(var$0.$_0391, var$1); -}, -oncia_NoWait$ = $rt_classWithoutFields(), -oncia_NoWait$_MODULE$ = null, -oncia_NoWait$_name = null, -oncia_NoWait$_DEFAULT_TIMEOUT = Long_ZERO, -oncia_NoWait$_$callClinit = () => { - oncia_NoWait$_$callClinit = $rt_eraseClinit(oncia_NoWait$); - oncia_NoWait$__clinit_(); -}, -oncia_NoWait$__clinit_ = () => { - let var$1; - var$1 = new oncia_NoWait$; - oncia_NoWait$_$callClinit(); - oncia_NoWait$_MODULE$ = var$1; - oncia_WaitUntilComplete_$init$(var$1); - oncia_NoWait$_name = $rt_s(4); -}, -oncia_NoWait$_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq = ($this, $x$1) => { - oncia_NoWait$_$callClinit(); - oncia_NoWait$_DEFAULT_TIMEOUT = $x$1; -}, -oncia_NoWait$_name0 = $this => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_name; -}, -oncia_NoWait$_productArity = $this => { - return 0; -}, -oncia_NoWait$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_NoWait$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NoWait$_hashCode = $this => { - return (-1956694282); -}, -oncia_NoWait$_toString = $this => { - return $rt_s(4816); -}, -oncia_IndefiniteWait$ = $rt_classWithoutFields(), -oncia_IndefiniteWait$_MODULE$ = null, -oncia_IndefiniteWait$_name = null, -oncia_IndefiniteWait$_DEFAULT_TIMEOUT = Long_ZERO, -oncia_IndefiniteWait$_$callClinit = () => { - oncia_IndefiniteWait$_$callClinit = $rt_eraseClinit(oncia_IndefiniteWait$); - oncia_IndefiniteWait$__clinit_(); -}, -oncia_IndefiniteWait$__clinit_ = () => { - let var$1; - var$1 = new oncia_IndefiniteWait$; - oncia_IndefiniteWait$_$callClinit(); - oncia_IndefiniteWait$_MODULE$ = var$1; - oncia_WaitUntilComplete_$init$(var$1); - oncia_IndefiniteWait$_name = $rt_s(4817); -}, -oncia_IndefiniteWait$_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq = ($this, $x$1) => { - oncia_IndefiniteWait$_$callClinit(); - oncia_IndefiniteWait$_DEFAULT_TIMEOUT = $x$1; -}, -oncia_IndefiniteWait$_name0 = $this => { - oncia_IndefiniteWait$_$callClinit(); - return oncia_IndefiniteWait$_name; -}, -oncia_IndefiniteWait$_productArity = $this => { - return 0; -}, -oncia_IndefiniteWait$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_IndefiniteWait$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_IndefiniteWait$_hashCode = $this => { - return (-363263030); -}, -oncia_IndefiniteWait$_toString = $this => { - return $rt_s(4818); -}; -function oncia_TimeoutAfter() { - let a = this; jl_Object.call(a); - a.$timoutSeconds = Long_ZERO; - a.$name47 = null; - a.$DEFAULT_TIMEOUT = Long_ZERO; -} -let oncia_TimeoutAfter_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq = ($this, $x$1) => { - $this.$DEFAULT_TIMEOUT = $x$1; -}, -oncia_TimeoutAfter_name = $this => { - return $this.$name47; -}, -oncia_TimeoutAfter_productPrefix = $this => { - return $rt_s(4819); -}, -oncia_TimeoutAfter_productArity = $this => { - return 1; -}, -oncia_TimeoutAfter_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Long_valueOf($this.$timoutSeconds); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_TimeoutAfter_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_TimeoutAfter_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4819))), sr_Statics_longHash($this.$timoutSeconds)), 1); -}, -oncia_TimeoutAfter_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_TimeoutAfter_equals = ($this, $x$1) => { - let var$2; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_TimeoutAfter) ? 0 : 1)) - break b; - $x$1 = $x$1; - if (Long_ne($this.$timoutSeconds, $x$1.$timoutSeconds)) - break b; - if (!($this instanceof oncia_TimeoutAfter)) - break b; - } - var$2 = 1; - break a; - } - var$2 = 0; - } - return var$2; -}, -oncia_TimeoutAfter__init_ = ($this, $timoutSeconds) => { - let var$2; - $this.$timoutSeconds = $timoutSeconds; - oncia_WaitUntilComplete_$init$($this); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append5(jl_StringBuilder_append(var$2, $rt_s(4820)), $timoutSeconds), $rt_s(4821)); - $this.$name47 = jl_AbstractStringBuilder_toString(var$2); -}, -oncia_TimeoutAfter__init_0 = var_0 => { - let var_1 = new oncia_TimeoutAfter(); - oncia_TimeoutAfter__init_(var_1, var_0); - return var_1; -}, -oncia_WaitableAdministrationCommand = $rt_classWithoutFields(0), -oncia_WaitableAdministrationCommand_returnColumns$ = $$this => { - let var$2, var$3; - var$2 = $$this.$waitUntilComplete(); - oncia_NoWait$_$callClinit(); - if (jl_Object_equals(oncia_NoWait$_MODULE$, var$2)) { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - $$this = sci_Nil$_MODULE$; - } else { - var$3 = sci_$colon$colon__init_($rt_s(4822), sci_$colon$colon__init_($rt_s(4823), sci_$colon$colon__init_($rt_s(4824), sci_$colon$colon__init_($rt_s(4825), sci_Nil$_MODULE$)))); - var$2 = new oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0; - var$2.$_01041 = $$this; - $$this = sci_List_map(var$3, var$2); - } - return $$this; -}; -function oncia_CreateCompositeDatabase() { - let a = this; jl_Object.call(a); - a.$databaseName5 = null; - a.$ifExistsDo1 = null; - a.$options6 = null; - a.$waitUntilComplete5 = null; - a.$position120 = null; - a.$isReadOnly15 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar22 = null; -} -let oncia_CreateCompositeDatabase_returnColumns = $this => { - return oncia_WaitableAdministrationCommand_returnColumns$($this); -}, -oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CreateCompositeDatabase_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_CreateCompositeDatabase_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateCompositeDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_CreateCompositeDatabase_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_CreateCompositeDatabase_foldedOver = $this => { - return $this; -}, -oncia_CreateCompositeDatabase_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly15 = $x$1; -}, -oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar22; -}, -oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar22 = $x$1; -}, -oncia_CreateCompositeDatabase_databaseName = $this => { - return $this.$databaseName5; -}, -oncia_CreateCompositeDatabase_ifExistsDo = $this => { - return $this.$ifExistsDo1; -}, -oncia_CreateCompositeDatabase_options = $this => { - return $this.$options6; -}, -oncia_CreateCompositeDatabase_waitUntilComplete = $this => { - return $this.$waitUntilComplete5; -}, -oncia_CreateCompositeDatabase_position = $this => { - return $this.$position120; -}, -oncia_CreateCompositeDatabase_name = $this => { - let var$1, var$2; - var$1 = $this.$ifExistsDo1; - oncia_IfExistsReplace$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) - var$2 = 1; - else { - oncia_IfExistsInvalidSyntax$_$callClinit(); - var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; - } - if (!var$2) - return $rt_s(4826); - return $rt_s(4827); -}, -oncia_CreateCompositeDatabase_semanticCheck = $this => { - let var$1, $name, var$3; - var$1 = $this.$ifExistsDo1; - oncia_IfExistsInvalidSyntax$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { - onciap_Prettifier$_$callClinit(); - $name = onciap_Prettifier$_MODULE$; - var$3 = $this.$databaseName5; - s_DummyImplicit$_$callClinit(); - $name = onciap_Prettifier$_escapeName($name, var$3, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(4828)), $name), $rt_s(4810)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$1), $this.$position120); - } - $name = $this.$databaseName5; - if ($name instanceof oncia_NamespacedName) { - $name = $name; - if ($name.$namespace4 instanceof s_Some) { - var$1 = oncia_NamespacedName_toString($name); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4828)), var$1), $rt_s(4829)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$3), $name.$position111); - } - } - return oncia_AdministrationCommand_semanticCheck$($this); -}, -oncia_CreateCompositeDatabase_productPrefix = $this => { - return $rt_s(4830); -}, -oncia_CreateCompositeDatabase_productArity = $this => { - return 4; -}, -oncia_CreateCompositeDatabase_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$databaseName5; - case 1: - return $this.$ifExistsDo1; - case 2: - return $this.$options6; - case 3: - return $this.$waitUntilComplete5; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_CreateCompositeDatabase_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateCompositeDatabase_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateCompositeDatabase_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateCompositeDatabase_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateCompositeDatabase) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$databaseName5; - var$3 = $x$1.$databaseName5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$ifExistsDo1; - var$3 = $x$1.$ifExistsDo1; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$options6; - var$3 = $x$1.$options6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$waitUntilComplete5; - $x$1 = $x$1.$waitUntilComplete5; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_CreateCompositeDatabase_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_CreateCompositeDatabase_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateCompositeDatabase__init_ = ($this, $databaseName, $ifExistsDo, $options, $waitUntilComplete, $position) => { - $this.$databaseName5 = $databaseName; - $this.$ifExistsDo1 = $ifExistsDo; - $this.$options6 = $options; - $this.$waitUntilComplete5 = $waitUntilComplete; - $this.$position120 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_CreateCompositeDatabase__init_0 = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_CreateCompositeDatabase(); - oncia_CreateCompositeDatabase__init_(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}, -oncia_Options = $rt_classWithoutFields(0), -onciafn_Neo4jASTFactory$createConstraint$lambda$_162_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createConstraint$lambda$_162_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciafn_TupleConverter$_$callClinit(); - return su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))), new onciafn_Neo4jASTFactory$$anonfun$createConstraint$1$lambda$_547_0); -}, -oncia_CreateConstraint$ = $rt_classWithoutFields(), -oncia_CreateConstraint$_MODULE$ = null, -oncia_CreateConstraint$_$callClinit = () => { - oncia_CreateConstraint$_$callClinit = $rt_eraseClinit(oncia_CreateConstraint$); - oncia_CreateConstraint$__clinit_(); -}, -oncia_CreateConstraint$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateConstraint$; - oncia_CreateConstraint$_$callClinit(); - oncia_CreateConstraint$_MODULE$ = var$1; -}, -oncia_CreateConstraint$_unapply = ($this, $c) => { - return s_Some__init_(s_Tuple7__init_($c.$variable2(), $c.$entityName(), $c.$properties0(), $c.$name2(), $c.$constraintType(), $c.$ifExistsDo(), $c.$options())); -}, -oncia_CreateConstraint$_createNodeKeyConstraint = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $fromCypher5, $useGraph, $position) => { - let var$10, var$11; - var$10 = new oncia_CreateConstraintCommand; - if (!$fromCypher5) { - oncia_NodeKeyCypher25$_$callClinit(); - var$11 = oncia_NodeKeyCypher25$_MODULE$; - } else { - oncia_NodeKeyCypher5$_$callClinit(); - var$11 = oncia_NodeKeyCypher5$_MODULE$; - } - oncia_CreateConstraintCommand__init_0(var$10, $variable, $label, $properties, $name, var$11, $ifExistsDo, $options, $useGraph, $position); - return var$10; -}, -oncia_CreateConstraint$_createRelationshipKeyConstraint = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $fromCypher5, $useGraph, $position) => { - let var$10, var$11; - var$10 = new oncia_CreateConstraintCommand; - if (!$fromCypher5) { - oncia_RelationshipKeyCypher25$_$callClinit(); - var$11 = oncia_RelationshipKeyCypher25$_MODULE$; - } else { - oncia_RelationshipKeyCypher5$_$callClinit(); - var$11 = oncia_RelationshipKeyCypher5$_MODULE$; - } - oncia_CreateConstraintCommand__init_0(var$10, $variable, $relType, $properties, $name, var$11, $ifExistsDo, $options, $useGraph, $position); - return var$10; -}, -oncia_CreateConstraint$_createNodePropertyUniquenessConstraint = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateConstraintCommand__init_($variable, $label, $properties, $name, oncia_NodePropertyUniqueness$_MODULE$, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateConstraint$_createRelationshipPropertyUniquenessConstraint = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateConstraintCommand__init_($variable, $relType, $properties, $name, oncia_RelationshipPropertyUniqueness$_MODULE$, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateConstraint$_createNodePropertyExistenceConstraint = ($this, $variable, $label, $property, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateConstraintCommand__init_($variable, $label, sci_$colon$colon__init_($property, sci_Nil$_MODULE$), $name, oncia_NodePropertyExistence$_MODULE$, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateConstraint$_createRelationshipPropertyExistenceConstraint = ($this, $variable, $relType, $property, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateConstraintCommand__init_($variable, $relType, sci_$colon$colon__init_($property, sci_Nil$_MODULE$), $name, oncia_RelationshipPropertyExistence$_MODULE$, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateConstraint$_createNodePropertyTypeConstraint = ($this, $variable, $label, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreatePropertyTypeConstraint__init_($variable, $label, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateConstraint$_createRelationshipPropertyTypeConstraint = ($this, $variable, $relType, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreatePropertyTypeConstraint__init_($variable, $relType, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position); -}, -oncil_LabelExpressionLeafName = $rt_classWithoutFields(0), -oncie_ElementTypeName = $rt_classWithoutFields(0); -function oncie_LabelName() { - let a = this; jl_Object.call(a); - a.$name19 = null; - a.$position62 = null; -} -let oncie_LabelName_name = $this => { - return $this.$name19; -}, -oncie_LabelName_position = $this => { - return $this.$position62; -}, -oncie_LabelName_productPrefix = $this => { - return $rt_s(4831); -}, -oncie_LabelName_productArity = $this => { - return 1; -}, -oncie_LabelName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name19; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_LabelName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_LabelName_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_LabelName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_LabelName_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_LabelName) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name19; - $x$1 = $x$1.$name19; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_LabelName)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_LabelName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_LabelName__init_0 = ($this, $name, $position) => { - $this.$name19 = $name; - $this.$position62 = $position; -}, -oncie_LabelName__init_ = (var_0, var_1) => { - let var_2 = new oncie_LabelName(); - oncie_LabelName__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncie_RelTypeName() { - let a = this; jl_Object.call(a); - a.$name22 = null; - a.$position292 = null; -} -let oncie_RelTypeName_name = $this => { - return $this.$name22; -}, -oncie_RelTypeName_position = $this => { - return $this.$position292; -}, -oncie_RelTypeName_productPrefix = $this => { - return $rt_s(4832); -}, -oncie_RelTypeName_productArity = $this => { - return 1; -}, -oncie_RelTypeName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name22; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_RelTypeName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelTypeName_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelTypeName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelTypeName_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_RelTypeName) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name22; - $x$1 = $x$1.$name22; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_RelTypeName)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_RelTypeName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_RelTypeName__init_0 = ($this, $name, $position) => { - $this.$name22 = $name; - $this.$position292 = $position; -}, -oncie_RelTypeName__init_ = (var_0, var_1) => { - let var_2 = new oncie_RelTypeName(); - oncie_RelTypeName__init_0(var_2, var_0, var_1); - return var_2; -}, -onciafn_Neo4jASTFactory$createDatabase$lambda$_232_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createDatabase$lambda$_232_0_apply = (var$0, var$1) => { - return jl_Integer_valueOf(var$1.$value4); -}, -onciafn_Neo4jASTFactory$createDatabase$lambda$_232_1 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createDatabase$lambda$_232_1_apply = (var$0, var$1) => { - return jl_Integer_valueOf(var$1.$value4); -}; -function oncia_CreateDatabase() { - let a = this; jl_Object.call(a); - a.$dbName1 = null; - a.$ifExistsDo7 = null; - a.$options7 = null; - a.$waitUntilComplete3 = null; - a.$topology1 = null; - a.$position186 = null; - a.$isReadOnly12 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar19 = null; -} -let oncia_CreateDatabase_returnColumns = $this => { - return oncia_WaitableAdministrationCommand_returnColumns$($this); -}, -oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CreateDatabase_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_CreateDatabase_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_CreateDatabase_error0 = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_CreateDatabase_error = ($this, $gqlStatusObject, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$0($this, $gqlStatusObject, $msg, $position); -}, -oncia_CreateDatabase_foldedOver = $this => { - return $this; -}, -oncia_CreateDatabase_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_CreateDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly12 = $x$1; -}, -oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar19; -}, -oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar19 = $x$1; -}, -oncia_CreateDatabase_dbName = $this => { - return $this.$dbName1; -}, -oncia_CreateDatabase_ifExistsDo = $this => { - return $this.$ifExistsDo7; -}, -oncia_CreateDatabase_options = $this => { - return $this.$options7; -}, -oncia_CreateDatabase_waitUntilComplete = $this => { - return $this.$waitUntilComplete3; -}, -oncia_CreateDatabase_topology = $this => { - return $this.$topology1; -}, -oncia_CreateDatabase_position = $this => { - return $this.$position186; -}, -oncia_CreateDatabase_name = $this => { - let var$1, var$2; - var$1 = $this.$ifExistsDo7; - oncia_IfExistsReplace$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) - var$2 = 1; - else { - oncia_IfExistsInvalidSyntax$_$callClinit(); - var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; - } - if (!var$2) - return $rt_s(4833); - return $rt_s(4834); -}, -oncia_CreateDatabase_semanticCheck = $this => { - let var$1, $name, var$3; - var$1 = $this.$ifExistsDo7; - oncia_IfExistsInvalidSyntax$_$callClinit(); - if (!jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { - $name = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - $name = oncias_SemanticCheck_chain$($name, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); - } else { - onciap_Prettifier$_$callClinit(); - $name = onciap_Prettifier$_MODULE$; - var$3 = $this.$dbName1; - s_DummyImplicit$_$callClinit(); - $name = onciap_Prettifier$_escapeName($name, var$3, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(4835)), $name), $rt_s(4810)); - $name = oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$1), $this.$position186); - } - return $name.$chain(oncia_WriteAdministrationCommand_topologyCheck$($this, $this.$topology1, oncia_CreateDatabase_name($this))); -}, -oncia_CreateDatabase_productPrefix = $this => { - return $rt_s(4836); -}, -oncia_CreateDatabase_productArity = $this => { - return 5; -}, -oncia_CreateDatabase_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$dbName1; - case 1: - return $this.$ifExistsDo7; - case 2: - return $this.$options7; - case 3: - return $this.$waitUntilComplete3; - case 4: - return $this.$topology1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_CreateDatabase_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateDatabase_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateDatabase_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateDatabase_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateDatabase) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$dbName1; - var$3 = $x$1.$dbName1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$ifExistsDo7; - var$3 = $x$1.$ifExistsDo7; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$options7; - var$3 = $x$1.$options7; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$waitUntilComplete3; - var$3 = $x$1.$waitUntilComplete3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$topology1; - $x$1 = $x$1.$topology1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_CreateDatabase_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_CreateDatabase_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateDatabase__init_ = ($this, $dbName, $ifExistsDo, $options, $waitUntilComplete, $topology, $position) => { - $this.$dbName1 = $dbName; - $this.$ifExistsDo7 = $ifExistsDo; - $this.$options7 = $options; - $this.$waitUntilComplete3 = $waitUntilComplete; - $this.$topology1 = $topology; - $this.$position186 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_CreateDatabase__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_CreateDatabase(); - oncia_CreateDatabase__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}; -function oncia_Topology() { - let a = this; jl_Object.call(a); - a.$primaries = null; - a.$secondaries = null; -} -let oncia_Topology_productPrefix = $this => { - return $rt_s(4837); -}, -oncia_Topology_productArity = $this => { - return 2; -}, -oncia_Topology_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$primaries; - case 1: - return $this.$secondaries; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Topology_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Topology_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Topology_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Topology_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Topology) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$primaries; - var$3 = $x$1.$primaries; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$secondaries; - $x$1 = $x$1.$secondaries; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Topology)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_Topology__init_0 = ($this, $primaries, $secondaries) => { - $this.$primaries = $primaries; - $this.$secondaries = $secondaries; -}, -oncia_Topology__init_ = (var_0, var_1) => { - let var_2 = new oncia_Topology(); - oncia_Topology__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_CreateRole() { - let a = this; jl_Object.call(a); - a.$roleName0 = null; - a.$from18 = null; - a.$ifExistsDo3 = null; - a.$position116 = null; - a.$isReadOnly22 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar14 = null; -} -let oncia_CreateRole_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CreateRole_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_CreateRole_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateRole_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_CreateRole_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_CreateRole_foldedOver = $this => { - return $this; -}, -oncia_CreateRole_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_CreateRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly22 = $x$1; -}, -oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar14; -}, -oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar14 = $x$1; -}, -oncia_CreateRole_roleName = $this => { - return $this.$roleName0; -}, -oncia_CreateRole_from = $this => { - return $this.$from18; -}, -oncia_CreateRole_ifExistsDo = $this => { - return $this.$ifExistsDo3; -}, -oncia_CreateRole_position = $this => { - return $this.$position116; -}, -oncia_CreateRole_name = $this => { - let var$1, var$2; - var$1 = $this.$ifExistsDo3; - oncia_IfExistsReplace$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) - var$2 = 1; - else { - oncia_IfExistsInvalidSyntax$_$callClinit(); - var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; - } - if (!var$2) - return $rt_s(4838); - return $rt_s(4839); -}, -oncia_CreateRole_semanticCheck = $this => { - let var$1, $name, var$3; - var$1 = $this.$ifExistsDo3; - oncia_IfExistsInvalidSyntax$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { - onciap_Prettifier$_$callClinit(); - $name = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $this.$roleName0); - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(4840)), $name), $rt_s(4810)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$1), $this.$position116); - } - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncia_AdministrationCommand$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4841), $this.$roleName0)); - s_Option$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_semanticCheckFold$($this, s_Option$_option2Iterable(s_Option$_MODULE$, $this.$from18), new oncia_CreateRole$semanticCheck$lambda$_66_0)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_CreateRole_productPrefix = $this => { - return $rt_s(4842); -}, -oncia_CreateRole_productArity = $this => { - return 3; -}, -oncia_CreateRole_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$roleName0; - case 1: - return $this.$from18; - case 2: - return $this.$ifExistsDo3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_CreateRole_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateRole_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateRole_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateRole_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateRole) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$roleName0; - var$3 = $x$1.$roleName0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$from18; - var$3 = $x$1.$from18; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$ifExistsDo3; - $x$1 = $x$1.$ifExistsDo3; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_CreateRole_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_CreateRole_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateRole__init_ = ($this, $roleName, $from, $ifExistsDo, $position) => { - $this.$roleName0 = $roleName; - $this.$from18 = $from; - $this.$ifExistsDo3 = $ifExistsDo; - $this.$position116 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_CreateRole__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_CreateRole(); - oncia_CreateRole__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function onciafn_Neo4jASTFactory$createRole$lambda$_171_0() { - jl_Object.call(this); - this.$_0486 = null; -} -let onciafn_Neo4jASTFactory$createRole$lambda$_171_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0486; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}, -oncia_HomeDatabaseAction = $rt_classWithoutFields(0); -function oncia_SetHomeDatabaseAction() { - jl_Object.call(this); - this.$name24 = null; -} -let oncia_SetHomeDatabaseAction_productPrefix = $this => { - return $rt_s(4843); -}, -oncia_SetHomeDatabaseAction_productArity = $this => { - return 1; -}, -oncia_SetHomeDatabaseAction_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name24; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SetHomeDatabaseAction_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetHomeDatabaseAction_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetHomeDatabaseAction_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetHomeDatabaseAction_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SetHomeDatabaseAction) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$name24; - $x$1 = $x$1.$name24; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_SetHomeDatabaseAction__init_0 = ($this, $name) => { - $this.$name24 = $name; -}, -oncia_SetHomeDatabaseAction__init_ = var_0 => { - let var_1 = new oncia_SetHomeDatabaseAction(); - oncia_SetHomeDatabaseAction__init_0(var_1, var_0); - return var_1; -}; -function oncia_UserOptions() { - let a = this; jl_Object.call(a); - a.$suspended0 = null; - a.$homeDatabase3 = null; -} -let oncia_UserOptions_suspended = $this => { - return $this.$suspended0; -}, -oncia_UserOptions_homeDatabase = $this => { - return $this.$homeDatabase3; -}, -oncia_UserOptions_productPrefix = $this => { - return $rt_s(4844); -}, -oncia_UserOptions_productArity = $this => { - return 2; -}, -oncia_UserOptions_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$suspended0; - case 1: - return $this.$homeDatabase3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_UserOptions_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserOptions_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserOptions_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserOptions_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UserOptions) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$suspended0; - var$3 = $x$1.$suspended0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$homeDatabase3; - $x$1 = $x$1.$homeDatabase3; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_UserOptions__init_0 = ($this, $suspended, $homeDatabase) => { - $this.$suspended0 = $suspended; - $this.$homeDatabase3 = $homeDatabase; -}, -oncia_UserOptions__init_ = (var_0, var_1) => { - let var_2 = new oncia_UserOptions(); - oncia_UserOptions__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_Auth() { - let a = this; jl_Object.call(a); - a.$provider0 = null; - a.$authAttributes0 = null; - a.$position60 = null; -} -let oncia_Auth_position = $this => { - return $this.$position60; -}, -oncia_Auth_productPrefix = $this => { - return $rt_s(4845); -}, -oncia_Auth_productArity = $this => { - return 2; -}, -oncia_Auth_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$provider0; - case 1: - return $this.$authAttributes0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Auth_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Auth_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Auth_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Auth_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Auth) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$provider0; - var$3 = $x$1.$provider0; - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$authAttributes0; - $x$1 = $x$1.$authAttributes0; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Auth)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_Auth_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Auth__init_ = ($this, $provider, $authAttributes, $position) => { - $this.$provider0 = $provider; - $this.$authAttributes0 = $authAttributes; - $this.$position60 = $position; -}, -oncia_Auth__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_Auth(); - oncia_Auth__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncia_AdministrationCommand$ = $rt_classWithoutFields(), -oncia_AdministrationCommand$_MODULE$ = null, -oncia_AdministrationCommand$_NATIVE_AUTH0 = null, -oncia_AdministrationCommand$_$callClinit = () => { - oncia_AdministrationCommand$_$callClinit = $rt_eraseClinit(oncia_AdministrationCommand$); - oncia_AdministrationCommand$__clinit_(); -}, -oncia_AdministrationCommand$__clinit_ = () => { - let var$1; - var$1 = new oncia_AdministrationCommand$; - oncia_AdministrationCommand$_$callClinit(); - oncia_AdministrationCommand$_MODULE$ = var$1; - oncia_AdministrationCommand$_NATIVE_AUTH0 = $rt_s(4846); -}, -oncia_AdministrationCommand$_NATIVE_AUTH = $this => { - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_NATIVE_AUTH0; -}, -oncia_AdministrationCommand$_checkIsStringLiteralOrParameter = ($this, $value, $expression) => { - let var$3, var$4, var$5, var$6, var$7, var$8; - if ($expression instanceof oncie_StringLiteral) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($rt_isInstance($expression, oncie_Parameter)) - a: { - b: { - var$3 = $expression.$parameterType(); - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTString(oncius_package$_MODULE$); - if (var$3 !== null) { - if (!var$3.$equals(var$4)) - break a; - else - break b; - } - if (var$4 !== null) - break a; - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$5 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); - var$7 = var$6.data; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - var$8 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$8); - jl_StringBuilder_append(jl_StringBuilder_append(var$8, $value), $rt_s(4847)); - var$7[0] = oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$8), $expression.$position()); - return oncias_SemanticCheck$_error(var$3, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); -}, -oncia_AuthAttribute = $rt_classWithoutFields(0), -oncia_UserAuth = $rt_classWithoutFields(0), -oncia_UserAuth_checkDuplicateAuth$ = $$this => { - let var$2, var$3; - var$2 = sc_AbstractIterable_groupBy($$this.$newStyleAuth(), new oncia_UserAuth$checkDuplicateAuth$lambda$_12_0); - var$3 = new oncia_UserAuth$$anonfun$checkDuplicateAuth$2; - var$3.$$outer52 = $$this; - return s_Option_getOrElse(sc_AbstractIterable_collectFirst(var$2, var$3), new oncia_UserAuth$checkDuplicateAuth$lambda$_12_1); -}, -oncia_UserAuth_checkOldAndNewStyleCombination$ = $$this => { - let var$2; - a: { - var$2 = sci_List_filter($$this.$newStyleAuth(), new oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0); - if (var$2 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$2); - if (var$2.$lengthCompare(1) >= 0 && s_Option_isDefined($$this.$oldStyleAuth())) { - s_Option$_$callClinit(); - $$this = $$this.$error2($rt_s(2760), (((s_Option$_option2Iterable(s_Option$_MODULE$, $$this.$oldStyleAuth())).$head()).$authAttributes0.$head()).$position()); - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - return $$this; -}, -oncia_UserAuth_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq(sci_List_map(sci_List_filter($$this.$newStyleAuth(), new oncia_UserAuth$$init$$lambda$_23_0), new oncia_UserAuth$$init$$lambda$_23_1)); - $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq(sci_List_map((sci_List_filter($$this.$newStyleAuth(), new oncia_UserAuth$$init$$lambda$_23_2)).$concat($$this.$oldStyleAuth()), new oncia_UserAuth$$init$$lambda$_23_3)); - $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq(($$this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths()).$headOption()); - $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq(($$this.$externalAuths()).$concat($$this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths())); - $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq(s_Option_isDefined($$this.$oldStyleAuth())); -}; -function oncia_CreateUser() { - let a = this; jl_Object.call(a); - a.$userName2 = null; - a.$userOptions0 = null; - a.$ifExistsDo4 = null; - a.$newStyleAuth1 = null; - a.$oldStyleAuth1 = null; - a.$position108 = null; - a.$userAsString = null; - a.$externalAuths1 = null; - a.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths0 = null; - a.$nativeAuth = null; - a.$allAuths0 = null; - a.$useOldStyleNativeAuth0 = 0; - a.$isReadOnly11 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar24 = null; -} -let oncia_CreateUser_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CreateUser_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_CreateUser_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_CreateUser_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_CreateUser_foldedOver = $this => { - return $this; -}, -oncia_CreateUser_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_CreateUser_externalAuths = $this => { - return $this.$externalAuths1; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths = $this => { - return $this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths0; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq = ($this, $x$1) => { - $this.$externalAuths1 = $x$1; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths0 = $x$1; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq = ($this, $x$1) => { - $this.$nativeAuth = $x$1; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq = ($this, $x$1) => { - $this.$allAuths0 = $x$1; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq = ($this, $x$1) => { - $this.$useOldStyleNativeAuth0 = $x$1; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly11 = $x$1; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar24; -}, -oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar24 = $x$1; -}, -oncia_CreateUser_newStyleAuth = $this => { - return $this.$newStyleAuth1; -}, -oncia_CreateUser_oldStyleAuth = $this => { - return $this.$oldStyleAuth1; -}, -oncia_CreateUser_position = $this => { - return $this.$position108; -}, -oncia_CreateUser_name = $this => { - let var$1, var$2; - var$1 = $this.$ifExistsDo4; - oncia_IfExistsReplace$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) - var$2 = 1; - else { - oncia_IfExistsInvalidSyntax$_$callClinit(); - var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; - } - if (!var$2) - return $rt_s(4848); - return $rt_s(4849); -}, -oncia_CreateUser_semanticCheck = $this => { - let var$1, var$2, var$3, var$4; - var$1 = $this.$ifExistsDo4; - oncia_IfExistsInvalidSyntax$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { - var$2 = $this.$userAsString; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4850)), var$2), $rt_s(4810)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$3), $this.$position108); - } - if (!$this.$allAuths0.$isEmpty()) { - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else - var$3 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(2764), $this.$position108); - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$3, oncia_UserAuth_checkDuplicateAuth$($this)), oncia_UserAuth_checkOldAndNewStyleCombination$($this)); - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$4, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, $this.$allAuths0, new oncia_CreateUser$semanticCheck$lambda$_83_0)), oncia_AdministrationCommand_semanticCheck$($this)); - oncia_AdministrationCommand$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(var$4, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4811), $this.$userName2)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_CreateUser_productPrefix = $this => { - return $rt_s(4851); -}, -oncia_CreateUser_productArity = $this => { - return 5; -}, -oncia_CreateUser_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$userName2; - case 1: - return $this.$userOptions0; - case 2: - return $this.$ifExistsDo4; - case 3: - return $this.$newStyleAuth1; - case 4: - return $this.$oldStyleAuth1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_CreateUser_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateUser_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateUser_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateUser_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateUser) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$userName2; - var$3 = $x$1.$userName2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$userOptions0; - var$3 = $x$1.$userOptions0; - if (var$2 !== null) { - if (!oncia_UserOptions_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$ifExistsDo4; - var$3 = $x$1.$ifExistsDo4; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$newStyleAuth1; - var$3 = $x$1.$newStyleAuth1; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$oldStyleAuth1; - $x$1 = $x$1.$oldStyleAuth1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_CreateUser_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_CreateUser_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_CreateUser__init_0 = ($this, $userName, $userOptions, $ifExistsDo, $newStyleAuth, $oldStyleAuth, $position) => { - $this.$userName2 = $userName; - $this.$userOptions0 = $userOptions; - $this.$ifExistsDo4 = $ifExistsDo; - $this.$newStyleAuth1 = $newStyleAuth; - $this.$oldStyleAuth1 = $oldStyleAuth; - $this.$position108 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); - oncia_UserAuth_$init$($this); - onciap_Prettifier$_$callClinit(); - $this.$userAsString = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $userName); -}, -oncia_CreateUser__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_CreateUser(); - oncia_CreateUser__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}, -oncie_FunctionInvocation$ = $rt_classWithoutFields(), -oncie_FunctionInvocation$_MODULE$ = null, -oncie_FunctionInvocation$_$callClinit = () => { - oncie_FunctionInvocation$_$callClinit = $rt_eraseClinit(oncie_FunctionInvocation$); - oncie_FunctionInvocation$__clinit_(); -}, -oncie_FunctionInvocation$__clinit_ = () => { - let var$1; - var$1 = new oncie_FunctionInvocation$; - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation$_MODULE$ = var$1; -}; -function oncie_ExplicitParameter() { - let a = this; oncie_Expression.call(a); - a.$name14 = null; - a.$parameterType0 = null; - a.$sizeHint2 = null; - a.$position52 = null; -} -let oncie_ExplicitParameter_asCanonicalStringVal = $this => { - return oncie_Parameter_asCanonicalStringVal$($this); -}, -oncie_ExplicitParameter_isConstantForQuery = $this => { - return 1; -}, -oncie_ExplicitParameter_name = $this => { - return $this.$name14; -}, -oncie_ExplicitParameter_parameterType = $this => { - return $this.$parameterType0; -}, -oncie_ExplicitParameter_sizeHint = $this => { - return $this.$sizeHint2; -}, -oncie_ExplicitParameter_position = $this => { - return $this.$position52; -}, -oncie_ExplicitParameter_hashCode = $this => { - let var$1, var$2, var$3; - suh_MurmurHash3$_$callClinit(); - var$1 = suh_MurmurHash3$_MODULE$; - var$2 = $rt_createArray(jl_Object, 2); - var$3 = var$2.data; - var$3[0] = $this.$name14; - var$3[1] = $this.$parameterType0; - return suh_MurmurHash3$_arrayHash(var$1, var$2); -}, -oncie_ExplicitParameter_canEqual = ($this, $that) => { - return $that instanceof oncie_ExplicitParameter; -}, -oncie_ExplicitParameter_equals = ($this, $obj) => { - return oncie_Parameter_equals$($this, $obj); -}, -oncie_ExplicitParameter_copy = ($this, $name, $parameterType, $sizeHint, $position) => { - return oncie_ExplicitParameter__init_($name, $parameterType, $sizeHint, $position); -}, -oncie_ExplicitParameter_copy$default$1 = $this => { - return $this.$name14; -}, -oncie_ExplicitParameter_copy$default$2 = $this => { - return $this.$parameterType0; -}, -oncie_ExplicitParameter_copy$default$3 = $this => { - return $this.$sizeHint2; -}, -oncie_ExplicitParameter_productPrefix = $this => { - return $rt_s(4852); -}, -oncie_ExplicitParameter_productArity = $this => { - return 3; -}, -oncie_ExplicitParameter_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name14; - case 1: - return $this.$parameterType0; - case 2: - return $this.$sizeHint2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_ExplicitParameter_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ExplicitParameter_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ExplicitParameter__init_0 = ($this, $name, $parameterType, $sizeHint, $position) => { - $this.$name14 = $name; - $this.$parameterType0 = $parameterType; - $this.$sizeHint2 = $sizeHint; - $this.$position52 = $position; - oncie_Expression__init_($this); -}, -oncie_ExplicitParameter__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncie_ExplicitParameter(); - oncie_ExplicitParameter__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -onciafn_Neo4jASTFactory$$anon$3 = $rt_classWithoutFields(oncie_ExplicitParameter); -function oncie_SensitiveStringLiteral() { - let a = this; oncie_Expression.call(a); - a.$value24 = null; - a.$position95 = null; -} -let oncie_SensitiveStringLiteral_dup = ($this, $children) => { - return oncie_SensitiveStringLiteral__init_0($children.$head(), $this.$position95); -}, -oncie_SensitiveStringLiteral_equals = ($this, $obj) => { - if (!($obj instanceof oncie_SensitiveStringLiteral)) - return 0; - return ju_Arrays_equals1($obj.$value24, $this.$value24); -}, -oncie_SensitiveStringLiteral_hashCode = $this => { - let var$1, var$2, var$3, var$4; - var$1 = $this.$value24; - if (var$1 === null) - var$2 = 0; - else { - var$2 = 1; - var$3 = 0; - while (true) { - var$4 = var$1.data; - if (var$3 >= var$4.length) - break; - var$2 = (31 * var$2 | 0) + var$4[var$3] | 0; - var$3 = var$3 + 1 | 0; - } - } - return var$2; -}, -oncie_SensitiveStringLiteral_literalLength = $this => { - return $this.$position95.$inputLength; -}, -oncie_SensitiveStringLiteral_isConstantForQuery = $this => { - return 1; -}, -oncie_SensitiveStringLiteral_productPrefix = $this => { - return $rt_s(4853); -}, -oncie_SensitiveStringLiteral_productArity = $this => { - return 1; -}, -oncie_SensitiveStringLiteral_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$value24; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_SensitiveStringLiteral_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SensitiveStringLiteral_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SensitiveStringLiteral_dup1 = ($this, $children) => { - return oncie_SensitiveStringLiteral_dup($this, $children); -}, -oncie_SensitiveStringLiteral_dup0 = ($this, $children) => { - return oncie_SensitiveStringLiteral_dup($this, $children); -}, -oncie_SensitiveStringLiteral_position = $this => { - return $this.$position95; -}, -oncie_SensitiveStringLiteral__init_ = ($this, $value, $position) => { - $this.$value24 = $value; - $this.$position95 = $position; - oncie_Expression__init_($this); -}, -oncie_SensitiveStringLiteral__init_0 = (var_0, var_1) => { - let var_2 = new oncie_SensitiveStringLiteral(); - oncie_SensitiveStringLiteral__init_(var_2, var_0, var_1); - return var_2; -}, -jnc_StandardCharsets = $rt_classWithoutFields(), -jnc_StandardCharsets_UTF_8 = null, -jnc_StandardCharsets_US_ASCII = null, -jnc_StandardCharsets_ISO_8859_1 = null, -jnc_StandardCharsets_UTF_16 = null, -jnc_StandardCharsets_UTF_16BE = null, -jnc_StandardCharsets_UTF_16LE = null, -jnc_StandardCharsets_$callClinit = () => { - jnc_StandardCharsets_$callClinit = $rt_eraseClinit(jnc_StandardCharsets); - jnc_StandardCharsets__clinit_(); -}, -jnc_StandardCharsets__clinit_ = () => { - let var$1; - jnci_UTF8Charset_$callClinit(); - jnc_StandardCharsets_UTF_8 = jnci_UTF8Charset_INSTANCE; - var$1 = new jnci_AsciiCharset; - jnc_Charset__init_(var$1, $rt_s(4854), $rt_createArray(jl_String, 0)); - jnc_StandardCharsets_US_ASCII = var$1; - var$1 = new jnci_Iso8859Charset; - jnc_Charset__init_(var$1, $rt_s(4855), $rt_createArray(jl_String, 0)); - jnc_StandardCharsets_ISO_8859_1 = var$1; - jnc_StandardCharsets_UTF_16 = jnci_UTF16Charset__init_($rt_s(4856), 1, 0); - jnc_StandardCharsets_UTF_16BE = jnci_UTF16Charset__init_($rt_s(4857), 0, 0); - jnc_StandardCharsets_UTF_16LE = jnci_UTF16Charset__init_($rt_s(4858), 0, 1); -}, -onciafn_Neo4jASTFactory$createIndex$lambda$_168_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createIndex$lambda$_168_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciafn_TupleConverter$_$callClinit(); - return su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))), new onciafn_Neo4jASTFactory$$anonfun$createIndex$1$lambda$_553_0); -}, -oncia_CreateIndex$ = $rt_classWithoutFields(), -oncia_CreateIndex$_MODULE$ = null, -oncia_CreateIndex$__clinit_ = () => { - oncia_CreateIndex$_MODULE$ = new oncia_CreateIndex$; -}, -oncia_CreateIndex$_createFulltextNodeIndex = ($this, $variable, $labels, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - let var$9; - var$9 = new oncia_CreateFulltextIndexCommand; - s_package$_$callClinit(); - oncia_CreateFulltextIndexCommand__init_(var$9, $variable, su_Left$_apply(s_package$_Left(s_package$_MODULE$), $labels), $properties, $name, $ifExistsDo, $options, $useGraph, $position); - return var$9; -}, -oncia_CreateIndex$_createFulltextRelationshipIndex = ($this, $variable, $relTypes, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - let var$9; - var$9 = new oncia_CreateFulltextIndexCommand; - s_package$_$callClinit(); - oncia_CreateFulltextIndexCommand__init_(var$9, $variable, su_Right$_apply(s_package$_Right(s_package$_MODULE$), $relTypes), $properties, $name, $ifExistsDo, $options, $useGraph, $position); - return var$9; -}, -oncia_CreateIndex$_createLookupIndex = ($this, $variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateLookupIndexCommand__init_($variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateIndex$_createPointNodeIndex = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $label, $properties, $name, oncia_PointCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateIndex$_createPointRelationshipIndex = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $relType, $properties, $name, oncia_PointCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateIndex$_createRangeNodeIndex = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $fromDefault, $useGraph, $position) => { - return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $label, $properties, $name, oncia_RangeCreateIndex__init_($fromDefault), $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateIndex$_createRangeRelationshipIndex = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $fromDefault, $useGraph, $position) => { - return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $relType, $properties, $name, oncia_RangeCreateIndex__init_($fromDefault), $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateIndex$_createTextNodeIndex = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - let var$9; - var$9 = new oncia_CreateSingleLabelPropertyIndexCommand; - oncia_TextCreateIndex$_$callClinit(); - oncia_CreateSingleLabelPropertyIndexCommand__init_0(var$9, $variable, $label, $properties, $name, oncia_TextCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); - return var$9; -}, -oncia_CreateIndex$_createTextRelationshipIndex = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - let var$9; - var$9 = new oncia_CreateSingleLabelPropertyIndexCommand; - oncia_TextCreateIndex$_$callClinit(); - oncia_CreateSingleLabelPropertyIndexCommand__init_0(var$9, $variable, $relType, $properties, $name, oncia_TextCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); - return var$9; -}, -oncia_CreateIndex$_createVectorNodeIndex = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $label, $properties, $name, oncia_VectorCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); -}, -oncia_CreateIndex$_createVectorRelationshipIndex = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $relType, $properties, $name, oncia_VectorCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); -}, -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciafn_TupleConverter$_$callClinit(); - return su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))), new onciafn_Neo4jASTFactory$$anonfun$createFulltextIndex$1$lambda$_555_0); -}, -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_1 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_1_apply = (var$0, var$1) => { - var$1 = var$1; - return oncie_RelTypeName__init_(var$1.$string, var$1.$pos3); -}, -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_2 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_2_apply = (var$0, var$1) => { - var$1 = var$1; - return oncie_LabelName__init_(var$1.$string, var$1.$pos3); -}, -onciafn_Neo4jASTFactory$createLookupIndex$lambda$_167_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createLookupIndex$lambda$_167_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciafn_TupleConverter$_$callClinit(); - return su_Either$LeftProjection_map(su_Either_left(onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))), new onciafn_Neo4jASTFactory$$anonfun$createLookupIndex$1$lambda$_551_0); -}, -oncia_ExternalAuthAttribute = $rt_classWithoutFields(0); -function oncia_AuthId() { - let a = this; jl_Object.call(a); - a.$id1 = null; - a.$position276 = null; - a.$name50 = null; -} -let oncia_AuthId_position = $this => { - return $this.$position276; -}, -oncia_AuthId_name = $this => { - return $this.$name50; -}, -oncia_AuthId_productPrefix = $this => { - return $rt_s(4859); -}, -oncia_AuthId_productArity = $this => { - return 1; -}, -oncia_AuthId_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$id1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_AuthId_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AuthId_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AuthId_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AuthId_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_AuthId) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$id1; - $x$1 = $x$1.$id1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_AuthId_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_AuthId__init_ = ($this, $id, $position) => { - $this.$id1 = $id; - $this.$position276 = $position; - $this.$name50 = $rt_s(4860); -}, -oncia_AuthId__init_0 = (var_0, var_1) => { - let var_2 = new oncia_AuthId(); - oncia_AuthId__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_NativeAuthAttribute = $rt_classWithoutFields(0); -function oncia_Password() { - let a = this; jl_Object.call(a); - a.$password3 = null; - a.$isEncrypted = 0; - a.$position305 = null; - a.$name59 = null; -} -let oncia_Password_position = $this => { - return $this.$position305; -}, -oncia_Password_name = $this => { - return $this.$name59; -}, -oncia_Password_productPrefix = $this => { - return $rt_s(4861); -}, -oncia_Password_productArity = $this => { - return 2; -}, -oncia_Password_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$password3; - case 1: - return jl_Boolean_valueOf($this.$isEncrypted); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Password_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Password_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4861))), sr_Statics_anyHash($this.$password3)), !$this.$isEncrypted ? 1237 : 1231), 2); -}, -oncia_Password_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Password_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Password) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$isEncrypted != $x$1.$isEncrypted) - break b; - var$2 = $this.$password3; - $x$1 = $x$1.$password3; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_Password_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Password__init_ = ($this, $password, $isEncrypted, $position) => { - $this.$password3 = $password; - $this.$isEncrypted = $isEncrypted; - $this.$position305 = $position; - $this.$name59 = $rt_s(556); -}, -oncia_Password__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_Password(); - oncia_Password__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_PasswordChange() { - let a = this; jl_Object.call(a); - a.$requireChange = 0; - a.$position306 = null; - a.$name49 = null; -} -let oncia_PasswordChange_position = $this => { - return $this.$position306; -}, -oncia_PasswordChange_name = $this => { - return $this.$name49; -}, -oncia_PasswordChange_productPrefix = $this => { - return $rt_s(4862); -}, -oncia_PasswordChange_productArity = $this => { - return 1; -}, -oncia_PasswordChange_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$requireChange); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_PasswordChange_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PasswordChange_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4862))), !$this.$requireChange ? 1237 : 1231), 1); -}, -oncia_PasswordChange_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PasswordChange_equals = ($this, $x$1) => { - let var$2; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_PasswordChange) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$requireChange != $x$1.$requireChange) - break b; - } - var$2 = 1; - break a; - } - var$2 = 0; - } - return var$2; -}, -oncia_PasswordChange_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_PasswordChange__init_ = ($this, $requireChange, $position) => { - $this.$requireChange = $requireChange; - $this.$position306 = $position; - $this.$name49 = $rt_s(4863); -}, -oncia_PasswordChange__init_0 = (var_0, var_1) => { - let var_2 = new oncia_PasswordChange(); - oncia_PasswordChange__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_PrivilegeCommand() { - let a = this; jl_Object.call(a); - a.$privilege6 = null; - a.$qualifier4 = null; - a.$position45 = null; - a.$FAILED_PROPERTY_RULE0 = null; - a.$isReadOnly21 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar13 = null; -} -let oncia_PrivilegeCommand_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_PrivilegeCommand_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_PrivilegeCommand_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_PrivilegeCommand_dup0 = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_PrivilegeCommand_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_PrivilegeCommand_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_PrivilegeCommand_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_PrivilegeCommand_foldedOver = $this => { - return $this; -}, -oncia_PrivilegeCommand_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly21 = $x$1; -}, -oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar13; -}, -oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar13 = $x$1; -}, -oncia_PrivilegeCommand_FAILED_PROPERTY_RULE = $this => { - return $this.$FAILED_PROPERTY_RULE0; -}, -oncia_PrivilegeCommand_immutableKeywordOrEmptyString = ($this, $immutable) => { - if (!$immutable) - return $rt_s(4); - return $rt_s(4864); -}, -oncia_PrivilegeCommand_nanError = ($this, $l) => { - let var$2, var$3; - var$2 = $this.$FAILED_PROPERTY_RULE0; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(4865)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$3), $l.$position114); -}, -oncia_PrivilegeCommand_propertyAlwaysNullError = ($this, $predicate, $pos, $hint) => { - let var$4, var$5; - var$4 = $this.$FAILED_PROPERTY_RULE0; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$4), $rt_s(4866)), $predicate), $rt_s(4867)), $hint); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$5), $pos); -}, -oncia_PrivilegeCommand_propertyAlwaysNullError$default$3 = $this => { - return $rt_s(4); -}, -oncia_PrivilegeCommand_propertyPositionError = ($this, $p, $operator) => { - let var$3, var$4, var$5; - var$3 = $this.$FAILED_PROPERTY_RULE0; - var$4 = $p.$propertyKey0.$name5; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$3), $rt_s(4868)), var$4), $rt_s(4869)), $operator), $rt_s(4870)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$5), $p.$position14); -}, -oncia_PrivilegeCommand_checkExpression = ($this, $expression) => { - let var$2, $p, var$4, $items, var$6, $pk, var$8, $listLiteral, var$10, var$11, var$12, var$13, var$14, var$15, $e, var$17, $l, var$19, var$20, var$21, var$22, var$23, $p_0; - a: { - var$2 = 0; - $p = null; - var$4 = 0; - $items = null; - var$6 = 0; - $pk = null; - var$8 = 0; - $listLiteral = null; - var$10 = 0; - var$11 = null; - var$12 = 0; - var$13 = null; - var$14 = 0; - var$15 = null; - if ($expression instanceof oncie_Not) { - $e = oncie_Not_rhs($expression); - if ($rt_isInstance($e, oncie_BooleanExpression)) { - $e = $e; - break a; - } - } - $e = $expression; - } - var$17 = $e instanceof oncie_Equals; - if (var$17) { - var$2 = 1; - $p = $e; - $l = oncie_Equals_rhs($p); - if (oncie_Equals_lhs($p) instanceof oncie_Property && $l instanceof oncie_NaN) - return oncia_PrivilegeCommand_nanError($this, $l); - } - var$19 = $e instanceof oncie_NotEquals; - if (var$19) { - var$4 = 1; - $items = $e; - $l = oncie_NotEquals_rhs($items); - if (oncie_NotEquals_lhs($items) instanceof oncie_Property && $l instanceof oncie_NaN) - return oncia_PrivilegeCommand_nanError($this, $l); - } - var$20 = $e instanceof oncie_GreaterThan; - if (var$20) { - var$6 = 1; - $pk = $e; - $l = oncie_GreaterThan_rhs($pk); - if (oncie_GreaterThan_lhs($pk) instanceof oncie_Property && $l instanceof oncie_NaN) - return oncia_PrivilegeCommand_nanError($this, $l); - } - var$21 = $e instanceof oncie_GreaterThanOrEqual; - if (var$21) { - var$8 = 1; - $listLiteral = $e; - $l = oncie_GreaterThanOrEqual_rhs($listLiteral); - if (oncie_GreaterThanOrEqual_lhs($listLiteral) instanceof oncie_Property && $l instanceof oncie_NaN) - return oncia_PrivilegeCommand_nanError($this, $l); - } - var$22 = $e instanceof oncie_LessThan; - if (var$22) { - var$10 = 1; - var$11 = $e; - $l = oncie_LessThan_rhs(var$11); - if (oncie_LessThan_lhs(var$11) instanceof oncie_Property && $l instanceof oncie_NaN) - return oncia_PrivilegeCommand_nanError($this, $l); - } - var$23 = $e instanceof oncie_LessThanOrEqual; - if (var$23) { - var$12 = 1; - var$13 = $e; - $l = oncie_LessThanOrEqual_rhs(var$13); - if (oncie_LessThanOrEqual_lhs(var$13) instanceof oncie_Property && $l instanceof oncie_NaN) - return oncia_PrivilegeCommand_nanError($this, $l); - } - if (var$2) { - $l = oncie_Equals_lhs($p); - if ($l instanceof oncie_NaN) { - $p_0 = $l; - if (oncie_Equals_rhs($p) instanceof oncie_Property) - return oncia_PrivilegeCommand_nanError($this, $p_0); - } - } - if (var$4) { - $l = oncie_NotEquals_lhs($items); - if ($l instanceof oncie_NaN) { - $p_0 = $l; - if (oncie_NotEquals_rhs($items) instanceof oncie_Property) - return oncia_PrivilegeCommand_nanError($this, $p_0); - } - } - if (var$6) { - $l = oncie_GreaterThan_lhs($pk); - if ($l instanceof oncie_NaN) { - $p_0 = $l; - if (oncie_GreaterThan_rhs($pk) instanceof oncie_Property) - return oncia_PrivilegeCommand_nanError($this, $p_0); - } - } - if (var$8) { - $l = oncie_GreaterThanOrEqual_lhs($listLiteral); - if ($l instanceof oncie_NaN) { - $p_0 = $l; - if (oncie_GreaterThanOrEqual_rhs($listLiteral) instanceof oncie_Property) - return oncia_PrivilegeCommand_nanError($this, $p_0); - } - } - if (var$10) { - $l = oncie_LessThan_lhs(var$11); - if ($l instanceof oncie_NaN) { - $p_0 = $l; - if (oncie_LessThan_rhs(var$11) instanceof oncie_Property) - return oncia_PrivilegeCommand_nanError($this, $p_0); - } - } - if (var$12) { - $l = oncie_LessThanOrEqual_lhs(var$13); - if ($l instanceof oncie_NaN) { - $p_0 = $l; - if (oncie_LessThanOrEqual_rhs(var$13) instanceof oncie_Property) - return oncia_PrivilegeCommand_nanError($this, $p_0); - } - } - if (var$2) { - $p_0 = oncie_Equals_lhs($p); - $l = oncie_Equals_rhs($p); - if ($p_0 instanceof oncie_Property) { - $p_0 = $p_0; - if ($l instanceof oncie_Null) { - $expression = $l; - $p = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p_0, $p), $rt_s(4871)); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p_0), oncie_Null_position($expression), $rt_s(4872)); - } - } - } - if (var$4) { - $p_0 = oncie_NotEquals_lhs($items); - $l = oncie_NotEquals_rhs($items); - if ($p_0 instanceof oncie_Property) { - $p_0 = $p_0; - if ($l instanceof oncie_Null) { - $expression = $l; - $p = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p_0, $p), $rt_s(4873)); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p_0), oncie_Null_position($expression), $rt_s(4874)); - } - } - } - if (var$6) { - $p_0 = oncie_GreaterThan_lhs($pk); - $l = oncie_GreaterThan_rhs($pk); - if ($p_0 instanceof oncie_Property) { - $p_0 = $p_0; - if ($l instanceof oncie_Null) { - $expression = $l; - $p = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p_0, $p), $rt_s(4875)); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p_0), oncie_Null_position($expression), oncia_PrivilegeCommand_propertyAlwaysNullError$default$3($this)); - } - } - } - if (var$8) { - $p_0 = oncie_GreaterThanOrEqual_lhs($listLiteral); - $l = oncie_GreaterThanOrEqual_rhs($listLiteral); - if ($p_0 instanceof oncie_Property) { - $p_0 = $p_0; - if ($l instanceof oncie_Null) { - $expression = $l; - $p = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p_0, $p), $rt_s(4876)); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p_0), oncie_Null_position($expression), oncia_PrivilegeCommand_propertyAlwaysNullError$default$3($this)); - } - } - } - if (var$10) { - $p_0 = oncie_LessThan_lhs(var$11); - $l = oncie_LessThan_rhs(var$11); - if ($p_0 instanceof oncie_Property) { - $p_0 = $p_0; - if ($l instanceof oncie_Null) { - $expression = $l; - $p = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p_0, $p), $rt_s(4877)); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p_0), oncie_Null_position($expression), oncia_PrivilegeCommand_propertyAlwaysNullError$default$3($this)); - } - } - } - if (var$12) { - $p_0 = oncie_LessThanOrEqual_lhs(var$13); - $l = oncie_LessThanOrEqual_rhs(var$13); - if ($p_0 instanceof oncie_Property) { - $p_0 = $p_0; - if ($l instanceof oncie_Null) { - $expression = $l; - $p = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p_0, $p), $rt_s(4878)); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p_0), oncie_Null_position($expression), oncia_PrivilegeCommand_propertyAlwaysNullError$default$3($this)); - } - } - } - if (var$2) { - $l = oncie_Equals_lhs($p); - $p_0 = oncie_Equals_rhs($p); - if ($l instanceof oncie_Null) { - $l = $l; - if ($p_0 instanceof oncie_Property) { - $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(4879)), $expression); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p), oncie_Null_position($l), $rt_s(4872)); - } - } - } - if (var$4) { - $l = oncie_NotEquals_lhs($items); - $p_0 = oncie_NotEquals_rhs($items); - if ($l instanceof oncie_Null) { - $l = $l; - if ($p_0 instanceof oncie_Property) { - $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(4880)), $expression); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p), oncie_Null_position($l), $rt_s(4874)); - } - } - } - if (var$6) { - $l = oncie_GreaterThan_lhs($pk); - $p_0 = oncie_GreaterThan_rhs($pk); - if ($l instanceof oncie_Null) { - $l = $l; - if ($p_0 instanceof oncie_Property) { - $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(4881)), $expression); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p), oncie_Null_position($l), oncia_PrivilegeCommand_propertyAlwaysNullError$default$3($this)); - } - } - } - if (var$8) { - $l = oncie_GreaterThanOrEqual_lhs($listLiteral); - $p_0 = oncie_GreaterThanOrEqual_rhs($listLiteral); - if ($l instanceof oncie_Null) { - $l = $l; - if ($p_0 instanceof oncie_Property) { - $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(4882)), $expression); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p), oncie_Null_position($l), oncia_PrivilegeCommand_propertyAlwaysNullError$default$3($this)); - } - } - } - if (var$10) { - $l = oncie_LessThan_lhs(var$11); - $p_0 = oncie_LessThan_rhs(var$11); - if ($l instanceof oncie_Null) { - $l = $l; - if ($p_0 instanceof oncie_Property) { - $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(4883)), $expression); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p), oncie_Null_position($l), oncia_PrivilegeCommand_propertyAlwaysNullError$default$3($this)); - } - } - } - if (var$12) { - $l = oncie_LessThanOrEqual_lhs(var$13); - $p_0 = oncie_LessThanOrEqual_rhs(var$13); - if ($l instanceof oncie_Null) { - $l = $l; - if ($p_0 instanceof oncie_Property) { - $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p_0)); - $p = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(4884)), $expression); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p), oncie_Null_position($l), oncia_PrivilegeCommand_propertyAlwaysNullError$default$3($this)); - } - } - } - if (var$2) { - $p = oncie_Equals_rhs($p); - if ($p instanceof oncie_Property) - return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(4453)); - } - if (var$4) { - $p = oncie_NotEquals_rhs($items); - if ($p instanceof oncie_Property) - return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(4458)); - } - if (var$6) { - $p = oncie_GreaterThan_rhs($pk); - if ($p instanceof oncie_Property) - return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(604)); - } - if (var$8) { - $p = oncie_GreaterThanOrEqual_rhs($listLiteral); - if ($p instanceof oncie_Property) - return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(4454)); - } - if (var$10) { - $p = oncie_LessThan_rhs(var$11); - if ($p instanceof oncie_Property) - return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(603)); - } - if (var$12) { - $p = oncie_LessThanOrEqual_rhs(var$13); - if ($p instanceof oncie_Property) - return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(4456)); - } - var$4 = $e instanceof oncie_MapExpression; - if (var$4) { - var$14 = 1; - var$15 = $e; - if (sc_AbstractSeq_size(oncie_MapExpression_items(var$15)) > 1) { - $p = oncia_PrivilegeCommand_FAILED_PROPERTY_RULE($this); - $expression = oncia_PrivilegeCommand_stringifyExpression$1($expression); - $p_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($p_0, $p), $rt_s(4885)), $expression), $rt_s(4886)); - return oncia_PrivilegeCommand_error($this, jl_StringBuilder_toString($p_0), oncie_MapExpression_position(var$15)); - } - } - if (var$14) { - $p = oncie_MapExpression_items(var$15); - if ($p !== null) { - s_package$_$callClinit(); - $p = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $p); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $p)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $p)); - $p_0 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($p_0, sc_SeqFactory$UnapplySeqWrapper$_get$extension($p_0, $p), 1)) { - $p_0 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $p = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($p_0, sc_SeqFactory$UnapplySeqWrapper$_get$extension($p_0, $p), 0); - if ($p !== null) { - $pk = $p.$_1(); - $l = $p.$_2(); - if ($pk !== null && $l instanceof oncie_Null) { - $expression = $l; - $p = oncie_PropertyKeyName_name($pk); - $p_0 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1($p_0, 123), $p), $rt_s(4887)); - return oncia_PrivilegeCommand_propertyAlwaysNullError($this, jl_StringBuilder_toString($p_0), oncie_Null_position($expression), $rt_s(4888)); - } - } - } - } - } - } - b: { - if (var$17) { - $p = $e; - if (oncie_Equals_lhs($p) instanceof oncie_Property && $rt_isInstance(oncie_Equals_rhs($p), oncie_Literal)) { - var$2 = 1; - break b; - } - } - if (var$19) { - $p = $e; - if (oncie_NotEquals_lhs($p) instanceof oncie_Property && $rt_isInstance(oncie_NotEquals_rhs($p), oncie_Literal)) { - var$2 = 1; - break b; - } - } - if (var$17) { - $p = $e; - if (oncie_Equals_lhs($p) instanceof oncie_Property && oncie_Equals_rhs($p) instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - if (var$19) { - $p = $e; - if (oncie_NotEquals_lhs($p) instanceof oncie_Property && oncie_NotEquals_rhs($p) instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - if ($e instanceof oncie_In) { - $p = $e; - if (oncie_In_lhs($p) instanceof oncie_Property && oncie_In_rhs($p) instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - if ($e instanceof oncie_Not) { - $p = oncie_Not_rhs($e); - if ($p instanceof oncie_In) { - $p = $p; - if (oncie_In_lhs($p) instanceof oncie_Property && oncie_In_rhs($p) instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - } - if ($e instanceof oncie_IsNull && oncie_IsNull_lhs($e) instanceof oncie_Property) - var$2 = 1; - else if ($e instanceof oncie_IsNotNull && oncie_IsNotNull_lhs($e) instanceof oncie_Property) - var$2 = 1; - else { - if (var$4) { - $p = oncie_MapExpression_items($e); - if ($p !== null) { - s_package$_$callClinit(); - $p = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $p); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $p)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $p)); - $p_0 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($p_0, sc_SeqFactory$UnapplySeqWrapper$_get$extension($p_0, $p), 1)) { - $p_0 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $p = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($p_0, sc_SeqFactory$UnapplySeqWrapper$_get$extension($p_0, $p), 0); - if ($p !== null && $p.$_1() !== null && $rt_isInstance($p.$_2(), oncie_Literal)) { - var$2 = 1; - break b; - } - } - } - } - } - if (var$4) { - $p = oncie_MapExpression_items($e); - if ($p !== null) { - s_package$_$callClinit(); - $p = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $p); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $p)) { - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $p)); - $p_0 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($p_0, sc_SeqFactory$UnapplySeqWrapper$_get$extension($p_0, $p), 1)) { - $p_0 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; - $p = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($p_0, sc_SeqFactory$UnapplySeqWrapper$_get$extension($p_0, $p), 0); - if ($p !== null && $p.$_1() !== null && $p.$_2() instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - } - } - } - if (var$20) { - $p = $e; - if (oncie_GreaterThan_lhs($p) instanceof oncie_Property && $rt_isInstance(oncie_GreaterThan_rhs($p), oncie_Literal)) { - var$2 = 1; - break b; - } - } - if (var$20) { - $p = $e; - if (oncie_GreaterThan_lhs($p) instanceof oncie_Property && oncie_GreaterThan_rhs($p) instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - if (var$21) { - $p = $e; - if (oncie_GreaterThanOrEqual_lhs($p) instanceof oncie_Property && $rt_isInstance(oncie_GreaterThanOrEqual_rhs($p), oncie_Literal)) { - var$2 = 1; - break b; - } - } - if (var$21) { - $p = $e; - if (oncie_GreaterThanOrEqual_lhs($p) instanceof oncie_Property && oncie_GreaterThanOrEqual_rhs($p) instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - if (var$22) { - $p = $e; - if (oncie_LessThan_lhs($p) instanceof oncie_Property && $rt_isInstance(oncie_LessThan_rhs($p), oncie_Literal)) { - var$2 = 1; - break b; - } - } - if (var$22) { - $p = $e; - if (oncie_LessThan_lhs($p) instanceof oncie_Property && oncie_LessThan_rhs($p) instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - if (var$23) { - $p = $e; - if (oncie_LessThanOrEqual_lhs($p) instanceof oncie_Property && $rt_isInstance(oncie_LessThanOrEqual_rhs($p), oncie_Literal)) { - var$2 = 1; - break b; - } - } - if (var$23) { - $p = $e; - if (oncie_LessThanOrEqual_lhs($p) instanceof oncie_Property && oncie_LessThanOrEqual_rhs($p) instanceof oncie_ExplicitParameter) { - var$2 = 1; - break b; - } - } - var$2 = 0; - } - } - if (var$2) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($e instanceof oncie_In) { - $p = $e; - $listLiteral = oncie_In_rhs($p); - if (oncie_In_lhs($p) instanceof oncie_Property && $listLiteral instanceof oncie_ListLiteral) - return oncia_PrivilegeCommand_checkTypesInList$1($this, $listLiteral, $expression); - } - if ($e instanceof oncie_Not) { - $p = oncie_Not_rhs($e); - if ($p instanceof oncie_In) { - $p = $p; - $listLiteral = oncie_In_rhs($p); - if (oncie_In_lhs($p) instanceof oncie_Property && $listLiteral instanceof oncie_ListLiteral) - return oncia_PrivilegeCommand_checkTypesInList$1($this, $listLiteral, $expression); - } - } - $p = oncia_PrivilegeCommand_FAILED_PROPERTY_RULE($this); - $p_0 = oncia_PrivilegeCommand_stringifyExpression$1($expression); - $l = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($l, $p), $rt_s(4885)), $p_0), $rt_s(4889)); - return oncia_PrivilegeCommand_error($this, jl_StringBuilder_toString($l), $expression.$position()); -}, -oncia_PrivilegeCommand_semanticCheck = $this => { - let $showSettingFeatureCheck, var$2, $u, var$4; - a: { - $showSettingFeatureCheck = $this.$privilege6; - if ($showSettingFeatureCheck instanceof oncia_DbmsPrivilege) { - var$2 = $showSettingFeatureCheck.$action3; - if (jl_Object_equals(oncia_ShowSettingAction$_MODULE$, var$2)) { - $showSettingFeatureCheck = $this.$name(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(983)), $showSettingFeatureCheck), $rt_s(4677)); - $showSettingFeatureCheck = oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, jl_AbstractStringBuilder_toString(var$2), oncias_SemanticFeature$ShowSetting$_MODULE$, $this.$position45); - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - $showSettingFeatureCheck = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - b: { - var$2 = $this.$privilege6; - if (var$2 instanceof oncia_DbmsPrivilege) { - $u = var$2.$action3; - if ($rt_isInstance($u, oncia_UnassignableAction)) { - $showSettingFeatureCheck = $u.$name(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(4890)), $showSettingFeatureCheck), 96); - $showSettingFeatureCheck = oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$2), $this.$position45); - break b; - } - } - if (!(var$2 instanceof oncia_LoadPrivilege)) { - var$2 = oncias_SemanticCheck_chain$($showSettingFeatureCheck, oncia_AdministrationCommand_semanticCheck$($this)); - oncias_SemanticState$_$callClinit(); - $showSettingFeatureCheck = oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); - } else { - $showSettingFeatureCheck = $this.$qualifier4; - if ($showSettingFeatureCheck instanceof sci_$colon$colon && $showSettingFeatureCheck.$head1 instanceof oncia_LoadUrlQualifier) - $showSettingFeatureCheck = oncias_SemanticAnalysisTooling_error$($this, $rt_s(4891), $this.$position45); - else { - $showSettingFeatureCheck = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - $showSettingFeatureCheck = oncias_SemanticCheck_chain$($showSettingFeatureCheck, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); - } - } - } - var$2 = $this.$qualifier4; - oncias_SemanticCheck$_$callClinit(); - $u = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - var$4 = new oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_69_0; - var$4.$_0175 = $this; - return $showSettingFeatureCheck.$chain(sci_List_foldLeft(var$2, $u, var$4)); -}, -oncia_PrivilegeCommand_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_PrivilegeCommand_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_PrivilegeCommand_stringifyExpression$1 = $expression$1 => { - return onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new oncia_PrivilegeCommand$stringifyExpression$1$lambda$_78_0, 0, 0, 0, 0), $expression$1); -}, -oncia_PrivilegeCommand_checkTypesInList$1 = ($this, $listLiteral, $expression$1) => { - let var$3, var$4; - if ($listLiteral.$expressions0.$forall(new oncia_PrivilegeCommand$checkTypesInList$1$lambda$_80_0)) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - var$3 = $this.$FAILED_PROPERTY_RULE0; - $listLiteral = oncia_PrivilegeCommand_stringifyExpression$1($expression$1); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$3), $rt_s(4885)), $listLiteral), $rt_s(4892)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$4), $expression$1.$position()); -}, -oncia_PrivilegeCommand__init_ = ($this, $privilege, $qualifier, $position) => { - $this.$privilege6 = $privilege; - $this.$qualifier4 = $qualifier; - $this.$position45 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); - $this.$FAILED_PROPERTY_RULE0 = $rt_s(2053); -}; -function oncia_DenyPrivilege() { - let a = this; oncia_PrivilegeCommand.call(a); - a.$privilege4 = null; - a.$immutable1 = 0; - a.$resource2 = null; - a.$qualifier1 = null; - a.$roleNames5 = null; - a.$position135 = null; -} -let oncia_DenyPrivilege_privilege = $this => { - return $this.$privilege4; -}, -oncia_DenyPrivilege_resource = $this => { - return $this.$resource2; -}, -oncia_DenyPrivilege_qualifier = $this => { - return $this.$qualifier1; -}, -oncia_DenyPrivilege_roleNames = $this => { - return $this.$roleNames5; -}, -oncia_DenyPrivilege_position = $this => { - return $this.$position135; -}, -oncia_DenyPrivilege_name = $this => { - let var$1, var$2, var$3; - var$1 = oncia_PrivilegeCommand_immutableKeywordOrEmptyString($this, $this.$immutable1); - var$2 = $this.$privilege4.$name37; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$1 = jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4893)), var$1); - jl_AbstractStringBuilder_append0(var$1, 32); - jl_StringBuilder_append(var$1, var$2); - return jl_AbstractStringBuilder_toString(var$3); -}, -oncia_DenyPrivilege_semanticCheck = $this => { - let var$1, var$2; - var$1 = $this.$privilege4; - if (var$1 instanceof oncia_GraphPrivilege) { - var$2 = var$1.$action0; - if (jl_Object_equals(oncia_MergeAdminAction$_MODULE$, var$2)) - return oncias_SemanticAnalysisTooling_error$($this, $rt_s(4894), $this.$position135); - } - return oncia_PrivilegeCommand_semanticCheck($this); -}, -oncia_DenyPrivilege_productPrefix = $this => { - return $rt_s(4895); -}, -oncia_DenyPrivilege_productArity = $this => { - return 5; -}, -oncia_DenyPrivilege_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$privilege4; - case 1: - return jl_Boolean_valueOf($this.$immutable1); - case 2: - return $this.$resource2; - case 3: - return $this.$qualifier1; - case 4: - return $this.$roleNames5; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DenyPrivilege_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DenyPrivilege_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4895))), sr_Statics_anyHash($this.$privilege4)), !$this.$immutable1 ? 1237 : 1231), sr_Statics_anyHash($this.$resource2)), sr_Statics_anyHash($this.$qualifier1)), sr_Statics_anyHash($this.$roleNames5)), 5); -}, -oncia_DenyPrivilege_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DenyPrivilege_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DenyPrivilege) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$immutable1 != $x$1.$immutable1) - break b; - d: { - var$2 = $this.$privilege4; - var$3 = $x$1.$privilege4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$resource2; - var$3 = $x$1.$resource2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$qualifier1; - var$3 = $x$1.$qualifier1; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$roleNames5; - $x$1 = $x$1.$roleNames5; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_DenyPrivilege__init_0 = ($this, $privilege, $immutable, $resource, $qualifier, $roleNames, $position) => { - $this.$privilege4 = $privilege; - $this.$immutable1 = $immutable; - $this.$resource2 = $resource; - $this.$qualifier1 = $qualifier; - $this.$roleNames5 = $roleNames; - $this.$position135 = $position; - oncia_PrivilegeCommand__init_($this, $privilege, $qualifier, $position); -}, -oncia_DenyPrivilege__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_DenyPrivilege(); - oncia_DenyPrivilege__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}; -function onciafn_Neo4jASTFactory$denyPrivilege$lambda$_196_0() { - jl_Object.call(this); - this.$_0866 = null; -} -let onciafn_Neo4jASTFactory$denyPrivilege$lambda$_196_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0866; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function oncia_EnableServer() { - let a = this; jl_Object.call(a); - a.$serverName2 = null; - a.$optionsMap0 = null; - a.$position209 = null; - a.$isReadOnly24 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar21 = null; -} -let oncia_EnableServer_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_EnableServer_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_EnableServer_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_EnableServer_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_EnableServer_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_EnableServer_foldedOver = $this => { - return $this; -}, -oncia_EnableServer_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_EnableServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly24 = $x$1; -}, -oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar21; -}, -oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar21 = $x$1; -}, -oncia_EnableServer_serverName = $this => { - return $this.$serverName2; -}, -oncia_EnableServer_optionsMap = $this => { - return $this.$optionsMap0; -}, -oncia_EnableServer_position = $this => { - return $this.$position209; -}, -oncia_EnableServer_name = $this => { - return $rt_s(4896); -}, -oncia_EnableServer_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_EnableServer_productPrefix = $this => { - return $rt_s(4897); -}, -oncia_EnableServer_productArity = $this => { - return 2; -}, -oncia_EnableServer_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$serverName2; - case 1: - return $this.$optionsMap0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_EnableServer_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_EnableServer_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_EnableServer_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_EnableServer_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_EnableServer) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$serverName2; - var$3 = $x$1.$serverName2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$optionsMap0; - $x$1 = $x$1.$optionsMap0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_EnableServer_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_EnableServer_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_EnableServer__init_ = ($this, $serverName, $optionsMap, $position) => { - $this.$serverName2 = $serverName; - $this.$optionsMap0 = $optionsMap; - $this.$position209 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_EnableServer__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_EnableServer(); - oncia_EnableServer__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_StartDatabase() { - let a = this; jl_Object.call(a); - a.$dbName3 = null; - a.$waitUntilComplete4 = null; - a.$position194 = null; - a.$isReadOnly31 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar2 = null; -} -let oncia_StartDatabase_returnColumns = $this => { - return oncia_WaitableAdministrationCommand_returnColumns$($this); -}, -oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_StartDatabase_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_StartDatabase_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_StartDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_StartDatabase_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_StartDatabase_foldedOver = $this => { - return $this; -}, -oncia_StartDatabase_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_StartDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly31 = $x$1; -}, -oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar2; -}, -oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar2 = $x$1; -}, -oncia_StartDatabase_dbName = $this => { - return $this.$dbName3; -}, -oncia_StartDatabase_waitUntilComplete = $this => { - return $this.$waitUntilComplete4; -}, -oncia_StartDatabase_position = $this => { - return $this.$position194; -}, -oncia_StartDatabase_name = $this => { - return $rt_s(4898); -}, -oncia_StartDatabase_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_StartDatabase_productPrefix = $this => { - return $rt_s(4899); -}, -oncia_StartDatabase_productArity = $this => { - return 2; -}, -oncia_StartDatabase_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$dbName3; - case 1: - return $this.$waitUntilComplete4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_StartDatabase_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_StartDatabase_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_StartDatabase_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_StartDatabase_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_StartDatabase) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$dbName3; - var$3 = $x$1.$dbName3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$waitUntilComplete4; - $x$1 = $x$1.$waitUntilComplete4; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_StartDatabase_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_StartDatabase_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_StartDatabase__init_ = ($this, $dbName, $waitUntilComplete, $position) => { - $this.$dbName3 = $dbName; - $this.$waitUntilComplete4 = $waitUntilComplete; - $this.$position194 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_StartDatabase__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_StartDatabase(); - oncia_StartDatabase__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_StopDatabase() { - let a = this; jl_Object.call(a); - a.$dbName4 = null; - a.$waitUntilComplete2 = null; - a.$position266 = null; - a.$isReadOnly6 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar35 = null; -} -let oncia_StopDatabase_returnColumns = $this => { - return oncia_WaitableAdministrationCommand_returnColumns$($this); -}, -oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_StopDatabase_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_StopDatabase_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_StopDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_StopDatabase_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_StopDatabase_foldedOver = $this => { - return $this; -}, -oncia_StopDatabase_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_StopDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly6 = $x$1; -}, -oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar35; -}, -oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar35 = $x$1; -}, -oncia_StopDatabase_dbName = $this => { - return $this.$dbName4; -}, -oncia_StopDatabase_waitUntilComplete = $this => { - return $this.$waitUntilComplete2; -}, -oncia_StopDatabase_position = $this => { - return $this.$position266; -}, -oncia_StopDatabase_name = $this => { - return $rt_s(4900); -}, -oncia_StopDatabase_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_StopDatabase_productPrefix = $this => { - return $rt_s(4901); -}, -oncia_StopDatabase_productArity = $this => { - return 2; -}, -oncia_StopDatabase_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$dbName4; - case 1: - return $this.$waitUntilComplete2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_StopDatabase_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_StopDatabase_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_StopDatabase_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_StopDatabase_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_StopDatabase) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$dbName4; - var$3 = $x$1.$dbName4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$waitUntilComplete2; - $x$1 = $x$1.$waitUntilComplete2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_StopDatabase_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_StopDatabase_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_StopDatabase__init_ = ($this, $dbName, $waitUntilComplete, $position) => { - $this.$dbName4 = $dbName; - $this.$waitUntilComplete2 = $waitUntilComplete; - $this.$position266 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_StopDatabase__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_StopDatabase(); - oncia_StopDatabase__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncia_ShowAliases$ = $rt_classWithoutFields(), -oncia_ShowAliases$_MODULE$ = null, -oncia_ShowAliases$__clinit_ = () => { - oncia_ShowAliases$_MODULE$ = new oncia_ShowAliases$; -}, -oncia_ShowAliases$_apply = ($this, $aliasName, $yieldOrWhere, $position) => { - let var$4, var$5, var$6, var$7, var$8, $showColumns, var$10; - s_package$_$callClinit(); - var$4 = s_package$_List(s_package$_MODULE$); - var$5 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(s_Tuple2, 8); - var$7 = var$6.data; - var$8 = new s_Tuple2; - $showColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0(var$8, oncia_ShowColumn$_apply($showColumns, $rt_s(4902), oncia_ShowColumn$_apply$default$2($showColumns), $position), jl_Boolean_valueOf(1)); - var$7[0] = var$8; - var$10 = new s_Tuple2; - var$8 = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0(var$10, oncia_ShowColumn$_apply(var$8, $rt_s(4903), oncia_ShowColumn$_apply$default$2(var$8), $position), jl_Boolean_valueOf(1)); - var$7[1] = var$10; - $showColumns = new s_Tuple2; - var$10 = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(4904), oncia_ShowColumn$_apply$default$2(var$10), $position), jl_Boolean_valueOf(1)); - var$7[2] = $showColumns; - $showColumns = new s_Tuple2; - var$10 = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(4905), oncia_ShowColumn$_apply$default$2(var$10), $position), jl_Boolean_valueOf(1)); - var$7[3] = $showColumns; - $showColumns = new s_Tuple2; - var$10 = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(1199), oncia_ShowColumn$_apply$default$2(var$10), $position), jl_Boolean_valueOf(1)); - var$7[4] = $showColumns; - $showColumns = new s_Tuple2; - var$10 = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(1200), oncia_ShowColumn$_apply$default$2(var$10), $position), jl_Boolean_valueOf(1)); - var$7[5] = $showColumns; - $showColumns = new s_Tuple2; - var$10 = oncia_ShowColumn$_MODULE$; - oncius_package$_$callClinit(); - s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(4906), oncius_package$_CTMap(oncius_package$_MODULE$), $position), jl_Boolean_valueOf(0)); - var$7[6] = $showColumns; - var$7[7] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(4907), oncius_package$_CTMap(oncius_package$_MODULE$), $position), jl_Boolean_valueOf(0)); - $showColumns = var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); - var$10 = new oncia_ShowAliases; - oncia_DefaultOrAllShowColumns$_$callClinit(); - oncia_ShowAliases__init_(var$10, $aliasName, $yieldOrWhere, oncia_DefaultOrAllShowColumns$_apply0(oncia_DefaultOrAllShowColumns$_MODULE$, $showColumns, $yieldOrWhere), $position); - return var$10; -}, -oncia_ShowIndexType = $rt_classWithoutFields(0), -oncia_AllIndexes$ = $rt_classWithoutFields(), -oncia_AllIndexes$_MODULE$ = null, -oncia_AllIndexes$_prettyPrint = null, -oncia_AllIndexes$_description = null, -oncia_AllIndexes$__clinit_ = () => { - oncia_AllIndexes$_MODULE$ = new oncia_AllIndexes$; - oncia_AllIndexes$_prettyPrint = $rt_s(563); - oncia_AllIndexes$_description = $rt_s(4908); -}, -oncia_AllIndexes$_prettyPrint0 = $this => { - return oncia_AllIndexes$_prettyPrint; -}, -oncia_AllIndexes$_productArity = $this => { - return 0; -}, -oncia_AllIndexes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllIndexes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllIndexes$_hashCode = $this => { - return 1032870975; -}, -oncia_AllIndexes$_toString = $this => { - return $rt_s(4909); -}, -oncia_ShowIndexesClause$ = $rt_classWithoutFields(), -oncia_ShowIndexesClause$_MODULE$ = null, -oncia_ShowIndexesClause$_idColumn = null, -oncia_ShowIndexesClause$_nameColumn = null, -oncia_ShowIndexesClause$_stateColumn = null, -oncia_ShowIndexesClause$_populationPercentColumn = null, -oncia_ShowIndexesClause$_typeColumn = null; -let oncia_ShowIndexesClause$_entityTypeColumn = null, -oncia_ShowIndexesClause$_labelsOrTypesColumn = null, -oncia_ShowIndexesClause$_propertiesColumn = null, -oncia_ShowIndexesClause$_indexProviderColumn = null, -oncia_ShowIndexesClause$_owningConstraintColumn = null, -oncia_ShowIndexesClause$_lastReadColumn = null, -oncia_ShowIndexesClause$_readCountColumn = null, -oncia_ShowIndexesClause$_trackedSinceColumn = null, -oncia_ShowIndexesClause$_optionsColumn = null, -oncia_ShowIndexesClause$_failureMessageColumn = null, -oncia_ShowIndexesClause$_createStatementColumn = null, -oncia_ShowIndexesClause$__clinit_ = () => { - oncia_ShowIndexesClause$_MODULE$ = new oncia_ShowIndexesClause$; - oncia_ShowIndexesClause$_idColumn = $rt_s(4910); - oncia_ShowIndexesClause$_nameColumn = $rt_s(4902); - oncia_ShowIndexesClause$_stateColumn = $rt_s(4823); - oncia_ShowIndexesClause$_populationPercentColumn = $rt_s(4911); - oncia_ShowIndexesClause$_typeColumn = $rt_s(4912); - oncia_ShowIndexesClause$_entityTypeColumn = $rt_s(1123); - oncia_ShowIndexesClause$_labelsOrTypesColumn = $rt_s(4913); - oncia_ShowIndexesClause$_propertiesColumn = $rt_s(4907); - oncia_ShowIndexesClause$_indexProviderColumn = $rt_s(4914); - oncia_ShowIndexesClause$_owningConstraintColumn = $rt_s(4915); - oncia_ShowIndexesClause$_lastReadColumn = $rt_s(4916); - oncia_ShowIndexesClause$_readCountColumn = $rt_s(4917); - oncia_ShowIndexesClause$_trackedSinceColumn = $rt_s(4918); - oncia_ShowIndexesClause$_optionsColumn = $rt_s(4919); - oncia_ShowIndexesClause$_failureMessageColumn = $rt_s(4920); - oncia_ShowIndexesClause$_createStatementColumn = $rt_s(4921); -}, -oncia_ShowIndexesClause$_apply = ($this, $indexType, $where, $yieldItems, $yieldAll, $position) => { - let var$6, var$7, var$8, var$9, $briefCols, var$11, $verboseCols, var$13; - s_package$_$callClinit(); - var$6 = s_package$_List(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncia_ShowAndTerminateColumn, 12); - var$9 = var$8.data; - $briefCols = new oncia_ShowAndTerminateColumn; - var$11 = oncia_ShowIndexesClause$_idColumn; - oncius_package$_$callClinit(); - oncia_ShowAndTerminateColumn__init_0($briefCols, var$11, oncius_package$_CTInteger(oncius_package$_MODULE$)); - var$9[0] = $briefCols; - var$9[1] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$9[2] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_stateColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$9[3] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_populationPercentColumn, oncius_package$_CTFloat(oncius_package$_MODULE$)); - var$9[4] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_typeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$9[5] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_entityTypeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - $verboseCols = new oncia_ShowAndTerminateColumn; - $briefCols = oncia_ShowIndexesClause$_labelsOrTypesColumn; - var$11 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0($verboseCols, $briefCols, oncius_package$_CTList(var$11, oncius_package$_CTString(var$11))); - var$9[6] = $verboseCols; - $briefCols = new oncia_ShowAndTerminateColumn; - var$13 = oncia_ShowIndexesClause$_propertiesColumn; - $verboseCols = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0($briefCols, var$13, oncius_package$_CTList($verboseCols, oncius_package$_CTString($verboseCols))); - var$9[7] = $briefCols; - var$9[8] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_indexProviderColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$9[9] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_owningConstraintColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$9[10] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_lastReadColumn, oncius_package$_CTDateTime(oncius_package$_MODULE$)); - var$9[11] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_readCountColumn, oncius_package$_CTInteger(oncius_package$_MODULE$)); - $briefCols = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); - $verboseCols = sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_trackedSinceColumn, oncius_package$_CTDateTime(oncius_package$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_optionsColumn, oncius_package$_CTMap(oncius_package$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_failureMessageColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), - sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_createStatementColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_Nil$_MODULE$)))); - return oncia_ShowIndexesClause__init_($briefCols, $briefCols.$concat($verboseCols), $indexType, $where, $yieldItems, $yieldAll, $position); -}, -oncia_RangeIndexes$ = $rt_classWithoutFields(), -oncia_RangeIndexes$_MODULE$ = null, -oncia_RangeIndexes$_prettyPrint = null, -oncia_RangeIndexes$_description = null, -oncia_RangeIndexes$__clinit_ = () => { - oncia_RangeIndexes$_MODULE$ = new oncia_RangeIndexes$; - oncia_RangeIndexes$_prettyPrint = $rt_s(1067); - oncia_RangeIndexes$_description = $rt_s(4922); -}, -oncia_RangeIndexes$_prettyPrint0 = $this => { - return oncia_RangeIndexes$_prettyPrint; -}, -oncia_RangeIndexes$_productArity = $this => { - return 0; -}, -oncia_RangeIndexes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RangeIndexes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RangeIndexes$_hashCode = $this => { - return 1401523491; -}, -oncia_RangeIndexes$_toString = $this => { - return $rt_s(4923); -}, -oncia_FulltextIndexes$ = $rt_classWithoutFields(), -oncia_FulltextIndexes$_MODULE$ = null, -oncia_FulltextIndexes$_prettyPrint = null, -oncia_FulltextIndexes$_description = null, -oncia_FulltextIndexes$__clinit_ = () => { - oncia_FulltextIndexes$_MODULE$ = new oncia_FulltextIndexes$; - oncia_FulltextIndexes$_prettyPrint = $rt_s(3496); - oncia_FulltextIndexes$_description = $rt_s(4924); -}, -oncia_FulltextIndexes$_prettyPrint0 = $this => { - return oncia_FulltextIndexes$_prettyPrint; -}, -oncia_FulltextIndexes$_productArity = $this => { - return 0; -}, -oncia_FulltextIndexes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_FulltextIndexes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_FulltextIndexes$_hashCode = $this => { - return (-329739004); -}, -oncia_FulltextIndexes$_toString = $this => { - return $rt_s(4925); -}, -oncia_TextIndexes$ = $rt_classWithoutFields(), -oncia_TextIndexes$_MODULE$ = null, -oncia_TextIndexes$_prettyPrint = null, -oncia_TextIndexes$_description = null, -oncia_TextIndexes$__clinit_ = () => { - oncia_TextIndexes$_MODULE$ = new oncia_TextIndexes$; - oncia_TextIndexes$_prettyPrint = $rt_s(1066); - oncia_TextIndexes$_description = $rt_s(4926); -}, -oncia_TextIndexes$_prettyPrint0 = $this => { - return oncia_TextIndexes$_prettyPrint; -}, -oncia_TextIndexes$_productArity = $this => { - return 0; -}, -oncia_TextIndexes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_TextIndexes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_TextIndexes$_hashCode = $this => { - return (-1523742989); -}, -oncia_TextIndexes$_toString = $this => { - return $rt_s(4927); -}, -oncia_PointIndexes$ = $rt_classWithoutFields(), -oncia_PointIndexes$_MODULE$ = null, -oncia_PointIndexes$_prettyPrint = null, -oncia_PointIndexes$_description = null; -let oncia_PointIndexes$__clinit_ = () => { - oncia_PointIndexes$_MODULE$ = new oncia_PointIndexes$; - oncia_PointIndexes$_prettyPrint = $rt_s(734); - oncia_PointIndexes$_description = $rt_s(4928); -}, -oncia_PointIndexes$_prettyPrint0 = $this => { - return oncia_PointIndexes$_prettyPrint; -}, -oncia_PointIndexes$_productArity = $this => { - return 0; -}, -oncia_PointIndexes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_PointIndexes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PointIndexes$_hashCode = $this => { - return (-951485072); -}, -oncia_PointIndexes$_toString = $this => { - return $rt_s(4929); -}, -oncia_VectorIndexes$ = $rt_classWithoutFields(), -oncia_VectorIndexes$_MODULE$ = null, -oncia_VectorIndexes$_prettyPrint = null, -oncia_VectorIndexes$_description = null, -oncia_VectorIndexes$__clinit_ = () => { - oncia_VectorIndexes$_MODULE$ = new oncia_VectorIndexes$; - oncia_VectorIndexes$_prettyPrint = $rt_s(3498); - oncia_VectorIndexes$_description = $rt_s(4930); -}, -oncia_VectorIndexes$_prettyPrint0 = $this => { - return oncia_VectorIndexes$_prettyPrint; -}, -oncia_VectorIndexes$_productArity = $this => { - return 0; -}, -oncia_VectorIndexes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_VectorIndexes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_VectorIndexes$_hashCode = $this => { - return (-774779363); -}, -oncia_VectorIndexes$_toString = $this => { - return $rt_s(4931); -}, -oncia_LookupIndexes$ = $rt_classWithoutFields(), -oncia_LookupIndexes$_MODULE$ = null, -oncia_LookupIndexes$_prettyPrint = null, -oncia_LookupIndexes$_description = null, -oncia_LookupIndexes$__clinit_ = () => { - oncia_LookupIndexes$_MODULE$ = new oncia_LookupIndexes$; - oncia_LookupIndexes$_prettyPrint = $rt_s(3497); - oncia_LookupIndexes$_description = $rt_s(4932); -}, -oncia_LookupIndexes$_prettyPrint0 = $this => { - return oncia_LookupIndexes$_prettyPrint; -}, -oncia_LookupIndexes$_productArity = $this => { - return 0; -}, -oncia_LookupIndexes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_LookupIndexes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LookupIndexes$_hashCode = $this => { - return (-610293242); -}, -oncia_LookupIndexes$_toString = $this => { - return $rt_s(4933); -}, -onciafn_Neo4jASTFactory$turnYieldToWith$lambda$_161_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$turnYieldToWith$lambda$_161_0_apply = (var$0, var$1) => { - return var$1.$name(); -}, -oncia_CommandClause$ = $rt_classWithoutFields(), -oncia_CommandClause$_MODULE$ = null, -oncia_CommandClause$_$callClinit = () => { - oncia_CommandClause$_$callClinit = $rt_eraseClinit(oncia_CommandClause$); - oncia_CommandClause$__clinit_(); -}, -oncia_CommandClause$__clinit_ = () => { - let var$1; - var$1 = new oncia_CommandClause$; - oncia_CommandClause$_$callClinit(); - oncia_CommandClause$_MODULE$ = var$1; -}, -oncia_CommandClause$_updateAliasedVariablesFromYieldInOrderByAndWhere = ($this, $yieldClause) => { - let $returnAliasesMap, $where, $orderBy; - $returnAliasesMap = sc_AbstractIterable_toMap($yieldClause.$returnItems3.$items0.$map(new oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0), s_$less$colon$less$_singleton); - $where = $yieldClause.$orderBy3; - $orderBy = new oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1; - $orderBy.$_0441 = $returnAliasesMap; - $orderBy = s_Option_map($where, $orderBy); - $where = $yieldClause.$where3; - $yieldClause = new oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2; - $yieldClause.$_0969 = $returnAliasesMap; - return s_Tuple2__init_($orderBy, s_Option_map($where, $yieldClause)); -}, -oncia_CommandClause$_updateExpression$1 = ($e, $returnAliasesMap$1) => { - let var$3; - oncia_CommandClause$_$callClinit(); - var$3 = new oncia_CommandClause$$updateExpression$1$lambda$_8_0; - var$3.$_0717 = $returnAliasesMap$1; - return (($returnAliasesMap$1.$filter1(var$3)).$map10(new oncia_CommandClause$$updateExpression$1$lambda$_8_1)).$foldLeft($e, new oncia_CommandClause$$updateExpression$1$lambda$_8_2); -}, -oncia_ParsedAsYield$ = $rt_classWithoutFields(), -oncia_ParsedAsYield$_MODULE$ = null, -oncia_ParsedAsYield$_$callClinit = () => { - oncia_ParsedAsYield$_$callClinit = $rt_eraseClinit(oncia_ParsedAsYield$); - oncia_ParsedAsYield$__clinit_(); -}, -oncia_ParsedAsYield$__clinit_ = () => { - let var$1; - var$1 = new oncia_ParsedAsYield$; - oncia_ParsedAsYield$_$callClinit(); - oncia_ParsedAsYield$_MODULE$ = var$1; -}, -oncia_ParsedAsYield$_productArity = $this => { - return 0; -}, -oncia_ParsedAsYield$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ParsedAsYield$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ParsedAsYield$_hashCode = $this => { - return (-925484790); -}, -oncia_ParsedAsYield$_toString = $this => { - return $rt_s(4934); -}, -oncia_ShowFunctionType = $rt_classWithoutFields(0), -oncia_AllFunctions$ = $rt_classWithoutFields(), -oncia_AllFunctions$_MODULE$ = null, -oncia_AllFunctions$_prettyPrint = null; -let oncia_AllFunctions$_description = null, -oncia_AllFunctions$__clinit_ = () => { - oncia_AllFunctions$_MODULE$ = new oncia_AllFunctions$; - oncia_AllFunctions$_prettyPrint = $rt_s(563); - oncia_AllFunctions$_description = $rt_s(4935); -}, -oncia_AllFunctions$_prettyPrint0 = $this => { - return oncia_AllFunctions$_prettyPrint; -}, -oncia_AllFunctions$_productArity = $this => { - return 0; -}, -oncia_AllFunctions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllFunctions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllFunctions$_hashCode = $this => { - return 1117996826; -}, -oncia_AllFunctions$_toString = $this => { - return $rt_s(4936); -}, -oncia_ExecutableBy = $rt_classWithoutFields(0); -function oncia_User() { - jl_Object.call(this); - this.$name38 = null; -} -let oncia_User_productPrefix = $this => { - return $rt_s(4937); -}, -oncia_User_productArity = $this => { - return 1; -}, -oncia_User_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name38; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_User_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_User_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_User_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_User_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_User) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name38; - $x$1 = $x$1.$name38; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_User)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_User__init_0 = ($this, $name) => { - $this.$name38 = $name; -}, -oncia_User__init_ = var_0 => { - let var_1 = new oncia_User(); - oncia_User__init_0(var_1, var_0); - return var_1; -}, -oncia_ShowFunctionsClause$ = $rt_classWithoutFields(), -oncia_ShowFunctionsClause$_MODULE$ = null, -oncia_ShowFunctionsClause$_nameColumn = null, -oncia_ShowFunctionsClause$_categoryColumn = null, -oncia_ShowFunctionsClause$_descriptionColumn = null, -oncia_ShowFunctionsClause$_signatureColumn = null, -oncia_ShowFunctionsClause$_isBuiltInColumn = null, -oncia_ShowFunctionsClause$_argumentDescriptionColumn = null, -oncia_ShowFunctionsClause$_returnDescriptionColumn = null, -oncia_ShowFunctionsClause$_aggregatingColumn = null, -oncia_ShowFunctionsClause$_rolesExecutionColumn = null, -oncia_ShowFunctionsClause$_rolesBoostedExecutionColumn = null, -oncia_ShowFunctionsClause$_isDeprecatedColumn = null, -oncia_ShowFunctionsClause$_deprecatedByColumn = null, -oncia_ShowFunctionsClause$__clinit_ = () => { - oncia_ShowFunctionsClause$_MODULE$ = new oncia_ShowFunctionsClause$; - oncia_ShowFunctionsClause$_nameColumn = $rt_s(4902); - oncia_ShowFunctionsClause$_categoryColumn = $rt_s(4938); - oncia_ShowFunctionsClause$_descriptionColumn = $rt_s(4939); - oncia_ShowFunctionsClause$_signatureColumn = $rt_s(4940); - oncia_ShowFunctionsClause$_isBuiltInColumn = $rt_s(4941); - oncia_ShowFunctionsClause$_argumentDescriptionColumn = $rt_s(4942); - oncia_ShowFunctionsClause$_returnDescriptionColumn = $rt_s(4943); - oncia_ShowFunctionsClause$_aggregatingColumn = $rt_s(4944); - oncia_ShowFunctionsClause$_rolesExecutionColumn = $rt_s(4945); - oncia_ShowFunctionsClause$_rolesBoostedExecutionColumn = $rt_s(4946); - oncia_ShowFunctionsClause$_isDeprecatedColumn = $rt_s(4947); - oncia_ShowFunctionsClause$_deprecatedByColumn = $rt_s(4948); -}, -oncia_ShowFunctionsClause$_apply = ($this, $functionType, $executable, $where, $yieldItems, $yieldAll, $position) => { - let $briefCols, $verboseCols, var$9, var$10, var$11, var$12, var$13, var$14; - $briefCols = sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_categoryColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_descriptionColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), - sci_Nil$_MODULE$))); - s_package$_$callClinit(); - $verboseCols = s_package$_List(s_package$_MODULE$); - var$9 = sr_ScalaRunTime$_MODULE$; - var$10 = $rt_createArray(oncia_ShowAndTerminateColumn, 9); - var$11 = var$10.data; - var$11[0] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_signatureColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$12 = new oncia_ShowAndTerminateColumn; - var$13 = oncia_ShowFunctionsClause$_isBuiltInColumn; - oncius_package$_$callClinit(); - oncia_ShowAndTerminateColumn__init_0(var$12, var$13, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - var$11[1] = var$12; - var$14 = new oncia_ShowAndTerminateColumn; - var$13 = oncia_ShowFunctionsClause$_argumentDescriptionColumn; - var$12 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0(var$14, var$13, oncius_package$_CTList(var$12, oncius_package$_CTMap(var$12))); - var$11[2] = var$14; - var$11[3] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_returnDescriptionColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$11[4] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_aggregatingColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - var$14 = new oncia_ShowAndTerminateColumn; - var$13 = oncia_ShowFunctionsClause$_rolesExecutionColumn; - var$12 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0(var$14, var$13, oncius_package$_CTList(var$12, oncius_package$_CTString(var$12))); - var$11[5] = var$14; - var$14 = new oncia_ShowAndTerminateColumn; - var$13 = oncia_ShowFunctionsClause$_rolesBoostedExecutionColumn; - var$12 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0(var$14, var$13, oncius_package$_CTList(var$12, oncius_package$_CTString(var$12))); - var$11[6] = var$14; - var$11[7] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_isDeprecatedColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - var$11[8] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_deprecatedByColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - $verboseCols = $verboseCols.$from0(sr_ScalaRunTime$_wrapRefArray(var$9, var$10)); - return oncia_ShowFunctionsClause__init_($briefCols, $briefCols.$concat($verboseCols), $functionType, $executable, $where, $yieldItems, $yieldAll, $position); -}, -oncia_CurrentUser$ = $rt_classWithoutFields(), -oncia_CurrentUser$_MODULE$ = null, -oncia_CurrentUser$__clinit_ = () => { - oncia_CurrentUser$_MODULE$ = new oncia_CurrentUser$; -}, -oncia_CurrentUser$_productArity = $this => { - return 0; -}, -oncia_CurrentUser$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CurrentUser$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CurrentUser$_hashCode = $this => { - return (-2025824060); -}, -oncia_CurrentUser$_toString = $this => { - return $rt_s(4949); -}, -oncia_BuiltInFunctions$ = $rt_classWithoutFields(), -oncia_BuiltInFunctions$_MODULE$ = null, -oncia_BuiltInFunctions$_prettyPrint = null, -oncia_BuiltInFunctions$_description = null, -oncia_BuiltInFunctions$__clinit_ = () => { - oncia_BuiltInFunctions$_MODULE$ = new oncia_BuiltInFunctions$; - oncia_BuiltInFunctions$_prettyPrint = $rt_s(4516); - oncia_BuiltInFunctions$_description = $rt_s(4950); -}, -oncia_BuiltInFunctions$_prettyPrint0 = $this => { - return oncia_BuiltInFunctions$_prettyPrint; -}, -oncia_BuiltInFunctions$_productArity = $this => { - return 0; -}, -oncia_BuiltInFunctions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_BuiltInFunctions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_BuiltInFunctions$_hashCode = $this => { - return (-730407240); -}, -oncia_BuiltInFunctions$_toString = $this => { - return $rt_s(4951); -}, -oncia_UserDefinedFunctions$ = $rt_classWithoutFields(), -oncia_UserDefinedFunctions$_MODULE$ = null, -oncia_UserDefinedFunctions$_prettyPrint = null, -oncia_UserDefinedFunctions$_description = null, -oncia_UserDefinedFunctions$__clinit_ = () => { - oncia_UserDefinedFunctions$_MODULE$ = new oncia_UserDefinedFunctions$; - oncia_UserDefinedFunctions$_prettyPrint = $rt_s(4518); - oncia_UserDefinedFunctions$_description = $rt_s(4952); -}, -oncia_UserDefinedFunctions$_prettyPrint0 = $this => { - return oncia_UserDefinedFunctions$_prettyPrint; -}; -let oncia_UserDefinedFunctions$_productArity = $this => { - return 0; -}, -oncia_UserDefinedFunctions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_UserDefinedFunctions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserDefinedFunctions$_hashCode = $this => { - return (-566890083); -}, -oncia_UserDefinedFunctions$_toString = $this => { - return $rt_s(4953); -}, -oncia_ShowConstraintType = $rt_classWithoutFields(0), -oncia_AllConstraints$ = $rt_classWithoutFields(), -oncia_AllConstraints$_MODULE$ = null, -oncia_AllConstraints$_output = null, -oncia_AllConstraints$_prettyPrint = null, -oncia_AllConstraints$_description = null, -oncia_AllConstraints$__clinit_ = () => { - oncia_AllConstraints$_MODULE$ = new oncia_AllConstraints$; - oncia_AllConstraints$_output = $rt_s(563); - oncia_AllConstraints$_prettyPrint = $rt_s(563); - oncia_AllConstraints$_description = $rt_s(4954); -}, -oncia_AllConstraints$_prettyPrint0 = $this => { - return oncia_AllConstraints$_prettyPrint; -}, -oncia_AllConstraints$_productArity = $this => { - return 0; -}, -oncia_AllConstraints$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllConstraints$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllConstraints$_hashCode = $this => { - return 992870901; -}, -oncia_AllConstraints$_toString = $this => { - return $rt_s(4955); -}, -oncia_ShowConstraintsClause$ = $rt_classWithoutFields(), -oncia_ShowConstraintsClause$_MODULE$ = null, -oncia_ShowConstraintsClause$_idColumn = null, -oncia_ShowConstraintsClause$_nameColumn = null, -oncia_ShowConstraintsClause$_typeColumn = null, -oncia_ShowConstraintsClause$_entityTypeColumn = null, -oncia_ShowConstraintsClause$_labelsOrTypesColumn = null, -oncia_ShowConstraintsClause$_propertiesColumn = null, -oncia_ShowConstraintsClause$_ownedIndexColumn = null, -oncia_ShowConstraintsClause$_propertyTypeColumn = null, -oncia_ShowConstraintsClause$_optionsColumn = null, -oncia_ShowConstraintsClause$_createStatementColumn = null, -oncia_ShowConstraintsClause$__clinit_ = () => { - oncia_ShowConstraintsClause$_MODULE$ = new oncia_ShowConstraintsClause$; - oncia_ShowConstraintsClause$_idColumn = $rt_s(4910); - oncia_ShowConstraintsClause$_nameColumn = $rt_s(4902); - oncia_ShowConstraintsClause$_typeColumn = $rt_s(4912); - oncia_ShowConstraintsClause$_entityTypeColumn = $rt_s(1123); - oncia_ShowConstraintsClause$_labelsOrTypesColumn = $rt_s(4913); - oncia_ShowConstraintsClause$_propertiesColumn = $rt_s(4907); - oncia_ShowConstraintsClause$_ownedIndexColumn = $rt_s(4956); - oncia_ShowConstraintsClause$_propertyTypeColumn = $rt_s(4957); - oncia_ShowConstraintsClause$_optionsColumn = $rt_s(4919); - oncia_ShowConstraintsClause$_createStatementColumn = $rt_s(4921); -}, -oncia_ShowConstraintsClause$_apply = ($this, $constraintType, $where, $yieldItems, $yieldAll, $position) => { - let var$6, $briefCols, var$8, var$9, $verboseCols, var$11, var$12, var$13; - s_package$_$callClinit(); - var$6 = s_package$_List(s_package$_MODULE$); - $briefCols = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncia_ShowAndTerminateColumn, 8); - var$9 = var$8.data; - $verboseCols = new oncia_ShowAndTerminateColumn; - var$11 = oncia_ShowConstraintsClause$_idColumn; - oncius_package$_$callClinit(); - oncia_ShowAndTerminateColumn__init_0($verboseCols, var$11, oncius_package$_CTInteger(oncius_package$_MODULE$)); - var$9[0] = $verboseCols; - var$9[1] = oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$9[2] = oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_typeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$9[3] = oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_entityTypeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - $verboseCols = new oncia_ShowAndTerminateColumn; - var$12 = oncia_ShowConstraintsClause$_labelsOrTypesColumn; - var$13 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0($verboseCols, var$12, oncius_package$_CTList(var$13, oncius_package$_CTString(var$13))); - var$9[4] = $verboseCols; - $verboseCols = new oncia_ShowAndTerminateColumn; - var$12 = oncia_ShowConstraintsClause$_propertiesColumn; - var$13 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0($verboseCols, var$12, oncius_package$_CTList(var$13, oncius_package$_CTString(var$13))); - var$9[5] = $verboseCols; - var$9[6] = oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_ownedIndexColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$9[7] = oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_propertyTypeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - $briefCols = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($briefCols, var$8)); - $verboseCols = sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_optionsColumn, oncius_package$_CTMap(oncius_package$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_createStatementColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_Nil$_MODULE$)); - return oncia_ShowConstraintsClause__init_($briefCols, $briefCols.$concat($verboseCols), $constraintType, $where, $yieldItems, $yieldAll, $position); -}, -oncia_UniqueConstraints$ = $rt_classWithoutFields(), -oncia_UniqueConstraints$_MODULE$ = null, -oncia_UniqueConstraints$__clinit_ = () => { - oncia_UniqueConstraints$_MODULE$ = new oncia_UniqueConstraints$; -}, -oncia_NodeUniqueConstraints$ = $rt_classWithoutFields(), -oncia_NodeUniqueConstraints$_MODULE$ = null, -oncia_NodeUniqueConstraints$__clinit_ = () => { - oncia_NodeUniqueConstraints$_MODULE$ = new oncia_NodeUniqueConstraints$; -}, -oncia_RelUniqueConstraints$ = $rt_classWithoutFields(), -oncia_RelUniqueConstraints$_MODULE$ = null, -oncia_RelUniqueConstraints$__clinit_ = () => { - oncia_RelUniqueConstraints$_MODULE$ = new oncia_RelUniqueConstraints$; -}, -oncia_KeyConstraints$ = $rt_classWithoutFields(), -oncia_KeyConstraints$_MODULE$ = null, -oncia_KeyConstraints$_output = null, -oncia_KeyConstraints$_prettyPrint = null, -oncia_KeyConstraints$_description = null, -oncia_KeyConstraints$__clinit_ = () => { - oncia_KeyConstraints$_MODULE$ = new oncia_KeyConstraints$; - oncia_KeyConstraints$_output = $rt_s(4494); - oncia_KeyConstraints$_prettyPrint = $rt_s(4494); - oncia_KeyConstraints$_description = $rt_s(4958); -}, -oncia_KeyConstraints$_prettyPrint0 = $this => { - return oncia_KeyConstraints$_prettyPrint; -}, -oncia_KeyConstraints$_productArity = $this => { - return 0; -}, -oncia_KeyConstraints$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}; -let oncia_KeyConstraints$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_KeyConstraints$_hashCode = $this => { - return (-330818953); -}, -oncia_KeyConstraints$_toString = $this => { - return $rt_s(4959); -}, -oncia_NodeKeyConstraints$ = $rt_classWithoutFields(), -oncia_NodeKeyConstraints$_MODULE$ = null, -oncia_NodeKeyConstraints$_output = null, -oncia_NodeKeyConstraints$_prettyPrint = null, -oncia_NodeKeyConstraints$_description = null, -oncia_NodeKeyConstraints$__clinit_ = () => { - oncia_NodeKeyConstraints$_MODULE$ = new oncia_NodeKeyConstraints$; - oncia_NodeKeyConstraints$_output = $rt_s(4477); - oncia_NodeKeyConstraints$_prettyPrint = $rt_s(4495); - oncia_NodeKeyConstraints$_description = $rt_s(4960); -}, -oncia_NodeKeyConstraints$_prettyPrint0 = $this => { - return oncia_NodeKeyConstraints$_prettyPrint; -}, -oncia_NodeKeyConstraints$_productArity = $this => { - return 0; -}, -oncia_NodeKeyConstraints$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_NodeKeyConstraints$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NodeKeyConstraints$_hashCode = $this => { - return 1525537049; -}, -oncia_NodeKeyConstraints$_toString = $this => { - return $rt_s(4961); -}, -oncia_RelKeyConstraints$ = $rt_classWithoutFields(), -oncia_RelKeyConstraints$_MODULE$ = null, -oncia_RelKeyConstraints$_output = null, -oncia_RelKeyConstraints$_prettyPrint = null, -oncia_RelKeyConstraints$_description = null, -oncia_RelKeyConstraints$__clinit_ = () => { - oncia_RelKeyConstraints$_MODULE$ = new oncia_RelKeyConstraints$; - oncia_RelKeyConstraints$_output = $rt_s(4496); - oncia_RelKeyConstraints$_prettyPrint = $rt_s(4962); - oncia_RelKeyConstraints$_description = $rt_s(4963); -}, -oncia_RelKeyConstraints$_prettyPrint0 = $this => { - return oncia_RelKeyConstraints$_prettyPrint; -}, -oncia_RelKeyConstraints$_productArity = $this => { - return 0; -}, -oncia_RelKeyConstraints$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RelKeyConstraints$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelKeyConstraints$_hashCode = $this => { - return (-1446079696); -}, -oncia_RelKeyConstraints$_toString = $this => { - return $rt_s(4964); -}, -oncia_ExistsConstraints$ = $rt_classWithoutFields(), -oncia_ExistsConstraints$_MODULE$ = null, -oncia_ExistsConstraints$__clinit_ = () => { - oncia_ExistsConstraints$_MODULE$ = new oncia_ExistsConstraints$; -}, -oncia_ExistsConstraints$_cypher5 = $this => { - oncia_ExistsConstraintsCypher5$_$callClinit(); - return oncia_ExistsConstraintsCypher5$_MODULE$; -}, -oncia_NodeExistsConstraints$ = $rt_classWithoutFields(), -oncia_NodeExistsConstraints$_MODULE$ = null, -oncia_NodeExistsConstraints$__clinit_ = () => { - oncia_NodeExistsConstraints$_MODULE$ = new oncia_NodeExistsConstraints$; -}, -oncia_NodeExistsConstraints$_cypher5 = $this => { - oncia_NodeExistsConstraintsCypher5$_$callClinit(); - return oncia_NodeExistsConstraintsCypher5$_MODULE$; -}, -oncia_RelExistsConstraints$ = $rt_classWithoutFields(), -oncia_RelExistsConstraints$_MODULE$ = null, -oncia_RelExistsConstraints$__clinit_ = () => { - oncia_RelExistsConstraints$_MODULE$ = new oncia_RelExistsConstraints$; -}, -oncia_RelExistsConstraints$_cypher5 = $this => { - oncia_RelExistsConstraintsCypher5$_$callClinit(); - return oncia_RelExistsConstraintsCypher5$_MODULE$; -}, -oncia_PropTypeConstraints$ = $rt_classWithoutFields(), -oncia_PropTypeConstraints$_MODULE$ = null, -oncia_PropTypeConstraints$_output = null, -oncia_PropTypeConstraints$_prettyPrint = null, -oncia_PropTypeConstraints$_description = null, -oncia_PropTypeConstraints$__clinit_ = () => { - oncia_PropTypeConstraints$_MODULE$ = new oncia_PropTypeConstraints$; - oncia_PropTypeConstraints$_output = $rt_s(4965); - oncia_PropTypeConstraints$_prettyPrint = $rt_s(4510); - oncia_PropTypeConstraints$_description = $rt_s(4966); -}, -oncia_PropTypeConstraints$_prettyPrint0 = $this => { - return oncia_PropTypeConstraints$_prettyPrint; -}, -oncia_PropTypeConstraints$_productArity = $this => { - return 0; -}, -oncia_PropTypeConstraints$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_PropTypeConstraints$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PropTypeConstraints$_hashCode = $this => { - return 462364825; -}; -let oncia_PropTypeConstraints$_toString = $this => { - return $rt_s(4967); -}, -oncia_NodePropTypeConstraints$ = $rt_classWithoutFields(), -oncia_NodePropTypeConstraints$_MODULE$ = null, -oncia_NodePropTypeConstraints$_output = null, -oncia_NodePropTypeConstraints$_prettyPrint = null, -oncia_NodePropTypeConstraints$_description = null, -oncia_NodePropTypeConstraints$__clinit_ = () => { - oncia_NodePropTypeConstraints$_MODULE$ = new oncia_NodePropTypeConstraints$; - oncia_NodePropTypeConstraints$_output = $rt_s(4968); - oncia_NodePropTypeConstraints$_prettyPrint = $rt_s(4512); - oncia_NodePropTypeConstraints$_description = $rt_s(4969); -}, -oncia_NodePropTypeConstraints$_prettyPrint0 = $this => { - return oncia_NodePropTypeConstraints$_prettyPrint; -}, -oncia_NodePropTypeConstraints$_productArity = $this => { - return 0; -}, -oncia_NodePropTypeConstraints$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_NodePropTypeConstraints$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NodePropTypeConstraints$_hashCode = $this => { - return 1497446199; -}, -oncia_NodePropTypeConstraints$_toString = $this => { - return $rt_s(4970); -}, -oncia_RelPropTypeConstraints$ = $rt_classWithoutFields(), -oncia_RelPropTypeConstraints$_MODULE$ = null, -oncia_RelPropTypeConstraints$_output = null, -oncia_RelPropTypeConstraints$_prettyPrint = null, -oncia_RelPropTypeConstraints$_description = null, -oncia_RelPropTypeConstraints$__clinit_ = () => { - oncia_RelPropTypeConstraints$_MODULE$ = new oncia_RelPropTypeConstraints$; - oncia_RelPropTypeConstraints$_output = $rt_s(4971); - oncia_RelPropTypeConstraints$_prettyPrint = $rt_s(4972); - oncia_RelPropTypeConstraints$_description = $rt_s(4973); -}, -oncia_RelPropTypeConstraints$_prettyPrint0 = $this => { - return oncia_RelPropTypeConstraints$_prettyPrint; -}, -oncia_RelPropTypeConstraints$_productArity = $this => { - return 0; -}, -oncia_RelPropTypeConstraints$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RelPropTypeConstraints$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelPropTypeConstraints$_hashCode = $this => { - return (-486263936); -}, -oncia_RelPropTypeConstraints$_toString = $this => { - return $rt_s(4974); -}, -oncia_ShowCurrentUser$ = $rt_classWithoutFields(), -oncia_ShowCurrentUser$_MODULE$ = null, -oncia_ShowCurrentUser$__clinit_ = () => { - oncia_ShowCurrentUser$_MODULE$ = new oncia_ShowCurrentUser$; -}, -oncia_ShowCurrentUser$_apply = ($this, $yieldOrWhere, $position) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; - var$3 = new oncia_ShowCurrentUser; - var$4 = new sci_$colon$colon; - var$5 = oncia_ShowColumn$_MODULE$; - var$6 = oncia_ShowColumn$_apply(var$5, $rt_s(1200), oncia_ShowColumn$_apply$default$2(var$5), $position); - var$7 = new sci_$colon$colon; - var$8 = oncia_ShowColumn$_MODULE$; - oncius_package$_$callClinit(); - var$5 = oncius_package$_MODULE$; - var$9 = oncia_ShowColumn$_apply(var$8, $rt_s(4975), oncius_package$_CTList(var$5, oncius_package$_CTString(var$5)), $position); - var$10 = new sci_$colon$colon; - var$11 = oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(4976), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position); - var$12 = new sci_$colon$colon; - var$13 = oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(4977), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position); - var$5 = new sci_$colon$colon; - var$8 = oncia_ShowColumn$_MODULE$; - sci_$colon$colon__init_0(var$5, oncia_ShowColumn$_apply(var$8, $rt_s(4978), oncia_ShowColumn$_apply$default$2(var$8), $position), sci_Nil$_MODULE$); - sci_$colon$colon__init_0(var$12, var$13, var$5); - sci_$colon$colon__init_0(var$10, var$11, var$12); - sci_$colon$colon__init_0(var$7, var$9, var$10); - sci_$colon$colon__init_0(var$4, var$6, var$7); - oncia_ShowCurrentUser__init_(var$3, $yieldOrWhere, var$4, $position); - return var$3; -}; -function oncia_SingleNamedDatabaseScope() { - let a = this; jl_Object.call(a); - a.$database0 = null; - a.$position244 = null; - a.$showCommandName = null; -} -let oncia_SingleNamedDatabaseScope_database = $this => { - return $this.$database0; -}, -oncia_SingleNamedDatabaseScope_productPrefix = $this => { - return $rt_s(4979); -}, -oncia_SingleNamedDatabaseScope_productArity = $this => { - return 1; -}, -oncia_SingleNamedDatabaseScope_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$database0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SingleNamedDatabaseScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SingleNamedDatabaseScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SingleNamedDatabaseScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SingleNamedDatabaseScope_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SingleNamedDatabaseScope) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$database0; - $x$1 = $x$1.$database0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_SingleNamedDatabaseScope_dup = ($this, $children) => { - return oncia_SingleNamedDatabaseScope__init_0($children.$head(), $this.$position244); -}, -oncia_SingleNamedDatabaseScope__init_ = ($this, $database, $position) => { - $this.$database0 = $database; - $this.$position244 = $position; - $this.$showCommandName = $rt_s(4689); -}, -oncia_SingleNamedDatabaseScope__init_0 = (var_0, var_1) => { - let var_2 = new oncia_SingleNamedDatabaseScope(); - oncia_SingleNamedDatabaseScope__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_DefaultDatabaseScope() { - let a = this; jl_Object.call(a); - a.$position312 = null; - a.$showCommandName3 = null; -} -let oncia_DefaultDatabaseScope_productPrefix = $this => { - return $rt_s(4980); -}, -oncia_DefaultDatabaseScope_productArity = $this => { - return 0; -}, -oncia_DefaultDatabaseScope_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DefaultDatabaseScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DefaultDatabaseScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DefaultDatabaseScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DefaultDatabaseScope_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_DefaultDatabaseScope)) - return 0; - return 1; -}, -oncia_DefaultDatabaseScope_dup = ($this, $children) => { - return $this; -}, -oncia_DefaultDatabaseScope__init_ = ($this, $position) => { - $this.$position312 = $position; - $this.$showCommandName3 = $rt_s(4981); -}, -oncia_DefaultDatabaseScope__init_0 = var_0 => { - let var_1 = new oncia_DefaultDatabaseScope(); - oncia_DefaultDatabaseScope__init_(var_1, var_0); - return var_1; -}; -function oncia_AllDatabasesScope() { - let a = this; jl_Object.call(a); - a.$position315 = null; - a.$showCommandName1 = null; -} -let oncia_AllDatabasesScope_productPrefix = $this => { - return $rt_s(4982); -}, -oncia_AllDatabasesScope_productArity = $this => { - return 0; -}, -oncia_AllDatabasesScope_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllDatabasesScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDatabasesScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDatabasesScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDatabasesScope_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_AllDatabasesScope)) - return 0; - return 1; -}, -oncia_AllDatabasesScope_dup = ($this, $children) => { - return $this; -}, -oncia_AllDatabasesScope__init_ = ($this, $position) => { - $this.$position315 = $position; - $this.$showCommandName1 = $rt_s(4983); -}, -oncia_AllDatabasesScope__init_0 = var_0 => { - let var_1 = new oncia_AllDatabasesScope(); - oncia_AllDatabasesScope__init_(var_1, var_0); - return var_1; -}; -function oncia_HomeDatabaseScope() { - let a = this; jl_Object.call(a); - a.$position324 = null; - a.$showCommandName2 = null; -} -let oncia_HomeDatabaseScope_productPrefix = $this => { - return $rt_s(4984); -}, -oncia_HomeDatabaseScope_productArity = $this => { - return 0; -}, -oncia_HomeDatabaseScope_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_HomeDatabaseScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_HomeDatabaseScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_HomeDatabaseScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_HomeDatabaseScope_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_HomeDatabaseScope)) - return 0; - return 1; -}, -oncia_HomeDatabaseScope_dup = ($this, $children) => { - return $this; -}, -oncia_HomeDatabaseScope__init_ = ($this, $position) => { - $this.$position324 = $position; - $this.$showCommandName2 = $rt_s(4985); -}, -oncia_HomeDatabaseScope__init_0 = var_0 => { - let var_1 = new oncia_HomeDatabaseScope(); - oncia_HomeDatabaseScope__init_(var_1, var_0); - return var_1; -}, -oncia_ShowDatabase$ = $rt_classWithoutFields(), -oncia_ShowDatabase$_MODULE$ = null, -oncia_ShowDatabase$_ALIASES_COL = null, -oncia_ShowDatabase$_REQUESTED_STATUS_COL = null, -oncia_ShowDatabase$_DEFAULT_COL = null, -oncia_ShowDatabase$_HOME_COL = null, -oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL = null, -oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL = null, -oncia_ShowDatabase$_CREATION_TIME_COL = null, -oncia_ShowDatabase$_LAST_START_TIME_COL = null, -oncia_ShowDatabase$_LAST_STOP_TIME_COL = null, -oncia_ShowDatabase$_CONSTITUENTS_COL = null, -oncia_ShowDatabase$_NAME_COL = null, -oncia_ShowDatabase$_TYPE_COL = null, -oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL = null, -oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL = null, -oncia_ShowDatabase$_OPTIONS_COL = null, -oncia_ShowDatabase$_DATABASE_ID_COL = null, -oncia_ShowDatabase$_STORE_COL = null, -oncia_ShowDatabase$_ACCESS_COL = null, -oncia_ShowDatabase$_ROLE_COL = null, -oncia_ShowDatabase$_WRITER_COL = null, -oncia_ShowDatabase$_CURRENT_STATUS_COL = null, -oncia_ShowDatabase$_STATUS_MSG_COL = null, -oncia_ShowDatabase$_LAST_COMMITTED_TX_COL = null, -oncia_ShowDatabase$_REPLICATION_LAG_COL = null, -oncia_ShowDatabase$_SERVER_ID_COL = null, -oncia_ShowDatabase$_ADDRESS_COL = null, -oncia_ShowDatabase$__clinit_ = () => { - oncia_ShowDatabase$_MODULE$ = new oncia_ShowDatabase$; - oncia_ShowDatabase$_ALIASES_COL = $rt_s(4986); - oncia_ShowDatabase$_REQUESTED_STATUS_COL = $rt_s(4987); - oncia_ShowDatabase$_DEFAULT_COL = $rt_s(4988); - oncia_ShowDatabase$_HOME_COL = $rt_s(4978); - oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL = $rt_s(4989); - oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL = $rt_s(4990); - oncia_ShowDatabase$_CREATION_TIME_COL = $rt_s(4991); - oncia_ShowDatabase$_LAST_START_TIME_COL = $rt_s(4992); - oncia_ShowDatabase$_LAST_STOP_TIME_COL = $rt_s(4993); - oncia_ShowDatabase$_CONSTITUENTS_COL = $rt_s(4994); - oncia_ShowDatabase$_NAME_COL = $rt_s(4902); - oncia_ShowDatabase$_TYPE_COL = $rt_s(4912); - oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL = $rt_s(4995); - oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL = $rt_s(4996); - oncia_ShowDatabase$_OPTIONS_COL = $rt_s(4919); - oncia_ShowDatabase$_DATABASE_ID_COL = $rt_s(4997); - oncia_ShowDatabase$_STORE_COL = $rt_s(4998); - oncia_ShowDatabase$_ACCESS_COL = $rt_s(4999); - oncia_ShowDatabase$_ROLE_COL = $rt_s(1179); - oncia_ShowDatabase$_WRITER_COL = $rt_s(5000); - oncia_ShowDatabase$_CURRENT_STATUS_COL = $rt_s(5001); - oncia_ShowDatabase$_STATUS_MSG_COL = $rt_s(5002); - oncia_ShowDatabase$_LAST_COMMITTED_TX_COL = $rt_s(5003); - oncia_ShowDatabase$_REPLICATION_LAG_COL = $rt_s(5004); - oncia_ShowDatabase$_SERVER_ID_COL = $rt_s(5005); - oncia_ShowDatabase$_ADDRESS_COL = $rt_s(4822); -}, -oncia_ShowDatabase$_ALIASES_COL0 = $this => { - return oncia_ShowDatabase$_ALIASES_COL; -}, -oncia_ShowDatabase$_REQUESTED_STATUS_COL0 = $this => { - return oncia_ShowDatabase$_REQUESTED_STATUS_COL; -}, -oncia_ShowDatabase$_DEFAULT_COL0 = $this => { - return oncia_ShowDatabase$_DEFAULT_COL; -}, -oncia_ShowDatabase$_HOME_COL0 = $this => { - return oncia_ShowDatabase$_HOME_COL; -}, -oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL0 = $this => { - return oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL; -}, -oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL0 = $this => { - return oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL; -}, -oncia_ShowDatabase$_CREATION_TIME_COL0 = $this => { - return oncia_ShowDatabase$_CREATION_TIME_COL; -}, -oncia_ShowDatabase$_LAST_START_TIME_COL0 = $this => { - return oncia_ShowDatabase$_LAST_START_TIME_COL; -}, -oncia_ShowDatabase$_LAST_STOP_TIME_COL0 = $this => { - return oncia_ShowDatabase$_LAST_STOP_TIME_COL; -}, -oncia_ShowDatabase$_CONSTITUENTS_COL0 = $this => { - return oncia_ShowDatabase$_CONSTITUENTS_COL; -}, -oncia_ShowDatabase$_NAME_COL0 = $this => { - return oncia_ShowDatabase$_NAME_COL; -}; -let oncia_ShowDatabase$_TYPE_COL0 = $this => { - return oncia_ShowDatabase$_TYPE_COL; -}, -oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL0 = $this => { - return oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL; -}, -oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL0 = $this => { - return oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL; -}, -oncia_ShowDatabase$_OPTIONS_COL0 = $this => { - return oncia_ShowDatabase$_OPTIONS_COL; -}, -oncia_ShowDatabase$_DATABASE_ID_COL0 = $this => { - return oncia_ShowDatabase$_DATABASE_ID_COL; -}, -oncia_ShowDatabase$_STORE_COL0 = $this => { - return oncia_ShowDatabase$_STORE_COL; -}, -oncia_ShowDatabase$_ACCESS_COL0 = $this => { - return oncia_ShowDatabase$_ACCESS_COL; -}, -oncia_ShowDatabase$_ROLE_COL0 = $this => { - return oncia_ShowDatabase$_ROLE_COL; -}, -oncia_ShowDatabase$_WRITER_COL0 = $this => { - return oncia_ShowDatabase$_WRITER_COL; -}, -oncia_ShowDatabase$_CURRENT_STATUS_COL0 = $this => { - return oncia_ShowDatabase$_CURRENT_STATUS_COL; -}, -oncia_ShowDatabase$_STATUS_MSG_COL0 = $this => { - return oncia_ShowDatabase$_STATUS_MSG_COL; -}, -oncia_ShowDatabase$_LAST_COMMITTED_TX_COL0 = $this => { - return oncia_ShowDatabase$_LAST_COMMITTED_TX_COL; -}, -oncia_ShowDatabase$_REPLICATION_LAG_COL0 = $this => { - return oncia_ShowDatabase$_REPLICATION_LAG_COL; -}, -oncia_ShowDatabase$_SERVER_ID_COL0 = $this => { - return oncia_ShowDatabase$_SERVER_ID_COL; -}, -oncia_ShowDatabase$_ADDRESS_COL0 = $this => { - return oncia_ShowDatabase$_ADDRESS_COL; -}, -oncia_ShowDatabase$_apply = ($this, $scope, $yieldOrWhere, $position) => { - let var$4, var$5, var$6, var$7, $showColumns, var$9, var$10, var$11, var$12, var$13; - s_package$_$callClinit(); - var$4 = s_package$_List(s_package$_MODULE$); - var$5 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(s_Tuple2, 12); - var$7 = var$6.data; - var$7[0] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_NAME_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[1] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_TYPE_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - $showColumns = new s_Tuple2; - var$9 = oncia_ShowColumn$_MODULE$; - var$10 = oncia_ShowDatabase$_ALIASES_COL0($this); - oncius_package$_$callClinit(); - var$11 = oncius_package$_MODULE$; - s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$9, var$10, oncius_package$_CTList(var$11, oncius_package$_CTString(var$11)), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[2] = $showColumns; - var$7[3] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_ACCESS_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[4] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_DATABASE_ID_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[5] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_SERVER_ID_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[6] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_ADDRESS_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[7] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_ROLE_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[8] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_WRITER_COL0($this), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[9] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_REQUESTED_STATUS_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[10] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_CURRENT_STATUS_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[11] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_STATUS_MSG_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$9 = sc_AbstractIterable_$plus$plus(sci_List$_apply(var$4, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)), $scope instanceof oncia_DefaultDatabaseScope ? sci_List$_empty(s_package$_List(s_package$_MODULE$)) : $scope instanceof oncia_HomeDatabaseScope ? sci_List$_empty(s_package$_List(s_package$_MODULE$)) : sci_$colon$colon__init_(s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_DEFAULT_COL0($this), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)), - sci_$colon$colon__init_(s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_HOME_COL0($this), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)), sci_Nil$_MODULE$))); - var$10 = s_package$_List(s_package$_MODULE$); - var$11 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(s_Tuple2, 12); - var$7 = var$6.data; - var$7[0] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[1] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[2] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[3] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[4] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_CREATION_TIME_COL0($this), oncius_package$_CTDateTime(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[5] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_LAST_START_TIME_COL0($this), oncius_package$_CTDateTime(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[6] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_LAST_STOP_TIME_COL0($this), oncius_package$_CTDateTime(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[7] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_STORE_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[8] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_LAST_COMMITTED_TX_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$7[9] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_REPLICATION_LAG_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - var$12 = new s_Tuple2; - var$5 = oncia_ShowColumn$_MODULE$; - var$4 = oncia_ShowDatabase$_CONSTITUENTS_COL0($this); - var$13 = oncius_package$_MODULE$; - s_Tuple2__init_0(var$12, oncia_ShowColumn$_apply(var$5, var$4, oncius_package$_CTList(var$13, oncius_package$_CTString(var$13)), $position), sr_BoxesRunTime_boxToBoolean(1)); - var$7[10] = var$12; - var$7[11] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_OPTIONS_COL0($this), oncius_package$_CTMap(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); - $showColumns = sc_AbstractIterable_$plus$plus(var$9, sci_List$_apply(var$10, sr_ScalaRunTime$_wrapRefArray(var$11, var$6))); - var$9 = new oncia_ShowDatabase; - oncia_DefaultOrAllShowColumns$_$callClinit(); - oncia_ShowDatabase__init_(var$9, $scope, $yieldOrWhere, oncia_DefaultOrAllShowColumns$_apply0(oncia_DefaultOrAllShowColumns$_MODULE$, $showColumns, $yieldOrWhere), $position); - return var$9; -}, -onciafn_Neo4jASTFactory$showDatabase$lambda$_236_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$showDatabase$lambda$_236_0_apply = (var$0, var$1) => { - var$1 = var$1; - s_package$_$callClinit(); - return su_Right$_apply(s_package$_Right(s_package$_MODULE$), var$1); -}, -oncia_ShowPrivileges$ = $rt_classWithoutFields(), -oncia_ShowPrivileges$_MODULE$ = null, -oncia_ShowPrivileges$__clinit_ = () => { - oncia_ShowPrivileges$_MODULE$ = new oncia_ShowPrivileges$; -}, -oncia_ShowPrivileges$_apply = ($this, $scope, $yieldOrWhere, $position) => { - let var$4, var$5, var$6, var$7, $columns, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19; - var$4 = new sci_$colon$colon; - var$5 = oncia_ShowColumn$_MODULE$; - var$6 = oncia_ShowColumn$_apply(var$5, $rt_s(4999), oncia_ShowColumn$_apply$default$2(var$5), $position); - var$7 = new sci_$colon$colon; - $columns = oncia_ShowColumn$_MODULE$; - var$9 = oncia_ShowColumn$_apply($columns, $rt_s(1095), oncia_ShowColumn$_apply$default$2($columns), $position); - var$10 = new sci_$colon$colon; - $columns = oncia_ShowColumn$_MODULE$; - var$11 = oncia_ShowColumn$_apply($columns, $rt_s(5006), oncia_ShowColumn$_apply$default$2($columns), $position); - var$12 = new sci_$colon$colon; - var$5 = oncia_ShowColumn$_MODULE$; - var$13 = oncia_ShowColumn$_apply(var$5, $rt_s(1132), oncia_ShowColumn$_apply$default$2(var$5), $position); - var$14 = new sci_$colon$colon; - var$5 = oncia_ShowColumn$_MODULE$; - var$15 = oncia_ShowColumn$_apply(var$5, $rt_s(5007), oncia_ShowColumn$_apply$default$2(var$5), $position); - var$16 = new sci_$colon$colon; - var$5 = oncia_ShowColumn$_MODULE$; - var$17 = oncia_ShowColumn$_apply(var$5, $rt_s(1179), oncia_ShowColumn$_apply$default$2(var$5), $position); - var$18 = new sci_$colon$colon; - var$19 = oncia_ShowColumn$_MODULE$; - oncius_package$_$callClinit(); - sci_$colon$colon__init_0(var$18, oncia_ShowColumn$_apply(var$19, $rt_s(5008), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), sci_Nil$_MODULE$); - sci_$colon$colon__init_0(var$16, var$17, var$18); - sci_$colon$colon__init_0(var$14, var$15, var$16); - sci_$colon$colon__init_0(var$12, var$13, var$14); - sci_$colon$colon__init_0(var$10, var$11, var$12); - sci_$colon$colon__init_0(var$7, var$9, var$10); - sci_$colon$colon__init_0(var$4, var$6, var$7); - if (!($scope instanceof oncia_ShowUserPrivileges ? 1 : !($scope instanceof oncia_ShowUsersPrivileges) ? 0 : 1)) { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - $columns = sci_Nil$_MODULE$; - } else { - $columns = new sci_$colon$colon; - var$5 = oncia_ShowColumn$_MODULE$; - sci_$colon$colon__init_0($columns, oncia_ShowColumn$_apply(var$5, $rt_s(1200), oncia_ShowColumn$_apply$default$2(var$5), $position), sci_Nil$_MODULE$); - } - return oncia_ShowPrivileges__init_($scope, $yieldOrWhere, var$4.$concat($columns), $position); -}; -function oncia_ShowAllPrivileges() { - jl_Object.call(this); - this.$position331 = null; -} -let oncia_ShowAllPrivileges_productPrefix = $this => { - return $rt_s(5009); -}, -oncia_ShowAllPrivileges_productArity = $this => { - return 0; -}, -oncia_ShowAllPrivileges_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowAllPrivileges_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowAllPrivileges_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowAllPrivileges_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowAllPrivileges_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_ShowAllPrivileges)) - return 0; - return 1; -}, -oncia_ShowAllPrivileges_dup = ($this, $children) => { - return $this; -}, -oncia_ShowAllPrivileges__init_0 = ($this, $position) => { - $this.$position331 = $position; -}, -oncia_ShowAllPrivileges__init_ = var_0 => { - let var_1 = new oncia_ShowAllPrivileges(); - oncia_ShowAllPrivileges__init_0(var_1, var_0); - return var_1; -}, -oncia_ShowPrivilegeCommands$ = $rt_classWithoutFields(), -oncia_ShowPrivilegeCommands$_MODULE$ = null, -oncia_ShowPrivilegeCommands$__clinit_ = () => { - oncia_ShowPrivilegeCommands$_MODULE$ = new oncia_ShowPrivilegeCommands$; -}, -oncia_ShowPrivilegeCommands$_apply = ($this, $scope, $asRevoke, $yieldOrWhere, $position) => { - let $allColumns, var$6, var$7, var$8, var$9; - $allColumns = new sci_$colon$colon; - var$6 = new s_Tuple2; - var$7 = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0(var$6, oncia_ShowColumn$_apply(var$7, $rt_s(5010), oncia_ShowColumn$_apply$default$2(var$7), $position), jl_Boolean_valueOf(1)); - var$7 = new sci_$colon$colon; - var$8 = new s_Tuple2; - var$9 = oncia_ShowColumn$_MODULE$; - oncius_package$_$callClinit(); - s_Tuple2__init_0(var$8, oncia_ShowColumn$_apply(var$9, $rt_s(5008), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), jl_Boolean_valueOf(0)); - sci_$colon$colon__init_0(var$7, var$8, sci_Nil$_MODULE$); - sci_$colon$colon__init_0($allColumns, var$6, var$7); - oncia_DefaultOrAllShowColumns$_$callClinit(); - return oncia_ShowPrivilegeCommands__init_($scope, $asRevoke, $yieldOrWhere, (oncia_DefaultOrAllShowColumns$_apply0(oncia_DefaultOrAllShowColumns$_MODULE$, $allColumns, $yieldOrWhere)).$columns, $position); -}, -oncia_ShowProceduresClause$ = $rt_classWithoutFields(), -oncia_ShowProceduresClause$_MODULE$ = null, -oncia_ShowProceduresClause$_nameColumn = null, -oncia_ShowProceduresClause$_descriptionColumn = null, -oncia_ShowProceduresClause$_modeColumn = null, -oncia_ShowProceduresClause$_worksOnSystemColumn = null, -oncia_ShowProceduresClause$_signatureColumn = null, -oncia_ShowProceduresClause$_argumentDescriptionColumn = null, -oncia_ShowProceduresClause$_returnDescriptionColumn = null, -oncia_ShowProceduresClause$_adminColumn = null, -oncia_ShowProceduresClause$_rolesExecutionColumn = null, -oncia_ShowProceduresClause$_rolesBoostedExecutionColumn = null, -oncia_ShowProceduresClause$_isDeprecatedColumn = null, -oncia_ShowProceduresClause$_deprecatedByColumn = null, -oncia_ShowProceduresClause$_optionColumn = null, -oncia_ShowProceduresClause$__clinit_ = () => { - oncia_ShowProceduresClause$_MODULE$ = new oncia_ShowProceduresClause$; - oncia_ShowProceduresClause$_nameColumn = $rt_s(4902); - oncia_ShowProceduresClause$_descriptionColumn = $rt_s(4939); - oncia_ShowProceduresClause$_modeColumn = $rt_s(5011); - oncia_ShowProceduresClause$_worksOnSystemColumn = $rt_s(5012); - oncia_ShowProceduresClause$_signatureColumn = $rt_s(4940); - oncia_ShowProceduresClause$_argumentDescriptionColumn = $rt_s(4942); - oncia_ShowProceduresClause$_returnDescriptionColumn = $rt_s(4943); - oncia_ShowProceduresClause$_adminColumn = $rt_s(5013); - oncia_ShowProceduresClause$_rolesExecutionColumn = $rt_s(4945); - oncia_ShowProceduresClause$_rolesBoostedExecutionColumn = $rt_s(4946); - oncia_ShowProceduresClause$_isDeprecatedColumn = $rt_s(4947); - oncia_ShowProceduresClause$_deprecatedByColumn = $rt_s(4948); - oncia_ShowProceduresClause$_optionColumn = $rt_s(1154); -}, -oncia_ShowProceduresClause$_apply = ($this, $executable, $where, $yieldItems, $yieldAll, $position) => { - let $briefCols, $verboseCols, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17; - $briefCols = new sci_$colon$colon; - $verboseCols = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$8 = new sci_$colon$colon; - var$9 = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_descriptionColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$10 = new sci_$colon$colon; - var$11 = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_modeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$12 = new sci_$colon$colon; - var$13 = new oncia_ShowAndTerminateColumn; - var$14 = oncia_ShowProceduresClause$_worksOnSystemColumn; - oncius_package$_$callClinit(); - oncia_ShowAndTerminateColumn__init_0(var$13, var$14, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - sci_$colon$colon__init_0(var$12, var$13, sci_Nil$_MODULE$); - sci_$colon$colon__init_0(var$10, var$11, var$12); - sci_$colon$colon__init_0(var$8, var$9, var$10); - sci_$colon$colon__init_0($briefCols, $verboseCols, var$8); - s_package$_$callClinit(); - var$10 = s_package$_List(s_package$_MODULE$); - var$11 = sr_ScalaRunTime$_MODULE$; - var$15 = $rt_createArray(oncia_ShowAndTerminateColumn, 9); - var$16 = var$15.data; - var$16[0] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_signatureColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - $verboseCols = new oncia_ShowAndTerminateColumn; - var$9 = oncia_ShowProceduresClause$_argumentDescriptionColumn; - var$17 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0($verboseCols, var$9, oncius_package$_CTList(var$17, oncius_package$_CTMap(var$17))); - var$16[1] = $verboseCols; - var$17 = new oncia_ShowAndTerminateColumn; - $verboseCols = oncia_ShowProceduresClause$_returnDescriptionColumn; - var$8 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0(var$17, $verboseCols, oncius_package$_CTList(var$8, oncius_package$_CTMap(var$8))); - var$16[2] = var$17; - var$16[3] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_adminColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $verboseCols = new oncia_ShowAndTerminateColumn; - var$9 = oncia_ShowProceduresClause$_rolesExecutionColumn; - var$17 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0($verboseCols, var$9, oncius_package$_CTList(var$17, oncius_package$_CTString(var$17))); - var$16[4] = $verboseCols; - $verboseCols = new oncia_ShowAndTerminateColumn; - var$9 = oncia_ShowProceduresClause$_rolesBoostedExecutionColumn; - var$17 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0($verboseCols, var$9, oncius_package$_CTList(var$17, oncius_package$_CTString(var$17))); - var$16[5] = $verboseCols; - var$16[6] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_isDeprecatedColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - var$16[7] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_deprecatedByColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$16[8] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_optionColumn, oncius_package$_CTMap(oncius_package$_MODULE$)); - $verboseCols = var$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$11, var$15)); - return oncia_ShowProceduresClause__init_($briefCols, $briefCols.$concat($verboseCols), $executable, $where, $yieldItems, $yieldAll, $position); -}, -oncia_ShowServers$ = $rt_classWithoutFields(), -oncia_ShowServers$_MODULE$ = null, -oncia_ShowServers$__clinit_ = () => { - oncia_ShowServers$_MODULE$ = new oncia_ShowServers$; -}, -oncia_ShowServers$_apply = ($this, $yieldOrWhere, $position) => { - let var$3, $showColumns, var$5, var$6, $allShowColumns, $briefShowColumns, var$9, var$10, $allColumns; - s_package$_$callClinit(); - var$3 = s_package$_List(s_package$_MODULE$); - $showColumns = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(s_Tuple2, 14); - var$6 = var$5.data; - $allShowColumns = new s_Tuple2; - $briefShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($allShowColumns, oncia_ShowColumn$_apply($briefShowColumns, $rt_s(5014), oncia_ShowColumn$_apply$default$2($briefShowColumns), $position), jl_Boolean_valueOf(0)); - var$6[0] = $allShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(4902), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(1)); - var$6[1] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(4822), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(1)); - var$6[2] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5015), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(0)); - var$6[3] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5016), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(0)); - var$6[4] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(4823), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(1)); - var$6[5] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5017), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(1)); - var$6[6] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - oncius_package$_$callClinit(); - var$9 = oncius_package$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5018), oncius_package$_CTList(var$9, oncius_package$_CTString(var$9)), $position), jl_Boolean_valueOf(1)); - var$6[7] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - var$10 = oncius_package$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5019), oncius_package$_CTList(var$10, oncius_package$_CTString(var$10)), $position), jl_Boolean_valueOf(0)); - var$6[8] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - var$9 = oncius_package$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5020), oncius_package$_CTList(var$9, oncius_package$_CTString(var$9)), $position), jl_Boolean_valueOf(0)); - var$6[9] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - var$9 = oncius_package$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5021), oncius_package$_CTList(var$9, oncius_package$_CTString(var$9)), $position), jl_Boolean_valueOf(0)); - var$6[10] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - var$9 = oncius_package$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5022), oncius_package$_CTList(var$9, oncius_package$_CTString(var$9)), $position), jl_Boolean_valueOf(0)); - var$6[11] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5023), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(0)); - var$6[12] = $briefShowColumns; - $briefShowColumns = new s_Tuple2; - $allShowColumns = oncia_ShowColumn$_MODULE$; - s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5024), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(0)); - var$6[13] = $briefShowColumns; - $showColumns = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($showColumns, var$5)); - $briefShowColumns = sci_List_map(sci_List_filter($showColumns, new oncia_ShowServers$$apply$lambda$_1_0), new oncia_ShowServers$$apply$lambda$_1_1); - $allShowColumns = sci_List_map($showColumns, new oncia_ShowServers$$apply$lambda$_1_2); - $allColumns = $yieldOrWhere instanceof s_Some && $yieldOrWhere.$value5 instanceof su_Left ? 1 : 0; - oncia_DefaultOrAllShowColumns$_$callClinit(); - return oncia_ShowServers__init_($yieldOrWhere, oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $allColumns, $briefShowColumns, $allShowColumns), $position); -}, -onciafn_Neo4jASTFactory$showSettingsClause$lambda$_159_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$showSettingsClause$lambda$_159_0_apply = (var$0, var$1) => { - var$1 = var$1; - return sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$1))); -}; -function su_Either$LeftProjection() { - jl_Object.call(this); - this.$e0 = null; -} -let su_Either$LeftProjection_map = ($this, $f) => { - let var$2, $a; - var$2 = $this.$e0; - if (!(var$2 instanceof su_Left)) - return var$2; - $a = var$2.$value6; - return su_Left__init_($f.$apply2($a)); -}, -su_Either$LeftProjection_toOption = $this => { - let var$1; - var$1 = $this.$e0; - if (!(var$1 instanceof su_Left)) - return s_None$_MODULE$; - return s_Some__init_(var$1.$value6); -}, -oncia_ShowSettingsClause$ = $rt_classWithoutFields(), -oncia_ShowSettingsClause$_MODULE$ = null, -oncia_ShowSettingsClause$_nameColumn = null, -oncia_ShowSettingsClause$_valueColumn = null, -oncia_ShowSettingsClause$_isDynamicColumn = null, -oncia_ShowSettingsClause$_defaultValueColumn = null, -oncia_ShowSettingsClause$_descriptionColumn = null, -oncia_ShowSettingsClause$_startupValueColumn = null, -oncia_ShowSettingsClause$_isExplicitlySetColumn = null, -oncia_ShowSettingsClause$_validValuesColumn = null, -oncia_ShowSettingsClause$_isDeprecatedColumn = null, -oncia_ShowSettingsClause$__clinit_ = () => { - oncia_ShowSettingsClause$_MODULE$ = new oncia_ShowSettingsClause$; - oncia_ShowSettingsClause$_nameColumn = $rt_s(4902); - oncia_ShowSettingsClause$_valueColumn = $rt_s(1201); - oncia_ShowSettingsClause$_isDynamicColumn = $rt_s(5025); - oncia_ShowSettingsClause$_defaultValueColumn = $rt_s(5026); - oncia_ShowSettingsClause$_descriptionColumn = $rt_s(4939); - oncia_ShowSettingsClause$_startupValueColumn = $rt_s(5027); - oncia_ShowSettingsClause$_isExplicitlySetColumn = $rt_s(5028); - oncia_ShowSettingsClause$_validValuesColumn = $rt_s(5029); - oncia_ShowSettingsClause$_isDeprecatedColumn = $rt_s(4947); -}, -oncia_ShowSettingsClause$_apply = ($this, $names, $where, $yieldItems, $yieldAll, $position) => { - let $defaultCols, $verboseCols, var$8, var$9, var$10, var$11, var$12; - $defaultCols = new sci_$colon$colon; - $verboseCols = oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$8 = new sci_$colon$colon; - var$9 = oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_valueColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); - var$10 = new sci_$colon$colon; - var$11 = new oncia_ShowAndTerminateColumn; - var$12 = oncia_ShowSettingsClause$_isDynamicColumn; - oncius_package$_$callClinit(); - oncia_ShowAndTerminateColumn__init_0(var$11, var$12, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - sci_$colon$colon__init_0(var$10, var$11, sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_defaultValueColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_descriptionColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_Nil$_MODULE$))); - sci_$colon$colon__init_0(var$8, var$9, var$10); - sci_$colon$colon__init_0($defaultCols, $verboseCols, var$8); - $verboseCols = sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_startupValueColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_isExplicitlySetColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_validValuesColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), - sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_isDeprecatedColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)), sci_Nil$_MODULE$)))); - return oncia_ShowSettingsClause__init_($defaultCols, $defaultCols.$concat($verboseCols), $names, $where, $yieldItems, $yieldAll, $position); -}, -oncia_ShowSupportedPrivilegeCommand$ = $rt_classWithoutFields(), -oncia_ShowSupportedPrivilegeCommand$_MODULE$ = null, -oncia_ShowSupportedPrivilegeCommand$_ACTION = null, -oncia_ShowSupportedPrivilegeCommand$_QUALIFIER = null, -oncia_ShowSupportedPrivilegeCommand$_TARGET = null, -oncia_ShowSupportedPrivilegeCommand$_SCOPE = null, -oncia_ShowSupportedPrivilegeCommand$_DESCRIPTION = null, -oncia_ShowSupportedPrivilegeCommand$__clinit_ = () => { - oncia_ShowSupportedPrivilegeCommand$_MODULE$ = new oncia_ShowSupportedPrivilegeCommand$; - oncia_ShowSupportedPrivilegeCommand$_ACTION = $rt_s(1095); - oncia_ShowSupportedPrivilegeCommand$_QUALIFIER = $rt_s(5030); - oncia_ShowSupportedPrivilegeCommand$_TARGET = $rt_s(5031); - oncia_ShowSupportedPrivilegeCommand$_SCOPE = $rt_s(5032); - oncia_ShowSupportedPrivilegeCommand$_DESCRIPTION = $rt_s(4939); -}, -oncia_ShowSupportedPrivilegeCommand$_apply = ($this, $yieldOrWhere, $position) => { - let $columns, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; - $columns = new sci_$colon$colon; - var$4 = oncia_ShowColumn$_MODULE$; - var$5 = oncia_ShowColumn$_apply(var$4, oncia_ShowSupportedPrivilegeCommand$_ACTION, oncia_ShowColumn$_apply$default$2(var$4), $position); - var$6 = new sci_$colon$colon; - var$4 = oncia_ShowColumn$_MODULE$; - var$4 = oncia_ShowColumn$_apply(var$4, oncia_ShowSupportedPrivilegeCommand$_QUALIFIER, oncia_ShowColumn$_apply$default$2(var$4), $position); - var$7 = new sci_$colon$colon; - var$8 = oncia_ShowColumn$_MODULE$; - var$8 = oncia_ShowColumn$_apply(var$8, oncia_ShowSupportedPrivilegeCommand$_TARGET, oncia_ShowColumn$_apply$default$2(var$8), $position); - var$9 = new sci_$colon$colon; - var$10 = oncia_ShowColumn$_MODULE$; - var$11 = oncia_ShowSupportedPrivilegeCommand$_SCOPE; - oncius_package$_$callClinit(); - var$12 = oncius_package$_MODULE$; - var$10 = oncia_ShowColumn$_apply(var$10, var$11, oncius_package$_CTList(var$12, oncius_package$_CTString(var$12)), $position); - var$13 = new sci_$colon$colon; - var$11 = oncia_ShowColumn$_MODULE$; - sci_$colon$colon__init_0(var$13, oncia_ShowColumn$_apply(var$11, oncia_ShowSupportedPrivilegeCommand$_DESCRIPTION, oncia_ShowColumn$_apply$default$2(var$11), $position), sci_Nil$_MODULE$); - sci_$colon$colon__init_0(var$9, var$10, var$13); - sci_$colon$colon__init_0(var$7, var$8, var$9); - sci_$colon$colon__init_0(var$6, var$4, var$7); - sci_$colon$colon__init_0($columns, var$5, var$6); - return oncia_ShowSupportedPrivilegeCommand__init_($yieldOrWhere, $columns, $position); -}, -onciafn_Neo4jASTFactory$showTransactionsClause$lambda$_157_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$showTransactionsClause$lambda$_157_0_apply = (var$0, var$1) => { - var$1 = var$1; - return sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$1))); -}, -oncia_ShowTransactionsClause$ = $rt_classWithoutFields(), -oncia_ShowTransactionsClause$_MODULE$ = null, -oncia_ShowTransactionsClause$_databaseColumn = null, -oncia_ShowTransactionsClause$_transactionIdColumn = null, -oncia_ShowTransactionsClause$_currentQueryIdColumn = null, -oncia_ShowTransactionsClause$_outerTransactionIdColumn = null, -oncia_ShowTransactionsClause$_connectionIdColumn = null, -oncia_ShowTransactionsClause$_clientAddressColumn = null, -oncia_ShowTransactionsClause$_usernameColumn = null, -oncia_ShowTransactionsClause$_metaDataColumn = null, -oncia_ShowTransactionsClause$_currentQueryColumn = null, -oncia_ShowTransactionsClause$_parametersColumn = null, -oncia_ShowTransactionsClause$_plannerColumn = null, -oncia_ShowTransactionsClause$_runtimeColumn = null, -oncia_ShowTransactionsClause$_indexesColumn = null, -oncia_ShowTransactionsClause$_startTimeColumn = null, -oncia_ShowTransactionsClause$_currentQueryStartTimeColumn = null, -oncia_ShowTransactionsClause$_protocolColumn = null, -oncia_ShowTransactionsClause$_requestUriColumn = null, -oncia_ShowTransactionsClause$_statusColumn = null, -oncia_ShowTransactionsClause$_currentQueryStatusColumn = null, -oncia_ShowTransactionsClause$_statusDetailsColumn = null, -oncia_ShowTransactionsClause$_resourceInformationColumn = null, -oncia_ShowTransactionsClause$_activeLockCountColumn = null; -let oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn = null, -oncia_ShowTransactionsClause$_elapsedTimeColumn = null, -oncia_ShowTransactionsClause$_cpuTimeColumn = null, -oncia_ShowTransactionsClause$_waitTimeColumn = null, -oncia_ShowTransactionsClause$_idleTimeColumn = null, -oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn = null, -oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn = null, -oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn = null, -oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn = null, -oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn = null, -oncia_ShowTransactionsClause$_allocatedDirectBytesColumn = null, -oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn = null, -oncia_ShowTransactionsClause$_pageHitsColumn = null, -oncia_ShowTransactionsClause$_pageFaultsColumn = null, -oncia_ShowTransactionsClause$_currentQueryPageHitsColumn = null, -oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn = null, -oncia_ShowTransactionsClause$_initializationStackTraceColumn = null, -oncia_ShowTransactionsClause$__clinit_ = () => { - oncia_ShowTransactionsClause$_MODULE$ = new oncia_ShowTransactionsClause$; - oncia_ShowTransactionsClause$_databaseColumn = $rt_s(4904); - oncia_ShowTransactionsClause$_transactionIdColumn = $rt_s(1196); - oncia_ShowTransactionsClause$_currentQueryIdColumn = $rt_s(5033); - oncia_ShowTransactionsClause$_outerTransactionIdColumn = $rt_s(5034); - oncia_ShowTransactionsClause$_connectionIdColumn = $rt_s(5035); - oncia_ShowTransactionsClause$_clientAddressColumn = $rt_s(5036); - oncia_ShowTransactionsClause$_usernameColumn = $rt_s(4811); - oncia_ShowTransactionsClause$_metaDataColumn = $rt_s(5037); - oncia_ShowTransactionsClause$_currentQueryColumn = $rt_s(5038); - oncia_ShowTransactionsClause$_parametersColumn = $rt_s(5039); - oncia_ShowTransactionsClause$_plannerColumn = $rt_s(5040); - oncia_ShowTransactionsClause$_runtimeColumn = $rt_s(1181); - oncia_ShowTransactionsClause$_indexesColumn = $rt_s(4009); - oncia_ShowTransactionsClause$_startTimeColumn = $rt_s(5041); - oncia_ShowTransactionsClause$_currentQueryStartTimeColumn = $rt_s(5042); - oncia_ShowTransactionsClause$_protocolColumn = $rt_s(5043); - oncia_ShowTransactionsClause$_requestUriColumn = $rt_s(5044); - oncia_ShowTransactionsClause$_statusColumn = $rt_s(5045); - oncia_ShowTransactionsClause$_currentQueryStatusColumn = $rt_s(5046); - oncia_ShowTransactionsClause$_statusDetailsColumn = $rt_s(5047); - oncia_ShowTransactionsClause$_resourceInformationColumn = $rt_s(5048); - oncia_ShowTransactionsClause$_activeLockCountColumn = $rt_s(5049); - oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn = $rt_s(5050); - oncia_ShowTransactionsClause$_elapsedTimeColumn = $rt_s(5051); - oncia_ShowTransactionsClause$_cpuTimeColumn = $rt_s(5052); - oncia_ShowTransactionsClause$_waitTimeColumn = $rt_s(5053); - oncia_ShowTransactionsClause$_idleTimeColumn = $rt_s(5054); - oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn = $rt_s(5055); - oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn = $rt_s(5056); - oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn = $rt_s(5057); - oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn = $rt_s(5058); - oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn = $rt_s(5059); - oncia_ShowTransactionsClause$_allocatedDirectBytesColumn = $rt_s(5060); - oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn = $rt_s(5061); - oncia_ShowTransactionsClause$_pageHitsColumn = $rt_s(5062); - oncia_ShowTransactionsClause$_pageFaultsColumn = $rt_s(5063); - oncia_ShowTransactionsClause$_currentQueryPageHitsColumn = $rt_s(5064); - oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn = $rt_s(5065); - oncia_ShowTransactionsClause$_initializationStackTraceColumn = $rt_s(5066); -}, -oncia_ShowTransactionsClause$_databaseColumn0 = $this => { - return oncia_ShowTransactionsClause$_databaseColumn; -}, -oncia_ShowTransactionsClause$_transactionIdColumn0 = $this => { - return oncia_ShowTransactionsClause$_transactionIdColumn; -}, -oncia_ShowTransactionsClause$_currentQueryIdColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryIdColumn; -}, -oncia_ShowTransactionsClause$_outerTransactionIdColumn0 = $this => { - return oncia_ShowTransactionsClause$_outerTransactionIdColumn; -}, -oncia_ShowTransactionsClause$_connectionIdColumn0 = $this => { - return oncia_ShowTransactionsClause$_connectionIdColumn; -}, -oncia_ShowTransactionsClause$_clientAddressColumn0 = $this => { - return oncia_ShowTransactionsClause$_clientAddressColumn; -}, -oncia_ShowTransactionsClause$_usernameColumn0 = $this => { - return oncia_ShowTransactionsClause$_usernameColumn; -}, -oncia_ShowTransactionsClause$_metaDataColumn0 = $this => { - return oncia_ShowTransactionsClause$_metaDataColumn; -}, -oncia_ShowTransactionsClause$_currentQueryColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryColumn; -}, -oncia_ShowTransactionsClause$_parametersColumn0 = $this => { - return oncia_ShowTransactionsClause$_parametersColumn; -}, -oncia_ShowTransactionsClause$_plannerColumn0 = $this => { - return oncia_ShowTransactionsClause$_plannerColumn; -}, -oncia_ShowTransactionsClause$_runtimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_runtimeColumn; -}, -oncia_ShowTransactionsClause$_indexesColumn0 = $this => { - return oncia_ShowTransactionsClause$_indexesColumn; -}, -oncia_ShowTransactionsClause$_startTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_startTimeColumn; -}, -oncia_ShowTransactionsClause$_currentQueryStartTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryStartTimeColumn; -}, -oncia_ShowTransactionsClause$_protocolColumn0 = $this => { - return oncia_ShowTransactionsClause$_protocolColumn; -}, -oncia_ShowTransactionsClause$_requestUriColumn0 = $this => { - return oncia_ShowTransactionsClause$_requestUriColumn; -}, -oncia_ShowTransactionsClause$_statusColumn0 = $this => { - return oncia_ShowTransactionsClause$_statusColumn; -}, -oncia_ShowTransactionsClause$_currentQueryStatusColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryStatusColumn; -}, -oncia_ShowTransactionsClause$_statusDetailsColumn0 = $this => { - return oncia_ShowTransactionsClause$_statusDetailsColumn; -}, -oncia_ShowTransactionsClause$_resourceInformationColumn0 = $this => { - return oncia_ShowTransactionsClause$_resourceInformationColumn; -}, -oncia_ShowTransactionsClause$_activeLockCountColumn0 = $this => { - return oncia_ShowTransactionsClause$_activeLockCountColumn; -}, -oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn; -}, -oncia_ShowTransactionsClause$_elapsedTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_elapsedTimeColumn; -}, -oncia_ShowTransactionsClause$_cpuTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_cpuTimeColumn; -}, -oncia_ShowTransactionsClause$_waitTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_waitTimeColumn; -}, -oncia_ShowTransactionsClause$_idleTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_idleTimeColumn; -}, -oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn; -}, -oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn; -}, -oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn; -}, -oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn; -}, -oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn; -}; -let oncia_ShowTransactionsClause$_allocatedDirectBytesColumn0 = $this => { - return oncia_ShowTransactionsClause$_allocatedDirectBytesColumn; -}, -oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn0 = $this => { - return oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn; -}, -oncia_ShowTransactionsClause$_pageHitsColumn0 = $this => { - return oncia_ShowTransactionsClause$_pageHitsColumn; -}, -oncia_ShowTransactionsClause$_pageFaultsColumn0 = $this => { - return oncia_ShowTransactionsClause$_pageFaultsColumn; -}, -oncia_ShowTransactionsClause$_currentQueryPageHitsColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryPageHitsColumn; -}, -oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn0 = $this => { - return oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn; -}, -oncia_ShowTransactionsClause$_initializationStackTraceColumn0 = $this => { - return oncia_ShowTransactionsClause$_initializationStackTraceColumn; -}, -oncia_ShowTransactionsClause$_apply = ($this, $ids, $where, $yieldItems, $yieldAll, $returnCypher5Types, $position) => { - let var$7, var$8, var$9, var$10, $columns, $briefColumns, $allColumns, var$14; - s_package$_$callClinit(); - var$7 = s_package$_List(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 39); - var$10 = var$9.data; - var$10[0] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_databaseColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[1] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_transactionIdColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[2] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryIdColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[3] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_outerTransactionIdColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[4] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_connectionIdColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[5] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_clientAddressColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[6] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_usernameColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - $columns = new s_Tuple2; - $briefColumns = new oncia_ShowAndTerminateColumn; - $allColumns = oncia_ShowTransactionsClause$_metaDataColumn0($this); - oncius_package$_$callClinit(); - oncia_ShowAndTerminateColumn__init_0($briefColumns, $allColumns, oncius_package$_CTMap(oncius_package$_MODULE$)); - s_Tuple2__init_0($columns, $briefColumns, sr_BoxesRunTime_boxToBoolean(0)); - var$10[7] = $columns; - var$10[8] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[9] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_parametersColumn0($this), oncius_package$_CTMap(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[10] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_plannerColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[11] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_runtimeColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - $columns = new s_Tuple2; - $briefColumns = new oncia_ShowAndTerminateColumn; - $allColumns = oncia_ShowTransactionsClause$_indexesColumn0($this); - var$14 = oncius_package$_MODULE$; - oncia_ShowAndTerminateColumn__init_0($briefColumns, $allColumns, oncius_package$_CTList(var$14, oncius_package$_CTMap(var$14))); - s_Tuple2__init_0($columns, $briefColumns, sr_BoxesRunTime_boxToBoolean(0)); - var$10[12] = $columns; - var$10[13] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_startTimeColumn0($this), !$returnCypher5Types ? oncius_package$_CTDateTime(oncius_package$_MODULE$) : oncius_package$_CTString(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[14] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryStartTimeColumn0($this), !$returnCypher5Types ? oncius_package$_CTDateTime(oncius_package$_MODULE$) : oncius_package$_CTString(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[15] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_protocolColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[16] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_requestUriColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[17] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_statusColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[18] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryStatusColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[19] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_statusDetailsColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[20] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_resourceInformationColumn0($this), oncius_package$_CTMap(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[21] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_activeLockCountColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[22] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[23] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_elapsedTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); - var$10[24] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_cpuTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[25] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_waitTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[26] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_idleTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[27] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[28] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[29] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[30] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[31] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[32] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_allocatedDirectBytesColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[33] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[34] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_pageHitsColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[35] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_pageFaultsColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[36] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryPageHitsColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[37] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - var$10[38] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_initializationStackTraceColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); - $columns = sci_List$_apply(var$7, sr_ScalaRunTime$_wrapRefArray(var$8, var$9)); - return oncia_ShowTransactionsClause__init_(sci_List_map(sci_List_filter($columns, oncia_ShowTransactionsClause$$apply$lambda$_40_0__init_0()), oncia_ShowTransactionsClause$$apply$lambda$_40_1__init_()), sci_List_map($columns, oncia_ShowTransactionsClause$$apply$lambda$_40_2__init_0()), $ids, $where, $yieldItems, $yieldAll, $position); -}, -oncia_ShowUsers$ = $rt_classWithoutFields(), -oncia_ShowUsers$_MODULE$ = null, -oncia_ShowUsers$__clinit_ = () => { - oncia_ShowUsers$_MODULE$ = new oncia_ShowUsers$; -}, -oncia_ShowUsers$_apply = ($this, $yieldOrWhere, $withAuth, $position) => { - let $columns, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15; - $columns = new sci_$colon$colon; - var$5 = oncia_ShowColumn$_MODULE$; - var$6 = oncia_ShowColumn$_apply(var$5, $rt_s(1200), oncia_ShowColumn$_apply$default$2(var$5), $position); - var$7 = new sci_$colon$colon; - var$8 = oncia_ShowColumn$_MODULE$; - oncius_package$_$callClinit(); - var$5 = oncius_package$_MODULE$; - var$8 = oncia_ShowColumn$_apply(var$8, $rt_s(4975), oncius_package$_CTList(var$5, oncius_package$_CTString(var$5)), $position); - var$9 = new sci_$colon$colon; - var$10 = oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(4976), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position); - var$11 = new sci_$colon$colon; - var$12 = oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(4977), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position); - var$13 = new sci_$colon$colon; - var$14 = oncia_ShowColumn$_MODULE$; - sci_$colon$colon__init_0(var$13, oncia_ShowColumn$_apply(var$14, $rt_s(4978), oncia_ShowColumn$_apply$default$2(var$14), $position), sci_Nil$_MODULE$); - sci_$colon$colon__init_0(var$11, var$12, var$13); - sci_$colon$colon__init_0(var$9, var$10, var$11); - sci_$colon$colon__init_0(var$7, var$8, var$9); - sci_$colon$colon__init_0($columns, var$6, var$7); - if ($withAuth) { - var$15 = new sci_$colon$colon; - var$5 = oncia_ShowColumn$_MODULE$; - sci_$colon$colon__init_0(var$15, oncia_ShowColumn$_apply(var$5, $rt_s(5067), oncia_ShowColumn$_apply$default$2(var$5), $position), sci_$colon$colon__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(1101), oncius_package$_CTMap(oncius_package$_MODULE$), $position), sci_Nil$_MODULE$)); - $columns = $columns.$concat(var$15); - } - return oncia_ShowUsers__init_($yieldOrWhere, $withAuth, $columns, $position); -}; -function oncia_ShowRolesPrivileges() { - let a = this; jl_Object.call(a); - a.$roles = null; - a.$position219 = null; -} -let oncia_ShowRolesPrivileges_productPrefix = $this => { - return $rt_s(5068); -}, -oncia_ShowRolesPrivileges_productArity = $this => { - return 1; -}, -oncia_ShowRolesPrivileges_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$roles; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowRolesPrivileges_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowRolesPrivileges_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowRolesPrivileges_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowRolesPrivileges_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowRolesPrivileges) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$roles; - $x$1 = $x$1.$roles; - if (var$2 !== null) { - if (!sci_List_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_ShowRolesPrivileges_dup = ($this, $children) => { - return oncia_ShowRolesPrivileges__init_($children.$head(), $this.$position219); -}, -oncia_ShowRolesPrivileges__init_0 = ($this, $roles, $position) => { - $this.$roles = $roles; - $this.$position219 = $position; -}, -oncia_ShowRolesPrivileges__init_ = (var_0, var_1) => { - let var_2 = new oncia_ShowRolesPrivileges(); - oncia_ShowRolesPrivileges__init_0(var_2, var_0, var_1); - return var_2; -}; -function onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_0() { - jl_Object.call(this); - this.$_0810 = null; -} -let onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0810; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_1() { - jl_Object.call(this); - this.$_0297 = null; -} -let onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0297; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}, -oncia_ShowRoles$ = $rt_classWithoutFields(), -oncia_ShowRoles$_MODULE$ = null, -oncia_ShowRoles$__clinit_ = () => { - oncia_ShowRoles$_MODULE$ = new oncia_ShowRoles$; -}, -oncia_ShowRoles$_apply = ($this, $withUsers, $showAll, $yieldOrWhere, $position) => { - let $defaultColumnSet, var$6, var$7, var$8; - if (!$withUsers) { - $defaultColumnSet = new sci_$colon$colon; - var$6 = new oncia_ShowColumn; - var$7 = oncie_Variable__init_($rt_s(1179), $position); - oncius_package$_$callClinit(); - oncia_ShowColumn__init_(var$6, var$7, oncius_package$_CTString(oncius_package$_MODULE$), $rt_s(1179)); - sci_$colon$colon__init_0($defaultColumnSet, var$6, sci_Nil$_MODULE$); - } else { - $defaultColumnSet = new sci_$colon$colon; - var$8 = new oncia_ShowColumn; - var$7 = oncie_Variable__init_($rt_s(1179), $position); - oncius_package$_$callClinit(); - oncia_ShowColumn__init_(var$8, var$7, oncius_package$_CTString(oncius_package$_MODULE$), $rt_s(1179)); - sci_$colon$colon__init_0($defaultColumnSet, var$8, sci_$colon$colon__init_(oncia_ShowColumn__init_0(oncie_Variable__init_($rt_s(5069), $position), oncius_package$_CTString(oncius_package$_MODULE$), $rt_s(5069)), sci_Nil$_MODULE$)); - } - return oncia_ShowRoles__init_($withUsers, $showAll, $yieldOrWhere, $defaultColumnSet, $position); -}, -onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_0_apply = (var$0, var$1) => { - var$1 = var$1; - return sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$1))); -}, -oncia_TerminateTransactionsClause$ = $rt_classWithoutFields(), -oncia_TerminateTransactionsClause$_MODULE$ = null, -oncia_TerminateTransactionsClause$_transactionIdColumn = null, -oncia_TerminateTransactionsClause$_usernameColumn = null, -oncia_TerminateTransactionsClause$_messageColumn = null, -oncia_TerminateTransactionsClause$__clinit_ = () => { - oncia_TerminateTransactionsClause$_MODULE$ = new oncia_TerminateTransactionsClause$; - oncia_TerminateTransactionsClause$_transactionIdColumn = $rt_s(1196); - oncia_TerminateTransactionsClause$_usernameColumn = $rt_s(4811); - oncia_TerminateTransactionsClause$_messageColumn = $rt_s(4824); -}, -oncia_TerminateTransactionsClause$_apply = ($this, $ids, $yieldItems, $yieldAll, $wherePos, $position) => { - return oncia_TerminateTransactionsClause__init_(sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_TerminateTransactionsClause$_transactionIdColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_TerminateTransactionsClause$_usernameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_TerminateTransactionsClause$_messageColumn, - oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_Nil$_MODULE$))), $ids, $yieldItems, $yieldAll, $wherePos, $position); -}, -onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_1 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_1_apply = (var$0, var$1) => { - return var$1.$position13; -}; -function onciafn_Neo4jASTFactory$createClause$lambda$_13_0() { - jl_Object.call(this); - this.$_0636 = null; -} -let onciafn_Neo4jASTFactory$createClause$lambda$_13_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0636; - if ($rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) - return var$1; - if (!(var$1 instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_(var$1)); - $rt_throw(onciafn_Neo4jASTFactory_pathSelectorCannotBeUsedInClauseException(var$2, $rt_s(5070), var$1.$selector1)); -}, -oncia_UpdateClause = $rt_classWithoutFields(0), -oncia_UpdateClause_returnVariables$ = $$this => { - return oncia_ReturnItems$ReturnVariables$_empty(oncia_ReturnItems$ReturnVariables$_MODULE$); -}, -oncia_UpdateClause_mixingIsWithMultipleLabelsMessage$ = ($$this, $statement, $replacement) => { - $$this = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($$this); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($$this, $rt_s(5071)), $statement), $rt_s(5072)), $replacement), $rt_s(158)); - return jl_AbstractStringBuilder_toString($$this); -}, -oncia_CreateOrInsert = $rt_classWithoutFields(0), -oncia_SingleRelTypeCheck = $rt_classWithoutFields(0), -oncia_SingleRelTypeCheck_checkRelTypes$ = ($$this, $patternPart) => { - if (!($patternPart instanceof oncie_PathPatternPart)) { - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else - $$this = oncia_SingleRelTypeCheck_checkRelTypes($$this, $patternPart.$element3); - return $$this; -}, -oncia_SingleRelTypeCheck_checkRelTypes = ($this, $patternElement) => { - let $element; - if (!($patternElement instanceof oncie_RelationshipChain)) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - $patternElement = $patternElement; - $element = $patternElement.$element4; - return oncias_SemanticCheck_chain$(oncia_SingleRelTypeCheck_checkRelTypes0($this, $patternElement.$relationship1), oncia_SingleRelTypeCheck_checkRelTypes($this, $element)); -}, -oncia_SingleRelTypeCheck_exactlyOneRelErrorMessage = ($this, $relName) => { - let var$2; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5073)), $relName), $rt_s(5074)); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncia_SingleRelTypeCheck_tooManyTypesRelErrorMessage = ($this, $maybePlain, $exampleString, $relName) => { - let var$4; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5075)), $maybePlain), $rt_s(5076)), $exampleString), $rt_s(5077)), $relName); - return jl_AbstractStringBuilder_toString(var$4); -}, -oncia_SingleRelTypeCheck_checkRelTypes0 = ($this, $rel) => { - let var$2, $other, $maybePlain, $types, $expr, $exampleString; - var$2 = 0; - $other = null; - $maybePlain = $rel.$labelExpression6; - if (jl_Object_equals(s_None$_MODULE$, $maybePlain)) { - oncias_package$_$callClinit(); - $other = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef($other, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_SingleRelTypeCheck_exactlyOneRelErrorMessage($this, $this.$name()), $rel.$position8)); - } - if ($maybePlain instanceof s_Some) { - var$2 = 1; - $other = $maybePlain; - $types = $other.$value5; - if ($types instanceof oncil_LabelExpression$Leaf && $types.$name13 instanceof oncie_RelTypeName) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - } - if (var$2) { - $types = $other.$value5; - if ($types instanceof oncil_LabelExpression$DynamicLeaf) { - $types = $types.$expr4; - if ($types instanceof oncie_DynamicRelTypeExpression) { - $expr = $types.$expression26; - var$2 = 0; - $other = null; - if ($expr instanceof oncie_ListLiteral) { - var$2 = 1; - $other = $expr; - if ($other.$expressions0.$isEmpty()) { - oncias_package$_$callClinit(); - $other = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef($other, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_SingleRelTypeCheck_exactlyOneRelErrorMessage($this, $this.$name()), $rel.$position8)); - } - } - if (var$2 && $other.$expressions0.$length() != 1) { - oncias_package$_$callClinit(); - $types = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef($types, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_SingleRelTypeCheck_tooManyTypesRelErrorMessage($this, $rt_s(4), $rt_s(4), $this.$name()), $rel.$position8)); - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - } - } - if (!var$2) - $rt_throw(s_MatchError__init_($maybePlain)); - $types = sc_SeqOps_distinct$($other.$value5.$flatten0()); - if ($types.$length() != 1) - $other = s_Tuple2__init_($rt_s(4), $rt_s(4)); - else { - $other = new s_Tuple2; - $types = ($types.$head()).$name(); - $exampleString = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($exampleString); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($exampleString, $rt_s(5078)), $types), $rt_s(5079)); - s_Tuple2__init_0($other, $rt_s(5080), jl_AbstractStringBuilder_toString($exampleString)); - } - $maybePlain = $other.$_10; - $exampleString = $other.$_20; - $other = s_Tuple2__init_($maybePlain, $exampleString); - $maybePlain = $other.$_10; - $exampleString = $other.$_20; - oncias_package$_$callClinit(); - $other = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef($other, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_SingleRelTypeCheck_tooManyTypesRelErrorMessage($this, $maybePlain, $exampleString, $this.$name()), $rel.$position8)); -}; -function oncia_Create() { - let a = this; jl_Object.call(a); - a.$pattern10 = null; - a.$position144 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier10 = null; - a.$SetExtractor$module18 = null; -} -let oncia_Create_returnVariables = $this => { - return oncia_UpdateClause_returnVariables$($this); -}, -oncia_Create_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Create_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Create_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Create_foldedOver = $this => { - return $this; -}, -oncia_Create_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Create_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier10; -}, -oncia_Create_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module18 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module18 !== null) - break a; - $this.$SetExtractor$module18 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module18; -}, -oncia_Create_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier10 = $x$1; -}, -oncia_Create_pattern = $this => { - return $this.$pattern10; -}, -oncia_Create_position = $this => { - return $this.$position144; -}, -oncia_Create_name = $this => { - return $rt_s(5070); -}, -oncia_Create_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3, var$4; - oncias_SemanticPatternCheck$_$callClinit(); - var$1 = oncias_SemanticPatternCheck$_check1(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Create$_MODULE$, $this.$pattern10); - var$2 = $this.$pattern10; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = var$2.$patternParts1; - var$2 = new oncia_SingleRelTypeCheck$checkRelTypes$lambda$_3_0; - var$2.$_028 = $this; - var$3 = oncias_SemanticCheck_chain$(var$1, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, var$2)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this.$pattern10)); -}, -oncia_Create_shouldRunQPPChecks = $this => { - return 0; -}, -oncia_Create_copy = ($this, $pattern, $position) => { - return oncia_Create__init_0($pattern, $position); -}, -oncia_Create_productPrefix = $this => { - return $rt_s(5081); -}, -oncia_Create_productArity = $this => { - return 1; -}, -oncia_Create_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$pattern10; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Create_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Create_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Create_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Create_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Create) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$pattern10; - $x$1 = $x$1.$pattern10; - if (var$2 !== null) { - if (!oncie_Pattern$ForUpdate_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Create)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_Create_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Create_mapExpressions = ($this, $f) => { - return oncia_Create_copy($this, oncie_Pattern$ForUpdate_mapExpressions($this.$pattern10, $f), $this.$position144); -}, -oncia_Create__init_ = ($this, $pattern, $position) => { - $this.$pattern10 = $pattern; - $this.$position144 = $position; - oncia_Clause_$init$($this); -}, -oncia_Create__init_0 = (var_0, var_1) => { - let var_2 = new oncia_Create(); - oncia_Create__init_(var_2, var_0, var_1); - return var_2; -}, -oncie_Pattern = $rt_classWithoutFields(0), -oncie_Pattern_length$ = $$this => { - return sr_BoxesRunTime_unboxToInt(onciu_Foldable$Folder_fold(onciu_Foldable_folder$($$this), jl_Integer_valueOf(0), new oncie_Pattern$$anonfun$length$1)); -}; -function oncie_Pattern$ForUpdate() { - let a = this; jl_Object.call(a); - a.$patternParts1 = null; - a.$position180 = null; -} -let oncie_Pattern$ForUpdate_foldedOver = $this => { - return $this; -}, -oncie_Pattern$ForUpdate_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncie_Pattern$ForUpdate_patternParts = $this => { - return $this.$patternParts1; -}, -oncie_Pattern$ForUpdate_position = $this => { - return $this.$position180; -}, -oncie_Pattern$ForUpdate_mapExpressions = ($this, $f) => { - let var$2, var$3; - var$2 = $this.$patternParts1; - var$3 = new oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0; - var$3.$_0454 = $f; - return oncie_Pattern$ForUpdate_copy($this, var$2.$map(var$3), $this.$position180); -}, -oncie_Pattern$ForUpdate_copy = ($this, $patternParts, $position) => { - return oncie_Pattern$ForUpdate__init_0($patternParts, $position); -}, -oncie_Pattern$ForUpdate_productPrefix = $this => { - return $rt_s(5082); -}, -oncie_Pattern$ForUpdate_productArity = $this => { - return 1; -}, -oncie_Pattern$ForUpdate_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$patternParts1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Pattern$ForUpdate_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Pattern$ForUpdate_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Pattern$ForUpdate_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Pattern$ForUpdate_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Pattern$ForUpdate) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$patternParts1; - $x$1 = $x$1.$patternParts1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_Pattern$ForUpdate_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_Pattern$ForUpdate__init_ = ($this, $patternParts, $position) => { - $this.$patternParts1 = $patternParts; - $this.$position180 = $position; -}, -oncie_Pattern$ForUpdate__init_0 = (var_0, var_1) => { - let var_2 = new oncie_Pattern$ForUpdate(); - oncie_Pattern$ForUpdate__init_(var_2, var_0, var_1); - return var_2; -}, -onciafn_Neo4jASTFactory$createClause$lambda$_13_1 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createClause$lambda$_13_1_apply = (var$0, var$1) => { - return var$1.$position(); -}, -onciafn_Neo4jASTFactory$createClause$lambda$_13_2 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$createClause$lambda$_13_2_apply = (var$0, var$1) => { - return jl_Integer_valueOf(var$1.$offset()); -}; -function oncia_Delete() { - let a = this; jl_Object.call(a); - a.$expressions1 = null; - a.$forced = 0; - a.$position118 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier8 = null; - a.$SetExtractor$module10 = null; -} -let oncia_Delete_returnVariables = $this => { - return oncia_UpdateClause_returnVariables$($this); -}, -oncia_Delete_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Delete_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_Delete_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_Delete_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_Delete_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Delete_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Delete_foldedOver = $this => { - return $this; -}, -oncia_Delete_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Delete_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier8; -}, -oncia_Delete_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module10 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module10 !== null) - break a; - $this.$SetExtractor$module10 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module10; -}, -oncia_Delete_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier8 = $x$1; -}, -oncia_Delete_position = $this => { - return $this.$position118; -}, -oncia_Delete_name = $this => { - return $rt_s(5083); -}, -oncia_Delete_clauseSpecificSemanticCheck = $this => { - let var$1, var$2; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $this.$expressions1); - oncias_package$_$callClinit(); - var$2 = var$1.$chain(oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, ($this.$expressions1.$filter1(new oncia_Delete$warnAboutDeletingLabels$lambda$_64_0)).$map(new oncia_Delete$warnAboutDeletingLabels$lambda$_64_1))); - oncius_package$_$callClinit(); - return oncias_SemanticCheck_chain$(var$2, oncias_SemanticAnalysisTooling_expectType$1($this, oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))), oncius_PathType_covariant(oncius_package$_CTPath(oncius_package$_MODULE$))), $this.$expressions1)); -}, -oncia_Delete_copy = ($this, $expressions, $forced, $position) => { - return oncia_Delete__init_0($expressions, $forced, $position); -}, -oncia_Delete_productPrefix = $this => { - return $rt_s(5084); -}, -oncia_Delete_productArity = $this => { - return 2; -}, -oncia_Delete_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expressions1; - case 1: - return jl_Boolean_valueOf($this.$forced); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Delete_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Delete_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5084))), sr_Statics_anyHash($this.$expressions1)), !$this.$forced ? 1237 : 1231), 2); -}, -oncia_Delete_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Delete_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Delete) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$forced != $x$1.$forced) - break b; - c: { - var$2 = $this.$expressions1; - $x$1 = $x$1.$expressions1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Delete)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_Delete_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Delete_mapExpressions = ($this, $f) => { - return oncia_Delete_copy($this, $this.$expressions1.$map($f), $this.$forced, $this.$position118); -}, -oncia_Delete__init_ = ($this, $expressions, $forced, $position) => { - $this.$expressions1 = $expressions; - $this.$forced = $forced; - $this.$position118 = $position; - oncia_Clause_$init$($this); -}, -oncia_Delete__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_Delete(); - oncia_Delete__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_Finish() { - let a = this; jl_Object.call(a); - a.$position285 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier2 = null; - a.$SetExtractor$module17 = null; -} -let oncia_Finish_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_Finish_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Finish_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_Finish_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Finish_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Finish_foldedOver = $this => { - return $this; -}, -oncia_Finish_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Finish_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier2; -}, -oncia_Finish_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module17 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module17 !== null) - break a; - $this.$SetExtractor$module17 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module17; -}, -oncia_Finish_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier2 = $x$1; -}, -oncia_Finish_position = $this => { - return $this.$position285; -}, -oncia_Finish_name = $this => { - return $rt_s(610); -}, -oncia_Finish_clauseSpecificSemanticCheck = $this => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); -}, -oncia_Finish_productPrefix = $this => { - return $rt_s(5085); -}, -oncia_Finish_productArity = $this => { - return 0; -}, -oncia_Finish_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_Finish_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Finish_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Finish_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Finish_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncia_Finish) ? 0 : 1; - return var$2 && $this instanceof oncia_Finish ? 1 : 0; -}, -oncia_Finish_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Finish__init_ = ($this, $position) => { - $this.$position285 = $position; - oncia_Clause_$init$($this); -}, -oncia_Finish__init_0 = var_0 => { - let var_1 = new oncia_Finish(); - oncia_Finish__init_(var_1, var_0); - return var_1; -}; -function oncia_Insert() { - let a = this; jl_Object.call(a); - a.$pattern12 = null; - a.$position185 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier1 = null; - a.$SetExtractor$module9 = null; -} -let oncia_Insert_returnVariables = $this => { - return oncia_UpdateClause_returnVariables$($this); -}, -oncia_Insert_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Insert_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Insert_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Insert_foldedOver = $this => { - return $this; -}, -oncia_Insert_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Insert_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier1; -}, -oncia_Insert_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module9 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module9 !== null) - break a; - $this.$SetExtractor$module9 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module9; -}, -oncia_Insert_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier1 = $x$1; -}, -oncia_Insert_pattern = $this => { - return $this.$pattern12; -}, -oncia_Insert_position = $this => { - return $this.$position185; -}, -oncia_Insert_name = $this => { - return $rt_s(5086); -}, -oncia_Insert_clauseSpecificSemanticCheck = $this => { - let var$1; - oncias_SemanticPatternCheck$_$callClinit(); - var$1 = oncias_SemanticPatternCheck$_check1(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Insert$_MODULE$, $this.$pattern12); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this.$pattern12)); -}, -oncia_Insert_shouldRunQPPChecks = $this => { - return 0; -}, -oncia_Insert_copy = ($this, $pattern, $position) => { - return oncia_Insert__init_0($pattern, $position); -}, -oncia_Insert_productPrefix = $this => { - return $rt_s(5087); -}, -oncia_Insert_productArity = $this => { - return 1; -}, -oncia_Insert_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$pattern12; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Insert_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Insert_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Insert_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Insert_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Insert) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$pattern12; - $x$1 = $x$1.$pattern12; - if (var$2 !== null) { - if (!oncie_Pattern$ForUpdate_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Insert)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_Insert_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Insert_mapExpressions = ($this, $f) => { - return oncia_Insert_copy($this, oncie_Pattern$ForUpdate_mapExpressions($this.$pattern12, $f), $this.$position185); -}, -oncia_Insert__init_ = ($this, $pattern, $position) => { - $this.$pattern12 = $pattern; - $this.$position185 = $position; - oncia_Clause_$init$($this); -}, -oncia_Insert__init_0 = (var_0, var_1) => { - let var_2 = new oncia_Insert(); - oncia_Insert__init_(var_2, var_0, var_1); - return var_2; -}, -onciafn_Neo4jASTFactory$insertClause$lambda$_14_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$insertClause$lambda$_14_0_apply = (var$0, var$1) => { - return var$1.$position(); -}, -onciafn_Neo4jASTFactory$insertClause$lambda$_14_1 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$insertClause$lambda$_14_1_apply = (var$0, var$1) => { - return jl_Integer_valueOf(var$1.$offset()); -}; -function oncia_Remove() { - let a = this; jl_Object.call(a); - a.$items4 = null; - a.$position110 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier22 = null; - a.$SetExtractor$module5 = null; -} -let oncia_Remove_returnVariables = $this => { - return oncia_UpdateClause_returnVariables$($this); -}, -oncia_Remove_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Remove_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_Remove_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Remove_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Remove_foldedOver = $this => { - return $this; -}, -oncia_Remove_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Remove_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier22; -}, -oncia_Remove_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module5 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module5 !== null) - break a; - $this.$SetExtractor$module5 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module5; -}, -oncia_Remove_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier22 = $x$1; -}, -oncia_Remove_position = $this => { - return $this.$position110; -}, -oncia_Remove_name = $this => { - return $rt_s(5088); -}, -oncia_Remove_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = oncias_SemanticCheckableIterableOnce$_MODULE$; - oncias_package$_$callClinit(); - var$1 = oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(var$1, $this.$items4); - var$2 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$($this), new oncia_Remove$$anonfun$15); - var$3 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$($this), new oncia_Remove$$anonfun$16); - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_MODULE$; - var$2 = var$2 && var$3 ? 1 : 0; - var$5 = new oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_64_0; - var$5.$_0597 = $this; - return var$1.$chain(oncias_SemanticCheck$_when(var$4, var$2, var$5)); -}, -oncia_Remove_copy = ($this, $items, $position) => { - return oncia_Remove__init_0($items, $position); -}, -oncia_Remove_productPrefix = $this => { - return $rt_s(5089); -}, -oncia_Remove_productArity = $this => { - return 1; -}, -oncia_Remove_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$items4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Remove_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Remove_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Remove_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Remove_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Remove) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$items4; - $x$1 = $x$1.$items4; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Remove)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_Remove_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Remove_mapExpressions = ($this, $f) => { - let var$2, var$3; - var$2 = $this.$items4; - var$3 = new oncia_Remove$mapExpressions$lambda$_63_0; - var$3.$_01134 = $f; - return oncia_Remove_copy($this, var$2.$map(var$3), $this.$position110); -}, -oncia_Remove__init_ = ($this, $items, $position) => { - $this.$items4 = $items; - $this.$position110 = $position; - oncia_Clause_$init$($this); -}, -oncia_Remove__init_0 = (var_0, var_1) => { - let var_2 = new oncia_Remove(); - oncia_Remove__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_SetClause() { - let a = this; jl_Object.call(a); - a.$items5 = null; - a.$position109 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier5 = null; - a.$SetExtractor$module1 = null; -} -let oncia_SetClause_returnVariables = $this => { - return oncia_UpdateClause_returnVariables$($this); -}, -oncia_SetClause_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_SetClause_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_SetClause_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_SetClause_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_SetClause_foldedOver = $this => { - return $this; -}, -oncia_SetClause_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_SetClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier5; -}, -oncia_SetClause_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module1 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module1 !== null) - break a; - $this.$SetExtractor$module1 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module1; -}, -oncia_SetClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier5 = $x$1; -}, -oncia_SetClause_position = $this => { - return $this.$position109; -}, -oncia_SetClause_name = $this => { - return $rt_s(5090); -}, -oncia_SetClause_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3; - var$1 = oncias_SemanticCheckableIterableOnce$_MODULE$; - oncias_package$_$callClinit(); - var$1 = oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(var$1, $this.$items5); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_SetClause$clauseSpecificSemanticCheck$lambda$_62_0; - var$3.$_0443 = $this; - return var$1.$chain(oncias_SemanticCheck$_fromState(var$2, var$3)); -}, -oncia_SetClause_mapExpressions = ($this, $f) => { - let var$2, var$3; - var$2 = $this.$items5; - var$3 = new oncia_SetClause$mapExpressions$lambda$_63_0; - var$3.$_0507 = $f; - return oncia_SetClause_copy($this, var$2.$map(var$3), $this.$position109); -}, -oncia_SetClause_copy = ($this, $items, $position) => { - return oncia_SetClause__init_0($items, $position); -}, -oncia_SetClause_productPrefix = $this => { - return $rt_s(5091); -}, -oncia_SetClause_productArity = $this => { - return 1; -}, -oncia_SetClause_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$items5; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SetClause_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetClause_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetClause_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetClause_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SetClause) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$items5; - $x$1 = $x$1.$items5; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SetClause)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_SetClause_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SetClause_mapExpressions0 = ($this, $f) => { - return oncia_SetClause_mapExpressions($this, $f); -}, -oncia_SetClause__init_ = ($this, $items, $position) => { - $this.$items5 = $items; - $this.$position109 = $position; - oncia_Clause_$init$($this); -}, -oncia_SetClause__init_0 = (var_0, var_1) => { - let var_2 = new oncia_SetClause(); - oncia_SetClause__init_(var_2, var_0, var_1); - return var_2; -}; -function onciafn_Neo4jASTFactory$matchClause$lambda$_15_0() { - jl_Object.call(this); - this.$_0890 = null; -} -let onciafn_Neo4jASTFactory$matchClause$lambda$_15_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0890; - if (var$1 instanceof oncie_PatternPartWithSelector) - var$1 = var$1; - else { - if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1; - var$1 = oncie_PatternPartWithSelector__init_(onciafn_Neo4jASTFactory_allPathSelector(var$2, var$3.$position()), var$3); - } - return var$1; -}, -oncie_MatchMode$ = $rt_classWithoutFields(), -oncie_MatchMode$_MODULE$ = null, -oncie_MatchMode$__clinit_ = () => { - oncie_MatchMode$_MODULE$ = new oncie_MatchMode$; -}, -oncie_MatchMode$_default = ($this, $position) => { - return oncie_MatchMode$DifferentRelationships__init_(1, $position); -}; -function oncia_Match() { - let a = this; jl_Object.call(a); - a.$optional1 = 0; - a.$matchMode1 = null; - a.$pattern7 = null; - a.$hints = null; - a.$where4 = null; - a.$position85 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier17 = null; - a.$SetExtractor$module2 = null; -} -let oncia_Match_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_Match_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Match_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_Match_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Match_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Match_foldedOver = $this => { - return $this; -}, -oncia_Match_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Match_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier17; -}, -oncia_Match_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module2 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module2 !== null) - break a; - $this.$SetExtractor$module2 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module2; -}, -oncia_Match_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier17 = $x$1; -}, -oncia_Match_optional = $this => { - return $this.$optional1; -}, -oncia_Match_pattern = $this => { - return $this.$pattern7; -}, -oncia_Match_position = $this => { - return $this.$position85; -}, -oncia_Match_name = $this => { - return $rt_s(5092); -}, -oncia_Match_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3; - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_MODULE$; - var$2 = new oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_65_0; - var$2.$_01164 = $this; - var$3 = oncias_SemanticCheck$_fromState(var$1, var$2); - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(var$3, oncias_SemanticPatternCheck$_check1(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Match$_MODULE$, $this.$pattern7)); - var$1 = new oncia_Match$clauseSpecificSemanticCheck$lambda$_64_0; - var$1.$_0733 = $this; - return oncias_SemanticCheck_ifOkChain$(var$2, var$1); -}, -oncia_Match_getPropertyPredicates = ($this, $variable) => { - let var$2, var$3, var$4, var$5; - var$2 = $this.$where4; - var$3 = new oncia_Match$getPropertyPredicates$lambda$_76_0; - var$3.$_0483 = $this; - var$3.$_1169 = $variable; - var$2 = s_Option_getOrElse(s_Option_map(var$2, var$3), new oncia_Match$getPropertyPredicates$lambda$_76_1); - var$4 = onciu_Foldable_folder$($this.$pattern7); - s_package$_$callClinit(); - var$5 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - var$3 = new oncia_Match$$anonfun$getPropertyPredicates$3; - var$3.$$outer12 = $this; - var$3.$variable$2 = $variable; - return var$2.$concat(onciu_Foldable$Folder_treeFold(var$4, var$5, var$3)); -}, -oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap = ($this, $properties) => { - if ($properties instanceof s_Some) { - $properties = $properties.$value5; - if ($properties instanceof oncie_MapExpression) - return $properties.$items1.$map(new oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_77_0); - } - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); -}, -oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates = ($this, $variable, $whereExpression) => { - let var$3, var$4; - var$3 = onciu_Foldable_folder$($whereExpression); - s_package$_$callClinit(); - var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - $whereExpression = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1; - $whereExpression.$$outer20 = $this; - $whereExpression.$variable$3 = $variable; - return onciu_Foldable$Folder_treeFold(var$3, var$4, $whereExpression); -}, -oncia_Match_org$neo4j$cypher$internal$ast$Match$$applicable = ($this, $other) => { - let var$2, var$3, var$4; - if (!($other instanceof oncie_FunctionInvocation)) - return 1; - a: { - b: { - c: { - d: { - $other = $other; - oncief_Function$_$callClinit(); - var$2 = $other.$function1; - oncief_Id$_$callClinit(); - var$3 = oncief_Id$_MODULE$; - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$3)) - break c; - else - break d; - } - if (var$3 === null) - break c; - } - var$3 = $other.$function1; - oncief_ElementId$_$callClinit(); - $other = oncief_ElementId$_MODULE$; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $other)) - break b; - else - break c; - } - if ($other !== null) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4 ? 0 : 1; -}, -oncia_Match_containsLabelOrRelTypePredicate = ($this, $variable, $labelOrRelType) => { - return (oncia_Match_getLabelAndRelTypePredicates($this, $variable)).$contains($labelOrRelType); -}, -oncia_Match_org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression = ($this, $labelExpression) => { - return ($labelExpression.$flatten0()).$map(new oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_81_0); -}, -oncia_Match_getLabelAndRelTypePredicates = ($this, $variable) => { - let $predicateLabels, $labelExpressionLabels, $inlinedRelTypes, $predicateRelTypes, $allLabels; - $predicateLabels = onciu_Foldable_folder$($this.$pattern7); - s_package$_$callClinit(); - $labelExpressionLabels = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - $inlinedRelTypes = new oncia_Match$$anonfun$9; - $inlinedRelTypes.$$outer54 = $this; - $inlinedRelTypes.$variable$41 = $variable; - $inlinedRelTypes = onciu_Foldable$Folder_fold($predicateLabels, $labelExpressionLabels, $inlinedRelTypes); - $predicateRelTypes = onciu_Foldable_folder$($this.$pattern7); - $labelExpressionLabels = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - $predicateLabels = new oncia_Match$$anonfun$10; - $predicateLabels.$$outer39 = $this; - $predicateLabels.$variable$40 = $variable; - $labelExpressionLabels = onciu_Foldable$Folder_fold($predicateRelTypes, $labelExpressionLabels, $predicateLabels); - $predicateLabels = $this.$where4; - if (!($predicateLabels instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, $predicateLabels)) - $rt_throw(s_MatchError__init_($predicateLabels)); - $predicateRelTypes = s_Tuple2__init_(sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); - } else { - $predicateRelTypes = onciu_Foldable_folder$($predicateLabels.$value5); - $allLabels = s_Tuple2__init_(sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); - $predicateLabels = new oncia_Match$$anonfun$11; - $predicateLabels.$$outer56 = $this; - $predicateLabels.$variable$4 = $variable; - $predicateRelTypes = onciu_Foldable$Folder_treeFold($predicateRelTypes, $allLabels, $predicateLabels); - } - if ($predicateRelTypes === null) - $rt_throw(s_MatchError__init_($predicateRelTypes)); - $predicateLabels = $predicateRelTypes.$_1(); - $predicateRelTypes = $predicateRelTypes.$_2(); - $variable = s_Tuple2__init_($predicateLabels, $predicateRelTypes); - $predicateLabels = $variable.$_10; - $predicateRelTypes = $variable.$_20; - return ($labelExpressionLabels.$concat($predicateLabels)).$concat($inlinedRelTypes.$concat($predicateRelTypes)); -}, -oncia_Match_productPrefix = $this => { - return $rt_s(5093); -}, -oncia_Match_productArity = $this => { - return 5; -}, -oncia_Match_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$optional1); - case 1: - return $this.$matchMode1; - case 2: - return $this.$pattern7; - case 3: - return $this.$hints; - case 4: - return $this.$where4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Match_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Match_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5093))), !$this.$optional1 ? 1237 : 1231), sr_Statics_anyHash($this.$matchMode1)), sr_Statics_anyHash($this.$pattern7)), sr_Statics_anyHash($this.$hints)), sr_Statics_anyHash($this.$where4)), 5); -}, -oncia_Match_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Match_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Match) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$optional1 != $x$1.$optional1) - break b; - c: { - var$2 = $this.$matchMode1; - var$3 = $x$1.$matchMode1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$pattern7; - var$3 = $x$1.$pattern7; - if (var$2 !== null) { - if (!oncie_Pattern$ForMatch_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$hints; - var$3 = $x$1.$hints; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$3 = $this.$where4; - $x$1 = $x$1.$where4; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break f; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Match)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_Match_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Match_liftedTree1$1 = ($this, $patternStringifier$1) => { - let $$je; - a: { - try { - $patternStringifier$1 = onciap_DefaultPatternStringifier_apply1($patternStringifier$1, oncia_Match_pattern($this)); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_StackOverflowError) { - } else { - throw $$e; - } - } - $patternStringifier$1 = $rt_s(5094); - } - return $patternStringifier$1; -}, -oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingEntityKindError$1 = ($this, $variable, $labelOrRelTypeName, $hint, $semanticState$1, $context$1) => { - let $isNode, $typeName, $functionName, $operatorDescription, $typePredicates, var$11, $foundTypePredicatesDescription, $typePredicate, var$14; - $isNode = oncias_SemanticState_isNode($semanticState$1, $variable); - $typeName = !$isNode ? $rt_s(5095) : $rt_s(1146); - $functionName = !$isNode ? $rt_s(4912) : $rt_s(5096); - if ($hint instanceof oncia_UsingIndexHint) - $operatorDescription = $rt_s(904); - else if (!($hint instanceof oncia_UsingScanHint)) { - if (!($hint instanceof oncia_UsingJoinHint)) - $rt_throw(s_MatchError__init_($hint)); - $operatorDescription = $rt_s(5097); - } else { - $typePredicates = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($typePredicates); - jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $typeName), $rt_s(5098)); - $operatorDescription = jl_AbstractStringBuilder_toString($typePredicates); - } - a: { - $typePredicates = sc_SeqOps_distinct$(oncia_Match_getLabelAndRelTypePredicates($this, $variable)); - if ($typePredicates !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $typePredicates); - if (!$typePredicates.$lengthCompare(0)) { - var$11 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$11); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$11, $rt_s(5099)), $typeName), $rt_s(5100)); - $foundTypePredicatesDescription = jl_AbstractStringBuilder_toString(var$11); - break a; - } - } - if ($typePredicates !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $typePredicates); - if (!$typePredicates.$lengthCompare(1)) { - $typePredicate = $typePredicates.$apply1(0); - $typePredicates = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($typePredicates); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $rt_s(5101)), $typeName), $rt_s(5102)), $typePredicate), $rt_s(5103)); - $foundTypePredicatesDescription = jl_AbstractStringBuilder_toString($typePredicates); - break a; - } - } - $foundTypePredicatesDescription = sc_AbstractIterable_mkString($typePredicates, $rt_s(5104)); - $typePredicates = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($typePredicates); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $rt_s(5101)), $typeName), $rt_s(5105)), $foundTypePredicatesDescription), $rt_s(5106)); - $foundTypePredicatesDescription = jl_AbstractStringBuilder_toString($typePredicates); - } - $typePredicates = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($typePredicates); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $typeName), $rt_s(5102)), $labelOrRelTypeName), 96); - $typePredicate = jl_AbstractStringBuilder_toString($typePredicates); - var$14 = onciuh_StringHelper$RichString$_MODULE$; - onciuh_StringHelper$_$callClinit(); - $typePredicates = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($typePredicates); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $rt_s(5107)), $typeName), $rt_s(5108)), $labelOrRelTypeName), $rt_s(5109)), $functionName), $rt_s(5110)); - return oncia_Match_getHintErrorForVariable$1($operatorDescription, $hint, $typePredicate, $foundTypePredicatesDescription, $variable, onciuh_StringHelper$RichString$_stripLinesAndMargins$extension(var$14, jl_AbstractStringBuilder_toString($typePredicates)), $semanticState$1, $context$1); -}, -oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1 = ($this, $hint, $semanticState$1, $context$1) => { - let $variable, $propertiesInHint, $plural, $property, $foundPropertiesDescription, $missingPropertiesNames, var$10; - $variable = $hint.$variable13.$name4; - $propertiesInHint = $hint.$properties6; - $plural = $propertiesInHint.$length() <= 1 ? 0 : 1; - a: { - $property = oncia_Match_getPropertyPredicates($this, $variable); - if ($property !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $property); - if (!$property.$lengthCompare(0)) { - $foundPropertiesDescription = $rt_s(5111); - break a; - } - } - if ($property !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $property); - if (!$property.$lengthCompare(1)) { - $property = $property.$apply1(0); - $missingPropertiesNames = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($missingPropertiesNames); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($missingPropertiesNames, $rt_s(5112)), $property), $rt_s(5103)); - $foundPropertiesDescription = jl_AbstractStringBuilder_toString($missingPropertiesNames); - break a; - } - } - $property = sc_AbstractIterable_mkString($property, $rt_s(5104)); - $missingPropertiesNames = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($missingPropertiesNames); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($missingPropertiesNames, $rt_s(5112)), $property), $rt_s(5106)); - $foundPropertiesDescription = jl_AbstractStringBuilder_toString($missingPropertiesNames); - } - $missingPropertiesNames = sc_AbstractIterable_mkString($propertiesInHint.$map(new oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_134_0), $rt_s(45)); - $property = !$plural ? $rt_s(5113) : $rt_s(4907); - $propertiesInHint = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($propertiesInHint); - $property = jl_StringBuilder_append(jl_StringBuilder_append($propertiesInHint, $rt_s(5114)), $property); - jl_AbstractStringBuilder_append0($property, 32); - jl_StringBuilder_append($property, $missingPropertiesNames); - var$10 = jl_AbstractStringBuilder_toString($propertiesInHint); - $property = onciuh_StringHelper$RichString$_MODULE$; - onciuh_StringHelper$_$callClinit(); - return oncia_Match_getHintErrorForVariable$1($rt_s(904), $hint, var$10, $foundPropertiesDescription, $variable, onciuh_StringHelper$RichString$_stripLinesAndMargins$extension($property, $rt_s(5115)), $semanticState$1, $context$1); -}, -oncia_Match_getHintErrorForVariable$1 = ($operatorDescription, $hint, $missingThingDescription, $foundThingsDescription, $variable, $additionalInfo, $semanticState$1, $context$1) => { - let $entityName, var$10; - $entityName = !oncias_SemanticState_isNode($semanticState$1, $variable) ? $rt_s(5116) : $rt_s(5117); - $semanticState$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($semanticState$1); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($semanticState$1, $rt_s(5114)), $entityName), $rt_s(5102)), $variable), 96); - var$10 = jl_AbstractStringBuilder_toString($semanticState$1); - $variable = $context$1.$errorMessageProvider(); - oncia_Match$_$callClinit(); - return $variable.$createMissingPropertyLabelHintError($operatorDescription, onciap_Prettifier$IndentingQueryPrettifier_asString8(oncia_Match$_hintPrettifier.$base, $hint), $missingThingDescription, $foundThingsDescription, var$10, $entityName, $additionalInfo); -}, -oncia_Match__init_ = ($this, $optional, $matchMode, $pattern, $hints, $where, $position) => { - $this.$optional1 = $optional; - $this.$matchMode1 = $matchMode; - $this.$pattern7 = $pattern; - $this.$hints = $hints; - $this.$where4 = $where; - $this.$position85 = $position; - oncia_Clause_$init$($this); -}, -oncia_Match__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_Match(); - oncia_Match__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}; -function oncie_Pattern$ForMatch() { - let a = this; jl_Object.call(a); - a.$patternParts0 = null; - a.$position254 = null; - a.$length6 = 0; - a.$bitmap$037 = 0; -} -let oncie_Pattern$ForMatch_foldedOver = $this => { - return $this; -}, -oncie_Pattern$ForMatch_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncie_Pattern$ForMatch_patternParts = $this => { - return $this.$patternParts0; -}, -oncie_Pattern$ForMatch_position = $this => { - return $this.$position254; -}, -oncie_Pattern$ForMatch_productPrefix = $this => { - return $rt_s(5118); -}, -oncie_Pattern$ForMatch_productArity = $this => { - return 1; -}, -oncie_Pattern$ForMatch_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$patternParts0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Pattern$ForMatch_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Pattern$ForMatch_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Pattern$ForMatch_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Pattern$ForMatch_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Pattern$ForMatch) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$patternParts0; - $x$1 = $x$1.$patternParts0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_Pattern$ForMatch_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_Pattern$ForMatch__init_0 = ($this, $patternParts, $position) => { - $this.$patternParts0 = $patternParts; - $this.$position254 = $position; -}, -oncie_Pattern$ForMatch__init_ = (var_0, var_1) => { - let var_2 = new oncie_Pattern$ForMatch(); - oncie_Pattern$ForMatch__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncie_PatternPartWithSelector() { - let a = this; oncie_PatternPart.call(a); - a.$selector1 = null; - a.$part1 = null; -} -let oncie_PatternPartWithSelector_position = $this => { - return $this.$part1.$position(); -}, -oncie_PatternPartWithSelector_allVariables = $this => { - return $this.$part1.$allVariables(); -}, -oncie_PatternPartWithSelector_element = $this => { - return $this.$part1.$element(); -}, -oncie_PatternPartWithSelector_isSelective = $this => { - return $this.$selector1.$isBounded(); -}, -oncie_PatternPartWithSelector_copy = ($this, $selector, $part) => { - return oncie_PatternPartWithSelector__init_($selector, $part); -}, -oncie_PatternPartWithSelector_productPrefix = $this => { - return $rt_s(5119); -}, -oncie_PatternPartWithSelector_productArity = $this => { - return 2; -}, -oncie_PatternPartWithSelector_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$selector1; - case 1: - return $this.$part1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_PatternPartWithSelector_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPartWithSelector_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPartWithSelector_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPartWithSelector_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PatternPartWithSelector) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$selector1; - var$3 = $x$1.$selector1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$part1; - $x$1 = $x$1.$part1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_PatternPartWithSelector)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_PatternPartWithSelector_replaceInAnonymous$1 = ($app, $f$2) => { - if ($app instanceof oncie_PathPatternPart) { - $app = $app; - return oncie_PathPatternPart_copy($app, oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_0_apply($f$2, $app.$element3)); - } - if (!($app instanceof oncie_ShortestPathsPatternPart)) - $rt_throw(s_MatchError__init_($app)); - $app = $app; - return oncie_ShortestPathsPatternPart_copy($app, oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_0_apply($f$2, $app.$element2), $app.$single0, $app.$position10); -}, -oncie_PatternPartWithSelector__init_0 = ($this, $selector, $part) => { - $this.$selector1 = $selector; - $this.$part1 = $part; - oncie_PatternPart__init_($this); -}, -oncie_PatternPartWithSelector__init_ = (var_0, var_1) => { - let var_2 = new oncie_PatternPartWithSelector(); - oncie_PatternPartWithSelector__init_0(var_2, var_0, var_1); - return var_2; -}; -function onciafn_Neo4jASTFactory$mergeClause$lambda$_34_0() { - let a = this; jl_Object.call(a); - a.$_01139 = null; - a.$_1381 = null; -} -let onciafn_Neo4jASTFactory$mergeClause$lambda$_34_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_01139; - var$3 = var$0.$_1381; - if (jl_Enum_equals(onciaf_ASTFactory$MergeActionType_OnMatch, var$1)) - var$1 = oncia_OnMatch__init_(ju_AbstractList$1_next(var$2), ju_AbstractList$1_next(var$3)); - else { - if (!jl_Enum_equals(onciaf_ASTFactory$MergeActionType_OnCreate, var$1)) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = oncia_OnCreate__init_(ju_AbstractList$1_next(var$2), ju_AbstractList$1_next(var$3)); - } - return var$1; -}; -function oncia_Merge() { - let a = this; jl_Object.call(a); - a.$pattern8 = null; - a.$actions = null; - a.$where12 = null; - a.$position143 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier11 = null; - a.$SetExtractor$module21 = null; -} -let oncia_Merge_returnVariables = $this => { - return oncia_UpdateClause_returnVariables$($this); -}, -oncia_Merge_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Merge_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Merge_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Merge_foldedOver = $this => { - return $this; -}, -oncia_Merge_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Merge_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier11; -}, -oncia_Merge_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module21 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module21 !== null) - break a; - $this.$SetExtractor$module21 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module21; -}, -oncia_Merge_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier11 = $x$1; -}, -oncia_Merge_position = $this => { - return $this.$position143; -}, -oncia_Merge_name = $this => { - return $rt_s(4382); -}, -oncia_Merge_shouldRunQPPChecks = $this => { - return 0; -}, -oncia_Merge_clauseSpecificSemanticCheck = $this => { - let $updatePattern, var$2, var$3, var$4; - $updatePattern = oncie_Pattern$ForUpdate__init_0(sci_$colon$colon__init_($this.$pattern8, sci_Nil$_MODULE$), $this.$pattern8.$position()); - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticPatternCheck$_check1(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Merge$_MODULE$, $updatePattern); - var$3 = oncias_SemanticCheckableIterableOnce$_MODULE$; - oncias_package$_$callClinit(); - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(var$3, $this.$actions)), oncia_SingleRelTypeCheck_checkRelTypes$($this, $this.$pattern8)), oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, $this.$where12)); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_Merge$clauseSpecificSemanticCheck$lambda$_70_0; - var$3.$_0964 = $this; - var$3 = oncias_SemanticCheck_chain$(var$4, oncias_SemanticCheck$_fromState(var$2, var$3)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $updatePattern)); -}, -oncia_Merge_copy = ($this, $pattern, $actions, $where, $position) => { - return oncia_Merge__init_0($pattern, $actions, $where, $position); -}, -oncia_Merge_productPrefix = $this => { - return $rt_s(5120); -}, -oncia_Merge_productArity = $this => { - return 3; -}, -oncia_Merge_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$pattern8; - case 1: - return $this.$actions; - case 2: - return $this.$where12; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Merge_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Merge_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Merge_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Merge_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Merge) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$pattern8; - var$3 = $x$1.$pattern8; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$actions; - var$3 = $x$1.$actions; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$where12; - $x$1 = $x$1.$where12; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Merge)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_Merge_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Merge_mapExpressions = ($this, $f) => { - let var$2, var$3, var$4, var$5; - var$2 = $this.$pattern8.$mapExpressions($f); - var$3 = $this.$actions; - var$4 = new oncia_Merge$mapExpressions$lambda$_68_0; - var$4.$_01095 = $f; - var$3 = var$3.$map(var$4); - var$5 = $this.$where12; - var$4 = new oncia_Merge$mapExpressions$lambda$_68_1; - var$4.$_0529 = $f; - return oncia_Merge_copy($this, var$2, var$3, s_Option_map(var$5, var$4), $this.$position143); -}, -oncia_Merge__init_ = ($this, $pattern, $actions, $where, $position) => { - $this.$pattern8 = $pattern; - $this.$actions = $actions; - $this.$where12 = $where; - $this.$position143 = $position; - oncia_Clause_$init$($this); -}, -oncia_Merge__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_Merge(); - oncia_Merge__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oncia_Merge$ = $rt_classWithoutFields(), -oncia_Merge$_MODULE$ = null, -oncia_Merge$__clinit_ = () => { - oncia_Merge$_MODULE$ = new oncia_Merge$; -}; -function oncia_Unwind() { - let a = this; jl_Object.call(a); - a.$expression14 = null; - a.$variable25 = null; - a.$position284 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier20 = null; - a.$SetExtractor$module12 = null; -} -let oncia_Unwind_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_Unwind_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Unwind_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_Unwind_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_Unwind_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_Unwind_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Unwind_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Unwind_foldedOver = $this => { - return $this; -}, -oncia_Unwind_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Unwind_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier20; -}, -oncia_Unwind_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module12 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module12 !== null) - break a; - $this.$SetExtractor$module12 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module12; -}, -oncia_Unwind_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier20 = $x$1; -}, -oncia_Unwind_position = $this => { - return $this.$position284; -}, -oncia_Unwind_name = $this => { - return $rt_s(5121); -}, -oncia_Unwind_clauseSpecificSemanticCheck = $this => { - let var$1, $possibleInnerTypes, var$3; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - $possibleInnerTypes = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_check0(var$1, oncie_Expression$SemanticContext$Results$_MODULE$, $this.$expression14), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_0, $this.$expression14)); - var$1 = new oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_1; - var$1.$_0145 = $this; - var$3 = oncias_SemanticCheck_ifOkChain$($possibleInnerTypes, var$1); - $possibleInnerTypes = new oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_2; - $possibleInnerTypes.$_0634 = $this; - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0($this, $this.$variable25, $possibleInnerTypes, s_None$_MODULE$, 0))); -}, -oncia_Unwind_productPrefix = $this => { - return $rt_s(5122); -}, -oncia_Unwind_productArity = $this => { - return 2; -}, -oncia_Unwind_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression14; - case 1: - return $this.$variable25; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Unwind_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Unwind_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Unwind_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Unwind_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Unwind) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expression14; - var$3 = $x$1.$expression14; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$variable25; - $x$1 = $x$1.$variable25; - if (var$3 !== null) { - if (!oncie_Variable_equals(var$3, $x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Unwind)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_Unwind_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Unwind__init_ = ($this, $expression, $variable, $position) => { - $this.$expression14 = $expression; - $this.$variable25 = $variable; - $this.$position284 = $position; - oncia_Clause_$init$($this); -}, -oncia_Unwind__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_Unwind(); - oncia_Unwind__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncia_With$ = $rt_classWithoutFields(), -oncia_With$_MODULE$ = null, -oncia_With$_$callClinit = () => { - oncia_With$_$callClinit = $rt_eraseClinit(oncia_With$); - oncia_With$__clinit_(); -}, -oncia_With$__clinit_ = () => { - let var$1; - var$1 = new oncia_With$; - oncia_With$_$callClinit(); - oncia_With$_MODULE$ = var$1; -}; -function oncie_ProcedureName() { - let a = this; jl_Object.call(a); - a.$name23 = null; - a.$position203 = null; -} -let oncie_ProcedureName_name = $this => { - return $this.$name23; -}, -oncie_ProcedureName_position = $this => { - return $this.$position203; -}, -oncie_ProcedureName_productPrefix = $this => { - return $rt_s(5123); -}, -oncie_ProcedureName_productArity = $this => { - return 1; -}, -oncie_ProcedureName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name23; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_ProcedureName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ProcedureName_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ProcedureName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ProcedureName_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ProcedureName) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name23; - $x$1 = $x$1.$name23; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_ProcedureName)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_ProcedureName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_ProcedureName__init_ = ($this, $name, $position) => { - $this.$name23 = $name; - $this.$position203 = $position; -}, -oncie_ProcedureName__init_0 = (var_0, var_1) => { - let var_2 = new oncie_ProcedureName(); - oncie_ProcedureName__init_(var_2, var_0, var_1); - return var_2; -}; -function onciafn_Neo4jASTFactory$callClause$lambda$_35_0() { - let a = this; jl_Object.call(a); - a.$_0232 = null; - a.$_189 = null; -} -let onciafn_Neo4jASTFactory$callClause$lambda$_35_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0232; - var$3 = var$0.$_189; - var$4 = new oncia_ProcedureResult; - var$1 = sc_AbstractIterable_toIndexedSeq(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$1)))); - s_Option$_$callClinit(); - oncia_ProcedureResult__init_0(var$4, var$1, s_Option$_apply(s_Option$_MODULE$, var$2), var$3); - return var$4; -}; -function oncia_Foreach() { - let a = this; jl_Object.call(a); - a.$variable16 = null; - a.$expression19 = null; - a.$updates = null; - a.$position146 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier9 = null; - a.$SetExtractor$module8 = null; -} -let oncia_Foreach_returnVariables = $this => { - return oncia_UpdateClause_returnVariables$($this); -}, -oncia_Foreach_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_Foreach_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_Foreach_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_Foreach_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_Foreach_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_Foreach_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_Foreach_foldedOver = $this => { - return $this; -}, -oncia_Foreach_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_Foreach_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier9; -}, -oncia_Foreach_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module8 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module8 !== null) - break a; - $this.$SetExtractor$module8 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module8; -}, -oncia_Foreach_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier9 = $x$1; -}, -oncia_Foreach_position = $this => { - return $this.$position146; -}, -oncia_Foreach_name = $this => { - return $rt_s(5124); -}, -oncia_Foreach_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression19), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_0, $this.$expression19)); - oncias_package$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(var$1, oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, ($this.$updates.$filter1(new oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_1)).$map(new oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_2))); - var$3 = new oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_3; - var$3.$_0253 = $this; - return oncias_SemanticCheck_ifOkChain$(var$2, var$3); -}, -oncia_Foreach_copy = ($this, $variable, $expression, $updates, $position) => { - return oncia_Foreach__init_0($variable, $expression, $updates, $position); -}, -oncia_Foreach_productPrefix = $this => { - return $rt_s(5125); -}, -oncia_Foreach_productArity = $this => { - return 3; -}, -oncia_Foreach_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable16; - case 1: - return $this.$expression19; - case 2: - return $this.$updates; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Foreach_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Foreach_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Foreach_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Foreach_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Foreach) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable16; - var$3 = $x$1.$variable16; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$expression19; - var$3 = $x$1.$expression19; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$updates; - $x$1 = $x$1.$updates; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Foreach)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_Foreach_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Foreach_mapExpressions = ($this, $f) => { - let var$2, var$3; - var$2 = $this.$updates; - var$3 = new oncia_Foreach$mapExpressions$lambda$_64_0; - var$3.$_0727 = $f; - var$3 = var$2.$map(var$3); - return oncia_Foreach_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable16), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression19), var$3, $this.$position146); -}, -oncia_Foreach__init_ = ($this, $variable, $expression, $updates, $position) => { - $this.$variable16 = $variable; - $this.$expression19 = $expression; - $this.$updates = $updates; - $this.$position146 = $position; - oncia_Clause_$init$($this); -}, -oncia_Foreach__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_Foreach(); - oncia_Foreach__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_0() { - jl_Object.call(this); - this.$_0215 = null; -} -let onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_0_apply = (var$0, var$1) => { - return oncia_Skip__init_0(var$1, var$0.$_0215); -}; -function onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_1() { - jl_Object.call(this); - this.$_0706 = null; -} -let onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_1_apply = (var$0, var$1) => { - return oncia_Limit__init_0(var$1, var$0.$_0706); -}, -oncia_LoadCSV$ = $rt_classWithoutFields(), -oncia_LoadCSV$_MODULE$ = null, -oncia_LoadCSV$_FtpUserPassConnectionStringRegex = null, -oncia_LoadCSV$_$callClinit = () => { - oncia_LoadCSV$_$callClinit = $rt_eraseClinit(oncia_LoadCSV$); - oncia_LoadCSV$__clinit_(); -}, -oncia_LoadCSV$__clinit_ = () => { - let var$1, var$2; - var$1 = new oncia_LoadCSV$; - oncia_LoadCSV$_$callClinit(); - oncia_LoadCSV$_MODULE$ = var$1; - var$2 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - oncia_LoadCSV$_FtpUserPassConnectionStringRegex = sc_StringOps$_r$extension(var$2, $rt_s(5126)); -}, -oncia_LoadCSV$_fromUrl = ($this, $withHeaders, $sensitiveSource, $variable, $fieldTerminator, $position) => { - let var$6, var$7; - if ($sensitiveSource instanceof oncie_StringLiteral) { - var$6 = $sensitiveSource; - var$7 = var$6.$value8; - oncia_LoadCSV$_$callClinit(); - if (sum_Regex_matches(oncia_LoadCSV$_FtpUserPassConnectionStringRegex, var$7)) - $sensitiveSource = oncie_StringLiteral_asSensitiveLiteral(var$6); - } - return oncia_LoadCSV__init_($withHeaders, $sensitiveSource, $variable, $fieldTerminator, $position); -}; -function onciafn_Neo4jASTFactory$loadCsvClause$lambda$_37_0() { - jl_Object.call(this); - this.$_065 = null; -} -let onciafn_Neo4jASTFactory$loadCsvClause$lambda$_37_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_065; - return oncie_StringLiteral__init_(var$1, onciu_InputPosition$Simple_withInputLength(var$2, 0)); -}, -oncie_ExplicitParameter$ = $rt_classWithoutFields(), -oncie_ExplicitParameter$_MODULE$ = null, -oncie_ExplicitParameter$__clinit_ = () => { - oncie_ExplicitParameter$_MODULE$ = new oncie_ExplicitParameter$; -}; -function oncie_StringLiteral() { - let a = this; oncie_Expression.call(a); - a.$value8 = null; - a.$position18 = null; -} -let oncie_StringLiteral_isConstantForQuery = $this => { - return 1; -}, -oncie_StringLiteral_value = $this => { - return $this.$value8; -}, -oncie_StringLiteral_position0 = $this => { - return $this.$position18; -}, -oncie_StringLiteral_asCanonicalStringVal = $this => { - return $this.$value8; -}, -oncie_StringLiteral_dup = ($this, $children) => { - return oncie_StringLiteral__init_($children.$head(), $this.$position18); -}, -oncie_StringLiteral_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_StringLiteral$$anon$6; - oncie_StringLiteral__init_0(var$1, $this.$value8, $this.$position18); - return var$1; -}, -oncie_StringLiteral_copy = ($this, $value, $position) => { - return oncie_StringLiteral__init_($value, $position); -}, -oncie_StringLiteral_productPrefix = $this => { - return $rt_s(5127); -}, -oncie_StringLiteral_productArity = $this => { - return 1; -}, -oncie_StringLiteral_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$value8; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_StringLiteral_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_StringLiteral_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_StringLiteral; -}, -oncie_StringLiteral_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_StringLiteral_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_StringLiteral_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_StringLiteral) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$value8; - $x$1 = $x$1.$value8; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_StringLiteral)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_StringLiteral_dup1 = ($this, $children) => { - return oncie_StringLiteral_dup($this, $children); -}, -oncie_StringLiteral_dup0 = ($this, $children) => { - return oncie_StringLiteral_dup($this, $children); -}, -oncie_StringLiteral_position = $this => { - return $this.$position18; -}, -oncie_StringLiteral__init_0 = ($this, $value, $position) => { - $this.$value8 = $value; - $this.$position18 = $position; - oncie_Expression__init_($this); -}, -oncie_StringLiteral__init_ = (var_0, var_1) => { - let var_2 = new oncie_StringLiteral(); - oncie_StringLiteral__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_AlterLocalDatabaseAlias() { - let a = this; jl_Object.call(a); - a.$aliasName7 = null; - a.$targetName2 = null; - a.$ifExists1 = 0; - a.$properties9 = null; - a.$position234 = null; - a.$isReadOnly23 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar5 = null; -} -let oncia_AlterLocalDatabaseAlias_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_AlterLocalDatabaseAlias_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_AlterLocalDatabaseAlias_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterLocalDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_AlterLocalDatabaseAlias_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_AlterLocalDatabaseAlias_foldedOver = $this => { - return $this; -}, -oncia_AlterLocalDatabaseAlias_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly23 = $x$1; -}, -oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar5; -}, -oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar5 = $x$1; -}, -oncia_AlterLocalDatabaseAlias_aliasName = $this => { - return $this.$aliasName7; -}, -oncia_AlterLocalDatabaseAlias_targetName = $this => { - return $this.$targetName2; -}, -oncia_AlterLocalDatabaseAlias_ifExists = $this => { - return $this.$ifExists1; -}, -oncia_AlterLocalDatabaseAlias_properties = $this => { - return $this.$properties9; -}, -oncia_AlterLocalDatabaseAlias_position = $this => { - return $this.$position234; -}, -oncia_AlterLocalDatabaseAlias_name = $this => { - return $rt_s(5128); -}, -oncia_AlterLocalDatabaseAlias_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_AlterLocalDatabaseAlias_productPrefix = $this => { - return $rt_s(5129); -}, -oncia_AlterLocalDatabaseAlias_productArity = $this => { - return 4; -}, -oncia_AlterLocalDatabaseAlias_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$aliasName7; - case 1: - return $this.$targetName2; - case 2: - return jl_Boolean_valueOf($this.$ifExists1); - case 3: - return $this.$properties9; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_AlterLocalDatabaseAlias_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterLocalDatabaseAlias_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5129))), sr_Statics_anyHash($this.$aliasName7)), sr_Statics_anyHash($this.$targetName2)), !$this.$ifExists1 ? 1237 : 1231), sr_Statics_anyHash($this.$properties9)), 4); -}, -oncia_AlterLocalDatabaseAlias_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterLocalDatabaseAlias_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_AlterLocalDatabaseAlias) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists1 != $x$1.$ifExists1) - break b; - d: { - var$2 = $this.$aliasName7; - var$3 = $x$1.$aliasName7; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$targetName2; - var$3 = $x$1.$targetName2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$properties9; - $x$1 = $x$1.$properties9; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_AlterLocalDatabaseAlias_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_AlterLocalDatabaseAlias_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterLocalDatabaseAlias__init_0 = ($this, $aliasName, $targetName, $ifExists, $properties, $position) => { - $this.$aliasName7 = $aliasName; - $this.$targetName2 = $targetName; - $this.$ifExists1 = $ifExists; - $this.$properties9 = $properties; - $this.$position234 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_AlterLocalDatabaseAlias__init_ = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_AlterLocalDatabaseAlias(); - oncia_AlterLocalDatabaseAlias__init_0(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}; -function onciafn_Neo4jASTFactory$alterLocalDatabaseAlias$lambda$_245_0() { - jl_Object.call(this); - this.$_0133 = null; -} -let onciafn_Neo4jASTFactory$alterLocalDatabaseAlias$lambda$_245_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciafn_Neo4jASTFactory_asExpressionMapAst(var$0.$_0133, var$1); -}; -function oncia_AlterRemoteDatabaseAlias() { - let a = this; jl_Object.call(a); - a.$aliasName3 = null; - a.$targetName1 = null; - a.$ifExists7 = 0; - a.$url1 = null; - a.$username1 = null; - a.$password4 = null; - a.$driverSettings0 = null; - a.$properties8 = null; - a.$position152 = null; - a.$isReadOnly14 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar30 = null; -} -let oncia_AlterRemoteDatabaseAlias_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_AlterRemoteDatabaseAlias_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_AlterRemoteDatabaseAlias_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterRemoteDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_AlterRemoteDatabaseAlias_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_AlterRemoteDatabaseAlias_foldedOver = $this => { - return $this; -}, -oncia_AlterRemoteDatabaseAlias_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly14 = $x$1; -}, -oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar30; -}, -oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar30 = $x$1; -}, -oncia_AlterRemoteDatabaseAlias_aliasName = $this => { - return $this.$aliasName3; -}, -oncia_AlterRemoteDatabaseAlias_targetName = $this => { - return $this.$targetName1; -}, -oncia_AlterRemoteDatabaseAlias_ifExists = $this => { - return $this.$ifExists7; -}, -oncia_AlterRemoteDatabaseAlias_url = $this => { - return $this.$url1; -}, -oncia_AlterRemoteDatabaseAlias_username = $this => { - return $this.$username1; -}, -oncia_AlterRemoteDatabaseAlias_password = $this => { - return $this.$password4; -}, -oncia_AlterRemoteDatabaseAlias_driverSettings = $this => { - return $this.$driverSettings0; -}, -oncia_AlterRemoteDatabaseAlias_properties = $this => { - return $this.$properties8; -}, -oncia_AlterRemoteDatabaseAlias_position = $this => { - return $this.$position152; -}, -oncia_AlterRemoteDatabaseAlias_name = $this => { - return $rt_s(5128); -}, -oncia_AlterRemoteDatabaseAlias_semanticCheck = $this => { - let $expr, $isLocalAlias, $isRemoteAlias, var$4, var$5; - $expr = oncia_AliasDriverSettingsCheck$_findInvalidDriverSettings(oncia_AliasDriverSettingsCheck$_MODULE$, $this.$driverSettings0); - if ($expr instanceof s_Some) { - $expr = $expr.$value5; - if ($expr instanceof oncia_ExistsExpression) - return oncias_SemanticAnalysisTooling_error$($this, oncia_AliasDriverSettingsCheck$_existsErrorMessage, $expr.$position()); - if ($expr instanceof oncia_CountExpression) - return oncias_SemanticAnalysisTooling_error$($this, oncia_AliasDriverSettingsCheck$_countErrorMessage, $expr.$position()); - if (!($expr instanceof oncia_CollectExpression)) - return oncias_SemanticAnalysisTooling_error$($this, oncia_AliasDriverSettingsCheck$_genericErrorMessage, $expr.$position()); - return oncias_SemanticAnalysisTooling_error$($this, oncia_AliasDriverSettingsCheck$_collectErrorMessage, $expr.$position()); - } - $isLocalAlias = s_Option_isDefined($this.$targetName1) && s_Option_isEmpty($this.$url1) ? 1 : 0; - $isRemoteAlias = !s_Option_isDefined($this.$url1) && !s_Option_isDefined($this.$username1) && !s_Option_isDefined($this.$password4) && !s_Option_isDefined($this.$driverSettings0) ? 0 : 1; - if ($isLocalAlias && $isRemoteAlias) { - onciap_Prettifier$_$callClinit(); - $expr = onciap_Prettifier$_MODULE$; - var$4 = $this.$aliasName3; - s_DummyImplicit$_$callClinit(); - $expr = onciap_Prettifier$_escapeName($expr, var$4, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5130)), $expr), $rt_s(5131)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$5), $this.$position152); - } - var$5 = oncia_AdministrationCommand_semanticCheck$($this); - s_Option$_$callClinit(); - var$5 = oncias_SemanticCheck_chain$(var$5, oncias_SemanticAnalysisTooling_semanticCheckFold$($this, s_Option$_option2Iterable(s_Option$_MODULE$, $this.$username1), new oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_85_0)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$5, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_AlterRemoteDatabaseAlias_productPrefix = $this => { - return $rt_s(5132); -}, -oncia_AlterRemoteDatabaseAlias_productArity = $this => { - return 8; -}, -oncia_AlterRemoteDatabaseAlias_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$aliasName3; - case 1: - return $this.$targetName1; - case 2: - return jl_Boolean_valueOf($this.$ifExists7); - case 3: - return $this.$url1; - case 4: - return $this.$username1; - case 5: - return $this.$password4; - case 6: - return $this.$driverSettings0; - case 7: - return $this.$properties8; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_AlterRemoteDatabaseAlias_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterRemoteDatabaseAlias_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5132))), sr_Statics_anyHash($this.$aliasName3)), sr_Statics_anyHash($this.$targetName1)), !$this.$ifExists7 ? 1237 : 1231), sr_Statics_anyHash($this.$url1)), sr_Statics_anyHash($this.$username1)), sr_Statics_anyHash($this.$password4)), sr_Statics_anyHash($this.$driverSettings0)), sr_Statics_anyHash($this.$properties8)), - 8); -}, -oncia_AlterRemoteDatabaseAlias_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterRemoteDatabaseAlias_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_AlterRemoteDatabaseAlias) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists7 != $x$1.$ifExists7) - break b; - d: { - var$2 = $this.$aliasName3; - var$3 = $x$1.$aliasName3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$targetName1; - var$3 = $x$1.$targetName1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$url1; - var$3 = $x$1.$url1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$username1; - var$3 = $x$1.$username1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$2 = $this.$password4; - var$3 = $x$1.$password4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break h; - } - if (var$3 !== null) - break b; - } - i: { - var$2 = $this.$driverSettings0; - var$3 = $x$1.$driverSettings0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break i; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$properties8; - $x$1 = $x$1.$properties8; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_AlterRemoteDatabaseAlias_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_AlterRemoteDatabaseAlias_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterRemoteDatabaseAlias__init_0 = ($this, $aliasName, $targetName, $ifExists, $url, $username, $password, $driverSettings, $properties, $position) => { - $this.$aliasName3 = $aliasName; - $this.$targetName1 = $targetName; - $this.$ifExists7 = $ifExists; - $this.$url1 = $url; - $this.$username1 = $username; - $this.$password4 = $password; - $this.$driverSettings0 = $driverSettings; - $this.$properties8 = $properties; - $this.$position152 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_AlterRemoteDatabaseAlias__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { - let var_9 = new oncia_AlterRemoteDatabaseAlias(); - oncia_AlterRemoteDatabaseAlias__init_0(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); - return var_9; -}, -onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciafn_TupleConverter$_$callClinit(); - return onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1)); -}; -function onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_1() { - jl_Object.call(this); - this.$_0542 = null; -} -let onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0542; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_2() { - jl_Object.call(this); - this.$_01076 = null; -} -let onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_2_apply = (var$0, var$1) => { - var$1 = var$1; - return onciafn_Neo4jASTFactory_asExpressionMapAst(var$0.$_01076, var$1); -}; -function onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_3() { - jl_Object.call(this); - this.$_0157 = null; -} -let onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_3_apply = (var$0, var$1) => { - var$1 = var$1; - return onciafn_Neo4jASTFactory_asExpressionMapAst(var$0.$_0157, var$1); -}; -function oncia_SetOwnPassword() { - let a = this; jl_Object.call(a); - a.$newPassword0 = null; - a.$currentPassword0 = null; - a.$position256 = null; - a.$isReadOnly35 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar16 = null; -} -let oncia_SetOwnPassword_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SetOwnPassword_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_SetOwnPassword_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_SetOwnPassword_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_SetOwnPassword_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_SetOwnPassword_foldedOver = $this => { - return $this; -}, -oncia_SetOwnPassword_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly35 = $x$1; -}, -oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar16; -}, -oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar16 = $x$1; -}, -oncia_SetOwnPassword_newPassword = $this => { - return $this.$newPassword0; -}, -oncia_SetOwnPassword_currentPassword = $this => { - return $this.$currentPassword0; -}, -oncia_SetOwnPassword_position = $this => { - return $this.$position256; -}, -oncia_SetOwnPassword_name = $this => { - return $rt_s(5133); -}, -oncia_SetOwnPassword_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_SetOwnPassword_productPrefix = $this => { - return $rt_s(5134); -}, -oncia_SetOwnPassword_productArity = $this => { - return 2; -}, -oncia_SetOwnPassword_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$newPassword0; - case 1: - return $this.$currentPassword0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SetOwnPassword_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetOwnPassword_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetOwnPassword_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetOwnPassword_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SetOwnPassword) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$newPassword0; - var$3 = $x$1.$newPassword0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$currentPassword0; - $x$1 = $x$1.$currentPassword0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_SetOwnPassword_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_SetOwnPassword_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_SetOwnPassword__init_ = ($this, $newPassword, $currentPassword, $position) => { - $this.$newPassword0 = $newPassword; - $this.$currentPassword0 = $currentPassword; - $this.$position256 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_SetOwnPassword__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_SetOwnPassword(); - oncia_SetOwnPassword__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncipcaf_AccessType_$callClinit(); - if (jl_Enum_equals(oncipcaf_AccessType_READ_ONLY, var$1)) { - oncia_ReadOnlyAccess$_$callClinit(); - var$1 = oncia_ReadOnlyAccess$_MODULE$; - } else { - if (!jl_Enum_equals(oncipcaf_AccessType_READ_WRITE, var$1)) - $rt_throw(s_MatchError__init_(var$1)); - oncia_ReadWriteAccess$_$callClinit(); - var$1 = oncia_ReadWriteAccess$_MODULE$; - } - return var$1; -}, -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_1 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_1_apply = (var$0, var$1) => { - return jl_Integer_valueOf(var$1.$value4); -}, -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_2 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_2_apply = (var$0, var$1) => { - return jl_Integer_valueOf(var$1.$value4); -}, -oncia_NoOptions$ = $rt_classWithoutFields(), -oncia_NoOptions$_MODULE$ = null, -oncia_NoOptions$_$callClinit = () => { - oncia_NoOptions$_$callClinit = $rt_eraseClinit(oncia_NoOptions$); - oncia_NoOptions$__clinit_(); -}, -oncia_NoOptions$__clinit_ = () => { - let var$1; - var$1 = new oncia_NoOptions$; - oncia_NoOptions$_$callClinit(); - oncia_NoOptions$_MODULE$ = var$1; -}, -oncia_NoOptions$_productArity = $this => { - return 0; -}, -oncia_NoOptions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_NoOptions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NoOptions$_hashCode = $this => { - return 1346069885; -}, -oncia_NoOptions$_toString = $this => { - return $rt_s(5135); -}; -function oncia_OptionsMap() { - jl_Object.call(this); - this.$map17 = null; -} -let oncia_OptionsMap_productPrefix = $this => { - return $rt_s(5136); -}, -oncia_OptionsMap_productArity = $this => { - return 1; -}, -oncia_OptionsMap_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$map17; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_OptionsMap_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OptionsMap_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OptionsMap_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OptionsMap_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_OptionsMap) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$map17; - $x$1 = $x$1.$map17; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_OptionsMap)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_OptionsMap__init_0 = ($this, $map) => { - $this.$map17 = $map; -}, -oncia_OptionsMap__init_ = var_0 => { - let var_1 = new oncia_OptionsMap(); - oncia_OptionsMap__init_0(var_1, var_0); - return var_1; -}; -function oncia_AlterDatabase() { - let a = this; jl_Object.call(a); - a.$dbName0 = null; - a.$ifExists4 = 0; - a.$access0 = null; - a.$topology0 = null; - a.$options4 = null; - a.$optionsToRemove0 = null; - a.$waitUntilComplete1 = null; - a.$position187 = null; - a.$isReadOnly26 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar34 = null; -} -let oncia_AlterDatabase_returnColumns = $this => { - return oncia_WaitableAdministrationCommand_returnColumns$($this); -}, -oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_AlterDatabase_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_AlterDatabase_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_AlterDatabase_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_AlterDatabase_error0 = ($this, $gqlStatusObject, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$0($this, $gqlStatusObject, $msg, $position); -}, -oncia_AlterDatabase_foldedOver = $this => { - return $this; -}, -oncia_AlterDatabase_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_AlterDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly26 = $x$1; -}, -oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar34; -}, -oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar34 = $x$1; -}, -oncia_AlterDatabase_dbName = $this => { - return $this.$dbName0; -}, -oncia_AlterDatabase_ifExists = $this => { - return $this.$ifExists4; -}, -oncia_AlterDatabase_access = $this => { - return $this.$access0; -}, -oncia_AlterDatabase_topology = $this => { - return $this.$topology0; -}, -oncia_AlterDatabase_options = $this => { - return $this.$options4; -}, -oncia_AlterDatabase_optionsToRemove = $this => { - return $this.$optionsToRemove0; -}, -oncia_AlterDatabase_waitUntilComplete = $this => { - return $this.$waitUntilComplete1; -}, -oncia_AlterDatabase_position = $this => { - return $this.$position187; -}, -oncia_AlterDatabase_name = $this => { - return $rt_s(5137); -}, -oncia_AlterDatabase_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)), oncia_WriteAdministrationCommand_topologyCheck$($this, $this.$topology0, $rt_s(5137))); -}, -oncia_AlterDatabase_productPrefix = $this => { - return $rt_s(5138); -}, -oncia_AlterDatabase_productArity = $this => { - return 7; -}, -oncia_AlterDatabase_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$dbName0; - case 1: - return jl_Boolean_valueOf($this.$ifExists4); - case 2: - return $this.$access0; - case 3: - return $this.$topology0; - case 4: - return $this.$options4; - case 5: - return $this.$optionsToRemove0; - case 6: - return $this.$waitUntilComplete1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_AlterDatabase_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterDatabase_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5138))), sr_Statics_anyHash($this.$dbName0)), !$this.$ifExists4 ? 1237 : 1231), sr_Statics_anyHash($this.$access0)), sr_Statics_anyHash($this.$topology0)), sr_Statics_anyHash($this.$options4)), sr_Statics_anyHash($this.$optionsToRemove0)), sr_Statics_anyHash($this.$waitUntilComplete1)), 7); -}, -oncia_AlterDatabase_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterDatabase_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_AlterDatabase) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists4 != $x$1.$ifExists4) - break b; - d: { - var$2 = $this.$dbName0; - var$3 = $x$1.$dbName0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$access0; - var$3 = $x$1.$access0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$topology0; - var$3 = $x$1.$topology0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$options4; - var$3 = $x$1.$options4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$2 = $this.$optionsToRemove0; - var$3 = $x$1.$optionsToRemove0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break h; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$waitUntilComplete1; - $x$1 = $x$1.$waitUntilComplete1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_AlterDatabase_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_AlterDatabase_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterDatabase__init_ = ($this, $dbName, $ifExists, $access, $topology, $options, $optionsToRemove, $waitUntilComplete, $position) => { - $this.$dbName0 = $dbName; - $this.$ifExists4 = $ifExists; - $this.$access0 = $access; - $this.$topology0 = $topology; - $this.$options4 = $options; - $this.$optionsToRemove0 = $optionsToRemove; - $this.$waitUntilComplete1 = $waitUntilComplete; - $this.$position187 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_AlterDatabase__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { - let var_8 = new oncia_AlterDatabase(); - oncia_AlterDatabase__init_(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); - return var_8; -}; -function oncia_AlterServer() { - let a = this; jl_Object.call(a); - a.$serverName1 = null; - a.$optionsMap1 = null; - a.$position237 = null; - a.$isReadOnly5 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar12 = null; -} -let oncia_AlterServer_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_AlterServer_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_AlterServer_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterServer_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_AlterServer_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_AlterServer_foldedOver = $this => { - return $this; -}, -oncia_AlterServer_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_AlterServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly5 = $x$1; -}, -oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar12; -}, -oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar12 = $x$1; -}, -oncia_AlterServer_serverName = $this => { - return $this.$serverName1; -}, -oncia_AlterServer_optionsMap = $this => { - return $this.$optionsMap1; -}, -oncia_AlterServer_position = $this => { - return $this.$position237; -}, -oncia_AlterServer_name = $this => { - return $rt_s(5139); -}, -oncia_AlterServer_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_AlterServer_productPrefix = $this => { - return $rt_s(5140); -}, -oncia_AlterServer_productArity = $this => { - return 2; -}, -oncia_AlterServer_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$serverName1; - case 1: - return $this.$optionsMap1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_AlterServer_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterServer_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterServer_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterServer_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_AlterServer) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$serverName1; - var$3 = $x$1.$serverName1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$optionsMap1; - $x$1 = $x$1.$optionsMap1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_AlterServer_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_AlterServer_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterServer__init_ = ($this, $serverName, $optionsMap, $position) => { - $this.$serverName1 = $serverName; - $this.$optionsMap1 = $optionsMap; - $this.$position237 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_AlterServer__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_AlterServer(); - oncia_AlterServer__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_AlterUser() { - let a = this; jl_Object.call(a); - a.$userName1 = null; - a.$userOptions = null; - a.$ifExists9 = 0; - a.$newStyleAuth0 = null; - a.$oldStyleAuth0 = null; - a.$removeAuth = null; - a.$position160 = null; - a.$externalAuths0 = null; - a.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths1 = null; - a.$nativeAuth0 = null; - a.$allAuths = null; - a.$useOldStyleNativeAuth = 0; - a.$isReadOnly27 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar28 = null; -} -let oncia_AlterUser_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_AlterUser_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_AlterUser_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_AlterUser_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_AlterUser_foldedOver = $this => { - return $this; -}, -oncia_AlterUser_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_AlterUser_externalAuths = $this => { - return $this.$externalAuths0; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths = $this => { - return $this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths1; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq = ($this, $x$1) => { - $this.$externalAuths0 = $x$1; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths1 = $x$1; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq = ($this, $x$1) => { - $this.$nativeAuth0 = $x$1; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq = ($this, $x$1) => { - $this.$allAuths = $x$1; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq = ($this, $x$1) => { - $this.$useOldStyleNativeAuth = $x$1; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly27 = $x$1; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar28; -}, -oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar28 = $x$1; -}, -oncia_AlterUser_newStyleAuth = $this => { - return $this.$newStyleAuth0; -}, -oncia_AlterUser_oldStyleAuth = $this => { - return $this.$oldStyleAuth0; -}, -oncia_AlterUser_position = $this => { - return $this.$position160; -}, -oncia_AlterUser_name = $this => { - return $rt_s(5141); -}, -oncia_AlterUser_semanticCheck = $this => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = $this.$userOptions; - var$2 = s_Option_isEmpty(var$1.$suspended0) && s_Option_isEmpty(var$1.$homeDatabase3) ? 1 : 0; - if (var$2 && $this.$allAuths.$isEmpty() && oncia_RemoveAuth_isEmpty($this.$removeAuth)) - var$3 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(5142), $this.$position160); - else { - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$3, oncia_UserAuth_checkDuplicateAuth$($this)), oncia_UserAuth_checkOldAndNewStyleCombination$($this)); - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$4, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, $this.$allAuths, new oncia_AlterUser$semanticCheck$lambda$_85_0)), oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, $this.$externalAuths0, new oncia_AlterUser$semanticCheck$lambda$_85_1)); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - var$5 = $this.$removeAuth.$auths0; - var$1 = new oncia_AlterUser$checkRemoveAuth$lambda$_84_0; - var$1.$_0690 = $this; - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$4, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$5, var$1)), oncia_AdministrationCommand_semanticCheck$($this)); - oncia_AdministrationCommand$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(var$4, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4811), $this.$userName1)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_AlterUser_productPrefix = $this => { - return $rt_s(5143); -}, -oncia_AlterUser_productArity = $this => { - return 6; -}, -oncia_AlterUser_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$userName1; - case 1: - return $this.$userOptions; - case 2: - return jl_Boolean_valueOf($this.$ifExists9); - case 3: - return $this.$newStyleAuth0; - case 4: - return $this.$oldStyleAuth0; - case 5: - return $this.$removeAuth; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_AlterUser_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterUser_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5143))), sr_Statics_anyHash($this.$userName1)), sr_Statics_anyHash($this.$userOptions)), !$this.$ifExists9 ? 1237 : 1231), sr_Statics_anyHash($this.$newStyleAuth0)), sr_Statics_anyHash($this.$oldStyleAuth0)), sr_Statics_anyHash($this.$removeAuth)), 6); -}, -oncia_AlterUser_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterUser_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_AlterUser) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists9 != $x$1.$ifExists9) - break b; - d: { - var$2 = $this.$userName1; - var$3 = $x$1.$userName1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$userOptions; - var$3 = $x$1.$userOptions; - if (var$2 !== null) { - if (!oncia_UserOptions_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$newStyleAuth0; - var$3 = $x$1.$newStyleAuth0; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$oldStyleAuth0; - var$3 = $x$1.$oldStyleAuth0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$removeAuth; - $x$1 = $x$1.$removeAuth; - if (var$3 !== null) { - if (!oncia_RemoveAuth_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_AlterUser_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_AlterUser_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_AlterUser__init_0 = ($this, $userName, $userOptions, $ifExists, $newStyleAuth, $oldStyleAuth, $removeAuth, $position) => { - $this.$userName1 = $userName; - $this.$userOptions = $userOptions; - $this.$ifExists9 = $ifExists; - $this.$newStyleAuth0 = $newStyleAuth; - $this.$oldStyleAuth0 = $oldStyleAuth; - $this.$removeAuth = $removeAuth; - $this.$position160 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); - oncia_UserAuth_$init$($this); -}, -oncia_AlterUser__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_AlterUser(); - oncia_AlterUser__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}; -function oncia_RemoveAuth() { - let a = this; jl_Object.call(a); - a.$all2 = 0; - a.$auths0 = null; -} -let oncia_RemoveAuth_all = $this => { - return $this.$all2; -}, -oncia_RemoveAuth_auths = $this => { - return $this.$auths0; -}, -oncia_RemoveAuth_isEmpty = $this => { - return sci_List_isEmpty($this.$auths0) && !$this.$all2 ? 1 : 0; -}, -oncia_RemoveAuth_productPrefix = $this => { - return $rt_s(5144); -}, -oncia_RemoveAuth_productArity = $this => { - return 2; -}, -oncia_RemoveAuth_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$all2); - case 1: - return $this.$auths0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RemoveAuth_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveAuth_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5144))), !$this.$all2 ? 1237 : 1231), sr_Statics_anyHash($this.$auths0)), 2); -}, -oncia_RemoveAuth_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveAuth_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RemoveAuth) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$all2 != $x$1.$all2) - break b; - c: { - var$2 = $this.$auths0; - $x$1 = $x$1.$auths0; - if (var$2 !== null) { - if (!sci_List_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_RemoveAuth)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_RemoveAuth__init_0 = ($this, $all, $auths) => { - $this.$all2 = $all; - $this.$auths0 = $auths; -}, -oncia_RemoveAuth__init_ = (var_0, var_1) => { - let var_2 = new oncia_RemoveAuth(); - oncia_RemoveAuth__init_0(var_2, var_0, var_1); - return var_2; -}, -oncia_RemoveHomeDatabaseAction$ = $rt_classWithoutFields(), -oncia_RemoveHomeDatabaseAction$_MODULE$ = null, -oncia_RemoveHomeDatabaseAction$_$callClinit = () => { - oncia_RemoveHomeDatabaseAction$_$callClinit = $rt_eraseClinit(oncia_RemoveHomeDatabaseAction$); - oncia_RemoveHomeDatabaseAction$__clinit_(); -}, -oncia_RemoveHomeDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_RemoveHomeDatabaseAction$; - oncia_RemoveHomeDatabaseAction$_$callClinit(); - oncia_RemoveHomeDatabaseAction$_MODULE$ = var$1; -}, -oncia_RemoveHomeDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_RemoveHomeDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RemoveHomeDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveHomeDatabaseAction$_hashCode = $this => { - return 1523761684; -}, -oncia_RemoveHomeDatabaseAction$_toString = $this => { - return $rt_s(5145); -}; -function oncia_DeallocateServers() { - let a = this; jl_Object.call(a); - a.$dryRun1 = 0; - a.$serverNames0 = null; - a.$position20 = null; - a.$isReadOnly34 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar33 = null; -} -let oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_DeallocateServers_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_DeallocateServers_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DeallocateServers_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_DeallocateServers_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_DeallocateServers_foldedOver = $this => { - return $this; -}, -oncia_DeallocateServers_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_DeallocateServers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - return; -}, -oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar33; -}, -oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar33 = $x$1; -}, -oncia_DeallocateServers_dryRun = $this => { - return $this.$dryRun1; -}, -oncia_DeallocateServers_serverNames = $this => { - return $this.$serverNames0; -}, -oncia_DeallocateServers_position = $this => { - return $this.$position20; -}, -oncia_DeallocateServers_name = $this => { - return $rt_s(5146); -}, -oncia_DeallocateServers_returnColumns = $this => { - if (!$this.$dryRun1) { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; - } - return sci_$colon$colon__init_(oncie_Variable__init_($rt_s(4904), $this.$position20), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5147), $this.$position20), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5148), $this.$position20), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5149), $this.$position20), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5150), $this.$position20), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5011), $this.$position20), sci_Nil$_MODULE$)))))); -}, -oncia_DeallocateServers_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_DeallocateServers_productPrefix = $this => { - return $rt_s(5151); -}, -oncia_DeallocateServers_productArity = $this => { - return 2; -}, -oncia_DeallocateServers_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$dryRun1); - case 1: - return $this.$serverNames0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DeallocateServers_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DeallocateServers_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5151))), !$this.$dryRun1 ? 1237 : 1231), sr_Statics_anyHash($this.$serverNames0)), 2); -}, -oncia_DeallocateServers_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DeallocateServers_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DeallocateServers) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$dryRun1 != $x$1.$dryRun1) - break b; - var$2 = $this.$serverNames0; - $x$1 = $x$1.$serverNames0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_DeallocateServers_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_DeallocateServers_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DeallocateServers__init_ = ($this, $dryRun, $serverNames, $position) => { - $this.$dryRun1 = $dryRun; - $this.$serverNames0 = $serverNames; - $this.$position20 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); - $this.$isReadOnly34 = $dryRun; -}, -oncia_DeallocateServers__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_DeallocateServers(); - oncia_DeallocateServers__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -onciafn_Neo4jASTFactory$deallocateServers$lambda$_230_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$deallocateServers$lambda$_230_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciafn_TupleConverter$_$callClinit(); - return onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1)); -}; -function oncia_ReallocateDatabases() { - let a = this; jl_Object.call(a); - a.$dryRun0 = 0; - a.$position23 = null; - a.$isReadOnly28 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar0 = null; -} -let oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ReallocateDatabases_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_ReallocateDatabases_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ReallocateDatabases_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_ReallocateDatabases_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ReallocateDatabases_foldedOver = $this => { - return $this; -}, -oncia_ReallocateDatabases_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - return; -}, -oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar0; -}, -oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar0 = $x$1; -}, -oncia_ReallocateDatabases_dryRun = $this => { - return $this.$dryRun0; -}, -oncia_ReallocateDatabases_position = $this => { - return $this.$position23; -}, -oncia_ReallocateDatabases_name = $this => { - return $rt_s(5152); -}, -oncia_ReallocateDatabases_returnColumns = $this => { - if (!$this.$dryRun0) { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; - } - return sci_$colon$colon__init_(oncie_Variable__init_($rt_s(4904), $this.$position23), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5147), $this.$position23), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5148), $this.$position23), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5149), $this.$position23), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5150), $this.$position23), sci_$colon$colon__init_(oncie_Variable__init_($rt_s(5011), $this.$position23), sci_Nil$_MODULE$)))))); -}, -oncia_ReallocateDatabases_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_ReallocateDatabases_productPrefix = $this => { - return $rt_s(5153); -}, -oncia_ReallocateDatabases_productArity = $this => { - return 1; -}, -oncia_ReallocateDatabases_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$dryRun0); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ReallocateDatabases_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ReallocateDatabases_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5153))), !$this.$dryRun0 ? 1237 : 1231), 1); -}, -oncia_ReallocateDatabases_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ReallocateDatabases_equals = ($this, $x$1) => { - let var$2; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ReallocateDatabases) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$dryRun0 != $x$1.$dryRun0) - break b; - } - var$2 = 1; - break a; - } - var$2 = 0; - } - return var$2; -}, -oncia_ReallocateDatabases_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_ReallocateDatabases_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_ReallocateDatabases__init_ = ($this, $dryRun, $position) => { - $this.$dryRun0 = $dryRun; - $this.$position23 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); - $this.$isReadOnly28 = $dryRun; -}, -oncia_ReallocateDatabases__init_0 = (var_0, var_1) => { - let var_2 = new oncia_ReallocateDatabases(); - oncia_ReallocateDatabases__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_DatabaseAction() { - jl_Object.call(this); - this.$name25 = null; -} -let oncia_DatabaseAction_name = $this => { - return $this.$name25; -}, -oncia_DatabaseAction__init_ = ($this, $name) => { - $this.$name25 = $name; -}, -oncia_AllDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseAction), -oncia_AllDatabaseAction$_MODULE$ = null, -oncia_AllDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllDatabaseAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5154)); - oncia_AllDatabaseAction$_MODULE$ = var$1; -}, -oncia_AllDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_AllDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDatabaseAction$_hashCode = $this => { - return (-2104636558); -}, -oncia_AllDatabaseAction$_toString = $this => { - return $rt_s(5155); -}, -oncia_AccessDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseAction), -oncia_AccessDatabaseAction$_MODULE$ = null, -oncia_AccessDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AccessDatabaseAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(4550)); - oncia_AccessDatabaseAction$_MODULE$ = var$1; -}, -oncia_AccessDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_AccessDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AccessDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AccessDatabaseAction$_hashCode = $this => { - return (-673994187); -}, -oncia_AccessDatabaseAction$_toString = $this => { - return $rt_s(5156); -}, -oncia_StartDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseAction), -oncia_StartDatabaseAction$_MODULE$ = null, -oncia_StartDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_StartDatabaseAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5157)); - oncia_StartDatabaseAction$_MODULE$ = var$1; -}, -oncia_StartDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_StartDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_StartDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_StartDatabaseAction$_hashCode = $this => { - return 1885878387; -}, -oncia_StartDatabaseAction$_toString = $this => { - return $rt_s(5158); -}, -oncia_StopDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseAction), -oncia_StopDatabaseAction$_MODULE$ = null, -oncia_StopDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_StopDatabaseAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5159)); - oncia_StopDatabaseAction$_MODULE$ = var$1; -}, -oncia_StopDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_StopDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_StopDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_StopDatabaseAction$_hashCode = $this => { - return 1540659283; -}, -oncia_StopDatabaseAction$_toString = $this => { - return $rt_s(5160); -}, -oncia_IndexManagementAction = $rt_classWithoutFields(oncia_DatabaseAction), -oncia_IndexManagementAction_name = $this => { - return $this.$name25; -}, -oncia_AllIndexActions$ = $rt_classWithoutFields(oncia_IndexManagementAction), -oncia_AllIndexActions$_MODULE$ = null, -oncia_AllIndexActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllIndexActions$; - oncia_DatabaseAction__init_(var$1, $rt_s(5161)); - oncia_AllIndexActions$_MODULE$ = var$1; -}, -oncia_AllIndexActions$_productArity = $this => { - return 0; -}, -oncia_AllIndexActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllIndexActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllIndexActions$_hashCode = $this => { - return (-1599036436); -}, -oncia_AllIndexActions$_toString = $this => { - return $rt_s(5162); -}, -oncia_CreateIndexAction$ = $rt_classWithoutFields(oncia_IndexManagementAction), -oncia_CreateIndexAction$_MODULE$ = null, -oncia_CreateIndexAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateIndexAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5163)); - oncia_CreateIndexAction$_MODULE$ = var$1; -}, -oncia_CreateIndexAction$_productArity = $this => { - return 0; -}, -oncia_CreateIndexAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateIndexAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}; -let oncia_CreateIndexAction$_hashCode = $this => { - return 1213284076; -}, -oncia_CreateIndexAction$_toString = $this => { - return $rt_s(5164); -}, -oncia_DropIndexAction$ = $rt_classWithoutFields(oncia_IndexManagementAction), -oncia_DropIndexAction$_MODULE$ = null, -oncia_DropIndexAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_DropIndexAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5165)); - oncia_DropIndexAction$_MODULE$ = var$1; -}, -oncia_DropIndexAction$_productArity = $this => { - return 0; -}, -oncia_DropIndexAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DropIndexAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropIndexAction$_hashCode = $this => { - return (-815004903); -}, -oncia_DropIndexAction$_toString = $this => { - return $rt_s(5166); -}, -oncia_ShowIndexAction$ = $rt_classWithoutFields(oncia_IndexManagementAction), -oncia_ShowIndexAction$_MODULE$ = null, -oncia_ShowIndexAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowIndexAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5167)); - oncia_ShowIndexAction$_MODULE$ = var$1; -}, -oncia_ShowIndexAction$_productArity = $this => { - return 0; -}, -oncia_ShowIndexAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowIndexAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowIndexAction$_hashCode = $this => { - return 1987633739; -}, -oncia_ShowIndexAction$_toString = $this => { - return $rt_s(5168); -}, -oncia_ConstraintManagementAction = $rt_classWithoutFields(oncia_DatabaseAction), -oncia_ConstraintManagementAction_name = $this => { - return $this.$name25; -}, -oncia_AllConstraintActions$ = $rt_classWithoutFields(oncia_ConstraintManagementAction), -oncia_AllConstraintActions$_MODULE$ = null, -oncia_AllConstraintActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllConstraintActions$; - oncia_DatabaseAction__init_(var$1, $rt_s(5169)); - oncia_AllConstraintActions$_MODULE$ = var$1; -}, -oncia_AllConstraintActions$_productArity = $this => { - return 0; -}, -oncia_AllConstraintActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllConstraintActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllConstraintActions$_hashCode = $this => { - return (-2117322529); -}, -oncia_AllConstraintActions$_toString = $this => { - return $rt_s(5170); -}, -oncia_CreateConstraintAction$ = $rt_classWithoutFields(oncia_ConstraintManagementAction), -oncia_CreateConstraintAction$_MODULE$ = null, -oncia_CreateConstraintAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateConstraintAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5171)); - oncia_CreateConstraintAction$_MODULE$ = var$1; -}, -oncia_CreateConstraintAction$_productArity = $this => { - return 0; -}, -oncia_CreateConstraintAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateConstraintAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateConstraintAction$_hashCode = $this => { - return 1912733615; -}, -oncia_CreateConstraintAction$_toString = $this => { - return $rt_s(5172); -}, -oncia_DropConstraintAction$ = $rt_classWithoutFields(oncia_ConstraintManagementAction), -oncia_DropConstraintAction$_MODULE$ = null, -oncia_DropConstraintAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_DropConstraintAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5173)); - oncia_DropConstraintAction$_MODULE$ = var$1; -}, -oncia_DropConstraintAction$_productArity = $this => { - return 0; -}, -oncia_DropConstraintAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DropConstraintAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropConstraintAction$_hashCode = $this => { - return 231460770; -}, -oncia_DropConstraintAction$_toString = $this => { - return $rt_s(5174); -}, -oncia_ShowConstraintAction$ = $rt_classWithoutFields(oncia_ConstraintManagementAction), -oncia_ShowConstraintAction$_MODULE$ = null, -oncia_ShowConstraintAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowConstraintAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5175)); - oncia_ShowConstraintAction$_MODULE$ = var$1; -}, -oncia_ShowConstraintAction$_productArity = $this => { - return 0; -}, -oncia_ShowConstraintAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowConstraintAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}; -let oncia_ShowConstraintAction$_hashCode = $this => { - return (-867917904); -}, -oncia_ShowConstraintAction$_toString = $this => { - return $rt_s(5176); -}, -oncia_NameManagementAction = $rt_classWithoutFields(oncia_DatabaseAction), -oncia_NameManagementAction_name = $this => { - return $this.$name25; -}, -oncia_AllTokenActions$ = $rt_classWithoutFields(oncia_NameManagementAction), -oncia_AllTokenActions$_MODULE$ = null, -oncia_AllTokenActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllTokenActions$; - oncia_DatabaseAction__init_(var$1, $rt_s(5177)); - oncia_AllTokenActions$_MODULE$ = var$1; -}, -oncia_AllTokenActions$_productArity = $this => { - return 0; -}, -oncia_AllTokenActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllTokenActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllTokenActions$_hashCode = $this => { - return 695060709; -}, -oncia_AllTokenActions$_toString = $this => { - return $rt_s(5178); -}, -oncia_CreatePropertyKeyAction$ = $rt_classWithoutFields(oncia_NameManagementAction), -oncia_CreatePropertyKeyAction$_MODULE$ = null, -oncia_CreatePropertyKeyAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreatePropertyKeyAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5179)); - oncia_CreatePropertyKeyAction$_MODULE$ = var$1; -}, -oncia_CreatePropertyKeyAction$_productArity = $this => { - return 0; -}, -oncia_CreatePropertyKeyAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreatePropertyKeyAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreatePropertyKeyAction$_hashCode = $this => { - return (-1818651292); -}, -oncia_CreatePropertyKeyAction$_toString = $this => { - return $rt_s(5180); -}, -oncia_CreateNodeLabelAction$ = $rt_classWithoutFields(oncia_NameManagementAction), -oncia_CreateNodeLabelAction$_MODULE$ = null, -oncia_CreateNodeLabelAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateNodeLabelAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5181)); - oncia_CreateNodeLabelAction$_MODULE$ = var$1; -}, -oncia_CreateNodeLabelAction$_productArity = $this => { - return 0; -}, -oncia_CreateNodeLabelAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateNodeLabelAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateNodeLabelAction$_hashCode = $this => { - return 1759458860; -}, -oncia_CreateNodeLabelAction$_toString = $this => { - return $rt_s(5182); -}, -oncia_CreateRelationshipTypeAction$ = $rt_classWithoutFields(oncia_NameManagementAction), -oncia_CreateRelationshipTypeAction$_MODULE$ = null, -oncia_CreateRelationshipTypeAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateRelationshipTypeAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5183)); - oncia_CreateRelationshipTypeAction$_MODULE$ = var$1; -}, -oncia_CreateRelationshipTypeAction$_productArity = $this => { - return 0; -}, -oncia_CreateRelationshipTypeAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateRelationshipTypeAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateRelationshipTypeAction$_hashCode = $this => { - return (-979939676); -}, -oncia_CreateRelationshipTypeAction$_toString = $this => { - return $rt_s(5184); -}, -oncia_TransactionManagementAction = $rt_classWithoutFields(oncia_DatabaseAction), -oncia_TransactionManagementAction_name = $this => { - return $this.$name25; -}, -oncia_AllTransactionActions$ = $rt_classWithoutFields(oncia_TransactionManagementAction), -oncia_AllTransactionActions$_MODULE$ = null, -oncia_AllTransactionActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllTransactionActions$; - oncia_DatabaseAction__init_(var$1, $rt_s(5185)); - oncia_AllTransactionActions$_MODULE$ = var$1; -}, -oncia_AllTransactionActions$_productArity = $this => { - return 0; -}, -oncia_AllTransactionActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllTransactionActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllTransactionActions$_hashCode = $this => { - return (-1288800352); -}, -oncia_AllTransactionActions$_toString = $this => { - return $rt_s(5186); -}, -oncia_ShowTransactionAction$ = $rt_classWithoutFields(oncia_TransactionManagementAction), -oncia_ShowTransactionAction$_MODULE$ = null, -oncia_ShowTransactionAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowTransactionAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5187)); - oncia_ShowTransactionAction$_MODULE$ = var$1; -}, -oncia_ShowTransactionAction$_productArity = $this => { - return 0; -}; -let oncia_ShowTransactionAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowTransactionAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowTransactionAction$_hashCode = $this => { - return 524455191; -}, -oncia_ShowTransactionAction$_toString = $this => { - return $rt_s(5188); -}, -oncia_TerminateTransactionAction$ = $rt_classWithoutFields(oncia_TransactionManagementAction), -oncia_TerminateTransactionAction$_MODULE$ = null, -oncia_TerminateTransactionAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_TerminateTransactionAction$; - oncia_DatabaseAction__init_(var$1, $rt_s(5189)); - oncia_TerminateTransactionAction$_MODULE$ = var$1; -}, -oncia_TerminateTransactionAction$_productArity = $this => { - return 0; -}, -oncia_TerminateTransactionAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_TerminateTransactionAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_TerminateTransactionAction$_hashCode = $this => { - return 252750451; -}, -oncia_TerminateTransactionAction$_toString = $this => { - return $rt_s(5190); -}; -function oncia_DbmsAction() { - jl_Object.call(this); - this.$name17 = null; -} -let oncia_DbmsAction_name = $this => { - return $this.$name17; -}, -oncia_DbmsAction__init_ = ($this, $name) => { - $this.$name17 = $name; -}, -oncia_AllDbmsAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_AllDbmsAction$_MODULE$ = null, -oncia_AllDbmsAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllDbmsAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5191)); - oncia_AllDbmsAction$_MODULE$ = var$1; -}, -oncia_AllDbmsAction$_productArity = $this => { - return 0; -}, -oncia_AllDbmsAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllDbmsAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDbmsAction$_hashCode = $this => { - return (-1220050341); -}, -oncia_AllDbmsAction$_toString = $this => { - return $rt_s(5192); -}, -oncia_UserManagementAction = $rt_classWithoutFields(oncia_DbmsAction), -oncia_UserManagementAction_name = $this => { - return $this.$name17; -}, -oncia_AllUserActions$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_AllUserActions$_MODULE$ = null, -oncia_AllUserActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllUserActions$; - oncia_DbmsAction__init_(var$1, $rt_s(5193)); - oncia_AllUserActions$_MODULE$ = var$1; -}, -oncia_AllUserActions$_productArity = $this => { - return 0; -}, -oncia_AllUserActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllUserActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllUserActions$_hashCode = $this => { - return 1135904369; -}, -oncia_AllUserActions$_toString = $this => { - return $rt_s(5194); -}, -oncia_ShowUserAction$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_ShowUserAction$_MODULE$ = null, -oncia_ShowUserAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowUserAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5195)); - oncia_ShowUserAction$_MODULE$ = var$1; -}, -oncia_ShowUserAction$_productArity = $this => { - return 0; -}, -oncia_ShowUserAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowUserAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUserAction$_hashCode = $this => { - return 1653259486; -}, -oncia_ShowUserAction$_toString = $this => { - return $rt_s(5196); -}, -oncia_AlterUserAction$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_AlterUserAction$_MODULE$ = null, -oncia_AlterUserAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AlterUserAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5141)); - oncia_AlterUserAction$_MODULE$ = var$1; -}, -oncia_AlterUserAction$_productArity = $this => { - return 0; -}, -oncia_AlterUserAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AlterUserAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterUserAction$_hashCode = $this => { - return 983941751; -}, -oncia_AlterUserAction$_toString = $this => { - return $rt_s(5197); -}, -oncia_CreateUserAction$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_CreateUserAction$_MODULE$ = null, -oncia_CreateUserAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateUserAction$; - oncia_DbmsAction__init_(var$1, $rt_s(4848)); - oncia_CreateUserAction$_MODULE$ = var$1; -}, -oncia_CreateUserAction$_productArity = $this => { - return 0; -}, -oncia_CreateUserAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateUserAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateUserAction$_hashCode = $this => { - return 2043922461; -}, -oncia_CreateUserAction$_toString = $this => { - return $rt_s(5198); -}, -oncia_DropUserAction$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_DropUserAction$_MODULE$ = null, -oncia_DropUserAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_DropUserAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5199)); - oncia_DropUserAction$_MODULE$ = var$1; -}, -oncia_DropUserAction$_productArity = $this => { - return 0; -}, -oncia_DropUserAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DropUserAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}; -let oncia_DropUserAction$_hashCode = $this => { - return 1701399120; -}, -oncia_DropUserAction$_toString = $this => { - return $rt_s(5200); -}, -oncia_RoleManagementAction = $rt_classWithoutFields(oncia_DbmsAction), -oncia_RoleManagementAction_name = $this => { - return $this.$name17; -}, -oncia_RenameUserAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), -oncia_RenameUserAction$_MODULE$ = null, -oncia_RenameUserAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_RenameUserAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5201)); - oncia_RenameUserAction$_MODULE$ = var$1; -}, -oncia_RenameUserAction$_productArity = $this => { - return 0; -}, -oncia_RenameUserAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RenameUserAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameUserAction$_hashCode = $this => { - return (-601099297); -}, -oncia_RenameUserAction$_toString = $this => { - return $rt_s(5202); -}, -oncia_SetPasswordsAction$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_SetPasswordsAction$_MODULE$ = null, -oncia_SetPasswordsAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_SetPasswordsAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5203)); - oncia_SetPasswordsAction$_MODULE$ = var$1; -}, -oncia_SetPasswordsAction$_productArity = $this => { - return 0; -}, -oncia_SetPasswordsAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SetPasswordsAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetPasswordsAction$_hashCode = $this => { - return (-62627604); -}, -oncia_SetPasswordsAction$_toString = $this => { - return $rt_s(5204); -}, -oncia_SetAuthAction$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_SetAuthAction$_MODULE$ = null, -oncia_SetAuthAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_SetAuthAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5205)); - oncia_SetAuthAction$_MODULE$ = var$1; -}, -oncia_SetAuthAction$_productArity = $this => { - return 0; -}, -oncia_SetAuthAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SetAuthAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetAuthAction$_hashCode = $this => { - return (-1555849248); -}, -oncia_SetAuthAction$_toString = $this => { - return $rt_s(5206); -}, -oncia_SetUserStatusAction$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_SetUserStatusAction$_MODULE$ = null, -oncia_SetUserStatusAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_SetUserStatusAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5207)); - oncia_SetUserStatusAction$_MODULE$ = var$1; -}, -oncia_SetUserStatusAction$_productArity = $this => { - return 0; -}, -oncia_SetUserStatusAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SetUserStatusAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetUserStatusAction$_hashCode = $this => { - return (-979916651); -}, -oncia_SetUserStatusAction$_toString = $this => { - return $rt_s(5208); -}, -oncia_SetUserHomeDatabaseAction$ = $rt_classWithoutFields(oncia_UserManagementAction), -oncia_SetUserHomeDatabaseAction$_MODULE$ = null, -oncia_SetUserHomeDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_SetUserHomeDatabaseAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5209)); - oncia_SetUserHomeDatabaseAction$_MODULE$ = var$1; -}, -oncia_SetUserHomeDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_SetUserHomeDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SetUserHomeDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetUserHomeDatabaseAction$_hashCode = $this => { - return (-381460387); -}, -oncia_SetUserHomeDatabaseAction$_toString = $this => { - return $rt_s(5210); -}, -oncia_ImpersonateUserAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ImpersonateUserAction$_MODULE$ = null, -oncia_ImpersonateUserAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ImpersonateUserAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5211)); - oncia_ImpersonateUserAction$_MODULE$ = var$1; -}, -oncia_ImpersonateUserAction$_productArity = $this => { - return 0; -}, -oncia_ImpersonateUserAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ImpersonateUserAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}; -let oncia_ImpersonateUserAction$_hashCode = $this => { - return 1403738394; -}, -oncia_ImpersonateUserAction$_toString = $this => { - return $rt_s(5212); -}, -oncia_AllRoleActions$ = $rt_classWithoutFields(oncia_RoleManagementAction), -oncia_AllRoleActions$_MODULE$ = null, -oncia_AllRoleActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllRoleActions$; - oncia_DbmsAction__init_(var$1, $rt_s(5213)); - oncia_AllRoleActions$_MODULE$ = var$1; -}, -oncia_AllRoleActions$_productArity = $this => { - return 0; -}, -oncia_AllRoleActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllRoleActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllRoleActions$_hashCode = $this => { - return 2068867942; -}, -oncia_AllRoleActions$_toString = $this => { - return $rt_s(5214); -}, -oncia_ShowRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), -oncia_ShowRoleAction$_MODULE$ = null, -oncia_ShowRoleAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowRoleAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5215)); - oncia_ShowRoleAction$_MODULE$ = var$1; -}, -oncia_ShowRoleAction$_productArity = $this => { - return 0; -}, -oncia_ShowRoleAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowRoleAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowRoleAction$_hashCode = $this => { - return 1544807753; -}, -oncia_ShowRoleAction$_toString = $this => { - return $rt_s(5216); -}, -oncia_CreateRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), -oncia_CreateRoleAction$_MODULE$ = null, -oncia_CreateRoleAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateRoleAction$; - oncia_DbmsAction__init_(var$1, $rt_s(4838)); - oncia_CreateRoleAction$_MODULE$ = var$1; -}, -oncia_CreateRoleAction$_productArity = $this => { - return 0; -}, -oncia_CreateRoleAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateRoleAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateRoleAction$_hashCode = $this => { - return 1935470728; -}, -oncia_CreateRoleAction$_toString = $this => { - return $rt_s(5217); -}, -oncia_DropRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), -oncia_DropRoleAction$_MODULE$ = null, -oncia_DropRoleAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_DropRoleAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5218)); - oncia_DropRoleAction$_MODULE$ = var$1; -}, -oncia_DropRoleAction$_productArity = $this => { - return 0; -}, -oncia_DropRoleAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DropRoleAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropRoleAction$_hashCode = $this => { - return 1592947387; -}, -oncia_DropRoleAction$_toString = $this => { - return $rt_s(5219); -}, -oncia_RenameRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), -oncia_RenameRoleAction$_MODULE$ = null, -oncia_RenameRoleAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_RenameRoleAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5220)); - oncia_RenameRoleAction$_MODULE$ = var$1; -}, -oncia_RenameRoleAction$_productArity = $this => { - return 0; -}, -oncia_RenameRoleAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RenameRoleAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameRoleAction$_hashCode = $this => { - return (-709551030); -}, -oncia_RenameRoleAction$_toString = $this => { - return $rt_s(5221); -}, -oncia_AssignRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), -oncia_AssignRoleAction$_MODULE$ = null, -oncia_AssignRoleAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AssignRoleAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5222)); - oncia_AssignRoleAction$_MODULE$ = var$1; -}, -oncia_AssignRoleAction$_productArity = $this => { - return 0; -}, -oncia_AssignRoleAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AssignRoleAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AssignRoleAction$_hashCode = $this => { - return (-1336755013); -}, -oncia_AssignRoleAction$_toString = $this => { - return $rt_s(5223); -}; -let oncia_RemoveRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), -oncia_RemoveRoleAction$_MODULE$ = null, -oncia_RemoveRoleAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_RemoveRoleAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5224)); - oncia_RemoveRoleAction$_MODULE$ = var$1; -}, -oncia_RemoveRoleAction$_productArity = $this => { - return 0; -}, -oncia_RemoveRoleAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RemoveRoleAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveRoleAction$_hashCode = $this => { - return 1145077264; -}, -oncia_RemoveRoleAction$_toString = $this => { - return $rt_s(5225); -}, -oncia_DatabaseManagementAction = $rt_classWithoutFields(oncia_DbmsAction), -oncia_DatabaseManagementAction_name = $this => { - return $this.$name17; -}, -oncia_AllDatabaseManagementActions$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), -oncia_AllDatabaseManagementActions$_MODULE$ = null, -oncia_AllDatabaseManagementActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllDatabaseManagementActions$; - oncia_DbmsAction__init_(var$1, $rt_s(5226)); - oncia_AllDatabaseManagementActions$_MODULE$ = var$1; -}, -oncia_AllDatabaseManagementActions$_productArity = $this => { - return 0; -}, -oncia_AllDatabaseManagementActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllDatabaseManagementActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllDatabaseManagementActions$_hashCode = $this => { - return 1807514750; -}, -oncia_AllDatabaseManagementActions$_toString = $this => { - return $rt_s(5227); -}, -oncia_CreateDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), -oncia_CreateDatabaseAction$_MODULE$ = null, -oncia_CreateDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateDatabaseAction$; - oncia_DbmsAction__init_(var$1, $rt_s(4833)); - oncia_CreateDatabaseAction$_MODULE$ = var$1; -}, -oncia_CreateDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_CreateDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateDatabaseAction$_hashCode = $this => { - return (-232690739); -}, -oncia_CreateDatabaseAction$_toString = $this => { - return $rt_s(5228); -}, -oncia_DropDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), -oncia_DropDatabaseAction$_MODULE$ = null, -oncia_DropDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_DropDatabaseAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5229)); - oncia_DropDatabaseAction$_MODULE$ = var$1; -}, -oncia_DropDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_DropDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DropDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropDatabaseAction$_hashCode = $this => { - return 905223296; -}, -oncia_DropDatabaseAction$_toString = $this => { - return $rt_s(5230); -}, -oncia_CompositeDatabaseManagementActions$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), -oncia_CompositeDatabaseManagementActions$_MODULE$ = null, -oncia_CompositeDatabaseManagementActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_CompositeDatabaseManagementActions$; - oncia_DbmsAction__init_(var$1, $rt_s(5231)); - oncia_CompositeDatabaseManagementActions$_MODULE$ = var$1; -}, -oncia_CompositeDatabaseManagementActions$_productArity = $this => { - return 0; -}, -oncia_CompositeDatabaseManagementActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CompositeDatabaseManagementActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CompositeDatabaseManagementActions$_hashCode = $this => { - return 1442617944; -}, -oncia_CompositeDatabaseManagementActions$_toString = $this => { - return $rt_s(5232); -}, -oncia_CreateCompositeDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), -oncia_CreateCompositeDatabaseAction$_MODULE$ = null, -oncia_CreateCompositeDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateCompositeDatabaseAction$; - oncia_DbmsAction__init_(var$1, $rt_s(4826)); - oncia_CreateCompositeDatabaseAction$_MODULE$ = var$1; -}, -oncia_CreateCompositeDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_CreateCompositeDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateCompositeDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateCompositeDatabaseAction$_hashCode = $this => { - return 1372079420; -}, -oncia_CreateCompositeDatabaseAction$_toString = $this => { - return $rt_s(5233); -}; -let oncia_DropCompositeDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), -oncia_DropCompositeDatabaseAction$_MODULE$ = null, -oncia_DropCompositeDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_DropCompositeDatabaseAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5234)); - oncia_DropCompositeDatabaseAction$_MODULE$ = var$1; -}, -oncia_DropCompositeDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_DropCompositeDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DropCompositeDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropCompositeDatabaseAction$_hashCode = $this => { - return 1071984105; -}, -oncia_DropCompositeDatabaseAction$_toString = $this => { - return $rt_s(5235); -}, -oncia_AlterDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), -oncia_AlterDatabaseAction$_MODULE$ = null, -oncia_AlterDatabaseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AlterDatabaseAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5137)); - oncia_AlterDatabaseAction$_MODULE$ = var$1; -}, -oncia_AlterDatabaseAction$_productArity = $this => { - return 0; -}, -oncia_AlterDatabaseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AlterDatabaseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterDatabaseAction$_hashCode = $this => { - return (-1436899033); -}, -oncia_AlterDatabaseAction$_toString = $this => { - return $rt_s(5236); -}, -oncia_SetDatabaseAccessAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), -oncia_SetDatabaseAccessAction$_MODULE$ = null, -oncia_SetDatabaseAccessAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_SetDatabaseAccessAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5237)); - oncia_SetDatabaseAccessAction$_MODULE$ = var$1; -}, -oncia_SetDatabaseAccessAction$_productArity = $this => { - return 0; -}, -oncia_SetDatabaseAccessAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SetDatabaseAccessAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetDatabaseAccessAction$_hashCode = $this => { - return 1167215927; -}, -oncia_SetDatabaseAccessAction$_toString = $this => { - return $rt_s(5238); -}, -oncia_AliasManagementAction = $rt_classWithoutFields(oncia_DbmsAction), -oncia_AliasManagementAction_name = $this => { - return $this.$name17; -}, -oncia_AllAliasManagementActions$ = $rt_classWithoutFields(oncia_AliasManagementAction), -oncia_AllAliasManagementActions$_MODULE$ = null, -oncia_AllAliasManagementActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllAliasManagementActions$; - oncia_DbmsAction__init_(var$1, $rt_s(5239)); - oncia_AllAliasManagementActions$_MODULE$ = var$1; -}, -oncia_AllAliasManagementActions$_productArity = $this => { - return 0; -}, -oncia_AllAliasManagementActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllAliasManagementActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllAliasManagementActions$_hashCode = $this => { - return 2064343467; -}, -oncia_AllAliasManagementActions$_toString = $this => { - return $rt_s(5240); -}, -oncia_CreateAliasAction$ = $rt_classWithoutFields(oncia_AliasManagementAction), -oncia_CreateAliasAction$_MODULE$ = null, -oncia_CreateAliasAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateAliasAction$; - oncia_DbmsAction__init_(var$1, $rt_s(4807)); - oncia_CreateAliasAction$_MODULE$ = var$1; -}, -oncia_CreateAliasAction$_productArity = $this => { - return 0; -}, -oncia_CreateAliasAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateAliasAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateAliasAction$_hashCode = $this => { - return (-169142806); -}, -oncia_CreateAliasAction$_toString = $this => { - return $rt_s(5241); -}, -oncia_DropAliasAction$ = $rt_classWithoutFields(oncia_AliasManagementAction), -oncia_DropAliasAction$_MODULE$ = null, -oncia_DropAliasAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_DropAliasAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5242)); - oncia_DropAliasAction$_MODULE$ = var$1; -}, -oncia_DropAliasAction$_productArity = $this => { - return 0; -}, -oncia_DropAliasAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DropAliasAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropAliasAction$_hashCode = $this => { - return 2097535511; -}, -oncia_DropAliasAction$_toString = $this => { - return $rt_s(5243); -}; -let oncia_AlterAliasAction$ = $rt_classWithoutFields(oncia_AliasManagementAction), -oncia_AlterAliasAction$_MODULE$ = null, -oncia_AlterAliasAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AlterAliasAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5128)); - oncia_AlterAliasAction$_MODULE$ = var$1; -}, -oncia_AlterAliasAction$_productArity = $this => { - return 0; -}, -oncia_AlterAliasAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AlterAliasAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AlterAliasAction$_hashCode = $this => { - return 1331193552; -}, -oncia_AlterAliasAction$_toString = $this => { - return $rt_s(5244); -}, -oncia_ShowAliasAction$ = $rt_classWithoutFields(oncia_AliasManagementAction), -oncia_ShowAliasAction$_MODULE$ = null, -oncia_ShowAliasAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowAliasAction$; - oncia_DbmsAction__init_(var$1, $rt_s(4691)); - oncia_ShowAliasAction$_MODULE$ = var$1; -}, -oncia_ShowAliasAction$_productArity = $this => { - return 0; -}, -oncia_ShowAliasAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowAliasAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowAliasAction$_hashCode = $this => { - return 605206857; -}, -oncia_ShowAliasAction$_toString = $this => { - return $rt_s(5245); -}, -oncia_PrivilegeManagementAction = $rt_classWithoutFields(oncia_DbmsAction), -oncia_PrivilegeManagementAction_name = $this => { - return $this.$name17; -}, -oncia_AllPrivilegeActions$ = $rt_classWithoutFields(oncia_PrivilegeManagementAction), -oncia_AllPrivilegeActions$_MODULE$ = null, -oncia_AllPrivilegeActions$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllPrivilegeActions$; - oncia_DbmsAction__init_(var$1, $rt_s(5246)); - oncia_AllPrivilegeActions$_MODULE$ = var$1; -}, -oncia_AllPrivilegeActions$_productArity = $this => { - return 0; -}, -oncia_AllPrivilegeActions$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllPrivilegeActions$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllPrivilegeActions$_hashCode = $this => { - return 1573475501; -}, -oncia_AllPrivilegeActions$_toString = $this => { - return $rt_s(5247); -}, -oncia_AssignPrivilegeAction$ = $rt_classWithoutFields(oncia_PrivilegeManagementAction), -oncia_AssignPrivilegeAction$_MODULE$ = null, -oncia_AssignPrivilegeAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AssignPrivilegeAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5248)); - oncia_AssignPrivilegeAction$_MODULE$ = var$1; -}, -oncia_AssignPrivilegeAction$_productArity = $this => { - return 0; -}, -oncia_AssignPrivilegeAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AssignPrivilegeAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AssignPrivilegeAction$_hashCode = $this => { - return 1823441720; -}, -oncia_AssignPrivilegeAction$_toString = $this => { - return $rt_s(5249); -}, -oncia_RemovePrivilegeAction$ = $rt_classWithoutFields(oncia_PrivilegeManagementAction), -oncia_RemovePrivilegeAction$_MODULE$ = null, -oncia_RemovePrivilegeAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_RemovePrivilegeAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5250)); - oncia_RemovePrivilegeAction$_MODULE$ = var$1; -}, -oncia_RemovePrivilegeAction$_productArity = $this => { - return 0; -}, -oncia_RemovePrivilegeAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RemovePrivilegeAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemovePrivilegeAction$_hashCode = $this => { - return 759058179; -}, -oncia_RemovePrivilegeAction$_toString = $this => { - return $rt_s(5251); -}, -oncia_ShowPrivilegeAction$ = $rt_classWithoutFields(oncia_PrivilegeManagementAction), -oncia_ShowPrivilegeAction$_MODULE$ = null, -oncia_ShowPrivilegeAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowPrivilegeAction$; - oncia_DbmsAction__init_(var$1, $rt_s(4678)); - oncia_ShowPrivilegeAction$_MODULE$ = var$1; -}, -oncia_ShowPrivilegeAction$_productArity = $this => { - return 0; -}, -oncia_ShowPrivilegeAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowPrivilegeAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowPrivilegeAction$_hashCode = $this => { - return 632783722; -}, -oncia_ShowPrivilegeAction$_toString = $this => { - return $rt_s(5252); -}; -let oncia_ExecuteFunctionAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ExecuteFunctionAction$_MODULE$ = null, -oncia_ExecuteFunctionAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ExecuteFunctionAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5253)); - oncia_ExecuteFunctionAction$_MODULE$ = var$1; -}, -oncia_ExecuteFunctionAction$_productArity = $this => { - return 0; -}, -oncia_ExecuteFunctionAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ExecuteFunctionAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExecuteFunctionAction$_hashCode = $this => { - return 198180579; -}, -oncia_ExecuteFunctionAction$_toString = $this => { - return $rt_s(5254); -}, -oncia_ExecuteBoostedFunctionAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ExecuteBoostedFunctionAction$_MODULE$ = null, -oncia_ExecuteBoostedFunctionAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ExecuteBoostedFunctionAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5255)); - oncia_ExecuteBoostedFunctionAction$_MODULE$ = var$1; -}, -oncia_ExecuteBoostedFunctionAction$_productArity = $this => { - return 0; -}, -oncia_ExecuteBoostedFunctionAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ExecuteBoostedFunctionAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExecuteBoostedFunctionAction$_hashCode = $this => { - return (-1363277829); -}, -oncia_ExecuteBoostedFunctionAction$_toString = $this => { - return $rt_s(5256); -}, -oncia_ExecuteProcedureAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ExecuteProcedureAction$_MODULE$ = null, -oncia_ExecuteProcedureAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ExecuteProcedureAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5257)); - oncia_ExecuteProcedureAction$_MODULE$ = var$1; -}, -oncia_ExecuteProcedureAction$_productArity = $this => { - return 0; -}, -oncia_ExecuteProcedureAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ExecuteProcedureAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExecuteProcedureAction$_hashCode = $this => { - return 157693652; -}, -oncia_ExecuteProcedureAction$_toString = $this => { - return $rt_s(5258); -}, -oncia_ExecuteBoostedProcedureAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ExecuteBoostedProcedureAction$_MODULE$ = null, -oncia_ExecuteBoostedProcedureAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ExecuteBoostedProcedureAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5259)); - oncia_ExecuteBoostedProcedureAction$_MODULE$ = var$1; -}, -oncia_ExecuteBoostedProcedureAction$_productArity = $this => { - return 0; -}, -oncia_ExecuteBoostedProcedureAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ExecuteBoostedProcedureAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExecuteBoostedProcedureAction$_hashCode = $this => { - return (-1002876740); -}, -oncia_ExecuteBoostedProcedureAction$_toString = $this => { - return $rt_s(5260); -}, -oncia_ExecuteAdminProcedureAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ExecuteAdminProcedureAction$_MODULE$ = null, -oncia_ExecuteAdminProcedureAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ExecuteAdminProcedureAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5261)); - oncia_ExecuteAdminProcedureAction$_MODULE$ = var$1; -}, -oncia_ExecuteAdminProcedureAction$_productArity = $this => { - return 0; -}, -oncia_ExecuteAdminProcedureAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ExecuteAdminProcedureAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExecuteAdminProcedureAction$_hashCode = $this => { - return 785569423; -}, -oncia_ExecuteAdminProcedureAction$_toString = $this => { - return $rt_s(5262); -}, -oncia_ShowServerAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ShowServerAction$_MODULE$ = null, -oncia_ShowServerAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowServerAction$; - oncia_DbmsAction__init_(var$1, $rt_s(4700)); - oncia_ShowServerAction$_MODULE$ = var$1; -}, -oncia_ShowServerAction$_productArity = $this => { - return 0; -}, -oncia_ShowServerAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowServerAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowServerAction$_hashCode = $this => { - return (-846939370); -}, -oncia_ShowServerAction$_toString = $this => { - return $rt_s(5263); -}, -oncia_ServerManagementAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ServerManagementAction$_MODULE$ = null; -let oncia_ServerManagementAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ServerManagementAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5264)); - oncia_ServerManagementAction$_MODULE$ = var$1; -}, -oncia_ServerManagementAction$_productArity = $this => { - return 0; -}, -oncia_ServerManagementAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ServerManagementAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ServerManagementAction$_hashCode = $this => { - return (-1139237412); -}, -oncia_ServerManagementAction$_toString = $this => { - return $rt_s(5265); -}, -oncia_ShowSettingAction$ = $rt_classWithoutFields(oncia_DbmsAction), -oncia_ShowSettingAction$_MODULE$ = null, -oncia_ShowSettingAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ShowSettingAction$; - oncia_DbmsAction__init_(var$1, $rt_s(5266)); - oncia_ShowSettingAction$_MODULE$ = var$1; -}, -oncia_ShowSettingAction$_productArity = $this => { - return 0; -}, -oncia_ShowSettingAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ShowSettingAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowSettingAction$_hashCode = $this => { - return 1964217481; -}, -oncia_ShowSettingAction$_toString = $this => { - return $rt_s(5267); -}; -function oncia_GraphAction() { - let a = this; jl_Object.call(a); - a.$name18 = null; - a.$planName = null; -} -let oncia_GraphAction_name = $this => { - return $this.$name18; -}, -oncia_GraphAction__init_ = ($this, $name, $planName) => { - $this.$name18 = $name; - $this.$planName = $planName; -}, -oncia_AllGraphAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_AllGraphAction$_MODULE$ = null, -oncia_AllGraphAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_AllGraphAction$; - oncia_GraphAction__init_(var$1, $rt_s(5268), $rt_s(5269)); - oncia_AllGraphAction$_MODULE$ = var$1; -}, -oncia_AllGraphAction$_productArity = $this => { - return 0; -}, -oncia_AllGraphAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllGraphAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllGraphAction$_hashCode = $this => { - return (-566700829); -}, -oncia_AllGraphAction$_toString = $this => { - return $rt_s(5270); -}, -oncia_WriteAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_WriteAction$_MODULE$ = null, -oncia_WriteAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_WriteAction$; - oncia_GraphAction__init_(var$1, $rt_s(33), $rt_s(5271)); - oncia_WriteAction$_MODULE$ = var$1; -}, -oncia_WriteAction$_productArity = $this => { - return 0; -}, -oncia_WriteAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_WriteAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_WriteAction$_hashCode = $this => { - return (-1745828139); -}, -oncia_WriteAction$_toString = $this => { - return $rt_s(5272); -}, -oncia_CreateElementAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_CreateElementAction$_MODULE$ = null, -oncia_CreateElementAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateElementAction$; - oncia_GraphAction__init_(var$1, $rt_s(5070), $rt_s(5273)); - oncia_CreateElementAction$_MODULE$ = var$1; -}, -oncia_CreateElementAction$_productArity = $this => { - return 0; -}, -oncia_CreateElementAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CreateElementAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CreateElementAction$_hashCode = $this => { - return 1412377750; -}, -oncia_CreateElementAction$_toString = $this => { - return $rt_s(5274); -}, -oncia_MergeAdminAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_MergeAdminAction$_MODULE$ = null, -oncia_MergeAdminAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_MergeAdminAction$; - oncia_GraphAction__init_(var$1, $rt_s(4382), $rt_s(5120)); - oncia_MergeAdminAction$_MODULE$ = var$1; -}, -oncia_MergeAdminAction$_productArity = $this => { - return 0; -}, -oncia_MergeAdminAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_MergeAdminAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_MergeAdminAction$_hashCode = $this => { - return 130313005; -}, -oncia_MergeAdminAction$_toString = $this => { - return $rt_s(5275); -}, -oncia_DeleteElementAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_DeleteElementAction$_MODULE$ = null, -oncia_DeleteElementAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_DeleteElementAction$; - oncia_GraphAction__init_(var$1, $rt_s(5083), $rt_s(5276)); - oncia_DeleteElementAction$_MODULE$ = var$1; -}, -oncia_DeleteElementAction$_productArity = $this => { - return 0; -}, -oncia_DeleteElementAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DeleteElementAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DeleteElementAction$_hashCode = $this => { - return (-513958841); -}, -oncia_DeleteElementAction$_toString = $this => { - return $rt_s(5277); -}, -oncia_SetLabelAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_SetLabelAction$_MODULE$ = null, -oncia_SetLabelAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_SetLabelAction$; - oncia_GraphAction__init_(var$1, $rt_s(577), $rt_s(5278)); - oncia_SetLabelAction$_MODULE$ = var$1; -}, -oncia_SetLabelAction$_productArity = $this => { - return 0; -}, -oncia_SetLabelAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SetLabelAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetLabelAction$_hashCode = $this => { - return 412117160; -}, -oncia_SetLabelAction$_toString = $this => { - return $rt_s(5279); -}; -let oncia_RemoveLabelAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_RemoveLabelAction$_MODULE$ = null, -oncia_RemoveLabelAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_RemoveLabelAction$; - oncia_GraphAction__init_(var$1, $rt_s(578), $rt_s(5280)); - oncia_RemoveLabelAction$_MODULE$ = var$1; -}, -oncia_RemoveLabelAction$_productArity = $this => { - return 0; -}, -oncia_RemoveLabelAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RemoveLabelAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveLabelAction$_hashCode = $this => { - return 1199511302; -}, -oncia_RemoveLabelAction$_toString = $this => { - return $rt_s(5281); -}, -oncia_SetPropertyAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_SetPropertyAction$_MODULE$ = null, -oncia_SetPropertyAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_SetPropertyAction$; - oncia_GraphAction__init_(var$1, $rt_s(5282), $rt_s(5283)); - oncia_SetPropertyAction$_MODULE$ = var$1; -}, -oncia_SetPropertyAction$_productArity = $this => { - return 0; -}, -oncia_SetPropertyAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SetPropertyAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetPropertyAction$_hashCode = $this => { - return 296372557; -}, -oncia_SetPropertyAction$_toString = $this => { - return $rt_s(5284); -}, -oncia_MatchAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_MatchAction$_MODULE$ = null, -oncia_MatchAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_MatchAction$; - oncia_GraphAction__init_(var$1, $rt_s(5092), $rt_s(5093)); - oncia_MatchAction$_MODULE$ = var$1; -}, -oncia_MatchAction$_productArity = $this => { - return 0; -}, -oncia_MatchAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_MatchAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_MatchAction$_hashCode = $this => { - return (-1513044933); -}, -oncia_MatchAction$_toString = $this => { - return $rt_s(5285); -}, -oncia_ReadAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_ReadAction$_MODULE$ = null, -oncia_ReadAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_ReadAction$; - oncia_GraphAction__init_(var$1, $rt_s(32), $rt_s(5286)); - oncia_ReadAction$_MODULE$ = var$1; -}, -oncia_ReadAction$_productArity = $this => { - return 0; -}, -oncia_ReadAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ReadAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ReadAction$_hashCode = $this => { - return 962303884; -}, -oncia_ReadAction$_toString = $this => { - return $rt_s(5287); -}, -oncia_TraverseAction$ = $rt_classWithoutFields(oncia_GraphAction), -oncia_TraverseAction$_MODULE$ = null, -oncia_TraverseAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_TraverseAction$; - oncia_GraphAction__init_(var$1, $rt_s(5288), $rt_s(5289)); - oncia_TraverseAction$_MODULE$ = var$1; -}, -oncia_TraverseAction$_productArity = $this => { - return 0; -}, -oncia_TraverseAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_TraverseAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_TraverseAction$_hashCode = $this => { - return 1138564712; -}, -oncia_TraverseAction$_toString = $this => { - return $rt_s(5290); -}; -function oncia_PrivilegeType() { - jl_Object.call(this); - this.$name37 = null; -} -let oncia_PrivilegeType_name = $this => { - return $this.$name37; -}, -oncia_PrivilegeType__init_ = ($this, $name) => { - $this.$name37 = $name; -}; -function oncia_DbmsPrivilege() { - let a = this; oncia_PrivilegeType.call(a); - a.$action3 = null; - a.$position317 = null; -} -let oncia_DbmsPrivilege_productPrefix = $this => { - return $rt_s(5291); -}, -oncia_DbmsPrivilege_productArity = $this => { - return 1; -}, -oncia_DbmsPrivilege_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$action3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DbmsPrivilege_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DbmsPrivilege_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DbmsPrivilege_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DbmsPrivilege_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DbmsPrivilege) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$action3; - $x$1 = $x$1.$action3; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_DbmsPrivilege__init_0 = ($this, $action, $position) => { - $this.$action3 = $action; - $this.$position317 = $position; - oncia_PrivilegeType__init_($this, $action.$name()); -}, -oncia_DbmsPrivilege__init_ = (var_0, var_1) => { - let var_2 = new oncia_DbmsPrivilege(); - oncia_DbmsPrivilege__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_DropDatabaseAlias() { - let a = this; jl_Object.call(a); - a.$aliasName8 = null; - a.$ifExists11 = 0; - a.$position188 = null; - a.$isReadOnly25 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar25 = null; -} -let oncia_DropDatabaseAlias_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_DropDatabaseAlias_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_DropDatabaseAlias_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_DropDatabaseAlias_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_DropDatabaseAlias_foldedOver = $this => { - return $this; -}, -oncia_DropDatabaseAlias_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly25 = $x$1; -}, -oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar25; -}, -oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar25 = $x$1; -}, -oncia_DropDatabaseAlias_aliasName = $this => { - return $this.$aliasName8; -}, -oncia_DropDatabaseAlias_ifExists = $this => { - return $this.$ifExists11; -}, -oncia_DropDatabaseAlias_position = $this => { - return $this.$position188; -}, -oncia_DropDatabaseAlias_name = $this => { - return $rt_s(5242); -}, -oncia_DropDatabaseAlias_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_DropDatabaseAlias_productPrefix = $this => { - return $rt_s(5292); -}, -oncia_DropDatabaseAlias_productArity = $this => { - return 2; -}, -oncia_DropDatabaseAlias_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$aliasName8; - case 1: - return jl_Boolean_valueOf($this.$ifExists11); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DropDatabaseAlias_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropDatabaseAlias_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5292))), sr_Statics_anyHash($this.$aliasName8)), !$this.$ifExists11 ? 1237 : 1231), 2); -}, -oncia_DropDatabaseAlias_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropDatabaseAlias_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DropDatabaseAlias) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists11 != $x$1.$ifExists11) - break b; - var$2 = $this.$aliasName8; - $x$1 = $x$1.$aliasName8; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_DropDatabaseAlias_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_DropDatabaseAlias_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropDatabaseAlias__init_ = ($this, $aliasName, $ifExists, $position) => { - $this.$aliasName8 = $aliasName; - $this.$ifExists11 = $ifExists; - $this.$position188 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_DropDatabaseAlias__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_DropDatabaseAlias(); - oncia_DropDatabaseAlias__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_DropDatabaseAdditionalAction() { - jl_Object.call(this); - this.$name54 = null; -} -let oncia_DropDatabaseAdditionalAction_name = $this => { - return $this.$name54; -}, -oncia_DropDatabaseAdditionalAction__init_ = ($this, $name) => { - $this.$name54 = $name; -}, -oncia_DestroyData$ = $rt_classWithoutFields(oncia_DropDatabaseAdditionalAction), -oncia_DestroyData$_MODULE$ = null, -oncia_DestroyData$__clinit_ = () => { - let var$1; - var$1 = new oncia_DestroyData$; - oncia_DropDatabaseAdditionalAction__init_(var$1, $rt_s(5293)); - oncia_DestroyData$_MODULE$ = var$1; -}, -oncia_DestroyData$_productArity = $this => { - return 0; -}, -oncia_DestroyData$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DestroyData$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DestroyData$_hashCode = $this => { - return (-315023708); -}, -oncia_DestroyData$_toString = $this => { - return $rt_s(5294); -}, -oncia_DumpData$ = $rt_classWithoutFields(oncia_DropDatabaseAdditionalAction), -oncia_DumpData$_MODULE$ = null, -oncia_DumpData$__clinit_ = () => { - let var$1; - var$1 = new oncia_DumpData$; - oncia_DropDatabaseAdditionalAction__init_(var$1, $rt_s(5295)); - oncia_DumpData$_MODULE$ = var$1; -}, -oncia_DumpData$_productArity = $this => { - return 0; -}, -oncia_DumpData$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DumpData$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DumpData$_hashCode = $this => { - return (-2058098722); -}, -oncia_DumpData$_toString = $this => { - return $rt_s(5296); -}; -function oncia_DropDatabaseAliasAction() { - jl_Object.call(this); - this.$name55 = null; -} -let oncia_DropDatabaseAliasAction_name = $this => { - return $this.$name55; -}, -oncia_DropDatabaseAliasAction__init_ = ($this, $name) => { - $this.$name55 = $name; -}, -oncia_Restrict$ = $rt_classWithoutFields(oncia_DropDatabaseAliasAction), -oncia_Restrict$_MODULE$ = null, -oncia_Restrict$__clinit_ = () => { - let var$1; - var$1 = new oncia_Restrict$; - oncia_DropDatabaseAliasAction__init_(var$1, $rt_s(5297)); - oncia_Restrict$_MODULE$ = var$1; -}, -oncia_Restrict$_productArity = $this => { - return 0; -}, -oncia_Restrict$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_Restrict$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Restrict$_hashCode = $this => { - return (-271900964); -}, -oncia_Restrict$_toString = $this => { - return $rt_s(5298); -}, -oncia_CascadeAliases$ = $rt_classWithoutFields(oncia_DropDatabaseAliasAction), -oncia_CascadeAliases$_MODULE$ = null, -oncia_CascadeAliases$__clinit_ = () => { - let var$1; - var$1 = new oncia_CascadeAliases$; - oncia_DropDatabaseAliasAction__init_(var$1, $rt_s(5299)); - oncia_CascadeAliases$_MODULE$ = var$1; -}, -oncia_CascadeAliases$_productArity = $this => { - return 0; -}, -oncia_CascadeAliases$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_CascadeAliases$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CascadeAliases$_hashCode = $this => { - return 688617930; -}, -oncia_CascadeAliases$_toString = $this => { - return $rt_s(5300); -}; -function oncia_DropDatabase() { - let a = this; jl_Object.call(a); - a.$dbName2 = null; - a.$ifExists3 = 0; - a.$composite = 0; - a.$aliasAction2 = null; - a.$additionalAction0 = null; - a.$waitUntilComplete0 = null; - a.$position301 = null; - a.$isReadOnly9 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar11 = null; -} -let oncia_DropDatabase_returnColumns = $this => { - return oncia_WaitableAdministrationCommand_returnColumns$($this); -}, -oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_DropDatabase_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_DropDatabase_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_DropDatabase_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_DropDatabase_foldedOver = $this => { - return $this; -}, -oncia_DropDatabase_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_DropDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly9 = $x$1; -}, -oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar11; -}, -oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar11 = $x$1; -}, -oncia_DropDatabase_dbName = $this => { - return $this.$dbName2; -}, -oncia_DropDatabase_ifExists = $this => { - return $this.$ifExists3; -}, -oncia_DropDatabase_aliasAction = $this => { - return $this.$aliasAction2; -}, -oncia_DropDatabase_additionalAction = $this => { - return $this.$additionalAction0; -}, -oncia_DropDatabase_waitUntilComplete = $this => { - return $this.$waitUntilComplete0; -}, -oncia_DropDatabase_position = $this => { - return $this.$position301; -}, -oncia_DropDatabase_name = $this => { - if (!$this.$composite) - return $rt_s(5229); - return $rt_s(5234); -}, -oncia_DropDatabase_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_DropDatabase_productPrefix = $this => { - return $rt_s(5301); -}, -oncia_DropDatabase_productArity = $this => { - return 6; -}, -oncia_DropDatabase_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$dbName2; - case 1: - return jl_Boolean_valueOf($this.$ifExists3); - case 2: - return jl_Boolean_valueOf($this.$composite); - case 3: - return $this.$aliasAction2; - case 4: - return $this.$additionalAction0; - case 5: - return $this.$waitUntilComplete0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DropDatabase_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropDatabase_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5301))), sr_Statics_anyHash($this.$dbName2)), !$this.$ifExists3 ? 1237 : 1231), !$this.$composite ? 1237 : 1231), sr_Statics_anyHash($this.$aliasAction2)), sr_Statics_anyHash($this.$additionalAction0)), sr_Statics_anyHash($this.$waitUntilComplete0)), 6); -}, -oncia_DropDatabase_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropDatabase_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DropDatabase) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists3 != $x$1.$ifExists3) - break b; - if ($this.$composite != $x$1.$composite) - break b; - d: { - var$2 = $this.$dbName2; - var$3 = $x$1.$dbName2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$aliasAction2; - var$3 = $x$1.$aliasAction2; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$additionalAction0; - var$3 = $x$1.$additionalAction0; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$waitUntilComplete0; - $x$1 = $x$1.$waitUntilComplete0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_DropDatabase_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_DropDatabase_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropDatabase__init_0 = ($this, $dbName, $ifExists, $composite, $aliasAction, $additionalAction, $waitUntilComplete, $position) => { - $this.$dbName2 = $dbName; - $this.$ifExists3 = $ifExists; - $this.$composite = $composite; - $this.$aliasAction2 = $aliasAction; - $this.$additionalAction0 = $additionalAction; - $this.$waitUntilComplete0 = $waitUntilComplete; - $this.$position301 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_DropDatabase__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_DropDatabase(); - oncia_DropDatabase__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}, -oncia_SchemaCommand = $rt_classWithoutFields(0), -oncia_SchemaCommand_returnColumns$ = $$this => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; -}, -oncia_SchemaCommand_checkOptionsMap$ = ($$this, $schemaString, $options) => { - let var$4, var$5; - a: { - if ($options instanceof oncia_OptionsMap) { - $options = sc_AbstractMap_view($options.$map17); - var$4 = new oncia_SchemaCommand$checkOptionsMap$lambda$_6_0; - var$5 = new sc_MapView$FilterKeys; - var$5.$underlying24 = $options; - var$5.$p4 = var$4; - jl_Object__init_(var$5); - if (sc_IterableOnceOps_nonEmpty$(var$5)) { - $options = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($options); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($options, $rt_s(5302)), $schemaString), $rt_s(5303)); - $$this = $$this.$error2(jl_AbstractStringBuilder_toString($options), $$this.$position()); - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - return $$this; -}; -function oncia_DropConstraintOnName() { - let a = this; jl_Object.call(a); - a.$name26 = null; - a.$ifExists5 = 0; - a.$useGraph3 = null; - a.$position141 = null; -} -let oncia_DropConstraintOnName_returnColumns = $this => { - return oncia_SchemaCommand_returnColumns$($this); -}, -oncia_DropConstraintOnName_foldedOver = $this => { - return $this; -}, -oncia_DropConstraintOnName_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_DropConstraintOnName_position = $this => { - return $this.$position141; -}, -oncia_DropConstraintOnName_semanticCheck = $this => { - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, sci_Nil$_MODULE$); -}, -oncia_DropConstraintOnName_copy = ($this, $name, $ifExists, $useGraph, $position) => { - return oncia_DropConstraintOnName__init_($name, $ifExists, $useGraph, $position); -}, -oncia_DropConstraintOnName_productPrefix = $this => { - return $rt_s(5304); -}, -oncia_DropConstraintOnName_productArity = $this => { - return 3; -}, -oncia_DropConstraintOnName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name26; - case 1: - return jl_Boolean_valueOf($this.$ifExists5); - case 2: - return $this.$useGraph3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DropConstraintOnName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropConstraintOnName_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5304))), sr_Statics_anyHash($this.$name26)), !$this.$ifExists5 ? 1237 : 1231), sr_Statics_anyHash($this.$useGraph3)), 3); -}, -oncia_DropConstraintOnName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropConstraintOnName_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DropConstraintOnName) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists5 != $x$1.$ifExists5) - break b; - c: { - var$2 = $this.$name26; - var$3 = $x$1.$name26; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$useGraph3; - $x$1 = $x$1.$useGraph3; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_DropConstraintOnName)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_DropConstraintOnName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_DropConstraintOnName_withGraph = ($this, $useGraph) => { - return oncia_DropConstraintOnName_copy($this, $this.$name26, $this.$ifExists5, $useGraph, $this.$position141); -}, -oncia_DropConstraintOnName__init_0 = ($this, $name, $ifExists, $useGraph, $position) => { - $this.$name26 = $name; - $this.$ifExists5 = $ifExists; - $this.$useGraph3 = $useGraph; - $this.$position141 = $position; -}, -oncia_DropConstraintOnName__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_DropConstraintOnName(); - oncia_DropConstraintOnName__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -onciafn_Neo4jASTFactory$dropConstraint$lambda$_163_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$dropConstraint$lambda$_163_0_apply = (var$0, var$1) => { - return var$1.$string; -}, -oncia_DropConstraintOnName$ = $rt_classWithoutFields(), -oncia_DropConstraintOnName$_MODULE$ = null, -oncia_DropConstraintOnName$__clinit_ = () => { - oncia_DropConstraintOnName$_MODULE$ = new oncia_DropConstraintOnName$; -}; -function oncia_DropIndexOnName() { - let a = this; jl_Object.call(a); - a.$name27 = null; - a.$ifExists2 = 0; - a.$useGraph2 = null; - a.$position167 = null; -} -let oncia_DropIndexOnName_returnColumns = $this => { - return oncia_SchemaCommand_returnColumns$($this); -}, -oncia_DropIndexOnName_foldedOver = $this => { - return $this; -}, -oncia_DropIndexOnName_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_DropIndexOnName_position = $this => { - return $this.$position167; -}, -oncia_DropIndexOnName_semanticCheck = $this => { - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, sci_Nil$_MODULE$); -}, -oncia_DropIndexOnName_copy = ($this, $name, $ifExists, $useGraph, $position) => { - return oncia_DropIndexOnName__init_0($name, $ifExists, $useGraph, $position); -}, -oncia_DropIndexOnName_productPrefix = $this => { - return $rt_s(5305); -}, -oncia_DropIndexOnName_productArity = $this => { - return 3; -}, -oncia_DropIndexOnName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name27; - case 1: - return jl_Boolean_valueOf($this.$ifExists2); - case 2: - return $this.$useGraph2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DropIndexOnName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropIndexOnName_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5305))), sr_Statics_anyHash($this.$name27)), !$this.$ifExists2 ? 1237 : 1231), sr_Statics_anyHash($this.$useGraph2)), 3); -}, -oncia_DropIndexOnName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropIndexOnName_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DropIndexOnName) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists2 != $x$1.$ifExists2) - break b; - c: { - var$2 = $this.$name27; - var$3 = $x$1.$name27; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$useGraph2; - $x$1 = $x$1.$useGraph2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_DropIndexOnName)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_DropIndexOnName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_DropIndexOnName_withGraph = ($this, $useGraph) => { - return oncia_DropIndexOnName_copy($this, $this.$name27, $this.$ifExists2, $useGraph, $this.$position167); -}, -oncia_DropIndexOnName__init_ = ($this, $name, $ifExists, $useGraph, $position) => { - $this.$name27 = $name; - $this.$ifExists2 = $ifExists; - $this.$useGraph2 = $useGraph; - $this.$position167 = $position; -}, -oncia_DropIndexOnName__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_DropIndexOnName(); - oncia_DropIndexOnName__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -onciafn_Neo4jASTFactory$dropIndex$lambda$_170_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$dropIndex$lambda$_170_0_apply = (var$0, var$1) => { - return var$1.$string; -}, -oncia_DropIndexOnName$ = $rt_classWithoutFields(), -oncia_DropIndexOnName$_MODULE$ = null, -oncia_DropIndexOnName$__clinit_ = () => { - oncia_DropIndexOnName$_MODULE$ = new oncia_DropIndexOnName$; -}; -function oncia_DropRole() { - let a = this; jl_Object.call(a); - a.$roleName1 = null; - a.$ifExists10 = 0; - a.$position230 = null; - a.$isReadOnly2 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar15 = null; -} -let oncia_DropRole_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_DropRole_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_DropRole_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropRole_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_DropRole_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_DropRole_foldedOver = $this => { - return $this; -}, -oncia_DropRole_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_DropRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly2 = $x$1; -}, -oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar15; -}, -oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar15 = $x$1; -}, -oncia_DropRole_roleName = $this => { - return $this.$roleName1; -}, -oncia_DropRole_ifExists = $this => { - return $this.$ifExists10; -}, -oncia_DropRole_position = $this => { - return $this.$position230; -}, -oncia_DropRole_name = $this => { - return $rt_s(5218); -}, -oncia_DropRole_semanticCheck = $this => { - let var$1, var$2; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncia_AdministrationCommand$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4841), $this.$roleName1)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_DropRole_productPrefix = $this => { - return $rt_s(5306); -}, -oncia_DropRole_productArity = $this => { - return 2; -}, -oncia_DropRole_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$roleName1; - case 1: - return jl_Boolean_valueOf($this.$ifExists10); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DropRole_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropRole_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5306))), sr_Statics_anyHash($this.$roleName1)), !$this.$ifExists10 ? 1237 : 1231), 2); -}, -oncia_DropRole_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropRole_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DropRole) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists10 != $x$1.$ifExists10) - break b; - var$2 = $this.$roleName1; - $x$1 = $x$1.$roleName1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_DropRole_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_DropRole_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropRole__init_ = ($this, $roleName, $ifExists, $position) => { - $this.$roleName1 = $roleName; - $this.$ifExists10 = $ifExists; - $this.$position230 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_DropRole__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_DropRole(); - oncia_DropRole__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_DropServer() { - let a = this; jl_Object.call(a); - a.$serverName0 = null; - a.$position252 = null; - a.$isReadOnly3 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar3 = null; -} -let oncia_DropServer_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_DropServer_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_DropServer_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropServer_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_DropServer_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_DropServer_foldedOver = $this => { - return $this; -}, -oncia_DropServer_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_DropServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly3 = $x$1; -}, -oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar3; -}, -oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar3 = $x$1; -}, -oncia_DropServer_serverName = $this => { - return $this.$serverName0; -}, -oncia_DropServer_position = $this => { - return $this.$position252; -}, -oncia_DropServer_name = $this => { - return $rt_s(5307); -}, -oncia_DropServer_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_DropServer_productPrefix = $this => { - return $rt_s(5308); -}, -oncia_DropServer_productArity = $this => { - return 1; -}, -oncia_DropServer_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$serverName0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DropServer_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropServer_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropServer_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropServer_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DropServer) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$serverName0; - $x$1 = $x$1.$serverName0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_DropServer_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_DropServer_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropServer__init_ = ($this, $serverName, $position) => { - $this.$serverName0 = $serverName; - $this.$position252 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_DropServer__init_0 = (var_0, var_1) => { - let var_2 = new oncia_DropServer(); - oncia_DropServer__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_DropUser() { - let a = this; jl_Object.call(a); - a.$userName0 = null; - a.$ifExists6 = 0; - a.$position261 = null; - a.$isReadOnly30 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar20 = null; -} -let oncia_DropUser_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_DropUser_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_DropUser_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_DropUser_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_DropUser_foldedOver = $this => { - return $this; -}, -oncia_DropUser_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_DropUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly30 = $x$1; -}, -oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar20; -}, -oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar20 = $x$1; -}, -oncia_DropUser_userName = $this => { - return $this.$userName0; -}, -oncia_DropUser_ifExists = $this => { - return $this.$ifExists6; -}, -oncia_DropUser_position = $this => { - return $this.$position261; -}, -oncia_DropUser_name = $this => { - return $rt_s(5199); -}, -oncia_DropUser_semanticCheck = $this => { - let var$1, var$2; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncia_AdministrationCommand$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4811), $this.$userName0)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_DropUser_productPrefix = $this => { - return $rt_s(5309); -}, -oncia_DropUser_productArity = $this => { - return 2; -}, -oncia_DropUser_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$userName0; - case 1: - return jl_Boolean_valueOf($this.$ifExists6); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DropUser_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropUser_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5309))), sr_Statics_anyHash($this.$userName0)), !$this.$ifExists6 ? 1237 : 1231), 2); -}, -oncia_DropUser_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DropUser_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DropUser) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists6 != $x$1.$ifExists6) - break b; - var$2 = $this.$userName0; - $x$1 = $x$1.$userName0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_DropUser_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_DropUser_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_DropUser__init_ = ($this, $userName, $ifExists, $position) => { - $this.$userName0 = $userName; - $this.$ifExists6 = $ifExists; - $this.$position261 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_DropUser__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_DropUser(); - oncia_DropUser__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_GrantPrivilege() { - let a = this; oncia_PrivilegeCommand.call(a); - a.$privilege5 = null; - a.$immutable0 = 0; - a.$resource0 = null; - a.$qualifier3 = null; - a.$roleNames2 = null; - a.$position193 = null; -} -let oncia_GrantPrivilege_privilege = $this => { - return $this.$privilege5; -}, -oncia_GrantPrivilege_resource = $this => { - return $this.$resource0; -}, -oncia_GrantPrivilege_qualifier = $this => { - return $this.$qualifier3; -}, -oncia_GrantPrivilege_roleNames = $this => { - return $this.$roleNames2; -}, -oncia_GrantPrivilege_position = $this => { - return $this.$position193; -}, -oncia_GrantPrivilege_name = $this => { - let var$1, var$2, var$3; - var$1 = oncia_PrivilegeCommand_immutableKeywordOrEmptyString($this, $this.$immutable0); - var$2 = $this.$privilege5.$name37; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$1 = jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5310)), var$1); - jl_AbstractStringBuilder_append0(var$1, 32); - jl_StringBuilder_append(var$1, var$2); - return jl_AbstractStringBuilder_toString(var$3); -}, -oncia_GrantPrivilege_semanticCheck = $this => { - return oncias_SemanticCheck_chain$(oncia_PrivilegeCommand_semanticCheck($this), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$roleNames2, new oncia_GrantPrivilege$semanticCheck$lambda$_14_0)); -}, -oncia_GrantPrivilege_productPrefix = $this => { - return $rt_s(5311); -}, -oncia_GrantPrivilege_productArity = $this => { - return 5; -}, -oncia_GrantPrivilege_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$privilege5; - case 1: - return jl_Boolean_valueOf($this.$immutable0); - case 2: - return $this.$resource0; - case 3: - return $this.$qualifier3; - case 4: - return $this.$roleNames2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_GrantPrivilege_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GrantPrivilege_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5311))), sr_Statics_anyHash($this.$privilege5)), !$this.$immutable0 ? 1237 : 1231), sr_Statics_anyHash($this.$resource0)), sr_Statics_anyHash($this.$qualifier3)), sr_Statics_anyHash($this.$roleNames2)), 5); -}, -oncia_GrantPrivilege_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GrantPrivilege_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_GrantPrivilege) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$immutable0 != $x$1.$immutable0) - break b; - d: { - var$2 = $this.$privilege5; - var$3 = $x$1.$privilege5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$resource0; - var$3 = $x$1.$resource0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$qualifier3; - var$3 = $x$1.$qualifier3; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$roleNames2; - $x$1 = $x$1.$roleNames2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_GrantPrivilege__init_0 = ($this, $privilege, $immutable, $resource, $qualifier, $roleNames, $position) => { - $this.$privilege5 = $privilege; - $this.$immutable0 = $immutable; - $this.$resource0 = $resource; - $this.$qualifier3 = $qualifier; - $this.$roleNames2 = $roleNames; - $this.$position193 = $position; - oncia_PrivilegeCommand__init_($this, $privilege, $qualifier, $position); -}, -oncia_GrantPrivilege__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_GrantPrivilege(); - oncia_GrantPrivilege__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}; -function onciafn_Neo4jASTFactory$grantPrivilege$lambda$_195_0() { - jl_Object.call(this); - this.$_0394 = null; -} -let onciafn_Neo4jASTFactory$grantPrivilege$lambda$_195_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0394; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function oncia_GrantRolesToUsers() { - let a = this; jl_Object.call(a); - a.$roleNames4 = null; - a.$userNames3 = null; - a.$position245 = null; - a.$isReadOnly = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar27 = null; -} -let oncia_GrantRolesToUsers_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_GrantRolesToUsers_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_GrantRolesToUsers_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_GrantRolesToUsers_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_GrantRolesToUsers_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_GrantRolesToUsers_foldedOver = $this => { - return $this; -}, -oncia_GrantRolesToUsers_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly = $x$1; -}, -oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar27; -}, -oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar27 = $x$1; -}, -oncia_GrantRolesToUsers_roleNames = $this => { - return $this.$roleNames4; -}, -oncia_GrantRolesToUsers_userNames = $this => { - return $this.$userNames3; -}, -oncia_GrantRolesToUsers_position = $this => { - return $this.$position245; -}, -oncia_GrantRolesToUsers_name = $this => { - return $rt_s(5312); -}, -oncia_GrantRolesToUsers_semanticCheck = $this => { - let var$1; - var$1 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncia_AdministrationCommand_semanticCheck$($this), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$roleNames4, new oncia_GrantRolesToUsers$semanticCheck$lambda$_65_0)), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$userNames3, new oncia_GrantRolesToUsers$semanticCheck$lambda$_65_1)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_GrantRolesToUsers_productPrefix = $this => { - return $rt_s(5313); -}, -oncia_GrantRolesToUsers_productArity = $this => { - return 2; -}, -oncia_GrantRolesToUsers_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$roleNames4; - case 1: - return $this.$userNames3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_GrantRolesToUsers_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GrantRolesToUsers_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GrantRolesToUsers_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GrantRolesToUsers_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_GrantRolesToUsers) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$roleNames4; - var$3 = $x$1.$roleNames4; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$userNames3; - $x$1 = $x$1.$userNames3; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_GrantRolesToUsers_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_GrantRolesToUsers_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_GrantRolesToUsers__init_0 = ($this, $roleNames, $userNames, $position) => { - $this.$roleNames4 = $roleNames; - $this.$userNames3 = $userNames; - $this.$position245 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_GrantRolesToUsers__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_GrantRolesToUsers(); - oncia_GrantRolesToUsers__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function onciafn_Neo4jASTFactory$grantRoles$lambda$_175_0() { - jl_Object.call(this); - this.$_0611 = null; -} -let onciafn_Neo4jASTFactory$grantRoles$lambda$_175_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0611; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function onciafn_Neo4jASTFactory$grantRoles$lambda$_175_1() { - jl_Object.call(this); - this.$_091 = null; -} -let onciafn_Neo4jASTFactory$grantRoles$lambda$_175_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_091; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function oncia_RenameRole() { - let a = this; jl_Object.call(a); - a.$fromRoleName0 = null; - a.$toRoleName0 = null; - a.$ifExists0 = 0; - a.$position240 = null; - a.$isReadOnly0 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar36 = null; -} -let oncia_RenameRole_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_RenameRole_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_RenameRole_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_RenameRole_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_RenameRole_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_RenameRole_foldedOver = $this => { - return $this; -}, -oncia_RenameRole_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_RenameRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly0 = $x$1; -}, -oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar36; -}, -oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar36 = $x$1; -}, -oncia_RenameRole_fromRoleName = $this => { - return $this.$fromRoleName0; -}, -oncia_RenameRole_toRoleName = $this => { - return $this.$toRoleName0; -}, -oncia_RenameRole_ifExists = $this => { - return $this.$ifExists0; -}, -oncia_RenameRole_position = $this => { - return $this.$position240; -}, -oncia_RenameRole_name = $this => { - return $rt_s(5220); -}, -oncia_RenameRole_semanticCheck = $this => { - let var$1, var$2; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncia_AdministrationCommand$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5314), $this.$fromRoleName0)), oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5315), $this.$toRoleName0)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_RenameRole_productPrefix = $this => { - return $rt_s(5316); -}, -oncia_RenameRole_productArity = $this => { - return 3; -}, -oncia_RenameRole_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$fromRoleName0; - case 1: - return $this.$toRoleName0; - case 2: - return jl_Boolean_valueOf($this.$ifExists0); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RenameRole_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameRole_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5316))), sr_Statics_anyHash($this.$fromRoleName0)), sr_Statics_anyHash($this.$toRoleName0)), !$this.$ifExists0 ? 1237 : 1231), 3); -}, -oncia_RenameRole_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameRole_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RenameRole) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists0 != $x$1.$ifExists0) - break b; - d: { - var$2 = $this.$fromRoleName0; - var$3 = $x$1.$fromRoleName0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$toRoleName0; - $x$1 = $x$1.$toRoleName0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_RenameRole_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_RenameRole_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_RenameRole__init_ = ($this, $fromRoleName, $toRoleName, $ifExists, $position) => { - $this.$fromRoleName0 = $fromRoleName; - $this.$toRoleName0 = $toRoleName; - $this.$ifExists0 = $ifExists; - $this.$position240 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_RenameRole__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_RenameRole(); - oncia_RenameRole__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncia_RenameServer() { - let a = this; jl_Object.call(a); - a.$serverName3 = null; - a.$newName1 = null; - a.$position265 = null; - a.$isReadOnly32 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar23 = null; -} -let oncia_RenameServer_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_RenameServer_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_RenameServer_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_RenameServer_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_RenameServer_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_RenameServer_foldedOver = $this => { - return $this; -}, -oncia_RenameServer_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_RenameServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly32 = $x$1; -}, -oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar23; -}, -oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar23 = $x$1; -}, -oncia_RenameServer_serverName = $this => { - return $this.$serverName3; -}, -oncia_RenameServer_newName = $this => { - return $this.$newName1; -}, -oncia_RenameServer_position = $this => { - return $this.$position265; -}, -oncia_RenameServer_name = $this => { - return $rt_s(5317); -}, -oncia_RenameServer_semanticCheck = $this => { - let var$1; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_RenameServer_productPrefix = $this => { - return $rt_s(5318); -}, -oncia_RenameServer_productArity = $this => { - return 2; -}, -oncia_RenameServer_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$serverName3; - case 1: - return $this.$newName1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RenameServer_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameServer_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameServer_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameServer_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RenameServer) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$serverName3; - var$3 = $x$1.$serverName3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$newName1; - $x$1 = $x$1.$newName1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_RenameServer_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_RenameServer_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_RenameServer__init_ = ($this, $serverName, $newName, $position) => { - $this.$serverName3 = $serverName; - $this.$newName1 = $newName; - $this.$position265 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_RenameServer__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_RenameServer(); - oncia_RenameServer__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_RenameUser() { - let a = this; jl_Object.call(a); - a.$fromUserName0 = null; - a.$toUserName0 = null; - a.$ifExists8 = 0; - a.$position196 = null; - a.$isReadOnly20 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar9 = null; -} -let oncia_RenameUser_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_RenameUser_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_RenameUser_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_RenameUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_RenameUser_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_RenameUser_foldedOver = $this => { - return $this; -}, -oncia_RenameUser_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_RenameUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly20 = $x$1; -}, -oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar9; -}, -oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar9 = $x$1; -}, -oncia_RenameUser_fromUserName = $this => { - return $this.$fromUserName0; -}, -oncia_RenameUser_toUserName = $this => { - return $this.$toUserName0; -}, -oncia_RenameUser_ifExists = $this => { - return $this.$ifExists8; -}, -oncia_RenameUser_position = $this => { - return $this.$position196; -}, -oncia_RenameUser_name = $this => { - return $rt_s(5201); -}, -oncia_RenameUser_semanticCheck = $this => { - let var$1, var$2; - var$1 = oncia_AdministrationCommand_semanticCheck$($this); - oncia_AdministrationCommand$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5319), $this.$fromUserName0)), oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5320), $this.$toUserName0)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_RenameUser_productPrefix = $this => { - return $rt_s(5321); -}, -oncia_RenameUser_productArity = $this => { - return 3; -}, -oncia_RenameUser_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$fromUserName0; - case 1: - return $this.$toUserName0; - case 2: - return jl_Boolean_valueOf($this.$ifExists8); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RenameUser_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameUser_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5321))), sr_Statics_anyHash($this.$fromUserName0)), sr_Statics_anyHash($this.$toUserName0)), !$this.$ifExists8 ? 1237 : 1231), 3); -}, -oncia_RenameUser_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RenameUser_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RenameUser) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$ifExists8 != $x$1.$ifExists8) - break b; - d: { - var$2 = $this.$fromUserName0; - var$3 = $x$1.$fromUserName0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$toUserName0; - $x$1 = $x$1.$toUserName0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_RenameUser_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_RenameUser_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_RenameUser__init_ = ($this, $fromUserName, $toUserName, $ifExists, $position) => { - $this.$fromUserName0 = $fromUserName; - $this.$toUserName0 = $toUserName; - $this.$ifExists8 = $ifExists; - $this.$position196 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_RenameUser__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_RenameUser(); - oncia_RenameUser__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function s_Tuple2$mcZZ$sp() { - let a = this; s_Tuple2.call(a); - a.$_1$mcZ$sp0 = 0; - a.$_2$mcZ$sp0 = 0; -} -let s_Tuple2$mcZZ$sp__1$mcZ$sp = $this => { - return $this.$_1$mcZ$sp0; -}, -s_Tuple2$mcZZ$sp__2$mcZ$sp = $this => { - return $this.$_2$mcZ$sp0; -}, -s_Tuple2$mcZZ$sp__2 = $this => { - return jl_Boolean_valueOf($this.$_2$mcZ$sp0); -}, -s_Tuple2$mcZZ$sp__1 = $this => { - return jl_Boolean_valueOf($this.$_1$mcZ$sp0); -}, -s_Tuple2$mcZZ$sp__init_0 = ($this, $_1$mcZ$sp, $_2$mcZ$sp) => { - $this.$_1$mcZ$sp0 = $_1$mcZ$sp; - $this.$_2$mcZ$sp0 = $_2$mcZ$sp; - s_Tuple2__init_0($this, null, null); -}, -s_Tuple2$mcZZ$sp__init_ = (var_0, var_1) => { - let var_2 = new s_Tuple2$mcZZ$sp(); - s_Tuple2$mcZZ$sp__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_RevokePrivilege() { - let a = this; oncia_PrivilegeCommand.call(a); - a.$privilege3 = null; - a.$immutableOnly = 0; - a.$resource3 = null; - a.$qualifier0 = null; - a.$roleNames3 = null; - a.$revokeType = null; - a.$position182 = null; -} -let oncia_RevokePrivilege_privilege = $this => { - return $this.$privilege3; -}, -oncia_RevokePrivilege_resource = $this => { - return $this.$resource3; -}, -oncia_RevokePrivilege_qualifier = $this => { - return $this.$qualifier0; -}, -oncia_RevokePrivilege_roleNames = $this => { - return $this.$roleNames3; -}, -oncia_RevokePrivilege_position = $this => { - return $this.$position182; -}, -oncia_RevokePrivilege_name = $this => { - let $revokeTypeOrEmptyString, var$2, var$3, var$4; - $revokeTypeOrEmptyString = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - if (!sc_StringOps$_nonEmpty$extension($revokeTypeOrEmptyString, $this.$revokeType.$name41)) - $revokeTypeOrEmptyString = $rt_s(4); - else { - var$2 = $this.$revokeType.$name41; - $revokeTypeOrEmptyString = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($revokeTypeOrEmptyString); - jl_AbstractStringBuilder_append0($revokeTypeOrEmptyString, 32); - jl_StringBuilder_append($revokeTypeOrEmptyString, var$2); - $revokeTypeOrEmptyString = jl_AbstractStringBuilder_toString($revokeTypeOrEmptyString); - } - var$2 = oncia_PrivilegeCommand_immutableKeywordOrEmptyString($this, $this.$immutableOnly); - var$3 = $this.$privilege3.$name37; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - $revokeTypeOrEmptyString = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5322)), $revokeTypeOrEmptyString), var$2); - jl_AbstractStringBuilder_append0($revokeTypeOrEmptyString, 32); - jl_StringBuilder_append($revokeTypeOrEmptyString, var$3); - return jl_AbstractStringBuilder_toString(var$4); -}, -oncia_RevokePrivilege_semanticCheck = $this => { - let var$1, var$2, var$3; - var$1 = s_Tuple2__init_($this.$privilege3, $this.$revokeType); - var$2 = var$1.$_10; - var$1 = var$1.$_20; - if (var$2 instanceof oncia_GraphPrivilege) { - var$3 = var$2.$action0; - if (jl_Object_equals(oncia_MergeAdminAction$_MODULE$, var$3) && var$1 instanceof oncia_RevokeDenyType) - return oncias_SemanticAnalysisTooling_error$($this, $rt_s(4894), $this.$position182); - } - return oncias_SemanticCheck_chain$(oncia_PrivilegeCommand_semanticCheck($this), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$roleNames3, new oncia_RevokePrivilege$semanticCheck$lambda$_15_0)); -}, -oncia_RevokePrivilege_productPrefix = $this => { - return $rt_s(5323); -}, -oncia_RevokePrivilege_productArity = $this => { - return 6; -}, -oncia_RevokePrivilege_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$privilege3; - case 1: - return jl_Boolean_valueOf($this.$immutableOnly); - case 2: - return $this.$resource3; - case 3: - return $this.$qualifier0; - case 4: - return $this.$roleNames3; - case 5: - return $this.$revokeType; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RevokePrivilege_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokePrivilege_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5323))), sr_Statics_anyHash($this.$privilege3)), !$this.$immutableOnly ? 1237 : 1231), sr_Statics_anyHash($this.$resource3)), sr_Statics_anyHash($this.$qualifier0)), sr_Statics_anyHash($this.$roleNames3)), sr_Statics_anyHash($this.$revokeType)), 6); -}, -oncia_RevokePrivilege_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokePrivilege_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RevokePrivilege) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$immutableOnly != $x$1.$immutableOnly) - break b; - d: { - var$2 = $this.$privilege3; - var$3 = $x$1.$privilege3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$resource3; - var$3 = $x$1.$resource3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$qualifier0; - var$3 = $x$1.$qualifier0; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$roleNames3; - var$3 = $x$1.$roleNames3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$revokeType; - $x$1 = $x$1.$revokeType; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_RevokePrivilege__init_ = ($this, $privilege, $immutableOnly, $resource, $qualifier, $roleNames, $revokeType, $position) => { - $this.$privilege3 = $privilege; - $this.$immutableOnly = $immutableOnly; - $this.$resource3 = $resource; - $this.$qualifier0 = $qualifier; - $this.$roleNames3 = $roleNames; - $this.$revokeType = $revokeType; - $this.$position182 = $position; - oncia_PrivilegeCommand__init_($this, $privilege, $qualifier, $position); -}, -oncia_RevokePrivilege__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_RevokePrivilege(); - oncia_RevokePrivilege__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}; -function onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_0() { - jl_Object.call(this); - this.$_0621 = null; -} -let onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0621; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function oncia_RevokeType() { - let a = this; jl_Object.call(a); - a.$name41 = null; - a.$relType2 = null; -} -let oncia_RevokeType_name = $this => { - return $this.$name41; -}, -oncia_RevokeType__init_ = ($this, $name, $relType) => { - $this.$name41 = $name; - $this.$relType2 = $relType; -}; -function oncia_RevokeGrantType() { - oncia_RevokeType.call(this); - this.$position309 = null; -} -let oncia_RevokeGrantType_productPrefix = $this => { - return $rt_s(5324); -}, -oncia_RevokeGrantType_productArity = $this => { - return 0; -}, -oncia_RevokeGrantType_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RevokeGrantType_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeGrantType_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeGrantType_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeGrantType_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_RevokeGrantType)) - return 0; - return 1; -}, -oncia_RevokeGrantType__init_0 = ($this, $position) => { - $this.$position309 = $position; - oncia_RevokeType__init_($this, $rt_s(5310), $rt_s(5325)); -}, -oncia_RevokeGrantType__init_ = var_0 => { - let var_1 = new oncia_RevokeGrantType(); - oncia_RevokeGrantType__init_0(var_1, var_0); - return var_1; -}; -function onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_1() { - jl_Object.call(this); - this.$_099 = null; -} -let onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_099; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function oncia_RevokeDenyType() { - oncia_RevokeType.call(this); - this.$position316 = null; -} -let oncia_RevokeDenyType_productPrefix = $this => { - return $rt_s(5326); -}, -oncia_RevokeDenyType_productArity = $this => { - return 0; -}, -oncia_RevokeDenyType_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RevokeDenyType_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeDenyType_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeDenyType_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeDenyType_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_RevokeDenyType)) - return 0; - return 1; -}, -oncia_RevokeDenyType__init_0 = ($this, $position) => { - $this.$position316 = $position; - oncia_RevokeType__init_($this, $rt_s(4893), $rt_s(5327)); -}, -oncia_RevokeDenyType__init_ = var_0 => { - let var_1 = new oncia_RevokeDenyType(); - oncia_RevokeDenyType__init_0(var_1, var_0); - return var_1; -}; -function onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_2() { - jl_Object.call(this); - this.$_0742 = null; -} -let onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_2_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0742; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function oncia_RevokeBothType() { - oncia_RevokeType.call(this); - this.$position321 = null; -} -let oncia_RevokeBothType_productPrefix = $this => { - return $rt_s(5328); -}, -oncia_RevokeBothType_productArity = $this => { - return 0; -}, -oncia_RevokeBothType_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RevokeBothType_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeBothType_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeBothType_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeBothType_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_RevokeBothType)) - return 0; - return 1; -}, -oncia_RevokeBothType__init_0 = ($this, $position) => { - $this.$position321 = $position; - oncia_RevokeType__init_($this, $rt_s(4), $rt_s(4)); -}, -oncia_RevokeBothType__init_ = var_0 => { - let var_1 = new oncia_RevokeBothType(); - oncia_RevokeBothType__init_0(var_1, var_0); - return var_1; -}; -function oncia_RevokeRolesFromUsers() { - let a = this; jl_Object.call(a); - a.$roleNames6 = null; - a.$userNames2 = null; - a.$position191 = null; - a.$isReadOnly7 = 0; - a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar7 = null; -} -let oncia_RevokeRolesFromUsers_returnColumns = $this => { - return oncia_WriteAdministrationCommand_returnColumns$($this); -}, -oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_RevokeRolesFromUsers_useGraph = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); -}, -oncia_RevokeRolesFromUsers_withGraph = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_RevokeRolesFromUsers_requireFeatureSupport = ($this, $msg, $feature, $position) => { - return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); -}, -oncia_RevokeRolesFromUsers_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_RevokeRolesFromUsers_foldedOver = $this => { - return $this; -}, -oncia_RevokeRolesFromUsers_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { - $this.$isReadOnly7 = $x$1; -}, -oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { - return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar7; -}, -oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar7 = $x$1; -}, -oncia_RevokeRolesFromUsers_roleNames = $this => { - return $this.$roleNames6; -}, -oncia_RevokeRolesFromUsers_userNames = $this => { - return $this.$userNames2; -}, -oncia_RevokeRolesFromUsers_position = $this => { - return $this.$position191; -}, -oncia_RevokeRolesFromUsers_name = $this => { - return $rt_s(5329); -}, -oncia_RevokeRolesFromUsers_semanticCheck = $this => { - let var$1; - var$1 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncia_AdministrationCommand_semanticCheck$($this), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$roleNames6, new oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_0)), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$userNames2, new oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_1)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); -}, -oncia_RevokeRolesFromUsers_productPrefix = $this => { - return $rt_s(5330); -}, -oncia_RevokeRolesFromUsers_productArity = $this => { - return 2; -}, -oncia_RevokeRolesFromUsers_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$roleNames6; - case 1: - return $this.$userNames2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RevokeRolesFromUsers_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeRolesFromUsers_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeRolesFromUsers_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RevokeRolesFromUsers_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RevokeRolesFromUsers) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$roleNames6; - var$3 = $x$1.$roleNames6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$userNames2; - $x$1 = $x$1.$userNames2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_RevokeRolesFromUsers_dup = ($this, $children) => { - return oncia_AdministrationCommand_dup$($this, $children); -}, -oncia_RevokeRolesFromUsers_withGraph0 = ($this, $useGraph) => { - $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); - return $this; -}, -oncia_RevokeRolesFromUsers__init_0 = ($this, $roleNames, $userNames, $position) => { - $this.$roleNames6 = $roleNames; - $this.$userNames2 = $userNames; - $this.$position191 = $position; - oncia_AdministrationCommand_$init$($this); - oncia_WriteAdministrationCommand_$init$($this); -}, -oncia_RevokeRolesFromUsers__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_RevokeRolesFromUsers(); - oncia_RevokeRolesFromUsers__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_0() { - jl_Object.call(this); - this.$_01034 = null; -} -let onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01034; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}; -function onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_1() { - jl_Object.call(this); - this.$_0420 = null; -} -let onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0420; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); -}, -onciafn_Neo4jASTFactory$yieldClause$lambda$_152_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$yieldClause$lambda$_152_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1)); -}; -function onciafn_Neo4jASTFactory$yieldClause$lambda$_152_1() { - jl_Object.call(this); - this.$_0153 = null; -} -let onciafn_Neo4jASTFactory$yieldClause$lambda$_152_1_apply = (var$0, var$1) => { - return oncia_OrderBy__init_(var$1, var$0.$_0153); -}; -function onciafn_Neo4jASTFactory$yieldClause$lambda$_152_2() { - jl_Object.call(this); - this.$_0600 = null; -} -let onciafn_Neo4jASTFactory$yieldClause$lambda$_152_2_apply = (var$0, var$1) => { - return oncia_Skip__init_0(var$1, var$0.$_0600); -}; -function onciafn_Neo4jASTFactory$yieldClause$lambda$_152_3() { - jl_Object.call(this); - this.$_0550 = null; -} -let onciafn_Neo4jASTFactory$yieldClause$lambda$_152_3_apply = (var$0, var$1) => { - return oncia_Limit__init_0(var$1, var$0.$_0550); -}, -oncia_RemoveItem = $rt_classWithoutFields(0); -function oncia_RemovePropertyItem() { - jl_Object.call(this); - this.$property3 = null; -} -let oncia_RemovePropertyItem_position = $this => { - return $this.$property3.$position14; -}, -oncia_RemovePropertyItem_semanticCheck = $this => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$property3); - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(oncias_SemanticPatternCheck$_MODULE$, sci_$colon$colon__init_($this.$property3.$propertyKey0, sci_Nil$_MODULE$))); -}, -oncia_RemovePropertyItem_copy = ($this, $property) => { - return oncia_RemovePropertyItem__init_0($property); -}, -oncia_RemovePropertyItem_productPrefix = $this => { - return $rt_s(5331); -}, -oncia_RemovePropertyItem_productArity = $this => { - return 1; -}, -oncia_RemovePropertyItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$property3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RemovePropertyItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemovePropertyItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemovePropertyItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemovePropertyItem_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RemovePropertyItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$property3; - $x$1 = $x$1.$property3; - if (var$2 !== null) { - if (!oncie_Property_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_RemovePropertyItem)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_RemovePropertyItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_RemovePropertyItem_mapExpressions = ($this, $f) => { - let var$2, var$3, var$4; - var$2 = $this.$property3; - if (!(var$2 instanceof oncie_Property)) { - $f = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5332)), var$2); - jl_Throwable__init_0($f, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($f); - } - var$3 = var$2.$map16; - var$4 = var$2.$propertyKey0; - return oncia_RemovePropertyItem_copy($this, oncie_Property__init_(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, var$3), var$4, $this.$property3.$position14)); -}, -oncia_RemovePropertyItem__init_ = ($this, $property) => { - $this.$property3 = $property; -}, -oncia_RemovePropertyItem__init_0 = var_0 => { - let var_1 = new oncia_RemovePropertyItem(); - oncia_RemovePropertyItem__init_(var_1, var_0); - return var_1; -}; -function oncie_ContainerIndex() { - let a = this; oncie_Expression.call(a); - a.$expr2 = null; - a.$idx0 = null; - a.$position39 = null; -} -let oncie_ContainerIndex_expr = $this => { - return $this.$expr2; -}, -oncie_ContainerIndex_idx = $this => { - return $this.$idx0; -}, -oncie_ContainerIndex_position = $this => { - return $this.$position39; -}, -oncie_ContainerIndex_isConstantForQuery = $this => { - return $this.$expr2.$isConstantForQuery() && $this.$idx0.$isConstantForQuery() ? 1 : 0; -}, -oncie_ContainerIndex_productPrefix = $this => { - return $rt_s(5333); -}, -oncie_ContainerIndex_productArity = $this => { - return 2; -}, -oncie_ContainerIndex_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expr2; - case 1: - return $this.$idx0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_ContainerIndex_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ContainerIndex_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ContainerIndex_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ContainerIndex_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ContainerIndex) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expr2; - var$3 = $x$1.$expr2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$idx0; - $x$1 = $x$1.$idx0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_ContainerIndex)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_ContainerIndex__init_0 = ($this, $expr, $idx, $position) => { - $this.$expr2 = $expr; - $this.$idx0 = $idx; - $this.$position39 = $position; - oncie_Expression__init_($this); -}, -oncie_ContainerIndex__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_ContainerIndex(); - oncie_ContainerIndex__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_RemoveDynamicPropertyItem() { - jl_Object.call(this); - this.$dynamicPropertyLookup = null; -} -let oncia_RemoveDynamicPropertyItem_position = $this => { - return $this.$dynamicPropertyLookup.$position39; -}, -oncia_RemoveDynamicPropertyItem_semanticCheck = $this => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$dynamicPropertyLookup); - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, sci_$colon$colon__init_($this.$dynamicPropertyLookup.$idx0, sci_Nil$_MODULE$), oncia_RemoveDynamicPropertyItem_position($this))), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_RemoveDynamicPropertyItem$semanticCheck$lambda$_13_0, $this.$dynamicPropertyLookup.$expr2)); -}, -oncia_RemoveDynamicPropertyItem_copy = ($this, $dynamicPropertyLookup) => { - return oncia_RemoveDynamicPropertyItem__init_0($dynamicPropertyLookup); -}, -oncia_RemoveDynamicPropertyItem_productPrefix = $this => { - return $rt_s(5334); -}, -oncia_RemoveDynamicPropertyItem_productArity = $this => { - return 1; -}, -oncia_RemoveDynamicPropertyItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$dynamicPropertyLookup; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RemoveDynamicPropertyItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveDynamicPropertyItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveDynamicPropertyItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveDynamicPropertyItem_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RemoveDynamicPropertyItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$dynamicPropertyLookup; - $x$1 = $x$1.$dynamicPropertyLookup; - if (var$2 !== null) { - if (!oncie_ContainerIndex_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_RemoveDynamicPropertyItem)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_RemoveDynamicPropertyItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_RemoveDynamicPropertyItem_mapExpressions = ($this, $f) => { - return oncia_RemoveDynamicPropertyItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$dynamicPropertyLookup)); -}, -oncia_RemoveDynamicPropertyItem__init_ = ($this, $dynamicPropertyLookup) => { - $this.$dynamicPropertyLookup = $dynamicPropertyLookup; -}, -oncia_RemoveDynamicPropertyItem__init_0 = var_0 => { - let var_1 = new oncia_RemoveDynamicPropertyItem(); - oncia_RemoveDynamicPropertyItem__init_(var_1, var_0); - return var_1; -}; -function onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_0() { - jl_Object.call(this); - this.$_0421 = null; -} -let onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_0_apply = (var$0, var$1) => { - return oncia_Skip__init_0(var$1, var$0.$_0421); -}; -function onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_1() { - jl_Object.call(this); - this.$_0999 = null; -} -let onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_1_apply = (var$0, var$1) => { - return oncia_Limit__init_0(var$1, var$0.$_0999); -}, -oncia_SetItem = $rt_classWithoutFields(0), -oncia_SetProperty = $rt_classWithoutFields(0); -function oncia_SetPropertyItem() { - let a = this; jl_Object.call(a); - a.$property2 = null; - a.$expression29 = null; - a.$position123 = null; -} -let oncia_SetPropertyItem_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_SetPropertyItem_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_SetPropertyItem_position = $this => { - return $this.$position123; -}, -oncia_SetPropertyItem_semanticCheck = $this => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$property2); - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(oncias_SemanticPatternCheck$_MODULE$, sci_$colon$colon__init_($this.$property2.$propertyKey0, sci_Nil$_MODULE$))), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression29)), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetPropertyItem$semanticCheck$lambda$_55_0, $this.$property2.$map16)); -}, -oncia_SetPropertyItem_copy = ($this, $property, $expression, $position) => { - return oncia_SetPropertyItem__init_0($property, $expression, $position); -}, -oncia_SetPropertyItem_productPrefix = $this => { - return $rt_s(5335); -}, -oncia_SetPropertyItem_productArity = $this => { - return 2; -}, -oncia_SetPropertyItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$property2; - case 1: - return $this.$expression29; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SetPropertyItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetPropertyItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetPropertyItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetPropertyItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SetPropertyItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$property2; - var$3 = $x$1.$property2; - if (var$2 !== null) { - if (!oncie_Property_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$expression29; - $x$1 = $x$1.$expression29; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SetPropertyItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_SetPropertyItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SetPropertyItem_mapExpressions = ($this, $f) => { - let var$2, var$3, var$4; - var$2 = $this.$property2; - if (!(var$2 instanceof oncie_Property)) { - $f = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5332)), var$2); - jl_Throwable__init_0($f, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($f); - } - var$3 = var$2.$map16; - var$4 = var$2.$propertyKey0; - return oncia_SetPropertyItem_copy($this, oncie_Property__init_(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, var$3), var$4, $this.$property2.$position14), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression29), $this.$position123); -}, -oncia_SetPropertyItem__init_ = ($this, $property, $expression, $position) => { - $this.$property2 = $property; - $this.$expression29 = $expression; - $this.$position123 = $position; -}, -oncia_SetPropertyItem__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_SetPropertyItem(); - oncia_SetPropertyItem__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_SetDynamicPropertyItem() { - let a = this; jl_Object.call(a); - a.$dynamicPropertyLookup0 = null; - a.$expression28 = null; - a.$position86 = null; -} -let oncia_SetDynamicPropertyItem_position = $this => { - return $this.$position86; -}, -oncia_SetDynamicPropertyItem_semanticCheck = $this => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$dynamicPropertyLookup0); - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, sci_$colon$colon__init_($this.$dynamicPropertyLookup0.$idx0, sci_Nil$_MODULE$), $this.$position86)), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression28)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_SetDynamicPropertyItem$semanticCheck$lambda$_55_0, - $this.$dynamicPropertyLookup0.$expr2)); -}, -oncia_SetDynamicPropertyItem_copy = ($this, $dynamicPropertyLookup, $expression, $position) => { - return oncia_SetDynamicPropertyItem__init_($dynamicPropertyLookup, $expression, $position); -}, -oncia_SetDynamicPropertyItem_productPrefix = $this => { - return $rt_s(5336); -}, -oncia_SetDynamicPropertyItem_productArity = $this => { - return 2; -}, -oncia_SetDynamicPropertyItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$dynamicPropertyLookup0; - case 1: - return $this.$expression28; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SetDynamicPropertyItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetDynamicPropertyItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetDynamicPropertyItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetDynamicPropertyItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SetDynamicPropertyItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$dynamicPropertyLookup0; - var$3 = $x$1.$dynamicPropertyLookup0; - if (var$2 !== null) { - if (!oncie_ContainerIndex_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$expression28; - $x$1 = $x$1.$expression28; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SetDynamicPropertyItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_SetDynamicPropertyItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SetDynamicPropertyItem_mapExpressions = ($this, $f) => { - return oncia_SetDynamicPropertyItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$dynamicPropertyLookup0), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression28), $this.$position86); -}, -oncia_SetDynamicPropertyItem__init_0 = ($this, $dynamicPropertyLookup, $expression, $position) => { - $this.$dynamicPropertyLookup0 = $dynamicPropertyLookup; - $this.$expression28 = $expression; - $this.$position86 = $position; -}, -oncia_SetDynamicPropertyItem__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_SetDynamicPropertyItem(); - oncia_SetDynamicPropertyItem__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_SetExactPropertiesFromMapItem() { - let a = this; jl_Object.call(a); - a.$variable11 = null; - a.$expression15 = null; - a.$position91 = null; -} -let oncia_SetExactPropertiesFromMapItem_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_SetExactPropertiesFromMapItem_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_SetExactPropertiesFromMapItem_position = $this => { - return $this.$position91; -}, -oncia_SetExactPropertiesFromMapItem_semanticCheck = $this => { - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$variable11), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_0, $this.$variable11)), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression15)), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_1, - $this.$expression15)); -}, -oncia_SetExactPropertiesFromMapItem_copy = ($this, $variable, $expression, $position) => { - return oncia_SetExactPropertiesFromMapItem__init_0($variable, $expression, $position); -}, -oncia_SetExactPropertiesFromMapItem_productPrefix = $this => { - return $rt_s(5337); -}, -oncia_SetExactPropertiesFromMapItem_productArity = $this => { - return 2; -}, -oncia_SetExactPropertiesFromMapItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable11; - case 1: - return $this.$expression15; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SetExactPropertiesFromMapItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetExactPropertiesFromMapItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetExactPropertiesFromMapItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetExactPropertiesFromMapItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SetExactPropertiesFromMapItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable11; - var$3 = $x$1.$variable11; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$expression15; - $x$1 = $x$1.$expression15; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SetExactPropertiesFromMapItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_SetExactPropertiesFromMapItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SetExactPropertiesFromMapItem_mapExpressions = ($this, $f) => { - return oncia_SetExactPropertiesFromMapItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable11), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression15), $this.$position91); -}, -oncia_SetExactPropertiesFromMapItem__init_ = ($this, $variable, $expression, $position) => { - $this.$variable11 = $variable; - $this.$expression15 = $expression; - $this.$position91 = $position; -}, -oncia_SetExactPropertiesFromMapItem__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_SetExactPropertiesFromMapItem(); - oncia_SetExactPropertiesFromMapItem__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_SetIncludingPropertiesFromMapItem() { - let a = this; jl_Object.call(a); - a.$variable12 = null; - a.$expression16 = null; - a.$position105 = null; -} -let oncia_SetIncludingPropertiesFromMapItem_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_SetIncludingPropertiesFromMapItem_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_SetIncludingPropertiesFromMapItem_position = $this => { - return $this.$position105; -}, -oncia_SetIncludingPropertiesFromMapItem_semanticCheck = $this => { - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$variable12), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_0, $this.$variable12)), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression16)), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_1, - $this.$expression16)); -}, -oncia_SetIncludingPropertiesFromMapItem_copy = ($this, $variable, $expression, $position) => { - return oncia_SetIncludingPropertiesFromMapItem__init_0($variable, $expression, $position); -}, -oncia_SetIncludingPropertiesFromMapItem_productPrefix = $this => { - return $rt_s(5338); -}, -oncia_SetIncludingPropertiesFromMapItem_productArity = $this => { - return 2; -}, -oncia_SetIncludingPropertiesFromMapItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable12; - case 1: - return $this.$expression16; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SetIncludingPropertiesFromMapItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetIncludingPropertiesFromMapItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetIncludingPropertiesFromMapItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetIncludingPropertiesFromMapItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SetIncludingPropertiesFromMapItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable12; - var$3 = $x$1.$variable12; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$expression16; - $x$1 = $x$1.$expression16; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SetIncludingPropertiesFromMapItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_SetIncludingPropertiesFromMapItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SetIncludingPropertiesFromMapItem_mapExpressions = ($this, $f) => { - return oncia_SetIncludingPropertiesFromMapItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable12), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression16), $this.$position105); -}, -oncia_SetIncludingPropertiesFromMapItem__init_ = ($this, $variable, $expression, $position) => { - $this.$variable12 = $variable; - $this.$expression16 = $expression; - $this.$position105 = $position; -}, -oncia_SetIncludingPropertiesFromMapItem__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_SetIncludingPropertiesFromMapItem(); - oncia_SetIncludingPropertiesFromMapItem__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncia_UsingJoinHint$ = $rt_classWithoutFields(), -oncia_UsingJoinHint$_MODULE$ = null, -oncia_UsingJoinHint$__clinit_ = () => { - oncia_UsingJoinHint$_MODULE$ = new oncia_UsingJoinHint$; -}, -oncia_Hint = $rt_classWithoutFields(0), -oncia_UserHint = $rt_classWithoutFields(0), -oncia_LeafPlanHint = $rt_classWithoutFields(0), -oncia_LeafPlanHint_semanticCheck$ = $$this => { - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, $$this.$ensureDefined($$this.$variable2())), $$this.$expectType(new oncia_LeafPlanHint$semanticCheck$lambda$_4_0, $$this.$variable2())); -}; -function oncia_UsingScanHint() { - let a = this; jl_Object.call(a); - a.$variable18 = null; - a.$labelOrRelType3 = null; - a.$position132 = null; -} -let oncia_UsingScanHint_semanticCheck = $this => { - return oncia_LeafPlanHint_semanticCheck$($this); -}, -oncia_UsingScanHint_expectType0 = ($this, $possibleTypes, $expression) => { - return oncias_SemanticAnalysisTooling_expectType$($this, $possibleTypes, $expression); -}, -oncia_UsingScanHint_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_UsingScanHint_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_UsingScanHint_ensureDefined = ($this, $v) => { - return oncias_SemanticAnalysisTooling_ensureDefined$($this, $v); -}, -oncia_UsingScanHint_variable = $this => { - return $this.$variable18; -}, -oncia_UsingScanHint_position = $this => { - return $this.$position132; -}, -oncia_UsingScanHint_productPrefix = $this => { - return $rt_s(5339); -}, -oncia_UsingScanHint_productArity = $this => { - return 2; -}, -oncia_UsingScanHint_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable18; - case 1: - return $this.$labelOrRelType3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_UsingScanHint_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingScanHint_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingScanHint_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingScanHint_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UsingScanHint) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable18; - var$3 = $x$1.$variable18; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$labelOrRelType3; - $x$1 = $x$1.$labelOrRelType3; - if (var$3 !== null) { - if (!oncie_LabelOrRelTypeName_equals(var$3, $x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_UsingScanHint)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_UsingScanHint_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_UsingScanHint__init_0 = ($this, $variable, $labelOrRelType, $position) => { - $this.$variable18 = $variable; - $this.$labelOrRelType3 = $labelOrRelType; - $this.$position132 = $position; -}, -oncia_UsingScanHint__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_UsingScanHint(); - oncia_UsingScanHint__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_LabelOrRelTypeName() { - let a = this; jl_Object.call(a); - a.$name16 = null; - a.$position220 = null; -} -let oncie_LabelOrRelTypeName_name = $this => { - return $this.$name16; -}, -oncie_LabelOrRelTypeName_position = $this => { - return $this.$position220; -}, -oncie_LabelOrRelTypeName_productPrefix = $this => { - return $rt_s(5340); -}, -oncie_LabelOrRelTypeName_productArity = $this => { - return 1; -}, -oncie_LabelOrRelTypeName_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name16; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_LabelOrRelTypeName_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_LabelOrRelTypeName_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_LabelOrRelTypeName_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_LabelOrRelTypeName_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_LabelOrRelTypeName) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name16; - $x$1 = $x$1.$name16; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_LabelOrRelTypeName)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_LabelOrRelTypeName_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_LabelOrRelTypeName__init_0 = ($this, $name, $position) => { - $this.$name16 = $name; - $this.$position220 = $position; -}, -oncie_LabelOrRelTypeName__init_ = (var_0, var_1) => { - let var_2 = new oncie_LabelOrRelTypeName(); - oncie_LabelOrRelTypeName__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncie_MatchMode$RepeatableElements() { - jl_Object.call(this); - this.$position212 = null; -} -let oncie_MatchMode$RepeatableElements_position = $this => { - return $this.$position212; -}, -oncie_MatchMode$RepeatableElements_prettified = $this => { - return $rt_s(5341); -}, -oncie_MatchMode$RepeatableElements_productPrefix = $this => { - return $rt_s(5342); -}, -oncie_MatchMode$RepeatableElements_productArity = $this => { - return 0; -}, -oncie_MatchMode$RepeatableElements_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_MatchMode$RepeatableElements_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MatchMode$RepeatableElements_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MatchMode$RepeatableElements_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MatchMode$RepeatableElements_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_MatchMode$RepeatableElements) ? 0 : 1; - return var$2 && $this instanceof oncie_MatchMode$RepeatableElements ? 1 : 0; -}, -oncie_MatchMode$RepeatableElements_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_MatchMode$RepeatableElements__init_0 = ($this, $position) => { - $this.$position212 = $position; -}, -oncie_MatchMode$RepeatableElements__init_ = var_0 => { - let var_1 = new oncie_MatchMode$RepeatableElements(); - oncie_MatchMode$RepeatableElements__init_0(var_1, var_0); - return var_1; -}; -function oncie_MatchMode$DifferentRelationships() { - let a = this; jl_Object.call(a); - a.$implicitlyCreated = 0; - a.$position238 = null; -} -let oncie_MatchMode$DifferentRelationships_position = $this => { - return $this.$position238; -}, -oncie_MatchMode$DifferentRelationships_prettified = $this => { - if (!$this.$implicitlyCreated) - return $rt_s(5343); - return $rt_s(4); -}, -oncie_MatchMode$DifferentRelationships_productPrefix = $this => { - return $rt_s(5344); -}, -oncie_MatchMode$DifferentRelationships_productArity = $this => { - return 1; -}, -oncie_MatchMode$DifferentRelationships_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$implicitlyCreated); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_MatchMode$DifferentRelationships_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MatchMode$DifferentRelationships_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5344))), !$this.$implicitlyCreated ? 1237 : 1231), 1); -}, -oncie_MatchMode$DifferentRelationships_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MatchMode$DifferentRelationships_equals = ($this, $x$1) => { - let var$2; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_MatchMode$DifferentRelationships) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$implicitlyCreated != $x$1.$implicitlyCreated) - break b; - if (!($this instanceof oncie_MatchMode$DifferentRelationships)) - break b; - } - var$2 = 1; - break a; - } - var$2 = 0; - } - return var$2; -}, -oncie_MatchMode$DifferentRelationships_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_MatchMode$DifferentRelationships__init_0 = ($this, $implicitlyCreated, $position) => { - $this.$implicitlyCreated = $implicitlyCreated; - $this.$position238 = $position; -}, -oncie_MatchMode$DifferentRelationships__init_ = (var_0, var_1) => { - let var_2 = new oncie_MatchMode$DifferentRelationships(); - oncie_MatchMode$DifferentRelationships__init_0(var_2, var_0, var_1); - return var_2; -}, -oncie_MatchMode$DifferentRelationships$ = $rt_classWithoutFields(), -oncie_MatchMode$DifferentRelationships$_MODULE$ = null, -oncie_MatchMode$DifferentRelationships$__clinit_ = () => { - oncie_MatchMode$DifferentRelationships$_MODULE$ = new oncie_MatchMode$DifferentRelationships$; -}; -function oncie_NamedPatternPart() { - let a = this; oncie_PatternPart.call(a); - a.$variable7 = null; - a.$patternPart = null; - a.$position80 = null; -} -let oncie_NamedPatternPart_variable = $this => { - return $this.$variable7; -}, -oncie_NamedPatternPart_position = $this => { - return $this.$position80; -}, -oncie_NamedPatternPart_element = $this => { - return $this.$patternPart.$element(); -}, -oncie_NamedPatternPart_allVariables = $this => { - return ($this.$patternPart.$allVariables()).$incl($this.$variable7); -}, -oncie_NamedPatternPart_isBounded = $this => { - return $this.$patternPart.$isBounded(); -}, -oncie_NamedPatternPart_copy = ($this, $variable, $patternPart, $position) => { - return oncie_NamedPatternPart__init_($variable, $patternPart, $position); -}, -oncie_NamedPatternPart_productPrefix = $this => { - return $rt_s(5345); -}, -oncie_NamedPatternPart_productArity = $this => { - return 2; -}, -oncie_NamedPatternPart_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable7; - case 1: - return $this.$patternPart; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_NamedPatternPart_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NamedPatternPart_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NamedPatternPart_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NamedPatternPart_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_NamedPatternPart) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable7; - var$3 = $x$1.$variable7; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$patternPart; - $x$1 = $x$1.$patternPart; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_NamedPatternPart)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_NamedPatternPart_mapExpressions = ($this, $f) => { - $f = $this.$patternPart.$mapExpressions($f); - return oncie_NamedPatternPart_copy($this, $this.$variable7, $f, $this.$position80); -}, -oncie_NamedPatternPart__init_0 = ($this, $variable, $patternPart, $position) => { - $this.$variable7 = $variable; - $this.$patternPart = $patternPart; - $this.$position80 = $position; - oncie_PatternPart__init_($this); -}, -oncie_NamedPatternPart__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_NamedPatternPart(); - oncie_NamedPatternPart__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncia_ProcedureResultItem$ = $rt_classWithoutFields(), -oncia_ProcedureResultItem$_MODULE$ = null, -oncia_ProcedureResultItem$__clinit_ = () => { - oncia_ProcedureResultItem$_MODULE$ = new oncia_ProcedureResultItem$; -}, -oncia_ProcedureResultItem$_apply0 = ($this, $output, $variable, $position) => { - return oncia_ProcedureResultItem__init_(s_Some__init_($output), $variable, $position); -}, -oncia_ProcedureResultItem$_apply = ($this, $variable, $position) => { - return oncia_ProcedureResultItem__init_(s_None$_MODULE$, $variable, $position); -}; -function oncie_ProcedureOutput() { - let a = this; jl_Object.call(a); - a.$name29 = null; - a.$position231 = null; -} -let oncie_ProcedureOutput_name = $this => { - return $this.$name29; -}, -oncie_ProcedureOutput_position = $this => { - return $this.$position231; -}, -oncie_ProcedureOutput_productPrefix = $this => { - return $rt_s(5346); -}, -oncie_ProcedureOutput_productArity = $this => { - return 1; -}, -oncie_ProcedureOutput_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name29; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_ProcedureOutput_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ProcedureOutput_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ProcedureOutput_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ProcedureOutput_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ProcedureOutput) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name29; - $x$1 = $x$1.$name29; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_ProcedureOutput)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_ProcedureOutput_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_ProcedureOutput__init_0 = ($this, $name, $position) => { - $this.$name29 = $name; - $this.$position231 = $position; -}, -oncie_ProcedureOutput__init_ = (var_0, var_1) => { - let var_2 = new oncie_ProcedureOutput(); - oncie_ProcedureOutput__init_0(var_2, var_0, var_1); - return var_2; -}, -oncia_SortItem = $rt_classWithoutFields(0), -oncia_SortItem_semanticCheck$ = $$this => { - let var$2, var$3, var$4; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - var$2 = oncias_SemanticExpressionCheck$_check0(var$2, oncie_Expression$SemanticContext$Results$_MODULE$, $$this.$expression()); - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = onciu_Foldable_folder$($$this.$expression()); - sr_ClassTag$_$callClinit(); - return oncias_SemanticCheck_chain$(var$2, oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(var$3, (onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property)))).$map(new oncia_SortItem$semanticCheck$lambda$_2_0))); -}; -function oncia_AscSortItem() { - let a = this; jl_Object.call(a); - a.$expression21 = null; - a.$position89 = null; -} -let oncia_AscSortItem_semanticCheck = $this => { - return oncia_SortItem_semanticCheck$($this); -}, -oncia_AscSortItem_expression = $this => { - return $this.$expression21; -}, -oncia_AscSortItem_position = $this => { - return $this.$position89; -}, -oncia_AscSortItem_copy = ($this, $expression, $position) => { - return oncia_AscSortItem__init_($expression, $position); -}, -oncia_AscSortItem_productPrefix = $this => { - return $rt_s(5347); -}, -oncia_AscSortItem_productArity = $this => { - return 1; -}, -oncia_AscSortItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression21; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_AscSortItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AscSortItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AscSortItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AscSortItem_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_AscSortItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expression21; - $x$1 = $x$1.$expression21; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_AscSortItem)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_AscSortItem_dup = ($this, $children) => { - return oncia_AscSortItem__init_($children.$head(), $this.$position89); -}, -oncia_AscSortItem_mapExpression = ($this, $f) => { - return oncia_AscSortItem_copy($this, oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0_apply($f, $this.$expression21), $this.$position89); -}, -oncia_AscSortItem__init_0 = ($this, $expression, $position) => { - $this.$expression21 = $expression; - $this.$position89 = $position; -}, -oncia_AscSortItem__init_ = (var_0, var_1) => { - let var_2 = new oncia_AscSortItem(); - oncia_AscSortItem__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_DescSortItem() { - let a = this; jl_Object.call(a); - a.$expression24 = null; - a.$position101 = null; -} -let oncia_DescSortItem_semanticCheck = $this => { - return oncia_SortItem_semanticCheck$($this); -}, -oncia_DescSortItem_expression = $this => { - return $this.$expression24; -}, -oncia_DescSortItem_position = $this => { - return $this.$position101; -}, -oncia_DescSortItem_copy = ($this, $expression, $position) => { - return oncia_DescSortItem__init_($expression, $position); -}, -oncia_DescSortItem_productPrefix = $this => { - return $rt_s(5348); -}, -oncia_DescSortItem_productArity = $this => { - return 1; -}, -oncia_DescSortItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression24; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DescSortItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DescSortItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DescSortItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DescSortItem_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DescSortItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expression24; - $x$1 = $x$1.$expression24; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_DescSortItem)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_DescSortItem_dup = ($this, $children) => { - return oncia_DescSortItem__init_($children.$head(), $this.$position101); -}, -oncia_DescSortItem_mapExpression = ($this, $f) => { - return oncia_DescSortItem_copy($this, oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0_apply($f, $this.$expression24), $this.$position101); -}, -oncia_DescSortItem__init_0 = ($this, $expression, $position) => { - $this.$expression24 = $expression; - $this.$position101 = $position; -}, -oncia_DescSortItem__init_ = (var_0, var_1) => { - let var_2 = new oncia_DescSortItem(); - oncia_DescSortItem__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_DatabasePrivilege() { - let a = this; oncia_PrivilegeType.call(a); - a.$action6 = null; - a.$scope12 = null; - a.$position332 = null; -} -let oncia_DatabasePrivilege_scope = $this => { - return $this.$scope12; -}, -oncia_DatabasePrivilege_productPrefix = $this => { - return $rt_s(5349); -}, -oncia_DatabasePrivilege_productArity = $this => { - return 2; -}, -oncia_DatabasePrivilege_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$action6; - case 1: - return $this.$scope12; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_DatabasePrivilege_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DatabasePrivilege_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DatabasePrivilege_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DatabasePrivilege_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_DatabasePrivilege) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$action6; - var$3 = $x$1.$action6; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$scope12; - $x$1 = $x$1.$scope12; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_DatabasePrivilege__init_ = ($this, $action, $scope, $position) => { - $this.$action6 = $action; - $this.$scope12 = $scope; - $this.$position332 = $position; - oncia_PrivilegeType__init_($this, $action.$name()); -}, -oncia_DatabasePrivilege__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_DatabasePrivilege(); - oncia_DatabasePrivilege__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_NamedDatabasesScope() { - let a = this; jl_Object.call(a); - a.$databases = null; - a.$position214 = null; - a.$showCommandName0 = null; -} -let oncia_NamedDatabasesScope_productPrefix = $this => { - return $rt_s(5350); -}, -oncia_NamedDatabasesScope_productArity = $this => { - return 1; -}, -oncia_NamedDatabasesScope_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$databases; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_NamedDatabasesScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NamedDatabasesScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NamedDatabasesScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NamedDatabasesScope_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_NamedDatabasesScope) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$databases; - $x$1 = $x$1.$databases; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_NamedDatabasesScope_dup = ($this, $children) => { - return oncia_NamedDatabasesScope__init_0($children.$head(), $this.$position214); -}, -oncia_NamedDatabasesScope__init_ = ($this, $databases, $position) => { - $this.$databases = $databases; - $this.$position214 = $position; - $this.$showCommandName0 = $rt_s(4689); -}, -oncia_NamedDatabasesScope__init_0 = (var_0, var_1) => { - let var_2 = new oncia_NamedDatabasesScope(); - oncia_NamedDatabasesScope__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_AllGraphsScope() { - jl_Object.call(this); - this.$position323 = null; -} -let oncia_AllGraphsScope_productPrefix = $this => { - return $rt_s(5351); -}, -oncia_AllGraphsScope_productArity = $this => { - return 0; -}, -oncia_AllGraphsScope_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllGraphsScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllGraphsScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllGraphsScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllGraphsScope_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_AllGraphsScope)) - return 0; - return 1; -}, -oncia_AllGraphsScope_dup = ($this, $children) => { - return $this; -}, -oncia_AllGraphsScope__init_ = ($this, $position) => { - $this.$position323 = $position; -}, -oncia_AllGraphsScope__init_0 = var_0 => { - let var_1 = new oncia_AllGraphsScope(); - oncia_AllGraphsScope__init_(var_1, var_0); - return var_1; -}; -function oncia_HomeGraphScope() { - jl_Object.call(this); - this.$position318 = null; -} -let oncia_HomeGraphScope_productPrefix = $this => { - return $rt_s(5352); -}, -oncia_HomeGraphScope_productArity = $this => { - return 0; -}, -oncia_HomeGraphScope_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_HomeGraphScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_HomeGraphScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_HomeGraphScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_HomeGraphScope_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_HomeGraphScope)) - return 0; - return 1; -}, -oncia_HomeGraphScope_dup = ($this, $children) => { - return $this; -}, -oncia_HomeGraphScope__init_ = ($this, $position) => { - $this.$position318 = $position; -}, -oncia_HomeGraphScope__init_0 = var_0 => { - let var_1 = new oncia_HomeGraphScope(); - oncia_HomeGraphScope__init_(var_1, var_0); - return var_1; -}; -function oncia_NamedGraphsScope() { - let a = this; jl_Object.call(a); - a.$graphs = null; - a.$position226 = null; -} -let oncia_NamedGraphsScope_productPrefix = $this => { - return $rt_s(5353); -}, -oncia_NamedGraphsScope_productArity = $this => { - return 1; -}, -oncia_NamedGraphsScope_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$graphs; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_NamedGraphsScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NamedGraphsScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NamedGraphsScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NamedGraphsScope_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_NamedGraphsScope) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$graphs; - $x$1 = $x$1.$graphs; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_NamedGraphsScope_dup = ($this, $children) => { - return oncia_NamedGraphsScope__init_0($children.$head(), $this.$position226); -}, -oncia_NamedGraphsScope__init_ = ($this, $graphs, $position) => { - $this.$graphs = $graphs; - $this.$position226 = $position; -}, -oncia_NamedGraphsScope__init_0 = (var_0, var_1) => { - let var_2 = new oncia_NamedGraphsScope(); - oncia_NamedGraphsScope__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_GraphPrivilege() { - let a = this; oncia_PrivilegeType.call(a); - a.$action0 = null; - a.$scope14 = null; - a.$position329 = null; -} -let oncia_GraphPrivilege_action = $this => { - return $this.$action0; -}, -oncia_GraphPrivilege_scope = $this => { - return $this.$scope14; -}, -oncia_GraphPrivilege_productPrefix = $this => { - return $rt_s(5354); -}, -oncia_GraphPrivilege_productArity = $this => { - return 2; -}, -oncia_GraphPrivilege_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$action0; - case 1: - return $this.$scope14; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_GraphPrivilege_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GraphPrivilege_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GraphPrivilege_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_GraphPrivilege_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_GraphPrivilege) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$action0; - var$3 = $x$1.$action0; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$scope14; - $x$1 = $x$1.$scope14; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_GraphPrivilege__init_ = ($this, $action, $scope, $position) => { - $this.$action0 = $action; - $this.$scope14 = $scope; - $this.$position329 = $position; - oncia_PrivilegeType__init_($this, $action.$name18); -}, -oncia_GraphPrivilege__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_GraphPrivilege(); - oncia_GraphPrivilege__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_LoadPrivilege() { - let a = this; oncia_PrivilegeType.call(a); - a.$action5 = null; - a.$position325 = null; -} -let oncia_LoadPrivilege_productPrefix = $this => { - return $rt_s(5355); -}, -oncia_LoadPrivilege_productArity = $this => { - return 1; -}, -oncia_LoadPrivilege_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$action5; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_LoadPrivilege_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadPrivilege_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadPrivilege_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadPrivilege_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_LoadPrivilege) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$action5; - $x$1 = $x$1.$action5; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_LoadPrivilege__init_ = ($this, $action, $position) => { - $this.$action5 = $action; - $this.$position325 = $position; - oncia_PrivilegeType__init_($this, $action.$name()); -}, -oncia_LoadPrivilege__init_0 = (var_0, var_1) => { - let var_2 = new oncia_LoadPrivilege(); - oncia_LoadPrivilege__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_DataExchangeAction = $rt_classWithoutFields(0), -oncia_LoadActions = $rt_classWithoutFields(0), -oncia_LoadActions_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq($rt_s(5356)); -}, -oncia_LoadUrlAction$ = $rt_classWithoutFields(), -oncia_LoadUrlAction$_MODULE$ = null, -oncia_LoadUrlAction$_name = null, -oncia_LoadUrlAction$_$callClinit = () => { - oncia_LoadUrlAction$_$callClinit = $rt_eraseClinit(oncia_LoadUrlAction$); - oncia_LoadUrlAction$__clinit_(); -}, -oncia_LoadUrlAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_LoadUrlAction$; - oncia_LoadUrlAction$_$callClinit(); - oncia_LoadUrlAction$_MODULE$ = var$1; - oncia_LoadActions_$init$(var$1); -}, -oncia_LoadUrlAction$_name0 = $this => { - oncia_LoadUrlAction$_$callClinit(); - return oncia_LoadUrlAction$_name; -}, -oncia_LoadUrlAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq = ($this, $x$1) => { - oncia_LoadUrlAction$_$callClinit(); - oncia_LoadUrlAction$_name = $x$1; -}, -oncia_LoadUrlAction$_productArity = $this => { - return 0; -}, -oncia_LoadUrlAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_LoadUrlAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadUrlAction$_hashCode = $this => { - return 1056493087; -}, -oncia_LoadUrlAction$_toString = $this => { - return $rt_s(5357); -}, -oncia_ActionResource = $rt_classWithoutFields(0); -function oncia_FileResource() { - jl_Object.call(this); - this.$position310 = null; -} -let oncia_FileResource_productPrefix = $this => { - return $rt_s(5358); -}, -oncia_FileResource_productArity = $this => { - return 0; -}, -oncia_FileResource_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_FileResource_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_FileResource_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_FileResource_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_FileResource_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_FileResource)) - return 0; - return 1; -}, -oncia_FileResource__init_0 = ($this, $position) => { - $this.$position310 = $position; -}, -oncia_FileResource__init_ = var_0 => { - let var_1 = new oncia_FileResource(); - oncia_FileResource__init_0(var_1, var_0); - return var_1; -}, -oncia_LoadPrivilegeQualifier = $rt_classWithoutFields(0); -function oncia_LoadUrlQualifier() { - let a = this; jl_Object.call(a); - a.$url2 = null; - a.$position260 = null; -} -let oncia_LoadUrlQualifier_productPrefix = $this => { - return $rt_s(5359); -}, -oncia_LoadUrlQualifier_productArity = $this => { - return 1; -}, -oncia_LoadUrlQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$url2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_LoadUrlQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadUrlQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadUrlQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadUrlQualifier_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_LoadUrlQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$url2; - $x$1 = $x$1.$url2; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_LoadUrlQualifier_dup = ($this, $children) => { - return oncia_LoadUrlQualifier__init_($children.$head(), $this.$position260); -}, -oncia_LoadUrlQualifier__init_0 = ($this, $url, $position) => { - $this.$url2 = $url; - $this.$position260 = $position; -}, -oncia_LoadUrlQualifier__init_ = (var_0, var_1) => { - let var_2 = new oncia_LoadUrlQualifier(); - oncia_LoadUrlQualifier__init_0(var_2, var_0, var_1); - return var_2; -}, -oncia_LoadAllDataAction$ = $rt_classWithoutFields(), -oncia_LoadAllDataAction$_MODULE$ = null, -oncia_LoadAllDataAction$_name = null, -oncia_LoadAllDataAction$_$callClinit = () => { - oncia_LoadAllDataAction$_$callClinit = $rt_eraseClinit(oncia_LoadAllDataAction$); - oncia_LoadAllDataAction$__clinit_(); -}, -oncia_LoadAllDataAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_LoadAllDataAction$; - oncia_LoadAllDataAction$_$callClinit(); - oncia_LoadAllDataAction$_MODULE$ = var$1; - oncia_LoadActions_$init$(var$1); -}, -oncia_LoadAllDataAction$_name0 = $this => { - oncia_LoadAllDataAction$_$callClinit(); - return oncia_LoadAllDataAction$_name; -}, -oncia_LoadAllDataAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq = ($this, $x$1) => { - oncia_LoadAllDataAction$_$callClinit(); - oncia_LoadAllDataAction$_name = $x$1; -}, -oncia_LoadAllDataAction$_productArity = $this => { - return 0; -}, -oncia_LoadAllDataAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_LoadAllDataAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadAllDataAction$_hashCode = $this => { - return 1231963035; -}, -oncia_LoadAllDataAction$_toString = $this => { - return $rt_s(5360); -}; -function oncia_LoadAllQualifier() { - jl_Object.call(this); - this.$position311 = null; -} -let oncia_LoadAllQualifier_productPrefix = $this => { - return $rt_s(5361); -}, -oncia_LoadAllQualifier_productArity = $this => { - return 0; -}, -oncia_LoadAllQualifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_LoadAllQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadAllQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadAllQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadAllQualifier_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_LoadAllQualifier)) - return 0; - return 1; -}, -oncia_LoadAllQualifier_dup = ($this, $children) => { - return $this; -}, -oncia_LoadAllQualifier__init_0 = ($this, $position) => { - $this.$position311 = $position; -}, -oncia_LoadAllQualifier__init_ = var_0 => { - let var_1 = new oncia_LoadAllQualifier(); - oncia_LoadAllQualifier__init_0(var_1, var_0); - return var_1; -}, -oncia_LoadCidrAction$ = $rt_classWithoutFields(), -oncia_LoadCidrAction$_MODULE$ = null, -oncia_LoadCidrAction$_name = null, -oncia_LoadCidrAction$_$callClinit = () => { - oncia_LoadCidrAction$_$callClinit = $rt_eraseClinit(oncia_LoadCidrAction$); - oncia_LoadCidrAction$__clinit_(); -}, -oncia_LoadCidrAction$__clinit_ = () => { - let var$1; - var$1 = new oncia_LoadCidrAction$; - oncia_LoadCidrAction$_$callClinit(); - oncia_LoadCidrAction$_MODULE$ = var$1; - oncia_LoadActions_$init$(var$1); -}, -oncia_LoadCidrAction$_name0 = $this => { - oncia_LoadCidrAction$_$callClinit(); - return oncia_LoadCidrAction$_name; -}, -oncia_LoadCidrAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq = ($this, $x$1) => { - oncia_LoadCidrAction$_$callClinit(); - oncia_LoadCidrAction$_name = $x$1; -}, -oncia_LoadCidrAction$_productArity = $this => { - return 0; -}, -oncia_LoadCidrAction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_LoadCidrAction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadCidrAction$_hashCode = $this => { - return (-492330896); -}, -oncia_LoadCidrAction$_toString = $this => { - return $rt_s(5362); -}; -function oncia_LoadCidrQualifier() { - let a = this; jl_Object.call(a); - a.$cidr = null; - a.$position307 = null; -} -let oncia_LoadCidrQualifier_productPrefix = $this => { - return $rt_s(5363); -}, -oncia_LoadCidrQualifier_productArity = $this => { - return 1; -}, -oncia_LoadCidrQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$cidr; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_LoadCidrQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadCidrQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadCidrQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadCidrQualifier_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_LoadCidrQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$cidr; - $x$1 = $x$1.$cidr; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_LoadCidrQualifier_dup = ($this, $children) => { - return oncia_LoadCidrQualifier__init_($children.$head(), $this.$position307); -}, -oncia_LoadCidrQualifier__init_0 = ($this, $cidr, $position) => { - $this.$cidr = $cidr; - $this.$position307 = $position; -}, -oncia_LoadCidrQualifier__init_ = (var_0, var_1) => { - let var_2 = new oncia_LoadCidrQualifier(); - oncia_LoadCidrQualifier__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_LabelAllQualifier() { - jl_Object.call(this); - this.$position328 = null; -} -let oncia_LabelAllQualifier_productPrefix = $this => { - return $rt_s(5364); -}, -oncia_LabelAllQualifier_productArity = $this => { - return 0; -}, -oncia_LabelAllQualifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_LabelAllQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelAllQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelAllQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelAllQualifier_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_LabelAllQualifier)) - return 0; - return 1; -}, -oncia_LabelAllQualifier_dup = ($this, $children) => { - return $this; -}, -oncia_LabelAllQualifier__init_0 = ($this, $position) => { - $this.$position328 = $position; -}, -oncia_LabelAllQualifier__init_ = var_0 => { - let var_1 = new oncia_LabelAllQualifier(); - oncia_LabelAllQualifier__init_0(var_1, var_0); - return var_1; -}; -function oncia_ElementsAllQualifier() { - jl_Object.call(this); - this.$position327 = null; -} -let oncia_ElementsAllQualifier_productPrefix = $this => { - return $rt_s(5365); -}, -oncia_ElementsAllQualifier_productArity = $this => { - return 0; -}, -oncia_ElementsAllQualifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ElementsAllQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ElementsAllQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ElementsAllQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ElementsAllQualifier_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_ElementsAllQualifier)) - return 0; - return 1; -}, -oncia_ElementsAllQualifier_dup = ($this, $children) => { - return $this; -}, -oncia_ElementsAllQualifier__init_ = ($this, $position) => { - $this.$position327 = $position; -}, -oncia_ElementsAllQualifier__init_0 = var_0 => { - let var_1 = new oncia_ElementsAllQualifier(); - oncia_ElementsAllQualifier__init_(var_1, var_0); - return var_1; -}; -function oncia_AliasedReturnItem() { - let a = this; jl_Object.call(a); - a.$expression27 = null; - a.$variable14 = null; - a.$position169 = null; - a.$alias1 = null; - a.$name51 = null; -} -let oncia_AliasedReturnItem_isPassThrough = $this => { - return oncia_ReturnItem_isPassThrough$($this); -}, -oncia_AliasedReturnItem_semanticCheck = $this => { - return oncia_ReturnItem_semanticCheck$($this); -}, -oncia_AliasedReturnItem_expression = $this => { - return $this.$expression27; -}, -oncia_AliasedReturnItem_position = $this => { - return $this.$position169; -}, -oncia_AliasedReturnItem_alias = $this => { - return $this.$alias1; -}, -oncia_AliasedReturnItem_name = $this => { - return $this.$name51; -}, -oncia_AliasedReturnItem_copy = ($this, $expression, $variable, $position) => { - return oncia_AliasedReturnItem__init_($expression, $variable, $position); -}, -oncia_AliasedReturnItem_productPrefix = $this => { - return $rt_s(5366); -}, -oncia_AliasedReturnItem_productArity = $this => { - return 2; -}, -oncia_AliasedReturnItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression27; - case 1: - return $this.$variable14; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_AliasedReturnItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AliasedReturnItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AliasedReturnItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AliasedReturnItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_AliasedReturnItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expression27; - var$3 = $x$1.$expression27; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$variable14; - $x$1 = $x$1.$variable14; - if (var$3 !== null) { - if (!oncie_Variable_equals(var$3, $x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_AliasedReturnItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_AliasedReturnItem_dup = ($this, $children) => { - return oncia_AliasedReturnItem_copy($this, $children.$head(), $children.$apply1(1), $this.$position169); -}, -oncia_AliasedReturnItem__init_0 = ($this, $expression, $variable, $position) => { - $this.$expression27 = $expression; - $this.$variable14 = $variable; - $this.$position169 = $position; - $this.$alias1 = s_Some__init_($variable); - $this.$name51 = $variable.$name4; -}, -oncia_AliasedReturnItem__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_AliasedReturnItem(); - oncia_AliasedReturnItem__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncie_SignedIntegerLiteral = $rt_classWithoutFields(0); -function oncie_SignedDecimalIntegerLiteral() { - let a = this; oncie_DecimalIntegerLiteral.call(a); - a.$stringVal2 = null; - a.$position168 = null; -} -let oncie_SignedDecimalIntegerLiteral_stringVal = $this => { - return $this.$stringVal2; -}, -oncie_SignedDecimalIntegerLiteral_position = $this => { - return $this.$position168; -}, -oncie_SignedDecimalIntegerLiteral_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_SignedDecimalIntegerLiteral$$anon$1; - oncie_SignedDecimalIntegerLiteral__init_(var$1, $this.$stringVal2, $this.$position168); - return var$1; -}, -oncie_SignedDecimalIntegerLiteral_copy = ($this, $stringVal, $position) => { - return oncie_SignedDecimalIntegerLiteral__init_0($stringVal, $position); -}, -oncie_SignedDecimalIntegerLiteral_productPrefix = $this => { - return $rt_s(5367); -}, -oncie_SignedDecimalIntegerLiteral_productArity = $this => { - return 1; -}, -oncie_SignedDecimalIntegerLiteral_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$stringVal2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_SignedDecimalIntegerLiteral_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedDecimalIntegerLiteral_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_SignedDecimalIntegerLiteral; -}, -oncie_SignedDecimalIntegerLiteral_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedDecimalIntegerLiteral_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedDecimalIntegerLiteral_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_SignedDecimalIntegerLiteral) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$stringVal2; - $x$1 = $x$1.$stringVal2; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_SignedDecimalIntegerLiteral)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_SignedDecimalIntegerLiteral__init_ = ($this, $stringVal, $position) => { - $this.$stringVal2 = $stringVal; - $this.$position168 = $position; - oncie_DecimalIntegerLiteral__init_($this, $stringVal); -}, -oncie_SignedDecimalIntegerLiteral__init_0 = (var_0, var_1) => { - let var_2 = new oncie_SignedDecimalIntegerLiteral(); - oncie_SignedDecimalIntegerLiteral__init_(var_2, var_0, var_1); - return var_2; -}; -function oncie_PathPatternPart() { - oncie_PatternPart.call(this); - this.$element3 = null; -} -let oncie_PathPatternPart_allVariables = $this => { - return oncie_AnonymousPatternPart_allVariables$($this); -}, -oncie_PathPatternPart_element = $this => { - return $this.$element3; -}, -oncie_PathPatternPart_position = $this => { - return $this.$element3.$position(); -}, -oncie_PathPatternPart_isBounded = $this => { - return $this.$element3.$isBounded(); -}, -oncie_PathPatternPart_dup = ($this, $children) => { - return oncie_PathPatternPart__init_($children.$head()); -}, -oncie_PathPatternPart_copy = ($this, $element) => { - return oncie_PathPatternPart__init_($element); -}, -oncie_PathPatternPart_productPrefix = $this => { - return $rt_s(5368); -}, -oncie_PathPatternPart_productArity = $this => { - return 1; -}, -oncie_PathPatternPart_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$element3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_PathPatternPart_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PathPatternPart_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PathPatternPart_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PathPatternPart_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PathPatternPart) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$element3; - $x$1 = $x$1.$element3; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_PathPatternPart)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_PathPatternPart_mapExpressions = ($this, $f) => { - return oncie_PathPatternPart_copy($this, $this.$element3.$mapExpressions($f)); -}, -oncie_PathPatternPart_dup1 = ($this, $children) => { - return oncie_PathPatternPart_dup($this, $children); -}, -oncie_PathPatternPart_dup0 = ($this, $children) => { - return oncie_PathPatternPart_dup($this, $children); -}, -oncie_PathPatternPart__init_0 = ($this, $element) => { - $this.$element3 = $element; - oncie_PatternPart__init_($this); -}, -oncie_PathPatternPart__init_ = var_0 => { - let var_1 = new oncie_PathPatternPart(); - oncie_PathPatternPart__init_0(var_1, var_0); - return var_1; -}; -function oncia_RemoveLabelItem() { - let a = this; jl_Object.call(a); - a.$variable10 = null; - a.$labels1 = null; - a.$dynamicLabels0 = null; - a.$containsIs0 = 0; - a.$position27 = null; -} -let oncia_RemoveLabelItem_position = $this => { - return $this.$position27; -}, -oncia_RemoveLabelItem_semanticCheck = $this => { - let var$1, var$2, var$3, var$4, var$5; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$variable10), oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $this.$dynamicLabels0)); - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, $this.$dynamicLabels0, $this.$position27)); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - oncius_package$_$callClinit(); - var$4 = oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); - var$5 = oncius_package$_MODULE$; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_SemanticAnalysisTooling_expectType$1(var$3, oncius_TypeSpec_union(var$4, oncius_ListType_covariant(oncius_package$_CTList(var$5, oncius_package$_CTString(var$5)))), $this.$dynamicLabels0)), oncias_SemanticPatternCheck$_checkValidLabels(oncias_SemanticPatternCheck$_MODULE$, $this.$labels1, $this.$position27)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_RemoveLabelItem$semanticCheck$lambda$_14_0, - $this.$variable10)); -}, -oncia_RemoveLabelItem_copy = ($this, $variable, $labels, $dynamicLabels, $containsIs, $position) => { - return oncia_RemoveLabelItem__init_($variable, $labels, $dynamicLabels, $containsIs, $position); -}, -oncia_RemoveLabelItem_productPrefix = $this => { - return $rt_s(5369); -}, -oncia_RemoveLabelItem_productArity = $this => { - return 4; -}, -oncia_RemoveLabelItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable10; - case 1: - return $this.$labels1; - case 2: - return $this.$dynamicLabels0; - case 3: - return jl_Boolean_valueOf($this.$containsIs0); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RemoveLabelItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveLabelItem_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5369))), sr_Statics_anyHash($this.$variable10)), sr_Statics_anyHash($this.$labels1)), sr_Statics_anyHash($this.$dynamicLabels0)), !$this.$containsIs0 ? 1237 : 1231), 4); -}, -oncia_RemoveLabelItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RemoveLabelItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RemoveLabelItem) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs0 != $x$1.$containsIs0) - break b; - c: { - var$2 = $this.$variable10; - var$3 = $x$1.$variable10; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$labels1; - var$3 = $x$1.$labels1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$dynamicLabels0; - $x$1 = $x$1.$dynamicLabels0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_RemoveLabelItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_RemoveLabelItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_RemoveLabelItem_mapExpressions = ($this, $f) => { - return oncia_RemoveLabelItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable10), $this.$labels1, $this.$dynamicLabels0, $this.$containsIs0, $this.$position27); -}, -oncia_RemoveLabelItem__init_0 = ($this, $variable, $labels, $dynamicLabels, $containsIs, $position) => { - $this.$variable10 = $variable; - $this.$labels1 = $labels; - $this.$dynamicLabels0 = $dynamicLabels; - $this.$containsIs0 = $containsIs; - $this.$position27 = $position; -}, -oncia_RemoveLabelItem__init_ = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_RemoveLabelItem(); - oncia_RemoveLabelItem__init_0(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}, -onciafn_Neo4jASTFactory$removeLabels$lambda$_31_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$removeLabels$lambda$_31_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncie_LabelName__init_(var$1.$string, var$1.$pos3); -}; -function oncia_SetLabelItem() { - let a = this; jl_Object.call(a); - a.$variable9 = null; - a.$labels2 = null; - a.$dynamicLabels = null; - a.$containsIs1 = 0; - a.$position31 = null; -} -let oncia_SetLabelItem_position = $this => { - return $this.$position31; -}, -oncia_SetLabelItem_semanticCheck = $this => { - let var$1, var$2, var$3, var$4; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$variable9); - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidLabels(oncias_SemanticPatternCheck$_MODULE$, $this.$labels2, $this.$position31)), oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $this.$dynamicLabels)), oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, $this.$dynamicLabels, $this.$position31)); - var$1 = oncias_SemanticExpressionCheck$_MODULE$; - oncius_package$_$callClinit(); - var$3 = oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); - var$4 = oncius_package$_MODULE$; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_SemanticAnalysisTooling_expectType$1(var$1, oncius_TypeSpec_union(var$3, oncius_ListType_covariant(oncius_package$_CTList(var$4, oncius_package$_CTString(var$4)))), $this.$dynamicLabels)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_SetLabelItem$semanticCheck$lambda$_14_0, $this.$variable9)); -}, -oncia_SetLabelItem_copy = ($this, $variable, $labels, $dynamicLabels, $containsIs, $position) => { - return oncia_SetLabelItem__init_($variable, $labels, $dynamicLabels, $containsIs, $position); -}, -oncia_SetLabelItem_productPrefix = $this => { - return $rt_s(5370); -}, -oncia_SetLabelItem_productArity = $this => { - return 4; -}, -oncia_SetLabelItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable9; - case 1: - return $this.$labels2; - case 2: - return $this.$dynamicLabels; - case 3: - return jl_Boolean_valueOf($this.$containsIs1); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_SetLabelItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetLabelItem_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5370))), sr_Statics_anyHash($this.$variable9)), sr_Statics_anyHash($this.$labels2)), sr_Statics_anyHash($this.$dynamicLabels)), !$this.$containsIs1 ? 1237 : 1231), 4); -}, -oncia_SetLabelItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SetLabelItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SetLabelItem) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs1 != $x$1.$containsIs1) - break b; - c: { - var$2 = $this.$variable9; - var$3 = $x$1.$variable9; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$labels2; - var$3 = $x$1.$labels2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$dynamicLabels; - $x$1 = $x$1.$dynamicLabels; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SetLabelItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_SetLabelItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_SetLabelItem_mapExpressions = ($this, $f) => { - return oncia_SetLabelItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable9), $this.$labels2, $this.$dynamicLabels, $this.$containsIs1, $this.$position31); -}, -oncia_SetLabelItem__init_0 = ($this, $variable, $labels, $dynamicLabels, $containsIs, $position) => { - $this.$variable9 = $variable; - $this.$labels2 = $labels; - $this.$dynamicLabels = $dynamicLabels; - $this.$containsIs1 = $containsIs; - $this.$position31 = $position; -}, -oncia_SetLabelItem__init_ = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_SetLabelItem(); - oncia_SetLabelItem__init_0(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}, -onciafn_Neo4jASTFactory$setLabels$lambda$_27_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$setLabels$lambda$_27_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncie_LabelName__init_(var$1.$string, var$1.$pos3); -}; -function oncia_UsingIndexHint() { - let a = this; jl_Object.call(a); - a.$variable13 = null; - a.$labelOrRelType2 = null; - a.$properties6 = null; - a.$spec = null; - a.$indexType3 = null; - a.$position88 = null; -} -let oncia_UsingIndexHint_semanticCheck = $this => { - return oncia_LeafPlanHint_semanticCheck$($this); -}, -oncia_UsingIndexHint_expectType0 = ($this, $possibleTypes, $expression) => { - return oncias_SemanticAnalysisTooling_expectType$($this, $possibleTypes, $expression); -}, -oncia_UsingIndexHint_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_UsingIndexHint_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_UsingIndexHint_ensureDefined = ($this, $v) => { - return oncias_SemanticAnalysisTooling_ensureDefined$($this, $v); -}, -oncia_UsingIndexHint_variable = $this => { - return $this.$variable13; -}, -oncia_UsingIndexHint_position = $this => { - return $this.$position88; -}, -oncia_UsingIndexHint_productPrefix = $this => { - return $rt_s(5371); -}, -oncia_UsingIndexHint_productArity = $this => { - return 5; -}, -oncia_UsingIndexHint_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable13; - case 1: - return $this.$labelOrRelType2; - case 2: - return $this.$properties6; - case 3: - return $this.$spec; - case 4: - return $this.$indexType3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_UsingIndexHint_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingIndexHint_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingIndexHint_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingIndexHint_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UsingIndexHint) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable13; - var$3 = $x$1.$variable13; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$labelOrRelType2; - var$3 = $x$1.$labelOrRelType2; - if (var$2 !== null) { - if (!oncie_LabelOrRelTypeName_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$properties6; - var$3 = $x$1.$properties6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$spec; - var$3 = $x$1.$spec; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$3 = $this.$indexType3; - $x$1 = $x$1.$indexType3; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break g; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_UsingIndexHint)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_UsingIndexHint_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_UsingIndexHint__init_ = ($this, $variable, $labelOrRelType, $properties, $spec, $indexType, $position) => { - $this.$variable13 = $variable; - $this.$labelOrRelType2 = $labelOrRelType; - $this.$properties6 = $properties; - $this.$spec = $spec; - $this.$indexType3 = $indexType; - $this.$position88 = $position; -}, -oncia_UsingIndexHint__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_UsingIndexHint(); - oncia_UsingIndexHint__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}; -function onciafn_Neo4jASTFactory$usingIndexHint$lambda$_16_0() { - jl_Object.call(this); - this.$_0206 = null; -} -let onciafn_Neo4jASTFactory$usingIndexHint$lambda$_16_0_apply = (var$0, var$1) => { - return oncie_PropertyKeyName__init_(var$1, var$0.$_0206); -}, -oncia_UsingIndexHint$UsingIndexHintSpec = $rt_classWithoutFields(0), -oncia_UsingIndexHint$SeekOrScan$ = $rt_classWithoutFields(), -oncia_UsingIndexHint$SeekOrScan$_MODULE$ = null, -oncia_UsingIndexHint$SeekOrScan$__clinit_ = () => { - oncia_UsingIndexHint$SeekOrScan$_MODULE$ = new oncia_UsingIndexHint$SeekOrScan$; -}, -oncia_UsingIndexHint$SeekOrScan$_productArity = $this => { - return 0; -}, -oncia_UsingIndexHint$SeekOrScan$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_UsingIndexHint$SeekOrScan$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingIndexHint$SeekOrScan$_hashCode = $this => { - return 1478327224; -}, -oncia_UsingIndexHint$SeekOrScan$_toString = $this => { - return $rt_s(5372); -}, -oncia_UsingIndexHint$SeekOnly$ = $rt_classWithoutFields(), -oncia_UsingIndexHint$SeekOnly$_MODULE$ = null, -oncia_UsingIndexHint$SeekOnly$__clinit_ = () => { - oncia_UsingIndexHint$SeekOnly$_MODULE$ = new oncia_UsingIndexHint$SeekOnly$; -}, -oncia_UsingIndexHint$SeekOnly$_productArity = $this => { - return 0; -}, -oncia_UsingIndexHint$SeekOnly$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_UsingIndexHint$SeekOnly$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingIndexHint$SeekOnly$_hashCode = $this => { - return 1060751972; -}, -oncia_UsingIndexHint$SeekOnly$_toString = $this => { - return $rt_s(5373); -}, -oncie_PatternPart$SelectiveSelector = $rt_classWithoutFields(0), -oncie_PatternPart$CountedSelector = $rt_classWithoutFields(0); -function oncie_PatternPart$AnyShortestPath() { - let a = this; jl_Object.call(a); - a.$count4 = null; - a.$position289 = null; -} -let oncie_PatternPart$AnyShortestPath_count = $this => { - return $this.$count4; -}, -oncie_PatternPart$AnyShortestPath_position = $this => { - return $this.$position289; -}, -oncie_PatternPart$AnyShortestPath_prettified = $this => { - let var$1, var$2; - var$1 = oncie_DecimalIntegerLiteral_value($this.$count4); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5374)), var$1), $rt_s(5375)); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncie_PatternPart$AnyShortestPath_isBounded = $this => { - return 1; -}, -oncie_PatternPart$AnyShortestPath_productPrefix = $this => { - return $rt_s(5376); -}, -oncie_PatternPart$AnyShortestPath_productArity = $this => { - return 1; -}, -oncie_PatternPart$AnyShortestPath_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$count4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_PatternPart$AnyShortestPath_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AnyShortestPath_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AnyShortestPath_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AnyShortestPath_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PatternPart$AnyShortestPath) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$count4; - $x$1 = $x$1.$count4; - if (var$2 !== null) { - if (!oncie_UnsignedDecimalIntegerLiteral_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_PatternPart$AnyShortestPath)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_PatternPart$AnyShortestPath_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PatternPart$AnyShortestPath__init_0 = ($this, $count, $position) => { - $this.$count4 = $count; - $this.$position289 = $position; -}, -oncie_PatternPart$AnyShortestPath__init_ = (var_0, var_1) => { - let var_2 = new oncie_PatternPart$AnyShortestPath(); - oncie_PatternPart$AnyShortestPath__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncie_PatternPart$AllShortestPaths() { - jl_Object.call(this); - this.$position259 = null; -} -let oncie_PatternPart$AllShortestPaths_position = $this => { - return $this.$position259; -}, -oncie_PatternPart$AllShortestPaths_prettified = $this => { - return $rt_s(5377); -}, -oncie_PatternPart$AllShortestPaths_isBounded = $this => { - return 1; -}, -oncie_PatternPart$AllShortestPaths_productPrefix = $this => { - return $rt_s(5378); -}, -oncie_PatternPart$AllShortestPaths_productArity = $this => { - return 0; -}, -oncie_PatternPart$AllShortestPaths_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_PatternPart$AllShortestPaths_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AllShortestPaths_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AllShortestPaths_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AllShortestPaths_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_PatternPart$AllShortestPaths) ? 0 : 1; - return var$2 && $this instanceof oncie_PatternPart$AllShortestPaths ? 1 : 0; -}, -oncie_PatternPart$AllShortestPaths_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PatternPart$AllShortestPaths__init_0 = ($this, $position) => { - $this.$position259 = $position; -}, -oncie_PatternPart$AllShortestPaths__init_ = var_0 => { - let var_1 = new oncie_PatternPart$AllShortestPaths(); - oncie_PatternPart$AllShortestPaths__init_0(var_1, var_0); - return var_1; -}; -function oncie_PatternPart$AnyPath() { - let a = this; jl_Object.call(a); - a.$count3 = null; - a.$position190 = null; -} -let oncie_PatternPart$AnyPath_count = $this => { - return $this.$count3; -}, -oncie_PatternPart$AnyPath_position = $this => { - return $this.$position190; -}, -oncie_PatternPart$AnyPath_prettified = $this => { - let var$1, var$2; - var$1 = oncie_DecimalIntegerLiteral_value($this.$count3); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5379)), var$1), $rt_s(5375)); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncie_PatternPart$AnyPath_isBounded = $this => { - return 1; -}, -oncie_PatternPart$AnyPath_productPrefix = $this => { - return $rt_s(5380); -}, -oncie_PatternPart$AnyPath_productArity = $this => { - return 1; -}, -oncie_PatternPart$AnyPath_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$count3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_PatternPart$AnyPath_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AnyPath_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AnyPath_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AnyPath_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PatternPart$AnyPath) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$count3; - $x$1 = $x$1.$count3; - if (var$2 !== null) { - if (!oncie_UnsignedDecimalIntegerLiteral_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_PatternPart$AnyPath)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_PatternPart$AnyPath_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PatternPart$AnyPath__init_0 = ($this, $count, $position) => { - $this.$count3 = $count; - $this.$position190 = $position; -}, -oncie_PatternPart$AnyPath__init_ = (var_0, var_1) => { - let var_2 = new oncie_PatternPart$AnyPath(); - oncie_PatternPart$AnyPath__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncie_PatternPart$AllPaths() { - jl_Object.call(this); - this.$position229 = null; -} -let oncie_PatternPart$AllPaths_position = $this => { - return $this.$position229; -}, -oncie_PatternPart$AllPaths_prettified = $this => { - return $rt_s(5381); -}, -oncie_PatternPart$AllPaths_isBounded = $this => { - return 0; -}, -oncie_PatternPart$AllPaths_productPrefix = $this => { - return $rt_s(5382); -}, -oncie_PatternPart$AllPaths_productArity = $this => { - return 0; -}, -oncie_PatternPart$AllPaths_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_PatternPart$AllPaths_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AllPaths_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AllPaths_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$AllPaths_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_PatternPart$AllPaths) ? 0 : 1; - return var$2 && $this instanceof oncie_PatternPart$AllPaths ? 1 : 0; -}, -oncie_PatternPart$AllPaths_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PatternPart$AllPaths__init_0 = ($this, $position) => { - $this.$position229 = $position; -}, -oncie_PatternPart$AllPaths__init_ = var_0 => { - let var_1 = new oncie_PatternPart$AllPaths(); - oncie_PatternPart$AllPaths__init_0(var_1, var_0); - return var_1; -}; -function oncie_PatternPart$ShortestGroups() { - let a = this; jl_Object.call(a); - a.$count2 = null; - a.$position211 = null; -} -let oncie_PatternPart$ShortestGroups_count = $this => { - return $this.$count2; -}, -oncie_PatternPart$ShortestGroups_position = $this => { - return $this.$position211; -}, -oncie_PatternPart$ShortestGroups_prettified = $this => { - let var$1, var$2; - var$1 = oncie_DecimalIntegerLiteral_value($this.$count2); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5374)), var$1), $rt_s(5383)); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncie_PatternPart$ShortestGroups_isBounded = $this => { - return 1; -}, -oncie_PatternPart$ShortestGroups_productPrefix = $this => { - return $rt_s(5384); -}, -oncie_PatternPart$ShortestGroups_productArity = $this => { - return 1; -}, -oncie_PatternPart$ShortestGroups_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$count2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_PatternPart$ShortestGroups_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$ShortestGroups_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$ShortestGroups_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternPart$ShortestGroups_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PatternPart$ShortestGroups) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$count2; - $x$1 = $x$1.$count2; - if (var$2 !== null) { - if (!oncie_UnsignedDecimalIntegerLiteral_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_PatternPart$ShortestGroups)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_PatternPart$ShortestGroups_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_PatternPart$ShortestGroups__init_0 = ($this, $count, $position) => { - $this.$count2 = $count; - $this.$position211 = $position; -}, -oncie_PatternPart$ShortestGroups__init_ = (var_0, var_1) => { - let var_2 = new oncie_PatternPart$ShortestGroups(); - oncie_PatternPart$ShortestGroups__init_0(var_2, var_0, var_1); - return var_2; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour = $rt_classWithoutFields(0), -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$ = $rt_classWithoutFields(), -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$ = null, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_$callClinit = () => { - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_$callClinit = $rt_eraseClinit(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$); - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$__clinit_(); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$__clinit_ = () => { - let var$1; - var$1 = new oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_$callClinit(); - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$ = var$1; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productArity = $this => { - return 0; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_hashCode = $this => { - return (-1599899888); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_toString = $this => { - return $rt_s(5385); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$ = $rt_classWithoutFields(), -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$ = null, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_$callClinit = () => { - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_$callClinit = $rt_eraseClinit(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$); - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$__clinit_(); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$__clinit_ = () => { - let var$1; - var$1 = new oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_$callClinit(); - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$ = var$1; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productArity = $this => { - return 0; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_hashCode = $this => { - return 819285814; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_toString = $this => { - return $rt_s(5386); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$ = $rt_classWithoutFields(), -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$ = null, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit = () => { - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit = $rt_eraseClinit(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$); - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$__clinit_(); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$__clinit_ = () => { - let var$1; - var$1 = new oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$; - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit(); - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$ = var$1; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productArity = $this => { - return 0; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_hashCode = $this => { - return 1966194183; -}, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_toString = $this => { - return $rt_s(5387); -}; -function oncie_Xor() { - let a = this; oncie_Expression.call(a); - a.$lhs21 = null; - a.$rhs20 = null; - a.$position297 = null; - a.$signatures24 = null; -} -let oncie_Xor_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_Xor_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_Xor_canonicalOperatorSymbol = $this => { - return oncie_OperatorExpression_canonicalOperatorSymbol$($this); -}, -oncie_Xor_lhs = $this => { - return $this.$lhs21; -}, -oncie_Xor_rhs = $this => { - return $this.$rhs20; -}, -oncie_Xor_position = $this => { - return $this.$position297; -}, -oncie_Xor_signatures = $this => { - return $this.$signatures24; -}, -oncie_Xor_productPrefix = $this => { - return $rt_s(5388); -}, -oncie_Xor_productArity = $this => { - return 2; -}, -oncie_Xor_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs21; - case 1: - return $this.$rhs20; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_Xor_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Xor_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Xor_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Xor_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Xor) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs21; - var$3 = $x$1.$lhs21; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs20; - $x$1 = $x$1.$rhs20; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Xor)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_Xor__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs21 = $lhs; - $this.$rhs20 = $rhs; - $this.$position297 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_BooleanType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures24 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); -}, -oncie_Xor__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Xor(); - oncie_Xor__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function onciafn_Neo4jASTFactory$functionQualifier$lambda$_220_0() { - let a = this; jl_Object.call(a); - a.$_0928 = null; - a.$_1326 = null; -} -let onciafn_Neo4jASTFactory$functionQualifier$lambda$_220_0_accept = (var$0, var$1) => { - var$1 = var$1; - ju_ArrayList_add(var$0.$_0928, oncia_FunctionQualifier__init_0(var$1, var$0.$_1326)); -}; -function onciafn_Neo4jASTFactory$procedureQualifier$lambda$_221_0() { - let a = this; jl_Object.call(a); - a.$_0666 = null; - a.$_1233 = null; -} -let onciafn_Neo4jASTFactory$procedureQualifier$lambda$_221_0_accept = (var$0, var$1) => { - var$1 = var$1; - ju_ArrayList_add(var$0.$_0666, oncia_ProcedureQualifier__init_0(var$1, var$0.$_1233)); -}; -function oncia_RelationshipQualifier() { - let a = this; jl_Object.call(a); - a.$reltype = null; - a.$position189 = null; -} -let oncia_RelationshipQualifier_productPrefix = $this => { - return $rt_s(5389); -}, -oncia_RelationshipQualifier_productArity = $this => { - return 1; -}, -oncia_RelationshipQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$reltype; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_RelationshipQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelationshipQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelationshipQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelationshipQualifier_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RelationshipQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$reltype; - $x$1 = $x$1.$reltype; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_RelationshipQualifier_dup = ($this, $children) => { - return oncia_RelationshipQualifier__init_0($children.$head(), $this.$position189); -}, -oncia_RelationshipQualifier__init_ = ($this, $reltype, $position) => { - $this.$reltype = $reltype; - $this.$position189 = $position; -}, -oncia_RelationshipQualifier__init_0 = (var_0, var_1) => { - let var_2 = new oncia_RelationshipQualifier(); - oncia_RelationshipQualifier__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_RelationshipAllQualifier() { - jl_Object.call(this); - this.$position320 = null; -} -let oncia_RelationshipAllQualifier_productPrefix = $this => { - return $rt_s(5390); -}, -oncia_RelationshipAllQualifier_productArity = $this => { - return 0; -}, -oncia_RelationshipAllQualifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RelationshipAllQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelationshipAllQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelationshipAllQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelationshipAllQualifier_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_RelationshipAllQualifier)) - return 0; - return 1; -}, -oncia_RelationshipAllQualifier_dup = ($this, $children) => { - return $this; -}, -oncia_RelationshipAllQualifier__init_ = ($this, $position) => { - $this.$position320 = $position; -}, -oncia_RelationshipAllQualifier__init_0 = var_0 => { - let var_1 = new oncia_RelationshipAllQualifier(); - oncia_RelationshipAllQualifier__init_(var_1, var_0); - return var_1; -}; -function oncia_LabelQualifier() { - let a = this; jl_Object.call(a); - a.$label1 = null; - a.$position223 = null; -} -let oncia_LabelQualifier_productPrefix = $this => { - return $rt_s(5391); -}, -oncia_LabelQualifier_productArity = $this => { - return 1; -}, -oncia_LabelQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$label1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_LabelQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelQualifier_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_LabelQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$label1; - $x$1 = $x$1.$label1; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_LabelQualifier_dup = ($this, $children) => { - return oncia_LabelQualifier__init_0($children.$head(), $this.$position223); -}, -oncia_LabelQualifier__init_ = ($this, $label, $position) => { - $this.$label1 = $label; - $this.$position223 = $position; -}, -oncia_LabelQualifier__init_0 = (var_0, var_1) => { - let var_2 = new oncia_LabelQualifier(); - oncia_LabelQualifier__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_PatternQualifier() { - let a = this; jl_Object.call(a); - a.$labelQualifiers0 = null; - a.$variable21 = null; - a.$expression34 = null; -} -let oncia_PatternQualifier_labelQualifiers = $this => { - return $this.$labelQualifiers0; -}, -oncia_PatternQualifier_variable = $this => { - return $this.$variable21; -}, -oncia_PatternQualifier_expression = $this => { - return $this.$expression34; -}, -oncia_PatternQualifier_productPrefix = $this => { - return $rt_s(5392); -}, -oncia_PatternQualifier_productArity = $this => { - return 3; -}, -oncia_PatternQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$labelQualifiers0; - case 1: - return $this.$variable21; - case 2: - return $this.$expression34; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_PatternQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PatternQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PatternQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PatternQualifier_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_PatternQualifier) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$labelQualifiers0; - var$3 = $x$1.$labelQualifiers0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$variable21; - var$3 = $x$1.$variable21; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$expression34; - $x$1 = $x$1.$expression34; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_PatternQualifier_dup = ($this, $children) => { - return oncia_PatternQualifier__init_0($children.$head(), $children.$apply1(1), $children.$apply1(2)); -}, -oncia_PatternQualifier__init_ = ($this, $labelQualifiers, $variable, $expression) => { - $this.$labelQualifiers0 = $labelQualifiers; - $this.$variable21 = $variable; - $this.$expression34 = $expression; -}, -oncia_PatternQualifier__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncia_PatternQualifier(); - oncia_PatternQualifier__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_ElementQualifier() { - let a = this; jl_Object.call(a); - a.$value23 = null; - a.$position243 = null; -} -let oncia_ElementQualifier_productPrefix = $this => { - return $rt_s(5393); -}, -oncia_ElementQualifier_productArity = $this => { - return 1; -}, -oncia_ElementQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$value23; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ElementQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ElementQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ElementQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ElementQualifier_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ElementQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$value23; - $x$1 = $x$1.$value23; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_ElementQualifier_dup = ($this, $children) => { - return oncia_ElementQualifier__init_0($children.$head(), $this.$position243); -}, -oncia_ElementQualifier__init_ = ($this, $value, $position) => { - $this.$value23 = $value; - $this.$position243 = $position; -}, -oncia_ElementQualifier__init_0 = (var_0, var_1) => { - let var_2 = new oncia_ElementQualifier(); - oncia_ElementQualifier__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_NestedActionResource = $rt_classWithoutFields(0); -function oncia_PropertiesResource() { - let a = this; jl_Object.call(a); - a.$properties12 = null; - a.$position319 = null; -} -let oncia_PropertiesResource_productPrefix = $this => { - return $rt_s(5394); -}, -oncia_PropertiesResource_productArity = $this => { - return 1; -}, -oncia_PropertiesResource_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$properties12; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_PropertiesResource_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PropertiesResource_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PropertiesResource_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_PropertiesResource_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_PropertiesResource) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$properties12; - $x$1 = $x$1.$properties12; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_PropertiesResource__init_ = ($this, $properties, $position) => { - $this.$properties12 = $properties; - $this.$position319 = $position; -}, -oncia_PropertiesResource__init_0 = (var_0, var_1) => { - let var_2 = new oncia_PropertiesResource(); - oncia_PropertiesResource__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_AllPropertyResource() { - jl_Object.call(this); - this.$position326 = null; -} -let oncia_AllPropertyResource_productPrefix = $this => { - return $rt_s(5395); -}, -oncia_AllPropertyResource_productArity = $this => { - return 0; -}, -oncia_AllPropertyResource_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllPropertyResource_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllPropertyResource_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllPropertyResource_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllPropertyResource_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_AllPropertyResource)) - return 0; - return 1; -}, -oncia_AllPropertyResource__init_ = ($this, $position) => { - $this.$position326 = $position; -}, -oncia_AllPropertyResource__init_0 = var_0 => { - let var_1 = new oncia_AllPropertyResource(); - oncia_AllPropertyResource__init_(var_1, var_0); - return var_1; -}; -function oncia_LabelsResource() { - let a = this; jl_Object.call(a); - a.$labels3 = null; - a.$position308 = null; -} -let oncia_LabelsResource_productPrefix = $this => { - return $rt_s(5396); -}, -oncia_LabelsResource_productArity = $this => { - return 1; -}, -oncia_LabelsResource_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$labels3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_LabelsResource_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelsResource_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelsResource_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LabelsResource_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_LabelsResource) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$labels3; - $x$1 = $x$1.$labels3; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_LabelsResource__init_ = ($this, $labels, $position) => { - $this.$labels3 = $labels; - $this.$position308 = $position; -}, -oncia_LabelsResource__init_0 = (var_0, var_1) => { - let var_2 = new oncia_LabelsResource(); - oncia_LabelsResource__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_AllLabelResource() { - jl_Object.call(this); - this.$position314 = null; -} -let oncia_AllLabelResource_productPrefix = $this => { - return $rt_s(5397); -}, -oncia_AllLabelResource_productArity = $this => { - return 0; -}, -oncia_AllLabelResource_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_AllLabelResource_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllLabelResource_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllLabelResource_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_AllLabelResource_equals = ($this, $x$1) => { - if (!($x$1 instanceof oncia_AllLabelResource)) - return 0; - return 1; -}, -oncia_AllLabelResource__init_ = ($this, $position) => { - $this.$position314 = $position; -}, -oncia_AllLabelResource__init_0 = var_0 => { - let var_1 = new oncia_AllLabelResource(); - oncia_AllLabelResource__init_(var_1, var_0); - return var_1; -}; -function onciafn_Neo4jASTFactory$settingQualifier$lambda$_222_0() { - let a = this; jl_Object.call(a); - a.$_0469 = null; - a.$_1163 = null; -} -let onciafn_Neo4jASTFactory$settingQualifier$lambda$_222_0_accept = (var$0, var$1) => { - var$1 = var$1; - ju_ArrayList_add(var$0.$_0469, oncia_SettingQualifier__init_0(var$1, var$0.$_1163)); -}; -function oncie_NaN() { - let a = this; oncie_Expression.call(a); - a.$position114 = null; - a.$value45 = null; -} -let oncie_NaN_isConstantForQuery = $this => { - return 1; -}, -oncie_NaN_position = $this => { - return $this.$position114; -}, -oncie_NaN_asCanonicalStringVal = $this => { - return $rt_s(5398); -}, -oncie_NaN_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_NaN$$anon$9; - oncie_NaN__init_(var$1, $this.$position114); - return var$1; -}, -oncie_NaN_copy = ($this, $position) => { - return oncie_NaN__init_0($position); -}, -oncie_NaN_productPrefix = $this => { - return $rt_s(5398); -}, -oncie_NaN_productArity = $this => { - return 0; -}, -oncie_NaN_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_NaN_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NaN_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_NaN; -}, -oncie_NaN_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NaN_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NaN_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_NaN) ? 0 : 1; - return var$2 && $this instanceof oncie_NaN ? 1 : 0; -}, -oncie_NaN__init_ = ($this, $position) => { - $this.$position114 = $position; - oncie_Expression__init_($this); - s_Predef$_$callClinit(); - $this.$value45 = jl_Double_valueOf(NaN); -}, -oncie_NaN__init_0 = var_0 => { - let var_1 = new oncie_NaN(); - oncie_NaN__init_(var_1, var_0); - return var_1; -}; -function oncie_True() { - let a = this; oncie_Expression.call(a); - a.$position172 = null; - a.$value41 = null; -} -let oncie_True_isConstantForQuery = $this => { - return 1; -}, -oncie_True_position = $this => { - return $this.$position172; -}, -oncie_True_asCanonicalStringVal = $this => { - return $rt_s(20); -}, -oncie_True_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_True$$anon$10; - oncie_True__init_(var$1, $this.$position172); - return var$1; -}, -oncie_True_copy = ($this, $position) => { - return oncie_True__init_0($position); -}, -oncie_True_productPrefix = $this => { - return $rt_s(5399); -}, -oncie_True_productArity = $this => { - return 0; -}, -oncie_True_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_True_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_True_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_True; -}, -oncie_True_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_True_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_True_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_True) ? 0 : 1; - return var$2 && $this instanceof oncie_True ? 1 : 0; -}, -oncie_True__init_ = ($this, $position) => { - $this.$position172 = $position; - oncie_Expression__init_($this); - s_Predef$_$callClinit(); - $this.$value41 = jl_Boolean_valueOf(1); -}, -oncie_True__init_0 = var_0 => { - let var_1 = new oncie_True(); - oncie_True__init_(var_1, var_0); - return var_1; -}; -function oncie_CountStar() { - oncie_Expression.call(this); - this.$position272 = null; -} -let oncie_CountStar_position = $this => { - return $this.$position272; -}, -oncie_CountStar_asCanonicalStringVal = $this => { - return $rt_s(434); -}, -oncie_CountStar_isConstantForQuery = $this => { - return 0; -}, -oncie_CountStar_productPrefix = $this => { - return $rt_s(5400); -}, -oncie_CountStar_productArity = $this => { - return 0; -}, -oncie_CountStar_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_CountStar_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_CountStar_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_CountStar_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_CountStar_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_CountStar) ? 0 : 1; - return var$2 && $this instanceof oncie_CountStar ? 1 : 0; -}, -oncie_CountStar__init_ = ($this, $position) => { - $this.$position272 = $position; - oncie_Expression__init_($this); -}, -oncie_CountStar__init_0 = var_0 => { - let var_1 = new oncie_CountStar(); - oncie_CountStar__init_(var_1, var_0); - return var_1; -}; -function oncie_Infinity() { - let a = this; oncie_Expression.call(a); - a.$position133 = null; - a.$value42 = null; -} -let oncie_Infinity_isConstantForQuery = $this => { - return 1; -}, -oncie_Infinity_position = $this => { - return $this.$position133; -}, -oncie_Infinity_asCanonicalStringVal = $this => { - return $rt_s(5401); -}, -oncie_Infinity_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_Infinity$$anon$8; - oncie_Infinity__init_(var$1, $this.$position133); - return var$1; -}, -oncie_Infinity_copy = ($this, $position) => { - return oncie_Infinity__init_0($position); -}, -oncie_Infinity_productPrefix = $this => { - return $rt_s(5401); -}, -oncie_Infinity_productArity = $this => { - return 0; -}, -oncie_Infinity_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_Infinity_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Infinity_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_Infinity; -}, -oncie_Infinity_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Infinity_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_Infinity_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_Infinity) ? 0 : 1; - return var$2 && $this instanceof oncie_Infinity ? 1 : 0; -}, -oncie_Infinity__init_ = ($this, $position) => { - $this.$position133 = $position; - oncie_Expression__init_($this); - s_Predef$_$callClinit(); - $this.$value42 = jl_Double_valueOf(Infinity); -}, -oncie_Infinity__init_0 = var_0 => { - let var_1 = new oncie_Infinity(); - oncie_Infinity__init_(var_1, var_0); - return var_1; -}; -function oncie_MapExpression() { - let a = this; oncie_Expression.call(a); - a.$items1 = null; - a.$position106 = null; -} -let oncie_MapExpression_items = $this => { - return $this.$items1; -}, -oncie_MapExpression_position = $this => { - return $this.$position106; -}, -oncie_MapExpression_asCanonicalStringVal = $this => { - return sc_IterableOnceOps_mkString$($this.$items1.$map(new oncie_MapExpression$asCanonicalStringVal$lambda$_5_0), $rt_s(432), $rt_s(45), $rt_s(433)); -}, -oncie_MapExpression_isConstantForQuery = $this => { - return $this.$items1.$forall(new oncie_MapExpression$isConstantForQuery$lambda$_6_0); -}, -oncie_MapExpression_mapExpressions = ($this, $f) => { - let var$2, var$3; - var$2 = $this.$items1; - var$3 = new oncie_MapExpression$mapExpressions$lambda$_7_0; - var$3.$_0428 = $f; - return oncie_MapExpression_copy($this, var$2.$map(var$3), $this.$position106); -}, -oncie_MapExpression_copy = ($this, $items, $position) => { - return oncie_MapExpression__init_0($items, $position); -}, -oncie_MapExpression_productPrefix = $this => { - return $rt_s(5402); -}, -oncie_MapExpression_productArity = $this => { - return 1; -}, -oncie_MapExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$items1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_MapExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MapExpression_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MapExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MapExpression_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_MapExpression) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$items1; - $x$1 = $x$1.$items1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_MapExpression)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_MapExpression__init_ = ($this, $items, $position) => { - $this.$items1 = $items; - $this.$position106 = $position; - oncie_Expression__init_($this); -}, -oncie_MapExpression__init_0 = (var_0, var_1) => { - let var_2 = new oncie_MapExpression(); - oncie_MapExpression__init_(var_2, var_0, var_1); - return var_2; -}, -oncie_SemanticDirection = $rt_classWithoutFields(0), -oncie_SemanticDirection$INCOMING$ = $rt_classWithoutFields(), -oncie_SemanticDirection$INCOMING$_MODULE$ = null, -oncie_SemanticDirection$INCOMING$_$callClinit = () => { - oncie_SemanticDirection$INCOMING$_$callClinit = $rt_eraseClinit(oncie_SemanticDirection$INCOMING$); - oncie_SemanticDirection$INCOMING$__clinit_(); -}, -oncie_SemanticDirection$INCOMING$__clinit_ = () => { - let var$1; - var$1 = new oncie_SemanticDirection$INCOMING$; - oncie_SemanticDirection$INCOMING$_$callClinit(); - oncie_SemanticDirection$INCOMING$_MODULE$ = var$1; -}, -oncie_SemanticDirection$INCOMING$_productArity = $this => { - return 0; -}, -oncie_SemanticDirection$INCOMING$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_SemanticDirection$INCOMING$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SemanticDirection$INCOMING$_hashCode = $this => { - return 875423782; -}, -oncie_SemanticDirection$INCOMING$_toString = $this => { - return $rt_s(5403); -}, -oncie_SemanticDirection$BOTH$ = $rt_classWithoutFields(), -oncie_SemanticDirection$BOTH$_MODULE$ = null, -oncie_SemanticDirection$BOTH$__clinit_ = () => { - oncie_SemanticDirection$BOTH$_MODULE$ = new oncie_SemanticDirection$BOTH$; -}, -oncie_SemanticDirection$BOTH$_productArity = $this => { - return 0; -}, -oncie_SemanticDirection$BOTH$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_SemanticDirection$BOTH$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SemanticDirection$BOTH$_hashCode = $this => { - return 2044801; -}, -oncie_SemanticDirection$BOTH$_toString = $this => { - return $rt_s(4633); -}, -oncie_SemanticDirection$OUTGOING$ = $rt_classWithoutFields(), -oncie_SemanticDirection$OUTGOING$_MODULE$ = null, -oncie_SemanticDirection$OUTGOING$_$callClinit = () => { - oncie_SemanticDirection$OUTGOING$_$callClinit = $rt_eraseClinit(oncie_SemanticDirection$OUTGOING$); - oncie_SemanticDirection$OUTGOING$__clinit_(); -}, -oncie_SemanticDirection$OUTGOING$__clinit_ = () => { - let var$1; - var$1 = new oncie_SemanticDirection$OUTGOING$; - oncie_SemanticDirection$OUTGOING$_$callClinit(); - oncie_SemanticDirection$OUTGOING$_MODULE$ = var$1; -}, -oncie_SemanticDirection$OUTGOING$_productArity = $this => { - return 0; -}, -oncie_SemanticDirection$OUTGOING$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_SemanticDirection$OUTGOING$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SemanticDirection$OUTGOING$_hashCode = $this => { - return 844309356; -}, -oncie_SemanticDirection$OUTGOING$_toString = $this => { - return $rt_s(5404); -}; -function oncie_OctalIntegerLiteral() { - let a = this; oncie_Expression.call(a); - a.$octalMatcher0 = null; - a.$value28 = null; - a.$stringVal5 = null; - a.$bitmap$014 = 0; -} -let oncie_OctalIntegerLiteral_asCanonicalStringVal = $this => { - return $this.$stringVal(); -}, -oncie_OctalIntegerLiteral_isConstantForQuery = $this => { - return 1; -}, -oncie_OctalIntegerLiteral_octalMatcher = $this => { - let var$1, var$2, $$je; - if (($this.$bitmap$014 & 1) << 24 >> 24) - return $this.$octalMatcher0; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$014 & 1) << 24 >> 24) - break a; - var$1 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - $this.$octalMatcher0 = sc_StringOps$_r$extension(var$1, s_Predef$_augmentString(s_Predef$_MODULE$, $rt_s(5405))); - $this.$bitmap$014 = ($this.$bitmap$014 | 1) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$2); - } - jl_Object_monitorExitSync($this); - return $this.$octalMatcher0; -}, -oncie_OctalIntegerLiteral_value = $this => { - let var$1, $$je; - if (($this.$bitmap$014 & 2) << 24 >> 24) - return $this.$value28; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$014 & 2) << 24 >> 24) - break a; - var$1 = $this.$stringVal5; - if (var$1 !== null && !s_Option_isEmpty(sum_Regex_unapplySeq(oncie_OctalIntegerLiteral_octalMatcher($this), var$1))) { - s_Predef$_$callClinit(); - var$1 = jl_Long_decode(sc_AbstractIterable_mkString0(sci_List_filter(sci_List_filter(sc_AbstractIterable_toList(s_LowPriorityImplicits_wrapString(s_Predef$_MODULE$, $this.$stringVal5)), oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0__init_0()), oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1__init_0()))); - } else { - s_Predef$_$callClinit(); - var$1 = jl_Long_decode(sc_AbstractIterable_mkString0(sci_List_filter(sc_AbstractIterable_toList(s_LowPriorityImplicits_wrapString(s_Predef$_MODULE$, $this.$stringVal5)), oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2__init_()))); - } - $this.$value28 = var$1; - $this.$bitmap$014 = ($this.$bitmap$014 | 2) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$value28; -}; -function oncie_SignedOctalIntegerLiteral() { - let a = this; oncie_OctalIntegerLiteral.call(a); - a.$stringVal1 = null; - a.$position32 = null; -} -let oncie_SignedOctalIntegerLiteral_stringVal = $this => { - return $this.$stringVal1; -}, -oncie_SignedOctalIntegerLiteral_position = $this => { - return $this.$position32; -}, -oncie_SignedOctalIntegerLiteral_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_SignedOctalIntegerLiteral$$anon$3; - oncie_SignedOctalIntegerLiteral__init_0(var$1, $this.$stringVal1, $this.$position32); - return var$1; -}, -oncie_SignedOctalIntegerLiteral_copy = ($this, $stringVal, $position) => { - return oncie_SignedOctalIntegerLiteral__init_($stringVal, $position); -}, -oncie_SignedOctalIntegerLiteral_productPrefix = $this => { - return $rt_s(5406); -}, -oncie_SignedOctalIntegerLiteral_productArity = $this => { - return 1; -}, -oncie_SignedOctalIntegerLiteral_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$stringVal1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_SignedOctalIntegerLiteral_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedOctalIntegerLiteral_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_SignedOctalIntegerLiteral; -}, -oncie_SignedOctalIntegerLiteral_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedOctalIntegerLiteral_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedOctalIntegerLiteral_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_SignedOctalIntegerLiteral) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$stringVal1; - $x$1 = $x$1.$stringVal1; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_SignedOctalIntegerLiteral)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_SignedOctalIntegerLiteral__init_0 = ($this, $stringVal, $position) => { - $this.$stringVal1 = $stringVal; - $this.$position32 = $position; - $this.$stringVal5 = $stringVal; - oncie_Expression__init_($this); -}, -oncie_SignedOctalIntegerLiteral__init_ = (var_0, var_1) => { - let var_2 = new oncie_SignedOctalIntegerLiteral(); - oncie_SignedOctalIntegerLiteral__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncie_HexIntegerLiteral() { - let a = this; oncie_Expression.call(a); - a.$hexMatcher0 = null; - a.$value31 = null; - a.$stringVal7 = null; - a.$bitmap$015 = 0; -} -let oncie_HexIntegerLiteral_asCanonicalStringVal = $this => { - return $this.$stringVal(); -}, -oncie_HexIntegerLiteral_isConstantForQuery = $this => { - return 1; -}, -oncie_HexIntegerLiteral_hexMatcher = $this => { - let var$1, var$2, $$je; - if (($this.$bitmap$015 & 1) << 24 >> 24) - return $this.$hexMatcher0; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$015 & 1) << 24 >> 24) - break a; - var$1 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - $this.$hexMatcher0 = sc_StringOps$_r$extension(var$1, s_Predef$_augmentString(s_Predef$_MODULE$, $rt_s(5407))); - $this.$bitmap$015 = ($this.$bitmap$015 | 1) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$2); - } - jl_Object_monitorExitSync($this); - return $this.$hexMatcher0; -}, -oncie_HexIntegerLiteral_value = $this => { - let var$1, $$je; - if (($this.$bitmap$015 & 2) << 24 >> 24) - return $this.$value31; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$015 & 2) << 24 >> 24) - break a; - var$1 = $this.$stringVal7; - if (var$1 !== null && !s_Option_isEmpty(sum_Regex_unapplySeq(oncie_HexIntegerLiteral_hexMatcher($this), var$1))) { - s_Predef$_$callClinit(); - var$1 = jl_Long_decode(sc_AbstractIterable_mkString0(sci_List_filter(sc_AbstractIterable_toList(s_LowPriorityImplicits_wrapString(s_Predef$_MODULE$, $this.$stringVal7)), oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0__init_()))); - } else - var$1 = jl_Long_decode($this.$stringVal7); - $this.$value31 = var$1; - $this.$bitmap$015 = ($this.$bitmap$015 | 2) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$value31; -}; -function oncie_SignedHexIntegerLiteral() { - let a = this; oncie_HexIntegerLiteral.call(a); - a.$stringVal4 = null; - a.$position42 = null; -} -let oncie_SignedHexIntegerLiteral_stringVal = $this => { - return $this.$stringVal4; -}, -oncie_SignedHexIntegerLiteral_position = $this => { - return $this.$position42; -}, -oncie_SignedHexIntegerLiteral_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_SignedHexIntegerLiteral$$anon$4; - oncie_SignedHexIntegerLiteral__init_0(var$1, $this.$stringVal4, $this.$position42); - return var$1; -}, -oncie_SignedHexIntegerLiteral_copy = ($this, $stringVal, $position) => { - return oncie_SignedHexIntegerLiteral__init_($stringVal, $position); -}, -oncie_SignedHexIntegerLiteral_productPrefix = $this => { - return $rt_s(5408); -}, -oncie_SignedHexIntegerLiteral_productArity = $this => { - return 1; -}, -oncie_SignedHexIntegerLiteral_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$stringVal4; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_SignedHexIntegerLiteral_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedHexIntegerLiteral_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_SignedHexIntegerLiteral; -}, -oncie_SignedHexIntegerLiteral_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedHexIntegerLiteral_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SignedHexIntegerLiteral_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_SignedHexIntegerLiteral) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$stringVal4; - $x$1 = $x$1.$stringVal4; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; + d: { + e: { + f: { + g: { + h: { + i: { + j: { + k: { + l: { + m: { + n: { + o: { + p: { + q: { + r: { + s: { + t: { + u: { + v: { + w: { + x: { + y: { + z: { + ba: { + bb: { + bc: { + bd: { + be: { + bf: { + bg: { + bh: { + bi: { + bj: { + bk: { + bl: { + bm: { + bn: { + bo: { + bp: { + bq: { + br: { + bs: { + bt: { + bu: { + bv: { + bw: { + bx: { + by: { + bz: { + bA: { + bB: { + bC: { + bD: { + bE: { + bF: { + bG: { + bH: { + bI: { + bJ: { + bK: { + bL: { + bM: { + bN: { + bO: { + bP: { + bQ: { + bR: { + bS: { + bT: { + bU: { + bV: { + bW: { + bX: { + bY: { + bZ: { + b0: { + b1: { + b2: { + b3: { + b4: { + b5: { + b6: { + b7: { + b8: { + b9: { + b$: { + b_: { + ca: { + cb: { + cc: { + cd: { + ce: { + cf: { + cg: { + ch: { + ci: { + cj: { + ck: { + cl: { + cm: { + cn: { + co: { + cp: { + cq: { + cr: { + cs: { + ct: { + cu: { + cv: { + cw: { + cx: { + cy: { + cz: { + cA: { + cB: { + cC: { + cD: { + cE: { + cF: { + cG: { + cH: { + cI: { + cJ: { + cK: { + cL: + { + cM: + { + cN: + { + cO: + { + cP: + { + cQ: + { + cR: + { + cS: + { + cT: + { + cU: + { + cV: + { + cW: + { + cX: + { + cY: + { + cZ: + { + c0: + { + c1: + { + c2: + { + c3: + { + c4: + { + c5: + { + c6: + { + c7: + { + c8: + { + c9: + { + c$: + { + c_: + { + da: + { + db: + { + dc: + { + dd: + { + de: + { + df: + { + dg: + { + dh: + { + di: + { + dj: + { + dk: + { + dl: + { + dm: + { + dn: + { + dp: + { + dq: + { + dr: + { + ds: + { + dt: + { + du: + { + dv: + { + dw: + { + dx: + { + dy: + { + dz: + { + dA: + { + dB: + { + dC: + { + dD: + { + dE: + { + dF: + { + dG: + { + dH: + { + dI: + { + dJ: + { + dK: + { + dL: + { + dM: + { + dN: + { + dO: + { + dP: + { + dQ: + { + dR: + { + dS: + { + dT: + { + dU: + { + dV: + { + dW: + { + dX: + { + dY: + { + dZ: + { + d0: + { + d1: + { + d2: + { + d3: + { + d4: + { + d5: + { + d6: + { + d7: + { + d8: + { + d9: + { + d$: + { + d_: + { + ea: + { + eb: + { + ec: + { + ed: + { + ee: + { + ef: + { + eg: + { + eh: + { + ei: + { + ej: + { + ek: + { + el: + { + em: + { + en: + { + eo: + { + ep: + { + eq: + { + er: + { + es: + { + et: + { + eu: + { + ev: + { + ew: + { + ex: + { + ey: + { + ez: + { + eA: + { + eB: + { + eC: + { + eD: + { + eE: + { + eF: + { + eG: + { + eH: + { + eI: + { + eJ: + { + eK: + { + eL: + { + eM: + { + eN: + { + eO: + { + eP: + { + eQ: + { + eR: + { + eS: + { + eT: + { + eU: + { + eV: + { + eW: + { + eX: + { + eY: + { + eZ: + { + e0: + { + e1: + { + e2: + { + e3: + { + e4: + { + e5: + { + e6: + { + e7: + { + e8: + { + e9: + { + e$: + { + e_: + { + fa: + { + fb: + { + fc: + { + fd: + { + var$4 + = + jl_Class_getName(var$1); + switch + (jl_String_hashCode(var$4)) + { + case 455596914: + break; + case -696583615: + break fd; + case -1108946791: + break fc; + case -1944844053: + break fb; + case 814608189: + break fa; + case -149837559: + break e_; + case -173726688: + break e$; + case 463217861: + break e9; + case 1344819286: + break e8; + case -1885430284: + break e7; + case -1990238911: + break e6; + case -1624236093: + break e5; + case 1139703987: + break e4; + case -2109905426: + break e3; + case 218162326: + break e2; + case 161043599: + break e1; + case -1699139200: + break e0; + case 257300197: + break eZ; + case -1567460475: + break eY; + case -1849450182: + break eX; + case -1161986269: + break eW; + case -871373505: + break eV; + case -2004672172: + break eU; + case -1854989025: + break eT; + case -1446274576: + break eS; + case 1995730627: + break eR; + case -59220920: + break eQ; + case 1905747848: + break eP; + case 876306657: + break eO; + case -551872710: + break eN; + case -1509369838: + break eM; + case 563302816: + break eL; + case -1603524070: + break eK; + case -309054547: + break eJ; + case 597069130: + break eI; + case -1780947554: + break eH; + case 1106883801: + break eG; + case -83434525: + break eF; + case 791743121: + break eE; + case 994181372: + break eD; + case -1090567930: + break eC; + case -173726498: + break eB; + case -324525645: + break eA; + case -985722153: + break ez; + case 552142263: + break ey; + case 35532533: + break ex; + case 808140963: + break ew; + case 552536514: + break ev; + case 1113043596: + break eu; + case 180309318: + break et; + case 1098373913: + break es; + case 171553019: + break er; + case -1601654356: + break eq; + case 1993308723: + break ep; + case -690264973: + break eo; + case 1956588185: + break en; + case -185398452: + break em; + case -354016038: + break el; + case -547163946: + break ek; + case 1836487610: + break ej; + case -124559559: + break ei; + case 1298739788: + break eh; + case 1505287241: + break eg; + case -527102827: + break ef; + case -1375343095: + break ee; + case 1687177394: + break ed; + case -2107404354: + break ec; + case 1252416461: + break eb; + case -799399769: + break ea; + case 1835843740: + break d_; + case 1693844367: + break d$; + case -1971775404: + break d9; + case -596404360: + break d8; + case 1143216060: + break d7; + case 1836370035: + break d6; + case -57639779: + break d5; + case 140909333: + break d4; + case 386603235: + break d3; + case 1111213695: + break d2; + case -1875460719: + break d1; + case -974095529: + break d0; + case -2008336743: + break dZ; + case 767481184: + break dY; + case -446332315: + break dX; + case -1846818353: + break dW; + case 25975226: + break dV; + case -1672152040: + break dU; + case -1869678611: + break dT; + case 2123943227: + break dS; + case -925030859: + break dR; + case -1525448294: + break dQ; + case 490543052: + break dP; + case 553477153: + break dO; + case 1032130721: + break dN; + case 2021177853: + break dM; + case -1399872522: + break dL; + case -101943729: + break dK; + case 68785030: + break dJ; + case 630773776: + break dI; + case -382919541: + break dH; + case -1036156617: + break dG; + case 44260601: + break dF; + case -1053180719: + break dE; + case 941027000: + break dD; + case -2097338776: + break dC; + case -1430315311: + break dB; + case 1743234077: + break dA; + case -1002775686: + break dz; + case 1994092090: + break dy; + case -2007159869: + break dx; + case 1400223240: + break dw; + case -1889018242: + break dv; + case 773610978: + break du; + case 549588447: + break dt; + case 545017439: + break ds; + case 924040911: + break dr; + case 715403871: + break dq; + case 488962701: + break dp; + case -853835129: + break dn; + case 773878287: + break dm; + case -4879682: + break dl; + case -862437735: + break dk; + case 654843427: + break dj; + case 1590622701: + break di; + case -72889640: + break dh; + case 51139985: + break dg; + case 1257722521: + break df; + case -1509467160: + break de; + case 1763538108: + break dd; + case -931686672: + break dc; + case -1569671430: + break db; + case 1086375751: + break da; + case -692014538: + break c_; + case -1377215654: + break c$; + case 1085962297: + break c9; + case -1397478846: + break c8; + case -1930616743: + break c7; + case -1629866976: + break c6; + case 1344230015: + break c5; + case -2070218311: + break c4; + case 967704049: + break c3; + case -1651308197: + break c2; + case 1131485948: + break c1; + case -1631614488: + break c0; + case 257458495: + break cZ; + case -361629069: + break cY; + case -14881129: + break cX; + case 1148049014: + break cW; + case 1887073695: + break cV; + case 1903613124: + break cU; + case 1743141064: + break cT; + case 345156959: + break cS; + case -721388032: + break cR; + case -391096479: + break cQ; + case -1942599922: + break cP; + case -2013484445: + break cO; + case -335388913: + break cN; + case 838435105: + break cM; + case 68878043: + break cL; + case 390701443: + break cK; + case 201251871: + break cJ; + case 1605005311: + break cI; + case 1087067473: + break cH; + case 1131043253: + break cG; + case -1167383453: + break cF; + case -769608440: + break cE; + case 1412105672: + break cD; + case -1845562242: + break cC; + case 1400329004: + break cB; + case 825085381: + break cA; + case -766295774: + break cz; + case 224696041: + break cy; + case -1814577755: + break cx; + case 2117196269: + break cw; + case 352140276: + break cv; + case 1752564371: + break cu; + case 86719663: + break ct; + case 884425735: + break cs; + case -1622751247: + break cr; + case 2111686605: + break cq; + case 185377688: + break cp; + case -921688526: + break co; + case 1553787535: + break cn; + case 1087184836: + break cm; + case -1092119273: + break cl; + case -1388906993: + break ck; + case -1734229172: + break cj; + case -2128450866: + break ci; + case 1555225207: + break ch; + case -1683547861: + break cg; + case -523752746: + break cf; + case -1223363698: + break ce; + case 421974435: + break cd; + case -393782920: + break cc; + case -1090555552: + break cb; + case -2060497514: + break ca; + case 1628021123: + break b_; + case 722610464: + break b$; + case -48137118: + break b9; + case -779711344: + break b8; + case 433120830: + break b7; + case -429840592: + break b6; + case -1189054542: + break b5; + case 1878523352: + break b4; + case -395643130: + break b3; + case -1090555080: + break b2; + case -1154925950: + break b1; + case 984874708: + break b0; + case 49269903: + break bZ; + case 419676835: + break bY; + case 1674145006: + break bX; + case 839143939: + break bW; + case -1991860843: + break bV; + case -1757559093: + break bU; + case -914850913: + break bT; + case 2129483779: + break bS; + case 513352456: + break bR; + case -1054021648: + break bQ; + case 1713437764: + break bP; + case -514003336: + break bO; + case 867259615: + break bN; + case -169006806: + break bM; + case -613470511: + break bL; + case 473626369: + break bK; + case -225666173: + break bJ; + case -2114881767: + break bI; + case -1210939641: + break bH; + case 1319121459: + break bG; + case -2109192114: + break bF; + case 893432812: + break bE; + case -1137178901: + break bD; + case -424824043: + break bC; + case -1090545472: + break bB; + case 1040811906: + break bA; + case 1367871194: + break bz; + case -1515462440: + break by; + case -4879681: + break bx; + case -165889114: + break bw; + case 140235448: + break bv; + case -213184938: + break bu; + case 737899923: + break bt; + case -1231296631: + break bs; + case -1818883748: + break br; + case -1090553155: + break bq; + case 41837598: + break bp; + case 979786518: + break bo; + case -2119301848: + break bn; + case -763184979: + break bm; + case -419512299: + break bl; + case 953953403: + break bk; + case 44353614: + break bj; + case -1588700173: + break bi; + case -2045600235: + break bh; + case 616494848: + break bg; + case 1567771547: + break bf; + case 1671927173: + break be; + case 1091776181: + break bd; + case -677401976: + break bc; + case 1522974895: + break bb; + case 906154098: + break ba; + case 1721669609: + break z; + case -246593737: + break y; + case 24898165: + break x; + case -299067664: + break w; + case -621882202: + break v; + case 841414265: + break u; + case 1096497267: + break t; + case 1803262547: + break s; + case -513789148: + break r; + case -1306656222: + break q; + case 2136683676: + break p; + case -1684645191: + break o; + case -17764532: + break n; + case 736006033: + break m; + case -1240947019: + break l; + case 552712649: + break k; + case -160977132: + break j; + case -493082050: + break i; + case 1996487587: + break h; + case -411300885: + break g; + case 250317358: + break f; + case 605400192: + break e; + case 342871275: + break d; + case -2068787732: + break c; + case -1090567620: + break b; + default: + break a; + } + if + (!jl_String_equals(var$4, + $rt_s(3737))) + break a; + return onciu_RewritableJavascript$PROXY$7_98_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3738))) + break a; + return onciu_RewritableJavascript$PROXY$7_582_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3739))) + break a; + return onciu_RewritableJavascript$PROXY$7_201_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3740))) + break a; + return onciu_RewritableJavascript$PROXY$7_167_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3741))) + break a; + return onciu_RewritableJavascript$PROXY$7_220_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3742))) + break a; + return onciu_RewritableJavascript$PROXY$7_7_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3743))) + break a; + return onciu_RewritableJavascript$PROXY$7_451_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3744))) + break a; + return onciu_RewritableJavascript$PROXY$7_6_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3745))) + break a; + return onciu_RewritableJavascript$PROXY$7_14_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3746))) + break a; + return onciu_RewritableJavascript$PROXY$7_667_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3747))) + break a; + return onciu_RewritableJavascript$PROXY$7_292_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3748))) + break a; + return onciu_RewritableJavascript$PROXY$7_643_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3749))) + break a; + return onciu_RewritableJavascript$PROXY$7_85_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3750))) + break a; + return onciu_RewritableJavascript$PROXY$7_149_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3751))) + break a; + return onciu_RewritableJavascript$PROXY$7_314_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3752))) + break a; + return onciu_RewritableJavascript$PROXY$7_320_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3753))) + break a; + return onciu_RewritableJavascript$PROXY$7_579_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3754))) + break a; + return onciu_RewritableJavascript$PROXY$7_578_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3755))) + break a; + return onciu_RewritableJavascript$PROXY$7_436_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3756))) + break a; + return onciu_RewritableJavascript$PROXY$7_77_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3757))) + break a; + return onciu_RewritableJavascript$PROXY$7_293_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3758))) + break a; + return onciu_RewritableJavascript$PROXY$7_193_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3759))) + break a; + return onciu_RewritableJavascript$PROXY$7_577_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3760))) + break a; + return onciu_RewritableJavascript$PROXY$7_329_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3761))) + break a; + return onciu_RewritableJavascript$PROXY$7_277_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3762))) + break a; + return onciu_RewritableJavascript$PROXY$7_580_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3763))) + break a; + return onciu_RewritableJavascript$PROXY$7_108_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3764))) + break a; + return onciu_RewritableJavascript$PROXY$7_311_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3765))) + break a; + return onciu_RewritableJavascript$PROXY$7_5_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3766))) + break a; + return onciu_RewritableJavascript$PROXY$7_282_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3767))) + break a; + return onciu_RewritableJavascript$PROXY$7_325_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3768))) + break a; + return onciu_RewritableJavascript$PROXY$7_675_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3769))) + break a; + return onciu_RewritableJavascript$PROXY$7_650_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3770))) + break a; + return onciu_RewritableJavascript$PROXY$7_179_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3771))) + break a; + return onciu_RewritableJavascript$PROXY$7_284_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3772))) + break a; + return onciu_RewritableJavascript$PROXY$7_481_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3773))) + break a; + return onciu_RewritableJavascript$PROXY$7_249_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3774))) + break a; + return onciu_RewritableJavascript$PROXY$7_395_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3775))) + break a; + return onciu_RewritableJavascript$PROXY$7_285_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3776))) + break a; + return onciu_RewritableJavascript$PROXY$7_528_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3777))) + break a; + return onciu_RewritableJavascript$PROXY$7_653_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3778))) + break a; + return onciu_RewritableJavascript$PROXY$7_661_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3779))) + break a; + return onciu_RewritableJavascript$PROXY$7_9_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3780))) + break a; + return onciu_RewritableJavascript$PROXY$7_192_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3781))) + break a; + return onciu_RewritableJavascript$PROXY$7_367_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3782))) + break a; + return onciu_RewritableJavascript$PROXY$7_599_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3783))) + break a; + return onciu_RewritableJavascript$PROXY$7_68_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3784))) + break a; + return onciu_RewritableJavascript$PROXY$7_80_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3785))) + break a; + return onciu_RewritableJavascript$PROXY$7_93_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3786))) + break a; + return onciu_RewritableJavascript$PROXY$7_94_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3787))) + break a; + return onciu_RewritableJavascript$PROXY$7_79_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3788))) + break a; + return onciu_RewritableJavascript$PROXY$7_206_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3789))) + break a; + return onciu_RewritableJavascript$PROXY$7_371_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3790))) + break a; + return onciu_RewritableJavascript$PROXY$7_626_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3791))) + break a; + return onciu_RewritableJavascript$PROXY$7_245_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3792))) + break a; + return onciu_RewritableJavascript$PROXY$7_386_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3793))) + break a; + return onciu_RewritableJavascript$PROXY$7_226_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3794))) + break a; + return onciu_RewritableJavascript$PROXY$7_374_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3795))) + break a; + return onciu_RewritableJavascript$PROXY$7_218_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3796))) + break a; + return onciu_RewritableJavascript$PROXY$7_78_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3797))) + break a; + return onciu_RewritableJavascript$PROXY$7_165_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3798))) + break a; + return onciu_RewritableJavascript$PROXY$7_107_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3799))) + break a; + return onciu_RewritableJavascript$PROXY$7_224_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3800))) + break a; + return onciu_RewritableJavascript$PROXY$7_408_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3801))) + break a; + return onciu_RewritableJavascript$PROXY$7_270_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3802))) + break a; + return onciu_RewritableJavascript$PROXY$7_413_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3803))) + break a; + return onciu_RewritableJavascript$PROXY$7_300_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3804))) + break a; + return onciu_RewritableJavascript$PROXY$7_70_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3805))) + break a; + return onciu_RewritableJavascript$PROXY$7_690_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3806))) + break a; + return onciu_RewritableJavascript$PROXY$7_261_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3807))) + break a; + return onciu_RewritableJavascript$PROXY$7_313_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3808))) + break a; + return onciu_RewritableJavascript$PROXY$7_323_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3809))) + break a; + return onciu_RewritableJavascript$PROXY$7_143_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3810))) + break a; + return onciu_RewritableJavascript$PROXY$7_450_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3811))) + break a; + return onciu_RewritableJavascript$PROXY$7_232_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3812))) + break a; + return onciu_RewritableJavascript$PROXY$7_298_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3813))) + break a; + return onciu_RewritableJavascript$PROXY$7_210_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3814))) + break a; + return onciu_RewritableJavascript$PROXY$7_269_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3815))) + break a; + return onciu_RewritableJavascript$PROXY$7_321_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3816))) + break a; + return onciu_RewritableJavascript$PROXY$7_584_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3817))) + break a; + return onciu_RewritableJavascript$PROXY$7_234_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3818))) + break a; + return onciu_RewritableJavascript$PROXY$7_183_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3819))) + break a; + return onciu_RewritableJavascript$PROXY$7_197_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3820))) + break a; + return onciu_RewritableJavascript$PROXY$7_191_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3821))) + break a; + return onciu_RewritableJavascript$PROXY$7_649_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3822))) + break a; + return onciu_RewritableJavascript$PROXY$7_69_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3823))) + break a; + return onciu_RewritableJavascript$PROXY$7_185_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3824))) + break a; + return onciu_RewritableJavascript$PROXY$7_254_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3825))) + break a; + return onciu_RewritableJavascript$PROXY$7_13_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3826))) + break a; + return onciu_RewritableJavascript$PROXY$7_230_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3827))) + break a; + return onciu_RewritableJavascript$PROXY$7_260_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3828))) + break a; + return onciu_RewritableJavascript$PROXY$7_421_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3829))) + break a; + return onciu_RewritableJavascript$PROXY$7_296_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3830))) + break a; + return onciu_RewritableJavascript$PROXY$7_109_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3831))) + break a; + return onciu_RewritableJavascript$PROXY$7_259_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3832))) + break a; + return onciu_RewritableJavascript$PROXY$7_460_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3833))) + break a; + return onciu_RewritableJavascript$PROXY$7_12_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3834))) + break a; + return onciu_RewritableJavascript$PROXY$7_305_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3835))) + break a; + return onciu_RewritableJavascript$PROXY$7_255_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3836))) + break a; + return onciu_RewritableJavascript$PROXY$7_253_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3837))) + break a; + return onciu_RewritableJavascript$PROXY$7_117_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3838))) + break a; + return onciu_RewritableJavascript$PROXY$7_239_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3839))) + break a; + return onciu_RewritableJavascript$PROXY$7_122_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3840))) + break a; + return onciu_RewritableJavascript$PROXY$7_182_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3841))) + break a; + return onciu_RewritableJavascript$PROXY$7_86_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3842))) + break a; + return onciu_RewritableJavascript$PROXY$7_336_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3843))) + break a; + return onciu_RewritableJavascript$PROXY$7_202_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3844))) + break a; + return onciu_RewritableJavascript$PROXY$7_223_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3845))) + break a; + return onciu_RewritableJavascript$PROXY$7_211_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3846))) + break a; + return onciu_RewritableJavascript$PROXY$7_391_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3847))) + break a; + return onciu_RewritableJavascript$PROXY$7_274_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3848))) + break a; + return onciu_RewritableJavascript$PROXY$7_237_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3849))) + break a; + return onciu_RewritableJavascript$PROXY$7_540_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3850))) + break a; + return onciu_RewritableJavascript$PROXY$7_406_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3851))) + break a; + return onciu_RewritableJavascript$PROXY$7_733_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3852))) + break a; + return onciu_RewritableJavascript$PROXY$7_231_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3853))) + break a; + return onciu_RewritableJavascript$PROXY$7_97_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3854))) + break a; + return onciu_RewritableJavascript$PROXY$7_216_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3855))) + break a; + return onciu_RewritableJavascript$PROXY$7_200_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3856))) + break a; + return onciu_RewritableJavascript$PROXY$7_214_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3857))) + break a; + return onciu_RewritableJavascript$PROXY$7_158_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3858))) + break a; + return onciu_RewritableJavascript$PROXY$7_215_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3859))) + break a; + return onciu_RewritableJavascript$PROXY$7_186_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3860))) + break a; + return onciu_RewritableJavascript$PROXY$7_281_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3861))) + break a; + return onciu_RewritableJavascript$PROXY$7_263_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3862))) + break a; + return onciu_RewritableJavascript$PROXY$7_238_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3863))) + break a; + return onciu_RewritableJavascript$PROXY$7_243_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3864))) + break a; + return onciu_RewritableJavascript$PROXY$7_370_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3865))) + break a; + return onciu_RewritableJavascript$PROXY$7_74_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3866))) + break a; + return onciu_RewritableJavascript$PROXY$7_290_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3867))) + break a; + return onciu_RewritableJavascript$PROXY$7_244_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3868))) + break a; + return onciu_RewritableJavascript$PROXY$7_295_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3869))) + break a; + return onciu_RewritableJavascript$PROXY$7_324_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3870))) + break a; + return onciu_RewritableJavascript$PROXY$7_716_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3871))) + break a; + return onciu_RewritableJavascript$PROXY$7_665_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3872))) + break a; + return onciu_RewritableJavascript$PROXY$7_276_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3873))) + break a; + return onciu_RewritableJavascript$PROXY$7_242_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3874))) + break a; + return onciu_RewritableJavascript$PROXY$7_440_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3875))) + break a; + return onciu_RewritableJavascript$PROXY$7_15_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3876))) + break a; + return onciu_RewritableJavascript$PROXY$7_463_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3877))) + break a; + return onciu_RewritableJavascript$PROXY$7_676_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3878))) + break a; + return onciu_RewritableJavascript$PROXY$7_217_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3879))) + break a; + return onciu_RewritableJavascript$PROXY$7_127_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3880))) + break a; + return onciu_RewritableJavascript$PROXY$7_679_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3881))) + break a; + return onciu_RewritableJavascript$PROXY$7_1_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3882))) + break a; + return onciu_RewritableJavascript$PROXY$7_8_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3883))) + break a; + return onciu_RewritableJavascript$PROXY$7_89_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3884))) + break a; + return onciu_RewritableJavascript$PROXY$7_154_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3885))) + break a; + return onciu_RewritableJavascript$PROXY$7_236_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3886))) + break a; + return onciu_RewritableJavascript$PROXY$7_575_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3887))) + break a; + return onciu_RewritableJavascript$PROXY$7_219_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3888))) + break a; + return onciu_RewritableJavascript$PROXY$7_16_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3889))) + break a; + return onciu_RewritableJavascript$PROXY$7_170_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3890))) + break a; + return onciu_RewritableJavascript$PROXY$7_574_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3891))) + break a; + return onciu_RewritableJavascript$PROXY$7_573_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3892))) + break a; + return onciu_RewritableJavascript$PROXY$7_685_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3893))) + break a; + return onciu_RewritableJavascript$PROXY$7_0_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3894))) + break a; + return onciu_RewritableJavascript$PROXY$7_687_copyConstructor(var$1, + var$2, + var$3); + } + if + (!jl_String_equals(var$4, + $rt_s(3895))) + break a; + return onciu_RewritableJavascript$PROXY$7_299_copyConstructor(var$1, + var$2, + var$3); + } + if (!jl_String_equals(var$4, + $rt_s(3896))) + break a; + return onciu_RewritableJavascript$PROXY$7_266_copyConstructor(var$1, + var$2, + var$3); + } + if (!jl_String_equals(var$4, + $rt_s(3897))) + break a; + return onciu_RewritableJavascript$PROXY$7_331_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, + $rt_s(3898))) + break a; + return onciu_RewritableJavascript$PROXY$7_449_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, + $rt_s(3899))) + break a; + return onciu_RewritableJavascript$PROXY$7_241_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, + $rt_s(3900))) + break a; + return onciu_RewritableJavascript$PROXY$7_303_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, + $rt_s(3901))) + break a; + return onciu_RewritableJavascript$PROXY$7_84_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, + $rt_s(3902))) + break a; + return onciu_RewritableJavascript$PROXY$7_278_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3903))) + break a; + return onciu_RewritableJavascript$PROXY$7_732_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3904))) + break a; + return onciu_RewritableJavascript$PROXY$7_250_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3905))) + break a; + return onciu_RewritableJavascript$PROXY$7_339_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3906))) + break a; + return onciu_RewritableJavascript$PROXY$7_204_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3907))) + break a; + return onciu_RewritableJavascript$PROXY$7_222_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3908))) + break a; + return onciu_RewritableJavascript$PROXY$7_306_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3909))) + break a; + return onciu_RewritableJavascript$PROXY$7_199_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3910))) + break a; + return onciu_RewritableJavascript$PROXY$7_267_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3911))) + break a; + return onciu_RewritableJavascript$PROXY$7_279_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3912))) + break a; + return onciu_RewritableJavascript$PROXY$7_317_copyConstructor(var$1, + var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3913))) + break a; + return onciu_RewritableJavascript$PROXY$7_332_copyConstructor(var$1, var$2, + var$3); + } + if (!jl_String_equals(var$4, $rt_s(3914))) + break a; + return onciu_RewritableJavascript$PROXY$7_688_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3915))) + break a; + return onciu_RewritableJavascript$PROXY$7_662_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3916))) + break a; + return onciu_RewritableJavascript$PROXY$7_90_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3917))) + break a; + return onciu_RewritableJavascript$PROXY$7_262_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3918))) + break a; + return onciu_RewritableJavascript$PROXY$7_492_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3919))) + break a; + return onciu_RewritableJavascript$PROXY$7_146_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3920))) + break a; + return onciu_RewritableJavascript$PROXY$7_171_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3921))) + break a; + return onciu_RewritableJavascript$PROXY$7_396_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3922))) + break a; + return onciu_RewritableJavascript$PROXY$7_625_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3923))) + break a; + return onciu_RewritableJavascript$PROXY$7_381_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3924))) + break a; + return onciu_RewritableJavascript$PROXY$7_581_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3925))) + break a; + return onciu_RewritableJavascript$PROXY$7_81_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3926))) + break a; + return onciu_RewritableJavascript$PROXY$7_445_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3927))) + break a; + return onciu_RewritableJavascript$PROXY$7_327_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3928))) + break a; + return onciu_RewritableJavascript$PROXY$7_682_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3929))) + break a; + return onciu_RewritableJavascript$PROXY$7_291_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3930))) + break a; + return onciu_RewritableJavascript$PROXY$7_213_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3931))) + break a; + return onciu_RewritableJavascript$PROXY$7_229_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3932))) + break a; + return onciu_RewritableJavascript$PROXY$7_156_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3933))) + break a; + return onciu_RewritableJavascript$PROXY$7_198_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3934))) + break a; + return onciu_RewritableJavascript$PROXY$7_247_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3935))) + break a; + return onciu_RewritableJavascript$PROXY$7_100_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3936))) + break a; + return onciu_RewritableJavascript$PROXY$7_83_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3937))) + break a; + return onciu_RewritableJavascript$PROXY$7_309_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3938))) + break a; + return onciu_RewritableJavascript$PROXY$7_125_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3939))) + break a; + return onciu_RewritableJavascript$PROXY$7_301_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3940))) + break a; + return onciu_RewritableJavascript$PROXY$7_304_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3941))) + break a; + return onciu_RewritableJavascript$PROXY$7_322_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3942))) + break a; + return onciu_RewritableJavascript$PROXY$7_180_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3943))) + break a; + return onciu_RewritableJavascript$PROXY$7_11_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3944))) + break a; + return onciu_RewritableJavascript$PROXY$7_207_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3945))) + break a; + return onciu_RewritableJavascript$PROXY$7_307_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3946))) + break a; + return onciu_RewritableJavascript$PROXY$7_359_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3947))) + break a; + return onciu_RewritableJavascript$PROXY$7_172_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3948))) + break a; + return onciu_RewritableJavascript$PROXY$7_287_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3949))) + break a; + return onciu_RewritableJavascript$PROXY$7_390_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3950))) + break a; + return onciu_RewritableJavascript$PROXY$7_4_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3951))) + break a; + return onciu_RewritableJavascript$PROXY$7_190_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3952))) + break a; + return onciu_RewritableJavascript$PROXY$7_268_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3953))) + break a; + return onciu_RewritableJavascript$PROXY$7_3_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3954))) + break a; + return onciu_RewritableJavascript$PROXY$7_178_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3955))) + break a; + return onciu_RewritableJavascript$PROXY$7_194_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3956))) + break a; + return onciu_RewritableJavascript$PROXY$7_176_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3957))) + break a; + return onciu_RewritableJavascript$PROXY$7_660_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3958))) + break a; + return onciu_RewritableJavascript$PROXY$7_407_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3959))) + break a; + return onciu_RewritableJavascript$PROXY$7_187_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3960))) + break a; + return onciu_RewritableJavascript$PROXY$7_203_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3961))) + break a; + return onciu_RewritableJavascript$PROXY$7_280_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3962))) + break a; + return onciu_RewritableJavascript$PROXY$7_208_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3963))) + break a; + return onciu_RewritableJavascript$PROXY$7_627_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3964))) + break a; + return onciu_RewritableJavascript$PROXY$7_91_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3965))) + break a; + return onciu_RewritableJavascript$PROXY$7_175_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3966))) + break a; + return onciu_RewritableJavascript$PROXY$7_76_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3967))) + break a; + return onciu_RewritableJavascript$PROXY$7_283_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3968))) + break a; + return onciu_RewritableJavascript$PROXY$7_375_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3969))) + break a; + return onciu_RewritableJavascript$PROXY$7_656_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3970))) + break a; + return onciu_RewritableJavascript$PROXY$7_196_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3971))) + break a; + return onciu_RewritableJavascript$PROXY$7_133_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3972))) + break a; + return onciu_RewritableJavascript$PROXY$7_177_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3973))) + break a; + return onciu_RewritableJavascript$PROXY$7_162_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3974))) + break a; + return onciu_RewritableJavascript$PROXY$7_228_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3975))) + break a; + return onciu_RewritableJavascript$PROXY$7_18_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3976))) + break a; + return onciu_RewritableJavascript$PROXY$7_2_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3977))) + break a; + return onciu_RewritableJavascript$PROXY$7_209_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3978))) + break a; + return onciu_RewritableJavascript$PROXY$7_181_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3979))) + break a; + return onciu_RewritableJavascript$PROXY$7_195_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3980))) + break a; + return onciu_RewritableJavascript$PROXY$7_652_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3981))) + break a; + return onciu_RewritableJavascript$PROXY$7_591_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3982))) + break a; + return onciu_RewritableJavascript$PROXY$7_73_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3983))) + break a; + return onciu_RewritableJavascript$PROXY$7_101_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3984))) + break a; + return onciu_RewritableJavascript$PROXY$7_264_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3985))) + break a; + return onciu_RewritableJavascript$PROXY$7_135_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3986))) + break a; + return onciu_RewritableJavascript$PROXY$7_272_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3987))) + break a; + return onciu_RewritableJavascript$PROXY$7_288_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3988))) + break a; + return onciu_RewritableJavascript$PROXY$7_681_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3989))) + break a; + return onciu_RewritableJavascript$PROXY$7_82_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3990))) + break a; + return onciu_RewritableJavascript$PROXY$7_308_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3991))) + break a; + return onciu_RewritableJavascript$PROXY$7_697_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3992))) + break a; + return onciu_RewritableJavascript$PROXY$7_319_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3993))) + break a; + return onciu_RewritableJavascript$PROXY$7_384_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3994))) + break a; + return onciu_RewritableJavascript$PROXY$7_397_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3995))) + break a; + return onciu_RewritableJavascript$PROXY$7_318_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3996))) + break a; + return onciu_RewritableJavascript$PROXY$7_168_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3997))) + break a; + return onciu_RewritableJavascript$PROXY$7_10_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3998))) + break a; + return onciu_RewritableJavascript$PROXY$7_87_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(3999))) + break a; + return onciu_RewritableJavascript$PROXY$7_246_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4000))) + break a; + return onciu_RewritableJavascript$PROXY$7_256_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4001))) + break a; + return onciu_RewritableJavascript$PROXY$7_330_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4002))) + break a; + return onciu_RewritableJavascript$PROXY$7_174_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4003))) + break a; + return onciu_RewritableJavascript$PROXY$7_124_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4004))) + break a; + return onciu_RewritableJavascript$PROXY$7_593_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4005))) + break a; + return onciu_RewritableJavascript$PROXY$7_95_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4006))) + break a; + return onciu_RewritableJavascript$PROXY$7_121_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4007))) + break a; + return onciu_RewritableJavascript$PROXY$7_166_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4008))) + break a; + return onciu_RewritableJavascript$PROXY$7_674_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4009))) + break a; + return onciu_RewritableJavascript$PROXY$7_96_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4010))) + break a; + return onciu_RewritableJavascript$PROXY$7_666_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4011))) + break a; + return onciu_RewritableJavascript$PROXY$7_189_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4012))) + break a; + return onciu_RewritableJavascript$PROXY$7_169_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4013))) + break a; + return onciu_RewritableJavascript$PROXY$7_495_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4014))) + break a; + return onciu_RewritableJavascript$PROXY$7_106_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4015))) + break a; + return onciu_RewritableJavascript$PROXY$7_257_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4016))) + break a; + return onciu_RewritableJavascript$PROXY$7_19_copyConstructor(var$1, var$2, var$3); + } + if (!jl_String_equals(var$4, $rt_s(4017))) + break a; + return onciu_RewritableJavascript$PROXY$7_184_copyConstructor(var$1, var$2, var$3); } - if ($x$1 !== null) - break b; + if (!jl_String_equals(var$4, $rt_s(4018))) + break a; + return onciu_RewritableJavascript$PROXY$7_289_copyConstructor(var$1, var$2, var$3); } - if (!($this instanceof oncie_SignedHexIntegerLiteral)) - break b; + if (!jl_String_equals(var$4, $rt_s(4019))) + break a; + return onciu_RewritableJavascript$PROXY$7_683_copyConstructor(var$1, var$2, var$3); } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_SignedHexIntegerLiteral__init_0 = ($this, $stringVal, $position) => { - $this.$stringVal4 = $stringVal; - $this.$position42 = $position; - $this.$stringVal7 = $stringVal; - oncie_Expression__init_($this); -}, -oncie_SignedHexIntegerLiteral__init_ = (var_0, var_1) => { - let var_2 = new oncie_SignedHexIntegerLiteral(); - oncie_SignedHexIntegerLiteral__init_0(var_2, var_0, var_1); - return var_2; -}, -oncie_DoubleLiteral = $rt_classWithoutFields(0); -function oncie_DecimalDoubleLiteral() { - let a = this; oncie_Expression.call(a); - a.$doubleMatcher0 = null; - a.$value29 = null; - a.$stringVal3 = null; - a.$position38 = null; - a.$bitmap$08 = 0; -} -let oncie_DecimalDoubleLiteral_asCanonicalStringVal = $this => { - return $this.$stringVal(); -}, -oncie_DecimalDoubleLiteral_isConstantForQuery = $this => { - return 1; -}, -oncie_DecimalDoubleLiteral_stringVal = $this => { - return $this.$stringVal3; -}, -oncie_DecimalDoubleLiteral_position = $this => { - return $this.$position38; -}, -oncie_DecimalDoubleLiteral_doubleMatcher = $this => { - let var$1, var$2, $$je; - if (($this.$bitmap$08 & 1) << 24 >> 24) - return $this.$doubleMatcher0; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$08 & 1) << 24 >> 24) - break a; - var$1 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - $this.$doubleMatcher0 = sc_StringOps$_r$extension(var$1, s_Predef$_augmentString(s_Predef$_MODULE$, $rt_s(5409))); - $this.$bitmap$08 = ($this.$bitmap$08 | 1) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$2 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$2); - } - jl_Object_monitorExitSync($this); - return $this.$doubleMatcher0; -}, -oncie_DecimalDoubleLiteral_value = $this => { - let var$1, $$je; - if (($this.$bitmap$08 & 2) << 24 >> 24) - return $this.$value29; - jl_Object_monitorEnterSync($this); - a: { - try { - if (($this.$bitmap$08 & 2) << 24 >> 24) + if (!jl_String_equals(var$4, $rt_s(4020))) break a; - var$1 = oncie_DecimalDoubleLiteral_stringVal($this); - if (var$1 !== null && !s_Option_isEmpty(sum_Regex_unapplySeq(oncie_DecimalDoubleLiteral_doubleMatcher($this), var$1))) { - s_Predef$_$callClinit(); - var$1 = s_Predef$_double2Double(s_Predef$_MODULE$, jl_Double_parseDouble(jl_String_replace(oncie_DecimalDoubleLiteral_stringVal($this), $rt_s(5410), $rt_s(4)))); - } else { - s_Predef$_$callClinit(); - var$1 = s_Predef$_double2Double(s_Predef$_MODULE$, jl_Double_parseDouble(oncie_DecimalDoubleLiteral_stringVal($this))); - } - $this.$value29 = var$1; - $this.$bitmap$08 = ($this.$bitmap$08 | 2) << 24 >> 24; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$value29; -}, -oncie_DecimalDoubleLiteral_asSensitiveLiteral = $this => { - let var$1; - var$1 = new oncie_DecimalDoubleLiteral$$anon$5; - oncie_DecimalDoubleLiteral__init_0(var$1, $this.$stringVal3, $this.$position38); - return var$1; -}, -oncie_DecimalDoubleLiteral_copy = ($this, $stringVal, $position) => { - return oncie_DecimalDoubleLiteral__init_($stringVal, $position); -}, -oncie_DecimalDoubleLiteral_productPrefix = $this => { - return $rt_s(5411); -}, -oncie_DecimalDoubleLiteral_productArity = $this => { - return 1; -}, -oncie_DecimalDoubleLiteral_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$stringVal3; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_DecimalDoubleLiteral_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_DecimalDoubleLiteral_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_DecimalDoubleLiteral; -}, -oncie_DecimalDoubleLiteral_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_DecimalDoubleLiteral_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_DecimalDoubleLiteral_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_DecimalDoubleLiteral) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$stringVal3; - $x$1 = $x$1.$stringVal3; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_DecimalDoubleLiteral)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_DecimalDoubleLiteral__init_0 = ($this, $stringVal, $position) => { - $this.$stringVal3 = $stringVal; - $this.$position38 = $position; - oncie_Expression__init_($this); -}, -oncie_DecimalDoubleLiteral__init_ = (var_0, var_1) => { - let var_2 = new oncie_DecimalDoubleLiteral(); - oncie_DecimalDoubleLiteral__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_ExistsExpression() { - let a = this; oncie_Expression.call(a); - a.$query2 = null; - a.$position16 = null; - a.$computedIntroducedVariables0 = null; - a.$computedScopeDependencies1 = null; -} -let oncia_ExistsExpression_introducedVariables = $this => { - return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); -}, -oncia_ExistsExpression_scopeDependencies = $this => { - return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); -}, -oncia_ExistsExpression_dependencies = $this => { - return $this.$scopeDependencies(); -}, -oncia_ExistsExpression_isConstantForQuery = $this => { - return 0; -}, -oncia_ExistsExpression_query = $this => { - return $this.$query2; -}, -oncia_ExistsExpression_position = $this => { - return $this.$position16; -}, -oncia_ExistsExpression_computedIntroducedVariables = $this => { - return $this.$computedIntroducedVariables0; -}, -oncia_ExistsExpression_computedScopeDependencies = $this => { - return $this.$computedScopeDependencies1; -}, -oncia_ExistsExpression_withQuery = ($this, $query) => { - return oncia_ExistsExpression__init_0($query, $this.$position16, $this.$computedIntroducedVariables0, $this.$computedScopeDependencies1); -}, -oncia_ExistsExpression_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { - return oncia_ExistsExpression_copy($this, $this.$query2, $this.$position16, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies1); -}, -oncia_ExistsExpression_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { - return oncia_ExistsExpression_copy($this, $this.$query2, $this.$position16, $this.$computedIntroducedVariables0, s_Some__init_($computedScopeDependencies)); -}, -oncia_ExistsExpression_subqueryAstNode = $this => { - return $this.$query2; -}, -oncia_ExistsExpression_dup = ($this, $children) => { - return oncia_ExistsExpression__init_0($children.$head(), $this.$position16, $this.$computedIntroducedVariables0, $this.$computedScopeDependencies1); -}, -oncia_ExistsExpression_copy = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { - return oncia_ExistsExpression__init_0($query, $position, $computedIntroducedVariables, $computedScopeDependencies); -}, -oncia_ExistsExpression_productPrefix = $this => { - return $rt_s(5412); -}, -oncia_ExistsExpression_productArity = $this => { - return 1; -}, -oncia_ExistsExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$query2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ExistsExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExistsExpression_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExistsExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExistsExpression_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ExistsExpression) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$query2; - $x$1 = $x$1.$query2; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_ExistsExpression)) - break b; - } - var$3 = 1; - break a; + return onciu_RewritableJavascript$PROXY$7_361_copyConstructor(var$1, var$2, var$3); } - var$3 = 0; - } - return var$3; -}, -oncia_ExistsExpression_dup1 = ($this, $children) => { - return oncia_ExistsExpression_dup($this, $children); -}, -oncia_ExistsExpression_dup0 = ($this, $children) => { - return oncia_ExistsExpression_dup($this, $children); -}, -oncia_ExistsExpression__init_ = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { - $this.$query2 = $query; - $this.$position16 = $position; - $this.$computedIntroducedVariables0 = $computedIntroducedVariables; - $this.$computedScopeDependencies1 = $computedScopeDependencies; - oncie_Expression__init_($this); -}, -oncia_ExistsExpression__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_ExistsExpression(); - oncia_ExistsExpression__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncia_CountExpression() { - let a = this; oncie_Expression.call(a); - a.$query3 = null; - a.$position17 = null; - a.$computedIntroducedVariables2 = null; - a.$computedScopeDependencies2 = null; -} -let oncia_CountExpression_introducedVariables = $this => { - return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); -}, -oncia_CountExpression_scopeDependencies = $this => { - return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); -}, -oncia_CountExpression_dependencies = $this => { - return $this.$scopeDependencies(); -}, -oncia_CountExpression_isConstantForQuery = $this => { - return 0; -}, -oncia_CountExpression_query = $this => { - return $this.$query3; -}, -oncia_CountExpression_position = $this => { - return $this.$position17; -}, -oncia_CountExpression_computedIntroducedVariables = $this => { - return $this.$computedIntroducedVariables2; -}, -oncia_CountExpression_computedScopeDependencies = $this => { - return $this.$computedScopeDependencies2; -}, -oncia_CountExpression_withQuery = ($this, $query) => { - return oncia_CountExpression__init_0($query, $this.$position17, $this.$computedIntroducedVariables2, $this.$computedScopeDependencies2); -}, -oncia_CountExpression_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { - return oncia_CountExpression_copy($this, $this.$query3, $this.$position17, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies2); -}, -oncia_CountExpression_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { - return oncia_CountExpression_copy($this, $this.$query3, $this.$position17, $this.$computedIntroducedVariables2, s_Some__init_($computedScopeDependencies)); -}, -oncia_CountExpression_subqueryAstNode = $this => { - return $this.$query3; -}, -oncia_CountExpression_dup = ($this, $children) => { - return oncia_CountExpression__init_0($children.$head(), $this.$position17, $this.$computedIntroducedVariables2, $this.$computedScopeDependencies2); -}, -oncia_CountExpression_copy = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { - return oncia_CountExpression__init_0($query, $position, $computedIntroducedVariables, $computedScopeDependencies); -}, -oncia_CountExpression_productPrefix = $this => { - return $rt_s(5413); -}, -oncia_CountExpression_productArity = $this => { - return 1; -}, -oncia_CountExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$query3; - default: + if (jl_String_equals(var$4, $rt_s(4021))) + return onciu_RewritableJavascript$PROXY$7_669_copyConstructor(var$1, var$2, var$3); } - return sr_Statics_ioobe($x$1); -}, -oncia_CountExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CountExpression_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CountExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return null; }, -oncia_CountExpression_equals = ($this, $x$1) => { - let var$2, var$3; +onciu_RewritableJavascript_numParameters = var$1 => { + let var$2; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CountExpression) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$query3; - $x$1 = $x$1.$query3; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; + c: { + d: { + e: { + f: { + g: { + h: { + i: { + j: { + k: { + l: { + m: { + n: { + o: { + p: { + q: { + r: { + s: { + t: { + u: { + v: { + w: { + x: { + y: { + z: { + ba: { + bb: { + bc: { + bd: { + be: { + bf: { + bg: { + bh: { + bi: { + bj: { + bk: { + bl: { + bm: { + bn: { + bo: { + bp: { + bq: { + br: { + bs: { + bt: { + bu: { + bv: { + bw: { + bx: { + by: { + bz: { + bA: { + bB: { + bC: { + bD: { + bE: { + bF: { + bG: { + bH: { + bI: { + bJ: { + bK: { + bL: { + bM: { + bN: { + bO: { + bP: { + bQ: { + bR: { + bS: { + bT: { + bU: { + bV: { + bW: { + bX: { + bY: { + bZ: { + b0: { + b1: { + b2: { + b3: { + b4: { + b5: { + b6: { + b7: { + b8: { + b9: { + b$: { + b_: { + ca: { + cb: { + cc: { + cd: { + ce: { + cf: { + cg: { + ch: { + ci: { + cj: { + ck: { + cl: { + cm: { + cn: { + co: { + cp: { + cq: { + cr: { + cs: { + ct: { + cu: { + cv: { + cw: { + cx: { + cy: { + cz: { + cA: { + cB: { + cC: { + cD: { + cE: { + cF: { + cG: { + cH: { + cI: { + cJ: { + cK: { + cL: + { + cM: + { + cN: + { + cO: + { + cP: + { + cQ: + { + cR: + { + cS: + { + cT: + { + cU: + { + cV: + { + cW: + { + cX: + { + cY: + { + cZ: + { + c0: + { + c1: + { + c2: + { + c3: + { + c4: + { + c5: + { + c6: + { + c7: + { + c8: + { + c9: + { + c$: + { + c_: + { + da: + { + db: + { + dc: + { + dd: + { + de: + { + df: + { + dg: + { + dh: + { + di: + { + dj: + { + dk: + { + dl: + { + dm: + { + dn: + { + dp: + { + dq: + { + dr: + { + ds: + { + dt: + { + du: + { + dv: + { + dw: + { + dx: + { + dy: + { + dz: + { + dA: + { + dB: + { + dC: + { + dD: + { + dE: + { + dF: + { + dG: + { + dH: + { + dI: + { + dJ: + { + dK: + { + dL: + { + dM: + { + dN: + { + dO: + { + dP: + { + dQ: + { + dR: + { + dS: + { + dT: + { + dU: + { + dV: + { + dW: + { + dX: + { + dY: + { + dZ: + { + d0: + { + d1: + { + d2: + { + d3: + { + d4: + { + d5: + { + d6: + { + d7: + { + d8: + { + d9: + { + d$: + { + d_: + { + ea: + { + eb: + { + ec: + { + ed: + { + ee: + { + ef: + { + eg: + { + eh: + { + ei: + { + ej: + { + ek: + { + el: + { + em: + { + en: + { + eo: + { + ep: + { + eq: + { + er: + { + es: + { + et: + { + eu: + { + ev: + { + ew: + { + ex: + { + ey: + { + ez: + { + eA: + { + eB: + { + eC: + { + eD: + { + eE: + { + eF: + { + eG: + { + eH: + { + eI: + { + eJ: + { + eK: + { + eL: + { + eM: + { + eN: + { + eO: + { + eP: + { + eQ: + { + eR: + { + eS: + { + eT: + { + eU: + { + eV: + { + eW: + { + eX: + { + eY: + { + eZ: + { + e0: + { + e1: + { + e2: + { + e3: + { + e4: + { + e5: + { + e6: + { + e7: + { + e8: + { + e9: + { + var$2 + = + jl_Class_getName(var$1); + switch + (jl_String_hashCode(var$2)) + { + case 455596914: + break; + case -696583615: + break e9; + case -1108946791: + break e8; + case -1944844053: + break e7; + case 814608189: + break e6; + case -149837559: + break e5; + case -173726688: + break e4; + case 463217861: + break e3; + case 1344819286: + break e2; + case -1885430284: + break e1; + case -1990238911: + break e0; + case -1624236093: + break eZ; + case 1139703987: + break eY; + case 161043599: + break eX; + case -1699139200: + break eW; + case 218162326: + break eV; + case 257300197: + break eU; + case -1567460475: + break eT; + case -1849450182: + break eS; + case -1161986269: + break eR; + case -871373505: + break eQ; + case -2004672172: + break eP; + case -1854989025: + break eO; + case -1446274576: + break eN; + case 1995730627: + break eM; + case -59220920: + break eL; + case 1905747848: + break eK; + case 876306657: + break eJ; + case -551872710: + break eI; + case -1509369838: + break eH; + case 563302816: + break eG; + case -1603524070: + break eF; + case -309054547: + break eE; + case 597069130: + break eD; + case -1780947554: + break eC; + case -83434525: + break eB; + case 1106883801: + break eA; + case 994181372: + break ez; + case 791743121: + break ey; + case -173726498: + break ex; + case -1090567930: + break ew; + case -324525645: + break ev; + case -985722153: + break eu; + case 552142263: + break et; + case 35532533: + break es; + case 808140963: + break er; + case 552536514: + break eq; + case 1113043596: + break ep; + case 180309318: + break eo; + case 1098373913: + break en; + case -1601654356: + break em; + case 171553019: + break el; + case 1993308723: + break ek; + case 1956588185: + break ej; + case -690264973: + break ei; + case -185398452: + break eh; + case -354016038: + break eg; + case -547163946: + break ef; + case 1836487610: + break ee; + case -124559559: + break ed; + case 1298739788: + break ec; + case -527102827: + break eb; + case 1505287241: + break ea; + case 1687177394: + break d_; + case -1375343095: + break d$; + case -2107404354: + break d9; + case 1252416461: + break d8; + case -799399769: + break d7; + case 1693844367: + break d6; + case 1835843740: + break d5; + case -1971775404: + break d4; + case -596404360: + break d3; + case 1143216060: + break d2; + case 1836370035: + break d1; + case -57639779: + break d0; + case 386603235: + break dZ; + case 140909333: + break dY; + case 1111213695: + break dX; + case -1875460719: + break dW; + case -974095529: + break dV; + case -2008336743: + break dU; + case 767481184: + break dT; + case -446332315: + break dS; + case -1846818353: + break dR; + case 25975226: + break dQ; + case -1672152040: + break dP; + case -1869678611: + break dO; + case 2123943227: + break dN; + case -925030859: + break dM; + case -1525448294: + break dL; + case 490543052: + break dK; + case 553477153: + break dJ; + case 1032130721: + break dI; + case 2021177853: + break dH; + case -1399872522: + break dG; + case -101943729: + break dF; + case 68785030: + break dE; + case 630773776: + break dD; + case -382919541: + break dC; + case -1036156617: + break dB; + case 44260601: + break dA; + case -1053180719: + break dz; + case 941027000: + break dy; + case -2097338776: + break dx; + case -1430315311: + break dw; + case 1743234077: + break dv; + case -1002775686: + break du; + case -2007159869: + break dt; + case 1994092090: + break ds; + case 1400223240: + break dr; + case -1889018242: + break dq; + case 773610978: + break dp; + case 549588447: + break dn; + case 545017439: + break dm; + case 924040911: + break dl; + case 715403871: + break dk; + case 488962701: + break dj; + case 773878287: + break di; + case -853835129: + break dh; + case -4879682: + break dg; + case -862437735: + break df; + case 654843427: + break de; + case 1590622701: + break dd; + case -72889640: + break dc; + case 51139985: + break db; + case 1257722521: + break da; + case -1509467160: + break c_; + case -931686672: + break c$; + case -1569671430: + break c9; + case 1086375751: + break c8; + case -692014538: + break c7; + case -1377215654: + break c6; + case 1085962297: + break c5; + case -1397478846: + break c4; + case -1930616743: + break c3; + case -1629866976: + break c2; + case 1344230015: + break c1; + case -2070218311: + break c0; + case 967704049: + break cZ; + case -1651308197: + break cY; + case 1131485948: + break cX; + case -1631614488: + break cW; + case 257458495: + break cV; + case -361629069: + break cU; + case -14881129: + break cT; + case 1887073695: + break cS; + case 1903613124: + break cR; + case 1743141064: + break cQ; + case 345156959: + break cP; + case -721388032: + break cO; + case -391096479: + break cN; + case -1942599922: + break cM; + case -2013484445: + break cL; + case -335388913: + break cK; + case 838435105: + break cJ; + case 68878043: + break cI; + case 390701443: + break cH; + case 201251871: + break cG; + case 1605005311: + break cF; + case 1131043253: + break cE; + case 1087067473: + break cD; + case -1167383453: + break cC; + case -769608440: + break cB; + case 1412105672: + break cA; + case 1400329004: + break cz; + case -1845562242: + break cy; + case 825085381: + break cx; + case -766295774: + break cw; + case 224696041: + break cv; + case -1814577755: + break cu; + case 352140276: + break ct; + case 2117196269: + break cs; + case 1752564371: + break cr; + case 86719663: + break cq; + case 884425735: + break cp; + case -1622751247: + break co; + case 2111686605: + break cn; + case -921688526: + break cm; + case 185377688: + break cl; + case 1553787535: + break ck; + case -1092119273: + break cj; + case -1388906993: + break ci; + case 1087184836: + break ch; + case -1734229172: + break cg; + case -2128450866: + break cf; + case 1555225207: + break ce; + case -1683547861: + break cd; + case -523752746: + break cc; + case -1223363698: + break cb; + case 421974435: + break ca; + case -393782920: + break b_; + case -1090555552: + break b$; + case -2060497514: + break b9; + case 1628021123: + break b8; + case 722610464: + break b7; + case -48137118: + break b6; + case -779711344: + break b5; + case 433120830: + break b4; + case -429840592: + break b3; + case -1189054542: + break b2; + case 1878523352: + break b1; + case -395643130: + break b0; + case -1090555080: + break bZ; + case -1154925950: + break bY; + case 49269903: + break bX; + case 984874708: + break bW; + case 419676835: + break bV; + case 1674145006: + break bU; + case 839143939: + break bT; + case -1991860843: + break bS; + case -1757559093: + break bR; + case 2129483779: + break bQ; + case -914850913: + break bP; + case 513352456: + break bO; + case -1054021648: + break bN; + case 1713437764: + break bM; + case 867259615: + break bL; + case -514003336: + break bK; + case -169006806: + break bJ; + case -613470511: + break bI; + case 473626369: + break bH; + case -225666173: + break bG; + case -2114881767: + break bF; + case -1210939641: + break bE; + case 1319121459: + break bD; + case -2109192114: + break bC; + case 893432812: + break bB; + case -1137178901: + break bA; + case -424824043: + break bz; + case -1090545472: + break by; + case 1040811906: + break bx; + case 1367871194: + break bw; + case -1515462440: + break bv; + case -4879681: + break bu; + case -165889114: + break bt; + case -213184938: + break bs; + case 737899923: + break br; + case -1231296631: + break bq; + case -1818883748: + break bp; + case -1090553155: + break bo; + case 41837598: + break bn; + case 979786518: + break bm; + case -2119301848: + break bl; + case -763184979: + break bk; + case -419512299: + break bj; + case 953953403: + break bi; + case 44353614: + break bh; + case -1588700173: + break bg; + case -2045600235: + break bf; + case 616494848: + break be; + case 1567771547: + break bd; + case 1671927173: + break bc; + case 1091776181: + break bb; + case -677401976: + break ba; + case 1522974895: + break z; + case 906154098: + break y; + case 1721669609: + break x; + case -246593737: + break w; + case -621882202: + break v; + case -299067664: + break u; + case 24898165: + break t; + case 841414265: + break s; + case 1096497267: + break r; + case 1803262547: + break q; + case -513789148: + break p; + case -1306656222: + break o; + case 2136683676: + break n; + case -1684645191: + break m; + case -17764532: + break l; + case 736006033: + break k; + case -1240947019: + break j; + case 552712649: + break i; + case -160977132: + break h; + case 1996487587: + break g; + case 250317358: + break f; + case 605400192: + break e; + case 342871275: + break d; + case -2068787732: + break c; + case -1090567620: + break b; + default: + break a; + } + if + (!jl_String_equals(var$2, + $rt_s(3737))) + break a; + return onciu_RewritableJavascript$PROXY$9_43_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3738))) + break a; + return onciu_RewritableJavascript$PROXY$9_130_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3739))) + break a; + return onciu_RewritableJavascript$PROXY$9_62_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3740))) + break a; + return onciu_RewritableJavascript$PROXY$9_172_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3741))) + break a; + return onciu_RewritableJavascript$PROXY$9_220_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3742))) + break a; + return onciu_RewritableJavascript$PROXY$9_6_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3743))) + break a; + return onciu_RewritableJavascript$PROXY$9_114_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3744))) + break a; + return onciu_RewritableJavascript$PROXY$9_5_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3745))) + break a; + return onciu_RewritableJavascript$PROXY$9_13_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3746))) + break a; + return onciu_RewritableJavascript$PROXY$9_138_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3747))) + break a; + return onciu_RewritableJavascript$PROXY$9_187_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3748))) + break a; + return onciu_RewritableJavascript$PROXY$9_261_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3749))) + break a; + return onciu_RewritableJavascript$PROXY$9_36_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3752))) + break a; + return onciu_RewritableJavascript$PROXY$9_91_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3753))) + break a; + return onciu_RewritableJavascript$PROXY$9_127_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3751))) + break a; + return onciu_RewritableJavascript$PROXY$9_218_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3754))) + break a; + return onciu_RewritableJavascript$PROXY$9_134_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3755))) + break a; + return onciu_RewritableJavascript$PROXY$9_167_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3756))) + break a; + return onciu_RewritableJavascript$PROXY$9_40_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3757))) + break a; + return onciu_RewritableJavascript$PROXY$9_180_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3758))) + break a; + return onciu_RewritableJavascript$PROXY$9_221_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3759))) + break a; + return onciu_RewritableJavascript$PROXY$9_263_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3760))) + break a; + return onciu_RewritableJavascript$PROXY$9_185_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3761))) + break a; + return onciu_RewritableJavascript$PROXY$9_85_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3762))) + break a; + return onciu_RewritableJavascript$PROXY$9_128_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3763))) + break a; + return onciu_RewritableJavascript$PROXY$9_25_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3764))) + break a; + return onciu_RewritableJavascript$PROXY$9_92_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3765))) + break a; + return onciu_RewritableJavascript$PROXY$9_4_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3766))) + break a; + return onciu_RewritableJavascript$PROXY$9_179_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3767))) + break a; + return onciu_RewritableJavascript$PROXY$9_209_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3768))) + break a; + return onciu_RewritableJavascript$PROXY$9_269_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3769))) + break a; + return onciu_RewritableJavascript$PROXY$9_139_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3770))) + break a; + return onciu_RewritableJavascript$PROXY$9_80_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3771))) + break a; + return onciu_RewritableJavascript$PROXY$9_240_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3772))) + break a; + return onciu_RewritableJavascript$PROXY$9_173_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3774))) + break a; + return onciu_RewritableJavascript$PROXY$9_103_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3773))) + break a; + return onciu_RewritableJavascript$PROXY$9_176_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3776))) + break a; + return onciu_RewritableJavascript$PROXY$9_224_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3775))) + break a; + return onciu_RewritableJavascript$PROXY$9_230_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3778))) + break a; + return onciu_RewritableJavascript$PROXY$9_145_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3777))) + break a; + return onciu_RewritableJavascript$PROXY$9_147_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3779))) + break a; + return onciu_RewritableJavascript$PROXY$9_8_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3780))) + break a; + return onciu_RewritableJavascript$PROXY$9_121_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3781))) + break a; + return onciu_RewritableJavascript$PROXY$9_109_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3782))) + break a; + return onciu_RewritableJavascript$PROXY$9_260_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3783))) + break a; + return onciu_RewritableJavascript$PROXY$9_17_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3784))) + break a; + return onciu_RewritableJavascript$PROXY$9_32_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3785))) + break a; + return onciu_RewritableJavascript$PROXY$9_35_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3786))) + break a; + return onciu_RewritableJavascript$PROXY$9_39_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3787))) + break a; + return onciu_RewritableJavascript$PROXY$9_26_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3789))) + break a; + return onciu_RewritableJavascript$PROXY$9_105_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3788))) + break a; + return onciu_RewritableJavascript$PROXY$9_122_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3790))) + break a; + return onciu_RewritableJavascript$PROXY$9_135_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3792))) + break a; + return onciu_RewritableJavascript$PROXY$9_112_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3791))) + break a; + return onciu_RewritableJavascript$PROXY$9_205_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3793))) + break a; + return onciu_RewritableJavascript$PROXY$9_86_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3794))) + break a; + return onciu_RewritableJavascript$PROXY$9_101_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3795))) + break a; + return onciu_RewritableJavascript$PROXY$9_232_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3796))) + break a; + return onciu_RewritableJavascript$PROXY$9_31_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3797))) + break a; + return onciu_RewritableJavascript$PROXY$9_72_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3798))) + break a; + return onciu_RewritableJavascript$PROXY$9_38_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3800))) + break a; + return onciu_RewritableJavascript$PROXY$9_96_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3799))) + break a; + return onciu_RewritableJavascript$PROXY$9_186_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3802))) + break a; + return onciu_RewritableJavascript$PROXY$9_108_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3801))) + break a; + return onciu_RewritableJavascript$PROXY$9_191_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3803))) + break a; + return onciu_RewritableJavascript$PROXY$9_243_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3804))) + break a; + return onciu_RewritableJavascript$PROXY$9_19_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3805))) + break a; + return onciu_RewritableJavascript$PROXY$9_271_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3807))) + break a; + return onciu_RewritableJavascript$PROXY$9_119_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3806))) + break a; + return onciu_RewritableJavascript$PROXY$9_156_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3808))) + break a; + return onciu_RewritableJavascript$PROXY$9_166_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3809))) + break a; + return onciu_RewritableJavascript$PROXY$9_59_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3810))) + break a; + return onciu_RewritableJavascript$PROXY$9_94_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3811))) + break a; + return onciu_RewritableJavascript$PROXY$9_175_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3812))) + break a; + return onciu_RewritableJavascript$PROXY$9_153_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3814))) + break a; + return onciu_RewritableJavascript$PROXY$9_73_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3813))) + break a; + return onciu_RewritableJavascript$PROXY$9_222_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3815))) + break a; + return onciu_RewritableJavascript$PROXY$9_184_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3816))) + break a; + return onciu_RewritableJavascript$PROXY$9_132_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3817))) + break a; + return onciu_RewritableJavascript$PROXY$9_262_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3818))) + break a; + return onciu_RewritableJavascript$PROXY$9_181_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3819))) + break a; + return onciu_RewritableJavascript$PROXY$9_233_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3820))) + break a; + return onciu_RewritableJavascript$PROXY$9_231_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3821))) + break a; + return onciu_RewritableJavascript$PROXY$9_140_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3822))) + break a; + return onciu_RewritableJavascript$PROXY$9_18_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3823))) + break a; + return onciu_RewritableJavascript$PROXY$9_159_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3824))) + break a; + return onciu_RewritableJavascript$PROXY$9_248_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3825))) + break a; + return onciu_RewritableJavascript$PROXY$9_12_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3826))) + break a; + return onciu_RewritableJavascript$PROXY$9_242_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3827))) + break a; + return onciu_RewritableJavascript$PROXY$9_162_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3828))) + break a; + return onciu_RewritableJavascript$PROXY$9_193_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3829))) + break a; + return onciu_RewritableJavascript$PROXY$9_169_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3830))) + break a; + return onciu_RewritableJavascript$PROXY$9_41_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3831))) + break a; + return onciu_RewritableJavascript$PROXY$9_164_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3832))) + break a; + return onciu_RewritableJavascript$PROXY$9_102_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3833))) + break a; + return onciu_RewritableJavascript$PROXY$9_11_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3834))) + break a; + return onciu_RewritableJavascript$PROXY$9_200_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3835))) + break a; + return onciu_RewritableJavascript$PROXY$9_199_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3836))) + break a; + return onciu_RewritableJavascript$PROXY$9_201_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3837))) + break a; + return onciu_RewritableJavascript$PROXY$9_47_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3838))) + break a; + return onciu_RewritableJavascript$PROXY$9_182_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3839))) + break a; + return onciu_RewritableJavascript$PROXY$9_53_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3840))) + break a; + return onciu_RewritableJavascript$PROXY$9_235_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3841))) + break a; + return onciu_RewritableJavascript$PROXY$9_33_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3842))) + break a; + return onciu_RewritableJavascript$PROXY$9_95_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3843))) + break a; + return onciu_RewritableJavascript$PROXY$9_148_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3844))) + break a; + return onciu_RewritableJavascript$PROXY$9_60_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3846))) + break a; + return onciu_RewritableJavascript$PROXY$9_155_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3845))) + break a; + return onciu_RewritableJavascript$PROXY$9_165_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3847))) + break a; + return onciu_RewritableJavascript$PROXY$9_76_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3848))) + break a; + return onciu_RewritableJavascript$PROXY$9_196_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3849))) + break a; + return onciu_RewritableJavascript$PROXY$9_115_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3850))) + break a; + return onciu_RewritableJavascript$PROXY$9_210_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3851))) + break a; + return onciu_RewritableJavascript$PROXY$9_278_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3852))) + break a; + return onciu_RewritableJavascript$PROXY$9_225_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3853))) + break a; + return onciu_RewritableJavascript$PROXY$9_24_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3854))) + break a; + return onciu_RewritableJavascript$PROXY$9_244_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3856))) + break a; + return onciu_RewritableJavascript$PROXY$9_87_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3855))) + break a; + return onciu_RewritableJavascript$PROXY$9_214_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3857))) + break a; + return onciu_RewritableJavascript$PROXY$9_55_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3858))) + break a; + return onciu_RewritableJavascript$PROXY$9_249_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3859))) + break a; + return onciu_RewritableJavascript$PROXY$9_154_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3860))) + break a; + return onciu_RewritableJavascript$PROXY$9_194_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3861))) + break a; + return onciu_RewritableJavascript$PROXY$9_81_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3862))) + break a; + return onciu_RewritableJavascript$PROXY$9_267_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3863))) + break a; + return onciu_RewritableJavascript$PROXY$9_157_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3864))) + break a; + return onciu_RewritableJavascript$PROXY$9_163_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3866))) + break a; + return onciu_RewritableJavascript$PROXY$9_245_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3867))) + break a; + return onciu_RewritableJavascript$PROXY$9_160_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3868))) + break a; + return onciu_RewritableJavascript$PROXY$9_168_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3869))) + break a; + return onciu_RewritableJavascript$PROXY$9_84_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3870))) + break a; + return onciu_RewritableJavascript$PROXY$9_277_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3871))) + break a; + return onciu_RewritableJavascript$PROXY$9_142_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3872))) + break a; + return onciu_RewritableJavascript$PROXY$9_79_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3873))) + break a; + return onciu_RewritableJavascript$PROXY$9_68_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3874))) + break a; + return onciu_RewritableJavascript$PROXY$9_111_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3875))) + break a; + return onciu_RewritableJavascript$PROXY$9_14_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3876))) + break a; + return onciu_RewritableJavascript$PROXY$9_107_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3877))) + break a; + return onciu_RewritableJavascript$PROXY$9_270_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3878))) + break a; + return onciu_RewritableJavascript$PROXY$9_239_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3879))) + break a; + return onciu_RewritableJavascript$PROXY$9_50_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3880))) + break a; + return onciu_RewritableJavascript$PROXY$9_274_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3881))) + break a; + return onciu_RewritableJavascript$PROXY$9_0_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3882))) + break a; + return onciu_RewritableJavascript$PROXY$9_7_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3883))) + break a; + return onciu_RewritableJavascript$PROXY$9_28_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3885))) + break a; + return onciu_RewritableJavascript$PROXY$9_204_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3886))) + break a; + return onciu_RewritableJavascript$PROXY$9_129_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3887))) + break a; + return onciu_RewritableJavascript$PROXY$9_177_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3888))) + break a; + return onciu_RewritableJavascript$PROXY$9_15_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3889))) + break a; + return onciu_RewritableJavascript$PROXY$9_152_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3890))) + break a; + return onciu_RewritableJavascript$PROXY$9_133_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3891))) + break a; + return onciu_RewritableJavascript$PROXY$9_151_numParameters(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3892))) + break a; + return onciu_RewritableJavascript$PROXY$9_266_numParameters(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3893))) + break a; + return onciu_RewritableJavascript$PROXY$9_16_numParameters(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3894))) + break a; + return onciu_RewritableJavascript$PROXY$9_259_numParameters(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3895))) + break a; + return onciu_RewritableJavascript$PROXY$9_250_numParameters(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3896))) + break a; + return onciu_RewritableJavascript$PROXY$9_65_numParameters(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3897))) + break a; + return onciu_RewritableJavascript$PROXY$9_123_numParameters(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3898))) + break a; + return onciu_RewritableJavascript$PROXY$9_99_numParameters(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3900))) + break a; + return onciu_RewritableJavascript$PROXY$9_69_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3899))) + break a; + return onciu_RewritableJavascript$PROXY$9_174_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3901))) + break a; + return onciu_RewritableJavascript$PROXY$9_30_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3902))) + break a; + return onciu_RewritableJavascript$PROXY$9_66_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3903))) + break a; + return onciu_RewritableJavascript$PROXY$9_276_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3905))) + break a; + return onciu_RewritableJavascript$PROXY$9_197_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3904))) + break a; + return onciu_RewritableJavascript$PROXY$9_213_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3906))) + break a; + return onciu_RewritableJavascript$PROXY$9_236_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3907))) + break a; + return onciu_RewritableJavascript$PROXY$9_207_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3908))) + break a; + return onciu_RewritableJavascript$PROXY$9_268_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3909))) + break a; + return onciu_RewritableJavascript$PROXY$9_90_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3911))) + break a; + return onciu_RewritableJavascript$PROXY$9_70_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3910))) + break a; + return onciu_RewritableJavascript$PROXY$9_88_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3912))) + break a; + return onciu_RewritableJavascript$PROXY$9_150_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3913))) + break a; + return onciu_RewritableJavascript$PROXY$9_228_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3914))) + break a; + return onciu_RewritableJavascript$PROXY$9_272_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3915))) + break a; + return onciu_RewritableJavascript$PROXY$9_136_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3916))) + break a; + return onciu_RewritableJavascript$PROXY$9_29_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3918))) + break a; + return onciu_RewritableJavascript$PROXY$9_117_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3917))) + break a; + return onciu_RewritableJavascript$PROXY$9_253_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3919))) + break a; + return onciu_RewritableJavascript$PROXY$9_58_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3921))) + break a; + return onciu_RewritableJavascript$PROXY$9_113_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3922))) + break a; + return onciu_RewritableJavascript$PROXY$9_171_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3920))) + break a; + return onciu_RewritableJavascript$PROXY$9_255_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3923))) + break a; + return onciu_RewritableJavascript$PROXY$9_110_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3924))) + break a; + return onciu_RewritableJavascript$PROXY$9_131_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3925))) + break a; + return onciu_RewritableJavascript$PROXY$9_20_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3926))) + break a; + return onciu_RewritableJavascript$PROXY$9_104_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3927))) + break a; + return onciu_RewritableJavascript$PROXY$9_254_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3928))) + break a; + return onciu_RewritableJavascript$PROXY$9_258_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3929))) + break a; + return onciu_RewritableJavascript$PROXY$9_190_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3930))) + break a; + return onciu_RewritableJavascript$PROXY$9_158_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3931))) + break a; + return onciu_RewritableJavascript$PROXY$9_82_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3932))) + break a; + return onciu_RewritableJavascript$PROXY$9_56_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3933))) + break a; + return onciu_RewritableJavascript$PROXY$9_71_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3934))) + break a; + return onciu_RewritableJavascript$PROXY$9_246_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3935))) + break a; + return onciu_RewritableJavascript$PROXY$9_21_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3936))) + break a; + return onciu_RewritableJavascript$PROXY$9_45_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3937))) + break a; + return onciu_RewritableJavascript$PROXY$9_64_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3938))) + break a; + return onciu_RewritableJavascript$PROXY$9_49_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3939))) + break a; + return onciu_RewritableJavascript$PROXY$9_183_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3940))) + break a; + return onciu_RewritableJavascript$PROXY$9_211_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3941))) + break a; + return onciu_RewritableJavascript$PROXY$9_227_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3942))) + break a; + return onciu_RewritableJavascript$PROXY$9_67_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3943))) + break a; + return onciu_RewritableJavascript$PROXY$9_10_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3945))) + break a; + return onciu_RewritableJavascript$PROXY$9_188_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3944))) + break a; + return onciu_RewritableJavascript$PROXY$9_206_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3946))) + break a; + return onciu_RewritableJavascript$PROXY$9_223_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3947))) + break a; + return onciu_RewritableJavascript$PROXY$9_83_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3948))) + break a; + return onciu_RewritableJavascript$PROXY$9_208_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3949))) + break a; + return onciu_RewritableJavascript$PROXY$9_106_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3950))) + break a; + return onciu_RewritableJavascript$PROXY$9_3_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3952))) + break a; + return onciu_RewritableJavascript$PROXY$9_219_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3951))) + break a; + return onciu_RewritableJavascript$PROXY$9_234_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3953))) + break a; + return onciu_RewritableJavascript$PROXY$9_2_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3954))) + break a; + return onciu_RewritableJavascript$PROXY$9_149_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3955))) + break a; + return onciu_RewritableJavascript$PROXY$9_217_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3957))) + break a; + return onciu_RewritableJavascript$PROXY$9_137_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3956))) + break a; + return onciu_RewritableJavascript$PROXY$9_170_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3958))) + break a; + return onciu_RewritableJavascript$PROXY$9_202_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3959))) + break a; + return onciu_RewritableJavascript$PROXY$9_75_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3960))) + break a; + return onciu_RewritableJavascript$PROXY$9_252_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3961))) + break a; + return onciu_RewritableJavascript$PROXY$9_78_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3962))) + break a; + return onciu_RewritableJavascript$PROXY$9_118_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3963))) + break a; + return onciu_RewritableJavascript$PROXY$9_247_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3964))) + break a; + return onciu_RewritableJavascript$PROXY$9_34_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3965))) + break a; + return onciu_RewritableJavascript$PROXY$9_124_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3966))) + break a; + return onciu_RewritableJavascript$PROXY$9_37_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3967))) + break a; + return onciu_RewritableJavascript$PROXY$9_61_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3968))) + break a; + return onciu_RewritableJavascript$PROXY$9_100_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3969))) + break a; + return onciu_RewritableJavascript$PROXY$9_144_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3970))) + break a; + return onciu_RewritableJavascript$PROXY$9_126_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3971))) + break a; + return onciu_RewritableJavascript$PROXY$9_51_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3972))) + break a; + return onciu_RewritableJavascript$PROXY$9_215_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3973))) + break a; + return onciu_RewritableJavascript$PROXY$9_57_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3974))) + break a; + return onciu_RewritableJavascript$PROXY$9_256_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3976))) + break a; + return onciu_RewritableJavascript$PROXY$9_1_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3977))) + break a; + return onciu_RewritableJavascript$PROXY$9_89_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3978))) + break a; + return onciu_RewritableJavascript$PROXY$9_192_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3979))) + break a; + return onciu_RewritableJavascript$PROXY$9_212_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3980))) + break a; + return onciu_RewritableJavascript$PROXY$9_143_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3981))) + break a; + return onciu_RewritableJavascript$PROXY$9_264_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3982))) + break a; + return onciu_RewritableJavascript$PROXY$9_44_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3983))) + break a; + return onciu_RewritableJavascript$PROXY$9_22_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3984))) + break a; + return onciu_RewritableJavascript$PROXY$9_189_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3985))) + break a; + return onciu_RewritableJavascript$PROXY$9_54_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3986))) + break a; + return onciu_RewritableJavascript$PROXY$9_198_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3987))) + break a; + return onciu_RewritableJavascript$PROXY$9_203_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3988))) + break a; + return onciu_RewritableJavascript$PROXY$9_257_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3989))) + break a; + return onciu_RewritableJavascript$PROXY$9_46_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3990))) + break a; + return onciu_RewritableJavascript$PROXY$9_125_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3991))) + break a; + return onciu_RewritableJavascript$PROXY$9_275_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3992))) + break a; + return onciu_RewritableJavascript$PROXY$9_195_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3993))) + break a; + return onciu_RewritableJavascript$PROXY$9_97_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3994))) + break a; + return onciu_RewritableJavascript$PROXY$9_161_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3995))) + break a; + return onciu_RewritableJavascript$PROXY$9_251_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3996))) + break a; + return onciu_RewritableJavascript$PROXY$9_216_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3997))) + break a; + return onciu_RewritableJavascript$PROXY$9_9_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3998))) + break a; + return onciu_RewritableJavascript$PROXY$9_27_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4001))) + break a; + return onciu_RewritableJavascript$PROXY$9_77_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4000))) + break a; + return onciu_RewritableJavascript$PROXY$9_93_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3999))) + break a; + return onciu_RewritableJavascript$PROXY$9_237_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4002))) + break a; + return onciu_RewritableJavascript$PROXY$9_241_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4003))) + break a; + return onciu_RewritableJavascript$PROXY$9_52_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4004))) + break a; + return onciu_RewritableJavascript$PROXY$9_229_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4005))) + break a; + return onciu_RewritableJavascript$PROXY$9_42_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4006))) + break a; + return onciu_RewritableJavascript$PROXY$9_48_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4007))) + break a; + return onciu_RewritableJavascript$PROXY$9_226_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4008))) + break a; + return onciu_RewritableJavascript$PROXY$9_273_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4009))) + break a; + return onciu_RewritableJavascript$PROXY$9_23_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4010))) + break a; + return onciu_RewritableJavascript$PROXY$9_146_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4011))) + break a; + return onciu_RewritableJavascript$PROXY$9_238_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4012))) + break a; + return onciu_RewritableJavascript$PROXY$9_63_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4013))) + break a; + return onciu_RewritableJavascript$PROXY$9_116_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4015))) + break a; + return onciu_RewritableJavascript$PROXY$9_178_numParameters(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4017))) + break a; + return onciu_RewritableJavascript$PROXY$9_120_numParameters(var$1); } - if ($x$1 !== null) - break b; + if (!jl_String_equals(var$2, $rt_s(4018))) + break a; + return onciu_RewritableJavascript$PROXY$9_74_numParameters(var$1); } - if (!($this instanceof oncia_CountExpression)) - break b; + if (!jl_String_equals(var$2, $rt_s(4019))) + break a; + return onciu_RewritableJavascript$PROXY$9_265_numParameters(var$1); } - var$3 = 1; - break a; + if (!jl_String_equals(var$2, $rt_s(4020))) + break a; + return onciu_RewritableJavascript$PROXY$9_98_numParameters(var$1); } - var$3 = 0; + if (jl_String_equals(var$2, $rt_s(4021))) + return onciu_RewritableJavascript$PROXY$9_141_numParameters(var$1); } - return var$3; -}, -oncia_CountExpression_dup1 = ($this, $children) => { - return oncia_CountExpression_dup($this, $children); -}, -oncia_CountExpression_dup0 = ($this, $children) => { - return oncia_CountExpression_dup($this, $children); -}, -oncia_CountExpression__init_ = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { - $this.$query3 = $query; - $this.$position17 = $position; - $this.$computedIntroducedVariables2 = $computedIntroducedVariables; - $this.$computedScopeDependencies2 = $computedScopeDependencies; - oncie_Expression__init_($this); -}, -oncia_CountExpression__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_CountExpression(); - oncia_CountExpression__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncia_CollectExpression() { - let a = this; oncie_Expression.call(a); - a.$query1 = null; - a.$position15 = null; - a.$computedIntroducedVariables1 = null; - a.$computedScopeDependencies0 = null; -} -let oncia_CollectExpression_introducedVariables = $this => { - return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); -}, -oncia_CollectExpression_scopeDependencies = $this => { - return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); -}, -oncia_CollectExpression_dependencies = $this => { - return $this.$scopeDependencies(); -}, -oncia_CollectExpression_isConstantForQuery = $this => { return 0; }, -oncia_CollectExpression_query = $this => { - return $this.$query1; -}, -oncia_CollectExpression_position = $this => { - return $this.$position15; -}, -oncia_CollectExpression_computedIntroducedVariables = $this => { - return $this.$computedIntroducedVariables1; -}, -oncia_CollectExpression_computedScopeDependencies = $this => { - return $this.$computedScopeDependencies0; -}, -oncia_CollectExpression_withQuery = ($this, $query) => { - return oncia_CollectExpression__init_0($query, $this.$position15, $this.$computedIntroducedVariables1, $this.$computedScopeDependencies0); -}, -oncia_CollectExpression_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { - return oncia_CollectExpression_copy($this, $this.$query1, $this.$position15, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies0); -}, -oncia_CollectExpression_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { - return oncia_CollectExpression_copy($this, $this.$query1, $this.$position15, $this.$computedIntroducedVariables1, s_Some__init_($computedScopeDependencies)); -}, -oncia_CollectExpression_subqueryAstNode = $this => { - return $this.$query1; -}, -oncia_CollectExpression_dup = ($this, $children) => { - return oncia_CollectExpression__init_0($children.$head(), $this.$position15, $this.$computedIntroducedVariables1, $this.$computedScopeDependencies0); -}, -oncia_CollectExpression_copy = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { - return oncia_CollectExpression__init_0($query, $position, $computedIntroducedVariables, $computedScopeDependencies); -}, -oncia_CollectExpression_productPrefix = $this => { - return $rt_s(5414); -}, -oncia_CollectExpression_productArity = $this => { - return 1; -}, -oncia_CollectExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$query1; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_CollectExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CollectExpression_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CollectExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_CollectExpression_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CollectExpression) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$query1; - $x$1 = $x$1.$query1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_CollectExpression)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_CollectExpression_dup0 = ($this, $children) => { - return oncia_CollectExpression_dup($this, $children); -}, -oncia_CollectExpression_dup1 = ($this, $children) => { - return oncia_CollectExpression_dup($this, $children); -}, -oncia_CollectExpression__init_ = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { - $this.$query1 = $query; - $this.$position15 = $position; - $this.$computedIntroducedVariables1 = $computedIntroducedVariables; - $this.$computedScopeDependencies0 = $computedScopeDependencies; - oncie_Expression__init_($this); -}, -oncia_CollectExpression__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_CollectExpression(); - oncia_CollectExpression__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncie_MapProjection() { - let a = this; oncie_Expression.call(a); - a.$name30 = null; - a.$items6 = null; - a.$position293 = null; -} -let oncie_MapProjection_name = $this => { - return $this.$name30; -}, -oncie_MapProjection_items = $this => { - return $this.$items6; -}, -oncie_MapProjection_position = $this => { - return $this.$position293; -}, -oncie_MapProjection_isConstantForQuery = $this => { - return $this.$items6.$forall(new oncie_MapProjection$isConstantForQuery$lambda$_5_0); -}, -oncie_MapProjection_productPrefix = $this => { - return $rt_s(5415); -}, -oncie_MapProjection_productArity = $this => { - return 2; -}, -oncie_MapProjection_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name30; - case 1: - return $this.$items6; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_MapProjection_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MapProjection_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MapProjection_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_MapProjection_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +onciu_RewritableJavascript_lastParamIsPosition = var$1 => { + let var$2; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_MapProjection) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name30; - var$3 = $x$1.$name30; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } + c: { d: { - var$3 = $this.$items6; - $x$1 = $x$1.$items6; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; + e: { + f: { + g: { + h: { + i: { + j: { + k: { + l: { + m: { + n: { + o: { + p: { + q: { + r: { + s: { + t: { + u: { + v: { + w: { + x: { + y: { + z: { + ba: { + bb: { + bc: { + bd: { + be: { + bf: { + bg: { + bh: { + bi: { + bj: { + bk: { + bl: { + bm: { + bn: { + bo: { + bp: { + bq: { + br: { + bs: { + bt: { + bu: { + bv: { + bw: { + bx: { + by: { + bz: { + bA: { + bB: { + bC: { + bD: { + bE: { + bF: { + bG: { + bH: { + bI: { + bJ: { + bK: { + bL: { + bM: { + bN: { + bO: { + bP: { + bQ: { + bR: { + bS: { + bT: { + bU: { + bV: { + bW: { + bX: { + bY: { + bZ: { + b0: { + b1: { + b2: { + b3: { + b4: { + b5: { + b6: { + b7: { + b8: { + b9: { + b$: { + b_: { + ca: { + cb: { + cc: { + cd: { + ce: { + cf: { + cg: { + ch: { + ci: { + cj: { + ck: { + cl: { + cm: { + cn: { + co: { + cp: { + cq: { + cr: { + cs: { + ct: { + cu: { + cv: { + cw: { + cx: { + cy: { + cz: { + cA: { + cB: { + cC: { + cD: { + cE: { + cF: { + cG: { + cH: { + cI: { + cJ: { + cK: { + cL: + { + cM: + { + cN: + { + cO: + { + cP: + { + cQ: + { + cR: + { + cS: + { + cT: + { + cU: + { + cV: + { + cW: + { + cX: + { + cY: + { + cZ: + { + c0: + { + c1: + { + c2: + { + c3: + { + c4: + { + c5: + { + c6: + { + c7: + { + c8: + { + c9: + { + c$: + { + c_: + { + da: + { + db: + { + dc: + { + dd: + { + de: + { + df: + { + dg: + { + dh: + { + di: + { + dj: + { + dk: + { + dl: + { + dm: + { + dn: + { + dp: + { + dq: + { + dr: + { + ds: + { + dt: + { + du: + { + dv: + { + dw: + { + dx: + { + dy: + { + dz: + { + dA: + { + dB: + { + dC: + { + dD: + { + dE: + { + dF: + { + dG: + { + dH: + { + dI: + { + dJ: + { + dK: + { + dL: + { + dM: + { + dN: + { + dO: + { + dP: + { + dQ: + { + dR: + { + dS: + { + dT: + { + dU: + { + dV: + { + dW: + { + dX: + { + dY: + { + dZ: + { + d0: + { + d1: + { + d2: + { + d3: + { + d4: + { + d5: + { + d6: + { + d7: + { + d8: + { + d9: + { + d$: + { + d_: + { + ea: + { + eb: + { + ec: + { + ed: + { + ee: + { + ef: + { + eg: + { + eh: + { + ei: + { + ej: + { + ek: + { + el: + { + em: + { + en: + { + eo: + { + ep: + { + eq: + { + er: + { + es: + { + et: + { + eu: + { + ev: + { + ew: + { + ex: + { + ey: + { + ez: + { + eA: + { + eB: + { + eC: + { + eD: + { + eE: + { + eF: + { + eG: + { + eH: + { + eI: + { + eJ: + { + eK: + { + eL: + { + eM: + { + eN: + { + eO: + { + eP: + { + eQ: + { + eR: + { + eS: + { + eT: + { + eU: + { + eV: + { + eW: + { + eX: + { + eY: + { + eZ: + { + e0: + { + e1: + { + e2: + { + e3: + { + e4: + { + e5: + { + e6: + { + e7: + { + e8: + { + e9: + { + var$2 + = + jl_Class_getName(var$1); + switch + (jl_String_hashCode(var$2)) + { + case 455596914: + break; + case -696583615: + break e9; + case -1108946791: + break e8; + case -1944844053: + break e7; + case 814608189: + break e6; + case -149837559: + break e5; + case -173726688: + break e4; + case 463217861: + break e3; + case 1344819286: + break e2; + case -1885430284: + break e1; + case -1990238911: + break e0; + case -1624236093: + break eZ; + case 1139703987: + break eY; + case 161043599: + break eX; + case -1699139200: + break eW; + case 218162326: + break eV; + case 257300197: + break eU; + case -1567460475: + break eT; + case -1849450182: + break eS; + case -1161986269: + break eR; + case -871373505: + break eQ; + case -2004672172: + break eP; + case -1854989025: + break eO; + case -1446274576: + break eN; + case 1995730627: + break eM; + case -59220920: + break eL; + case 1905747848: + break eK; + case 876306657: + break eJ; + case -1509369838: + break eI; + case -551872710: + break eH; + case 563302816: + break eG; + case -1603524070: + break eF; + case -309054547: + break eE; + case 597069130: + break eD; + case -1780947554: + break eC; + case -83434525: + break eB; + case 1106883801: + break eA; + case 791743121: + break ez; + case 994181372: + break ey; + case -173726498: + break ex; + case -1090567930: + break ew; + case -324525645: + break ev; + case -985722153: + break eu; + case 552142263: + break et; + case 35532533: + break es; + case 808140963: + break er; + case 552536514: + break eq; + case 1113043596: + break ep; + case 180309318: + break eo; + case 1098373913: + break en; + case -1601654356: + break em; + case 171553019: + break el; + case 1993308723: + break ek; + case 1956588185: + break ej; + case -690264973: + break ei; + case -185398452: + break eh; + case -354016038: + break eg; + case -547163946: + break ef; + case 1836487610: + break ee; + case -124559559: + break ed; + case 1298739788: + break ec; + case -527102827: + break eb; + case 1505287241: + break ea; + case 1687177394: + break d_; + case -1375343095: + break d$; + case -2107404354: + break d9; + case 1252416461: + break d8; + case -799399769: + break d7; + case 1693844367: + break d6; + case 1835843740: + break d5; + case -1971775404: + break d4; + case -596404360: + break d3; + case 1143216060: + break d2; + case 1836370035: + break d1; + case -57639779: + break d0; + case 386603235: + break dZ; + case 140909333: + break dY; + case 1111213695: + break dX; + case -1875460719: + break dW; + case -974095529: + break dV; + case -2008336743: + break dU; + case 767481184: + break dT; + case -446332315: + break dS; + case -1846818353: + break dR; + case 25975226: + break dQ; + case -1869678611: + break dP; + case -1672152040: + break dO; + case 2123943227: + break dN; + case -925030859: + break dM; + case -1525448294: + break dL; + case 490543052: + break dK; + case 553477153: + break dJ; + case 1032130721: + break dI; + case 2021177853: + break dH; + case -1399872522: + break dG; + case -101943729: + break dF; + case 68785030: + break dE; + case 630773776: + break dD; + case -382919541: + break dC; + case -1036156617: + break dB; + case 44260601: + break dA; + case -1053180719: + break dz; + case 941027000: + break dy; + case -2097338776: + break dx; + case -1430315311: + break dw; + case 1743234077: + break dv; + case -1002775686: + break du; + case -2007159869: + break dt; + case 1994092090: + break ds; + case 1400223240: + break dr; + case -1889018242: + break dq; + case 773610978: + break dp; + case 549588447: + break dn; + case 545017439: + break dm; + case 924040911: + break dl; + case 715403871: + break dk; + case 488962701: + break dj; + case 773878287: + break di; + case -853835129: + break dh; + case -4879682: + break dg; + case -862437735: + break df; + case 654843427: + break de; + case 1590622701: + break dd; + case -72889640: + break dc; + case 51139985: + break db; + case 1257722521: + break da; + case -1509467160: + break c_; + case -931686672: + break c$; + case -1569671430: + break c9; + case 1086375751: + break c8; + case -692014538: + break c7; + case -1377215654: + break c6; + case 1085962297: + break c5; + case -1397478846: + break c4; + case -1930616743: + break c3; + case -1629866976: + break c2; + case 1344230015: + break c1; + case -2070218311: + break c0; + case 967704049: + break cZ; + case -1651308197: + break cY; + case 1131485948: + break cX; + case -1631614488: + break cW; + case 257458495: + break cV; + case -361629069: + break cU; + case -14881129: + break cT; + case 1887073695: + break cS; + case 1903613124: + break cR; + case 1743141064: + break cQ; + case 345156959: + break cP; + case -721388032: + break cO; + case -391096479: + break cN; + case -1942599922: + break cM; + case -2013484445: + break cL; + case -335388913: + break cK; + case 838435105: + break cJ; + case 68878043: + break cI; + case 390701443: + break cH; + case 201251871: + break cG; + case 1605005311: + break cF; + case 1131043253: + break cE; + case 1087067473: + break cD; + case -1167383453: + break cC; + case -769608440: + break cB; + case 1412105672: + break cA; + case -1845562242: + break cz; + case 1400329004: + break cy; + case 825085381: + break cx; + case -766295774: + break cw; + case 224696041: + break cv; + case -1814577755: + break cu; + case 352140276: + break ct; + case 2117196269: + break cs; + case 1752564371: + break cr; + case 86719663: + break cq; + case 884425735: + break cp; + case -1622751247: + break co; + case 2111686605: + break cn; + case -921688526: + break cm; + case 185377688: + break cl; + case 1553787535: + break ck; + case -1092119273: + break cj; + case -1388906993: + break ci; + case 1087184836: + break ch; + case -1734229172: + break cg; + case -2128450866: + break cf; + case 1555225207: + break ce; + case -1683547861: + break cd; + case -523752746: + break cc; + case -1223363698: + break cb; + case 421974435: + break ca; + case -393782920: + break b_; + case -1090555552: + break b$; + case -2060497514: + break b9; + case 1628021123: + break b8; + case 722610464: + break b7; + case -48137118: + break b6; + case -779711344: + break b5; + case 433120830: + break b4; + case -429840592: + break b3; + case -1189054542: + break b2; + case 1878523352: + break b1; + case -395643130: + break b0; + case -1090555080: + break bZ; + case -1154925950: + break bY; + case 984874708: + break bX; + case 49269903: + break bW; + case 419676835: + break bV; + case 1674145006: + break bU; + case 839143939: + break bT; + case -1991860843: + break bS; + case -1757559093: + break bR; + case 2129483779: + break bQ; + case -914850913: + break bP; + case 513352456: + break bO; + case -1054021648: + break bN; + case 1713437764: + break bM; + case 867259615: + break bL; + case -514003336: + break bK; + case -169006806: + break bJ; + case -613470511: + break bI; + case 473626369: + break bH; + case -225666173: + break bG; + case -2114881767: + break bF; + case -1210939641: + break bE; + case 1319121459: + break bD; + case -2109192114: + break bC; + case 893432812: + break bB; + case -1137178901: + break bA; + case -424824043: + break bz; + case -1090545472: + break by; + case 1040811906: + break bx; + case 1367871194: + break bw; + case -1515462440: + break bv; + case -4879681: + break bu; + case -165889114: + break bt; + case -213184938: + break bs; + case 737899923: + break br; + case -1231296631: + break bq; + case -1818883748: + break bp; + case -1090553155: + break bo; + case 41837598: + break bn; + case 979786518: + break bm; + case -2119301848: + break bl; + case -763184979: + break bk; + case -419512299: + break bj; + case 953953403: + break bi; + case 44353614: + break bh; + case -1588700173: + break bg; + case -2045600235: + break bf; + case 616494848: + break be; + case 1567771547: + break bd; + case 1671927173: + break bc; + case 1091776181: + break bb; + case -677401976: + break ba; + case 1522974895: + break z; + case 906154098: + break y; + case 1721669609: + break x; + case -246593737: + break w; + case -621882202: + break v; + case -299067664: + break u; + case 24898165: + break t; + case 841414265: + break s; + case 1096497267: + break r; + case 1803262547: + break q; + case -513789148: + break p; + case -1306656222: + break o; + case 2136683676: + break n; + case -1684645191: + break m; + case -17764532: + break l; + case 736006033: + break k; + case -1240947019: + break j; + case 552712649: + break i; + case -160977132: + break h; + case 1996487587: + break g; + case 250317358: + break f; + case 605400192: + break e; + case 342871275: + break d; + case -2068787732: + break c; + case -1090567620: + break b; + default: + break a; + } + if + (!jl_String_equals(var$2, + $rt_s(3737))) + break a; + return onciu_RewritableJavascript$PROXY$11_32_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3738))) + break a; + return onciu_RewritableJavascript$PROXY$11_128_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3739))) + break a; + return onciu_RewritableJavascript$PROXY$11_73_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3740))) + break a; + return onciu_RewritableJavascript$PROXY$11_201_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3741))) + break a; + return onciu_RewritableJavascript$PROXY$11_209_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3742))) + break a; + return onciu_RewritableJavascript$PROXY$11_6_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3743))) + break a; + return onciu_RewritableJavascript$PROXY$11_94_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3744))) + break a; + return onciu_RewritableJavascript$PROXY$11_5_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3745))) + break a; + return onciu_RewritableJavascript$PROXY$11_13_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3746))) + break a; + return onciu_RewritableJavascript$PROXY$11_138_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3747))) + break a; + return onciu_RewritableJavascript$PROXY$11_150_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3748))) + break a; + return onciu_RewritableJavascript$PROXY$11_266_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3749))) + break a; + return onciu_RewritableJavascript$PROXY$11_39_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3752))) + break a; + return onciu_RewritableJavascript$PROXY$11_78_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3753))) + break a; + return onciu_RewritableJavascript$PROXY$11_129_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3751))) + break a; + return onciu_RewritableJavascript$PROXY$11_251_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3754))) + break a; + return onciu_RewritableJavascript$PROXY$11_133_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3755))) + break a; + return onciu_RewritableJavascript$PROXY$11_179_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3756))) + break a; + return onciu_RewritableJavascript$PROXY$11_33_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3757))) + break a; + return onciu_RewritableJavascript$PROXY$11_162_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3758))) + break a; + return onciu_RewritableJavascript$PROXY$11_153_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3759))) + break a; + return onciu_RewritableJavascript$PROXY$11_262_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3760))) + break a; + return onciu_RewritableJavascript$PROXY$11_178_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3761))) + break a; + return onciu_RewritableJavascript$PROXY$11_82_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3762))) + break a; + return onciu_RewritableJavascript$PROXY$11_134_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3763))) + break a; + return onciu_RewritableJavascript$PROXY$11_34_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3764))) + break a; + return onciu_RewritableJavascript$PROXY$11_60_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3765))) + break a; + return onciu_RewritableJavascript$PROXY$11_4_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3767))) + break a; + return onciu_RewritableJavascript$PROXY$11_171_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3766))) + break a; + return onciu_RewritableJavascript$PROXY$11_187_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3768))) + break a; + return onciu_RewritableJavascript$PROXY$11_272_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3769))) + break a; + return onciu_RewritableJavascript$PROXY$11_137_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3770))) + break a; + return onciu_RewritableJavascript$PROXY$11_72_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3771))) + break a; + return onciu_RewritableJavascript$PROXY$11_166_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3772))) + break a; + return onciu_RewritableJavascript$PROXY$11_194_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3774))) + break a; + return onciu_RewritableJavascript$PROXY$11_100_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3773))) + break a; + return onciu_RewritableJavascript$PROXY$11_219_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3775))) + break a; + return onciu_RewritableJavascript$PROXY$11_184_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3776))) + break a; + return onciu_RewritableJavascript$PROXY$11_213_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3778))) + break a; + return onciu_RewritableJavascript$PROXY$11_139_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3777))) + break a; + return onciu_RewritableJavascript$PROXY$11_144_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3779))) + break a; + return onciu_RewritableJavascript$PROXY$11_8_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3780))) + break a; + return onciu_RewritableJavascript$PROXY$11_119_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3781))) + break a; + return onciu_RewritableJavascript$PROXY$11_95_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3782))) + break a; + return onciu_RewritableJavascript$PROXY$11_264_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3783))) + break a; + return onciu_RewritableJavascript$PROXY$11_17_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3784))) + break a; + return onciu_RewritableJavascript$PROXY$11_25_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3785))) + break a; + return onciu_RewritableJavascript$PROXY$11_29_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3786))) + break a; + return onciu_RewritableJavascript$PROXY$11_42_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3787))) + break a; + return onciu_RewritableJavascript$PROXY$11_30_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3789))) + break a; + return onciu_RewritableJavascript$PROXY$11_108_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3788))) + break a; + return onciu_RewritableJavascript$PROXY$11_122_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3790))) + break a; + return onciu_RewritableJavascript$PROXY$11_135_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3792))) + break a; + return onciu_RewritableJavascript$PROXY$11_106_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3791))) + break a; + return onciu_RewritableJavascript$PROXY$11_167_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3793))) + break a; + return onciu_RewritableJavascript$PROXY$11_68_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3794))) + break a; + return onciu_RewritableJavascript$PROXY$11_98_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3795))) + break a; + return onciu_RewritableJavascript$PROXY$11_189_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3796))) + break a; + return onciu_RewritableJavascript$PROXY$11_21_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3797))) + break a; + return onciu_RewritableJavascript$PROXY$11_77_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3798))) + break a; + return onciu_RewritableJavascript$PROXY$11_22_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3800))) + break a; + return onciu_RewritableJavascript$PROXY$11_109_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3799))) + break a; + return onciu_RewritableJavascript$PROXY$11_165_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3802))) + break a; + return onciu_RewritableJavascript$PROXY$11_107_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3801))) + break a; + return onciu_RewritableJavascript$PROXY$11_203_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3803))) + break a; + return onciu_RewritableJavascript$PROXY$11_242_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3804))) + break a; + return onciu_RewritableJavascript$PROXY$11_19_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3805))) + break a; + return onciu_RewritableJavascript$PROXY$11_273_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3807))) + break a; + return onciu_RewritableJavascript$PROXY$11_124_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3806))) + break a; + return onciu_RewritableJavascript$PROXY$11_156_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3808))) + break a; + return onciu_RewritableJavascript$PROXY$11_192_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3809))) + break a; + return onciu_RewritableJavascript$PROXY$11_58_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3810))) + break a; + return onciu_RewritableJavascript$PROXY$11_101_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3811))) + break a; + return onciu_RewritableJavascript$PROXY$11_255_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3812))) + break a; + return onciu_RewritableJavascript$PROXY$11_212_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3814))) + break a; + return onciu_RewritableJavascript$PROXY$11_91_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3813))) + break a; + return onciu_RewritableJavascript$PROXY$11_243_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3815))) + break a; + return onciu_RewritableJavascript$PROXY$11_207_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3816))) + break a; + return onciu_RewritableJavascript$PROXY$11_132_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3817))) + break a; + return onciu_RewritableJavascript$PROXY$11_263_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3818))) + break a; + return onciu_RewritableJavascript$PROXY$11_149_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3819))) + break a; + return onciu_RewritableJavascript$PROXY$11_250_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3820))) + break a; + return onciu_RewritableJavascript$PROXY$11_247_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3821))) + break a; + return onciu_RewritableJavascript$PROXY$11_143_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3822))) + break a; + return onciu_RewritableJavascript$PROXY$11_18_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3824))) + break a; + return onciu_RewritableJavascript$PROXY$11_174_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3823))) + break a; + return onciu_RewritableJavascript$PROXY$11_196_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3825))) + break a; + return onciu_RewritableJavascript$PROXY$11_12_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3826))) + break a; + return onciu_RewritableJavascript$PROXY$11_253_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3827))) + break a; + return onciu_RewritableJavascript$PROXY$11_148_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3828))) + break a; + return onciu_RewritableJavascript$PROXY$11_158_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3829))) + break a; + return onciu_RewritableJavascript$PROXY$11_233_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3830))) + break a; + return onciu_RewritableJavascript$PROXY$11_40_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3831))) + break a; + return onciu_RewritableJavascript$PROXY$11_249_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3832))) + break a; + return onciu_RewritableJavascript$PROXY$11_114_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3833))) + break a; + return onciu_RewritableJavascript$PROXY$11_11_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3834))) + break a; + return onciu_RewritableJavascript$PROXY$11_206_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3835))) + break a; + return onciu_RewritableJavascript$PROXY$11_225_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3836))) + break a; + return onciu_RewritableJavascript$PROXY$11_191_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3837))) + break a; + return onciu_RewritableJavascript$PROXY$11_47_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3838))) + break a; + return onciu_RewritableJavascript$PROXY$11_248_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3839))) + break a; + return onciu_RewritableJavascript$PROXY$11_51_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3840))) + break a; + return onciu_RewritableJavascript$PROXY$11_229_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3841))) + break a; + return onciu_RewritableJavascript$PROXY$11_44_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3842))) + break a; + return onciu_RewritableJavascript$PROXY$11_99_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3843))) + break a; + return onciu_RewritableJavascript$PROXY$11_180_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3844))) + break a; + return onciu_RewritableJavascript$PROXY$11_76_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3846))) + break a; + return onciu_RewritableJavascript$PROXY$11_168_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3845))) + break a; + return onciu_RewritableJavascript$PROXY$11_227_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3847))) + break a; + return onciu_RewritableJavascript$PROXY$11_74_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3848))) + break a; + return onciu_RewritableJavascript$PROXY$11_221_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3849))) + break a; + return onciu_RewritableJavascript$PROXY$11_117_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3850))) + break a; + return onciu_RewritableJavascript$PROXY$11_157_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3851))) + break a; + return onciu_RewritableJavascript$PROXY$11_277_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3852))) + break a; + return onciu_RewritableJavascript$PROXY$11_182_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3853))) + break a; + return onciu_RewritableJavascript$PROXY$11_28_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3854))) + break a; + return onciu_RewritableJavascript$PROXY$11_169_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3856))) + break a; + return onciu_RewritableJavascript$PROXY$11_67_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3855))) + break a; + return onciu_RewritableJavascript$PROXY$11_237_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3857))) + break a; + return onciu_RewritableJavascript$PROXY$11_56_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3858))) + break a; + return onciu_RewritableJavascript$PROXY$11_159_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3859))) + break a; + return onciu_RewritableJavascript$PROXY$11_202_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3860))) + break a; + return onciu_RewritableJavascript$PROXY$11_246_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3861))) + break a; + return onciu_RewritableJavascript$PROXY$11_84_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3862))) + break a; + return onciu_RewritableJavascript$PROXY$11_265_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3863))) + break a; + return onciu_RewritableJavascript$PROXY$11_256_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3864))) + break a; + return onciu_RewritableJavascript$PROXY$11_223_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3866))) + break a; + return onciu_RewritableJavascript$PROXY$11_220_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3867))) + break a; + return onciu_RewritableJavascript$PROXY$11_183_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3868))) + break a; + return onciu_RewritableJavascript$PROXY$11_240_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3869))) + break a; + return onciu_RewritableJavascript$PROXY$11_69_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3870))) + break a; + return onciu_RewritableJavascript$PROXY$11_276_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3871))) + break a; + return onciu_RewritableJavascript$PROXY$11_145_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3872))) + break a; + return onciu_RewritableJavascript$PROXY$11_85_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3873))) + break a; + return onciu_RewritableJavascript$PROXY$11_63_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3874))) + break a; + return onciu_RewritableJavascript$PROXY$11_113_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3875))) + break a; + return onciu_RewritableJavascript$PROXY$11_14_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3876))) + break a; + return onciu_RewritableJavascript$PROXY$11_110_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3877))) + break a; + return onciu_RewritableJavascript$PROXY$11_270_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3878))) + break a; + return onciu_RewritableJavascript$PROXY$11_181_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3879))) + break a; + return onciu_RewritableJavascript$PROXY$11_50_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3880))) + break a; + return onciu_RewritableJavascript$PROXY$11_275_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3881))) + break a; + return onciu_RewritableJavascript$PROXY$11_0_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3882))) + break a; + return onciu_RewritableJavascript$PROXY$11_7_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3883))) + break a; + return onciu_RewritableJavascript$PROXY$11_41_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3885))) + break a; + return onciu_RewritableJavascript$PROXY$11_210_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3886))) + break a; + return onciu_RewritableJavascript$PROXY$11_131_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3887))) + break a; + return onciu_RewritableJavascript$PROXY$11_172_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3888))) + break a; + return onciu_RewritableJavascript$PROXY$11_15_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3889))) + break a; + return onciu_RewritableJavascript$PROXY$11_234_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3890))) + break a; + return onciu_RewritableJavascript$PROXY$11_127_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3891))) + break a; + return onciu_RewritableJavascript$PROXY$11_241_lastParamIsPosition(var$1); + } + if + (!jl_String_equals(var$2, + $rt_s(3892))) + break a; + return onciu_RewritableJavascript$PROXY$11_261_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3893))) + break a; + return onciu_RewritableJavascript$PROXY$11_16_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3894))) + break a; + return onciu_RewritableJavascript$PROXY$11_259_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3895))) + break a; + return onciu_RewritableJavascript$PROXY$11_224_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3896))) + break a; + return onciu_RewritableJavascript$PROXY$11_81_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3897))) + break a; + return onciu_RewritableJavascript$PROXY$11_126_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3898))) + break a; + return onciu_RewritableJavascript$PROXY$11_111_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, + $rt_s(3900))) + break a; + return onciu_RewritableJavascript$PROXY$11_80_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3899))) + break a; + return onciu_RewritableJavascript$PROXY$11_155_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3901))) + break a; + return onciu_RewritableJavascript$PROXY$11_46_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3902))) + break a; + return onciu_RewritableJavascript$PROXY$11_66_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3903))) + break a; + return onciu_RewritableJavascript$PROXY$11_278_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3904))) + break a; + return onciu_RewritableJavascript$PROXY$11_160_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3905))) + break a; + return onciu_RewritableJavascript$PROXY$11_186_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3906))) + break a; + return onciu_RewritableJavascript$PROXY$11_208_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3907))) + break a; + return onciu_RewritableJavascript$PROXY$11_235_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3908))) + break a; + return onciu_RewritableJavascript$PROXY$11_260_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3909))) + break a; + return onciu_RewritableJavascript$PROXY$11_79_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3911))) + break a; + return onciu_RewritableJavascript$PROXY$11_62_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3910))) + break a; + return onciu_RewritableJavascript$PROXY$11_65_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3912))) + break a; + return onciu_RewritableJavascript$PROXY$11_252_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3913))) + break a; + return onciu_RewritableJavascript$PROXY$11_204_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3914))) + break a; + return onciu_RewritableJavascript$PROXY$11_269_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3915))) + break a; + return onciu_RewritableJavascript$PROXY$11_147_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3916))) + break a; + return onciu_RewritableJavascript$PROXY$11_26_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3918))) + break a; + return onciu_RewritableJavascript$PROXY$11_116_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3917))) + break a; + return onciu_RewritableJavascript$PROXY$11_176_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3919))) + break a; + return onciu_RewritableJavascript$PROXY$11_59_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3921))) + break a; + return onciu_RewritableJavascript$PROXY$11_102_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3922))) + break a; + return onciu_RewritableJavascript$PROXY$11_211_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3920))) + break a; + return onciu_RewritableJavascript$PROXY$11_238_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3923))) + break a; + return onciu_RewritableJavascript$PROXY$11_103_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3924))) + break a; + return onciu_RewritableJavascript$PROXY$11_130_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3925))) + break a; + return onciu_RewritableJavascript$PROXY$11_36_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3926))) + break a; + return onciu_RewritableJavascript$PROXY$11_112_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3927))) + break a; + return onciu_RewritableJavascript$PROXY$11_163_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3928))) + break a; + return onciu_RewritableJavascript$PROXY$11_257_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3929))) + break a; + return onciu_RewritableJavascript$PROXY$11_254_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3930))) + break a; + return onciu_RewritableJavascript$PROXY$11_244_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3931))) + break a; + return onciu_RewritableJavascript$PROXY$11_71_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3932))) + break a; + return onciu_RewritableJavascript$PROXY$11_55_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3933))) + break a; + return onciu_RewritableJavascript$PROXY$11_93_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3934))) + break a; + return onciu_RewritableJavascript$PROXY$11_214_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3935))) + break a; + return onciu_RewritableJavascript$PROXY$11_20_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3936))) + break a; + return onciu_RewritableJavascript$PROXY$11_45_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3937))) + break a; + return onciu_RewritableJavascript$PROXY$11_83_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3938))) + break a; + return onciu_RewritableJavascript$PROXY$11_49_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3939))) + break a; + return onciu_RewritableJavascript$PROXY$11_226_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3940))) + break a; + return onciu_RewritableJavascript$PROXY$11_185_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3941))) + break a; + return onciu_RewritableJavascript$PROXY$11_245_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3942))) + break a; + return onciu_RewritableJavascript$PROXY$11_64_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3943))) + break a; + return onciu_RewritableJavascript$PROXY$11_10_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3944))) + break a; + return onciu_RewritableJavascript$PROXY$11_154_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3945))) + break a; + return onciu_RewritableJavascript$PROXY$11_232_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3946))) + break a; + return onciu_RewritableJavascript$PROXY$11_217_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3947))) + break a; + return onciu_RewritableJavascript$PROXY$11_70_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3948))) + break a; + return onciu_RewritableJavascript$PROXY$11_218_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3949))) + break a; + return onciu_RewritableJavascript$PROXY$11_96_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3950))) + break a; + return onciu_RewritableJavascript$PROXY$11_3_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3952))) + break a; + return onciu_RewritableJavascript$PROXY$11_230_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3951))) + break a; + return onciu_RewritableJavascript$PROXY$11_239_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3953))) + break a; + return onciu_RewritableJavascript$PROXY$11_2_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3954))) + break a; + return onciu_RewritableJavascript$PROXY$11_151_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3955))) + break a; + return onciu_RewritableJavascript$PROXY$11_164_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3957))) + break a; + return onciu_RewritableJavascript$PROXY$11_146_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3956))) + break a; + return onciu_RewritableJavascript$PROXY$11_216_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3958))) + break a; + return onciu_RewritableJavascript$PROXY$11_177_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3959))) + break a; + return onciu_RewritableJavascript$PROXY$11_89_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3960))) + break a; + return onciu_RewritableJavascript$PROXY$11_188_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3961))) + break a; + return onciu_RewritableJavascript$PROXY$11_87_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3962))) + break a; + return onciu_RewritableJavascript$PROXY$11_118_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3963))) + break a; + return onciu_RewritableJavascript$PROXY$11_197_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3964))) + break a; + return onciu_RewritableJavascript$PROXY$11_31_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3965))) + break a; + return onciu_RewritableJavascript$PROXY$11_121_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3966))) + break a; + return onciu_RewritableJavascript$PROXY$11_23_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3967))) + break a; + return onciu_RewritableJavascript$PROXY$11_90_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3968))) + break a; + return onciu_RewritableJavascript$PROXY$11_104_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3969))) + break a; + return onciu_RewritableJavascript$PROXY$11_141_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3970))) + break a; + return onciu_RewritableJavascript$PROXY$11_120_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3971))) + break a; + return onciu_RewritableJavascript$PROXY$11_53_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3972))) + break a; + return onciu_RewritableJavascript$PROXY$11_199_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3973))) + break a; + return onciu_RewritableJavascript$PROXY$11_57_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3974))) + break a; + return onciu_RewritableJavascript$PROXY$11_228_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3976))) + break a; + return onciu_RewritableJavascript$PROXY$11_1_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3977))) + break a; + return onciu_RewritableJavascript$PROXY$11_61_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3978))) + break a; + return onciu_RewritableJavascript$PROXY$11_195_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3979))) + break a; + return onciu_RewritableJavascript$PROXY$11_175_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3980))) + break a; + return onciu_RewritableJavascript$PROXY$11_142_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3981))) + break a; + return onciu_RewritableJavascript$PROXY$11_267_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3982))) + break a; + return onciu_RewritableJavascript$PROXY$11_24_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3983))) + break a; + return onciu_RewritableJavascript$PROXY$11_43_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3984))) + break a; + return onciu_RewritableJavascript$PROXY$11_215_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3985))) + break a; + return onciu_RewritableJavascript$PROXY$11_54_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3986))) + break a; + return onciu_RewritableJavascript$PROXY$11_161_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3987))) + break a; + return onciu_RewritableJavascript$PROXY$11_231_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3988))) + break a; + return onciu_RewritableJavascript$PROXY$11_258_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3989))) + break a; + return onciu_RewritableJavascript$PROXY$11_37_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3990))) + break a; + return onciu_RewritableJavascript$PROXY$11_125_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3991))) + break a; + return onciu_RewritableJavascript$PROXY$11_274_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3992))) + break a; + return onciu_RewritableJavascript$PROXY$11_236_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3993))) + break a; + return onciu_RewritableJavascript$PROXY$11_105_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3994))) + break a; + return onciu_RewritableJavascript$PROXY$11_173_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3995))) + break a; + return onciu_RewritableJavascript$PROXY$11_205_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3996))) + break a; + return onciu_RewritableJavascript$PROXY$11_190_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3997))) + break a; + return onciu_RewritableJavascript$PROXY$11_9_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3998))) + break a; + return onciu_RewritableJavascript$PROXY$11_27_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4001))) + break a; + return onciu_RewritableJavascript$PROXY$11_88_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4000))) + break a; + return onciu_RewritableJavascript$PROXY$11_92_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(3999))) + break a; + return onciu_RewritableJavascript$PROXY$11_200_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4002))) + break a; + return onciu_RewritableJavascript$PROXY$11_152_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4003))) + break a; + return onciu_RewritableJavascript$PROXY$11_52_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4004))) + break a; + return onciu_RewritableJavascript$PROXY$11_198_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4005))) + break a; + return onciu_RewritableJavascript$PROXY$11_38_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4006))) + break a; + return onciu_RewritableJavascript$PROXY$11_48_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4007))) + break a; + return onciu_RewritableJavascript$PROXY$11_170_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4008))) + break a; + return onciu_RewritableJavascript$PROXY$11_271_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4009))) + break a; + return onciu_RewritableJavascript$PROXY$11_35_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4010))) + break a; + return onciu_RewritableJavascript$PROXY$11_136_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4011))) + break a; + return onciu_RewritableJavascript$PROXY$11_193_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4012))) + break a; + return onciu_RewritableJavascript$PROXY$11_86_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4013))) + break a; + return onciu_RewritableJavascript$PROXY$11_115_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4015))) + break a; + return onciu_RewritableJavascript$PROXY$11_222_lastParamIsPosition(var$1); + } + if (!jl_String_equals(var$2, $rt_s(4017))) + break a; + return onciu_RewritableJavascript$PROXY$11_123_lastParamIsPosition(var$1); } - if ($x$1 !== null) - break b; + if (!jl_String_equals(var$2, $rt_s(4018))) + break a; + return onciu_RewritableJavascript$PROXY$11_75_lastParamIsPosition(var$1); } - if (!($this instanceof oncie_MapProjection)) - break b; + if (!jl_String_equals(var$2, $rt_s(4019))) + break a; + return onciu_RewritableJavascript$PROXY$11_268_lastParamIsPosition(var$1); } - var$4 = 1; - break a; + if (!jl_String_equals(var$2, $rt_s(4020))) + break a; + return onciu_RewritableJavascript$PROXY$11_97_lastParamIsPosition(var$1); } - var$4 = 0; + if (jl_String_equals(var$2, $rt_s(4021))) + return onciu_RewritableJavascript$PROXY$11_140_lastParamIsPosition(var$1); } - return var$4; -}, -oncie_MapProjection__init_ = ($this, $name, $items, $position) => { - $this.$name30 = $name; - $this.$items6 = $items; - $this.$position293 = $position; - oncie_Expression__init_($this); -}, -oncie_MapProjection__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_MapProjection(); - oncie_MapProjection__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncie_ListComprehension$ = $rt_classWithoutFields(), -oncie_ListComprehension$_MODULE$ = null, -oncie_ListComprehension$__clinit_ = () => { - oncie_ListComprehension$_MODULE$ = new oncie_ListComprehension$; -}, -oncie_ListComprehension$_apply = ($this, $variable, $expression, $innerPredicate, $extractExpression, $position) => { - return oncie_ListComprehension__init_(oncie_ExtractScope__init_($variable, $innerPredicate, $extractExpression, $position), $expression, $position); -}; -function oncie_PatternComprehension() { - let a = this; oncie_Expression.call(a); - a.$namedPath0 = null; - a.$pattern11 = null; - a.$predicate3 = null; - a.$projection0 = null; - a.$position37 = null; - a.$computedIntroducedVariables4 = null; - a.$computedScopeDependencies4 = null; -} -let oncie_PatternComprehension_introducedVariables = $this => { - return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); -}, -oncie_PatternComprehension_scopeDependencies = $this => { - return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); -}, -oncie_PatternComprehension_dependencies = $this => { - return $this.$scopeDependencies(); -}, -oncie_PatternComprehension_isConstantForQuery = $this => { return 0; -}, -oncie_PatternComprehension_namedPath = $this => { - return $this.$namedPath0; -}, -oncie_PatternComprehension_pattern = $this => { - return $this.$pattern11; -}, -oncie_PatternComprehension_predicate = $this => { - return $this.$predicate3; -}, -oncie_PatternComprehension_projection = $this => { - return $this.$projection0; -}, -oncie_PatternComprehension_position = $this => { - return $this.$position37; -}, -oncie_PatternComprehension_computedIntroducedVariables = $this => { - return $this.$computedIntroducedVariables4; -}, -oncie_PatternComprehension_computedScopeDependencies = $this => { - return $this.$computedScopeDependencies4; -}, -oncie_PatternComprehension_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { - return oncie_PatternComprehension_copy($this, $this.$namedPath0, $this.$pattern11, $this.$predicate3, $this.$projection0, $this.$position37, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies4); -}, -oncie_PatternComprehension_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { - return oncie_PatternComprehension_copy($this, $this.$namedPath0, $this.$pattern11, $this.$predicate3, $this.$projection0, $this.$position37, $this.$computedIntroducedVariables4, s_Some__init_($computedScopeDependencies)); -}, -oncie_PatternComprehension_subqueryAstNode = $this => { - return $this.$pattern11; -}, -oncie_PatternComprehension_dup = ($this, $children) => { - return oncie_PatternComprehension__init_0($children.$apply1(0), $children.$apply1(1), $children.$apply1(2), $children.$apply1(3), $this.$position37, $this.$computedIntroducedVariables4, $this.$computedScopeDependencies4); -}, -oncie_PatternComprehension_copy = ($this, $namedPath, $pattern, $predicate, $projection, $position, $computedIntroducedVariables, $computedScopeDependencies) => { - return oncie_PatternComprehension__init_0($namedPath, $pattern, $predicate, $projection, $position, $computedIntroducedVariables, $computedScopeDependencies); -}, -oncie_PatternComprehension_productPrefix = $this => { - return $rt_s(5416); -}, -oncie_PatternComprehension_productArity = $this => { - return 4; -}, -oncie_PatternComprehension_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$namedPath0; - case 1: - return $this.$pattern11; - case 2: - return $this.$predicate3; - case 3: - return $this.$projection0; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_PatternComprehension_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternComprehension_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternComprehension_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PatternComprehension_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PatternComprehension) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$namedPath0; - var$3 = $x$1.$namedPath0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$pattern11; - var$3 = $x$1.$pattern11; - if (var$2 !== null) { - if (!oncie_RelationshipsPattern_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$predicate3; - var$3 = $x$1.$predicate3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$3 = $this.$projection0; - $x$1 = $x$1.$projection0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break f; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_PatternComprehension)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncie_PatternComprehension_dup1 = ($this, $children) => { - return oncie_PatternComprehension_dup($this, $children); -}, -oncie_PatternComprehension_dup0 = ($this, $children) => { - return oncie_PatternComprehension_dup($this, $children); -}, -oncie_PatternComprehension__init_ = ($this, $namedPath, $pattern, $predicate, $projection, $position, $computedIntroducedVariables, $computedScopeDependencies) => { - $this.$namedPath0 = $namedPath; - $this.$pattern11 = $pattern; - $this.$predicate3 = $predicate; - $this.$projection0 = $projection; - $this.$position37 = $position; - $this.$computedIntroducedVariables4 = $computedIntroducedVariables; - $this.$computedScopeDependencies4 = $computedScopeDependencies; - oncie_Expression__init_($this); -}, -oncie_PatternComprehension__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncie_PatternComprehension(); - oncie_PatternComprehension__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; }; -function oncie_RelationshipsPattern() { +function onciu_StepSequencer$$anonfun$orderSteps$21$lambda$_37_0() { let a = this; jl_Object.call(a); - a.$element5 = null; - a.$position145 = null; + a.$_0166 = null; + a.$_158 = null; } -let oncie_RelationshipsPattern_foldedOver = $this => { - return $this; -}, -oncie_RelationshipsPattern_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncie_RelationshipsPattern_element = $this => { - return $this.$element5; -}, -oncie_RelationshipsPattern_position = $this => { - return $this.$position145; -}, -oncie_RelationshipsPattern_productPrefix = $this => { - return $rt_s(5417); -}, -oncie_RelationshipsPattern_productArity = $this => { - return 1; -}, -oncie_RelationshipsPattern_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$element5; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_RelationshipsPattern_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipsPattern_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipsPattern_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_RelationshipsPattern_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_RelationshipsPattern) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$element5; - $x$1 = $x$1.$element5; - if (var$2 !== null) { - if (!oncie_RelationshipChain_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_RelationshipsPattern)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_RelationshipsPattern_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_RelationshipsPattern__init_0 = ($this, $element, $position) => { - $this.$element5 = $element; - $this.$position145 = $position; -}, -oncie_RelationshipsPattern__init_ = (var_0, var_1) => { - let var_2 = new oncie_RelationshipsPattern(); - oncie_RelationshipsPattern__init_0(var_2, var_0, var_1); - return var_2; -}, -oncie_ReduceExpression$ = $rt_classWithoutFields(), -oncie_ReduceExpression$_MODULE$ = null, -oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator = null, -oncie_ReduceExpression$__clinit_ = () => { - oncie_ReduceExpression$_MODULE$ = new oncie_ReduceExpression$; - oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator = new oncie_ReduceExpression$$_clinit_$lambda$_0_0; -}, -oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator0 = $this => { - return oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator; -}, -oncie_IterableExpressionWithInfo = $rt_classWithoutFields(0), -oncie_AllIterablePredicate$ = $rt_classWithoutFields(), -oncie_AllIterablePredicate$_MODULE$ = null, -oncie_AllIterablePredicate$_name = null, -oncie_AllIterablePredicate$_description = null, -oncie_AllIterablePredicate$_argumentDescriptions = null, -oncie_AllIterablePredicate$_$callClinit = () => { - oncie_AllIterablePredicate$_$callClinit = $rt_eraseClinit(oncie_AllIterablePredicate$); - oncie_AllIterablePredicate$__clinit_(); -}, -oncie_AllIterablePredicate$__clinit_ = () => { - let var$1, var$2, var$3, var$4; - var$1 = new oncie_AllIterablePredicate$; - oncie_AllIterablePredicate$_$callClinit(); - oncie_AllIterablePredicate$_MODULE$ = var$1; - oncie_AllIterablePredicate$_name = $rt_s(344); - oncie_AllIterablePredicate$_description = $rt_s(5418); - s_Predef$_$callClinit(); - var$1 = s_Predef$_Map(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(s_Tuple2, 3); - var$4 = var$3.data; - var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1203), $rt_s(5419)); - var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5420), $rt_s(5421)); - var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5422), $rt_s(5423)); - oncie_AllIterablePredicate$_argumentDescriptions = sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncie_AllIterablePredicate$_apply = ($this, $variable, $expression, $innerPredicate, $position) => { - return oncie_AllIterablePredicate__init_(oncie_FilterScope__init_($variable, $innerPredicate, $position), $expression, $position); -}, -oncie_AnyIterablePredicate$ = $rt_classWithoutFields(), -oncie_AnyIterablePredicate$_MODULE$ = null, -oncie_AnyIterablePredicate$_name = null, -oncie_AnyIterablePredicate$_description = null, -oncie_AnyIterablePredicate$_argumentDescriptions = null, -oncie_AnyIterablePredicate$_$callClinit = () => { - oncie_AnyIterablePredicate$_$callClinit = $rt_eraseClinit(oncie_AnyIterablePredicate$); - oncie_AnyIterablePredicate$__clinit_(); -}, -oncie_AnyIterablePredicate$__clinit_ = () => { - let var$1, var$2, var$3, var$4; - var$1 = new oncie_AnyIterablePredicate$; - oncie_AnyIterablePredicate$_$callClinit(); - oncie_AnyIterablePredicate$_MODULE$ = var$1; - oncie_AnyIterablePredicate$_name = $rt_s(447); - oncie_AnyIterablePredicate$_description = $rt_s(5424); - s_Predef$_$callClinit(); - var$1 = s_Predef$_Map(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(s_Tuple2, 3); - var$4 = var$3.data; - var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1203), $rt_s(5419)); - var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5420), $rt_s(5425)); - var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5422), $rt_s(5423)); - oncie_AnyIterablePredicate$_argumentDescriptions = sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncie_AnyIterablePredicate$_apply = ($this, $variable, $expression, $innerPredicate, $position) => { - return oncie_AnyIterablePredicate__init_(oncie_FilterScope__init_($variable, $innerPredicate, $position), $expression, $position); -}, -oncie_NoneIterablePredicate$ = $rt_classWithoutFields(), -oncie_NoneIterablePredicate$_MODULE$ = null, -oncie_NoneIterablePredicate$_name = null, -oncie_NoneIterablePredicate$_description = null, -oncie_NoneIterablePredicate$_argumentDescriptions = null, -oncie_NoneIterablePredicate$_$callClinit = () => { - oncie_NoneIterablePredicate$_$callClinit = $rt_eraseClinit(oncie_NoneIterablePredicate$); - oncie_NoneIterablePredicate$__clinit_(); -}, -oncie_NoneIterablePredicate$__clinit_ = () => { - let var$1, var$2, var$3, var$4; - var$1 = new oncie_NoneIterablePredicate$; - oncie_NoneIterablePredicate$_$callClinit(); - oncie_NoneIterablePredicate$_MODULE$ = var$1; - oncie_NoneIterablePredicate$_name = $rt_s(453); - oncie_NoneIterablePredicate$_description = $rt_s(5426); - s_Predef$_$callClinit(); - var$1 = s_Predef$_Map(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(s_Tuple2, 3); - var$4 = var$3.data; - var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1203), $rt_s(5419)); - var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5420), $rt_s(5425)); - var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5422), $rt_s(5423)); - oncie_NoneIterablePredicate$_argumentDescriptions = sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncie_NoneIterablePredicate$_apply = ($this, $variable, $expression, $innerPredicate, $position) => { - return oncie_NoneIterablePredicate__init_(oncie_FilterScope__init_($variable, $innerPredicate, $position), $expression, $position); -}, -oncie_SingleIterablePredicate$ = $rt_classWithoutFields(), -oncie_SingleIterablePredicate$_MODULE$ = null, -oncie_SingleIterablePredicate$_name = null, -oncie_SingleIterablePredicate$_description = null, -oncie_SingleIterablePredicate$_argumentDescriptions = null, -oncie_SingleIterablePredicate$_$callClinit = () => { - oncie_SingleIterablePredicate$_$callClinit = $rt_eraseClinit(oncie_SingleIterablePredicate$); - oncie_SingleIterablePredicate$__clinit_(); -}; -let oncie_SingleIterablePredicate$__clinit_ = () => { - let var$1, var$2, var$3, var$4; - var$1 = new oncie_SingleIterablePredicate$; - oncie_SingleIterablePredicate$_$callClinit(); - oncie_SingleIterablePredicate$_MODULE$ = var$1; - oncie_SingleIterablePredicate$_name = $rt_s(454); - oncie_SingleIterablePredicate$_description = $rt_s(5427); - s_Predef$_$callClinit(); - var$1 = s_Predef$_Map(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(s_Tuple2, 3); - var$4 = var$3.data; - var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1203), $rt_s(5419)); - var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5420), $rt_s(5425)); - var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5422), $rt_s(5423)); - oncie_SingleIterablePredicate$_argumentDescriptions = sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncie_SingleIterablePredicate$_apply = ($this, $variable, $expression, $innerPredicate, $position) => { - return oncie_SingleIterablePredicate__init_(oncie_FilterScope__init_($variable, $innerPredicate, $position), $expression, $position); +let onciu_RewritableJavascript$PROXY$7_0 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_0_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_AnyType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$ = $rt_classWithoutFields(oncief_Function), -oncief_Normalize$_MODULE$ = null, -oncief_Normalize$_signatures = null, -oncief_Normalize$_$callClinit = () => { - oncief_Normalize$_$callClinit = $rt_eraseClinit(oncief_Normalize$); - oncief_Normalize$__clinit_(); +onciu_RewritableJavascript$PROXY$7_1 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_1_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_FloatType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$15, $x$17, $x$10, $x$14, $x$16, $x$19, $x$20, $x$21, $x$23; - var$1 = new oncief_Normalize$; - oncief_Normalize$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Normalize$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); - var$4 = var$3.data; - $x$1 = oncief_Normalize$_MODULE$; - $x$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - $x$15 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5428)); - $x$17 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$15, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5429), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$17); - $x$14 = oncief_Normalize$_MODULE$; - $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1141), $rt_s(5430)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 2); - var$11 = var$8.data; - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$11[1] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); - $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$20 = new s_Some; - $x$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($x$3); - jl_StringBuilder_append(jl_StringBuilder_append($x$3, $rt_s(428)), $rt_s(5431)); - s_Some__init_0($x$20, jl_AbstractStringBuilder_toString($x$3)); - $x$21 = new s_Some; - $x$3 = s_Predef$_Map(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5430), $rt_s(5432)); - s_Some__init_0($x$21, sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8))); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - $x$23 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(s_Tuple2, 2); - var$8 = var$11.data; - var$8[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5428)); - var$8[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5430), $rt_s(5433)); - $x$6 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$23, var$11)); - var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5434), $x$19, $x$16, oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$), 0, s_None$_MODULE$, 0, $x$20, $x$21, $x$6); - oncief_Normalize$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +onciu_RewritableJavascript$PROXY$7_2 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_2_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_PathType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$_name = $this => { - return $rt_s(428); +onciu_RewritableJavascript$PROXY$7_3 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_3_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_ZonedTimeType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$7_4 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_4_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_BooleanType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$7_5 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_5_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_IntegerType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$7_6 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_6_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_DurationType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$_hashCode = $this => { - return (-2054390035); +onciu_RewritableJavascript$PROXY$7_7 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_7_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_LocalDateTimeType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$_toString = $this => { - return $rt_s(5435); +onciu_RewritableJavascript$PROXY$7_8 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_8_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_PointType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Normalize$_signatures0 = $this => { - oncief_Normalize$_$callClinit(); - return oncief_Normalize$_signatures; +onciu_RewritableJavascript$PROXY$7_9 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_9_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_NodeType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Trim$ = $rt_classWithoutFields(oncief_Function), -oncief_Trim$_MODULE$ = null, -oncief_Trim$_signatures = null, -oncief_Trim$_$callClinit = () => { - oncief_Trim$_$callClinit = $rt_eraseClinit(oncief_Trim$); - oncief_Trim$__clinit_(); +onciu_RewritableJavascript$PROXY$7_10 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_10_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_RelationshipType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Trim$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$3, $x$4, var$9, var$10, $x$6, $x$7, $x$8, $x$15, $x$12, $x$23, $x$10, $x$14, $x$16, $x$17, $x$19, $x$20, $x$21; - var$1 = new oncief_Trim$; - oncief_Trim$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Trim$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); - var$4 = var$3.data; - $x$1 = oncief_Trim$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5436), $rt_s(1141)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_StringType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$7 = new s_Some; - $x$8 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($x$8); - jl_StringBuilder_append(jl_StringBuilder_append($x$8, $rt_s(4012)), $rt_s(5437)); - s_Some__init_0($x$7, jl_AbstractStringBuilder_toString($x$8)); - $x$8 = new s_Some; - s_Predef$_$callClinit(); - $x$15 = s_Predef$_Map(s_Predef$_MODULE$); - $x$12 = sr_ScalaRunTime$_MODULE$; - var$10 = $rt_createArray(s_Tuple2, 1); - var$10.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5436), $rt_s(5438)); - s_Some__init_0($x$8, sci_Map$_from($x$15, sr_ScalaRunTime$_wrapRefArray($x$12, var$10))); - $x$23 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5436), $rt_s(5439)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5440)); - $x$23 = sci_Map$_from($x$23, sr_ScalaRunTime$_wrapRefArray($x$10, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5441), $x$6, $x$3, oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$), 0, s_None$_MODULE$, 0, $x$7, $x$8, $x$23); - $x$14 = oncief_Trim$_MODULE$; - $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5436), $rt_s(5442), $rt_s(1141)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_StringType, 3); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[2] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); - $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); - $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$20 = new s_Some; - $x$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($x$3); - jl_StringBuilder_append(jl_StringBuilder_append($x$3, $rt_s(4012)), $rt_s(5443)); - s_Some__init_0($x$20, jl_AbstractStringBuilder_toString($x$3)); - $x$21 = new s_Some; - $x$3 = s_Predef$_Map(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 1); - var$9.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5436), $rt_s(5438)); - s_Some__init_0($x$21, sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$9))); - $x$7 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 3); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5436), $rt_s(5439)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5442), $rt_s(5444)); - var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5445)); - $x$6 = sci_Map$_from($x$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5446), $x$19, $x$16, oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$), 0, s_None$_MODULE$, 0, $x$20, $x$21, $x$6); - oncief_Trim$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +onciu_RewritableJavascript$PROXY$7_11 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_11_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_StringType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Trim$_name = $this => { - return $rt_s(4012); +onciu_RewritableJavascript$PROXY$7_12 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_12_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_ListType_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -oncief_Trim$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$7_13 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_13_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_LocalTimeType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Trim$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$7_14 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_14_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_ZonedDateTimeType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Trim$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$7_15 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_15_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_MapType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Trim$_hashCode = $this => { - return 2615362; +onciu_RewritableJavascript$PROXY$7_16 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_16_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_DateType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Trim$_toString = $this => { - return $rt_s(5447); +onciu_RewritableJavascript$PROXY$7_18 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_18_copyConstructor = (var$1, var$2, var$3) => { + return su_Right__init_(var$3.data[0]); }, -oncief_Trim$_signatures0 = $this => { - oncief_Trim$_$callClinit(); - return oncief_Trim$_signatures; +onciu_RewritableJavascript$PROXY$7_19 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_19_copyConstructor = (var$1, var$2, var$3) => { + return su_Left__init_(var$3.data[0]); }; -function oncie_ShortestPathExpression() { - oncie_Expression.call(this); - this.$pattern13 = null; +function ong_DiagnosticRecord() { + jl_Object.call(this); + this.$innerDiagnosticRecord = null; } -let oncie_ShortestPathExpression_pattern = $this => { - return $this.$pattern13; +let ong_DiagnosticRecord_DEFAULT_DIAGNOSTIC_RECORD = null, +ong_DiagnosticRecord_$callClinit = () => { + ong_DiagnosticRecord_$callClinit = $rt_eraseClinit(ong_DiagnosticRecord); + ong_DiagnosticRecord__clinit_(); }, -oncie_ShortestPathExpression_position = $this => { - return $this.$pattern13.$position10; +ong_DiagnosticRecord_hashCode = $this => { + return ju_AbstractMap_hashCode($this.$innerDiagnosticRecord); }, -oncie_ShortestPathExpression_isConstantForQuery = $this => { +ong_DiagnosticRecord_equals = ($this, $o) => { + let $that; + if ($this === $o) + return 1; + if ($o !== null && jl_Object_getClass($this) === jl_Object_getClass($o)) { + $that = $o; + return ju_AbstractMap_equals($this.$innerDiagnosticRecord, $that.$innerDiagnosticRecord); + } return 0; }, -oncie_ShortestPathExpression_productPrefix = $this => { - return $rt_s(5448); +ong_DiagnosticRecord_addClassificationToMap = ($classification, $map) => { + ong_DiagnosticRecord_$callClinit(); + if ($classification !== ong_ErrorClassification_UNKNOWN && $classification !== ong_NotificationClassification_UNKNOWN) + ju_HashMap_put($map, $rt_s(4022), jl_String_valueOf($classification)); }, -oncie_ShortestPathExpression_productArity = $this => { +ong_DiagnosticRecord__clinit_ = () => { + let var$1; + ong_DiagnosticRecord_$callClinit(); + var$1 = ju_HashMap__init_(); + ju_HashMap_put(var$1, $rt_s(3524), $rt_s(90)); + ju_HashMap_put(var$1, $rt_s(3525), $rt_s(4)); + ju_HashMap_put(var$1, $rt_s(3526), $rt_s(21)); + ong_DiagnosticRecord_DEFAULT_DIAGNOSTIC_RECORD = ju_Collections_unmodifiableMap(var$1); +}; +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0() { + jl_Object.call(this); + this.$_0954 = null; +} +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0954; + var$2 = new oncia_GraphDirectReference; + oncia_CatalogName$_$callClinit(); + var$3 = oncia_CatalogName$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(jl_String, 1); + var$5.data[0] = var$1.$sessionDatabaseName; + var$1 = oncia_CatalogName$_apply(var$3, sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); + onciu_InputPosition$_$callClinit(); + oncia_GraphDirectReference__init_(var$2, var$1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + return var$2; +}; +function sci_Map$Map3$Map3Iterator() { + let a = this; sc_AbstractIterator.call(a); + a.$i1 = 0; + a.$$outer11 = null; +} +let sci_Map$Map3$Map3Iterator_hasNext = $this => { + if ($this.$i1 >= 3) + return 0; return 1; }, -oncie_ShortestPathExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$pattern13; - default: +sci_Map$Map3$Map3Iterator_next = $this => { + let var$1, $result; + a: { + switch ($this.$i1) { + case 0: + var$1 = $this.$$outer11; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map3$$key1, var$1.$scala$collection$immutable$Map$Map3$$value1); + break a; + case 1: + var$1 = $this.$$outer11; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map3$$key2, var$1.$scala$collection$immutable$Map$Map3$$value2); + break a; + case 2: + var$1 = $this.$$outer11; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map3$$key3, var$1.$scala$collection$immutable$Map$Map3$$value3); + break a; + default: + } + $result = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); } - return sr_Statics_ioobe($x$1); + $this.$i1 = $this.$i1 + 1 | 0; + return $result; }, -oncie_ShortestPathExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +sci_Map$Map3$Map3Iterator_drop = ($this, $n) => { + $this.$i1 = $this.$i1 + $n | 0; + return $this; }, -oncie_ShortestPathExpression_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +sci_Map$Map3$Map3Iterator_scala$collection$immutable$Map$Map3$Map3Iterator$$$outer = $this => { + return $this.$$outer11; }, -oncie_ShortestPathExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +sci_Map$Map3$Map3Iterator__init_ = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer11 = $$outer; + $this.$i1 = 0; }, -oncie_ShortestPathExpression_equals = ($this, $x$1) => { - let var$2, var$3; +sci_Map$Map3$$anon$4 = $rt_classWithoutFields(sci_Map$Map3$Map3Iterator), +sci_Map$Map3$$anon$4_nextResult = ($this, $k, $v) => { + return s_Tuple2__init_($k, $v); +}; +function sci_Set$Set4$$anon$3() { + sci_Set$SetNIterator.call(this); + this.$$outer38 = null; +} +let sci_Set$Set4$$anon$3_apply = ($this, $i) => { + let var$2; a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ShortestPathExpression) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$pattern13; - $x$1 = $x$1.$pattern13; - if (var$2 !== null) { - if (!oncie_ShortestPathsPatternPart_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_ShortestPathExpression)) - break b; - } - var$3 = 1; - break a; + var$2 = $this.$$outer38; + switch ($i) { + case 0: + break; + case 1: + var$2 = var$2.$elem2; + break a; + case 2: + var$2 = var$2.$elem3; + break a; + case 3: + var$2 = var$2.$elem4; + break a; + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($i))); } - var$3 = 0; + var$2 = var$2.$elem1; } - return var$3; -}, -oncie_ShortestPathExpression__init_ = ($this, $pattern) => { - $this.$pattern13 = $pattern; - oncie_Expression__init_($this); + return var$2; }, -oncie_ShortestPathExpression__init_0 = var_0 => { - let var_1 = new oncie_ShortestPathExpression(); - oncie_ShortestPathExpression__init_(var_1, var_0); - return var_1; +jm_Conversion = $rt_classWithoutFields(), +jm_Conversion_digitFitInInt = null, +jm_Conversion_bigRadices = null, +jm_Conversion__clinit_ = () => { + jm_Conversion_digitFitInInt = $rt_createIntArrayFromData([(-1), (-1), 31, 19, 15, 13, 11, 11, 10, 9, 9, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5]); + jm_Conversion_bigRadices = $rt_createIntArrayFromData([(-2147483648), 1162261467, 1073741824, 1220703125, 362797056, 1977326743, 1073741824, 387420489, 1000000000, 214358881, 429981696, 815730721, 1475789056, 170859375, 268435456, 410338673, 612220032, 893871739, 1280000000, 1801088541, 113379904, 148035889, 191102976, 244140625, 308915776, 387420489, 481890304, 594823321, 729000000, 887503681, 1073741824, 1291467969, 1544804416, 1838265625, 60466176]); }; -function oncie_PatternExpression() { - let a = this; oncie_Expression.call(a); - a.$pattern9 = null; - a.$computedIntroducedVariables3 = null; - a.$computedScopeDependencies3 = null; +function onciu_Foldable$Folder$$anonfun$treeFold$1() { + sr_AbstractPartialFunction.call(this); + this.$$outer62 = null; } -let oncie_PatternExpression_introducedVariables = $this => { - return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); -}, -oncie_PatternExpression_scopeDependencies = $this => { - return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); -}, -oncie_PatternExpression_dependencies = $this => { - return $this.$scopeDependencies(); -}, -oncie_PatternExpression_isConstantForQuery = $this => { - return 0; -}, -oncie_PatternExpression_pattern = $this => { - return $this.$pattern9; -}, -oncie_PatternExpression_computedIntroducedVariables = $this => { - return $this.$computedIntroducedVariables3; -}, -oncie_PatternExpression_computedScopeDependencies = $this => { - return $this.$computedScopeDependencies3; +let scm_ListBuffer$ = $rt_classWithoutFields(), +scm_ListBuffer$_MODULE$ = null, +scm_ListBuffer$__clinit_ = () => { + scm_ListBuffer$_MODULE$ = new scm_ListBuffer$; }, -oncie_PatternExpression_position = $this => { - return $this.$pattern9.$position145; +scm_ListBuffer$_newBuilder = $this => { + return scm_GrowableBuilder__init_0(scm_ListBuffer__init_()); }, -oncie_PatternExpression_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { - return oncie_PatternExpression_copy($this, $this.$pattern9, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies3); +scm_ListBuffer$_from = ($this, $source) => { + return scm_ListBuffer_scala$collection$mutable$ListBuffer$$freshFrom(scm_ListBuffer__init_(), $source); }, -oncie_PatternExpression_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { - return oncie_PatternExpression_copy($this, $this.$pattern9, $this.$computedIntroducedVariables3, s_Some__init_($computedScopeDependencies)); +oncias_SemanticState$withFeatures$lambda$_46_0 = $rt_classWithoutFields(), +oncias_SemanticState$withFeatures$lambda$_46_0_apply = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = var$1.$features.$incl(var$2); + return oncias_SemanticState_copy(var$1, var$1.$currentScope, var$1.$typeTable0, var$1.$recordedScopes0, var$1.$notifications, var$3, var$1.$declareVariablesToSuppressDuplicateErrors, var$1.$semanticCheckHasRunOnce, var$1.$targetGraph, var$1.$workingGraph); +}; +function onciuh_TreeZipper$Location() { + let a = this; jl_Object.call(a); + a.$elem0 = null; + a.$context0 = null; + a.$$outer0 = null; +} +let onciuh_TreeZipper$Location_root = $this => { + let $this_0, var$2, $left, $right, $parentElem, $parentContext; + a: { + while (true) { + $this_0 = $this.$context0; + if (jl_Object_equals(onciuh_TreeZipper_Top($this.$$outer0), $this_0)) + break; + var$2 = $this.$context0; + if (!(var$2 instanceof onciuh_TreeZipper$TreeContext)) + break a; + var$2 = var$2; + $left = var$2.$left1; + $this_0 = var$2.$parent2; + $right = var$2.$right0; + if ($this_0 === null) + break a; + $parentElem = $this_0.$elem0; + $parentContext = $this_0.$context0; + $this = onciuh_TreeZipper$Location__init_($this.$$outer0, oncias_Scope_updateChildren($parentElem, ((sci_List_reverse($left)).$concat(sci_$colon$colon__init_($this.$elem0, sci_Nil$_MODULE$))).$concat($right)), $parentContext); + } + return $this; + } + $rt_throw(s_MatchError__init_($this)); }, -oncie_PatternExpression_subqueryAstNode = $this => { - return $this.$pattern9; +onciuh_TreeZipper$Location_up = $this => { + let var$1, var$2, $left, $right, $parentElem, $parentContext; + var$1 = $this.$context0; + if (jl_Object_equals(onciuh_TreeZipper_Top($this.$$outer0), var$1)) + return s_None$_MODULE$; + var$2 = $this.$context0; + if (var$2 instanceof onciuh_TreeZipper$TreeContext) { + var$2 = var$2; + $left = var$2.$left1; + var$1 = var$2.$parent2; + $right = var$2.$right0; + if (var$1 !== null) { + $parentElem = var$1.$elem0; + $parentContext = var$1.$context0; + return s_Some__init_(onciuh_TreeZipper$Location__init_($this.$$outer0, oncias_Scope_updateChildren($parentElem, ((sci_List_reverse($left)).$concat(sci_$colon$colon__init_($this.$elem0, sci_Nil$_MODULE$))).$concat($right)), $parentContext)); + } + } + $rt_throw(s_MatchError__init_($this)); }, -oncie_PatternExpression_dup = ($this, $children) => { - return oncie_PatternExpression__init_0($children.$head(), $this.$computedIntroducedVariables3, $this.$computedScopeDependencies3); +onciuh_TreeZipper$Location_replace = ($this, $newElem) => { + return onciuh_TreeZipper$Location__init_($this.$$outer0, $newElem, $this.$context0); }, -oncie_PatternExpression_copy = ($this, $pattern, $computedIntroducedVariables, $computedScopeDependencies) => { - return oncie_PatternExpression__init_0($pattern, $computedIntroducedVariables, $computedScopeDependencies); +onciuh_TreeZipper$Location_insertRight = ($this, $newElem) => { + let var$2, var$3, $left, $parent, $right, var$7, var$8; + var$2 = $this.$context0; + if (jl_Object_equals(onciuh_TreeZipper_Top($this.$$outer0), var$2)) + return s_None$_MODULE$; + var$3 = $this.$context0; + if (!(var$3 instanceof onciuh_TreeZipper$TreeContext)) + $rt_throw(s_MatchError__init_($this)); + var$3 = var$3; + $left = var$3.$left1; + $parent = var$3.$parent2; + $right = var$3.$right0; + var$7 = new s_Some; + var$3 = new onciuh_TreeZipper$Location; + var$8 = $this.$$outer0; + onciuh_TreeZipper$Location__init_0(var$3, var$8, $newElem, onciuh_TreeZipper$TreeContext__init_0(var$8, $left.$prepended($this.$elem0), $parent, $right)); + s_Some__init_0(var$7, var$3); + return var$7; }, -oncie_PatternExpression_productPrefix = $this => { - return $rt_s(5449); +onciuh_TreeZipper$Location_productPrefix = $this => { + return $rt_s(4023); }, -oncie_PatternExpression_productArity = $this => { - return 1; +onciuh_TreeZipper$Location_productArity = $this => { + return 2; }, -oncie_PatternExpression_productElement = ($this, $x$1) => { +onciuh_TreeZipper$Location_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$pattern9; + return $this.$elem0; + case 1: + return $this.$context0; default: } return sr_Statics_ioobe($x$1); }, -oncie_PatternExpression_productIterator = $this => { +onciuh_TreeZipper$Location_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_PatternExpression_hashCode = $this => { +onciuh_TreeZipper$Location_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_PatternExpression_toString = $this => { +onciuh_TreeZipper$Location_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_PatternExpression_equals = ($this, $x$1) => { - let var$2, var$3; +onciuh_TreeZipper$Location_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PatternExpression) ? 0 : 1)) + if (!($x$1 instanceof onciuh_TreeZipper$Location && $x$1.$$outer0 === $this.$$outer0 ? 1 : 0)) break b; c: { $x$1 = $x$1; - var$2 = $this.$pattern9; - $x$1 = $x$1.$pattern9; + var$2 = $this.$elem0; + var$3 = $x$1.$elem0; if (var$2 !== null) { - if (!oncie_RelationshipsPattern_equals(var$2, $x$1)) + if (!oncias_Scope_equals(var$2, var$3)) break b; else break c; } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$context0; + $x$1 = $x$1.$context0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_PatternExpression)) + if (!($this instanceof onciuh_TreeZipper$Location)) break b; } - var$3 = 1; + var$4 = 1; break a; } - var$3 = 0; + var$4 = 0; } - return var$3; -}, -oncie_PatternExpression_dup0 = ($this, $children) => { - return oncie_PatternExpression_dup($this, $children); -}, -oncie_PatternExpression_dup1 = ($this, $children) => { - return oncie_PatternExpression_dup($this, $children); + return var$4; }, -oncie_PatternExpression__init_ = ($this, $pattern, $computedIntroducedVariables, $computedScopeDependencies) => { - $this.$pattern9 = $pattern; - $this.$computedIntroducedVariables3 = $computedIntroducedVariables; - $this.$computedScopeDependencies3 = $computedScopeDependencies; - oncie_Expression__init_($this); +onciuh_TreeZipper$Location__init_0 = ($this, $$outer, $elem, $context) => { + $this.$elem0 = $elem; + $this.$context0 = $context; + if ($$outer === null) + $rt_throw(null); + $this.$$outer0 = $$outer; }, -oncie_PatternExpression__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_PatternExpression(); - oncie_PatternExpression__init_(var_3, var_0, var_1, var_2); +onciuh_TreeZipper$Location__init_ = (var_0, var_1, var_2) => { + let var_3 = new onciuh_TreeZipper$Location(); + onciuh_TreeZipper$Location__init_0(var_3, var_0, var_1, var_2); return var_3; -}, -oncie_LeftUnaryOperatorExpression = $rt_classWithoutFields(0), -oncie_LeftUnaryOperatorExpression_asCanonicalStringVal$ = $$this => { - let var$2, var$3; - var$2 = $$this.$canonicalOperatorSymbol(); - $$this = ($$this.$rhs0()).$asCanonicalStringVal(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$2 = jl_StringBuilder_append(var$3, var$2); - jl_AbstractStringBuilder_append0(var$2, 40); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, $$this), 41); - return jl_AbstractStringBuilder_toString(var$3); -}, -oncie_LeftUnaryOperatorExpression_isConstantForQuery$ = $$this => { - return ($$this.$rhs0()).$isConstantForQuery(); }; -function oncie_Not() { - let a = this; oncie_Expression.call(a); - a.$rhs9 = null; - a.$position302 = null; - a.$signatures19 = null; +function sci_Map$Map2$Map2Iterator() { + let a = this; sc_AbstractIterator.call(a); + a.$i2 = 0; + a.$$outer15 = null; } -let oncie_Not_asCanonicalStringVal = $this => { - return oncie_LeftUnaryOperatorExpression_asCanonicalStringVal$($this); +let sci_Map$Map2$Map2Iterator_hasNext = $this => { + if ($this.$i2 >= 2) + return 0; + return 1; }, -oncie_Not_isConstantForQuery = $this => { - return oncie_LeftUnaryOperatorExpression_isConstantForQuery$($this); +sci_Map$Map2$Map2Iterator_next = $this => { + let var$1, $result; + a: { + switch ($this.$i2) { + case 0: + var$1 = $this.$$outer15; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map2$$key1, var$1.$scala$collection$immutable$Map$Map2$$value1); + break a; + case 1: + var$1 = $this.$$outer15; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map2$$key2, var$1.$scala$collection$immutable$Map$Map2$$value2); + break a; + default: + } + $result = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + } + $this.$i2 = $this.$i2 + 1 | 0; + return $result; }, -oncie_Not_canonicalOperatorSymbol = $this => { - return oncie_OperatorExpression_canonicalOperatorSymbol$($this); +sci_Map$Map2$Map2Iterator_drop = ($this, $n) => { + $this.$i2 = $this.$i2 + $n | 0; + return $this; }, -oncie_Not_rhs = $this => { - return $this.$rhs9; +sci_Map$Map2$Map2Iterator_scala$collection$immutable$Map$Map2$Map2Iterator$$$outer = $this => { + return $this.$$outer15; }, -oncie_Not_position = $this => { - return $this.$position302; +sci_Map$Map2$Map2Iterator__init_ = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer15 = $$outer; + $this.$i2 = 0; }, -oncie_Not_signatures = $this => { - return $this.$signatures19; +sci_Map$Map2$$anon$1 = $rt_classWithoutFields(sci_Map$Map2$Map2Iterator), +sci_Map$Map2$$anon$1_nextResult = ($this, $k, $v) => { + return s_Tuple2__init_($k, $v); +}; +function sci_MapOps$ImmutableKeySet() { + sci_AbstractSet.call(this); + this.$$outer4 = null; +} +let sci_MapOps$ImmutableKeySet_iterator = $this => { + return sc_MapOps$GenKeySet_iterator$($this); }, -oncie_Not_productPrefix = $this => { - return $rt_s(5450); +sci_MapOps$ImmutableKeySet_contains = ($this, $key) => { + return $this.$$outer4.$contains($key); }, -oncie_Not_productArity = $this => { - return 1; +sci_MapOps$ImmutableKeySet_size = $this => { + return $this.$$outer4.$size(); }, -oncie_Not_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$rhs9; - default: - } - return sr_Statics_ioobe($x$1); +sci_MapOps$ImmutableKeySet_knownSize = $this => { + return sc_MapOps$GenKeySet_knownSize$($this); }, -oncie_Not_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +sci_MapOps$ImmutableKeySet_isEmpty = $this => { + return $this.$$outer4.$isEmpty(); }, -oncie_Not_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +sci_MapOps$ImmutableKeySet_incl0 = ($this, $elem) => { + let var$2; + if (sci_MapOps$ImmutableKeySet_contains($this, $elem)) + return $this; + var$2 = sc_AbstractIterable_empty($this); + if (var$2 === null) + $rt_throw(null); + var$2 = sc_AbstractSet_concat(var$2, $this); + if (var$2 !== null) + return var$2.$incl($elem); + $rt_throw(null); }, -oncie_Not_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +sci_MapOps$ImmutableKeySet_excl0 = ($this, $elem) => { + let var$2; + if (!sci_MapOps$ImmutableKeySet_contains($this, $elem)) + return $this; + var$2 = sc_AbstractIterable_empty($this); + if (var$2 === null) + $rt_throw(null); + var$2 = sc_AbstractSet_concat(var$2, $this); + if (var$2 !== null) + return var$2.$excl($elem); + $rt_throw(null); }, -oncie_Not_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Not) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$rhs9; - $x$1 = $x$1.$rhs9; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Not)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; +sci_MapOps$ImmutableKeySet_scala$collection$immutable$MapOps$ImmutableKeySet$$$outer = $this => { + return $this.$$outer4; }, -oncie_Not__init_ = ($this, $rhs, $position) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9; - $this.$rhs9 = $rhs; - $this.$position302 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$3 = s_package$_Vector(s_package$_MODULE$); - $rhs = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$5 = var$4.data; - oncie_TypeSignature$_$callClinit(); - var$6 = oncie_TypeSignature$_MODULE$; - var$7 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_BooleanType, 1); - var$9 = var$8.data; - oncius_package$_$callClinit(); - var$9[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures19 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$4)); +sci_MapOps$ImmutableKeySet_scala$collection$MapOps$GenKeySet$$$outer = $this => { + return $this.$$outer4; }, -oncie_Not__init_0 = (var_0, var_1) => { - let var_2 = new oncie_Not(); - oncie_Not__init_(var_2, var_0, var_1); - return var_2; +sci_MapOps$ImmutableKeySet_excl = ($this, $elem) => { + return $this.$excl2($elem); }, -oncie_MapProjectionElement = $rt_classWithoutFields(0); -function oncie_LiteralEntry() { - let a = this; oncie_Expression.call(a); - a.$key7 = null; - a.$exp0 = null; - a.$position249 = null; -} -let oncie_LiteralEntry_key = $this => { - return $this.$key7; +sci_MapOps$ImmutableKeySet_incl = ($this, $elem) => { + return $this.$incl2($elem); }, -oncie_LiteralEntry_exp = $this => { - return $this.$exp0; +sci_MapOps$ImmutableKeySet__init_ = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer4 = $$outer; }, -oncie_LiteralEntry_position = $this => { - return $this.$position249; +sci_MapOps$ImmutableKeySet__init_0 = var_0 => { + let var_1 = new sci_MapOps$ImmutableKeySet(); + sci_MapOps$ImmutableKeySet__init_(var_1, var_0); + return var_1; }, -oncie_LiteralEntry_isConstantForQuery = $this => { - return $this.$exp0.$isConstantForQuery(); +sci_HashMap$HashKeySet = $rt_classWithoutFields(sci_MapOps$ImmutableKeySet), +sci_HashMap$HashKeySet_newKeySetOrThis = ($this, $newHashMap) => { + if ($newHashMap === sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this)) + return $this; + return sci_HashMap_keySet($newHashMap); }, -oncie_LiteralEntry_productPrefix = $this => { - return $rt_s(5451); +sci_HashMap$HashKeySet_incl = ($this, $elem) => { + let $originalHash, $improvedHash, $newNode; + $originalHash = sr_Statics_anyHash($elem); + $improvedHash = sc_Hashing$_improve(sc_Hashing$_MODULE$, $originalHash); + $newNode = sci_BitmapIndexedMapNode_updated((sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this)).$rootNode0, $elem, null, $originalHash, $improvedHash, 0, 0); + if ($newNode !== (sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this)).$rootNode0) + $this = sci_HashMap_keySet(sci_HashMap__init_($newNode)); + return $this; }, -oncie_LiteralEntry_productArity = $this => { - return 2; +sci_HashMap$HashKeySet_excl = ($this, $elem) => { + let var$2; + var$2 = sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this); + if (var$2 === null) + $rt_throw(null); + return sci_HashMap$HashKeySet_newKeySetOrThis($this, sci_HashMap_removed(var$2, $elem)); }, -oncie_LiteralEntry_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$key7; - case 1: - return $this.$exp0; - default: +sci_HashMap$HashKeySet_filter0 = ($this, $pred) => { + let $filter_this, $filter_pred, $filterImpl_newRootNode, $filterImpl_filterImpl_i, $filterImpl_filterImpl_maximumIndex, $filterImpl_filterImpl_newDataMap, $filterImpl_filterImpl_newCachedHashCode, $filterImpl_filterImpl_dataIndex, $filterImpl_filterImpl_bitpos, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newContent, $filterImpl_filterImpl_newOriginalHashes, $filterImpl_filterImpl_newOriginalHashCodes, var$15, $filterImpl_filterImpl_newMaximumIndex, $filterImpl_filterImpl_j, $filterImpl_filterImpl_newDataIndex, + $filterImpl_filterImpl_oldIndex, $filterImpl_filterImpl_newContent_0, $filterImpl_filterImpl_allMap, $filterImpl_filterImpl_minimumIndex, $filterImpl_filterImpl_oldDataPassThrough, $filterImpl_filterImpl_nodeMigrateToDataTargetMap, $filterImpl_filterImpl_nodesToMigrateToData, $filterImpl_filterImpl_nodesToPassThroughMap, $filterImpl_filterImpl_mapOfNewNodes, $filterImpl_filterImpl_newNodes, $filterImpl_filterImpl_newNodeMap, $filterImpl_filterImpl_nodeIndex, $filterImpl_filterImpl_i_0, $filterImpl_filterImpl_oldSubNode, + $filterImpl_filterImpl_newSubNode, $filterImpl_filterImpl_newDataSize, $filterImpl_filterImpl_newContentSize, $filterImpl_filterImpl_maxIndex, $filterImpl_filterImpl_oldDataIndex, $filterImpl_filterImpl_oldNodeIndex, $filterImpl_filterImpl_newNodeIndex, $filterImpl_filterImpl_node; + $filter_this = sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this); + $filter_pred = sci_HashMap$HashKeySet$filter$lambda$_4_0__init_($pred); + if ($filter_this === null) + $rt_throw(null); + $filterImpl_newRootNode = sci_HashMap_rootNode($filter_this); + if ($filterImpl_newRootNode === null) + $rt_throw(null); + if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) { + if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode) == 1) { + if (!sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, 0))))) { + sci_MapNode$_$callClinit(); + $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); + } + } else if (!sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) { + $filterImpl_filterImpl_i = jl_Integer_numberOfTrailingZeros(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)); + $filterImpl_filterImpl_maximumIndex = 32 - jl_Integer_numberOfLeadingZeros(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) | 0; + $filterImpl_filterImpl_newDataMap = 0; + $filterImpl_filterImpl_newCachedHashCode = 0; + $filterImpl_filterImpl_dataIndex = 0; + while ($filterImpl_filterImpl_i < $filterImpl_filterImpl_maximumIndex) { + $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_i; + if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { + if (!sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, $filterImpl_filterImpl_dataIndex)))) ? 0 : 1) { + $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; + $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + sc_Hashing$_improve(sc_Hashing$_MODULE$, (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_dataIndex]) | 0; + } + $filterImpl_filterImpl_dataIndex = $filterImpl_filterImpl_dataIndex + 1 | 0; + } + $filterImpl_filterImpl_i = $filterImpl_filterImpl_i + 1 | 0; + } + if (!$filterImpl_filterImpl_newDataMap) { + sci_MapNode$_$callClinit(); + $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); + } else if ($filterImpl_filterImpl_newDataMap != sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { + $filterImpl_filterImpl_newSize = jl_Integer_bitCount($filterImpl_filterImpl_newDataMap); + $filterImpl_filterImpl_newContent = $rt_createArray(jl_Object, $filterImpl_filterImpl_newSize * 2 | 0); + $filterImpl_filterImpl_newOriginalHashes = $filterImpl_filterImpl_newContent.data; + $filterImpl_filterImpl_newOriginalHashCodes = $rt_createIntArray($filterImpl_filterImpl_newSize); + var$15 = $filterImpl_filterImpl_newOriginalHashCodes.data; + $filterImpl_filterImpl_newMaximumIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_newDataMap) | 0; + $filterImpl_filterImpl_j = jl_Integer_numberOfTrailingZeros($filterImpl_filterImpl_newDataMap); + $filterImpl_filterImpl_newDataIndex = 0; + while ($filterImpl_filterImpl_j < $filterImpl_filterImpl_newMaximumIndex) { + $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_j; + if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_newDataMap) { + $filterImpl_filterImpl_oldIndex = jl_Integer_bitCount(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode) & ($filterImpl_filterImpl_bitpos - 1 | 0)); + $filterImpl_filterImpl_i = $filterImpl_filterImpl_newDataIndex * 2 | 0; + $filterImpl_filterImpl_newContent_0 = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data; + $filterImpl_filterImpl_maximumIndex = $filterImpl_filterImpl_oldIndex * 2 | 0; + $filterImpl_filterImpl_newOriginalHashes[$filterImpl_filterImpl_i] = $filterImpl_filterImpl_newContent_0[$filterImpl_filterImpl_maximumIndex]; + $filterImpl_filterImpl_newOriginalHashes[$filterImpl_filterImpl_i + 1 | 0] = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data[$filterImpl_filterImpl_maximumIndex + 1 | 0]; + var$15[$filterImpl_filterImpl_newDataIndex] = (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_oldIndex]; + $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; + } + $filterImpl_filterImpl_j = $filterImpl_filterImpl_j + 1 | 0; + } + $filterImpl_newRootNode = sci_BitmapIndexedMapNode__init_($filterImpl_filterImpl_newDataMap, 0, $filterImpl_filterImpl_newContent, $filterImpl_filterImpl_newOriginalHashCodes, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newCachedHashCode); + } + } else { + $filterImpl_filterImpl_allMap = sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode) | sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode); + $filterImpl_filterImpl_minimumIndex = jl_Integer_numberOfTrailingZeros($filterImpl_filterImpl_allMap); + $filterImpl_filterImpl_maximumIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_allMap) | 0; + $filterImpl_filterImpl_oldDataPassThrough = 0; + $filterImpl_filterImpl_nodeMigrateToDataTargetMap = 0; + $filterImpl_filterImpl_nodesToMigrateToData = null; + $filterImpl_filterImpl_nodesToPassThroughMap = 0; + $filterImpl_filterImpl_mapOfNewNodes = 0; + $filterImpl_filterImpl_newNodes = null; + $filterImpl_filterImpl_newDataMap = 0; + $filterImpl_filterImpl_newNodeMap = 0; + $filterImpl_filterImpl_newSize = 0; + $filterImpl_filterImpl_newCachedHashCode = 0; + $filterImpl_filterImpl_dataIndex = 0; + $filterImpl_filterImpl_nodeIndex = 0; + $filterImpl_filterImpl_i_0 = $filterImpl_filterImpl_minimumIndex; + while ($filterImpl_filterImpl_i_0 < $filterImpl_filterImpl_maximumIndex) { + $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_i_0; + if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { + if (!sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, $filterImpl_filterImpl_dataIndex)))) ? 0 : 1) { + $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; + $filterImpl_filterImpl_oldDataPassThrough = $filterImpl_filterImpl_oldDataPassThrough | $filterImpl_filterImpl_bitpos; + $filterImpl_filterImpl_newSize = $filterImpl_filterImpl_newSize + 1 | 0; + $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + sc_Hashing$_improve(sc_Hashing$_MODULE$, (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_dataIndex]) | 0; + } + $filterImpl_filterImpl_dataIndex = $filterImpl_filterImpl_dataIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) { + $filterImpl_filterImpl_oldSubNode = sci_BitmapIndexedMapNode_getNode($filterImpl_newRootNode, $filterImpl_filterImpl_nodeIndex); + $filterImpl_filterImpl_newSubNode = $filterImpl_filterImpl_oldSubNode.$filterImpl4($filter_pred, 0); + $filterImpl_filterImpl_newSize = $filterImpl_filterImpl_newSize + $filterImpl_filterImpl_newSubNode.$size() | 0; + $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + $filterImpl_filterImpl_newSubNode.$cachedJavaKeySetHashCode() | 0; + if ($filterImpl_filterImpl_newSubNode.$size() > 1) { + $filterImpl_filterImpl_newNodeMap = $filterImpl_filterImpl_newNodeMap | $filterImpl_filterImpl_bitpos; + if ($filterImpl_filterImpl_oldSubNode === $filterImpl_filterImpl_newSubNode) + $filterImpl_filterImpl_nodesToPassThroughMap = $filterImpl_filterImpl_nodesToPassThroughMap | $filterImpl_filterImpl_bitpos; + else { + $filterImpl_filterImpl_mapOfNewNodes = $filterImpl_filterImpl_mapOfNewNodes | $filterImpl_filterImpl_bitpos; + if ($filterImpl_filterImpl_newNodes === null) + $filterImpl_filterImpl_newNodes = scm_Queue$_empty(scm_Queue$_MODULE$); + scm_AbstractBuffer_$plus$eq($filterImpl_filterImpl_newNodes, $filterImpl_filterImpl_newSubNode); + } + } else if ($filterImpl_filterImpl_newSubNode.$size() == 1) { + $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; + $filterImpl_filterImpl_nodeMigrateToDataTargetMap = $filterImpl_filterImpl_nodeMigrateToDataTargetMap | $filterImpl_filterImpl_bitpos; + if ($filterImpl_filterImpl_nodesToMigrateToData === null) + $filterImpl_filterImpl_nodesToMigrateToData = sc_IterableFactory_apply$(scm_Queue$_MODULE$, sci_Nil$_MODULE$); + scm_AbstractBuffer_$plus$eq($filterImpl_filterImpl_nodesToMigrateToData, $filterImpl_filterImpl_newSubNode); + } + $filterImpl_filterImpl_nodeIndex = $filterImpl_filterImpl_nodeIndex + 1 | 0; + } + $filterImpl_filterImpl_i_0 = $filterImpl_filterImpl_i_0 + 1 | 0; + } + if (!$filterImpl_filterImpl_newSize) { + sci_MapNode$_$callClinit(); + $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); + } else if ($filterImpl_filterImpl_newSize != sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) { + $filterImpl_filterImpl_newDataSize = jl_Integer_bitCount($filterImpl_filterImpl_newDataMap); + $filterImpl_filterImpl_newContentSize = (2 * $filterImpl_filterImpl_newDataSize | 0) + jl_Integer_bitCount($filterImpl_filterImpl_newNodeMap) | 0; + $filterImpl_filterImpl_newContent_0 = $rt_createArray(jl_Object, $filterImpl_filterImpl_newContentSize); + $filterImpl_filterImpl_newContent = $filterImpl_filterImpl_newContent_0.data; + $filterImpl_filterImpl_newOriginalHashes = $rt_createIntArray($filterImpl_filterImpl_newDataSize); + $filterImpl_filterImpl_newOriginalHashCodes = $filterImpl_filterImpl_newOriginalHashes.data; + $filterImpl_filterImpl_maxIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_newNodeMap) | 0; + $filterImpl_filterImpl_oldDataIndex = 0; + $filterImpl_filterImpl_oldNodeIndex = 0; + $filterImpl_filterImpl_newDataIndex = 0; + $filterImpl_filterImpl_newNodeIndex = 0; + while ($filterImpl_filterImpl_minimumIndex < $filterImpl_filterImpl_maxIndex) { + $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_minimumIndex; + if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_oldDataPassThrough) { + $filterImpl_filterImpl_maximumIndex = $filterImpl_filterImpl_newDataIndex * 2 | 0; + var$15 = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data; + $filterImpl_filterImpl_i = 2 * $filterImpl_filterImpl_oldDataIndex | 0; + $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_maximumIndex] = var$15[$filterImpl_filterImpl_i]; + $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_maximumIndex + 1 | 0] = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data[$filterImpl_filterImpl_i + 1 | 0]; + $filterImpl_filterImpl_newOriginalHashCodes[$filterImpl_filterImpl_newDataIndex] = (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_oldDataIndex]; + $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; + $filterImpl_filterImpl_oldDataIndex = $filterImpl_filterImpl_oldDataIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_nodesToPassThroughMap) { + $filterImpl_filterImpl_newContent[($filterImpl_filterImpl_newContentSize - $filterImpl_filterImpl_newNodeIndex | 0) - 1 | 0] = sci_BitmapIndexedMapNode_getNode($filterImpl_newRootNode, $filterImpl_filterImpl_oldNodeIndex); + $filterImpl_filterImpl_newNodeIndex = $filterImpl_filterImpl_newNodeIndex + 1 | 0; + $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_nodeMigrateToDataTargetMap) { + $filterImpl_filterImpl_node = scm_Queue_dequeue($filterImpl_filterImpl_nodesToMigrateToData); + $filterImpl_filterImpl_i = 2 * $filterImpl_filterImpl_newDataIndex | 0; + $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_i] = $filterImpl_filterImpl_node.$getKey0(0); + $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_i + 1 | 0] = $filterImpl_filterImpl_node.$getValue1(0); + $filterImpl_filterImpl_newOriginalHashCodes[$filterImpl_filterImpl_newDataIndex] = $filterImpl_filterImpl_node.$getHash(0); + $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; + $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_mapOfNewNodes) { + $filterImpl_filterImpl_newContent[($filterImpl_filterImpl_newContentSize - $filterImpl_filterImpl_newNodeIndex | 0) - 1 | 0] = scm_Queue_dequeue($filterImpl_filterImpl_newNodes); + $filterImpl_filterImpl_newNodeIndex = $filterImpl_filterImpl_newNodeIndex + 1 | 0; + $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) + $filterImpl_filterImpl_oldDataIndex = $filterImpl_filterImpl_oldDataIndex + 1 | 0; + else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) + $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; + $filterImpl_filterImpl_minimumIndex = $filterImpl_filterImpl_minimumIndex + 1 | 0; + } + $filterImpl_newRootNode = sci_BitmapIndexedMapNode__init_($filterImpl_filterImpl_newDataMap, $filterImpl_filterImpl_newNodeMap, $filterImpl_filterImpl_newContent_0, $filterImpl_filterImpl_newOriginalHashes, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newCachedHashCode); + } + } } - return sr_Statics_ioobe($x$1); -}, -oncie_LiteralEntry_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_LiteralEntry_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_LiteralEntry_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + if ($filterImpl_newRootNode !== sci_HashMap_rootNode($filter_this)) { + if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) + $filter_this = sci_HashMap__init_($filterImpl_newRootNode); + else { + sci_HashMap$_$callClinit(); + $filter_this = sci_HashMap$_empty(sci_HashMap$_MODULE$); + } + } + return sci_HashMap$HashKeySet_newKeySetOrThis($this, $filter_this); }, -oncie_LiteralEntry_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_LiteralEntry) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$key7; - var$3 = $x$1.$key7; - if (var$2 !== null) { - if (!oncie_PropertyKeyName_equals(var$2, var$3)) - break b; - else - break c; +sci_HashMap$HashKeySet_filterNot0 = ($this, $pred) => { + let $filterNot_this, $filterNot_pred, $filterImpl_newRootNode, $filterImpl_filterImpl_i, $filterImpl_filterImpl_maximumIndex, $filterImpl_filterImpl_newDataMap, $filterImpl_filterImpl_newCachedHashCode, $filterImpl_filterImpl_dataIndex, $filterImpl_filterImpl_bitpos, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newContent, $filterImpl_filterImpl_newOriginalHashes, $filterImpl_filterImpl_newOriginalHashCodes, var$15, $filterImpl_filterImpl_newMaximumIndex, $filterImpl_filterImpl_j, $filterImpl_filterImpl_newDataIndex, + $filterImpl_filterImpl_oldIndex, $filterImpl_filterImpl_newContent_0, $filterImpl_filterImpl_allMap, $filterImpl_filterImpl_minimumIndex, $filterImpl_filterImpl_oldDataPassThrough, $filterImpl_filterImpl_nodeMigrateToDataTargetMap, $filterImpl_filterImpl_nodesToMigrateToData, $filterImpl_filterImpl_nodesToPassThroughMap, $filterImpl_filterImpl_mapOfNewNodes, $filterImpl_filterImpl_newNodes, $filterImpl_filterImpl_newNodeMap, $filterImpl_filterImpl_nodeIndex, $filterImpl_filterImpl_i_0, $filterImpl_filterImpl_oldSubNode, + $filterImpl_filterImpl_newSubNode, $filterImpl_filterImpl_newDataSize, $filterImpl_filterImpl_newContentSize, $filterImpl_filterImpl_maxIndex, $filterImpl_filterImpl_oldDataIndex, $filterImpl_filterImpl_oldNodeIndex, $filterImpl_filterImpl_newNodeIndex, $filterImpl_filterImpl_node; + $filterNot_this = sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer($this); + $filterNot_pred = sci_HashMap$HashKeySet$filterNot$lambda$_5_0__init_0($pred); + if ($filterNot_this === null) + $rt_throw(null); + $filterImpl_newRootNode = sci_HashMap_rootNode($filterNot_this); + if ($filterImpl_newRootNode === null) + $rt_throw(null); + if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) { + if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode) == 1) { + if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, 0)))) == 1) { + sci_MapNode$_$callClinit(); + $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); + } + } else if (!sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) { + $filterImpl_filterImpl_i = jl_Integer_numberOfTrailingZeros(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)); + $filterImpl_filterImpl_maximumIndex = 32 - jl_Integer_numberOfLeadingZeros(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) | 0; + $filterImpl_filterImpl_newDataMap = 0; + $filterImpl_filterImpl_newCachedHashCode = 0; + $filterImpl_filterImpl_dataIndex = 0; + while ($filterImpl_filterImpl_i < $filterImpl_filterImpl_maximumIndex) { + $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_i; + if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { + if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, $filterImpl_filterImpl_dataIndex)))) == 1 ? 0 : 1) { + $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; + $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + sc_Hashing$_improve(sc_Hashing$_MODULE$, (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_dataIndex]) | 0; + } + $filterImpl_filterImpl_dataIndex = $filterImpl_filterImpl_dataIndex + 1 | 0; + } + $filterImpl_filterImpl_i = $filterImpl_filterImpl_i + 1 | 0; + } + if (!$filterImpl_filterImpl_newDataMap) { + sci_MapNode$_$callClinit(); + $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); + } else if ($filterImpl_filterImpl_newDataMap != sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { + $filterImpl_filterImpl_newSize = jl_Integer_bitCount($filterImpl_filterImpl_newDataMap); + $filterImpl_filterImpl_newContent = $rt_createArray(jl_Object, $filterImpl_filterImpl_newSize * 2 | 0); + $filterImpl_filterImpl_newOriginalHashes = $filterImpl_filterImpl_newContent.data; + $filterImpl_filterImpl_newOriginalHashCodes = $rt_createIntArray($filterImpl_filterImpl_newSize); + var$15 = $filterImpl_filterImpl_newOriginalHashCodes.data; + $filterImpl_filterImpl_newMaximumIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_newDataMap) | 0; + $filterImpl_filterImpl_j = jl_Integer_numberOfTrailingZeros($filterImpl_filterImpl_newDataMap); + $filterImpl_filterImpl_newDataIndex = 0; + while ($filterImpl_filterImpl_j < $filterImpl_filterImpl_newMaximumIndex) { + $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_j; + if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_newDataMap) { + $filterImpl_filterImpl_oldIndex = jl_Integer_bitCount(sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode) & ($filterImpl_filterImpl_bitpos - 1 | 0)); + $filterImpl_filterImpl_i = $filterImpl_filterImpl_newDataIndex * 2 | 0; + $filterImpl_filterImpl_newContent_0 = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data; + $filterImpl_filterImpl_maximumIndex = $filterImpl_filterImpl_oldIndex * 2 | 0; + $filterImpl_filterImpl_newOriginalHashes[$filterImpl_filterImpl_i] = $filterImpl_filterImpl_newContent_0[$filterImpl_filterImpl_maximumIndex]; + $filterImpl_filterImpl_newOriginalHashes[$filterImpl_filterImpl_i + 1 | 0] = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data[$filterImpl_filterImpl_maximumIndex + 1 | 0]; + var$15[$filterImpl_filterImpl_newDataIndex] = (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_oldIndex]; + $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; + } + $filterImpl_filterImpl_j = $filterImpl_filterImpl_j + 1 | 0; + } + $filterImpl_newRootNode = sci_BitmapIndexedMapNode__init_($filterImpl_filterImpl_newDataMap, 0, $filterImpl_filterImpl_newContent, $filterImpl_filterImpl_newOriginalHashCodes, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newCachedHashCode); + } + } else { + $filterImpl_filterImpl_allMap = sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode) | sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode); + $filterImpl_filterImpl_minimumIndex = jl_Integer_numberOfTrailingZeros($filterImpl_filterImpl_allMap); + $filterImpl_filterImpl_maximumIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_allMap) | 0; + $filterImpl_filterImpl_oldDataPassThrough = 0; + $filterImpl_filterImpl_nodeMigrateToDataTargetMap = 0; + $filterImpl_filterImpl_nodesToMigrateToData = null; + $filterImpl_filterImpl_nodesToPassThroughMap = 0; + $filterImpl_filterImpl_mapOfNewNodes = 0; + $filterImpl_filterImpl_newNodes = null; + $filterImpl_filterImpl_newDataMap = 0; + $filterImpl_filterImpl_newNodeMap = 0; + $filterImpl_filterImpl_newSize = 0; + $filterImpl_filterImpl_newCachedHashCode = 0; + $filterImpl_filterImpl_dataIndex = 0; + $filterImpl_filterImpl_nodeIndex = 0; + $filterImpl_filterImpl_i_0 = $filterImpl_filterImpl_minimumIndex; + while ($filterImpl_filterImpl_i_0 < $filterImpl_filterImpl_maximumIndex) { + $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_i_0; + if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) { + if (sr_BoxesRunTime_unboxToBoolean($pred.$apply2(s_Tuple2__1(sci_BitmapIndexedMapNode_getPayload($filterImpl_newRootNode, $filterImpl_filterImpl_dataIndex)))) == 1 ? 0 : 1) { + $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; + $filterImpl_filterImpl_oldDataPassThrough = $filterImpl_filterImpl_oldDataPassThrough | $filterImpl_filterImpl_bitpos; + $filterImpl_filterImpl_newSize = $filterImpl_filterImpl_newSize + 1 | 0; + $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + sc_Hashing$_improve(sc_Hashing$_MODULE$, (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_dataIndex]) | 0; + } + $filterImpl_filterImpl_dataIndex = $filterImpl_filterImpl_dataIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) { + $filterImpl_filterImpl_oldSubNode = sci_BitmapIndexedMapNode_getNode($filterImpl_newRootNode, $filterImpl_filterImpl_nodeIndex); + $filterImpl_filterImpl_newSubNode = $filterImpl_filterImpl_oldSubNode.$filterImpl4($filterNot_pred, 1); + $filterImpl_filterImpl_newSize = $filterImpl_filterImpl_newSize + $filterImpl_filterImpl_newSubNode.$size() | 0; + $filterImpl_filterImpl_newCachedHashCode = $filterImpl_filterImpl_newCachedHashCode + $filterImpl_filterImpl_newSubNode.$cachedJavaKeySetHashCode() | 0; + if ($filterImpl_filterImpl_newSubNode.$size() > 1) { + $filterImpl_filterImpl_newNodeMap = $filterImpl_filterImpl_newNodeMap | $filterImpl_filterImpl_bitpos; + if ($filterImpl_filterImpl_oldSubNode === $filterImpl_filterImpl_newSubNode) + $filterImpl_filterImpl_nodesToPassThroughMap = $filterImpl_filterImpl_nodesToPassThroughMap | $filterImpl_filterImpl_bitpos; + else { + $filterImpl_filterImpl_mapOfNewNodes = $filterImpl_filterImpl_mapOfNewNodes | $filterImpl_filterImpl_bitpos; + if ($filterImpl_filterImpl_newNodes === null) + $filterImpl_filterImpl_newNodes = scm_Queue$_empty(scm_Queue$_MODULE$); + scm_AbstractBuffer_$plus$eq($filterImpl_filterImpl_newNodes, $filterImpl_filterImpl_newSubNode); + } + } else if ($filterImpl_filterImpl_newSubNode.$size() == 1) { + $filterImpl_filterImpl_newDataMap = $filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_bitpos; + $filterImpl_filterImpl_nodeMigrateToDataTargetMap = $filterImpl_filterImpl_nodeMigrateToDataTargetMap | $filterImpl_filterImpl_bitpos; + if ($filterImpl_filterImpl_nodesToMigrateToData === null) + $filterImpl_filterImpl_nodesToMigrateToData = sc_IterableFactory_apply$(scm_Queue$_MODULE$, sci_Nil$_MODULE$); + scm_AbstractBuffer_$plus$eq($filterImpl_filterImpl_nodesToMigrateToData, $filterImpl_filterImpl_newSubNode); } - if (var$3 !== null) - break b; + $filterImpl_filterImpl_nodeIndex = $filterImpl_filterImpl_nodeIndex + 1 | 0; } - d: { - var$3 = $this.$exp0; - $x$1 = $x$1.$exp0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; + $filterImpl_filterImpl_i_0 = $filterImpl_filterImpl_i_0 + 1 | 0; + } + if (!$filterImpl_filterImpl_newSize) { + sci_MapNode$_$callClinit(); + $filterImpl_newRootNode = sci_MapNode$_empty(sci_MapNode$_MODULE$); + } else if ($filterImpl_filterImpl_newSize != sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) { + $filterImpl_filterImpl_newDataSize = jl_Integer_bitCount($filterImpl_filterImpl_newDataMap); + $filterImpl_filterImpl_newContentSize = (2 * $filterImpl_filterImpl_newDataSize | 0) + jl_Integer_bitCount($filterImpl_filterImpl_newNodeMap) | 0; + $filterImpl_filterImpl_newContent_0 = $rt_createArray(jl_Object, $filterImpl_filterImpl_newContentSize); + $filterImpl_filterImpl_newContent = $filterImpl_filterImpl_newContent_0.data; + $filterImpl_filterImpl_newOriginalHashes = $rt_createIntArray($filterImpl_filterImpl_newDataSize); + $filterImpl_filterImpl_newOriginalHashCodes = $filterImpl_filterImpl_newOriginalHashes.data; + $filterImpl_filterImpl_maxIndex = 32 - jl_Integer_numberOfLeadingZeros($filterImpl_filterImpl_newDataMap | $filterImpl_filterImpl_newNodeMap) | 0; + $filterImpl_filterImpl_oldDataIndex = 0; + $filterImpl_filterImpl_oldNodeIndex = 0; + $filterImpl_filterImpl_newDataIndex = 0; + $filterImpl_filterImpl_newNodeIndex = 0; + while ($filterImpl_filterImpl_minimumIndex < $filterImpl_filterImpl_maxIndex) { + $filterImpl_filterImpl_bitpos = 1 << $filterImpl_filterImpl_minimumIndex; + if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_oldDataPassThrough) { + $filterImpl_filterImpl_maximumIndex = $filterImpl_filterImpl_newDataIndex * 2 | 0; + var$15 = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data; + $filterImpl_filterImpl_i = 2 * $filterImpl_filterImpl_oldDataIndex | 0; + $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_maximumIndex] = var$15[$filterImpl_filterImpl_i]; + $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_maximumIndex + 1 | 0] = (sci_BitmapIndexedMapNode_content($filterImpl_newRootNode)).data[$filterImpl_filterImpl_i + 1 | 0]; + $filterImpl_filterImpl_newOriginalHashCodes[$filterImpl_filterImpl_newDataIndex] = (sci_BitmapIndexedMapNode_originalHashes($filterImpl_newRootNode)).data[$filterImpl_filterImpl_oldDataIndex]; + $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; + $filterImpl_filterImpl_oldDataIndex = $filterImpl_filterImpl_oldDataIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_nodesToPassThroughMap) { + $filterImpl_filterImpl_newContent[($filterImpl_filterImpl_newContentSize - $filterImpl_filterImpl_newNodeIndex | 0) - 1 | 0] = sci_BitmapIndexedMapNode_getNode($filterImpl_newRootNode, $filterImpl_filterImpl_oldNodeIndex); + $filterImpl_filterImpl_newNodeIndex = $filterImpl_filterImpl_newNodeIndex + 1 | 0; + $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_nodeMigrateToDataTargetMap) { + $filterImpl_filterImpl_node = scm_Queue_dequeue($filterImpl_filterImpl_nodesToMigrateToData); + $filterImpl_filterImpl_i = 2 * $filterImpl_filterImpl_newDataIndex | 0; + $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_i] = $filterImpl_filterImpl_node.$getKey0(0); + $filterImpl_filterImpl_newContent[$filterImpl_filterImpl_i + 1 | 0] = $filterImpl_filterImpl_node.$getValue1(0); + $filterImpl_filterImpl_newOriginalHashCodes[$filterImpl_filterImpl_newDataIndex] = $filterImpl_filterImpl_node.$getHash(0); + $filterImpl_filterImpl_newDataIndex = $filterImpl_filterImpl_newDataIndex + 1 | 0; + $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & $filterImpl_filterImpl_mapOfNewNodes) { + $filterImpl_filterImpl_newContent[($filterImpl_filterImpl_newContentSize - $filterImpl_filterImpl_newNodeIndex | 0) - 1 | 0] = scm_Queue_dequeue($filterImpl_filterImpl_newNodes); + $filterImpl_filterImpl_newNodeIndex = $filterImpl_filterImpl_newNodeIndex + 1 | 0; + $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; + } else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_dataMap($filterImpl_newRootNode)) + $filterImpl_filterImpl_oldDataIndex = $filterImpl_filterImpl_oldDataIndex + 1 | 0; + else if ($filterImpl_filterImpl_bitpos & sci_BitmapIndexedMapNode_nodeMap($filterImpl_newRootNode)) + $filterImpl_filterImpl_oldNodeIndex = $filterImpl_filterImpl_oldNodeIndex + 1 | 0; + $filterImpl_filterImpl_minimumIndex = $filterImpl_filterImpl_minimumIndex + 1 | 0; } - if (!($this instanceof oncie_LiteralEntry)) - break b; + $filterImpl_newRootNode = sci_BitmapIndexedMapNode__init_($filterImpl_filterImpl_newDataMap, $filterImpl_filterImpl_newNodeMap, $filterImpl_filterImpl_newContent_0, $filterImpl_filterImpl_newOriginalHashes, $filterImpl_filterImpl_newSize, $filterImpl_filterImpl_newCachedHashCode); } - var$4 = 1; - break a; } - var$4 = 0; } - return var$4; + if ($filterImpl_newRootNode !== sci_HashMap_rootNode($filterNot_this)) { + if (sci_BitmapIndexedMapNode_size($filterImpl_newRootNode)) + $filterNot_this = sci_HashMap__init_($filterImpl_newRootNode); + else { + sci_HashMap$_$callClinit(); + $filterNot_this = sci_HashMap$_empty(sci_HashMap$_MODULE$); + } + } + return sci_HashMap$HashKeySet_newKeySetOrThis($this, $filterNot_this); }, -oncie_LiteralEntry__init_0 = ($this, $key, $exp, $position) => { - $this.$key7 = $key; - $this.$exp0 = $exp; - $this.$position249 = $position; - oncie_Expression__init_($this); +sci_HashMap$HashKeySet_scala$collection$immutable$HashMap$HashKeySet$$$outer = $this => { + return $this.$$outer4; }, -oncie_LiteralEntry__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_LiteralEntry(); - oncie_LiteralEntry__init_0(var_3, var_0, var_1, var_2); - return var_3; +sci_HashMap$HashKeySet_filterNot = ($this, $pred) => { + return sci_HashMap$HashKeySet_filterNot0($this, $pred); +}, +sci_HashMap$HashKeySet_filter = ($this, $pred) => { + return sci_HashMap$HashKeySet_filter0($this, $pred); +}, +sci_HashMap$HashKeySet_excl0 = ($this, $elem) => { + return sci_HashMap$HashKeySet_excl($this, $elem); +}, +sci_HashMap$HashKeySet_incl0 = ($this, $elem) => { + return sci_HashMap$HashKeySet_incl($this, $elem); }; -function oncie_PropertySelector() { - let a = this; oncie_Expression.call(a); - a.$key5 = null; - a.$position218 = null; +function sci_ChampBaseReverseIterator() { + let a = this; jl_Object.call(a); + a.$currentValueCursor0 = 0; + a.$currentValueNode0 = null; + a.$currentStackLevel0 = 0; + a.$nodeIndex0 = null; + a.$nodeStack = null; } -let oncie_PropertySelector_key = $this => { - return $this.$key5; -}, -oncie_PropertySelector_position = $this => { - return $this.$position218; +let sci_ChampBaseReverseIterator_pushNode = ($this, $node) => { + let var$2; + var$2 = $this.$currentStackLevel0 + 1 | 0; + $this.$currentStackLevel0 = var$2; + $this.$nodeStack.data[var$2] = $node; + $this.$nodeIndex0.data[var$2] = $node.$nodeArity() - 1 | 0; }, -oncie_PropertySelector_isConstantForQuery = $this => { +sci_ChampBaseReverseIterator_searchNextValueNode = $this => { + let var$1, var$2, $nodeCursor, $currNode; + while (true) { + var$1 = $this.$currentStackLevel0; + if (var$1 < 0) + break; + var$2 = $this.$nodeIndex0.data; + $nodeCursor = var$2[var$1]; + var$2[var$1] = $nodeCursor - 1 | 0; + if ($nodeCursor >= 0) { + sci_ChampBaseReverseIterator_pushNode($this, $this.$nodeStack.data[var$1].$getNode0($nodeCursor)); + continue; + } + $currNode = $this.$nodeStack.data[var$1]; + $this.$currentStackLevel0 = var$1 - 1 | 0; + if (!$currNode.$hasPayload()) + continue; + else { + $this.$currentValueNode0 = $currNode; + $this.$currentValueCursor0 = $currNode.$payloadArity() - 1 | 0; + return 1; + } + } return 0; }, -oncie_PropertySelector_productPrefix = $this => { - return $rt_s(5452); -}, -oncie_PropertySelector_productArity = $this => { +sci_ChampBaseReverseIterator_hasNext = $this => { + if ($this.$currentValueCursor0 < 0 && !sci_ChampBaseReverseIterator_searchNextValueNode($this)) + return 0; return 1; +}; +function sci_MapKeyValueTupleHashIterator() { + let a = this; sci_ChampBaseReverseIterator.call(a); + a.$hash5 = 0; + a.$value37 = null; +} +let sci_MapKeyValueTupleHashIterator_iterator = $this => { + return $this; }, -oncie_PropertySelector_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$key5; - default: - } - return sr_Statics_ioobe($x$1); +sci_MapKeyValueTupleHashIterator_isEmpty = $this => { + return sc_Iterator_isEmpty$($this); }, -oncie_PropertySelector_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +sci_MapKeyValueTupleHashIterator_toString = $this => { + return $rt_s(818); }, -oncie_PropertySelector_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +sci_MapKeyValueTupleHashIterator_foreach = ($this, $f) => { + sc_IterableOnceOps_foreach$($this, $f); }, -oncie_PropertySelector_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +sci_MapKeyValueTupleHashIterator_exists = ($this, $p) => { + return sc_IterableOnceOps_exists$($this, $p); }, -oncie_PropertySelector_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PropertySelector) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$key5; - $x$1 = $x$1.$key5; - if (var$2 !== null) { - if (!oncie_PropertyKeyName_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_PropertySelector)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; +sci_MapKeyValueTupleHashIterator_find = ($this, $p) => { + return sc_IterableOnceOps_find$($this, $p); }, -oncie_PropertySelector__init_0 = ($this, $key, $position) => { - $this.$key5 = $key; - $this.$position218 = $position; - oncie_Expression__init_($this); +sci_MapKeyValueTupleHashIterator_foldLeft = ($this, $z, $op) => { + return sc_IterableOnceOps_foldLeft$($this, $z, $op); }, -oncie_PropertySelector__init_ = (var_0, var_1) => { - let var_2 = new oncie_PropertySelector(); - oncie_PropertySelector__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncie_VariableSelector() { - let a = this; oncie_Expression.call(a); - a.$id3 = null; - a.$position250 = null; -} -let oncie_VariableSelector_id = $this => { - return $this.$id3; +sci_MapKeyValueTupleHashIterator_nonEmpty = $this => { + return sc_IterableOnceOps_nonEmpty$($this); }, -oncie_VariableSelector_position = $this => { - return $this.$position250; +sci_MapKeyValueTupleHashIterator_size = $this => { + return sc_IterableOnceOps_size$($this); }, -oncie_VariableSelector_isConstantForQuery = $this => { - return 0; +sci_MapKeyValueTupleHashIterator_copyToArray1 = ($this, $xs) => { + return sc_IterableOnceOps_copyToArray$($this, $xs); }, -oncie_VariableSelector_productPrefix = $this => { - return $rt_s(5453); +sci_MapKeyValueTupleHashIterator_copyToArray = ($this, $xs, $start) => { + return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); }, -oncie_VariableSelector_productArity = $this => { - return 1; +sci_MapKeyValueTupleHashIterator_copyToArray0 = ($this, $xs, $start, $len) => { + return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); }, -oncie_VariableSelector_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$id3; - default: - } - return sr_Statics_ioobe($x$1); +sci_MapKeyValueTupleHashIterator_toList = $this => { + return sc_IterableOnceOps_toList$($this); }, -oncie_VariableSelector_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +sci_MapKeyValueTupleHashIterator_toSeq = $this => { + return sc_IterableOnceOps_toSeq$($this); }, -oncie_VariableSelector_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +sci_MapKeyValueTupleHashIterator_toArray = ($this, $evidence$2) => { + return sc_IterableOnceOps_toArray$($this, $evidence$2); }, -oncie_VariableSelector_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +sci_MapKeyValueTupleHashIterator_knownSize = $this => { + return (-1); }, -oncie_VariableSelector_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_VariableSelector) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$id3; - $x$1 = $x$1.$id3; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_VariableSelector)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; +sci_MapKeyValueTupleHashIterator_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3_tuple2Hash(suh_MurmurHash3$_MODULE$, $this.$hash5, sr_Statics_anyHash($this.$value37), (-889275714)); +}, +sci_MapKeyValueTupleHashIterator_next = $this => { + let var$1; + if (!sci_ChampBaseReverseIterator_hasNext($this)) { + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); } - return var$3; + $this.$hash5 = $this.$currentValueNode0.$getHash($this.$currentValueCursor0); + $this.$value37 = $this.$currentValueNode0.$getValue1($this.$currentValueCursor0); + $this.$currentValueCursor0 = $this.$currentValueCursor0 - 1 | 0; + return $this; +}; +function jusi_MappingToIntStreamImpl$next$lambda$_1_0() { + let a = this; jl_Object.call(a); + a.$_01117 = null; + a.$_1380 = null; +} +let jusi_MappingToIntStreamImpl$next$lambda$_1_0_test = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_01117; + return var$0.$_1380.$test(var$2.$mapper.$applyAsInt(var$1)); +}; +function cnsa_EnrichedContext$errorHandler$lambda$_7_0() { + jl_Object.call(this); + this.$_0496 = null; +} +let cnsa_EnrichedContext$errorHandler$lambda$_7_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$2 = var$0.$_0496; + var$3 = new cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_15_0; + var$3.$_0634 = var$2; + var$1.$foreach(var$3); + return sr_BoxedUnit_UNIT; }, -oncie_VariableSelector__init_ = ($this, $id, $position) => { - $this.$id3 = $id; - $this.$position250 = $position; - oncie_Expression__init_($this); +s_Function$ = $rt_classWithoutFields(), +s_Function$_MODULE$ = null, +s_Function$__clinit_ = () => { + s_Function$_MODULE$ = new s_Function$; }, -oncie_VariableSelector__init_0 = (var_0, var_1) => { - let var_2 = new oncie_VariableSelector(); - oncie_VariableSelector__init_(var_2, var_0, var_1); - return var_2; +s_Function$_unlift = ($this, $f) => { + let var$2; + if ($f instanceof s_PartialFunction$Lifted) + return $f.$pf(); + var$2 = new s_PartialFunction$Unlifted; + var$2.$f14 = $f; + return var$2; }; -function oncie_AllPropertiesSelector() { - oncie_Expression.call(this); - this.$position205 = null; +function oncir_Deprecations$SyntacticallyDeprecatedFeatures$$find$lambda$_5_0() { + jl_Object.call(this); + this.$_01118 = null; } -let oncie_AllPropertiesSelector_position = $this => { - return $this.$position205; +let oncir_Deprecations$SyntacticallyDeprecatedFeatures$$find$lambda$_5_0_apply = (var$0, var$1) => { + return oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$anonfun$find$1(var$0.$_01118, var$1); +}; +function oncir_Deprecations$SemanticallyDeprecatedFeatures$$find$lambda$_4_0() { + let a = this; jl_Object.call(a); + a.$_0294 = null; + a.$_1107 = null; + a.$_239 = null; +} +let oncir_Deprecations$SemanticallyDeprecatedFeatures$$find$lambda$_4_0_apply = (var$0, var$1) => { + return oncir_Deprecations$SemanticallyDeprecatedFeatures$_$anonfun$find$3(var$0.$_0294, var$0.$_1107, var$0.$_239, var$1); }, -oncie_AllPropertiesSelector_isConstantForQuery = $this => { - return 1; +jt_DecimalFormat$PerMillField = $rt_classWithoutFields(), +jt_DecimalFormat$PerMillField_render = ($this, $format, $buffer) => { + jl_AbstractStringBuilder_append0($buffer, $format.$symbols.$perMill); }, -oncie_AllPropertiesSelector_productPrefix = $this => { - return $rt_s(5454); +jt_DecimalFormat$PerMillField_equals = ($this, $obj) => { + return $obj instanceof jt_DecimalFormat$PerMillField; }, -oncie_AllPropertiesSelector_productArity = $this => { - return 0; +jt_DecimalFormat$PerMillField_hashCode = $this => { + return 2; }, -oncie_AllPropertiesSelector_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +jt_DecimalFormat$CurrencyField = $rt_classWithoutFields(), +jt_DecimalFormat$CurrencyField_render = ($this, $format, $buffer) => { + let var$3, var$4, var$5, var$6; + var$3 = $format.$currency; + if (var$3 === null) + jl_AbstractStringBuilder_append0($buffer, 164); + else { + $format = $format.$symbols.$locale0; + var$4 = $format.$languageCode; + var$5 = $format.$countryCode; + $format = ju_Currency_getCurrencyCode(var$3); + var$5 = otciu_CLDRHelper_getCode(var$4, var$5); + if (otciu_CLDRHelper_$$metadata$$21 === null) + otciu_CLDRHelper_$$metadata$$21 = otciu_CLDRHelper_getCurrencyMap$$create(); + a: { + var$6 = otciu_CLDRHelper_$$metadata$$21; + if (var$6.hasOwnProperty($rt_ustr(var$5))) { + var$5 = var$6[$rt_ustr(var$5)]; + if (var$5.hasOwnProperty($rt_ustr($format))) { + $format = var$5[$rt_ustr($format)]; + break a; + } + } + if (var$6.hasOwnProperty($rt_ustr(var$4))) { + var$5 = var$6[$rt_ustr(var$4)]; + if (var$5.hasOwnProperty($rt_ustr($format))) { + $format = var$5[$rt_ustr($format)]; + break a; + } + } + $format = null; + } + jl_AbstractStringBuilder_append($buffer, $format !== null && !jl_String_isEmpty(($format.symbol !== null ? $rt_str($format.symbol) : null)) ? ($format.symbol !== null ? $rt_str($format.symbol) : null) : ju_Currency_getCurrencyCode(var$3)); + } }, -oncie_AllPropertiesSelector_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +jt_DecimalFormat$CurrencyField_equals = ($this, $obj) => { + return $obj instanceof jt_DecimalFormat$CurrencyField; }, -oncie_AllPropertiesSelector_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +jt_DecimalFormat$CurrencyField_hashCode = $this => { + return 0; }, -oncie_AllPropertiesSelector_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +jt_DecimalFormat$PercentField = $rt_classWithoutFields(), +jt_DecimalFormat$PercentField_render = ($this, $format, $buffer) => { + jl_AbstractStringBuilder_append0($buffer, $format.$symbols.$percent); }, -oncie_AllPropertiesSelector_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_AllPropertiesSelector) ? 0 : 1; - return var$2 && $this instanceof oncie_AllPropertiesSelector ? 1 : 0; +jt_DecimalFormat$PercentField_equals = ($this, $obj) => { + return $obj instanceof jt_DecimalFormat$PercentField; }, -oncie_AllPropertiesSelector__init_ = ($this, $position) => { - $this.$position205 = $position; - oncie_Expression__init_($this); +jt_DecimalFormat$PercentField_hashCode = $this => { + return 1; }, -oncie_AllPropertiesSelector__init_0 = var_0 => { - let var_1 = new oncie_AllPropertiesSelector(); - oncie_AllPropertiesSelector__init_(var_1, var_0); - return var_1; +oncifp_AmbiguousAggregationAnalysis$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncifp_AmbiguousAggregationAnalysis$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let var$3; + if ($rt_isInstance($x1, oncia_ProjectionClause)) { + var$3 = $x1; + if (!(var$3.$returnItems()).$includeExisting0) { + $x1 = new oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0; + $x1.$_0834 = var$3; + return $x1; + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}, +oncius_ClosedDynamicUnionType$simplify$lambda$_28_0 = $rt_classWithoutFields(), +oncius_ClosedDynamicUnionType$simplify$lambda$_28_0_apply = (var$0, var$1) => { + var$1 = var$1; + return !(var$1 instanceof oncius_ClosedDynamicUnionType) ? sci_$colon$colon__init_(var$1.$simplify(), sci_Nil$_MODULE$) : sci_List_map(var$1.$sortedInnerTypes, new oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0); }; -function oncie_ParenthesizedPath() { - let a = this; oncie_PatternElement.call(a); - a.$part0 = null; - a.$optionalWhereClause0 = null; - a.$position33 = null; +function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1() { + sr_AbstractPartialFunction.call(this); + this.$cancellationChecker$1 = null; } -let oncie_ParenthesizedPath_part = $this => { - return $this.$part0; +let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1_applyOrElse = ($this, $x1, $default) => { + let $labelExpression; + if ($x1 instanceof oncie_NodePattern) { + $labelExpression = $x1.$labelExpression7; + if ($labelExpression instanceof s_Some) { + $labelExpression = $labelExpression.$value5; + $x1 = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0; + $default = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1; + $default.$_0280 = $this; + $default.$_1103 = $labelExpression; + $default.$_236 = $x1; + return $default; + } + } + if ($x1 instanceof oncie_RelationshipPattern) { + $labelExpression = $x1.$labelExpression6; + if ($labelExpression instanceof s_Some) { + $labelExpression = $labelExpression.$value5; + $x1 = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2; + $default = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3; + $default.$_0322 = $this; + $default.$_1114 = $labelExpression; + $default.$_240 = $x1; + return $default; + } + } + if (!($x1 instanceof oncil_LabelExpressionPredicate)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $labelExpression = $x1.$labelExpression8; + $x1 = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4; + $default = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5; + $default.$_0481 = $this; + $default.$_1164 = $labelExpression; + $default.$_256 = $x1; + return $default; +}; +function oncirr_normalizeWithAndReturnClauses() { + let a = this; jl_Object.call(a); + a.$cypherExceptionFactory0 = null; + a.$rewriteProjectionsRecursively = null; +} +let oncirr_normalizeWithAndReturnClauses_toString = $this => { + return $rt_s(37); }, -oncie_ParenthesizedPath_optionalWhereClause = $this => { - return $this.$optionalWhereClause0; +oncirr_normalizeWithAndReturnClauses_apply = ($this, $that) => { + let var$2, $returns, $yields, $x$1, $x$5, $x$10, $x$14, $x$18; + if ($rt_isInstance($that, oncia_Query)) + return oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery($this, $that); + if ($that instanceof oncia_ShowPrivileges) { + var$2 = $that; + $returns = oncia_ShowPrivileges_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $x$1 = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($x$1, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0__init_0($this))))); + return oncia_ShowPrivileges_withGraph(oncia_ShowPrivileges_copy(var$2, oncia_ShowPrivileges_copy$default$1(var$2), $x$1, oncia_ShowPrivileges_copy$default$3(var$2), oncia_ShowPrivileges_position(var$2)), oncia_ShowPrivileges_useGraph(var$2)); + } + } + } + } + if ($that instanceof oncia_ShowPrivilegeCommands) { + var$2 = $that; + $returns = oncia_ShowPrivilegeCommands_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $x$5 = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($x$5, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1__init_($this))))); + return oncia_ShowPrivilegeCommands_withGraph(oncia_ShowPrivilegeCommands_copy(var$2, oncia_ShowPrivilegeCommands_copy$default$1(var$2), oncia_ShowPrivilegeCommands_copy$default$2(var$2), $x$5, oncia_ShowPrivilegeCommands_copy$default$4(var$2), oncia_ShowPrivilegeCommands_position(var$2)), oncia_ShowPrivilegeCommands_useGraph(var$2)); + } + } + } + } + if ($that instanceof oncia_ShowSupportedPrivilegeCommand) { + var$2 = $that; + $returns = oncia_ShowSupportedPrivilegeCommand_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $that = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($that, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2__init_($this))))); + return oncia_ShowSupportedPrivilegeCommand_withGraph(oncia_ShowSupportedPrivilegeCommand_copy(var$2, $that, oncia_ShowSupportedPrivilegeCommand_copy$default$2(var$2), oncia_ShowSupportedPrivilegeCommand_position(var$2)), oncia_ShowSupportedPrivilegeCommand_useGraph(var$2)); + } + } + } + } + if ($that instanceof oncia_ShowDatabase) { + var$2 = $that; + $returns = oncia_ShowDatabase_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $x$10 = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($x$10, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3__init_($this))))); + return oncia_ShowDatabase_withGraph(oncia_ShowDatabase_copy(var$2, oncia_ShowDatabase_copy$default$1(var$2), $x$10, oncia_ShowDatabase_copy$default$3(var$2), oncia_ShowDatabase_position(var$2)), oncia_ShowDatabase_useGraph(var$2)); + } + } + } + } + if ($that instanceof oncia_ShowAliases) { + var$2 = $that; + $returns = oncia_ShowAliases_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $x$14 = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($x$14, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4__init_0($this))))); + return oncia_ShowAliases_withGraph(oncia_ShowAliases_copy(var$2, oncia_ShowAliases_copy$default$1(var$2), $x$14, oncia_ShowAliases_copy$default$3(var$2), oncia_ShowAliases_position(var$2)), oncia_ShowAliases_useGraph(var$2)); + } + } + } + } + if ($that instanceof oncia_ShowCurrentUser) { + var$2 = $that; + $returns = oncia_ShowCurrentUser_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $that = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($that, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5__init_($this))))); + return oncia_ShowCurrentUser_withGraph(oncia_ShowCurrentUser_copy(var$2, $that, oncia_ShowCurrentUser_copy$default$2(var$2), oncia_ShowCurrentUser_position(var$2)), oncia_ShowCurrentUser_useGraph(var$2)); + } + } + } + } + if ($that instanceof oncia_ShowUsers) { + var$2 = $that; + $returns = oncia_ShowUsers_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $that = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($that, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6__init_0($this))))); + return oncia_ShowUsers_withGraph(oncia_ShowUsers_copy(var$2, $that, oncia_ShowUsers_copy$default$2(var$2), oncia_ShowUsers_copy$default$3(var$2), oncia_ShowUsers_position(var$2)), oncia_ShowUsers_useGraph(var$2)); + } + } + } + } + if ($that instanceof oncia_ShowRoles) { + var$2 = $that; + $returns = oncia_ShowRoles_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $x$18 = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($x$18, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7__init_($this))))); + return oncia_ShowRoles_withGraph(oncia_ShowRoles_copy(var$2, oncia_ShowRoles_copy$default$1(var$2), oncia_ShowRoles_copy$default$2(var$2), $x$18, oncia_ShowRoles_copy$default$4(var$2), oncia_ShowRoles_position(var$2)), oncia_ShowRoles_useGraph(var$2)); + } + } + } + } + if ($that instanceof oncia_ShowServers) { + var$2 = $that; + $returns = oncia_ShowServers_yieldOrWhere(var$2); + if ($returns instanceof s_Some) { + $returns = s_Some_value($returns); + if ($returns instanceof su_Left) { + $returns = su_Left_value($returns); + if ($returns !== null) { + $yields = $returns.$_1(); + $returns = $returns.$_2(); + $that = new s_Some; + s_package$_$callClinit(); + s_Some__init_0($that, su_Left$_apply(s_package$_Left(s_package$_MODULE$), s_Tuple2__init_(oncirr_normalizeWithAndReturnClauses_addAliasesToYield($this, $yields), s_Option_map($returns, oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8__init_($this))))); + return oncia_ShowServers_withGraph(oncia_ShowServers_copy(var$2, $that, oncia_ShowServers_copy$default$2(var$2), oncia_ShowServers_position(var$2)), oncia_ShowServers_useGraph(var$2)); + } + } + } + } + return $that; }, -oncie_ParenthesizedPath_position = $this => { - return $this.$position33; +oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery = ($this, $query) => { + let $lhs, $rhs; + if ($query instanceof oncia_SingleQuery) + return oncirr_normalizeWithAndReturnClauses_rewriteTopLevelSingleQuery($this, $query); + if ($query instanceof oncia_UnionAll) { + $query = $query; + $lhs = $query.$lhs4; + $rhs = $query.$rhs4; + return oncia_UnionAll_copy($query, oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery($this, $lhs), oncirr_normalizeWithAndReturnClauses_rewriteTopLevelSingleQuery($this, $rhs.$getSingleQuery()), $query.$position38); + } + if ($query instanceof oncia_UnionDistinct) { + $query = $query; + $lhs = $query.$lhs5; + $rhs = $query.$rhs5; + return oncia_UnionDistinct_copy($query, oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery($this, $lhs), oncirr_normalizeWithAndReturnClauses_rewriteTopLevelSingleQuery($this, $rhs.$getSingleQuery()), $query.$position29); + } + if ($query instanceof oncia_TopLevelBraces) { + $query = new jl_IllegalStateException; + jl_Throwable__init_($query, $rt_s(4024)); + $rt_throw($query); + } + if (!$rt_isInstance($query, oncia_ProjectingUnion)) + $rt_throw(s_MatchError__init_($query)); + $query = new jl_IllegalStateException; + jl_Throwable__init_($query, $rt_s(4025)); + $rt_throw($query); }, -oncie_ParenthesizedPath_allVariables = $this => { - return ($this.$part0.$element()).$allVariables(); +oncirr_normalizeWithAndReturnClauses_rewriteTopLevelSingleQuery = ($this, $singleQuery) => { + let var$2, $newClauses; + var$2 = $singleQuery.$clauses0; + $newClauses = new oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0; + $newClauses.$_0268 = $this; + $singleQuery = oncia_SingleQuery_copy($singleQuery, var$2.$map($newClauses), $singleQuery.$position11); + return $this.$rewriteProjectionsRecursively.$apply2($singleQuery); }, -oncie_ParenthesizedPath_isBounded = $this => { - return $this.$part0.$isBounded(); +oncirr_normalizeWithAndReturnClauses_addAliasesToReturn = ($this, $r) => { + let $x$1; + $x$1 = oncirr_normalizeWithAndReturnClauses_aliasUnaliasedReturnItems($this, $r.$returnItems2); + return oncia_Return_copy($r, $r.$distinct1, $x$1, $r.$orderBy2, $r.$skip3, $r.$limit3, $r.$excludedNames, $r.$addedInRewrite, $r.$inTopLevelBraces, $r.$position23); }, -oncie_ParenthesizedPath_copy = ($this, $part, $optionalWhereClause, $position) => { - return oncie_ParenthesizedPath__init_($part, $optionalWhereClause, $position); +oncirr_normalizeWithAndReturnClauses_addAliasesToYield = ($this, $y) => { + return oncia_Yield_copy($y, oncirr_normalizeWithAndReturnClauses_aliasUnaliasedReturnItems($this, $y.$returnItems4), $y.$orderBy3, $y.$skip4, $y.$limit4, $y.$where3, $y.$position31); }, -oncie_ParenthesizedPath_productPrefix = $this => { - return $rt_s(5455); +oncirr_normalizeWithAndReturnClauses_aliasUnaliasedReturnItems = ($this, $ri) => { + let $aliasedReturnItems; + $aliasedReturnItems = $ri.$items0.$map(new oncirr_normalizeWithAndReturnClauses$aliasUnaliasedReturnItems$lambda$_39_0); + return oncia_ReturnItems_copy($ri, $ri.$includeExisting0, $aliasedReturnItems, $ri.$defaultOrderOnColumns, $ri.$position28); }, -oncie_ParenthesizedPath_productArity = $this => { - return 2; +oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems = ($this, $ri) => { + let $newItems; + $newItems = $ri.$items0.$map(new oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems$lambda$_40_0); + return oncia_ReturnItems_copy($ri, $ri.$includeExisting0, $newItems, $ri.$defaultOrderOnColumns, $ri.$position28); }, -oncie_ParenthesizedPath_productElement = ($this, $x$1) => { +oncirr_normalizeWithAndReturnClauses_aliasExpression = ($this, $existingAliases, $expression) => { + let $alias, var$4, $newExpression; + $alias = $existingAliases.$get2($expression); + if ($alias instanceof s_Some) { + $alias = $alias.$value5; + if (!($existingAliases.$valuesIterator()).$contains($expression)) + return oncie_Variable_withPosition(oncie_Variable_copyId($alias), $expression.$position()); + } + var$4 = onciu_topDown$_MODULE$; + onciu_Rewriter$_$callClinit(); + $alias = onciu_Rewriter$_MODULE$; + $newExpression = new oncirr_normalizeWithAndReturnClauses$$anonfun$3; + $newExpression.$$outer69 = $this; + $newExpression.$existingAliases$3 = $existingAliases; + return (onciu_topDown$_apply(var$4, onciu_Rewriter$_lift($alias, $newExpression), new oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0, 1, onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2($expression); +}, +oncirr_normalizeWithAndReturnClauses_productPrefix = $this => { + return $rt_s(409); +}, +oncirr_normalizeWithAndReturnClauses_productArity = $this => { + return 1; +}, +oncirr_normalizeWithAndReturnClauses_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$part0; - case 1: - return $this.$optionalWhereClause0; + return $this.$cypherExceptionFactory0; default: } return sr_Statics_ioobe($x$1); }, -oncie_ParenthesizedPath_productIterator = $this => { +oncirr_normalizeWithAndReturnClauses_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ParenthesizedPath_hashCode = $this => { +oncirr_normalizeWithAndReturnClauses_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ParenthesizedPath_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ParenthesizedPath_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncirr_normalizeWithAndReturnClauses_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ParenthesizedPath) ? 0 : 1)) + if (!(!($x$1 instanceof oncirr_normalizeWithAndReturnClauses) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$part0; - var$3 = $x$1.$part0; + var$2 = $this.$cypherExceptionFactory0; + $x$1 = $x$1.$cypherExceptionFactory0; if (var$2 !== null) { - if (!var$2.$equals(var$3)) + if (!onciu_OpenCypherExceptionFactory_equals(var$2, $x$1)) break b; else break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$optionalWhereClause0; - $x$1 = $x$1.$optionalWhereClause0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_ParenthesizedPath)) + if (!($this instanceof oncirr_normalizeWithAndReturnClauses)) break b; } - var$4 = 1; + var$3 = 1; break a; } - var$4 = 0; + var$3 = 0; } - return var$4; -}, -oncie_ParenthesizedPath_mapExpressions = ($this, $f) => { - return oncie_ParenthesizedPath_copy($this, $this.$part0.$mapExpressions($f), s_Option_map($this.$optionalWhereClause0, $f), $this.$position33); -}, -oncie_ParenthesizedPath__init_0 = ($this, $part, $optionalWhereClause, $position) => { - $this.$part0 = $part; - $this.$optionalWhereClause0 = $optionalWhereClause; - $this.$position33 = $position; - oncie_PatternElement__init_($this); -}, -oncie_ParenthesizedPath__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_ParenthesizedPath(); - oncie_ParenthesizedPath__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncie_QuantifiedPath$ = $rt_classWithoutFields(), -oncie_QuantifiedPath$_MODULE$ = null, -oncie_QuantifiedPath$__clinit_ = () => { - oncie_QuantifiedPath$_MODULE$ = new oncie_QuantifiedPath$; + return var$3; }, -oncie_QuantifiedPath$_apply = ($this, $part, $quantifier, $optionalWhereExpression, $position) => { - let $entityBindings, var$6; - $entityBindings = $part.$allVariables(); - var$6 = new oncie_QuantifiedPath$$apply$lambda$_1_0; - var$6.$_0719 = $position; - return oncie_QuantifiedPath__init_($part, $quantifier, $optionalWhereExpression, $entityBindings.$map(var$6), $position); +oncirr_rewriteShortestPathWithFixedLengthRel$ = $rt_classWithoutFields(), +oncirr_rewriteShortestPathWithFixedLengthRel$_MODULE$ = null, +oncirr_rewriteShortestPathWithFixedLengthRel$_instance = null, +oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit = () => { + oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit = $rt_eraseClinit(oncirr_rewriteShortestPathWithFixedLengthRel$); + oncirr_rewriteShortestPathWithFixedLengthRel$__clinit_(); }, -oncie_Ands$ = $rt_classWithoutFields(), -oncie_Ands$_MODULE$ = null, -oncie_Ands$__clinit_ = () => { - oncie_Ands$_MODULE$ = new oncie_Ands$; +oncirr_rewriteShortestPathWithFixedLengthRel$__clinit_ = () => { + let var$1, var$2; + var$1 = new oncirr_rewriteShortestPathWithFixedLengthRel$; + oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit(); + oncirr_rewriteShortestPathWithFixedLengthRel$_MODULE$ = var$1; + var$2 = onciu_topDown$_MODULE$; + onciu_Rewriter$_$callClinit(); + oncirr_rewriteShortestPathWithFixedLengthRel$_instance = onciu_topDown$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncirr_rewriteShortestPathWithFixedLengthRel$$anonfun$1), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); }, -oncie_Ands$_apply = ($this, $exprs, $position) => { - return oncie_Ands__init_0(onciuci_ListSet$_from(onciuci_ListSet$_MODULE$, $exprs), $position); +oncirr_rewriteShortestPathWithFixedLengthRel$_toString = $this => { + return $rt_s(37); }, -oncie_InequalityExpression = $rt_classWithoutFields(0), -oncie_InequalityExpression_$init$ = $$this => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - s_package$_$callClinit(); - var$2 = s_package$_Vector(s_package$_MODULE$); - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$5 = var$4.data; - oncie_TypeSignature$_$callClinit(); - var$6 = oncie_TypeSignature$_MODULE$; - var$7 = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $$this.$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq(var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$3, var$4))); +oncirr_rewriteShortestPathWithFixedLengthRel$_apply = ($this, $v) => { + oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit(); + return onciu_topDown$TopDownRewriter_apply(oncirr_rewriteShortestPathWithFixedLengthRel$_instance, $v); }; -function oncie_GreaterThanOrEqual() { - let a = this; oncie_Expression.call(a); - a.$lhs22 = null; - a.$rhs30 = null; - a.$position290 = null; - a.$canonicalOperatorSymbol0 = null; - a.$includeEquality1 = 0; - a.$signatures18 = null; +function scm_HashSet$$anon$3() { + let a = this; scm_HashSet$HashSetIterator.call(a); + a.$hash8 = 0; + a.$$outer41 = null; } -let oncie_GreaterThanOrEqual_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_GreaterThanOrEqual_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_GreaterThanOrEqual_signatures = $this => { - return $this.$signatures18; -}, -oncie_GreaterThanOrEqual_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq = ($this, $x$1) => { - $this.$signatures18 = $x$1; -}, -oncie_GreaterThanOrEqual_lhs = $this => { - return $this.$lhs22; -}, -oncie_GreaterThanOrEqual_rhs = $this => { - return $this.$rhs30; -}, -oncie_GreaterThanOrEqual_position = $this => { - return $this.$position290; -}, -oncie_GreaterThanOrEqual_canonicalOperatorSymbol = $this => { - return $this.$canonicalOperatorSymbol0; -}, -oncie_GreaterThanOrEqual_productPrefix = $this => { - return $rt_s(5456); -}, -oncie_GreaterThanOrEqual_productArity = $this => { - return 2; -}, -oncie_GreaterThanOrEqual_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs22; - case 1: - return $this.$rhs30; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncie_GreaterThanOrEqual_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_GreaterThanOrEqual_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +let scm_HashSet$$anon$3_hashCode = $this => { + return $this.$hash8; }, -oncie_GreaterThanOrEqual_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +scm_HashSet$$anon$3_extract = ($this, $nd) => { + let var$2, $unimproveHash_improvedHash; + var$2 = $this.$$outer41; + $unimproveHash_improvedHash = $nd.$_hash; + if (var$2 === null) + $rt_throw(null); + $this.$hash8 = $unimproveHash_improvedHash ^ ($unimproveHash_improvedHash >>> 16 | 0); + return $this; }, -oncie_GreaterThanOrEqual_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_GreaterThanOrEqual) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$lhs22; - var$3 = $x$1.$lhs22; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; +ong_SimpleMessageFormatter = $rt_classWithoutFields(), +ong_SimpleMessageFormatter_format = ($statusParameterKeys, $joinStyles, $template, $substitution, $offsets, $params) => { + let var$7, $message, $currentParam, $prevOffset, var$11, var$12, $offset, var$14, $formattedParam, var$16, var$17, var$18, var$19; + var$7 = $offsets.data; + $message = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($message); + $currentParam = 0; + $prevOffset = 0; + var$11 = var$7.length; + var$12 = 0; + while (var$12 < var$11) { + a: { + $offset = var$7[var$12]; + jl_AbstractStringBuilder_append1($message, $template, $prevOffset, $offset); + var$14 = $currentParam + 1 | 0; + if ($params === null) + $formattedParam = $rt_s(10); + else if ($statusParameterKeys === null) + $formattedParam = jl_String_valueOf($params.data[$currentParam]); + else { + var$16 = $statusParameterKeys.data[$currentParam]; + if (var$16 instanceof ong_GqlParams$ListParam) { + $offsets = $params.data; + var$17 = var$16; + $formattedParam = $offsets[$currentParam]; + if ($rt_isInstance($formattedParam, ju_List)) { + var$18 = $formattedParam; + $formattedParam = $joinStyles.$get6(var$16); + var$17 = var$17.$processor0.$inner1; + if (var$17 !== null) { + $offsets = $rt_createArray(jl_String, var$18.$size()); + var$19 = $offsets.data; + $prevOffset = 0; + while ($prevOffset < var$18.$size()) { + var$19[$prevOffset] = var$17.$process0(var$18.$get0($prevOffset)); + $prevOffset = $prevOffset + 1 | 0; + } + var$18 = jus_Stream_toList(ju_Arrays_stream($offsets)); } - if (var$3 !== null) - break b; - } - var$3 = $this.$rhs30; - $x$1 = $x$1.$rhs30; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; + if ($formattedParam === null) + $formattedParam = ong_GqlParams$ListProcessor_commadFormat(var$18); + else if (jl_Enum_equals($formattedParam, ong_GqlParams$JoinStyle_ANDED)) { + if (var$18.$isEmpty()) + $formattedParam = $rt_s(4); + else if (var$18.$size() == 1) + $formattedParam = jl_String_valueOf(var$18.$get0(0)); + else { + $formattedParam = ong_GqlParams$ListProcessor_initialCommas(var$18); + jl_AbstractStringBuilder_append($formattedParam, $rt_s(120)); + jl_AbstractStringBuilder_append($formattedParam, jl_String_valueOf(var$18.$get0(var$18.$size() - 1 | 0))); + $formattedParam = jl_AbstractStringBuilder_toString($formattedParam); + } + } else if (!jl_Enum_equals($formattedParam, ong_GqlParams$JoinStyle_ORED)) + $formattedParam = ong_GqlParams$ListProcessor_commadFormat(var$18); + else if (var$18.$isEmpty()) + $formattedParam = $rt_s(4); + else if (var$18.$size() == 1) + $formattedParam = jl_String_valueOf(var$18.$get0(0)); + else { + $formattedParam = ong_GqlParams$ListProcessor_initialCommas(var$18); + jl_AbstractStringBuilder_append($formattedParam, $rt_s(870)); + jl_AbstractStringBuilder_append($formattedParam, jl_String_valueOf(var$18.$get0(var$18.$size() - 1 | 0))); + $formattedParam = jl_AbstractStringBuilder_toString($formattedParam); + } + break a; } - if ($x$1 !== null) - break b; } + $formattedParam = var$16.$process0($params.data[$currentParam]); } - var$4 = 1; - break a; } - var$4 = 0; + jl_AbstractStringBuilder_append($message, $formattedParam); + $prevOffset = $offset + $substitution.$nativeString.length | 0; + var$12 = var$12 + 1 | 0; + $currentParam = var$14; } - return var$4; -}, -oncie_GreaterThanOrEqual__init_ = ($this, $lhs, $rhs, $position) => { - $this.$lhs22 = $lhs; - $this.$rhs30 = $rhs; - $this.$position290 = $position; - oncie_Expression__init_($this); - oncie_InequalityExpression_$init$($this); - $this.$canonicalOperatorSymbol0 = $rt_s(4454); - $this.$includeEquality1 = 1; -}, -oncie_GreaterThanOrEqual__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_GreaterThanOrEqual(); - oncie_GreaterThanOrEqual__init_(var_3, var_0, var_1, var_2); - return var_3; + if ($prevOffset < $template.$nativeString.length) + jl_AbstractStringBuilder_append1($message, $template, $prevOffset, $template.$nativeString.length); + return jl_AbstractStringBuilder_toString($message); }; -function oncie_GreaterThan() { - let a = this; oncie_Expression.call(a); - a.$lhs28 = null; - a.$rhs23 = null; - a.$position267 = null; - a.$canonicalOperatorSymbol3 = null; - a.$includeEquality = 0; - a.$signatures5 = null; +function oncia_Statements() { + jl_Object.call(this); + this.$statements0 = null; } -let oncie_GreaterThan_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_GreaterThan_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_GreaterThan_signatures = $this => { - return $this.$signatures5; -}, -oncie_GreaterThan_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq = ($this, $x$1) => { - $this.$signatures5 = $x$1; -}, -oncie_GreaterThan_lhs = $this => { - return $this.$lhs28; -}, -oncie_GreaterThan_rhs = $this => { - return $this.$rhs23; -}, -oncie_GreaterThan_position = $this => { - return $this.$position267; +let oncia_Statements_position = $this => { + onciu_InputPosition$_$callClinit(); + return onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$); }, -oncie_GreaterThan_canonicalOperatorSymbol = $this => { - return $this.$canonicalOperatorSymbol3; +oncia_Statements_size = $this => { + return $this.$statements0.$length(); }, -oncie_GreaterThan_productPrefix = $this => { - return $rt_s(5457); +oncia_Statements_productPrefix = $this => { + return $rt_s(4026); }, -oncie_GreaterThan_productArity = $this => { - return 2; +oncia_Statements_productArity = $this => { + return 1; }, -oncie_GreaterThan_productElement = ($this, $x$1) => { +oncia_Statements_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs28; - case 1: - return $this.$rhs23; + return $this.$statements0; default: } return sr_Statics_ioobe($x$1); }, -oncie_GreaterThan_productIterator = $this => { +oncia_Statements_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_GreaterThan_hashCode = $this => { +oncia_Statements_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_GreaterThan_toString = $this => { +oncia_Statements_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_GreaterThan_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +}, +oncia_Statements_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_GreaterThan) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$lhs28; - var$3 = $x$1.$lhs28; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$rhs23; - $x$1 = $x$1.$rhs23; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Statements) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$statements0; + $x$1 = $x$1.$statements0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) break b; else break c; @@ -200764,118 +88639,127 @@ oncie_GreaterThan_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } + if (!($this instanceof oncia_Statements)) + break b; } - var$4 = 1; + var$3 = 1; break a; } - var$4 = 0; + var$3 = 0; } - return var$4; + return var$3; }, -oncie_GreaterThan__init_ = ($this, $lhs, $rhs, $position) => { - $this.$lhs28 = $lhs; - $this.$rhs23 = $rhs; - $this.$position267 = $position; - oncie_Expression__init_($this); - oncie_InequalityExpression_$init$($this); - $this.$canonicalOperatorSymbol3 = $rt_s(604); - $this.$includeEquality = 0; +oncia_Statements_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncie_GreaterThan__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_GreaterThan(); - oncie_GreaterThan__init_(var_3, var_0, var_1, var_2); - return var_3; +oncia_Statements__init_ = ($this, $statements) => { + $this.$statements0 = $statements; +}, +oncia_Statements__init_0 = var_0 => { + let var_1 = new oncia_Statements(); + oncia_Statements__init_(var_1, var_0); + return var_1; }; -function oncie_LessThanOrEqual() { - let a = this; oncie_Expression.call(a); - a.$lhs17 = null; - a.$rhs18 = null; - a.$position271 = null; - a.$canonicalOperatorSymbol1 = null; - a.$includeEquality0 = 0; - a.$signatures12 = null; +function sr_LazyRef() { + let a = this; jl_Object.call(a); + a.$_initialized = 0; + a.$_value0 = null; } -let oncie_LessThanOrEqual_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_LessThanOrEqual_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_LessThanOrEqual_signatures = $this => { - return $this.$signatures12; -}, -oncie_LessThanOrEqual_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq = ($this, $x$1) => { - $this.$signatures12 = $x$1; -}, -oncie_LessThanOrEqual_lhs = $this => { - return $this.$lhs17; -}, -oncie_LessThanOrEqual_rhs = $this => { - return $this.$rhs18; -}, -oncie_LessThanOrEqual_position = $this => { - return $this.$position271; +let sr_LazyRef_initialized = $this => { + return $this.$_initialized; }, -oncie_LessThanOrEqual_canonicalOperatorSymbol = $this => { - return $this.$canonicalOperatorSymbol1; +sr_LazyRef_value = $this => { + return $this.$_value0; }, -oncie_LessThanOrEqual_productPrefix = $this => { - return $rt_s(5458); +sr_LazyRef_initialize = ($this, $value) => { + $this.$_value0 = $value; + $this.$_initialized = 1; + return $value; +}; +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer25 = null; + a.$State$module$1 = null; +} +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let $reference; + if ($x1 instanceof oncia_SingleQuery) + return new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0; + if (!($x1 instanceof oncia_UseGraph)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $x1 = $x1; + $reference = $x1.$graphReference1; + $default = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1; + $default.$_0191 = $this; + $default.$_169 = $reference; + $default.$_226 = $x1; + return $default; +}; +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1() { + let a = this; jl_Object.call(a); + a.$useClausesToRemove = null; + a.$currentWorkGraph = null; + a.$$outer30 = null; +} +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productPrefix = $this => { + return $rt_s(4027); }, -oncie_LessThanOrEqual_productArity = $this => { +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productArity = $this => { return 2; }, -oncie_LessThanOrEqual_productElement = ($this, $x$1) => { +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs17; + return $this.$useClausesToRemove; case 1: - return $this.$rhs18; + return $this.$currentWorkGraph; default: } return sr_Statics_ioobe($x$1); }, -oncie_LessThanOrEqual_productIterator = $this => { +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_LessThanOrEqual_hashCode = $this => { +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_LessThanOrEqual_toString = $this => { +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_LessThanOrEqual_equals = ($this, $x$1) => { +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_LessThanOrEqual) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$lhs17; - var$3 = $x$1.$lhs17; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$useClausesToRemove; + var$3 = $x$1.$useClausesToRemove; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) break b; + else + break c; } - var$3 = $this.$rhs18; - $x$1 = $x$1.$rhs18; + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$currentWorkGraph; + $x$1 = $x$1.$currentWorkGraph; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break c; + break d; } if ($x$1 !== null) break b; } + if (!($this instanceof oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1)) + break b; } var$4 = 1; break a; @@ -200884,1422 +88768,2664 @@ oncie_LessThanOrEqual_equals = ($this, $x$1) => { } return var$4; }, -oncie_LessThanOrEqual__init_ = ($this, $lhs, $rhs, $position) => { - $this.$lhs17 = $lhs; - $this.$rhs18 = $rhs; - $this.$position271 = $position; - oncie_Expression__init_($this); - oncie_InequalityExpression_$init$($this); - $this.$canonicalOperatorSymbol1 = $rt_s(4456); - $this.$includeEquality0 = 1; +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_0 = ($this, $$outer, $useClausesToRemove, $currentWorkGraph) => { + $this.$useClausesToRemove = $useClausesToRemove; + $this.$currentWorkGraph = $currentWorkGraph; + if ($$outer === null) + $rt_throw(null); + $this.$$outer30 = $$outer; }, -oncie_LessThanOrEqual__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_LessThanOrEqual(); - oncie_LessThanOrEqual__init_(var_3, var_0, var_1, var_2); +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1(); + oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_0(var_3, var_0, var_1, var_2); return var_3; }; -function oncie_LessThan() { - let a = this; oncie_Expression.call(a); - a.$lhs15 = null; - a.$rhs15 = null; - a.$position197 = null; - a.$canonicalOperatorSymbol2 = null; - a.$includeEquality2 = 0; - a.$signatures9 = null; +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2() { + sr_AbstractPartialFunction.call(this); + this.$useClausesToRemove$1 = null; } -let oncie_LessThan_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2_applyOrElse = ($this, $x2, $default) => { + let $clauses; + if (!($x2 instanceof oncia_SingleQuery)) + return $default.$apply2($x2); + $x2 = $x2; + $clauses = $x2.$clauses0; + $default = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2$applyOrElse$lambda$_0_0; + $default.$_0626 = $this; + return oncia_SingleQuery_copy($x2, $clauses.$filterNot0($default), $x2.$position11); }, -oncie_LessThan_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +onciu_Foldable$TreeAny$$reverseTreeChildren$extension$lambda$_2_0 = $rt_classWithoutFields(), +onciu_Foldable$TreeAny$$reverseTreeChildren$extension$lambda$_2_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + s_package$_$callClinit(); + s_package$_Iterator(s_package$_MODULE$); + return (sr_ScalaRunTime$_genericWrapArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_Object, [var$1, var$2]))).$iterator0(); +}; +function oncir_ValidatingRewriter$$anonfun$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer44 = null; + a.$input$1 = null; +} +let oncir_ValidatingRewriter$$anonfun$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if (!$rt_isInstance($x, oncir_ValidatingCondition)) + $x = $default.$apply2($x); + else { + $x = $x; + $default = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + $x = s_Predef$ArrowAssoc$_$minus$greater$extension($default, $x.$name(), $x.$apply38($this.$input$1, $this.$$outer44.$cancellationChecker)); + } + return $x; }, -oncie_LessThan_signatures = $this => { - return $this.$signatures9; +oncir_ValidatingRewriter$validate$lambda$_35_0 = $rt_classWithoutFields(), +oncir_ValidatingRewriter$validate$lambda$_35_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf((var$1.$_2()).$nonEmpty()); +}; +function s_PartialFunction$Lifted() { + sr_AbstractFunction1.call(this); + this.$pf3 = null; +} +let s_PartialFunction$Lifted_apply = ($this, $v1) => { + let var$2, var$3; + var$2 = $this.$pf3; + s_PartialFunction$_$callClinit(); + var$3 = var$2.$applyOrElse($v1, s_PartialFunction$_scala$PartialFunction$$checkFallback(s_PartialFunction$_MODULE$)); + return s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, var$3) ? s_None$_MODULE$ : s_Some__init_(var$3); +}; +function s_PartialFunction$Unlifted() { + sr_AbstractPartialFunction.call(this); + this.$f14 = null; +} +let s_PartialFunction$Unlifted_applyOrElse = ($this, $x, $default) => { + let $getOrElse_this; + $getOrElse_this = $this.$f14.$apply2($x); + if ($getOrElse_this === null) + $rt_throw(null); + if (!s_Option_isEmpty($getOrElse_this)) + return $getOrElse_this.$get1(); + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x); +}; +function sr_ObjectRef() { + jl_Object.call(this); + this.$elem = null; +} +let sr_ObjectRef__init_0 = ($this, $elem) => { + $this.$elem = $elem; }, -oncie_LessThan_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq = ($this, $x$1) => { - $this.$signatures9 = $x$1; +sr_ObjectRef__init_ = var_0 => { + let var_1 = new sr_ObjectRef(); + sr_ObjectRef__init_0(var_1, var_0); + return var_1; }, -oncie_LessThan_lhs = $this => { - return $this.$lhs15; +sr_ObjectRef_create = $e => { + return sr_ObjectRef__init_($e); +}; +function sci_Vector$appendedAll0$lambda$_77_0() { + jl_Object.call(this); + this.$_0953 = null; +} +let sci_Vector$appendedAll0$lambda$_77_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0953; + var$2.$elem = var$2.$elem.$appended1(var$1); + return sr_BoxedUnit_UNIT; +}; +function sci_Vector$appendedAll0$lambda$_77_1() { + jl_Object.call(this); + this.$_0415 = null; +} +let sci_Vector$appendedAll0$lambda$_77_1_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0415; + var$2.$elem = var$2.$elem.$appended1(var$1); + return sr_BoxedUnit_UNIT; +}; +function oncirr_normalizeWithAndReturnClauses$$anonfun$1() { + sr_AbstractPartialFunction.call(this); + this.$$outer5 = null; +} +let oncirr_normalizeWithAndReturnClauses$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let $x$2, var$4, $x$1, $x$4, $ri, $x$3, $orderBy, $where, $existingAliases, $updatedOrderBy, $updatedWhere, $x$7; + $x$2 = 0; + var$4 = null; + if ($rt_isInstance($x1, oncia_ProjectionClause)) { + $x$2 = 1; + var$4 = $x1; + oncia_ProjectionClause$_$callClinit(); + $x$1 = oncia_ProjectionClause$_unapply(oncia_ProjectionClause$_MODULE$, var$4); + if (!s_Option_isEmpty($x$1)) { + $x$4 = $x$1.$value5; + $ri = $x$4.$_22; + $x$3 = $x$4.$_31; + $x$4 = $x$4.$_60; + if ($ri !== null && jl_Object_equals(s_None$_MODULE$, $x$3) && jl_Object_equals(s_None$_MODULE$, $x$4)) { + $x$1 = oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems($this.$$outer5, $ri); + return var$4.$copyProjection(var$4.$copyProjection$default$1(), $x$1, var$4.$copyProjection$default$3(), var$4.$copyProjection$default$4(), var$4.$copyProjection$default$5(), var$4.$copyProjection$default$6()); + } + } + } + if ($rt_isInstance($x1, oncia_FullSubqueryExpression)) { + $x1 = $x1; + return $x1.$withQuery(oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$rewriteTopLevelQuery($this.$$outer5, $x1.$query())); + } + if ($x$2) { + oncia_ProjectionClause$_$callClinit(); + $x$1 = oncia_ProjectionClause$_unapply(oncia_ProjectionClause$_MODULE$, var$4); + if (!s_Option_isEmpty($x$1)) { + $x$1 = $x$1.$value5; + $ri = $x$1.$_22; + $orderBy = $x$1.$_31; + $where = $x$1.$_60; + if ($ri !== null) { + $x1 = new oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_0; + $x1.$_0498 = $this; + var$4.$verifyOrderByAggregationUse($x1); + $existingAliases = ($ri.$items0.$collect(new oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2)).$toMap(s_$less$colon$less$_singleton); + $x1 = new oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1; + $x1.$_01029 = $this; + $x1.$_1352 = $existingAliases; + $updatedOrderBy = s_Option_map($orderBy, $x1); + $x1 = new oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2; + $x1.$_078 = $this; + $x1.$_128 = $existingAliases; + $updatedWhere = s_Option_map($where, $x1); + $x$7 = oncirr_normalizeWithAndReturnClauses_org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems($this.$$outer5, $ri); + return var$4.$copyProjection(var$4.$copyProjection$default$1(), $x$7, $updatedOrderBy, var$4.$copyProjection$default$4(), var$4.$copyProjection$default$5(), $updatedWhere); + } + } + } + return $default.$apply2($x1); +}; +function sci_Vector$filterImpl$lambda$_70_0() { + let a = this; jl_Object.call(a); + a.$_0402 = null; + a.$_1144 = 0; + a.$_252 = null; +} +let sci_Vector$filterImpl$lambda$_70_0_apply = (var$0, var$1) => { + return sci_Vector_$anonfun$filterImpl$1(var$0.$_0402, var$0.$_1144, var$0.$_252, var$1); +}; +function sci_Vector$filterImpl$lambda$_70_1() { + let a = this; jl_Object.call(a); + a.$_0877 = null; + a.$_1295 = 0; + a.$_294 = null; +} +let sci_Vector$filterImpl$lambda$_70_1_apply = (var$0, var$1) => { + return sci_Vector_$anonfun$filterImpl$2(var$0.$_0877, var$0.$_1295, var$0.$_294, var$1); }, -oncie_LessThan_rhs = $this => { - return $this.$rhs15; +sr_AbstractFunction2 = $rt_classWithoutFields(), +sr_AbstractFunction2_toString = $this => { + return $rt_s(492); +}; +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$() { + sr_AbstractFunction2.call(this); + this.$$outer51 = null; +} +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$_apply = ($this, $useClausesToRemove, $currentWorkGraph) => { + return oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_($this.$$outer51, $useClausesToRemove, $currentWorkGraph); }, -oncie_LessThan_position = $this => { - return $this.$position197; +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$__init_ = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer51 = $$outer; }, -oncie_LessThan_canonicalOperatorSymbol = $this => { - return $this.$canonicalOperatorSymbol2; +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$__init_0 = var_0 => { + let var_1 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$(); + oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$__init_(var_1, var_0); + return var_1; +}; +function sc_MapView$MapValues() { + let a = this; sc_AbstractMapView.call(a); + a.$underlying33 = null; + a.$f8 = null; +} +let sc_MapView$MapValues_iterator = $this => { + let var$1, var$2; + var$1 = sc_MapView$Id_iterator($this.$underlying33); + var$2 = new sc_MapView$MapValues$iterator$lambda$_0_0; + var$2.$_01053 = $this; + return var$1.$map5(var$2); }, -oncie_LessThan_productPrefix = $this => { - return $rt_s(5459); +sc_MapView$MapValues_knownSize = $this => { + return sc_MapView$Id_knownSize($this.$underlying33); +}; +function onciu_Foldable$TreeAny$$anon$1() { + sc_AbstractIterator.call(this); + this.$current6 = null; +} +let onciu_Foldable$TreeAny$$anon$1_hasNext = $this => { + return $this.$current6.$nonEmpty(); }, -oncie_LessThan_productArity = $this => { - return 2; +onciu_Foldable$TreeAny$$anon$1_next = $this => { + let $r; + $r = $this.$current6.$last(); + $this.$current6 = $this.$current6.$init0(); + return $r; +}; +function onciu_Foldable$TreeAny$$anon$2() { + let a = this; jl_Object.call(a); + a.$c0 = 0; + a.$p$10 = null; +} +let onciu_Foldable$TreeAny$$anon$2_iterator = $this => { + return $this; }, -oncie_LessThan_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs15; - case 1: - return $this.$rhs15; - default: - } - return sr_Statics_ioobe($x$1); +onciu_Foldable$TreeAny$$anon$2_isEmpty = $this => { + return sc_Iterator_isEmpty$($this); }, -oncie_LessThan_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_Foldable$TreeAny$$anon$2_toString = $this => { + return $rt_s(818); }, -oncie_LessThan_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +onciu_Foldable$TreeAny$$anon$2_foreach = ($this, $f) => { + sc_IterableOnceOps_foreach$($this, $f); }, -oncie_LessThan_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +onciu_Foldable$TreeAny$$anon$2_exists = ($this, $p) => { + return sc_IterableOnceOps_exists$($this, $p); }, -oncie_LessThan_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +onciu_Foldable$TreeAny$$anon$2_find = ($this, $p) => { + return sc_IterableOnceOps_find$($this, $p); +}, +onciu_Foldable$TreeAny$$anon$2_foldLeft = ($this, $z, $op) => { + return sc_IterableOnceOps_foldLeft$($this, $z, $op); +}, +onciu_Foldable$TreeAny$$anon$2_nonEmpty = $this => { + return sc_IterableOnceOps_nonEmpty$($this); +}, +onciu_Foldable$TreeAny$$anon$2_size = $this => { + return sc_IterableOnceOps_size$($this); +}, +onciu_Foldable$TreeAny$$anon$2_copyToArray1 = ($this, $xs) => { + return sc_IterableOnceOps_copyToArray$($this, $xs); +}, +onciu_Foldable$TreeAny$$anon$2_copyToArray0 = ($this, $xs, $start) => { + return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); +}, +onciu_Foldable$TreeAny$$anon$2_copyToArray = ($this, $xs, $start, $len) => { + return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); +}, +onciu_Foldable$TreeAny$$anon$2_toList = $this => { + return sc_IterableOnceOps_toList$($this); +}, +onciu_Foldable$TreeAny$$anon$2_toSeq = $this => { + return sc_IterableOnceOps_toSeq$($this); +}, +onciu_Foldable$TreeAny$$anon$2_toArray = ($this, $evidence$2) => { + return sc_IterableOnceOps_toArray$($this, $evidence$2); +}, +onciu_Foldable$TreeAny$$anon$2_knownSize = $this => { + return (-1); +}, +onciu_Foldable$TreeAny$$anon$2_hasNext = $this => { + return $this.$c0 < 0 ? 0 : 1; +}, +onciu_Foldable$TreeAny$$anon$2_next = $this => { + let $result; + $result = $this.$p$10.$productElement($this.$c0); + $this.$c0 = $this.$c0 - 1 | 0; + return $result; +}; +function oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$scope$1 = null; + a.$root$1 = null; +} +let oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5, var$6; a: { b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_LessThan) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$lhs15; - var$3 = $x$1.$lhs15; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$rhs15; - $x$1 = $x$1.$rhs15; + $x = $x; + if ($x !== null) + c: { + var$3 = $x.$_1(); + var$4 = $x.$_2(); + var$5 = var$4.$name12; if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else + if (jl_String_equals(var$3, var$5)) break c; + else + break b; } - if ($x$1 !== null) + if (var$5 !== null) break b; } - } - var$4 = 1; + $x = $default.$apply2($x); break a; } - var$4 = 0; + onciu_Ref$_$callClinit(); + $x = onciu_Ref_toIdString(onciu_Ref$_apply(onciu_Ref$_MODULE$, $this.$scope$1)); + var$5 = $this.$root$1; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_AbstractStringBuilder_append0(var$6, 39); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$3), $rt_s(4028)), var$4), $rt_s(4029)), $x), $rt_s(4030)), $rt_s(94)), var$5); + $x = jl_AbstractStringBuilder_toString(var$6); } - return var$4; + return $x; }, -oncie_LessThan__init_ = ($this, $lhs, $rhs, $position) => { - $this.$lhs15 = $lhs; - $this.$rhs15 = $rhs; - $this.$position197 = $position; - oncie_Expression__init_($this); - oncie_InequalityExpression_$init$($this); - $this.$canonicalOperatorSymbol2 = $rt_s(603); - $this.$includeEquality2 = 0; +onciuci_ListSet$EmptyListSet$ = $rt_classWithoutFields(onciuci_ListSet), +onciuci_ListSet$EmptyListSet$_MODULE$ = null, +onciuci_ListSet$EmptyListSet$_$callClinit = () => { + onciuci_ListSet$EmptyListSet$_$callClinit = $rt_eraseClinit(onciuci_ListSet$EmptyListSet$); + onciuci_ListSet$EmptyListSet$__clinit_(); }, -oncie_LessThan__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_LessThan(); - oncie_LessThan__init_(var_3, var_0, var_1, var_2); - return var_3; +onciuci_ListSet$EmptyListSet$__clinit_ = () => { + let var$1; + var$1 = new onciuci_ListSet$EmptyListSet$; + onciuci_ListSet$EmptyListSet$_$callClinit(); + onciuci_ListSet__init_0(var$1, ju_LinkedHashSet__init_0()); + onciuci_ListSet$EmptyListSet$_MODULE$ = var$1; +}, +onciuci_ListSet$EmptyListSet$_knownSize = $this => { + return 0; }; -function oncie_InvalidNotEquals() { - let a = this; oncie_Expression.call(a); - a.$lhs27 = null; - a.$rhs26 = null; - a.$position247 = null; +function onciuci_ListSet$Builder() { + jl_Object.call(this); + this.$javaSet = null; } -let oncie_InvalidNotEquals_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let onciuci_ListSet$Builder_sizeHint0 = ($this, $size) => { + return; }, -oncie_InvalidNotEquals_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +onciuci_ListSet$Builder_sizeHint = ($this, $coll, $delta) => { + scm_Builder_sizeHint$($this, $coll, $delta); }, -oncie_InvalidNotEquals_lhs = $this => { - return $this.$lhs27; +onciuci_ListSet$Builder_addAll = ($this, $xs) => { + return scm_Growable_addAll$($this, $xs); }, -oncie_InvalidNotEquals_rhs = $this => { - return $this.$rhs26; +onciuci_ListSet$Builder_result = $this => { + return onciuci_ListSet__init_($this.$javaSet); }, -oncie_InvalidNotEquals_position = $this => { - return $this.$position247; +onciuci_ListSet$Builder_addOne = ($this, $elem) => { + ju_HashSet_add($this.$javaSet, $elem); + return $this; }, -oncie_InvalidNotEquals_canonicalOperatorSymbol = $this => { - return $rt_s(4457); +oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_0 = $rt_classWithoutFields(), +oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 === null ? 0 : 1); +}; +function oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_1() { + jl_Object.call(this); + this.$_021 = null; +} +let oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_021; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + var$4 = new oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0; + var$4.$_0899 = var$2; + var$4.$_1306 = var$3; + var$1.$foreach(var$4); + return sr_BoxedUnit_UNIT; +}; +function sc_Map$equals$lambda$_7_0() { + jl_Object.call(this); + this.$_0587 = null; +} +let sc_Map$equals$lambda$_7_0__init_0 = (var$0, var$1) => { + var$0.$_0587 = var$1; }, -oncie_InvalidNotEquals_productPrefix = $this => { - return $rt_s(5460); +sc_Map$equals$lambda$_7_0__init_ = var_0 => { + let var_1 = new sc_Map$equals$lambda$_7_0(); + sc_Map$equals$lambda$_7_0__init_0(var_1, var_0); + return var_1; }, -oncie_InvalidNotEquals_productArity = $this => { - return 2; +sc_Map$equals$lambda$_7_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0587; + var$3 = var$1.$_1(); + sc_Map$_$callClinit(); + return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$2.$getOrElse1(var$3, sc_Map$_scala$collection$Map$$DefaultSentinelFn), var$1.$_2()) ? 0 : 1); +}; +function sc_Iterator$$anon$7() { + let a = this; sc_AbstractIterator.call(a); + a.$hd0 = null; + a.$status0 = 0; + a.$$outer20 = null; + a.$pf$1 = null; +} +let sc_Iterator$$anon$7_toString = $this => { + return $rt_s(37); }, -oncie_InvalidNotEquals_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs27; - case 1: - return $this.$rhs26; - default: +sc_Iterator$$anon$7_apply = ($this, $value) => { + return sr_Statics_pfMarker; +}, +sc_Iterator$$anon$7_hasNext = $this => { + let $marker, var$2, $x, $v; + $marker = sr_Statics_pfMarker; + while (true) { + var$2 = $this.$status0; + if (var$2) + break; + if (!$this.$$outer20.$hasNext()) { + $this.$status0 = (-1); + continue; + } + $x = $this.$$outer20.$next(); + $v = $this.$pf$1.$applyOrElse($x, $this); + if ($marker === $v) + continue; + $this.$hd0 = $v; + $this.$status0 = 1; } - return sr_Statics_ioobe($x$1); + if (var$2 != 1) + return 0; + return 1; }, -oncie_InvalidNotEquals_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +sc_Iterator$$anon$7_next = $this => { + if (!sc_Iterator$$anon$7_hasNext($this)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + $this.$status0 = 0; + return $this.$hd0; +}; +function oncifp_InstrumentedProcedureSignatureResolver() { + let a = this; jl_Object.call(a); + a.$resolver = null; + a.$hasAttemptedToResolve = 0; +} +let oncifp_InstrumentedProcedureSignatureResolver_procedureSignature = ($this, $name) => { + $this.$hasAttemptedToResolve = 1; + return cnsa_CustomSignatureResolver_procedureSignature($this.$resolver, $name); }, -oncie_InvalidNotEquals_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncifp_InstrumentedProcedureSignatureResolver_functionSignature = ($this, $name) => { + $this.$hasAttemptedToResolve = 1; + return cnsa_CustomSignatureResolver_functionSignature($this.$resolver, $name); }, -oncie_InvalidNotEquals_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncifp_RewriteProcedureCalls$process$lambda$_2_0 = $rt_classWithoutFields(), +oncifp_RewriteProcedureCalls$process$lambda$_2_0_apply = (var$0, var$1) => { + return var$1.$name4; +}; +function sc_View$FlatMap() { + let a = this; sc_AbstractView.call(a); + a.$underlying29 = null; + a.$f15 = null; +} +let sc_View$FlatMap_iterator = $this => { + return ($this.$underlying29.$iterator0()).$flatMap2($this.$f15); }, -oncie_InvalidNotEquals_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_InvalidNotEquals) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs27; - var$3 = $x$1.$lhs27; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs26; - $x$1 = $x$1.$rhs26; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; +sc_View$FlatMap_knownSize = $this => { + if ($this.$underlying29.$knownSize()) + return (-1); + return 0; +}, +sc_View$FlatMap_isEmpty = $this => { + return sc_Iterator_isEmpty$(sc_View$FlatMap_iterator($this)); +}, +sc_View$FlatMap__init_0 = ($this, $underlying, $f) => { + $this.$underlying29 = $underlying; + $this.$f15 = $f; +}, +sc_View$FlatMap__init_ = (var_0, var_1) => { + let var_2 = new sc_View$FlatMap(); + sc_View$FlatMap__init_0(var_2, var_0, var_1); + return var_2; +}, +oncirr_rewriteShortestPathWithFixedLengthRel$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_rewriteShortestPathWithFixedLengthRel$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let var$3, $r, $relPat, $range, $one, $x$8; + if ($x1 instanceof oncie_ShortestPathsPatternPart) { + var$3 = $x1; + $r = var$3.$element2; + if ($r instanceof oncie_RelationshipChain) { + $r = $r; + $relPat = $r.$relationship1; + if ($r.$element3 instanceof oncie_NodePattern && $relPat !== null) { + $range = $relPat.$length3; + if (jl_Object_equals(s_None$_MODULE$, $range)) { + $one = new s_Some; + $range = new oncie_UnsignedDecimalIntegerLiteral; + onciu_InputPosition$_$callClinit(); + oncie_UnsignedDecimalIntegerLiteral__init_($range, $rt_s(161), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + s_Some__init_0($one, $range); + $range = s_Some__init_(s_Some__init_(oncie_Range__init_($one, $one, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)))); + $x$8 = oncie_RelationshipPattern_copy($relPat, $relPat.$variable5, $relPat.$labelExpression6, $range, $relPat.$properties5, $relPat.$predicate1, $relPat.$direction0, $relPat.$position8); + return oncie_ShortestPathsPatternPart_copy(var$3, oncie_RelationshipChain_copy($r, $r.$element3, $x$8, $r.$rightNode0, $r.$position111), var$3.$single0, var$3.$position10); } - if (!($this instanceof oncie_InvalidNotEquals)) - break b; } - var$4 = 1; - break a; } - var$4 = 0; } - return var$4; + return $default.$apply2($x1); +}; +function sc_IterableOnceOps$min$lambda$_77_0() { + jl_Object.call(this); + this.$_0521 = null; +} +let sc_IterableOnceOps$min$lambda$_77_0_apply = (var$0, var$1, var$2) => { + return var$0.$_0521.$min0(var$1, var$2); +}; +function ju_HashSet() { + ju_AbstractSet.call(this); + this.$backingMap = null; +} +let ju_HashSet__init_1 = $this => { + ju_HashSet__init_0($this, ju_HashMap__init_()); }, -oncie_InvalidNotEquals__init_ = ($this, $lhs, $rhs, $position) => { - $this.$lhs27 = $lhs; - $this.$rhs26 = $rhs; - $this.$position247 = $position; - oncie_Expression__init_($this); +ju_HashSet__init_ = () => { + let var_0 = new ju_HashSet(); + ju_HashSet__init_1(var_0); + return var_0; }, -oncie_InvalidNotEquals__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_InvalidNotEquals(); - oncie_InvalidNotEquals__init_(var_3, var_0, var_1, var_2); - return var_3; +ju_HashSet__init_0 = ($this, $backingMap) => { + $this.$backingMap = $backingMap; +}, +ju_HashSet__init_2 = var_0 => { + let var_1 = new ju_HashSet(); + ju_HashSet__init_0(var_1, var_0); + return var_1; +}, +ju_HashSet_add = ($this, $object) => { + return $this.$backingMap.$put($object, $this) !== null ? 0 : 1; +}, +ju_HashSet_contains = ($this, $object) => { + return ju_HashMap_containsKey($this.$backingMap, $object); +}, +ju_HashSet_isEmpty = $this => { + return ju_HashMap_isEmpty($this.$backingMap); +}, +ju_HashSet_iterator = $this => { + return ($this.$backingMap.$keySet1()).$iterator(); +}, +ju_HashSet_remove = ($this, $object) => { + return $this.$backingMap.$remove3($object) === null ? 0 : 1; +}, +ju_HashSet_size = $this => { + return $this.$backingMap.$elementCount; +}, +ju_SequencedSet = $rt_classWithoutFields(0), +ju_LinkedHashSet = $rt_classWithoutFields(ju_HashSet), +ju_LinkedHashSet__init_1 = $this => { + ju_HashSet__init_0($this, ju_LinkedHashMap__init_()); +}, +ju_LinkedHashSet__init_0 = () => { + let var_0 = new ju_LinkedHashSet(); + ju_LinkedHashSet__init_1(var_0); + return var_0; +}, +ju_LinkedHashSet__init_2 = ($this, $collection) => { + let $iter; + $iter = new ju_LinkedHashMap; + ju_HashMap__init_0($iter, ju_HashSet_size($collection) < 6 ? 11 : ju_HashSet_size($collection) * 2 | 0); + $iter.$accessOrder = 0; + $iter.$head2 = null; + ju_HashSet__init_0($this, $iter); + $iter = ju_HashSet_iterator($collection); + while ($iter.$hasNext()) { + ju_HashSet_add($this, $iter.$next()); + } +}, +ju_LinkedHashSet__init_ = var_0 => { + let var_1 = new ju_LinkedHashSet(); + ju_LinkedHashSet__init_2(var_1, var_0); + return var_1; }; -function oncie_NotEquals() { - let a = this; oncie_Expression.call(a); - a.$lhs25 = null; - a.$rhs21 = null; - a.$position232 = null; - a.$signatures17 = null; +function suh_MurmurHash3$accum$1() { + let a = this; jl_Object.call(a); + a.$a9 = 0; + a.$b1 = 0; + a.$n1 = 0; + a.$c1 = 0; } -let oncie_NotEquals_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let suh_MurmurHash3$accum$1_apply = ($this, $v1, $v2) => { + let var$3; + suh_MurmurHash3$_$callClinit(); + var$3 = suh_MurmurHash3$_tuple2Hash(suh_MurmurHash3$_MODULE$, $v1, $v2); + $this.$a9 = $this.$a9 + var$3 | 0; + $this.$b1 = $this.$b1 ^ var$3; + $this.$c1 = $rt_imul($this.$c1, var$3 | 1); + $this.$n1 = $this.$n1 + 1 | 0; + return sr_BoxedUnit_UNIT; +}, +ju_SequencedMap = $rt_classWithoutFields(0); +function ju_LinkedHashMap() { + let a = this; ju_HashMap.call(a); + a.$accessOrder = 0; + a.$head2 = null; + a.$tail3 = null; +} +let ju_LinkedHashMap__init_0 = $this => { + ju_HashMap__init_1($this); + $this.$accessOrder = 0; + $this.$head2 = null; +}, +ju_LinkedHashMap__init_ = () => { + let var_0 = new ju_LinkedHashMap(); + ju_LinkedHashMap__init_0(var_0); + return var_0; +}, +ju_LinkedHashMap_newElementArray = ($this, $s) => { + return $rt_createArray(ju_LinkedHashMap$LinkedHashMapEntry, $s); +}, +ju_LinkedHashMap_get = ($this, $key) => { + let var$2, var$3; + var$2 = null; + if ($key === null) + $key = ju_HashMap_findNullKeyEntry($this); + else { + var$3 = $key.$hashCode(); + $key = ju_HashMap_findNonNullKeyEntry($this, $key, (var$3 & 2147483647) % $this.$elementData.data.length | 0, var$3); + } + if ($key !== null) { + if ($this.$accessOrder) + ju_LinkedHashMap_linkEntry($this, $key, 0); + var$2 = $key.$value9; + } + return var$2; +}, +ju_LinkedHashMap_put = ($this, $key, $value) => { + let $oldSize, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $existing; + $oldSize = $this.$elementCount; + var$4 = $this.$accessOrder; + if (!$oldSize) { + $this.$head2 = null; + $this.$tail3 = null; + } + var$5 = ju_Objects_hashCode($key); + var$6 = var$5 & 2147483647; + var$7 = var$6 % $this.$elementData.data.length | 0; + var$8 = $key === null ? ju_HashMap_findNullKeyEntry($this) : ju_HashMap_findNonNullKeyEntry($this, $key, var$7, var$5); + if (var$8 === null) { + $this.$modCount0 = $this.$modCount0 + 1 | 0; + var$9 = $this.$elementCount + 1 | 0; + $this.$elementCount = var$9; + if (var$9 > $this.$threshold0) { + ju_HashMap_rehash($this); + var$7 = var$6 % $this.$elementData.data.length | 0; + } + var$8 = new ju_LinkedHashMap$LinkedHashMapEntry; + ju_HashMap$HashEntry__init_(var$8, $key, var$5); + var$8.$chainForward = null; + var$8.$chainBackward = null; + var$10 = $this.$elementData.data; + var$8.$next6 = var$10[var$7]; + var$10[var$7] = var$8; + $key = $this.$tail3; + if ($key === null) + $this.$head2 = var$8; + else + $key.$chainForward = var$8; + var$8.$chainBackward = $key; + $this.$tail3 = var$8; + } else if (var$4) + ju_LinkedHashMap_linkEntry($this, var$8, 0); + $existing = var$8.$value9; + var$8.$value9 = $value; + return $existing; +}, +ju_LinkedHashMap_linkEntry = ($this, $entry, $first) => { + let $n, $p; + if (!$first) { + $n = $entry.$chainForward; + if ($n === null) + return; + $p = $entry.$chainBackward; + if ($p === null) + $this.$head2 = $n; + else + $p.$chainForward = $n; + $n.$chainBackward = $p; + $n = $this.$tail3; + if ($n !== null) + $n.$chainForward = $entry; + $entry.$chainBackward = $n; + $entry.$chainForward = null; + $this.$tail3 = $entry; + } else { + $p = $entry.$chainBackward; + if ($p === null) + return; + $n = $entry.$chainForward; + if ($n === null) + $this.$tail3 = $p; + else + $n.$chainBackward = $p; + $p.$chainForward = $n; + $n = $this.$head2; + if ($n !== null) + $n.$chainBackward = $entry; + $entry.$chainForward = $n; + $entry.$chainBackward = null; + $this.$head2 = $entry; + } +}, +ju_LinkedHashMap_entrySet = $this => { + let var$1; + var$1 = new ju_LinkedHashMapEntrySet; + var$1.$base2 = $this; + var$1.$reversed1 = 0; + return var$1; +}, +ju_LinkedHashMap_keySet = $this => { + let var$1; + if ($this.$cachedKeySet === null) { + var$1 = new ju_LinkedHashMapKeySet; + var$1.$base1 = $this; + var$1.$reversed0 = 0; + $this.$cachedKeySet = var$1; + } + return $this.$cachedKeySet; +}, +ju_LinkedHashMap_remove = ($this, $key) => { + let $m; + $m = ju_HashMap_removeByKey($this, $key); + if ($m === null) + return null; + ju_LinkedHashMap_unlinkEntry($this, $m); + return $m.$value9; +}, +ju_LinkedHashMap_removeLinkedEntry = ($this, $entry) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $entry.$origKeyHash; + var$3 = $this.$elementData.data; + var$4 = var$2 & (var$3.length - 1 | 0); + var$5 = var$3[var$4]; + if (var$5 === $entry) + var$3[var$4] = $entry.$next6; + else { + while (true) { + var$6 = var$5.$next6; + if (var$6 === $entry) + break; + var$5 = var$6; + } + var$5.$next6 = $entry.$next6; + } + $this.$modCount0 = $this.$modCount0 + 1 | 0; + $this.$elementCount = $this.$elementCount - 1 | 0; + ju_LinkedHashMap_unlinkEntry($this, $entry); +}, +ju_LinkedHashMap_unlinkEntry = ($this, $entry) => { + let $p, $n; + $p = $entry.$chainBackward; + $n = $entry.$chainForward; + if ($p !== null) { + $p.$chainForward = $n; + if ($n === null) + $this.$tail3 = $p; + else + $n.$chainBackward = $p; + } else { + $this.$head2 = $n; + if ($n === null) + $this.$tail3 = null; + else + $n.$chainBackward = null; + } }, -oncie_NotEquals_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +onciu_RewritableJavascript$PROXY$7_68 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_68_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_GeometryType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncie_NotEquals_lhs = $this => { - return $this.$lhs25; +onciu_RewritableJavascript$PROXY$7_69 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_69_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_NumberType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncie_NotEquals_rhs = $this => { - return $this.$rhs21; +onciu_RewritableJavascript$PROXY$7_70 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_70_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_ClosedDynamicUnionType_copy(var$2, var$3[0], var$3[1]); }, -oncie_NotEquals_position = $this => { - return $this.$position232; +oncie_Expression = $rt_classWithoutFields(), +oncie_Expression_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncie_NotEquals_signatures = $this => { - return $this.$signatures17; +oncie_Expression_asCanonicalStringVal = $this => { + return $this.$toString(); }, -oncie_NotEquals_canonicalOperatorSymbol = $this => { - return $rt_s(4458); +oncie_Expression_foldedOver = $this => { + return $this; }, -oncie_NotEquals_productPrefix = $this => { - return $rt_s(5461); +oncie_Expression_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncie_NotEquals_productArity = $this => { - return 2; +oncie_Expression_arguments = $this => { + let var$1, var$2, var$3; + var$1 = onciu_Foldable_folder$($this); + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + var$2 = sci_Nil$_MODULE$; + var$3 = new oncie_Expression$$anonfun$arguments$1; + var$3.$$outer33 = $this; + return onciu_Foldable$Folder_treeFold(var$1, var$2, var$3); }, -oncie_NotEquals_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs25; - case 1: - return $this.$rhs21; - default: - } - return sr_Statics_ioobe($x$1); +oncie_Expression_dependencies = $this => { + let var$1, var$2; + var$1 = onciu_Foldable_folder$($this); + var$2 = new oncie_Expression$TreeAcc; + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + oncie_Expression$TreeAcc__init_(var$2, sci_Set$EmptySet$_MODULE$, oncie_Expression$TreeAcc$_apply$default$2(oncie_Expression$TreeAcc$_MODULE$)); + return (onciu_Foldable$Folder_treeFold(var$1, var$2, new oncie_Expression$$anonfun$dependencies$1)).$data1; }, -oncie_NotEquals_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_Expression_occurrences = ($this, $variable, $skipScopeExpression) => { + let var$3, var$4, var$5; + var$3 = onciu_Foldable_folder$($this); + var$4 = new oncie_Expression$TreeAcc; + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + oncie_Expression$TreeAcc__init_(var$4, sci_Set$EmptySet$_MODULE$, oncie_Expression$TreeAcc$_apply$default$2(oncie_Expression$TreeAcc$_MODULE$)); + var$5 = new oncie_Expression$$anonfun$occurrences$2; + var$5.$$outer65 = $this; + var$5.$skipScopeExpression$1 = $skipScopeExpression; + var$5.$variable$20 = $variable; + return (onciu_Foldable$Folder_treeFold(var$3, var$4, var$5)).$data1; }, -oncie_NotEquals_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncie_Expression_replaceAllOccurrencesBy = ($this, $variable, $replacement, $skipExpressionsWithComputedDependencies) => { + let $occurrencesToReplace, var$5, var$6; + $occurrencesToReplace = oncie_Expression_occurrences($this, $variable, $skipExpressionsWithComputedDependencies); + var$5 = onciu_bottomUp$_MODULE$; + onciu_Rewriter$_$callClinit(); + $variable = onciu_Rewriter$_MODULE$; + var$6 = new oncie_Expression$$anonfun$replaceAllOccurrencesBy$1; + var$6.$occurrencesToReplace$1 = $occurrencesToReplace; + var$6.$replacement$1 = $replacement; + var$6.$skipExpressionsWithComputedDependencies$1 = $skipExpressionsWithComputedDependencies; + return (onciu_bottomUp$_apply(var$5, onciu_Rewriter$_lift($variable, var$6), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2($this); }, -oncie_NotEquals_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncie_Expression_containsAggregate = $this => { + return onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$($this), new oncie_Expression$$anonfun$containsAggregate$1); }, -oncie_NotEquals_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncie_Expression_findAggregate = $this => { + let var$1, var$2; + var$1 = onciu_Foldable_folder$($this); + var$2 = new oncie_Expression$$anonfun$findAggregate$1; + sr_ClassTag$_$callClinit(); + return onciu_Foldable$Folder_treeFind(var$1, var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); +}, +oncie_Expression_dup0 = ($this, $children) => { + return $this.$dup0($children); +}, +oncie_Expression_org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1 = ($acc, $occurrence, $variable$2) => { + let var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_NotEquals) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs25; - var$3 = $x$1.$lhs25; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs21; - $x$1 = $x$1.$rhs21; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_NotEquals)) + var$4 = $occurrence.$name4; + $variable$2 = $variable$2.$name4; + if (var$4 !== null) { + if (!jl_String_equals(var$4, $variable$2)) + break a; + else break b; } - var$4 = 1; - break a; + if ($variable$2 !== null) + break a; + } + if (!oncie_Expression$TreeAcc_inScope($acc, $occurrence)) { + $variable$2 = new oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_28_0; + $variable$2.$_0187 = $occurrence; + return oncie_Expression$TreeAcc_mapData($acc, $variable$2); } - var$4 = 0; } - return var$4; -}, -oncie_NotEquals__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs25 = $lhs; - $this.$rhs21 = $rhs; - $this.$position232 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures17 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); -}, -oncie_NotEquals__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_NotEquals(); - oncie_NotEquals__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncil_LabelExpression$Conjunctions$ = $rt_classWithoutFields(), -oncil_LabelExpression$Conjunctions$_MODULE$ = null, -oncil_LabelExpression$Conjunctions$_$callClinit = () => { - oncil_LabelExpression$Conjunctions$_$callClinit = $rt_eraseClinit(oncil_LabelExpression$Conjunctions$); - oncil_LabelExpression$Conjunctions$__clinit_(); -}, -oncil_LabelExpression$Conjunctions$__clinit_ = () => { - let var$1; - var$1 = new oncil_LabelExpression$Conjunctions$; - oncil_LabelExpression$Conjunctions$_$callClinit(); - oncil_LabelExpression$Conjunctions$_MODULE$ = var$1; + return $acc; }, -oncil_LabelExpression$Conjunctions$_flat = ($this, $lhs, $rhs, $position, $containsIs) => { - let var$5; - var$5 = new oncil_LabelExpression$Conjunctions; - s_package$_$callClinit(); - oncil_LabelExpression$Conjunctions__init_(var$5, (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncil_LabelExpression, [$lhs, $rhs]))), $containsIs, $position); - return oncil_LabelExpression$Conjunctions_unnestConjunctions(var$5); +oncie_Expression__init_ = $this => { + return; }; -function oncil_LabelExpression$Leaf() { - let a = this; jl_Object.call(a); - a.$name13 = null; - a.$containsIs7 = 0; - a.$position264 = null; +function oncie_AutoExtractedParameter() { + let a = this; oncie_Expression.call(a); + a.$name29 = null; + a.$parameterType1 = null; + a.$sizeHint3 = null; + a.$position74 = null; } -let oncil_LabelExpression$Leaf_containsGpmSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); -}, -oncil_LabelExpression$Leaf_containsGpmSpecificRelTypeExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +let oncie_AutoExtractedParameter_asCanonicalStringVal = $this => { + return oncie_Parameter_asCanonicalStringVal$($this); }, -oncil_LabelExpression$Leaf_containsMatchSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +oncie_AutoExtractedParameter_isConstantForQuery = $this => { + return 1; }, -oncil_LabelExpression$Leaf_containsDynamicLabelOrTypeExpression = $this => { - return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +oncie_AutoExtractedParameter_name = $this => { + return $this.$name29; }, -oncil_LabelExpression$Leaf_replaceColonSyntax = $this => { - return oncil_LabelExpression_replaceColonSyntax$($this); +oncie_AutoExtractedParameter_parameterType = $this => { + return $this.$parameterType1; }, -oncil_LabelExpression$Leaf_foldedOver = $this => { - return $this; +oncie_AutoExtractedParameter_sizeHint = $this => { + return $this.$sizeHint3; }, -oncil_LabelExpression$Leaf_folder0 = $this => { - return onciu_Foldable_folder$($this); +oncie_AutoExtractedParameter_position = $this => { + return $this.$position74; }, -oncil_LabelExpression$Leaf_folder = ($this, $cancellation) => { - return onciu_Foldable_folder$0($this, $cancellation); +oncie_AutoExtractedParameter_hashCode = $this => { + let var$1, var$2, var$3; + suh_MurmurHash3$_$callClinit(); + var$1 = suh_MurmurHash3$_MODULE$; + var$2 = $rt_createArray(jl_Object, 3); + var$3 = var$2.data; + var$3[0] = $this.$name29; + var$3[1] = $this.$parameterType1; + var$3[2] = $this.$sizeHint3; + return suh_MurmurHash3$_arrayHash(var$1, var$2); }, -oncil_LabelExpression$Leaf_containsIs = $this => { - return $this.$containsIs7; +oncie_AutoExtractedParameter_canEqual = ($this, $that) => { + return $that instanceof oncie_AutoExtractedParameter; }, -oncil_LabelExpression$Leaf_position = $this => { - return $this.$position264; +oncie_AutoExtractedParameter_equals = ($this, $obj) => { + if (!($obj instanceof oncie_AutoExtractedParameter)) + return 0; + $obj = $obj; + return $this instanceof oncie_AutoExtractedParameter && oncie_Parameter_equals$($this, $obj) ? 1 : 0; }, -oncil_LabelExpression$Leaf_flatten = $this => { - return sci_$colon$colon__init_($this.$name13, sci_Nil$_MODULE$); +oncie_AutoExtractedParameter_copy = ($this, $name, $parameterType, $sizeHint, $position) => { + return oncie_AutoExtractedParameter__init_0($name, $parameterType, $sizeHint, $position); }, -oncil_LabelExpression$Leaf_productPrefix = $this => { - return $rt_s(5462); +oncie_AutoExtractedParameter_productPrefix = $this => { + return $rt_s(4031); }, -oncil_LabelExpression$Leaf_productArity = $this => { - return 2; +oncie_AutoExtractedParameter_productArity = $this => { + return 3; }, -oncil_LabelExpression$Leaf_productElement = ($this, $x$1) => { +oncie_AutoExtractedParameter_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$name13; + return $this.$name29; case 1: - return jl_Boolean_valueOf($this.$containsIs7); + return $this.$parameterType1; + case 2: + return $this.$sizeHint3; default: } return sr_Statics_ioobe($x$1); }, -oncil_LabelExpression$Leaf_productIterator = $this => { +oncie_AutoExtractedParameter_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$Leaf_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5462))), sr_Statics_anyHash($this.$name13)), !$this.$containsIs7 ? 1237 : 1231), 2); -}, -oncil_LabelExpression$Leaf_toString = $this => { +oncie_AutoExtractedParameter_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$Leaf_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_LabelExpression$Leaf) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs7 != $x$1.$containsIs7) - break b; - c: { - var$2 = $this.$name13; - $x$1 = $x$1.$name13; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncil_LabelExpression$Leaf)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncil_LabelExpression$Leaf_dup = ($this, $children) => { - let var$2, var$3; - a: { - if ($children !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $children); - if (!$children.$lengthCompare(3)) { - var$2 = $children.$apply1(0); - var$3 = $children.$apply1(1); - if ($rt_isInstance($children.$apply1(2), onciu_InputPosition)) { - $children = onciu_ASTNode_dup$($this, sci_$colon$colon__init_(var$2, sci_$colon$colon__init_(var$3, sci_Nil$_MODULE$))); - break a; - } - } - } - $children = onciu_ASTNode_dup$($this, $children); - } - return $children; +oncie_AutoExtractedParameter__init_ = ($this, $name, $parameterType, $sizeHint, $position) => { + $this.$name29 = $name; + $this.$parameterType1 = $parameterType; + $this.$sizeHint3 = $sizeHint; + $this.$position74 = $position; + oncie_Expression__init_($this); }, -oncil_LabelExpression$Leaf__init_ = ($this, $name, $containsIs) => { - $this.$name13 = $name; - $this.$containsIs7 = $containsIs; - $this.$position264 = $name.$position(); +oncie_AutoExtractedParameter__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncie_AutoExtractedParameter(); + oncie_AutoExtractedParameter__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; }, -oncil_LabelExpression$Leaf__init_0 = (var_0, var_1) => { - let var_2 = new oncil_LabelExpression$Leaf(); - oncil_LabelExpression$Leaf__init_(var_2, var_0, var_1); - return var_2; -}; -function oncie_FixedQuantifier() { - let a = this; jl_Object.call(a); - a.$value17 = null; - a.$position156 = null; -} -let oncie_FixedQuantifier_position = $this => { - return $this.$position156; +scm_HashMap$$anon$2 = $rt_classWithoutFields(scm_HashMap$HashMapIterator), +scm_HashMap$$anon$2_extract = ($this, $nd) => { + return $nd.$_key0; }, -oncie_FixedQuantifier_canBeEmpty = $this => { - return !sr_BoxesRunTime_equalsNumObject(oncie_DecimalIntegerLiteral_value($this.$value17), jl_Integer_valueOf(0)) ? 0 : 1; +oncias_SemanticAnalysisTooling = $rt_classWithoutFields(0), +oncias_SemanticAnalysisTooling_semanticCheckFold$ = ($$this, $iterable, $f) => { + let var$4; + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + var$4 = new oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0; + var$4.$_0491 = $f; + return $iterable.$foldLeft($$this, var$4); }, -oncie_FixedQuantifier_copy = ($this, $value, $position) => { - return oncie_FixedQuantifier__init_0($value, $position); +oncias_SemanticAnalysisTooling_specifyType$0 = ($$this, $typeGen, $expression) => { + let var$4; + var$4 = new oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0; + var$4.$_0271 = $$this; + var$4.$_1102 = $typeGen; + var$4.$_235 = $expression; + return var$4; }, -oncie_FixedQuantifier_productPrefix = $this => { - return $rt_s(5463); +oncias_SemanticAnalysisTooling_specifyType$ = ($$this, $possibleTypes, $expression) => { + $$this = new oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0; + $$this.$_033 = $expression; + $$this.$_116 = $possibleTypes; + return $$this; }, -oncie_FixedQuantifier_productArity = $this => { - return 1; +oncias_SemanticAnalysisTooling_expectType$3 = ($$this, $possibleTypes, $opt) => { + let var$4, var$5; + oncias_OptionSemanticChecking$_$callClinit(); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$5 = new oncias_SemanticAnalysisTooling$expectType$lambda$_15_0; + var$5.$_0554 = $$this; + var$5.$_1186 = $possibleTypes; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, $opt, var$5); }, -oncie_FixedQuantifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$value17; - default: - } - return sr_Statics_ioobe($x$1); +oncias_SemanticAnalysisTooling_expectType$1 = ($$this, $possibleTypes, $expressions) => { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + return $$this.$expectType($possibleTypes, $expressions, oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY(oncias_SemanticExpressionCheck$TypeMismatchContext$_MODULE$)); }, -oncie_FixedQuantifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_expectType$2 = ($$this, $possibleTypes, $expressions, $typeMismatchContext) => { + let var$5, var$6; + var$5 = oncias_package$_MODULE$; + var$6 = new oncias_SemanticAnalysisTooling$expectType$lambda$_21_0; + var$6.$_0447 = $$this; + var$6.$_1156 = $expressions; + var$6.$_255 = $possibleTypes; + var$6.$_318 = $typeMismatchContext; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$5, var$6); }, -oncie_FixedQuantifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_expectType$ = ($$this, $possibleTypes, $expression) => { + let var$4, var$5; + var$4 = oncias_package$_MODULE$; + var$5 = new oncias_SemanticAnalysisTooling$expectType$lambda$_25_0; + var$5.$_0590 = $$this; + var$5.$_1199 = $expression; + var$5.$_265 = $possibleTypes; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); }, -oncie_FixedQuantifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_expectType$0 = ($$this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType($$this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); }, -oncie_FixedQuantifier_equals = ($this, $x$1) => { - let var$2, var$3; +oncias_SemanticAnalysisTooling_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + let $ss, $semanticError, var$8, $existingTypesString, $expectedTypesString, var$11, var$12, var$13, var$14, var$15; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_FixedQuantifier) ? 0 : 1)) + $ss = $possibleTypes.$apply4(); + $semanticError = oncias_SemanticState_expressionType($s, $expression); + oncias_ExpressionTypeInfo$_$callClinit(); + var$8 = oncias_ExpressionTypeInfo$_apply(oncias_ExpressionTypeInfo$_MODULE$, $semanticError.$specified, s_Some__init_($ss)); + $existingTypesString = new s_Tuple2; + $ss = $s.$typeTable0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + $semanticError = $ss.$updated0(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $expression), var$8); + s_Tuple2__init_0($existingTypesString, oncias_SemanticState_copy($s, $s.$currentScope, $semanticError, $s.$recordedScopes0, $s.$notifications, $s.$features, $s.$declareVariablesToSuppressDuplicateErrors, $s.$semanticCheckHasRunOnce, $s.$targetGraph, $s.$workingGraph), oncias_ExpressionTypeInfo_actual(var$8)); + $ss = $existingTypesString.$_10; + $s = $existingTypesString.$_20; + oncius_TypeSpec$_$callClinit(); + $semanticError = oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); + if ($semanticError !== null) { + if (!oncius_TypeSpec_equals($semanticError, $s)) break b; - c: { - $x$1 = $x$1; - var$2 = $this.$value17; - $x$1 = $x$1.$value17; - if (var$2 !== null) { - if (!oncie_UnsignedDecimalIntegerLiteral_equals(var$2, $x$1)) - break b; - else - break c; + else + break a; + } + if ($s === null) + break a; + } + $ss = $existingTypesString.$_10; + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, $ss); + } + $existingTypesString = oncius_TypeSpec_mkString1((oncias_SemanticState_expressionType($ss, $expression)).$specified, $rt_s(45), $rt_s(870)); + $expectedTypesString = oncius_TypeSpec_mkString1($possibleTypes.$apply4(), $rt_s(45), $rt_s(870)); + if ($rt_isInstance($expression, oncie_Parameter)) { + var$11 = $expression; + if (!jl_String_matches(var$11.$name(), $rt_s(4032))) { + var$12 = oncias_SemanticCheckResult$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$13 = oncias_SemanticError$_MODULE$; + $typeMismatchVal = $typeMismatchVal.$txt; + var$14 = var$11.$name(); + $s = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($s); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($s, $typeMismatchVal), $rt_s(4033)), var$14); + $typeMismatchVal = jl_AbstractStringBuilder_toString($s); + $s = sc_IterableOnceOps_toList$(oncius_TypeSpec_toStrings($possibleTypes.$apply4())); + $possibleTypes = var$11.$name(); + $messageGen = $messageGen.$apply3($expectedTypesString, $existingTypesString); + $semanticError = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($semanticError); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($semanticError, $rt_s(4034)), $possibleTypes), $rt_s(4035)), $messageGen); + return oncias_SemanticCheckResult$_error(var$12, $ss, oncias_SemanticError$_invalidEntityType(var$13, $existingTypesString, $typeMismatchVal, $s, jl_AbstractStringBuilder_toString($semanticError), $expression.$position())); + } + } + c: { + d: { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + $s = oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY(oncias_SemanticExpressionCheck$TypeMismatchContext$_MODULE$); + if ($typeMismatchVal !== null) { + e: { + f: { + if ($typeMismatchVal !== $s) { + if (!(!($s instanceof oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal) ? 0 : 1)) + break f; + g: { + $semanticError = $typeMismatchVal.$txt; + $s = $s.$txt; + if ($semanticError !== null) { + if (!jl_String_equals($semanticError, $s)) + break f; + else + break g; + } + if ($s !== null) + break f; + } + if (!($typeMismatchVal instanceof oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal)) + break f; + } + var$15 = 1; + break e; } - if ($x$1 !== null) - break b; + var$15 = 0; } - if (!($this instanceof oncie_FixedQuantifier)) - break b; - } - var$3 = 1; - break a; + if (var$15) + break d; + } else if ($s === null) + break d; + oncias_SemanticError$_$callClinit(); + $s = oncias_SemanticError$_MODULE$; + $typeMismatchVal = $typeMismatchVal.$txt; + $possibleTypes = sc_IterableOnceOps_toList$(oncius_TypeSpec_toStrings($possibleTypes.$apply4())); + $messageGen = $messageGen.$apply3($expectedTypesString, $existingTypesString); + $semanticError = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($semanticError); + jl_StringBuilder_append(jl_StringBuilder_append($semanticError, $rt_s(871)), $messageGen); + $semanticError = oncias_SemanticError$_invalidEntityType($s, $existingTypesString, $typeMismatchVal, $possibleTypes, jl_AbstractStringBuilder_toString($semanticError), $expression.$position()); + break c; } - var$3 = 0; + oncias_SemanticError$_$callClinit(); + $s = sc_IterableOnceOps_toList$(oncius_TypeSpec_toStrings($possibleTypes.$apply4())); + $possibleTypes = $messageGen.$apply3($expectedTypesString, $existingTypesString); + $typeMismatchVal = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($typeMismatchVal); + jl_StringBuilder_append(jl_StringBuilder_append($typeMismatchVal, $rt_s(871)), $possibleTypes); + $expectedTypesString = jl_AbstractStringBuilder_toString($typeMismatchVal); + $possibleTypes = $expression.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + $expression = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $possibleTypes.$offset(), $possibleTypes.$line(), $possibleTypes.$column()); + $typeMismatchVal = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NB1), $possibleTypes.$offset(), $possibleTypes.$line(), $possibleTypes.$column()); + ong_GqlParams$ListParam_$callClinit(); + $s = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause($expression, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam1($typeMismatchVal, ong_GqlParams$ListParam_valueTypeList, scc_AsJavaExtensions$SeqHasAsJava_asJava(sj_CollectionConverters$_SeqHasAsJava(sj_CollectionConverters$_MODULE$, $s))), ong_GqlParams$StringParam_input, + $existingTypesString)))); + $semanticError = oncias_SemanticError__init_0($s, $expectedTypesString, $possibleTypes); } - return var$3; -}, -oncie_FixedQuantifier_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_FixedQuantifier_mapExpressions = ($this, $f) => { - return oncie_FixedQuantifier_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$value17), $this.$position156); -}, -oncie_FixedQuantifier__init_ = ($this, $value, $position) => { - $this.$value17 = $value; - $this.$position156 = $position; -}, -oncie_FixedQuantifier__init_0 = (var_0, var_1) => { - let var_2 = new oncie_FixedQuantifier(); - oncie_FixedQuantifier__init_(var_2, var_0, var_1); - return var_2; -}; -function oncie_PlusQuantifier() { - jl_Object.call(this); - this.$position269 = null; -} -let oncie_PlusQuantifier_position = $this => { - return $this.$position269; -}, -oncie_PlusQuantifier_canBeEmpty = $this => { - return 0; -}, -oncie_PlusQuantifier_productPrefix = $this => { - return $rt_s(5464); -}, -oncie_PlusQuantifier_productArity = $this => { - return 0; -}, -oncie_PlusQuantifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); + return oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, $ss, $semanticError); }, -oncie_PlusQuantifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_expectType$default$5$ = $$this => { + return oncie_Expression$_DefaultTypeMismatchMessageGenerator; }, -oncie_PlusQuantifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_checkTypes$ = ($$this, $expression, $signatures) => { + let var$4, var$5; + var$4 = oncias_package$_MODULE$; + var$5 = new oncias_SemanticAnalysisTooling$checkTypes$lambda$_33_0; + var$5.$_035 = $$this; + var$5.$_117 = $signatures; + var$5.$_26 = $expression; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); }, -oncie_PlusQuantifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_whenState$ = ($$this, $condition, $thenBranch, $elseBranch) => { + let var$5; + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_MODULE$; + var$5 = new oncias_SemanticAnalysisTooling$whenState$lambda$_35_0; + var$5.$_01133 = $condition; + var$5.$_1387 = $thenBranch; + var$5.$_2126 = $elseBranch; + return oncias_SemanticCheck$_fromState($$this, var$5); }, -oncie_PlusQuantifier_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_PlusQuantifier) ? 0 : 1; - return var$2 && $this instanceof oncie_PlusQuantifier ? 1 : 0; +oncias_SemanticAnalysisTooling_unionOfTypes$ = ($$this, $iterable) => { + let var$3; + var$3 = new oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_41_0; + var$3.$_0946 = $$this; + var$3.$_1325 = $iterable; + return var$3; }, -oncie_PlusQuantifier_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncias_SemanticAnalysisTooling_withScopedState$ = ($$this, $check) => { + oncias_SemanticAnalysisTooling$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScope, $check.$apply4()), oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope0(oncias_SemanticAnalysisTooling$_MODULE$)); }, -oncie_PlusQuantifier_mapExpressions = ($this, $f) => { - return $this; +oncias_SemanticAnalysisTooling_ensureDefined$ = ($$this, $v) => { + $$this = new oncias_SemanticAnalysisTooling$ensureDefined$lambda$_57_0; + $$this.$_01022 = $v; + return $$this; }, -oncie_PlusQuantifier__init_0 = ($this, $position) => { - $this.$position269 = $position; +oncias_SemanticAnalysisTooling_declareVariable$ = ($$this, $v, $possibleTypes) => { + $$this = new oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0; + $$this.$_0785 = $v; + $$this.$_1262 = $possibleTypes; + return $$this; }, -oncie_PlusQuantifier__init_ = var_0 => { - let var_1 = new oncie_PlusQuantifier(); - oncie_PlusQuantifier__init_0(var_1, var_0); - return var_1; -}; -function oncie_StarQuantifier() { - jl_Object.call(this); - this.$position192 = null; -} -let oncie_StarQuantifier_position = $this => { - return $this.$position192; +oncias_SemanticAnalysisTooling_declareVariable$0 = ($$this, $v, $typeGen, $maybePreviousDeclaration, $overriding) => { + $$this = new oncias_SemanticAnalysisTooling$declareVariable$lambda$_63_0; + $$this.$_0700 = $v; + $$this.$_1237 = $typeGen; + $$this.$_277 = $maybePreviousDeclaration; + $$this.$_325 = $overriding; + return $$this; }, -oncie_StarQuantifier_canBeEmpty = $this => { - return 1; +oncias_SemanticAnalysisTooling_declareVariables$ = ($$this, $symbols) => { + let var$3, var$4; + var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$4 = new oncias_SemanticAnalysisTooling$declareVariables$lambda$_71_0; + var$4.$_0922 = $$this; + return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, $symbols, var$4); }, -oncie_StarQuantifier_productPrefix = $this => { - return $rt_s(5465); +oncias_SemanticAnalysisTooling_recordCurrentScope$ = ($$this, $astNode) => { + let var$3; + $$this = oncias_package$_MODULE$; + var$3 = new oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_73_0; + var$3.$_0766 = $astNode; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($$this, var$3); }, -oncie_StarQuantifier_productArity = $this => { - return 0; +oncias_SemanticAnalysisTooling_importValuesFromScope$ = ($$this, $scope) => { + let var$3; + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_MODULE$; + var$3 = new oncias_SemanticAnalysisTooling$importValuesFromScope$lambda$_77_0; + var$3.$_0935 = $scope; + return oncias_SemanticCheck$_fromFunction($$this, var$3); }, -oncie_StarQuantifier_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncias_SemanticAnalysisTooling_requireFeatureSupport$ = ($$this, $msg, $feature, $position) => { + let var$5; + $$this = oncias_package$_MODULE$; + var$5 = new oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_79_0; + var$5.$_0902 = $feature; + var$5.$_1307 = $msg; + var$5.$_2100 = $position; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($$this, var$5); }, -oncie_StarQuantifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_error$ = ($$this, $msg, $position) => { + let var$4, var$5, var$6; + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$6 = var$5.data; + oncias_SemanticError$_$callClinit(); + var$6[0] = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $msg, $position); + return oncias_SemanticCheck$_error($$this, sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); }, -oncie_StarQuantifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_error$0 = ($$this, $gqlStatusObject, $msg, $position) => { + let var$5, var$6; + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_MODULE$; + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$6.data[0] = oncias_SemanticError__init_0($gqlStatusObject, $msg, $position); + return oncias_SemanticCheck$_error($$this, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); }, -oncie_StarQuantifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticAnalysisTooling_error$1 = ($$this, $semanticError) => { + let var$3, var$4; + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$4.data[0] = $semanticError; + return oncias_SemanticCheck$_error($$this, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); }, -oncie_StarQuantifier_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncie_StarQuantifier) ? 0 : 1; - return var$2 && $this instanceof oncie_StarQuantifier ? 1 : 0; +oncias_SemanticAnalysisTooling_specifiedNumberOutOfRangeError$ = ($$this, $component, $valueType, $lower, $upper, $inputValue, $legacyMessage, $position) => { + let var$9, var$10, var$11, var$12; + oncias_SemanticCheck$_$callClinit(); + var$9 = oncias_SemanticCheck$_MODULE$; + var$10 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$12 = var$11.data; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$12[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $position.$offset(), $position.$line(), $position.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N31), + $position.$offset(), $position.$line(), $position.$column()), ong_GqlParams$StringParam_component, $component), ong_GqlParams$StringParam_valueType, $valueType), ong_GqlParams$NumberParam_lower, $lower), ong_GqlParams$NumberParam_upper, $upper), ong_GqlParams$StringParam_value, $inputValue)))), $legacyMessage, $position); + return oncias_SemanticCheck$_error(var$9, sr_ScalaRunTime$_wrapRefArray(var$10, var$11)); }, -oncie_StarQuantifier_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncias_SemanticAnalysisTooling_warn$ = ($$this, $notification) => { + let var$3; + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_MODULE$; + var$3 = new oncias_SemanticCheck$$warn$lambda$_4_0; + var$3.$_0860 = $notification; + return oncias_SemanticCheck$_fromFunction($$this, var$3); }, -oncie_StarQuantifier_mapExpressions = ($this, $f) => { - return $this; +oncias_SemanticAnalysisTooling_types$ = ($$this, $expression) => { + $$this = new oncias_SemanticAnalysisTooling$types$lambda$_95_0; + $$this.$_0220 = $expression; + return $$this; }, -oncie_StarQuantifier__init_0 = ($this, $position) => { - $this.$position192 = $position; +oncias_SemanticAnalysisTooling_$anonfun$checkTypes$3 = ($$this, $expression$7, $x0$1, $x1$1) => { + let $possibilities, $accumulator, $arg, $argIdx, $r1, $argTypes, $info, $functionName, $r2, $actualTypes; + $possibilities = s_Tuple2__init_($x0$1, $x1$1); + $accumulator = $possibilities.$_10; + if ($accumulator !== null) { + $x0$1 = $accumulator.$_11; + if ($x0$1 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x0$1); + if (!$x0$1.$lengthCompare(0)) + return $accumulator; + } + } + $x0$1 = $possibilities.$_10; + $arg = $possibilities.$_20; + if ($x0$1 === null) + $rt_throw(s_MatchError__init_($possibilities)); + $possibilities = $x0$1.$_11; + $argIdx = sr_BoxesRunTime_unboxToInt($x0$1.$_21); + $r1 = $x0$1.$_30; + oncius_TypeSpec$_$callClinit(); + $argTypes = $possibilities.$foldLeft(oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$), new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_0); + if (!($expression$7 instanceof oncie_FunctionInvocation)) { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + $info = oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY(oncias_SemanticExpressionCheck$TypeMismatchContext$_MODULE$); + } else { + $functionName = $expression$7.$functionName2; + $info = new oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal; + $accumulator = $functionName.$name6; + $expression$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($expression$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($expression$7, $rt_s(4036)), $argIdx), $rt_s(4037)), $accumulator), $rt_s(773)); + oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_0($info, jl_AbstractStringBuilder_toString($expression$7)); + } + $x1$1 = $r1.$state; + $x0$1 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_1; + $x0$1.$_01009 = $argTypes; + $r2 = $$this.$expectType0($x1$1, $x0$1, $arg, $info, $$this.$expectType$default$5()); + $actualTypes = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply($$this.$types1($arg), $r2.$state); + $$this = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_2; + $$this.$_0490 = $actualTypes; + return s_Tuple3__init_(($possibilities.$filter1($$this)).$map(new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_3), jl_Integer_valueOf($argIdx + 1 | 0), oncias_SemanticCheckResult__init_($r2.$state, $r1.$errors0.$concat($r2.$errors0))); }, -oncie_StarQuantifier__init_ = var_0 => { - let var_1 = new oncie_StarQuantifier(); - oncie_StarQuantifier__init_0(var_1, var_0); - return var_1; +oncia_Query = $rt_classWithoutFields(0), +oncia_Query_returnColumns$ = $$this => { + return ($$this.$returnVariables()).$explicitVariables.$toList(); }; -function oncie_IntervalQuantifier() { +let oncia_UnionArgument = $rt_classWithoutFields(0); +function oncia_SingleQuery() { let a = this; jl_Object.call(a); - a.$lower1 = null; - a.$upper1 = null; - a.$position161 = null; + a.$partitionedClauses0 = null; + a.$clauses0 = null; + a.$position11 = null; + a.$bitmap$033 = 0; } -let oncie_IntervalQuantifier_position = $this => { - return $this.$position161; -}, -oncie_IntervalQuantifier_canBeEmpty = $this => { - return Long_ne(sr_BoxesRunTime_unboxToLong(s_Option_getOrElse(s_Option_map($this.$lower1, new oncie_IntervalQuantifier$canBeEmpty$lambda$_12_0), new oncie_IntervalQuantifier$canBeEmpty$lambda$_12_1)), Long_ZERO) ? 0 : 1; -}, -oncie_IntervalQuantifier_copy = ($this, $lower, $upper, $position) => { - return oncie_IntervalQuantifier__init_($lower, $upper, $position); -}, -oncie_IntervalQuantifier_productPrefix = $this => { - return $rt_s(5466); -}, -oncie_IntervalQuantifier_productArity = $this => { - return 2; +let oncia_SingleQuery_returnColumns = $this => { + return oncia_Query_returnColumns$($this); }, -oncie_IntervalQuantifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lower1; - case 1: - return $this.$upper1; - default: - } - return sr_Statics_ioobe($x$1); +oncia_SingleQuery_foldedOver = $this => { + return $this; }, -oncie_IntervalQuantifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_SingleQuery_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncie_IntervalQuantifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_SingleQuery_clauses = $this => { + return $this.$clauses0; }, -oncie_IntervalQuantifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_SingleQuery_position = $this => { + return $this.$position11; }, -oncie_IntervalQuantifier_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncia_SingleQuery_partitionedClauses = $this => { + let var$1, $$je; + if ($this.$bitmap$033) + return $this.$partitionedClauses0; + jl_Object_monitorEnterSync($this); a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_IntervalQuantifier) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lower1; - var$3 = $x$1.$lower1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$upper1; - $x$1 = $x$1.$upper1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_IntervalQuantifier)) - break b; - } - var$4 = 1; + try { + if ($this.$bitmap$033) + break a; + oncia_SingleQuery$_$callClinit(); + $this.$partitionedClauses0 = oncia_SingleQuery$_org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses(oncia_SingleQuery$_MODULE$, oncia_SingleQuery_clauses($this)); + $this.$bitmap$033 = 1; break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - var$4 = 0; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - return var$4; + jl_Object_monitorExitSync($this); + return $this.$partitionedClauses0; }, -oncie_IntervalQuantifier_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncia_SingleQuery_getQuery = ($this, $fromUnion) => { + return $this; }, -oncie_IntervalQuantifier_mapExpressions = ($this, $f) => { - return oncie_IntervalQuantifier_copy($this, s_Option_map($this.$lower1, $f), s_Option_map($this.$upper1, $f), $this.$position161); +oncia_SingleQuery_getSingleQuery = $this => { + return $this; }, -oncie_IntervalQuantifier__init_0 = ($this, $lower, $upper, $position) => { - $this.$lower1 = $lower; - $this.$upper1 = $upper; - $this.$position161 = $position; +oncia_SingleQuery_mapEachSingleQuery = ($this, $f) => { + return $f.$apply2($this); }, -oncie_IntervalQuantifier__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_IntervalQuantifier(); - oncie_IntervalQuantifier__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_CaseExpression$Placeholder() { - oncie_Expression.call(this); - this.$position77 = null; -} -let oncie_CaseExpression$Placeholder_position = $this => { - return $this.$position77; +oncia_SingleQuery_containsUpdates = $this => { + return $this.$clauses0.$exists(new oncia_SingleQuery$containsUpdates$lambda$_64_0); }, -oncie_CaseExpression$Placeholder_isConstantForQuery = $this => { - return 0; +oncia_SingleQuery_returnVariables = $this => { + return ($this.$clauses0.$last()).$returnVariables(); +}, +oncia_SingleQuery_getReturns = $this => { + let var$1; + var$1 = $this.$clauses0.$last(); + if (var$1 instanceof oncia_Return) + return sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$); + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); }, -oncie_CaseExpression$Placeholder_copy = ($this, $position) => { - return oncie_CaseExpression$Placeholder__init_0($position); +oncia_SingleQuery_isCorrelated = $this => { + return !s_Option_isDefined((oncia_SingleQuery_partitionedClauses($this)).$importingWith0) && !s_Option_exists((oncia_SingleQuery_partitionedClauses($this)).$initialGraphSelection0, new oncia_SingleQuery$isCorrelated$lambda$_67_0) ? 0 : 1; }, -oncie_CaseExpression$Placeholder_productPrefix = $this => { - return $rt_s(5467); +oncia_SingleQuery_isReturning = $this => { + if (!($this.$clauses0.$last() instanceof oncia_Return)) + return 0; + return 1; }, -oncie_CaseExpression$Placeholder_productArity = $this => { +oncia_SingleQuery_endsWithFinish = $this => { + if (!($this.$clauses0.$last() instanceof oncia_Finish)) + return 0; return 1; }, -oncie_CaseExpression$Placeholder_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$position77; - default: +oncia_SingleQuery_importColumns = $this => { + let $w; + $w = (oncia_SingleQuery_partitionedClauses($this)).$importingWith0; + if (!($w instanceof s_Some)) { + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); } - return sr_Statics_ioobe($x$1); + return $w.$value5.$returnItems3.$items0.$map(new oncia_SingleQuery$importColumns$lambda$_70_0); }, -oncie_CaseExpression$Placeholder_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_SingleQuery_semanticCheckAbstract = ($this, $clauses, $clauseCheck, $canOmitReturnClause) => { + let var$4, var$5, var$6; + var$4 = oncia_SingleQuery_checkStandaloneCall($this, $clauses); + var$5 = new oncia_SingleQuery$semanticCheckAbstract$lambda$_73_0; + var$5.$_0892 = $clauseCheck; + var$5.$_1304 = $clauses; + var$6 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$4.$chain(oncias_SemanticAnalysisTooling_withScopedState$($this, var$5)), oncia_SingleQuery_checkComposableNonTransactionCommandsAllowed($this, $clauses)), oncia_SingleQuery_checkOrder($this, $clauses, $canOmitReturnClause)), oncia_SingleQuery_checkNoCallInTransactionsAfterWriteClause($this, $clauses)), oncia_SingleQuery_checkInputDataStream($this, $clauses)); + var$5 = (oncia_SingleQuery_partitionedClauses($this)).$clausesExceptImportingWithAndLeadingGraphSelection0; + var$4 = oncias_IterableOnceSemanticChecking$_MODULE$; + $clauses = var$5.$collect(new oncia_SingleQuery$$anonfun$checkUsePosition$1); + var$5 = new oncia_SingleQuery$checkUsePosition$lambda$_91_0; + var$5.$_0393 = $this; + var$5.$_1139 = $rt_s(4038); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$6, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$4, $clauses, var$5)), oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $this)); }, -oncie_CaseExpression$Placeholder_canEqual = ($this, $x$1) => { - return $x$1 instanceof oncie_CaseExpression$Placeholder; +oncia_SingleQuery_semanticCheck = $this => { + let var$1, var$2; + var$1 = $this.$clauses0; + var$2 = new oncia_SingleQuery$semanticCheck$lambda$_74_0; + var$2.$_0835 = $this; + return oncia_SingleQuery_semanticCheckAbstract($this, var$1, var$2, 0); }, -oncie_CaseExpression$Placeholder_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_SingleQuery_semanticCheckInSubqueryExpressionContext = ($this, $canOmitReturn) => { + let var$2, var$3; + var$2 = $this.$clauses0; + var$3 = new oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_77_0; + var$3.$_0903 = $this; + return oncia_SingleQuery_semanticCheckAbstract($this, var$2, var$3, $canOmitReturn); }, -oncie_CaseExpression$Placeholder_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_SingleQuery_checkImportingWith = $this => { + oncias_OptionSemanticChecking$_$callClinit(); + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, (oncia_SingleQuery_partitionedClauses($this)).$importingWith0, new oncia_SingleQuery$checkImportingWith$lambda$_78_0); }, -oncie_CaseExpression$Placeholder_equals = ($this, $x$1) => { - let var$2, var$3; +oncia_SingleQuery_semanticCheckImportingWithSubQueryContext = ($this, $outer) => { + let $workingGraph, var$3, var$4, var$5, var$6, $$je; a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_CaseExpression$Placeholder) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$position77; - $x$1 = $x$1.$position77; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; + $workingGraph = $outer.$workingGraph; + oncias_OptionSemanticChecking$_$callClinit(); + var$3 = oncias_OptionSemanticChecking$_MODULE$; + if (s_Option_isDefined((oncia_SingleQuery_partitionedClauses($this)).$importingWith0)) + var$4 = s_None$_MODULE$; + else { + var$4 = (oncia_SingleQuery_partitionedClauses($this)).$clausesExceptImportingWithAndLeadingGraphSelection0.$headOption(); + if (var$4 instanceof s_Some) { + var$4 = var$4.$value5; + if (var$4 instanceof oncia_With) { + var$4 = s_Some__init_(var$4); + break a; } - if (!($this instanceof oncie_CaseExpression$Placeholder)) - break b; } - var$3 = 1; - break a; + var$4 = s_None$_MODULE$; } - var$3 = 0; } - return var$3; -}, -oncie_CaseExpression$Placeholder__init_ = ($this, $position) => { - $this.$position77 = $position; - oncie_Expression__init_($this); -}, -oncie_CaseExpression$Placeholder__init_0 = var_0 => { - let var_1 = new oncie_CaseExpression$Placeholder(); - oncie_CaseExpression$Placeholder__init_(var_1, var_0); - return var_1; -}, -oncie_CaseExpression$Placeholder$ = $rt_classWithoutFields(oncie_CaseExpression$Placeholder), -oncie_CaseExpression$Placeholder$_MODULE$ = null, -oncie_CaseExpression$Placeholder$_$callClinit = () => { - oncie_CaseExpression$Placeholder$_$callClinit = $rt_eraseClinit(oncie_CaseExpression$Placeholder$); - oncie_CaseExpression$Placeholder$__clinit_(); -}, -oncie_CaseExpression$Placeholder$__clinit_ = () => { - let var$1; - var$1 = new oncie_CaseExpression$Placeholder$; - oncie_CaseExpression$Placeholder$_$callClinit(); - onciu_InputPosition$_$callClinit(); - oncie_CaseExpression$Placeholder__init_(var$1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - oncie_CaseExpression$Placeholder$_MODULE$ = var$1; -}, -oncie_CaseExpression$Placeholder$_dup = ($this, $children) => { - return $this; -}, -oncie_CaseExpression$Placeholder$_dup0 = ($this, $children) => { - return $this; -}; -function oncie_EndsWith() { - let a = this; oncie_Expression.call(a); - a.$lhs32 = null; - a.$rhs27 = null; - a.$position300 = null; - a.$signatures7 = null; -} -let oncie_EndsWith_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncie_EndsWith_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); -}, -oncie_EndsWith_lhs = $this => { - return $this.$lhs32; -}, -oncie_EndsWith_rhs = $this => { - return $this.$rhs27; -}, -oncie_EndsWith_position = $this => { - return $this.$position300; -}, -oncie_EndsWith_signatures = $this => { - return $this.$signatures7; -}, -oncie_EndsWith_canonicalOperatorSymbol = $this => { - return $rt_s(5468); -}, -oncie_EndsWith_productPrefix = $this => { - return $rt_s(5469); -}, -oncie_EndsWith_productArity = $this => { - return 2; -}, -oncie_EndsWith_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs32; - case 1: - return $this.$rhs27; - default: + var$5 = new oncia_SingleQuery$checkIllegalImportWith$lambda$_82_0; + var$5.$_0448 = $this; + var$3 = (oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, var$5)).$chain(oncia_SingleQuery_checkInitialGraphSelection($this, $outer)); + var$6 = oncia_SingleQuery_partitionedClauses($this); + if ((var$6.$bitmap$00 & 2) << 24 >> 24) + var$4 = var$6.$clausesExceptImportingWithAndInitialGraphSelection; + else { + jl_Object_monitorEnterSync(var$6); + b: { + try { + if ((var$6.$bitmap$00 & 2) << 24 >> 24) + break b; + s_Option$_$callClinit(); + var$6.$clausesExceptImportingWithAndInitialGraphSelection = sc_AbstractIterable_$plus$plus((s_Option$_option2Iterable(s_Option$_MODULE$, oncia_SingleQuery$PartitionedClauses_subsequentGraphSelection(var$6))).$toSeq(), oncia_SingleQuery$PartitionedClauses_clausesExceptImportingWithAndLeadingGraphSelection(var$6)); + var$6.$bitmap$00 = (var$6.$bitmap$00 | 2) << 24 >> 24; + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $outer = $$je; + + } + jl_Object_monitorExitSync(var$6); + $rt_throw($outer); + } + jl_Object_monitorExitSync(var$6); + var$4 = var$6.$clausesExceptImportingWithAndInitialGraphSelection; } - return sr_Statics_ioobe($x$1); -}, -oncie_EndsWith_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_EndsWith_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); + var$5 = new oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_0; + var$5.$_0867 = $this; + var$5.$_1292 = $outer; + var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$3, oncia_SingleQuery_semanticCheckAbstract($this, var$4, var$5, 0)), oncia_SingleQuery_warnOnPotentiallyShadowVariables($this, $outer)); + oncias_SemanticCheck$_$callClinit(); + $outer = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_1; + var$3.$_0519 = $workingGraph; + return oncias_SemanticCheck_chain$(var$4, oncias_SemanticCheck$_fromState($outer, var$3)); }, -oncie_EndsWith_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_SingleQuery_semanticCheckInSubqueryContext = ($this, $outer, $current) => { + let $workingGraph, var$4, var$5, var$6, var$7, var$8; + $workingGraph = $outer.$workingGraph; + var$4 = oncia_SingleQuery_checkInitialGraphSelection($this, $outer); + var$5 = oncia_SingleQuery$PartitionedClauses_clausesExceptInitialGraphSelection(oncia_SingleQuery_partitionedClauses($this)); + var$6 = new oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_80_0; + var$6.$_0843 = $this; + var$6.$_1283 = $outer; + var$7 = oncia_SingleQuery_checkStandaloneCall($this, var$5); + var$8 = new oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_72_0; + var$8.$_0492 = var$6; + var$8.$_1169 = var$5; + var$7 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$7.$chain(oncias_SemanticAnalysisTooling_withScopedState$($this, var$8)), oncia_SingleQuery_checkComposableNonTransactionCommandsAllowed($this, var$5)), oncia_SingleQuery_checkOrder($this, var$5, 0)), oncia_SingleQuery_checkNoCallInTransactionsAfterWriteClause($this, var$5)), oncia_SingleQuery_checkInputDataStream($this, var$5)); + var$6 = oncia_SingleQuery$PartitionedClauses_clausesExceptInitialGraphSelection(oncia_SingleQuery_partitionedClauses($this)); + var$5 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$8 = var$6.$collect(new oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1); + var$6 = new oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_90_0; + var$6.$_01173 = $this; + var$8 = var$4.$chain(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$7, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$5, var$8, var$6)), oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $this))); + var$5 = oncias_package$_MODULE$; + var$6 = new oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_93_0; + var$6.$_0459 = $this; + var$6.$_1159 = $outer; + var$8 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$8, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$5, var$6)), oncia_SingleQuery_warnOnPotentiallyShadowVariables($this, $current)); + oncias_SemanticCheck$_$callClinit(); + $outer = oncias_SemanticCheck$_MODULE$; + $current = new oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_80_1; + $current.$_0264 = $workingGraph; + return oncias_SemanticCheck_chain$(var$8, oncias_SemanticCheck$_fromState($outer, $current)); }, -oncie_EndsWith_equals = ($this, $x$1) => { +oncia_SingleQuery_checkInitialGraphSelection = ($this, $outer) => { let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_EndsWith) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs32; - var$3 = $x$1.$lhs32; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs27; - $x$1 = $x$1.$rhs27; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_EndsWith)) - break b; + oncias_OptionSemanticChecking$_$callClinit(); + var$2 = oncias_OptionSemanticChecking$_MODULE$; + var$3 = (oncia_SingleQuery_partitionedClauses($this)).$initialGraphSelection0; + var$4 = new oncia_SingleQuery$checkInitialGraphSelection$lambda$_81_0; + var$4.$_0132 = $this; + var$4.$_144 = $outer; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4); +}, +oncia_SingleQuery_checkStandaloneCall = ($this, $clauses) => { + let $where; + if ($clauses !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses); + if (!$clauses.$lengthCompare(2)) { + $where = $clauses.$apply1(1); + if ($clauses.$apply1(0) instanceof oncia_UnresolvedCall && $where instanceof oncia_With) { + $clauses = $where; + return oncias_SemanticAnalysisTooling_error$0($this, ong_GqlHelper_getGql42001_42N24($rt_s(4039), $rt_s(4040), $clauses.$position20.$offset(), $clauses.$position20.$line(), $clauses.$position20.$column()), $rt_s(4041), $clauses.$position20); } - var$4 = 1; - break a; } - var$4 = 0; } - return var$4; -}, -oncie_EndsWith__init_0 = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs32 = $lhs; - $this.$rhs27 = $rhs; - $this.$position300 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures7 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); + if ($clauses !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses); + if (!$clauses.$lengthCompare(2) && $rt_isInstance($clauses.$apply1(0), oncia_GraphSelection) && $clauses.$apply1(1) instanceof oncia_UnresolvedCall) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + } + if ($clauses.$length() > 1 && $clauses.$exists(new oncia_SingleQuery$checkStandaloneCall$lambda$_83_0)) { + $clauses = $clauses.$find2(new oncia_SingleQuery$checkStandaloneCall$lambda$_83_1); + $where = new oncia_SingleQuery$checkStandaloneCall$lambda$_83_2; + $where.$_097 = $this; + return s_Option_getOrElse(s_Option_map($clauses, $where), new oncia_SingleQuery$checkStandaloneCall$lambda$_83_3); + } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -oncie_EndsWith__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_EndsWith(); - oncie_EndsWith__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_RegexMatch() { - let a = this; oncie_Expression.call(a); - a.$lhs20 = null; - a.$rhs14 = null; - a.$position208 = null; - a.$signatures11 = null; -} -let oncie_RegexMatch_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +oncia_SingleQuery_checkComposableNonTransactionCommandsAllowed = ($this, $clauses) => { + let $commandClauses; + $commandClauses = $clauses.$filter1(new oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_0); + if ($commandClauses.$length() <= 1) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if (!sc_IterableOnceOps_nonEmpty$($commandClauses.$filter1(new oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_1))) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $rt_s(4042), oncias_SemanticFeature$ComposableCommands$_MODULE$, $this.$position11); }, -oncie_RegexMatch_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncia_SingleQuery_checkOrder = ($this, $clauses, $canOmitReturnClause) => { + let var$3, var$4; + var$3 = oncias_package$_MODULE$; + var$4 = new oncia_SingleQuery$checkOrder$lambda$_85_0; + var$4.$_0967 = $this; + var$4.$_1329 = $clauses; + var$4.$_2114 = $canOmitReturnClause; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); }, -oncie_RegexMatch_lhs = $this => { - return $this.$lhs20; +oncia_SingleQuery_checkNoCallInTransactionsAfterWriteClause = ($this, $clauses) => { + let $Acc$module, var$3, $errors; + $Acc$module = new sr_LazyRef; + var$3 = oncia_SingleQuery_Acc$3($this, $Acc$module); + s_package$_$callClinit(); + $errors = oncia_SingleQuery$Acc$2$_apply(var$3, 0, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + var$3 = new oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_86_0; + var$3.$_01131 = $this; + var$3.$_1385 = $Acc$module; + $clauses = $clauses.$foldLeft($errors, var$3); + if ($clauses === null) + $rt_throw(s_MatchError__init_($clauses)); + $errors = $clauses.$errors1; + return oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, $errors); }, -oncie_RegexMatch_rhs = $this => { - return $this.$rhs14; +oncia_SingleQuery_checkClauses = ($this, $clauses, $outerScope) => { + let $lastIndex, var$4, var$5; + $lastIndex = $clauses.$length() - 1 | 0; + var$4 = oncias_IterableOnceSemanticChecking$_MODULE$; + $clauses = $clauses.$zipWithIndex(); + var$5 = new oncia_SingleQuery$checkClauses$lambda$_87_0; + var$5.$_0814 = $this; + var$5.$_1273 = $outerScope; + var$5.$_288 = $lastIndex; + return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$4, $clauses, var$5); }, -oncie_RegexMatch_position = $this => { - return $this.$position208; +oncia_SingleQuery_checkInputDataStream = ($this, $clauses) => { + let $idsClauses, var$3, var$4; + $idsClauses = $clauses.$filter1(new oncia_SingleQuery$checkInputDataStream$lambda$_89_0); + var$3 = $idsClauses.$length(); + var$4 = $rt_compare(var$3, 1); + if (var$4 > 0) + return oncias_SemanticAnalysisTooling_error$($this, $rt_s(4043), ($idsClauses.$apply1(1)).$position()); + if (var$4) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($clauses.$head() instanceof oncia_InputDataStream) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + return oncias_SemanticAnalysisTooling_error$($this, $rt_s(4044), ($idsClauses.$head()).$position()); }, -oncie_RegexMatch_signatures = $this => { - return $this.$signatures11; +oncia_SingleQuery_warnOnPotentiallyShadowVariables = ($this, $outer) => { + let var$2, var$3; + var$2 = oncias_package$_MODULE$; + var$3 = new oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_92_0; + var$3.$_0419 = $this; + var$3.$_1147 = $outer; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); }, -oncie_RegexMatch_canonicalOperatorSymbol = $this => { - return $rt_s(4460); +oncia_SingleQuery_finalScope = ($this, $scope) => { + return $scope.$children2.$last(); }, -oncie_RegexMatch_productPrefix = $this => { - return $rt_s(5470); +oncia_SingleQuery_copy = ($this, $clauses, $position) => { + return oncia_SingleQuery__init_0($clauses, $position); }, -oncie_RegexMatch_productArity = $this => { - return 2; +oncia_SingleQuery_productPrefix = $this => { + return $rt_s(4045); }, -oncie_RegexMatch_productElement = ($this, $x$1) => { +oncia_SingleQuery_productArity = $this => { + return 1; +}, +oncia_SingleQuery_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs20; - case 1: - return $this.$rhs14; + return $this.$clauses0; default: } return sr_Statics_ioobe($x$1); }, -oncie_RegexMatch_productIterator = $this => { +oncia_SingleQuery_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_RegexMatch_hashCode = $this => { +oncia_SingleQuery_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_RegexMatch_toString = $this => { +oncia_SingleQuery_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_RegexMatch_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncia_SingleQuery_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_RegexMatch) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_SingleQuery) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$lhs20; - var$3 = $x$1.$lhs20; + var$2 = $this.$clauses0; + $x$1 = $x$1.$clauses0; if (var$2 !== null) { - if (!var$2.$equals(var$3)) + if (!var$2.$equals($x$1)) break b; else break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs14; - $x$1 = $x$1.$rhs14; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_RegexMatch)) + if (!($this instanceof oncia_SingleQuery)) break b; } - var$4 = 1; + var$3 = 1; break a; } - var$4 = 0; + var$3 = 0; } - return var$4; + return var$3; }, -oncie_RegexMatch__init_0 = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs20 = $lhs; - $this.$rhs14 = $rhs; - $this.$position208 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_StringType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures11 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_SingleQuery_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncie_RegexMatch__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_RegexMatch(); - oncie_RegexMatch__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_StartsWith() { - let a = this; oncie_Expression.call(a); - a.$lhs30 = null; - a.$rhs29 = null; - a.$position204 = null; - a.$signatures20 = null; -} -let oncie_StartsWith_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +oncia_SingleQuery_err$1 = ($this, $msg, $wth$1) => { + let var$3; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4046)), $msg), 46); + return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$3), $wth$1.$position20); }, -oncie_StartsWith_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncia_SingleQuery_$anonfun$checkOrder$2 = ($x0$1, $x1$1) => { + let $pair, $semanticErrors, $match1, $match2, $optError, $clause, $update; + a: { + $pair = s_Tuple2__init_($x0$1, $x1$1); + $semanticErrors = s_Tuple2__1($pair); + $pair = s_Tuple2__2($pair); + if ($pair !== null) { + s_package$_$callClinit(); + $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + $match1 = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + $match2 = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1); + if ($match1 instanceof oncia_Match) { + $x0$1 = $match1; + if ($match2 instanceof oncia_Match) { + $x1$1 = $match2; + if (oncia_Match_optional($x0$1) && !oncia_Match_optional($x1$1)) { + $optError = new s_Some; + oncias_SemanticError$_$callClinit(); + s_Some__init_0($optError, oncias_SemanticError$_invalidUseOfMatch(oncias_SemanticError$_MODULE$, oncia_Match_position($x1$1))); + break a; + } + } + } + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + $clause = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0); + if ($clause instanceof oncia_Return) { + $x0$1 = $clause; + $optError = new s_Some; + oncias_SemanticError$_$callClinit(); + s_Some__init_0($optError, oncias_SemanticError$_invalidUseOfReturn(oncias_SemanticError$_MODULE$, oncia_Return_name($x0$1), oncia_Return_position($x0$1))); + break a; + } + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + $clause = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0); + if ($clause instanceof oncia_Finish) { + $x0$1 = $clause; + $optError = new s_Some; + oncias_SemanticError$_$callClinit(); + $x1$1 = oncias_SemanticError$_MODULE$; + $pair = oncia_Finish_name($x0$1); + $match1 = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($match1, $pair), $rt_s(4047)); + s_Some__init_0($optError, oncias_SemanticError$_apply($x1$1, jl_StringBuilder_toString($match1), oncia_Finish_position($x0$1))); + break a; + } + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0), oncia_UpdateClause)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1), oncia_UpdateClause)) { + $optError = s_None$_MODULE$; + break a; + } + } + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0), oncia_UpdateClause)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1) instanceof oncia_With) { + $optError = s_None$_MODULE$; + break a; + } + } + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { + $match1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($match1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($match1, $x0$1), 0), oncia_UpdateClause)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1) instanceof oncia_Return) { + $optError = s_None$_MODULE$; + break a; + } + } + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if ($rt_isInstance(sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0), oncia_UpdateClause)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1) instanceof oncia_Finish) { + $optError = s_None$_MODULE$; + break a; + } + } + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + $x0$1 = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $pair); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $x0$1)); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 2)) { + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + $update = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 0); + $x1$1 = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + $clause = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($x1$1, sc_SeqFactory$UnapplySeqWrapper$_get$extension($x1$1, $x0$1), 1); + if ($rt_isInstance($update, oncia_UpdateClause)) { + $x0$1 = $update; + $optError = new s_Some; + oncias_SemanticError$_$callClinit(); + s_Some__init_0($optError, oncias_SemanticError$_withIsRequiredBetween(oncias_SemanticError$_MODULE$, $x0$1.$name(), $clause.$name(), $clause.$position())); + break a; + } + } + } + } + $optError = s_None$_MODULE$; + } + return s_Option_fold($optError, oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0__init_0($semanticErrors), oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1__init_($semanticErrors)); }, -oncie_StartsWith_lhs = $this => { - return $this.$lhs30; +oncia_SingleQuery_$anonfun$checkOrder$6 = ($x0$2, $x1$2) => { + let $pair, $semanticErrors, $command, $clause, $optError; + a: { + $pair = s_Tuple2__init_($x0$2, $x1$2); + $semanticErrors = $pair.$_10; + $pair = $pair.$_20; + if ($pair !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $pair); + if (!$pair.$lengthCompare(2)) { + $command = $pair.$apply1(0); + $clause = $pair.$apply1(1); + if ($rt_isInstance($command, oncia_CommandClause)) { + $x0$2 = $command; + if ($clause instanceof oncia_With) { + $x1$2 = $clause; + if ($x0$2.$yieldAll()) { + $optError = new s_Some; + oncias_SemanticError$_$callClinit(); + $x0$2 = $x0$2.$name(); + $clause = $x1$2.$position20; + ong_GqlStatusInfoCodes_$callClinit(); + $x1$2 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N94)); + $pair = new oncias_SemanticError; + $command = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($command); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($command, $rt_s(4048)), $x0$2), $rt_s(4049)); + oncias_SemanticError__init_($pair, $x1$2, jl_AbstractStringBuilder_toString($command), $clause); + s_Some__init_0($optError, $pair); + break a; + } + } + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $pair); + if (!$pair.$lengthCompare(2)) { + $clause = $pair.$apply1(1); + if ($rt_isInstance($pair.$apply1(0), oncia_CommandClause) && $clause instanceof oncia_With) + b: { + c: { + $x1$2 = $clause.$withType; + $x0$2 = oncia_AddedInRewrite$_MODULE$; + if ($x1$2 !== null) { + if (jl_Object_equals($x1$2, $x0$2)) + break b; + else + break c; + } + if ($x0$2 === null) + break b; + } + $optError = s_None$_MODULE$; + break a; + } + } + } + if ($pair !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $pair); + if (!$pair.$lengthCompare(2)) { + $command = $pair.$apply1(0); + if ($rt_isInstance($command, oncia_CommandClause)) { + $x0$2 = $command; + $optError = new s_Some; + oncias_SemanticError$_$callClinit(); + $x1$2 = $x0$2.$name(); + $x0$2 = $x0$2.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + $pair = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N93)); + $command = new oncias_SemanticError; + $clause = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($clause); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($clause, $rt_s(4048)), $x1$2), $rt_s(4050)); + oncias_SemanticError__init_($command, $pair, jl_AbstractStringBuilder_toString($clause), $x0$2); + s_Some__init_0($optError, $command); + break a; + } + } + } + $optError = s_None$_MODULE$; + } + $x0$2 = new oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_0; + $x0$2.$_018 = $semanticErrors; + $x1$2 = new oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_1; + $x1$2.$_0575 = $semanticErrors; + return s_Option_fold($optError, $x0$2, $x1$2); }, -oncie_StartsWith_rhs = $this => { - return $this.$rhs29; +oncia_SingleQuery_$anonfun$checkOrder$1 = ($$this, $clauses$3, $canOmitReturnClause$1, $s) => { + let $concludeError, $sequenceErrors, $commandErrors, $missingYield, $missingReturn, var$10, var$11; + $concludeError = sc_AbstractIterable_sliding($clauses$3, 2); + s_package$_$callClinit(); + $sequenceErrors = sc_IterableOnceOps_foldLeft$($concludeError, sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)), new oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_0); + if (sc_AbstractIterable_count($clauses$3, new oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_1) <= 1) + $commandErrors = sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)); + else { + $missingYield = sc_IterableOnceOps_foldLeft$(sc_AbstractIterable_sliding($clauses$3, 2), sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)), new oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_2); + $concludeError = $clauses$3.$last(); + if ($concludeError instanceof oncia_Return && !$concludeError.$addedInRewrite) + $missingReturn = s_None$_MODULE$; + else { + $missingReturn = new s_Some; + oncias_SemanticError$_$callClinit(); + s_Some__init_0($missingReturn, oncias_SemanticError$_missingReturn(oncias_SemanticError$_MODULE$, $concludeError.$position())); + } + $commandErrors = $missingYield.$concat($missingReturn); + } + a: { + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses$3); + if (!$clauses$3.$lengthCompare(1) && $clauses$3.$apply1(0) instanceof oncia_CallClause) + $concludeError = s_None$_MODULE$; + else { + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses$3); + if (!$clauses$3.$lengthCompare(2) && $rt_isInstance($clauses$3.$apply1(0), oncia_GraphSelection) && $clauses$3.$apply1(1) instanceof oncia_CallClause) + $concludeError = s_None$_MODULE$; + else { + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $clauses$3); + if (!$clauses$3.$lengthCompare(0)) { + $concludeError = new s_Some; + oncias_SemanticError$_$callClinit(); + $clauses$3 = oncias_SemanticError$_MODULE$; + var$10 = $$this.$position11; + $$this = ong_GqlHelper_getGql42001_42N71(var$10.$offset(), var$10.$line(), var$10.$column()); + $missingYield = new oncias_SemanticError; + $clauses$3 = oncias_SemanticError$_validLastClauses0($clauses$3); + $missingReturn = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($missingReturn); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($missingReturn, $rt_s(4051)), $clauses$3), 46); + oncias_SemanticError__init_($missingYield, $$this, jl_AbstractStringBuilder_toString($missingReturn), var$10); + s_Some__init_0($concludeError, $missingYield); + } else { + var$11 = 0; + $$this = null; + $clauses$3 = $clauses$3.$last(); + if ($rt_isInstance($clauses$3, oncia_UpdateClause) ? 1 : $clauses$3 instanceof oncia_Return ? 1 : $clauses$3 instanceof oncia_Finish ? 1 : !$rt_isInstance($clauses$3, oncia_CommandClause) ? 0 : 1) + $concludeError = s_None$_MODULE$; + else { + if ($rt_isInstance($clauses$3, oncia_SubqueryCall)) { + $concludeError = $clauses$3; + if (!($concludeError.$innerQuery()).$isReturning() && s_Option_isEmpty($concludeError.$reportParams())) { + $concludeError = s_None$_MODULE$; + break a; + } + } + if ($clauses$3 instanceof oncia_CallClause) { + var$11 = 1; + $$this = $clauses$3; + if (($$this.$returnVariables()).$explicitVariables.$isEmpty() && !$$this.$yieldAll()) { + $concludeError = s_None$_MODULE$; + break a; + } + } + if (!var$11) { + if ($canOmitReturnClause$1) + $concludeError = s_None$_MODULE$; + else { + $concludeError = new s_Some; + oncias_SemanticError$_$callClinit(); + s_Some__init_0($concludeError, oncias_SemanticError$_queryCannotConcludeWithClause(oncias_SemanticError$_MODULE$, $clauses$3.$name(), $clauses$3.$position())); + } + } else { + $concludeError = new s_Some; + oncias_SemanticError$_$callClinit(); + $$this = $$this.$position(); + $clauses$3 = ong_GqlHelper_getGql42001_42N71($$this.$offset(), $$this.$line(), $$this.$column()); + $missingYield = new oncias_SemanticError; + $missingReturn = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($missingReturn); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($missingReturn, $rt_s(4052)), $rt_s(4039)), $rt_s(4053)); + oncias_SemanticError__init_($missingYield, $clauses$3, jl_AbstractStringBuilder_toString($missingReturn), $$this); + s_Some__init_0($concludeError, $missingYield); + } + } + } + } + } + } + return oncias_SemanticCheckResult__init_($s, ($sequenceErrors.$concat($concludeError)).$concat($commandErrors)); }, -oncie_StartsWith_position = $this => { - return $this.$position204; +oncia_SingleQuery_Acc$3 = ($this, $Acc$module$1) => { + let var$2, $$je; + if ($Acc$module$1.$_initialized) + return $Acc$module$1.$_value0; + jl_Object_monitorEnterSync($Acc$module$1); + a: { + try { + var$2 = sr_LazyRef_initialized($Acc$module$1) ? sr_LazyRef_value($Acc$module$1) : sr_LazyRef_initialize($Acc$module$1, oncia_SingleQuery$Acc$2$__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + break a; + + } + jl_Object_monitorExitSync($Acc$module$1); + return var$2; + } + jl_Object_monitorExitSync($Acc$module$1); + $rt_throw(var$2); }, -oncie_StartsWith_signatures = $this => { - return $this.$signatures20; +oncia_SingleQuery__init_ = ($this, $clauses, $position) => { + $this.$clauses0 = $clauses; + $this.$position11 = $position; + s_Predef$_$callClinit(); + s_Predef$_assert(s_Predef$_MODULE$, sc_IterableOnceOps_nonEmpty$($clauses)); }, -oncie_StartsWith_canonicalOperatorSymbol = $this => { - return $rt_s(5471); +oncia_SingleQuery__init_0 = (var_0, var_1) => { + let var_2 = new oncia_SingleQuery(); + oncia_SingleQuery__init_(var_2, var_0, var_1); + return var_2; +}; +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0626 = null; +} +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0626.$useClausesToRemove$1; + onciu_Ref$_$callClinit(); + return jl_Boolean_valueOf(var$2.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, var$1))); +}; +function oncirc_containsNoMatchingNodes$$anonfun$apply$1() { + sr_AbstractPartialFunction.call(this); + this.$$outer45 = null; +} +let oncirc_containsNoMatchingNodes$$anonfun$apply$1_applyOrElse = ($this, $x1, $default) => { + let var$3; + if ($rt_isInstance($x1, onciu_ASTNode)) { + var$3 = $x1; + if (var$3 instanceof oncia_ReturnItems && var$3.$includeExisting0 ? 1 : 0) { + $x1 = new oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0; + $x1.$_0436 = $this; + $x1.$_1151 = var$3; + return $x1; + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); }, -oncie_StartsWith_productPrefix = $this => { - return $rt_s(5472); +oncirc_containsNoMatchingNodes$apply$lambda$_7_0 = $rt_classWithoutFields(), +oncirc_containsNoMatchingNodes$apply$lambda$_7_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4054)), var$2), $rt_s(4055)), var$1); + return jl_AbstractStringBuilder_toString(var$3); }, -oncie_StartsWith_productArity = $this => { - return 2; +oncia_Clause = $rt_classWithoutFields(0), +oncia_Clause_returnVariables$ = $$this => { + return oncia_ReturnItems$ReturnVariables$_empty(oncia_ReturnItems$ReturnVariables$_MODULE$); }, -oncie_StartsWith_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs30; - case 1: - return $this.$rhs29; - default: +oncia_Clause_semanticCheck$ = $$this => { + let var$2, var$3, var$4, var$5; + var$2 = $$this.$clauseSpecificSemanticCheck(); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncia_Clause$semanticCheck$lambda$_6_0; + var$4.$_0307 = $$this; + var$3 = var$2.$chain(oncias_SemanticCheck$_fromState(var$3, var$4)); + var$2 = oncias_SemanticCheck$_MODULE$; + var$5 = $$this.$shouldRunQPPChecks(); + var$4 = new oncia_Clause$semanticCheck$lambda$_6_1; + var$4.$_0801 = $$this; + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticCheck$_when(var$2, var$5, var$4)); +}, +oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$Read$2 = ($this, $Read$module$1) => { + let var$2, $$je; + if ($Read$module$1.$_initialized) + return $Read$module$1.$_value0; + jl_Object_monitorEnterSync($Read$module$1); + a: { + try { + var$2 = sr_LazyRef_initialized($Read$module$1) ? sr_LazyRef_value($Read$module$1) : sr_LazyRef_initialize($Read$module$1, oncia_Clause$Read$1$__init_(null)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + break a; + + } + jl_Object_monitorExitSync($Read$module$1); + return var$2; } - return sr_Statics_ioobe($x$1); + jl_Object_monitorExitSync($Read$module$1); + $rt_throw(var$2); }, -oncie_StartsWith_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$Write$2 = ($this, $Write$module$1) => { + let var$2, $$je; + if ($Write$module$1.$_initialized) + return $Write$module$1.$_value0; + jl_Object_monitorEnterSync($Write$module$1); + a: { + try { + var$2 = sr_LazyRef_initialized($Write$module$1) ? sr_LazyRef_value($Write$module$1) : sr_LazyRef_initialize($Write$module$1, oncia_Clause$Write$1$__init_(null)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + break a; + + } + jl_Object_monitorExitSync($Write$module$1); + return var$2; + } + jl_Object_monitorExitSync($Write$module$1); + $rt_throw(var$2); }, -oncie_StartsWith_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$ReadWrite$2 = ($this, $ReadWrite$module$1) => { + let var$2, $$je; + if ($ReadWrite$module$1.$_initialized) + return $ReadWrite$module$1.$_value0; + jl_Object_monitorEnterSync($ReadWrite$module$1); + a: { + try { + var$2 = sr_LazyRef_initialized($ReadWrite$module$1) ? sr_LazyRef_value($ReadWrite$module$1) : sr_LazyRef_initialize($ReadWrite$module$1, oncia_Clause$ReadWrite$1$__init_0(null)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + break a; + + } + jl_Object_monitorExitSync($ReadWrite$module$1); + return var$2; + } + jl_Object_monitorExitSync($ReadWrite$module$1); + $rt_throw(var$2); }, -oncie_StartsWith_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LegacyLabelExpression$3 = ($this, $LegacyLabelExpression$module$1) => { + let var$2, $$je; + if ($LegacyLabelExpression$module$1.$_initialized) + return $LegacyLabelExpression$module$1.$_value0; + jl_Object_monitorEnterSync($LegacyLabelExpression$module$1); + a: { + try { + var$2 = sr_LazyRef_initialized($LegacyLabelExpression$module$1) ? sr_LazyRef_value($LegacyLabelExpression$module$1) : sr_LazyRef_initialize($LegacyLabelExpression$module$1, oncia_Clause$LegacyLabelExpression$2$__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + break a; + + } + jl_Object_monitorExitSync($LegacyLabelExpression$module$1); + return var$2; + } + jl_Object_monitorExitSync($LegacyLabelExpression$module$1); + $rt_throw(var$2); }, -oncie_StartsWith_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3 = ($this, $LabelExpressionsPartitions$module$1, $LegacyLabelExpression$module$1) => { + let $$je; + if ($LabelExpressionsPartitions$module$1.$_initialized) + return $LabelExpressionsPartitions$module$1.$_value0; + jl_Object_monitorEnterSync($LabelExpressionsPartitions$module$1); a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_StartsWith) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs30; - var$3 = $x$1.$lhs30; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs29; - $x$1 = $x$1.$rhs29; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_StartsWith)) - break b; - } - var$4 = 1; + try { + $LegacyLabelExpression$module$1 = sr_LazyRef_initialized($LabelExpressionsPartitions$module$1) ? sr_LazyRef_value($LabelExpressionsPartitions$module$1) : sr_LazyRef_initialize($LabelExpressionsPartitions$module$1, oncia_Clause$LabelExpressionsPartitions$2$__init_0($this, $LegacyLabelExpression$module$1)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $LegacyLabelExpression$module$1 = $$je; break a; + } - var$4 = 0; + jl_Object_monitorExitSync($LabelExpressionsPartitions$module$1); + return $LegacyLabelExpression$module$1; } - return var$4; + jl_Object_monitorExitSync($LabelExpressionsPartitions$module$1); + $rt_throw($LegacyLabelExpression$module$1); }, -oncie_StartsWith__init_0 = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs30 = $lhs; - $this.$rhs29 = $rhs; - $this.$position204 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures20 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_Clause_Acc$3 = ($this, $Acc$module$1, $LabelExpressionsPartitions$module$1, $Read$module$1, $Write$module$1, $ReadWrite$module$1, $LegacyLabelExpression$module$1) => { + let $$je; + if ($Acc$module$1.$_initialized) + return $Acc$module$1.$_value0; + jl_Object_monitorEnterSync($Acc$module$1); + a: { + try { + $LabelExpressionsPartitions$module$1 = sr_LazyRef_initialized($Acc$module$1) ? sr_LazyRef_value($Acc$module$1) : sr_LazyRef_initialize($Acc$module$1, oncia_Clause$Acc$2$__init_($this, $LabelExpressionsPartitions$module$1, $Read$module$1, $Write$module$1, $ReadWrite$module$1, $LegacyLabelExpression$module$1)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $LabelExpressionsPartitions$module$1 = $$je; + break a; + + } + jl_Object_monitorExitSync($Acc$module$1); + return $LabelExpressionsPartitions$module$1; + } + jl_Object_monitorExitSync($Acc$module$1); + $rt_throw($LabelExpressionsPartitions$module$1); }, -oncie_StartsWith__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_StartsWith(); - oncie_StartsWith__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncia_Clause_$init$ = $$this => { + let var$2; + onciap_ExpressionStringifier$_$callClinit(); + var$2 = onciap_ExpressionStringifier$_MODULE$; + $$this.$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq(onciap_ExpressionStringifier$_apply(var$2, onciap_ExpressionStringifier$_apply$default$1(var$2), 0, 0, 0, 0)); }, -oncie_RightUnaryOperatorExpression = $rt_classWithoutFields(0), -oncie_RightUnaryOperatorExpression_asCanonicalStringVal$ = $$this => { - let var$2, var$3; - var$2 = $$this.$canonicalOperatorSymbol(); - $$this = ($$this.$lhs0()).$asCanonicalStringVal(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$2 = jl_StringBuilder_append(var$3, var$2); - jl_AbstractStringBuilder_append0(var$2, 40); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, $$this), 41); - return jl_AbstractStringBuilder_toString(var$3); +oncia_HorizonClause = $rt_classWithoutFields(0), +oncia_ProjectionClause = $rt_classWithoutFields(0), +oncia_ProjectionClause_copyProjection$ = ($$this, $distinct, $returnItems, $orderBy, $skip, $limit, $where) => { + let var$8; + if ($$this instanceof oncia_With) { + var$8 = $$this; + $$this = oncia_With_copy(var$8, $distinct, $returnItems, $orderBy, $skip, $limit, $where, var$8.$withType, $$this.$position()); + } else if (!($$this instanceof oncia_Return)) { + if (!($$this instanceof oncia_Yield)) + $rt_throw(s_MatchError__init_($$this)); + $$this = oncia_Yield_copy($$this, $returnItems, $orderBy, $skip, $limit, $where, $$this.$position()); + } else { + var$8 = $$this; + $$this = oncia_Return_copy(var$8, $distinct, $returnItems, $orderBy, $skip, $limit, var$8.$excludedNames, var$8.$addedInRewrite, var$8.$inTopLevelBraces, $$this.$position()); + } + return $$this; }, -oncie_RightUnaryOperatorExpression_isConstantForQuery$ = $$this => { - return ($$this.$lhs0()).$isConstantForQuery(); -}; -function oncie_IsNull() { - let a = this; oncie_Expression.call(a); - a.$lhs24 = null; - a.$position242 = null; - a.$signatures16 = null; -} -let oncie_IsNull_asCanonicalStringVal = $this => { - return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); +oncia_ProjectionClause_clauseSpecificSemanticCheck$ = $$this => { + return oncia_ReturnItems_semanticCheck($$this.$returnItems()); }, -oncie_IsNull_isConstantForQuery = $this => { - return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); +oncia_ProjectionClause_semanticCheckContinuation$ = ($$this, $previousScope, $outerScope) => { + let var$4, var$5; + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = new oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0; + var$5.$_0573 = $$this; + var$5.$_1195 = $previousScope; + var$5.$_263 = $outerScope; + return oncias_SemanticCheck$_fromState(var$4, var$5); }, -oncie_IsNull_lhs = $this => { - return $this.$lhs24; +oncia_ProjectionClause_warnOnAccessToRestrictedVariableInOrderByOrWhere$ = ($$this, $previousScopeVars, $error) => { + $$this = new oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1; + $$this.$error$10 = $error; + $$this = sc_AbstractIterable_collectFirst($previousScopeVars, $$this); + $previousScopeVars = new oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0; + $previousScopeVars.$_0687 = $error; + return s_Option_getOrElse($$this, $previousScopeVars); }, -oncie_IsNull_position = $this => { - return $this.$position242; +oncia_ProjectionClause_verifyOrderByAggregationUse$ = ($$this, $fail) => { + let var$3, var$4, var$5, var$6; + var$3 = oncia_ReturnItems_containsAggregate($$this.$returnItems()); + var$4 = s_Option_exists($$this.$orderBy(), new oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0); + if (!var$3 && var$4) { + var$5 = $$this.$name(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(4056)), var$5); + var$5 = jl_AbstractStringBuilder_toString(var$6); + $$this = $$this.$position(); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException($fail.$_0498.$$outer5.$cypherExceptionFactory0, var$5, $$this)); + } }, -oncie_IsNull_signatures = $this => { - return $this.$signatures16; +oncia_ProjectionClause_runChecks$1 = ($this, $scopeToImportVariablesFrom) => { + $scopeToImportVariablesFrom = oncia_ReturnItems_declareVariables($this.$returnItems(), $scopeToImportVariablesFrom); + oncias_SemanticCheckableOption$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$($scopeToImportVariablesFrom, oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, $this.$orderBy())), oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, $this.$limit())), oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, $this.$skip())), oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, + $this.$where())); }, -oncie_IsNull_canonicalOperatorSymbol = $this => { - return $rt_s(436); +oncia_ProjectionClause$ = $rt_classWithoutFields(), +oncia_ProjectionClause$_MODULE$ = null, +oncia_ProjectionClause$_$callClinit = () => { + oncia_ProjectionClause$_$callClinit = $rt_eraseClinit(oncia_ProjectionClause$); + oncia_ProjectionClause$__clinit_(); }, -oncie_IsNull_productPrefix = $this => { - return $rt_s(5473); +oncia_ProjectionClause$__clinit_ = () => { + let var$1; + var$1 = new oncia_ProjectionClause$; + oncia_ProjectionClause$_$callClinit(); + oncia_ProjectionClause$_MODULE$ = var$1; }, -oncie_IsNull_productArity = $this => { - return 1; +oncia_ProjectionClause$_unapply = ($this, $arg) => { + let $distinct, $ri, $orderBy, $skip, $limit, $where, $limit_0, $skip_0, $where_0; + if ($arg instanceof oncia_With) { + $arg = $arg; + $distinct = $arg.$distinct2; + $ri = $arg.$returnItems3; + $orderBy = $arg.$orderBy4; + $skip = $arg.$skip5; + $limit = $arg.$limit5; + $where = $arg.$where2; + return s_Some__init_(s_Tuple6__init_(jl_Boolean_valueOf($distinct), $ri, $orderBy, $skip, $limit, $where)); + } + if ($arg instanceof oncia_Return) { + $arg = $arg; + $distinct = $arg.$distinct1; + $ri = $arg.$returnItems2; + $orderBy = $arg.$orderBy2; + $skip = $arg.$skip3; + $limit_0 = $arg.$limit3; + return s_Some__init_(s_Tuple6__init_(jl_Boolean_valueOf($distinct), $ri, $orderBy, $skip, $limit_0, s_None$_MODULE$)); + } + if (!($arg instanceof oncia_Yield)) + $rt_throw(s_MatchError__init_($arg)); + $arg = $arg; + $ri = $arg.$returnItems4; + $orderBy = $arg.$orderBy3; + $skip_0 = $arg.$skip4; + $limit = $arg.$limit4; + $where_0 = $arg.$where3; + return s_Some__init_(s_Tuple6__init_(jl_Boolean_valueOf(0), $ri, $orderBy, $skip_0, $limit, $where_0)); }, -oncie_IsNull_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs24; - default: +oncia_ProjectionClause$_checkAliasedReturnItems = ($this, $returnItems, $clauseName) => { + let var$3; + var$3 = new oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0; + var$3.$_0848 = $returnItems; + var$3.$_1285 = $clauseName; + return var$3; +}, +s_Product6 = $rt_classWithoutFields(0); +function s_Tuple6() { + let a = this; jl_Object.call(a); + a.$_13 = null; + a.$_22 = null; + a.$_31 = null; + a.$_41 = null; + a.$_51 = null; + a.$_60 = null; +} +let s_Tuple6_productArity = $this => { + return 6; +}, +s_Tuple6_productElement = ($this, $n) => { + let var$2, var$3; + a: { + switch ($n) { + case 0: + break; + case 1: + var$2 = $this.$_22; + break a; + case 2: + var$2 = $this.$_31; + break a; + case 3: + var$2 = $this.$_41; + break a; + case 4: + var$2 = $this.$_51; + break a; + case 5: + var$2 = $this.$_60; + break a; + default: + var$3 = new jl_IndexOutOfBoundsException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$2, 32); + var$2 = jl_StringBuilder_append0(var$2, $n); + jl_AbstractStringBuilder_append(var$2, $rt_s(4057)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$3); + } + var$2 = $this.$_13; } - return sr_Statics_ioobe($x$1); + return var$2; }, -oncie_IsNull_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +s_Tuple6__1 = $this => { + return $this.$_13; }, -oncie_IsNull_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +s_Tuple6__2 = $this => { + return $this.$_22; }, -oncie_IsNull_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +s_Tuple6__3 = $this => { + return $this.$_31; }, -oncie_IsNull_equals = ($this, $x$1) => { - let var$2, var$3; +s_Tuple6__4 = $this => { + return $this.$_41; +}, +s_Tuple6__5 = $this => { + return $this.$_51; +}, +s_Tuple6__6 = $this => { + return $this.$_60; +}, +s_Tuple6_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$1, 7); + jl_AbstractStringBuilder_append(var$1, $rt_s(40)); + var$1 = jl_StringBuilder_append(var$1, $this.$_13); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_22); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_31); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_41); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_51); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_60); + jl_AbstractStringBuilder_append(var$1, $rt_s(42)); + return jl_AbstractStringBuilder_toString(var$1); +}, +s_Tuple6_productPrefix = $this => { + return $rt_s(4058); +}, +s_Tuple6_productIterator = $this => { + return sr_ScalaRunTime$$anon$1__init_($this); +}, +s_Tuple6_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); +}, +s_Tuple6_equals = ($this, $x$1) => { a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_IsNull) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs24; - $x$1 = $x$1.$lhs24; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_IsNull)) - break b; - } - var$3 = 1; - break a; + if ($this !== $x$1) { + if (!(!($x$1 instanceof s_Tuple6) ? 0 : 1)) + break a; + $x$1 = $x$1; + if (!sr_BoxesRunTime_equals($this.$_13, $x$1.$_13)) + break a; + if (!sr_BoxesRunTime_equals($this.$_22, $x$1.$_22)) + break a; + if (!sr_BoxesRunTime_equals($this.$_31, $x$1.$_31)) + break a; + if (!sr_BoxesRunTime_equals($this.$_41, $x$1.$_41)) + break a; + if (!sr_BoxesRunTime_equals($this.$_51, $x$1.$_51)) + break a; + if (!sr_BoxesRunTime_equals($this.$_60, $x$1.$_60)) + break a; } - var$3 = 0; + return 1; } - return var$3; + return 0; }, -oncie_IsNull__init_0 = ($this, $lhs, $position) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9; - $this.$lhs24 = $lhs; - $this.$position242 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$3 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$5 = var$4.data; - oncie_TypeSignature$_$callClinit(); - var$6 = oncie_TypeSignature$_MODULE$; - var$7 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$9 = var$8.data; - oncius_package$_$callClinit(); - var$9[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures16 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$4)); +s_Tuple6__init_0 = ($this, $_1, $_2, $_3, $_4, $_5, $_6) => { + $this.$_13 = $_1; + $this.$_22 = $_2; + $this.$_31 = $_3; + $this.$_41 = $_4; + $this.$_51 = $_5; + $this.$_60 = $_6; }, -oncie_IsNull__init_ = (var_0, var_1) => { - let var_2 = new oncie_IsNull(); - oncie_IsNull__init_0(var_2, var_0, var_1); - return var_2; +s_Tuple6__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new s_Tuple6(); + s_Tuple6__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; }; -function oncie_IsNotNull() { - let a = this; oncie_Expression.call(a); - a.$lhs14 = null; - a.$position296 = null; - a.$signatures15 = null; +function oncia_ReturnItems() { + let a = this; jl_Object.call(a); + a.$includeExisting0 = 0; + a.$items0 = null; + a.$defaultOrderOnColumns = null; + a.$position28 = null; } -let oncie_IsNotNull_asCanonicalStringVal = $this => { - return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); +let oncia_ReturnItems_includeExisting = $this => { + return $this.$includeExisting0; }, -oncie_IsNotNull_isConstantForQuery = $this => { - return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); +oncia_ReturnItems_position = $this => { + return $this.$position28; }, -oncie_IsNotNull_lhs = $this => { - return $this.$lhs14; +oncia_ReturnItems_withDefaultOrderOnColumns = ($this, $defaultOrderOnColumns) => { + let $x$1; + $x$1 = s_Some__init_($defaultOrderOnColumns); + return oncia_ReturnItems_copy($this, $this.$includeExisting0, $this.$items0, $x$1, $this.$position28); }, -oncie_IsNotNull_position = $this => { - return $this.$position296; +oncia_ReturnItems_semanticCheck = $this => { + return (oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(oncias_SemanticCheckableIterableOnce$_MODULE$, $this.$items0)).$chain(oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, sc_AbstractIterable_groupBy($this.$items0, new oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_0), new oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_1)); }, -oncie_IsNotNull_signatures = $this => { - return $this.$signatures15; +oncia_ReturnItems_declareVariables = ($this, $previousScope) => { + let var$2, var$3, var$4, var$5, var$6; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = $this.$includeExisting0; + var$4 = new oncia_ReturnItems$declareVariables$lambda$_68_0; + var$4.$_0188 = $previousScope; + var$2 = oncias_SemanticCheck$_when(var$2, var$3, var$4); + var$4 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$5 = $this.$items0; + var$6 = new oncia_ReturnItems$declareVariables$lambda$_68_1; + var$6.$_0841 = $this; + var$6.$_1282 = $previousScope; + return var$2.$chain(oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$4, var$5, var$6)); }, -oncie_IsNotNull_canonicalOperatorSymbol = $this => { - return $rt_s(438); +oncia_ReturnItems_returnVariables = $this => { + return oncia_ReturnItems$ReturnVariables__init_($this.$includeExisting0, $this.$items0.$flatMap(new oncia_ReturnItems$returnVariables$lambda$_70_0)); }, -oncie_IsNotNull_productPrefix = $this => { - return $rt_s(5474); +oncia_ReturnItems_containsAggregate = $this => { + return $this.$items0.$exists(new oncia_ReturnItems$containsAggregate$lambda$_71_0); }, -oncie_IsNotNull_productArity = $this => { - return 1; +oncia_ReturnItems_copy = ($this, $includeExisting, $items, $defaultOrderOnColumns, $position) => { + return oncia_ReturnItems__init_0($includeExisting, $items, $defaultOrderOnColumns, $position); }, -oncie_IsNotNull_productElement = ($this, $x$1) => { +oncia_ReturnItems_productPrefix = $this => { + return $rt_s(4059); +}, +oncia_ReturnItems_productArity = $this => { + return 3; +}, +oncia_ReturnItems_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs14; + return jl_Boolean_valueOf($this.$includeExisting0); + case 1: + return $this.$items0; + case 2: + return $this.$defaultOrderOnColumns; default: } return sr_Statics_ioobe($x$1); }, -oncie_IsNotNull_productIterator = $this => { +oncia_ReturnItems_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_IsNotNull_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_ReturnItems_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4059))), !$this.$includeExisting0 ? 1237 : 1231), sr_Statics_anyHash($this.$items0)), sr_Statics_anyHash($this.$defaultOrderOnColumns)), 3); }, -oncie_IsNotNull_toString = $this => { +oncia_ReturnItems_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_IsNotNull_equals = ($this, $x$1) => { - let var$2, var$3; +oncia_ReturnItems_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_IsNotNull) ? 0 : 1)) - break b; - c: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ReturnItems) ? 0 : 1)) + break b; $x$1 = $x$1; - var$2 = $this.$lhs14; - $x$1 = $x$1.$lhs14; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) + if ($this.$includeExisting0 != $x$1.$includeExisting0) + break b; + d: { + var$2 = $this.$items0; + var$3 = $x$1.$items0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$defaultOrderOnColumns; + $x$1 = $x$1.$defaultOrderOnColumns; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) break b; else break c; @@ -202307,252 +91433,351 @@ oncie_IsNotNull_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof oncie_IsNotNull)) - break b; } - var$3 = 1; + var$4 = 1; break a; } - var$3 = 0; + var$4 = 0; } - return var$3; -}, -oncie_IsNotNull__init_0 = ($this, $lhs, $position) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9; - $this.$lhs14 = $lhs; - $this.$position296 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$3 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$5 = var$4.data; - oncie_TypeSignature$_$callClinit(); - var$6 = oncie_TypeSignature$_MODULE$; - var$7 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$9 = var$8.data; - oncius_package$_$callClinit(); - var$9[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures15 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$4)); -}, -oncie_IsNotNull__init_ = (var_0, var_1) => { - let var_2 = new oncie_IsNotNull(); - oncie_IsNotNull__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_IsNormalized() { - let a = this; oncie_Expression.call(a); - a.$lhs16 = null; - a.$normalForm3 = null; - a.$position255 = null; - a.$signatures27 = null; -} -let oncia_IsNormalized_asCanonicalStringVal = $this => { - return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); -}, -oncia_IsNormalized_isConstantForQuery = $this => { - return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); -}, -oncia_IsNormalized_lhs = $this => { - return $this.$lhs16; -}, -oncia_IsNormalized_normalForm = $this => { - return $this.$normalForm3; + return var$4; }, -oncia_IsNormalized_position = $this => { - return $this.$position255; +oncia_ReturnItems_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncia_IsNormalized_signatures = $this => { - return $this.$signatures27; +oncia_ReturnItems__init_ = ($this, $includeExisting, $items, $defaultOrderOnColumns, $position) => { + $this.$includeExisting0 = $includeExisting; + $this.$items0 = $items; + $this.$defaultOrderOnColumns = $defaultOrderOnColumns; + $this.$position28 = $position; }, -oncia_IsNormalized_canonicalOperatorSymbol = $this => { - return $rt_s(5475); +oncia_ReturnItems__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_ReturnItems(); + oncia_ReturnItems__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; }, -oncia_IsNormalized_productPrefix = $this => { - return $rt_s(5476); +oncie_ScopeExpression = $rt_classWithoutFields(0), +oncie_ExpressionWithComputedDependencies = $rt_classWithoutFields(0), +oncie_ExpressionWithComputedDependencies_introducedVariables$ = $$this => { + return s_Option_getOrElse($$this.$computedIntroducedVariables(), new oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0); }, -oncia_IsNormalized_productArity = $this => { - return 2; +oncie_ExpressionWithComputedDependencies_scopeDependencies$ = $$this => { + return s_Option_getOrElse($$this.$computedScopeDependencies(), new oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0); }, -oncia_IsNormalized_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs16; - case 1: - return $this.$normalForm3; - default: +oncie_SubqueryExpression = $rt_classWithoutFields(0), +oncia_FullSubqueryExpression = $rt_classWithoutFields(0); +function oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0498 = null; +} +let oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2_applyOrElse = ($this, $x, $default) => { + let var$3; + $x = $x; + if (!($x instanceof oncia_AliasedReturnItem)) + $x = $default.$apply2($x); + else { + $x = $x; + var$3 = $x.$expression29; + $default = $x.$variable14; + $x = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + $x = s_Predef$ArrowAssoc$_$minus$greater$extension($x, var$3, $default); } - return sr_Statics_ioobe($x$1); + return $x; +}; +function oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_01029 = null; + a.$_1352 = null; +} +let oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_01029; + var$3 = var$0.$_1352; + var$2 = var$2.$$outer5; + var$4 = var$1.$sortItems; + var$5 = new oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0; + var$5.$_0747 = var$2; + var$5.$_1251 = var$3; + return oncia_OrderBy__init_0(var$4.$map(var$5), var$1.$position115); +}; +function oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2() { + let a = this; jl_Object.call(a); + a.$_078 = null; + a.$_128 = null; +} +let oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_078; + var$3 = var$0.$_128; + var$2 = var$2.$$outer5; + return oncia_Where__init_0(oncirr_normalizeWithAndReturnClauses_aliasExpression(var$2, var$3, var$1.$expression21), var$1.$position14); +}; +function sc_MapView$MapValues$iterator$lambda$_0_0() { + jl_Object.call(this); + this.$_01053 = null; +} +let sc_MapView$MapValues$iterator$lambda$_0_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_01053; + return s_Tuple2__init_(var$1.$_1(), var$2.$f8.$apply2(var$1.$_2())); }, -oncia_IsNormalized_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_LogicalVariable = $rt_classWithoutFields(oncie_Expression), +oncie_LogicalVariable_isConstantForQuery = $this => { + return 0; +}; +function ju_LinkedHashMap$LinkedHashMapEntry() { + let a = this; ju_HashMap$HashEntry.call(a); + a.$chainForward = null; + a.$chainBackward = null; +} +let oncia_StatementWithGraph = $rt_classWithoutFields(0), +oncia_AdministrationCommand = $rt_classWithoutFields(0), +oncia_AdministrationCommand_semanticCheck$ = $$this => { + let var$2, var$3, var$4, var$5; + var$2 = $$this.$name(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(1002)), var$2), $rt_s(4060)); + var$2 = $$this.$requireFeatureSupport(jl_AbstractStringBuilder_toString(var$3), oncias_SemanticFeature$MultipleDatabases$_MODULE$, $$this.$position()); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = s_Option_isDefined($$this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar()); + var$5 = new oncia_AdministrationCommand$semanticCheck$lambda$_13_0; + var$5.$_0344 = $$this; + return oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_when(var$3, var$4, var$5)); }, -oncia_IsNormalized_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_AdministrationCommand_dup$ = ($$this, $children) => { + return ($$this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup($children)).$withGraph($$this.$useGraph()); }, -oncia_IsNormalized_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_AdministrationCommand_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq(s_None$_MODULE$); }, -oncia_IsNormalized_equals = ($this, $x$1) => { +oncia_ReadAdministrationCommand = $rt_classWithoutFields(0), +oncia_ReadAdministrationCommand_returnColumnNames$ = $$this => { let var$2, var$3, var$4; a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_IsNormalized) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs16; - var$3 = $x$1.$lhs16; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$normalForm3; - $x$1 = $x$1.$normalForm3; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; + var$2 = s_Tuple2__init_($$this.$yields(), $$this.$returns()); + var$3 = var$2.$_20; + if (var$3 instanceof s_Some) + $$this = (var$3.$value5.$returnItems2.$items0.$map(new oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0)).$toList(); + else { + var$4 = var$2.$_10; + if (var$4 instanceof s_Some) { + var$4 = var$4.$value5; + if (jl_Object_equals(s_None$_MODULE$, var$3)) { + $$this = (var$4.$returnItems4.$items0.$map(new oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1)).$toList(); + break a; } - if (!($this instanceof oncia_IsNormalized)) - break b; } - var$4 = 1; - break a; + var$3 = var$2.$_10; + var$4 = var$2.$_20; + if (jl_Object_equals(s_None$_MODULE$, var$3) && jl_Object_equals(s_None$_MODULE$, var$4)) + $$this = $$this.$defaultColumnNames(); + else + $rt_throw(s_MatchError__init_(var$2)); } - var$4 = 0; } - return var$4; + return $$this; }, -oncia_IsNormalized__init_0 = ($this, $lhs, $normalForm, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs16 = $lhs; - $this.$normalForm3 = $normalForm; - $this.$position255 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures27 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ReadAdministrationCommand_defaultColumnNames$ = $$this => { + return sci_List_map($$this.$defaultColumnSet(), new oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0); }, -oncia_IsNormalized__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_IsNormalized(); - oncia_IsNormalized__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncia_ReadAdministrationCommand_yields$ = $$this => { + return s_Option_flatMap($$this.$yieldOrWhere(), new oncia_ReadAdministrationCommand$yields$lambda$_11_0); +}, +oncia_ReadAdministrationCommand_returns$ = $$this => { + return s_Option_flatMap($$this.$yieldOrWhere(), new oncia_ReadAdministrationCommand$returns$lambda$_13_0); +}, +oncia_ReadAdministrationCommand_returnColumns$ = $$this => { + let var$2, var$3; + var$2 = $$this.$returnColumnNames(); + var$3 = new oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0; + var$3.$_0426 = $$this; + return sci_List_map(var$2, var$3); +}, +oncia_ReadAdministrationCommand_semanticCheck$ = $$this => { + let var$2, var$3; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0; + var$3.$_0791 = $$this; + return oncias_SemanticCheck$_nestedCheck(var$2, var$3); +}, +oncia_ReadAdministrationCommand_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq(1); }; -function oncia_IsNotNormalized() { - let a = this; oncie_Expression.call(a); - a.$lhs23 = null; - a.$normalForm4 = null; - a.$position246 = null; - a.$signatures21 = null; +function oncia_ShowPrivileges() { + let a = this; jl_Object.call(a); + a.$scope10 = null; + a.$yieldOrWhere6 = null; + a.$defaultColumnSet3 = null; + a.$position292 = null; + a.$isReadOnly4 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar32 = null; } -let oncia_IsNotNormalized_asCanonicalStringVal = $this => { - return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); +let oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); }, -oncia_IsNotNormalized_isConstantForQuery = $this => { - return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); +oncia_ShowPrivileges_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); }, -oncia_IsNotNormalized_lhs = $this => { - return $this.$lhs23; +oncia_ShowPrivileges_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); }, -oncia_IsNotNormalized_normalForm = $this => { - return $this.$normalForm4; +oncia_ShowPrivileges_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); }, -oncia_IsNotNormalized_position = $this => { - return $this.$position246; +oncia_ShowPrivileges_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); }, -oncia_IsNotNormalized_signatures = $this => { - return $this.$signatures21; +oncia_ShowPrivileges_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); }, -oncia_IsNotNormalized_canonicalOperatorSymbol = $this => { - return $rt_s(5477); +oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncia_IsNotNormalized_productPrefix = $this => { - return $rt_s(5478); +oncia_ShowPrivileges_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncia_IsNotNormalized_productArity = $this => { - return 2; +oncia_ShowPrivileges_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncia_IsNotNormalized_productElement = ($this, $x$1) => { +oncia_ShowPrivileges_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowPrivileges_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowPrivileges_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); +}, +oncia_ShowPrivileges_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_ShowPrivileges_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowPrivileges_foldedOver = $this => { + return $this; +}, +oncia_ShowPrivileges_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly4 = $x$1; +}, +oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar32; +}, +oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar32 = $x$1; +}, +oncia_ShowPrivileges_scope = $this => { + return $this.$scope10; +}, +oncia_ShowPrivileges_yieldOrWhere = $this => { + return $this.$yieldOrWhere6; +}, +oncia_ShowPrivileges_defaultColumnSet = $this => { + return $this.$defaultColumnSet3; +}, +oncia_ShowPrivileges_position = $this => { + return $this.$position292; +}, +oncia_ShowPrivileges_name = $this => { + return $rt_s(4061); +}, +oncia_ShowPrivileges_semanticCheck = $this => { + let var$1; + var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_ShowPrivileges_copy = ($this, $scope, $yieldOrWhere, $defaultColumnSet, $position) => { + return oncia_ShowPrivileges__init_($scope, $yieldOrWhere, $defaultColumnSet, $position); +}, +oncia_ShowPrivileges_copy$default$1 = $this => { + return $this.$scope10; +}, +oncia_ShowPrivileges_copy$default$3 = $this => { + return $this.$defaultColumnSet3; +}, +oncia_ShowPrivileges_productPrefix = $this => { + return $rt_s(4062); +}, +oncia_ShowPrivileges_productArity = $this => { + return 3; +}, +oncia_ShowPrivileges_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs23; + return $this.$scope10; case 1: - return $this.$normalForm4; + return $this.$yieldOrWhere6; + case 2: + return $this.$defaultColumnSet3; default: } return sr_Statics_ioobe($x$1); }, -oncia_IsNotNormalized_productIterator = $this => { +oncia_ShowPrivileges_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_IsNotNormalized_hashCode = $this => { +oncia_ShowPrivileges_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_IsNotNormalized_toString = $this => { +oncia_ShowPrivileges_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_IsNotNormalized_equals = ($this, $x$1) => { +oncia_ShowPrivileges_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_IsNotNormalized) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs23; - var$3 = $x$1.$lhs23; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowPrivileges) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$scope10; + var$3 = $x$1.$scope10; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$normalForm4; - $x$1 = $x$1.$normalForm4; + e: { + var$2 = $this.$yieldOrWhere6; + var$3 = $x$1.$yieldOrWhere6; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$defaultColumnSet3; + $x$1 = $x$1.$defaultColumnSet3; if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) + if (!sci_List_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_IsNotNormalized)) - break b; } var$4 = 1; break a; @@ -202561,223 +91786,194 @@ oncia_IsNotNormalized_equals = ($this, $x$1) => { } return var$4; }, -oncia_IsNotNormalized__init_0 = ($this, $lhs, $normalForm, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs23 = $lhs; - $this.$normalForm4 = $normalForm; - $this.$position246 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures21 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ShowPrivileges_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncia_IsNotNormalized__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_IsNotNormalized(); - oncia_IsNotNormalized__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_IsTyped() { - let a = this; oncie_Expression.call(a); - a.$lhs26 = null; - a.$typeName2 = null; - a.$position295 = null; - a.$signatures13 = null; +oncia_ShowPrivileges_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowPrivileges__init_0 = ($this, $scope, $yieldOrWhere, $defaultColumnSet, $position) => { + $this.$scope10 = $scope; + $this.$yieldOrWhere6 = $yieldOrWhere; + $this.$defaultColumnSet3 = $defaultColumnSet; + $this.$position292 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); +}, +oncia_ShowPrivileges__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_ShowPrivileges(); + oncia_ShowPrivileges__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncia_ClauseAllowedOnSystem = $rt_classWithoutFields(0); +function oncia_Yield() { + let a = this; jl_Object.call(a); + a.$returnItems4 = null; + a.$orderBy3 = null; + a.$skip4 = null; + a.$limit4 = null; + a.$where3 = null; + a.$position31 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier7 = null; + a.$SetExtractor$module14 = null; } -let oncia_IsTyped_asCanonicalStringVal = $this => { - return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); +let oncia_Yield_isReturn = $this => { + return 0; }, -oncia_IsTyped_isConstantForQuery = $this => { - return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); +oncia_Yield_copyProjection = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where) => { + return oncia_ProjectionClause_copyProjection$($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where); }, -oncia_IsTyped_lhs = $this => { - return $this.$lhs26; +oncia_Yield_copyProjection$default$1 = $this => { + return $this.$distinct(); }, -oncia_IsTyped_typeName = $this => { - return $this.$typeName2; +oncia_Yield_copyProjection$default$3 = $this => { + return $this.$orderBy(); }, -oncia_IsTyped_position = $this => { - return $this.$position295; +oncia_Yield_copyProjection$default$4 = $this => { + return $this.$skip(); }, -oncia_IsTyped_signatures = $this => { - return $this.$signatures13; +oncia_Yield_copyProjection$default$5 = $this => { + return $this.$limit(); }, -oncia_IsTyped_canonicalOperatorSymbol = $this => { - return $rt_s(5479); +oncia_Yield_copyProjection$default$6 = $this => { + return $this.$where(); }, -oncia_IsTyped_productPrefix = $this => { - return $rt_s(5480); +oncia_Yield_clauseSpecificSemanticCheck = $this => { + return oncia_ProjectionClause_clauseSpecificSemanticCheck$($this); }, -oncia_IsTyped_productArity = $this => { - return 2; +oncia_Yield_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { + return oncia_ProjectionClause_semanticCheckContinuation$($this, $previousScope, $outerScope); }, -oncia_IsTyped_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs26; - case 1: - return $this.$typeName2; - default: - } - return sr_Statics_ioobe($x$1); +oncia_Yield_semanticCheckContinuation$default$2 = $this => { + return s_None$_MODULE$; }, -oncia_IsTyped_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_Yield_verifyOrderByAggregationUse = ($this, $fail) => { + oncia_ProjectionClause_verifyOrderByAggregationUse$($this, $fail); }, -oncia_IsTyped_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_Yield_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -oncia_IsTyped_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_Yield_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncia_IsTyped_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_IsTyped) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs26; - var$3 = $x$1.$lhs26; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$typeName2; - $x$1 = $x$1.$typeName2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_IsTyped)) - break b; +oncia_Yield_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_Yield_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Yield_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Yield_foldedOver = $this => { + return $this; +}, +oncia_Yield_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Yield_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier7; +}, +oncia_Yield_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module14 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module14 !== null) + break a; + $this.$SetExtractor$module14 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - var$4 = 1; - break a; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - var$4 = 0; + jl_Object_monitorExitSync($this); } - return var$4; + return $this.$SetExtractor$module14; }, -oncia_IsTyped__init_0 = ($this, $lhs, $typeName, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs26 = $lhs; - $this.$typeName2 = $typeName; - $this.$position295 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures13 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_Yield_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier7 = $x$1; }, -oncia_IsTyped__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_IsTyped(); - oncia_IsTyped__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_IsNotTyped() { - let a = this; oncie_Expression.call(a); - a.$lhs31 = null; - a.$typeName3 = null; - a.$position235 = null; - a.$signatures8 = null; -} -let oncia_IsNotTyped_asCanonicalStringVal = $this => { - return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); +oncia_Yield_returnItems = $this => { + return $this.$returnItems4; }, -oncia_IsNotTyped_isConstantForQuery = $this => { - return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); +oncia_Yield_orderBy = $this => { + return $this.$orderBy3; }, -oncia_IsNotTyped_lhs = $this => { - return $this.$lhs31; +oncia_Yield_skip = $this => { + return $this.$skip4; }, -oncia_IsNotTyped_typeName = $this => { - return $this.$typeName3; +oncia_Yield_limit = $this => { + return $this.$limit4; }, -oncia_IsNotTyped_position = $this => { - return $this.$position235; +oncia_Yield_where = $this => { + return $this.$where3; }, -oncia_IsNotTyped_signatures = $this => { - return $this.$signatures8; +oncia_Yield_position = $this => { + return $this.$position31; }, -oncia_IsNotTyped_canonicalOperatorSymbol = $this => { - return $rt_s(5481); +oncia_Yield_distinct = $this => { + return 0; }, -oncia_IsNotTyped_productPrefix = $this => { - return $rt_s(5482); +oncia_Yield_name = $this => { + return $rt_s(4063); }, -oncia_IsNotTyped_productArity = $this => { - return 2; +oncia_Yield_warnOnAccessToRestrictedVariableInOrderByOrWhere = ($this, $previousScopeVars, $error) => { + return $error; }, -oncia_IsNotTyped_productElement = ($this, $x$1) => { +oncia_Yield_copy = ($this, $returnItems, $orderBy, $skip, $limit, $where, $position) => { + return oncia_Yield__init_0($returnItems, $orderBy, $skip, $limit, $where, $position); +}, +oncia_Yield_productPrefix = $this => { + return $rt_s(4064); +}, +oncia_Yield_productArity = $this => { + return 5; +}, +oncia_Yield_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs31; + return $this.$returnItems4; case 1: - return $this.$typeName3; + return $this.$orderBy3; + case 2: + return $this.$skip4; + case 3: + return $this.$limit4; + case 4: + return $this.$where3; default: } return sr_Statics_ioobe($x$1); }, -oncia_IsNotTyped_productIterator = $this => { +oncia_Yield_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_IsNotTyped_hashCode = $this => { +oncia_Yield_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_IsNotTyped_toString = $this => { +oncia_Yield_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_IsNotTyped_equals = ($this, $x$1) => { +oncia_Yield_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_IsNotTyped) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_Yield) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$lhs31; - var$3 = $x$1.$lhs31; + var$2 = $this.$returnItems4; + var$3 = $x$1.$returnItems4; if (var$2 !== null) { - if (!var$2.$equals(var$3)) + if (!oncia_ReturnItems_equals(var$2, var$3)) break b; else break c; @@ -202786,18 +91982,54 @@ oncia_IsNotTyped_equals = ($this, $x$1) => { break b; } d: { - var$3 = $this.$typeName3; - $x$1 = $x$1.$typeName3; + var$2 = $this.$orderBy3; + var$3 = $x$1.$orderBy3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$skip4; + var$3 = $x$1.$skip4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$limit4; + var$3 = $x$1.$limit4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$3 = $this.$where3; + $x$1 = $x$1.$where3; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break d; + break g; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_IsNotTyped)) + if (!($this instanceof oncia_Yield)) break b; } var$4 = 1; @@ -202807,121 +92039,218 @@ oncia_IsNotTyped_equals = ($this, $x$1) => { } return var$4; }, -oncia_IsNotTyped__init_0 = ($this, $lhs, $typeName, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs31 = $lhs; - $this.$typeName3 = $typeName; - $this.$position235 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures8 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_Yield_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncia_IsNotTyped__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_IsNotTyped(); - oncia_IsNotTyped__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncia_Yield__init_ = ($this, $returnItems, $orderBy, $skip, $limit, $where, $position) => { + $this.$returnItems4 = $returnItems; + $this.$orderBy3 = $orderBy; + $this.$skip4 = $skip; + $this.$limit4 = $limit; + $this.$where3 = $where; + $this.$position31 = $position; + oncia_Clause_$init$($this); +}, +oncia_Yield__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_Yield(); + oncia_Yield__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; }; -function oncie_Concatenate() { - let a = this; oncie_Expression.call(a); - a.$lhs33 = null; - a.$rhs28 = null; - a.$position262 = null; - a.$signatures3 = null; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0() { + jl_Object.call(this); + this.$_0489 = null; } -let oncie_Concatenate_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0__init_ = (var$0, var$1) => { + var$0.$_0489 = var$1; +}, +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0__init_0 = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0__init_(var_1, var_0); + return var_1; +}, +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0489, var$1); +}; +function oncia_ShowPrivilegeCommands() { + let a = this; jl_Object.call(a); + a.$scope8 = null; + a.$asRevoke0 = 0; + a.$yieldOrWhere1 = null; + a.$defaultColumnSet1 = null; + a.$position233 = null; + a.$isReadOnly33 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar17 = null; +} +let oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); +}, +oncia_ShowPrivilegeCommands_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); +}, +oncia_ShowPrivilegeCommands_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); +}, +oncia_ShowPrivilegeCommands_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); +}, +oncia_ShowPrivilegeCommands_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); +}, +oncia_ShowPrivilegeCommands_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); +}, +oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ShowPrivilegeCommands_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_ShowPrivilegeCommands_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowPrivilegeCommands_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowPrivilegeCommands_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowPrivilegeCommands_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); +}, +oncia_ShowPrivilegeCommands_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_ShowPrivilegeCommands_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowPrivilegeCommands_foldedOver = $this => { + return $this; +}, +oncia_ShowPrivilegeCommands_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly33 = $x$1; +}, +oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar17; +}, +oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar17 = $x$1; +}, +oncia_ShowPrivilegeCommands_scope = $this => { + return $this.$scope8; +}, +oncia_ShowPrivilegeCommands_asRevoke = $this => { + return $this.$asRevoke0; +}, +oncia_ShowPrivilegeCommands_yieldOrWhere = $this => { + return $this.$yieldOrWhere1; +}, +oncia_ShowPrivilegeCommands_defaultColumnSet = $this => { + return $this.$defaultColumnSet1; }, -oncie_Concatenate_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncia_ShowPrivilegeCommands_position = $this => { + return $this.$position233; }, -oncie_Concatenate_lhs = $this => { - return $this.$lhs33; +oncia_ShowPrivilegeCommands_name = $this => { + return $rt_s(4065); }, -oncie_Concatenate_rhs = $this => { - return $this.$rhs28; +oncia_ShowPrivilegeCommands_semanticCheck = $this => { + let var$1; + var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncie_Concatenate_position = $this => { - return $this.$position262; +oncia_ShowPrivilegeCommands_copy = ($this, $scope, $asRevoke, $yieldOrWhere, $defaultColumnSet, $position) => { + return oncia_ShowPrivilegeCommands__init_($scope, $asRevoke, $yieldOrWhere, $defaultColumnSet, $position); }, -oncie_Concatenate_signatures = $this => { - return $this.$signatures3; +oncia_ShowPrivilegeCommands_copy$default$1 = $this => { + return $this.$scope8; }, -oncie_Concatenate_canonicalOperatorSymbol = $this => { - return $rt_s(4452); +oncia_ShowPrivilegeCommands_copy$default$2 = $this => { + return $this.$asRevoke0; }, -oncie_Concatenate_productPrefix = $this => { - return $rt_s(5483); +oncia_ShowPrivilegeCommands_copy$default$4 = $this => { + return $this.$defaultColumnSet1; }, -oncie_Concatenate_productArity = $this => { - return 2; +oncia_ShowPrivilegeCommands_productPrefix = $this => { + return $rt_s(4066); }, -oncie_Concatenate_productElement = ($this, $x$1) => { +oncia_ShowPrivilegeCommands_productArity = $this => { + return 4; +}, +oncia_ShowPrivilegeCommands_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs33; + return $this.$scope8; case 1: - return $this.$rhs28; + return jl_Boolean_valueOf($this.$asRevoke0); + case 2: + return $this.$yieldOrWhere1; + case 3: + return $this.$defaultColumnSet1; default: } return sr_Statics_ioobe($x$1); }, -oncie_Concatenate_productIterator = $this => { +oncia_ShowPrivilegeCommands_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Concatenate_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowPrivilegeCommands_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4066))), sr_Statics_anyHash($this.$scope8)), !$this.$asRevoke0 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldOrWhere1)), sr_Statics_anyHash($this.$defaultColumnSet1)), 4); }, -oncie_Concatenate_toString = $this => { +oncia_ShowPrivilegeCommands_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Concatenate_equals = ($this, $x$1) => { +oncia_ShowPrivilegeCommands_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Concatenate) ? 0 : 1)) - break b; - c: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowPrivilegeCommands) ? 0 : 1)) + break b; $x$1 = $x$1; - var$2 = $this.$lhs33; - var$3 = $x$1.$lhs33; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + if ($this.$asRevoke0 != $x$1.$asRevoke0) + break b; + d: { + var$2 = $this.$scope8; + var$3 = $x$1.$scope8; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs28; - $x$1 = $x$1.$rhs28; + e: { + var$2 = $this.$yieldOrWhere1; + var$3 = $x$1.$yieldOrWhere1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$defaultColumnSet1; + $x$1 = $x$1.$defaultColumnSet1; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!sci_List_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_Concatenate)) - break b; } var$4 = 1; break a; @@ -202930,133 +92259,190 @@ oncie_Concatenate_equals = ($this, $x$1) => { } return var$4; }, -oncie_Concatenate__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs33 = $lhs; - $this.$rhs28 = $rhs; - $this.$position262 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 2); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - var$8 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_StringType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTString(oncius_package$_MODULE$)); - $rhs = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$10 = $rt_createArray(oncius_ListType, 2); - var$9 = var$10.data; - var$8 = oncius_package$_MODULE$; - var$9[0] = oncius_package$_CTList(var$8, oncius_package$_CTAny(var$8)); - var$8 = oncius_package$_MODULE$; - var$9[1] = oncius_package$_CTList(var$8, oncius_package$_CTAny(var$8)); - $position = $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$10)); - var$7 = oncius_package$_MODULE$; - var$6[1] = oncie_TypeSignature$_apply($rhs, $position, oncius_package$_CTList(var$7, oncius_package$_CTAny(var$7))); - $this.$signatures3 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ShowPrivilegeCommands_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncie_Concatenate__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Concatenate(); - oncie_Concatenate__init_(var_3, var_0, var_1, var_2); - return var_3; +oncia_ShowPrivilegeCommands_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowPrivilegeCommands__init_0 = ($this, $scope, $asRevoke, $yieldOrWhere, $defaultColumnSet, $position) => { + $this.$scope8 = $scope; + $this.$asRevoke0 = $asRevoke; + $this.$yieldOrWhere1 = $yieldOrWhere; + $this.$defaultColumnSet1 = $defaultColumnSet; + $this.$position233 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); +}, +oncia_ShowPrivilegeCommands__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_ShowPrivilegeCommands(); + oncia_ShowPrivilegeCommands__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; }; -function oncie_Subtract() { - let a = this; oncie_Expression.call(a); - a.$lhs9 = null; - a.$rhs10 = null; - a.$position124 = null; - a.$signatures25 = null; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1() { + jl_Object.call(this); + this.$_01111 = null; } -let oncie_Subtract_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1__init_0 = (var$0, var$1) => { + var$0.$_01111 = var$1; }, -oncie_Subtract_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1__init_ = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1__init_0(var_1, var_0); + return var_1; }, -oncie_Subtract_lhs = $this => { - return $this.$lhs9; +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_01111, var$1); +}; +function oncia_ShowSupportedPrivilegeCommand() { + let a = this; jl_Object.call(a); + a.$yieldOrWhere4 = null; + a.$defaultColumnSet5 = null; + a.$position238 = null; + a.$isReadOnly18 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar4 = null; +} +let oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); }, -oncie_Subtract_rhs = $this => { - return $this.$rhs10; +oncia_ShowSupportedPrivilegeCommand_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); }, -oncie_Subtract_position = $this => { - return $this.$position124; +oncia_ShowSupportedPrivilegeCommand_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); }, -oncie_Subtract_signatures = $this => { - return $this.$signatures25; +oncia_ShowSupportedPrivilegeCommand_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); }, -oncie_Subtract_canonicalOperatorSymbol = $this => { - return $rt_s(3607); +oncia_ShowSupportedPrivilegeCommand_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); }, -oncie_Subtract_productPrefix = $this => { - return $rt_s(5484); +oncia_ShowSupportedPrivilegeCommand_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); }, -oncie_Subtract_productArity = $this => { +oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ShowSupportedPrivilegeCommand_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_ShowSupportedPrivilegeCommand_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowSupportedPrivilegeCommand_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowSupportedPrivilegeCommand_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowSupportedPrivilegeCommand_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); +}, +oncia_ShowSupportedPrivilegeCommand_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_ShowSupportedPrivilegeCommand_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowSupportedPrivilegeCommand_foldedOver = $this => { + return $this; +}, +oncia_ShowSupportedPrivilegeCommand_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly18 = $x$1; +}, +oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar4; +}, +oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar4 = $x$1; +}, +oncia_ShowSupportedPrivilegeCommand_yieldOrWhere = $this => { + return $this.$yieldOrWhere4; +}, +oncia_ShowSupportedPrivilegeCommand_defaultColumnSet = $this => { + return $this.$defaultColumnSet5; +}, +oncia_ShowSupportedPrivilegeCommand_position = $this => { + return $this.$position238; +}, +oncia_ShowSupportedPrivilegeCommand_name = $this => { + return $rt_s(526); +}, +oncia_ShowSupportedPrivilegeCommand_semanticCheck = $this => { + let var$1; + var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_ShowSupportedPrivilegeCommand_copy = ($this, $yieldOrWhere, $defaultColumnSet, $position) => { + return oncia_ShowSupportedPrivilegeCommand__init_($yieldOrWhere, $defaultColumnSet, $position); +}, +oncia_ShowSupportedPrivilegeCommand_copy$default$2 = $this => { + return $this.$defaultColumnSet5; +}, +oncia_ShowSupportedPrivilegeCommand_productPrefix = $this => { + return $rt_s(4067); +}, +oncia_ShowSupportedPrivilegeCommand_productArity = $this => { return 2; }, -oncie_Subtract_productElement = ($this, $x$1) => { +oncia_ShowSupportedPrivilegeCommand_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs9; + return $this.$yieldOrWhere4; case 1: - return $this.$rhs10; + return $this.$defaultColumnSet5; default: } return sr_Statics_ioobe($x$1); }, -oncie_Subtract_productIterator = $this => { +oncia_ShowSupportedPrivilegeCommand_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Subtract_hashCode = $this => { +oncia_ShowSupportedPrivilegeCommand_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Subtract_toString = $this => { +oncia_ShowSupportedPrivilegeCommand_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Subtract_equals = ($this, $x$1) => { +oncia_ShowSupportedPrivilegeCommand_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Subtract) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs9; - var$3 = $x$1.$lhs9; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowSupportedPrivilegeCommand) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$yieldOrWhere4; + var$3 = $x$1.$yieldOrWhere4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs10; - $x$1 = $x$1.$rhs10; + var$3 = $this.$defaultColumnSet5; + $x$1 = $x$1.$defaultColumnSet5; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!sci_List_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_Subtract)) - break b; } var$4 = 1; break a; @@ -203065,189 +92451,220 @@ oncie_Subtract_equals = ($this, $x$1) => { } return var$4; }, -oncie_Subtract__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs9 = $lhs; - $this.$rhs10 = $rhs; - $this.$position124 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 10); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - var$8 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_IntegerType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTInteger(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[1] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_FloatType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[2] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[3] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_DurationType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[4] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTLocalTime(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[5] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTLocalTime(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTTime(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[6] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTTime(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTDate(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[7] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDate(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTLocalDateTime(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[8] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTLocalDateTime(oncius_package$_MODULE$)); - var$7 = oncie_TypeSignature$_MODULE$; - var$8 = s_package$_Vector(s_package$_MODULE$); - $rhs = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTDateTime(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[9] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$9)), oncius_package$_CTDateTime(oncius_package$_MODULE$)); - $this.$signatures25 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ShowSupportedPrivilegeCommand_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncie_Subtract__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Subtract(); - oncie_Subtract__init_(var_3, var_0, var_1, var_2); +oncia_ShowSupportedPrivilegeCommand_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowSupportedPrivilegeCommand__init_0 = ($this, $yieldOrWhere, $defaultColumnSet, $position) => { + $this.$yieldOrWhere4 = $yieldOrWhere; + $this.$defaultColumnSet5 = $defaultColumnSet; + $this.$position238 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); +}, +oncia_ShowSupportedPrivilegeCommand__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_ShowSupportedPrivilegeCommand(); + oncia_ShowSupportedPrivilegeCommand__init_0(var_3, var_0, var_1, var_2); return var_3; }; -function oncie_Add() { - let a = this; oncie_Expression.call(a); - a.$lhs10 = null; - a.$rhs13 = null; - a.$position131 = null; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2() { + jl_Object.call(this); + this.$_0533 = null; } -let oncie_Add_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2__init_0 = (var$0, var$1) => { + var$0.$_0533 = var$1; }, -oncie_Add_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2__init_ = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2__init_0(var_1, var_0); + return var_1; }, -oncie_Add_lhs = $this => { - return $this.$lhs10; +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0533, var$1); +}; +function oncia_ShowDatabase() { + let a = this; jl_Object.call(a); + a.$scope9 = null; + a.$yieldOrWhere8 = null; + a.$defaultColumns0 = null; + a.$position226 = null; + a.$defaultColumnSet8 = null; + a.$isReadOnly10 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar18 = null; +} +let oncia_ShowDatabase_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); }, -oncie_Add_rhs = $this => { - return $this.$rhs13; +oncia_ShowDatabase_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); }, -oncie_Add_position = $this => { - return $this.$position131; +oncia_ShowDatabase_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); }, -oncie_Add_canonicalOperatorSymbol = $this => { - return $rt_s(600); +oncia_ShowDatabase_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); }, -oncie_Add_productPrefix = $this => { - return $rt_s(5485); +oncia_ShowDatabase_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); }, -oncie_Add_productArity = $this => { - return 2; +oncia_ShowDatabase_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); }, -oncie_Add_productElement = ($this, $x$1) => { +oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ShowDatabase_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_ShowDatabase_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowDatabase_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowDatabase_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowDatabase_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); +}, +oncia_ShowDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_ShowDatabase_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowDatabase_foldedOver = $this => { + return $this; +}, +oncia_ShowDatabase_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowDatabase_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly10 = $x$1; +}, +oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar18; +}, +oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar18 = $x$1; +}, +oncia_ShowDatabase_scope = $this => { + return $this.$scope9; +}, +oncia_ShowDatabase_yieldOrWhere = $this => { + return $this.$yieldOrWhere8; +}, +oncia_ShowDatabase_position = $this => { + return $this.$position226; +}, +oncia_ShowDatabase_defaultColumnSet = $this => { + return $this.$defaultColumnSet8; +}, +oncia_ShowDatabase_name = $this => { + let var$1; + var$1 = $this.$scope9; + if (var$1 instanceof oncia_SingleNamedDatabaseScope) + return $rt_s(4068); + if (var$1 instanceof oncia_AllDatabasesScope ? 1 : !(var$1 instanceof oncia_NamedDatabasesScope) ? 0 : 1) + return $rt_s(4069); + if (var$1 instanceof oncia_DefaultDatabaseScope) + return $rt_s(4070); + if (var$1 instanceof oncia_HomeDatabaseScope) + return $rt_s(4071); + $rt_throw(s_MatchError__init_(var$1)); +}, +oncia_ShowDatabase_semanticCheck = $this => { + let var$1; + var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_ShowDatabase_copy = ($this, $scope, $yieldOrWhere, $defaultColumns, $position) => { + return oncia_ShowDatabase__init_0($scope, $yieldOrWhere, $defaultColumns, $position); +}, +oncia_ShowDatabase_copy$default$1 = $this => { + return $this.$scope9; +}, +oncia_ShowDatabase_copy$default$3 = $this => { + return $this.$defaultColumns0; +}, +oncia_ShowDatabase_productPrefix = $this => { + return $rt_s(4072); +}, +oncia_ShowDatabase_productArity = $this => { + return 3; +}, +oncia_ShowDatabase_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs10; + return $this.$scope9; case 1: - return $this.$rhs13; + return $this.$yieldOrWhere8; + case 2: + return $this.$defaultColumns0; default: } return sr_Statics_ioobe($x$1); }, -oncie_Add_productIterator = $this => { +oncia_ShowDatabase_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Add_hashCode = $this => { +oncia_ShowDatabase_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Add_toString = $this => { +oncia_ShowDatabase_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Add_equals = ($this, $x$1) => { +oncia_ShowDatabase_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Add) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs10; - var$3 = $x$1.$lhs10; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowDatabase) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$scope9; + var$3 = $x$1.$scope9; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs13; - $x$1 = $x$1.$rhs13; + e: { + var$2 = $this.$yieldOrWhere8; + var$3 = $x$1.$yieldOrWhere8; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$defaultColumns0; + $x$1 = $x$1.$defaultColumns0; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!oncia_DefaultOrAllShowColumns_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_Add)) - break b; } var$4 = 1; break a; @@ -203256,104 +92673,218 @@ oncie_Add_equals = ($this, $x$1) => { } return var$4; }, -oncie_Add__init_ = ($this, $lhs, $rhs, $position) => { - $this.$lhs10 = $lhs; - $this.$rhs13 = $rhs; - $this.$position131 = $position; - oncie_Expression__init_($this); +oncia_ShowDatabase_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncie_Add__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Add(); - oncie_Add__init_(var_3, var_0, var_1, var_2); - return var_3; +oncia_ShowDatabase_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowDatabase__init_ = ($this, $scope, $yieldOrWhere, $defaultColumns, $position) => { + $this.$scope9 = $scope; + $this.$yieldOrWhere8 = $yieldOrWhere; + $this.$defaultColumns0 = $defaultColumns; + $this.$position226 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); + $this.$defaultColumnSet8 = $defaultColumns.$columns; +}, +oncia_ShowDatabase__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_ShowDatabase(); + oncia_ShowDatabase__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; }; -function oncie_Contains() { - let a = this; oncie_Expression.call(a); - a.$lhs18 = null; - a.$rhs25 = null; - a.$position304 = null; - a.$signatures14 = null; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3() { + jl_Object.call(this); + this.$_0591 = null; } -let oncie_Contains_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3__init_0 = (var$0, var$1) => { + var$0.$_0591 = var$1; }, -oncie_Contains_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3__init_ = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3__init_0(var_1, var_0); + return var_1; }, -oncie_Contains_canonicalOperatorSymbol = $this => { - return oncie_OperatorExpression_canonicalOperatorSymbol$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0591, var$1); +}; +function oncia_ShowAliases() { + let a = this; jl_Object.call(a); + a.$aliasName4 = null; + a.$yieldOrWhere5 = null; + a.$defaultColumns1 = null; + a.$position278 = null; + a.$defaultColumnSet6 = null; + a.$isReadOnly29 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar1 = null; +} +let oncia_ShowAliases_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); }, -oncie_Contains_lhs = $this => { - return $this.$lhs18; +oncia_ShowAliases_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); }, -oncie_Contains_rhs = $this => { - return $this.$rhs25; +oncia_ShowAliases_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); }, -oncie_Contains_position = $this => { - return $this.$position304; +oncia_ShowAliases_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); }, -oncie_Contains_signatures = $this => { - return $this.$signatures14; +oncia_ShowAliases_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); }, -oncie_Contains_productPrefix = $this => { - return $rt_s(5486); +oncia_ShowAliases_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); }, -oncie_Contains_productArity = $this => { - return 2; +oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncie_Contains_productElement = ($this, $x$1) => { +oncia_ShowAliases_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_ShowAliases_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowAliases_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowAliases_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowAliases_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); +}, +oncia_ShowAliases_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_ShowAliases_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowAliases_foldedOver = $this => { + return $this; +}, +oncia_ShowAliases_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowAliases_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly29 = $x$1; +}, +oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar1; +}, +oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar1 = $x$1; +}, +oncia_ShowAliases_aliasName = $this => { + return $this.$aliasName4; +}, +oncia_ShowAliases_yieldOrWhere = $this => { + return $this.$yieldOrWhere5; +}, +oncia_ShowAliases_position = $this => { + return $this.$position278; +}, +oncia_ShowAliases_defaultColumnSet = $this => { + return $this.$defaultColumnSet6; +}, +oncia_ShowAliases_name = $this => { + let var$1; + var$1 = $this.$aliasName4; + if (jl_Object_equals(s_None$_MODULE$, var$1)) + return $rt_s(4073); + if (var$1 instanceof s_Some) + return $rt_s(4074); + $rt_throw(s_MatchError__init_(var$1)); +}, +oncia_ShowAliases_semanticCheck = $this => { + let var$1; + var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_ShowAliases_copy = ($this, $aliasName, $yieldOrWhere, $defaultColumns, $position) => { + return oncia_ShowAliases__init_0($aliasName, $yieldOrWhere, $defaultColumns, $position); +}, +oncia_ShowAliases_copy$default$1 = $this => { + return $this.$aliasName4; +}, +oncia_ShowAliases_copy$default$3 = $this => { + return $this.$defaultColumns1; +}, +oncia_ShowAliases_productPrefix = $this => { + return $rt_s(4075); +}, +oncia_ShowAliases_productArity = $this => { + return 3; +}, +oncia_ShowAliases_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs18; + return $this.$aliasName4; case 1: - return $this.$rhs25; + return $this.$yieldOrWhere5; + case 2: + return $this.$defaultColumns1; default: } return sr_Statics_ioobe($x$1); }, -oncie_Contains_productIterator = $this => { +oncia_ShowAliases_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Contains_hashCode = $this => { +oncia_ShowAliases_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Contains_toString = $this => { +oncia_ShowAliases_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Contains_equals = ($this, $x$1) => { +oncia_ShowAliases_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Contains) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs18; - var$3 = $x$1.$lhs18; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowAliases) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$aliasName4; + var$3 = $x$1.$aliasName4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs25; - $x$1 = $x$1.$rhs25; + e: { + var$2 = $this.$yieldOrWhere5; + var$3 = $x$1.$yieldOrWhere5; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$defaultColumns1; + $x$1 = $x$1.$defaultColumns1; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!oncia_DefaultOrAllShowColumns_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_Contains)) - break b; } var$4 = 1; break a; @@ -203362,166 +92893,187 @@ oncie_Contains_equals = ($this, $x$1) => { } return var$4; }, -oncie_Contains__init_0 = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs18 = $lhs; - $this.$rhs25 = $rhs; - $this.$position304 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_AnyType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures14 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ShowAliases_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncie_Contains__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_Contains(); - oncie_Contains__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncia_ShowAliases_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncil_LabelExpression$Disjunctions$ = $rt_classWithoutFields(), -oncil_LabelExpression$Disjunctions$_MODULE$ = null, -oncil_LabelExpression$Disjunctions$_$callClinit = () => { - oncil_LabelExpression$Disjunctions$_$callClinit = $rt_eraseClinit(oncil_LabelExpression$Disjunctions$); - oncil_LabelExpression$Disjunctions$__clinit_(); +oncia_ShowAliases__init_ = ($this, $aliasName, $yieldOrWhere, $defaultColumns, $position) => { + $this.$aliasName4 = $aliasName; + $this.$yieldOrWhere5 = $yieldOrWhere; + $this.$defaultColumns1 = $defaultColumns; + $this.$position278 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); + $this.$defaultColumnSet6 = $defaultColumns.$columns; }, -oncil_LabelExpression$Disjunctions$__clinit_ = () => { - let var$1; - var$1 = new oncil_LabelExpression$Disjunctions$; - oncil_LabelExpression$Disjunctions$_$callClinit(); - oncil_LabelExpression$Disjunctions$_MODULE$ = var$1; +oncia_ShowAliases__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_ShowAliases(); + oncia_ShowAliases__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4() { + jl_Object.call(this); + this.$_0150 = null; +} +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4__init_ = (var$0, var$1) => { + var$0.$_0150 = var$1; }, -oncil_LabelExpression$Disjunctions$_flat = ($this, $lhs, $rhs, $position, $containsIs) => { - let var$5; - var$5 = new oncil_LabelExpression$Disjunctions; - s_package$_$callClinit(); - oncil_LabelExpression$Disjunctions__init_(var$5, (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncil_LabelExpression, [$lhs, $rhs]))), $containsIs, $position); - return oncil_LabelExpression$Disjunctions_unnestDisjunctions(var$5); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4__init_0 = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4__init_(var_1, var_0); + return var_1; }, -oncil_BinaryLabelExpression = $rt_classWithoutFields(0), -oncil_BinaryLabelExpression_flatten$ = $$this => { - return (($$this.$lhs1()).$flatten0()).$concat(($$this.$rhs1()).$flatten0()); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0150, var$1); }; -function oncil_LabelExpression$ColonDisjunction() { +function oncia_ShowCurrentUser() { let a = this; jl_Object.call(a); - a.$lhs3 = null; - a.$rhs3 = null; - a.$containsIs3 = 0; - a.$position40 = null; + a.$yieldOrWhere7 = null; + a.$defaultColumnSet4 = null; + a.$position281 = null; + a.$isReadOnly8 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar26 = null; } -let oncil_LabelExpression$ColonDisjunction_flatten = $this => { - return oncil_BinaryLabelExpression_flatten$($this); +let oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); }, -oncil_LabelExpression$ColonDisjunction_containsGpmSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +oncia_ShowCurrentUser_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); }, -oncil_LabelExpression$ColonDisjunction_containsGpmSpecificRelTypeExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +oncia_ShowCurrentUser_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); }, -oncil_LabelExpression$ColonDisjunction_containsMatchSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +oncia_ShowCurrentUser_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); }, -oncil_LabelExpression$ColonDisjunction_containsDynamicLabelOrTypeExpression = $this => { - return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +oncia_ShowCurrentUser_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); }, -oncil_LabelExpression$ColonDisjunction_replaceColonSyntax = $this => { - return oncil_LabelExpression_replaceColonSyntax$($this); +oncia_ShowCurrentUser_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); }, -oncil_LabelExpression$ColonDisjunction_foldedOver = $this => { +oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ShowCurrentUser_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_ShowCurrentUser_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); return $this; }, -oncil_LabelExpression$ColonDisjunction_folder0 = $this => { +oncia_ShowCurrentUser_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowCurrentUser_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowCurrentUser_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); +}, +oncia_ShowCurrentUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_ShowCurrentUser_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowCurrentUser_foldedOver = $this => { + return $this; +}, +oncia_ShowCurrentUser_folder = $this => { return onciu_Foldable_folder$($this); }, -oncil_LabelExpression$ColonDisjunction_folder = ($this, $cancellation) => { - return onciu_Foldable_folder$0($this, $cancellation); +oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly8 = $x$1; +}, +oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar26; +}, +oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar26 = $x$1; +}, +oncia_ShowCurrentUser_yieldOrWhere = $this => { + return $this.$yieldOrWhere7; +}, +oncia_ShowCurrentUser_defaultColumnSet = $this => { + return $this.$defaultColumnSet4; +}, +oncia_ShowCurrentUser_position = $this => { + return $this.$position281; }, -oncil_LabelExpression$ColonDisjunction_lhs = $this => { - return $this.$lhs3; +oncia_ShowCurrentUser_name = $this => { + return $rt_s(4076); }, -oncil_LabelExpression$ColonDisjunction_rhs = $this => { - return $this.$rhs3; +oncia_ShowCurrentUser_semanticCheck = $this => { + return oncia_ReadAdministrationCommand_semanticCheck$($this); }, -oncil_LabelExpression$ColonDisjunction_containsIs = $this => { - return $this.$containsIs3; +oncia_ShowCurrentUser_copy = ($this, $yieldOrWhere, $defaultColumnSet, $position) => { + return oncia_ShowCurrentUser__init_0($yieldOrWhere, $defaultColumnSet, $position); }, -oncil_LabelExpression$ColonDisjunction_position = $this => { - return $this.$position40; +oncia_ShowCurrentUser_copy$default$2 = $this => { + return $this.$defaultColumnSet4; }, -oncil_LabelExpression$ColonDisjunction_productPrefix = $this => { - return $rt_s(5487); +oncia_ShowCurrentUser_productPrefix = $this => { + return $rt_s(4077); }, -oncil_LabelExpression$ColonDisjunction_productArity = $this => { - return 3; +oncia_ShowCurrentUser_productArity = $this => { + return 2; }, -oncil_LabelExpression$ColonDisjunction_productElement = ($this, $x$1) => { +oncia_ShowCurrentUser_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs3; + return $this.$yieldOrWhere7; case 1: - return $this.$rhs3; - case 2: - return jl_Boolean_valueOf($this.$containsIs3); + return $this.$defaultColumnSet4; default: } return sr_Statics_ioobe($x$1); }, -oncil_LabelExpression$ColonDisjunction_productIterator = $this => { +oncia_ShowCurrentUser_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$ColonDisjunction_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5487))), sr_Statics_anyHash($this.$lhs3)), sr_Statics_anyHash($this.$rhs3)), !$this.$containsIs3 ? 1237 : 1231), 3); +oncia_ShowCurrentUser_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$ColonDisjunction_toString = $this => { +oncia_ShowCurrentUser_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$ColonDisjunction_equals = ($this, $x$1) => { +oncia_ShowCurrentUser_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_LabelExpression$ColonDisjunction) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs3 != $x$1.$containsIs3) - break b; - c: { - var$2 = $this.$lhs3; - var$3 = $x$1.$lhs3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowCurrentUser) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$yieldOrWhere7; + var$3 = $x$1.$yieldOrWhere7; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs3; - $x$1 = $x$1.$rhs3; + var$3 = $this.$defaultColumnSet4; + $x$1 = $x$1.$defaultColumnSet4; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!sci_List_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncil_LabelExpression$ColonDisjunction)) - break b; } var$4 = 1; break a; @@ -203530,270 +93082,199 @@ oncil_LabelExpression$ColonDisjunction_equals = ($this, $x$1) => { } return var$4; }, -oncil_LabelExpression$ColonDisjunction_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncia_ShowCurrentUser_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncil_LabelExpression$ColonDisjunction__init_ = ($this, $lhs, $rhs, $containsIs, $position) => { - $this.$lhs3 = $lhs; - $this.$rhs3 = $rhs; - $this.$containsIs3 = $containsIs; - $this.$position40 = $position; +oncia_ShowCurrentUser_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncil_LabelExpression$ColonDisjunction__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncil_LabelExpression$ColonDisjunction(); - oncil_LabelExpression$ColonDisjunction__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; +oncia_ShowCurrentUser__init_ = ($this, $yieldOrWhere, $defaultColumnSet, $position) => { + $this.$yieldOrWhere7 = $yieldOrWhere; + $this.$defaultColumnSet4 = $defaultColumnSet; + $this.$position281 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); +}, +oncia_ShowCurrentUser__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_ShowCurrentUser(); + oncia_ShowCurrentUser__init_(var_3, var_0, var_1, var_2); + return var_3; }; -function oncie_Divide() { - let a = this; oncie_Expression.call(a); - a.$lhs19 = null; - a.$rhs19 = null; - a.$position216 = null; - a.$signatures29 = null; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5() { + jl_Object.call(this); + this.$_0769 = null; } -let oncie_Divide_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5__init_0 = (var$0, var$1) => { + var$0.$_0769 = var$1; }, -oncie_Divide_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5__init_ = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5__init_0(var_1, var_0); + return var_1; }, -oncie_Divide_lhs = $this => { - return $this.$lhs19; +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0769, var$1); +}; +function oncia_ShowUsers() { + let a = this; jl_Object.call(a); + a.$yieldOrWhere2 = null; + a.$withAuth0 = 0; + a.$defaultColumnSet0 = null; + a.$position285 = null; + a.$isReadOnly13 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar31 = null; +} +let oncia_ShowUsers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); }, -oncie_Divide_rhs = $this => { - return $this.$rhs19; +oncia_ShowUsers_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); }, -oncie_Divide_position = $this => { - return $this.$position216; +oncia_ShowUsers_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); }, -oncie_Divide_signatures = $this => { - return $this.$signatures29; +oncia_ShowUsers_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); }, -oncie_Divide_canonicalOperatorSymbol = $this => { - return $rt_s(89); +oncia_ShowUsers_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); }, -oncie_Divide_productPrefix = $this => { - return $rt_s(5488); +oncia_ShowUsers_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); }, -oncie_Divide_productArity = $this => { - return 2; +oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncie_Divide_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs19; - case 1: - return $this.$rhs19; - default: - } - return sr_Statics_ioobe($x$1); +oncia_ShowUsers_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncie_Divide_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowUsers_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncie_Divide_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowUsers_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -oncie_Divide_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowUsers_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oncie_Divide_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Divide) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs19; - var$3 = $x$1.$lhs19; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs19; - $x$1 = $x$1.$rhs19; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Divide)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncia_ShowUsers_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); }, -oncie_Divide__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs19 = $lhs; - $this.$rhs19 = $rhs; - $this.$position216 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 6); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - var$8 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_IntegerType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTInteger(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[1] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_FloatType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[2] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[3] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - var$7 = s_package$_Vector(s_package$_MODULE$); - $rhs = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[4] = oncie_TypeSignature$_apply($position, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); - $rhs = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[5] = oncie_TypeSignature$_apply($rhs, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); - $this.$signatures29 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ShowUsers_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncie_Divide__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Divide(); - oncie_Divide__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_Modulo() { - let a = this; oncie_Expression.call(a); - a.$lhs29 = null; - a.$rhs24 = null; - a.$position283 = null; - a.$signatures23 = null; -} -let oncie_Modulo_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +oncia_ShowUsers_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncie_Modulo_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncia_ShowUsers_foldedOver = $this => { + return $this; }, -oncie_Modulo_lhs = $this => { - return $this.$lhs29; +oncia_ShowUsers_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncie_Modulo_rhs = $this => { - return $this.$rhs24; +oncia_ShowUsers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly13 = $x$1; }, -oncie_Modulo_position = $this => { - return $this.$position283; +oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar31; }, -oncie_Modulo_signatures = $this => { - return $this.$signatures23; +oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar31 = $x$1; }, -oncie_Modulo_canonicalOperatorSymbol = $this => { - return $rt_s(489); +oncia_ShowUsers_yieldOrWhere = $this => { + return $this.$yieldOrWhere2; }, -oncie_Modulo_productPrefix = $this => { - return $rt_s(5489); +oncia_ShowUsers_withAuth = $this => { + return $this.$withAuth0; }, -oncie_Modulo_productArity = $this => { - return 2; +oncia_ShowUsers_defaultColumnSet = $this => { + return $this.$defaultColumnSet0; }, -oncie_Modulo_productElement = ($this, $x$1) => { +oncia_ShowUsers_position = $this => { + return $this.$position285; +}, +oncia_ShowUsers_name = $this => { + return $rt_s(4078); +}, +oncia_ShowUsers_semanticCheck = $this => { + let var$1; + var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_ShowUsers_copy = ($this, $yieldOrWhere, $withAuth, $defaultColumnSet, $position) => { + return oncia_ShowUsers__init_($yieldOrWhere, $withAuth, $defaultColumnSet, $position); +}, +oncia_ShowUsers_copy$default$2 = $this => { + return $this.$withAuth0; +}, +oncia_ShowUsers_copy$default$3 = $this => { + return $this.$defaultColumnSet0; +}, +oncia_ShowUsers_productPrefix = $this => { + return $rt_s(4079); +}, +oncia_ShowUsers_productArity = $this => { + return 3; +}, +oncia_ShowUsers_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs29; + return $this.$yieldOrWhere2; case 1: - return $this.$rhs24; + return jl_Boolean_valueOf($this.$withAuth0); + case 2: + return $this.$defaultColumnSet0; default: } return sr_Statics_ioobe($x$1); }, -oncie_Modulo_productIterator = $this => { +oncia_ShowUsers_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Modulo_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowUsers_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4079))), sr_Statics_anyHash($this.$yieldOrWhere2)), !$this.$withAuth0 ? 1237 : 1231), sr_Statics_anyHash($this.$defaultColumnSet0)), 3); }, -oncie_Modulo_toString = $this => { +oncia_ShowUsers_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Modulo_equals = ($this, $x$1) => { +oncia_ShowUsers_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Modulo) ? 0 : 1)) - break b; - c: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowUsers) ? 0 : 1)) + break b; $x$1 = $x$1; - var$2 = $this.$lhs29; - var$3 = $x$1.$lhs29; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + if ($this.$withAuth0 != $x$1.$withAuth0) + break b; + d: { + var$2 = $this.$yieldOrWhere2; + var$3 = $x$1.$yieldOrWhere2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs24; - $x$1 = $x$1.$rhs24; + var$3 = $this.$defaultColumnSet0; + $x$1 = $x$1.$defaultColumnSet0; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!sci_List_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_Modulo)) - break b; } var$4 = 1; break a; @@ -203802,346 +93283,210 @@ oncie_Modulo_equals = ($this, $x$1) => { } return var$4; }, -oncie_Modulo__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs29 = $lhs; - $this.$rhs24 = $rhs; - $this.$position283 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 4); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - var$8 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_IntegerType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTInteger(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[1] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[2] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $rhs = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_FloatType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[3] = oncie_TypeSignature$_apply($rhs, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $this.$signatures23 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ShowUsers_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncie_Modulo__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Modulo(); - oncie_Modulo__init_(var_3, var_0, var_1, var_2); - return var_3; +oncia_ShowUsers_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowUsers__init_0 = ($this, $yieldOrWhere, $withAuth, $defaultColumnSet, $position) => { + $this.$yieldOrWhere2 = $yieldOrWhere; + $this.$withAuth0 = $withAuth; + $this.$defaultColumnSet0 = $defaultColumnSet; + $this.$position285 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); +}, +oncia_ShowUsers__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_ShowUsers(); + oncia_ShowUsers__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; }; -function oncie_Multiply() { - let a = this; oncie_Expression.call(a); - a.$lhs11 = null; - a.$rhs11 = null; - a.$position174 = null; - a.$signatures28 = null; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6() { + jl_Object.call(this); + this.$_0183 = null; } -let oncie_Multiply_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6__init_ = (var$0, var$1) => { + var$0.$_0183 = var$1; }, -oncie_Multiply_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6__init_0 = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6__init_(var_1, var_0); + return var_1; }, -oncie_Multiply_lhs = $this => { - return $this.$lhs11; +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0183, var$1); +}; +function oncia_ShowRoles() { + let a = this; jl_Object.call(a); + a.$withUsers0 = 0; + a.$showAll = 0; + a.$yieldOrWhere0 = null; + a.$defaultColumnSet2 = null; + a.$position290 = null; + a.$isReadOnly17 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar29 = null; +} +let oncia_ShowRoles_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); }, -oncie_Multiply_rhs = $this => { - return $this.$rhs11; +oncia_ShowRoles_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); }, -oncie_Multiply_position = $this => { - return $this.$position174; +oncia_ShowRoles_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); }, -oncie_Multiply_signatures = $this => { - return $this.$signatures28; +oncia_ShowRoles_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); }, -oncie_Multiply_canonicalOperatorSymbol = $this => { - return $rt_s(172); +oncia_ShowRoles_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); }, -oncie_Multiply_productPrefix = $this => { - return $rt_s(5490); +oncia_ShowRoles_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); }, -oncie_Multiply_productArity = $this => { - return 2; +oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncie_Multiply_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lhs11; - case 1: - return $this.$rhs11; - default: - } - return sr_Statics_ioobe($x$1); +oncia_ShowRoles_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncie_Multiply_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowRoles_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncie_Multiply_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowRoles_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -oncie_Multiply_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowRoles_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oncie_Multiply_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Multiply) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs11; - var$3 = $x$1.$lhs11; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs11; - $x$1 = $x$1.$rhs11; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_Multiply)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncia_ShowRoles_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); }, -oncie_Multiply__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs11 = $lhs; - $this.$rhs11 = $rhs; - $this.$position174 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 8); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - var$8 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_IntegerType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTInteger(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$10 = $rt_createArray(oncius_CypherType, 2); - var$9 = var$10.data; - var$9[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$9[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[1] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$10)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_FloatType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[2] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[3] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[4] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[5] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[6] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); - var$8 = oncie_TypeSignature$_MODULE$; - $rhs = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[7] = oncie_TypeSignature$_apply(var$8, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); - $this.$signatures28 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ShowRoles_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncie_Multiply__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Multiply(); - oncie_Multiply__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncil_LabelExpression$ColonConjunction() { - let a = this; jl_Object.call(a); - a.$lhs2 = null; - a.$rhs2 = null; - a.$containsIs4 = 0; - a.$position98 = null; -} -let oncil_LabelExpression$ColonConjunction_flatten = $this => { - return oncil_BinaryLabelExpression_flatten$($this); +oncia_ShowRoles_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncil_LabelExpression$ColonConjunction_containsGpmSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +oncia_ShowRoles_foldedOver = $this => { + return $this; }, -oncil_LabelExpression$ColonConjunction_containsGpmSpecificRelTypeExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +oncia_ShowRoles_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncil_LabelExpression$ColonConjunction_containsMatchSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +oncia_ShowRoles_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly17 = $x$1; }, -oncil_LabelExpression$ColonConjunction_containsDynamicLabelOrTypeExpression = $this => { - return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar29; }, -oncil_LabelExpression$ColonConjunction_replaceColonSyntax = $this => { - return oncil_LabelExpression_replaceColonSyntax$($this); +oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar29 = $x$1; }, -oncil_LabelExpression$ColonConjunction_foldedOver = $this => { - return $this; +oncia_ShowRoles_withUsers = $this => { + return $this.$withUsers0; }, -oncil_LabelExpression$ColonConjunction_folder = $this => { - return onciu_Foldable_folder$($this); +oncia_ShowRoles_yieldOrWhere = $this => { + return $this.$yieldOrWhere0; }, -oncil_LabelExpression$ColonConjunction_folder0 = ($this, $cancellation) => { - return onciu_Foldable_folder$0($this, $cancellation); +oncia_ShowRoles_defaultColumnSet = $this => { + return $this.$defaultColumnSet2; }, -oncil_LabelExpression$ColonConjunction_lhs = $this => { - return $this.$lhs2; +oncia_ShowRoles_position = $this => { + return $this.$position290; }, -oncil_LabelExpression$ColonConjunction_rhs = $this => { - return $this.$rhs2; +oncia_ShowRoles_name = $this => { + if (!$this.$showAll) + return $rt_s(4080); + return $rt_s(4081); }, -oncil_LabelExpression$ColonConjunction_containsIs = $this => { - return $this.$containsIs4; +oncia_ShowRoles_semanticCheck = $this => { + let var$1; + var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncil_LabelExpression$ColonConjunction_position = $this => { - return $this.$position98; +oncia_ShowRoles_copy = ($this, $withUsers, $showAll, $yieldOrWhere, $defaultColumnSet, $position) => { + return oncia_ShowRoles__init_($withUsers, $showAll, $yieldOrWhere, $defaultColumnSet, $position); }, -oncil_LabelExpression$ColonConjunction_productPrefix = $this => { - return $rt_s(5491); +oncia_ShowRoles_copy$default$1 = $this => { + return $this.$withUsers0; }, -oncil_LabelExpression$ColonConjunction_productArity = $this => { - return 3; +oncia_ShowRoles_copy$default$2 = $this => { + return $this.$showAll; }, -oncil_LabelExpression$ColonConjunction_productElement = ($this, $x$1) => { +oncia_ShowRoles_copy$default$4 = $this => { + return $this.$defaultColumnSet2; +}, +oncia_ShowRoles_productPrefix = $this => { + return $rt_s(4082); +}, +oncia_ShowRoles_productArity = $this => { + return 4; +}, +oncia_ShowRoles_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs2; + return jl_Boolean_valueOf($this.$withUsers0); case 1: - return $this.$rhs2; + return jl_Boolean_valueOf($this.$showAll); case 2: - return jl_Boolean_valueOf($this.$containsIs4); + return $this.$yieldOrWhere0; + case 3: + return $this.$defaultColumnSet2; default: } return sr_Statics_ioobe($x$1); }, -oncil_LabelExpression$ColonConjunction_productIterator = $this => { +oncia_ShowRoles_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$ColonConjunction_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5491))), sr_Statics_anyHash($this.$lhs2)), sr_Statics_anyHash($this.$rhs2)), !$this.$containsIs4 ? 1237 : 1231), 3); +oncia_ShowRoles_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4082))), !$this.$withUsers0 ? 1237 : 1231), !$this.$showAll ? 1237 : 1231), sr_Statics_anyHash($this.$yieldOrWhere0)), sr_Statics_anyHash($this.$defaultColumnSet2)), 4); }, -oncil_LabelExpression$ColonConjunction_toString = $this => { +oncia_ShowRoles_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$ColonConjunction_equals = ($this, $x$1) => { +oncia_ShowRoles_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_LabelExpression$ColonConjunction) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs4 != $x$1.$containsIs4) - break b; - c: { - var$2 = $this.$lhs2; - var$3 = $x$1.$lhs2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowRoles) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$withUsers0 != $x$1.$withUsers0) + break b; + if ($this.$showAll != $x$1.$showAll) + break b; + d: { + var$2 = $this.$yieldOrWhere0; + var$3 = $x$1.$yieldOrWhere0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs2; - $x$1 = $x$1.$rhs2; + var$3 = $this.$defaultColumnSet2; + $x$1 = $x$1.$defaultColumnSet2; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!sci_List_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncil_LabelExpression$ColonConjunction)) - break b; } var$4 = 1; break a; @@ -204150,107 +93495,191 @@ oncil_LabelExpression$ColonConjunction_equals = ($this, $x$1) => { } return var$4; }, -oncil_LabelExpression$ColonConjunction_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncia_ShowRoles_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncil_LabelExpression$ColonConjunction__init_ = ($this, $lhs, $rhs, $containsIs, $position) => { - $this.$lhs2 = $lhs; - $this.$rhs2 = $rhs; - $this.$containsIs4 = $containsIs; - $this.$position98 = $position; +oncia_ShowRoles_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncil_LabelExpression$ColonConjunction__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncil_LabelExpression$ColonConjunction(); - oncil_LabelExpression$ColonConjunction__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; +oncia_ShowRoles__init_0 = ($this, $withUsers, $showAll, $yieldOrWhere, $defaultColumnSet, $position) => { + $this.$withUsers0 = $withUsers; + $this.$showAll = $showAll; + $this.$yieldOrWhere0 = $yieldOrWhere; + $this.$defaultColumnSet2 = $defaultColumnSet; + $this.$position290 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); +}, +oncia_ShowRoles__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_ShowRoles(); + oncia_ShowRoles__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; }; -function oncie_Pow() { - let a = this; oncie_Expression.call(a); - a.$lhs12 = null; - a.$rhs22 = null; - a.$position258 = null; - a.$signatures26 = null; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7() { + jl_Object.call(this); + this.$_0855 = null; } -let oncie_Pow_asCanonicalStringVal = $this => { - return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7__init_0 = (var$0, var$1) => { + var$0.$_0855 = var$1; }, -oncie_Pow_isConstantForQuery = $this => { - return oncie_BinaryOperatorExpression_isConstantForQuery$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7__init_ = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7__init_0(var_1, var_0); + return var_1; }, -oncie_Pow_lhs = $this => { - return $this.$lhs12; +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0855, var$1); +}; +function oncia_ShowServers() { + let a = this; jl_Object.call(a); + a.$yieldOrWhere3 = null; + a.$defaultColumns = null; + a.$position230 = null; + a.$defaultColumnSet7 = null; + a.$isReadOnly16 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar10 = null; +} +let oncia_ShowServers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck = $this => { + return oncia_AdministrationCommand_semanticCheck$($this); }, -oncie_Pow_rhs = $this => { - return $this.$rhs22; +oncia_ShowServers_returnColumnNames = $this => { + return oncia_ReadAdministrationCommand_returnColumnNames$($this); }, -oncie_Pow_position = $this => { - return $this.$position258; +oncia_ShowServers_defaultColumnNames = $this => { + return oncia_ReadAdministrationCommand_defaultColumnNames$($this); }, -oncie_Pow_signatures = $this => { - return $this.$signatures26; +oncia_ShowServers_yields = $this => { + return oncia_ReadAdministrationCommand_yields$($this); }, -oncie_Pow_canonicalOperatorSymbol = $this => { - return $rt_s(401); +oncia_ShowServers_returns = $this => { + return oncia_ReadAdministrationCommand_returns$($this); }, -oncie_Pow_productPrefix = $this => { - return $rt_s(5492); +oncia_ShowServers_returnColumns = $this => { + return oncia_ReadAdministrationCommand_returnColumns$($this); }, -oncie_Pow_productArity = $this => { +oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ShowServers_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_ShowServers_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowServers_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowServers_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowServers_recordCurrentScope = ($this, $astNode) => { + return oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $astNode); +}, +oncia_ShowServers_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_ShowServers_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowServers_foldedOver = $this => { + return $this; +}, +oncia_ShowServers_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowServers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly16 = $x$1; +}, +oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar10; +}, +oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar10 = $x$1; +}, +oncia_ShowServers_yieldOrWhere = $this => { + return $this.$yieldOrWhere3; +}, +oncia_ShowServers_position = $this => { + return $this.$position230; +}, +oncia_ShowServers_defaultColumnSet = $this => { + return $this.$defaultColumnSet7; +}, +oncia_ShowServers_name = $this => { + return $rt_s(4083); +}, +oncia_ShowServers_semanticCheck = $this => { + let var$1; + var$1 = oncia_ReadAdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_ShowServers_copy = ($this, $yieldOrWhere, $defaultColumns, $position) => { + return oncia_ShowServers__init_($yieldOrWhere, $defaultColumns, $position); +}, +oncia_ShowServers_copy$default$2 = $this => { + return $this.$defaultColumns; +}, +oncia_ShowServers_productPrefix = $this => { + return $rt_s(4084); +}, +oncia_ShowServers_productArity = $this => { return 2; }, -oncie_Pow_productElement = ($this, $x$1) => { +oncia_ShowServers_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$lhs12; + return $this.$yieldOrWhere3; case 1: - return $this.$rhs22; + return $this.$defaultColumns; default: } return sr_Statics_ioobe($x$1); }, -oncie_Pow_productIterator = $this => { +oncia_ShowServers_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Pow_hashCode = $this => { +oncia_ShowServers_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Pow_toString = $this => { +oncia_ShowServers_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Pow_equals = ($this, $x$1) => { +oncia_ShowServers_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Pow) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lhs12; - var$3 = $x$1.$lhs12; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowServers) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$yieldOrWhere3; + var$3 = $x$1.$yieldOrWhere3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$rhs22; - $x$1 = $x$1.$rhs22; + var$3 = $this.$defaultColumns; + $x$1 = $x$1.$defaultColumns; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!oncia_DefaultOrAllShowColumns_equals(var$3, $x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_Pow)) - break b; } var$4 = 1; break a; @@ -204259,118 +93688,127 @@ oncie_Pow_equals = ($this, $x$1) => { } return var$4; }, -oncie_Pow__init_ = ($this, $lhs, $rhs, $position) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$lhs12 = $lhs; - $this.$rhs22 = $rhs; - $this.$position258 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - $lhs = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - var$6 = var$5.data; - oncie_TypeSignature$_$callClinit(); - var$7 = oncie_TypeSignature$_MODULE$; - $position = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_FloatType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $this.$signatures26 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +oncia_ShowServers_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncie_Pow__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_Pow(); - oncie_Pow__init_(var_3, var_0, var_1, var_2); +oncia_ShowServers_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ShowServers__init_0 = ($this, $yieldOrWhere, $defaultColumns, $position) => { + $this.$yieldOrWhere3 = $yieldOrWhere; + $this.$defaultColumns = $defaultColumns; + $this.$position230 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_ReadAdministrationCommand_$init$($this); + $this.$defaultColumnSet7 = $defaultColumns.$columns; +}, +oncia_ShowServers__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_ShowServers(); + oncia_ShowServers__init_0(var_3, var_0, var_1, var_2); return var_3; }; -function oncil_LabelExpression$Negation() { - let a = this; jl_Object.call(a); - a.$e = null; - a.$containsIs6 = 0; - a.$position206 = null; +function oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8() { + jl_Object.call(this); + this.$_0896 = null; } -let oncil_LabelExpression$Negation_containsGpmSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); -}, -oncil_LabelExpression$Negation_containsGpmSpecificRelTypeExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +let oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8__init_0 = (var$0, var$1) => { + var$0.$_0896 = var$1; }, -oncil_LabelExpression$Negation_containsMatchSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8__init_ = var_0 => { + let var_1 = new oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8(); + oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8__init_0(var_1, var_0); + return var_1; }, -oncil_LabelExpression$Negation_containsDynamicLabelOrTypeExpression = $this => { - return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8_apply = (var$0, var$1) => { + var$1 = var$1; + return oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$0.$_0896, var$1); }, -oncil_LabelExpression$Negation_replaceColonSyntax = $this => { - return oncil_LabelExpression_replaceColonSyntax$($this); +oncie_PatternPart = $rt_classWithoutFields(), +oncie_PatternPart_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncil_LabelExpression$Negation_foldedOver = $this => { +oncie_PatternPart_foldedOver = $this => { return $this; }, -oncil_LabelExpression$Negation_folder0 = $this => { +oncie_PatternPart_folder = $this => { return onciu_Foldable_folder$($this); }, -oncil_LabelExpression$Negation_folder = ($this, $cancellation) => { - return onciu_Foldable_folder$0($this, $cancellation); +oncie_PatternPart_dup0 = ($this, $children) => { + return $this.$dup0($children); }, -oncil_LabelExpression$Negation_containsIs = $this => { - return $this.$containsIs6; +oncie_PatternPart__init_ = $this => { + return; }, -oncil_LabelExpression$Negation_position = $this => { - return $this.$position206; +oncie_HasMappableExpressions = $rt_classWithoutFields(0), +oncie_NonPrefixedPatternPart = $rt_classWithoutFields(0), +oncie_AnonymousPatternPart = $rt_classWithoutFields(0), +oncie_AnonymousPatternPart_allVariables$ = $$this => { + return ($$this.$element()).$allVariables(); +}; +function oncie_ShortestPathsPatternPart() { + let a = this; oncie_PatternPart.call(a); + a.$element2 = null; + a.$single0 = 0; + a.$position10 = null; + a.$name14 = null; +} +let oncie_ShortestPathsPatternPart_allVariables = $this => { + return oncie_AnonymousPatternPart_allVariables$($this); }, -oncil_LabelExpression$Negation_flatten = $this => { - let var$1; - while (true) { - var$1 = $this.$e; - if (!(var$1 instanceof oncil_LabelExpression$Negation)) - break; - $this = var$1; - } - return var$1.$flatten0(); +oncie_ShortestPathsPatternPart_element = $this => { + return $this.$element2; }, -oncil_LabelExpression$Negation_productPrefix = $this => { - return $rt_s(5493); +oncie_ShortestPathsPatternPart_single = $this => { + return $this.$single0; }, -oncil_LabelExpression$Negation_productArity = $this => { +oncie_ShortestPathsPatternPart_position = $this => { + return $this.$position10; +}, +oncie_ShortestPathsPatternPart_isBounded = $this => { + return 1; +}, +oncie_ShortestPathsPatternPart_copy = ($this, $element, $single, $position) => { + return oncie_ShortestPathsPatternPart__init_($element, $single, $position); +}, +oncie_ShortestPathsPatternPart_productPrefix = $this => { + return $rt_s(4085); +}, +oncie_ShortestPathsPatternPart_productArity = $this => { return 2; }, -oncil_LabelExpression$Negation_productElement = ($this, $x$1) => { +oncie_ShortestPathsPatternPart_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$e; + return $this.$element2; case 1: - return jl_Boolean_valueOf($this.$containsIs6); + return jl_Boolean_valueOf($this.$single0); default: } return sr_Statics_ioobe($x$1); }, -oncil_LabelExpression$Negation_productIterator = $this => { +oncie_ShortestPathsPatternPart_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$Negation_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5493))), sr_Statics_anyHash($this.$e)), !$this.$containsIs6 ? 1237 : 1231), 2); +oncie_ShortestPathsPatternPart_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4085))), sr_Statics_anyHash($this.$element2)), !$this.$single0 ? 1237 : 1231), 2); }, -oncil_LabelExpression$Negation_toString = $this => { +oncie_ShortestPathsPatternPart_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$Negation_equals = ($this, $x$1) => { +oncie_ShortestPathsPatternPart_equals = ($this, $x$1) => { let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_LabelExpression$Negation) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_ShortestPathsPatternPart) ? 0 : 1)) break b; $x$1 = $x$1; - if ($this.$containsIs6 != $x$1.$containsIs6) + if ($this.$single0 != $x$1.$single0) break b; c: { - var$2 = $this.$e; - $x$1 = $x$1.$e; + var$2 = $this.$element2; + $x$1 = $x$1.$element2; if (var$2 !== null) { if (!var$2.$equals($x$1)) break b; @@ -204380,7 +93818,7 @@ oncil_LabelExpression$Negation_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof oncil_LabelExpression$Negation)) + if (!($this instanceof oncie_ShortestPathsPatternPart)) break b; } var$3 = 1; @@ -204390,411 +93828,490 @@ oncil_LabelExpression$Negation_equals = ($this, $x$1) => { } return var$3; }, -oncil_LabelExpression$Negation_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncie_ShortestPathsPatternPart_mapExpressions = ($this, $f) => { + return oncie_ShortestPathsPatternPart_copy($this, $this.$element2.$mapExpressions($f), $this.$single0, $this.$position10); }, -oncil_LabelExpression$Negation__init_ = ($this, $e, $containsIs, $position) => { - $this.$e = $e; - $this.$containsIs6 = $containsIs; - $this.$position206 = $position; +oncie_ShortestPathsPatternPart__init_0 = ($this, $element, $single, $position) => { + $this.$element2 = $element; + $this.$single0 = $single; + $this.$position10 = $position; + oncie_PatternPart__init_($this); + $this.$name14 = !$single ? $rt_s(4086) : $rt_s(4087); }, -oncil_LabelExpression$Negation__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncil_LabelExpression$Negation(); - oncil_LabelExpression$Negation__init_(var_3, var_0, var_1, var_2); +oncie_ShortestPathsPatternPart__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_ShortestPathsPatternPart(); + oncie_ShortestPathsPatternPart__init_0(var_3, var_0, var_1, var_2); return var_3; -}; -function oncie_UnarySubtract() { - let a = this; oncie_Expression.call(a); - a.$rhs12 = null; - a.$position134 = null; - a.$signatures1 = null; +}, +oncie_PatternElement = $rt_classWithoutFields(), +oncie_PatternElement_dup0 = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_PatternElement_foldedOver = $this => { + return $this; +}, +oncie_PatternElement_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncie_PatternElement_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_PatternElement__init_ = $this => { + return; +}, +oncie_PathFactor = $rt_classWithoutFields(0), +oncie_SimplePattern = $rt_classWithoutFields(oncie_PatternElement); +function oncie_RelationshipChain() { + let a = this; oncie_SimplePattern.call(a); + a.$element3 = null; + a.$relationship1 = null; + a.$rightNode0 = null; + a.$position111 = null; } -let oncie_UnarySubtract_asCanonicalStringVal = $this => { - return oncie_LeftUnaryOperatorExpression_asCanonicalStringVal$($this); +let oncie_RelationshipChain_element = $this => { + return $this.$element3; }, -oncie_UnarySubtract_isConstantForQuery = $this => { - return oncie_LeftUnaryOperatorExpression_isConstantForQuery$($this); +oncie_RelationshipChain_relationship = $this => { + return $this.$relationship1; }, -oncie_UnarySubtract_rhs = $this => { - return $this.$rhs12; +oncie_RelationshipChain_rightNode = $this => { + return $this.$rightNode0; }, -oncie_UnarySubtract_position = $this => { - return $this.$position134; +oncie_RelationshipChain_position = $this => { + return $this.$position111; }, -oncie_UnarySubtract_signatures = $this => { - return $this.$signatures1; +oncie_RelationshipChain_allVariables = $this => { + return (($this.$element3.$allVariables()).$concat1($this.$relationship1.$variable5)).$concat1($this.$rightNode0.$variable6); }, -oncie_UnarySubtract_canonicalOperatorSymbol = $this => { - return $rt_s(3607); +oncie_RelationshipChain_isBounded = $this => { + let var$1, var$2, var$3; + a: { + var$1 = $this.$relationship1.$length3; + if (var$1 instanceof s_Some) { + var$2 = var$1.$value5; + if (var$2 instanceof s_Some) { + var$2 = var$2.$value5; + if (var$2 !== null && var$2.$upper2 instanceof s_Some) { + var$3 = 1; + break a; + } + } + } + if (!jl_Object_equals(s_None$_MODULE$, var$1)) + var$3 = 0; + else + var$3 = 1; + } + return var$3 && $this.$element3.$isBounded() ? 1 : 0; }, -oncie_UnarySubtract_productPrefix = $this => { - return $rt_s(5494); +oncie_RelationshipChain_copy = ($this, $element, $relationship, $rightNode, $position) => { + return oncie_RelationshipChain__init_($element, $relationship, $rightNode, $position); }, -oncie_UnarySubtract_productArity = $this => { - return 1; +oncie_RelationshipChain_productPrefix = $this => { + return $rt_s(4088); }, -oncie_UnarySubtract_productElement = ($this, $x$1) => { +oncie_RelationshipChain_productArity = $this => { + return 3; +}, +oncie_RelationshipChain_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$rhs12; + return $this.$element3; + case 1: + return $this.$relationship1; + case 2: + return $this.$rightNode0; default: } return sr_Statics_ioobe($x$1); }, -oncie_UnarySubtract_productIterator = $this => { +oncie_RelationshipChain_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_UnarySubtract_hashCode = $this => { +oncie_RelationshipChain_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_UnarySubtract_toString = $this => { +oncie_RelationshipChain_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_UnarySubtract_equals = ($this, $x$1) => { - let var$2, var$3; +oncie_RelationshipChain_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_UnarySubtract) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_RelationshipChain) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$rhs12; - $x$1 = $x$1.$rhs12; + var$2 = $this.$element3; + var$3 = $x$1.$element3; if (var$2 !== null) { - if (!var$2.$equals($x$1)) + if (!var$2.$equals(var$3)) break b; else break c; } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$relationship1; + var$3 = $x$1.$relationship1; + if (var$2 !== null) { + if (!oncie_RelationshipPattern_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$rightNode0; + $x$1 = $x$1.$rightNode0; + if (var$3 !== null) { + if (!oncie_NodePattern_equals(var$3, $x$1)) + break b; + else + break e; + } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_UnarySubtract)) + if (!($this instanceof oncie_RelationshipChain)) break b; } - var$3 = 1; + var$4 = 1; break a; } - var$3 = 0; + var$4 = 0; } - return var$3; + return var$4; }, -oncie_UnarySubtract__init_ = ($this, $rhs, $position) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$rhs12 = $rhs; - $this.$position134 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$3 = s_package$_Vector(s_package$_MODULE$); - $rhs = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 2); - var$5 = var$4.data; - oncie_TypeSignature$_$callClinit(); - var$6 = oncie_TypeSignature$_MODULE$; - var$7 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_IntegerType, 1); - var$9 = var$8.data; - oncius_package$_$callClinit(); - var$9[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTInteger(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - var$10 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$8.data[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$5[1] = oncie_TypeSignature$_apply($position, var$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $this.$signatures1 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$4)); +oncie_RelationshipChain_mapExpressions = ($this, $f) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = $this.$element3.$mapExpressions($f); + var$3 = $this.$relationship1; + var$4 = var$3.$properties5; + var$5 = new oncie_RelationshipPattern$mapExpressions$lambda$_20_0; + var$5.$_0460 = $f; + var$6 = s_Option_map(var$4, var$5); + var$7 = s_Option_map(var$3.$variable5, $f); + var$4 = var$3.$length3; + var$5 = new oncie_RelationshipPattern$mapExpressions$lambda$_20_1; + var$5.$_0934 = $f; + var$8 = s_Option_map(var$4, var$5); + var$4 = var$3.$labelExpression6; + var$5 = new oncie_RelationshipPattern$mapExpressions$lambda$_20_2; + var$5.$_0353 = $f; + return oncie_RelationshipChain_copy($this, var$2, oncie_RelationshipPattern_copy(var$3, var$7, s_Option_map(var$4, var$5), var$8, var$6, s_Option_map(var$3.$predicate1, $f), var$3.$direction0, var$3.$position8), oncie_NodePattern_mapExpressions($this.$rightNode0, $f), $this.$position111); }, -oncie_UnarySubtract__init_0 = (var_0, var_1) => { - let var_2 = new oncie_UnarySubtract(); - oncie_UnarySubtract__init_(var_2, var_0, var_1); - return var_2; -}; -function oncie_UnaryAdd() { - let a = this; oncie_Expression.call(a); - a.$rhs16 = null; - a.$position251 = null; - a.$signatures2 = null; -} -let oncie_UnaryAdd_asCanonicalStringVal = $this => { - return oncie_LeftUnaryOperatorExpression_asCanonicalStringVal$($this); +oncie_RelationshipChain__init_0 = ($this, $element, $relationship, $rightNode, $position) => { + $this.$element3 = $element; + $this.$relationship1 = $relationship; + $this.$rightNode0 = $rightNode; + $this.$position111 = $position; + oncie_PatternElement__init_($this); }, -oncie_UnaryAdd_isConstantForQuery = $this => { - return oncie_LeftUnaryOperatorExpression_isConstantForQuery$($this); +oncie_RelationshipChain__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncie_RelationshipChain(); + oncie_RelationshipChain__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; }, -oncie_UnaryAdd_rhs = $this => { - return $this.$rhs16; +oncie_PatternAtom = $rt_classWithoutFields(0); +function oncie_NodePattern() { + let a = this; oncie_SimplePattern.call(a); + a.$variable6 = null; + a.$labelExpression7 = null; + a.$properties6 = null; + a.$predicate2 = null; + a.$position178 = null; +} +let oncie_NodePattern_variable = $this => { + return $this.$variable6; }, -oncie_UnaryAdd_position = $this => { - return $this.$position251; +oncie_NodePattern_labelExpression = $this => { + return $this.$labelExpression7; }, -oncie_UnaryAdd_signatures = $this => { - return $this.$signatures2; +oncie_NodePattern_properties = $this => { + return $this.$properties6; }, -oncie_UnaryAdd_canonicalOperatorSymbol = $this => { - return $rt_s(600); +oncie_NodePattern_predicate = $this => { + return $this.$predicate2; }, -oncie_UnaryAdd_productPrefix = $this => { - return $rt_s(5495); +oncie_NodePattern_position = $this => { + return $this.$position178; }, -oncie_UnaryAdd_productArity = $this => { +oncie_NodePattern_allVariables = $this => { + s_Option$_$callClinit(); + return sc_AbstractIterable_toSet(s_Option$_option2Iterable(s_Option$_MODULE$, $this.$variable6)); +}, +oncie_NodePattern_isBounded = $this => { return 1; }, -oncie_UnaryAdd_productElement = ($this, $x$1) => { +oncie_NodePattern_mapExpressions = ($this, $f) => { + let $x$1, $mappedProperties, $x$3, $x$5; + $x$1 = $this.$properties6; + $mappedProperties = new oncie_NodePattern$mapExpressions$lambda$_12_0; + $mappedProperties.$_091 = $f; + $mappedProperties = s_Option_map($x$1, $mappedProperties); + $x$1 = s_Option_map($this.$variable6, $f); + $x$3 = $this.$labelExpression7; + $x$5 = new oncie_NodePattern$mapExpressions$lambda$_12_1; + $x$5.$_0730 = $f; + return oncie_NodePattern_copy($this, $x$1, s_Option_map($x$3, $x$5), $mappedProperties, s_Option_map($this.$predicate2, $f), $this.$position178); +}, +oncie_NodePattern_copy = ($this, $variable, $labelExpression, $properties, $predicate, $position) => { + return oncie_NodePattern__init_0($variable, $labelExpression, $properties, $predicate, $position); +}, +oncie_NodePattern_productPrefix = $this => { + return $rt_s(4089); +}, +oncie_NodePattern_productArity = $this => { + return 4; +}, +oncie_NodePattern_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$rhs16; + return $this.$variable6; + case 1: + return $this.$labelExpression7; + case 2: + return $this.$properties6; + case 3: + return $this.$predicate2; default: } return sr_Statics_ioobe($x$1); }, -oncie_UnaryAdd_productIterator = $this => { +oncie_NodePattern_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_UnaryAdd_hashCode = $this => { +oncie_NodePattern_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_UnaryAdd_toString = $this => { +oncie_NodePattern_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_UnaryAdd_equals = ($this, $x$1) => { - let var$2, var$3; +oncie_NodePattern_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_UnaryAdd) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_NodePattern) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$rhs16; - $x$1 = $x$1.$rhs16; + var$2 = $this.$variable6; + var$3 = $x$1.$variable6; if (var$2 !== null) { - if (!var$2.$equals($x$1)) + if (!var$2.$equals(var$3)) break b; else break c; } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$labelExpression7; + var$3 = $x$1.$labelExpression7; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$properties6; + var$3 = $x$1.$properties6; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$3 = $this.$predicate2; + $x$1 = $x$1.$predicate2; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break f; + } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_UnaryAdd)) + if (!($this instanceof oncie_NodePattern)) break b; } - var$3 = 1; + var$4 = 1; break a; } - var$3 = 0; + var$4 = 0; } - return var$3; -}, -oncie_UnaryAdd__init_ = ($this, $rhs, $position) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - $this.$rhs16 = $rhs; - $this.$position251 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$3 = s_package$_Vector(s_package$_MODULE$); - $rhs = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 2); - var$5 = var$4.data; - oncie_TypeSignature$_$callClinit(); - var$6 = oncie_TypeSignature$_MODULE$; - var$7 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_IntegerType, 1); - var$9 = var$8.data; - oncius_package$_$callClinit(); - var$9[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTInteger(oncius_package$_MODULE$)); - $position = oncie_TypeSignature$_MODULE$; - var$10 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$8.data[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$5[1] = oncie_TypeSignature$_apply($position, var$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)), oncius_package$_CTFloat(oncius_package$_MODULE$)); - $this.$signatures2 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$4)); -}, -oncie_UnaryAdd__init_0 = (var_0, var_1) => { - let var_2 = new oncie_UnaryAdd(); - oncie_UnaryAdd__init_(var_2, var_0, var_1); - return var_2; -}; -function oncil_LabelExpression$Wildcard() { - let a = this; jl_Object.call(a); - a.$containsIs8 = 0; - a.$position287 = null; -} -let oncil_LabelExpression$Wildcard_containsGpmSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); -}, -oncil_LabelExpression$Wildcard_containsGpmSpecificRelTypeExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); -}, -oncil_LabelExpression$Wildcard_containsMatchSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); -}, -oncil_LabelExpression$Wildcard_containsDynamicLabelOrTypeExpression = $this => { - return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); -}, -oncil_LabelExpression$Wildcard_replaceColonSyntax = $this => { - return oncil_LabelExpression_replaceColonSyntax$($this); -}, -oncil_LabelExpression$Wildcard_foldedOver = $this => { - return $this; -}, -oncil_LabelExpression$Wildcard_folder0 = $this => { - return onciu_Foldable_folder$($this); -}, -oncil_LabelExpression$Wildcard_folder = ($this, $cancellation) => { - return onciu_Foldable_folder$0($this, $cancellation); + return var$4; }, -oncil_LabelExpression$Wildcard_containsIs = $this => { - return $this.$containsIs8; +oncie_NodePattern_mapExpressions0 = ($this, $f) => { + return oncie_NodePattern_mapExpressions($this, $f); }, -oncil_LabelExpression$Wildcard_position = $this => { - return $this.$position287; +oncie_NodePattern__init_ = ($this, $variable, $labelExpression, $properties, $predicate, $position) => { + $this.$variable6 = $variable; + $this.$labelExpression7 = $labelExpression; + $this.$properties6 = $properties; + $this.$predicate2 = $predicate; + $this.$position178 = $position; + oncie_PatternElement__init_($this); }, -oncil_LabelExpression$Wildcard_flatten = $this => { - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +oncie_NodePattern__init_0 = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncie_NodePattern(); + oncie_NodePattern__init_(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; }, -oncil_LabelExpression$Wildcard_productPrefix = $this => { - return $rt_s(5496); +oncie_Literal = $rt_classWithoutFields(0), +oncie_NumberLiteral = $rt_classWithoutFields(0), +oncie_IntegerLiteral = $rt_classWithoutFields(0); +function oncie_DecimalIntegerLiteral() { + let a = this; oncie_Expression.call(a); + a.$integerMatcher0 = null; + a.$value32 = null; + a.$stringVal6 = null; + a.$bitmap$025 = 0; +} +let oncie_DecimalIntegerLiteral_asCanonicalStringVal = $this => { + return $this.$stringVal(); }, -oncil_LabelExpression$Wildcard_productArity = $this => { +oncie_DecimalIntegerLiteral_isConstantForQuery = $this => { return 1; }, -oncil_LabelExpression$Wildcard_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$containsIs8); - default: +oncie_DecimalIntegerLiteral_integerMatcher = $this => { + let var$1, var$2, $$je; + if (($this.$bitmap$025 & 1) << 24 >> 24) + return $this.$integerMatcher0; + jl_Object_monitorEnterSync($this); + a: { + try { + if (($this.$bitmap$025 & 1) << 24 >> 24) + break a; + var$1 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $this.$integerMatcher0 = sc_StringOps$_r$extension(var$1, s_Predef$_augmentString(s_Predef$_MODULE$, $rt_s(4090))); + $this.$bitmap$025 = ($this.$bitmap$025 | 1) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$2); } - return sr_Statics_ioobe($x$1); -}, -oncil_LabelExpression$Wildcard_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncil_LabelExpression$Wildcard_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5496))), !$this.$containsIs8 ? 1237 : 1231), 1); -}, -oncil_LabelExpression$Wildcard_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + jl_Object_monitorExitSync($this); + return $this.$integerMatcher0; }, -oncil_LabelExpression$Wildcard_equals = ($this, $x$1) => { - let var$2; +oncie_DecimalIntegerLiteral_value = $this => { + let var$1, $$je; + if (($this.$bitmap$025 & 2) << 24 >> 24) + return $this.$value32; + jl_Object_monitorEnterSync($this); a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_LabelExpression$Wildcard) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs8 != $x$1.$containsIs8) - break b; - if (!($this instanceof oncil_LabelExpression$Wildcard)) - break b; + try { + if (($this.$bitmap$025 & 2) << 24 >> 24) + break a; + var$1 = $this.$stringVal6; + if (var$1 !== null && !s_Option_isEmpty(sum_Regex_unapplySeq(oncie_DecimalIntegerLiteral_integerMatcher($this), var$1))) { + s_Predef$_$callClinit(); + var$1 = s_Predef$_MODULE$; + var$1 = s_Predef$_long2Long(var$1, jl_Long_parseLong(sc_AbstractIterable_mkString0(sci_List_filter(sc_AbstractIterable_toList(s_LowPriorityImplicits_wrapString(var$1, $this.$stringVal6)), oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0__init_())))); + } else { + s_Predef$_$callClinit(); + var$1 = s_Predef$_long2Long(s_Predef$_MODULE$, jl_Long_parseLong($this.$stringVal6)); } - var$2 = 1; + $this.$value32 = var$1; + $this.$bitmap$025 = ($this.$bitmap$025 | 2) << 24 >> 24; break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - var$2 = 0; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - return var$2; -}, -oncil_LabelExpression$Wildcard_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); + jl_Object_monitorExitSync($this); + return $this.$value32; }, -oncil_LabelExpression$Wildcard__init_ = ($this, $containsIs, $position) => { - $this.$containsIs8 = $containsIs; - $this.$position287 = $position; +oncie_DecimalIntegerLiteral__init_ = ($this, $stringVal) => { + $this.$stringVal6 = $stringVal; + oncie_Expression__init_($this); }, -oncil_LabelExpression$Wildcard__init_0 = (var_0, var_1) => { - let var_2 = new oncil_LabelExpression$Wildcard(); - oncil_LabelExpression$Wildcard__init_(var_2, var_0, var_1); - return var_2; -}; -function oncil_LabelExpression$DynamicLeaf() { - let a = this; jl_Object.call(a); - a.$expr4 = null; - a.$containsIs9 = 0; - a.$position268 = null; +oncie_UnsignedIntegerLiteral = $rt_classWithoutFields(0); +function oncie_UnsignedDecimalIntegerLiteral() { + let a = this; oncie_DecimalIntegerLiteral.call(a); + a.$stringVal0 = null; + a.$position22 = null; } -let oncil_LabelExpression$DynamicLeaf_containsGpmSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); -}, -oncil_LabelExpression$DynamicLeaf_containsGpmSpecificRelTypeExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); -}, -oncil_LabelExpression$DynamicLeaf_containsMatchSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); -}, -oncil_LabelExpression$DynamicLeaf_containsDynamicLabelOrTypeExpression = $this => { - return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); -}, -oncil_LabelExpression$DynamicLeaf_replaceColonSyntax = $this => { - return oncil_LabelExpression_replaceColonSyntax$($this); -}, -oncil_LabelExpression$DynamicLeaf_foldedOver = $this => { - return $this; -}, -oncil_LabelExpression$DynamicLeaf_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncil_LabelExpression$DynamicLeaf_folder0 = ($this, $cancellation) => { - return onciu_Foldable_folder$0($this, $cancellation); +let oncie_UnsignedDecimalIntegerLiteral_stringVal = $this => { + return $this.$stringVal0; }, -oncil_LabelExpression$DynamicLeaf_containsIs = $this => { - return $this.$containsIs9; +oncie_UnsignedDecimalIntegerLiteral_position = $this => { + return $this.$position22; }, -oncil_LabelExpression$DynamicLeaf_position = $this => { - return $this.$position268; +oncie_UnsignedDecimalIntegerLiteral_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_UnsignedDecimalIntegerLiteral$$anon$2; + oncie_UnsignedDecimalIntegerLiteral__init_(var$1, $this.$stringVal0, $this.$position22); + return var$1; }, -oncil_LabelExpression$DynamicLeaf_flatten = $this => { - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +oncie_UnsignedDecimalIntegerLiteral_copy = ($this, $stringVal, $position) => { + return oncie_UnsignedDecimalIntegerLiteral__init_0($stringVal, $position); }, -oncil_LabelExpression$DynamicLeaf_productPrefix = $this => { - return $rt_s(5497); +oncie_UnsignedDecimalIntegerLiteral_productPrefix = $this => { + return $rt_s(4091); }, -oncil_LabelExpression$DynamicLeaf_productArity = $this => { - return 2; +oncie_UnsignedDecimalIntegerLiteral_productArity = $this => { + return 1; }, -oncil_LabelExpression$DynamicLeaf_productElement = ($this, $x$1) => { +oncie_UnsignedDecimalIntegerLiteral_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$expr4; - case 1: - return jl_Boolean_valueOf($this.$containsIs9); + return $this.$stringVal0; default: } return sr_Statics_ioobe($x$1); }, -oncil_LabelExpression$DynamicLeaf_productIterator = $this => { +oncie_UnsignedDecimalIntegerLiteral_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$DynamicLeaf_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5497))), sr_Statics_anyHash($this.$expr4)), !$this.$containsIs9 ? 1237 : 1231), 2); +oncie_UnsignedDecimalIntegerLiteral_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_UnsignedDecimalIntegerLiteral; }, -oncil_LabelExpression$DynamicLeaf_toString = $this => { +oncie_UnsignedDecimalIntegerLiteral_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_UnsignedDecimalIntegerLiteral_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_LabelExpression$DynamicLeaf_equals = ($this, $x$1) => { +oncie_UnsignedDecimalIntegerLiteral_equals = ($this, $x$1) => { let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_LabelExpression$DynamicLeaf) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs9 != $x$1.$containsIs9) + if (!(!($x$1 instanceof oncie_UnsignedDecimalIntegerLiteral) ? 0 : 1)) break b; c: { - var$2 = $this.$expr4; - $x$1 = $x$1.$expr4; + $x$1 = $x$1; + var$2 = $this.$stringVal0; + $x$1 = $x$1.$stringVal0; if (var$2 !== null) { - if (!var$2.$equals($x$1)) + if (!jl_String_equals(var$2, $x$1)) break b; else break c; @@ -204802,7 +94319,7 @@ oncil_LabelExpression$DynamicLeaf_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof oncil_LabelExpression$DynamicLeaf)) + if (!($this instanceof oncie_UnsignedDecimalIntegerLiteral)) break b; } var$3 = 1; @@ -204812,184 +94329,344 @@ oncil_LabelExpression$DynamicLeaf_equals = ($this, $x$1) => { } return var$3; }, -oncil_LabelExpression$DynamicLeaf_dup = ($this, $children) => { - let var$2, var$3; - a: { - if ($children !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $children); - if (!$children.$lengthCompare(3)) { - var$2 = $children.$apply1(0); - var$3 = $children.$apply1(1); - if ($rt_isInstance($children.$apply1(2), onciu_InputPosition)) { - $children = onciu_ASTNode_dup$($this, sci_$colon$colon__init_(var$2, sci_$colon$colon__init_(var$3, sci_Nil$_MODULE$))); - break a; - } - } - } - $children = onciu_ASTNode_dup$($this, $children); - } - return $children; -}, -oncil_LabelExpression$DynamicLeaf__init_0 = ($this, $expr, $containsIs) => { - $this.$expr4 = $expr; - $this.$containsIs9 = $containsIs; - $this.$position268 = $expr.$position(); +oncie_UnsignedDecimalIntegerLiteral__init_ = ($this, $stringVal, $position) => { + $this.$stringVal0 = $stringVal; + $this.$position22 = $position; + oncie_DecimalIntegerLiteral__init_($this, $stringVal); }, -oncil_LabelExpression$DynamicLeaf__init_ = (var_0, var_1) => { - let var_2 = new oncil_LabelExpression$DynamicLeaf(); - oncil_LabelExpression$DynamicLeaf__init_0(var_2, var_0, var_1); +oncie_UnsignedDecimalIntegerLiteral__init_0 = (var_0, var_1) => { + let var_2 = new oncie_UnsignedDecimalIntegerLiteral(); + oncie_UnsignedDecimalIntegerLiteral__init_(var_2, var_0, var_1); return var_2; -}, -oncil_LabelExpressionDynamicLeafExpression = $rt_classWithoutFields(0); -function oncie_DynamicLabelExpression() { +}; +function oncie_Range() { let a = this; jl_Object.call(a); - a.$expression32 = null; - a.$all3 = 0; - a.$position273 = null; + a.$lower2 = null; + a.$upper2 = null; + a.$position126 = null; } -let oncie_DynamicLabelExpression_expression = $this => { - return $this.$expression32; -}, -oncie_DynamicLabelExpression_all = $this => { - return $this.$all3; +let oncie_Range_position = $this => { + return $this.$position126; }, -oncie_DynamicLabelExpression_position = $this => { - return $this.$position273; +oncie_Range_copy = ($this, $lower, $upper, $position) => { + return oncie_Range__init_($lower, $upper, $position); }, -oncie_DynamicLabelExpression_productPrefix = $this => { - return $rt_s(5498); +oncie_Range_productPrefix = $this => { + return $rt_s(4092); }, -oncie_DynamicLabelExpression_productArity = $this => { +oncie_Range_productArity = $this => { return 2; }, -oncie_DynamicLabelExpression_productElement = ($this, $x$1) => { +oncie_Range_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$expression32; + return $this.$lower2; case 1: - return jl_Boolean_valueOf($this.$all3); + return $this.$upper2; default: } return sr_Statics_ioobe($x$1); }, -oncie_DynamicLabelExpression_productIterator = $this => { +oncie_Range_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_DynamicLabelExpression_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5498))), sr_Statics_anyHash($this.$expression32)), !$this.$all3 ? 1237 : 1231), 2); +oncie_Range_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_DynamicLabelExpression_toString = $this => { +oncie_Range_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_DynamicLabelExpression_equals = ($this, $x$1) => { - let var$2, var$3; +oncie_Range_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_DynamicLabelExpression) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$all3 != $x$1.$all3) + if (!(!($x$1 instanceof oncie_Range) ? 0 : 1)) break b; c: { - var$2 = $this.$expression32; - $x$1 = $x$1.$expression32; + $x$1 = $x$1; + var$2 = $this.$lower2; + var$3 = $x$1.$lower2; if (var$2 !== null) { - if (!var$2.$equals($x$1)) + if (!var$2.$equals(var$3)) break b; else break c; } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$upper2; + $x$1 = $x$1.$upper2; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_DynamicLabelExpression)) + if (!($this instanceof oncie_Range)) break b; } - var$3 = 1; + var$4 = 1; break a; } - var$3 = 0; + var$4 = 0; } - return var$3; + return var$4; }, -oncie_DynamicLabelExpression_dup = ($this, $children) => { +oncie_Range_dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncie_DynamicLabelExpression__init_0 = ($this, $expression, $all, $position) => { - $this.$expression32 = $expression; - $this.$all3 = $all; - $this.$position273 = $position; +oncie_Range__init_0 = ($this, $lower, $upper, $position) => { + $this.$lower2 = $lower; + $this.$upper2 = $upper; + $this.$position126 = $position; }, -oncie_DynamicLabelExpression__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_DynamicLabelExpression(); - oncie_DynamicLabelExpression__init_0(var_3, var_0, var_1, var_2); +oncie_Range__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_Range(); + oncie_Range__init_0(var_3, var_0, var_1, var_2); return var_3; }; -function oncie_DynamicLabelOrRelTypeExpression() { - let a = this; jl_Object.call(a); - a.$expression22 = null; - a.$all1 = 0; - a.$position102 = null; +function scm_HashMap$$anon$5() { + let a = this; scm_HashMap$HashMapIterator.call(a); + a.$hash7 = 0; + a.$$outer54 = null; +} +let scm_HashMap$$anon$5_hashCode = $this => { + return $this.$hash7; +}, +scm_HashMap$$anon$5_extract = ($this, $nd) => { + suh_MurmurHash3$_$callClinit(); + $this.$hash7 = suh_MurmurHash3$_tuple2Hash(suh_MurmurHash3$_MODULE$, jl_Integer_valueOf(scm_HashMap_unimproveHash($this.$$outer54, $nd.$_hash0)), jl_Integer_valueOf(sr_Statics_anyHash($nd.$_value))); + return $this; +}; +function oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0() { + jl_Object.call(this); + this.$_0642 = 0; +} +let oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0_apply = (var$0, var$1) => { + return var$1.$withIsNullable1(var$0.$_0642); +}, +oncipvaf_Cypher5AstParser$statements$lambda$_2_0 = $rt_classWithoutFields(), +oncipvaf_Cypher5AstParser$statements$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, $$je; + var$1 = var$1; + var$2 = new oncipv_Cypher5Parser$StatementsContext; + oncip_AstRuleCtx__init_(var$2, var$1.$_ctx, var$1.$_stateNumber); + oavr_Parser_enterRule(var$1, var$2, 0, 0); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt(var$1, var$2, 1); + oavr_Recognizer_setState(var$1, 676); + oncipv_Cypher5Parser_statement(var$1); + oavr_Recognizer_setState(var$1, 681); + var$1.$_errHandler.$sync(var$1); + var$3 = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter(var$1), var$1.$_input, 0, var$1.$_ctx); + while (var$3 != 2 && var$3) { + if (var$3 == 1) { + oavr_Recognizer_setState(var$1, 677); + oavr_Parser_match(var$1, 247); + oavr_Recognizer_setState(var$1, 678); + oncipv_Cypher5Parser_statement(var$1); + } + oavr_Recognizer_setState(var$1, 683); + var$1.$_errHandler.$sync(var$1); + var$3 = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter(var$1), var$1.$_input, 0, var$1.$_ctx); + } + oavr_Recognizer_setState(var$1, 685); + var$1.$_errHandler.$sync(var$1); + if (oavr_BufferedTokenStream_LA(var$1.$_input, 1) == 247) { + oavr_Recognizer_setState(var$1, 684); + oavr_Parser_match(var$1, 247); + } + oavr_Recognizer_setState(var$1, 687); + oavr_Parser_match(var$1, (-1)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + var$4 = $$je; + break d; + } else{ + var$2 = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$(var$1); + break a; + } + try { + var$2.$exception = var$4; + var$1.$_errHandler.$reportError(var$1, var$4); + var$1.$_errHandler.$recover(var$1, var$4); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$(var$1); + $rt_throw(var$2); + } + oncipa_AstBuildingAntlrParser_exitRule$(var$1); + } + return var$2; +}, +oncipvaf_Cypher25AstParser$statements$lambda$_2_0 = $rt_classWithoutFields(), +oncipvaf_Cypher25AstParser$statements$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, $$je; + var$1 = var$1; + var$2 = new oncipv_Cypher25Parser$StatementsContext; + oncip_AstRuleCtx__init_(var$2, var$1.$_ctx, var$1.$_stateNumber); + oavr_Parser_enterRule(var$1, var$2, 0, 0); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt(var$1, var$2, 1); + oavr_Recognizer_setState(var$1, 660); + oncipv_Cypher25Parser_statement(var$1); + oavr_Recognizer_setState(var$1, 665); + var$1.$_errHandler.$sync(var$1); + var$3 = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter(var$1), var$1.$_input, 0, var$1.$_ctx); + while (var$3 != 2 && var$3) { + if (var$3 == 1) { + oavr_Recognizer_setState(var$1, 661); + oavr_Parser_match(var$1, 241); + oavr_Recognizer_setState(var$1, 662); + oncipv_Cypher25Parser_statement(var$1); + } + oavr_Recognizer_setState(var$1, 667); + var$1.$_errHandler.$sync(var$1); + var$3 = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter(var$1), var$1.$_input, 0, var$1.$_ctx); + } + oavr_Recognizer_setState(var$1, 669); + var$1.$_errHandler.$sync(var$1); + if (oavr_BufferedTokenStream_LA(var$1.$_input, 1) == 241) { + oavr_Recognizer_setState(var$1, 668); + oavr_Parser_match(var$1, 241); + } + oavr_Recognizer_setState(var$1, 671); + oavr_Parser_match(var$1, (-1)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + var$4 = $$je; + break d; + } else{ + var$2 = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$(var$1); + break a; + } + try { + var$2.$exception = var$4; + var$1.$_errHandler.$reportError(var$1, var$4); + var$1.$_errHandler.$recover(var$1, var$4); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$(var$1); + $rt_throw(var$2); + } + oncipa_AstBuildingAntlrParser_exitRule$(var$1); + } + return var$2; +}; +function oncie_Variable() { + let a = this; oncie_LogicalVariable.call(a); + a.$name4 = null; + a.$position4 = null; + a.$isIsolated0 = 0; } -let oncie_DynamicLabelOrRelTypeExpression_expression = $this => { - return $this.$expression22; +let oncie_Variable_name = $this => { + return $this.$name4; }, -oncie_DynamicLabelOrRelTypeExpression_all = $this => { - return $this.$all1; +oncie_Variable_position = $this => { + return $this.$position4; }, -oncie_DynamicLabelOrRelTypeExpression_position = $this => { - return $this.$position102; +oncie_Variable_isIsolated = $this => { + return $this.$isIsolated0; }, -oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression = $this => { - return oncie_DynamicLabelExpression__init_($this.$expression22, $this.$all1, $this.$position102); +oncie_Variable_copyId = $this => { + return oncie_Variable_copy($this, $this.$name4, $this.$position4, $this.$isIsolated0); }, -oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression = $this => { - return oncie_DynamicRelTypeExpression__init_($this.$expression22, $this.$all1, $this.$position102); +oncie_Variable_withPosition = ($this, $position) => { + let var$2; + var$2 = $this.$name4; + oncie_Variable$_$callClinit(); + return oncie_Variable_copy($this, var$2, $position, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); }, -oncie_DynamicLabelOrRelTypeExpression_productPrefix = $this => { - return $rt_s(5499); +oncie_Variable_asCanonicalStringVal = $this => { + return $this.$name4; }, -oncie_DynamicLabelOrRelTypeExpression_productArity = $this => { - return 2; +oncie_Variable_dup = ($this, $children) => { + switch ($children.$length()) { + case 1: + return oncie_Variable__init_0($children.$head(), $this.$position4, $this.$isIsolated0); + case 2: + return oncie_Variable__init_0($children.$head(), $children.$apply1(1), $this.$isIsolated0); + case 3: + return oncie_Variable__init_0($children.$head(), $children.$apply1(1), sr_BoxesRunTime_unboxToBoolean($children.$apply1(2))); + default: + } + $children = new jl_IllegalStateException; + jl_Throwable__init_($children, $rt_s(4093)); + $rt_throw($children); }, -oncie_DynamicLabelOrRelTypeExpression_productElement = ($this, $x$1) => { +oncie_Variable_copy = ($this, $name, $position, $isIsolated) => { + return oncie_Variable__init_0($name, $position, $isIsolated); +}, +oncie_Variable_productPrefix = $this => { + return $rt_s(4094); +}, +oncie_Variable_productArity = $this => { + return 1; +}, +oncie_Variable_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$expression22; - case 1: - return jl_Boolean_valueOf($this.$all1); + return $this.$name4; default: } return sr_Statics_ioobe($x$1); }, -oncie_DynamicLabelOrRelTypeExpression_productIterator = $this => { +oncie_Variable_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_DynamicLabelOrRelTypeExpression_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5499))), sr_Statics_anyHash($this.$expression22)), !$this.$all1 ? 1237 : 1231), 2); +oncie_Variable_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_DynamicLabelOrRelTypeExpression_toString = $this => { +oncie_Variable_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_DynamicLabelOrRelTypeExpression_equals = ($this, $x$1) => { +oncie_Variable_equals = ($this, $x$1) => { let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_DynamicLabelOrRelTypeExpression) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$all1 != $x$1.$all1) + if (!(!($x$1 instanceof oncie_Variable) ? 0 : 1)) break b; c: { - var$2 = $this.$expression22; - $x$1 = $x$1.$expression22; + $x$1 = $x$1; + var$2 = $this.$name4; + $x$1 = $x$1.$name4; if (var$2 !== null) { - if (!var$2.$equals($x$1)) + if (!jl_String_equals(var$2, $x$1)) break b; else break c; @@ -204997,7 +94674,7 @@ oncie_DynamicLabelOrRelTypeExpression_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof oncie_DynamicLabelOrRelTypeExpression)) + if (!($this instanceof oncie_Variable)) break b; } var$3 = 1; @@ -205007,164 +94684,156 @@ oncie_DynamicLabelOrRelTypeExpression_equals = ($this, $x$1) => { } return var$3; }, -oncie_DynamicLabelOrRelTypeExpression_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_DynamicLabelOrRelTypeExpression__init_ = ($this, $expression, $all, $position) => { - $this.$expression22 = $expression; - $this.$all1 = $all; - $this.$position102 = $position; -}, -oncie_DynamicLabelOrRelTypeExpression__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncie_DynamicLabelOrRelTypeExpression(); - oncie_DynamicLabelOrRelTypeExpression__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_DynamicRelTypeExpression() { - let a = this; jl_Object.call(a); - a.$expression26 = null; - a.$all4 = 0; - a.$position202 = null; -} -let oncie_DynamicRelTypeExpression_expression = $this => { - return $this.$expression26; -}, -oncie_DynamicRelTypeExpression_all = $this => { - return $this.$all4; +oncie_Variable_dup0 = ($this, $children) => { + return oncie_Variable_dup($this, $children); }, -oncie_DynamicRelTypeExpression_position = $this => { - return $this.$position202; +oncie_Variable_dup1 = ($this, $children) => { + return oncie_Variable_dup($this, $children); }, -oncie_DynamicRelTypeExpression_productPrefix = $this => { - return $rt_s(5500); +oncie_Variable__init_ = ($this, $name, $position, $isIsolated) => { + $this.$name4 = $name; + $this.$position4 = $position; + $this.$isIsolated0 = $isIsolated; + oncie_Expression__init_($this); }, -oncie_DynamicRelTypeExpression_productArity = $this => { - return 2; +oncie_Variable__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Variable(); + oncie_Variable__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncie_DynamicRelTypeExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression26; - case 1: - return jl_Boolean_valueOf($this.$all4); - default: - } - return sr_Statics_ioobe($x$1); +oncie_Variable$ = $rt_classWithoutFields(), +oncie_Variable$_MODULE$ = null, +oncie_Variable$_isIsolatedDefault0 = 0, +oncie_Variable$_byName = null, +oncie_Variable$_$callClinit = () => { + oncie_Variable$_$callClinit = $rt_eraseClinit(oncie_Variable$); + oncie_Variable$__clinit_(); }, -oncie_DynamicRelTypeExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_Variable$__clinit_ = () => { + let var$1, var$2, var$3, var$4; + var$1 = new oncie_Variable$; + oncie_Variable$_$callClinit(); + oncie_Variable$_MODULE$ = var$1; + oncie_Variable$_isIsolatedDefault0 = 0; + s_package$_$callClinit(); + var$2 = s_package$_Ordering(s_package$_MODULE$); + var$3 = new oncie_Variable$$_clinit_$lambda$_0_0; + var$4 = s_package$_Ordering(s_package$_MODULE$); + s_Predef$_$callClinit(); + sm_Ordering$String$_$callClinit(); + var$1 = sm_Ordering$String$_MODULE$; + onciu_InputPosition$_$callClinit(); + oncie_Variable$_byName = sm_Ordering$_by(var$2, var$3, sm_Ordering$_Tuple2(var$4, var$1, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$))); }, -oncie_DynamicRelTypeExpression_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5500))), sr_Statics_anyHash($this.$expression26)), !$this.$all4 ? 1237 : 1231), 2); +oncie_Variable$_isIsolatedDefault = $this => { + oncie_Variable$_$callClinit(); + return oncie_Variable$_isIsolatedDefault0; }, -oncie_DynamicRelTypeExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncie_BooleanExpression = $rt_classWithoutFields(0), +oncie_OperatorExpression = $rt_classWithoutFields(0), +oncie_OperatorExpression_canonicalOperatorSymbol$ = $$this => { + let var$2; + var$2 = $$this.$productPrefix(); + ju_Locale_$callClinit(); + return jl_String_toUpperCase(var$2, ju_Locale_ROOT); }, -oncie_DynamicRelTypeExpression_equals = ($this, $x$1) => { +oncie_RightUnaryOperatorExpression = $rt_classWithoutFields(0), +oncie_RightUnaryOperatorExpression_asCanonicalStringVal$ = $$this => { let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_DynamicRelTypeExpression) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$all4 != $x$1.$all4) - break b; - c: { - var$2 = $this.$expression26; - $x$1 = $x$1.$expression26; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_DynamicRelTypeExpression)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncie_DynamicRelTypeExpression_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncie_DynamicRelTypeExpression__init_0 = ($this, $expression, $all, $position) => { - $this.$expression26 = $expression; - $this.$all4 = $all; - $this.$position202 = $position; + var$2 = $$this.$canonicalOperatorSymbol(); + $$this = ($$this.$lhs0()).$asCanonicalStringVal(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$2 = jl_StringBuilder_append(var$3, var$2); + jl_AbstractStringBuilder_append0(var$2, 40); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, $$this), 41); + return jl_AbstractStringBuilder_toString(var$3); }, -oncie_DynamicRelTypeExpression__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_DynamicRelTypeExpression(); - oncie_DynamicRelTypeExpression__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncie_RightUnaryOperatorExpression_isConstantForQuery$ = $$this => { + return ($$this.$lhs0()).$isConstantForQuery(); }; -function oncie_ListSlice() { +function oncia_IsTyped() { let a = this; oncie_Expression.call(a); - a.$list2 = null; - a.$from17 = null; - a.$to1 = null; - a.$position171 = null; + a.$lhs9 = null; + a.$typeName2 = null; + a.$position90 = null; + a.$withDoubleColonOnly = 0; + a.$signatures13 = null; } -let oncie_ListSlice_list = $this => { - return $this.$list2; +let oncia_IsTyped_asCanonicalStringVal = $this => { + return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); }, -oncie_ListSlice_from = $this => { - return $this.$from17; +oncia_IsTyped_isConstantForQuery = $this => { + return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); }, -oncie_ListSlice_to = $this => { - return $this.$to1; +oncia_IsTyped_lhs = $this => { + return $this.$lhs9; }, -oncie_ListSlice_position = $this => { - return $this.$position171; +oncia_IsTyped_typeName = $this => { + return $this.$typeName2; }, -oncie_ListSlice_isConstantForQuery = $this => { - return $this.$list2.$isConstantForQuery() && s_Option_forall($this.$from17, new oncie_ListSlice$isConstantForQuery$lambda$_6_0) ? 1 : 0; +oncia_IsTyped_position = $this => { + return $this.$position90; }, -oncie_ListSlice_productPrefix = $this => { - return $rt_s(5501); +oncia_IsTyped_signatures = $this => { + return $this.$signatures13; }, -oncie_ListSlice_productArity = $this => { - return 3; +oncia_IsTyped_canonicalOperatorSymbol = $this => { + return $rt_s(4095); }, -oncie_ListSlice_productElement = ($this, $x$1) => { +oncia_IsTyped_dup = ($this, $children) => { + switch ($children.$length()) { + case 2: + return oncia_IsTyped__init_($children.$head(), $children.$apply1(1), $this.$position90, $this.$withDoubleColonOnly); + case 3: + return oncia_IsTyped__init_($children.$head(), $children.$apply1(1), $children.$apply1(2), $this.$withDoubleColonOnly); + case 4: + return oncia_IsTyped__init_($children.$head(), $children.$apply1(1), $children.$apply1(2), sr_BoxesRunTime_unboxToBoolean($children.$apply1(3))); + default: + } + $children = new jl_IllegalStateException; + jl_Throwable__init_($children, $rt_s(4096)); + $rt_throw($children); +}, +oncia_IsTyped_copy = ($this, $lhs, $typeName, $position, $withDoubleColonOnly) => { + return oncia_IsTyped__init_($lhs, $typeName, $position, $withDoubleColonOnly); +}, +oncia_IsTyped_productPrefix = $this => { + return $rt_s(4097); +}, +oncia_IsTyped_productArity = $this => { + return 2; +}, +oncia_IsTyped_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$list2; + return $this.$lhs9; case 1: - return $this.$from17; - case 2: - return $this.$to1; + return $this.$typeName2; default: } return sr_Statics_ioobe($x$1); }, -oncie_ListSlice_productIterator = $this => { +oncia_IsTyped_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ListSlice_hashCode = $this => { +oncia_IsTyped_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ListSlice_toString = $this => { +oncia_IsTyped_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ListSlice_equals = ($this, $x$1) => { +oncia_IsTyped_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ListSlice) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_IsTyped) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$list2; - var$3 = $x$1.$list2; + var$2 = $this.$lhs9; + var$3 = $x$1.$lhs9; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -205175,30 +94844,18 @@ oncie_ListSlice_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$from17; - var$3 = $x$1.$from17; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$to1; - $x$1 = $x$1.$to1; + var$3 = $this.$typeName2; + $x$1 = $x$1.$typeName2; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break e; + break d; } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_ListSlice)) + if (!($this instanceof oncia_IsTyped)) break b; } var$4 = 1; @@ -205208,23 +94865,54 @@ oncie_ListSlice_equals = ($this, $x$1) => { } return var$4; }, -oncie_ListSlice__init_ = ($this, $list, $from, $to, $position) => { - $this.$list2 = $list; - $this.$from17 = $from; - $this.$to1 = $to; - $this.$position171 = $position; +oncia_IsTyped_dup1 = ($this, $children) => { + return oncia_IsTyped_dup($this, $children); +}, +oncia_IsTyped_dup0 = ($this, $children) => { + return oncia_IsTyped_dup($this, $children); +}, +oncia_IsTyped__init_0 = ($this, $lhs, $typeName, $position, $withDoubleColonOnly) => { + let var$5, var$6, var$7, var$8, var$9, var$10, var$11; + $this.$lhs9 = $lhs; + $this.$typeName2 = $typeName; + $this.$position90 = $position; + $this.$withDoubleColonOnly = $withDoubleColonOnly; oncie_Expression__init_($this); + s_package$_$callClinit(); + var$5 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$7 = var$6.data; + oncie_TypeSignature$_$callClinit(); + var$8 = oncie_TypeSignature$_MODULE$; + var$9 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$10 = $rt_createArray(oncius_AnyType, 2); + var$11 = var$10.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$11[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$7[0] = oncie_TypeSignature$_apply(var$8, var$9.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$10)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures13 = var$5.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$6)); }, -oncie_ListSlice__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncie_ListSlice(); - oncie_ListSlice__init_(var_4, var_0, var_1, var_2, var_3); +oncia_IsTyped__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_IsTyped(); + oncia_IsTyped__init_0(var_4, var_0, var_1, var_2, var_3); return var_4; +}, +oncia_IsTyped$ = $rt_classWithoutFields(), +oncia_IsTyped$_MODULE$ = null, +oncia_IsTyped$_withDoubleColonOnlyDefault = 0, +oncia_IsTyped$__clinit_ = () => { + oncia_IsTyped$_MODULE$ = new oncia_IsTyped$; + oncia_IsTyped$_withDoubleColonOnlyDefault = 0; }; function oncil_LabelExpressionPredicate() { let a = this; oncie_Expression.call(a); a.$entity0 = null; a.$labelExpression8 = null; - a.$position158 = null; + a.$position49 = null; + a.$isParenthesized0 = 0; } let oncil_LabelExpressionPredicate_entity = $this => { return $this.$entity0; @@ -205233,13 +94921,33 @@ oncil_LabelExpressionPredicate_labelExpression = $this => { return $this.$labelExpression8; }, oncil_LabelExpressionPredicate_position = $this => { - return $this.$position158; + return $this.$position49; +}, +oncil_LabelExpressionPredicate_isParenthesized = $this => { + return $this.$isParenthesized0; }, oncil_LabelExpressionPredicate_isConstantForQuery = $this => { return 0; }, +oncil_LabelExpressionPredicate_dup = ($this, $children) => { + switch ($children.$length()) { + case 2: + return oncil_LabelExpressionPredicate__init_($children.$head(), $children.$apply1(1), $this.$position49, $this.$isParenthesized0); + case 3: + return oncil_LabelExpressionPredicate__init_($children.$head(), $children.$apply1(1), $children.$apply1(2), $this.$isParenthesized0); + case 4: + return oncil_LabelExpressionPredicate__init_($children.$head(), $children.$apply1(1), $children.$apply1(2), sr_BoxesRunTime_unboxToBoolean($children.$apply1(3))); + default: + } + $children = new jl_IllegalStateException; + jl_Throwable__init_($children, $rt_s(4098)); + $rt_throw($children); +}, +oncil_LabelExpressionPredicate_copy = ($this, $entity, $labelExpression, $position, $isParenthesized) => { + return oncil_LabelExpressionPredicate__init_($entity, $labelExpression, $position, $isParenthesized); +}, oncil_LabelExpressionPredicate_productPrefix = $this => { - return $rt_s(5502); + return $rt_s(4099); }, oncil_LabelExpressionPredicate_productArity = $this => { return 2; @@ -205305,767 +95013,219 @@ oncil_LabelExpressionPredicate_equals = ($this, $x$1) => { } return var$4; }, -oncil_LabelExpressionPredicate__init_ = ($this, $entity, $labelExpression, $position) => { +oncil_LabelExpressionPredicate_dup0 = ($this, $children) => { + return oncil_LabelExpressionPredicate_dup($this, $children); +}, +oncil_LabelExpressionPredicate_dup1 = ($this, $children) => { + return oncil_LabelExpressionPredicate_dup($this, $children); +}, +oncil_LabelExpressionPredicate__init_0 = ($this, $entity, $labelExpression, $position, $isParenthesized) => { $this.$entity0 = $entity; $this.$labelExpression8 = $labelExpression; - $this.$position158 = $position; + $this.$position49 = $position; + $this.$isParenthesized0 = $isParenthesized; oncie_Expression__init_($this); }, -oncil_LabelExpressionPredicate__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncil_LabelExpressionPredicate(); - oncil_LabelExpressionPredicate__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -oncius_CypherTypeOrder$ = $rt_classWithoutFields(s_Enumeration), -oncius_CypherTypeOrder$_MODULE$ = null, -oncius_CypherTypeOrder$_NOTHING = null, -oncius_CypherTypeOrder$_NULL = null, -oncius_CypherTypeOrder$_BOOLEAN = null, -oncius_CypherTypeOrder$_STRING = null, -oncius_CypherTypeOrder$_INTEGER = null, -oncius_CypherTypeOrder$_FLOAT = null, -oncius_CypherTypeOrder$_DATE = null, -oncius_CypherTypeOrder$_LOCAL_TIME = null, -oncius_CypherTypeOrder$_ZONED_TIME = null, -oncius_CypherTypeOrder$_LOCAL_DATETIME = null, -oncius_CypherTypeOrder$_ZONED_DATETIME = null, -oncius_CypherTypeOrder$_DURATION = null, -oncius_CypherTypeOrder$_POINT0 = null, -oncius_CypherTypeOrder$_NODE = null, -oncius_CypherTypeOrder$_RELATIONSHIP = null, -oncius_CypherTypeOrder$_MAP = null, -oncius_CypherTypeOrder$_LIST = null, -oncius_CypherTypeOrder$_PATH = null, -oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION0 = null, -oncius_CypherTypeOrder$_ANY = null, -oncius_CypherTypeOrder$_$callClinit = () => { - oncius_CypherTypeOrder$_$callClinit = $rt_eraseClinit(oncius_CypherTypeOrder$); - oncius_CypherTypeOrder$__clinit_(); -}, -oncius_CypherTypeOrder$__clinit_ = () => { - let var$1; - var$1 = new oncius_CypherTypeOrder$; - oncius_CypherTypeOrder$_$callClinit(); - s_Enumeration__init_(var$1); - oncius_CypherTypeOrder$_MODULE$ = var$1; - oncius_CypherTypeOrder$_NOTHING = s_Enumeration_Value(var$1); - oncius_CypherTypeOrder$_NULL = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_BOOLEAN = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_STRING = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_INTEGER = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_FLOAT = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_DATE = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_LOCAL_TIME = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_ZONED_TIME = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_LOCAL_DATETIME = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_ZONED_DATETIME = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_DURATION = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_POINT0 = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_NODE = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_RELATIONSHIP = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_MAP = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_LIST = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_PATH = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION0 = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); - oncius_CypherTypeOrder$_ANY = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); -}, -oncius_CypherTypeOrder$_POINT = $this => { - oncius_CypherTypeOrder$_$callClinit(); - return oncius_CypherTypeOrder$_POINT0; -}, -oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION = $this => { - oncius_CypherTypeOrder$_$callClinit(); - return oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION0; -}, -sm_Ordering$BooleanOrdering = $rt_classWithoutFields(0), -sm_Ordering$Boolean$ = $rt_classWithoutFields(), -sm_Ordering$Boolean$_MODULE$ = null, -sm_Ordering$Boolean$__clinit_ = () => { - sm_Ordering$Boolean$_MODULE$ = new sm_Ordering$Boolean$; -}, -sm_Ordering$Boolean$_compare = ($this, $x, $y) => { - return jl_Boolean_compare(sr_BoxesRunTime_unboxToBoolean($x), sr_BoxesRunTime_unboxToBoolean($y)); -}, -oncie_UnsignedDecimalIntegerLiteral$$anon$2 = $rt_classWithoutFields(oncie_UnsignedDecimalIntegerLiteral), -oncie_UnsignedDecimalIntegerLiteral$$anon$2_literalLength = $this => { - return $this.$stringVal0.$nativeString.length; -}; -function oncias_Symbol() { - let a = this; jl_Object.call(a); - a.$name12 = null; - a.$types1 = null; - a.$definition = null; - a.$uses = null; - a.$unionSymbol = 0; -} -let oncias_Symbol_references = $this => { - return $this.$uses.$incl($this.$definition); -}, -oncias_Symbol_toString = $this => { - let var$1, var$2, var$3, var$4; - var$1 = oncias_SymbolUse_uniqueName($this.$definition); - var$2 = sc_AbstractIterable_mkString($this.$uses.$map(new oncias_Symbol$toString$lambda$_14_0), $rt_s(41)); - var$3 = oncius_TypeSpec_toShortString($this.$types1); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$1 = jl_StringBuilder_append(var$4, var$1); - jl_AbstractStringBuilder_append0(var$1, 40); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, var$2), $rt_s(5503)), var$3); - return jl_AbstractStringBuilder_toString(var$4); -}, -oncias_Symbol_productArity = $this => { - return 5; -}, -oncias_Symbol_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$name12; - case 1: - return $this.$types1; - case 2: - return $this.$definition; - case 3: - return $this.$uses; - case 4: - return jl_Boolean_valueOf($this.$unionSymbol); - default: - } - return sr_Statics_ioobe($x$1); -}, -oncias_Symbol_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncil_LabelExpressionPredicate__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncil_LabelExpressionPredicate(); + oncil_LabelExpressionPredicate__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; }, -oncias_Symbol_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5504))), sr_Statics_anyHash($this.$name12)), sr_Statics_anyHash($this.$types1)), sr_Statics_anyHash($this.$definition)), sr_Statics_anyHash($this.$uses)), !$this.$unionSymbol ? 1237 : 1231), 5); +oncil_LabelExpressionPredicate$ = $rt_classWithoutFields(), +oncil_LabelExpressionPredicate$_MODULE$ = null, +oncil_LabelExpressionPredicate$_isParenthesizedDefault = 0, +oncil_LabelExpressionPredicate$__clinit_ = () => { + oncil_LabelExpressionPredicate$_MODULE$ = new oncil_LabelExpressionPredicate$; + oncil_LabelExpressionPredicate$_isParenthesizedDefault = 0; }, -oncias_Symbol_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_Symbol) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$unionSymbol != $x$1.$unionSymbol) - break b; - d: { - var$2 = $this.$name12; - var$3 = $x$1.$name12; - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$types1; - var$3 = $x$1.$types1; - if (var$2 !== null) { - if (!oncius_TypeSpec_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$definition; - var$3 = $x$1.$definition; - if (var$2 !== null) { - if (!oncias_SymbolUse_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$uses; - $x$1 = $x$1.$uses; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; +oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2_applyOrElse0 = ($this, $x1, $default) => { + let $match1, $match2, $withStar; + if ($x1 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x1); + if (!$x1.$lengthCompare(2)) { + $match1 = $x1.$apply1(0); + $match2 = $x1.$apply1(1); + if ($match1 instanceof oncia_Match) { + $default = $match1; + if ($match2 instanceof oncia_Match) { + $match1 = $match2; + if ($default.$optional1 && !$match1.$optional1) { + $withStar = new oncia_With; + $match1 = new oncia_ReturnItems; + $x1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_($match1, 1, $x1, s_None$_MODULE$, $default.$position96); + $x1 = s_None$_MODULE$; + oncia_With__init_($withStar, 0, $match1, $x1, $x1, $x1, $x1, oncia_DefaultWith$_MODULE$, $default.$position96); + return sci_$colon$colon__init_($default, sci_$colon$colon__init_($withStar, sci_Nil$_MODULE$)); } - if ($x$1 !== null) - break b; } } - var$4 = 1; - break a; } - var$4 = 0; } - return var$4; -}; -function onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0() { - jl_Object.call(this); - this.$_061 = null; -} -let onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0_apply = var$0 => { - return var$0.$_061; -}; -function onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1() { - jl_Object.call(this); - this.$_0619 = null; -} -let onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1_apply = (var$0, var$1) => { - return var$1.$apply2(var$0.$_0619); -}; -function oncia_SingleQuery$semanticCheckAbstract$lambda$_66_0() { - let a = this; jl_Object.call(a); - a.$_0917 = null; - a.$_1318 = null; -} -let oncia_SingleQuery$semanticCheckAbstract$lambda$_66_0_apply = var$0 => { - return var$0.$_0917.$apply2(var$0.$_1318); -}, -oncias_package$ = $rt_classWithoutFields(), -oncias_package$_MODULE$ = null, -oncias_package$_$callClinit = () => { - oncias_package$_$callClinit = $rt_eraseClinit(oncias_package$); - oncias_package$__clinit_(); -}, -oncias_package$__clinit_ = () => { - let var$1; - var$1 = new oncias_package$; - oncias_package$_$callClinit(); - oncias_package$_MODULE$ = var$1; -}, -oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck = ($this, $f) => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_fromFunction(oncias_SemanticCheck$_MODULE$, $f); -}, -oncias_package$_liftSemanticEitherFunc = ($this, $func) => { - let var$2; - var$2 = new oncias_package$$liftSemanticEitherFunc$lambda$_2_0; - var$2.$_0518 = $func; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($this, var$2); -}, -oncias_package$_liftSemanticErrorDefsFunc = ($this, $func) => { - let var$2; - var$2 = new oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0; - var$2.$_0196 = $func; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($this, var$2); -}, -oncias_package$_liftSemanticErrorDefs = ($this, $errors) => { - let var$2; - var$2 = new oncias_package$$liftSemanticErrorDefs$lambda$_5_0; - var$2.$_0802 = $errors; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($this, var$2); -}, -oncias_package$_liftSemanticErrorDef = ($this, $error) => { - let var$2, var$3; - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncias_package$$liftSemanticErrorDef$lambda$_6_0; - var$3.$_0395 = $error; - return oncias_SemanticCheck$_fromFunction(var$2, var$3); -}, -oncias_package$_liftSemanticErrorDefOption = ($this, $error) => { - let var$2, var$3; - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncias_package$$liftSemanticErrorDefOption$lambda$_7_0; - var$3.$_0774 = $error; - return oncias_SemanticCheck$_fromFunction(var$2, var$3); -}, -oncias_package$_optionSemanticChecking = ($this, $option) => { - return $option; -}; -function oncias_SemanticState$$recordCurrentScope$lambda$_9_0() { - jl_Object.call(this); - this.$_0848 = null; -} -let oncias_SemanticState$$recordCurrentScope$lambda$_9_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0848; - oncias_SemanticState$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_recordCurrentScope(var$1, var$2)); -}; -function oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0() { - jl_Object.call(this); - this.$_0282 = null; -} -let oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0282; - if (var$1 instanceof oncia_Return) - var$1 = oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$2, var$1); - return var$1; -}, -su_Try = $rt_classWithoutFields(); -function su_Success() { - su_Try.call(this); - this.$value36 = null; -} -let su_Success_getOrElse = ($this, $default) => { - return $this.$value36; -}, -su_Success__init_0 = ($this, $value) => { - $this.$value36 = $value; -}, -su_Success__init_ = var_0 => { - let var_1 = new su_Success(); - su_Success__init_0(var_1, var_0); - return var_1; -}, -suc_NonFatal$ = $rt_classWithoutFields(), -suc_NonFatal$_MODULE$ = null, -suc_NonFatal$__clinit_ = () => { - suc_NonFatal$_MODULE$ = new suc_NonFatal$; -}, -suc_NonFatal$_unapply = ($this, $t) => { - if (!(!($t instanceof jl_VirtualMachineError ? 1 : $t instanceof jl_ThreadDeath ? 1 : $t instanceof jl_InterruptedException ? 1 : $t instanceof jl_LinkageError ? 1 : !($t instanceof suc_ControlThrowable) ? 0 : 1) ? 1 : 0)) - return s_None$_MODULE$; - return s_Some__init_($t); -}; -function su_Failure() { - su_Try.call(this); - this.$exception0 = null; -} -let su_Failure_getOrElse = ($this, $default) => { - return $default.$_0347; -}; -function scc_AsScalaExtensions$ListHasAsScala() { - let a = this; jl_Object.call(a); - a.$l = null; - a.$$outer67 = null; -} -let scc_AsScalaExtensions$ListHasAsScala_asScala = $this => { - return scc_AsScalaConverters_asScala$(sjj_CollectionConverters$_MODULE$, $this.$l); -}, -oncia_IfExistsDo = $rt_classWithoutFields(0), -oncia_IfExistsInvalidSyntax$ = $rt_classWithoutFields(), -oncia_IfExistsInvalidSyntax$_MODULE$ = null, -oncia_IfExistsInvalidSyntax$_$callClinit = () => { - oncia_IfExistsInvalidSyntax$_$callClinit = $rt_eraseClinit(oncia_IfExistsInvalidSyntax$); - oncia_IfExistsInvalidSyntax$__clinit_(); -}, -oncia_IfExistsInvalidSyntax$__clinit_ = () => { - let var$1; - var$1 = new oncia_IfExistsInvalidSyntax$; - oncia_IfExistsInvalidSyntax$_$callClinit(); - oncia_IfExistsInvalidSyntax$_MODULE$ = var$1; -}, -oncia_IfExistsInvalidSyntax$_productArity = $this => { - return 0; -}, -oncia_IfExistsInvalidSyntax$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_IfExistsInvalidSyntax$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_IfExistsInvalidSyntax$_hashCode = $this => { - return (-146745023); -}, -oncia_IfExistsInvalidSyntax$_toString = $this => { - return $rt_s(5505); -}, -oncia_IfExistsReplace$ = $rt_classWithoutFields(), -oncia_IfExistsReplace$_MODULE$ = null, -oncia_IfExistsReplace$_$callClinit = () => { - oncia_IfExistsReplace$_$callClinit = $rt_eraseClinit(oncia_IfExistsReplace$); - oncia_IfExistsReplace$__clinit_(); -}, -oncia_IfExistsReplace$__clinit_ = () => { - let var$1; - var$1 = new oncia_IfExistsReplace$; - oncia_IfExistsReplace$_$callClinit(); - oncia_IfExistsReplace$_MODULE$ = var$1; -}, -oncia_IfExistsReplace$_productArity = $this => { - return 0; -}, -oncia_IfExistsReplace$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_IfExistsReplace$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_IfExistsReplace$_hashCode = $this => { - return (-823146373); -}, -oncia_IfExistsReplace$_toString = $this => { - return $rt_s(5506); -}, -oncia_IfExistsDoNothing$ = $rt_classWithoutFields(), -oncia_IfExistsDoNothing$_MODULE$ = null, -oncia_IfExistsDoNothing$_$callClinit = () => { - oncia_IfExistsDoNothing$_$callClinit = $rt_eraseClinit(oncia_IfExistsDoNothing$); - oncia_IfExistsDoNothing$__clinit_(); -}, -oncia_IfExistsDoNothing$__clinit_ = () => { - let var$1; - var$1 = new oncia_IfExistsDoNothing$; - oncia_IfExistsDoNothing$_$callClinit(); - oncia_IfExistsDoNothing$_MODULE$ = var$1; -}, -oncia_IfExistsDoNothing$_productArity = $this => { - return 0; -}, -oncia_IfExistsDoNothing$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_IfExistsDoNothing$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_IfExistsDoNothing$_hashCode = $this => { - return (-993652535); -}, -oncia_IfExistsDoNothing$_toString = $this => { - return $rt_s(5507); -}, -oncia_IfExistsThrowError$ = $rt_classWithoutFields(), -oncia_IfExistsThrowError$_MODULE$ = null, -oncia_IfExistsThrowError$_$callClinit = () => { - oncia_IfExistsThrowError$_$callClinit = $rt_eraseClinit(oncia_IfExistsThrowError$); - oncia_IfExistsThrowError$__clinit_(); -}, -oncia_IfExistsThrowError$__clinit_ = () => { - let var$1; - var$1 = new oncia_IfExistsThrowError$; - oncia_IfExistsThrowError$_$callClinit(); - oncia_IfExistsThrowError$_MODULE$ = var$1; -}, -oncia_IfExistsThrowError$_productArity = $this => { - return 0; -}, -oncia_IfExistsThrowError$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_IfExistsThrowError$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_IfExistsThrowError$_hashCode = $this => { - return (-1449927781); -}, -oncia_IfExistsThrowError$_toString = $this => { - return $rt_s(5508); -}; -function onciafn_DecorateTuple$AsScala() { - let a = this; jl_Object.call(a); - a.$op = null; - a.$$outer64 = null; -} -let onciafn_DecorateTuple$AsScala_asScala = $this => { - let var$1; - var$1 = $this.$op.$_0307; - if (var$1.$right2 !== null) { - s_package$_$callClinit(); - var$1 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), var$1.$right2); - } else { + if ($x1 !== null) { s_package$_$callClinit(); - var$1 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), var$1.$left4); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x1); + if (!$x1.$lengthCompare(2)) + return sci_$colon$colon__init_($x1.$apply1(0), sci_Nil$_MODULE$); } - return var$1; + return sr_Statics_pfMarker; }, -onciafn_Neo4jASTFactory$asOptionsAst$lambda$_252_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$asOptionsAst$lambda$_252_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciafn_TupleConverter$_$callClinit(); - return onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1)); +oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2_applyOrElse = ($this, $x, $default) => { + return oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2_applyOrElse0($this, $x, $default); }; -function oncia_OptionsParam() { - jl_Object.call(this); - this.$parameter3 = null; +function oncia_CallClause() { + let a = this; jl_Object.call(a); + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier18 = null; + a.$SetExtractor$module3 = null; } -let oncia_OptionsParam_productPrefix = $this => { - return $rt_s(5509); +let oncia_CallClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncia_OptionsParam_productArity = $this => { +oncia_CallClause_shouldRunQPPChecks = $this => { return 1; }, -oncia_OptionsParam_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$parameter3; - default: - } - return sr_Statics_ioobe($x$1); +oncia_CallClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncia_OptionsParam_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_CallClause_dup0 = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncia_OptionsParam_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_CallClause_asCanonicalStringVal = $this => { + return $this.$toString(); }, -oncia_OptionsParam_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_CallClause_foldedOver = $this => { + return $this; }, -oncia_OptionsParam_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_OptionsParam) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$parameter3; - $x$1 = $x$1.$parameter3; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_OptionsParam)) - break b; +oncia_CallClause_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_CallClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier18; +}, +oncia_CallClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module3 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module3 !== null) + break a; + $this.$SetExtractor$module3 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - var$3 = 1; - break a; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - var$3 = 0; + jl_Object_monitorExitSync($this); } - return var$3; -}, -oncia_OptionsParam__init_0 = ($this, $parameter) => { - $this.$parameter3 = $parameter; -}, -oncia_OptionsParam__init_ = var_0 => { - let var_1 = new oncia_OptionsParam(); - oncia_OptionsParam__init_0(var_1, var_0); - return var_1; -}, -oncia_CreateConstraint = $rt_classWithoutFields(0), -oncia_CreateConstraint_semanticCheck$ = $$this => { - let var$2, var$3, var$4; - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = $$this.$variable2(); - oncius_package$_$callClinit(); - var$2 = oncias_package$_liftSemanticEitherFunc(var$2, $$this.$declareVariable(var$3, ($$this.$entityType1()).$invariant())); - oncias_SemanticExpressionCheck$_$callClinit(); - var$4 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $$this.$properties0())); - var$2 = $$this.$properties0(); - var$3 = new oncia_CreateConstraint$semanticCheck$lambda$_28_0; - var$3.$_0414 = $$this; - return oncias_SemanticCheck_chain$(var$4, $$this.$semanticCheckFold(var$2, var$3)); + return $this.$SetExtractor$module3; }, -oncia_CreateConstraint_checkIfExistsDoAndOptions$ = $$this => { - let var$2, var$3, var$4; - var$2 = $$this.$ifExistsDo(); - oncia_IfExistsInvalidSyntax$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$2)) - var$3 = 1; - else { - oncia_IfExistsReplace$_$callClinit(); - var$3 = !jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$2) ? 0 : 1; - } - if (!var$3) { - var$2 = ($$this.$constraintType()).$description(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), $rt_s(5510)); - $$this = $$this.$checkOptionsMap(jl_AbstractStringBuilder_toString(var$4), $$this.$options()); - } else { - var$2 = ($$this.$constraintType()).$description(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5302)), var$2), $rt_s(5511)); - $$this = $$this.$error2(jl_AbstractStringBuilder_toString(var$4), $$this.$position()); - } - return $$this; +oncia_CallClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier18 = $x$1; }, -oncia_CreateConstraint_anyPropertyValueType$1 = ($this, $pt) => { - let var$2; - while (!($pt instanceof oncius_PropertyValueType)) { - if (!($pt instanceof oncius_ListType)) { - if (!($pt instanceof oncius_ClosedDynamicUnionType)) - return 0; - var$2 = $pt.$sortedInnerTypes; - $pt = new oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0; - $pt.$_0647 = $this; - return sci_List_exists(sci_List_map(var$2, $pt), new oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1); - } - $pt = $pt.$innerType; - } - return 1; +oncia_CallClause_name = $this => { + return $rt_s(4039); }, -oncia_CreateConstraint_additionalErrorInfo$1 = $pt => { - let var$2, $inner; - var$2 = 0; - $inner = null; - if ($pt instanceof oncius_ListType) { - var$2 = 1; - $inner = $pt; - if ($inner.$innerType instanceof oncius_ListType) - return $rt_s(5512); - } - if (var$2 && $inner.$innerType instanceof oncius_ClosedDynamicUnionType) - return $rt_s(5513); - if (var$2 && $inner.$innerType.$isNullable()) - return $rt_s(5514); - if ($pt instanceof oncius_ClosedDynamicUnionType) { - $pt = $pt; - if (sci_List_exists($pt.$sortedInnerTypes, new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0)) - return s_Option_getOrElse(sci_List_find(sci_List_map(sci_List_filter($pt.$sortedInnerTypes, new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1), new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2), new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3), new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4); - } - return $rt_s(4); +oncia_CallClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncia_CreateConstraint_$init$ = $$this => { - let var$2, var$3, var$4, var$5, var$6; - s_package$_$callClinit(); - var$2 = s_package$_List(s_package$_MODULE$); - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncius_CypherType, 22); - var$5 = var$4.data; - var$6 = new oncius_BooleanType; - onciu_InputPosition$_$callClinit(); - oncius_BooleanType__init_0(var$6, 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[0] = var$6; - var$5[1] = oncius_StringType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[2] = oncius_IntegerType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[3] = oncius_FloatType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[4] = oncius_DateType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[5] = oncius_LocalTimeType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[6] = oncius_ZonedTimeType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[7] = oncius_LocalDateTimeType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[8] = oncius_ZonedDateTimeType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[9] = oncius_DurationType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[10] = oncius_PointType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[11] = oncius_ListType__init_(oncius_BooleanType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[12] = oncius_ListType__init_(oncius_StringType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[13] = oncius_ListType__init_(oncius_IntegerType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[14] = oncius_ListType__init_(oncius_FloatType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[15] = oncius_ListType__init_(oncius_DateType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[16] = oncius_ListType__init_(oncius_LocalTimeType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[17] = oncius_ListType__init_(oncius_ZonedTimeType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[18] = oncius_ListType__init_(oncius_LocalDateTimeType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[19] = oncius_ListType__init_(oncius_ZonedDateTimeType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[20] = oncius_ListType__init_(oncius_DurationType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$5[21] = oncius_ListType__init_(oncius_PointType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - $$this.$org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq(var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$3, var$4))); +oncia_CallClause__init_ = $this => { + oncia_Clause_$init$($this); }; -function oncia_CreateConstraintCommand() { - let a = this; jl_Object.call(a); - a.$variable19 = null; - a.$entityName1 = null; - a.$properties11 = null; - a.$name35 = null; - a.$constraintType3 = null; - a.$ifExistsDo8 = null; - a.$options3 = null; - a.$useGraph5 = null; - a.$position178 = null; - a.$entityType2 = null; - a.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes0 = null; +function oncia_UnresolvedCall() { + let a = this; oncia_CallClause.call(a); + a.$procedureNamespace = null; + a.$procedureName1 = null; + a.$declaredArguments = null; + a.$declaredResult = null; + a.$yieldAll2 = 0; + a.$optional0 = 0; + a.$position57 = null; } -let oncia_CreateConstraintCommand_returnColumns = $this => { - return oncia_SchemaCommand_returnColumns$($this); -}, -oncia_CreateConstraintCommand_checkOptionsMap = ($this, $schemaString, $options) => { - return oncia_SchemaCommand_checkOptionsMap$($this, $schemaString, $options); -}, -oncia_CreateConstraintCommand_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_CreateConstraintCommand_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_CreateConstraintCommand_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_CreateConstraintCommand_foldedOver = $this => { - return $this; -}, -oncia_CreateConstraintCommand_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_CreateConstraintCommand_org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes0 = $x$1; -}, -oncia_CreateConstraintCommand_variable = $this => { - return $this.$variable19; -}, -oncia_CreateConstraintCommand_properties = $this => { - return $this.$properties11; -}, -oncia_CreateConstraintCommand_constraintType = $this => { - return $this.$constraintType3; -}, -oncia_CreateConstraintCommand_ifExistsDo = $this => { - return $this.$ifExistsDo8; +let oncia_UnresolvedCall_yieldAll = $this => { + return $this.$yieldAll2; }, -oncia_CreateConstraintCommand_options = $this => { - return $this.$options3; +oncia_UnresolvedCall_position = $this => { + return $this.$position57; }, -oncia_CreateConstraintCommand_position = $this => { - return $this.$position178; +oncia_UnresolvedCall_returnVariables = $this => { + return oncia_ReturnItems$ReturnVariables__init_(0, s_Option_getOrElse(s_Option_map($this.$declaredResult, new oncia_UnresolvedCall$returnVariables$lambda$_17_0), new oncia_UnresolvedCall$returnVariables$lambda$_17_1)); }, -oncia_CreateConstraintCommand_entityType = $this => { - return $this.$entityType2; +oncia_UnresolvedCall_clauseSpecificSemanticCheck = $this => { + let $argumentCheck, $resultsCheck, var$3, $invalidExpressionsCheck; + $argumentCheck = s_Option_getOrElse(s_Option_map($this.$declaredArguments, new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0), new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1); + $resultsCheck = s_Option_getOrElse(s_Option_map($this.$declaredResult, new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2), new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3); + var$3 = $this.$declaredArguments; + $invalidExpressionsCheck = new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4; + $invalidExpressionsCheck.$_0601 = $this; + $invalidExpressionsCheck = s_Option_getOrElse(s_Option_map(var$3, $invalidExpressionsCheck), new oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5); + return oncias_SemanticCheck_chain$($argumentCheck.$chain($resultsCheck), $invalidExpressionsCheck); }, -oncia_CreateConstraintCommand_semanticCheck = $this => { - return oncias_SemanticCheck_chain$(oncia_CreateConstraint_checkIfExistsDoAndOptions$($this), oncia_CreateConstraint_semanticCheck$($this)); +oncia_UnresolvedCall_containsNoUpdates = $this => { + return 1; }, -oncia_CreateConstraintCommand_copy = ($this, $variable, $entityName, $properties, $name, $constraintType, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateConstraintCommand__init_($variable, $entityName, $properties, $name, $constraintType, $ifExistsDo, $options, $useGraph, $position); +oncia_UnresolvedCall_copy = ($this, $procedureNamespace, $procedureName, $declaredArguments, $declaredResult, $yieldAll, $optional, $position) => { + return oncia_UnresolvedCall__init_0($procedureNamespace, $procedureName, $declaredArguments, $declaredResult, $yieldAll, $optional, $position); }, -oncia_CreateConstraintCommand_productPrefix = $this => { - return $rt_s(5515); +oncia_UnresolvedCall_productPrefix = $this => { + return $rt_s(4100); }, -oncia_CreateConstraintCommand_productArity = $this => { - return 8; +oncia_UnresolvedCall_productArity = $this => { + return 6; }, -oncia_CreateConstraintCommand_productElement = ($this, $x$1) => { +oncia_UnresolvedCall_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$variable19; + return $this.$procedureNamespace; case 1: - return $this.$entityName1; + return $this.$procedureName1; case 2: - return $this.$properties11; + return $this.$declaredArguments; case 3: - return $this.$name35; + return $this.$declaredResult; case 4: - return $this.$constraintType3; + return jl_Boolean_valueOf($this.$yieldAll2); case 5: - return $this.$ifExistsDo8; - case 6: - return $this.$options3; - case 7: - return $this.$useGraph5; + return jl_Boolean_valueOf($this.$optional0); default: } return sr_Statics_ioobe($x$1); }, -oncia_CreateConstraintCommand_productIterator = $this => { +oncia_UnresolvedCall_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateConstraintCommand_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_UnresolvedCall_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4100))), sr_Statics_anyHash($this.$procedureNamespace)), sr_Statics_anyHash($this.$procedureName1)), sr_Statics_anyHash($this.$declaredArguments)), sr_Statics_anyHash($this.$declaredResult)), !$this.$yieldAll2 ? 1237 : 1231), !$this.$optional0 ? 1237 : 1231), 6); }, -oncia_CreateConstraintCommand_toString = $this => { +oncia_UnresolvedCall_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateConstraintCommand_equals = ($this, $x$1) => { +oncia_UnresolvedCall_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateConstraintCommand) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_UnresolvedCall) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll2 != $x$1.$yieldAll2) + break b; + if ($this.$optional0 != $x$1.$optional0) break b; c: { - $x$1 = $x$1; - var$2 = $this.$variable19; - var$3 = $x$1.$variable19; + var$2 = $this.$procedureNamespace; + var$3 = $x$1.$procedureNamespace; if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) + if (!oncie_Namespace_equals(var$2, var$3)) break b; else break c; @@ -206074,10 +95234,10 @@ oncia_CreateConstraintCommand_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$entityName1; - var$3 = $x$1.$entityName1; + var$2 = $this.$procedureName1; + var$3 = $x$1.$procedureName1; if (var$2 !== null) { - if (!var$2.$equals(var$3)) + if (!oncie_ProcedureName_equals(var$2, var$3)) break b; else break d; @@ -206086,8 +95246,8 @@ oncia_CreateConstraintCommand_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$properties11; - var$3 = $x$1.$properties11; + var$2 = $this.$declaredArguments; + var$3 = $x$1.$declaredArguments; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -206098,66 +95258,18 @@ oncia_CreateConstraintCommand_equals = ($this, $x$1) => { break b; } f: { - var$2 = $this.$name35; - var$3 = $x$1.$name35; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$constraintType3; - var$3 = $x$1.$constraintType3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$2 = $this.$ifExistsDo8; - var$3 = $x$1.$ifExistsDo8; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break h; - } - if (var$3 !== null) - break b; - } - i: { - var$2 = $this.$options3; - var$3 = $x$1.$options3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break i; - } - if (var$3 !== null) - break b; - } - j: { - var$3 = $this.$useGraph5; - $x$1 = $x$1.$useGraph5; + var$3 = $this.$declaredResult; + $x$1 = $x$1.$declaredResult; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break j; + break f; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_CreateConstraintCommand)) + if (!($this instanceof oncia_UnresolvedCall)) break b; } var$4 = 1; @@ -206167,663 +95279,647 @@ oncia_CreateConstraintCommand_equals = ($this, $x$1) => { } return var$4; }, -oncia_CreateConstraintCommand_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CreateConstraintCommand_withGraph = ($this, $useGraph) => { - return oncia_CreateConstraintCommand_copy($this, $this.$variable19, $this.$entityName1, $this.$properties11, $this.$name35, $this.$constraintType3, $this.$ifExistsDo8, $this.$options3, $useGraph, $this.$position178); -}, -oncia_CreateConstraintCommand__init_0 = ($this, $variable, $entityName, $properties, $name, $constraintType, $ifExistsDo, $options, $useGraph, $position) => { - $this.$variable19 = $variable; - $this.$entityName1 = $entityName; - $this.$properties11 = $properties; - $this.$name35 = $name; - $this.$constraintType3 = $constraintType; - $this.$ifExistsDo8 = $ifExistsDo; - $this.$options3 = $options; - $this.$useGraph5 = $useGraph; - $this.$position178 = $position; - oncia_CreateConstraint_$init$($this); - if ($entityName instanceof oncie_LabelName) { - oncius_package$_$callClinit(); - $variable = oncius_package$_CTNode(oncius_package$_MODULE$); - } else { - if (!($entityName instanceof oncie_RelTypeName)) { - if ($entityName instanceof oncie_DynamicLabelExpression) { - $variable = new jl_IllegalStateException; - jl_Throwable__init_0($variable, $rt_s(5516)); - $rt_throw($variable); - } - if (!($entityName instanceof oncie_DynamicRelTypeExpression)) - $rt_throw(s_MatchError__init_($entityName)); - $variable = new jl_IllegalStateException; - jl_Throwable__init_0($variable, $rt_s(5517)); - $rt_throw($variable); - } - oncius_package$_$callClinit(); - $variable = oncius_package$_CTRelationship(oncius_package$_MODULE$); - } - $this.$entityType2 = $variable; -}, -oncia_CreateConstraintCommand__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { - let var_9 = new oncia_CreateConstraintCommand(); - oncia_CreateConstraintCommand__init_0(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); - return var_9; -}, -oncia_CreateConstraintType = $rt_classWithoutFields(0), -oncia_NodePropertyUniqueness$ = $rt_classWithoutFields(), -oncia_NodePropertyUniqueness$_MODULE$ = null, -oncia_NodePropertyUniqueness$_description = null, -oncia_NodePropertyUniqueness$_predicate = null, -oncia_NodePropertyUniqueness$__clinit_ = () => { - oncia_NodePropertyUniqueness$_MODULE$ = new oncia_NodePropertyUniqueness$; - oncia_NodePropertyUniqueness$_description = $rt_s(5518); - oncia_NodePropertyUniqueness$_predicate = $rt_s(5519); -}, -oncia_NodePropertyUniqueness$_description0 = $this => { - return oncia_NodePropertyUniqueness$_description; -}, -oncia_NodePropertyUniqueness$_productArity = $this => { - return 0; -}, -oncia_NodePropertyUniqueness$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_NodePropertyUniqueness$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NodePropertyUniqueness$_hashCode = $this => { - return 1302024991; -}, -oncia_NodePropertyUniqueness$_toString = $this => { - return $rt_s(5520); -}, -oncia_RelationshipPropertyUniqueness$ = $rt_classWithoutFields(), -oncia_RelationshipPropertyUniqueness$_MODULE$ = null, -oncia_RelationshipPropertyUniqueness$_description = null, -oncia_RelationshipPropertyUniqueness$_predicate = null, -oncia_RelationshipPropertyUniqueness$__clinit_ = () => { - oncia_RelationshipPropertyUniqueness$_MODULE$ = new oncia_RelationshipPropertyUniqueness$; - oncia_RelationshipPropertyUniqueness$_description = $rt_s(5521); - oncia_RelationshipPropertyUniqueness$_predicate = $rt_s(5519); -}, -oncia_RelationshipPropertyUniqueness$_description0 = $this => { - return oncia_RelationshipPropertyUniqueness$_description; -}, -oncia_RelationshipPropertyUniqueness$_productArity = $this => { - return 0; -}, -oncia_RelationshipPropertyUniqueness$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RelationshipPropertyUniqueness$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelationshipPropertyUniqueness$_hashCode = $this => { - return (-885220907); -}; -let oncia_RelationshipPropertyUniqueness$_toString = $this => { - return $rt_s(5522); -}, -oncia_NodeKey$ = $rt_classWithoutFields(), -oncia_NodeKey$_MODULE$ = null, -oncia_NodeKey$__clinit_ = () => { - oncia_NodeKey$_MODULE$ = new oncia_NodeKey$; -}, -oncia_RelationshipKey$ = $rt_classWithoutFields(), -oncia_RelationshipKey$_MODULE$ = null, -oncia_RelationshipKey$__clinit_ = () => { - oncia_RelationshipKey$_MODULE$ = new oncia_RelationshipKey$; -}, -oncia_NodePropertyExistence$ = $rt_classWithoutFields(), -oncia_NodePropertyExistence$_MODULE$ = null, -oncia_NodePropertyExistence$_description = null, -oncia_NodePropertyExistence$_predicate = null, -oncia_NodePropertyExistence$__clinit_ = () => { - oncia_NodePropertyExistence$_MODULE$ = new oncia_NodePropertyExistence$; - oncia_NodePropertyExistence$_description = $rt_s(5523); - oncia_NodePropertyExistence$_predicate = $rt_s(438); -}, -oncia_NodePropertyExistence$_description0 = $this => { - return oncia_NodePropertyExistence$_description; -}, -oncia_NodePropertyExistence$_productArity = $this => { - return 0; +oncia_UnresolvedCall__init_ = ($this, $procedureNamespace, $procedureName, $declaredArguments, $declaredResult, $yieldAll, $optional, $position) => { + $this.$procedureNamespace = $procedureNamespace; + $this.$procedureName1 = $procedureName; + $this.$declaredArguments = $declaredArguments; + $this.$declaredResult = $declaredResult; + $this.$yieldAll2 = $yieldAll; + $this.$optional0 = $optional; + $this.$position57 = $position; + oncia_CallClause__init_($this); }, -oncia_NodePropertyExistence$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_UnresolvedCall__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncia_UnresolvedCall(); + oncia_UnresolvedCall__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; }, -oncia_NodePropertyExistence$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncirr_wrapOptionalCallProcedure$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncirr_wrapOptionalCallProcedure$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncia_AliasedReturnItem__init_(oncie_Variable_copyId(var$1), oncie_Variable_copyId(var$1), var$1.$position4); }, -oncia_NodePropertyExistence$_hashCode = $this => { - return 863637995; +oncia_Return$ = $rt_classWithoutFields(), +oncia_Return$_MODULE$ = null, +oncia_Return$__clinit_ = () => { + oncia_Return$_MODULE$ = new oncia_Return$; }, -oncia_NodePropertyExistence$_toString = $this => { - return $rt_s(5524); +oncia_Return$_apply = ($this, $returnItems, $pos) => { + let var$3, var$4; + var$3 = new oncia_Return; + var$4 = s_None$_MODULE$; + oncia_Return__init_(var$3, 0, $returnItems, var$4, var$4, var$4, oncia_Return$_apply$default$6($this), 0, 0, $pos); + return var$3; }, -oncia_RelationshipPropertyExistence$ = $rt_classWithoutFields(), -oncia_RelationshipPropertyExistence$_MODULE$ = null, -oncia_RelationshipPropertyExistence$_description = null, -oncia_RelationshipPropertyExistence$_predicate = null, -oncia_RelationshipPropertyExistence$__clinit_ = () => { - oncia_RelationshipPropertyExistence$_MODULE$ = new oncia_RelationshipPropertyExistence$; - oncia_RelationshipPropertyExistence$_description = $rt_s(5525); - oncia_RelationshipPropertyExistence$_predicate = $rt_s(438); +oncia_Return$_apply$default$6 = $this => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; }, -oncia_RelationshipPropertyExistence$_description0 = $this => { - return oncia_RelationshipPropertyExistence$_description; +oncia_ReturnItems$ = $rt_classWithoutFields(), +oncia_ReturnItems$_MODULE$ = null, +oncia_ReturnItems$_$callClinit = () => { + oncia_ReturnItems$_$callClinit = $rt_eraseClinit(oncia_ReturnItems$); + oncia_ReturnItems$__clinit_(); }, -oncia_RelationshipPropertyExistence$_productArity = $this => { - return 0; +oncia_ReturnItems$__clinit_ = () => { + let var$1; + var$1 = new oncia_ReturnItems$; + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems$_MODULE$ = var$1; }, -oncia_RelationshipPropertyExistence$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_SubqueryCall = $rt_classWithoutFields(0), +oncia_SubqueryCall_clauseSpecificSemanticCheck$ = $$this => { + let var$2, var$3, var$4, var$5; + a: { + var$2 = $$this.$innerQuery(); + if (var$2 instanceof oncia_SingleQuery) { + var$2 = var$2; + if ($$this.$optional()) { + var$2 = var$2.$clauses0.$head(); + if (!(var$2 instanceof oncia_UnresolvedCall)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + break a; + } + var$2 = var$2; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + var$4 = new oncia_SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0; + var$4.$_01054 = var$2; + var$2 = oncias_SemanticCheck_flatMap$(var$3, var$4); + break a; + } + } + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + var$2 = var$2.$chain($$this.$checkSubquery()); + oncias_OptionSemanticChecking$_$callClinit(); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$3 = $$this.$inTransactionsParameters(); + var$5 = new oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0; + var$5.$_0694 = $$this; + var$3 = oncias_SemanticCheck_chain$(var$2, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$3, var$5)); + if ($$this.$optional() && !($$this.$innerQuery()).$isReturning()) { + var$2 = new onciu_RedundantOptionalSubquery; + var$2.$position89 = $$this.$position(); + var$2 = $$this.$warn(var$2); + } else { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + var$5 = oncias_SemanticCheck_chain$(var$3, var$2); + var$2 = !s_Option_isEmpty($$this.$inTransactionsParameters()) ? s_None$_MODULE$ : oncia_SubqueryCall$_findTransactionalSubquery(oncia_SubqueryCall$_MODULE$, $$this.$innerQuery()); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$3 = new oncia_SubqueryCall$checkNoCallInTransactionsInsideRegularCall$lambda$_22_0; + var$3.$_0273 = $$this; + return oncias_SemanticCheck_chain$(var$5, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$2, var$3)); }, -oncia_RelationshipPropertyExistence$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_SubqueryCall_reportParams$ = $$this => { + return s_Option_flatMap($$this.$inTransactionsParameters(), new oncia_SubqueryCall$reportParams$lambda$_10_0); }, -oncia_RelationshipPropertyExistence$_hashCode = $this => { - return (-2116412299); +oncia_SubqueryCall_returnToOuterScope$ = ($$this, $outerScopeLocation) => { + let var$3; + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_SubqueryCall$returnToOuterScope$lambda$_14_0; + var$3.$_0727 = $outerScopeLocation; + return oncias_SemanticCheck$_fromFunction($$this, var$3); }, -oncia_RelationshipPropertyExistence$_toString = $this => { - return $rt_s(5526); +oncia_SubqueryCall_semanticCheckContinuation$ = ($$this, $previousScope, $outerScope) => { + $$this = oncias_package$_MODULE$; + $outerScope = new oncia_SubqueryCall$semanticCheckContinuation$lambda$_18_0; + $outerScope.$_0926 = $previousScope; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($$this, $outerScope); }; -function oncius_NothingType() { +function oncia_ScopeClauseSubqueryCall() { let a = this; jl_Object.call(a); - a.$covariant23 = null; - a.$invariant22 = null; - a.$position195 = null; - a.$parentType10 = null; - a.$toString28 = null; - a.$toCypherTypeString0 = null; - a.$isAbstract5 = 0; - a.$bitmap$028 = 0; + a.$innerQuery0 = null; + a.$isImportingAll = 0; + a.$importedVariables = null; + a.$inTransactionsParameters0 = null; + a.$optional2 = 0; + a.$position75 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier0 = null; + a.$SetExtractor$module19 = null; } -let oncius_NothingType_simplify = $this => { - return $this; +let oncia_ScopeClauseSubqueryCall_name = $this => { + return $rt_s(4039); }, -oncius_NothingType_coercibleTo = $this => { - return oncius_CypherType_coercibleTo$($this); +oncia_ScopeClauseSubqueryCall_clauseSpecificSemanticCheck = $this => { + return oncia_SubqueryCall_clauseSpecificSemanticCheck$($this); }, -oncius_NothingType_isAssignableFrom = ($this, $other) => { - return oncius_CypherType_isAssignableFrom$($this, $other); +oncia_ScopeClauseSubqueryCall_reportParams = $this => { + return oncia_SubqueryCall_reportParams$($this); }, -oncius_NothingType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq = ($this, $x$1) => { - $this.$isAbstract5 = $x$1; +oncia_ScopeClauseSubqueryCall_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { + return oncia_SubqueryCall_semanticCheckContinuation$($this, $previousScope, $outerScope); }, -oncius_NothingType_position = $this => { - return $this.$position195; +oncia_ScopeClauseSubqueryCall_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -oncius_NothingType_parentType = $this => { - return $this.$parentType10; +oncia_ScopeClauseSubqueryCall_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncius_NothingType_toString = $this => { - return $this.$toString28; +oncia_ScopeClauseSubqueryCall_shouldRunQPPChecks = $this => { + return 1; }, -oncius_NothingType_toCypherTypeString = $this => { - return $this.$toCypherTypeString0; +oncia_ScopeClauseSubqueryCall_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oncius_NothingType_sortOrder = $this => { - oncius_CypherTypeOrder$_$callClinit(); - return oncius_CypherTypeOrder$_NOTHING.$i; +oncia_ScopeClauseSubqueryCall_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncius_NothingType_isNullable = $this => { - return 0; +oncia_ScopeClauseSubqueryCall_warn = ($this, $notification) => { + return oncias_SemanticAnalysisTooling_warn$($this, $notification); }, -oncius_NothingType_description = $this => { - return $this.$toCypherTypeString0; +oncia_ScopeClauseSubqueryCall_asCanonicalStringVal = $this => { + return $this.$toString(); }, -oncius_NothingType_withIsNullable = ($this, $isNullable) => { +oncia_ScopeClauseSubqueryCall_foldedOver = $this => { return $this; }, -oncius_NothingType_isSubtypeOf = ($this, $otherCypherType) => { - return 1; +oncia_ScopeClauseSubqueryCall_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncius_NothingType_withPosition = ($this, $newPosition) => { - return oncius_NothingType_copy($this, $newPosition); +oncia_ScopeClauseSubqueryCall_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier0; }, -oncius_NothingType_covariant = $this => { +oncia_ScopeClauseSubqueryCall_SetExtractor = $this => { let var$1, $$je; - if (($this.$bitmap$028 & 1) << 24 >> 24) - return $this.$covariant23; - jl_Object_monitorEnterSync($this); - a: { - b: { + if ($this.$SetExtractor$module19 === null) { + jl_Object_monitorEnterSync($this); + a: { try { - if (!(($this.$bitmap$028 & 1) << 24 >> 24)) - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; + if ($this.$SetExtractor$module19 !== null) + break a; + $this.$SetExtractor$module19 = oncia_Clause$SetExtractor$__init_($this); break a; - - } - jl_Object_monitorExitSync($this); - return $this.$covariant23; - } - try { - $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5527))); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); -}, -oncius_NothingType_invariant = $this => { - let var$1, $$je; - if (($this.$bitmap$028 & 2) << 24 >> 24) - return $this.$invariant22; - jl_Object_monitorEnterSync($this); - a: { - b: { - try { - if (!(($this.$bitmap$028 & 2) << 24 >> 24)) - break b; } catch ($$e) { $$je = $rt_wrapException($$e); var$1 = $$je; - break a; } jl_Object_monitorExitSync($this); - return $this.$invariant22; - } - try { - $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5527))); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - + $rt_throw(var$1); } + jl_Object_monitorExitSync($this); } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); + return $this.$SetExtractor$module19; }, -oncius_NothingType_leastUpperBound = ($this, $other) => { - $other = new jl_UnsupportedOperationException; - jl_Throwable__init_0($other, $rt_s(5527)); - $rt_throw($other); +oncia_ScopeClauseSubqueryCall_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier0 = $x$1; }, -oncius_NothingType_greatestLowerBound = ($this, $other) => { - $other = new jl_UnsupportedOperationException; - jl_Throwable__init_0($other, $rt_s(5527)); - $rt_throw($other); +oncia_ScopeClauseSubqueryCall_innerQuery = $this => { + return $this.$innerQuery0; }, -oncius_NothingType_copy = ($this, $position) => { - return oncius_NothingType__init_($position); +oncia_ScopeClauseSubqueryCall_inTransactionsParameters = $this => { + return $this.$inTransactionsParameters0; }, -oncius_NothingType_productPrefix = $this => { - return $rt_s(5528); +oncia_ScopeClauseSubqueryCall_optional = $this => { + return $this.$optional2; }, -oncius_NothingType_productArity = $this => { - return 0; +oncia_ScopeClauseSubqueryCall_position = $this => { + return $this.$position75; }, -oncius_NothingType_productElement = ($this, $x$1) => { +oncia_ScopeClauseSubqueryCall_checkSubquery = $this => { + let var$1, var$2; + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + var$2 = new oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_75_0; + var$2.$_01026 = $this; + return oncias_SemanticCheck_flatMap$(var$1, var$2); +}, +oncia_ScopeClauseSubqueryCall_copy = ($this, $innerQuery, $isImportingAll, $importedVariables, $inTransactionsParameters, $optional, $position) => { + return oncia_ScopeClauseSubqueryCall__init_0($innerQuery, $isImportingAll, $importedVariables, $inTransactionsParameters, $optional, $position); +}, +oncia_ScopeClauseSubqueryCall_productPrefix = $this => { + return $rt_s(4101); +}, +oncia_ScopeClauseSubqueryCall_productArity = $this => { + return 5; +}, +oncia_ScopeClauseSubqueryCall_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$innerQuery0; + case 1: + return jl_Boolean_valueOf($this.$isImportingAll); + case 2: + return $this.$importedVariables; + case 3: + return $this.$inTransactionsParameters0; + case 4: + return jl_Boolean_valueOf($this.$optional2); + default: + } return sr_Statics_ioobe($x$1); }, -oncius_NothingType_productIterator = $this => { +oncia_ScopeClauseSubqueryCall_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncius_NothingType_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_ScopeClauseSubqueryCall_hashCode = $this => { + let var$1, var$2; + var$1 = sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4101))), sr_Statics_anyHash($this.$innerQuery0)); + var$2 = !$this.$isImportingAll ? 1237 : 1231; + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), sr_Statics_anyHash($this.$importedVariables)), sr_Statics_anyHash($this.$inTransactionsParameters0)), !$this.$optional2 ? 1237 : 1231), 5); }, -oncius_NothingType_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncius_NothingType) ? 0 : 1; - return var$2 && $this instanceof oncius_NothingType ? 1 : 0; +oncia_ScopeClauseSubqueryCall_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncius_NothingType_dup = ($this, $children) => { +oncia_ScopeClauseSubqueryCall_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ScopeClauseSubqueryCall) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$isImportingAll != $x$1.$isImportingAll) + break b; + if ($this.$optional2 != $x$1.$optional2) + break b; + c: { + var$2 = $this.$innerQuery0; + var$3 = $x$1.$innerQuery0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$importedVariables; + var$3 = $x$1.$importedVariables; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$inTransactionsParameters0; + $x$1 = $x$1.$inTransactionsParameters0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ScopeClauseSubqueryCall)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_ScopeClauseSubqueryCall_dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncius_NothingType__init_0 = ($this, $position) => { - $this.$position195 = $position; - oncius_CypherType_$init$($this); - $this.$parentType10 = $this; - $this.$toString28 = $rt_s(134); - $this.$toCypherTypeString0 = $rt_s(4523); +oncia_ScopeClauseSubqueryCall__init_ = ($this, $innerQuery, $isImportingAll, $importedVariables, $inTransactionsParameters, $optional, $position) => { + $this.$innerQuery0 = $innerQuery; + $this.$isImportingAll = $isImportingAll; + $this.$importedVariables = $importedVariables; + $this.$inTransactionsParameters0 = $inTransactionsParameters; + $this.$optional2 = $optional; + $this.$position75 = $position; + oncia_Clause_$init$($this); }, -oncius_NothingType__init_ = var_0 => { - let var_1 = new oncius_NothingType(); - oncius_NothingType__init_0(var_1, var_0); - return var_1; +oncia_ScopeClauseSubqueryCall__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_ScopeClauseSubqueryCall(); + oncia_ScopeClauseSubqueryCall__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}, +oncirr_expandCallWhere$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncirr_expandCallWhere$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + a: { + var$1 = var$1; + if (var$1 instanceof oncia_UnresolvedCall) { + var$2 = var$1; + var$3 = var$2.$declaredResult; + if (var$3 instanceof s_Some) { + var$3 = var$3.$value5; + if (var$3 !== null) { + var$4 = var$3.$where10; + if (var$4 instanceof s_Some) { + var$4 = var$4; + var$5 = var$4.$value5; + var$6 = s_None$_MODULE$; + var$7 = s_Some__init_(oncia_ProcedureResult_copy(var$3, var$3.$items2, var$6, var$3.$position162)); + var$1 = oncia_UnresolvedCall_copy(var$2, var$2.$procedureNamespace, var$2.$procedureName1, var$2.$declaredArguments, var$7, var$2.$yieldAll2, var$2.$optional0, var$2.$position57); + var$6 = new oncia_ReturnItems; + s_package$_$callClinit(); + var$8 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_(var$6, 1, var$8, s_None$_MODULE$, var$5.$position14); + var$3 = new oncia_With; + var$2 = s_None$_MODULE$; + oncia_With__init_(var$3, 0, var$6, var$2, var$2, var$2, var$4, oncia_DefaultWith$_MODULE$, var$5.$position14); + var$2 = sci_$colon$colon__init_(var$1, sci_$colon$colon__init_(var$3, sci_Nil$_MODULE$)); + break a; + } + } + } + } + var$2 = s_Some__init_(var$1); + } + return var$2; }; -function oncius_NullType() { +function oncia_Where() { let a = this; jl_Object.call(a); - a.$covariant24 = null; - a.$invariant23 = null; - a.$position136 = null; - a.$parentType20 = null; - a.$toString32 = null; - a.$toCypherTypeString21 = null; - a.$isAbstract11 = 0; - a.$bitmap$026 = 0; + a.$expression21 = null; + a.$position14 = null; } -let oncius_NullType_description = $this => { - return oncius_CypherType_description$($this); -}, -oncius_NullType_simplify = $this => { +let oncia_Where_foldedOver = $this => { return $this; }, -oncius_NullType_coercibleTo = $this => { - return oncius_CypherType_coercibleTo$($this); -}, -oncius_NullType_isAssignableFrom = ($this, $other) => { - return oncius_CypherType_isAssignableFrom$($this, $other); -}, -oncius_NullType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq = ($this, $x$1) => { - $this.$isAbstract11 = $x$1; -}, -oncius_NullType_position = $this => { - return $this.$position136; +oncia_Where_position = $this => { + return $this.$position14; }, -oncius_NullType_parentType = $this => { - return $this.$parentType20; +oncia_Where_semanticCheck = $this => { + oncia_Where$_$callClinit(); + return oncia_Where$_checkExpression(oncia_Where$_MODULE$, $this.$expression21); }, -oncius_NullType_toString = $this => { - return $this.$toString32; +oncia_Where_mapExpressions = ($this, $f) => { + return oncia_Where_copy($this, $f.$apply2($this.$expression21), $this.$position14); }, -oncius_NullType_toCypherTypeString = $this => { - return $this.$toCypherTypeString21; +oncia_Where_copy = ($this, $expression, $position) => { + return oncia_Where__init_0($expression, $position); }, -oncius_NullType_sortOrder = $this => { - oncius_CypherTypeOrder$_$callClinit(); - return oncius_CypherTypeOrder$_NULL.$i; +oncia_Where_productPrefix = $this => { + return $rt_s(4102); }, -oncius_NullType_isNullable = $this => { +oncia_Where_productArity = $this => { return 1; }, -oncius_NullType_withIsNullable = ($this, $isNullable) => { - if ($isNullable) - return $this; - return oncius_NothingType__init_($this.$position136); +oncia_Where_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression21; + default: + } + return sr_Statics_ioobe($x$1); }, -oncius_NullType_isSubtypeOf = ($this, $otherCypherType) => { - return $otherCypherType.$isNullable(); +oncia_Where_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncius_NullType_withPosition = ($this, $newPosition) => { - return oncius_NullType_copy($this, $newPosition); +oncia_Where_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncius_NullType_covariant = $this => { - let var$1, $$je; - if (($this.$bitmap$026 & 1) << 24 >> 24) - return $this.$covariant24; - jl_Object_monitorEnterSync($this); - a: { - b: { - try { - if (!(($this.$bitmap$026 & 1) << 24 >> 24)) - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - break a; - - } - jl_Object_monitorExitSync($this); - return $this.$covariant24; - } - try { - $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5529))); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); +oncia_Where_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncius_NullType_invariant = $this => { - let var$1, $$je; - if (($this.$bitmap$026 & 2) << 24 >> 24) - return $this.$invariant23; - jl_Object_monitorEnterSync($this); +oncia_Where_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - try { - if (!(($this.$bitmap$026 & 2) << 24 >> 24)) + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Where) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expression21; + $x$1 = $x$1.$expression21; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_Where)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - break a; - } - jl_Object_monitorExitSync($this); - return $this.$invariant23; - } - try { - $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5529))); - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - + var$3 = 1; + break a; } + var$3 = 0; } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); + return var$3; }, -oncius_NullType_leastUpperBound = ($this, $other) => { - $other = new jl_UnsupportedOperationException; - jl_Throwable__init_0($other, $rt_s(5529)); - $rt_throw($other); +oncia_Where_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncius_NullType_greatestLowerBound = ($this, $other) => { - $other = new jl_UnsupportedOperationException; - jl_Throwable__init_0($other, $rt_s(5529)); - $rt_throw($other); +oncia_Where__init_ = ($this, $expression, $position) => { + $this.$expression21 = $expression; + $this.$position14 = $position; }, -oncius_NullType_copy = ($this, $position) => { - return oncius_NullType__init_($position); +oncia_Where__init_0 = (var_0, var_1) => { + let var_2 = new oncia_Where(); + oncia_Where__init_(var_2, var_0, var_1); + return var_2; }, -oncius_NullType_productPrefix = $this => { - return $rt_s(5530); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0__init_ = var$0 => { + return; }, -oncius_NullType_productArity = $this => { - return 0; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0__init_0 = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0__init_(var_0); + return var_0; }, -oncius_NullType_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -oncius_NullType_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1__init_0 = var$0 => { + return; }, -oncius_NullType_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1__init_ = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1__init_0(var_0); + return var_0; }, -oncius_NullType_equals = ($this, $x$1) => { - let var$2; - var$2 = !($x$1 instanceof oncius_NullType) ? 0 : 1; - return var$2 && $this instanceof oncius_NullType ? 1 : 0; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -oncius_NullType_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2__init_0 = var$0 => { + return; }, -oncius_NullType__init_0 = ($this, $position) => { - $this.$position136 = $position; - oncius_CypherType_$init$($this); - $this.$parentType20 = $this; - $this.$toString32 = $rt_s(133); - $this.$toCypherTypeString21 = $rt_s(4524); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2__init_ = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2__init_0(var_0); + return var_0; }, -oncius_NullType__init_ = var_0 => { - let var_1 = new oncius_NullType(); - oncius_NullType__init_0(var_1, var_0); - return var_1; -}; -function onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0() { - jl_Object.call(this); - this.$_0525 = null; -} -let onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0__init_ = (var$0, var$1) => { - var$0.$_0525 = var$1; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0__init_0 = var_0 => { - let var_1 = new onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0(); - onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0__init_(var_1, var_0); - return var_1; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3__init_0 = var$0 => { + return; }, -onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciafn_Neo4jASTFactory_convertCypherType(var$0.$_0525, var$1); -}; -function oncia_CreatePropertyTypeConstraint() { - let a = this; jl_Object.call(a); - a.$variable24 = null; - a.$entityName2 = null; - a.$property4 = null; - a.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType = null; - a.$name36 = null; - a.$ifExistsDo10 = null; - a.$options5 = null; - a.$useGraph7 = null; - a.$position148 = null; - a.$properties15 = null; - a.$normalizedPropertyType = null; - a.$x$8 = null; - a.$entityType3 = null; - a.$constraintType4 = null; - a.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes = null; -} -let oncia_CreatePropertyTypeConstraint_returnColumns = $this => { - return oncia_SchemaCommand_returnColumns$($this); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3__init_ = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3__init_0(var_0); + return var_0; }, -oncia_CreatePropertyTypeConstraint_checkOptionsMap = ($this, $schemaString, $options) => { - return oncia_SchemaCommand_checkOptionsMap$($this, $schemaString, $options); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -oncia_CreatePropertyTypeConstraint_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4__init_ = var$0 => { + return; }, -oncia_CreatePropertyTypeConstraint_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4__init_0 = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4__init_(var_0); + return var_0; }, -oncia_CreatePropertyTypeConstraint_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -oncia_CreatePropertyTypeConstraint_foldedOver = $this => { - return $this; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5__init_ = var$0 => { + return; }, -oncia_CreatePropertyTypeConstraint_folder = $this => { - return onciu_Foldable_folder$($this); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5__init_0 = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5__init_(var_0); + return var_0; }, -oncia_CreatePropertyTypeConstraint_org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes = $x$1; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -oncia_CreatePropertyTypeConstraint_variable = $this => { - return $this.$variable24; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6__init_0 = var$0 => { + return; }, -oncia_CreatePropertyTypeConstraint_ifExistsDo = $this => { - return $this.$ifExistsDo10; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6__init_ = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6__init_0(var_0); + return var_0; }, -oncia_CreatePropertyTypeConstraint_options = $this => { - return $this.$options5; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -oncia_CreatePropertyTypeConstraint_position = $this => { - return $this.$position148; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7__init_ = var$0 => { + return; }, -oncia_CreatePropertyTypeConstraint_properties = $this => { - return $this.$properties15; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7__init_0 = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7__init_(var_0); + return var_0; }, -oncia_CreatePropertyTypeConstraint_entityType = $this => { - return $this.$entityType3; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -oncia_CreatePropertyTypeConstraint_constraintType = $this => { - return $this.$constraintType4; +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8__init_ = var$0 => { + return; }, -oncia_CreatePropertyTypeConstraint_semanticCheck = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$1 = oncia_CreateConstraint_checkIfExistsDoAndOptions$($this); - var$2 = $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType; - var$3 = $this.$normalizedPropertyType; - var$4 = oncia_CypherTypeName_semanticCheck(oncia_CypherTypeName__init_(var$2)); - var$5 = new oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0; - var$5.$_078 = $this; - var$5.$_132 = var$2; - var$4 = var$4.$map11(var$5); - var$6 = oncia_CreateConstraint_anyPropertyValueType$1($this, var$2); - if (!(var$3 instanceof oncius_ClosedDynamicUnionType)) { - var$7 = $this.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes; - onciu_InputPosition$_$callClinit(); - var$8 = sci_List_contains(var$7, var$3.$withPosition(onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$))); - } else { - var$7 = var$3.$sortedInnerTypes; - var$5 = new oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0; - var$5.$_01044 = $this; - var$8 = sci_List_forall(var$7, var$5); - } - if (!var$6 && var$8) { - oncias_SemanticCheck$_$callClinit(); - var$5 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$5 = !var$6 ? s_Tuple2__init_(var$3.$description(), oncia_CreateConstraint_additionalErrorInfo$1(var$3)) : s_Tuple2__init_(var$2.$description(), oncia_CreateConstraint_additionalErrorInfo$1(var$2)); - var$3 = s_Tuple2__init_(var$5.$_10, var$5.$_20); - var$5 = var$3.$_10; - var$7 = var$3.$_20; - var$3 = $this.$constraintType4.$description(); - var$9 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$9); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(5302)), var$3), $rt_s(5531)), var$5), $rt_s(158)), var$7); - var$5 = oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$9), var$2.$position()); - } - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticCheck_chain$(var$4, var$5)), oncia_CreateConstraint_semanticCheck$($this)); +oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8__init_0 = () => { + let var_0 = new oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8(); + oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8__init_(var_0); + return var_0; +}; +let oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems2.$includeExisting0); }, -oncia_CreatePropertyTypeConstraint_copy = ($this, $variable, $entityName, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreatePropertyTypeConstraint__init_($variable, $entityName, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position); +oncie_BinaryOperatorExpression = $rt_classWithoutFields(0), +oncie_BinaryOperatorExpression_asCanonicalStringVal$ = $$this => { + let var$2, var$3, var$4; + var$2 = ($$this.$lhs0()).$asCanonicalStringVal(); + var$3 = $$this.$canonicalOperatorSymbol(); + $$this = ($$this.$rhs()).$asCanonicalStringVal(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$2 = jl_StringBuilder_append(var$4, var$2); + jl_AbstractStringBuilder_append0(var$2, 32); + var$2 = jl_StringBuilder_append(var$2, var$3); + jl_AbstractStringBuilder_append0(var$2, 32); + jl_StringBuilder_append(var$2, $$this); + return jl_AbstractStringBuilder_toString(var$4); }, -oncia_CreatePropertyTypeConstraint_productPrefix = $this => { - return $rt_s(5532); +oncie_BinaryOperatorExpression_isConstantForQuery$ = $$this => { + return ($$this.$lhs0()).$isConstantForQuery() && ($$this.$rhs()).$isConstantForQuery() ? 1 : 0; +}; +function oncie_And() { + let a = this; oncie_Expression.call(a); + a.$lhs10 = null; + a.$rhs10 = null; + a.$position98 = null; + a.$signatures4 = null; +} +let oncie_And_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncia_CreatePropertyTypeConstraint_productArity = $this => { - return 8; +oncie_And_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncia_CreatePropertyTypeConstraint_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable24; - case 1: - return $this.$entityName2; - case 2: - return $this.$property4; - case 3: - return $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType; - case 4: - return $this.$name36; - case 5: - return $this.$ifExistsDo10; - case 6: - return $this.$options5; - case 7: - return $this.$useGraph7; +oncie_And_canonicalOperatorSymbol = $this => { + return oncie_OperatorExpression_canonicalOperatorSymbol$($this); +}, +oncie_And_lhs = $this => { + return $this.$lhs10; +}, +oncie_And_rhs = $this => { + return $this.$rhs10; +}, +oncie_And_position = $this => { + return $this.$position98; +}, +oncie_And_signatures = $this => { + return $this.$signatures4; +}, +oncie_And_copy = ($this, $lhs, $rhs, $position) => { + return oncie_And__init_0($lhs, $rhs, $position); +}, +oncie_And_productPrefix = $this => { + return $rt_s(4103); +}, +oncie_And_productArity = $this => { + return 2; +}, +oncie_And_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs10; + case 1: + return $this.$rhs10; default: } return sr_Statics_ioobe($x$1); }, -oncia_CreatePropertyTypeConstraint_productIterator = $this => { +oncie_And_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreatePropertyTypeConstraint_hashCode = $this => { +oncie_And_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreatePropertyTypeConstraint_toString = $this => { +oncie_And_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreatePropertyTypeConstraint_equals = ($this, $x$1) => { +oncie_And_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreatePropertyTypeConstraint) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_And) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$variable24; - var$3 = $x$1.$variable24; + var$2 = $this.$lhs10; + var$3 = $x$1.$lhs10; if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break c; @@ -206832,90 +95928,18 @@ oncia_CreatePropertyTypeConstraint_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$entityName2; - var$3 = $x$1.$entityName2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$property4; - var$3 = $x$1.$property4; - if (var$2 !== null) { - if (!oncie_Property_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType; - var$3 = $x$1.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$name36; - var$3 = $x$1.$name36; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$2 = $this.$ifExistsDo10; - var$3 = $x$1.$ifExistsDo10; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break h; - } - if (var$3 !== null) - break b; - } - i: { - var$2 = $this.$options5; - var$3 = $x$1.$options5; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break i; - } - if (var$3 !== null) - break b; - } - j: { - var$3 = $this.$useGraph7; - $x$1 = $x$1.$useGraph7; + var$3 = $this.$rhs10; + $x$1 = $x$1.$rhs10; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break j; + break d; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_CreatePropertyTypeConstraint)) + if (!($this instanceof oncie_And)) break b; } var$4 = 1; @@ -206925,477 +95949,366 @@ oncia_CreatePropertyTypeConstraint_equals = ($this, $x$1) => { } return var$4; }, -oncia_CreatePropertyTypeConstraint_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncie_And__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs10 = $lhs; + $this.$rhs10 = $rhs; + $this.$position98 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_BooleanType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures4 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncia_CreatePropertyTypeConstraint_withGraph = ($this, $useGraph) => { - return oncia_CreatePropertyTypeConstraint_copy($this, $this.$variable24, $this.$entityName2, $this.$property4, $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType, $this.$name36, $this.$ifExistsDo10, $this.$options5, $useGraph, $this.$position148); +oncie_And__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_And(); + oncie_And__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncia_CreatePropertyTypeConstraint__init_0 = ($this, $variable, $entityName, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position) => { - let $entityType, $constraintType; - $this.$variable24 = $variable; - $this.$entityName2 = $entityName; - $this.$property4 = $property; - $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType = $propertyType; - $this.$name36 = $name; - $this.$ifExistsDo10 = $ifExistsDo; - $this.$options5 = $options; - $this.$useGraph7 = $useGraph; - $this.$position148 = $position; - oncia_CreateConstraint_$init$($this); - $this.$properties15 = sci_$colon$colon__init_($property, sci_Nil$_MODULE$); - $this.$normalizedPropertyType = oncius_CypherType$_normalizeTypes(oncius_CypherType$_MODULE$, $propertyType); - if ($entityName instanceof oncie_LabelName) { - $variable = new s_Tuple2; - oncius_package$_$callClinit(); - s_Tuple2__init_0($variable, oncius_package$_CTNode(oncius_package$_MODULE$), oncia_NodePropertyType__init_($this.$normalizedPropertyType)); - } else if ($entityName instanceof oncie_RelTypeName) { - $variable = new s_Tuple2; - oncius_package$_$callClinit(); - s_Tuple2__init_0($variable, oncius_package$_CTRelationship(oncius_package$_MODULE$), oncia_RelationshipPropertyType__init_($this.$normalizedPropertyType)); - } else if ($entityName instanceof oncie_DynamicLabelExpression) { - $variable = new s_Tuple2; - oncius_package$_$callClinit(); - s_Tuple2__init_0($variable, oncius_package$_CTNode(oncius_package$_MODULE$), oncia_NodePropertyType__init_($this.$normalizedPropertyType)); - } else { - if (!($entityName instanceof oncie_DynamicRelTypeExpression)) - $rt_throw(s_MatchError__init_($entityName)); - $variable = new s_Tuple2; - oncius_package$_$callClinit(); - s_Tuple2__init_0($variable, oncius_package$_CTRelationship(oncius_package$_MODULE$), oncia_RelationshipPropertyType__init_($this.$normalizedPropertyType)); - } - $entityType = $variable.$_10; - $constraintType = $variable.$_20; - if ($entityType !== null && $constraintType !== null) { - $variable = s_Tuple2__init_($entityType, $constraintType); - $this.$x$8 = $variable; - $this.$entityType3 = $variable.$_10; - $this.$constraintType4 = $variable.$_20; - return; - } - $rt_throw(s_MatchError__init_($variable)); +oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1, var$2) => { + return var$1.$intersect1(var$2); +}; +function oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_1() { + jl_Object.call(this); + this.$_0387 = null; +} +let oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = var$0.$_0387; + return oncie_And_copy(var$3, var$1, var$2, var$3.$position98); }, -oncia_CreatePropertyTypeConstraint__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { - let var_9 = new oncia_CreatePropertyTypeConstraint(); - oncia_CreatePropertyTypeConstraint__init_0(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); - return var_9; +oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1, var$2) => { + return var$1.$appendedAll(var$2); +}; +function oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_3() { + jl_Object.call(this); + this.$_0276 = null; +} +let oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = var$0.$_0276; + return oncie_And_copy(var$3, var$1, var$2, var$3.$position98); +}; +function oncie_Or() { + let a = this; oncie_Expression.call(a); + a.$lhs11 = null; + a.$rhs11 = null; + a.$position105 = null; + a.$signatures6 = null; +} +let oncie_Or_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncie_FunctionInvocation$ArgumentOrder = $rt_classWithoutFields(0), -oncie_FunctionInvocation$ArgumentUnordered$ = $rt_classWithoutFields(), -oncie_FunctionInvocation$ArgumentUnordered$_MODULE$ = null, -oncie_FunctionInvocation$ArgumentUnordered$__clinit_ = () => { - oncie_FunctionInvocation$ArgumentUnordered$_MODULE$ = new oncie_FunctionInvocation$ArgumentUnordered$; +oncie_Or_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncie_FunctionInvocation$ArgumentUnordered$_productArity = $this => { - return 0; +oncie_Or_canonicalOperatorSymbol = $this => { + return oncie_OperatorExpression_canonicalOperatorSymbol$($this); }, -oncie_FunctionInvocation$ArgumentUnordered$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncie_Or_lhs = $this => { + return $this.$lhs11; }, -oncie_FunctionInvocation$ArgumentUnordered$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_Or_rhs = $this => { + return $this.$rhs11; }, -oncie_FunctionInvocation$ArgumentUnordered$_hashCode = $this => { - return 665731415; +oncie_Or_position = $this => { + return $this.$position105; }, -oncie_FunctionInvocation$ArgumentUnordered$_toString = $this => { - return $rt_s(5533); +oncie_Or_signatures = $this => { + return $this.$signatures6; }, -oncief_Function$ = $rt_classWithoutFields(), -oncief_Function$_MODULE$ = null, -oncief_Function$_lookup = null, -oncief_Function$_knownFunctions = null, -oncief_Function$_bitmap$0 = 0, -oncief_Function$_$callClinit = () => { - oncief_Function$_$callClinit = $rt_eraseClinit(oncief_Function$); - oncief_Function$__clinit_(); +oncie_Or_copy = ($this, $lhs, $rhs, $position) => { + return oncie_Or__init_0($lhs, $rhs, $position); }, -oncief_Function$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5; - oncief_Function$_MODULE$ = oncief_Function$__init_(); - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncief_Function, 98); - var$4 = var$3.data; - oncief_Abs$_$callClinit(); - var$4[0] = oncief_Abs$_MODULE$; - oncief_Acos$_$callClinit(); - var$4[1] = oncief_Acos$_MODULE$; - oncief_Asin$_$callClinit(); - var$4[2] = oncief_Asin$_MODULE$; - oncief_Atan$_$callClinit(); - var$4[3] = oncief_Atan$_MODULE$; - oncief_Atan2$_$callClinit(); - var$4[4] = oncief_Atan2$_MODULE$; - oncief_Avg$_$callClinit(); - var$4[5] = oncief_Avg$_MODULE$; - oncief_BTrim$_$callClinit(); - var$4[6] = oncief_BTrim$_MODULE$; - oncief_Ceil$_$callClinit(); - var$5 = oncief_Ceil$_MODULE$; - var$4[7] = var$5; - oncief_CharLength$_$callClinit(); - var$4[8] = oncief_CharLength$_MODULE$; - oncief_CharacterLength$_$callClinit(); - var$4[9] = oncief_CharacterLength$_MODULE$; - oncief_Coalesce$_$callClinit(); - var$4[10] = oncief_Coalesce$_MODULE$; - oncief_Collect$_$callClinit(); - var$4[11] = oncief_Collect$_MODULE$; - var$4[12] = var$5; - oncief_Cos$_$callClinit(); - var$4[13] = oncief_Cos$_MODULE$; - oncief_Cot$_$callClinit(); - var$4[14] = oncief_Cot$_MODULE$; - oncief_Count$_$callClinit(); - var$4[15] = oncief_Count$_MODULE$; - oncief_Degrees$_$callClinit(); - var$4[16] = oncief_Degrees$_MODULE$; - oncief_Distance$_$callClinit(); - var$4[17] = oncief_Distance$_MODULE$; - oncief_E$_$callClinit(); - var$4[18] = oncief_E$_MODULE$; - oncief_ElementId$_$callClinit(); - var$4[19] = oncief_ElementId$_MODULE$; - oncief_EndNode$_$callClinit(); - var$4[20] = oncief_EndNode$_MODULE$; - oncief_Exists$_$callClinit(); - var$4[21] = oncief_Exists$_MODULE$; - oncief_Exp$_$callClinit(); - var$4[22] = oncief_Exp$_MODULE$; - oncief_File$_$callClinit(); - var$4[23] = oncief_File$_MODULE$; - oncief_Floor$_$callClinit(); - var$4[24] = oncief_Floor$_MODULE$; - oncief_GraphByName$_$callClinit(); - var$4[25] = oncief_GraphByName$_MODULE$; - oncief_GraphByElementId$_$callClinit(); - var$4[26] = oncief_GraphByElementId$_MODULE$; - oncief_Haversin$_$callClinit(); - var$4[27] = oncief_Haversin$_MODULE$; - oncief_Head$_$callClinit(); - var$4[28] = oncief_Head$_MODULE$; - oncief_Id$_$callClinit(); - var$4[29] = oncief_Id$_MODULE$; - oncief_IsEmpty$_$callClinit(); - var$4[30] = oncief_IsEmpty$_MODULE$; - oncief_IsNaN$_$callClinit(); - var$4[31] = oncief_IsNaN$_MODULE$; - oncief_Labels$_$callClinit(); - var$4[32] = oncief_Labels$_MODULE$; - oncief_Last$_$callClinit(); - var$4[33] = oncief_Last$_MODULE$; - oncief_Left$_$callClinit(); - var$4[34] = oncief_Left$_MODULE$; - oncief_Length$_$callClinit(); - var$4[35] = oncief_Length$_MODULE$; - oncief_Linenumber$_$callClinit(); - var$4[36] = oncief_Linenumber$_MODULE$; - oncief_Log$_$callClinit(); - var$4[37] = oncief_Log$_MODULE$; - oncief_Log10$_$callClinit(); - var$4[38] = oncief_Log10$_MODULE$; - oncief_Lower$_$callClinit(); - var$4[39] = oncief_Lower$_MODULE$; - oncief_LTrim$_$callClinit(); - var$4[40] = oncief_LTrim$_MODULE$; - oncief_Max$_$callClinit(); - var$4[41] = oncief_Max$_MODULE$; - oncief_Min$_$callClinit(); - var$4[42] = oncief_Min$_MODULE$; - oncief_Nodes$_$callClinit(); - var$4[43] = oncief_Nodes$_MODULE$; - oncief_Normalize$_$callClinit(); - var$4[44] = oncief_Normalize$_MODULE$; - oncief_NullIf$_$callClinit(); - var$4[45] = oncief_NullIf$_MODULE$; - oncief_Pi$_$callClinit(); - var$4[46] = oncief_Pi$_MODULE$; - oncief_PercentileCont$_$callClinit(); - var$4[47] = oncief_PercentileCont$_MODULE$; - oncief_PercentileDisc$_$callClinit(); - var$4[48] = oncief_PercentileDisc$_MODULE$; - oncief_Percentiles$_$callClinit(); - var$4[49] = oncief_Percentiles$_MODULE$; - oncief_Point$_$callClinit(); - var$4[50] = oncief_Point$_MODULE$; - oncief_Keys$_$callClinit(); - var$4[51] = oncief_Keys$_MODULE$; - oncief_Radians$_$callClinit(); - var$4[52] = oncief_Radians$_MODULE$; - oncief_Rand$_$callClinit(); - var$4[53] = oncief_Rand$_MODULE$; - oncief_RandomUUID$_$callClinit(); - var$4[54] = oncief_RandomUUID$_MODULE$; - oncief_Range$_$callClinit(); - var$4[55] = oncief_Range$_MODULE$; - oncief_Reduce$_$callClinit(); - var$4[56] = oncief_Reduce$_MODULE$; - oncief_Relationships$_$callClinit(); - var$4[57] = oncief_Relationships$_MODULE$; - oncief_Replace$_$callClinit(); - var$4[58] = oncief_Replace$_MODULE$; - oncief_Reverse$_$callClinit(); - var$4[59] = oncief_Reverse$_MODULE$; - oncief_Right$_$callClinit(); - var$4[60] = oncief_Right$_MODULE$; - oncief_Round$_$callClinit(); - var$4[61] = oncief_Round$_MODULE$; - oncief_RTrim$_$callClinit(); - var$4[62] = oncief_RTrim$_MODULE$; - oncief_Sign$_$callClinit(); - var$4[63] = oncief_Sign$_MODULE$; - oncief_Sin$_$callClinit(); - var$4[64] = oncief_Sin$_MODULE$; - oncief_Size$_$callClinit(); - var$4[65] = oncief_Size$_MODULE$; - oncief_Sqrt$_$callClinit(); - var$4[66] = oncief_Sqrt$_MODULE$; - oncief_Split$_$callClinit(); - var$4[67] = oncief_Split$_MODULE$; - oncief_StartNode$_$callClinit(); - var$4[68] = oncief_StartNode$_MODULE$; - oncief_StdDev$_$callClinit(); - var$4[69] = oncief_StdDev$_MODULE$; - oncief_StdDevP$_$callClinit(); - var$4[70] = oncief_StdDevP$_MODULE$; - oncief_Substring$_$callClinit(); - var$4[71] = oncief_Substring$_MODULE$; - oncief_Sum$_$callClinit(); - var$4[72] = oncief_Sum$_MODULE$; - oncief_Tail$_$callClinit(); - var$4[73] = oncief_Tail$_MODULE$; - oncief_Tan$_$callClinit(); - var$4[74] = oncief_Tan$_MODULE$; - oncief_ToBoolean$_$callClinit(); - var$4[75] = oncief_ToBoolean$_MODULE$; - oncief_ToBooleanList$_$callClinit(); - var$4[76] = oncief_ToBooleanList$_MODULE$; - oncief_ToBooleanOrNull$_$callClinit(); - var$4[77] = oncief_ToBooleanOrNull$_MODULE$; - oncief_ToFloat$_$callClinit(); - var$4[78] = oncief_ToFloat$_MODULE$; - oncief_ToFloatList$_$callClinit(); - var$4[79] = oncief_ToFloatList$_MODULE$; - oncief_ToFloatOrNull$_$callClinit(); - var$4[80] = oncief_ToFloatOrNull$_MODULE$; - oncief_ToInteger$_$callClinit(); - var$4[81] = oncief_ToInteger$_MODULE$; - oncief_ToIntegerList$_$callClinit(); - var$4[82] = oncief_ToIntegerList$_MODULE$; - oncief_ToIntegerOrNull$_$callClinit(); - var$4[83] = oncief_ToIntegerOrNull$_MODULE$; - oncief_ToLower$_$callClinit(); - var$4[84] = oncief_ToLower$_MODULE$; - oncief_ToString$_$callClinit(); - var$4[85] = oncief_ToString$_MODULE$; - oncief_ToStringList$_$callClinit(); - var$4[86] = oncief_ToStringList$_MODULE$; - oncief_ToStringOrNull$_$callClinit(); - var$4[87] = oncief_ToStringOrNull$_MODULE$; - oncief_ToUpper$_$callClinit(); - var$4[88] = oncief_ToUpper$_MODULE$; - oncief_Timestamp$_$callClinit(); - var$4[89] = oncief_Timestamp$_MODULE$; - oncief_Properties$_$callClinit(); - var$4[90] = oncief_Properties$_MODULE$; - oncief_Trim$_$callClinit(); - var$4[91] = oncief_Trim$_MODULE$; - oncief_Type$_$callClinit(); - var$4[92] = oncief_Type$_MODULE$; - oncief_Upper$_$callClinit(); - var$4[93] = oncief_Upper$_MODULE$; - oncief_ValueType$_$callClinit(); - var$4[94] = oncief_ValueType$_MODULE$; - oncief_WithinBBox$_$callClinit(); - var$4[95] = oncief_WithinBBox$_MODULE$; - oncief_VectorSimilarityEuclidean$_$callClinit(); - var$4[96] = oncief_VectorSimilarityEuclidean$_MODULE$; - oncief_VectorSimilarityCosine$_$callClinit(); - var$4[97] = oncief_VectorSimilarityCosine$_MODULE$; - oncief_Function$_knownFunctions = sci_Vector$_apply(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncie_Or_productPrefix = $this => { + return $rt_s(4104); }, -oncief_Function$_knownFunctions0 = $this => { - oncief_Function$_$callClinit(); - return oncief_Function$_knownFunctions; +oncie_Or_productArity = $this => { + return 2; }, -oncief_Function$__init_0 = $this => { - oncief_Function$_$callClinit(); +oncie_Or_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs11; + case 1: + return $this.$rhs11; + default: + } + return sr_Statics_ioobe($x$1); }, -oncief_Function$__init_ = () => { - let var_0 = new oncief_Function$(); - oncief_Function$__init_0(var_0); - return var_0; +oncie_Or_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_FunctionInvocation$_init_$lambda$_41_0 = $rt_classWithoutFields(), -oncie_FunctionInvocation$_init_$lambda$_41_0_apply = var$0 => { - oncief_UnresolvedFunction$_$callClinit(); - return oncief_UnresolvedFunction$_MODULE$; +oncie_Or_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateIndex = $rt_classWithoutFields(0); -let oncia_CreateIndex_semanticCheck$ = $$this => { - let var$2, var$3, var$4, var$5; - var$2 = $$this.$ifExistsDo(); - oncia_IfExistsInvalidSyntax$_$callClinit(); - if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$2)) - var$3 = 1; - else { - oncia_IfExistsReplace$_$callClinit(); - var$3 = !jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$2) ? 0 : 1; - } - if (var$3) - $$this = $$this.$error2($rt_s(5534), $$this.$position()); - else { - if (!$$this.$isNodeIndex()) { - oncius_package$_$callClinit(); - var$2 = oncius_package$_CTRelationship(oncius_package$_MODULE$); - } else { - oncius_package$_$callClinit(); - var$2 = oncius_package$_CTNode(oncius_package$_MODULE$); - } - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = $$this.$variable2(); - oncius_package$_$callClinit(); - var$2 = oncias_package$_liftSemanticEitherFunc(var$4, $$this.$declareVariable(var$5, var$2.$invariant())); - oncias_SemanticExpressionCheck$_$callClinit(); - var$5 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $$this.$properties1())); - var$2 = $$this.$properties1(); - var$4 = new oncia_CreateIndex$semanticCheck$lambda$_31_0; - var$4.$_0627 = $$this; - $$this = oncias_SemanticCheck_chain$(var$5, $$this.$semanticCheckFold(var$2, var$4)); - } - return $$this; +oncie_Or_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateSingleLabelPropertyIndex = $rt_classWithoutFields(0); -function oncia_CreateSingleLabelPropertyIndexCommand() { - let a = this; jl_Object.call(a); - a.$variable26 = null; - a.$entityName0 = null; - a.$properties7 = null; - a.$name39 = null; - a.$indexType1 = null; - a.$ifExistsDo11 = null; - a.$options1 = null; - a.$useGraph6 = null; - a.$position150 = null; - a.$org$neo4j$cypher$internal$ast$CreateSingleLabelPropertyIndex$$x$1 = null; - a.$isNodeIndex1 = 0; - a.$entityIndexDescription = null; -} -let oncia_CreateSingleLabelPropertyIndexCommand_semanticCheck = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = oncias_SemanticCheck_chain$(oncia_SchemaCommand_checkOptionsMap$($this, $this.$entityIndexDescription, $this.$options1), oncia_CreateIndex_semanticCheck$($this)); - if (!$this.$indexType1.$singlePropertyOnly()) { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$2 = $this.$indexType1.$allDescription(); - var$3 = $this.$properties7; - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_MODULE$; - var$5 = var$3.$length() <= 1 ? 0 : 1; - var$6 = new oncia_SchemaCommand$checkSingleProperty$lambda$_8_0; - var$6.$_0141 = $this; - var$6.$_154 = var$2; - var$6.$_227 = var$3; - var$2 = oncias_SemanticCheck$_when(var$4, var$5, var$6); +oncie_Or_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Or) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs11; + var$3 = $x$1.$lhs11; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs11; + $x$1 = $x$1.$rhs11; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Or)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; } - return oncias_SemanticCheck_chain$(var$1, var$2); -}, -oncia_CreateSingleLabelPropertyIndexCommand_returnColumns = $this => { - return oncia_SchemaCommand_returnColumns$($this); -}, -oncia_CreateSingleLabelPropertyIndexCommand_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); + return var$4; }, -oncia_CreateSingleLabelPropertyIndexCommand_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +oncie_Or__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs11 = $lhs; + $this.$rhs11 = $rhs; + $this.$position105 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_BooleanType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures6 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncia_CreateSingleLabelPropertyIndexCommand_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +oncie_Or__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Or(); + oncie_Or__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncia_CreateSingleLabelPropertyIndexCommand_foldedOver = $this => { - return $this; +oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1, var$2) => { + return var$1.$appendedAll(var$2); +}; +function oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_5() { + jl_Object.call(this); + this.$_030 = null; +} +let oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = var$0.$_030; + return oncie_Or_copy(var$3, var$1, var$2, var$3.$position105); }, -oncia_CreateSingleLabelPropertyIndexCommand_folder = $this => { - return onciu_Foldable_folder$($this); +oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_6 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_6_apply = (var$0, var$1, var$2) => { + return var$1.$intersect1(var$2); +}; +function oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_7() { + jl_Object.call(this); + this.$_01063 = null; +} +let oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_7_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = var$0.$_01063; + return oncie_Or_copy(var$3, var$1, var$2, var$3.$position105); +}; +function oncie_FunctionInvocation() { + let a = this; oncie_Expression.call(a); + a.$functionName2 = null; + a.$distinct3 = 0; + a.$args0 = null; + a.$order0 = null; + a.$calledFromUseClause = 0; + a.$position7 = null; + a.$name11 = null; + a.$function1 = null; + a.$isOrdered = 0; +} +let oncie_FunctionInvocation_functionName = $this => { + return $this.$functionName2; }, -oncia_CreateSingleLabelPropertyIndexCommand_isNodeIndex = $this => { - return $this.$isNodeIndex1; +oncie_FunctionInvocation_distinct = $this => { + return $this.$distinct3; }, -oncia_CreateSingleLabelPropertyIndexCommand_variable = $this => { - return $this.$variable26; +oncie_FunctionInvocation_args = $this => { + return $this.$args0; }, -oncia_CreateSingleLabelPropertyIndexCommand_properties = $this => { - return $this.$properties7; +oncie_FunctionInvocation_order = $this => { + return $this.$order0; }, -oncia_CreateSingleLabelPropertyIndexCommand_indexType = $this => { - return $this.$indexType1; +oncie_FunctionInvocation_position = $this => { + return $this.$position7; }, -oncia_CreateSingleLabelPropertyIndexCommand_ifExistsDo = $this => { - return $this.$ifExistsDo11; +oncie_FunctionInvocation_needsToBeResolved = $this => { + let var$1; + var$1 = $this.$function1; + if (!jl_Object_equals(oncief_UnresolvedFunction$_MODULE$, var$1)) + return 0; + return 1; }, -oncia_CreateSingleLabelPropertyIndexCommand_options = $this => { - return $this.$options1; +oncie_FunctionInvocation_asCanonicalStringVal = $this => { + let var$1, var$2, var$3; + var$1 = $this.$name11; + var$2 = sc_AbstractIterable_mkString($this.$args0.$map(new oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0), $rt_s(41)); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$1 = jl_StringBuilder_append(var$3, var$1); + jl_AbstractStringBuilder_append0(var$1, 40); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$2), 41); + return jl_AbstractStringBuilder_toString(var$3); }, -oncia_CreateSingleLabelPropertyIndexCommand_position = $this => { - return $this.$position150; +oncie_FunctionInvocation_isConstantForQuery = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; + a: { + b: { + if (!oncie_FunctionInvocation_needsToBeResolved($this)) { + var$1 = onciu_Foldable_folder$($this); + var$2 = new oncie_Expression$isDeterministic$lambda$_23_0; + var$3 = s_Some__init_(jl_Boolean_valueOf(1)); + var$4 = onciu_Foldable$_MODULE$; + var$5 = scm_Stack$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(jl_Object, 1); + var$7.data[0] = var$1.$foldedOver0; + var$6 = var$5.$from0(sr_ScalaRunTime$_genericWrapArray(var$6, var$7)); + var$5 = new onciu_Foldable$Folder$treeForall$lambda$_6_0; + var$5.$_01154 = var$2; + var$5.$_191 = var$3; + if (onciu_Foldable$_org$neo4j$cypher$internal$util$Foldable$$existsAcc(var$4, var$6, var$5, var$1.$cancellation) ? 0 : 1) { + c: { + var$3 = $this.$function1; + oncief_File$_$callClinit(); + var$2 = oncief_File$_MODULE$; + if (var$3 !== null) { + if (jl_Object_equals(var$3, var$2)) + break b; + else + break c; + } + if (var$2 === null) + break b; + } + d: { + var$3 = $this.$function1; + oncief_Linenumber$_$callClinit(); + var$2 = oncief_Linenumber$_MODULE$; + if (var$3 !== null) { + if (jl_Object_equals(var$3, var$2)) + break b; + else + break d; + } + if (var$2 === null) + break b; + } + if (sc_IterableOnceOps_forall$($this.$args0, new oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0)) { + var$8 = 1; + break a; + } + } + } + } + var$8 = 0; + } + return var$8; }, -oncia_CreateSingleLabelPropertyIndexCommand_copy = ($this, $variable, $entityName, $properties, $name, $indexType, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $entityName, $properties, $name, $indexType, $ifExistsDo, $options, $useGraph, $position); +oncie_FunctionInvocation_copy = ($this, $functionName, $distinct, $args, $order, $calledFromUseClause, $position) => { + return oncie_FunctionInvocation__init_0($functionName, $distinct, $args, $order, $calledFromUseClause, $position); }, -oncia_CreateSingleLabelPropertyIndexCommand_productPrefix = $this => { - return $rt_s(5535); +oncie_FunctionInvocation_productPrefix = $this => { + return $rt_s(4105); }, -oncia_CreateSingleLabelPropertyIndexCommand_productArity = $this => { - return 8; +oncie_FunctionInvocation_productArity = $this => { + return 5; }, -oncia_CreateSingleLabelPropertyIndexCommand_productElement = ($this, $x$1) => { +oncie_FunctionInvocation_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$variable26; + return $this.$functionName2; case 1: - return $this.$entityName0; + return jl_Boolean_valueOf($this.$distinct3); case 2: - return $this.$properties7; + return $this.$args0; case 3: - return $this.$name39; + return $this.$order0; case 4: - return $this.$indexType1; - case 5: - return $this.$ifExistsDo11; - case 6: - return $this.$options1; - case 7: - return $this.$useGraph6; + return jl_Boolean_valueOf($this.$calledFromUseClause); default: } return sr_Statics_ioobe($x$1); }, -oncia_CreateSingleLabelPropertyIndexCommand_productIterator = $this => { +oncie_FunctionInvocation_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateSingleLabelPropertyIndexCommand_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncie_FunctionInvocation_hashCode = $this => { + let var$1, var$2; + var$1 = sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4105))), sr_Statics_anyHash($this.$functionName2)); + var$2 = !$this.$distinct3 ? 1237 : 1231; + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), sr_Statics_anyHash($this.$args0)), sr_Statics_anyHash($this.$order0)), !$this.$calledFromUseClause ? 1237 : 1231), 5); }, -oncia_CreateSingleLabelPropertyIndexCommand_toString = $this => { +oncie_FunctionInvocation_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateSingleLabelPropertyIndexCommand_equals = ($this, $x$1) => { +oncie_FunctionInvocation_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateSingleLabelPropertyIndexCommand) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_FunctionInvocation) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$distinct3 != $x$1.$distinct3) + break b; + if ($this.$calledFromUseClause != $x$1.$calledFromUseClause) break b; c: { - $x$1 = $x$1; - var$2 = $this.$variable26; - var$3 = $x$1.$variable26; + var$2 = $this.$functionName2; + var$3 = $x$1.$functionName2; if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) + if (!oncie_FunctionName_equals(var$2, var$3)) break b; else break c; @@ -207404,8 +96317,8 @@ oncia_CreateSingleLabelPropertyIndexCommand_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$entityName0; - var$3 = $x$1.$entityName0; + var$2 = $this.$args0; + var$3 = $x$1.$args0; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -207416,78 +96329,274 @@ oncia_CreateSingleLabelPropertyIndexCommand_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$properties7; - var$3 = $x$1.$properties7; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + var$3 = $this.$order0; + $x$1 = $x$1.$order0; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) break b; else break e; } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$name39; - var$3 = $x$1.$name39; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$indexType1; - var$3 = $x$1.$indexType1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) + if ($x$1 !== null) break b; } - h: { - var$2 = $this.$ifExistsDo11; - var$3 = $x$1.$ifExistsDo11; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break h; - } - if (var$3 !== null) - break b; + if (!($this instanceof oncie_FunctionInvocation)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncie_FunctionInvocation__init_ = ($this, $functionName, $distinct, $args, $order, $calledFromUseClause, $position) => { + let $$je; + $this.$functionName2 = $functionName; + $this.$distinct3 = $distinct; + $this.$args0 = $args; + $this.$order0 = $order; + $this.$calledFromUseClause = $calledFromUseClause; + $this.$position7 = $position; + oncie_Expression__init_($this); + $this.$name11 = sc_AbstractIterable_mkString($functionName.$namespace3.$parts0.$appended($functionName.$name6), $rt_s(389)); + oncief_Function$_$callClinit(); + $functionName = oncief_Function$_MODULE$; + if ((oncief_Function$_bitmap$0 & 1) << 24 >> 24) + $args = oncief_Function$_lookup; + else { + jl_Object_monitorEnterSync($functionName); + a: { + try { + if ((oncief_Function$_bitmap$0 & 1) << 24 >> 24) + break a; + oncief_Function$_lookup = sc_AbstractIterable_toMap((oncief_Function$_knownFunctions0($functionName)).$map(oncief_Function$$lookup$lzycompute$lambda$_2_0__init_0()), s_$less$colon$less$_refl(s_$less$colon$less$_MODULE$)); + oncief_Function$_bitmap$0 = (oncief_Function$_bitmap$0 | 1) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $args = $$je; + + } + jl_Object_monitorExitSync($functionName); + $rt_throw($args); + } + jl_Object_monitorExitSync($functionName); + oncief_Function$_knownFunctions = null; + $args = oncief_Function$_lookup; + } + b: { + c: { + d: { + $position = $this.$name11; + ju_Locale_$callClinit(); + $this.$function1 = $args.$getOrElse1(jl_String_toLowerCase($position, ju_Locale_ROOT), new oncie_FunctionInvocation$_init_$lambda$_41_0); + $functionName = oncie_FunctionInvocation$ArgumentUnordered$_MODULE$; + if ($order !== null) { + if (jl_Object_equals($order, $functionName)) + break d; + else + break c; } - i: { - var$2 = $this.$options1; - var$3 = $x$1.$options1; + if ($functionName !== null) + break c; + } + $distinct = 0; + break b; + } + $distinct = 1; + } + $this.$isOrdered = $distinct; +}, +oncie_FunctionInvocation__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncie_FunctionInvocation(); + oncie_FunctionInvocation__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}, +oncief_FunctionWithName = $rt_classWithoutFields(0), +oncie_TypeSignatures = $rt_classWithoutFields(0), +oncie_TypeSignatures_signatureLengths$ = $$this => { + return ($$this.$signatures()).$map(new oncie_TypeSignatures$signatureLengths$lambda$_3_0); +}; +function oncief_Function() { + let a = this; jl_Object.call(a); + a.$signatureLengths0 = null; + a.$bitmap$042 = 0; +} +let oncief_Function_signatures = $this => { + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +}, +oncief_Function_signatureLengths = $this => { + let var$1, $$je; + if ($this.$bitmap$042) + return $this.$signatureLengths0; + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$bitmap$042) + break a; + $this.$signatureLengths0 = oncie_TypeSignatures_signatureLengths$($this); + $this.$bitmap$042 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$signatureLengths0; +}, +oncief_Function__init_ = $this => { + return; +}, +oncief_Timestamp$ = $rt_classWithoutFields(oncief_Function), +oncief_Timestamp$_MODULE$ = null, +oncief_Timestamp$_signatures = null, +oncief_Timestamp$_$callClinit = () => { + oncief_Timestamp$_$callClinit = $rt_eraseClinit(oncief_Timestamp$); + oncief_Timestamp$__clinit_(); +}, +oncief_Timestamp$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncief_Timestamp$; + oncief_Timestamp$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Timestamp$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + var$5 = oncie_FunctionTypeSignature$_MODULE$; + var$6 = oncief_Timestamp$_MODULE$; + oncius_package$_$callClinit(); + var$7 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(4106), oncief_Category$_SCALAR(oncief_Category$_MODULE$)); + oncief_Timestamp$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Timestamp$_name = $this => { + return $rt_s(594); +}, +oncief_Timestamp$_productArity = $this => { + return 0; +}, +oncief_Timestamp$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Timestamp$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Timestamp$_hashCode = $this => { + return 2059094262; +}, +oncief_Timestamp$_toString = $this => { + return $rt_s(4107); +}, +oncief_Timestamp$_signatures0 = $this => { + oncief_Timestamp$_$callClinit(); + return oncief_Timestamp$_signatures; +}, +oncie_FunctionName$ = $rt_classWithoutFields(), +oncie_FunctionName$_MODULE$ = null, +oncie_FunctionName$__clinit_ = () => { + oncie_FunctionName$_MODULE$ = new oncie_FunctionName$; +}, +oncie_FunctionName$_apply = ($this, $name, $position) => { + return oncie_FunctionName__init_(oncie_Namespace__init_(oncie_Namespace$_apply$default$1(oncie_Namespace$_MODULE$), $position), $name, $position); +}, +oncie_LogicalProperty = $rt_classWithoutFields(oncie_Expression), +oncie_LogicalProperty_isConstantForQuery = $this => { + return $this.$map15.$isConstantForQuery(); +}; +function oncie_Property() { + let a = this; oncie_LogicalProperty.call(a); + a.$map15 = null; + a.$propertyKey0 = null; + a.$position19 = null; +} +let oncie_Property_map = $this => { + return $this.$map15; +}, +oncie_Property_propertyKey = $this => { + return $this.$propertyKey0; +}, +oncie_Property_position = $this => { + return $this.$position19; +}, +oncie_Property_asCanonicalStringVal = $this => { + let var$1, var$2, var$3; + var$1 = $this.$map15.$asCanonicalStringVal(); + var$2 = $this.$propertyKey0.$name5; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$1 = jl_StringBuilder_append(var$3, var$1); + jl_AbstractStringBuilder_append0(var$1, 46); + jl_StringBuilder_append(var$1, var$2); + return jl_AbstractStringBuilder_toString(var$3); +}, +oncie_Property_productPrefix = $this => { + return $rt_s(4108); +}, +oncie_Property_productArity = $this => { + return 2; +}, +oncie_Property_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$map15; + case 1: + return $this.$propertyKey0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_Property_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Property_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Property_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Property_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Property) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$map15; + var$3 = $x$1.$map15; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; else - break i; + break c; } if (var$3 !== null) break b; } - j: { - var$3 = $this.$useGraph6; - $x$1 = $x$1.$useGraph6; + d: { + var$3 = $this.$propertyKey0; + $x$1 = $x$1.$propertyKey0; if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if (!oncie_PropertyKeyName_equals(var$3, $x$1)) break b; else - break j; + break d; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_CreateSingleLabelPropertyIndexCommand)) + if (!($this instanceof oncie_Property)) break b; } var$4 = 1; @@ -207497,378 +96606,459 @@ oncia_CreateSingleLabelPropertyIndexCommand_equals = ($this, $x$1) => { } return var$4; }, -oncia_CreateSingleLabelPropertyIndexCommand_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_CreateSingleLabelPropertyIndexCommand_withGraph = ($this, $useGraph) => { - return oncia_CreateSingleLabelPropertyIndexCommand_copy($this, $this.$variable26, $this.$entityName0, $this.$properties7, $this.$name39, $this.$indexType1, $this.$ifExistsDo11, $this.$options1, $useGraph, $this.$position150); -}, -oncia_CreateSingleLabelPropertyIndexCommand__init_0 = ($this, $variable, $entityName, $properties, $name, $indexType, $ifExistsDo, $options, $useGraph, $position) => { - let var$10; - $this.$variable26 = $variable; - $this.$entityName0 = $entityName; - $this.$properties7 = $properties; - $this.$name39 = $name; - $this.$indexType1 = $indexType; - $this.$ifExistsDo11 = $ifExistsDo; - $this.$options1 = $options; - $this.$useGraph6 = $useGraph; - $this.$position150 = $position; - if ($entityName instanceof oncie_LabelName) - $variable = s_Tuple2__init_(jl_Boolean_valueOf(1), $this.$indexType1.$nodeDescription()); - else { - if (!($entityName instanceof oncie_RelTypeName)) { - if ($entityName instanceof oncie_DynamicLabelExpression) { - $variable = new jl_IllegalStateException; - jl_Throwable__init_0($variable, $rt_s(5516)); - $rt_throw($variable); - } - if (!($entityName instanceof oncie_DynamicRelTypeExpression)) - $rt_throw(s_MatchError__init_($entityName)); - $variable = new jl_IllegalStateException; - jl_Throwable__init_0($variable, $rt_s(5517)); - $rt_throw($variable); - } - $variable = s_Tuple2__init_(jl_Boolean_valueOf(0), $this.$indexType1.$relDescription()); - } - var$10 = s_Tuple2__1$mcZ$sp($variable); - $entityName = $variable.$_20; - if ($entityName === null) - $rt_throw(s_MatchError__init_($variable)); - $variable = s_Tuple2__init_(jl_Boolean_valueOf(var$10), $entityName); - $this.$org$neo4j$cypher$internal$ast$CreateSingleLabelPropertyIndex$$x$1 = $variable; - $this.$isNodeIndex1 = s_Tuple2__1$mcZ$sp($variable); - $this.$entityIndexDescription = $this.$org$neo4j$cypher$internal$ast$CreateSingleLabelPropertyIndex$$x$1.$_20; +oncie_Property__init_0 = ($this, $map, $propertyKey, $position) => { + $this.$map15 = $map; + $this.$propertyKey0 = $propertyKey; + $this.$position19 = $position; + oncie_Expression__init_($this); }, -oncia_CreateSingleLabelPropertyIndexCommand__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { - let var_9 = new oncia_CreateSingleLabelPropertyIndexCommand(); - oncia_CreateSingleLabelPropertyIndexCommand__init_0(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); - return var_9; +oncie_Property__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_Property(); + oncie_Property__init_0(var_3, var_0, var_1, var_2); + return var_3; }, -oncia_CreateIndexType = $rt_classWithoutFields(0); -function oncia_RangeCreateIndex() { +oncie_SymbolicName = $rt_classWithoutFields(0); +function oncie_PropertyKeyName() { let a = this; jl_Object.call(a); - a.$fromDefault = 0; - a.$command2 = null; - a.$nodeDescription0 = null; - a.$relDescription0 = null; - a.$allDescription0 = null; - a.$singlePropertyOnly0 = 0; + a.$name5 = null; + a.$position30 = null; } -let oncia_RangeCreateIndex_nodeDescription = $this => { - return $this.$nodeDescription0; -}, -oncia_RangeCreateIndex_relDescription = $this => { - return $this.$relDescription0; -}, -oncia_RangeCreateIndex_allDescription = $this => { - return $this.$allDescription0; +let oncie_PropertyKeyName_name = $this => { + return $this.$name5; }, -oncia_RangeCreateIndex_singlePropertyOnly = $this => { - return $this.$singlePropertyOnly0; +oncie_PropertyKeyName_position = $this => { + return $this.$position30; }, -oncia_RangeCreateIndex_productPrefix = $this => { - return $rt_s(5536); +oncie_PropertyKeyName_productPrefix = $this => { + return $rt_s(4109); }, -oncia_RangeCreateIndex_productArity = $this => { +oncie_PropertyKeyName_productArity = $this => { return 1; }, -oncia_RangeCreateIndex_productElement = ($this, $x$1) => { +oncie_PropertyKeyName_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return jl_Boolean_valueOf($this.$fromDefault); + return $this.$name5; default: } return sr_Statics_ioobe($x$1); }, -oncia_RangeCreateIndex_productIterator = $this => { +oncie_PropertyKeyName_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_RangeCreateIndex_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5536))), !$this.$fromDefault ? 1237 : 1231), 1); +oncie_PropertyKeyName_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_RangeCreateIndex_toString = $this => { +oncie_PropertyKeyName_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_RangeCreateIndex_equals = ($this, $x$1) => { - let var$2; +oncie_PropertyKeyName_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RangeCreateIndex) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$fromDefault != $x$1.$fromDefault) + if (!(!($x$1 instanceof oncie_PropertyKeyName) ? 0 : 1)) break b; - if (!($this instanceof oncia_RangeCreateIndex)) + c: { + $x$1 = $x$1; + var$2 = $this.$name5; + $x$1 = $x$1.$name5; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_PropertyKeyName)) break b; } - var$2 = 1; + var$3 = 1; break a; } - var$2 = 0; + var$3 = 0; } - return var$2; + return var$3; }, -oncia_RangeCreateIndex__init_0 = ($this, $fromDefault) => { - $this.$fromDefault = $fromDefault; - $this.$command2 = !$fromDefault ? $rt_s(894) : $rt_s(896); - $this.$nodeDescription0 = $rt_s(5537); - $this.$relDescription0 = $rt_s(5538); - $this.$allDescription0 = $rt_s(5539); - $this.$singlePropertyOnly0 = 0; +oncie_PropertyKeyName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncia_RangeCreateIndex__init_ = var_0 => { - let var_1 = new oncia_RangeCreateIndex(); - oncia_RangeCreateIndex__init_0(var_1, var_0); - return var_1; +oncie_PropertyKeyName__init_ = ($this, $name, $position) => { + $this.$name5 = $name; + $this.$position30 = $position; }, -oncia_TextCreateIndex$ = $rt_classWithoutFields(), -oncia_TextCreateIndex$_MODULE$ = null, -oncia_TextCreateIndex$_command = null, -oncia_TextCreateIndex$_nodeDescription = null, -oncia_TextCreateIndex$_relDescription = null, -oncia_TextCreateIndex$_allDescription = null, -oncia_TextCreateIndex$_singlePropertyOnly = 0, -oncia_TextCreateIndex$_$callClinit = () => { - oncia_TextCreateIndex$_$callClinit = $rt_eraseClinit(oncia_TextCreateIndex$); - oncia_TextCreateIndex$__clinit_(); +oncie_PropertyKeyName__init_0 = (var_0, var_1) => { + let var_2 = new oncie_PropertyKeyName(); + oncie_PropertyKeyName__init_(var_2, var_0, var_1); + return var_2; }, -oncia_TextCreateIndex$__clinit_ = () => { - let var$1; - var$1 = new oncia_TextCreateIndex$; - oncia_TextCreateIndex$_$callClinit(); - oncia_TextCreateIndex$_MODULE$ = var$1; - oncia_TextCreateIndex$_command = $rt_s(897); - oncia_TextCreateIndex$_nodeDescription = $rt_s(5540); - oncia_TextCreateIndex$_relDescription = $rt_s(5541); - oncia_TextCreateIndex$_allDescription = $rt_s(5542); - oncia_TextCreateIndex$_singlePropertyOnly = 1; +sc_SeqFactory$UnapplySeqWrapper$ = $rt_classWithoutFields(), +sc_SeqFactory$UnapplySeqWrapper$_MODULE$ = null, +sc_SeqFactory$UnapplySeqWrapper$__clinit_ = () => { + sc_SeqFactory$UnapplySeqWrapper$_MODULE$ = new sc_SeqFactory$UnapplySeqWrapper$; }, -oncia_TextCreateIndex$_nodeDescription0 = $this => { - oncia_TextCreateIndex$_$callClinit(); - return oncia_TextCreateIndex$_nodeDescription; +sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension = ($this, $$this) => { + return 0; }, -oncia_TextCreateIndex$_relDescription0 = $this => { - oncia_TextCreateIndex$_$callClinit(); - return oncia_TextCreateIndex$_relDescription; +sc_SeqFactory$UnapplySeqWrapper$_get$extension = ($this, $$this) => { + return $$this; }, -oncia_TextCreateIndex$_allDescription0 = $this => { - oncia_TextCreateIndex$_$callClinit(); - return oncia_TextCreateIndex$_allDescription; +sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension = ($this, $$this, $len) => { + return $$this.$lengthCompare($len); }, -oncia_TextCreateIndex$_singlePropertyOnly0 = $this => { - oncia_TextCreateIndex$_$callClinit(); - return oncia_TextCreateIndex$_singlePropertyOnly; +sc_SeqFactory$UnapplySeqWrapper$_apply$extension = ($this, $$this, $i) => { + return $$this.$apply1($i); +}; +function sc_SeqFactory$UnapplySeqWrapper() { + jl_Object.call(this); + this.$scala$collection$SeqFactory$UnapplySeqWrapper$$c = null; +} +let sc_SeqFactory$UnapplySeqWrapper__init_ = ($this, $c) => { + $this.$scala$collection$SeqFactory$UnapplySeqWrapper$$c = $c; }, -oncia_TextCreateIndex$_productArity = $this => { +sc_SeqFactory$UnapplySeqWrapper__init_0 = var_0 => { + let var_1 = new sc_SeqFactory$UnapplySeqWrapper(); + sc_SeqFactory$UnapplySeqWrapper__init_(var_1, var_0); + return var_1; +}, +oncief_NullIf$ = $rt_classWithoutFields(oncief_Function), +oncief_NullIf$_MODULE$ = null, +oncief_NullIf$_signatures = null, +oncief_NullIf$_$callClinit = () => { + oncief_NullIf$_$callClinit = $rt_eraseClinit(oncief_NullIf$); + oncief_NullIf$__clinit_(); +}, +oncief_NullIf$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; + var$1 = new oncief_NullIf$; + oncief_NullIf$_$callClinit(); + oncief_Function__init_(var$1); + oncief_NullIf$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_NullIf$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(4110), $rt_s(4111)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$7 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(4110), $rt_s(4112)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(4111), $rt_s(4113)); + var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(4114), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); + oncief_NullIf$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_NullIf$_name = $this => { + return $rt_s(597); +}, +oncief_NullIf$_productArity = $this => { return 0; }, -oncia_TextCreateIndex$_productElement = ($this, $x$1) => { +oncief_NullIf$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -oncia_TextCreateIndex$_productIterator = $this => { +oncief_NullIf$_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_TextCreateIndex$_hashCode = $this => { - return 657383849; +oncief_NullIf$_hashCode = $this => { + return (-1950517980); }, -oncia_TextCreateIndex$_toString = $this => { - return $rt_s(5543); +oncief_NullIf$_toString = $this => { + return $rt_s(4115); }, -oncia_PointCreateIndex$ = $rt_classWithoutFields(), -oncia_PointCreateIndex$_MODULE$ = null, -oncia_PointCreateIndex$_command = null, -oncia_PointCreateIndex$_nodeDescription = null, -oncia_PointCreateIndex$_relDescription = null, -oncia_PointCreateIndex$_allDescription = null, -oncia_PointCreateIndex$_singlePropertyOnly = 0, -oncia_PointCreateIndex$__clinit_ = () => { - oncia_PointCreateIndex$_MODULE$ = new oncia_PointCreateIndex$; - oncia_PointCreateIndex$_command = $rt_s(895); - oncia_PointCreateIndex$_nodeDescription = $rt_s(5544); - oncia_PointCreateIndex$_relDescription = $rt_s(5545); - oncia_PointCreateIndex$_allDescription = $rt_s(5546); - oncia_PointCreateIndex$_singlePropertyOnly = 1; +oncief_NullIf$_signatures0 = $this => { + oncief_NullIf$_$callClinit(); + return oncief_NullIf$_signatures; }, -oncia_PointCreateIndex$_nodeDescription0 = $this => { - return oncia_PointCreateIndex$_nodeDescription; +oncie_ChainableBinaryOperatorExpression = $rt_classWithoutFields(0); +function oncie_Equals() { + let a = this; oncie_Expression.call(a); + a.$lhs14 = null; + a.$rhs6 = null; + a.$position215 = null; + a.$signatures22 = null; +} +let oncie_Equals_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncia_PointCreateIndex$_relDescription0 = $this => { - return oncia_PointCreateIndex$_relDescription; +oncie_Equals_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncia_PointCreateIndex$_allDescription0 = $this => { - return oncia_PointCreateIndex$_allDescription; +oncie_Equals_lhs = $this => { + return $this.$lhs14; }, -oncia_PointCreateIndex$_singlePropertyOnly0 = $this => { - return oncia_PointCreateIndex$_singlePropertyOnly; +oncie_Equals_rhs = $this => { + return $this.$rhs6; }, -oncia_PointCreateIndex$_productArity = $this => { - return 0; +oncie_Equals_position = $this => { + return $this.$position215; }, -oncia_PointCreateIndex$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncie_Equals_signatures = $this => { + return $this.$signatures22; }, -oncia_PointCreateIndex$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_Equals_canonicalOperatorSymbol = $this => { + return $rt_s(4116); }, -oncia_PointCreateIndex$_hashCode = $this => { - return 1430344102; +oncie_Equals_productPrefix = $this => { + return $rt_s(4117); }, -oncia_PointCreateIndex$_toString = $this => { - return $rt_s(5547); +oncie_Equals_productArity = $this => { + return 2; }, -oncia_VectorCreateIndex$ = $rt_classWithoutFields(), -oncia_VectorCreateIndex$_MODULE$ = null; -let oncia_VectorCreateIndex$_command = null, -oncia_VectorCreateIndex$_nodeDescription = null, -oncia_VectorCreateIndex$_relDescription = null, -oncia_VectorCreateIndex$_allDescription = null, -oncia_VectorCreateIndex$_singlePropertyOnly = 0, -oncia_VectorCreateIndex$__clinit_ = () => { - oncia_VectorCreateIndex$_MODULE$ = new oncia_VectorCreateIndex$; - oncia_VectorCreateIndex$_command = $rt_s(5548); - oncia_VectorCreateIndex$_nodeDescription = $rt_s(5549); - oncia_VectorCreateIndex$_relDescription = $rt_s(5550); - oncia_VectorCreateIndex$_allDescription = $rt_s(5551); - oncia_VectorCreateIndex$_singlePropertyOnly = 1; +oncie_Equals_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs14; + case 1: + return $this.$rhs6; + default: + } + return sr_Statics_ioobe($x$1); }, -oncia_VectorCreateIndex$_nodeDescription0 = $this => { - return oncia_VectorCreateIndex$_nodeDescription; +oncie_Equals_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_VectorCreateIndex$_relDescription0 = $this => { - return oncia_VectorCreateIndex$_relDescription; +oncie_Equals_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_VectorCreateIndex$_allDescription0 = $this => { - return oncia_VectorCreateIndex$_allDescription; +oncie_Equals_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_VectorCreateIndex$_singlePropertyOnly0 = $this => { - return oncia_VectorCreateIndex$_singlePropertyOnly; +oncie_Equals_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Equals) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs14; + var$3 = $x$1.$lhs14; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs6; + $x$1 = $x$1.$rhs6; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Equals)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncia_VectorCreateIndex$_productArity = $this => { - return 0; +oncie_Equals__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs14 = $lhs; + $this.$rhs6 = $rhs; + $this.$position215 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures22 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncia_VectorCreateIndex$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncie_Equals__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Equals(); + oncie_Equals__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_Null() { + let a = this; oncie_Expression.call(a); + a.$position172 = null; + a.$value46 = null; +} +let oncie_Null_isConstantForQuery = $this => { + return 1; }, -oncia_VectorCreateIndex$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_Null_position = $this => { + return $this.$position172; }, -oncia_VectorCreateIndex$_hashCode = $this => { - return 1286046675; +oncie_Null_asCanonicalStringVal = $this => { + return $rt_s(4118); }, -oncia_VectorCreateIndex$_toString = $this => { - return $rt_s(5552); +oncie_Null_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_Null$$anon$7; + oncie_Null__init_(var$1, $this.$position172); + return var$1; }, -oncia_CreateFulltextIndex = $rt_classWithoutFields(0); -function oncia_CreateFulltextIndexCommand() { - let a = this; jl_Object.call(a); - a.$variable23 = null; - a.$entityNames0 = null; - a.$properties10 = null; - a.$name34 = null; - a.$ifExistsDo9 = null; - a.$options2 = null; - a.$useGraph4 = null; - a.$position128 = null; - a.$indexType4 = null; - a.$org$neo4j$cypher$internal$ast$CreateFulltextIndex$$x$2 = null; - a.$isNodeIndex2 = 0; - a.$entityIndexDescription0 = null; -} -let oncia_CreateFulltextIndexCommand_semanticCheck = $this => { - return oncias_SemanticCheck_chain$(oncia_SchemaCommand_checkOptionsMap$($this, $this.$entityIndexDescription0, $this.$options2), oncia_CreateIndex_semanticCheck$($this)); +oncie_Null_copy = ($this, $position) => { + return oncie_Null__init_0($position); }, -oncia_CreateFulltextIndexCommand_returnColumns = $this => { - return oncia_SchemaCommand_returnColumns$($this); +oncie_Null_productPrefix = $this => { + return $rt_s(134); }, -oncia_CreateFulltextIndexCommand_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +oncie_Null_productArity = $this => { + return 0; }, -oncia_CreateFulltextIndexCommand_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +oncie_Null_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncia_CreateFulltextIndexCommand_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +oncie_Null_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateFulltextIndexCommand_foldedOver = $this => { - return $this; +oncie_Null_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_Null; }, -oncia_CreateFulltextIndexCommand_folder = $this => { - return onciu_Foldable_folder$($this); +oncie_Null_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateFulltextIndexCommand_indexType = $this => { - return $this.$indexType4; +oncie_Null_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateFulltextIndexCommand_isNodeIndex = $this => { - return $this.$isNodeIndex2; +oncie_Null_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_Null) ? 0 : 1; + return var$2 && $this instanceof oncie_Null ? 1 : 0; }, -oncia_CreateFulltextIndexCommand_variable = $this => { - return $this.$variable23; +oncie_Null__init_ = ($this, $position) => { + $this.$position172 = $position; + oncie_Expression__init_($this); + $this.$value46 = null; }, -oncia_CreateFulltextIndexCommand_properties = $this => { - return $this.$properties10; +oncie_Null__init_0 = var_0 => { + let var_1 = new oncie_Null(); + oncie_Null__init_(var_1, var_0); + return var_1; +}; +function oncie_CaseExpression() { + let a = this; oncie_Expression.call(a); + a.$possibleExpressions0 = null; + a.$expression35 = null; + a.$alternatives0 = null; + a.$default3 = null; + a.$position282 = null; + a.$bitmap$036 = 0; +} +let oncie_CaseExpression_expression = $this => { + return $this.$expression35; }, -oncia_CreateFulltextIndexCommand_ifExistsDo = $this => { - return $this.$ifExistsDo9; +oncie_CaseExpression_alternatives = $this => { + return $this.$alternatives0; }, -oncia_CreateFulltextIndexCommand_options = $this => { - return $this.$options2; +oncie_CaseExpression_default = $this => { + return $this.$default3; }, -oncia_CreateFulltextIndexCommand_position = $this => { - return $this.$position128; +oncie_CaseExpression_position = $this => { + return $this.$position282; }, -oncia_CreateFulltextIndexCommand_copy = ($this, $variable, $entityNames, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateFulltextIndexCommand__init_0($variable, $entityNames, $properties, $name, $ifExistsDo, $options, $useGraph, $position); +oncie_CaseExpression_possibleExpressions = $this => { + let var$1, $$je; + if ($this.$bitmap$036) + return $this.$possibleExpressions0; + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$bitmap$036) + break a; + $this.$possibleExpressions0 = sc_AbstractIterable_$plus$plus((oncie_CaseExpression_alternatives($this)).$map(oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0__init_()), oncie_CaseExpression_default($this)); + $this.$bitmap$036 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$possibleExpressions0; }, -oncia_CreateFulltextIndexCommand_productPrefix = $this => { - return $rt_s(5553); +oncie_CaseExpression_isConstantForQuery = $this => { + return s_Option_forall($this.$expression35, new oncie_CaseExpression$isConstantForQuery$lambda$_9_0) && sc_IterableOnceOps_forall$($this.$alternatives0, new oncie_CaseExpression$isConstantForQuery$lambda$_9_1) && s_Option_forall($this.$default3, new oncie_CaseExpression$isConstantForQuery$lambda$_9_2) ? 1 : 0; }, -oncia_CreateFulltextIndexCommand_productArity = $this => { - return 7; +oncie_CaseExpression_productPrefix = $this => { + return $rt_s(4119); }, -oncia_CreateFulltextIndexCommand_productElement = ($this, $x$1) => { +oncie_CaseExpression_productArity = $this => { + return 3; +}, +oncie_CaseExpression_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$variable23; + return $this.$expression35; case 1: - return $this.$entityNames0; + return $this.$alternatives0; case 2: - return $this.$properties10; - case 3: - return $this.$name34; - case 4: - return $this.$ifExistsDo9; - case 5: - return $this.$options2; - case 6: - return $this.$useGraph4; + return $this.$default3; default: } return sr_Statics_ioobe($x$1); }, -oncia_CreateFulltextIndexCommand_productIterator = $this => { +oncie_CaseExpression_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateFulltextIndexCommand_hashCode = $this => { +oncie_CaseExpression_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateFulltextIndexCommand_toString = $this => { +oncie_CaseExpression_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateFulltextIndexCommand_equals = ($this, $x$1) => { +oncie_CaseExpression_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateFulltextIndexCommand) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_CaseExpression) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$variable23; - var$3 = $x$1.$variable23; + var$2 = $this.$expression35; + var$3 = $x$1.$expression35; if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break c; @@ -207877,8 +97067,8 @@ oncia_CreateFulltextIndexCommand_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$entityNames0; - var$3 = $x$1.$entityNames0; + var$2 = $this.$alternatives0; + var$3 = $x$1.$alternatives0; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -207889,66 +97079,204 @@ oncia_CreateFulltextIndexCommand_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$properties10; - var$3 = $x$1.$properties10; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + var$3 = $this.$default3; + $x$1 = $x$1.$default3; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) break b; else break e; } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$name34; - var$3 = $x$1.$name34; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$ifExistsDo9; - var$3 = $x$1.$ifExistsDo9; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break g; - } - if (var$3 !== null) + if ($x$1 !== null) break b; } - h: { - var$2 = $this.$options2; - var$3 = $x$1.$options2; + if (!($this instanceof oncie_CaseExpression)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncie_CaseExpression__init_ = ($this, $expression, $alternatives, $default, $position) => { + $this.$expression35 = $expression; + $this.$alternatives0 = $alternatives; + $this.$default3 = $default; + $this.$position282 = $position; + oncie_Expression__init_($this); +}, +oncie_CaseExpression__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncie_CaseExpression(); + oncie_CaseExpression__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncia_TopLevelBraces() { + let a = this; jl_Object.call(a); + a.$query1 = null; + a.$use0 = null; + a.$position13 = null; +} +let oncia_TopLevelBraces_returnColumns = $this => { + return oncia_Query_returnColumns$($this); +}, +oncia_TopLevelBraces_foldedOver = $this => { + return $this; +}, +oncia_TopLevelBraces_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_TopLevelBraces_position = $this => { + return $this.$position13; +}, +oncia_TopLevelBraces_getQuery = ($this, $fromUnion) => { + let var$2, $lhs, $rhs, $rhs_0; + if ($fromUnion) + return oncia_TopLevelBraces_wrapUnionArgument($this, $this.$query1); + var$2 = $this.$query1.$getQuery($fromUnion); + if (var$2 instanceof oncia_UnionDistinct) { + var$2 = var$2; + $lhs = var$2.$lhs5; + $rhs = var$2.$rhs5; + return oncia_UnionDistinct_copy(var$2, $lhs.$getQuery(1), $rhs.$getSingleQuery(), var$2.$position29); + } + if (!(var$2 instanceof oncia_UnionAll)) + return var$2; + var$2 = var$2; + $lhs = var$2.$lhs4; + $rhs_0 = var$2.$rhs4; + return oncia_UnionAll_copy(var$2, $lhs.$getQuery(1), $rhs_0.$getSingleQuery(), var$2.$position38); +}, +oncia_TopLevelBraces_getSingleQuery = $this => { + return oncia_TopLevelBraces_wrapUnionArgument($this, $this.$query1); +}, +oncia_TopLevelBraces_wrapUnionArgument = ($this, $innerQuery) => { + let $lastClause, $sq, var$4, $qual$1, $x$9; + if (!$innerQuery.$isReturning()) + $lastClause = oncia_Finish__init_0($this.$position13); + else { + $lastClause = oncia_Return$_MODULE$; + $sq = new oncia_ReturnItems; + s_package$_$callClinit(); + var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_($sq, 1, var$4, s_None$_MODULE$, $this.$position13); + $qual$1 = oncia_Return$_apply($lastClause, $sq, $this.$position13); + $lastClause = oncia_Return_copy($qual$1, $qual$1.$distinct1, $qual$1.$returnItems2, $qual$1.$orderBy2, $qual$1.$skip3, $qual$1.$limit3, $qual$1.$excludedNames, $qual$1.$addedInRewrite, 1, $this.$position13); + } + $sq = new oncia_SingleQuery; + $x$9 = new sci_$colon$colon; + var$4 = new oncia_ScopeClauseSubqueryCall; + s_package$_$callClinit(); + oncia_ScopeClauseSubqueryCall__init_(var$4, $innerQuery, 1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), s_None$_MODULE$, 0, $this.$position13); + sci_$colon$colon__init_0($x$9, var$4, sci_$colon$colon__init_($lastClause, sci_Nil$_MODULE$)); + oncia_SingleQuery__init_($sq, $x$9, $this.$position13); + return $sq; +}, +oncia_TopLevelBraces_containsUpdates = $this => { + return $this.$query1.$containsUpdates(); +}, +oncia_TopLevelBraces_returnVariables = $this => { + return $this.$query1.$returnVariables(); +}, +oncia_TopLevelBraces_finalScope = ($this, $scope) => { + return $this.$query1.$finalScope($scope); +}, +oncia_TopLevelBraces_checkImportingWith = $this => { + return $this.$query1.$checkImportingWith(); +}, +oncia_TopLevelBraces_semanticCheckInSubqueryContext = ($this, $outer, $current) => { + return $this.$query1.$semanticCheckInSubqueryContext($outer, $current); +}, +oncia_TopLevelBraces_semanticCheckImportingWithSubQueryContext = ($this, $outer) => { + return $this.$query1.$semanticCheckImportingWithSubQueryContext($outer); +}, +oncia_TopLevelBraces_isCorrelated = $this => { + return $this.$query1.$isCorrelated(); +}, +oncia_TopLevelBraces_isReturning = $this => { + return $this.$query1.$isReturning(); +}, +oncia_TopLevelBraces_getReturns = $this => { + return $this.$query1.$getReturns(); +}, +oncia_TopLevelBraces_endsWithFinish = $this => { + return $this.$query1.$endsWithFinish(); +}, +oncia_TopLevelBraces_importColumns = $this => { + return $this.$query1.$importColumns(); +}, +oncia_TopLevelBraces_semanticCheckInSubqueryExpressionContext = ($this, $canOmitReturn) => { + return $this.$query1.$semanticCheckInSubqueryExpressionContext($canOmitReturn); +}, +oncia_TopLevelBraces_mapEachSingleQuery = ($this, $f) => { + return $this.$query1.$mapEachSingleQuery($f); +}, +oncia_TopLevelBraces_semanticCheck = $this => { + return oncias_SemanticCheck_chain$($this.$query1.$semanticCheck(), oncias_SemanticAnalysisTooling_recordCurrentScope$($this, $this)); +}, +oncia_TopLevelBraces_copy = ($this, $query, $use, $position) => { + return oncia_TopLevelBraces__init_0($query, $use, $position); +}, +oncia_TopLevelBraces_productPrefix = $this => { + return $rt_s(4120); +}, +oncia_TopLevelBraces_productArity = $this => { + return 2; +}, +oncia_TopLevelBraces_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$query1; + case 1: + return $this.$use0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_TopLevelBraces_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_TopLevelBraces_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_TopLevelBraces_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_TopLevelBraces_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_TopLevelBraces) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$query1; + var$3 = $x$1.$query1; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; else - break h; + break c; } if (var$3 !== null) break b; } - i: { - var$3 = $this.$useGraph4; - $x$1 = $x$1.$useGraph4; + d: { + var$3 = $this.$use0; + $x$1 = $x$1.$use0; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break i; + break d; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_CreateFulltextIndexCommand)) + if (!($this instanceof oncia_TopLevelBraces)) break b; } var$4 = 1; @@ -207958,261 +97286,305 @@ oncia_CreateFulltextIndexCommand_equals = ($this, $x$1) => { } return var$4; }, -oncia_CreateFulltextIndexCommand_dup = ($this, $children) => { +oncia_TopLevelBraces_dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncia_CreateFulltextIndexCommand_withGraph = ($this, $useGraph) => { - return oncia_CreateFulltextIndexCommand_copy($this, $this.$variable23, $this.$entityNames0, $this.$properties10, $this.$name34, $this.$ifExistsDo9, $this.$options2, $useGraph, $this.$position128); +oncia_TopLevelBraces__init_ = ($this, $query, $use, $position) => { + $this.$query1 = $query; + $this.$use0 = $use; + $this.$position13 = $position; }, -oncia_CreateFulltextIndexCommand__init_ = ($this, $variable, $entityNames, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { - let var$9; - $this.$variable23 = $variable; - $this.$entityNames0 = $entityNames; - $this.$properties10 = $properties; - $this.$name34 = $name; - $this.$ifExistsDo9 = $ifExistsDo; - $this.$options2 = $options; - $this.$useGraph4 = $useGraph; - $this.$position128 = $position; - $this.$indexType4 = oncia_FulltextCreateIndex$_MODULE$; - if ($entityNames instanceof su_Left) - $variable = s_Tuple2__init_(jl_Boolean_valueOf(1), oncia_FulltextCreateIndex$_nodeDescription); - else { - if (!($entityNames instanceof su_Right)) - $rt_throw(s_MatchError__init_($entityNames)); - $variable = s_Tuple2__init_(jl_Boolean_valueOf(0), oncia_FulltextCreateIndex$_relDescription); - } - var$9 = s_Tuple2__1$mcZ$sp($variable); - $entityNames = $variable.$_20; - if ($entityNames === null) - $rt_throw(s_MatchError__init_($variable)); - $variable = s_Tuple2__init_(jl_Boolean_valueOf(var$9), $entityNames); - $this.$org$neo4j$cypher$internal$ast$CreateFulltextIndex$$x$2 = $variable; - $this.$isNodeIndex2 = s_Tuple2__1$mcZ$sp($variable); - $this.$entityIndexDescription0 = $this.$org$neo4j$cypher$internal$ast$CreateFulltextIndex$$x$2.$_20; +oncia_TopLevelBraces__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_TopLevelBraces(); + oncia_TopLevelBraces__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncia_CreateFulltextIndexCommand__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { - let var_8 = new oncia_CreateFulltextIndexCommand(); - oncia_CreateFulltextIndexCommand__init_(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); - return var_8; +oncirr_unwrapTopLevelBraces$$anonfun$2$$anonfun$applyOrElse$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_unwrapTopLevelBraces$$anonfun$2$$anonfun$applyOrElse$1_applyOrElse = ($this, $x1, $default) => { + if (!($x1 instanceof oncia_Return)) + return $default.$apply2($x1); + $x1 = $x1; + return oncia_Return_copy($x1, $x1.$distinct1, $x1.$returnItems2, $x1.$orderBy2, $x1.$skip3, $x1.$limit3, $x1.$excludedNames, $x1.$addedInRewrite, 1, $x1.$position23); }, -oncia_CreateLookupIndex = $rt_classWithoutFields(0); -function oncia_CreateLookupIndexCommand() { - let a = this; jl_Object.call(a); - a.$variable15 = null; - a.$isNodeIndex0 = 0; - a.$function2 = null; - a.$name31 = null; - a.$ifExistsDo6 = null; - a.$options0 = null; - a.$useGraph1 = null; - a.$position115 = null; - a.$indexType5 = null; - a.$properties16 = null; -} -let oncia_CreateLookupIndexCommand_semanticCheck = $this => { - let var$1, var$2, var$3, var$4, var$5; +oncia_Union = $rt_classWithoutFields(0), +oncia_Union_returnVariables$ = $$this => { + return oncia_ReturnItems$ReturnVariables__init_(!(($$this.$lhs()).$returnVariables()).$includeExisting1 && !(($$this.$rhs0()).$returnVariables()).$includeExisting1 ? 0 : 1, sci_List_map($$this.$unionMappings(), new oncia_Union$returnVariables$lambda$_6_0)); +}, +oncia_Union_getReturns$ = $$this => { + return (($$this.$lhs()).$getReturns()).$concat(($$this.$rhs0()).$getReturns()); +}, +oncia_Union_importColumns$ = $$this => { + return (($$this.$lhs()).$importColumns()).$concat(($$this.$rhs0()).$importColumns()); +}, +oncia_Union_containsUpdates$ = $$this => { + return !($$this.$lhs()).$containsUpdates() && !($$this.$rhs0()).$containsUpdates() ? 0 : 1; +}, +oncia_Union_checkRecursively = ($this, $semanticCheck) => { + let var$2, var$3; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_Union$checkRecursively$lambda$_13_0; + var$3.$_0443 = $this; + var$3.$_1153 = $semanticCheck; + return oncias_SemanticCheck$_fromState(var$2, var$3); +}, +oncia_Union_semanticCheck$ = $$this => { + return oncia_Union_checkRecursively($$this, new oncia_Union$semanticCheck$lambda$_15_0); +}, +oncia_Union_semanticCheckInSubqueryExpressionContext$ = ($$this, $canOmitReturn) => { + let var$3; + var$3 = new oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0; + var$3.$_0895 = $canOmitReturn; + return oncia_Union_checkRecursively($$this, var$3); +}, +oncia_Union_checkImportingWith$ = $$this => { + let var$2, var$3; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_Union$checkImportingWith$lambda$_19_0; + var$3.$_0859 = $$this; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck$_nestedCheck(var$2, var$3), ($$this.$rhs0()).$checkImportingWith()); +}, +oncia_Union_isCorrelated$ = $$this => { + return !($$this.$lhs()).$isCorrelated() && !($$this.$rhs0()).$isCorrelated() ? 0 : 1; +}, +oncia_Union_isReturning$ = $$this => { + return ($$this.$rhs0()).$isReturning(); +}, +oncia_Union_endsWithFinish$ = $$this => { + return !($$this.$rhs0()).$endsWithFinish() && !($$this.$lhs()).$endsWithFinish() ? 0 : 1; +}, +oncia_Union_semanticCheckInSubqueryContext$ = ($$this, $outer, $current) => { + let var$4; + var$4 = new oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0; + var$4.$_0941 = $$this; + var$4.$_1323 = $outer; + var$4.$_2110 = $current; + return oncia_Union_checkRecursively($$this, var$4); +}, +oncia_Union_semanticCheckImportingWithSubQueryContext$ = ($$this, $outer) => { + let var$3; + var$3 = new oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_29_0; + var$3.$_0661 = $outer; + return oncia_Union_checkRecursively($$this, var$3); +}, +oncia_Union_finalScope$ = ($$this, $scope) => { + return $scope.$children2.$last(); +}, +oncia_Union_checkSingleQuery$1 = ($this, $singleQuery, $semanticCheck$1) => { + let var$3; + var$3 = new oncia_Union$checkSingleQuery$1$lambda$_39_0; + var$3.$_0108 = $this; + var$3.$_138 = $semanticCheck$1; + var$3.$_219 = $singleQuery; + return $this.$withScopedState(var$3); +}; +let oncia_Union_Mapping$3 = ($this, $Mapping$module$1) => { + let var$2, $$je; + if ($Mapping$module$1.$_initialized) + return $Mapping$module$1.$_value0; + jl_Object_monitorEnterSync($Mapping$module$1); a: { - var$1 = $this.$function2; - if (var$1 !== null) { - var$1 = var$1.$functionName2; - if (var$1 !== null) { - var$2 = var$1.$name7; - if (!$this.$isNodeIndex0) { - oncief_Type$_$callClinit(); - var$3 = jl_String_equalsIgnoreCase(var$2, $rt_s(4912)); - } else { - oncief_Labels$_$callClinit(); - var$3 = jl_String_equalsIgnoreCase(var$2, $rt_s(5096)); - } - if (!var$3) { - if (!$this.$isNodeIndex0) { - var$1 = new s_Tuple2; - oncief_Type$_$callClinit(); - s_Tuple2__init_0(var$1, $rt_s(4912), oncia_LookupCreateIndex$_relDescription); - } else { - var$1 = new s_Tuple2; - oncief_Labels$_$callClinit(); - s_Tuple2__init_0(var$1, $rt_s(5096), oncia_LookupCreateIndex$_nodeDescription); - } - var$4 = s_Tuple2__init_(var$1.$_10, var$1.$_20); - var$1 = var$4.$_10; - var$5 = var$4.$_20; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5302)), var$5), $rt_s(5554)), var$2), $rt_s(5555)), var$1), $rt_s(5556)); - var$1 = oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$4), $this.$position115); - break a; - } - } + try { + var$2 = sr_LazyRef_initialized($Mapping$module$1) ? sr_LazyRef_value($Mapping$module$1) : sr_LazyRef_initialize($Mapping$module$1, oncia_Union$Mapping$2$__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + break a; + } - var$5 = oncias_SemanticCheck_chain$(oncia_SchemaCommand_checkOptionsMap$($this, oncia_LookupCreateIndex$_allDescription, $this.$options0), oncia_CreateIndex_semanticCheck$($this)); - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(var$5, oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$function2)); + jl_Object_monitorExitSync($Mapping$module$1); + return var$2; } - return var$1; + jl_Object_monitorExitSync($Mapping$module$1); + $rt_throw(var$2); }, -oncia_CreateLookupIndexCommand_returnColumns = $this => { - return oncia_SchemaCommand_returnColumns$($this); +oncia_UnmappedUnion = $rt_classWithoutFields(0), +oncia_UnmappedUnion_dup$ = ($$this, $children) => { + let var$3, var$4, var$5, var$6; + $children = $$this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup($children); + var$3 = ($$this.$lhs()).$returnColumns(); + var$4 = ($$this.$rhs0()).$returnColumns(); + var$5 = ($children.$lhs()).$returnColumns(); + var$6 = ($children.$rhs0()).$returnColumns(); + if (oncia_UnmappedUnion_containTheSameInstances$1(var$3, var$5) && oncia_UnmappedUnion_containTheSameInstances$1(var$4, var$6)) + $children.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq($$this.$unionMappings()); + return $children; }, -oncia_CreateLookupIndexCommand_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +oncia_UnmappedUnion_checkColumnNamesAgree$ = $$this => { + let var$2, var$3; + var$2 = oncias_package$_MODULE$; + var$3 = new oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0; + var$3.$_0232 = $$this; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); }, -oncia_CreateLookupIndexCommand_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +oncia_UnmappedUnion_containTheSameInstances$1 = ($a, $b) => { + let var$3; + var$3 = new oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0; + var$3.$_0306 = $b; + return sci_List_forall($a, var$3) && $a.$length() == $b.$length() ? 1 : 0; }, -oncia_CreateLookupIndexCommand_error = ($this, $msg, $position) => { +oncia_UnmappedUnion_$init$ = $$this => { + let var$2, var$3; + var$2 = ($$this.$lhs()).$returnColumns(); + var$3 = new oncia_UnmappedUnion$$init$$lambda$_16_0; + var$3.$_08 = $$this; + $$this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq(sci_List_flatMap(var$2, var$3)); +}; +function oncia_UnionDistinct() { + let a = this; jl_Object.call(a); + a.$lhs5 = null; + a.$rhs5 = null; + a.$position29 = null; + a.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings1 = null; +} +let oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_UnionDistinct_unionMappings = $this => { + return $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings(); +}, +oncia_UnionDistinct_checkColumnNamesAgree = $this => { + return oncia_UnmappedUnion_checkColumnNamesAgree$($this); +}, +oncia_UnionDistinct_getQuery = ($this, $fromUnion) => { + return $this; +}, +oncia_UnionDistinct_returnVariables = $this => { + return oncia_Union_returnVariables$($this); +}, +oncia_UnionDistinct_getReturns = $this => { + return oncia_Union_getReturns$($this); +}, +oncia_UnionDistinct_importColumns = $this => { + return oncia_Union_importColumns$($this); +}, +oncia_UnionDistinct_containsUpdates = $this => { + return oncia_Union_containsUpdates$($this); +}, +oncia_UnionDistinct_semanticCheck = $this => { + return oncia_Union_semanticCheck$($this); +}, +oncia_UnionDistinct_semanticCheckInSubqueryExpressionContext = ($this, $canOmitReturn) => { + return oncia_Union_semanticCheckInSubqueryExpressionContext$($this, $canOmitReturn); +}, +oncia_UnionDistinct_checkImportingWith = $this => { + return oncia_Union_checkImportingWith$($this); +}, +oncia_UnionDistinct_isCorrelated = $this => { + return oncia_Union_isCorrelated$($this); +}, +oncia_UnionDistinct_isReturning = $this => { + return oncia_Union_isReturning$($this); +}, +oncia_UnionDistinct_endsWithFinish = $this => { + return oncia_Union_endsWithFinish$($this); +}, +oncia_UnionDistinct_semanticCheckInSubqueryContext = ($this, $outer, $current) => { + return oncia_Union_semanticCheckInSubqueryContext$($this, $outer, $current); +}, +oncia_UnionDistinct_semanticCheckImportingWithSubQueryContext = ($this, $outer) => { + return oncia_Union_semanticCheckImportingWithSubQueryContext$($this, $outer); +}, +oncia_UnionDistinct_finalScope = ($this, $scope) => { + return oncia_Union_finalScope$($this, $scope); +}, +oncia_UnionDistinct_returnColumns = $this => { + return oncia_Query_returnColumns$($this); +}, +oncia_UnionDistinct_withScopedState = ($this, $check) => { + return oncias_SemanticAnalysisTooling_withScopedState$($this, $check); +}, +oncia_UnionDistinct_importValuesFromScope = ($this, $scope) => { + return oncias_SemanticAnalysisTooling_importValuesFromScope$($this, $scope); +}, +oncia_UnionDistinct_error = ($this, $msg, $position) => { return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncia_CreateLookupIndexCommand_foldedOver = $this => { +oncia_UnionDistinct_foldedOver = $this => { return $this; }, -oncia_CreateLookupIndexCommand_folder = $this => { +oncia_UnionDistinct_folder = $this => { return onciu_Foldable_folder$($this); }, -oncia_CreateLookupIndexCommand_indexType = $this => { - return $this.$indexType5; -}, -oncia_CreateLookupIndexCommand_properties = $this => { - return $this.$properties16; +oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings = $this => { + return $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings1; }, -oncia_CreateLookupIndexCommand_variable = $this => { - return $this.$variable15; +oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings1 = $x$1; }, -oncia_CreateLookupIndexCommand_isNodeIndex = $this => { - return $this.$isNodeIndex0; +oncia_UnionDistinct_lhs = $this => { + return $this.$lhs5; }, -oncia_CreateLookupIndexCommand_ifExistsDo = $this => { - return $this.$ifExistsDo6; +oncia_UnionDistinct_rhs = $this => { + return $this.$rhs5; }, -oncia_CreateLookupIndexCommand_options = $this => { - return $this.$options0; +oncia_UnionDistinct_position = $this => { + return $this.$position29; }, -oncia_CreateLookupIndexCommand_position = $this => { - return $this.$position115; +oncia_UnionDistinct_mapEachSingleQuery = ($this, $f) => { + return oncia_UnionDistinct_copy($this, $this.$lhs5.$mapEachSingleQuery($f), $f.$apply2($this.$rhs5.$getSingleQuery()), $this.$position29); }, -oncia_CreateLookupIndexCommand_copy = ($this, $variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position) => { - return oncia_CreateLookupIndexCommand__init_($variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position); +oncia_UnionDistinct_copy = ($this, $lhs, $rhs, $position) => { + return oncia_UnionDistinct__init_($lhs, $rhs, $position); }, -oncia_CreateLookupIndexCommand_productPrefix = $this => { - return $rt_s(5557); +oncia_UnionDistinct_productPrefix = $this => { + return $rt_s(4121); }, -oncia_CreateLookupIndexCommand_productArity = $this => { - return 7; +oncia_UnionDistinct_productArity = $this => { + return 2; }, -oncia_CreateLookupIndexCommand_productElement = ($this, $x$1) => { +oncia_UnionDistinct_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$variable15; + return $this.$lhs5; case 1: - return jl_Boolean_valueOf($this.$isNodeIndex0); - case 2: - return $this.$function2; - case 3: - return $this.$name31; - case 4: - return $this.$ifExistsDo6; - case 5: - return $this.$options0; - case 6: - return $this.$useGraph1; + return $this.$rhs5; default: } return sr_Statics_ioobe($x$1); }, -oncia_CreateLookupIndexCommand_productIterator = $this => { +oncia_UnionDistinct_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateLookupIndexCommand_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5557))), sr_Statics_anyHash($this.$variable15)), !$this.$isNodeIndex0 ? 1237 : 1231), sr_Statics_anyHash($this.$function2)), sr_Statics_anyHash($this.$name31)), sr_Statics_anyHash($this.$ifExistsDo6)), sr_Statics_anyHash($this.$options0)), sr_Statics_anyHash($this.$useGraph1)), 7); +oncia_UnionDistinct_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateLookupIndexCommand_toString = $this => { +oncia_UnionDistinct_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CreateLookupIndexCommand_equals = ($this, $x$1) => { +oncia_UnionDistinct_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CreateLookupIndexCommand) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$isNodeIndex0 != $x$1.$isNodeIndex0) - break b; - c: { - var$2 = $this.$variable15; - var$3 = $x$1.$variable15; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$function2; - var$3 = $x$1.$function2; - if (var$2 !== null) { - if (!oncie_FunctionInvocation_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$name31; - var$3 = $x$1.$name31; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$ifExistsDo6; - var$3 = $x$1.$ifExistsDo6; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UnionDistinct) ? 0 : 1)) break b; - } - g: { - var$2 = $this.$options0; - var$3 = $x$1.$options0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + d: { + $x$1 = $x$1; + var$2 = $this.$lhs5; + var$3 = $x$1.$lhs5; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break g; } - if (var$3 !== null) - break b; - } - h: { - var$3 = $this.$useGraph1; - $x$1 = $x$1.$useGraph1; + var$3 = $this.$rhs5; + $x$1 = $x$1.$rhs5; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break h; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_CreateLookupIndexCommand)) - break b; } var$4 = 1; break a; @@ -208221,144 +97593,174 @@ oncia_CreateLookupIndexCommand_equals = ($this, $x$1) => { } return var$4; }, -oncia_CreateLookupIndexCommand_dup = ($this, $children) => { +oncia_UnionDistinct_dup = ($this, $children) => { + return oncia_UnmappedUnion_dup$($this, $children); +}, +oncia_UnionDistinct__init_0 = ($this, $lhs, $rhs, $position) => { + $this.$lhs5 = $lhs; + $this.$rhs5 = $rhs; + $this.$position29 = $position; + oncia_UnmappedUnion_$init$($this); +}, +oncia_UnionDistinct__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_UnionDistinct(); + oncia_UnionDistinct__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_UnionAll() { + let a = this; jl_Object.call(a); + a.$lhs4 = null; + a.$rhs4 = null; + a.$position38 = null; + a.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings0 = null; +} +let oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncia_CreateLookupIndexCommand_withGraph = ($this, $useGraph) => { - return oncia_CreateLookupIndexCommand_copy($this, $this.$variable15, $this.$isNodeIndex0, $this.$function2, $this.$name31, $this.$ifExistsDo6, $this.$options0, $useGraph, $this.$position115); +oncia_UnionAll_unionMappings = $this => { + return $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings(); }, -oncia_CreateLookupIndexCommand__init_0 = ($this, $variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position) => { - $this.$variable15 = $variable; - $this.$isNodeIndex0 = $isNodeIndex; - $this.$function2 = $function; - $this.$name31 = $name; - $this.$ifExistsDo6 = $ifExistsDo; - $this.$options0 = $options; - $this.$useGraph1 = $useGraph; - $this.$position115 = $position; - $this.$indexType5 = oncia_LookupCreateIndex$_MODULE$; - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - $this.$properties16 = sci_Nil$_MODULE$; +oncia_UnionAll_checkColumnNamesAgree = $this => { + return oncia_UnmappedUnion_checkColumnNamesAgree$($this); }, -oncia_CreateLookupIndexCommand__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { - let var_8 = new oncia_CreateLookupIndexCommand(); - oncia_CreateLookupIndexCommand__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); - return var_8; +oncia_UnionAll_getQuery = ($this, $fromUnion) => { + return $this; }, -oncia_ShowColumn$ = $rt_classWithoutFields(), -oncia_ShowColumn$_MODULE$ = null, -oncia_ShowColumn$__clinit_ = () => { - oncia_ShowColumn$_MODULE$ = new oncia_ShowColumn$; +oncia_UnionAll_returnVariables = $this => { + return oncia_Union_returnVariables$($this); }, -oncia_ShowColumn$_apply = ($this, $name, $cypherType, $position) => { - return oncia_ShowColumn__init_0(oncie_Variable__init_($name, $position), $cypherType, $name); +oncia_UnionAll_getReturns = $this => { + return oncia_Union_getReturns$($this); }, -oncia_ShowColumn$_apply$default$2 = $this => { - oncius_package$_$callClinit(); - return oncius_package$_CTString(oncius_package$_MODULE$); +oncia_UnionAll_importColumns = $this => { + return oncia_Union_importColumns$($this); }, -oncia_DefaultOrAllShowColumns$ = $rt_classWithoutFields(), -oncia_DefaultOrAllShowColumns$_MODULE$ = null, -oncia_DefaultOrAllShowColumns$_$callClinit = () => { - oncia_DefaultOrAllShowColumns$_$callClinit = $rt_eraseClinit(oncia_DefaultOrAllShowColumns$); - oncia_DefaultOrAllShowColumns$__clinit_(); +oncia_UnionAll_containsUpdates = $this => { + return oncia_Union_containsUpdates$($this); }, -oncia_DefaultOrAllShowColumns$__clinit_ = () => { - let var$1; - var$1 = new oncia_DefaultOrAllShowColumns$; - oncia_DefaultOrAllShowColumns$_$callClinit(); - oncia_DefaultOrAllShowColumns$_MODULE$ = var$1; +oncia_UnionAll_semanticCheck = $this => { + return oncia_Union_semanticCheck$($this); }, -oncia_DefaultOrAllShowColumns$_apply0 = ($this, $columns, $yieldOrWhere) => { - let $briefShowColumns, $allShowColumns; - $briefShowColumns = sci_List_map(sci_List_filter($columns, new oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0), new oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1); - $allShowColumns = sci_List_map($columns, new oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2); - return oncia_DefaultOrAllShowColumns$_apply($this, $yieldOrWhere instanceof s_Some && $yieldOrWhere.$value5 instanceof su_Left ? 1 : 0, $briefShowColumns, $allShowColumns); +oncia_UnionAll_semanticCheckInSubqueryExpressionContext = ($this, $canOmitReturn) => { + return oncia_Union_semanticCheckInSubqueryExpressionContext$($this, $canOmitReturn); }, -oncia_DefaultOrAllShowColumns$_apply = ($this, $useAllColumns, $brief, $all) => { - if (!$useAllColumns) - return oncia_DefaultOrAllShowColumns__init_($useAllColumns, $brief); - return oncia_DefaultOrAllShowColumns__init_($useAllColumns, $all); +oncia_UnionAll_checkImportingWith = $this => { + return oncia_Union_checkImportingWith$($this); }, -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems3.$includeExisting0); +oncia_UnionAll_isCorrelated = $this => { + return oncia_Union_isCorrelated$($this); }, -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_1 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_1_apply = (var$0, var$1) => { - return (var$1.$returnItems3.$items0.$map(new onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$2$lambda$_543_0)).$toList(); +oncia_UnionAll_isReturning = $this => { + return oncia_Union_isReturning$($this); }, -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_2 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_2_apply = var$0 => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; -}; -function oncia_ShowAndTerminateColumn() { - let a = this; jl_Object.call(a); - a.$name8 = null; - a.$cypherType = null; -} -let oncia_ShowAndTerminateColumn_productPrefix = $this => { - return $rt_s(5558); +oncia_UnionAll_endsWithFinish = $this => { + return oncia_Union_endsWithFinish$($this); }, -oncia_ShowAndTerminateColumn_productArity = $this => { +oncia_UnionAll_semanticCheckInSubqueryContext = ($this, $outer, $current) => { + return oncia_Union_semanticCheckInSubqueryContext$($this, $outer, $current); +}, +oncia_UnionAll_semanticCheckImportingWithSubQueryContext = ($this, $outer) => { + return oncia_Union_semanticCheckImportingWithSubQueryContext$($this, $outer); +}, +oncia_UnionAll_finalScope = ($this, $scope) => { + return oncia_Union_finalScope$($this, $scope); +}, +oncia_UnionAll_returnColumns = $this => { + return oncia_Query_returnColumns$($this); +}, +oncia_UnionAll_withScopedState = ($this, $check) => { + return oncias_SemanticAnalysisTooling_withScopedState$($this, $check); +}, +oncia_UnionAll_importValuesFromScope = ($this, $scope) => { + return oncias_SemanticAnalysisTooling_importValuesFromScope$($this, $scope); +}, +oncia_UnionAll_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_UnionAll_foldedOver = $this => { + return $this; +}, +oncia_UnionAll_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings = $this => { + return $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings0; +}, +oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings0 = $x$1; +}, +oncia_UnionAll_lhs = $this => { + return $this.$lhs4; +}, +oncia_UnionAll_rhs = $this => { + return $this.$rhs4; +}, +oncia_UnionAll_position = $this => { + return $this.$position38; +}, +oncia_UnionAll_mapEachSingleQuery = ($this, $f) => { + return oncia_UnionAll_copy($this, $this.$lhs4.$mapEachSingleQuery($f), $f.$apply2($this.$rhs4.$getSingleQuery()), $this.$position38); +}, +oncia_UnionAll_copy = ($this, $lhs, $rhs, $position) => { + return oncia_UnionAll__init_($lhs, $rhs, $position); +}, +oncia_UnionAll_productPrefix = $this => { + return $rt_s(4122); +}, +oncia_UnionAll_productArity = $this => { return 2; }, -oncia_ShowAndTerminateColumn_productElement = ($this, $x$1) => { +oncia_UnionAll_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$name8; + return $this.$lhs4; case 1: - return $this.$cypherType; + return $this.$rhs4; default: } return sr_Statics_ioobe($x$1); }, -oncia_ShowAndTerminateColumn_productIterator = $this => { +oncia_UnionAll_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowAndTerminateColumn_hashCode = $this => { +oncia_UnionAll_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowAndTerminateColumn_toString = $this => { +oncia_UnionAll_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowAndTerminateColumn_equals = ($this, $x$1) => { +oncia_UnionAll_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowAndTerminateColumn) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$name8; - var$3 = $x$1.$name8; - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UnionAll) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$lhs4; + var$3 = $x$1.$lhs4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) break b; - else - break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$cypherType; - $x$1 = $x$1.$cypherType; + var$3 = $this.$rhs4; + $x$1 = $x$1.$rhs4; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_ShowAndTerminateColumn)) - break b; } var$4 = 1; break a; @@ -208367,201 +97769,211 @@ oncia_ShowAndTerminateColumn_equals = ($this, $x$1) => { } return var$4; }, -oncia_ShowAndTerminateColumn__init_0 = ($this, $name, $cypherType) => { - $this.$name8 = $name; - $this.$cypherType = $cypherType; -}, -oncia_ShowAndTerminateColumn__init_ = (var_0, var_1) => { - let var_2 = new oncia_ShowAndTerminateColumn(); - oncia_ShowAndTerminateColumn__init_0(var_2, var_0, var_1); - return var_2; +oncia_UnionAll_dup = ($this, $children) => { + return oncia_UnmappedUnion_dup$($this, $children); }, -oncia_ShowAndTerminateColumn$ = $rt_classWithoutFields(sr_AbstractFunction2), -oncia_ShowAndTerminateColumn$_MODULE$ = null, -oncia_ShowAndTerminateColumn$__clinit_ = () => { - oncia_ShowAndTerminateColumn$_MODULE$ = new oncia_ShowAndTerminateColumn$; +oncia_UnionAll__init_0 = ($this, $lhs, $rhs, $position) => { + $this.$lhs4 = $lhs; + $this.$rhs4 = $rhs; + $this.$position38 = $position; + oncia_UnmappedUnion_$init$($this); }, -oncia_ShowAndTerminateColumn$_apply$default$2 = $this => { - oncius_package$_$callClinit(); - return oncius_package$_CTString(oncius_package$_MODULE$); +oncia_UnionAll__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_UnionAll(); + oncia_UnionAll__init_0(var_3, var_0, var_1, var_2); + return var_3; }; -function oncia_ShowIndexesClause() { - let a = this; jl_Object.call(a); - a.$briefConstraintColumns = null; - a.$allConstraintColumns = null; - a.$indexType2 = null; - a.$where6 = null; - a.$yieldItems5 = null; - a.$yieldAll8 = 0; - a.$position66 = null; - a.$useAllColumns5 = 0; - a.$originalColumns4 = null; - a.$briefColumns0 = null; - a.$allColumns0 = null; - a.$unfilteredColumns1 = null; - a.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap5 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier4 = null; - a.$SetExtractor$module23 = null; - a.$bitmap$035 = 0; +function oncifp_ResolvedCall() { + let a = this; oncia_CallClause.call(a); + a.$signature = null; + a.$callArguments = null; + a.$callResults = null; + a.$declaredArguments0 = 0; + a.$declaredResults = 0; + a.$yieldAll5 = 0; + a.$optional3 = 0; + a.$position9 = null; + a.$callOutputTypes = null; } -let oncia_ShowIndexesClause_clauseSpecificSemanticCheck = $this => { - return oncia_CommandClause_clauseSpecificSemanticCheck$($this); -}, -oncia_ShowIndexesClause_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_ShowIndexesClause_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_ShowIndexesClause_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_ShowIndexesClause_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowIndexesClause_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowIndexesClause_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +let oncifp_ResolvedCall_yieldAll = $this => { + return $this.$yieldAll5; }, -oncia_ShowIndexesClause_asCanonicalStringVal = $this => { - return $this.$toString(); +oncifp_ResolvedCall_position = $this => { + return $this.$position9; }, -oncia_ShowIndexesClause_foldedOver = $this => { - return $this; +oncifp_ResolvedCall_returnVariables = $this => { + return oncia_ReturnItems$ReturnVariables__init_(0, sc_IterableOnceOps_toList$($this.$callResults.$map(new oncifp_ResolvedCall$returnVariables$lambda$_23_0))); }, -oncia_ShowIndexesClause_folder = $this => { - return onciu_Foldable_folder$($this); +oncifp_ResolvedCall_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3, var$4; + var$1 = oncifp_ResolvedCall_argumentCheck($this); + if ((oncifp_ProcedureSignature_outputFields($this.$signature)).$isEmpty() && !(!sc_IterableOnceOps_nonEmpty$($this.$callResults) && !$this.$yieldAll5)) + var$2 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(4123), $this.$position9); + else if ((oncifp_ProcedureSignature_outputFields($this.$signature)).$isEmpty()) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else if (!$this.$declaredResults) + var$2 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(4124), $this.$position9); + else { + var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$3 = $this.$callResults; + var$4 = new oncifp_ResolvedCall$resultCheck$lambda$_29_0; + var$4.$_0400 = $this; + var$2 = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4); + } + return var$1.$chain(var$2); }, -oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap = $this => { - let var$1, $$je; - if ($this.$bitmap$035) - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap5; - jl_Object_monitorEnterSync($this); +oncifp_ResolvedCall_argumentCheck = $this => { + let $totalNumArgs, $numArgsWithDefaults, $minNumArgs, $givenNumArgs, var$5, $maxExpectedMsg, $tooFewArgs, $tooManyArgs, var$9, $argTypes, $sigDesc, $description; + $totalNumArgs = $this.$signature.$inputSignature0.$length(); + $numArgsWithDefaults = (sc_StrictOptimizedIterableOps_flatMap$($this.$signature.$inputSignature0, new oncifp_ResolvedCall$argumentCheck$lambda$_28_0)).$size(); + $minNumArgs = $totalNumArgs - $numArgsWithDefaults | 0; + $givenNumArgs = $this.$callArguments.$length(); + if (!$this.$declaredArguments0) { + if ($totalNumArgs) { + var$5 = $this.$signature.$name10; + $maxExpectedMsg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($maxExpectedMsg); + jl_StringBuilder_append(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4125)), var$5); + return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString($maxExpectedMsg), $this.$position9); + } + var$5 = $this.$signature.$name10; + $maxExpectedMsg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($maxExpectedMsg); + jl_StringBuilder_append(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4126)), var$5); + return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString($maxExpectedMsg), $this.$position9); + } + $tooFewArgs = $givenNumArgs >= $minNumArgs ? 0 : 1; + $tooManyArgs = $givenNumArgs <= $totalNumArgs ? 0 : 1; + if (!$tooFewArgs && !$tooManyArgs) { + var$5 = sci_ArraySeq_map(sci_ArraySeq_zip($this.$signature.$inputSignature0, $this.$callArguments), new oncifp_ResolvedCall$argumentCheck$lambda$_28_1); + oncias_SemanticCheck$_$callClinit(); + return sci_ArraySeq_foldLeft(var$5, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$), new oncifp_ResolvedCall$argumentCheck$lambda$_28_2); + } a: { - try { - if ($this.$bitmap$035) + switch ($minNumArgs) { + case 0: + break; + case 1: + var$9 = (sc_IndexedSeqOps_head$($this.$signature.$inputSignature0)).$typ.$normalizedCypherTypeString(); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(4127)), var$9); + $argTypes = jl_AbstractStringBuilder_toString(var$5); + break a; + default: + $sigDesc = sc_AbstractIterable_mkString(sci_ArraySeq_map(sci_ArraySeq_take($this.$signature.$inputSignature0, $minNumArgs), new oncifp_ResolvedCall$argumentCheck$lambda$_28_3), $rt_s(45)); + $maxExpectedMsg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($maxExpectedMsg); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4128)), $minNumArgs), $rt_s(4129)), $sigDesc); + $argTypes = jl_AbstractStringBuilder_toString($maxExpectedMsg); break a; - $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap5 = oncia_CommandClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$($this); - $this.$bitmap$035 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); + $argTypes = $rt_s(4130); } - jl_Object_monitorExitSync($this); - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap5; -}, -oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier4; -}, -oncia_ShowIndexesClause_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module23 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module23 !== null) - break a; - $this.$SetExtractor$module23 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); + $description = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $sigDesc = $this.$signature; + var$5 = $sigDesc.$name10; + $maxExpectedMsg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($maxExpectedMsg); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4131)), var$5), $rt_s(4132)), $sigDesc), $rt_s(4133)), $argTypes); + $sigDesc = sc_StringOps$_stripMargin$extension($description, jl_AbstractStringBuilder_toString($maxExpectedMsg)); + $description = s_Option_fold($this.$signature.$description4, new oncifp_ResolvedCall$argumentCheck$lambda$_28_4, new oncifp_ResolvedCall$argumentCheck$lambda$_28_5); + if ($tooFewArgs) { + $argTypes = sc_StringOps$_MODULE$; + $maxExpectedMsg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($maxExpectedMsg); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4134)), $givenNumArgs), $rt_s(4135)), $minNumArgs), $rt_s(4136)), $totalNumArgs), $rt_s(45)), $numArgsWithDefaults), $rt_s(4137)), $sigDesc), $rt_s(4138)), $description); + return oncias_SemanticAnalysisTooling_error$($this, sc_StringOps$_stripMargin$extension($argTypes, jl_AbstractStringBuilder_toString($maxExpectedMsg)), $this.$position9); + } + b: { + switch ($totalNumArgs) { + case 0: + break; + default: + $maxExpectedMsg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($maxExpectedMsg); + jl_StringBuilder_append0(jl_StringBuilder_append($maxExpectedMsg, $rt_s(4139)), $totalNumArgs); + $maxExpectedMsg = jl_AbstractStringBuilder_toString($maxExpectedMsg); + break b; } - jl_Object_monitorExitSync($this); + $maxExpectedMsg = $rt_s(452); } - return $this.$SetExtractor$module23; -}, -oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier4 = $x$1; -}, -oncia_ShowIndexesClause_where = $this => { - return $this.$where6; -}, -oncia_ShowIndexesClause_yieldItems = $this => { - return $this.$yieldItems5; -}, -oncia_ShowIndexesClause_yieldAll = $this => { - return $this.$yieldAll8; -}, -oncia_ShowIndexesClause_position = $this => { - return $this.$position66; -}, -oncia_ShowIndexesClause_name = $this => { - return $rt_s(4398); -}, -oncia_ShowIndexesClause_originalColumns = $this => { - return $this.$originalColumns4; -}, -oncia_ShowIndexesClause_unfilteredColumns = $this => { - return $this.$unfilteredColumns1; + var$9 = sc_StringOps$_MODULE$; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$5, $rt_s(4140)), $givenNumArgs), $rt_s(4141)), $maxExpectedMsg), $rt_s(4142)), $sigDesc), $rt_s(4138)), $description); + return oncias_SemanticAnalysisTooling_error$($this, sc_StringOps$_stripMargin$extension(var$9, jl_AbstractStringBuilder_toString(var$5)), $this.$position9); }, -oncia_ShowIndexesClause_moveWhereToProjection = $this => { - let $x$1; - $x$1 = s_None$_MODULE$; - return oncia_ShowIndexesClause_copy($this, $this.$briefConstraintColumns, $this.$allConstraintColumns, $this.$indexType2, $x$1, $this.$yieldItems5, $this.$yieldAll8, $this.$position66); +oncifp_ResolvedCall_containsNoUpdates = $this => { + let var$1; + var$1 = $this.$signature.$accessMode; + if (jl_Object_equals(oncifp_ProcedureReadOnlyAccess$_MODULE$, var$1)) + return 1; + if (!jl_Object_equals(oncifp_ProcedureDbmsAccess$_MODULE$, var$1)) + return 0; + return 1; }, -oncia_ShowIndexesClause_copy = ($this, $briefConstraintColumns, $allConstraintColumns, $indexType, $where, $yieldItems, $yieldAll, $position) => { - return oncia_ShowIndexesClause__init_($briefConstraintColumns, $allConstraintColumns, $indexType, $where, $yieldItems, $yieldAll, $position); +oncifp_ResolvedCall_copy = ($this, $signature, $callArguments, $callResults, $declaredArguments, $declaredResults, $yieldAll, $optional, $position) => { + return oncifp_ResolvedCall__init_($signature, $callArguments, $callResults, $declaredArguments, $declaredResults, $yieldAll, $optional, $position); }, -oncia_ShowIndexesClause_productPrefix = $this => { - return $rt_s(5559); +oncifp_ResolvedCall_productPrefix = $this => { + return $rt_s(4143); }, -oncia_ShowIndexesClause_productArity = $this => { - return 6; +oncifp_ResolvedCall_productArity = $this => { + return 7; }, -oncia_ShowIndexesClause_productElement = ($this, $x$1) => { +oncifp_ResolvedCall_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$briefConstraintColumns; + return $this.$signature; case 1: - return $this.$allConstraintColumns; + return $this.$callArguments; case 2: - return $this.$indexType2; + return $this.$callResults; case 3: - return $this.$where6; + return jl_Boolean_valueOf($this.$declaredArguments0); case 4: - return $this.$yieldItems5; + return jl_Boolean_valueOf($this.$declaredResults); case 5: - return jl_Boolean_valueOf($this.$yieldAll8); + return jl_Boolean_valueOf($this.$yieldAll5); + case 6: + return jl_Boolean_valueOf($this.$optional3); default: } return sr_Statics_ioobe($x$1); }, -oncia_ShowIndexesClause_productIterator = $this => { +oncifp_ResolvedCall_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowIndexesClause_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5559))), sr_Statics_anyHash($this.$briefConstraintColumns)), sr_Statics_anyHash($this.$allConstraintColumns)), sr_Statics_anyHash($this.$indexType2)), sr_Statics_anyHash($this.$where6)), sr_Statics_anyHash($this.$yieldItems5)), !$this.$yieldAll8 ? 1237 : 1231), 6); +oncifp_ResolvedCall_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4143))), sr_Statics_anyHash($this.$signature)), sr_Statics_anyHash($this.$callArguments)), sr_Statics_anyHash($this.$callResults)), !$this.$declaredArguments0 ? 1237 : 1231), !$this.$declaredResults ? 1237 : 1231), !$this.$yieldAll5 ? 1237 : 1231), !$this.$optional3 ? 1237 : 1231), 7); }, -oncia_ShowIndexesClause_toString = $this => { +oncifp_ResolvedCall_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowIndexesClause_equals = ($this, $x$1) => { +oncifp_ResolvedCall_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowIndexesClause) ? 0 : 1)) + if (!(!($x$1 instanceof oncifp_ResolvedCall) ? 0 : 1)) break b; $x$1 = $x$1; - if ($this.$yieldAll8 != $x$1.$yieldAll8) + if ($this.$declaredArguments0 != $x$1.$declaredArguments0) + break b; + if ($this.$declaredResults != $x$1.$declaredResults) + break b; + if ($this.$yieldAll5 != $x$1.$yieldAll5) + break b; + if ($this.$optional3 != $x$1.$optional3) break b; c: { - var$2 = $this.$briefConstraintColumns; - var$3 = $x$1.$briefConstraintColumns; + var$2 = $this.$signature; + var$3 = $x$1.$signature; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!oncifp_ProcedureSignature_equals(var$2, var$3)) break b; else break c; @@ -208570,10 +97982,10 @@ oncia_ShowIndexesClause_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$allConstraintColumns; - var$3 = $x$1.$allConstraintColumns; + var$2 = $this.$callArguments; + var$3 = $x$1.$callArguments; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break d; @@ -208582,42 +97994,18 @@ oncia_ShowIndexesClause_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$indexType2; - var$3 = $x$1.$indexType2; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$where6; - var$3 = $x$1.$where6; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$3 = $this.$yieldItems5; - $x$1 = $x$1.$yieldItems5; + var$3 = $this.$callResults; + $x$1 = $x$1.$callResults; if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) + if (!var$3.$equals($x$1)) break b; else - break g; + break e; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_ShowIndexesClause)) + if (!($this instanceof oncifp_ResolvedCall)) break b; } var$4 = 1; @@ -208627,155 +98015,103 @@ oncia_ShowIndexesClause_equals = ($this, $x$1) => { } return var$4; }, -oncia_ShowIndexesClause_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ShowIndexesClause__init_0 = ($this, $briefConstraintColumns, $allConstraintColumns, $indexType, $where, $yieldItems, $yieldAll, $position) => { - $this.$briefConstraintColumns = $briefConstraintColumns; - $this.$allConstraintColumns = $allConstraintColumns; - $this.$indexType2 = $indexType; - $this.$where6 = $where; - $this.$yieldItems5 = $yieldItems; - $this.$yieldAll8 = $yieldAll; - $this.$position66 = $position; - oncia_Clause_$init$($this); - $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; - $this.$useAllColumns5 = $yieldAll; - $this.$originalColumns4 = !$yieldAll ? $briefConstraintColumns : $allConstraintColumns; - $indexType = new oncia_ShowIndexesClause$_init_$lambda$_111_0; - $indexType.$_0624 = $this; - $this.$briefColumns0 = sci_List_map($briefConstraintColumns, $indexType); - $briefConstraintColumns = new oncia_ShowIndexesClause$_init_$lambda$_111_1; - $briefConstraintColumns.$_0106 = $this; - $briefConstraintColumns = sci_List_map($allConstraintColumns, $briefConstraintColumns); - $this.$allColumns0 = $briefConstraintColumns; - oncia_DefaultOrAllShowColumns$_$callClinit(); - $this.$unfilteredColumns1 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns5, $this.$briefColumns0, $briefConstraintColumns); -}, -oncia_ShowIndexesClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_ShowIndexesClause(); - oncia_ShowIndexesClause__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; +oncifp_ResolvedCall__init_0 = ($this, $signature, $callArguments, $callResults, $declaredArguments, $declaredResults, $yieldAll, $optional, $position) => { + $this.$signature = $signature; + $this.$callArguments = $callArguments; + $this.$callResults = $callResults; + $this.$declaredArguments0 = $declaredArguments; + $this.$declaredResults = $declaredResults; + $this.$yieldAll5 = $yieldAll; + $this.$optional3 = $optional; + $this.$position9 = $position; + oncia_CallClause__init_($this); + $this.$callOutputTypes = s_Option_getOrElse(s_Option_map($signature.$outputSignature, new oncifp_ResolvedCall$_init_$lambda$_71_0), new oncifp_ResolvedCall$_init_$lambda$_71_1); }, -oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0 = $rt_classWithoutFields(), -oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_CommandClause$_$callClinit(); - return s_Tuple2__init_(var$1.$expression(), var$1.$alias()); -}; -function oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1() { - jl_Object.call(this); - this.$_0441 = null; -} -let oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0441; - oncia_CommandClause$_$callClinit(); - var$3 = var$1.$sortItems; - var$4 = new oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0; - var$4.$_01159 = var$2; - return oncia_OrderBy_copy(var$1, var$3.$map(var$4), var$1.$position104); -}; -function oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2() { - jl_Object.call(this); - this.$_0969 = null; -} -let oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0969; - oncia_CommandClause$_$callClinit(); - var$3 = new oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0; - var$3.$_0744 = var$2; - return oncia_Where_mapExpressions(var$1, var$3); +oncifp_ResolvedCall__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncifp_ResolvedCall(); + oncifp_ResolvedCall__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; }, -oncia_CommandClauseAllowedOnSystem = $rt_classWithoutFields(0); -function oncia_ShowFunctionsClause() { +oncia_GraphSelection = $rt_classWithoutFields(0); +function oncia_With() { let a = this; jl_Object.call(a); - a.$briefFunctionColumns = null; - a.$allFunctionColumns = null; - a.$functionType = null; - a.$executable0 = null; - a.$where7 = null; - a.$yieldItems3 = null; - a.$yieldAll9 = 0; - a.$position81 = null; - a.$useAllColumns1 = 0; - a.$originalColumns1 = null; - a.$briefColumns3 = null; - a.$allColumns2 = null; - a.$unfilteredColumns2 = null; - a.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap1 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier6 = null; - a.$SetExtractor$module0 = null; - a.$bitmap$031 = 0; + a.$distinct2 = 0; + a.$returnItems3 = null; + a.$orderBy4 = null; + a.$skip5 = null; + a.$limit5 = null; + a.$where2 = null; + a.$withType = null; + a.$position20 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier3 = null; + a.$SetExtractor$module6 = null; } -let oncia_ShowFunctionsClause_clauseSpecificSemanticCheck = $this => { - return oncia_CommandClause_clauseSpecificSemanticCheck$($this); +let oncia_With_isReturn = $this => { + return 0; }, -oncia_ShowFunctionsClause_returnVariables = $this => { +oncia_With_copyProjection = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where) => { + return oncia_ProjectionClause_copyProjection$($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where); +}, +oncia_With_copyProjection$default$1 = $this => { + return $this.$distinct(); +}, +oncia_With_copyProjection$default$3 = $this => { + return $this.$orderBy(); +}, +oncia_With_copyProjection$default$4 = $this => { + return $this.$skip(); +}, +oncia_With_copyProjection$default$5 = $this => { + return $this.$limit(); +}, +oncia_With_copyProjection$default$6 = $this => { + return $this.$where(); +}, +oncia_With_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { + return oncia_ProjectionClause_semanticCheckContinuation$($this, $previousScope, $outerScope); +}, +oncia_With_semanticCheckContinuation$default$2 = $this => { + return s_None$_MODULE$; +}, +oncia_With_warnOnAccessToRestrictedVariableInOrderByOrWhere = ($this, $previousScopeVars, $error) => { + return oncia_ProjectionClause_warnOnAccessToRestrictedVariableInOrderByOrWhere$($this, $previousScopeVars, $error); +}, +oncia_With_verifyOrderByAggregationUse = ($this, $fail) => { + oncia_ProjectionClause_verifyOrderByAggregationUse$($this, $fail); +}, +oncia_With_returnVariables = $this => { return oncia_Clause_returnVariables$($this); }, -oncia_ShowFunctionsClause_semanticCheck = $this => { +oncia_With_semanticCheck = $this => { return oncia_Clause_semanticCheck$($this); }, -oncia_ShowFunctionsClause_shouldRunQPPChecks = $this => { +oncia_With_shouldRunQPPChecks = $this => { return 1; }, -oncia_ShowFunctionsClause_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowFunctionsClause_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); -}, -oncia_ShowFunctionsClause_error = ($this, $msg, $position) => { +oncia_With_error = ($this, $msg, $position) => { return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncia_ShowFunctionsClause_asCanonicalStringVal = $this => { +oncia_With_asCanonicalStringVal = $this => { return $this.$toString(); }, -oncia_ShowFunctionsClause_foldedOver = $this => { +oncia_With_foldedOver = $this => { return $this; }, -oncia_ShowFunctionsClause_folder = $this => { +oncia_With_folder = $this => { return onciu_Foldable_folder$($this); }, -oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap = $this => { - let var$1, $$je; - if ($this.$bitmap$031) - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap1; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$031) - break a; - $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap1 = oncia_CommandClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$($this); - $this.$bitmap$031 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap1; -}, -oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier6; +oncia_With_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier3; }, -oncia_ShowFunctionsClause_SetExtractor = $this => { +oncia_With_SetExtractor = $this => { let var$1, $$je; - if ($this.$SetExtractor$module0 === null) { + if ($this.$SetExtractor$module6 === null) { jl_Object_monitorEnterSync($this); a: { try { - if ($this.$SetExtractor$module0 !== null) + if ($this.$SetExtractor$module6 !== null) break a; - $this.$SetExtractor$module0 = oncia_Clause$SetExtractor$__init_($this); + $this.$SetExtractor$module6 = oncia_Clause$SetExtractor$__init_($this); break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -208787,90 +98123,97 @@ oncia_ShowFunctionsClause_SetExtractor = $this => { } jl_Object_monitorExitSync($this); } - return $this.$SetExtractor$module0; + return $this.$SetExtractor$module6; }, -oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier6 = $x$1; +oncia_With_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier3 = $x$1; }, -oncia_ShowFunctionsClause_where = $this => { - return $this.$where7; +oncia_With_distinct = $this => { + return $this.$distinct2; }, -oncia_ShowFunctionsClause_yieldItems = $this => { - return $this.$yieldItems3; +oncia_With_returnItems = $this => { + return $this.$returnItems3; }, -oncia_ShowFunctionsClause_yieldAll = $this => { - return $this.$yieldAll9; +oncia_With_orderBy = $this => { + return $this.$orderBy4; }, -oncia_ShowFunctionsClause_position = $this => { - return $this.$position81; +oncia_With_skip = $this => { + return $this.$skip5; }, -oncia_ShowFunctionsClause_name = $this => { - return $rt_s(5560); +oncia_With_limit = $this => { + return $this.$limit5; }, -oncia_ShowFunctionsClause_originalColumns = $this => { - return $this.$originalColumns1; +oncia_With_where = $this => { + return $this.$where2; }, -oncia_ShowFunctionsClause_unfilteredColumns = $this => { - return $this.$unfilteredColumns2; +oncia_With_position = $this => { + return $this.$position20; }, -oncia_ShowFunctionsClause_moveWhereToProjection = $this => { - let $x$1; - $x$1 = s_None$_MODULE$; - return oncia_ShowFunctionsClause_copy($this, $this.$briefFunctionColumns, $this.$allFunctionColumns, $this.$functionType, $this.$executable0, $x$1, $this.$yieldItems3, $this.$yieldAll9, $this.$position81); +oncia_With_name = $this => { + return $rt_s(642); +}, +oncia_With_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3; + var$1 = oncia_ProjectionClause_clauseSpecificSemanticCheck$($this); + var$2 = oncias_package$_MODULE$; + oncia_ProjectionClause$_$callClinit(); + var$3 = oncias_SemanticCheck_chain$(var$1, oncias_package$_liftSemanticErrorDefsFunc(var$2, oncia_ProjectionClause$_checkAliasedReturnItems(oncia_ProjectionClause$_MODULE$, $this.$returnItems3, $rt_s(642)))); + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticPatternCheck$_checkValidPropertyKeyNamesInReturnItems(oncias_SemanticPatternCheck$_MODULE$, $this.$returnItems3)); }, -oncia_ShowFunctionsClause_copy = ($this, $briefFunctionColumns, $allFunctionColumns, $functionType, $executable, $where, $yieldItems, $yieldAll, $position) => { - return oncia_ShowFunctionsClause__init_($briefFunctionColumns, $allFunctionColumns, $functionType, $executable, $where, $yieldItems, $yieldAll, $position); +oncia_With_copy = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where, $withType, $position) => { + return oncia_With__init_0($distinct, $returnItems, $orderBy, $skip, $limit, $where, $withType, $position); }, -oncia_ShowFunctionsClause_productPrefix = $this => { - return $rt_s(5561); +oncia_With_productPrefix = $this => { + return $rt_s(4144); }, -oncia_ShowFunctionsClause_productArity = $this => { +oncia_With_productArity = $this => { return 7; }, -oncia_ShowFunctionsClause_productElement = ($this, $x$1) => { +oncia_With_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$briefFunctionColumns; + return jl_Boolean_valueOf($this.$distinct2); case 1: - return $this.$allFunctionColumns; + return $this.$returnItems3; case 2: - return $this.$functionType; + return $this.$orderBy4; case 3: - return $this.$executable0; + return $this.$skip5; case 4: - return $this.$where7; + return $this.$limit5; case 5: - return $this.$yieldItems3; + return $this.$where2; case 6: - return jl_Boolean_valueOf($this.$yieldAll9); + return $this.$withType; default: } return sr_Statics_ioobe($x$1); }, -oncia_ShowFunctionsClause_productIterator = $this => { +oncia_With_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowFunctionsClause_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5561))), sr_Statics_anyHash($this.$briefFunctionColumns)), sr_Statics_anyHash($this.$allFunctionColumns)), sr_Statics_anyHash($this.$functionType)), sr_Statics_anyHash($this.$executable0)), sr_Statics_anyHash($this.$where7)), sr_Statics_anyHash($this.$yieldItems3)), !$this.$yieldAll9 ? 1237 : 1231), 7); +oncia_With_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4144))), !$this.$distinct2 ? 1237 : 1231), sr_Statics_anyHash($this.$returnItems3)), sr_Statics_anyHash($this.$orderBy4)), sr_Statics_anyHash($this.$skip5)), sr_Statics_anyHash($this.$limit5)), sr_Statics_anyHash($this.$where2)), sr_Statics_anyHash($this.$withType)), 7); }, -oncia_ShowFunctionsClause_toString = $this => { +oncia_With_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowFunctionsClause_equals = ($this, $x$1) => { +oncia_With_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowFunctionsClause) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_With) ? 0 : 1)) break b; $x$1 = $x$1; - if ($this.$yieldAll9 != $x$1.$yieldAll9) + if ($this.$distinct2 != $x$1.$distinct2) break b; c: { - var$2 = $this.$briefFunctionColumns; - var$3 = $x$1.$briefFunctionColumns; + var$2 = $this.$returnItems3; + var$3 = $x$1.$returnItems3; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!oncia_ReturnItems_equals(var$2, var$3)) break b; else break c; @@ -208879,10 +98222,10 @@ oncia_ShowFunctionsClause_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$allFunctionColumns; - var$3 = $x$1.$allFunctionColumns; + var$2 = $this.$orderBy4; + var$3 = $x$1.$orderBy4; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break d; @@ -208891,10 +98234,10 @@ oncia_ShowFunctionsClause_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$functionType; - var$3 = $x$1.$functionType; + var$2 = $this.$skip5; + var$3 = $x$1.$skip5; if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break e; @@ -208903,8 +98246,8 @@ oncia_ShowFunctionsClause_equals = ($this, $x$1) => { break b; } f: { - var$2 = $this.$executable0; - var$3 = $x$1.$executable0; + var$2 = $this.$limit5; + var$3 = $x$1.$limit5; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -208915,8 +98258,8 @@ oncia_ShowFunctionsClause_equals = ($this, $x$1) => { break b; } g: { - var$2 = $this.$where7; - var$3 = $x$1.$where7; + var$2 = $this.$where2; + var$3 = $x$1.$where2; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -208927,10 +98270,10 @@ oncia_ShowFunctionsClause_equals = ($this, $x$1) => { break b; } h: { - var$3 = $this.$yieldItems3; - $x$1 = $x$1.$yieldItems3; + var$3 = $this.$withType; + $x$1 = $x$1.$withType; if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) + if (!jl_Object_equals(var$3, $x$1)) break b; else break h; @@ -208938,7 +98281,7 @@ oncia_ShowFunctionsClause_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof oncia_ShowFunctionsClause)) + if (!($this instanceof oncia_With)) break b; } var$4 = 1; @@ -208948,121 +98291,99 @@ oncia_ShowFunctionsClause_equals = ($this, $x$1) => { } return var$4; }, -oncia_ShowFunctionsClause_dup = ($this, $children) => { +oncia_With_dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncia_ShowFunctionsClause__init_0 = ($this, $briefFunctionColumns, $allFunctionColumns, $functionType, $executable, $where, $yieldItems, $yieldAll, $position) => { - $this.$briefFunctionColumns = $briefFunctionColumns; - $this.$allFunctionColumns = $allFunctionColumns; - $this.$functionType = $functionType; - $this.$executable0 = $executable; - $this.$where7 = $where; - $this.$yieldItems3 = $yieldItems; - $this.$yieldAll9 = $yieldAll; - $this.$position81 = $position; +oncia_With__init_ = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where, $withType, $position) => { + $this.$distinct2 = $distinct; + $this.$returnItems3 = $returnItems; + $this.$orderBy4 = $orderBy; + $this.$skip5 = $skip; + $this.$limit5 = $limit; + $this.$where2 = $where; + $this.$withType = $withType; + $this.$position20 = $position; oncia_Clause_$init$($this); - $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; - $this.$useAllColumns1 = $yieldAll; - $this.$originalColumns1 = !$yieldAll ? $briefFunctionColumns : $allFunctionColumns; - $functionType = new oncia_ShowFunctionsClause$_init_$lambda$_109_0; - $functionType.$_0605 = $this; - $this.$briefColumns3 = sci_List_map($briefFunctionColumns, $functionType); - $briefFunctionColumns = new oncia_ShowFunctionsClause$_init_$lambda$_109_1; - $briefFunctionColumns.$_01100 = $this; - $briefFunctionColumns = sci_List_map($allFunctionColumns, $briefFunctionColumns); - $this.$allColumns2 = $briefFunctionColumns; - oncia_DefaultOrAllShowColumns$_$callClinit(); - $this.$unfilteredColumns2 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns1, $this.$briefColumns3, $briefFunctionColumns); }, -oncia_ShowFunctionsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { - let var_8 = new oncia_ShowFunctionsClause(); - oncia_ShowFunctionsClause__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); +oncia_With__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_With(); + oncia_With__init_(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); return var_8; }; -function oncia_ShowConstraintsClause() { +function oncia_Return() { let a = this; jl_Object.call(a); - a.$briefConstraintColumns0 = null; - a.$allConstraintColumns0 = null; - a.$constraintType2 = null; - a.$where8 = null; - a.$yieldItems2 = null; - a.$yieldAll5 = 0; - a.$position59 = null; - a.$useAllColumns0 = 0; - a.$originalColumns6 = null; - a.$briefColumns2 = null; - a.$allColumns4 = null; - a.$unfilteredColumns4 = null; - a.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap6 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier16 = null; - a.$SetExtractor$module11 = null; - a.$bitmap$040 = 0; + a.$distinct1 = 0; + a.$returnItems2 = null; + a.$orderBy2 = null; + a.$skip3 = null; + a.$limit3 = null; + a.$excludedNames = null; + a.$addedInRewrite = 0; + a.$inTopLevelBraces = 0; + a.$position23 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier24 = null; + a.$SetExtractor$module13 = null; } -let oncia_ShowConstraintsClause_clauseSpecificSemanticCheck = $this => { - return oncia_CommandClause_clauseSpecificSemanticCheck$($this); +let oncia_Return_copyProjection = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where) => { + return oncia_ProjectionClause_copyProjection$($this, $distinct, $returnItems, $orderBy, $skip, $limit, $where); }, -oncia_ShowConstraintsClause_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); +oncia_Return_copyProjection$default$1 = $this => { + return $this.$distinct(); }, -oncia_ShowConstraintsClause_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); +oncia_Return_copyProjection$default$3 = $this => { + return $this.$orderBy(); }, -oncia_ShowConstraintsClause_shouldRunQPPChecks = $this => { - return 1; +oncia_Return_copyProjection$default$4 = $this => { + return $this.$skip(); }, -oncia_ShowConstraintsClause_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +oncia_Return_copyProjection$default$5 = $this => { + return $this.$limit(); }, -oncia_ShowConstraintsClause_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +oncia_Return_copyProjection$default$6 = $this => { + return $this.$where(); }, -oncia_ShowConstraintsClause_error = ($this, $msg, $position) => { +oncia_Return_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { + return oncia_ProjectionClause_semanticCheckContinuation$($this, $previousScope, $outerScope); +}, +oncia_Return_semanticCheckContinuation$default$2 = $this => { + return s_None$_MODULE$; +}, +oncia_Return_warnOnAccessToRestrictedVariableInOrderByOrWhere = ($this, $previousScopeVars, $error) => { + return oncia_ProjectionClause_warnOnAccessToRestrictedVariableInOrderByOrWhere$($this, $previousScopeVars, $error); +}, +oncia_Return_verifyOrderByAggregationUse = ($this, $fail) => { + oncia_ProjectionClause_verifyOrderByAggregationUse$($this, $fail); +}, +oncia_Return_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Return_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_Return_error = ($this, $msg, $position) => { return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncia_ShowConstraintsClause_asCanonicalStringVal = $this => { +oncia_Return_asCanonicalStringVal = $this => { return $this.$toString(); }, -oncia_ShowConstraintsClause_foldedOver = $this => { +oncia_Return_foldedOver = $this => { return $this; }, -oncia_ShowConstraintsClause_folder = $this => { +oncia_Return_folder = $this => { return onciu_Foldable_folder$($this); }, -oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap = $this => { - let var$1, $$je; - if ($this.$bitmap$040) - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap6; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$040) - break a; - $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap6 = oncia_CommandClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$($this); - $this.$bitmap$040 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap6; -}, -oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier16; +oncia_Return_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier24; }, -oncia_ShowConstraintsClause_SetExtractor = $this => { +oncia_Return_SetExtractor = $this => { let var$1, $$je; - if ($this.$SetExtractor$module11 === null) { + if ($this.$SetExtractor$module13 === null) { jl_Object_monitorEnterSync($this); a: { try { - if ($this.$SetExtractor$module11 !== null) + if ($this.$SetExtractor$module13 !== null) break a; - $this.$SetExtractor$module11 = oncia_Clause$SetExtractor$__init_($this); + $this.$SetExtractor$module13 = oncia_Clause$SetExtractor$__init_($this); break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -209074,88 +98395,119 @@ oncia_ShowConstraintsClause_SetExtractor = $this => { } jl_Object_monitorExitSync($this); } - return $this.$SetExtractor$module11; + return $this.$SetExtractor$module13; }, -oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier16 = $x$1; +oncia_Return_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier24 = $x$1; }, -oncia_ShowConstraintsClause_where = $this => { - return $this.$where8; +oncia_Return_distinct = $this => { + return $this.$distinct1; }, -oncia_ShowConstraintsClause_yieldItems = $this => { - return $this.$yieldItems2; +oncia_Return_returnItems = $this => { + return $this.$returnItems2; }, -oncia_ShowConstraintsClause_yieldAll = $this => { - return $this.$yieldAll5; +oncia_Return_orderBy = $this => { + return $this.$orderBy2; }, -oncia_ShowConstraintsClause_position = $this => { - return $this.$position59; +oncia_Return_skip = $this => { + return $this.$skip3; }, -oncia_ShowConstraintsClause_name = $this => { - return $rt_s(4399); +oncia_Return_limit = $this => { + return $this.$limit3; }, -oncia_ShowConstraintsClause_originalColumns = $this => { - return $this.$originalColumns6; +oncia_Return_position = $this => { + return $this.$position23; }, -oncia_ShowConstraintsClause_unfilteredColumns = $this => { - return $this.$unfilteredColumns4; +oncia_Return_name = $this => { + return $rt_s(641); }, -oncia_ShowConstraintsClause_moveWhereToProjection = $this => { - let $x$1; - $x$1 = s_None$_MODULE$; - return oncia_ShowConstraintsClause_copy($this, $this.$briefConstraintColumns0, $this.$allConstraintColumns0, $this.$constraintType2, $x$1, $this.$yieldItems2, $this.$yieldAll5, $this.$position59); +oncia_Return_isReturn = $this => { + return 1; }, -oncia_ShowConstraintsClause_copy = ($this, $briefConstraintColumns, $allConstraintColumns, $constraintType, $where, $yieldItems, $yieldAll, $position) => { - return oncia_ShowConstraintsClause__init_($briefConstraintColumns, $allConstraintColumns, $constraintType, $where, $yieldItems, $yieldAll, $position); +oncia_Return_where = $this => { + return s_None$_MODULE$; }, -oncia_ShowConstraintsClause_productPrefix = $this => { - return $rt_s(5562); +oncia_Return_returnVariables = $this => { + return oncia_ReturnItems_returnVariables($this.$returnItems2); }, -oncia_ShowConstraintsClause_productArity = $this => { - return 6; +oncia_Return_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3, var$4; + var$1 = oncia_ProjectionClause_clauseSpecificSemanticCheck$($this); + var$2 = oncias_package$_MODULE$; + var$3 = new oncia_Return$checkVariableScope$lambda$_96_0; + var$3.$_0111 = $this; + var$4 = oncias_SemanticCheck_chain$(var$1, oncias_package$_liftSemanticErrorDefsFunc(var$2, var$3)); + var$2 = oncias_package$_MODULE$; + oncia_ProjectionClause$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(var$4, oncias_package$_liftSemanticErrorDefsFunc(var$2, oncia_ProjectionClause$_checkAliasedReturnItems(oncia_ProjectionClause$_MODULE$, $this.$returnItems2, !$this.$inTopLevelBraces ? $rt_s(4145) : $rt_s(4146)))); + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidPropertyKeyNamesInReturnItems(oncias_SemanticPatternCheck$_MODULE$, $this.$returnItems2)); }, -oncia_ShowConstraintsClause_productElement = ($this, $x$1) => { +oncia_Return_withReturnItems = ($this, $returnItems) => { + return oncia_Return_copy($this, $this.$distinct1, $returnItems, $this.$orderBy2, $this.$skip3, $this.$limit3, $this.$excludedNames, $this.$addedInRewrite, $this.$inTopLevelBraces, $this.$position23); +}, +oncia_Return_copy = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $excludedNames, $addedInRewrite, $inTopLevelBraces, $position) => { + return oncia_Return__init_0($distinct, $returnItems, $orderBy, $skip, $limit, $excludedNames, $addedInRewrite, $inTopLevelBraces, $position); +}, +oncia_Return_productPrefix = $this => { + return $rt_s(4147); +}, +oncia_Return_productArity = $this => { + return 8; +}, +oncia_Return_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$briefConstraintColumns0; + return jl_Boolean_valueOf($this.$distinct1); case 1: - return $this.$allConstraintColumns0; + return $this.$returnItems2; case 2: - return $this.$constraintType2; + return $this.$orderBy2; case 3: - return $this.$where8; + return $this.$skip3; case 4: - return $this.$yieldItems2; + return $this.$limit3; case 5: - return jl_Boolean_valueOf($this.$yieldAll5); + return $this.$excludedNames; + case 6: + return jl_Boolean_valueOf($this.$addedInRewrite); + case 7: + return jl_Boolean_valueOf($this.$inTopLevelBraces); default: } return sr_Statics_ioobe($x$1); }, -oncia_ShowConstraintsClause_productIterator = $this => { +oncia_Return_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowConstraintsClause_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5562))), sr_Statics_anyHash($this.$briefConstraintColumns0)), sr_Statics_anyHash($this.$allConstraintColumns0)), sr_Statics_anyHash($this.$constraintType2)), sr_Statics_anyHash($this.$where8)), sr_Statics_anyHash($this.$yieldItems2)), !$this.$yieldAll5 ? 1237 : 1231), 6); +oncia_Return_hashCode = $this => { + let var$1, var$2; + var$1 = sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4147))); + var$2 = !$this.$distinct1 ? 1237 : 1231; + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), sr_Statics_anyHash($this.$returnItems2)), sr_Statics_anyHash($this.$orderBy2)), sr_Statics_anyHash($this.$skip3)), sr_Statics_anyHash($this.$limit3)), sr_Statics_anyHash($this.$excludedNames)), !$this.$addedInRewrite ? 1237 : 1231), !$this.$inTopLevelBraces ? 1237 : 1231), 8); }, -oncia_ShowConstraintsClause_toString = $this => { +oncia_Return_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowConstraintsClause_equals = ($this, $x$1) => { +oncia_Return_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowConstraintsClause) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_Return) ? 0 : 1)) break b; $x$1 = $x$1; - if ($this.$yieldAll5 != $x$1.$yieldAll5) + if ($this.$distinct1 != $x$1.$distinct1) + break b; + if ($this.$addedInRewrite != $x$1.$addedInRewrite) + break b; + if ($this.$inTopLevelBraces != $x$1.$inTopLevelBraces) break b; c: { - var$2 = $this.$briefConstraintColumns0; - var$3 = $x$1.$briefConstraintColumns0; + var$2 = $this.$returnItems2; + var$3 = $x$1.$returnItems2; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!oncia_ReturnItems_equals(var$2, var$3)) break b; else break c; @@ -209164,10 +98516,10 @@ oncia_ShowConstraintsClause_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$allConstraintColumns0; - var$3 = $x$1.$allConstraintColumns0; + var$2 = $this.$orderBy2; + var$3 = $x$1.$orderBy2; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break d; @@ -209176,10 +98528,10 @@ oncia_ShowConstraintsClause_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$constraintType2; - var$3 = $x$1.$constraintType2; + var$2 = $this.$skip3; + var$3 = $x$1.$skip3; if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break e; @@ -209188,8 +98540,8 @@ oncia_ShowConstraintsClause_equals = ($this, $x$1) => { break b; } f: { - var$2 = $this.$where8; - var$3 = $x$1.$where8; + var$2 = $this.$limit3; + var$3 = $x$1.$limit3; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -209200,10 +98552,10 @@ oncia_ShowConstraintsClause_equals = ($this, $x$1) => { break b; } g: { - var$3 = $this.$yieldItems2; - $x$1 = $x$1.$yieldItems2; + var$3 = $this.$excludedNames; + $x$1 = $x$1.$excludedNames; if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) + if (!var$3.$equals($x$1)) break b; else break g; @@ -209211,7 +98563,7 @@ oncia_ShowConstraintsClause_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof oncia_ShowConstraintsClause)) + if (!($this instanceof oncia_Return)) break b; } var$4 = 1; @@ -209221,493 +98573,115 @@ oncia_ShowConstraintsClause_equals = ($this, $x$1) => { } return var$4; }, -oncia_ShowConstraintsClause_dup = ($this, $children) => { +oncia_Return_dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncia_ShowConstraintsClause__init_0 = ($this, $briefConstraintColumns, $allConstraintColumns, $constraintType, $where, $yieldItems, $yieldAll, $position) => { - $this.$briefConstraintColumns0 = $briefConstraintColumns; - $this.$allConstraintColumns0 = $allConstraintColumns; - $this.$constraintType2 = $constraintType; - $this.$where8 = $where; - $this.$yieldItems2 = $yieldItems; - $this.$yieldAll5 = $yieldAll; - $this.$position59 = $position; +oncia_Return__init_ = ($this, $distinct, $returnItems, $orderBy, $skip, $limit, $excludedNames, $addedInRewrite, $inTopLevelBraces, $position) => { + $this.$distinct1 = $distinct; + $this.$returnItems2 = $returnItems; + $this.$orderBy2 = $orderBy; + $this.$skip3 = $skip; + $this.$limit3 = $limit; + $this.$excludedNames = $excludedNames; + $this.$addedInRewrite = $addedInRewrite; + $this.$inTopLevelBraces = $inTopLevelBraces; + $this.$position23 = $position; oncia_Clause_$init$($this); - $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; - $this.$useAllColumns0 = $yieldAll; - $this.$originalColumns6 = !$yieldAll ? $briefConstraintColumns : $allConstraintColumns; - $constraintType = new oncia_ShowConstraintsClause$_init_$lambda$_105_0; - $constraintType.$_0932 = $this; - $this.$briefColumns2 = sci_List_map($briefConstraintColumns, $constraintType); - $briefConstraintColumns = new oncia_ShowConstraintsClause$_init_$lambda$_105_1; - $briefConstraintColumns.$_0290 = $this; - $briefConstraintColumns = sci_List_map($allConstraintColumns, $briefConstraintColumns); - $this.$allColumns4 = $briefConstraintColumns; - oncia_DefaultOrAllShowColumns$_$callClinit(); - $this.$unfilteredColumns4 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns0, $this.$briefColumns2, $briefConstraintColumns); -}, -oncia_ShowConstraintsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_ShowConstraintsClause(); - oncia_ShowConstraintsClause__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}, -oncia_UniqueConstraints = $rt_classWithoutFields(0), -oncia_UniqueConstraintsCypher5$ = $rt_classWithoutFields(), -oncia_UniqueConstraintsCypher5$_MODULE$ = null, -oncia_UniqueConstraintsCypher5$_output = null, -oncia_UniqueConstraintsCypher5$_prettyPrint = null, -oncia_UniqueConstraintsCypher5$_description = null, -oncia_UniqueConstraintsCypher5$__clinit_ = () => { - oncia_UniqueConstraintsCypher5$_MODULE$ = new oncia_UniqueConstraintsCypher5$; - oncia_UniqueConstraintsCypher5$_output = $rt_s(5563); - oncia_UniqueConstraintsCypher5$_prettyPrint = $rt_s(5563); - oncia_UniqueConstraintsCypher5$_description = $rt_s(5564); -}, -oncia_UniqueConstraintsCypher5$_prettyPrint0 = $this => { - return oncia_UniqueConstraintsCypher5$_prettyPrint; -}, -oncia_UniqueConstraintsCypher5$_productArity = $this => { - return 0; -}, -oncia_UniqueConstraintsCypher5$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_UniqueConstraintsCypher5$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UniqueConstraintsCypher5$_hashCode = $this => { - return 171542581; -}, -oncia_UniqueConstraintsCypher5$_toString = $this => { - return $rt_s(5565); -}, -oncia_NodeUniqueConstraints = $rt_classWithoutFields(0), -oncia_NodeUniqueConstraintsCypher5$ = $rt_classWithoutFields(), -oncia_NodeUniqueConstraintsCypher5$_MODULE$ = null, -oncia_NodeUniqueConstraintsCypher5$_output = null; -let oncia_NodeUniqueConstraintsCypher5$_prettyPrint = null, -oncia_NodeUniqueConstraintsCypher5$_description = null, -oncia_NodeUniqueConstraintsCypher5$__clinit_ = () => { - oncia_NodeUniqueConstraintsCypher5$_MODULE$ = new oncia_NodeUniqueConstraintsCypher5$; - oncia_NodeUniqueConstraintsCypher5$_output = $rt_s(5563); - oncia_NodeUniqueConstraintsCypher5$_prettyPrint = $rt_s(5566); - oncia_NodeUniqueConstraintsCypher5$_description = $rt_s(5567); -}, -oncia_NodeUniqueConstraintsCypher5$_prettyPrint0 = $this => { - return oncia_NodeUniqueConstraintsCypher5$_prettyPrint; -}, -oncia_NodeUniqueConstraintsCypher5$_productArity = $this => { - return 0; -}, -oncia_NodeUniqueConstraintsCypher5$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_NodeUniqueConstraintsCypher5$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NodeUniqueConstraintsCypher5$_hashCode = $this => { - return 604169303; -}, -oncia_NodeUniqueConstraintsCypher5$_toString = $this => { - return $rt_s(5568); -}, -oncia_RelUniqueConstraints = $rt_classWithoutFields(0), -oncia_RelUniqueConstraintsCypher5$ = $rt_classWithoutFields(), -oncia_RelUniqueConstraintsCypher5$_MODULE$ = null, -oncia_RelUniqueConstraintsCypher5$_output = null, -oncia_RelUniqueConstraintsCypher5$_prettyPrint = null, -oncia_RelUniqueConstraintsCypher5$_description = null, -oncia_RelUniqueConstraintsCypher5$__clinit_ = () => { - oncia_RelUniqueConstraintsCypher5$_MODULE$ = new oncia_RelUniqueConstraintsCypher5$; - oncia_RelUniqueConstraintsCypher5$_output = $rt_s(5569); - oncia_RelUniqueConstraintsCypher5$_prettyPrint = $rt_s(5570); - oncia_RelUniqueConstraintsCypher5$_description = $rt_s(5571); -}, -oncia_RelUniqueConstraintsCypher5$_prettyPrint0 = $this => { - return oncia_RelUniqueConstraintsCypher5$_prettyPrint; -}, -oncia_RelUniqueConstraintsCypher5$_productArity = $this => { - return 0; -}, -oncia_RelUniqueConstraintsCypher5$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RelUniqueConstraintsCypher5$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelUniqueConstraintsCypher5$_hashCode = $this => { - return (-447795794); -}, -oncia_RelUniqueConstraintsCypher5$_toString = $this => { - return $rt_s(5572); -}, -oncia_ExistsConstraints = $rt_classWithoutFields(0), -oncia_ExistsConstraints_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$output_$eq($rt_s(5573)); - $$this.$org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$prettyPrint_$eq($rt_s(5574)); -}, -oncia_ExistsConstraintsCypher5$ = $rt_classWithoutFields(), -oncia_ExistsConstraintsCypher5$_MODULE$ = null, -oncia_ExistsConstraintsCypher5$_description = null, -oncia_ExistsConstraintsCypher5$_output = null, -oncia_ExistsConstraintsCypher5$_prettyPrint = null, -oncia_ExistsConstraintsCypher5$_$callClinit = () => { - oncia_ExistsConstraintsCypher5$_$callClinit = $rt_eraseClinit(oncia_ExistsConstraintsCypher5$); - oncia_ExistsConstraintsCypher5$__clinit_(); -}, -oncia_ExistsConstraintsCypher5$__clinit_ = () => { - let var$1; - var$1 = new oncia_ExistsConstraintsCypher5$; - oncia_ExistsConstraintsCypher5$_$callClinit(); - oncia_ExistsConstraintsCypher5$_MODULE$ = var$1; - oncia_ExistsConstraints_$init$(var$1); - oncia_ExistsConstraintsCypher5$_description = $rt_s(5575); -}, -oncia_ExistsConstraintsCypher5$_prettyPrint0 = $this => { - oncia_ExistsConstraintsCypher5$_$callClinit(); - return oncia_ExistsConstraintsCypher5$_prettyPrint; -}, -oncia_ExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { - oncia_ExistsConstraintsCypher5$_$callClinit(); - oncia_ExistsConstraintsCypher5$_output = $x$1; -}, -oncia_ExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { - oncia_ExistsConstraintsCypher5$_$callClinit(); - oncia_ExistsConstraintsCypher5$_prettyPrint = $x$1; -}, -oncia_ExistsConstraintsCypher5$_productArity = $this => { - return 0; -}, -oncia_ExistsConstraintsCypher5$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ExistsConstraintsCypher5$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExistsConstraintsCypher5$_hashCode = $this => { - return (-1594752000); -}, -oncia_ExistsConstraintsCypher5$_toString = $this => { - return $rt_s(5576); -}, -oncia_NodeExistsConstraints = $rt_classWithoutFields(0), -oncia_NodeExistsConstraints_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$output_$eq($rt_s(5577)); - $$this.$org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$prettyPrint_$eq($rt_s(5578)); -}, -oncia_NodeExistsConstraintsCypher5$ = $rt_classWithoutFields(), -oncia_NodeExistsConstraintsCypher5$_MODULE$ = null, -oncia_NodeExistsConstraintsCypher5$_description = null, -oncia_NodeExistsConstraintsCypher5$_output = null, -oncia_NodeExistsConstraintsCypher5$_prettyPrint = null, -oncia_NodeExistsConstraintsCypher5$_$callClinit = () => { - oncia_NodeExistsConstraintsCypher5$_$callClinit = $rt_eraseClinit(oncia_NodeExistsConstraintsCypher5$); - oncia_NodeExistsConstraintsCypher5$__clinit_(); -}, -oncia_NodeExistsConstraintsCypher5$__clinit_ = () => { - let var$1; - var$1 = new oncia_NodeExistsConstraintsCypher5$; - oncia_NodeExistsConstraintsCypher5$_$callClinit(); - oncia_NodeExistsConstraintsCypher5$_MODULE$ = var$1; - oncia_NodeExistsConstraints_$init$(var$1); - oncia_NodeExistsConstraintsCypher5$_description = $rt_s(5579); -}, -oncia_NodeExistsConstraintsCypher5$_prettyPrint0 = $this => { - oncia_NodeExistsConstraintsCypher5$_$callClinit(); - return oncia_NodeExistsConstraintsCypher5$_prettyPrint; -}, -oncia_NodeExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { - oncia_NodeExistsConstraintsCypher5$_$callClinit(); - oncia_NodeExistsConstraintsCypher5$_output = $x$1; -}; -let oncia_NodeExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { - oncia_NodeExistsConstraintsCypher5$_$callClinit(); - oncia_NodeExistsConstraintsCypher5$_prettyPrint = $x$1; -}, -oncia_NodeExistsConstraintsCypher5$_productArity = $this => { - return 0; -}, -oncia_NodeExistsConstraintsCypher5$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_NodeExistsConstraintsCypher5$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_NodeExistsConstraintsCypher5$_hashCode = $this => { - return (-1162125278); +oncia_Return__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new oncia_Return(); + oncia_Return__init_(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; }, -oncia_NodeExistsConstraintsCypher5$_toString = $this => { - return $rt_s(5580); +onciu_Ref$ = $rt_classWithoutFields(), +onciu_Ref$_MODULE$ = null, +onciu_Ref$_$callClinit = () => { + onciu_Ref$_$callClinit = $rt_eraseClinit(onciu_Ref$); + onciu_Ref$__clinit_(); }, -oncia_RelExistsConstraints = $rt_classWithoutFields(0), -oncia_RelExistsConstraints_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$output_$eq($rt_s(5581)); - $$this.$org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$prettyPrint_$eq($rt_s(5582)); -}, -oncia_RelExistsConstraintsCypher5$ = $rt_classWithoutFields(), -oncia_RelExistsConstraintsCypher5$_MODULE$ = null, -oncia_RelExistsConstraintsCypher5$_description = null, -oncia_RelExistsConstraintsCypher5$_output = null, -oncia_RelExistsConstraintsCypher5$_prettyPrint = null, -oncia_RelExistsConstraintsCypher5$_$callClinit = () => { - oncia_RelExistsConstraintsCypher5$_$callClinit = $rt_eraseClinit(oncia_RelExistsConstraintsCypher5$); - oncia_RelExistsConstraintsCypher5$__clinit_(); -}, -oncia_RelExistsConstraintsCypher5$__clinit_ = () => { +onciu_Ref$__clinit_ = () => { let var$1; - var$1 = new oncia_RelExistsConstraintsCypher5$; - oncia_RelExistsConstraintsCypher5$_$callClinit(); - oncia_RelExistsConstraintsCypher5$_MODULE$ = var$1; - oncia_RelExistsConstraints_$init$(var$1); - oncia_RelExistsConstraintsCypher5$_description = $rt_s(5583); -}, -oncia_RelExistsConstraintsCypher5$_prettyPrint0 = $this => { - oncia_RelExistsConstraintsCypher5$_$callClinit(); - return oncia_RelExistsConstraintsCypher5$_prettyPrint; -}, -oncia_RelExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { - oncia_RelExistsConstraintsCypher5$_$callClinit(); - oncia_RelExistsConstraintsCypher5$_output = $x$1; -}, -oncia_RelExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { - oncia_RelExistsConstraintsCypher5$_$callClinit(); - oncia_RelExistsConstraintsCypher5$_prettyPrint = $x$1; -}, -oncia_RelExistsConstraintsCypher5$_productArity = $this => { - return 0; -}, -oncia_RelExistsConstraintsCypher5$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_RelExistsConstraintsCypher5$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_RelExistsConstraintsCypher5$_hashCode = $this => { - return 2080876921; + var$1 = new onciu_Ref$; + onciu_Ref$_$callClinit(); + onciu_Ref$_MODULE$ = var$1; }, -oncia_RelExistsConstraintsCypher5$_toString = $this => { - return $rt_s(5584); +onciu_Ref$_apply = ($this, $v) => { + let var$2; + var$2 = new onciu_Ref; + var$2.$value20 = $v; + if ($v !== null) + return var$2; + var$2 = new jl_IllegalArgumentException; + jl_Throwable__init_(var$2, $rt_s(4148)); + $rt_throw(var$2); }; -function oncia_ShowUserPrivileges() { - let a = this; jl_Object.call(a); - a.$user = null; - a.$position253 = null; +function oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0655 = null; } -let oncia_ShowUserPrivileges_productPrefix = $this => { - return $rt_s(5585); -}, -oncia_ShowUserPrivileges_productArity = $this => { - return 1; -}, -oncia_ShowUserPrivileges_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$user; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowUserPrivileges_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUserPrivileges_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUserPrivileges_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUserPrivileges_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowUserPrivileges) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$user; - $x$1 = $x$1.$user; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_ShowUserPrivileges_dup = ($this, $children) => { - return oncia_ShowUserPrivileges__init_($children.$head(), $this.$position253); -}, -oncia_ShowUserPrivileges__init_0 = ($this, $user, $position) => { - $this.$user = $user; - $this.$position253 = $position; -}, -oncia_ShowUserPrivileges__init_ = (var_0, var_1) => { - let var_2 = new oncia_ShowUserPrivileges(); - oncia_ShowUserPrivileges__init_0(var_2, var_0, var_1); - return var_2; +let oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1$applyOrElse$lambda$_0_0_apply = var$0 => { + return var$0.$_0655; }; -function oncia_ShowUsersPrivileges() { +function oncia_ImportingWithSubqueryCall() { let a = this; jl_Object.call(a); - a.$users = null; - a.$position282 = null; + a.$innerQuery1 = null; + a.$inTransactionsParameters1 = null; + a.$optional4 = 0; + a.$position114 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier13 = null; + a.$SetExtractor$module7 = null; } -let oncia_ShowUsersPrivileges_productPrefix = $this => { - return $rt_s(5586); -}, -oncia_ShowUsersPrivileges_productArity = $this => { - return 1; -}, -oncia_ShowUsersPrivileges_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$users; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ShowUsersPrivileges_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUsersPrivileges_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUsersPrivileges_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ShowUsersPrivileges_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowUsersPrivileges) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$users; - $x$1 = $x$1.$users; - if (var$2 !== null) { - if (!sci_List_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; +let oncia_ImportingWithSubqueryCall_name = $this => { + return $rt_s(4039); }, -oncia_ShowUsersPrivileges_dup = ($this, $children) => { - return oncia_ShowUsersPrivileges__init_($children.$head(), $this.$position282); +oncia_ImportingWithSubqueryCall_clauseSpecificSemanticCheck = $this => { + return oncia_SubqueryCall_clauseSpecificSemanticCheck$($this); }, -oncia_ShowUsersPrivileges__init_0 = ($this, $users, $position) => { - $this.$users = $users; - $this.$position282 = $position; +oncia_ImportingWithSubqueryCall_reportParams = $this => { + return oncia_SubqueryCall_reportParams$($this); }, -oncia_ShowUsersPrivileges__init_ = (var_0, var_1) => { - let var_2 = new oncia_ShowUsersPrivileges(); - oncia_ShowUsersPrivileges__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_ShowProceduresClause() { - let a = this; jl_Object.call(a); - a.$briefProcedureColumns = null; - a.$allProcedureColumns = null; - a.$executable = null; - a.$where10 = null; - a.$yieldItems0 = null; - a.$yieldAll7 = 0; - a.$position53 = null; - a.$useAllColumns3 = 0; - a.$originalColumns3 = null; - a.$briefColumns1 = null; - a.$allColumns1 = null; - a.$unfilteredColumns0 = null; - a.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap2 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier12 = null; - a.$SetExtractor$module22 = null; - a.$bitmap$041 = 0; -} -let oncia_ShowProceduresClause_clauseSpecificSemanticCheck = $this => { - return oncia_CommandClause_clauseSpecificSemanticCheck$($this); +oncia_ImportingWithSubqueryCall_semanticCheckContinuation = ($this, $previousScope, $outerScope) => { + return oncia_SubqueryCall_semanticCheckContinuation$($this, $previousScope, $outerScope); }, -oncia_ShowProceduresClause_returnVariables = $this => { +oncia_ImportingWithSubqueryCall_returnVariables = $this => { return oncia_Clause_returnVariables$($this); }, -oncia_ShowProceduresClause_semanticCheck = $this => { +oncia_ImportingWithSubqueryCall_semanticCheck = $this => { return oncia_Clause_semanticCheck$($this); }, -oncia_ShowProceduresClause_shouldRunQPPChecks = $this => { +oncia_ImportingWithSubqueryCall_shouldRunQPPChecks = $this => { return 1; }, -oncia_ShowProceduresClause_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); -}, -oncia_ShowProceduresClause_declareVariable = ($this, $v, $possibleTypes) => { +oncia_ImportingWithSubqueryCall_declareVariable = ($this, $v, $possibleTypes) => { return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oncia_ShowProceduresClause_error = ($this, $msg, $position) => { +oncia_ImportingWithSubqueryCall_error = ($this, $msg, $position) => { return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncia_ShowProceduresClause_asCanonicalStringVal = $this => { +oncia_ImportingWithSubqueryCall_warn = ($this, $notification) => { + return oncias_SemanticAnalysisTooling_warn$($this, $notification); +}, +oncia_ImportingWithSubqueryCall_asCanonicalStringVal = $this => { return $this.$toString(); }, -oncia_ShowProceduresClause_foldedOver = $this => { +oncia_ImportingWithSubqueryCall_foldedOver = $this => { return $this; }, -oncia_ShowProceduresClause_folder = $this => { +oncia_ImportingWithSubqueryCall_folder = $this => { return onciu_Foldable_folder$($this); }, -oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap = $this => { - let var$1, $$je; - if ($this.$bitmap$041) - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap2; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$041) - break a; - $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap2 = oncia_CommandClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$($this); - $this.$bitmap$041 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap2; -}, -oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier12; +oncia_ImportingWithSubqueryCall_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier13; }, -oncia_ShowProceduresClause_SetExtractor = $this => { +oncia_ImportingWithSubqueryCall_SetExtractor = $this => { let var$1, $$je; - if ($this.$SetExtractor$module22 === null) { + if ($this.$SetExtractor$module7 === null) { jl_Object_monitorEnterSync($this); a: { try { - if ($this.$SetExtractor$module22 !== null) + if ($this.$SetExtractor$module7 !== null) break a; - $this.$SetExtractor$module22 = oncia_Clause$SetExtractor$__init_($this); + $this.$SetExtractor$module7 = oncia_Clause$SetExtractor$__init_($this); break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -209719,88 +98693,75 @@ oncia_ShowProceduresClause_SetExtractor = $this => { } jl_Object_monitorExitSync($this); } - return $this.$SetExtractor$module22; -}, -oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier12 = $x$1; -}, -oncia_ShowProceduresClause_where = $this => { - return $this.$where10; -}, -oncia_ShowProceduresClause_yieldItems = $this => { - return $this.$yieldItems0; + return $this.$SetExtractor$module7; }, -oncia_ShowProceduresClause_yieldAll = $this => { - return $this.$yieldAll7; +oncia_ImportingWithSubqueryCall_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier13 = $x$1; }, -oncia_ShowProceduresClause_position = $this => { - return $this.$position53; +oncia_ImportingWithSubqueryCall_innerQuery = $this => { + return $this.$innerQuery1; }, -oncia_ShowProceduresClause_name = $this => { - return $rt_s(651); +oncia_ImportingWithSubqueryCall_inTransactionsParameters = $this => { + return $this.$inTransactionsParameters1; }, -oncia_ShowProceduresClause_originalColumns = $this => { - return $this.$originalColumns3; +oncia_ImportingWithSubqueryCall_optional = $this => { + return $this.$optional4; }, -oncia_ShowProceduresClause_unfilteredColumns = $this => { - return $this.$unfilteredColumns0; +oncia_ImportingWithSubqueryCall_position = $this => { + return $this.$position114; }, -oncia_ShowProceduresClause_moveWhereToProjection = $this => { - let $x$1; - $x$1 = s_None$_MODULE$; - return oncia_ShowProceduresClause_copy($this, $this.$briefProcedureColumns, $this.$allProcedureColumns, $this.$executable, $x$1, $this.$yieldItems0, $this.$yieldAll7, $this.$position53); +oncia_ImportingWithSubqueryCall_checkSubquery = $this => { + let var$1, var$2; + var$1 = $this.$innerQuery1.$checkImportingWith(); + var$2 = new oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_73_0; + var$2.$_0514 = $this; + return var$1.$flatMap3(var$2); }, -oncia_ShowProceduresClause_copy = ($this, $briefProcedureColumns, $allProcedureColumns, $executable, $where, $yieldItems, $yieldAll, $position) => { - return oncia_ShowProceduresClause__init_($briefProcedureColumns, $allProcedureColumns, $executable, $where, $yieldItems, $yieldAll, $position); +oncia_ImportingWithSubqueryCall_copy = ($this, $innerQuery, $inTransactionsParameters, $optional, $position) => { + return oncia_ImportingWithSubqueryCall__init_0($innerQuery, $inTransactionsParameters, $optional, $position); }, -oncia_ShowProceduresClause_productPrefix = $this => { - return $rt_s(5587); +oncia_ImportingWithSubqueryCall_productPrefix = $this => { + return $rt_s(4149); }, -oncia_ShowProceduresClause_productArity = $this => { - return 6; +oncia_ImportingWithSubqueryCall_productArity = $this => { + return 3; }, -oncia_ShowProceduresClause_productElement = ($this, $x$1) => { +oncia_ImportingWithSubqueryCall_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$briefProcedureColumns; + return $this.$innerQuery1; case 1: - return $this.$allProcedureColumns; + return $this.$inTransactionsParameters1; case 2: - return $this.$executable; - case 3: - return $this.$where10; - case 4: - return $this.$yieldItems0; - case 5: - return jl_Boolean_valueOf($this.$yieldAll7); + return jl_Boolean_valueOf($this.$optional4); default: } return sr_Statics_ioobe($x$1); }, -oncia_ShowProceduresClause_productIterator = $this => { +oncia_ImportingWithSubqueryCall_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowProceduresClause_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5587))), sr_Statics_anyHash($this.$briefProcedureColumns)), sr_Statics_anyHash($this.$allProcedureColumns)), sr_Statics_anyHash($this.$executable)), sr_Statics_anyHash($this.$where10)), sr_Statics_anyHash($this.$yieldItems0)), !$this.$yieldAll7 ? 1237 : 1231), 6); +oncia_ImportingWithSubqueryCall_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4149))), sr_Statics_anyHash($this.$innerQuery1)), sr_Statics_anyHash($this.$inTransactionsParameters1)), !$this.$optional4 ? 1237 : 1231), 3); }, -oncia_ShowProceduresClause_toString = $this => { +oncia_ImportingWithSubqueryCall_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowProceduresClause_equals = ($this, $x$1) => { +oncia_ImportingWithSubqueryCall_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowProceduresClause) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_ImportingWithSubqueryCall) ? 0 : 1)) break b; $x$1 = $x$1; - if ($this.$yieldAll7 != $x$1.$yieldAll7) + if ($this.$optional4 != $x$1.$optional4) break b; c: { - var$2 = $this.$briefProcedureColumns; - var$3 = $x$1.$briefProcedureColumns; + var$2 = $this.$innerQuery1; + var$3 = $x$1.$innerQuery1; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break c; @@ -209809,54 +98770,18 @@ oncia_ShowProceduresClause_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$allProcedureColumns; - var$3 = $x$1.$allProcedureColumns; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$executable; - var$3 = $x$1.$executable; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$where10; - var$3 = $x$1.$where10; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$3 = $this.$yieldItems0; - $x$1 = $x$1.$yieldItems0; + var$3 = $this.$inTransactionsParameters1; + $x$1 = $x$1.$inTransactionsParameters1; if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) + if (!var$3.$equals($x$1)) break b; else - break g; + break d; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_ShowProceduresClause)) + if (!($this instanceof oncia_ImportingWithSubqueryCall)) break b; } var$4 = 1; @@ -209866,249 +98791,377 @@ oncia_ShowProceduresClause_equals = ($this, $x$1) => { } return var$4; }, -oncia_ShowProceduresClause_dup = ($this, $children) => { +oncia_ImportingWithSubqueryCall_dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncia_ShowProceduresClause__init_0 = ($this, $briefProcedureColumns, $allProcedureColumns, $executable, $where, $yieldItems, $yieldAll, $position) => { - $this.$briefProcedureColumns = $briefProcedureColumns; - $this.$allProcedureColumns = $allProcedureColumns; - $this.$executable = $executable; - $this.$where10 = $where; - $this.$yieldItems0 = $yieldItems; - $this.$yieldAll7 = $yieldAll; - $this.$position53 = $position; +oncia_ImportingWithSubqueryCall__init_ = ($this, $innerQuery, $inTransactionsParameters, $optional, $position) => { + $this.$innerQuery1 = $innerQuery; + $this.$inTransactionsParameters1 = $inTransactionsParameters; + $this.$optional4 = $optional; + $this.$position114 = $position; oncia_Clause_$init$($this); - $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; - $this.$useAllColumns3 = $yieldAll; - $this.$originalColumns3 = !$yieldAll ? $briefProcedureColumns : $allProcedureColumns; - $executable = new oncia_ShowProceduresClause$_init_$lambda$_108_0; - $executable.$_01067 = $this; - $this.$briefColumns1 = sci_List_map($briefProcedureColumns, $executable); - $briefProcedureColumns = new oncia_ShowProceduresClause$_init_$lambda$_108_1; - $briefProcedureColumns.$_0474 = $this; - $briefProcedureColumns = sci_List_map($allProcedureColumns, $briefProcedureColumns); - $this.$allColumns1 = $briefProcedureColumns; - oncia_DefaultOrAllShowColumns$_$callClinit(); - $this.$unfilteredColumns0 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns3, $this.$briefColumns1, $briefProcedureColumns); -}, -oncia_ShowProceduresClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_ShowProceduresClause(); - oncia_ShowProceduresClause__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}, -oncia_ShowServers$$apply$lambda$_1_0 = $rt_classWithoutFields(), -oncia_ShowServers$$apply$lambda$_1_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$_2$mcZ$sp()); -}, -oncia_ShowServers$$apply$lambda$_1_1 = $rt_classWithoutFields(), -oncia_ShowServers$$apply$lambda$_1_1_apply = (var$0, var$1) => { - return var$1.$_1(); }, -oncia_ShowServers$$apply$lambda$_1_2 = $rt_classWithoutFields(), -oncia_ShowServers$$apply$lambda$_1_2_apply = (var$0, var$1) => { - return var$1.$_1(); -}, -oncia_CommandClauseWithNames = $rt_classWithoutFields(0), -oncia_CommandClauseWithNames_clauseSpecificSemanticCheck$ = $$this => { +oncia_ImportingWithSubqueryCall__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_ImportingWithSubqueryCall(); + oncia_ImportingWithSubqueryCall__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0296 = null; +} +let oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2; - var$2 = $$this.$names(); - if (!(var$2 instanceof su_Right)) { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$2 = var$2.$value7; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, var$2); - } - return var$2.$chain($$this.$org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck()); + var$2 = var$0.$_0296; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + return oncifp_IsolateSubqueriesInMutatingPatterns$_org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1(oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$, var$1, 1, var$2.$semanticTable$1, var$2.$anonymousVariableNameGenerator$1); }; -function oncia_ShowSettingsClause() { - let a = this; jl_Object.call(a); - a.$briefSettingColumns = null; - a.$allSettingColumns = null; - a.$names5 = null; - a.$where11 = null; - a.$yieldItems4 = null; - a.$yieldAll4 = 0; - a.$position44 = null; - a.$useAllColumns2 = 0; - a.$originalColumns5 = null; - a.$briefColumns4 = null; - a.$allColumns = null; - a.$unfilteredColumns3 = null; - a.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap0 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier15 = null; - a.$SetExtractor$module16 = null; - a.$bitmap$045 = 0; +function oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_1() { + jl_Object.call(this); + this.$_0348 = null; } -let oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck = $this => { - return oncia_CommandClause_clauseSpecificSemanticCheck$($this); +let oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0348; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + return oncifp_IsolateSubqueriesInMutatingPatterns$_org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1(oncifp_IsolateSubqueriesInMutatingPatterns$_MODULE$, var$1, 1, var$2.$semanticTable$1, var$2.$anonymousVariableNameGenerator$1); }, -oncia_ShowSettingsClause_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); +oncias_SemanticState$ScopeLocation$ = $rt_classWithoutFields(), +oncias_SemanticState$ScopeLocation$_MODULE$ = null, +oncias_SemanticState$ScopeLocation$_$callClinit = () => { + oncias_SemanticState$ScopeLocation$_$callClinit = $rt_eraseClinit(oncias_SemanticState$ScopeLocation$); + oncias_SemanticState$ScopeLocation$__clinit_(); }, -oncia_ShowSettingsClause_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); +oncias_SemanticState$ScopeLocation$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticState$ScopeLocation$; + oncias_SemanticState$ScopeLocation$_$callClinit(); + oncias_SemanticState$ScopeLocation$_MODULE$ = var$1; }, -oncia_ShowSettingsClause_shouldRunQPPChecks = $this => { - return 1; +oncias_SemanticState$ScopeLocation$_parent$extension = ($this, $$this) => { + return s_Option_map(onciuh_TreeZipper$Location_up($$this), new oncias_SemanticState$ScopeLocation$$parent$extension$lambda$_4_0); }, -oncia_ShowSettingsClause_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +oncias_SemanticState$ScopeLocation$_newChildScope$extension = ($this, $$this) => { + let var$2, var$3, var$4, var$5, var$6; + oncias_SemanticState$_$callClinit(); + oncias_Scope$_$callClinit(); + var$2 = oncias_Scope$_empty(oncias_Scope$_MODULE$); + var$3 = new onciuh_TreeZipper$Location; + var$4 = $$this.$$outer0; + var$5 = new onciuh_TreeZipper$TreeContext; + var$6 = sci_List_reverse($$this.$elem0.$children2.$toList()); + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + onciuh_TreeZipper$TreeContext__init_(var$5, var$4, var$6, $$this, sci_Nil$_MODULE$); + onciuh_TreeZipper$Location__init_0(var$3, var$4, var$2, var$5); + return var$3; }, -oncia_ShowSettingsClause_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +oncias_SemanticState$ScopeLocation$_localSymbol$extension = ($this, $$this, $name) => { + return oncias_Scope_symbol($$this.$elem0, $name); }, -oncia_ShowSettingsClause_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +oncias_SemanticState$ScopeLocation$_symbol$extension = ($this, $$this, $name) => { + let var$3, var$4; + var$3 = oncias_SemanticState$ScopeLocation$_localSymbol$extension($this, $$this, $name); + var$4 = new oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0; + var$4.$_0875 = $$this; + var$4.$_1294 = $name; + return s_Option_orElse(var$3, var$4); }, -oncia_ShowSettingsClause_asCanonicalStringVal = $this => { - return $this.$toString(); +oncias_SemanticState$ScopeLocation$_symbolNames$extension = ($this, $$this) => { + return oncias_Scope_symbolNames($$this.$elem0); }, -oncia_ShowSettingsClause_foldedOver = $this => { - return $this; +oncias_SemanticState$ScopeLocation$_availableSymbolDefinitions$extension = ($this, $$this) => { + let var$2; + var$2 = oncias_Scope_symbolDefinitions($$this.$elem0); + s_Option$_$callClinit(); + return var$2.$concat1((sc_AbstractIterable_toSet(s_Option$_option2Iterable(s_Option$_MODULE$, onciuh_TreeZipper$Location_up($$this)))).$flatMap(new oncias_SemanticState$ScopeLocation$$availableSymbolDefinitions$extension$lambda$_12_0)); }, -oncia_ShowSettingsClause_folder = $this => { - return onciu_Foldable_folder$($this); +oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension = ($this, $$this) => { + let $allDefinitions, $parentDefinitions, $dependencies, $declarations; + $allDefinitions = sc_AbstractMap_values(oncias_Scope_allSymbolDefinitions($$this.$elem0)); + s_Predef$_$callClinit(); + $allDefinitions = sc_AbstractIterable_toSet($allDefinitions.$flatMap(s_Predef$_$conforms(s_Predef$_MODULE$))); + $parentDefinitions = oncias_SemanticState$ScopeLocation$_availableSymbolDefinitions$extension($this, ((oncias_SemanticState$ScopeLocation$_parent$extension($this, $$this)).$get1()).$location); + $$this = new oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0; + $$this.$_0431 = $parentDefinitions; + $$this = $allDefinitions.$partition($$this); + if ($$this === null) + $rt_throw(s_MatchError__init_($$this)); + $dependencies = $$this.$_10; + $declarations = $$this.$_20; + $$this = s_Tuple2__init_($dependencies, $declarations); + $dependencies = $$this.$_10; + $declarations = $$this.$_20; + $$this = new oncias_Scope$DeclarationsAndDependencies; + $$this.$declarations = $declarations; + $$this.$dependencies0 = $dependencies; + return $$this; }, -oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap = $this => { - let var$1, $$je; - if ($this.$bitmap$045) - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap0; - jl_Object_monitorEnterSync($this); +oncia_ASTAnnotationMap$PositionedNode$ = $rt_classWithoutFields(), +oncia_ASTAnnotationMap$PositionedNode$_MODULE$ = null, +oncia_ASTAnnotationMap$PositionedNode$_$callClinit = () => { + oncia_ASTAnnotationMap$PositionedNode$_$callClinit = $rt_eraseClinit(oncia_ASTAnnotationMap$PositionedNode$); + oncia_ASTAnnotationMap$PositionedNode$__clinit_(); +}, +oncia_ASTAnnotationMap$PositionedNode$__clinit_ = () => { + let var$1; + var$1 = new oncia_ASTAnnotationMap$PositionedNode$; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + oncia_ASTAnnotationMap$PositionedNode$_MODULE$ = var$1; +}, +oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter = ($this, $i) => { + let var$2; + var$2 = new oncia_ASTAnnotationMap$PositionedNode; + var$2.$node1 = $i; + return var$2; +}; +function oncias_SemanticState$ScopeLocation() { + jl_Object.call(this); + this.$location = null; +} +let oncias_SemanticState$ScopeLocation_hashCode = $this => { + oncias_SemanticState$ScopeLocation$_$callClinit(); + return onciuh_TreeZipper$Location_hashCode($this.$location); +}, +oncias_SemanticState$ScopeLocation_equals = ($this, $x$1) => { + let var$2, var$3; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$2 = $this.$location; + var$3 = !($x$1 instanceof oncias_SemanticState$ScopeLocation) ? 0 : 1; a: { - try { - if ($this.$bitmap$045) + b: { + if (var$3) { + $x$1 = $x$1 === null ? null : $x$1.$location; + c: { + if (var$2 !== null) { + if (!onciuh_TreeZipper$Location_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + var$3 = 1; break a; - $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap0 = oncia_CommandClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$($this); - $this.$bitmap$045 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - + } } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); + var$3 = 0; } - jl_Object_monitorExitSync($this); - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap0; + return var$3; }, -oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier15; +oncias_SemanticState$ScopeLocation__init_0 = ($this, $location) => { + $this.$location = $location; }, -oncia_ShowSettingsClause_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module16 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module16 !== null) - break a; - $this.$SetExtractor$module16 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); +oncias_SemanticState$ScopeLocation__init_ = var_0 => { + let var_1 = new oncias_SemanticState$ScopeLocation(); + oncias_SemanticState$ScopeLocation__init_0(var_1, var_0); + return var_1; +}, +oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return oncias_SymbolUse_asVariable(var$1); +}, +oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + return oncias_SymbolUse_asVariable(var$1); +}; +function jusi_MappingStreamImpl$wrap$lambda$_1_0() { + let a = this; jl_Object.call(a); + a.$_051 = null; + a.$_120 = null; +} +let jusi_MappingStreamImpl$wrap$lambda$_1_0_test = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_051; + return var$0.$_120.$test0(var$2.$mapper0.$apply2(var$1)); +}, +juf_Consumer = $rt_classWithoutFields(0); +function jusi_StreamOverSpliterator$AdapterAction() { + let a = this; jl_Object.call(a); + a.$consumer = null; + a.$wantsMore = 0; +} +let jusi_StreamOverSpliterator$AdapterAction_accept = ($this, $t) => { + $this.$wantsMore = $this.$consumer.$test0($t); +}, +oncirc_containsNoNodesOfType$apply$lambda$_5_0 = $rt_classWithoutFields(), +oncirc_containsNoNodesOfType$apply$lambda$_5_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = jl_Class_getSimpleName(jl_Object_getClass(var$1)); + var$1 = var$1.$position(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4054)), var$2), $rt_s(4055)), var$1); + return jl_AbstractStringBuilder_toString(var$3); +}; +function sci_HashCollisionMapNode$filterImpl$lambda$_31_0() { + let a = this; jl_Object.call(a); + a.$_0740 = null; + a.$_1249 = 0; + a.$_283 = null; +} +let sci_HashCollisionMapNode$filterImpl$lambda$_31_0__init_0 = (var$0, var$1, var$2, var$3) => { + var$0.$_0740 = var$1; + var$0.$_1249 = var$2; + var$0.$_283 = var$3; +}, +sci_HashCollisionMapNode$filterImpl$lambda$_31_0__init_ = (var_0, var_1, var_2) => { + let var_3 = new sci_HashCollisionMapNode$filterImpl$lambda$_31_0(); + sci_HashCollisionMapNode$filterImpl$lambda$_31_0__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +sci_HashCollisionMapNode$filterImpl$lambda$_31_0_apply = (var$0, var$1) => { + return sci_Vector_$anonfun$filterImpl$1(var$0.$_0740, var$0.$_1249, var$0.$_283, var$1); +}; +function sci_HashCollisionMapNode$filterImpl$lambda$_31_1() { + let a = this; jl_Object.call(a); + a.$_0266 = null; + a.$_1100 = 0; + a.$_234 = null; +} +let sci_HashCollisionMapNode$filterImpl$lambda$_31_1__init_ = (var$0, var$1, var$2, var$3) => { + var$0.$_0266 = var$1; + var$0.$_1100 = var$2; + var$0.$_234 = var$3; +}, +sci_HashCollisionMapNode$filterImpl$lambda$_31_1__init_0 = (var_0, var_1, var_2) => { + let var_3 = new sci_HashCollisionMapNode$filterImpl$lambda$_31_1(); + sci_HashCollisionMapNode$filterImpl$lambda$_31_1__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +sci_HashCollisionMapNode$filterImpl$lambda$_31_1_apply = (var$0, var$1) => { + return sci_Vector_$anonfun$filterImpl$2(var$0.$_0266, var$0.$_1100, var$0.$_234, var$1); +}, +ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0 = $rt_classWithoutFields(), +ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0_apply = (var$0, var$1) => { + return var$1.$name7; +}; +function scc_AsScalaExtensions$IteratorHasAsScala() { + let a = this; jl_Object.call(a); + a.$i8 = null; + a.$$outer56 = null; +} +let scc_AsScalaExtensions$IteratorHasAsScala_asScala = $this => { + let var$1, var$2; + var$1 = $this.$i8; + if (var$1 === null) + var$2 = null; + else if (var$1 instanceof scc_JavaCollectionWrappers$IteratorWrapper) + var$2 = var$1.$underlying14; + else { + var$2 = new scc_JavaCollectionWrappers$JIteratorWrapper; + var$2.$underlying24 = var$1; } - return $this.$SetExtractor$module16; + return var$2; }, -oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier15 = $x$1; +scc_AsScalaExtensions$IteratorHasAsScala__init_0 = ($this, $$outer, $i) => { + $this.$i8 = $i; + if ($$outer === null) + $rt_throw(null); + $this.$$outer56 = $$outer; }, -oncia_ShowSettingsClause_names = $this => { - return $this.$names5; +scc_AsScalaExtensions$IteratorHasAsScala__init_ = (var_0, var_1) => { + let var_2 = new scc_AsScalaExtensions$IteratorHasAsScala(); + scc_AsScalaExtensions$IteratorHasAsScala__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_RelationshipPattern() { + let a = this; jl_Object.call(a); + a.$variable5 = null; + a.$labelExpression6 = null; + a.$length3 = null; + a.$properties5 = null; + a.$predicate1 = null; + a.$direction0 = null; + a.$position8 = null; +} +let oncie_RelationshipPattern_variable = $this => { + return $this.$variable5; }, -oncia_ShowSettingsClause_where = $this => { - return $this.$where11; +oncie_RelationshipPattern_labelExpression = $this => { + return $this.$labelExpression6; }, -oncia_ShowSettingsClause_yieldItems = $this => { - return $this.$yieldItems4; +oncie_RelationshipPattern_length = $this => { + return $this.$length3; }, -oncia_ShowSettingsClause_yieldAll = $this => { - return $this.$yieldAll4; +oncie_RelationshipPattern_properties = $this => { + return $this.$properties5; }, -oncia_ShowSettingsClause_position = $this => { - return $this.$position44; +oncie_RelationshipPattern_predicate = $this => { + return $this.$predicate1; }, -oncia_ShowSettingsClause_name = $this => { - return $rt_s(657); +oncie_RelationshipPattern_direction = $this => { + return $this.$direction0; }, -oncia_ShowSettingsClause_originalColumns = $this => { - return $this.$originalColumns5; +oncie_RelationshipPattern_position = $this => { + return $this.$position8; }, -oncia_ShowSettingsClause_unfilteredColumns = $this => { - return $this.$unfilteredColumns3; +oncie_RelationshipPattern_copy = ($this, $variable, $labelExpression, $length, $properties, $predicate, $direction, $position) => { + return oncie_RelationshipPattern__init_0($variable, $labelExpression, $length, $properties, $predicate, $direction, $position); }, -oncia_ShowSettingsClause_moveWhereToProjection = $this => { - let $x$1; - $x$1 = s_None$_MODULE$; - return oncia_ShowSettingsClause_copy($this, $this.$briefSettingColumns, $this.$allSettingColumns, $this.$names5, $x$1, $this.$yieldItems4, $this.$yieldAll4, $this.$position44); +oncie_RelationshipPattern_copy$default$1 = $this => { + return $this.$variable5; }, -oncia_ShowSettingsClause_clauseSpecificSemanticCheck = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(983)), $rt_s(657)), $rt_s(4677)); - return oncias_SemanticCheck_chain$(oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, jl_AbstractStringBuilder_toString(var$1), oncias_SemanticFeature$ShowSetting$_MODULE$, $this.$position44), oncia_CommandClauseWithNames_clauseSpecificSemanticCheck$($this)); +oncie_RelationshipPattern_copy$default$3 = $this => { + return $this.$length3; }, -oncia_ShowSettingsClause_copy = ($this, $briefSettingColumns, $allSettingColumns, $names, $where, $yieldItems, $yieldAll, $position) => { - return oncia_ShowSettingsClause__init_($briefSettingColumns, $allSettingColumns, $names, $where, $yieldItems, $yieldAll, $position); +oncie_RelationshipPattern_copy$default$4 = $this => { + return $this.$properties5; }, -oncia_ShowSettingsClause_productPrefix = $this => { - return $rt_s(5588); +oncie_RelationshipPattern_copy$default$5 = $this => { + return $this.$predicate1; }, -oncia_ShowSettingsClause_productArity = $this => { +oncie_RelationshipPattern_copy$default$6 = $this => { + return $this.$direction0; +}, +oncie_RelationshipPattern_productPrefix = $this => { + return $rt_s(4150); +}, +oncie_RelationshipPattern_productArity = $this => { return 6; }, -oncia_ShowSettingsClause_productElement = ($this, $x$1) => { +oncie_RelationshipPattern_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$briefSettingColumns; + return $this.$variable5; case 1: - return $this.$allSettingColumns; + return $this.$labelExpression6; case 2: - return $this.$names5; + return $this.$length3; case 3: - return $this.$where11; + return $this.$properties5; case 4: - return $this.$yieldItems4; + return $this.$predicate1; case 5: - return jl_Boolean_valueOf($this.$yieldAll4); + return $this.$direction0; default: } return sr_Statics_ioobe($x$1); }, -oncia_ShowSettingsClause_productIterator = $this => { +oncie_RelationshipPattern_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowSettingsClause_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5588))), sr_Statics_anyHash($this.$briefSettingColumns)), sr_Statics_anyHash($this.$allSettingColumns)), sr_Statics_anyHash($this.$names5)), sr_Statics_anyHash($this.$where11)), sr_Statics_anyHash($this.$yieldItems4)), !$this.$yieldAll4 ? 1237 : 1231), 6); +oncie_RelationshipPattern_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowSettingsClause_toString = $this => { +oncie_RelationshipPattern_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowSettingsClause_equals = ($this, $x$1) => { +oncie_RelationshipPattern_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowSettingsClause) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$yieldAll4 != $x$1.$yieldAll4) + if (!(!($x$1 instanceof oncie_RelationshipPattern) ? 0 : 1)) break b; c: { - var$2 = $this.$briefSettingColumns; - var$3 = $x$1.$briefSettingColumns; + $x$1 = $x$1; + var$2 = $this.$variable5; + var$3 = $x$1.$variable5; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break c; @@ -210117,10 +99170,10 @@ oncia_ShowSettingsClause_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$allSettingColumns; - var$3 = $x$1.$allSettingColumns; + var$2 = $this.$labelExpression6; + var$3 = $x$1.$labelExpression6; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break d; @@ -210129,8 +99182,8 @@ oncia_ShowSettingsClause_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$names5; - var$3 = $x$1.$names5; + var$2 = $this.$length3; + var$3 = $x$1.$length3; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -210141,8 +99194,8 @@ oncia_ShowSettingsClause_equals = ($this, $x$1) => { break b; } f: { - var$2 = $this.$where11; - var$3 = $x$1.$where11; + var$2 = $this.$properties5; + var$3 = $x$1.$properties5; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -210153,18 +99206,30 @@ oncia_ShowSettingsClause_equals = ($this, $x$1) => { break b; } g: { - var$3 = $this.$yieldItems4; - $x$1 = $x$1.$yieldItems4; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) + var$2 = $this.$predicate1; + var$3 = $x$1.$predicate1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) break b; else break g; } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$direction0; + $x$1 = $x$1.$direction0; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else + break h; + } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_ShowSettingsClause)) + if (!($this instanceof oncie_RelationshipPattern)) break b; } var$4 = 1; @@ -210174,256 +99239,371 @@ oncia_ShowSettingsClause_equals = ($this, $x$1) => { } return var$4; }, -oncia_ShowSettingsClause_dup = ($this, $children) => { +oncie_RelationshipPattern_dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncia_ShowSettingsClause__init_0 = ($this, $briefSettingColumns, $allSettingColumns, $names, $where, $yieldItems, $yieldAll, $position) => { - $this.$briefSettingColumns = $briefSettingColumns; - $this.$allSettingColumns = $allSettingColumns; - $this.$names5 = $names; - $this.$where11 = $where; - $this.$yieldItems4 = $yieldItems; - $this.$yieldAll4 = $yieldAll; - $this.$position44 = $position; - oncia_Clause_$init$($this); - $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; - $this.$useAllColumns2 = $yieldAll; - $this.$originalColumns5 = !$yieldAll ? $briefSettingColumns : $allSettingColumns; - $names = new oncia_ShowSettingsClause$_init_$lambda$_105_0; - $names.$_0580 = $this; - $this.$briefColumns4 = sci_List_map($briefSettingColumns, $names); - $briefSettingColumns = new oncia_ShowSettingsClause$_init_$lambda$_105_1; - $briefSettingColumns.$_01105 = $this; - $briefSettingColumns = sci_List_map($allSettingColumns, $briefSettingColumns); - $this.$allColumns = $briefSettingColumns; - oncia_DefaultOrAllShowColumns$_$callClinit(); - $this.$unfilteredColumns3 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns2, $this.$briefColumns4, $briefSettingColumns); +oncie_RelationshipPattern__init_ = ($this, $variable, $labelExpression, $length, $properties, $predicate, $direction, $position) => { + $this.$variable5 = $variable; + $this.$labelExpression6 = $labelExpression; + $this.$length3 = $length; + $this.$properties5 = $properties; + $this.$predicate1 = $predicate; + $this.$direction0 = $direction; + $this.$position8 = $position; }, -oncia_ShowSettingsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_ShowSettingsClause(); - oncia_ShowSettingsClause__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); +oncie_RelationshipPattern__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncie_RelationshipPattern(); + oncie_RelationshipPattern__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); return var_7; +}; +function oncia_ReturnItems$ReturnVariables() { + let a = this; jl_Object.call(a); + a.$includeExisting1 = 0; + a.$explicitVariables = null; +} +let oncia_ReturnItems$ReturnVariables__init_0 = ($this, $includeExisting, $explicitVariables) => { + $this.$includeExisting1 = $includeExisting; + $this.$explicitVariables = $explicitVariables; }, -oncia_ShowTransactionsClause$$apply$lambda$_40_0 = $rt_classWithoutFields(), -oncia_ShowTransactionsClause$$apply$lambda$_40_0__init_ = var$0 => { - return; -}, -oncia_ShowTransactionsClause$$apply$lambda$_40_0__init_0 = () => { - let var_0 = new oncia_ShowTransactionsClause$$apply$lambda$_40_0(); - oncia_ShowTransactionsClause$$apply$lambda$_40_0__init_(var_0); - return var_0; +oncia_ReturnItems$ReturnVariables__init_ = (var_0, var_1) => { + let var_2 = new oncia_ReturnItems$ReturnVariables(); + oncia_ReturnItems$ReturnVariables__init_0(var_2, var_0, var_1); + return var_2; }, -oncia_ShowTransactionsClause$$apply$lambda$_40_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$_2$mcZ$sp()); +oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_0 = $rt_classWithoutFields(), +oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_expandShowWhere$_$callClinit(); + return var$1.$name(); +}; +function oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_1() { + jl_Object.call(this); + this.$_0230 = null; +} +let oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_1_apply = var$0 => { + let var$1; + var$1 = var$0.$_0230; + oncirr_expandShowWhere$_$callClinit(); + return var$1; +}; +function oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_2() { + jl_Object.call(this); + this.$_0749 = null; +} +let oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0749; + oncirr_expandShowWhere$_$callClinit(); + var$3 = var$1.$returnItems2; + if (var$3.$includeExisting0) { + var$4 = var$3.$defaultOrderOnColumns; + var$3 = new oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0; + var$3.$_0582 = var$2; + var$2 = s_Option_getOrElse(var$4, var$3); + var$1 = oncia_Return_withReturnItems(var$1, oncia_ReturnItems_withDefaultOrderOnColumns(var$1.$returnItems2, var$2)); + } + return var$1; }, -oncia_ShowTransactionsClause$$apply$lambda$_40_1 = $rt_classWithoutFields(), -oncia_ShowTransactionsClause$$apply$lambda$_40_1__init_0 = var$0 => { - return; +oncia_CommandClause = $rt_classWithoutFields(0), +oncia_CommandClause_columnsAsMap$ = $$this => { + return sc_AbstractIterable_toMap(sci_List_map($$this.$originalColumns(), new oncia_CommandClause$columnsAsMap$lambda$_7_0), s_$less$colon$less$_singleton); }, -oncia_ShowTransactionsClause$$apply$lambda$_40_1__init_ = () => { - let var_0 = new oncia_ShowTransactionsClause$$apply$lambda$_40_1(); - oncia_ShowTransactionsClause$$apply$lambda$_40_1__init_0(var_0); - return var_0; +oncia_CommandClause_clauseSpecificSemanticCheck$ = $$this => { + let var$2, var$3, var$4; + if (!sc_IterableOnceOps_nonEmpty$($$this.$yieldItems())) { + var$2 = ($$this.$unfilteredColumns()).$columns; + var$3 = new oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0; + var$3.$_0788 = $$this; + $$this = $$this.$semanticCheckFold(var$2, var$3); + } else { + var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$2 = $$this.$yieldItems(); + var$4 = new oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_1; + var$4.$_0279 = $$this; + $$this = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$2, var$4); + } + return $$this; }, -oncia_ShowTransactionsClause$$apply$lambda$_40_1_apply = (var$0, var$1) => { - return var$1.$_1(); +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNeitherOrsNorInnerScopes$lambda$_8_0 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNeitherOrsNorInnerScopes$lambda$_8_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_mergeInPredicates$_$callClinit(); + return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1) ? 0 : 1); }, -oncia_ShowTransactionsClause$$apply$lambda$_40_2 = $rt_classWithoutFields(), -oncia_ShowTransactionsClause$$apply$lambda$_40_2__init_ = var$0 => { - return; +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containIns$lambda$_12_0 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containIns$lambda$_12_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_mergeInPredicates$_$callClinit(); + return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1)); }, -oncia_ShowTransactionsClause$$apply$lambda$_40_2__init_0 = () => { - let var_0 = new oncia_ShowTransactionsClause$$apply$lambda$_40_2(); - oncia_ShowTransactionsClause$$apply$lambda$_40_2__init_(var_0); - return var_0; +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoNots$lambda$_11_0 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoNots$lambda$_11_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_mergeInPredicates$_$callClinit(); + return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1) ? 0 : 1); }, -oncia_ShowTransactionsClause$$apply$lambda$_40_2_apply = (var$0, var$1) => { - return var$1.$_1(); +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNots$lambda$_10_0 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNots$lambda$_10_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_mergeInPredicates$_$callClinit(); + return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1)); }, -oncia_TransactionsCommandClause = $rt_classWithoutFields(0); -function oncia_ShowTransactionsClause() { +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoAnds$lambda$_9_0 = $rt_classWithoutFields(), +oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoAnds$lambda$_9_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_mergeInPredicates$_$callClinit(); + return jl_Boolean_valueOf(onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1) ? 0 : 1); +}; +function oncie_FunctionName() { let a = this; jl_Object.call(a); - a.$briefTransactionColumns = null; - a.$allTransactionColumns = null; - a.$names3 = null; - a.$where9 = null; - a.$yieldItems1 = null; - a.$yieldAll6 = 0; - a.$position70 = null; - a.$useAllColumns4 = 0; - a.$originalColumns2 = null; - a.$briefColumns = null; - a.$allColumns3 = null; - a.$unfilteredColumns6 = null; - a.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap4 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier14 = null; - a.$SetExtractor$module = null; - a.$bitmap$032 = 0; + a.$namespace3 = null; + a.$name6 = null; + a.$position166 = null; } -let oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck = $this => { - return oncia_CommandClause_clauseSpecificSemanticCheck$($this); +let oncie_FunctionName_namespace = $this => { + return $this.$namespace3; }, -oncia_ShowTransactionsClause_clauseSpecificSemanticCheck = $this => { - return oncia_CommandClauseWithNames_clauseSpecificSemanticCheck$($this); +oncie_FunctionName_name = $this => { + return $this.$name6; }, -oncia_ShowTransactionsClause_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); +oncie_FunctionName_position = $this => { + return $this.$position166; }, -oncia_ShowTransactionsClause_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); +oncie_FunctionName_equals = ($this, $x) => { + let $otherNamespace, $otherName, var$4; + if (!($x instanceof oncie_FunctionName)) + return 0; + a: { + b: { + c: { + $x = $x; + $otherNamespace = $x.$namespace3; + $otherName = $x.$name6; + $x = $this.$namespace3; + if ($otherNamespace !== null) { + if (!oncie_Namespace_equals($otherNamespace, $x)) + break b; + else + break c; + } + if ($x !== null) + break b; + } + d: { + ju_Locale_$callClinit(); + $x = jl_String_toLowerCase($otherName, ju_Locale_ROOT); + $otherName = jl_String_toLowerCase($this.$name6, ju_Locale_ROOT); + if ($x !== null) { + if (!jl_String_equals($x, $otherName)) + break b; + else + break d; + } + if ($otherName !== null) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncia_ShowTransactionsClause_shouldRunQPPChecks = $this => { - return 1; +oncie_FunctionName_hashCode = $this => { + let var$1; + var$1 = $this.$name6; + ju_Locale_$callClinit(); + return jl_String_hashCode(jl_String_toLowerCase(var$1, ju_Locale_ROOT)); }, -oncia_ShowTransactionsClause_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +oncie_FunctionName_productPrefix = $this => { + return $rt_s(4151); }, -oncia_ShowTransactionsClause_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +oncie_FunctionName_productArity = $this => { + return 2; }, -oncia_ShowTransactionsClause_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +oncie_FunctionName_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$namespace3; + case 1: + return $this.$name6; + default: + } + return sr_Statics_ioobe($x$1); }, -oncia_ShowTransactionsClause_asCanonicalStringVal = $this => { - return $this.$toString(); +oncie_FunctionName_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowTransactionsClause_foldedOver = $this => { - return $this; +oncie_FunctionName_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowTransactionsClause_folder = $this => { - return onciu_Foldable_folder$($this); +oncie_FunctionName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap = $this => { - let var$1, $$je; - if ($this.$bitmap$032) - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap4; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$032) - break a; - $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap4 = oncia_CommandClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$($this); - $this.$bitmap$032 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); +oncie_FunctionName__init_0 = ($this, $namespace, $name, $position) => { + $this.$namespace3 = $namespace; + $this.$name6 = $name; + $this.$position166 = $position; +}, +oncie_FunctionName__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_FunctionName(); + oncie_FunctionName__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_Namespace() { + let a = this; jl_Object.call(a); + a.$parts0 = null; + a.$position110 = null; +} +let oncie_Namespace_parts = $this => { + return $this.$parts0; +}, +oncie_Namespace_position = $this => { + return $this.$position110; +}, +oncie_Namespace_productPrefix = $this => { + return $rt_s(4152); +}, +oncie_Namespace_productArity = $this => { + return 1; +}, +oncie_Namespace_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$parts0; + default: } - jl_Object_monitorExitSync($this); - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap4; + return sr_Statics_ioobe($x$1); }, -oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier14; +oncie_Namespace_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowTransactionsClause_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module !== null) - break a; - $this.$SetExtractor$module = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - +oncie_Namespace_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Namespace_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Namespace_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Namespace) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$parts0; + $x$1 = $x$1.$parts0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Namespace)) + break b; } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); + var$3 = 1; + break a; } - jl_Object_monitorExitSync($this); + var$3 = 0; } - return $this.$SetExtractor$module; -}, -oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier14 = $x$1; -}, -oncia_ShowTransactionsClause_names = $this => { - return $this.$names3; + return var$3; }, -oncia_ShowTransactionsClause_where = $this => { - return $this.$where9; +oncie_Namespace_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncia_ShowTransactionsClause_yieldItems = $this => { - return $this.$yieldItems1; +oncie_Namespace__init_0 = ($this, $parts, $position) => { + $this.$parts0 = $parts; + $this.$position110 = $position; }, -oncia_ShowTransactionsClause_yieldAll = $this => { - return $this.$yieldAll6; +oncie_Namespace__init_ = (var_0, var_1) => { + let var_2 = new oncie_Namespace(); + oncie_Namespace__init_0(var_2, var_0, var_1); + return var_2; }, -oncia_ShowTransactionsClause_position = $this => { - return $this.$position70; +oncie_Namespace$ = $rt_classWithoutFields(), +oncie_Namespace$_MODULE$ = null, +oncie_Namespace$__clinit_ = () => { + oncie_Namespace$_MODULE$ = new oncie_Namespace$; }, -oncia_ShowTransactionsClause_name = $this => { - return $rt_s(655); +oncie_Namespace$_apply$default$1 = $this => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; }, -oncia_ShowTransactionsClause_originalColumns = $this => { - return $this.$originalColumns2; +oncie_TypeSignature = $rt_classWithoutFields(0); +function oncie_ExpressionTypeSignature() { + let a = this; jl_Object.call(a); + a.$argumentTypes1 = null; + a.$outputType2 = null; + a.$overriddenArgumentTypeName0 = null; +} +let oncie_ExpressionTypeSignature_argumentTypes = $this => { + return $this.$argumentTypes1; }, -oncia_ShowTransactionsClause_unfilteredColumns = $this => { - return $this.$unfilteredColumns6; +oncie_ExpressionTypeSignature_outputType = $this => { + return $this.$outputType2; }, -oncia_ShowTransactionsClause_moveWhereToProjection = $this => { - let $x$1; - $x$1 = s_None$_MODULE$; - return oncia_ShowTransactionsClause_copy($this, $this.$briefTransactionColumns, $this.$allTransactionColumns, $this.$names3, $x$1, $this.$yieldItems1, $this.$yieldAll6, $this.$position70); +oncie_ExpressionTypeSignature_removeFirstArgumentType = $this => { + return oncie_ExpressionTypeSignature__init_0($this.$argumentTypes1.$tail(), $this.$outputType2, $this.$overriddenArgumentTypeName0); }, -oncia_ShowTransactionsClause_copy = ($this, $briefTransactionColumns, $allTransactionColumns, $names, $where, $yieldItems, $yieldAll, $position) => { - return oncia_ShowTransactionsClause__init_($briefTransactionColumns, $allTransactionColumns, $names, $where, $yieldItems, $yieldAll, $position); +oncie_ExpressionTypeSignature_getSignatureAsString = $this => { + let var$1, var$2, var$3; + var$1 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + var$1 = sc_StringOps$_$plus$plus$extension(var$1, sc_AbstractIterable_mkString($this.$argumentTypes1.$map(new oncie_ExpressionTypeSignature$getSignatureAsString$lambda$_11_0), $rt_s(45)), $rt_s(693)); + var$2 = $this.$outputType2.$normalizedCypherTypeString(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), var$2); + return jl_AbstractStringBuilder_toString(var$3); }, -oncia_ShowTransactionsClause_productPrefix = $this => { - return $rt_s(5589); +oncie_ExpressionTypeSignature_productPrefix = $this => { + return $rt_s(4153); }, -oncia_ShowTransactionsClause_productArity = $this => { - return 6; +oncie_ExpressionTypeSignature_productArity = $this => { + return 3; }, -oncia_ShowTransactionsClause_productElement = ($this, $x$1) => { +oncie_ExpressionTypeSignature_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$briefTransactionColumns; + return $this.$argumentTypes1; case 1: - return $this.$allTransactionColumns; + return $this.$outputType2; case 2: - return $this.$names3; - case 3: - return $this.$where9; - case 4: - return $this.$yieldItems1; - case 5: - return jl_Boolean_valueOf($this.$yieldAll6); + return $this.$overriddenArgumentTypeName0; default: } return sr_Statics_ioobe($x$1); }, -oncia_ShowTransactionsClause_productIterator = $this => { +oncie_ExpressionTypeSignature_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowTransactionsClause_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5589))), sr_Statics_anyHash($this.$briefTransactionColumns)), sr_Statics_anyHash($this.$allTransactionColumns)), sr_Statics_anyHash($this.$names3)), sr_Statics_anyHash($this.$where9)), sr_Statics_anyHash($this.$yieldItems1)), !$this.$yieldAll6 ? 1237 : 1231), 6); +oncie_ExpressionTypeSignature_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowTransactionsClause_toString = $this => { +oncie_ExpressionTypeSignature_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ShowTransactionsClause_equals = ($this, $x$1) => { +oncie_ExpressionTypeSignature_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ShowTransactionsClause) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$yieldAll6 != $x$1.$yieldAll6) + if (!(!($x$1 instanceof oncie_ExpressionTypeSignature) ? 0 : 1)) break b; c: { - var$2 = $this.$briefTransactionColumns; - var$3 = $x$1.$briefTransactionColumns; + $x$1 = $x$1; + var$2 = $this.$argumentTypes1; + var$3 = $x$1.$argumentTypes1; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break c; @@ -210432,10 +99612,10 @@ oncia_ShowTransactionsClause_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$allTransactionColumns; - var$3 = $x$1.$allTransactionColumns; + var$2 = $this.$outputType2; + var$3 = $x$1.$outputType2; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break d; @@ -210444,42 +99624,18 @@ oncia_ShowTransactionsClause_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$names3; - var$3 = $x$1.$names3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$where9; - var$3 = $x$1.$where9; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$3 = $this.$yieldItems1; - $x$1 = $x$1.$yieldItems1; + var$3 = $this.$overriddenArgumentTypeName0; + $x$1 = $x$1.$overriddenArgumentTypeName0; if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) + if (!jl_Object_equals(var$3, $x$1)) break b; else - break g; + break e; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_ShowTransactionsClause)) + if (!($this instanceof oncie_ExpressionTypeSignature)) break b; } var$4 = 1; @@ -210489,236 +99645,512 @@ oncia_ShowTransactionsClause_equals = ($this, $x$1) => { } return var$4; }, -oncia_ShowTransactionsClause_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncie_ExpressionTypeSignature__init_ = ($this, $argumentTypes, $outputType, $overriddenArgumentTypeName) => { + $this.$argumentTypes1 = $argumentTypes; + $this.$outputType2 = $outputType; + $this.$overriddenArgumentTypeName0 = $overriddenArgumentTypeName; }, -oncia_ShowTransactionsClause__init_0 = ($this, $briefTransactionColumns, $allTransactionColumns, $names, $where, $yieldItems, $yieldAll, $position) => { - $this.$briefTransactionColumns = $briefTransactionColumns; - $this.$allTransactionColumns = $allTransactionColumns; - $this.$names3 = $names; - $this.$where9 = $where; - $this.$yieldItems1 = $yieldItems; - $this.$yieldAll6 = $yieldAll; - $this.$position70 = $position; - oncia_Clause_$init$($this); - $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; - $this.$useAllColumns4 = $yieldAll; - $this.$originalColumns2 = !$yieldAll ? $briefTransactionColumns : $allTransactionColumns; - $names = new oncia_ShowTransactionsClause$_init_$lambda$_135_0; - $names.$_0434 = $this; - $this.$briefColumns = sci_List_map($briefTransactionColumns, $names); - $briefTransactionColumns = new oncia_ShowTransactionsClause$_init_$lambda$_135_1; - $briefTransactionColumns.$_0980 = $this; - $briefTransactionColumns = sci_List_map($allTransactionColumns, $briefTransactionColumns); - $this.$allColumns3 = $briefTransactionColumns; - oncia_DefaultOrAllShowColumns$_$callClinit(); - $this.$unfilteredColumns6 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns4, $this.$briefColumns, $briefTransactionColumns); +oncie_ExpressionTypeSignature__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_ExpressionTypeSignature(); + oncie_ExpressionTypeSignature__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncia_ShowTransactionsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncia_ShowTransactionsClause(); - oncia_ShowTransactionsClause__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; +oncie_TypeSignature$ = $rt_classWithoutFields(), +oncie_TypeSignature$_MODULE$ = null, +oncie_TypeSignature$_$callClinit = () => { + oncie_TypeSignature$_$callClinit = $rt_eraseClinit(oncie_TypeSignature$); + oncie_TypeSignature$__clinit_(); +}, +oncie_TypeSignature$__clinit_ = () => { + let var$1; + var$1 = new oncie_TypeSignature$; + oncie_TypeSignature$_$callClinit(); + oncie_TypeSignature$_MODULE$ = var$1; +}, +oncie_TypeSignature$_apply = ($this, $argumentTypes, $outputType) => { + let var$3; + var$3 = new oncie_ExpressionTypeSignature; + oncie_ExpressionTypeSignature$_$callClinit(); + oncie_ExpressionTypeSignature__init_(var$3, $argumentTypes, $outputType, s_None$_MODULE$); + return var$3; +}, +oncia_ProjectingUnion = $rt_classWithoutFields(0); +function sc_Iterable$$anon$1() { + sc_AbstractIterable.call(this); + this.$a$1 = null; +} +let sc_Iterable$$anon$1_iterator = $this => { + return sc_Iterator$$anon$20__init_($this.$a$1); +}, +sc_Iterable$$anon$1_knownSize = $this => { + return 1; +}, +sc_Iterable$$anon$1_head = $this => { + return $this.$a$1; +}; +function onciu_Ref() { + jl_Object.call(this); + this.$value20 = null; +} +let onciu_Ref_id = $this => { + return jl_Object_identity($this.$value20); +}, +onciu_Ref_toIdString = $this => { + return jl_Integer_toHexString(onciu_Ref_id($this)); +}, +onciu_Ref_toString = $this => { + let var$1, var$2, var$3; + var$1 = onciu_Ref_toIdString($this); + var$2 = $this.$value20; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$1 = jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4154)), var$1); + jl_AbstractStringBuilder_append0(var$1, 40); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$2), 41); + return jl_AbstractStringBuilder_toString(var$3); +}, +onciu_Ref_hashCode = $this => { + return onciu_Ref_id($this); +}, +onciu_Ref_equals = ($this, $that) => { + if (!($that instanceof onciu_Ref)) + return 0; + $that = $that; + return $this.$value20 !== $that.$value20 ? 0 : 1; +}; +function oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1$lambda$_32_0() { + let a = this; jl_Object.call(a); + a.$_056 = null; + a.$_122 = null; + a.$_210 = null; + a.$_35 = null; + a.$_43 = 0; +} +let oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1$lambda$_32_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncifp_IsolateSubqueriesInMutatingPatterns$_$anonfun$getRewriter$1(var$0.$_056, var$0.$_122, var$0.$_210, var$0.$_35, var$0.$_43, var$1); }; -function onciafn_Neo4jASTFactory$userPrivilegeScope$lambda$_194_0() { +function oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0() { jl_Object.call(this); - this.$_01074 = null; + this.$_0431 = null; } -let onciafn_Neo4jASTFactory$userPrivilegeScope$lambda$_194_0_apply = (var$0, var$1) => { +let oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_01074; - onciafn_TupleConverter$_$callClinit(); - return onciafn_Neo4jASTFactory_stringLiteralOrParameterExpression(var$2, onciafn_DecorateTuple$AsScala_asScala(onciafn_TupleConverter$_asScalaEither(onciafn_TupleConverter$_MODULE$, var$1))); + var$2 = var$0.$_0431; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return jl_Boolean_valueOf(var$2.$contains(var$1)); }; -function oncia_TerminateTransactionsClause() { +function oncias_Scope$DeclarationsAndDependencies() { let a = this; jl_Object.call(a); - a.$originalColumns0 = null; - a.$names4 = null; - a.$yieldItems6 = null; - a.$yieldAll10 = 0; - a.$wherePos = null; - a.$position100 = null; - a.$columns1 = null; - a.$unfilteredColumns5 = null; - a.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap3 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier19 = null; - a.$SetExtractor$module15 = null; - a.$bitmap$046 = 0; + a.$declarations = null; + a.$dependencies0 = null; } -let oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck = $this => { - return oncia_CommandClause_clauseSpecificSemanticCheck$($this); +let oncias_Scope$DeclarationsAndDependencies_productPrefix = $this => { + return $rt_s(4155); }, -oncia_TerminateTransactionsClause_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); +oncias_Scope$DeclarationsAndDependencies_productArity = $this => { + return 2; }, -oncia_TerminateTransactionsClause_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); +oncias_Scope$DeclarationsAndDependencies_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$declarations; + case 1: + return $this.$dependencies0; + default: + } + return sr_Statics_ioobe($x$1); }, -oncia_TerminateTransactionsClause_shouldRunQPPChecks = $this => { - return 1; +oncias_Scope$DeclarationsAndDependencies_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_TerminateTransactionsClause_semanticCheckFold = ($this, $iterable, $f) => { - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +oncias_Scope$DeclarationsAndDependencies_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_TerminateTransactionsClause_declareVariable = ($this, $v, $possibleTypes) => { - return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +onciuh_TreeZipper$Context = $rt_classWithoutFields(0), +onciuh_TreeZipper$Top$ = $rt_classWithoutFields(), +onciuh_TreeZipper$Top$_productArity = $this => { + return 0; }, -oncia_TerminateTransactionsClause_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +onciuh_TreeZipper$Top$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncia_TerminateTransactionsClause_asCanonicalStringVal = $this => { - return $this.$toString(); +onciuh_TreeZipper$Top$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_TerminateTransactionsClause_foldedOver = $this => { - return $this; +onciuh_TreeZipper$Top$_hashCode = $this => { + return 84277; }, -oncia_TerminateTransactionsClause_folder = $this => { - return onciu_Foldable_folder$($this); +onciuh_TreeZipper$Top$_toString = $this => { + return $rt_s(4156); }, -oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap = $this => { - let var$1, $$je; - if ($this.$bitmap$046) - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap3; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$046) - break a; - $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap3 = oncia_CommandClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$($this); - $this.$bitmap$046 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap3; +onciuh_TreeZipper$Top$__init_ = ($this, $$outer) => { + return; }, -oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier19; +onciuh_TreeZipper$Top$__init_0 = var_0 => { + let var_1 = new onciuh_TreeZipper$Top$(); + onciuh_TreeZipper$Top$__init_(var_1, var_0); + return var_1; +}; +function ju_Collections$13() { + ju_AbstractMap.call(this); + this.$val$m = null; +} +let oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0 = $rt_classWithoutFields(), +oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0_apply = (var$0, var$1) => { + return var$1.$simplify(); +}; +function s_PartialFunction$AndThen() { + let a = this; jl_Object.call(a); + a.$pf0 = null; + a.$k = null; +} +let s_PartialFunction$AndThen_lift = $this => { + return s_PartialFunction_lift$($this); }, -oncia_TerminateTransactionsClause_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module15 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module15 !== null) - break a; - $this.$SetExtractor$module15 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); +s_PartialFunction$AndThen_applyOrElse = ($this, $x, $default) => { + let var$3, $z; + var$3 = $this.$pf0; + s_PartialFunction$_$callClinit(); + $z = s_PartialFunction$Unlifted_applyOrElse(var$3, $x, s_PartialFunction$_scala$PartialFunction$$checkFallback(s_PartialFunction$_MODULE$)); + if (s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, $z)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x); + return $this.$k.$apply2($z); +}; +function sci_Map$WithDefault() { + let a = this; sci_AbstractMap.call(a); + a.$underlying6 = null; + a.$defaultValue = null; +} +let sci_Map$WithDefault_get = ($this, $key) => { + return $this.$underlying6.$get2($key); +}, +sci_Map$WithDefault_default = ($this, $key) => { + return $this.$defaultValue.$_0622; +}, +sci_Map$WithDefault_iterableFactory = $this => { + return $this.$underlying6.$iterableFactory(); +}, +sci_Map$WithDefault_iterator = $this => { + return $this.$underlying6.$iterator0(); +}, +sci_Map$WithDefault_isEmpty = $this => { + return $this.$underlying6.$isEmpty(); +}, +sci_Map$WithDefault_mapFactory = $this => { + return $this.$underlying6.$mapFactory(); +}, +sci_Map$WithDefault_fromSpecific = ($this, $coll) => { + return sci_Map$WithDefault__init_((sci_Map$WithDefault_mapFactory($this)).$from0($coll), $this.$defaultValue); +}, +sci_Map$WithDefault_newSpecificBuilder = $this => { + let $mapResult_this, $mapResult_f; + $mapResult_this = sci_MapBuilderImpl__init_(); + $mapResult_f = new sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0; + $mapResult_f.$_0910 = $this; + return scm_Builder$$anon$1__init_($mapResult_this, $mapResult_f); +}, +sci_Map$WithDefault_fromSpecific1 = ($this, $coll) => { + return sci_Map$WithDefault_fromSpecific($this, $coll); +}, +sci_Map$WithDefault_fromSpecific0 = ($this, $coll) => { + return sci_Map$WithDefault_fromSpecific($this, $coll); +}, +sci_Map$WithDefault_updated = ($this, $key, $value) => { + return sci_Map$WithDefault__init_($this.$underlying6.$updated0($key, $value), $this.$defaultValue); +}, +sci_Map$WithDefault_removed = ($this, $key) => { + return sci_Map$WithDefault__init_($this.$underlying6.$removed($key), $this.$defaultValue); +}, +sci_Map$WithDefault_concat = ($this, $suffix) => { + return sci_Map$WithDefault__init_($this.$underlying6.$concat2($suffix), $this.$defaultValue); +}, +sci_Map$WithDefault__init_0 = ($this, $underlying, $defaultValue) => { + $this.$underlying6 = $underlying; + $this.$defaultValue = $defaultValue; +}, +sci_Map$WithDefault__init_ = (var_0, var_1) => { + let var_2 = new sci_Map$WithDefault(); + sci_Map$WithDefault__init_0(var_2, var_0, var_1); + return var_2; +}; +function sci_Map$withDefaultValue$lambda$_9_0() { + jl_Object.call(this); + this.$_0622 = null; +} +let sc_MapOps$addString$lambda$_49_0 = $rt_classWithoutFields(), +sc_MapOps$addString$lambda$_49_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(null)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$3, 4); + var$2 = jl_StringBuilder_append(var$3, var$2); + jl_AbstractStringBuilder_append(var$2, $rt_s(4157)); + return jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$2, var$1)); +}, +oncirr_normalizeWithAndReturnClauses$aliasUnaliasedReturnItems$lambda$_39_0 = $rt_classWithoutFields(), +oncirr_normalizeWithAndReturnClauses$aliasUnaliasedReturnItems$lambda$_39_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + if (var$1 instanceof oncia_UnaliasedReturnItem) { + var$2 = var$1; + var$3 = var$2.$alias0; + var$1 = new oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0; + var$1.$_095 = var$2; + var$3 = s_Option_getOrElse(var$3, var$1); + var$1 = oncia_AliasedReturnItem__init_(var$2.$expression19, var$3, var$2.$position107); } - return $this.$SetExtractor$module15; + return var$1; }, -oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier19 = $x$1; +oncie_Variable$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), +oncie_Variable$$_clinit_$lambda$_0_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncie_Variable$_$callClinit(); + return s_Tuple2__init_(var$1.$name4, var$1.$position4); }, -oncia_TerminateTransactionsClause_originalColumns = $this => { - return $this.$originalColumns0; +sm_Ordering$StringOrdering = $rt_classWithoutFields(0), +sm_Ordering$String$ = $rt_classWithoutFields(), +sm_Ordering$String$_MODULE$ = null, +sm_Ordering$String$_$callClinit = () => { + sm_Ordering$String$_$callClinit = $rt_eraseClinit(sm_Ordering$String$); + sm_Ordering$String$__clinit_(); }, -oncia_TerminateTransactionsClause_names = $this => { - return $this.$names4; +sm_Ordering$String$__clinit_ = () => { + let var$1; + var$1 = new sm_Ordering$String$; + sm_Ordering$String$_$callClinit(); + sm_Ordering$String$_MODULE$ = var$1; }, -oncia_TerminateTransactionsClause_yieldItems = $this => { - return $this.$yieldItems6; +sm_Ordering$String$_on = ($this, $f) => { + return sm_Ordering_on$($this, $f); }, -oncia_TerminateTransactionsClause_yieldAll = $this => { - return $this.$yieldAll10; +sm_Ordering$String$_compare = ($this, $x, $y) => { + return jl_String_compareTo($x, $y); }, -oncia_TerminateTransactionsClause_position = $this => { - return $this.$position100; +oncirr_rewriteShowQuery$$rewriteToWithAndReturn$lambda$_12_0 = $rt_classWithoutFields(), +oncirr_rewriteShowQuery$$rewriteToWithAndReturn$lambda$_12_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_rewriteShowQuery$_$callClinit(); + return var$1.$name18; }, -oncia_TerminateTransactionsClause_name = $this => { - return $rt_s(656); +oncia_WithType = $rt_classWithoutFields(0), +oncia_AddedInRewrite$ = $rt_classWithoutFields(), +oncia_AddedInRewrite$_MODULE$ = null, +oncia_AddedInRewrite$__clinit_ = () => { + oncia_AddedInRewrite$_MODULE$ = new oncia_AddedInRewrite$; }, -oncia_TerminateTransactionsClause_unfilteredColumns = $this => { - return $this.$unfilteredColumns5; +oncia_AddedInRewrite$_productArity = $this => { + return 0; }, -oncia_TerminateTransactionsClause_clauseSpecificSemanticCheck = $this => { - let var$1, $ls, var$3, var$4; - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_MODULE$; - $ls = $this.$names4; - if (!($ls instanceof su_Left)) { - if (!($ls instanceof su_Right)) - $rt_throw(s_MatchError__init_($ls)); - var$3 = 0; - } else - var$3 = $ls.$value6.$length() >= 1 ? 0 : 1; - $ls = new oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_0; - $ls.$_0390 = $this; - var$1 = oncias_SemanticCheck$_when(var$1, var$3, $ls); - $ls = oncias_SemanticCheck$_MODULE$; - var$3 = s_Option_isDefined($this.$wherePos); - var$4 = new oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_1; - var$4.$_0295 = $this; - return oncias_SemanticCheck_chain$(var$1.$chain(oncias_SemanticCheck$_when($ls, var$3, var$4)), oncia_CommandClauseWithNames_clauseSpecificSemanticCheck$($this)); +oncia_AddedInRewrite$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncia_TerminateTransactionsClause_where = $this => { - return s_None$_MODULE$; +oncia_AddedInRewrite$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_TerminateTransactionsClause_moveWhereToProjection = $this => { - return $this; +oncia_AddedInRewrite$_hashCode = $this => { + return 1072546727; }, -oncia_TerminateTransactionsClause_productPrefix = $this => { - return $rt_s(5590); +oncia_AddedInRewrite$_toString = $this => { + return $rt_s(4158); }, -oncia_TerminateTransactionsClause_productArity = $this => { - return 5; +oncirr_rewriteShowQuery$$anonfun$lastPosition$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_rewriteShowQuery$$anonfun$lastPosition$1_applyOrElse = ($this, $x1, $default) => { + if (!$rt_isInstance($x1, onciu_ASTNode)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $x1 = $x1; + $default = new oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0; + $default.$_0343 = $x1; + return $default; }, -oncia_TerminateTransactionsClause_productElement = ($this, $x$1) => { +oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_0 = $rt_classWithoutFields(), +oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_rewriteShowQuery$_$callClinit(); + return var$1.$name(); +}; +function oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_1() { + jl_Object.call(this); + this.$_0462 = null; +} +let oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_1_apply = var$0 => { + let var$1; + var$1 = var$0.$_0462; + oncirr_rewriteShowQuery$_$callClinit(); + return sci_List_map((var$1.$unfilteredColumns()).$columns, new oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0); +}; +function oncirr_rewriteShowQuery$$updateDefaultOrderOnReturn$lambda$_10_0() { + let a = this; jl_Object.call(a); + a.$_01120 = null; + a.$_1381 = null; +} +let oncirr_rewriteShowQuery$$updateDefaultOrderOnReturn$lambda$_10_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_01120; + var$2 = var$0.$_1381; + oncirr_rewriteShowQuery$_$callClinit(); + return oncirr_rewriteShowQuery$_getDefaultOrderFromProjectionOrCommand(oncirr_rewriteShowQuery$_MODULE$, var$1, var$2); +}; +function oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_0() { + jl_Object.call(this); + this.$_0911 = null; +} +let oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0911; + oncirr_mergeInPredicates$_$callClinit(); + var$3 = onciu_Foldable_folder$(var$1); + s_Predef$_$callClinit(); + var$4 = sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); + var$1 = new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1; + var$1.$merge$1 = var$2; + return onciu_Foldable$Folder_treeFold(var$3, var$4, var$1); +}; +function oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_1() { + jl_Object.call(this); + this.$_0506 = null; +} +let oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_1_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$2; + var$3 = var$0.$_0506; + oncirr_mergeInPredicates$_$callClinit(); + var$4 = (var$1.$keySet0()).$intersect(var$2.$keySet0()); + var$5 = new oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0; + var$5.$_0884 = var$3; + var$5.$_1298 = var$1; + var$5.$_296 = var$2; + return (var$1.$concat2(var$4.$map(var$5))).$concat2(var$2.$removedAll0(var$4)); +}; +function oncirr_mergeInPredicates$$anonfun$inRewriter$1() { + sr_AbstractPartialFunction.call(this); + this.$inPredicates$1 = null; +} +let oncirr_mergeInPredicates$$anonfun$inRewriter$1_applyOrElse = ($this, $x1, $default) => { + let var$3, $a, $list, $expressions, $x$1; + if ($x1 instanceof oncie_In) { + var$3 = $x1; + $a = var$3.$lhs6; + $list = var$3.$rhs8; + if ($list instanceof oncie_ListLiteral) { + $x1 = $list; + $expressions = $this.$inPredicates$1.$apply2($a); + if (!sc_IterableOnceOps_nonEmpty$($expressions)) + return oncie_False__init_0(var$3.$position109); + $x$1 = oncie_ListLiteral_copy($x1, $expressions, $x1.$position164); + return oncie_In_copy(var$3, var$3.$lhs6, $x$1, var$3.$position109); + } + } + return $default.$apply2($x1); +}; +function oncie_FunctionTypeSignature() { + let a = this; jl_Object.call(a); + a.$function3 = null; + a.$outputType0 = null; + a.$names5 = null; + a.$description3 = null; + a.$category = null; + a.$argumentTypes0 = null; + a.$optionalTypes = null; + a.$deprecated1 = 0; + a.$deprecatedBy0 = null; + a.$internal = 0; + a.$overrideDefaultAsString = null; + a.$overriddenArgumentTypeName = null; + a.$argumentDescriptions = null; +} +let oncie_FunctionTypeSignature_outputType = $this => { + return $this.$outputType0; +}, +oncie_FunctionTypeSignature_argumentTypes = $this => { + return $this.$argumentTypes0; +}, +oncie_FunctionTypeSignature_getSignatureAsString = $this => { + let var$1, var$2; + var$1 = $this.$overrideDefaultAsString; + var$2 = new oncie_FunctionTypeSignature$getSignatureAsString$lambda$_32_0; + var$2.$_0299 = $this; + return s_Option_getOrElse(var$1, var$2); +}, +oncie_FunctionTypeSignature_removeFirstArgumentType = $this => { + let $x$1; + $x$1 = $this.$argumentTypes0.$tail(); + return oncie_FunctionTypeSignature__init_($this.$function3, $this.$outputType0, $this.$names5, $this.$description3, $this.$category, $x$1, $this.$optionalTypes, $this.$deprecated1, $this.$deprecatedBy0, $this.$internal, $this.$overrideDefaultAsString, $this.$overriddenArgumentTypeName, $this.$argumentDescriptions); +}, +oncie_FunctionTypeSignature_productPrefix = $this => { + return $rt_s(4159); +}, +oncie_FunctionTypeSignature_productArity = $this => { + return 13; +}, +oncie_FunctionTypeSignature_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$originalColumns0; + return $this.$function3; case 1: - return $this.$names4; + return $this.$outputType0; case 2: - return $this.$yieldItems6; + return $this.$names5; case 3: - return jl_Boolean_valueOf($this.$yieldAll10); + return $this.$description3; case 4: - return $this.$wherePos; + return $this.$category; + case 5: + return $this.$argumentTypes0; + case 6: + return $this.$optionalTypes; + case 7: + return jl_Boolean_valueOf($this.$deprecated1); + case 8: + return $this.$deprecatedBy0; + case 9: + return jl_Boolean_valueOf($this.$internal); + case 10: + return $this.$overrideDefaultAsString; + case 11: + return $this.$overriddenArgumentTypeName; + case 12: + return $this.$argumentDescriptions; default: } return sr_Statics_ioobe($x$1); }, -oncia_TerminateTransactionsClause_productIterator = $this => { +oncie_FunctionTypeSignature_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_TerminateTransactionsClause_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5590))), sr_Statics_anyHash($this.$originalColumns0)), sr_Statics_anyHash($this.$names4)), sr_Statics_anyHash($this.$yieldItems6)), !$this.$yieldAll10 ? 1237 : 1231), sr_Statics_anyHash($this.$wherePos)), 5); +oncie_FunctionTypeSignature_hashCode = $this => { + let var$1, var$2; + var$1 = sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4159))), sr_Statics_anyHash($this.$function3)), sr_Statics_anyHash($this.$outputType0)), sr_Statics_anyHash($this.$names5)), sr_Statics_anyHash($this.$description3)), sr_Statics_anyHash($this.$category)), sr_Statics_anyHash($this.$argumentTypes0)), sr_Statics_anyHash($this.$optionalTypes)); + var$2 = !$this.$deprecated1 ? 1237 : 1231; + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(var$1, var$2), sr_Statics_anyHash($this.$deprecatedBy0)), !$this.$internal ? 1237 : 1231), sr_Statics_anyHash($this.$overrideDefaultAsString)), sr_Statics_anyHash($this.$overriddenArgumentTypeName)), sr_Statics_anyHash($this.$argumentDescriptions)), 13); }, -oncia_TerminateTransactionsClause_toString = $this => { +oncie_FunctionTypeSignature_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_TerminateTransactionsClause_equals = ($this, $x$1) => { +oncie_FunctionTypeSignature_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_TerminateTransactionsClause) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_FunctionTypeSignature) ? 0 : 1)) break b; $x$1 = $x$1; - if ($this.$yieldAll10 != $x$1.$yieldAll10) + if ($this.$deprecated1 != $x$1.$deprecated1) + break b; + if ($this.$internal != $x$1.$internal) break b; c: { - var$2 = $this.$originalColumns0; - var$3 = $x$1.$originalColumns0; + var$2 = $this.$function3; + var$3 = $x$1.$function3; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!jl_Object_equals(var$2, var$3)) break b; else break c; @@ -210727,8 +100159,8 @@ oncia_TerminateTransactionsClause_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$names4; - var$3 = $x$1.$names4; + var$2 = $this.$outputType0; + var$3 = $x$1.$outputType0; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -210739,10 +100171,10 @@ oncia_TerminateTransactionsClause_equals = ($this, $x$1) => { break b; } e: { - var$2 = $this.$yieldItems6; - var$3 = $x$1.$yieldItems6; + var$2 = $this.$names5; + var$3 = $x$1.$names5; if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break e; @@ -210751,250 +100183,102 @@ oncia_TerminateTransactionsClause_equals = ($this, $x$1) => { break b; } f: { - var$3 = $this.$wherePos; - $x$1 = $x$1.$wherePos; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) + var$2 = $this.$description3; + var$3 = $x$1.$description3; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) break b; else break f; } - if ($x$1 !== null) + if (var$3 !== null) break b; } - if (!($this instanceof oncia_TerminateTransactionsClause)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_TerminateTransactionsClause_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_TerminateTransactionsClause__init_0 = ($this, $originalColumns, $names, $yieldItems, $yieldAll, $wherePos, $position) => { - $this.$originalColumns0 = $originalColumns; - $this.$names4 = $names; - $this.$yieldItems6 = $yieldItems; - $this.$yieldAll10 = $yieldAll; - $this.$wherePos = $wherePos; - $this.$position100 = $position; - oncia_Clause_$init$($this); - $names = new oncia_TerminateTransactionsClause$_init_$lambda$_96_0; - $names.$_0773 = $this; - $this.$columns1 = sci_List_map($originalColumns, $names); - oncia_DefaultOrAllShowColumns$_$callClinit(); - $originalColumns = oncia_DefaultOrAllShowColumns$_MODULE$; - $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; - $names = $this.$columns1; - $this.$unfilteredColumns5 = oncia_DefaultOrAllShowColumns$_apply($originalColumns, $yieldAll, $names, $names); -}, -oncia_TerminateTransactionsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_TerminateTransactionsClause(); - oncia_TerminateTransactionsClause__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}, -oncia_DefaultWith$ = $rt_classWithoutFields(), -oncia_DefaultWith$_MODULE$ = null, -oncia_DefaultWith$__clinit_ = () => { - oncia_DefaultWith$_MODULE$ = new oncia_DefaultWith$; -}, -oncia_DefaultWith$_productArity = $this => { - return 0; -}, -oncia_DefaultWith$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_DefaultWith$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_DefaultWith$_hashCode = $this => { - return 1231002247; -}, -oncia_DefaultWith$_toString = $this => { - return $rt_s(5591); -}; -function oncia_LoadCSV() { - let a = this; jl_Object.call(a); - a.$withHeaders = 0; - a.$urlString = null; - a.$variable17 = null; - a.$fieldTerminator = null; - a.$position270 = null; - a.$org$neo4j$cypher$internal$ast$Clause$$stringifier21 = null; - a.$SetExtractor$module4 = null; -} -let oncia_LoadCSV_returnVariables = $this => { - return oncia_Clause_returnVariables$($this); -}, -oncia_LoadCSV_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this); -}, -oncia_LoadCSV_shouldRunQPPChecks = $this => { - return 1; -}, -oncia_LoadCSV_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_LoadCSV_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_LoadCSV_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_LoadCSV_asCanonicalStringVal = $this => { - return $this.$toString(); -}, -oncia_LoadCSV_foldedOver = $this => { - return $this; -}, -oncia_LoadCSV_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncia_LoadCSV_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { - return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier21; -}, -oncia_LoadCSV_SetExtractor = $this => { - let var$1, $$je; - if ($this.$SetExtractor$module4 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$SetExtractor$module4 !== null) - break a; - $this.$SetExtractor$module4 = oncia_Clause$SetExtractor$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$SetExtractor$module4; -}, -oncia_LoadCSV_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier21 = $x$1; -}, -oncia_LoadCSV_position = $this => { - return $this.$position270; -}, -oncia_LoadCSV_name = $this => { - return $rt_s(660); -}, -oncia_LoadCSV_clauseSpecificSemanticCheck = $this => { - let var$1, var$2, var$3, var$4; - a: { - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$urlString), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_65_0, $this.$urlString)); - var$2 = $this.$fieldTerminator; - if (var$2 instanceof s_Some) { - var$2 = var$2.$value5; - if (var$2.$value8.$nativeString.length != 1) { - var$2 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(5592), var$2.$position18); - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - var$3 = oncias_SemanticCheck_chain$(var$1, var$2); - if ($this.$withHeaders) { - oncius_package$_$callClinit(); - var$2 = oncius_package$_CTMap(oncius_package$_MODULE$); - } else { - oncius_package$_$callClinit(); - var$2 = oncius_package$_MODULE$; - var$2 = oncius_package$_CTList(var$2, oncius_package$_CTString(var$2)); - } - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$1 = $this.$variable17; - oncius_package$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_package$_liftSemanticEitherFunc(var$4, oncias_SemanticAnalysisTooling_declareVariable$($this, var$1, var$2.$invariant()))); -}, -oncia_LoadCSV_productPrefix = $this => { - return $rt_s(5593); -}, -oncia_LoadCSV_productArity = $this => { - return 4; -}, -oncia_LoadCSV_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$withHeaders); - case 1: - return $this.$urlString; - case 2: - return $this.$variable17; - case 3: - return $this.$fieldTerminator; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_LoadCSV_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadCSV_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5593))), !$this.$withHeaders ? 1237 : 1231), sr_Statics_anyHash($this.$urlString)), sr_Statics_anyHash($this.$variable17)), sr_Statics_anyHash($this.$fieldTerminator)), 4); -}, -oncia_LoadCSV_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_LoadCSV_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_LoadCSV) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$withHeaders != $x$1.$withHeaders) - break b; - c: { - var$2 = $this.$urlString; - var$3 = $x$1.$urlString; + g: { + var$2 = $this.$category; + var$3 = $x$1.$category; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$argumentTypes0; + var$3 = $x$1.$argumentTypes0; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; else - break c; + break h; } if (var$3 !== null) break b; } - d: { - var$2 = $this.$variable17; - var$3 = $x$1.$variable17; + i: { + var$2 = $this.$optionalTypes; + var$3 = $x$1.$optionalTypes; if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) + if (!sci_Vector0$_equals(var$2, var$3)) break b; else - break d; + break i; } if (var$3 !== null) break b; } - e: { - var$3 = $this.$fieldTerminator; - $x$1 = $x$1.$fieldTerminator; + j: { + var$2 = $this.$deprecatedBy0; + var$3 = $x$1.$deprecatedBy0; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break j; + } + if (var$3 !== null) + break b; + } + k: { + var$2 = $this.$overrideDefaultAsString; + var$3 = $x$1.$overrideDefaultAsString; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break k; + } + if (var$3 !== null) + break b; + } + l: { + var$2 = $this.$overriddenArgumentTypeName; + var$3 = $x$1.$overriddenArgumentTypeName; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break l; + } + if (var$3 !== null) + break b; + } + m: { + var$3 = $this.$argumentDescriptions; + $x$1 = $x$1.$argumentDescriptions; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; else - break e; + break m; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_LoadCSV)) + if (!($this instanceof oncie_FunctionTypeSignature)) break b; } var$4 = 1; @@ -211004,3066 +100288,3223 @@ oncia_LoadCSV_equals = ($this, $x$1) => { } return var$4; }, -oncia_LoadCSV_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_LoadCSV__init_0 = ($this, $withHeaders, $urlString, $variable, $fieldTerminator, $position) => { - $this.$withHeaders = $withHeaders; - $this.$urlString = $urlString; - $this.$variable17 = $variable; - $this.$fieldTerminator = $fieldTerminator; - $this.$position270 = $position; - oncia_Clause_$init$($this); -}, -oncia_LoadCSV__init_ = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncia_LoadCSV(); - oncia_LoadCSV__init_0(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}, -onciu_BucketSize = $rt_classWithoutFields(0), -onciu_UnknownSize$ = $rt_classWithoutFields(), -onciu_UnknownSize$_MODULE$ = null, -onciu_UnknownSize$__clinit_ = () => { - onciu_UnknownSize$_MODULE$ = new onciu_UnknownSize$; +oncie_FunctionTypeSignature__init_0 = ($this, $function, $outputType, $names, $description, $category, $argumentTypes, $optionalTypes, $deprecated, $deprecatedBy, $internal, $overrideDefaultAsString, $overriddenArgumentTypeName, $argumentDescriptions) => { + $this.$function3 = $function; + $this.$outputType0 = $outputType; + $this.$names5 = $names; + $this.$description3 = $description; + $this.$category = $category; + $this.$argumentTypes0 = $argumentTypes; + $this.$optionalTypes = $optionalTypes; + $this.$deprecated1 = $deprecated; + $this.$deprecatedBy0 = $deprecatedBy; + $this.$internal = $internal; + $this.$overrideDefaultAsString = $overrideDefaultAsString; + $this.$overriddenArgumentTypeName = $overriddenArgumentTypeName; + $this.$argumentDescriptions = $argumentDescriptions; }, -onciu_UnknownSize$_productArity = $this => { - return 0; +oncie_FunctionTypeSignature__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8, var_9, var_10, var_11, var_12) => { + let var_13 = new oncie_FunctionTypeSignature(); + oncie_FunctionTypeSignature__init_0(var_13, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8, var_9, var_10, var_11, var_12); + return var_13; }, -onciu_UnknownSize$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncie_FunctionTypeSignature$ = $rt_classWithoutFields(), +oncie_FunctionTypeSignature$_MODULE$ = null, +oncie_FunctionTypeSignature$__clinit_ = () => { + oncie_FunctionTypeSignature$_MODULE$ = new oncie_FunctionTypeSignature$; }, -onciu_UnknownSize$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_FunctionTypeSignature$_apply$default$7 = $this => { + s_package$_$callClinit(); + return sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)); }, -onciu_UnknownSize$_hashCode = $this => { - return (-1007455413); +oncie_FunctionTypeSignature$_apply$default$13 = $this => { + s_Predef$_$callClinit(); + return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); }, -onciu_UnknownSize$_toString = $this => { - return $rt_s(5594); +oncie_FunctionTypeSignature$_noArg = ($this, $function, $outputType, $description, $category) => { + let var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$5 = new oncie_FunctionTypeSignature; + s_package$_$callClinit(); + var$6 = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + var$9 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); + var$10 = (s_package$_Vector(s_package$_MODULE$)).$from0(sci_Nil$_MODULE$); + var$11 = oncie_FunctionTypeSignature$_apply$default$7($this); + var$7 = s_None$_MODULE$; + oncie_FunctionTypeSignature__init_0(var$5, $function, $outputType, var$9, $description, $category, var$10, var$11, 0, var$7, 0, var$7, var$7, oncie_FunctionTypeSignature$_apply$default$13($this)); + return var$5; }; -function scc_AsScalaExtensions$MapHasAsScala() { +function s_Enumeration() { let a = this; jl_Object.call(a); - a.$m = null; - a.$$outer80 = null; + a.$scala$Enumeration$$vmap = null; + a.$vset = null; + a.$scala$Enumeration$$vsetDefined = 0; + a.$nmap = null; + a.$nextId = 0; + a.$nextName0 = null; + a.$scala$Enumeration$$topId = 0; + a.$scala$Enumeration$$bottomId = 0; } -let scc_AsScalaExtensions$MapHasAsScala_asScala = $this => { - let var$1, var$2; - var$1 = $this.$m; - if (var$1 === null) - var$2 = null; - else if (var$1 instanceof scc_JavaCollectionWrappers$MutableMapWrapper) - var$2 = var$1.$underlying4(); - else { - var$2 = new scc_JavaCollectionWrappers$JMapWrapper; - var$2.$underlying32 = var$1; +let s_Enumeration_Value = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = $this.$nextId; + var$2 = $this.$nextName0; + var$2 = var$2 !== null && var$2.$hasNext() ? $this.$nextName0.$next() : null; + var$3 = new s_Enumeration$Val; + var$3.$i = var$1; + var$3.$name57 = var$2; + var$3.$$outer36 = $this; + var$3.$scala$Enumeration$$outerEnum0 = $this; + var$4 = $this.$scala$Enumeration$$vmap; + var$2 = jl_Integer_valueOf(var$1); + var$5 = sr_Statics_anyHash(var$2); + var$5 = var$5 ^ (var$5 >>> 16 | 0); + var$6 = var$4.$scala$collection$mutable$HashMap$$table.data; + var$4 = var$6[var$5 & (var$6.length - 1 | 0)]; + if (!(((var$4 !== null ? scm_HashMap$Node_findNode(var$4, var$2, var$5) : null) === null ? 0 : 1) ? 0 : 1)) { + var$2 = new jl_AssertionError; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$4, 18); + jl_AbstractStringBuilder_append(var$4, $rt_s(3672)); + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$7, 14); + jl_AbstractStringBuilder_append(var$7, $rt_s(4160)); + jl_AssertionError__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$4, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$7, var$3.$i))))); + $rt_throw(var$2); } - return var$2; -}; -function scc_AsScalaExtensions$SetHasAsScala() { - let a = this; jl_Object.call(a); - a.$s4 = null; - a.$$outer85 = null; -} -function oncia_UsingJoinHint() { - let a = this; jl_Object.call(a); - a.$variables1 = null; - a.$position162 = null; -} -let oncia_UsingJoinHint_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); -}, -oncia_UsingJoinHint_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); -}, -oncia_UsingJoinHint_position = $this => { - return $this.$position162; -}, -oncia_UsingJoinHint_semanticCheck = $this => { - let var$1, var$2, var$3; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$1 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$2 = $this.$variables1; - var$3 = new oncia_UsingJoinHint$semanticCheck$lambda$_54_0; - var$3.$_0182 = $this; - return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$1, var$2, var$3); -}, -oncia_UsingJoinHint_productPrefix = $this => { - return $rt_s(5595); -}, -oncia_UsingJoinHint_productArity = $this => { - return 1; + scm_HashMap_update($this.$scala$Enumeration$$vmap, jl_Integer_valueOf(var$1), var$3); + $this.$scala$Enumeration$$vsetDefined = 0; + var$8 = var$1 + 1 | 0; + $this.$nextId = var$8; + if (var$8 > $this.$scala$Enumeration$$topId) + $this.$scala$Enumeration$$topId = var$8; + if (var$1 < $this.$scala$Enumeration$$bottomId) + $this.$scala$Enumeration$$bottomId = var$1; + return var$3; }, -oncia_UsingJoinHint_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variables1; - default: +s_Enumeration_populateNameMap = $this => { + let $filter$extension_make_evidence$1, $fields, $filter$extension_res, $refArrayOps_xs, $filter$extension_i, $foreach$extension_len, $filter$extension_x, $foreach$extension_i, var$9, $foreach$extension_$this, var$11, var$12; + $filter$extension_make_evidence$1 = jl_Class_getSuperclass(jl_Object_getClass($this)); + $fields = jl_Class_getDeclaredFields(jl_Object_getClass($this)); + while ($filter$extension_make_evidence$1 !== null) { + $filter$extension_res = jl_Class_getSuperclass($filter$extension_make_evidence$1); + if (!((jl_Class_getDeclaredFields($filter$extension_make_evidence$1)).data.length ? 0 : 1)) { + $refArrayOps_xs = jl_Class_getDeclaredFields($filter$extension_make_evidence$1); + sr_ClassTag$_$callClinit(); + $filter$extension_make_evidence$1 = sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jlr_Field)); + $filter$extension_make_evidence$1 = s_Array$_copyAs(s_Array$_MODULE$, $fields, jlr_Array_getLength($fields) + jlr_Array_getLength($refArrayOps_xs) | 0, $filter$extension_make_evidence$1); + s_Array$_copy(s_Array$_MODULE$, $refArrayOps_xs, 0, $filter$extension_make_evidence$1, jlr_Array_getLength($fields), jlr_Array_getLength($refArrayOps_xs)); + $fields = $filter$extension_make_evidence$1; + } + $filter$extension_make_evidence$1 = $filter$extension_res; } - return sr_Statics_ioobe($x$1); -}, -oncia_UsingJoinHint_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingJoinHint_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingJoinHint_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UsingJoinHint_equals = ($this, $x$1) => { - let var$2, var$3; a: { + $filter$extension_make_evidence$1 = jl_Object_getClass($this); + $filter$extension_res = ju_HashMap__init_(); + jl_Class_findMethods($filter$extension_make_evidence$1, $filter$extension_res); + $refArrayOps_xs = ju_AbstractCollection_toArray(ju_HashMap_values($filter$extension_res), $rt_createArray(jlr_Method, $filter$extension_res.$elementCount)); + sr_ClassTag$_$callClinit(); + $filter$extension_make_evidence$1 = sr_ClassTag$_apply(sr_ClassTag$_MODULE$, jl_Class_getComponentType(jl_Object_getClass($refArrayOps_xs))); + $filter$extension_res = $filter$extension_make_evidence$1.$runtimeClass(); + if (jl_Object_equals($rt_cls($rt_bytecls), $filter$extension_res)) { + $filter$extension_res = new scm_ArrayBuilder$ofByte; + scm_ArrayBuilder__init_($filter$extension_res); + break a; + } + if (jl_Object_equals($rt_cls($rt_shortcls), $filter$extension_res)) { + $filter$extension_res = new scm_ArrayBuilder$ofShort; + scm_ArrayBuilder__init_($filter$extension_res); + break a; + } + if (jl_Object_equals($rt_cls($rt_charcls), $filter$extension_res)) { + $filter$extension_res = new scm_ArrayBuilder$ofChar; + scm_ArrayBuilder__init_($filter$extension_res); + break a; + } + if (jl_Object_equals($rt_cls($rt_intcls), $filter$extension_res)) { + $filter$extension_res = new scm_ArrayBuilder$ofInt; + scm_ArrayBuilder__init_($filter$extension_res); + break a; + } + if (jl_Object_equals($rt_cls($rt_longcls), $filter$extension_res)) { + $filter$extension_res = new scm_ArrayBuilder$ofLong; + scm_ArrayBuilder__init_($filter$extension_res); + break a; + } + if (jl_Object_equals($rt_cls($rt_floatcls), $filter$extension_res)) { + $filter$extension_res = new scm_ArrayBuilder$ofFloat; + scm_ArrayBuilder__init_($filter$extension_res); + break a; + } + if (jl_Object_equals($rt_cls($rt_doublecls), $filter$extension_res)) { + $filter$extension_res = new scm_ArrayBuilder$ofDouble; + scm_ArrayBuilder__init_($filter$extension_res); + break a; + } + if (jl_Object_equals($rt_cls($rt_booleancls), $filter$extension_res)) { + $filter$extension_res = new scm_ArrayBuilder$ofBoolean; + scm_ArrayBuilder__init_($filter$extension_res); + break a; + } + if (!jl_Object_equals($rt_cls($rt_voidcls), $filter$extension_res)) { + $filter$extension_res = scm_ArrayBuilder$ofRef__init_($filter$extension_make_evidence$1); + break a; + } + $filter$extension_res = new scm_ArrayBuilder$ofUnit; + scm_ArrayBuilder__init_($filter$extension_res); + } + $refArrayOps_xs = $refArrayOps_xs.data; + $filter$extension_i = 0; + $foreach$extension_len = $refArrayOps_xs.length; + while ($filter$extension_i < $foreach$extension_len) { + $filter$extension_x = $refArrayOps_xs[$filter$extension_i]; + $foreach$extension_i = (jlr_Method_getParameterTypes($filter$extension_x)).data.length ? 0 : 1; b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UsingJoinHint) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variables1; - $x$1 = $x$1.$variables1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; + if ($foreach$extension_i && jl_Class_isAssignableFrom($rt_cls(s_Enumeration$Value), $filter$extension_x.$returnType)) { + var$9 = $filter$extension_x.$declaringClass; + if (!(var$9 !== null && jl_Object_equals(var$9, $rt_cls(s_Enumeration)))) { + $foreach$extension_i = 0; + c: { + while (true) { + $foreach$extension_$this = $fields.data; + if ($foreach$extension_i >= $foreach$extension_$this.length) { + $foreach$extension_i = (-1); + break c; + } + d: { + e: { + f: { + $filter$extension_make_evidence$1 = $foreach$extension_$this[$foreach$extension_i]; + var$11 = $filter$extension_make_evidence$1.$name43; + var$9 = $filter$extension_x.$name34; + if (var$11 !== null) { + if (!jl_String_equals(var$11, var$9)) + break e; + else + break f; + } + if (var$9 !== null) + break e; + } + g: { + var$9 = $filter$extension_make_evidence$1.$type6; + $filter$extension_make_evidence$1 = $filter$extension_x.$returnType; + if (var$9 !== null) { + if (!jl_Object_equals(var$9, $filter$extension_make_evidence$1)) + break e; + else + break g; + } + if ($filter$extension_make_evidence$1 !== null) + break e; + } + var$12 = 1; + break d; + } + var$12 = 0; + } + if (var$12) + break; + $foreach$extension_i = $foreach$extension_i + 1 | 0; + } } - if ($x$1 !== null) + if ($foreach$extension_i < 0 ? 0 : 1) { + $foreach$extension_i = 1; break b; + } } - if (!($this instanceof oncia_UsingJoinHint)) - break b; } - var$3 = 1; - break a; + $foreach$extension_i = 0; } - var$3 = 0; + if ($foreach$extension_i) + $filter$extension_res.$addOne($filter$extension_x); + $filter$extension_i = $filter$extension_i + 1 | 0; } - return var$3; -}, -oncia_UsingJoinHint_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_UsingJoinHint__init_ = ($this, $variables, $position) => { - $this.$variables1 = $variables; - $this.$position162 = $position; -}, -oncia_UsingJoinHint__init_0 = (var_0, var_1) => { - let var_2 = new oncia_UsingJoinHint(); - oncia_UsingJoinHint__init_(var_2, var_0, var_1); - return var_2; -}, -onciu_NonEmptyList$ = $rt_classWithoutFields(), -onciu_NonEmptyList$_MODULE$ = null, -onciu_NonEmptyList$__clinit_ = () => { - onciu_NonEmptyList$_MODULE$ = new onciu_NonEmptyList$; -}, -onciu_NonEmptyList$_from = ($this, $input) => { - return s_Option_getOrElse(onciu_NonEmptyList$IteratorConverter_asNonEmptyListOption(onciu_NonEmptyList$_IteratorConverter($this, $input.$iterator0())), new onciu_NonEmptyList$$from$lambda$_3_0); -}, -onciu_NonEmptyList$_IteratorConverter = ($this, $iterator) => { - let var$2; - var$2 = new onciu_NonEmptyList$IteratorConverter; - var$2.$iterator3 = $iterator; - return var$2; -}; -function oncia_ProcedureResultItem() { - let a = this; jl_Object.call(a); - a.$output = null; - a.$variable8 = null; - a.$position107 = null; - a.$outputName = null; -} -let oncia_ProcedureResultItem_position = $this => { - return $this.$position107; -}, -oncia_ProcedureResultItem_productPrefix = $this => { - return $rt_s(5596); -}, -oncia_ProcedureResultItem_productArity = $this => { - return 2; -}, -oncia_ProcedureResultItem_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$output; - case 1: - return $this.$variable8; - default: + $fields = ($filter$extension_res.$result()).data; + $foreach$extension_len = $fields.length; + $foreach$extension_i = 0; + while ($foreach$extension_i < $foreach$extension_len) { + $filter$extension_make_evidence$1 = $fields[$foreach$extension_i]; + var$9 = $filter$extension_make_evidence$1.$name34; + $filter$extension_make_evidence$1 = jlr_Method_invoke($filter$extension_make_evidence$1, $this, $rt_createArray(jl_Object, 0)); + if ($filter$extension_make_evidence$1.$scala$Enumeration$$outerEnum() === $this) { + $filter$extension_i = $filter$extension_make_evidence$1.$id0(); + $filter$extension_make_evidence$1 = $this.$nmap; + $filter$extension_res = s_Tuple2__init_(jl_Integer_valueOf($filter$extension_i), var$9); + if ($filter$extension_make_evidence$1 === null) + $rt_throw(null); + scm_HashMap_addOne($filter$extension_make_evidence$1, $filter$extension_res); + } + $foreach$extension_i = $foreach$extension_i + 1 | 0; } - return sr_Statics_ioobe($x$1); }, -oncia_ProcedureResultItem_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +s_Enumeration_scala$Enumeration$$nameOf = ($this, $i) => { + let var$2, var$3, var$4; + jl_Object_monitorEnterSync($this); + try { + var$2 = $this.$nmap; + var$3 = jl_Integer_valueOf($i); + var$4 = new s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0; + var$4.$_0262 = $this; + var$4.$_199 = $i; + return scm_HashMap_getOrElse(var$2, var$3, var$4); + } finally { + jl_Object_monitorExitSync($this); + } }, -oncia_ProcedureResultItem_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +s_Enumeration__init_ = $this => { + $this.$scala$Enumeration$$vmap = scm_HashMap__init_(); + $this.$vset = null; + $this.$scala$Enumeration$$vsetDefined = 0; + $this.$nmap = scm_HashMap__init_(); + $this.$nextId = 0; + $this.$scala$Enumeration$$topId = 0; + $this.$scala$Enumeration$$bottomId = 0; }, -oncia_ProcedureResultItem_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncief_Category$ = $rt_classWithoutFields(s_Enumeration), +oncief_Category$_MODULE$ = null, +oncief_Category$_NUMERIC0 = null, +oncief_Category$_TRIGONOMETRIC0 = null, +oncief_Category$_PREDICATE = null, +oncief_Category$_AGGREGATING0 = null, +oncief_Category$_SCALAR0 = null, +oncief_Category$_TEMPORAL = null, +oncief_Category$_LOGARITHMIC0 = null, +oncief_Category$_LIST0 = null, +oncief_Category$_STRING0 = null, +oncief_Category$_SPATIAL0 = null, +oncief_Category$_GRAPH = null, +oncief_Category$_VECTOR0 = null, +oncief_Category$_$callClinit = () => { + oncief_Category$_$callClinit = $rt_eraseClinit(oncief_Category$); + oncief_Category$__clinit_(); }, -oncia_ProcedureResultItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ProcedureResultItem) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$output; - var$3 = $x$1.$output; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$variable8; - $x$1 = $x$1.$variable8; - if (var$3 !== null) { - if (!oncie_Variable_equals(var$3, $x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_ProcedureResultItem)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncief_Category$__clinit_ = () => { + let var$1; + var$1 = new oncief_Category$; + oncief_Category$_$callClinit(); + s_Enumeration__init_(var$1); + oncief_Category$_MODULE$ = var$1; + oncief_Category$_NUMERIC0 = $rt_s(4161); + oncief_Category$_TRIGONOMETRIC0 = $rt_s(4162); + oncief_Category$_PREDICATE = $rt_s(4163); + oncief_Category$_AGGREGATING0 = $rt_s(4164); + oncief_Category$_SCALAR0 = $rt_s(4165); + oncief_Category$_TEMPORAL = $rt_s(4166); + oncief_Category$_LOGARITHMIC0 = $rt_s(4167); + oncief_Category$_LIST0 = $rt_s(54); + oncief_Category$_STRING0 = $rt_s(713); + oncief_Category$_SPATIAL0 = $rt_s(4168); + oncief_Category$_GRAPH = $rt_s(182); + oncief_Category$_VECTOR0 = $rt_s(777); }, -oncia_ProcedureResultItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncief_Category$_NUMERIC = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_NUMERIC0; }, -oncia_ProcedureResultItem__init_0 = ($this, $output, $variable, $position) => { - $this.$output = $output; - $this.$variable8 = $variable; - $this.$position107 = $position; - $output = s_Option_map($output, new oncia_ProcedureResultItem$_init_$lambda$_76_0); - $variable = new oncia_ProcedureResultItem$_init_$lambda$_76_1; - $variable.$_034 = $this; - $this.$outputName = s_Option_getOrElse($output, $variable); +oncief_Category$_TRIGONOMETRIC = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_TRIGONOMETRIC0; }, -oncia_ProcedureResultItem__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_ProcedureResultItem(); - oncia_ProcedureResultItem__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncief_Category$_PREDICATE0 = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_PREDICATE; }, -oncia_UnaliasedReturnItem$_init_$lambda$_31_0 = $rt_classWithoutFields(), -oncia_UnaliasedReturnItem$_init_$lambda$_31_0_apply = (var$0, var$1) => { - return var$1.$name4; -}; -function oncia_UnaliasedReturnItem$_init_$lambda$_31_1() { - jl_Object.call(this); - this.$_038 = null; -} -let oncia_UnaliasedReturnItem$_init_$lambda$_31_1_apply = var$0 => { - return jl_String_trim(var$0.$_038.$inputText1); -}; -function oncie_QuantifiedPath() { - let a = this; oncie_PatternElement.call(a); - a.$part2 = null; - a.$quantifier2 = null; - a.$optionalWhereExpression = null; - a.$variableGroupings = null; - a.$position34 = null; -} -let oncie_QuantifiedPath_part = $this => { - return $this.$part2; +oncief_Category$_AGGREGATING = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_AGGREGATING0; }, -oncie_QuantifiedPath_quantifier = $this => { - return $this.$quantifier2; +oncief_Category$_SCALAR = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_SCALAR0; }, -oncie_QuantifiedPath_position = $this => { - return $this.$position34; +oncief_Category$_LOGARITHMIC = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_LOGARITHMIC0; }, -oncie_QuantifiedPath_allVariables = $this => { - return $this.$variableGroupings.$map(new oncie_QuantifiedPath$allVariables$lambda$_9_0); +oncief_Category$_LIST = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_LIST0; }, -oncie_QuantifiedPath_isBounded = $this => { - let var$1; - var$1 = $this.$quantifier2; - if (var$1 instanceof oncie_FixedQuantifier) - return 1; - if (var$1 instanceof oncie_IntervalQuantifier) - return s_Option_isDefined(var$1.$upper1); - if (var$1 instanceof oncie_PlusQuantifier) - return 0; - if (var$1 instanceof oncie_StarQuantifier) - return 0; - $rt_throw(s_MatchError__init_(var$1)); +oncief_Category$_STRING = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_STRING0; }, -oncie_QuantifiedPath_copy = ($this, $part, $quantifier, $optionalWhereExpression, $variableGroupings, $position) => { - return oncie_QuantifiedPath__init_($part, $quantifier, $optionalWhereExpression, $variableGroupings, $position); +oncief_Category$_SPATIAL = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_SPATIAL0; }, -oncie_QuantifiedPath_productPrefix = $this => { - return $rt_s(5597); +oncief_Category$_GRAPH0 = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_GRAPH; }, -oncie_QuantifiedPath_productArity = $this => { - return 4; +oncief_Category$_VECTOR = $this => { + oncief_Category$_$callClinit(); + return oncief_Category$_VECTOR0; }, -oncie_QuantifiedPath_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$part2; - case 1: - return $this.$quantifier2; - case 2: - return $this.$optionalWhereExpression; - case 3: - return $this.$variableGroupings; - default: - } - return sr_Statics_ioobe($x$1); +s_Function3 = $rt_classWithoutFields(0), +sr_AbstractFunction3 = $rt_classWithoutFields(), +oncie_ExpressionTypeSignature$ = $rt_classWithoutFields(sr_AbstractFunction3), +oncie_ExpressionTypeSignature$_MODULE$ = null, +oncie_ExpressionTypeSignature$_$callClinit = () => { + oncie_ExpressionTypeSignature$_$callClinit = $rt_eraseClinit(oncie_ExpressionTypeSignature$); + oncie_ExpressionTypeSignature$__clinit_(); }, -oncie_QuantifiedPath_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_ExpressionTypeSignature$__clinit_ = () => { + let var$1; + var$1 = new oncie_ExpressionTypeSignature$; + oncie_ExpressionTypeSignature$_$callClinit(); + oncie_ExpressionTypeSignature$_MODULE$ = var$1; }, -oncie_QuantifiedPath_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncias_Scope$allSymbolDefinitions$lambda$_15_0 = $rt_classWithoutFields(), +oncias_Scope$allSymbolDefinitions$lambda$_15_0_apply = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + return sc_IterableOnceOps_foldLeft$(oncias_Scope_symbolDefinitions(var$3.$_20), var$1, new oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0); }, -oncie_QuantifiedPath_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticState$ScopeLocation$$parent$extension$lambda$_4_0 = $rt_classWithoutFields(), +oncias_SemanticState$ScopeLocation$$parent$extension$lambda$_4_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$2 = new oncias_SemanticState$ScopeLocation; + oncias_SemanticState$_$callClinit(); + oncias_SemanticState$ScopeLocation__init_0(var$2, var$1); + return var$2; }, -oncie_QuantifiedPath_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_QuantifiedPath) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$part2; - var$3 = $x$1.$part2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$quantifier2; - var$3 = $x$1.$quantifier2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$optionalWhereExpression; - var$3 = $x$1.$optionalWhereExpression; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$3 = $this.$variableGroupings; - $x$1 = $x$1.$variableGroupings; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break f; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_QuantifiedPath)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncias_SemanticState$ScopeLocation$$availableSymbolDefinitions$extension$lambda$_12_0 = $rt_classWithoutFields(), +oncias_SemanticState$ScopeLocation$$availableSymbolDefinitions$extension$lambda$_12_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$2 = oncias_SemanticState$ScopeLocation$_MODULE$; + oncias_SemanticState$_$callClinit(); + return oncias_SemanticState$ScopeLocation$_availableSymbolDefinitions$extension(var$2, var$1); +}; +function s_PartialFunction$Combined() { + let a = this; jl_Object.call(a); + a.$pf1 = null; + a.$k0 = null; +} +let s_PartialFunction$Combined_lift = $this => { + return s_PartialFunction_lift$($this); }, -oncie_QuantifiedPath_mapExpressions = ($this, $f) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $this.$part2.$mapExpressions($f); - var$3 = $this.$quantifier2.$mapExpressions($f); - var$4 = s_Option_map($this.$optionalWhereExpression, $f); - var$5 = $this.$variableGroupings; - var$6 = new oncie_QuantifiedPath$mapExpressions$lambda$_14_0; - var$6.$_0468 = $f; - return oncie_QuantifiedPath_copy($this, var$2, var$3, var$4, var$5.$map(var$6), $this.$position34); +s_PartialFunction$Combined_applyOrElse = ($this, $x, $default) => { + let var$3, $pfv; + var$3 = $this.$pf1; + s_PartialFunction$_$callClinit(); + $pfv = var$3.$applyOrElse($x, s_PartialFunction$_scala$PartialFunction$$checkFallback(s_PartialFunction$_MODULE$)); + if (s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, $pfv)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x); + $x = $pfv; + $default = new onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0; + $default.$_0228 = $x; + return $default; }, -oncie_QuantifiedPath__init_0 = ($this, $part, $quantifier, $optionalWhereExpression, $variableGroupings, $position) => { - $this.$part2 = $part; - $this.$quantifier2 = $quantifier; - $this.$optionalWhereExpression = $optionalWhereExpression; - $this.$variableGroupings = $variableGroupings; - $this.$position34 = $position; - oncie_PatternElement__init_($this); +sc_SeqOps$distinct$lambda$_30_0 = $rt_classWithoutFields(), +sc_SeqOps$distinct$lambda$_30_0_apply = (var$0, var$1) => { + s_Predef$_$callClinit(); + return var$1; }, -oncie_QuantifiedPath__init_ = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oncie_QuantifiedPath(); - oncie_QuantifiedPath__init_0(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; +oncia_GraphReference = $rt_classWithoutFields(0), +oncia_GraphReference_semanticCheck$ = $$this => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }; -function oncie_PathConcatenation() { - let a = this; oncie_PatternElement.call(a); - a.$factors0 = null; - a.$position121 = null; +function oncia_GraphDirectReference() { + let a = this; oncie_Expression.call(a); + a.$catalogName = null; + a.$position246 = null; } -let oncie_PathConcatenation_factors = $this => { - return $this.$factors0; +let oncia_GraphDirectReference_semanticCheck = $this => { + return oncia_GraphReference_semanticCheck$($this); }, -oncie_PathConcatenation_position = $this => { - return $this.$position121; +oncia_GraphDirectReference_position = $this => { + return $this.$position246; }, -oncie_PathConcatenation_allVariables = $this => { - return sc_AbstractIterable_toSet(sc_AbstractIterable_flatMap($this.$factors0.$view1(), new oncie_PathConcatenation$allVariables$lambda$_4_0)); +oncia_GraphDirectReference_print = $this => { + return oncia_CatalogName_qualifiedNameString($this.$catalogName); }, -oncie_PathConcatenation_isBounded = $this => { - return $this.$factors0.$forall(new oncie_PathConcatenation$isBounded$lambda$_7_0); +oncia_GraphDirectReference_dependencies = $this => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; }, -oncie_PathConcatenation_copy = ($this, $factors, $position) => { - return oncie_PathConcatenation__init_0($factors, $position); +oncia_GraphDirectReference_isConstantForQuery = $this => { + return 1; }, -oncie_PathConcatenation_productPrefix = $this => { - return $rt_s(5598); +oncia_GraphDirectReference_equals = ($this, $other) => { + let $otherName; + if (!($other instanceof oncia_GraphDirectReference)) + return 0; + $otherName = $other.$catalogName; + return oncia_CatalogName_equals($this.$catalogName, $otherName); }, -oncie_PathConcatenation_productArity = $this => { +oncia_GraphDirectReference_hashCode = $this => { + return oncia_CatalogName_hashCode($this.$catalogName); +}, +oncia_GraphDirectReference_semanticallyEqual = ($this, $other) => { + let $otherName; + if (!($other instanceof oncia_GraphDirectReference)) + return 0; + $otherName = $other.$catalogName; + return oncia_CatalogName_equals($this.$catalogName, $otherName); +}, +oncia_GraphDirectReference_productPrefix = $this => { + return $rt_s(4169); +}, +oncia_GraphDirectReference_productArity = $this => { return 1; }, -oncie_PathConcatenation_productElement = ($this, $x$1) => { +oncia_GraphDirectReference_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$factors0; + return $this.$catalogName; default: } return sr_Statics_ioobe($x$1); }, -oncie_PathConcatenation_productIterator = $this => { +oncia_GraphDirectReference_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_PathConcatenation_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_PathConcatenation_toString = $this => { +oncia_GraphDirectReference_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_PathConcatenation_equals = ($this, $x$1) => { +oncia_GraphDirectReference__init_ = ($this, $catalogName, $position) => { + $this.$catalogName = $catalogName; + $this.$position246 = $position; + oncie_Expression__init_($this); +}, +oncia_GraphDirectReference__init_0 = (var_0, var_1) => { + let var_2 = new oncia_GraphDirectReference(); + oncia_GraphDirectReference__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_CatalogName$ = $rt_classWithoutFields(), +oncia_CatalogName$_MODULE$ = null, +oncia_CatalogName$_separatorChar = 0, +oncia_CatalogName$_separatorString0 = null, +oncia_CatalogName$_quoteChar = null, +oncia_CatalogName$_$callClinit = () => { + oncia_CatalogName$_$callClinit = $rt_eraseClinit(oncia_CatalogName$); + oncia_CatalogName$__clinit_(); +}, +oncia_CatalogName$__clinit_ = () => { + let var$1; + var$1 = new oncia_CatalogName$; + oncia_CatalogName$_$callClinit(); + oncia_CatalogName$_MODULE$ = var$1; + oncia_CatalogName$_separatorChar = 46; + oncia_CatalogName$_separatorString0 = jl_Character_toString(oncia_CatalogName$_separatorChar0(var$1)); + oncia_CatalogName$_quoteChar = $rt_s(1135); +}, +oncia_CatalogName$_apply = ($this, $parts) => { let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_PathConcatenation) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$factors0; - $x$1 = $x$1.$factors0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; + var$2 = $parts.$head(); + $parts = ($parts.$tail()).$toList(); + var$3 = new oncia_CatalogName; + var$3.$parts1 = sci_List_$colon$colon($parts, var$2); + return var$3; +}, +oncia_CatalogName$_separatorChar0 = $this => { + oncia_CatalogName$_$callClinit(); + return oncia_CatalogName$_separatorChar; +}, +oncia_CatalogName$_separatorString = $this => { + oncia_CatalogName$_$callClinit(); + return oncia_CatalogName$_separatorString0; +}, +oncia_CatalogName$_quoteChar0 = $this => { + oncia_CatalogName$_$callClinit(); + return oncia_CatalogName$_quoteChar; +}, +oncia_CatalogName$_quote = ($this, $str) => { + let var$2; + var$2 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + return sc_StringOps$_$plus$plus$extension(var$2, sc_StringOps$_$plus$plus$extension(var$2, oncia_CatalogName$_quoteChar0($this), jl_String_replace($str, $rt_s(1135), $rt_s(1136))), oncia_CatalogName$_quoteChar0($this)); +}; +function oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1() { + sr_AbstractPartialFunction.call(this); + this.$baseState$1 = null; +} +let oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1_applyOrElse = ($this, $x1, $default) => { + let var$3, $p, var$5, var$6, var$7, var$8, var$9, var$10; + if ($x1 instanceof oncie_Expression) { + var$3 = $x1; + oncief_Exists$_$callClinit(); + onciu_InputPosition$_$callClinit(); + $p = onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$); + var$5 = jl_String_split($rt_s(4170), $rt_s(4171)); + if (var$5.data.length == 1) + var$6 = oncie_FunctionName__init_(oncie_Namespace__init_(oncie_Namespace$_apply$default$1(oncie_Namespace$_MODULE$), $p), $rt_s(4170), $p); + else { + var$6 = new oncie_FunctionName; + var$7 = new oncie_Namespace; + s_Predef$_$callClinit(); + oncie_Namespace__init_0(var$7, sc_IterableOnceOps_toList$(s_LowPriorityImplicits_wrapRefArray(s_Predef$_MODULE$, sc_ArrayOps$_dropRight$extension(sc_ArrayOps$_MODULE$, var$5, 1))), $p); + if (!(!jlr_Array_getLength(var$5) ? 0 : 1)) { + $default = new ju_NoSuchElementException; + jl_Throwable__init_($default, $rt_s(4172)); + $rt_throw($default); + } + oncie_FunctionName__init_0(var$6, var$7, sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, var$5, jlr_Array_getLength(var$5) - 1 | 0), $p); + } + a: { + var$8 = var$6.$namespace3; + var$9 = var$6.$name6; + if (var$3 instanceof oncie_FunctionInvocation) { + $p = var$3; + var$10 = $p.$functionName2; + var$7 = $p.$args0; + if (var$10 !== null) + b: { + var$6 = var$10.$namespace3; + if (jl_String_equalsIgnoreCase(var$9, var$10.$name6)) { + c: { + if (var$6 !== null) { + if (!oncie_Namespace_equals(var$6, var$8)) + break b; + else + break c; + } + if (var$8 !== null) + break b; + } + var$6 = s_Some__init_(var$7.$head()); + break a; + } + } + } + var$6 = s_None$_MODULE$; + } + if (!s_Option_isEmpty(var$6)) + return new oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0; + } + if ($x1 instanceof oncie_FunctionInvocation) { + var$6 = $x1; + $p = var$6.$functionName2; + var$6 = var$6.$args0; + if ($p !== null && jl_String_equals($rt_s(4173), $p.$name6) && var$6 !== null) { + s_package$_$callClinit(); + s_package$_IndexedSeq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$6); + if (!var$6.$lengthCompare(1)) { + $p = var$6.$apply1(0); + if ($p instanceof oncie_PatternExpression) { + $p = $p; + if (!oncifp_ExpectedBooleanTypeCheck_isExpectedTypeBoolean$(oncifp_PatternExpressionInNonExistenceCheck$_MODULE$, oncifp_InitialState_semanticTable($this.$baseState$1), $p)) { + $x1 = new oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1; + $x1.$_076 = $p; + return $x1; } - if ($x$1 !== null) - break b; } - if (!($this instanceof oncie_PathConcatenation)) - break b; } - var$3 = 1; - break a; } - var$3 = 0; } - return var$3; -}, -oncie_PathConcatenation_mapExpressions = ($this, $f) => { + if ($x1 instanceof oncie_PatternExpression) { + $p = $x1; + if (!oncifp_ExpectedBooleanTypeCheck_isExpectedTypeBoolean$(oncifp_PatternExpressionInNonExistenceCheck$_MODULE$, oncifp_InitialState_semanticTable($this.$baseState$1), $p)) { + $x1 = new oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2; + $x1.$_0717 = $p; + return $x1; + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}; +function oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$semanticTable$10 = null; + a.$errorMessageProvider$1 = null; + a.$baseContext$1 = null; +} +let oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1_applyOrElse = ($this, $x1, $default) => { + let var$3; + if ($rt_isInstance($x1, oncia_CreateOrInsert)) { + $x1 = $x1; + $default = new oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0; + $default.$_0909 = $this; + $default.$_1312 = $x1; + return $default; + } + if ($x1 instanceof oncia_Merge) { + var$3 = $x1; + if (onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_errorIn$(oncia_Merge$SelfReference$_MODULE$, $this.$baseContext$1.$cypherVersion)) { + $x1 = new oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1; + $x1.$_0408 = $this; + $x1.$_1145 = var$3; + return $x1; + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}; +function oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$semanticTable$4 = null; + a.$ctx$1 = null; +} +let oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1_applyOrElse = ($this, $x1, $default) => { + let var$3; + if ($x1 instanceof oncia_Insert) { + $x1 = $x1; + $default = new oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0; + $default.$_0471 = $this; + $default.$_1162 = $x1; + return $default; + } + if ($x1 instanceof oncia_Create) { + var$3 = $x1; + if (onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_errorIn$(oncia_Create$SelfReferenceAcrossPatterns$_MODULE$, $this.$ctx$1.$cypherVersion)) { + $x1 = new oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1; + $x1.$_01148 = $this; + $x1.$_1392 = var$3; + return $x1; + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}; +function oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1() { + sr_AbstractPartialFunction.call(this); + this.$baseState$2 = null; +} +let oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4, var$5, var$6; + if ($x1 instanceof oncie_Expression) { + var$3 = $x1; + oncifp_ListCoercedToBooleanCheck$_$callClinit(); + var$4 = oncifp_InitialState_semanticTable($this.$baseState$2); + var$5 = var$4.$types3; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + var$6 = var$5.$get2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$3)); + var$5 = new oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0; + var$5.$_0323 = var$4; + var$5.$_1115 = var$3; + if (s_Option_exists(var$6, var$5) && !(var$3 instanceof oncie_PatternExpression)) { + $x1 = new oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0; + $x1.$_0833 = var$3; + return $x1; + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}; +function jusi_ArrayStreamImpl() { + let a = this; jusi_SimpleStreamImpl.call(a); + a.$array20 = null; + a.$index9 = 0; + a.$end3 = 0; + a.$size13 = 0; +} +let jusi_ArrayStreamImpl_next = ($this, $consumer) => { let var$2, var$3; - var$2 = $this.$factors0; - var$3 = new oncie_PathConcatenation$mapExpressions$lambda$_9_0; - var$3.$_0463 = $f; - return oncie_PathConcatenation_copy($this, var$2.$map(var$3), $this.$position121); + a: { + while (true) { + var$2 = $this.$index9; + if (var$2 >= $this.$end3) + break a; + var$3 = $this.$array20.data; + $this.$index9 = var$2 + 1 | 0; + if ($consumer.$test0(var$3[var$2])) + continue; + else + break; + } + } + return $this.$index9 >= $this.$end3 ? 0 : 1; }, -oncie_PathConcatenation__init_ = ($this, $factors, $position) => { - $this.$factors0 = $factors; - $this.$position121 = $position; - oncie_PatternElement__init_($this); +jusi_ArrayStreamImpl_estimateSize = $this => { + return $this.$size13; }, -oncie_PathConcatenation__init_0 = (var_0, var_1) => { - let var_2 = new oncie_PathConcatenation(); - oncie_PathConcatenation__init_(var_2, var_0, var_1); - return var_2; +sc_Map$ = $rt_classWithoutFields(sc_MapFactory$Delegate), +sc_Map$_MODULE$ = null, +sc_Map$_DefaultSentinel = null, +sc_Map$_scala$collection$Map$$DefaultSentinelFn = null, +sc_Map$_$callClinit = () => { + sc_Map$_$callClinit = $rt_eraseClinit(sc_Map$); + sc_Map$__clinit_(); }, -onciafn_Neo4jASTFactory$pretty$lambda$_254_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$pretty$lambda$_254_0_apply = (var$0, var$1) => { - return var$1.$toString(); +sc_Map$__clinit_ = () => { + let var$1; + var$1 = new sc_Map$; + sc_Map$_$callClinit(); + sc_MapFactory$Delegate__init_(var$1, sci_Map$_MODULE$); + sc_Map$_MODULE$ = var$1; + sc_Map$_DefaultSentinel = new jl_Object; + sc_Map$_scala$collection$Map$$DefaultSentinelFn = new sc_Map$$_clinit_$lambda$_0_0; }; -function onciafn_Neo4jASTFactory$convertSubqueryExpressionToUnifiedExpression$lambda$_139_0() { +function cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_15_0() { jl_Object.call(this); - this.$_0694 = null; + this.$_0634 = null; } -let onciafn_Neo4jASTFactory$convertSubqueryExpressionToUnifiedExpression$lambda$_139_0_apply = (var$0, var$1) => { - let var$2, var$3; +let cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_15_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0694; - if (var$1 instanceof oncie_PatternPartWithSelector) - var$1 = var$1; - else { - if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1; - var$1 = oncie_PatternPartWithSelector__init_(onciafn_Neo4jASTFactory_allPathSelector(var$2, var$3.$position()), var$3); - } - return var$1; -}, -oncie_FilteringExpression = $rt_classWithoutFields(0); -function oncie_ListComprehension() { - let a = this; oncie_Expression.call(a); - a.$scope6 = null; - a.$expression25 = null; - a.$position263 = null; - a.$name62 = null; + var$2 = var$0.$_0634.$errorsSet; + oncias_SemanticError$_$callClinit(); + return jl_Boolean_valueOf(scm_HashSet_add(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$1.$msg(), var$1.$position()))); +}; +function oncia_DefaultOrAllShowColumns() { + let a = this; jl_Object.call(a); + a.$useAllColumns = 0; + a.$columns = null; } -let oncie_ListComprehension_scope = $this => { - return $this.$scope6; -}, -oncie_ListComprehension_expression = $this => { - return $this.$expression25; -}, -oncie_ListComprehension_position = $this => { - return $this.$position263; -}, -oncie_ListComprehension_variable = $this => { - return $this.$scope6.$variable27; -}, -oncie_ListComprehension_innerPredicate = $this => { - return $this.$scope6.$innerPredicate0; -}, -oncie_ListComprehension_extractExpression = $this => { - return $this.$scope6.$extractExpression0; -}, -oncie_ListComprehension_isConstantForQuery = $this => { - return $this.$expression25.$isConstantForQuery() && s_Option_forall(oncie_ListComprehension_innerPredicate($this), new oncie_ListComprehension$isConstantForQuery$lambda$_11_0) && s_Option_forall($this.$scope6.$extractExpression0, new oncie_ListComprehension$isConstantForQuery$lambda$_11_1) ? 1 : 0; -}, -oncie_ListComprehension_productPrefix = $this => { - return $rt_s(5599); +let oncia_DefaultOrAllShowColumns_productPrefix = $this => { + return $rt_s(4174); }, -oncie_ListComprehension_productArity = $this => { +oncia_DefaultOrAllShowColumns_productArity = $this => { return 2; }, -oncie_ListComprehension_productElement = ($this, $x$1) => { +oncia_DefaultOrAllShowColumns_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$scope6; + return jl_Boolean_valueOf($this.$useAllColumns); case 1: - return $this.$expression25; + return $this.$columns; default: } return sr_Statics_ioobe($x$1); }, -oncie_ListComprehension_productIterator = $this => { +oncia_DefaultOrAllShowColumns_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ListComprehension_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_DefaultOrAllShowColumns_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4174))), !$this.$useAllColumns ? 1237 : 1231), sr_Statics_anyHash($this.$columns)), 2); }, -oncie_ListComprehension_toString = $this => { +oncia_DefaultOrAllShowColumns_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ListComprehension_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncia_DefaultOrAllShowColumns_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ListComprehension) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_DefaultOrAllShowColumns) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$useAllColumns != $x$1.$useAllColumns) break b; c: { - $x$1 = $x$1; - var$2 = $this.$scope6; - var$3 = $x$1.$scope6; + var$2 = $this.$columns; + $x$1 = $x$1.$columns; if (var$2 !== null) { - if (!oncie_ExtractScope_equals(var$2, var$3)) + if (!sci_List_equals(var$2, $x$1)) break b; else break c; } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$expression25; - $x$1 = $x$1.$expression25; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_ListComprehension)) + if (!($this instanceof oncia_DefaultOrAllShowColumns)) break b; } - var$4 = 1; + var$3 = 1; break a; } - var$4 = 0; + var$3 = 0; } - return var$4; -}, -oncie_ListComprehension__init_0 = ($this, $scope, $expression, $position) => { - $this.$scope6 = $scope; - $this.$expression25 = $expression; - $this.$position263 = $position; - oncie_Expression__init_($this); - $this.$name62 = $rt_s(5600); + return var$3; }, -oncie_ListComprehension__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_ListComprehension(); - oncie_ListComprehension__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_ExtractScope() { - let a = this; oncie_Expression.call(a); - a.$variable27 = null; - a.$innerPredicate0 = null; - a.$extractExpression0 = null; - a.$position199 = null; - a.$introducedVariables1 = null; -} -let oncie_ExtractScope_dependencies = $this => { - return $this.$scopeDependencies(); +oncia_DefaultOrAllShowColumns__init_0 = ($this, $useAllColumns, $columns) => { + $this.$useAllColumns = $useAllColumns; + $this.$columns = $columns; }, -oncie_ExtractScope_isConstantForQuery = $this => { - return 0; +oncia_DefaultOrAllShowColumns__init_ = (var_0, var_1) => { + let var_2 = new oncia_DefaultOrAllShowColumns(); + oncia_DefaultOrAllShowColumns__init_0(var_2, var_0, var_1); + return var_2; }, -oncie_ExtractScope_variable = $this => { - return $this.$variable27; +oavr_ANTLRErrorListener = $rt_classWithoutFields(0), +oavr_BaseErrorListener = $rt_classWithoutFields(), +oavr_BaseErrorListener_reportAmbiguity = ($this, $recognizer, $dfa, $startIndex, $stopIndex, $exact, $ambigAlts, $configs) => { + return; }, -oncie_ExtractScope_innerPredicate = $this => { - return $this.$innerPredicate0; +oavr_BaseErrorListener_reportAttemptingFullContext = ($this, $recognizer, $dfa, $startIndex, $stopIndex, $conflictingAlts, $configs) => { + return; }, -oncie_ExtractScope_extractExpression = $this => { - return $this.$extractExpression0; +oavr_BaseErrorListener_reportContextSensitivity = ($this, $recognizer, $dfa, $startIndex, $stopIndex, $prediction, $configs) => { + return; +}; +function oncip_SyntaxErrorListener() { + let a = this; oavr_BaseErrorListener.call(a); + a.$exceptionFactory8 = null; + a.$_syntaxErrors = null; +} +let oncip_SyntaxErrorListener_syntaxError = ($this, $recognizer, $offendingSymbol, $line, $charPositionInLine, $msg, $e) => { + let $position; + if ($rt_isInstance($offendingSymbol, oncipl_CypherToken)) + $position = $offendingSymbol.$position(); + else { + onciu_InputPosition$_$callClinit(); + $position = onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, ($recognizer.$getInputStream()).$index0(), $line, $charPositionInLine); + } + $this.$_syntaxErrors = $this.$_syntaxErrors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory8, $msg, $position)); +}; +function oavr_Recognizer() { + let a = this; jl_Object.call(a); + a.$_listeners = null; + a.$_interp = null; + a.$_stateNumber = 0; +} +let oavr_Recognizer_tokenTypeMapCache = null, +oavr_Recognizer_ruleIndexMapCache = null, +oavr_Recognizer_$callClinit = () => { + oavr_Recognizer_$callClinit = $rt_eraseClinit(oavr_Recognizer); + oavr_Recognizer__clinit_(); }, -oncie_ExtractScope_position = $this => { - return $this.$position199; +oavr_Recognizer__init_ = $this => { + let var$1; + oavr_Recognizer_$callClinit(); + var$1 = new oavr_Recognizer$1; + var$1.$this$025 = $this; + var$1.$array10 = $rt_createArray(jl_Object, 0); + juc_CopyOnWriteArrayList_add(var$1, oavr_ConsoleErrorListener_INSTANCE); + $this.$_listeners = var$1; + $this.$_stateNumber = (-1); }, -oncie_ExtractScope_introducedVariables = $this => { - return $this.$introducedVariables1; +oavr_Recognizer_getInterpreter = $this => { + return $this.$_interp; }, -oncie_ExtractScope_scopeDependencies = $this => { - return ((s_Option_fold($this.$innerPredicate0, new oncie_ExtractScope$scopeDependencies$lambda$_9_0, new oncie_ExtractScope$scopeDependencies$lambda$_9_1)).$concat1(s_Option_fold($this.$extractExpression0, new oncie_ExtractScope$scopeDependencies$lambda$_9_2, new oncie_ExtractScope$scopeDependencies$lambda$_9_3))).$removedAll($this.$introducedVariables1); +oavr_Recognizer_addErrorListener = ($this, $listener) => { + let var$2; + if ($listener !== null) { + juc_CopyOnWriteArrayList_add($this.$_listeners, $listener); + return; + } + var$2 = new jl_NullPointerException; + jl_Throwable__init_(var$2, $rt_s(4175)); + $rt_throw(var$2); }, -oncie_ExtractScope_productPrefix = $this => { - return $rt_s(5601); +oavr_Recognizer_removeErrorListeners = $this => { + let var$1; + var$1 = $this.$_listeners; + if (!(var$1.$array10.data.length ? 0 : 1)) + var$1.$array10 = $rt_createArray(jl_Object, 0); }, -oncie_ExtractScope_productArity = $this => { - return 3; +oavr_Recognizer_getErrorListeners = $this => { + return $this.$_listeners; }, -oncie_ExtractScope_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable27; - case 1: - return $this.$innerPredicate0; - case 2: - return $this.$extractExpression0; - default: +oavr_Recognizer_getErrorListenerDispatch = $this => { + let var$1, var$2; + var$1 = new oavr_ProxyErrorListener; + var$2 = $this.$_listeners; + if (var$2 !== null) { + var$1.$delegates = var$2; + return var$1; } - return sr_Statics_ioobe($x$1); -}, -oncie_ExtractScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); + var$2 = new jl_NullPointerException; + jl_Throwable__init_(var$2, $rt_s(4176)); + $rt_throw(var$2); }, -oncie_ExtractScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oavr_Recognizer_sempred = ($this, $_localctx, $ruleIndex, $actionIndex) => { + return 1; }, -oncie_ExtractScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oavr_Recognizer_action = ($this, $_localctx, $ruleIndex, $actionIndex) => { + return; }, -oncie_ExtractScope_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ExtractScope) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable27; - var$3 = $x$1.$variable27; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$innerPredicate0; - var$3 = $x$1.$innerPredicate0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$extractExpression0; - $x$1 = $x$1.$extractExpression0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncie_ExtractScope)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oavr_Recognizer_getState = $this => { + return $this.$_stateNumber; }, -oncie_ExtractScope__init_0 = ($this, $variable, $innerPredicate, $extractExpression, $position) => { - let var$5; - $this.$variable27 = $variable; - $this.$innerPredicate0 = $innerPredicate; - $this.$extractExpression0 = $extractExpression; - $this.$position199 = $position; - oncie_Expression__init_($this); - s_Predef$_$callClinit(); - $extractExpression = s_Predef$_Set(s_Predef$_MODULE$); - $innerPredicate = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncie_LogicalVariable, 1); - var$5.data[0] = $variable; - $this.$introducedVariables1 = $extractExpression.$from0(sr_ScalaRunTime$_wrapRefArray($innerPredicate, var$5)); +oavr_Recognizer_setState = ($this, $atnState) => { + $this.$_stateNumber = $atnState; }, -oncie_ExtractScope__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncie_ExtractScope(); - oncie_ExtractScope__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; +oavr_Recognizer__clinit_ = () => { + oavr_Recognizer_tokenTypeMapCache = ju_WeakHashMap__init_(); + oavr_Recognizer_ruleIndexMapCache = ju_WeakHashMap__init_(); }; -function oncie_ReduceExpression() { - let a = this; oncie_Expression.call(a); - a.$scope7 = null; - a.$init3 = null; - a.$list1 = null; - a.$position236 = null; +function oavra_ATNSimulator() { + let a = this; jl_Object.call(a); + a.$atn = null; + a.$sharedContextCache = null; } -let oncie_ReduceExpression_scope = $this => { - return $this.$scope7; -}, -oncie_ReduceExpression_init = $this => { - return $this.$init3; -}, -oncie_ReduceExpression_list = $this => { - return $this.$list1; +let oavra_ATNSimulator_ERROR = null, +oavra_ATNSimulator_$callClinit = () => { + oavra_ATNSimulator_$callClinit = $rt_eraseClinit(oavra_ATNSimulator); + oavra_ATNSimulator__clinit_(); }, -oncie_ReduceExpression_position = $this => { - return $this.$position236; +oavra_ATNSimulator__init_ = ($this, $atn, $sharedContextCache) => { + oavra_ATNSimulator_$callClinit(); + $this.$atn = $atn; + $this.$sharedContextCache = $sharedContextCache; }, -oncie_ReduceExpression_expression = $this => { - return $this.$scope7.$expression23; +oavra_ATNSimulator__clinit_ = () => { + let var$1; + var$1 = oavrd_DFAState__init_(oavra_ATNConfigSet__init_0()); + oavra_ATNSimulator_ERROR = var$1; + var$1.$stateNumber0 = 2147483647; +}; +function oavra_ParserATNSimulator() { + let a = this; oavra_ATNSimulator.call(a); + a.$parser = null; + a.$decisionToDFA0 = null; + a.$mode1 = null; + a.$mergeCache = null; + a.$_input1 = null; + a.$_startIndex = 0; + a.$_outerContext = null; + a.$_dfa = null; +} +let oavra_ParserATNSimulator_debug = 0, +oavra_ParserATNSimulator_trace_atn_sim = 0, +oavra_ParserATNSimulator_dfa_debug = 0, +oavra_ParserATNSimulator_retry_debug = 0, +oavra_ParserATNSimulator_TURN_OFF_LR_LOOP_ENTRY_BRANCH_OPT = 0, +oavra_ParserATNSimulator_$assertionsDisabled = 0, +oavra_ParserATNSimulator_$callClinit = () => { + oavra_ParserATNSimulator_$callClinit = $rt_eraseClinit(oavra_ParserATNSimulator); + oavra_ParserATNSimulator__clinit_(); }, -oncie_ReduceExpression_isConstantForQuery = $this => { - return $this.$scope7.$expression23.$isConstantForQuery() && $this.$init3.$isConstantForQuery() && $this.$list1.$isConstantForQuery() ? 1 : 0; +oavra_ParserATNSimulator__init_0 = ($this, $parser, $atn, $decisionToDFA, $sharedContextCache) => { + oavra_ParserATNSimulator_$callClinit(); + oavra_ATNSimulator__init_($this, $atn, $sharedContextCache); + $this.$mode1 = oavra_PredictionMode_LL; + $this.$parser = $parser; + $this.$decisionToDFA0 = $decisionToDFA; }, -oncie_ReduceExpression_productPrefix = $this => { - return $rt_s(5602); +oavra_ParserATNSimulator__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oavra_ParserATNSimulator(); + oavra_ParserATNSimulator__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; }, -oncie_ReduceExpression_productArity = $this => { - return 3; +oavra_ParserATNSimulator_reset = $this => { + return; }, -oncie_ReduceExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$scope7; - case 1: - return $this.$init3; - case 2: - return $this.$list1; - default: +oavra_ParserATNSimulator_adaptivePredict = ($this, $input, $decision, $outerContext) => { + let $s0_closure, $dfa, var$6, $s0, $alt, $$je; + oavra_ParserATNSimulator_$callClinit(); + if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_trace_atn_sim)) { + $s0_closure = jl_System_out(); + $dfa = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($dfa); + jl_AbstractStringBuilder_append($dfa, $rt_s(4177)); + $dfa = jl_StringBuilder_append0($dfa, $decision); + jl_AbstractStringBuilder_append($dfa, $rt_s(4178)); + jl_AbstractStringBuilder_append($dfa, oavra_ParserATNSimulator_getLookaheadName($this, $input)); + jl_AbstractStringBuilder_append($dfa, $rt_s(4179)); + $dfa = jl_StringBuilder_append0($dfa, (oavr_CommonTokenStream_LT($input, 1)).$getLine()); + jl_AbstractStringBuilder_append($dfa, $rt_s(92)); + otcic_JsConsolePrintStream_println($s0_closure, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($dfa, (oavr_CommonTokenStream_LT($input, 1)).$getCharPositionInLine()))); } - return sr_Statics_ioobe($x$1); -}, -oncie_ReduceExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ReduceExpression_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ReduceExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ReduceExpression_equals = ($this, $x$1) => { - let var$2, var$3, var$4; + $this.$_input1 = $input; + var$6 = $input.$p; + $this.$_startIndex = var$6; + $this.$_outerContext = $outerContext; + $dfa = $this.$decisionToDFA0.data[$decision]; + $this.$_dfa = $dfa; a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ReduceExpression) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$scope7; - var$3 = $x$1.$scope7; - if (var$2 !== null) { - if (!oncie_ReduceScope_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; + try { + $s0 = !oavrd_DFA_isPrecedenceDfa($dfa) ? $dfa.$s0 : oavrd_DFA_getPrecedenceStartState($dfa, oavr_Parser_getPrecedence($this.$parser)); + if ($s0 === null) { + if ($outerContext === null) + $outerContext = oavr_ParserRuleContext_EMPTY; + $s0_closure = oavra_ParserATNSimulator_computeStartState($this, $dfa.$atnStartState, oavr_ParserRuleContext_EMPTY, 0); + if (!oavrd_DFA_isPrecedenceDfa($dfa)) { + $s0 = oavra_ParserATNSimulator_addDFAState($this, $dfa, oavrd_DFAState__init_($s0_closure)); + $dfa.$s0 = $s0; + } else { + $dfa.$s0.$configs = $s0_closure; + $s0 = oavra_ParserATNSimulator_addDFAState($this, $dfa, oavrd_DFAState__init_(oavra_ParserATNSimulator_applyPrecedenceFilter($this, $s0_closure))); + oavrd_DFA_setPrecedenceStartState($dfa, oavr_Parser_getPrecedence($this.$parser), $s0); } - d: { - var$2 = $this.$init3; - var$3 = $x$1.$init3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; + } + $alt = oavra_ParserATNSimulator_execATN($this, $dfa, $s0, $input, var$6, $outerContext); + if (oavra_ParserATNSimulator_debug) + otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(4180)), oavrd_DFA_toString($dfa, $this.$parser.$getVocabulary())))); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $outerContext = $$je; + + } + $this.$mergeCache = null; + $this.$_dfa = null; + oavr_BufferedTokenStream_seek($input, var$6); + $rt_throw($outerContext); + } + $this.$mergeCache = null; + $this.$_dfa = null; + oavr_BufferedTokenStream_seek($input, var$6); + return $alt; +}, +oavra_ParserATNSimulator_execATN = ($this, $dfa, $s0, $input, $startIndex, $outerContext) => { + let $conflictingAlts, $D, $t, $e, var$10, $stopIndex, $alts, $conflictIndex, $s0_closure, $alt; + oavra_ParserATNSimulator_$callClinit(); + if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_trace_atn_sim)) { + $conflictingAlts = jl_System_out(); + $D = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($D); + jl_AbstractStringBuilder_append($D, $rt_s(4181)); + $D = jl_StringBuilder_append0($D, $dfa.$decision); + jl_AbstractStringBuilder_append($D, $rt_s(4182)); + $D = jl_StringBuilder_append($D, $s0); + jl_AbstractStringBuilder_append($D, $rt_s(4183)); + jl_AbstractStringBuilder_append($D, oavra_ParserATNSimulator_getLookaheadName($this, $input)); + jl_AbstractStringBuilder_append($D, $rt_s(4179)); + $D = jl_StringBuilder_append0($D, (oavr_CommonTokenStream_LT($input, 1)).$getLine()); + jl_AbstractStringBuilder_append($D, $rt_s(92)); + otcic_JsConsolePrintStream_println($conflictingAlts, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($D, (oavr_CommonTokenStream_LT($input, 1)).$getCharPositionInLine()))); + } + $t = oavr_BufferedTokenStream_LA($input, 1); + while (true) { + $D = oavra_ParserATNSimulator_getExistingTargetState($this, $s0, $t); + if ($D === null) { + $e = oavra_ParserATNSimulator_computeReachSet($this, $s0.$configs, $t, 0); + if ($e === null) { + oavra_ATNSimulator_$callClinit(); + oavra_ParserATNSimulator_addDFAEdge($this, $dfa, $s0, $t, oavra_ATNSimulator_ERROR); + $D = oavra_ATNSimulator_ERROR; + } else { + var$10 = oavrd_DFAState__init_($e); + $stopIndex = oavra_ParserATNSimulator_getUniqueAlt($e); + if (oavra_ParserATNSimulator_debug) { + $D = oavra_PredictionMode_getConflictingAltSubsets($e); + $conflictingAlts = jl_System_out(); + $alts = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($alts); + jl_AbstractStringBuilder_append($alts, $rt_s(4184)); + $alts = jl_StringBuilder_append($alts, $D); + jl_AbstractStringBuilder_append($alts, $rt_s(4185)); + $alts = jl_StringBuilder_append($alts, $e); + jl_AbstractStringBuilder_append($alts, $rt_s(4186)); + $alts = jl_StringBuilder_append0($alts, $stopIndex); + jl_AbstractStringBuilder_append($alts, $rt_s(4187)); + $D = jl_StringBuilder_append3($alts, oavra_PredictionMode_allSubsetsConflict($D)); + jl_AbstractStringBuilder_append($D, $rt_s(4188)); + otcic_JsConsolePrintStream_println($conflictingAlts, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($D, oavra_ParserATNSimulator_getConflictingAlts($this, $e)))); } - e: { - var$3 = $this.$list1; - $x$1 = $x$1.$list1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; + if ($stopIndex) { + var$10.$isAcceptState = 1; + var$10.$configs.$uniqueAlt = $stopIndex; + var$10.$prediction = $stopIndex; + } else { + $D = $this.$mode1; + if (oavra_PredictionMode_allConfigsInRuleStopStates($e)) + $conflictIndex = 1; + else { + if ($D !== oavra_PredictionMode_SLL) + $conflictingAlts = $e; + else if (!$e.$hasSemanticContext) + $conflictingAlts = $e; + else { + $conflictingAlts = oavra_ATNConfigSet__init_0(); + $alts = oavra_ATNConfigSet_iterator($e); + while (ju_AbstractList$1_hasNext($alts)) { + oavra_ATNConfigSet_add0($conflictingAlts, oavra_ATNConfig__init_5(ju_AbstractList$1_next($alts), oavra_SemanticContext$Empty_Instance)); + } + } + $D = ju_AbstractList_iterator(oavra_PredictionMode_getConflictingAltSubsets($conflictingAlts)); + a: { + while (ju_AbstractList$1_hasNext($D)) { + if (ju_BitSet_cardinality(ju_AbstractList$1_next($D)) > 1) { + $conflictIndex = 1; + break a; + } + } + $conflictIndex = 0; + } + b: { + if ($conflictIndex) { + $D = ju_HashMap$2_iterator(ju_HashMap_values(oavra_PredictionMode_getStateToAltMap($conflictingAlts))); + c: { + while (ju_HashMap$AbstractMapIterator_hasNext($D)) { + if (ju_BitSet_cardinality(ju_HashMap$ValueIterator_next($D)) == 1) { + $conflictIndex = 1; + break c; + } + } + $conflictIndex = 0; + } + if (!$conflictIndex) { + $conflictIndex = 1; + break b; + } + } + $conflictIndex = 0; + } + } + if ($conflictIndex) { + var$10.$configs.$conflictingAlts = oavra_ParserATNSimulator_getConflictingAlts($this, $e); + var$10.$requiresFullContext = 1; + var$10.$isAcceptState = 1; + var$10.$prediction = ju_BitSet_nextSetBit(var$10.$configs.$conflictingAlts, 0); } - if ($x$1 !== null) - break b; } - if (!($this instanceof oncie_ReduceExpression)) - break b; + if (var$10.$isAcceptState && var$10.$configs.$hasSemanticContext) { + oavra_ParserATNSimulator_predicateDFAState($this, var$10, oavra_ATN_getDecisionState($this.$atn, $dfa.$decision)); + if (var$10.$predicates !== null) + var$10.$prediction = 0; + } + $D = oavra_ParserATNSimulator_addDFAEdge($this, $dfa, $s0, $t, var$10); } - var$4 = 1; - break a; } - var$4 = 0; + oavra_ATNSimulator_$callClinit(); + if ($D === oavra_ATNSimulator_ERROR) + break; + if ($D.$requiresFullContext && $this.$mode1 !== oavra_PredictionMode_SLL) { + $conflictingAlts = $D.$configs.$conflictingAlts; + if ($D.$predicates !== null) { + if (oavra_ParserATNSimulator_debug) + otcic_JsConsolePrintStream_println(jl_System_out(), $rt_s(4189)); + $conflictIndex = $input.$p; + $stopIndex = $rt_compare($conflictIndex, $startIndex); + if ($stopIndex) + oavr_BufferedTokenStream_seek($input, $startIndex); + $conflictingAlts = oavra_ParserATNSimulator_evalSemanticContext0($this, $D.$predicates, $outerContext, 1); + if (ju_BitSet_cardinality($conflictingAlts) == 1) { + if (oavra_ParserATNSimulator_debug) + otcic_JsConsolePrintStream_println(jl_System_out(), $rt_s(4190)); + return ju_BitSet_nextSetBit($conflictingAlts, 0); + } + if ($stopIndex) + oavr_BufferedTokenStream_seek($input, $conflictIndex); + } + if (oavra_ParserATNSimulator_dfa_debug) + otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(4191)), $outerContext), $rt_s(3668)), $D))); + $s0_closure = oavra_ParserATNSimulator_computeStartState($this, $dfa.$atnStartState, $outerContext, 1); + oavra_ParserATNSimulator_reportAttemptingFullContext($this, $dfa, $conflictingAlts, $D.$configs, $startIndex, oavr_BufferedTokenStream_index($input)); + return oavra_ParserATNSimulator_execATNWithFullContext($this, $dfa, $D, $s0_closure, $input, $startIndex, $outerContext); + } + if ($D.$isAcceptState) { + if ($D.$predicates === null) + return $D.$prediction; + $stopIndex = oavr_BufferedTokenStream_index($input); + oavr_BufferedTokenStream_seek($input, $startIndex); + $alts = oavra_ParserATNSimulator_evalSemanticContext0($this, $D.$predicates, $outerContext, 1); + switch (ju_BitSet_cardinality($alts)) { + case 0: + break; + case 1: + return ju_BitSet_nextSetBit($alts, 0); + default: + oavra_ParserATNSimulator_reportAmbiguity($this, $dfa, $D, $startIndex, $stopIndex, 0, $alts, $D.$configs); + return ju_BitSet_nextSetBit($alts, 0); + } + $rt_throw(oavra_ParserATNSimulator_noViableAlt($this, $input, $outerContext, $D.$configs, $startIndex)); + } + if ($t != (-1)) { + oavr_BufferedTokenStream_consume($input); + $t = oavr_BufferedTokenStream_LA($input, 1); + } + $s0 = $D; } - return var$4; -}, -oncie_ReduceExpression__init_0 = ($this, $scope, $init, $list, $position) => { - $this.$scope7 = $scope; - $this.$init3 = $init; - $this.$list1 = $list; - $this.$position236 = $position; - oncie_Expression__init_($this); -}, -oncie_ReduceExpression__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncie_ReduceExpression(); - oncie_ReduceExpression__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncie_ReduceScope() { - let a = this; oncie_Expression.call(a); - a.$accumulator0 = null; - a.$variable28 = null; - a.$expression23 = null; - a.$position279 = null; - a.$introducedVariables0 = null; -} -let oncie_ReduceScope_dependencies = $this => { - return $this.$scopeDependencies(); -}, -oncie_ReduceScope_isConstantForQuery = $this => { - return 0; -}, -oncie_ReduceScope_accumulator = $this => { - return $this.$accumulator0; -}, -oncie_ReduceScope_variable = $this => { - return $this.$variable28; -}, -oncie_ReduceScope_expression = $this => { - return $this.$expression23; -}, -oncie_ReduceScope_position = $this => { - return $this.$position279; -}, -oncie_ReduceScope_introducedVariables = $this => { - return $this.$introducedVariables0; -}, -oncie_ReduceScope_scopeDependencies = $this => { - return ($this.$expression23.$dependencies()).$removedAll($this.$introducedVariables0); -}, -oncie_ReduceScope_productPrefix = $this => { - return $rt_s(5603); -}, -oncie_ReduceScope_productArity = $this => { - return 3; + $e = oavra_ParserATNSimulator_noViableAlt($this, $input, $outerContext, $s0.$configs, $startIndex); + oavr_BufferedTokenStream_seek($input, $startIndex); + $alt = oavra_ParserATNSimulator_getSynValidOrSemInvalidAltThatFinishedDecisionEntryRule($this, $s0.$configs, $outerContext); + if (!$alt) + $rt_throw($e); + return $alt; }, -oncie_ReduceScope_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$accumulator0; - case 1: - return $this.$variable28; - case 2: - return $this.$expression23; - default: +oavra_ParserATNSimulator_getExistingTargetState = ($this, $previousD, $t) => { + let $edges; + $edges = $previousD.$edges; + if ($edges !== null) { + $t = $t + 1 | 0; + if ($t >= 0) { + $edges = $edges.data; + if ($t < $edges.length) + return $edges[$t]; + } } - return sr_Statics_ioobe($x$1); -}, -oncie_ReduceScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ReduceScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_ReduceScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return null; }, -oncie_ReduceScope_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ReduceScope) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$accumulator0; - var$3 = $x$1.$accumulator0; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$variable28; - var$3 = $x$1.$variable28; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; +oavra_ParserATNSimulator_predicateDFAState = ($this, $dfaState, $decisionState) => { + let $nalts, $altsToCollectPredsFrom, $altToPred, var$6, var$7, var$8, var$9, var$10; + $nalts = oavra_ATNState_getNumberOfTransitions($decisionState); + $decisionState = $dfaState.$configs; + if (!$decisionState.$uniqueAlt) + $altsToCollectPredsFrom = $decisionState.$conflictingAlts; + else { + $altsToCollectPredsFrom = ju_BitSet__init_(); + ju_BitSet_set($altsToCollectPredsFrom, $decisionState.$uniqueAlt); + } + $decisionState = $dfaState.$configs; + $altToPred = $rt_createArray(oavra_SemanticContext, $nalts + 1 | 0); + var$6 = $altToPred.data; + $decisionState = oavra_ATNConfigSet_iterator($decisionState); + while (ju_AbstractList$1_hasNext($decisionState)) { + var$7 = ju_AbstractList$1_next($decisionState); + if (ju_BitSet_get($altsToCollectPredsFrom, var$7.$alt0)) { + var$8 = var$7.$alt0; + var$6[var$8] = oavra_SemanticContext_or(var$6[var$8], var$7.$semanticContext); + } + } + var$8 = 0; + var$9 = 1; + while (var$9 <= $nalts) { + if (var$6[var$9] === null) + var$6[var$9] = oavra_SemanticContext$Empty_Instance; + else if (var$6[var$9] !== oavra_SemanticContext$Empty_Instance) + var$8 = var$8 + 1 | 0; + var$9 = var$9 + 1 | 0; + } + if (!var$8) + $altToPred = null; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_debug) { + $decisionState = jl_System_out(); + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_AbstractStringBuilder_append(var$7, $rt_s(4192)); + jl_AbstractStringBuilder_append(var$7, ju_Arrays_toString($altToPred)); + otcic_JsConsolePrintStream_println($decisionState, jl_AbstractStringBuilder_toString(var$7)); + } + a: { + if ($altToPred === null) + $dfaState.$prediction = ju_BitSet_nextSetBit($altsToCollectPredsFrom, 0); + else { + $decisionState = ju_ArrayList__init_(); + $nalts = 0; + var$8 = 1; + while (true) { + var$6 = $altToPred.data; + if (var$8 >= var$6.length) { + $dfaState.$predicates = !$nalts ? null : ju_AbstractCollection_toArray($decisionState, $rt_createArray(oavrd_DFAState$PredPrediction, 0)); + $dfaState.$prediction = 0; + break a; } - e: { - var$3 = $this.$expression23; - $x$1 = $x$1.$expression23; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; + var$7 = var$6[var$8]; + if (!oavra_ParserATNSimulator_$assertionsDisabled && var$7 === null) + break; + if ($altsToCollectPredsFrom !== null && ju_BitSet_get($altsToCollectPredsFrom, var$8)) { + var$10 = new oavrd_DFAState$PredPrediction; + var$10.$alt1 = var$8; + var$10.$pred = var$7; + ju_ArrayList_add($decisionState, var$10); } - if (!($this instanceof oncie_ReduceScope)) - break b; + if (var$7 !== oavra_SemanticContext$Empty_Instance) + $nalts = 1; + var$8 = var$8 + 1 | 0; } - var$4 = 1; - break a; + $dfaState = new jl_AssertionError; + jl_Throwable__init_0($dfaState); + $rt_throw($dfaState); } - var$4 = 0; } - return var$4; -}, -oncie_ReduceScope__init_0 = ($this, $accumulator, $variable, $expression, $position) => { - $this.$accumulator0 = $accumulator; - $this.$variable28 = $variable; - $this.$expression23 = $expression; - $this.$position279 = $position; - oncie_Expression__init_($this); - s_Predef$_$callClinit(); - $this.$introducedVariables0 = (s_Predef$_Set(s_Predef$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_LogicalVariable, [$accumulator, $variable]))); -}, -oncie_ReduceScope__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncie_ReduceScope(); - oncie_ReduceScope__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oncie_IterablePredicateExpression = $rt_classWithoutFields(0), -oncie_IterablePredicateExpression_variable$ = $$this => { - return ($$this.$scope()).$variable22; -}, -oncie_IterablePredicateExpression_innerPredicate$ = $$this => { - return ($$this.$scope()).$innerPredicate1; -}, -oncie_IterablePredicateExpression_asCanonicalStringVal$ = $$this => { - let var$2, var$3, var$4, var$5; - var$2 = s_Option_getOrElse(s_Option_map($$this.$innerPredicate(), new oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0), new oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1); - var$3 = $$this.$name(); - var$4 = ($$this.$variable0()).$name4; - $$this = ($$this.$expression()).$asCanonicalStringVal(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - var$3 = jl_StringBuilder_append(var$5, var$3); - jl_AbstractStringBuilder_append0(var$3, 40); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$4), $rt_s(5604)), $$this), var$2); - return jl_AbstractStringBuilder_toString(var$5); -}, -oncie_IterablePredicateExpression_isConstantForQuery$ = $$this => { - return ($$this.$expression()).$isConstantForQuery() && s_Option_forall($$this.$innerPredicate(), new oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0) ? 1 : 0; -}; -function oncie_AllIterablePredicate() { - let a = this; oncie_Expression.call(a); - a.$scope16 = null; - a.$expression37 = null; - a.$position215 = null; - a.$name56 = null; -} -let oncie_AllIterablePredicate_variable = $this => { - return oncie_IterablePredicateExpression_variable$($this); -}, -oncie_AllIterablePredicate_innerPredicate = $this => { - return oncie_IterablePredicateExpression_innerPredicate$($this); -}, -oncie_AllIterablePredicate_asCanonicalStringVal = $this => { - return oncie_IterablePredicateExpression_asCanonicalStringVal$($this); -}, -oncie_AllIterablePredicate_isConstantForQuery = $this => { - return oncie_IterablePredicateExpression_isConstantForQuery$($this); -}, -oncie_AllIterablePredicate_scope = $this => { - return $this.$scope16; -}, -oncie_AllIterablePredicate_expression = $this => { - return $this.$expression37; -}, -oncie_AllIterablePredicate_position = $this => { - return $this.$position215; -}, -oncie_AllIterablePredicate_name = $this => { - return $this.$name56; -}, -oncie_AllIterablePredicate_productPrefix = $this => { - return $rt_s(5605); -}, -oncie_AllIterablePredicate_productArity = $this => { - return 2; }, -oncie_AllIterablePredicate_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$scope16; - case 1: - return $this.$expression37; - default: +oavra_ParserATNSimulator_execATNWithFullContext = ($this, $dfa, $D, $s0, $input, $startIndex, $outerContext) => { + let var$7, $e, $foundExactAmbig, $t, var$11, $altSubSets, $predictedAlt, $alt, $fullCtx; + oavra_ParserATNSimulator_$callClinit(); + if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_trace_atn_sim)) { + var$7 = jl_System_out(); + $e = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($e); + jl_AbstractStringBuilder_append($e, $rt_s(4193)); + otcic_JsConsolePrintStream_println(var$7, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($e, $s0))); } - return sr_Statics_ioobe($x$1); -}, -oncie_AllIterablePredicate_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_AllIterablePredicate_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_AllIterablePredicate_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_AllIterablePredicate_equals = ($this, $x$1) => { - let var$2, var$3, var$4; + $foundExactAmbig = 0; + oavr_BufferedTokenStream_seek($input, $startIndex); + $t = oavr_BufferedTokenStream_LA($input, 1); a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_AllIterablePredicate) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$scope16; - var$3 = $x$1.$scope16; - if (var$2 !== null) { - if (!oncie_FilterScope_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) + while (true) { + var$11 = oavra_ParserATNSimulator_computeReachSet($this, $s0, $t, 1); + if (var$11 === null) + break; + $altSubSets = oavra_PredictionMode_getConflictingAltSubsets(var$11); + if (oavra_ParserATNSimulator_debug) { + var$7 = jl_System_out(); + $s0 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($s0); + jl_AbstractStringBuilder_append($s0, $rt_s(4194)); + $s0 = jl_StringBuilder_append($s0, $altSubSets); + jl_AbstractStringBuilder_append($s0, $rt_s(4186)); + $e = oavra_PredictionMode_getAlts($altSubSets); + $s0 = jl_StringBuilder_append0($s0, ju_BitSet_cardinality($e) != 1 ? 0 : ju_BitSet_nextSetBit($e, 0)); + jl_AbstractStringBuilder_append($s0, $rt_s(4195)); + otcic_JsConsolePrintStream_println(var$7, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($s0, oavra_PredictionMode_getSingleViableAlt($altSubSets)))); + } + $predictedAlt = oavra_ParserATNSimulator_getUniqueAlt(var$11); + var$11.$uniqueAlt = $predictedAlt; + if ($predictedAlt) + break a; + b: { + if ($this.$mode1 !== oavra_PredictionMode_LL_EXACT_AMBIG_DETECTION) { + $predictedAlt = oavra_PredictionMode_getSingleViableAlt($altSubSets); + if (!$predictedAlt) break b; + else + break a; } - d: { - var$3 = $this.$expression37; - $x$1 = $x$1.$expression37; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; + if (oavra_PredictionMode_allSubsetsConflict($altSubSets)) { + $s0 = ju_AbstractList_iterator($altSubSets); + $e = ju_AbstractList$1_next($s0); + c: { + while (ju_AbstractList$1_hasNext($s0)) { + if (!ju_BitSet_equals(ju_AbstractList$1_next($s0), $e)) { + $alt = 0; + break c; + } + } + $alt = 1; + } + if ($alt) { + $foundExactAmbig = 1; + $predictedAlt = oavra_PredictionMode_getSingleViableAlt($altSubSets); + break a; } - if ($x$1 !== null) - break b; } - if (!($this instanceof oncie_AllIterablePredicate)) - break b; } - var$4 = 1; - break a; + if ($t != (-1)) { + oavr_BufferedTokenStream_consume($input); + $t = oavr_BufferedTokenStream_LA($input, 1); + } + $s0 = var$11; } - var$4 = 0; + $e = oavra_ParserATNSimulator_noViableAlt($this, $input, $outerContext, $s0, $startIndex); + oavr_BufferedTokenStream_seek($input, $startIndex); + $alt = oavra_ParserATNSimulator_getSynValidOrSemInvalidAltThatFinishedDecisionEntryRule($this, $s0, $outerContext); + if (!$alt) + $rt_throw($e); + return $alt; } - return var$4; -}, -oncie_AllIterablePredicate__init_0 = ($this, $scope, $expression, $position) => { - $this.$scope16 = $scope; - $this.$expression37 = $expression; - $this.$position215 = $position; - oncie_Expression__init_($this); - oncie_AllIterablePredicate$_$callClinit(); - $this.$name56 = oncie_AllIterablePredicate$_name; -}, -oncie_AllIterablePredicate__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_AllIterablePredicate(); - oncie_AllIterablePredicate__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_FilterScope() { - let a = this; oncie_Expression.call(a); - a.$variable22 = null; - a.$innerPredicate1 = null; - a.$position248 = null; - a.$introducedVariables2 = null; -} -let oncie_FilterScope_dependencies = $this => { - return $this.$scopeDependencies(); -}, -oncie_FilterScope_isConstantForQuery = $this => { - return 0; -}, -oncie_FilterScope_position = $this => { - return $this.$position248; -}, -oncie_FilterScope_introducedVariables = $this => { - return $this.$introducedVariables2; -}, -oncie_FilterScope_scopeDependencies = $this => { - return (s_Option_fold($this.$innerPredicate1, new oncie_FilterScope$scopeDependencies$lambda$_8_0, new oncie_FilterScope$scopeDependencies$lambda$_8_1)).$removedAll($this.$introducedVariables2); -}, -oncie_FilterScope_productPrefix = $this => { - return $rt_s(5606); -}, -oncie_FilterScope_productArity = $this => { - return 2; -}, -oncie_FilterScope_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$variable22; - case 1: - return $this.$innerPredicate1; - default: + if (!var$11.$uniqueAlt) { + $fullCtx = $input.$p; + $s0 = ju_BitSet__init_(); + $input = ju_AbstractList_iterator(var$11.$configs0); + while (ju_AbstractList$1_hasNext($input)) { + ju_BitSet_set($s0, (ju_AbstractList$1_next($input)).$alt0); + } + oavra_ParserATNSimulator_reportAmbiguity($this, $dfa, $D, $startIndex, $fullCtx, $foundExactAmbig, $s0, var$11); + return $predictedAlt; } - return sr_Statics_ioobe($x$1); -}, -oncie_FilterScope_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_FilterScope_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_FilterScope_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + $fullCtx = $input.$p; + if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_retry_debug)) { + $s0 = oavrm_Interval_of($startIndex, $fullCtx); + $D = jl_System_out(); + $input = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($input); + jl_AbstractStringBuilder_append($input, $rt_s(4196)); + $dfa = jl_StringBuilder_append0($input, $dfa.$decision); + jl_AbstractStringBuilder_append($dfa, $rt_s(92)); + $dfa = jl_StringBuilder_append($dfa, var$11); + jl_AbstractStringBuilder_append($dfa, $rt_s(4197)); + jl_AbstractStringBuilder_append($dfa, oavr_BufferedTokenStream_getText($this.$parser.$_input, $s0)); + otcic_JsConsolePrintStream_println($D, jl_AbstractStringBuilder_toString($dfa)); + } + $dfa = $this.$parser; + if ($dfa !== null) { + $dfa = juc_CopyOnWriteArrayList_iterator((oavr_Recognizer_getErrorListenerDispatch($dfa)).$delegates); + while (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext($dfa)) { + juc_CopyOnWriteArrayList$ListIteratorImpl_next($dfa); + } + } + return $predictedAlt; }, -oncie_FilterScope_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_FilterScope) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$variable22; - var$3 = $x$1.$variable22; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; +oavra_ParserATNSimulator_computeReachSet = ($this, $closure, $t, $fullCtx) => { + let $target, $trans, $intermediate, $skippedStopStates, $closureBusy, var$9, $reach, $treatEofAsEpsilon, $c, $n, $ti; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_debug) { + $target = jl_System_out(); + $trans = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($trans); + jl_AbstractStringBuilder_append($trans, $rt_s(4198)); + otcic_JsConsolePrintStream_println($target, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($trans, $closure))); + } + if ($this.$mergeCache === null) { + $target = new oavrm_DoubleKeyMap; + $target.$data7 = ju_LinkedHashMap__init_(); + $this.$mergeCache = $target; + } + $intermediate = oavra_ATNConfigSet__init_($fullCtx); + $skippedStopStates = null; + $closureBusy = oavra_ATNConfigSet_iterator($closure); + var$9 = $rt_compare($t, (-1)); + while (true) { + if (!ju_AbstractList$1_hasNext($closureBusy)) { + $reach = null; + if ($skippedStopStates === null && var$9) { + if (oavra_ATNConfigSet_size($intermediate) == 1) + $reach = $intermediate; + else if (oavra_ParserATNSimulator_getUniqueAlt($intermediate)) + $reach = $intermediate; + } + if ($reach === null) { + $reach = oavra_ATNConfigSet__init_($fullCtx); + $closureBusy = ju_HashSet__init_(); + $treatEofAsEpsilon = var$9 ? 0 : 1; + $target = oavra_ATNConfigSet_iterator($intermediate); + while (ju_AbstractList$1_hasNext($target)) { + oavra_ParserATNSimulator_closure($this, ju_AbstractList$1_next($target), $reach, $closureBusy, 0, $fullCtx, $treatEofAsEpsilon); + } + } + if (!var$9) { + $treatEofAsEpsilon = $reach !== $intermediate ? 0 : 1; + if (!oavra_PredictionMode_allConfigsInRuleStopStates($reach)) { + $target = oavra_ATNConfigSet__init_($reach.$fullCtx); + $trans = oavra_ATNConfigSet_iterator($reach); + while (ju_AbstractList$1_hasNext($trans)) { + $reach = ju_AbstractList$1_next($trans); + $intermediate = $reach.$state0; + if ($intermediate instanceof oavra_RuleStopState) { + oavra_ATNConfigSet_add($target, $reach, $this.$mergeCache); + continue; + } + if ($treatEofAsEpsilon && $intermediate.$epsilonOnlyTransitions && oavrm_IntervalSet_contains(oavra_ATN_nextTokens($this.$atn, $intermediate), (-2))) + oavra_ATNConfigSet_add($target, oavra_ATNConfig__init_($reach, $this.$atn.$ruleToStopState.data[$reach.$state0.$ruleIndex]), $this.$mergeCache); } - if (var$3 !== null) - break b; + $reach = $target; } - d: { - var$3 = $this.$innerPredicate1; - $x$1 = $x$1.$innerPredicate1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; + } + a: { + if ($skippedStopStates !== null) { + if ($fullCtx) { + $target = oavra_ATNConfigSet_iterator($reach); + b: { + while (ju_AbstractList$1_hasNext($target)) { + if ((ju_AbstractList$1_next($target)).$state0 instanceof oavra_RuleStopState) { + $t = 1; + break b; + } + } + $t = 0; + } + if ($t) + break a; + } + if (!oavra_ParserATNSimulator_$assertionsDisabled && ju_AbstractCollection_isEmpty($skippedStopStates)) { + $closure = new jl_AssertionError; + jl_Throwable__init_0($closure); + $rt_throw($closure); + } + $target = ju_AbstractList_iterator($skippedStopStates); + while (true) { + if (!ju_AbstractList$1_hasNext($target)) + break a; + oavra_ATNConfigSet_add($reach, ju_AbstractList$1_next($target), $this.$mergeCache); } - if ($x$1 !== null) - break b; } - if (!($this instanceof oncie_FilterScope)) - break b; } - var$4 = 1; - break a; + if (oavra_ParserATNSimulator_trace_atn_sim) { + $target = jl_System_out(); + $trans = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($trans); + jl_AbstractStringBuilder_append($trans, $rt_s(4199)); + $closure = jl_StringBuilder_append($trans, $closure); + jl_AbstractStringBuilder_append($closure, $rt_s(4157)); + otcic_JsConsolePrintStream_println($target, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($closure, $reach))); + } + if (!oavra_ATNConfigSet_isEmpty($reach)) + return $reach; + return null; } - var$4 = 0; + $c = ju_AbstractList$1_next($closureBusy); + if (oavra_ParserATNSimulator_debug) { + $target = jl_System_out(); + $trans = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($trans); + jl_AbstractStringBuilder_append($trans, $rt_s(4200)); + jl_AbstractStringBuilder_append($trans, oavra_ParserATNSimulator_getTokenName($this, $t)); + jl_AbstractStringBuilder_append($trans, $rt_s(4201)); + jl_AbstractStringBuilder_append($trans, oavra_ATNConfig_toString($c)); + otcic_JsConsolePrintStream_println($target, jl_AbstractStringBuilder_toString($trans)); + } + $target = $c.$state0; + if (!($target instanceof oavra_RuleStopState)) { + $n = oavra_ATNState_getNumberOfTransitions($target); + $ti = 0; + while ($ti < $n) { + $trans = oavra_ATNState_transition($c.$state0, $ti); + $target = !$trans.$matches3($t, 0, $this.$atn.$maxTokenType) ? null : $trans.$target; + if ($target !== null) + oavra_ATNConfigSet_add($intermediate, oavra_ATNConfig__init_($c, $target), $this.$mergeCache); + $ti = $ti + 1 | 0; + } + continue; + } + if (!oavra_ParserATNSimulator_$assertionsDisabled && !$c.$context.$isEmpty()) + break; + if (!$fullCtx && var$9) + continue; + if ($skippedStopStates === null) + $skippedStopStates = ju_ArrayList__init_(); + ju_ArrayList_add($skippedStopStates, $c); } - return var$4; -}, -oncie_FilterScope__init_0 = ($this, $variable, $innerPredicate, $position) => { - let var$4; - $this.$variable22 = $variable; - $this.$innerPredicate1 = $innerPredicate; - $this.$position248 = $position; - oncie_Expression__init_($this); - s_Predef$_$callClinit(); - $position = s_Predef$_Set(s_Predef$_MODULE$); - $innerPredicate = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_LogicalVariable, 1); - var$4.data[0] = $variable; - $this.$introducedVariables2 = $position.$from0(sr_ScalaRunTime$_wrapRefArray($innerPredicate, var$4)); -}, -oncie_FilterScope__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_FilterScope(); - oncie_FilterScope__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_AnyIterablePredicate() { - let a = this; oncie_Expression.call(a); - a.$scope13 = null; - a.$expression35 = null; - a.$position200 = null; - a.$name52 = null; -} -let oncie_AnyIterablePredicate_variable = $this => { - return oncie_IterablePredicateExpression_variable$($this); -}, -oncie_AnyIterablePredicate_innerPredicate = $this => { - return oncie_IterablePredicateExpression_innerPredicate$($this); -}, -oncie_AnyIterablePredicate_asCanonicalStringVal = $this => { - return oncie_IterablePredicateExpression_asCanonicalStringVal$($this); -}, -oncie_AnyIterablePredicate_isConstantForQuery = $this => { - return oncie_IterablePredicateExpression_isConstantForQuery$($this); -}, -oncie_AnyIterablePredicate_scope = $this => { - return $this.$scope13; -}, -oncie_AnyIterablePredicate_expression = $this => { - return $this.$expression35; -}, -oncie_AnyIterablePredicate_position = $this => { - return $this.$position200; -}, -oncie_AnyIterablePredicate_name = $this => { - return $this.$name52; -}, -oncie_AnyIterablePredicate_productPrefix = $this => { - return $rt_s(5607); -}, -oncie_AnyIterablePredicate_productArity = $this => { - return 2; + $closure = new jl_AssertionError; + jl_Throwable__init_0($closure); + $rt_throw($closure); }, -oncie_AnyIterablePredicate_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$scope13; - case 1: - return $this.$expression35; - default: +oavra_ParserATNSimulator_computeStartState = ($this, $p, $ctx, $fullCtx) => { + let $initialContext, $configs, $target, $i, $c; + $initialContext = oavra_PredictionContext_fromRuleContext($this.$atn, $ctx); + $configs = oavra_ATNConfigSet__init_($fullCtx); + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_trace_atn_sim) { + $ctx = jl_System_out(); + $target = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($target); + jl_AbstractStringBuilder_append($target, $rt_s(4202)); + $target = jl_StringBuilder_append($target, $p); + jl_AbstractStringBuilder_append($target, $rt_s(4203)); + jl_AbstractStringBuilder_append($target, $initialContext.$toString()); + otcic_JsConsolePrintStream_println($ctx, jl_AbstractStringBuilder_toString($target)); } - return sr_Statics_ioobe($x$1); + $i = 0; + while ($i < oavra_ATNState_getNumberOfTransitions($p)) { + $target = (oavra_ATNState_transition($p, $i)).$target; + $c = new oavra_ATNConfig; + $i = $i + 1 | 0; + oavra_ATNConfig__init_3($c, $target, $i, $initialContext); + oavra_ParserATNSimulator_closure($this, $c, $configs, ju_HashSet__init_(), 1, $fullCtx, 0); + } + return $configs; }, -oncie_AnyIterablePredicate_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavra_ParserATNSimulator_applyPrecedenceFilter = ($this, $configs) => { + let $statesFromAlt1, $configSet, var$4, $config, $updatedContext, $context; + $statesFromAlt1 = ju_HashMap__init_(); + $configSet = oavra_ATNConfigSet__init_($configs.$fullCtx); + var$4 = oavra_ATNConfigSet_iterator($configs); + while (ju_AbstractList$1_hasNext(var$4)) { + $config = ju_AbstractList$1_next(var$4); + if ($config.$alt0 != 1) + continue; + $updatedContext = $config.$semanticContext.$evalPrecedence($this.$parser, $this.$_outerContext); + if ($updatedContext === null) + continue; + ju_HashMap_put($statesFromAlt1, jl_Integer_valueOf($config.$state0.$stateNumber), $config.$context); + if ($updatedContext === $config.$semanticContext) + oavra_ATNConfigSet_add($configSet, $config, $this.$mergeCache); + else + oavra_ATNConfigSet_add($configSet, oavra_ATNConfig__init_5($config, $updatedContext), $this.$mergeCache); + } + $configs = oavra_ATNConfigSet_iterator($configs); + while (ju_AbstractList$1_hasNext($configs)) { + $config = ju_AbstractList$1_next($configs); + if ($config.$alt0 == 1) + continue; + if (!oavra_ATNConfig_isPrecedenceFilterSuppressed($config)) { + $context = ju_HashMap_get($statesFromAlt1, jl_Integer_valueOf($config.$state0.$stateNumber)); + if ($context !== null && $context.$equals($config.$context)) + continue; + } + oavra_ATNConfigSet_add($configSet, $config, $this.$mergeCache); + } + return $configSet; }, -oncie_AnyIterablePredicate_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oavra_ParserATNSimulator_getSynValidOrSemInvalidAltThatFinishedDecisionEntryRule = ($this, $configs, $outerContext) => { + let $semValidConfigs, var$4, var$5, $semInvalidConfigs, $sets, $alt; + $semValidConfigs = oavra_ATNConfigSet__init_($configs.$fullCtx); + var$4 = oavra_ATNConfigSet__init_($configs.$fullCtx); + var$5 = oavra_ATNConfigSet_iterator($configs); + while (ju_AbstractList$1_hasNext(var$5)) { + $semInvalidConfigs = ju_AbstractList$1_next(var$5); + $sets = $semInvalidConfigs.$semanticContext; + if ($sets === oavra_SemanticContext$Empty_Instance) + oavra_ATNConfigSet_add0($semValidConfigs, $semInvalidConfigs); + else if (!oavra_ParserATNSimulator_evalSemanticContext($this, $sets, $outerContext, $semInvalidConfigs.$alt0, $configs.$fullCtx)) + oavra_ATNConfigSet_add0(var$4, $semInvalidConfigs); + else + oavra_ATNConfigSet_add0($semValidConfigs, $semInvalidConfigs); + } + $sets = oavrm_Pair__init_($semValidConfigs, var$4); + $semValidConfigs = $sets.$a7; + $semInvalidConfigs = $sets.$b0; + $alt = oavra_ParserATNSimulator_getAltThatFinishedDecisionEntryRule($this, $semValidConfigs); + if ($alt) + return $alt; + if (oavra_ATNConfigSet_size($semInvalidConfigs) > 0) { + $alt = oavra_ParserATNSimulator_getAltThatFinishedDecisionEntryRule($this, $semInvalidConfigs); + if ($alt) + return $alt; + } + return 0; }, -oncie_AnyIterablePredicate_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oavra_ParserATNSimulator_getAltThatFinishedDecisionEntryRule = ($this, $configs) => { + let $alts, $c; + $alts = oavrm_IntervalSet__init_($rt_createIntArray(0)); + $configs = oavra_ATNConfigSet_iterator($configs); + while (ju_AbstractList$1_hasNext($configs)) { + a: { + $c = ju_AbstractList$1_next($configs); + if (oavra_ATNConfig_getOuterContextDepth($c) <= 0) { + if (!($c.$state0 instanceof oavra_RuleStopState)) + break a; + if (!oavra_PredictionContext_hasEmptyPath($c.$context)) + break a; + } + oavrm_IntervalSet_add($alts, $c.$alt0); + } + } + if (oavrm_IntervalSet_size($alts)) + return oavrm_IntervalSet_getMinElement($alts); + return 0; }, -oncie_AnyIterablePredicate_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oavra_ParserATNSimulator_evalSemanticContext0 = ($this, $predPredictions, $outerContext, $complete) => { + let $predictions, var$5, var$6, $pair, var$8, $predicateEvaluationResult, var$10, var$11; + $predPredictions = $predPredictions.data; + $predictions = ju_BitSet__init_(); + var$5 = $predPredictions.length; + var$6 = 0; a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_AnyIterablePredicate) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$scope13; - var$3 = $x$1.$scope13; - if (var$2 !== null) { - if (!oncie_FilterScope_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; + b: while (true) { + if (var$6 >= var$5) + break a; + c: { + $pair = $predPredictions[var$6]; + var$8 = $pair.$pred; + if (var$8 === oavra_SemanticContext$Empty_Instance) { + ju_BitSet_set($predictions, $pair.$alt1); + if ($complete) + break c; + else + break a; } - d: { - var$3 = $this.$expression35; - $x$1 = $x$1.$expression35; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; + $predicateEvaluationResult = oavra_ParserATNSimulator_evalSemanticContext($this, var$8, $outerContext, $pair.$alt1, 0); + if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_dfa_debug)) { + var$8 = jl_System_out(); + var$10 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$10); + jl_AbstractStringBuilder_append(var$10, $rt_s(4204)); + var$10 = jl_StringBuilder_append(var$10, $pair); + jl_AbstractStringBuilder_append(var$10, $rt_s(4116)); + otcic_JsConsolePrintStream_println(var$8, jl_AbstractStringBuilder_toString(jl_StringBuilder_append3(var$10, $predicateEvaluationResult))); + } + if ($predicateEvaluationResult) { + if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_dfa_debug)) { + var$10 = jl_System_out(); + var$11 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$11); + jl_AbstractStringBuilder_append(var$11, $rt_s(4205)); + otcic_JsConsolePrintStream_println(var$10, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$11, $pair.$alt1))); } - if ($x$1 !== null) + ju_BitSet_set($predictions, $pair.$alt1); + if (!$complete) break b; } - if (!($this instanceof oncie_AnyIterablePredicate)) - break b; } - var$4 = 1; - break a; + var$6 = var$6 + 1 | 0; } - var$4 = 0; } - return var$4; -}, -oncie_AnyIterablePredicate__init_0 = ($this, $scope, $expression, $position) => { - $this.$scope13 = $scope; - $this.$expression35 = $expression; - $this.$position200 = $position; - oncie_Expression__init_($this); - oncie_AnyIterablePredicate$_$callClinit(); - $this.$name52 = oncie_AnyIterablePredicate$_name; -}, -oncie_AnyIterablePredicate__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_AnyIterablePredicate(); - oncie_AnyIterablePredicate__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_NoneIterablePredicate() { - let a = this; oncie_Expression.call(a); - a.$scope15 = null; - a.$expression36 = null; - a.$position201 = null; - a.$name53 = null; -} -let oncie_NoneIterablePredicate_variable = $this => { - return oncie_IterablePredicateExpression_variable$($this); -}, -oncie_NoneIterablePredicate_innerPredicate = $this => { - return oncie_IterablePredicateExpression_innerPredicate$($this); -}, -oncie_NoneIterablePredicate_asCanonicalStringVal = $this => { - return oncie_IterablePredicateExpression_asCanonicalStringVal$($this); -}, -oncie_NoneIterablePredicate_isConstantForQuery = $this => { - return oncie_IterablePredicateExpression_isConstantForQuery$($this); -}, -oncie_NoneIterablePredicate_scope = $this => { - return $this.$scope15; -}, -oncie_NoneIterablePredicate_expression = $this => { - return $this.$expression36; -}, -oncie_NoneIterablePredicate_position = $this => { - return $this.$position201; -}, -oncie_NoneIterablePredicate_name = $this => { - return $this.$name53; -}, -oncie_NoneIterablePredicate_productPrefix = $this => { - return $rt_s(5608); + return $predictions; }, -oncie_NoneIterablePredicate_productArity = $this => { - return 2; +oavra_ParserATNSimulator_evalSemanticContext = ($this, $pred, $parserCallStack, $alt, $fullCtx) => { + return $pred.$eval($this.$parser, $parserCallStack); }, -oncie_NoneIterablePredicate_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$scope15; - case 1: - return $this.$expression36; - default: +oavra_ParserATNSimulator_closure = ($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $treatEofAsEpsilon) => { + oavra_ParserATNSimulator_closureCheckingStopState($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, 0, $treatEofAsEpsilon); + if (!oavra_ParserATNSimulator_$assertionsDisabled && $fullCtx && $configs.$dipsIntoOuterContext) { + $config = new jl_AssertionError; + jl_Throwable__init_0($config); + $rt_throw($config); } - return sr_Statics_ioobe($x$1); -}, -oncie_NoneIterablePredicate_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NoneIterablePredicate_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NoneIterablePredicate_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_NoneIterablePredicate_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_NoneIterablePredicate) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$scope15; - var$3 = $x$1.$scope15; - if (var$2 !== null) { - if (!oncie_FilterScope_equals(var$2, var$3)) - break b; - else - break c; +oavra_ParserATNSimulator_closureCheckingStopState = ($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $depth, $treatEofAsEpsilon) => { + let $returnState, $newContext, $i, var$11, var$12, $c; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_trace_atn_sim) { + $returnState = jl_System_out(); + $newContext = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($newContext); + jl_AbstractStringBuilder_append($newContext, $rt_s(4206)); + jl_AbstractStringBuilder_append($newContext, oavra_ATNConfig_toString0($config, $this.$parser, 1)); + jl_AbstractStringBuilder_append($newContext, $rt_s(42)); + otcic_JsConsolePrintStream_println($returnState, jl_AbstractStringBuilder_toString($newContext)); + } + if ($config.$state0 instanceof oavra_RuleStopState) { + if (!$config.$context.$isEmpty()) { + $i = 0; + var$11 = $rt_compare($depth, (-2147483648)); + var$12 = $depth - 1 | 0; + while ($i < $config.$context.$size()) { + if ($config.$context.$getReturnState($i) != 2147483647) { + $returnState = ju_ArrayList_get($this.$atn.$states, $config.$context.$getReturnState($i)); + $newContext = $config.$context.$getParent($i); + $c = oavra_ATNConfig__init_7($returnState, $config.$alt0, $newContext, $config.$semanticContext); + $c.$reachesIntoOuterContext = $config.$reachesIntoOuterContext; + if (!oavra_ParserATNSimulator_$assertionsDisabled && var$11 <= 0) { + $config = new jl_AssertionError; + jl_Throwable__init_0($config); + $rt_throw($config); } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$expression36; - $x$1 = $x$1.$expression36; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; + oavra_ParserATNSimulator_closureCheckingStopState($this, $c, $configs, $closureBusy, $collectPredicates, $fullCtx, var$12, $treatEofAsEpsilon); + } else if ($fullCtx) { + $newContext = new oavra_ATNConfig; + $returnState = $config.$state0; + oavra_EmptyPredictionContext_$callClinit(); + oavra_ATNConfig__init_2($newContext, $config, $returnState, oavra_EmptyPredictionContext_Instance); + oavra_ATNConfigSet_add($configs, $newContext, $this.$mergeCache); + } else { + if (oavra_ParserATNSimulator_debug) { + $newContext = jl_System_out(); + $returnState = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($returnState); + jl_AbstractStringBuilder_append($returnState, $rt_s(4207)); + jl_AbstractStringBuilder_append($returnState, oavra_ParserATNSimulator_getRuleName($this, $config.$state0.$ruleIndex)); + otcic_JsConsolePrintStream_println($newContext, jl_AbstractStringBuilder_toString($returnState)); } - if ($x$1 !== null) - break b; + oavra_ParserATNSimulator_closure_($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $depth, $treatEofAsEpsilon); } - if (!($this instanceof oncie_NoneIterablePredicate)) - break b; + $i = $i + 1 | 0; } - var$4 = 1; - break a; + return; + } + if ($fullCtx) { + oavra_ATNConfigSet_add($configs, $config, $this.$mergeCache); + return; + } + if (oavra_ParserATNSimulator_debug) { + $returnState = jl_System_out(); + $newContext = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($newContext); + jl_AbstractStringBuilder_append($newContext, $rt_s(4207)); + jl_AbstractStringBuilder_append($newContext, oavra_ParserATNSimulator_getRuleName($this, $config.$state0.$ruleIndex)); + otcic_JsConsolePrintStream_println($returnState, jl_AbstractStringBuilder_toString($newContext)); } - var$4 = 0; - } - return var$4; -}, -oncie_NoneIterablePredicate__init_0 = ($this, $scope, $expression, $position) => { - $this.$scope15 = $scope; - $this.$expression36 = $expression; - $this.$position201 = $position; - oncie_Expression__init_($this); - oncie_NoneIterablePredicate$_$callClinit(); - $this.$name53 = oncie_NoneIterablePredicate$_name; -}, -oncie_NoneIterablePredicate__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_NoneIterablePredicate(); - oncie_NoneIterablePredicate__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_SingleIterablePredicate() { - let a = this; oncie_Expression.call(a); - a.$scope11 = null; - a.$expression38 = null; - a.$position207 = null; - a.$name58 = null; -} -let oncie_SingleIterablePredicate_variable = $this => { - return oncie_IterablePredicateExpression_variable$($this); -}, -oncie_SingleIterablePredicate_innerPredicate = $this => { - return oncie_IterablePredicateExpression_innerPredicate$($this); -}, -oncie_SingleIterablePredicate_asCanonicalStringVal = $this => { - return oncie_IterablePredicateExpression_asCanonicalStringVal$($this); -}, -oncie_SingleIterablePredicate_isConstantForQuery = $this => { - return oncie_IterablePredicateExpression_isConstantForQuery$($this); -}, -oncie_SingleIterablePredicate_scope = $this => { - return $this.$scope11; -}, -oncie_SingleIterablePredicate_expression = $this => { - return $this.$expression38; -}, -oncie_SingleIterablePredicate_position = $this => { - return $this.$position207; -}, -oncie_SingleIterablePredicate_name = $this => { - return $this.$name58; -}, -oncie_SingleIterablePredicate_productPrefix = $this => { - return $rt_s(5609); -}, -oncie_SingleIterablePredicate_productArity = $this => { - return 2; -}, -oncie_SingleIterablePredicate_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$scope11; - case 1: - return $this.$expression38; - default: } - return sr_Statics_ioobe($x$1); -}, -oncie_SingleIterablePredicate_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SingleIterablePredicate_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_SingleIterablePredicate_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + oavra_ParserATNSimulator_closure_($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $depth, $treatEofAsEpsilon); }, -oncie_SingleIterablePredicate_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_SingleIterablePredicate) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$scope11; - var$3 = $x$1.$scope11; - if (var$2 !== null) { - if (!oncie_FilterScope_equals(var$2, var$3)) +oavra_ParserATNSimulator_closure_ = ($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $depth, $treatEofAsEpsilon) => { + let $p, $i, var$10, var$11, var$12, $t, $continueCollecting, var$15, $c, var$17, var$18, var$19, $outermostPrecedenceReturn; + $p = $config.$state0; + if (!$p.$epsilonOnlyTransitions) + oavra_ATNConfigSet_add($configs, $config, $this.$mergeCache); + $i = 0; + var$10 = $rt_compare($depth, (-2147483648)); + var$11 = $depth + (-1) | 0; + var$12 = $depth + 1 | 0; + while ($i < oavra_ATNState_getNumberOfTransitions($p)) { + a: { + if (!(!$i && oavra_ParserATNSimulator_canDropLoopEntryEdgeInLeftRecursiveRule($this, $config))) { + $t = oavra_ATNState_transition($p, $i); + $continueCollecting = !($t instanceof oavra_ActionTransition) && $collectPredicates ? 1 : 0; + var$15 = $depth ? 0 : 1; + b: { + switch ($t.$getSerializationType()) { + case 1: + $c = oavra_ATNConfig__init_($config, $t.$target); + break b; + case 2: + case 5: + case 7: + if ($treatEofAsEpsilon && $t.$matches3((-1), 0, 1)) { + $c = oavra_ATNConfig__init_($config, $t.$target); + break b; + } + $c = null; + break b; + case 3: + var$17 = $t; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_debug) { + var$18 = jl_System_out(); + $c = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($c); + jl_AbstractStringBuilder_append($c, $rt_s(4208)); + jl_AbstractStringBuilder_append($c, oavra_ParserATNSimulator_getRuleName($this, var$17.$target.$ruleIndex)); + jl_AbstractStringBuilder_append($c, $rt_s(4209)); + otcic_JsConsolePrintStream_println(var$18, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($c, $config.$context))); + } + var$19 = var$17.$followState; + var$19 = oavra_SingletonPredictionContext_create($config.$context, var$19.$stateNumber); + $c = oavra_ATNConfig__init_11($config, var$17.$target, var$19); + break b; + case 4: + var$17 = $t; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_debug) { + $c = jl_System_out(); + var$19 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$19); + jl_AbstractStringBuilder_append(var$19, $rt_s(4210)); + var$19 = jl_StringBuilder_append3(var$19, $continueCollecting); + jl_AbstractStringBuilder_append(var$19, $rt_s(4211)); + var$19 = jl_StringBuilder_append0(var$19, var$17.$ruleIndex1); + jl_AbstractStringBuilder_append(var$19, $rt_s(92)); + var$19 = jl_StringBuilder_append0(var$19, var$17.$predIndex); + jl_AbstractStringBuilder_append(var$19, $rt_s(4212)); + otcic_JsConsolePrintStream_println($c, jl_AbstractStringBuilder_toString(jl_StringBuilder_append3(var$19, var$17.$isCtxDependent))); + if ($this.$parser !== null) { + var$19 = jl_System_out(); + var$18 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$18); + jl_AbstractStringBuilder_append(var$18, $rt_s(4213)); + otcic_JsConsolePrintStream_println(var$19, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$18, oavr_Parser_getRuleInvocationStack($this.$parser)))); + } + } + c: { + d: { + $c = null; + if ($continueCollecting) { + $outermostPrecedenceReturn = var$17.$isCtxDependent; + if (!$outermostPrecedenceReturn) + break d; + if ($outermostPrecedenceReturn && var$15) + break d; + } + $c = oavra_ATNConfig__init_($config, var$17.$target); + break c; + } + if (!$fullCtx) { + var$19 = oavra_SemanticContext_and($config.$semanticContext, oavra_PredicateTransition_getPredicate(var$17)); + $c = oavra_ATNConfig__init_4($config, var$17.$target, var$19); + } else { + var$19 = $this.$_input1; + var$15 = var$19.$p; + oavr_BufferedTokenStream_seek(var$19, $this.$_startIndex); + $outermostPrecedenceReturn = oavra_ParserATNSimulator_evalSemanticContext($this, oavra_PredicateTransition_getPredicate(var$17), $this.$_outerContext, $config.$alt0, $fullCtx); + oavr_BufferedTokenStream_seek($this.$_input1, var$15); + if ($outermostPrecedenceReturn) + $c = oavra_ATNConfig__init_($config, var$17.$target); + } + } + if (oavra_ParserATNSimulator_debug) { + var$17 = jl_System_out(); + var$19 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$19); + jl_AbstractStringBuilder_append(var$19, $rt_s(4214)); + otcic_JsConsolePrintStream_println(var$17, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$19, $c))); + } break b; - else - break c; + case 6: + var$17 = $t; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_debug) { + var$19 = jl_System_out(); + var$18 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$18); + jl_AbstractStringBuilder_append(var$18, $rt_s(4215)); + var$18 = jl_StringBuilder_append0(var$18, var$17.$ruleIndex4); + jl_AbstractStringBuilder_append(var$18, $rt_s(92)); + otcic_JsConsolePrintStream_println(var$19, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$18, var$17.$actionIndex0))); + } + $c = oavra_ATNConfig__init_($config, var$17.$target); + break b; + case 8: + case 9: + break; + case 10: + $c = oavra_ParserATNSimulator_precedenceTransition($this, $config, $t, $continueCollecting, var$15, $fullCtx); + break b; + default: } - if (var$3 !== null) - break b; + $c = null; } - d: { - var$3 = $this.$expression38; - $x$1 = $x$1.$expression38; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; + if ($c !== null) { + if (!($config.$state0 instanceof oavra_RuleStopState)) { + if (!$t.$isEpsilon() && !ju_HashSet_add($closureBusy, $c)) + break a; + $outermostPrecedenceReturn = !($t instanceof oavra_RuleTransition) ? $depth : $depth >= 0 ? var$12 : $depth; + } else { + oavra_ParserATNSimulator_$callClinit(); + if (!oavra_ParserATNSimulator_$assertionsDisabled && $fullCtx) { + $config = new jl_AssertionError; + jl_Throwable__init_0($config); + $rt_throw($config); + } + var$17 = $this.$_dfa; + if (var$17 !== null && var$17.$precedenceDfa && $t.$outermostPrecedenceReturn == var$17.$atnStartState.$ruleIndex) + oavra_ATNConfig_setPrecedenceFilterSuppressed($c, 1); + $c.$reachesIntoOuterContext = $c.$reachesIntoOuterContext + 1 | 0; + if (!ju_HashSet_add($closureBusy, $c)) + break a; + $configs.$dipsIntoOuterContext = 1; + if (!oavra_ParserATNSimulator_$assertionsDisabled && var$10 <= 0) { + $config = new jl_AssertionError; + jl_Throwable__init_0($config); + $rt_throw($config); + } + if (!oavra_ParserATNSimulator_debug) + $outermostPrecedenceReturn = var$11; + else { + $t = jl_System_out(); + var$17 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$17); + jl_AbstractStringBuilder_append(var$17, $rt_s(4216)); + otcic_JsConsolePrintStream_println($t, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$17, $c))); + $outermostPrecedenceReturn = var$11; + } } - if ($x$1 !== null) - break b; + oavra_ParserATNSimulator_closureCheckingStopState($this, $c, $configs, $closureBusy, $continueCollecting, $fullCtx, $outermostPrecedenceReturn, $treatEofAsEpsilon); } - if (!($this instanceof oncie_SingleIterablePredicate)) - break b; } - var$4 = 1; - break a; } - var$4 = 0; + $i = $i + 1 | 0; } - return var$4; }, -oncie_SingleIterablePredicate__init_0 = ($this, $scope, $expression, $position) => { - $this.$scope11 = $scope; - $this.$expression38 = $expression; - $this.$position207 = $position; - oncie_Expression__init_($this); - oncie_SingleIterablePredicate$_$callClinit(); - $this.$name58 = oncie_SingleIterablePredicate$_name; +oavra_ParserATNSimulator_canDropLoopEntryEdgeInLeftRecursiveRule = ($this, $config) => { + let $p, $numCtxs, $i, $blockEndStateNum, $blockEndState, $returnStateNumber, $returnState, $returnStateTarget; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_TURN_OFF_LR_LOOP_ENTRY_BRANCH_OPT) + return 0; + $p = $config.$state0; + if ($p.$getStateType() == 10 && $p.$isPrecedenceDecision && !$config.$context.$isEmpty() && !oavra_PredictionContext_hasEmptyPath($config.$context)) { + $numCtxs = $config.$context.$size(); + $i = 0; + while (true) { + if ($i >= $numCtxs) { + $blockEndStateNum = (oavra_ATNState_transition($p, 0)).$target.$endState.$stateNumber; + $blockEndState = ju_ArrayList_get($this.$atn.$states, $blockEndStateNum); + $i = 0; + a: { + b: { + while ($i < $numCtxs) { + $returnStateNumber = $config.$context.$getReturnState($i); + $returnState = ju_ArrayList_get($this.$atn.$states, $returnStateNumber); + if (oavra_ATNState_getNumberOfTransitions($returnState) != 1) + break a; + if (!(oavra_ATNState_transition($returnState, 0)).$isEpsilon()) + break a; + $returnStateTarget = (oavra_ATNState_transition($returnState, 0)).$target; + if (!($returnState.$getStateType() == 8 && $returnStateTarget === $p) && $returnState !== $blockEndState && $returnStateTarget !== $blockEndState) { + if ($returnStateTarget.$getStateType() != 8) + break b; + if (oavra_ATNState_getNumberOfTransitions($returnStateTarget) != 1) + break b; + if (!(oavra_ATNState_transition($returnStateTarget, 0)).$isEpsilon()) + break b; + if ((oavra_ATNState_transition($returnStateTarget, 0)).$target !== $p) + break b; + } + $i = $i + 1 | 0; + } + return 1; + } + return 0; + } + return 0; + } + if ((ju_ArrayList_get($this.$atn.$states, $config.$context.$getReturnState($i))).$ruleIndex != $p.$ruleIndex) + break; + $i = $i + 1 | 0; + } + return 0; + } + return 0; }, -oncie_SingleIterablePredicate__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_SingleIterablePredicate(); - oncie_SingleIterablePredicate__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncie_QuantifiedPath$$apply$lambda$_1_0() { - jl_Object.call(this); - this.$_0719 = null; -} -let oncie_QuantifiedPath$$apply$lambda$_1_0_apply = (var$0, var$1) => { +oavra_ParserATNSimulator_getRuleName = ($this, $index) => { let var$2; - var$1 = var$1; - var$2 = var$0.$_0719; - return oncie_VariableGrouping__init_(oncie_Variable_copyId(var$1), oncie_Variable_withPosition(var$1, var$2), var$2); -}, -oncie_MultiOperatorExpression = $rt_classWithoutFields(0); -function oncie_Ands() { - let a = this; oncie_Expression.call(a); - a.$exprs0 = null; - a.$position294 = null; - a.$signatures10 = null; -} -let oncie_Ands_asCanonicalStringVal = $this => { - let var$1, var$2; - var$1 = sc_AbstractIterable_mkString(sc_StrictOptimizedIterableOps_map$($this.$exprs0, new oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0), $rt_s(45)); + var$2 = $this.$parser; + if (var$2 !== null && $index >= 0) + return (var$2.$getRuleNames()).data[$index]; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5610)), $rt_s(5611)), var$1); + jl_AbstractStringBuilder_append(var$2, $rt_s(4217)); + var$2 = jl_StringBuilder_append0(var$2, $index); + jl_AbstractStringBuilder_append(var$2, $rt_s(604)); return jl_AbstractStringBuilder_toString(var$2); }, -oncie_Ands_isConstantForQuery = $this => { - return sc_IterableOnceOps_forall$($this.$exprs0, new oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0); -}, -oncie_Ands_exprs = $this => { - return $this.$exprs0; -}, -oncie_Ands_position = $this => { - return $this.$position294; -}, -oncie_Ands_canonicalOperatorSymbol = $this => { - return $rt_s(5610); +oavra_ParserATNSimulator_precedenceTransition = ($this, $config, $pt, $collectPredicates, $inContext, $fullCtx) => { + let $newSemCtx, $c, $currentPosition, $predSucceeds; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_debug) { + $newSemCtx = jl_System_out(); + $c = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($c); + jl_AbstractStringBuilder_append($c, $rt_s(4210)); + $c = jl_StringBuilder_append3($c, $collectPredicates); + jl_AbstractStringBuilder_append($c, $rt_s(4211)); + $c = jl_StringBuilder_append0($c, $pt.$precedence0); + jl_AbstractStringBuilder_append($c, $rt_s(4218)); + otcic_JsConsolePrintStream_println($newSemCtx, jl_AbstractStringBuilder_toString($c)); + if ($this.$parser !== null) { + $c = jl_System_out(); + $newSemCtx = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($newSemCtx); + jl_AbstractStringBuilder_append($newSemCtx, $rt_s(4213)); + otcic_JsConsolePrintStream_println($c, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($newSemCtx, oavr_Parser_getRuleInvocationStack($this.$parser)))); + } + } + $c = null; + if ($collectPredicates && $inContext) { + if (!$fullCtx) { + $newSemCtx = oavra_SemanticContext_and($config.$semanticContext, oavra_PrecedencePredicateTransition_getPredicate($pt)); + $c = oavra_ATNConfig__init_4($config, $pt.$target, $newSemCtx); + } else { + $newSemCtx = $this.$_input1; + $currentPosition = $newSemCtx.$p; + oavr_BufferedTokenStream_seek($newSemCtx, $this.$_startIndex); + $predSucceeds = oavra_ParserATNSimulator_evalSemanticContext($this, oavra_PrecedencePredicateTransition_getPredicate($pt), $this.$_outerContext, $config.$alt0, $fullCtx); + oavr_BufferedTokenStream_seek($this.$_input1, $currentPosition); + if ($predSucceeds) + $c = oavra_ATNConfig__init_($config, $pt.$target); + } + } else + $c = oavra_ATNConfig__init_($config, $pt.$target); + if (oavra_ParserATNSimulator_debug) { + $config = jl_System_out(); + $pt = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($pt); + jl_AbstractStringBuilder_append($pt, $rt_s(4214)); + otcic_JsConsolePrintStream_println($config, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($pt, $c))); + } + return $c; }, -oncie_Ands_signatures = $this => { - return $this.$signatures10; +oavra_ParserATNSimulator_getConflictingAlts = ($this, $configs) => { + return oavra_PredictionMode_getAlts(oavra_PredictionMode_getConflictingAltSubsets($configs)); }, -oncie_Ands_productPrefix = $this => { - return $rt_s(5612); +oavra_ParserATNSimulator_getTokenName = ($this, $t) => { + let $vocabulary, $displayName; + if ($t == (-1)) + return $rt_s(4219); + $vocabulary = $this.$parser; + $displayName = oavr_VocabularyImpl_getDisplayName($vocabulary === null ? oavr_VocabularyImpl_EMPTY_VOCABULARY : $vocabulary.$getVocabulary(), $t); + if (jl_String_equals($displayName, jl_Integer_toString($t))) + return $displayName; + $vocabulary = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($vocabulary); + jl_AbstractStringBuilder_append($vocabulary, $displayName); + jl_AbstractStringBuilder_append($vocabulary, $rt_s(603)); + $vocabulary = jl_StringBuilder_append0($vocabulary, $t); + jl_AbstractStringBuilder_append($vocabulary, $rt_s(604)); + return jl_AbstractStringBuilder_toString($vocabulary); }, -oncie_Ands_productArity = $this => { - return 1; +oavra_ParserATNSimulator_getLookaheadName = ($this, $input) => { + return oavra_ParserATNSimulator_getTokenName($this, oavr_BufferedTokenStream_LA($input, 1)); }, -oncie_Ands_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$exprs0; - default: +oavra_ParserATNSimulator_noViableAlt = ($this, $input, $outerContext, $configs, $startIndex) => { + let var$5, var$6, var$7; + var$5 = new oavr_NoViableAltException; + var$6 = $this.$parser; + if ($startIndex >= 0) { + var$7 = $input.$tokens; + if ($startIndex < var$7.$size0) { + oavr_NoViableAltException__init_0(var$5, var$6, $input, ju_ArrayList_get(var$7, $startIndex), oavr_CommonTokenStream_LT($input, 1), $configs, $outerContext); + return var$5; + } } - return sr_Statics_ioobe($x$1); -}, -oncie_Ands_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); + $configs = new jl_IndexOutOfBoundsException; + $outerContext = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($outerContext); + jl_AbstractStringBuilder_append($outerContext, $rt_s(4220)); + $outerContext = jl_StringBuilder_append0($outerContext, $startIndex); + jl_AbstractStringBuilder_append($outerContext, $rt_s(4221)); + jl_Throwable__init_($configs, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($outerContext, $input.$tokens.$size0 - 1 | 0))); + $rt_throw($configs); }, -oncie_Ands_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oavra_ParserATNSimulator_getUniqueAlt = $configs => { + let $alt, $c; + oavra_ParserATNSimulator_$callClinit(); + $alt = 0; + $configs = oavra_ATNConfigSet_iterator($configs); + while (ju_AbstractList$1_hasNext($configs)) { + $c = ju_AbstractList$1_next($configs); + if (!$alt) + $alt = $c.$alt0; + else if ($c.$alt0 != $alt) + return 0; + } + return $alt; }, -oncie_Ands_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oavra_ParserATNSimulator_addDFAEdge = ($this, $dfa, $from, $t, $to) => { + let var$5, var$6, var$7, $$je; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_debug) { + var$5 = jl_System_out(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_AbstractStringBuilder_append(var$6, $rt_s(4222)); + var$6 = jl_StringBuilder_append(var$6, $from); + jl_AbstractStringBuilder_append(var$6, $rt_s(4157)); + var$6 = jl_StringBuilder_append(var$6, $to); + jl_AbstractStringBuilder_append(var$6, $rt_s(4223)); + jl_AbstractStringBuilder_append(var$6, oavra_ParserATNSimulator_getTokenName($this, $t)); + otcic_JsConsolePrintStream_println(var$5, jl_AbstractStringBuilder_toString(var$6)); + } + if ($to === null) + return null; + $to = oavra_ParserATNSimulator_addDFAState($this, $dfa, $to); + if ($from !== null && $t >= (-1)) { + var$7 = $this.$atn.$maxTokenType; + if ($t <= var$7) { + jl_Object_monitorEnterSync($from); + a: { + try { + if ($from.$edges === null) + $from.$edges = $rt_createArray(oavrd_DFAState, (var$7 + 1 | 0) + 1 | 0); + $from.$edges.data[$t + 1 | 0] = $to; + jl_Object_monitorExitSync($from); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $dfa = $$je; + + } + jl_Object_monitorExitSync($from); + $rt_throw($dfa); + } + if (oavra_ParserATNSimulator_debug) { + $from = jl_System_out(); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_AbstractStringBuilder_append(var$5, $rt_s(4224)); + var$6 = $this.$parser; + jl_AbstractStringBuilder_append(var$5, oavrd_DFA_toString($dfa, var$6 === null ? oavr_VocabularyImpl_EMPTY_VOCABULARY : var$6.$getVocabulary())); + otcic_JsConsolePrintStream_println($from, jl_AbstractStringBuilder_toString(var$5)); + } + return $to; + } + } + return $to; }, -oncie_Ands_equals = ($this, $x$1) => { - let var$2, var$3; +oavra_ParserATNSimulator_addDFAState = ($this, $dfa, $D) => { + let var$3, $existing, $$je; + oavra_ATNSimulator_$callClinit(); + if ($D === oavra_ATNSimulator_ERROR) + return $D; + var$3 = $dfa.$states0; + jl_Object_monitorEnterSync(var$3); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Ands) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$exprs0; - $x$1 = $x$1.$exprs0; - if (var$2 === null) { - if ($x$1 === null) - break c; - break b; - } - if (!sc_Set_equals$(var$2, $x$1)) - break b; - } - if (!($this instanceof oncie_Ands)) + try { + $existing = ju_HashMap_get(var$3, $D); + if ($existing === null) break b; + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_trace_atn_sim) + otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(4225)), $D), $rt_s(4226)))); + jl_Object_monitorExitSync(var$3); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $dfa = $$je; + break a; + } - var$3 = 1; + return $existing; + } + c: { + try { + $D.$stateNumber0 = ju_HashMap_size($dfa.$states0); + if (oavra_ATNConfigSet_isReadonly($D.$configs)) + break c; + oavra_ATNConfigSet_optimizeConfigs($D.$configs, $this); + oavra_ATNConfigSet_setReadonly($D.$configs, 1); + break c; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $dfa = $$je; + break a; + + } + } + d: { + try { + oavra_ParserATNSimulator_$callClinit(); + if (!oavra_ParserATNSimulator_trace_atn_sim) + break d; + otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(4227)), $D))); + break d; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $dfa = $$je; + break a; + + } + } + try { + ju_HashMap_put($dfa.$states0, $D, $D); + jl_Object_monitorExitSync(var$3); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $dfa = $$je; break a; + } - var$3 = 0; + return $D; } - return var$3; + jl_Object_monitorExitSync(var$3); + $rt_throw($dfa); }, -oncie_Ands__init_ = ($this, $exprs, $position) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9; - $this.$exprs0 = $exprs; - $this.$position294 = $position; - oncie_Expression__init_($this); - s_package$_$callClinit(); - var$3 = s_package$_Vector(s_package$_MODULE$); - $position = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); - oncie_TypeSignature$_$callClinit(); - var$5 = oncie_TypeSignature$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - var$7 = onciuci_ListSet_size($exprs); - $exprs = sci_Vector$_newBuilder(var$6); - var$8 = 0; - while (var$8 < var$7) { - oncius_package$_$callClinit(); - sci_VectorBuilder_addOne($exprs, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - var$8 = var$8 + 1 | 0; +oavra_ParserATNSimulator_reportAttemptingFullContext = ($this, $dfa, $conflictingAlts, $configs, $startIndex, $stopIndex) => { + let $interval, var$7; + oavra_ParserATNSimulator_$callClinit(); + if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_retry_debug)) { + $interval = oavrm_Interval_of($startIndex, $stopIndex); + $conflictingAlts = jl_System_out(); + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_AbstractStringBuilder_append(var$7, $rt_s(4228)); + $dfa = jl_StringBuilder_append0(var$7, $dfa.$decision); + jl_AbstractStringBuilder_append($dfa, $rt_s(92)); + $dfa = jl_StringBuilder_append($dfa, $configs); + jl_AbstractStringBuilder_append($dfa, $rt_s(4197)); + jl_AbstractStringBuilder_append($dfa, oavr_BufferedTokenStream_getText($this.$parser.$_input, $interval)); + otcic_JsConsolePrintStream_println($conflictingAlts, jl_AbstractStringBuilder_toString($dfa)); + } + $dfa = $this.$parser; + if ($dfa !== null) { + $dfa = juc_CopyOnWriteArrayList_iterator((oavr_Recognizer_getErrorListenerDispatch($dfa)).$delegates); + while (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext($dfa)) { + juc_CopyOnWriteArrayList$ListIteratorImpl_next($dfa); + } } - var$9 = var$4.data; - var$6 = sci_VectorBuilder_result($exprs); - oncius_package$_$callClinit(); - var$9[0] = oncie_TypeSignature$_apply(var$5, var$6, oncius_package$_CTBoolean(oncius_package$_MODULE$)); - $this.$signatures10 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$4)); -}, -oncie_Ands__init_0 = (var_0, var_1) => { - let var_2 = new oncie_Ands(); - oncie_Ands__init_(var_2, var_0, var_1); - return var_2; -}, -oncie_NormalForm = $rt_classWithoutFields(0), -oncie_NormalForm_description$ = $$this => { - return jl_String_valueOf($$this.$formName()); -}, -oncie_NFCNormalForm$ = $rt_classWithoutFields(), -oncie_NFCNormalForm$_MODULE$ = null, -oncie_NFCNormalForm$_formName0 = null, -oncie_NFCNormalForm$_$callClinit = () => { - oncie_NFCNormalForm$_$callClinit = $rt_eraseClinit(oncie_NFCNormalForm$); - oncie_NFCNormalForm$__clinit_(); -}, -oncie_NFCNormalForm$__clinit_ = () => { - let var$1; - var$1 = new oncie_NFCNormalForm$; - oncie_NFCNormalForm$_$callClinit(); - oncie_NFCNormalForm$_MODULE$ = var$1; - oncie_NFCNormalForm$_formName0 = $rt_s(4629); -}, -oncie_NFCNormalForm$_description = $this => { - return oncie_NormalForm_description$($this); -}, -oncie_NFCNormalForm$_toString = $this => { - return $this.$description(); -}, -oncie_NFCNormalForm$_formName = $this => { - oncie_NFCNormalForm$_$callClinit(); - return oncie_NFCNormalForm$_formName0; -}, -oncie_NFCNormalForm$_productArity = $this => { - return 0; -}, -oncie_NFCNormalForm$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_NFCNormalForm$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NFCNormalForm$_hashCode = $this => { - return (-364033482); -}, -oncie_NFDNormalForm$ = $rt_classWithoutFields(), -oncie_NFDNormalForm$_MODULE$ = null, -oncie_NFDNormalForm$_formName0 = null, -oncie_NFDNormalForm$_$callClinit = () => { - oncie_NFDNormalForm$_$callClinit = $rt_eraseClinit(oncie_NFDNormalForm$); - oncie_NFDNormalForm$__clinit_(); -}, -oncie_NFDNormalForm$__clinit_ = () => { - let var$1; - var$1 = new oncie_NFDNormalForm$; - oncie_NFDNormalForm$_$callClinit(); - oncie_NFDNormalForm$_MODULE$ = var$1; - oncie_NFDNormalForm$_formName0 = $rt_s(4630); -}, -oncie_NFDNormalForm$_description = $this => { - return oncie_NormalForm_description$($this); -}, -oncie_NFDNormalForm$_toString = $this => { - return $this.$description(); -}, -oncie_NFDNormalForm$_formName = $this => { - oncie_NFDNormalForm$_$callClinit(); - return oncie_NFDNormalForm$_formName0; -}, -oncie_NFDNormalForm$_productArity = $this => { - return 0; -}, -oncie_NFDNormalForm$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_NFDNormalForm$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NFDNormalForm$_hashCode = $this => { - return 2133982455; -}, -oncie_NFKCNormalForm$ = $rt_classWithoutFields(), -oncie_NFKCNormalForm$_MODULE$ = null, -oncie_NFKCNormalForm$_formName = null, -oncie_NFKCNormalForm$_$callClinit = () => { - oncie_NFKCNormalForm$_$callClinit = $rt_eraseClinit(oncie_NFKCNormalForm$); - oncie_NFKCNormalForm$__clinit_(); -}, -oncie_NFKCNormalForm$__clinit_ = () => { - let var$1; - var$1 = new oncie_NFKCNormalForm$; - oncie_NFKCNormalForm$_$callClinit(); - oncie_NFKCNormalForm$_MODULE$ = var$1; - oncie_NFKCNormalForm$_formName = $rt_s(4631); -}, -oncie_NFKCNormalForm$_description = $this => { - return oncie_NormalForm_description$($this); -}, -oncie_NFKCNormalForm$_toString = $this => { - return $this.$description(); -}, -oncie_NFKCNormalForm$_formName0 = $this => { - oncie_NFKCNormalForm$_$callClinit(); - return oncie_NFKCNormalForm$_formName; -}, -oncie_NFKCNormalForm$_productArity = $this => { - return 0; -}; -let oncie_NFKCNormalForm$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_NFKCNormalForm$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NFKCNormalForm$_hashCode = $this => { - return 1849737083; -}, -oncie_NFKDNormalForm$ = $rt_classWithoutFields(), -oncie_NFKDNormalForm$_MODULE$ = null, -oncie_NFKDNormalForm$_formName = null, -oncie_NFKDNormalForm$_$callClinit = () => { - oncie_NFKDNormalForm$_$callClinit = $rt_eraseClinit(oncie_NFKDNormalForm$); - oncie_NFKDNormalForm$__clinit_(); -}, -oncie_NFKDNormalForm$__clinit_ = () => { - let var$1; - var$1 = new oncie_NFKDNormalForm$; - oncie_NFKDNormalForm$_$callClinit(); - oncie_NFKDNormalForm$_MODULE$ = var$1; - oncie_NFKDNormalForm$_formName = $rt_s(4632); -}, -oncie_NFKDNormalForm$_description = $this => { - return oncie_NormalForm_description$($this); -}, -oncie_NFKDNormalForm$_toString = $this => { - return $this.$description(); -}, -oncie_NFKDNormalForm$_formName0 = $this => { - oncie_NFKDNormalForm$_$callClinit(); - return oncie_NFKDNormalForm$_formName; -}, -oncie_NFKDNormalForm$_productArity = $this => { - return 0; -}, -oncie_NFKDNormalForm$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncie_NFKDNormalForm$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncie_NFKDNormalForm$_hashCode = $this => { - return 52785724; -}, -sc_WithFilter = $rt_classWithoutFields(); -function sc_IterableOps$WithFilter() { - let a = this; sc_WithFilter.call(a); - a.$self1 = null; - a.$p3 = null; -} -let sc_IterableOps$WithFilter_filtered = $this => { - return sc_View$Filter__init_($this.$self1, $this.$p3, 0); -}, -sc_IterableOps$WithFilter_flatMap = ($this, $f) => { - return ($this.$self1.$iterableFactory()).$from0(sc_View$FlatMap__init_(sc_IterableOps$WithFilter_filtered($this), $f)); -}, -sc_IterableOps$WithFilter_foreach = ($this, $f) => { - sc_IterableOnceOps_foreach$(sc_IterableOps$WithFilter_filtered($this), $f); -}; -function sc_View$ZipWithIndex() { - sc_AbstractView.call(this); - this.$underlying35 = null; -} -let sc_View$ZipWithIndex_iterator = $this => { - return sc_AbstractIterator_zipWithIndex(sc_IndexedSeqOps_iterator$($this.$underlying35)); -}, -sc_View$ZipWithIndex_knownSize = $this => { - return $this.$underlying35.$length(); -}, -oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0 = $rt_classWithoutFields(), -oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0_apply = (var$0, var$1) => { - var$1 = var$1.$sortItems.$map(new oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0); - oncie_containsAggregate$_$callClinit(); - return jl_Boolean_valueOf(var$1.$exists(oncie_containsAggregate$_MODULE$)); -}; -function oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0() { - jl_Object.call(this); - this.$_0593 = null; -} -let oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0593; - oncirr_expandShowWhere$_$callClinit(); - return var$1; -}; -function sc_View$Filter() { - let a = this; sc_AbstractView.call(a); - a.$underlying34 = null; - a.$p2 = null; - a.$isFlipped = 0; -} -let sc_View$Filter_iterator = $this => { - return ($this.$underlying34.$iterator0()).$filterImpl0($this.$p2, $this.$isFlipped); -}, -sc_View$Filter_knownSize = $this => { - if ($this.$underlying34.$knownSize()) - return (-1); - return 0; -}, -sc_View$Filter_isEmpty = $this => { - return sc_Iterator_isEmpty$(sc_View$Filter_iterator($this)); -}, -sc_View$Filter__init_0 = ($this, $underlying, $p, $isFlipped) => { - $this.$underlying34 = $underlying; - $this.$p2 = $p; - $this.$isFlipped = $isFlipped; -}, -sc_View$Filter__init_ = (var_0, var_1, var_2) => { - let var_3 = new sc_View$Filter(); - sc_View$Filter__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0() { - jl_Object.call(this); - this.$_0108 = null; -} -let oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0108; - return oncie_Variable__init_(var$1.$name46, var$1.$expression17.$position()); -}, -oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0 = $rt_classWithoutFields(), -oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncirr_rewriteShowQuery$_$callClinit(); - return var$1.$name20; -}; -function scc_JavaCollectionWrappers$JIteratorWrapper() { - sc_AbstractIterator.call(this); - this.$underlying25 = null; -} -let scc_JavaCollectionWrappers$JIteratorWrapper_hasNext = $this => { - return $this.$underlying25.$hasNext(); -}, -scc_JavaCollectionWrappers$JIteratorWrapper_next = $this => { - return $this.$underlying25.$next(); -}, -oncias_SemanticCheck$ = $rt_classWithoutFields(), -oncias_SemanticCheck$_MODULE$ = null, -oncias_SemanticCheck$_success0 = null, -oncias_SemanticCheck$_DEBUG_ENABLED = 0, -oncias_SemanticCheck$_$callClinit = () => { - oncias_SemanticCheck$_$callClinit = $rt_eraseClinit(oncias_SemanticCheck$); - oncias_SemanticCheck$__clinit_(); -}, -oncias_SemanticCheck$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticCheck$; - oncias_SemanticCheck$_$callClinit(); - oncias_SemanticCheck$_MODULE$ = var$1; - oncias_SemanticCheck$_success0 = oncias_SemanticCheck$_fromFunction(var$1, new oncias_SemanticCheck$$_clinit_$lambda$_0_0); - oncias_SemanticCheck$_DEBUG_ENABLED = 0; -}, -oncias_SemanticCheck$_success = $this => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success0; -}, -oncias_SemanticCheck$_error = ($this, $errors) => { - let var$2; - var$2 = new oncias_SemanticCheck$$error$lambda$_2_0; - var$2.$_0423 = $errors; - return oncias_SemanticCheck$_fromFunction($this, var$2); -}, -oncias_SemanticCheck$_fromFunction = ($this, $f) => { - let var$2; - var$2 = new oncias_SemanticCheck$Leaf; - var$2.$f2 = $f; - return var$2; -}, -oncias_SemanticCheck$_setState = ($this, $s) => { - let var$2; - var$2 = new oncias_SemanticCheck$$setState$lambda$_7_0; - var$2.$_0714 = $s; - return oncias_SemanticCheck$_fromFunction($this, var$2); -}, -oncias_SemanticCheck$_fromState = ($this, $f) => { - let var$2, var$3; - var$2 = oncias_SemanticCheck$_success($this); - var$3 = new oncias_SemanticCheck$$fromState$lambda$_8_0; - var$3.$_0118 = $f; - return oncias_SemanticCheck_flatMap$(var$2, var$3); -}, -oncias_SemanticCheck$_fromFunctionWithContext = ($this, $f) => { - let var$2; - var$2 = new oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0; - var$2.$_0654 = $f; - $f = new oncias_SemanticCheck$CheckFromContext; - $f.$f4 = var$2; - return $f; -}, -oncias_SemanticCheck$_nestedCheck = ($this, $check) => { - let var$2, var$3; - var$2 = oncias_SemanticCheck$_success($this); - var$3 = new oncias_SemanticCheck$$nestedCheck$lambda$_11_0; - var$3.$_0747 = $check; - return oncias_SemanticCheck_flatMap$(var$2, var$3); -}, -oncias_SemanticCheck$_when = ($this, $condition, $check) => { - if (!$condition) - return oncias_SemanticCheck$_success($this); - return $check.$apply4(); -}, -oncia_SingleQuery$checkStandaloneCall$lambda$_77_0 = $rt_classWithoutFields(), -oncia_SingleQuery$checkStandaloneCall$lambda$_77_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncia_UnresolvedCall); -}, -oncia_SingleQuery$checkStandaloneCall$lambda$_77_1 = $rt_classWithoutFields(), -oncia_SingleQuery$checkStandaloneCall$lambda$_77_1_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(!(var$1 instanceof oncia_UnresolvedCall) ? 0 : var$1.$yieldAll2); -}; -function oncia_SingleQuery$checkStandaloneCall$lambda$_77_2() { - jl_Object.call(this); - this.$_0448 = null; -} -let oncia_SingleQuery$checkStandaloneCall$lambda$_77_2_apply = (var$0, var$1) => { - var$1 = var$1; - return oncias_SemanticAnalysisTooling_error$(var$0.$_0448, $rt_s(5613), var$1.$position()); -}, -oncia_SingleQuery$checkStandaloneCall$lambda$_77_3 = $rt_classWithoutFields(), -oncia_SingleQuery$checkStandaloneCall$lambda$_77_3_apply = var$0 => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_0 = $rt_classWithoutFields(), -oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_CommandClause)); +oavra_ParserATNSimulator_reportAmbiguity = ($this, $dfa, $D, $startIndex, $stopIndex, $exact, $ambigAlts, $configs) => { + let $interval; + oavra_ParserATNSimulator_$callClinit(); + if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_retry_debug)) { + $interval = oavrm_Interval_of($startIndex, $stopIndex); + $D = jl_System_out(); + $dfa = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($dfa); + jl_AbstractStringBuilder_append($dfa, $rt_s(4229)); + $dfa = jl_StringBuilder_append($dfa, $ambigAlts); + jl_AbstractStringBuilder_append($dfa, $rt_s(92)); + $ambigAlts = jl_StringBuilder_append($dfa, $configs); + jl_AbstractStringBuilder_append($ambigAlts, $rt_s(4197)); + jl_AbstractStringBuilder_append($ambigAlts, oavr_BufferedTokenStream_getText($this.$parser.$_input, $interval)); + otcic_JsConsolePrintStream_println($D, jl_AbstractStringBuilder_toString($ambigAlts)); + } + $dfa = $this.$parser; + if ($dfa !== null) { + $dfa = juc_CopyOnWriteArrayList_iterator((oavr_Recognizer_getErrorListenerDispatch($dfa)).$delegates); + while (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext($dfa)) { + juc_CopyOnWriteArrayList$ListIteratorImpl_next($dfa); + } + } }, -oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_1 = $rt_classWithoutFields(), -oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_TransactionsCommandClause) ? 0 : 1); -}; -function oncia_SingleQuery$checkOrder$lambda$_79_0() { - let a = this; jl_Object.call(a); - a.$_0622 = null; - a.$_1212 = null; - a.$_270 = 0; -} -let oncia_SingleQuery$checkOrder$lambda$_79_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncia_SingleQuery_$anonfun$checkOrder$1(var$0.$_0622, var$0.$_1212, var$0.$_270, var$1); -}; -function oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_80_0() { - let a = this; jl_Object.call(a); - a.$_089 = null; - a.$_136 = null; -} -let oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_80_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6, var$7; +oavra_ParserATNSimulator__clinit_ = () => { + let var$1, $$je; + oavra_ParserATNSimulator_$assertionsDisabled = 0; + oavra_ParserATNSimulator_debug = 0; + oavra_ParserATNSimulator_trace_atn_sim = 0; + oavra_ParserATNSimulator_dfa_debug = 0; + oavra_ParserATNSimulator_retry_debug = 0; + oavra_ParserATNSimulator_$callClinit(); a: { - var$1 = var$1; - var$2 = var$2; - var$3 = var$0.$_089; - var$4 = var$0.$_136; - var$5 = s_Tuple2__init_(var$1, var$2); - var$1 = var$5.$_10; - var$2 = var$5.$_20; - if (var$1 !== null) { - var$6 = var$1.$precedingWrite; - var$7 = var$1.$errors1; - if ($rt_isInstance(var$2, oncia_SubqueryCall)) { - var$1 = var$2; - oncia_SubqueryCall$_$callClinit(); - if (oncia_SubqueryCall$_isTransactionalSubquery(oncia_SubqueryCall$_MODULE$, var$1)) { - if (!var$6) { - var$1 = oncia_SingleQuery$Acc$2$_apply(oncia_SingleQuery_Acc$3(var$3, var$4), var$6, var$7); - break a; - } - var$3 = oncia_SingleQuery_Acc$3(var$3, var$4); - oncias_SemanticError$_$callClinit(); - var$1 = oncia_SingleQuery$Acc$2$_apply(var$3, var$6, var$7.$appended(oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(5614), var$1.$position()))); - break a; - } + try { + var$1 = js_AccessController_doPrivileged(oavra_ParserATNSimulator$1__init_($rt_s(4230))); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_SecurityException) { + } else { + throw $$e; } } - var$1 = var$5.$_10; - var$2 = var$5.$_20; - var$1 = oncia_SingleQuery$Acc$2$_apply(oncia_SingleQuery_Acc$3(var$3, var$4), !var$1.$precedingWrite && !onciu_Foldable$Folder_treeExists(var$2.$folder(), new oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1) ? 0 : 1, var$1.$errors1); + var$1 = null; } - return var$1; -}; -function oncia_SingleQuery$Acc$1() { - let a = this; jl_Object.call(a); - a.$precedingWrite = 0; - a.$errors1 = null; - a.$$outer65 = null; -} -let oncia_SingleQuery$Acc$1_productPrefix = $this => { - return $rt_s(5615); + oavra_ParserATNSimulator_TURN_OFF_LR_LOOP_ENTRY_BRANCH_OPT = jl_Boolean_parseBoolean(var$1); }, -oncia_SingleQuery$Acc$1_productArity = $this => { - return 2; +oavra_PredictionMode = $rt_classWithoutFields(jl_Enum), +oavra_PredictionMode_SLL = null, +oavra_PredictionMode_LL = null, +oavra_PredictionMode_LL_EXACT_AMBIG_DETECTION = null, +oavra_PredictionMode_$VALUES = null, +oavra_PredictionMode_values = () => { + return oavra_PredictionMode_$VALUES.$clone0(); }, -oncia_SingleQuery$Acc$1_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Boolean_valueOf($this.$precedingWrite); - case 1: - return $this.$errors1; - default: +oavra_PredictionMode_allConfigsInRuleStopStates = $configs => { + $configs = oavra_ATNConfigSet_iterator($configs); + while (ju_AbstractList$1_hasNext($configs)) { + if (!((ju_AbstractList$1_next($configs)).$state0 instanceof oavra_RuleStopState)) + return 0; } - return sr_Statics_ioobe($x$1); -}, -oncia_SingleQuery$Acc$1_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SingleQuery$Acc$1_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5615))), !$this.$precedingWrite ? 1237 : 1231), sr_Statics_anyHash($this.$errors1)), 2); -}, -oncia_SingleQuery$Acc$1_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return 1; }, -oncia_SingleQuery$Acc$1_equals = ($this, $x$1) => { - let var$2, var$3; +oavra_PredictionMode_allSubsetsConflict = $altsets => { + let var$2; + $altsets = ju_AbstractList_iterator($altsets); a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SingleQuery$Acc$1) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$precedingWrite != $x$1.$precedingWrite) - break b; - c: { - var$2 = $this.$errors1; - $x$1 = $x$1.$errors1; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SingleQuery$Acc$1)) - break b; + while (ju_AbstractList$1_hasNext($altsets)) { + if (ju_BitSet_cardinality(ju_AbstractList$1_next($altsets)) == 1) { + var$2 = 1; + break a; } - var$3 = 1; - break a; } - var$3 = 0; + var$2 = 0; } - return var$3; -}, -oncia_SingleQuery$checkInputDataStream$lambda$_83_0 = $rt_classWithoutFields(), -oncia_SingleQuery$checkInputDataStream$lambda$_83_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncia_InputDataStream); -}, -oncia_InputDataStream = $rt_classWithoutFields(), -oncias_IterableOnceSemanticChecking$ = $rt_classWithoutFields(), -oncias_IterableOnceSemanticChecking$_MODULE$ = null, -oncias_IterableOnceSemanticChecking$_$callClinit = () => { - oncias_IterableOnceSemanticChecking$_$callClinit = $rt_eraseClinit(oncias_IterableOnceSemanticChecking$); - oncias_IterableOnceSemanticChecking$__clinit_(); -}, -oncias_IterableOnceSemanticChecking$__clinit_ = () => { - let var$1; - var$1 = new oncias_IterableOnceSemanticChecking$; - oncias_IterableOnceSemanticChecking$_$callClinit(); - oncias_IterableOnceSemanticChecking$_MODULE$ = var$1; -}, -oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension = ($this, $$this, $check) => { - let var$3, var$4; - var$3 = $$this.$iterator0(); - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - var$4 = new oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0; - var$4.$_0660 = $check; - return var$3.$foldLeft($$this, var$4); -}, -oncia_SingleQuery$$anonfun$checkUsePosition$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_SingleQuery$$anonfun$checkUsePosition$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - return !($x instanceof oncia_UseGraph) ? $default.$apply2($x) : $x; -}; -function oncia_SingleQuery$checkUsePosition$lambda$_85_0() { - let a = this; jl_Object.call(a); - a.$_0790 = null; - a.$_1266 = null; -} -let oncia_SingleQuery$checkUsePosition$lambda$_85_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncias_SemanticAnalysisTooling_error$(var$0.$_0790, var$0.$_1266, var$1.$position30); -}; -function oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0() { - jl_Object.call(this); - this.$_0433 = null; -} -let oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0433; - return oncie_Variable__init_(var$1, var$2.$position()); -}; -function oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0() { - jl_Object.call(this); - this.$_0817 = null; -} -let oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$0.$_0817; - var$2 = var$1.$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck(); - oncias_package$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(var$2, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0)); - var$4 = var$1.$defaultColumnSet(); - var$2 = new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1; - var$2.$_0560 = var$1; - var$5 = oncias_SemanticCheck_chain$(var$3, var$1.$semanticCheckFold(var$4, var$2)); - var$2 = var$1.$folder(); - var$4 = new oncia_ReadAdministrationCommand$$anonfun$1; - sr_ClassTag$_$callClinit(); - var$4 = onciu_Foldable$Folder_treeFind(var$2, var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); - var$2 = new oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0; - var$2.$_01163 = var$1; - var$6 = oncias_SemanticCheck_chain$(var$5, s_Option_getOrElse(s_Option_map(var$4, var$2), new oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1)); - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - var$7 = sci_$colon$colon__init_(var$1.$yields(), sci_$colon$colon__init_(var$1.$returns(), sci_Nil$_MODULE$)); - var$4 = new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2; - var$4.$_01119 = var$1; - return oncias_SemanticCheck_chain$(var$6, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$7, var$4)); -}, -oncifp_ResolvedFunctionInvocation$ = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$_MODULE$ = null, -oncifp_ResolvedFunctionInvocation$_$callClinit = () => { - oncifp_ResolvedFunctionInvocation$_$callClinit = $rt_eraseClinit(oncifp_ResolvedFunctionInvocation$); - oncifp_ResolvedFunctionInvocation$__clinit_(); -}, -oncifp_ResolvedFunctionInvocation$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ResolvedFunctionInvocation$; - oncifp_ResolvedFunctionInvocation$_$callClinit(); - oncifp_ResolvedFunctionInvocation$_MODULE$ = var$1; -}; -function oncifp_RewriteProcedureCalls$resolveFunction$lambda$_9_0() { - jl_Object.call(this); - this.$_01212 = null; -} -let scc_JavaCollectionWrappers$MutableBufferWrapper = $rt_classWithoutFields(ju_AbstractList); -function oncia_UnmappedUnion$$init$$lambda$_16_0() { - jl_Object.call(this); - this.$_012 = null; -} -let oncia_UnmappedUnion$$init$$lambda$_16_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_012; - var$3 = oncia_Query_returnColumns$(var$2.$rhs()); - var$4 = new oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0; - var$4.$_0328 = var$1; - var$4 = sci_List_find(var$3, var$4); - var$3 = new oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1; - var$3.$_01157 = var$2; - var$3.$_1387 = var$1; - return s_Option_map(var$4, var$3); -}, -oncia_NodeKey = $rt_classWithoutFields(0), -oncia_NodeKey_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq($rt_s(5616)); -}, -oncia_NodeKeyCypher25$ = $rt_classWithoutFields(), -oncia_NodeKeyCypher25$_MODULE$ = null, -oncia_NodeKeyCypher25$_predicate = null, -oncia_NodeKeyCypher25$_description = null, -oncia_NodeKeyCypher25$_$callClinit = () => { - oncia_NodeKeyCypher25$_$callClinit = $rt_eraseClinit(oncia_NodeKeyCypher25$); - oncia_NodeKeyCypher25$__clinit_(); + return var$2 ? 0 : 1; }, -oncia_NodeKeyCypher25$__clinit_ = () => { - let var$1; - var$1 = new oncia_NodeKeyCypher25$; - oncia_NodeKeyCypher25$_$callClinit(); - oncia_NodeKeyCypher25$_MODULE$ = var$1; - oncia_NodeKey_$init$(var$1); - oncia_NodeKeyCypher25$_predicate = $rt_s(5617); +oavra_PredictionMode_getAlts = $altsets => { + let $all; + $all = ju_BitSet__init_(); + $altsets = ju_AbstractList_iterator($altsets); + while (ju_AbstractList$1_hasNext($altsets)) { + ju_BitSet_or($all, ju_AbstractList$1_next($altsets)); + } + return $all; }, -oncia_NodeKeyCypher25$_description0 = $this => { - oncia_NodeKeyCypher25$_$callClinit(); - return oncia_NodeKeyCypher25$_description; +oavra_PredictionMode_getConflictingAltSubsets = $configs => { + let $configToAlts, $c, $alts, var$5, var$6, var$7, var$8; + $configToAlts = new oavra_PredictionMode$AltAndContextMap; + $c = oavra_PredictionMode$AltAndContextConfigEqualityComparator_INSTANCE; + $configToAlts.$n0 = 0; + $configToAlts.$currentPrime = 1; + if ($c === null) { + oavrm_ObjectEqualityComparator_$callClinit(); + $c = oavrm_ObjectEqualityComparator_INSTANCE; + } + $configToAlts.$comparator = $c; + $configToAlts.$initialCapacity0 = 16; + $configToAlts.$initialBucketCapacity0 = 8; + $configToAlts.$threshold1 = jl_Math_floor(12.0) | 0; + $configToAlts.$buckets = $rt_createArray(ju_LinkedList, 8); + $configs = oavra_ATNConfigSet_iterator($configs); + while (ju_AbstractList$1_hasNext($configs)) { + a: { + $c = ju_AbstractList$1_next($configs); + if ($c === null) + $alts = null; + else { + var$5 = oavrm_FlexibleHashMap_getBucket($configToAlts, $c); + $alts = $configToAlts.$buckets.data[var$5]; + if ($alts === null) + $alts = null; + else { + $alts = ju_AbstractSequentialList_iterator($alts); + while (ju_LinkedList$SequentialListIterator_hasNext($alts)) { + var$6 = ju_LinkedList$SequentialListIterator_next($alts); + if ($configToAlts.$comparator.$equals0(var$6.$key6, $c)) { + $alts = var$6.$value19; + break a; + } + } + $alts = null; + } + } + } + if ($alts === null) { + $alts = ju_BitSet__init_(); + oavrm_FlexibleHashMap_put($configToAlts, $c, $alts); + } + ju_BitSet_set($alts, $c.$alt0); + } + $configs = ju_ArrayList__init_0($configToAlts.$n0); + var$7 = $configToAlts.$buckets.data; + var$5 = var$7.length; + var$8 = 0; + while (var$8 < var$5) { + b: { + $configToAlts = var$7[var$8]; + if ($configToAlts !== null) { + $configToAlts = ju_AbstractSequentialList_iterator($configToAlts); + while (true) { + if (!ju_LinkedList$SequentialListIterator_hasNext($configToAlts)) + break b; + ju_ArrayList_add($configs, (ju_LinkedList$SequentialListIterator_next($configToAlts)).$value19); + } + } + } + var$8 = var$8 + 1 | 0; + } + return $configs; }, -oncia_NodeKeyCypher25$_org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq = ($this, $x$1) => { - oncia_NodeKeyCypher25$_$callClinit(); - oncia_NodeKeyCypher25$_description = $x$1; +oavra_PredictionMode_getStateToAltMap = $configs => { + let $m, $c, $alts; + $m = ju_HashMap__init_(); + $configs = oavra_ATNConfigSet_iterator($configs); + while (ju_AbstractList$1_hasNext($configs)) { + $c = ju_AbstractList$1_next($configs); + $alts = ju_HashMap_get($m, $c.$state0); + if ($alts === null) { + $alts = ju_BitSet__init_(); + ju_HashMap_put($m, $c.$state0, $alts); + } + ju_BitSet_set($alts, $c.$alt0); + } + return $m; }, -oncia_NodeKeyCypher25$_productArity = $this => { +oavra_PredictionMode_getSingleViableAlt = $altsets => { + let $viableAlts; + $viableAlts = ju_BitSet__init_(); + $altsets = ju_AbstractList_iterator($altsets); + while (true) { + if (!ju_AbstractList$1_hasNext($altsets)) + return ju_BitSet_nextSetBit($viableAlts, 0); + ju_BitSet_set($viableAlts, ju_BitSet_nextSetBit(ju_AbstractList$1_next($altsets), 0)); + if (ju_BitSet_cardinality($viableAlts) > 1) + break; + } return 0; +}; +let oavra_PredictionMode__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new oavra_PredictionMode; + jl_Enum__init_(var$1, $rt_s(4231), 0); + oavra_PredictionMode_SLL = var$1; + var$1 = new oavra_PredictionMode; + jl_Enum__init_(var$1, $rt_s(4232), 1); + oavra_PredictionMode_LL = var$1; + var$1 = new oavra_PredictionMode; + jl_Enum__init_(var$1, $rt_s(4233), 2); + oavra_PredictionMode_LL_EXACT_AMBIG_DETECTION = var$1; + var$2 = $rt_createArray(oavra_PredictionMode, 3); + var$3 = var$2.data; + var$3[0] = oavra_PredictionMode_SLL; + var$3[1] = oavra_PredictionMode_LL; + var$3[2] = var$1; + oavra_PredictionMode_$VALUES = var$2; }, -oncia_NodeKeyCypher25$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_ANTLRErrorStrategy = $rt_classWithoutFields(0); +function oavr_DefaultErrorStrategy() { + let a = this; jl_Object.call(a); + a.$errorRecoveryMode = 0; + a.$lastErrorIndex = 0; + a.$lastErrorStates = null; + a.$nextTokensContext = null; + a.$nextTokensState = 0; +} +let oavr_DefaultErrorStrategy__init_ = $this => { + $this.$errorRecoveryMode = 0; + $this.$lastErrorIndex = (-1); }, -oncia_NodeKeyCypher25$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_DefaultErrorStrategy__init_0 = () => { + let var_0 = new oavr_DefaultErrorStrategy(); + oavr_DefaultErrorStrategy__init_(var_0); + return var_0; }, -oncia_NodeKeyCypher25$_hashCode = $this => { - return (-1906001509); +oavr_DefaultErrorStrategy_reset = ($this, $recognizer) => { + oavr_DefaultErrorStrategy_endErrorCondition($this, $recognizer); }, -oncia_NodeKeyCypher25$_toString = $this => { - return $rt_s(5618); +oavr_DefaultErrorStrategy_beginErrorCondition = ($this, $recognizer) => { + $this.$errorRecoveryMode = 1; }, -oncia_NodeKeyCypher5$ = $rt_classWithoutFields(), -oncia_NodeKeyCypher5$_MODULE$ = null, -oncia_NodeKeyCypher5$_predicate = null, -oncia_NodeKeyCypher5$_description = null, -oncia_NodeKeyCypher5$_$callClinit = () => { - oncia_NodeKeyCypher5$_$callClinit = $rt_eraseClinit(oncia_NodeKeyCypher5$); - oncia_NodeKeyCypher5$__clinit_(); +oavr_DefaultErrorStrategy_inErrorRecoveryMode = ($this, $recognizer) => { + return $this.$errorRecoveryMode; }, -oncia_NodeKeyCypher5$__clinit_ = () => { - let var$1; - var$1 = new oncia_NodeKeyCypher5$; - oncia_NodeKeyCypher5$_$callClinit(); - oncia_NodeKeyCypher5$_MODULE$ = var$1; - oncia_NodeKey_$init$(var$1); - oncia_NodeKeyCypher5$_predicate = $rt_s(4478); +oavr_DefaultErrorStrategy_endErrorCondition = ($this, $recognizer) => { + $this.$errorRecoveryMode = 0; + $this.$lastErrorStates = null; + $this.$lastErrorIndex = (-1); }, -oncia_NodeKeyCypher5$_description0 = $this => { - oncia_NodeKeyCypher5$_$callClinit(); - return oncia_NodeKeyCypher5$_description; +oavr_DefaultErrorStrategy_reportMatch = ($this, $recognizer) => { + oavr_DefaultErrorStrategy_endErrorCondition($this, $recognizer); }, -oncia_NodeKeyCypher5$_org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq = ($this, $x$1) => { - oncia_NodeKeyCypher5$_$callClinit(); - oncia_NodeKeyCypher5$_description = $x$1; +oavr_DefaultErrorStrategy_reportError = ($this, $recognizer, $e) => { + let var$3, var$4; + if ($this.$errorRecoveryMode) + return; + oavr_DefaultErrorStrategy_beginErrorCondition($this, $recognizer); + if ($e instanceof oavr_NoViableAltException) + oavr_DefaultErrorStrategy_reportNoViableAlternative($this, $recognizer, $e); + else if ($e instanceof oavr_InputMismatchException) + oavr_DefaultErrorStrategy_reportInputMismatch($this, $recognizer, $e); + else if ($e instanceof oavr_FailedPredicateException) + oavr_DefaultErrorStrategy_reportFailedPredicate($this, $recognizer, $e); + else { + var$3 = jl_System_err(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append(var$4, $rt_s(4234)); + jl_AbstractStringBuilder_append(var$4, jl_Class_getName(jl_Object_getClass($e))); + otcic_JsConsolePrintStream_println(var$3, jl_AbstractStringBuilder_toString(var$4)); + $recognizer.$notifyErrorListeners($e.$offendingToken, $e.$message, $e); + } }, -oncia_NodeKeyCypher5$_productArity = $this => { - return 0; +oavr_DefaultErrorStrategy_recover = ($this, $recognizer, $e) => { + if ($this.$lastErrorIndex == $recognizer.$_input.$p) { + $e = $this.$lastErrorStates; + if ($e !== null && oavrm_IntervalSet_contains($e, $recognizer.$_stateNumber)) + oavr_Parser_consume($recognizer); + } + $this.$lastErrorIndex = $recognizer.$_input.$p; + if ($this.$lastErrorStates === null) + $this.$lastErrorStates = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavrm_IntervalSet_add($this.$lastErrorStates, $recognizer.$_stateNumber); + oavr_DefaultErrorStrategy_consumeUntil($this, $recognizer, oavr_DefaultErrorStrategy_getErrorRecoverySet($this, $recognizer)); }, -oncia_NodeKeyCypher5$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_DefaultErrorStrategy_sync = ($this, $recognizer) => { + let $s, $la, $nextTokens, $expecting, $whatFollowsLoopIterationOrRule; + $s = ju_ArrayList_get($recognizer.$_interp.$atn.$states, $recognizer.$_stateNumber); + if ($this.$errorRecoveryMode) + return; + $la = oavr_BufferedTokenStream_LA($recognizer.$_input, 1); + $nextTokens = oavra_ATN_nextTokens($recognizer.$getATN(), $s); + if (oavrm_IntervalSet_contains($nextTokens, $la)) { + $this.$nextTokensContext = null; + $this.$nextTokensState = (-1); + return; + } + if (oavrm_IntervalSet_contains($nextTokens, (-2))) { + if ($this.$nextTokensContext === null) { + $this.$nextTokensContext = $recognizer.$_ctx; + $this.$nextTokensState = $recognizer.$_stateNumber; + } + return; + } + a: { + switch ($s.$getStateType()) { + case 3: + case 4: + case 5: + case 10: + break; + case 6: + case 7: + case 8: + break a; + case 9: + case 11: + oavr_DefaultErrorStrategy_reportUnwantedToken($this, $recognizer); + $expecting = oavr_Parser_getExpectedTokens($recognizer); + $s = oavr_DefaultErrorStrategy_getErrorRecoverySet($this, $recognizer); + $whatFollowsLoopIterationOrRule = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavrm_IntervalSet_addAll($whatFollowsLoopIterationOrRule, $expecting); + oavrm_IntervalSet_addAll($whatFollowsLoopIterationOrRule, $s); + oavr_DefaultErrorStrategy_consumeUntil($this, $recognizer, $whatFollowsLoopIterationOrRule); + break a; + default: + break a; + } + if (oavr_DefaultErrorStrategy_singleTokenDeletion($this, $recognizer) !== null) + return; + $rt_throw(oavr_InputMismatchException__init_($recognizer)); + } }, -oncia_NodeKeyCypher5$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_DefaultErrorStrategy_reportNoViableAlternative = ($this, $recognizer, $e) => { + let var$3, $input, $msg; + var$3 = $recognizer.$_input; + if (var$3 === null) + $input = $rt_s(4235); + else if ($e.$startToken.$getType0() == (-1)) + $input = $rt_s(4236); + else { + $input = $e.$startToken; + $msg = $e.$offendingToken; + $input = $input !== null && $msg !== null ? oavr_BufferedTokenStream_getText(var$3, oavrm_Interval_of($input.$getTokenIndex(), $msg.$getTokenIndex())) : $rt_s(4); + } + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append(var$3, $rt_s(4237)); + jl_AbstractStringBuilder_append(var$3, oavr_DefaultErrorStrategy_escapeWSAndQuote($this, $input)); + $msg = jl_AbstractStringBuilder_toString(var$3); + $recognizer.$notifyErrorListeners($e.$offendingToken, $msg, $e); }, -oncia_NodeKeyCypher5$_hashCode = $this => { - return (-754220579); +oavr_DefaultErrorStrategy_reportInputMismatch = ($this, $recognizer, $e) => { + let var$3, $msg; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append(var$3, $rt_s(4238)); + jl_AbstractStringBuilder_append(var$3, oavr_DefaultErrorStrategy_getTokenErrorDisplay($this, $e.$offendingToken)); + jl_AbstractStringBuilder_append(var$3, $rt_s(4239)); + jl_AbstractStringBuilder_append(var$3, oavrm_IntervalSet_toString(oavr_RecognitionException_getExpectedTokens($e), $recognizer.$getVocabulary())); + $msg = jl_AbstractStringBuilder_toString(var$3); + $recognizer.$notifyErrorListeners($e.$offendingToken, $msg, $e); }, -oncia_NodeKeyCypher5$_toString = $this => { - return $rt_s(5619); +oavr_DefaultErrorStrategy_reportFailedPredicate = ($this, $recognizer, $e) => { + let $ruleName, $msg; + $ruleName = ($recognizer.$getRuleNames()).data[$recognizer.$_ctx.$getRuleIndex()]; + $msg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($msg); + jl_AbstractStringBuilder_append($msg, $rt_s(4240)); + jl_AbstractStringBuilder_append($msg, $ruleName); + jl_AbstractStringBuilder_append($msg, $rt_s(370)); + jl_AbstractStringBuilder_append($msg, $e.$getMessage()); + $msg = jl_AbstractStringBuilder_toString($msg); + $recognizer.$notifyErrorListeners($e.$getOffendingToken(), $msg, $e); }, -oncia_RelationshipKey = $rt_classWithoutFields(0), -oncia_RelationshipKey_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq($rt_s(5620)); +oavr_DefaultErrorStrategy_reportUnwantedToken = ($this, $recognizer) => { + let $t, $tokenName, $expecting, $msg; + if ($this.$errorRecoveryMode) + return; + oavr_DefaultErrorStrategy_beginErrorCondition($this, $recognizer); + $t = oavr_Parser_getCurrentToken($recognizer); + $tokenName = oavr_DefaultErrorStrategy_getTokenErrorDisplay($this, $t); + $expecting = oavr_Parser_getExpectedTokens($recognizer); + $msg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($msg); + jl_AbstractStringBuilder_append($msg, $rt_s(4241)); + jl_AbstractStringBuilder_append($msg, $tokenName); + jl_AbstractStringBuilder_append($msg, $rt_s(4239)); + jl_AbstractStringBuilder_append($msg, oavrm_IntervalSet_toString($expecting, $recognizer.$getVocabulary())); + $recognizer.$notifyErrorListeners($t, jl_AbstractStringBuilder_toString($msg), null); }, -oncia_RelationshipKeyCypher25$ = $rt_classWithoutFields(), -oncia_RelationshipKeyCypher25$_MODULE$ = null, -oncia_RelationshipKeyCypher25$_predicate = null, -oncia_RelationshipKeyCypher25$_description = null, -oncia_RelationshipKeyCypher25$_$callClinit = () => { - oncia_RelationshipKeyCypher25$_$callClinit = $rt_eraseClinit(oncia_RelationshipKeyCypher25$); - oncia_RelationshipKeyCypher25$__clinit_(); +oavr_DefaultErrorStrategy_reportMissingToken = ($this, $recognizer) => { + let $t, $expecting, $msg; + if ($this.$errorRecoveryMode) + return; + oavr_DefaultErrorStrategy_beginErrorCondition($this, $recognizer); + $t = oavr_Parser_getCurrentToken($recognizer); + $expecting = oavr_Parser_getExpectedTokens($recognizer); + $msg = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($msg); + jl_AbstractStringBuilder_append($msg, $rt_s(4242)); + jl_AbstractStringBuilder_append($msg, oavrm_IntervalSet_toString($expecting, $recognizer.$getVocabulary())); + jl_AbstractStringBuilder_append($msg, $rt_s(4201)); + jl_AbstractStringBuilder_append($msg, oavr_DefaultErrorStrategy_getTokenErrorDisplay($this, $t)); + $recognizer.$notifyErrorListeners($t, jl_AbstractStringBuilder_toString($msg), null); }, -oncia_RelationshipKeyCypher25$__clinit_ = () => { - let var$1; - var$1 = new oncia_RelationshipKeyCypher25$; - oncia_RelationshipKeyCypher25$_$callClinit(); - oncia_RelationshipKeyCypher25$_MODULE$ = var$1; - oncia_RelationshipKey_$init$(var$1); - oncia_RelationshipKeyCypher25$_predicate = $rt_s(5617); +oavr_DefaultErrorStrategy_recoverInline = ($this, $recognizer) => { + let $matchedSymbol; + $matchedSymbol = oavr_DefaultErrorStrategy_singleTokenDeletion($this, $recognizer); + if ($matchedSymbol !== null) { + oavr_Parser_consume($recognizer); + return $matchedSymbol; + } + if (oavr_DefaultErrorStrategy_singleTokenInsertion($this, $recognizer)) + return oavr_DefaultErrorStrategy_getMissingSymbol($this, $recognizer); + $matchedSymbol = $this.$nextTokensContext; + $rt_throw($matchedSymbol !== null ? oavr_InputMismatchException__init_0($recognizer, $this.$nextTokensState, $matchedSymbol) : oavr_InputMismatchException__init_($recognizer)); }, -oncia_RelationshipKeyCypher25$_description0 = $this => { - oncia_RelationshipKeyCypher25$_$callClinit(); - return oncia_RelationshipKeyCypher25$_description; +oavr_DefaultErrorStrategy_singleTokenInsertion = ($this, $recognizer) => { + let $currentSymbolType, $next; + $currentSymbolType = oavr_BufferedTokenStream_LA($recognizer.$_input, 1); + $next = (oavra_ATNState_transition(ju_ArrayList_get($recognizer.$_interp.$atn.$states, $recognizer.$_stateNumber), 0)).$target; + if (!oavrm_IntervalSet_contains(oavra_ATN_nextTokens0($recognizer.$_interp.$atn, $next, $recognizer.$_ctx), $currentSymbolType)) + return 0; + oavr_DefaultErrorStrategy_reportMissingToken($this, $recognizer); + return 1; }, -oncia_RelationshipKeyCypher25$_org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq = ($this, $x$1) => { - oncia_RelationshipKeyCypher25$_$callClinit(); - oncia_RelationshipKeyCypher25$_description = $x$1; +oavr_DefaultErrorStrategy_singleTokenDeletion = ($this, $recognizer) => { + let $nextTokenType, $matchedSymbol; + $nextTokenType = oavr_BufferedTokenStream_LA($recognizer.$_input, 2); + if (!oavrm_IntervalSet_contains(oavr_Parser_getExpectedTokens($recognizer), $nextTokenType)) + return null; + oavr_DefaultErrorStrategy_reportUnwantedToken($this, $recognizer); + oavr_Parser_consume($recognizer); + $matchedSymbol = oavr_Parser_getCurrentToken($recognizer); + oavr_DefaultErrorStrategy_endErrorCondition($this, $recognizer); + return $matchedSymbol; }, -oncia_RelationshipKeyCypher25$_productArity = $this => { - return 0; +oavr_DefaultErrorStrategy_getMissingSymbol = ($this, $recognizer) => { + let $currentSymbol, $expecting, $expectedTokenType, $tokenText, $lookback; + $currentSymbol = oavr_Parser_getCurrentToken($recognizer); + $expecting = oavr_Parser_getExpectedTokens($recognizer); + $expectedTokenType = 0; + if (!oavrm_IntervalSet_isNil($expecting)) + $expectedTokenType = oavrm_IntervalSet_getMinElement($expecting); + if ($expectedTokenType == (-1)) + $tokenText = $rt_s(4243); + else { + $tokenText = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($tokenText); + jl_AbstractStringBuilder_append($tokenText, $rt_s(4244)); + jl_AbstractStringBuilder_append($tokenText, oavr_VocabularyImpl_getDisplayName($recognizer.$getVocabulary(), $expectedTokenType)); + jl_AbstractStringBuilder_append($tokenText, $rt_s(604)); + $tokenText = jl_AbstractStringBuilder_toString($tokenText); + } + $lookback = oavr_CommonTokenStream_LT($recognizer.$_input, (-1)); + if ($currentSymbol.$getType0() != (-1)) + $lookback = $currentSymbol; + else if ($lookback === null) + $lookback = $currentSymbol; + return (oavr_Parser_getTokenFactory($recognizer)).$create1(oavrm_Pair__init_($lookback.$getTokenSource(), ($lookback.$getTokenSource()).$_input0), $expectedTokenType, $tokenText, 0, (-1), (-1), $lookback.$getLine(), $lookback.$getCharPositionInLine()); }, -oncia_RelationshipKeyCypher25$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_DefaultErrorStrategy_getExpectedTokens = ($this, $recognizer) => { + return oavr_Parser_getExpectedTokens($recognizer); }, -oncia_RelationshipKeyCypher25$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_DefaultErrorStrategy_getTokenErrorDisplay = ($this, $t) => { + let $s; + if ($t === null) + return $rt_s(4245); + $s = $t.$getText(); + if ($s === null) { + if ($t.$getType0() == (-1)) + $s = $rt_s(4236); + else { + $s = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($s); + jl_AbstractStringBuilder_append($s, $rt_s(603)); + $t = jl_StringBuilder_append0($s, $t.$getType0()); + jl_AbstractStringBuilder_append($t, $rt_s(604)); + $s = jl_AbstractStringBuilder_toString($t); + } + } + return oavr_DefaultErrorStrategy_escapeWSAndQuote($this, $s); }, -oncia_RelationshipKeyCypher25$_hashCode = $this => { - return (-31853659); +oavr_DefaultErrorStrategy_getSymbolText = ($this, $symbol) => { + return $symbol.$getText(); }, -oncia_RelationshipKeyCypher25$_toString = $this => { - return $rt_s(5621); +oavr_DefaultErrorStrategy_getSymbolType = ($this, $symbol) => { + return $symbol.$getType0(); }, -oncia_RelationshipKeyCypher5$ = $rt_classWithoutFields(), -oncia_RelationshipKeyCypher5$_MODULE$ = null, -oncia_RelationshipKeyCypher5$_predicate = null, -oncia_RelationshipKeyCypher5$_description = null, -oncia_RelationshipKeyCypher5$_$callClinit = () => { - oncia_RelationshipKeyCypher5$_$callClinit = $rt_eraseClinit(oncia_RelationshipKeyCypher5$); - oncia_RelationshipKeyCypher5$__clinit_(); +oavr_DefaultErrorStrategy_escapeWSAndQuote = ($this, $s) => { + let var$2; + $s = jl_String_replace(jl_String_replace(jl_String_replace($s, $rt_s(94), $rt_s(4246)), $rt_s(4247), $rt_s(4248)), $rt_s(4249), $rt_s(4250)); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append(var$2, $rt_s(4251)); + jl_AbstractStringBuilder_append(var$2, $s); + jl_AbstractStringBuilder_append(var$2, $rt_s(4251)); + return jl_AbstractStringBuilder_toString(var$2); }, -oncia_RelationshipKeyCypher5$__clinit_ = () => { - let var$1; - var$1 = new oncia_RelationshipKeyCypher5$; - oncia_RelationshipKeyCypher5$_$callClinit(); - oncia_RelationshipKeyCypher5$_MODULE$ = var$1; - oncia_RelationshipKey_$init$(var$1); - oncia_RelationshipKeyCypher5$_predicate = $rt_s(4480); -}; -let oncia_RelationshipKeyCypher5$_description0 = $this => { - oncia_RelationshipKeyCypher5$_$callClinit(); - return oncia_RelationshipKeyCypher5$_description; +oavr_DefaultErrorStrategy_getErrorRecoverySet = ($this, $recognizer) => { + let $atn, $ctx, $recoverSet, var$5; + $atn = $recognizer.$_interp.$atn; + $ctx = $recognizer.$_ctx; + $recoverSet = oavrm_IntervalSet__init_($rt_createIntArray(0)); + while ($ctx !== null) { + var$5 = $ctx.$invokingState; + if (var$5 < 0) + break; + oavrm_IntervalSet_addAll($recoverSet, oavra_ATN_nextTokens($atn, (oavra_ATNState_transition(ju_ArrayList_get($atn.$states, var$5), 0)).$followState)); + $ctx = $ctx.$parent; + } + oavrm_IntervalSet_remove($recoverSet, (-2)); + return $recoverSet; }, -oncia_RelationshipKeyCypher5$_org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq = ($this, $x$1) => { - oncia_RelationshipKeyCypher5$_$callClinit(); - oncia_RelationshipKeyCypher5$_description = $x$1; +oavr_DefaultErrorStrategy_consumeUntil = ($this, $recognizer, $set) => { + let $ttype; + $ttype = oavr_BufferedTokenStream_LA($recognizer.$_input, 1); + while ($ttype != (-1) && !oavrm_IntervalSet_contains($set, $ttype)) { + oavr_Parser_consume($recognizer); + $ttype = oavr_BufferedTokenStream_LA($recognizer.$_input, 1); + } }, -oncia_RelationshipKeyCypher5$_productArity = $this => { - return 0; +oavr_BailErrorStrategy = $rt_classWithoutFields(oavr_DefaultErrorStrategy), +oavr_BailErrorStrategy_recover = ($this, $recognizer, $e) => { + let $context; + $context = $recognizer.$_ctx; + while ($context !== null) { + $context.$exception = $e; + $context = $context.$parent; + } + $rt_throw(oavrm_ParseCancellationException__init_($e)); }, -oncia_RelationshipKeyCypher5$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_BailErrorStrategy_recoverInline = ($this, $recognizer) => { + let $e, $context; + $e = oavr_InputMismatchException__init_($recognizer); + $context = $recognizer.$_ctx; + while ($context !== null) { + $context.$exception = $e; + $context = $context.$parent; + } + $rt_throw(oavrm_ParseCancellationException__init_($e)); }, -oncia_RelationshipKeyCypher5$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_BailErrorStrategy_sync = ($this, $recognizer) => { + return; }, -oncia_RelationshipKeyCypher5$_hashCode = $this => { - return (-970858861); +suc_NonFatal$ = $rt_classWithoutFields(), +suc_NonFatal$_MODULE$ = null, +suc_NonFatal$__clinit_ = () => { + suc_NonFatal$_MODULE$ = new suc_NonFatal$; }, -oncia_RelationshipKeyCypher5$_toString = $this => { - return $rt_s(5622); +suc_NonFatal$_unapply = ($this, $t) => { + if (!(!($t instanceof jl_VirtualMachineError ? 1 : $t instanceof jl_ThreadDeath ? 1 : $t instanceof jl_InterruptedException ? 1 : $t instanceof jl_LinkageError ? 1 : !($t instanceof suc_ControlThrowable) ? 0 : 1) ? 1 : 0)) + return s_None$_MODULE$; + return s_Some__init_($t); }; -function oncia_NodePropertyType() { - let a = this; jl_Object.call(a); - a.$propType = null; - a.$description11 = null; - a.$predicate6 = null; +function oavr_Parser() { + let a = this; oavr_Recognizer.call(a); + a.$_errHandler = null; + a.$_input = null; + a.$_precedenceStack = null; + a.$_ctx = null; + a.$_buildParseTrees = 0; + a.$_tracer = null; + a.$_parseListeners = null; + a.$_syntaxErrors0 = 0; + a.$matchedEOF = 0; } -let oncia_NodePropertyType_description = $this => { - return $this.$description11; -}, -oncia_NodePropertyType_productPrefix = $this => { - return $rt_s(5623); -}, -oncia_NodePropertyType_productArity = $this => { - return 1; -}, -oncia_NodePropertyType_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$propType; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_NodePropertyType_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NodePropertyType_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +let oavr_Parser__init_ = ($this, $input) => { + let var$2; + oavr_Recognizer__init_($this); + $this.$_errHandler = oavr_DefaultErrorStrategy__init_0(); + var$2 = oavrm_IntegerStack__init_(); + $this.$_precedenceStack = var$2; + oavrm_IntegerStack_push(var$2, 0); + $this.$_buildParseTrees = 1; + oavr_Parser_setTokenStream($this, $input); }, -oncia_NodePropertyType_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oavr_Parser_reset = $this => { + let $interpreter; + $interpreter = $this.$_input; + if ($interpreter !== null) + oavr_BufferedTokenStream_seek($interpreter, 0); + $this.$_errHandler.$reset2($this); + $this.$_ctx = null; + $this.$_syntaxErrors0 = 0; + $this.$matchedEOF = 0; + oavr_Parser_setTrace($this, 0); + $interpreter = $this.$_precedenceStack; + ju_Arrays_fill1($interpreter.$_data, 0, $interpreter.$_size, 0); + $interpreter.$_size = 0; + oavrm_IntegerStack_push($this.$_precedenceStack, 0); + $interpreter = $this.$_interp; + if ($interpreter !== null) + $interpreter.$reset0(); }, -oncia_NodePropertyType_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_NodePropertyType) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$propType; - $x$1 = $x$1.$propType; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_NodePropertyType)) - break b; - } - var$3 = 1; - break a; +oavr_Parser_match = ($this, $ttype) => { + let $t, var$3; + $t = oavr_Parser_getCurrentToken($this); + if ($t.$getType0() == $ttype) { + if ($ttype == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else { + $t = $this.$_errHandler.$recoverInline($this); + if ($this.$_buildParseTrees && $t.$getTokenIndex() == (-1)) { + var$3 = $this.$_ctx; + oavr_ParserRuleContext_addErrorNode(var$3, oavr_Parser_createErrorNode($this, var$3, $t)); } - var$3 = 0; } - return var$3; + return $t; }, -oncia_NodePropertyType__init_0 = ($this, $propType) => { +oavr_Parser_removeParseListener = ($this, $listener) => { let var$2; - $this.$propType = $propType; - $this.$description11 = $rt_s(5624); - $propType = $propType.$description(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5625)), $propType); - $this.$predicate6 = jl_AbstractStringBuilder_toString(var$2); + var$2 = $this.$_parseListeners; + if (var$2 !== null && var$2.$remove1($listener) && $this.$_parseListeners.$isEmpty()) + $this.$_parseListeners = null; }, -oncia_NodePropertyType__init_ = var_0 => { - let var_1 = new oncia_NodePropertyType(); - oncia_NodePropertyType__init_0(var_1, var_0); - return var_1; -}; -function oncia_RelationshipPropertyType() { - let a = this; jl_Object.call(a); - a.$propType0 = null; - a.$description9 = null; - a.$predicate5 = null; -} -let oncia_RelationshipPropertyType_description = $this => { - return $this.$description9; +oavr_Parser_triggerEnterRuleEvent = $this => { + let var$1; + var$1 = $this.$_parseListeners.$iterator(); + while (var$1.$hasNext()) { + (var$1.$next()).$enterEveryRule($this.$_ctx); + } }, -oncia_RelationshipPropertyType_productPrefix = $this => { - return $rt_s(5626); +oavr_Parser_triggerExitRuleEvent = $this => { + let $i; + $i = $this.$_parseListeners.$size() - 1 | 0; + while ($i >= 0) { + ($this.$_parseListeners.$get0($i)).$exitEveryRule($this.$_ctx); + $i = $i + (-1) | 0; + } }, -oncia_RelationshipPropertyType_productArity = $this => { - return 1; +oavr_Parser_getTokenFactory = $this => { + return $this.$_input.$tokenSource.$_factory; }, -oncia_RelationshipPropertyType_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$propType0; - default: - } - return sr_Statics_ioobe($x$1); +oavr_Parser_getInputStream0 = $this => { + return $this.$_input; }, -oncia_RelationshipPropertyType_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_Parser_getTokenStream = $this => { + return $this.$_input; }, -oncia_RelationshipPropertyType_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oavr_Parser_setTokenStream = ($this, $input) => { + $this.$_input = null; + $this.$reset0(); + $this.$_input = $input; }, -oncia_RelationshipPropertyType_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oavr_Parser_getCurrentToken = $this => { + return oavr_CommonTokenStream_LT($this.$_input, 1); }, -oncia_RelationshipPropertyType_equals = ($this, $x$1) => { - let var$2, var$3; +oavr_Parser_notifyErrorListeners = ($this, $offendingToken, $msg, $e) => { + let var$4, var$5; + $this.$_syntaxErrors0 = $this.$_syntaxErrors0 + 1 | 0; + var$4 = $offendingToken.$getLine(); + var$5 = $offendingToken.$getCharPositionInLine(); + oavr_ProxyErrorListener_syntaxError(oavr_Recognizer_getErrorListenerDispatch($this), $this, $offendingToken, var$4, var$5, $msg, $e); +}, +oavr_Parser_consume = $this => { + let $o, $node, $hasListener, var$4; + $o = oavr_Parser_getCurrentToken($this); + if ($o.$getType0() != (-1)) + oavr_BufferedTokenStream_consume($this.$_input); + $node = $this.$_parseListeners; + $hasListener = $node !== null && !$node.$isEmpty() ? 1 : 0; a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_RelationshipPropertyType) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$propType0; - $x$1 = $x$1.$propType0; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) + if (!(!$this.$_buildParseTrees && !$hasListener)) { + if (!$this.$_errHandler.$inErrorRecoveryMode($this)) { + $node = $this.$_ctx; + $node = oavr_ParserRuleContext_addChild0($node, $this.$createTerminalNode($node, $o)); + var$4 = $this.$_parseListeners; + if (var$4 === null) + break a; + var$4 = var$4.$iterator(); + while (true) { + if (!var$4.$hasNext()) + break a; + (var$4.$next()).$visitTerminal($node); + } + } + b: { + $node = $this.$_ctx; + $node = oavr_ParserRuleContext_addErrorNode($node, oavr_Parser_createErrorNode($this, $node, $o)); + var$4 = $this.$_parseListeners; + if (var$4 !== null) { + var$4 = var$4.$iterator(); + while (true) { + if (!var$4.$hasNext()) break b; - else - break c; + (var$4.$next()).$visitErrorNode($node); } - if ($x$1 !== null) - break b; } - if (!($this instanceof oncia_RelationshipPropertyType)) - break b; } - var$3 = 1; - break a; } - var$3 = 0; } - return var$3; + return $o; }, -oncia_RelationshipPropertyType__init_0 = ($this, $propType) => { - let var$2; - $this.$propType0 = $propType; - $this.$description9 = $rt_s(5627); - $propType = $propType.$description(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5625)), $propType); - $this.$predicate5 = jl_AbstractStringBuilder_toString(var$2); +oavr_Parser_createTerminalNode = ($this, $parent, $t) => { + return oavrt_TerminalNodeImpl__init_0($t); }, -oncia_RelationshipPropertyType__init_ = var_0 => { - let var_1 = new oncia_RelationshipPropertyType(); - oncia_RelationshipPropertyType__init_0(var_1, var_0); - return var_1; +oavr_Parser_createErrorNode = ($this, $parent, $t) => { + $parent = new oavrt_ErrorNodeImpl; + oavrt_TerminalNodeImpl__init_($parent, $t); + return $parent; }, -oncia_UserAuth$$init$$lambda$_23_0 = $rt_classWithoutFields(), -oncia_UserAuth$$init$$lambda$_23_0_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - b: { - c: { - var$2 = var$1.$provider0; - oncia_AdministrationCommand$_$callClinit(); - var$1 = oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$); - if (var$2 !== null) { - if (jl_String_equals(var$2, var$1)) - break c; - else - break b; - } - if (var$1 !== null) - break b; - } - var$3 = 0; - break a; - } - var$3 = 1; - } - return jl_Boolean_valueOf(var$3); +oavr_Parser_addContextToParseTree = $this => { + let var$1, $parent; + var$1 = $this.$_ctx; + $parent = var$1.$parent; + if ($parent !== null) + oavr_ParserRuleContext_addChild($parent, var$1); }, -oncia_UserAuth$$init$$lambda$_23_1 = $rt_classWithoutFields(), -oncia_UserAuth$$init$$lambda$_23_1_apply = (var$0, var$1) => { - var$1 = var$1; - return oncia_ExternalAuth__init_(var$1.$provider0, var$1.$authAttributes0, var$1.$position60); +oavr_Parser_enterRule = ($this, $localctx, $state, $ruleIndex) => { + $this.$_stateNumber = $state; + $this.$_ctx = $localctx; + $localctx.$start1 = oavr_CommonTokenStream_LT($this.$_input, 1); + if ($this.$_buildParseTrees) + oavr_Parser_addContextToParseTree($this); + if ($this.$_parseListeners !== null) + oavr_Parser_triggerEnterRuleEvent($this); }, -oncia_UserAuth$$init$$lambda$_23_2 = $rt_classWithoutFields(), -oncia_UserAuth$$init$$lambda$_23_2_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - b: { - c: { - var$2 = var$1.$provider0; - oncia_AdministrationCommand$_$callClinit(); - var$1 = oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$); - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$1)) - break b; - else - break c; - } - if (var$1 !== null) - break b; +oavr_Parser_exitRule = $this => { + let var$1; + if (!$this.$matchedEOF) + $this.$_ctx.$stop = oavr_CommonTokenStream_LT($this.$_input, (-1)); + else + $this.$_ctx.$stop = oavr_CommonTokenStream_LT($this.$_input, 1); + if ($this.$_parseListeners !== null) + oavr_Parser_triggerExitRuleEvent($this); + var$1 = $this.$_ctx; + $this.$_stateNumber = var$1.$invokingState; + $this.$_ctx = var$1.$parent; +}, +oavr_Parser_enterOuterAlt = ($this, $localctx, $altNum) => { + let $parent; + if ($this.$_buildParseTrees) { + $parent = $this.$_ctx; + if ($parent !== $localctx) { + $parent = $parent.$parent; + if ($parent !== null) { + oavr_ParserRuleContext_removeLastChild($parent); + oavr_ParserRuleContext_addChild($parent, $localctx); } - var$3 = 1; - break a; } - var$3 = 0; } - return jl_Boolean_valueOf(var$3); -}, -oncia_UserAuth$$init$$lambda$_23_3 = $rt_classWithoutFields(), -oncia_UserAuth$$init$$lambda$_23_3_apply = (var$0, var$1) => { - var$1 = var$1; - return oncia_NativeAuth__init_(var$1.$authAttributes0, var$1.$position60); -}, -jnci_AsciiCharset = $rt_classWithoutFields(jnc_Charset), -jnci_Iso8859Charset = $rt_classWithoutFields(jnc_Charset), -jnci_Iso8859Charset_newDecoder = $this => { - let var$1; - var$1 = new jnci_Iso8859Decoder; - jnci_BufferedDecoder__init_(var$1, $this, 1.0, 1.0); - return var$1; -}; -function jnci_UTF16Charset() { - let a = this; jnc_Charset.call(a); - a.$bom = 0; - a.$littleEndian = 0; -} -let jnci_UTF16Charset__init_0 = ($this, $canonicalName, $bom, $littleEndian) => { - jnc_Charset__init_($this, $canonicalName, $rt_createArray(jl_String, 0)); - $this.$bom = $bom; - $this.$littleEndian = $littleEndian; -}, -jnci_UTF16Charset__init_ = (var_0, var_1, var_2) => { - let var_3 = new jnci_UTF16Charset(); - jnci_UTF16Charset__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0 = $rt_classWithoutFields(), -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_DefaultOrAllShowColumns$_$callClinit(); - return jl_Boolean_valueOf(var$1.$_2$mcZ$sp()); + $this.$_ctx = $localctx; }, -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1 = $rt_classWithoutFields(), -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_DefaultOrAllShowColumns$_$callClinit(); - return var$1.$_1(); +oavr_Parser_getPrecedence = $this => { + if (oavrm_IntegerList_isEmpty($this.$_precedenceStack)) + return (-1); + return oavrm_IntegerStack_peek($this.$_precedenceStack); }, -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2 = $rt_classWithoutFields(), -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_DefaultOrAllShowColumns$_$callClinit(); - return var$1.$_1(); -}; -function oncia_ShowIndexesClause$_init_$lambda$_111_0() { - jl_Object.call(this); - this.$_0624 = null; -} -let oncia_ShowIndexesClause$_init_$lambda$_111_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0624; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position66); -}; -function oncia_ShowIndexesClause$_init_$lambda$_111_1() { - jl_Object.call(this); - this.$_0106 = null; -} -let oncia_ShowIndexesClause$_init_$lambda$_111_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0106; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position66); -}; -function oncia_ShowFunctionsClause$_init_$lambda$_109_0() { - jl_Object.call(this); - this.$_0605 = null; -} -let oncia_ShowFunctionsClause$_init_$lambda$_109_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0605; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position81); -}; -function oncia_ShowFunctionsClause$_init_$lambda$_109_1() { - jl_Object.call(this); - this.$_01100 = null; -} -let oncia_ShowFunctionsClause$_init_$lambda$_109_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01100; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position81); -}; -function oncia_ShowConstraintsClause$_init_$lambda$_105_0() { - jl_Object.call(this); - this.$_0932 = null; -} -let oncia_ShowConstraintsClause$_init_$lambda$_105_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0932; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position59); -}; -function oncia_ShowConstraintsClause$_init_$lambda$_105_1() { - jl_Object.call(this); - this.$_0290 = null; -} -let oncia_ShowConstraintsClause$_init_$lambda$_105_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0290; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position59); -}; -function oncia_ShowProceduresClause$_init_$lambda$_108_0() { - jl_Object.call(this); - this.$_01067 = null; -} -let oncia_ShowProceduresClause$_init_$lambda$_108_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01067; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position53); -}; -function oncia_ShowProceduresClause$_init_$lambda$_108_1() { - jl_Object.call(this); - this.$_0474 = null; -} -let oncia_ShowProceduresClause$_init_$lambda$_108_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0474; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position53); -}; -function oncia_ShowSettingsClause$_init_$lambda$_105_0() { - jl_Object.call(this); - this.$_0580 = null; -} -let oncia_ShowSettingsClause$_init_$lambda$_105_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0580; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position44); -}; -function oncia_ShowSettingsClause$_init_$lambda$_105_1() { - jl_Object.call(this); - this.$_01105 = null; -} -let oncia_ShowSettingsClause$_init_$lambda$_105_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01105; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position44); -}; -function oncia_ShowTransactionsClause$_init_$lambda$_135_0() { - jl_Object.call(this); - this.$_0434 = null; -} -let oncia_ShowTransactionsClause$_init_$lambda$_135_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0434; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position70); -}; -function oncia_ShowTransactionsClause$_init_$lambda$_135_1() { - jl_Object.call(this); - this.$_0980 = null; -} -let oncia_ShowTransactionsClause$_init_$lambda$_135_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0980; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position70); -}; -function oncia_TerminateTransactionsClause$_init_$lambda$_96_0() { - jl_Object.call(this); - this.$_0773 = null; -} -let oncia_TerminateTransactionsClause$_init_$lambda$_96_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0773; - return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position100); -}; -function onciu_NonEmptyList$IterableConverter() { - jl_Object.call(this); - this.$iterable = null; -} -let oncia_ProcedureResultItem$_init_$lambda$_76_0 = $rt_classWithoutFields(), -oncia_ProcedureResultItem$_init_$lambda$_76_0_apply = (var$0, var$1) => { - return var$1.$name29; -}; -function oncia_ProcedureResultItem$_init_$lambda$_76_1() { - jl_Object.call(this); - this.$_034 = null; -} -let oncia_ProcedureResultItem$_init_$lambda$_76_1_apply = var$0 => { - return var$0.$_034.$variable8.$name4; +oavr_Parser_getContext = $this => { + return $this.$_ctx; }, -oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_0 = $rt_classWithoutFields(), -oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_0_test = (var$0, var$1) => { - var$1 = var$1; - return var$1 !== oncipcaf_HintIndexType_BTREE && var$1 !== oncipcaf_HintIndexType_ANY ? 1 : 0; +oavr_Parser_precpred = ($this, $localctx, $precedence) => { + return $precedence < oavrm_IntegerStack_peek($this.$_precedenceStack) ? 0 : 1; }, -oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_1 = $rt_classWithoutFields(), -oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_1_apply = (var$0, var$1) => { - return var$1.$name6; +oavr_Parser_isMatchedEOF = $this => { + return $this.$matchedEOF; }, -oncie_ReduceExpression$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), -oncie_ReduceExpression$$_clinit_$lambda$_0_0_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5628)), var$1), $rt_s(5629)), var$2); - return jl_AbstractStringBuilder_toString(var$3); +oavr_Parser_getExpectedTokens = $this => { + return oavra_ATN_getExpectedTokens($this.$getATN(), $this.$_stateNumber, $this.$_ctx); }, -oncie_Ands$_init_$lambda$_23_0 = $rt_classWithoutFields(); -function oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0() { - jl_Object.call(this); - this.$_0435 = null; -} -let oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isSubtypeOf(var$0.$_0435)); -}; -function oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1() { - sr_AbstractPartialFunction.call(this); - this.$merge$1 = null; -} -let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1_applyOrElse = ($this, $x1, $default) => { - let $a, $exprs; - if ($x1 instanceof oncie_In) { - $x1 = $x1; - $a = $x1.$lhs4; - $x1 = $x1.$rhs4; - if ($x1 instanceof oncie_ListLiteral) { - $exprs = $x1.$expressions0; - $x1 = new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0; - $x1.$_0921 = $this; - $x1.$_1323 = $a; - $x1.$_2110 = $exprs; - return $x1; - } - } - return s_PartialFunction$_fallback_fn; -}; -function oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0() { - let a = this; jl_Object.call(a); - a.$_0900 = null; - a.$_1310 = null; - a.$_2101 = null; -} -let oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0900; - var$3 = var$0.$_1310; - var$4 = var$0.$_2101; - oncirr_mergeInPredicates$_$callClinit(); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - return s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$1, sc_SeqOps_distinct$(var$2.$apply3(var$3.$apply2(var$1), var$4.$apply2(var$1)))); +oavr_Parser_getRuleInvocationStack = $this => { + return oavr_Parser_getRuleInvocationStack0($this, $this.$_ctx); }, -oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0 = $rt_classWithoutFields(), -oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$1.$contains(oncias_SymbolUse_name(var$2))) - var$1 = var$1.$updated0(oncias_SymbolUse_name(var$2), (var$1.$apply2(oncias_SymbolUse_name(var$2))).$incl(var$2)); - else { - var$1 = var$3.$_10; - var$2 = var$3.$_20; - var$3 = oncias_SymbolUse_name(var$2); - s_Predef$_$callClinit(); - var$4 = s_Predef$_Set(s_Predef$_MODULE$); - var$5 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(oncias_SymbolUse, 1); - var$6.data[0] = var$2; - var$1 = var$1.$updated0(var$3, var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6))); +oavr_Parser_getRuleInvocationStack0 = ($this, $p) => { + let $ruleNames, $stack, $ruleIndex; + $ruleNames = $this.$getRuleNames(); + $stack = ju_ArrayList__init_(); + while ($p !== null) { + $ruleIndex = $p.$getRuleIndex(); + if ($ruleIndex < 0) + ju_ArrayList_add($stack, $rt_s(4252)); + else + ju_ArrayList_add($stack, $ruleNames.data[$ruleIndex]); + $p = $p.$parent; } - return var$1; -}; -function sc_MapOps$$anon$1() { - sc_AbstractIterable.call(this); - this.$$outer21 = null; -} -let sc_MapOps$$anon$1_knownSize = $this => { - return $this.$$outer21.$knownSize(); -}, -sc_MapOps$$anon$1_iterator = $this => { - return $this.$$outer21.$valuesIterator(); -}; -function sc_SeqView$Reverse() { - sc_AbstractSeqView.call(this); - this.$underlying19 = null; -} -let sc_SeqView$Reverse_apply = ($this, $i) => { - return $this.$underlying19.$apply1((sc_SeqView$Reverse_length($this) - 1 | 0) - $i | 0); + return $stack; }, -sc_SeqView$Reverse_length = $this => { - let var$1; - var$1 = $this.$underlying19; - if (var$1 !== null) - return var$1.$length(); - $rt_throw(null); +oavr_Parser_setTrace = ($this, $trace) => { + let var$2; + if (!$trace) { + oavr_Parser_removeParseListener($this, $this.$_tracer); + $this.$_tracer = null; + } else { + var$2 = $this.$_tracer; + if (var$2 !== null) + oavr_Parser_removeParseListener($this, var$2); + else { + var$2 = new oavr_Parser$TraceListener; + var$2.$this$021 = $this; + $this.$_tracer = var$2; + } + $this.$addParseListener($this.$_tracer); + } }, -sc_SeqView$Reverse_isEmpty = $this => { - return $this.$underlying19.$isEmpty(); +oavr_Parser_getInputStream = $this => { + return $this.$_input; }; -function sc_IndexedSeqView$Reverse() { - sc_SeqView$Reverse.call(this); - this.$underlying40 = null; +function oncip_CypherErrorStrategy() { + let a = this; jl_Object.call(a); + a.$conf0 = null; + a.$vocabulary1 = null; + a.$inErrorMode = 0; } -let sc_IndexedSeqView$Reverse_iterator = $this => { - return sc_IndexedSeqView_iterator$($this); -}, -sc_IndexedSeqView$Reverse_reverseIterator = $this => { - return sc_IndexedSeqView_reverseIterator$($this); -}, -sc_IndexedSeqView$Reverse_stringPrefix = $this => { - return $rt_s(5630); -}, -sc_IndexedSeqView$Reverse_head = $this => { - return sc_IndexedSeqOps_head$($this); -}, -sc_IndexedSeqView$Reverse_headOption = $this => { - return sc_IndexedSeqOps_headOption$($this); -}, -sc_IndexedSeqView$Reverse_lengthCompare = ($this, $len) => { - return sc_IndexedSeqOps_lengthCompare$($this, $len); +let oncip_CypherErrorStrategy_vocabulary = $this => { + return $this.$vocabulary1; }, -sc_IndexedSeqView$Reverse_knownSize = $this => { - return $this.$length(); +oncip_CypherErrorStrategy_reportError = ($this, $parser, $e) => { + let var$3, var$4, var$5, var$6, var$7, var$8, $$je; + if ($this.$inErrorMode) + return; + a: { + b: { + $this.$inErrorMode = 1; + oncip_CypherErrorStrategy_populateException($this, $parser.$_ctx, $e); + var$3 = $e.$offendingToken; + var$4 = var$3.$getText(); + if (!(var$4 !== null && jl_String_equals(var$4, $rt_s(4251)))) { + var$5 = var$3.$getText(); + if (var$5 === null) + break b; + if (!jl_String_equals(var$5, $rt_s(480))) + break b; + } + var$6 = 1; + break a; + } + var$6 = 0; + } + if (var$6) + var$5 = oncip_CypherErrorStrategy$_quoteMismatchErrorMessage; + else { + c: { + d: { + var$7 = $e.$offendingToken; + var$4 = var$7.$getText(); + if (var$4 !== null && jl_String_equals(var$4, $rt_s(90))) { + var$5 = (oavr_CommonTokenStream_LT($parser.$_input, 2)).$getText(); + if (var$5 !== null && jl_String_equals(var$5, $rt_s(171))) + break d; + } + var$5 = var$7.$getText(); + if (var$5 !== null && jl_String_equals(var$5, $rt_s(171))) { + var$5 = (oavr_CommonTokenStream_LT($parser.$_input, (-1))).$getText(); + if (var$5 !== null && jl_String_equals(var$5, $rt_s(90))) + break d; + } + var$6 = 0; + break c; + } + var$6 = 1; + } + if (var$6) + var$5 = oncip_CypherErrorStrategy$_commentMismatchErrorMessage; + else { + s_Option$_$callClinit(); + var$8 = s_Option_getOrElse(s_Option_map(s_Option_flatMap(s_Option_filter(s_Option$_apply(s_Option$_MODULE$, $e.$offendingToken), new oncip_CypherErrorStrategy$message$lambda$_7_0), new oncip_CypherErrorStrategy$message$lambda$_7_1), new oncip_CypherErrorStrategy$message$lambda$_7_2), new oncip_CypherErrorStrategy$message$lambda$_7_3); + e: { + try { + var$7 = onciafnc_CodeCompletionCore__init_0($parser, scc_AsJavaExtensions$SetHasAsJava_asJava(sj_CollectionConverters$_SetHasAsJava(sj_CollectionConverters$_MODULE$, $this.$conf0.$preferredRules())), $this.$conf0.$ignoredTokens()); + var$6 = (oavr_RecognitionException_getOffendingToken($e)).$getTokenIndex(); + var$5 = oncip_CypherErrorVocabulary_expected(oncip_CypherErrorStrategy_vocabulary($this), onciafnc_CodeCompletionCore_collectCandidates(var$7, var$6, oavr_RecognitionException_getCtx($e))); + break e; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + var$5 = $$je; + } else { + throw $$e; + } + } + if (var$5 !== null && !s_Option_isEmpty(suc_NonFatal$_unapply(suc_NonFatal$_MODULE$, var$5))) { + var$7 = $this.$vocabulary1; + var$5 = oavr_RecognitionException_getExpectedTokens($e); + var$5 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$5.$intervals)); + var$4 = new oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0; + var$4.$_080 = var$7; + var$5 = (sc_StrictOptimizedIterableOps_flatMap$(var$5, var$4)).$toSeq(); + sm_Ordering$String$_$callClinit(); + var$5 = var$5.$sorted(sm_Ordering$String$_MODULE$); + } else + $rt_throw(var$5); + } + f: { + if (var$5 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$5); + if (!var$5.$lengthCompare(1)) { + var$5 = var$5.$apply1(0); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(4253)), var$5); + var$5 = jl_AbstractStringBuilder_toString(var$4); + break f; + } + } + if (!sc_IterableOnceOps_nonEmpty$(var$5)) + var$5 = $rt_s(4); + else { + var$7 = sc_IterableOnceOps_mkString$(var$5.$dropRight0(1), $rt_s(4253), $rt_s(45), $rt_s(4)); + var$5 = var$5.$last(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$7), $rt_s(870)), var$5); + var$5 = jl_AbstractStringBuilder_toString(var$4); + } + } + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$7 = jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3713)), var$8); + jl_AbstractStringBuilder_append0(var$7, 39); + jl_StringBuilder_append(var$7, var$5); + var$5 = jl_AbstractStringBuilder_toString(var$4); + } + } + $parser.$notifyErrorListeners(var$3, var$5, $e); }, -sc_IndexedSeqView$Reverse_map = ($this, $f) => { - return sc_IndexedSeqView_map$($this, $f); +oncip_CypherErrorStrategy_recoverInline = ($this, $parser) => { + let $e; + $e = oavr_InputMismatchException__init_0($parser, $parser.$_stateNumber, $parser.$_ctx); + oncip_CypherErrorStrategy_populateException($this, $parser.$_ctx, $e); + $rt_throw($e); }, -sc_IndexedSeqView$Reverse_map0 = ($this, $f) => { - return sc_IndexedSeqView_map$($this, $f); +oncip_CypherErrorStrategy_recover = ($this, $parser, $e) => { + if (!$this.$inErrorMode) + return; + oavr_Parser_consume($parser); }, -sc_IndexedSeqView$Reverse_drop = ($this, $n) => { - return sc_IndexedSeqView_drop$($this, $n); +oncip_CypherErrorStrategy_sync = ($this, $parser) => { + return; }, -sc_IndexedSeqView$Reverse_drop0 = ($this, $n) => { - return sc_IndexedSeqView_drop$($this, $n); +oncip_CypherErrorStrategy_inErrorRecoveryMode = ($this, $recognizer) => { + return $this.$inErrorMode; }, -sc_IndexedSeqView$Reverse_prepended0 = ($this, $elem) => { - return sc_IndexedSeqView_prepended$($this, $elem); +oncip_CypherErrorStrategy_reset = ($this, $recognizer) => { + $this.$inErrorMode = 0; }, -sc_IndexedSeqView$Reverse_prepended = ($this, $elem) => { - return sc_IndexedSeqView_prepended$($this, $elem); +oncip_CypherErrorStrategy_reportMatch = ($this, $recognizer) => { + return; }, -sc_IndexedSeqView$Reverse_appended = ($this, $elem) => { - return sc_IndexedSeqView_appended$($this, $elem); +oncip_CypherErrorStrategy_populateException = ($this, $ctx, $e) => { + while ($ctx !== null) { + $ctx.$exception = $e; + $ctx = $ctx.$parent; + } +}; +function sm_Ordering$Tuple2Ordering() { + let a = this; jl_Object.call(a); + a.$ord10 = null; + a.$ord2 = null; +} +let sm_Ordering$Tuple2Ordering_lteq = ($this, $x, $y) => { + return sm_Ordering_lteq$($this, $x, $y); }, -sc_IndexedSeqView$Reverse_appended0 = ($this, $elem) => { - return sc_IndexedSeqView_appended$($this, $elem); +sm_Ordering$Tuple2Ordering_gteq = ($this, $x, $y) => { + return sm_Ordering_gteq$($this, $x, $y); }, -sc_IndexedSeqView$Reverse__init_0 = ($this, $underlying) => { - $this.$underlying40 = $underlying; - $this.$underlying19 = $underlying; +sm_Ordering$Tuple2Ordering_lt = ($this, $x, $y) => { + return sm_Ordering_lt$($this, $x, $y); }, -sc_IndexedSeqView$Reverse__init_ = var_0 => { - let var_1 = new sc_IndexedSeqView$Reverse(); - sc_IndexedSeqView$Reverse__init_0(var_1, var_0); - return var_1; +sm_Ordering$Tuple2Ordering_on = ($this, $f) => { + return sm_Ordering_on$($this, $f); }, -oncia_ReturnItems$containsAggregate$lambda$_67_0 = $rt_classWithoutFields(), -oncia_ReturnItems$containsAggregate$lambda$_67_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncie_Expression_containsAggregate(var$1.$expression())); -}; -function oncia_SingleQuery$Acc$2$() { - sr_AbstractFunction2.call(this); - this.$$outer61 = null; -} -let oncia_SingleQuery$Acc$2$_apply = ($this, $precedingWrite, $errors) => { - let var$3, var$4; - var$3 = new oncia_SingleQuery$Acc$1; - var$4 = $this.$$outer61; - var$3.$precedingWrite = $precedingWrite; - var$3.$errors1 = $errors; - if (var$4 === null) - $rt_throw(null); - var$3.$$outer65 = var$4; +sm_Ordering$Tuple2Ordering_compare = ($this, $x, $y) => { + let var$3; + $x = $x; + $y = $y; + var$3 = $this.$ord10.$compare2($x.$_1(), $y.$_1()); + if (!var$3) + var$3 = $this.$ord2.$compare2($x.$_2(), $y.$_2()); return var$3; }, -oncia_SingleQuery$Acc$2$__init_0 = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer61 = $$outer; -}, -oncia_SingleQuery$Acc$2$__init_ = var_0 => { - let var_1 = new oncia_SingleQuery$Acc$2$(); - oncia_SingleQuery$Acc$2$__init_0(var_1, var_0); - return var_1; -}; -function oncias_package$$liftSemanticErrorDefs$lambda$_5_0() { - jl_Object.call(this); - this.$_0802 = null; -} -let oncias_package$$liftSemanticErrorDefs$lambda$_5_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0802; - oncias_package$_$callClinit(); - return oncias_SemanticCheckResult__init_(var$1, var$2); +oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0_apply = (var$0, var$1) => { + return var$1.$name18; }; function oncia_SingleQuery$PartitionedClauses() { let a = this; jl_Object.call(a); + a.$leadingGraphSelection = null; a.$clausesExceptImportingWithAndInitialGraphSelection = null; a.$clausesExceptInitialGraphSelection0 = null; - a.$initialGraphSelection = null; + a.$initialGraphSelection0 = null; a.$importingWith0 = null; a.$subsequentGraphSelection0 = null; a.$clausesExceptImportingWithAndLeadingGraphSelection0 = null; - a.$bitmap$018 = 0; + a.$bitmap$00 = 0; } -let oncia_SingleQuery$PartitionedClauses_importingWith = $this => { +let oncia_SingleQuery$PartitionedClauses_initialGraphSelection = $this => { + return $this.$initialGraphSelection0; +}, +oncia_SingleQuery$PartitionedClauses_importingWith = $this => { return $this.$importingWith0; }, oncia_SingleQuery$PartitionedClauses_subsequentGraphSelection = $this => { @@ -214074,16 +103515,16 @@ oncia_SingleQuery$PartitionedClauses_clausesExceptImportingWithAndLeadingGraphSe }, oncia_SingleQuery$PartitionedClauses_clausesExceptInitialGraphSelection = $this => { let var$1, $$je; - if (($this.$bitmap$018 & 4) << 24 >> 24) + if (($this.$bitmap$00 & 4) << 24 >> 24) return $this.$clausesExceptInitialGraphSelection0; jl_Object_monitorEnterSync($this); a: { try { - if (($this.$bitmap$018 & 4) << 24 >> 24) + if (($this.$bitmap$00 & 4) << 24 >> 24) break a; s_Option$_$callClinit(); $this.$clausesExceptInitialGraphSelection0 = sc_AbstractIterable_$plus$plus(sc_AbstractIterable_$plus$plus((s_Option$_option2Iterable(s_Option$_MODULE$, oncia_SingleQuery$PartitionedClauses_importingWith($this))).$toSeq(), oncia_SingleQuery$PartitionedClauses_subsequentGraphSelection($this)), oncia_SingleQuery$PartitionedClauses_clausesExceptImportingWithAndLeadingGraphSelection($this)); - $this.$bitmap$018 = ($this.$bitmap$018 | 4) << 24 >> 24; + $this.$bitmap$00 = ($this.$bitmap$00 | 4) << 24 >> 24; break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -214097,7 +103538,7 @@ oncia_SingleQuery$PartitionedClauses_clausesExceptInitialGraphSelection = $this return $this.$clausesExceptInitialGraphSelection0; }, oncia_SingleQuery$PartitionedClauses_productPrefix = $this => { - return $rt_s(5631); + return $rt_s(4254); }, oncia_SingleQuery$PartitionedClauses_productArity = $this => { return 4; @@ -214105,7 +103546,7 @@ oncia_SingleQuery$PartitionedClauses_productArity = $this => { oncia_SingleQuery$PartitionedClauses_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$initialGraphSelection; + return $this.$initialGraphSelection0; case 1: return $this.$importingWith0; case 2: @@ -214125,17820 +103566,65601 @@ oncia_SingleQuery$PartitionedClauses_hashCode = $this => { oncia_SingleQuery$PartitionedClauses_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_SingleQuery$PartitionedClauses_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SingleQuery$PartitionedClauses) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$initialGraphSelection; - var$3 = $x$1.$initialGraphSelection; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$importingWith0; - var$3 = $x$1.$importingWith0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$subsequentGraphSelection0; - var$3 = $x$1.$subsequentGraphSelection0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$3 = $this.$clausesExceptImportingWithAndLeadingGraphSelection0; - $x$1 = $x$1.$clausesExceptImportingWithAndLeadingGraphSelection0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break f; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_SingleQuery$PartitionedClauses)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; -}, -oncia_SingleQuery$PartitionedClauses__init_0 = ($this, $initialGraphSelection, $importingWith, $subsequentGraphSelection, $clausesExceptImportingWithAndLeadingGraphSelection) => { - $this.$initialGraphSelection = $initialGraphSelection; - $this.$importingWith0 = $importingWith; - $this.$subsequentGraphSelection0 = $subsequentGraphSelection; - $this.$clausesExceptImportingWithAndLeadingGraphSelection0 = $clausesExceptImportingWithAndLeadingGraphSelection; -}, -oncia_SingleQuery$PartitionedClauses__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncia_SingleQuery$PartitionedClauses(); - oncia_SingleQuery$PartitionedClauses__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0() { - jl_Object.call(this); - this.$_0660 = null; -} -let oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0_apply = (var$0, var$1, var$2) => { - let var$3; - var$1 = var$1; - var$3 = var$0.$_0660; - oncias_IterableOnceSemanticChecking$_$callClinit(); - return var$1.$chain(var$3.$apply2(var$2)); -}; -function oncias_SemanticCheck$$nestedCheck$lambda$_11_0() { - jl_Object.call(this); - this.$_0747 = null; -} -let oncias_SemanticCheck$$nestedCheck$lambda$_11_0_apply = (var$0, var$1) => { - var$1 = var$0.$_0747; - oncias_SemanticCheck$_$callClinit(); - return var$1.$apply4(); -}; -function oncias_SemanticCheck$Leaf() { - jl_Object.call(this); - this.$f2 = null; -} -let oncias_SemanticCheck$Leaf_run = ($this, $state, $context) => { - return oncias_SemanticCheck_run$($this, $state, $context); -}, -oncias_SemanticCheck$Leaf_chain = ($this, $next) => { - return oncias_SemanticCheck_chain$($this, $next); -}, -oncias_SemanticCheck$Leaf_ifOkChain = ($this, $next) => { - return oncias_SemanticCheck_ifOkChain$($this, $next); -}, -oncias_SemanticCheck$Leaf_map = ($this, $f) => { - return oncias_SemanticCheck_map$($this, $f); -}, -oncias_SemanticCheck$Leaf_flatMap = ($this, $f) => { - return oncias_SemanticCheck_flatMap$($this, $f); -}, -oncias_SemanticCheck$Leaf_productPrefix = $this => { - return $rt_s(5462); -}, -oncias_SemanticCheck$Leaf_productArity = $this => { - return 1; -}, -oncias_SemanticCheck$Leaf_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$f2; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticCheck$Leaf_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheck$Leaf_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheck$Leaf_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheck$Leaf_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticCheck$Leaf) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$f2; - $x$1 = $x$1.$f2; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -jl_VirtualMachineError = $rt_classWithoutFields(jl_Error), -jl_ThreadDeath = $rt_classWithoutFields(jl_Error), -jl_InterruptedException = $rt_classWithoutFields(jl_Exception), -suc_ControlThrowable = $rt_classWithoutFields(jl_Throwable), -oncifp_QualifiedName$ = $rt_classWithoutFields(), -oncifp_QualifiedName$_MODULE$ = null, -oncifp_QualifiedName$__clinit_ = () => { - oncifp_QualifiedName$_MODULE$ = new oncifp_QualifiedName$; -}; -function oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0() { - jl_Object.call(this); - this.$_040 = null; -} -let oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_040; - oncifp_ResolvedFunctionInvocation$_$callClinit(); - var$3 = var$2.$args0; - onciu_ZippableUtil$_$callClinit(); - var$2 = onciu_ZippableUtil$_Zippable(onciu_ZippableUtil$_MODULE$, var$3); - var$4 = var$1.$inputSignature; - var$1 = null; - sc_BuildFrom$_$callClinit(); - return (onciu_ZippableUtil$Zippable_zipLeft(var$2, var$4, var$1, sc_BuildFrom$_buildFromIterableOps(sc_BuildFrom$_MODULE$))).$map(new oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0); -}; -function oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1() { - jl_Object.call(this); - this.$_01150 = null; -} -let oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1_apply = var$0 => { - let var$1; - var$1 = var$0.$_01150; - oncifp_ResolvedFunctionInvocation$_$callClinit(); - return var$1.$args0; -}; -function onciafn_DecorateTuple$asScalaEither$lambda$_1_0() { - jl_Object.call(this); - this.$_0307 = null; -} -let oncief_Abs$ = $rt_classWithoutFields(oncief_Function), -oncief_Abs$_MODULE$ = null, -oncief_Abs$_signatures = null, -oncief_Abs$_$callClinit = () => { - oncief_Abs$_$callClinit = $rt_eraseClinit(oncief_Abs$); - oncief_Abs$__clinit_(); -}, -oncief_Abs$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, var$13, var$14, var$15, var$16, var$17, $x$10; - var$1 = new oncief_Abs$; - oncief_Abs$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Abs$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Abs$_MODULE$; - $x$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$8 = var$11.data; - $x$6 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$16 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$6, var$16, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$8[0] = $x$6; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$11)); - $x$4 = new oncius_ClosedDynamicUnionType; - $x$8 = s_Predef$_Set(s_Predef$_MODULE$); - var$16 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 2); - var$11 = var$8.data; - var$11[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$11[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncius_ClosedDynamicUnionType__init_($x$4, $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$16, var$8)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$16 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(s_Tuple2, 1); - var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5632)); - var$17 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$16, var$11)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5633), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$17); - oncief_Abs$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Abs$_name = $this => { - return $rt_s(5634); -}, -oncief_Abs$_productArity = $this => { - return 0; -}, -oncief_Abs$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Abs$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Abs$_hashCode = $this => { - return 65618; -}, -oncief_Abs$_toString = $this => { - return $rt_s(5635); -}, -oncief_Abs$_signatures0 = $this => { - oncief_Abs$_$callClinit(); - return oncief_Abs$_signatures; -}, -oncief_Acos$ = $rt_classWithoutFields(oncief_Function), -oncief_Acos$_MODULE$ = null, -oncief_Acos$_signatures = null, -oncief_Acos$_$callClinit = () => { - oncief_Acos$_$callClinit = $rt_eraseClinit(oncief_Acos$); - oncief_Acos$__clinit_(); -}, -oncief_Acos$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Acos$; - oncief_Acos$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Acos$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Acos$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5637), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Acos$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Acos$_name = $this => { - return $rt_s(5638); -}, -oncief_Acos$_productArity = $this => { - return 0; -}, -oncief_Acos$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Acos$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Acos$_hashCode = $this => { - return 2035110; -}, -oncief_Acos$_toString = $this => { - return $rt_s(5639); -}, -oncief_Acos$_signatures0 = $this => { - oncief_Acos$_$callClinit(); - return oncief_Acos$_signatures; -}, -oncief_Asin$ = $rt_classWithoutFields(oncief_Function), -oncief_Asin$_MODULE$ = null, -oncief_Asin$_signatures = null, -oncief_Asin$_$callClinit = () => { - oncief_Asin$_$callClinit = $rt_eraseClinit(oncief_Asin$); - oncief_Asin$__clinit_(); -}, -oncief_Asin$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Asin$; - oncief_Asin$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Asin$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Asin$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5640), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Asin$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Asin$_name = $this => { - return $rt_s(5641); -}, -oncief_Asin$_productArity = $this => { - return 0; -}, -oncief_Asin$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Asin$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Asin$_hashCode = $this => { - return 2050295; -}, -oncief_Asin$_toString = $this => { - return $rt_s(5642); -}, -oncief_Asin$_signatures0 = $this => { - oncief_Asin$_$callClinit(); - return oncief_Asin$_signatures; -}, -oncief_Atan$ = $rt_classWithoutFields(oncief_Function), -oncief_Atan$_MODULE$ = null, -oncief_Atan$_signatures = null, -oncief_Atan$_$callClinit = () => { - oncief_Atan$_$callClinit = $rt_eraseClinit(oncief_Atan$); - oncief_Atan$__clinit_(); -}, -oncief_Atan$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Atan$; - oncief_Atan$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Atan$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Atan$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5643), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Atan$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Atan$_name = $this => { - return $rt_s(5644); -}, -oncief_Atan$_productArity = $this => { - return 0; -}, -oncief_Atan$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Atan$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Atan$_hashCode = $this => { - return 2051008; -}, -oncief_Atan$_toString = $this => { - return $rt_s(5645); -}, -oncief_Atan$_signatures0 = $this => { - oncief_Atan$_$callClinit(); - return oncief_Atan$_signatures; -}, -oncief_Atan2$ = $rt_classWithoutFields(oncief_Function), -oncief_Atan2$_MODULE$ = null; -let oncief_Atan2$_signatures = null, -oncief_Atan2$_$callClinit = () => { - oncief_Atan2$_$callClinit = $rt_eraseClinit(oncief_Atan2$); - oncief_Atan2$__clinit_(); -}, -oncief_Atan2$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; - var$1 = new oncief_Atan2$; - oncief_Atan2$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Atan2$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Atan2$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5646), $rt_s(5647)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_FloatType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$7 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5646), $rt_s(5648)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5647), $rt_s(5649)); - var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5650), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); - oncief_Atan2$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Atan2$_name = $this => { - return $rt_s(5651); -}, -oncief_Atan2$_productArity = $this => { - return 0; -}, -oncief_Atan2$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Atan2$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Atan2$_hashCode = $this => { - return 63581298; -}, -oncief_Atan2$_toString = $this => { - return $rt_s(5652); -}, -oncief_Atan2$_signatures0 = $this => { - oncief_Atan2$_$callClinit(); - return oncief_Atan2$_signatures; -}, -oncief_AggregatingFunction = $rt_classWithoutFields(oncief_Function), -oncief_Avg$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_Avg$_MODULE$ = null, -oncief_Avg$_signatures = null, -oncief_Avg$_$callClinit = () => { - oncief_Avg$_$callClinit = $rt_eraseClinit(oncief_Avg$); - oncief_Avg$__clinit_(); -}, -oncief_Avg$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$4, var$8, $x$2, $x$6, var$11, $x$10, var$13, var$14, var$15, var$16, $x$3, var$18; - var$1 = new oncief_Avg$; - oncief_Avg$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Avg$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Avg$_MODULE$; - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - $x$8 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 3); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$15[2] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$16 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$8, var$16, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = $x$8; - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$4 = new oncius_ClosedDynamicUnionType; - $x$6 = s_Predef$_Set(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 3); - var$15 = var$8.data; - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$15[2] = oncius_package$_CTDuration(oncius_package$_MODULE$); - oncius_ClosedDynamicUnionType__init_($x$4, $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$16 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5653)); - var$18 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$16, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5654), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$18); - oncief_Avg$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Avg$_name = $this => { - return $rt_s(5655); -}, -oncief_Avg$_productArity = $this => { - return 0; -}, -oncief_Avg$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Avg$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Avg$_hashCode = $this => { - return 66226; -}, -oncief_Avg$_toString = $this => { - return $rt_s(5656); -}, -oncief_Avg$_signatures0 = $this => { - oncief_Avg$_$callClinit(); - return oncief_Avg$_signatures; -}, -oncief_BTrim$ = $rt_classWithoutFields(oncief_Function), -oncief_BTrim$_MODULE$ = null, -oncief_BTrim$_signatures = null, -oncief_BTrim$_$callClinit = () => { - oncief_BTrim$_$callClinit = $rt_eraseClinit(oncief_BTrim$); - oncief_BTrim$__clinit_(); -}, -oncief_BTrim$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$14, $x$16, $x$10, $x$15, $x$17, $x$19, $x$21, $x$23; - var$1 = new oncief_BTrim$; - oncief_BTrim$_$callClinit(); - oncief_Function__init_(var$1); - oncief_BTrim$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); - var$4 = var$3.data; - $x$1 = oncief_BTrim$_MODULE$; - $x$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - $x$14 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5440)); - $x$16 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$14, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5441), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$16); - $x$14 = oncief_BTrim$_MODULE$; - $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1141), $rt_s(5442)]))); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 2); - var$11 = var$8.data; - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$11[1] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$16 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); - $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$3 = s_Predef$_Map(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 2); - var$11 = var$8.data; - var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5657)); - var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5442), $rt_s(5658)); - $x$6 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$23 = s_None$_MODULE$; - var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5659), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$6); - oncief_BTrim$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_BTrim$_name = $this => { - return $rt_s(5660); -}, -oncief_BTrim$_productArity = $this => { - return 0; -}, -oncief_BTrim$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_BTrim$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_BTrim$_hashCode = $this => { - return 63567748; -}, -oncief_BTrim$_toString = $this => { - return $rt_s(5661); -}, -oncief_BTrim$_signatures0 = $this => { - oncief_BTrim$_$callClinit(); - return oncief_BTrim$_signatures; -}, -oncief_Ceil$ = $rt_classWithoutFields(oncief_Function), -oncief_Ceil$_MODULE$ = null, -oncief_Ceil$_signatures = null, -oncief_Ceil$_$callClinit = () => { - oncief_Ceil$_$callClinit = $rt_eraseClinit(oncief_Ceil$); - oncief_Ceil$__clinit_(); -}, -oncief_Ceil$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Ceil$; - oncief_Ceil$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Ceil$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Ceil$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5662)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5663), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Ceil$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Ceil$_name = $this => { - return $rt_s(5664); -}, -oncief_Ceil$_productArity = $this => { - return 0; -}, -oncief_Ceil$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Ceil$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Ceil$_hashCode = $this => { - return 2096421; -}, -oncief_Ceil$_toString = $this => { - return $rt_s(5665); -}, -oncief_Ceil$_signatures0 = $this => { - oncief_Ceil$_$callClinit(); - return oncief_Ceil$_signatures; -}, -oncief_CharLength$ = $rt_classWithoutFields(oncief_Function), -oncief_CharLength$_MODULE$ = null, -oncief_CharLength$_signatures = null; -let oncief_CharLength$_$callClinit = () => { - oncief_CharLength$_$callClinit = $rt_eraseClinit(oncief_CharLength$); - oncief_CharLength$__clinit_(); -}, -oncief_CharLength$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_CharLength$; - oncief_CharLength$_$callClinit(); - oncief_Function__init_(var$1); - oncief_CharLength$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_CharLength$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5666)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5667), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_CharLength$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_CharLength$_name = $this => { - return $rt_s(5668); -}, -oncief_CharLength$_productArity = $this => { - return 0; -}, -oncief_CharLength$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_SingleQuery$PartitionedClauses_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SingleQuery$PartitionedClauses) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$initialGraphSelection0; + var$3 = $x$1.$initialGraphSelection0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$importingWith0; + var$3 = $x$1.$importingWith0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$subsequentGraphSelection0; + var$3 = $x$1.$subsequentGraphSelection0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$3 = $this.$clausesExceptImportingWithAndLeadingGraphSelection0; + $x$1 = $x$1.$clausesExceptImportingWithAndLeadingGraphSelection0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break f; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_SingleQuery$PartitionedClauses)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncief_CharLength$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_SingleQuery$PartitionedClauses__init_0 = ($this, $initialGraphSelection, $importingWith, $subsequentGraphSelection, $clausesExceptImportingWithAndLeadingGraphSelection) => { + $this.$initialGraphSelection0 = $initialGraphSelection; + $this.$importingWith0 = $importingWith; + $this.$subsequentGraphSelection0 = $subsequentGraphSelection; + $this.$clausesExceptImportingWithAndLeadingGraphSelection0 = $clausesExceptImportingWithAndLeadingGraphSelection; }, -oncief_CharLength$_hashCode = $this => { - return (-1655620100); +oncia_SingleQuery$PartitionedClauses__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_SingleQuery$PartitionedClauses(); + oncia_SingleQuery$PartitionedClauses__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncia_UnmappedUnion$$init$$lambda$_16_0() { + jl_Object.call(this); + this.$_08 = null; +} +let oncia_UnmappedUnion$$init$$lambda$_16_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_08; + var$3 = (var$2.$rhs0()).$returnColumns(); + var$4 = new oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0; + var$4.$_0320 = var$1; + var$3 = sci_List_find(var$3, var$4); + var$4 = new oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1; + var$4.$_01139 = var$2; + var$4.$_1388 = var$1; + return s_Option_map(var$3, var$4); }, -oncief_CharLength$_toString = $this => { - return $rt_s(5669); +oncias_Scope$symbolDefinitions$lambda$_17_0 = $rt_classWithoutFields(), +oncias_Scope$symbolDefinitions$lambda$_17_0_apply = (var$0, var$1) => { + return var$1.$definition; +}; +function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_0() { + jl_Object.call(this); + this.$_0795 = null; +} +let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0795; + return jl_Boolean_valueOf((var$1.$postConditions()).$subsetOf(var$2)); +}; +function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_1() { + jl_Object.call(this); + this.$_0177 = null; +} +let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0177; + return jl_Boolean_valueOf((var$1.$preConditions()).$subsetOf(var$2)); +}; +function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_2() { + let a = this; jl_Object.call(a); + a.$_0762 = null; + a.$_1254 = null; + a.$_285 = null; +} +let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0762; + var$3 = var$0.$_1254; + var$4 = var$0.$_285; + onciu_StepSequencer$MutableDirectedGraph_connect(var$2, var$3, var$1); + return var$4.$addOne(var$1); +}; +function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_3() { + jl_Object.call(this); + this.$_01007 = null; +} +let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_3_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_01007; + return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$((var$1.$postConditions()).$intersect(var$2))); +}; +function onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_4() { + let a = this; jl_Object.call(a); + a.$_0326 = null; + a.$_1116 = null; + a.$_241 = null; +} +let onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_4_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0326; + var$3 = var$0.$_1116; + var$4 = var$0.$_241; + onciu_StepSequencer$MutableDirectedGraph_connect(var$2, var$1, var$3); + return var$4.$addOne(var$3); }, -oncief_CharLength$_signatures0 = $this => { - oncief_CharLength$_$callClinit(); - return oncief_CharLength$_signatures; +ju_Comparator$NaturalOrder = $rt_classWithoutFields(), +ju_Comparator$NaturalOrder_INSTANCE = null, +ju_Comparator$NaturalOrder_compare = ($this, $o1, $o2) => { + return $o1.$compareTo1($o2); }, -oncief_CharacterLength$ = $rt_classWithoutFields(oncief_Function), -oncief_CharacterLength$_MODULE$ = null, -oncief_CharacterLength$_signatures = null, -oncief_CharacterLength$_$callClinit = () => { - oncief_CharacterLength$_$callClinit = $rt_eraseClinit(oncief_CharacterLength$); - oncief_CharacterLength$__clinit_(); +ju_Comparator$NaturalOrder__clinit_ = () => { + ju_Comparator$NaturalOrder_INSTANCE = new ju_Comparator$NaturalOrder; }, -oncief_CharacterLength$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_CharacterLength$; - oncief_CharacterLength$_$callClinit(); - oncief_Function__init_(var$1); - oncief_CharacterLength$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_CharacterLength$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5666)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5667), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_CharacterLength$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oavr_IntStream = $rt_classWithoutFields(0), +oavr_TokenStream = $rt_classWithoutFields(0); +function oavr_BufferedTokenStream() { + let a = this; jl_Object.call(a); + a.$tokenSource = null; + a.$tokens = null; + a.$p = 0; + a.$fetchedEOF = 0; +} +let oavr_BufferedTokenStream_$assertionsDisabled = 0, +oavr_BufferedTokenStream_index = $this => { + return $this.$p; }, -oncief_CharacterLength$_name = $this => { - return $rt_s(5670); +oavr_BufferedTokenStream_seek = ($this, $index) => { + oavr_BufferedTokenStream_lazyInit($this); + $this.$p = oavr_CommonTokenStream_adjustSeekIndex($this, $index); }, -oncief_CharacterLength$_productArity = $this => { - return 0; +oavr_BufferedTokenStream_size = $this => { + return $this.$tokens.$size0; }, -oncief_CharacterLength$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_BufferedTokenStream_consume = $this => { + let var$1, $skipEofCheck, var$3; + var$1 = $this.$p; + $skipEofCheck = var$1 < 0 ? 0 : !$this.$fetchedEOF ? (var$1 >= $this.$tokens.$size0 ? 0 : 1) : var$1 >= ($this.$tokens.$size0 - 1 | 0) ? 0 : 1; + if (!$skipEofCheck && oavr_BufferedTokenStream_LA($this, 1) == (-1)) { + var$3 = new jl_IllegalStateException; + jl_Throwable__init_(var$3, $rt_s(4255)); + $rt_throw(var$3); + } + if (oavr_BufferedTokenStream_sync($this, $this.$p + 1 | 0)) + $this.$p = oavr_CommonTokenStream_adjustSeekIndex($this, $this.$p + 1 | 0); }, -oncief_CharacterLength$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_BufferedTokenStream_sync = ($this, $i) => { + let var$2, $n, $fetched; + if (!oavr_BufferedTokenStream_$assertionsDisabled && $i < 0) { + var$2 = new jl_AssertionError; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); + } + $n = ($i - $this.$tokens.$size0 | 0) + 1 | 0; + if ($n <= 0) + return 1; + a: { + if ($this.$fetchedEOF) + $fetched = 0; + else { + $i = 0; + while ($i < $n) { + var$2 = oavr_Lexer_nextToken($this.$tokenSource); + if ($rt_isInstance(var$2, oavr_WritableToken)) + var$2.$index6 = $this.$tokens.$size0; + ju_ArrayList_add($this.$tokens, var$2); + if (var$2.$getType0() == (-1)) { + $this.$fetchedEOF = 1; + $fetched = $i + 1 | 0; + break a; + } + $i = $i + 1 | 0; + } + $fetched = $n; + } + } + return $fetched < $n ? 0 : 1; }, -oncief_CharacterLength$_hashCode = $this => { - return 925423439; +oavr_BufferedTokenStream_LA = ($this, $i) => { + return (oavr_CommonTokenStream_LT($this, $i)).$getType0(); }, -oncief_CharacterLength$_toString = $this => { - return $rt_s(5671); +oavr_BufferedTokenStream_lazyInit = $this => { + if ($this.$p == (-1)) { + oavr_BufferedTokenStream_sync($this, 0); + $this.$p = oavr_CommonTokenStream_adjustSeekIndex($this, 0); + } }, -oncief_CharacterLength$_signatures0 = $this => { - oncief_CharacterLength$_$callClinit(); - return oncief_CharacterLength$_signatures; +oavr_BufferedTokenStream_nextTokenOnChannel = ($this, $i, $channel) => { + let $token; + oavr_BufferedTokenStream_sync($this, $i); + if ($i >= oavr_BufferedTokenStream_size($this)) + return oavr_BufferedTokenStream_size($this) - 1 | 0; + $token = ju_ArrayList_get($this.$tokens, $i); + while ($token.$getChannel() != $channel) { + if ($token.$getType0() == (-1)) + return $i; + $i = $i + 1 | 0; + oavr_BufferedTokenStream_sync($this, $i); + $token = ju_ArrayList_get($this.$tokens, $i); + } + return $i; }, -oncief_Coalesce$ = $rt_classWithoutFields(oncief_Function), -oncief_Coalesce$_MODULE$ = null, -oncief_Coalesce$_signatures = null, -oncief_Coalesce$_$callClinit = () => { - oncief_Coalesce$_$callClinit = $rt_eraseClinit(oncief_Coalesce$); - oncief_Coalesce$__clinit_(); +oavr_BufferedTokenStream_getText = ($this, $interval) => { + let $i, $stop, var$4, $buf, $t; + $i = $interval.$a0; + $stop = $interval.$b; + if ($i >= 0 && $stop >= 0) { + oavr_BufferedTokenStream_sync($this, $stop); + var$4 = $this.$tokens.$size0; + if ($stop >= var$4) + $stop = var$4 - 1 | 0; + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + a: { + while (true) { + if ($i > $stop) + break a; + $t = ju_ArrayList_get($this.$tokens, $i); + if ($t.$getType0() == (-1)) + break; + jl_AbstractStringBuilder_append($buf, $t.$getText()); + $i = $i + 1 | 0; + } + } + return jl_AbstractStringBuilder_toString($buf); + } + return $rt_s(4); }, -oncief_Coalesce$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Coalesce$; - oncief_Coalesce$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Coalesce$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Coalesce$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5672)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5673), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Coalesce$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oavr_BufferedTokenStream__clinit_ = () => { + oavr_BufferedTokenStream_$assertionsDisabled = 0; +}; +function oavr_CommonTokenStream() { + oavr_BufferedTokenStream.call(this); + this.$channel1 = 0; +} +let oavr_CommonTokenStream__init_ = ($this, $tokenSource) => { + $this.$tokens = ju_ArrayList__init_0(100); + $this.$p = (-1); + if ($tokenSource !== null) { + $this.$tokenSource = $tokenSource; + $this.$channel1 = 0; + return; + } + $tokenSource = new jl_NullPointerException; + jl_Throwable__init_($tokenSource, $rt_s(4256)); + $rt_throw($tokenSource); }, -oncief_Coalesce$_name = $this => { - return $rt_s(5674); +oavr_CommonTokenStream__init_0 = var_0 => { + let var_1 = new oavr_CommonTokenStream(); + oavr_CommonTokenStream__init_(var_1, var_0); + return var_1; }, -oncief_Coalesce$_productArity = $this => { - return 0; +oavr_CommonTokenStream_adjustSeekIndex = ($this, $i) => { + return oavr_BufferedTokenStream_nextTokenOnChannel($this, $i, $this.$channel1); }, -oncief_Coalesce$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_CommonTokenStream_LT = ($this, $k) => { + let $i, $n, var$4, var$5, var$6; + oavr_BufferedTokenStream_lazyInit($this); + if (!$k) + return null; + if ($k >= 0) { + $i = $this.$p; + $n = 1; + while ($n < $k) { + var$4 = $i + 1 | 0; + if (oavr_BufferedTokenStream_sync($this, var$4)) + $i = oavr_BufferedTokenStream_nextTokenOnChannel($this, var$4, $this.$channel1); + $n = $n + 1 | 0; + } + return ju_ArrayList_get($this.$tokens, $i); + } + a: { + $k = -$k | 0; + if ($k) { + $i = $this.$p; + if (($i - $k | 0) >= 0) { + $n = 1; + while ($n <= $k && $i > 0) { + b: { + $i = $i - 1 | 0; + var$5 = $this.$channel1; + oavr_BufferedTokenStream_sync($this, $i); + if ($i >= oavr_BufferedTokenStream_size($this)) + $i = oavr_BufferedTokenStream_size($this) - 1 | 0; + else + c: { + while ($i >= 0) { + var$6 = ju_ArrayList_get($this.$tokens, $i); + if (var$6.$getType0() == (-1)) + break c; + if (var$6.$getChannel() == var$5) + break c; + $i = $i + (-1) | 0; + } + break b; + } + } + $n = $n + 1 | 0; + } + if ($i < 0) { + var$6 = null; + break a; + } + var$6 = ju_ArrayList_get($this.$tokens, $i); + break a; + } + } + var$6 = null; + } + return var$6; +}; +function oncipl_UnicodeEscapeReplacementReader$InvalidUnicodeLiteral() { + let a = this; jl_RuntimeException.call(a); + a.$offset6 = 0; + a.$line8 = 0; + a.$column4 = 0; +} +let oncipa_AstBuildingAntlrParser = $rt_classWithoutFields(0), +oncipa_AstBuildingAntlrParser_exitRule$ = $$this => { + let var$2, var$3, $$je; + a: { + var$2 = $$this.$_ctx; + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule(); + if ($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors()) { + ($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker()).$exitEveryRule(var$2); + ($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder()).$exitEveryRule(var$2); + } else if (!$$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed()) { + if (!($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker()).$check0(var$2)) + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(1); + else + try { + ($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder()).$exitEveryRule(var$2); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + var$3 = $$je; + if (var$3 !== null) { + var$2 = suc_NonFatal$_unapply(suc_NonFatal$_MODULE$, var$3); + if (!s_Option_isEmpty(var$2)) { + var$3 = var$2.$get1(); + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(1); + $rt_throw(var$3); + } + } + $rt_throw(var$3); + } else { + throw $$e; + } + } + } + } + if ($$this.$isSafeToFreeChildren(var$2)) + var$2.$children0 = null; }, -oncief_Coalesce$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipa_AstBuildingAntlrParser_createTerminalNode$ = ($$this, $parent, $t) => { + return !$rt_isInstance($t, oavrt_TerminalNode) ? $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode($parent, $t) : $t; }, -oncief_Coalesce$_hashCode = $this => { - return (-882240569); +oncipa_AstBuildingAntlrParser_reset$ = $$this => { + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset(); + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq($$this.$createAstBuilder()); + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq($$this.$createSyntaxChecker()); + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(0); }, -oncief_Coalesce$_toString = $this => { - return $rt_s(5675); +oncipa_AstBuildingAntlrParser_addParseListener$ = ($$this, $listener) => { + $$this = new jl_UnsupportedOperationException; + jl_Throwable__init_0($$this); + $rt_throw($$this); }, -oncief_Coalesce$_signatures0 = $this => { - oncief_Coalesce$_$callClinit(); - return oncief_Coalesce$_signatures; +oncipa_AstBuildingAntlrParser_setErrorHandler$ = ($$this, $handler) => { + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler($handler); + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq($handler instanceof oavr_BailErrorStrategy); }, -oncief_Collect$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_Collect$_MODULE$ = null, -oncief_Collect$_signatures = null, -oncief_Collect$_$callClinit = () => { - oncief_Collect$_$callClinit = $rt_eraseClinit(oncief_Collect$); - oncief_Collect$__clinit_(); +oncipa_AstBuildingAntlrParser_notifyErrorListeners$ = ($$this, $offendingToken, $msg, $e) => { + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(1); + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners($offendingToken, $msg, $e); }, -oncief_Collect$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14; - var$1 = new oncief_Collect$; - oncief_Collect$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Collect$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Collect$_MODULE$; - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTAny($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$14 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(s_Tuple2, 1); - var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5676)); - var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$11)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5677), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Collect$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipa_AstBuildingAntlrParser_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(0); + $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq(0); }, -oncief_Collect$_name = $this => { - return $rt_s(5678); +oavr_Vocabulary = $rt_classWithoutFields(0); +function oncip_CypherErrorVocabulary() { + jl_Object.call(this); + this.$conf = null; +} +let oncip_CypherErrorVocabulary_expected = ($this, $candidates) => { + let $tokenNames, $ruleNames, var$4, var$5; + $tokenNames = sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, ju_HashMap_entrySet($candidates.$rules)))); + $ruleNames = new oncip_CypherErrorVocabulary$expected$lambda$_0_0; + $ruleNames.$_0529 = $this; + $ruleNames = $tokenNames.$flatMap($ruleNames); + sm_Ordering$String$_$callClinit(); + $ruleNames = $ruleNames.$sorted(sm_Ordering$String$_MODULE$); + $tokenNames = (sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, ju_HashMap_entrySet($candidates.$tokens0))))).$map(new oncip_CypherErrorVocabulary$expected$lambda$_0_1); + var$4 = new oncip_CypherErrorVocabulary$expected$lambda$_0_2; + var$4.$_0497 = $this; + $candidates = sm_Ordering$String$_MODULE$; + var$5 = new sm_Ordering$IterableOrdering; + var$5.$ord0 = $candidates; + $tokenNames = sc_SeqOps_sortBy$($tokenNames, var$4, var$5); + $candidates = new oncip_CypherErrorVocabulary$expected$lambda$_0_3; + $candidates.$_0944 = $this; + return ($ruleNames.$concat($tokenNames.$map($candidates))).$distinct0(); }, -oncief_Collect$_productArity = $this => { - return 0; +oncip_CypherErrorVocabulary_getSymbolicName = ($this, $tokenType) => { + return oavr_VocabularyImpl_getSymbolicName($this.$conf.$vocabulary0(), $tokenType); }, -oncief_Collect$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncip_CypherErrorVocabulary_getDisplayName = ($this, $tokenType) => { + let $name, $displayNames, var$4; + $name = ($this.$conf.$customTokenDisplayNames()).$get2(jl_Integer_valueOf($tokenType)); + if ($name instanceof s_Some) + return $name.$value5; + $displayNames = ($this.$conf.$vocabulary0()).$displayNames; + if ($tokenType > 0) { + $displayNames = $displayNames.data; + if ($tokenType < $displayNames.length && $displayNames[$tokenType] !== null) + return $displayNames[$tokenType]; + } + s_Option$_$callClinit(); + $name = s_Option$_apply(s_Option$_MODULE$, oavr_VocabularyImpl_getLiteralName($this.$conf.$vocabulary0(), $tokenType)); + var$4 = new oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0; + var$4.$_0463 = $this; + var$4.$_1160 = $tokenType; + $name = s_Option_orElse($name, var$4); + var$4 = new oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1; + var$4.$_0932 = $tokenType; + return s_Option_getOrElse($name, var$4); }, -oncief_Collect$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncip_CypherErrorVocabulary_org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1 = ($this, $gs, $ruleCallStack$1) => { + let var$3; + var$3 = new oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0; + var$3.$_0803 = $this; + var$3.$_1268 = $ruleCallStack$1; + return sc_IterableOnceOps_forall$($gs, var$3); }, -oncief_Collect$_hashCode = $this => { - return (-1680869110); +oavrt_Tree = $rt_classWithoutFields(0), +oavrt_SyntaxTree = $rt_classWithoutFields(0), +oavrt_ParseTree = $rt_classWithoutFields(0), +oavrt_RuleNode = $rt_classWithoutFields(0); +function oavr_RuleContext() { + let a = this; jl_Object.call(a); + a.$parent = null; + a.$invokingState = 0; +} +let oavr_RuleContext_isEmpty = $this => { + return $this.$invokingState != (-1) ? 0 : 1; }, -oncief_Collect$_toString = $this => { - return $rt_s(5679); +oavr_RuleContext_getRuleContext = $this => { + return $this; }, -oncief_Collect$_signatures0 = $this => { - oncief_Collect$_$callClinit(); - return oncief_Collect$_signatures; +oavr_RuleContext_getRuleIndex = $this => { + return (-1); }, -oncief_Cos$ = $rt_classWithoutFields(oncief_Function), -oncief_Cos$_MODULE$ = null, -oncief_Cos$_signatures = null, -oncief_Cos$_$callClinit = () => { - oncief_Cos$_$callClinit = $rt_eraseClinit(oncief_Cos$); - oncief_Cos$__clinit_(); +oavr_RuleContext_setAltNumber = ($this, $altNumber) => { + return; }, -oncief_Cos$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Cos$; - oncief_Cos$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Cos$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Cos$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5680), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Cos$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}; -let oncief_Cos$_name = $this => { - return $rt_s(5681); +oavr_RuleContext_toString0 = $this => { + return oavr_RuleContext_toString($this, null, null); }, -oncief_Cos$_productArity = $this => { - return 0; +oavr_RuleContext_toString = ($this, $ruleNames, $stop) => { + let $buf, $ruleIndex, $ruleName; + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + jl_AbstractStringBuilder_append($buf, $rt_s(424)); + while ($this !== null && $this !== $stop) { + if ($ruleNames !== null) { + $ruleIndex = $this.$getRuleIndex(); + jl_AbstractStringBuilder_append($buf, $ruleIndex >= 0 && $ruleIndex < $ruleNames.$size() ? $ruleNames.$get0($ruleIndex) : jl_Integer_toString($ruleIndex)); + } else if (!oavr_RuleContext_isEmpty($this)) + jl_StringBuilder_append0($buf, $this.$invokingState); + $ruleName = $this.$parent; + if ($ruleName !== null && !($ruleNames === null && oavr_RuleContext_isEmpty($ruleName))) + jl_AbstractStringBuilder_append($buf, $rt_s(370)); + $this = $this.$parent; + } + jl_AbstractStringBuilder_append($buf, $rt_s(425)); + return jl_AbstractStringBuilder_toString($buf); +}; +function oavr_ParserRuleContext() { + let a = this; oavr_RuleContext.call(a); + a.$children0 = null; + a.$start1 = null; + a.$stop = null; + a.$exception = null; +} +let oavr_ParserRuleContext_EMPTY = null, +oavr_ParserRuleContext__init_ = $this => { + $this.$invokingState = (-1); }, -oncief_Cos$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_ParserRuleContext__init_0 = () => { + let var_0 = new oavr_ParserRuleContext(); + oavr_ParserRuleContext__init_(var_0); + return var_0; }, -oncief_Cos$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_ParserRuleContext_copyFrom = ($this, $ctx) => { + let $child; + a: { + $this.$parent = $ctx.$parent; + $this.$invokingState = $ctx.$invokingState; + $this.$start1 = $ctx.$start1; + $this.$stop = $ctx.$stop; + if ($ctx.$children0 !== null) { + $this.$children0 = ju_ArrayList__init_(); + $ctx = ju_AbstractList_iterator($ctx.$children0); + while (true) { + if (!ju_AbstractList$1_hasNext($ctx)) + break a; + $child = ju_AbstractList$1_next($ctx); + if ($rt_isInstance($child, oavrt_ErrorNode)) + oavr_ParserRuleContext_addChild0($this, $child); + } + } + } }, -oncief_Cos$_hashCode = $this => { - return 67943; +oavr_ParserRuleContext_enterRule = ($this, $listener) => { + return; }, -oncief_Cos$_toString = $this => { - return $rt_s(5682); +oavr_ParserRuleContext_exitRule = ($this, $listener) => { + return; }, -oncief_Cos$_signatures0 = $this => { - oncief_Cos$_$callClinit(); - return oncief_Cos$_signatures; +oavr_ParserRuleContext_addAnyChild = ($this, $t) => { + if ($this.$children0 === null) + $this.$children0 = ju_ArrayList__init_(); + ju_ArrayList_add($this.$children0, $t); + return $t; }, -oncief_Cot$ = $rt_classWithoutFields(oncief_Function), -oncief_Cot$_MODULE$ = null, -oncief_Cot$_signatures = null, -oncief_Cot$_$callClinit = () => { - oncief_Cot$_$callClinit = $rt_eraseClinit(oncief_Cot$); - oncief_Cot$__clinit_(); +oavr_ParserRuleContext_addChild = ($this, $ruleInvocation) => { + return oavr_ParserRuleContext_addAnyChild($this, $ruleInvocation); }, -oncief_Cot$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Cot$; - oncief_Cot$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Cot$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Cot$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5683), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Cot$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oavr_ParserRuleContext_addChild0 = ($this, $t) => { + $t.$setParent($this); + return oavr_ParserRuleContext_addAnyChild($this, $t); }, -oncief_Cot$_name = $this => { - return $rt_s(5684); +oavr_ParserRuleContext_addErrorNode = ($this, $errorNode) => { + $errorNode.$parent3 = $this; + return oavr_ParserRuleContext_addAnyChild($this, $errorNode); }, -oncief_Cot$_productArity = $this => { - return 0; +oavr_ParserRuleContext_removeLastChild = $this => { + let var$1; + var$1 = $this.$children0; + if (var$1 !== null) + ju_ArrayList_remove(var$1, var$1.$size0 - 1 | 0); }, -oncief_Cot$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_ParserRuleContext_getParent0 = $this => { + return $this.$parent; }, -oncief_Cot$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_ParserRuleContext_getRuleContext = ($this, $ctxType, $i) => { + return oncip_AstRuleCtx_getChild0($this, $ctxType, $i); }, -oncief_Cot$_hashCode = $this => { - return 67944; +oavr_ParserRuleContext_getChildCount = $this => { + let var$1; + var$1 = $this.$children0; + return var$1 === null ? 0 : var$1.$size0; }, -oncief_Cot$_toString = $this => { - return $rt_s(5685); +oavr_ParserRuleContext_getStart = $this => { + return $this.$start1; }, -oncief_Cot$_signatures0 = $this => { - oncief_Cot$_$callClinit(); - return oncief_Cot$_signatures; +oavr_ParserRuleContext_getParent = $this => { + return $this.$parent; }, -oncief_Count$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_Count$_MODULE$ = null, -oncief_Count$_signatures = null, -oncief_Count$_$callClinit = () => { - oncief_Count$_$callClinit = $rt_eraseClinit(oncief_Count$); - oncief_Count$__clinit_(); +oavr_ParserRuleContext__clinit_ = () => { + oavr_ParserRuleContext_EMPTY = oavr_ParserRuleContext__init_0(); +}; +function oncip_AstRuleCtx() { + oavr_ParserRuleContext.call(this); + this.$ast0 = null; +} +let oncip_AstRuleCtx__init_ = ($this, $parent, $invokingStateNumber) => { + $this.$invokingState = (-1); + $this.$parent = $parent; + $this.$invokingState = $invokingStateNumber; + $this.$children0 = ju_ArrayList__init_0(1); }, -oncief_Count$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Count$; - oncief_Count$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Count$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Count$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5686)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5687), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Count$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncip_AstRuleCtx__init_0 = (var_0, var_1) => { + let var_2 = new oncip_AstRuleCtx(); + oncip_AstRuleCtx__init_(var_2, var_0, var_1); + return var_2; }, -oncief_Count$_name = $this => { - return $rt_s(3559); +oncip_AstRuleCtx_ast = $this => { + return $this.$ast0; }, -oncief_Count$_productArity = $this => { - return 0; +oncip_AstRuleCtx_getText = $this => { + let $builder, $size, $i; + a: { + $builder = $this.$children0; + $size = $builder.$size0; + switch ($size) { + case 0: + break; + case 1: + $builder = (ju_ArrayList_get($builder, 0)).$getText(); + break a; + default: + $builder = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($builder); + $i = 0; + while ($i < $size) { + jl_AbstractStringBuilder_append($builder, (ju_ArrayList_get($this.$children0, $i)).$getText()); + $i = $i + 1 | 0; + } + $builder = jl_AbstractStringBuilder_toString($builder); + break a; + } + $builder = $rt_s(4); + } + return $builder; }, -oncief_Count$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncip_AstRuleCtx_getToken = ($this, $targetType, $targetIndex) => { + let $tokenIndex, $size, $i, $node; + $tokenIndex = (-1); + $size = $this.$children0.$size0; + $i = 0; + while (true) { + if ($i >= $size) + return null; + $node = ju_ArrayList_get($this.$children0, $i); + if ($rt_isInstance($node, oavrt_TerminalNode)) { + $node = $node; + if (($node.$getSymbol()).$getType0() == $targetType) { + $tokenIndex = $tokenIndex + 1 | 0; + if ($tokenIndex == $targetIndex) + break; + } + } + $i = $i + 1 | 0; + } + return $node; }, -oncief_Count$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncip_AstRuleCtx_getTokens = ($this, $targetType) => { + let $tokens, $size, $i, $node; + $tokens = null; + $size = $this.$children0.$size0; + $i = 0; + while ($i < $size) { + $node = ju_ArrayList_get($this.$children0, $i); + if ($rt_isInstance($node, oavrt_TerminalNode)) { + $node = $node; + if (($node.$getSymbol()).$getType0() == $targetType) { + if ($tokens === null) + $tokens = ju_ArrayList__init_(); + ju_ArrayList_add($tokens, $node); + } + } + $i = $i + 1 | 0; + } + if ($tokens === null) + $tokens = ju_Collections_EMPTY_LIST; + return $tokens; }, -oncief_Count$_hashCode = $this => { - return 65298671; +oncip_AstRuleCtx_getRuleContexts = ($this, $ctxType) => { + let $contexts, $size, $i, $o; + $contexts = null; + $size = $this.$children0.$size0; + $i = 0; + while ($i < $size) { + $o = ju_ArrayList_get($this.$children0, $i); + if (jl_Class_isInstance($ctxType, $o)) { + if ($contexts === null) + $contexts = ju_ArrayList__init_(); + ju_ArrayList_add($contexts, jl_Class_cast($ctxType, $o)); + } + $i = $i + 1 | 0; + } + if ($contexts === null) + $contexts = ju_Collections_EMPTY_LIST; + return $contexts; }, -oncief_Count$_toString = $this => { - return $rt_s(5688); +oncip_AstRuleCtx_getChild0 = ($this, $ctxType, $targetIndex) => { + let $childIndex, $size, $i, $o; + $childIndex = (-1); + $size = $this.$children0.$size0; + $i = 0; + while ($i < $size) { + $o = ju_ArrayList_get($this.$children0, $i); + if (jl_Class_isInstance($ctxType, $o)) { + $childIndex = $childIndex + 1 | 0; + if ($childIndex == $targetIndex) + return jl_Class_cast($ctxType, $o); + } + $i = $i + 1 | 0; + } + return null; }, -oncief_Count$_signatures0 = $this => { - oncief_Count$_$callClinit(); - return oncief_Count$_signatures; +oncip_AstRuleCtx_getChild = ($this, $i) => { + return ju_ArrayList_get($this.$children0, $i); }, -oncief_Degrees$ = $rt_classWithoutFields(oncief_Function), -oncief_Degrees$_MODULE$ = null, -oncief_Degrees$_signatures = null, -oncief_Degrees$_$callClinit = () => { - oncief_Degrees$_$callClinit = $rt_eraseClinit(oncief_Degrees$); - oncief_Degrees$__clinit_(); +oncipa_AntlrAstParser$doParse$lambda$_6_0 = $rt_classWithoutFields(), +oncipa_AntlrAstParser$doParse$lambda$_6_0_apply = (var$0, var$1, var$2) => { + return onih_Exceptions_chain(var$1, var$2); }, -oncief_Degrees$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Degrees$; - oncief_Degrees$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Degrees$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Degrees$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5689), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Degrees$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipa_AntlrAstParser$doParse$lambda$_6_1 = $rt_classWithoutFields(), +oncipa_AntlrAstParser$doParse$lambda$_6_1_apply = (var$0, var$1, var$2) => { + return onih_Exceptions_chain(var$1, var$2); +}; +function oncia_CatalogName() { + jl_Object.call(this); + this.$parts1 = null; +} +let oncia_CatalogName_qualifiedNameString = $this => { + let var$1; + var$1 = sci_List_map($this.$parts1, new oncia_CatalogName$qualifiedNameString$lambda$_10_0); + oncia_CatalogName$_$callClinit(); + return sc_AbstractIterable_mkString(var$1, oncia_CatalogName$_separatorString(oncia_CatalogName$_MODULE$)); }, -oncief_Degrees$_name = $this => { - return $rt_s(5690); +oncia_CatalogName_equals = ($this, $obj) => { + if (!($obj instanceof oncia_CatalogName)) + return 0; + return jl_String_equals(jl_String_toLowerCase0(oncia_CatalogName_qualifiedNameString($obj)), jl_String_toLowerCase0(oncia_CatalogName_qualifiedNameString($this))); }, -oncief_Degrees$_productArity = $this => { - return 0; +oncia_CatalogName_hashCode = $this => { + return jl_String_hashCode(jl_String_toLowerCase0(oncia_CatalogName_qualifiedNameString($this))); }, -oncief_Degrees$_productElement = ($this, $x$1) => { +oncia_CatalogName_productPrefix = $this => { + return $rt_s(4257); +}, +oncia_CatalogName_productArity = $this => { + return 1; +}, +oncia_CatalogName_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$parts1; + default: + } return sr_Statics_ioobe($x$1); }, -oncief_Degrees$_productIterator = $this => { +oncia_CatalogName_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_Degrees$_hashCode = $this => { - return (-1084095737); +oncia_CatalogName_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_Degrees$_toString = $this => { - return $rt_s(5691); +sc_Map$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), +sc_Map$$_clinit_$lambda$_0_0_apply = var$0 => { + sc_Map$_$callClinit(); + return sc_Map$_DefaultSentinel; }, -oncief_Degrees$_signatures0 = $this => { - oncief_Degrees$_$callClinit(); - return oncief_Degrees$_signatures; +jl_VirtualMachineError = $rt_classWithoutFields(jl_Error), +jl_ThreadDeath = $rt_classWithoutFields(jl_Error), +jl_InterruptedException = $rt_classWithoutFields(jl_Exception), +jl_LinkageError = $rt_classWithoutFields(jl_Error), +suc_ControlThrowable = $rt_classWithoutFields(jl_Throwable), +oavr_Token = $rt_classWithoutFields(0), +oncipl_CypherToken = $rt_classWithoutFields(0), +oncipl_CypherToken_factory = $fullTokens => { + return !$fullTokens ? oncipl_CypherTokenFactory$_MODULE$ : oncipl_FullCypherTokenFactory$_MODULE$; }, -oncief_Distance$ = $rt_classWithoutFields(oncief_Function), -oncief_Distance$_MODULE$ = null, -oncief_Distance$_name = null, -oncief_Distance$_signatures = null, -oncief_Distance$_$callClinit = () => { - oncief_Distance$_$callClinit = $rt_eraseClinit(oncief_Distance$); - oncief_Distance$__clinit_(); +oncipl_CypherToken_position$ = $$this => { + return oncipl_CypherQueryAccess_inputPosition($$this.$getTokenSource(), $$this.$getStartIndex(), $$this.$getLine(), $$this.$getCharPositionInLine()); }, -oncief_Distance$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$4, $x$8, var$9, var$10, $x$3, $x$6, var$13, var$14, $x$10; - var$1 = new oncief_Distance$; - oncief_Distance$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Distance$_MODULE$ = var$1; - oncief_Distance$_name = $rt_s(5692); - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Distance$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5693), $rt_s(696)]))); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_PointType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTPoint(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTPoint(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SPATIAL(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5693), $rt_s(5694)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(696), $rt_s(5695)); - var$14 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$13, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5696), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Distance$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipl_CypherToken_inputOffset$ = ($$this, $parserOffset) => { + return oncipl_CypherQueryAccess_inputOffset($$this.$getTokenSource(), $parserOffset); }, -oncief_Distance$_name0 = $this => { - oncief_Distance$_$callClinit(); - return oncief_Distance$_name; -}; -let oncief_Distance$_productArity = $this => { - return 0; +js_PrivilegedAction = $rt_classWithoutFields(0); +function oavra_ParserATNSimulator$1() { + jl_Object.call(this); + this.$val$envName = null; +} +let oavra_ParserATNSimulator$1__init_0 = ($this, var$1) => { + $this.$val$envName = var$1; }, -oncief_Distance$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavra_ParserATNSimulator$1__init_ = var_0 => { + let var_1 = new oavra_ParserATNSimulator$1(); + oavra_ParserATNSimulator$1__init_0(var_1, var_0); + return var_1; }, -oncief_Distance$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +js_AccessController = $rt_classWithoutFields(), +js_AccessController_doPrivileged = $action => { + return null; }, -oncief_Distance$_hashCode = $this => { - return 353103893; +onciu_RewritableJavascript$PROXY$7_73 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_73_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_GraphRefType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oncief_Distance$_toString = $this => { - return $rt_s(5697); +onciu_RewritableJavascript$PROXY$7_74 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_74_copyConstructor = (var$1, var$2, var$3) => { + return s_Some__init_(var$3.data[0]); }, -oncief_Distance$_signatures0 = $this => { - oncief_Distance$_$callClinit(); - return oncief_Distance$_signatures; +onciu_RewritableJavascript$PROXY$7_76 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_76_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SingleQuery_copy(var$2, var$3[0], var$3[1]); }, -oncief_E$ = $rt_classWithoutFields(oncief_Function), -oncief_E$_MODULE$ = null, -oncief_E$_signatures = null, -oncief_E$_$callClinit = () => { - oncief_E$_$callClinit = $rt_eraseClinit(oncief_E$); - oncief_E$__clinit_(); +onciu_RewritableJavascript$PROXY$7_77 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_77_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Equals__init_0(var$3[0], var$3[1], var$3[2]); }, -oncief_E$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new oncief_E$; - oncief_E$_$callClinit(); - oncief_Function__init_(var$1); - oncief_E$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - oncie_FunctionTypeSignature$_$callClinit(); - var$5 = oncie_FunctionTypeSignature$_MODULE$; - var$6 = oncief_E$_MODULE$; - oncius_package$_$callClinit(); - var$7 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(5698), oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$)); - oncief_E$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +onciu_RewritableJavascript$PROXY$9_0 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_0_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_E$_name = $this => { - return $rt_s(5699); +onciu_RewritableJavascript$PROXY$11_0 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_0_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_E$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_1 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_1_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_E$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$11_1 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_1_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_E$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$9_2 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_2_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_E$_hashCode = $this => { - return 69; +onciu_RewritableJavascript$PROXY$11_2 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_2_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_E$_toString = $this => { - return $rt_s(5700); +onciu_RewritableJavascript$PROXY$9_3 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_3_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_E$_signatures0 = $this => { - oncief_E$_$callClinit(); - return oncief_E$_signatures; +onciu_RewritableJavascript$PROXY$11_3 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_3_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_ElementId$ = $rt_classWithoutFields(oncief_Function), -oncief_ElementId$_MODULE$ = null, -oncief_ElementId$_signatures = null, -oncief_ElementId$_$callClinit = () => { - oncief_ElementId$_$callClinit = $rt_eraseClinit(oncief_ElementId$); - oncief_ElementId$__clinit_(); +onciu_RewritableJavascript$PROXY$9_4 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_4_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_ElementId$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$10, $x$3, var$8, $x$2, $x$4, var$11, $x$8, var$13, var$14, var$15, $x$6; - var$1 = new oncief_ElementId$; - oncief_ElementId$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ElementId$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ElementId$_MODULE$; - $x$10 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - $x$10 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTNode(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - var$13 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$10, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = $x$10; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5701)); - var$13 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5702), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$13); - oncief_ElementId$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +onciu_RewritableJavascript$PROXY$11_4 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_4_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_ElementId$_name = $this => { - return $rt_s(5703); +onciu_RewritableJavascript$PROXY$9_5 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_5_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_ElementId$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$11_5 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_5_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_ElementId$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$9_6 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_6_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_ElementId$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$11_6 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_6_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_ElementId$_hashCode = $this => { - return 1745451287; +onciu_RewritableJavascript$PROXY$9_7 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_7_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_ElementId$_toString = $this => { - return $rt_s(5704); +onciu_RewritableJavascript$PROXY$11_7 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_7_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_ElementId$_signatures0 = $this => { - oncief_ElementId$_$callClinit(); - return oncief_ElementId$_signatures; +onciu_RewritableJavascript$PROXY$9_8 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_8_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_EndNode$ = $rt_classWithoutFields(oncief_Function), -oncief_EndNode$_MODULE$ = null, -oncief_EndNode$_signatures = null, -oncief_EndNode$_$callClinit = () => { - oncief_EndNode$_$callClinit = $rt_eraseClinit(oncief_EndNode$); - oncief_EndNode$__clinit_(); +onciu_RewritableJavascript$PROXY$11_8 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_8_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_EndNode$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_EndNode$; - oncief_EndNode$_$callClinit(); - oncief_Function__init_(var$1); - oncief_EndNode$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_EndNode$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_RelationshipType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTNode(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5705)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5706), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_EndNode$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +onciu_RewritableJavascript$PROXY$9_9 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_9_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}; +let onciu_RewritableJavascript$PROXY$11_9 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_9_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_EndNode$_name = $this => { - return $rt_s(5707); +onciu_RewritableJavascript$PROXY$9_10 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_10_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_EndNode$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$11_10 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_10_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_EndNode$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$9_11 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_11_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncief_EndNode$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$11_11 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_11_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_EndNode$_hashCode = $this => { - return 57236829; +onciu_RewritableJavascript$PROXY$9_12 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_12_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_EndNode$_toString = $this => { - return $rt_s(5708); +onciu_RewritableJavascript$PROXY$11_12 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_12_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_EndNode$_signatures0 = $this => { - oncief_EndNode$_$callClinit(); - return oncief_EndNode$_signatures; +onciu_RewritableJavascript$PROXY$9_13 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_13_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_Exists$ = $rt_classWithoutFields(oncief_Function), -oncief_Exists$_MODULE$ = null, -oncief_Exists$_signatures = null, -oncief_Exists$_$callClinit = () => { - oncief_Exists$_$callClinit = $rt_eraseClinit(oncief_Exists$); - oncief_Exists$__clinit_(); +onciu_RewritableJavascript$PROXY$11_13 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_13_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_Exists$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Exists$; - oncief_Exists$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Exists$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Exists$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_PREDICATE0(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5709)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5710), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Exists$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +onciu_RewritableJavascript$PROXY$9_14 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_14_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_Exists$_name = $this => { - return $rt_s(5711); +onciu_RewritableJavascript$PROXY$11_14 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_14_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_Exists$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_15 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_15_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_Exists$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}; -let oncief_Exists$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$11_15 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_15_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_Exists$_hashCode = $this => { - return 2089476220; +onciu_RewritableJavascript$PROXY$7_78 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_78_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_With_copy(var$2, var$3[0].$value3, var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7]); }, -oncief_Exists$_toString = $this => { - return $rt_s(5712); +onciu_RewritableJavascript$PROXY$7_79 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_79_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Yield_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); }, -oncief_Exists$_signatures0 = $this => { - oncief_Exists$_$callClinit(); - return oncief_Exists$_signatures; +onciu_RewritableJavascript$PROXY$7_80 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_80_copyConstructor = (var$1, var$2, var$3) => { + return oncie_Null_copy(var$2, var$3.data[0]); }, -oncief_Exp$ = $rt_classWithoutFields(oncief_Function), -oncief_Exp$_MODULE$ = null, -oncief_Exp$_signatures = null, -oncief_Exp$_$callClinit = () => { - oncief_Exp$_$callClinit = $rt_eraseClinit(oncief_Exp$); - oncief_Exp$__clinit_(); +onciu_RewritableJavascript$PROXY$7_81 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_81_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_UnionDistinct_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncief_Exp$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Exp$; - oncief_Exp$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Exp$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Exp$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5713)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5714), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Exp$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +onciu_RewritableJavascript$PROXY$7_82 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_82_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ScopeClauseSubqueryCall_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4].$value3, var$3[5]); }, -oncief_Exp$_name = $this => { - return $rt_s(5715); +onciu_RewritableJavascript$PROXY$7_83 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_83_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Property__init_(var$3[0], var$3[1], var$3[2]); }, -oncief_Exp$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$7_84 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_84_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_CaseExpression__init_0(var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncief_Exp$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$7_85 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_85_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowPrivileges_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncief_Exp$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$7_86 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_86_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowPrivilegeCommands_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4]); }, -oncief_Exp$_hashCode = $this => { - return 70141; +onciu_RewritableJavascript$PROXY$7_87 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_87_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowSupportedPrivilegeCommand_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncief_Exp$_toString = $this => { - return $rt_s(5716); +onciu_RewritableJavascript$PROXY$7_89 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_89_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowUsers_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3]); }, -oncief_Exp$_signatures0 = $this => { - oncief_Exp$_$callClinit(); - return oncief_Exp$_signatures; +onciu_RewritableJavascript$PROXY$7_90 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_90_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowAliases_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +}; +let onciu_RewritableJavascript$PROXY$7_91 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_91_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowCurrentUser_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncief_File$ = $rt_classWithoutFields(oncief_Function), -oncief_File$_MODULE$ = null, -oncief_File$_signatures = null, -oncief_File$_$callClinit = () => { - oncief_File$_$callClinit = $rt_eraseClinit(oncief_File$); - oncief_File$__clinit_(); +onciu_RewritableJavascript$PROXY$7_93 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_93_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowDatabase_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncief_File$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new oncief_File$; - oncief_File$_$callClinit(); - oncief_Function__init_(var$1); - oncief_File$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - oncie_FunctionTypeSignature$_$callClinit(); - var$5 = oncie_FunctionTypeSignature$_MODULE$; - var$6 = oncief_File$_MODULE$; - oncius_package$_$callClinit(); - var$7 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(5717), oncief_Category$_SCALAR(oncief_Category$_MODULE$)); - oncief_File$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +onciu_RewritableJavascript$PROXY$7_94 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_94_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_UnionAll_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncief_File$_name = $this => { - return $rt_s(5718); +onciu_RewritableJavascript$PROXY$7_95 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_95_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Return_copy(var$2, var$3[0].$value3, var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6].$value3, var$3[7].$value3, var$3[8]); }, -oncief_File$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$7_96 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_96_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowRoles_copy(var$2, var$3[0].$value3, var$3[1].$value3, var$3[2], var$3[3], var$3[4]); }, -oncief_File$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$7_97 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_97_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowServers_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncief_File$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$9_16 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_16_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncief_File$_hashCode = $this => { - return 2189724; +onciu_RewritableJavascript$PROXY$11_16 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_16_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncief_File$_toString = $this => { - return $rt_s(5719); +onciu_RewritableJavascript$PROXY$7_98 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_98_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_UnsignedDecimalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); }, -oncief_File$_signatures0 = $this => { - oncief_File$_$callClinit(); - return oncief_File$_signatures; +onciu_RewritableJavascript$PROXY$7_100 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_100_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Range_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncief_Floor$ = $rt_classWithoutFields(oncief_Function), -oncief_Floor$_MODULE$ = null, -oncief_Floor$_signatures = null, -oncief_Floor$_$callClinit = () => { - oncief_Floor$_$callClinit = $rt_eraseClinit(oncief_Floor$); - oncief_Floor$__clinit_(); +onciu_RewritableJavascript$PROXY$7_101 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_101_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_GraphDirectReference__init_0(var$3[0], var$3[1]); +}; +function oncia_OrderBy() { + let a = this; jl_Object.call(a); + a.$sortItems = null; + a.$position115 = null; +} +let oncia_OrderBy_position = $this => { + return $this.$position115; }, -oncief_Floor$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Floor$; - oncief_Floor$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Floor$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Floor$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5720)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5721), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Floor$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncia_OrderBy_semanticCheck = $this => { + return oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(oncias_SemanticCheckableIterableOnce$_MODULE$, $this.$sortItems); }, -oncief_Floor$_name = $this => { - return $rt_s(5722); +oncia_OrderBy_copy = ($this, $sortItems, $position) => { + return oncia_OrderBy__init_0($sortItems, $position); }, -oncief_Floor$_productArity = $this => { - return 0; +oncia_OrderBy_productPrefix = $this => { + return $rt_s(4258); }, -oncief_Floor$_productElement = ($this, $x$1) => { +oncia_OrderBy_productArity = $this => { + return 1; +}, +oncia_OrderBy_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$sortItems; + default: + } return sr_Statics_ioobe($x$1); }, -oncief_Floor$_productIterator = $this => { +oncia_OrderBy_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_Floor$_hashCode = $this => { - return 67974124; +oncia_OrderBy_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_Floor$_toString = $this => { - return $rt_s(5723); +oncia_OrderBy_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_Floor$_signatures0 = $this => { - oncief_Floor$_$callClinit(); - return oncief_Floor$_signatures; +oncia_OrderBy_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_OrderBy) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$sortItems; + $x$1 = $x$1.$sortItems; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_OrderBy)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncief_GraphByName$ = $rt_classWithoutFields(oncief_Function), -oncief_GraphByName$_MODULE$ = null, -oncief_GraphByName$_signatures = null, -oncief_GraphByName$_$callClinit = () => { - oncief_GraphByName$_$callClinit = $rt_eraseClinit(oncief_GraphByName$); - oncief_GraphByName$__clinit_(); +oncia_OrderBy_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncief_GraphByName$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_GraphByName$; - oncief_GraphByName$_$callClinit(); - oncief_Function__init_(var$1); - oncief_GraphByName$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_GraphByName$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(4902); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTGraphRef(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_GRAPH0(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(4902), $rt_s(5724)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5725), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_GraphByName$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncia_OrderBy__init_ = ($this, $sortItems, $position) => { + $this.$sortItems = $sortItems; + $this.$position115 = $position; }, -oncief_GraphByName$_name = $this => { - return $rt_s(5726); +oncia_OrderBy__init_0 = (var_0, var_1) => { + let var_2 = new oncia_OrderBy(); + oncia_OrderBy__init_(var_2, var_0, var_1); + return var_2; +}; +function sci_Map$Map4$Map4Iterator() { + let a = this; sc_AbstractIterator.call(a); + a.$i3 = 0; + a.$$outer7 = null; +} +let sci_Map$Map4$Map4Iterator_hasNext = $this => { + if ($this.$i3 >= 4) + return 0; + return 1; }, -oncief_GraphByName$_signatures0 = $this => { - oncief_GraphByName$_$callClinit(); - return oncief_GraphByName$_signatures; +sci_Map$Map4$Map4Iterator_next = $this => { + let var$1, $result; + a: { + switch ($this.$i3) { + case 0: + var$1 = $this.$$outer7; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map4$$key1, var$1.$scala$collection$immutable$Map$Map4$$value1); + break a; + case 1: + var$1 = $this.$$outer7; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map4$$key2, var$1.$scala$collection$immutable$Map$Map4$$value2); + break a; + case 2: + var$1 = $this.$$outer7; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map4$$key3, var$1.$scala$collection$immutable$Map$Map4$$value3); + break a; + case 3: + var$1 = $this.$$outer7; + $result = $this.$nextResult(var$1.$scala$collection$immutable$Map$Map4$$key4, var$1.$scala$collection$immutable$Map$Map4$$value4); + break a; + default: + } + $result = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + } + $this.$i3 = $this.$i3 + 1 | 0; + return $result; }, -oncief_GraphByElementId$ = $rt_classWithoutFields(oncief_Function), -oncief_GraphByElementId$_MODULE$ = null, -oncief_GraphByElementId$_signatures = null; -let oncief_GraphByElementId$_$callClinit = () => { - oncief_GraphByElementId$_$callClinit = $rt_eraseClinit(oncief_GraphByElementId$); - oncief_GraphByElementId$__clinit_(); +sci_Map$Map4$Map4Iterator_drop = ($this, $n) => { + $this.$i3 = $this.$i3 + $n | 0; + return $this; }, -oncief_GraphByElementId$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_GraphByElementId$; - oncief_GraphByElementId$_$callClinit(); - oncief_Function__init_(var$1); - oncief_GraphByElementId$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_GraphByElementId$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(5703); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTGraphRef(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_GRAPH0(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5703), $rt_s(5727)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5728), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_GraphByElementId$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +sci_Map$Map4$Map4Iterator_scala$collection$immutable$Map$Map4$Map4Iterator$$$outer = $this => { + return $this.$$outer7; }, -oncief_GraphByElementId$_name = $this => { - return $rt_s(5729); +sci_Map$Map4$Map4Iterator__init_ = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer7 = $$outer; + $this.$i3 = 0; }, -oncief_GraphByElementId$_signatures0 = $this => { - oncief_GraphByElementId$_$callClinit(); - return oncief_GraphByElementId$_signatures; +sci_Map$Map4$$anon$7 = $rt_classWithoutFields(sci_Map$Map4$Map4Iterator), +sci_Map$Map4$$anon$7_nextResult = ($this, $k, $v) => { + return s_Tuple2__init_($k, $v); +}; +function sc_IndexedSeqView$IndexedSeqViewReverseIterator() { + let a = this; sc_AbstractIterator.call(a); + a.$self5 = null; + a.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder = 0; + a.$pos4 = 0; +} +let sc_IndexedSeqView$IndexedSeqViewReverseIterator_hasNext = $this => { + if ($this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder <= 0) + return 0; + return 1; }, -oncief_Haversin$ = $rt_classWithoutFields(oncief_Function), -oncief_Haversin$_MODULE$ = null, -oncief_Haversin$_signatures = null, -oncief_Haversin$_$callClinit = () => { - oncief_Haversin$_$callClinit = $rt_eraseClinit(oncief_Haversin$); - oncief_Haversin$__clinit_(); +sc_IndexedSeqView$IndexedSeqViewReverseIterator_next = $this => { + let $r; + if (!($this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder <= 0 ? 0 : 1)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + $r = $this.$self5.$apply1($this.$pos4); + $this.$pos4 = $this.$pos4 - 1 | 0; + $this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder = $this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder - 1 | 0; + return $r; }, -oncief_Haversin$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Haversin$; - oncief_Haversin$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Haversin$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Haversin$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5730), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Haversin$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +sc_IndexedSeqView$IndexedSeqViewReverseIterator__init_ = ($this, $self) => { + let var$2; + $this.$self5 = $self; + var$2 = $self.$length(); + $this.$scala$collection$IndexedSeqView$IndexedSeqViewReverseIterator$$remainder = var$2; + $this.$pos4 = var$2 - 1 | 0; }, -oncief_Haversin$_name = $this => { - return $rt_s(5731); +sc_IndexedSeqView$IndexedSeqViewReverseIterator__init_0 = var_0 => { + let var_1 = new sc_IndexedSeqView$IndexedSeqViewReverseIterator(); + sc_IndexedSeqView$IndexedSeqViewReverseIterator__init_(var_1, var_0); + return var_1; +}; +function scm_CheckedIndexedSeqView$CheckedReverseIterator() { + let a = this; sc_IndexedSeqView$IndexedSeqViewReverseIterator.call(a); + a.$mutationCount2 = null; + a.$expectedCount = 0; +} +let scm_CheckedIndexedSeqView$CheckedReverseIterator_hasNext = $this => { + scm_MutationTracker$_checkMutations(scm_MutationTracker$_MODULE$, $this.$expectedCount, scm_ArrayBuffer$view$lambda$_88_0_apply$mcI$sp($this.$mutationCount2), $rt_s(3649)); + return sc_IndexedSeqView$IndexedSeqViewReverseIterator_hasNext($this); }, -oncief_Haversin$_productArity = $this => { - return 0; +oavr_TokenSource = $rt_classWithoutFields(0); +function oavr_Lexer() { + let a = this; oavr_Recognizer.call(a); + a.$_input0 = null; + a.$_tokenFactorySourcePair = null; + a.$_factory = null; + a.$_token = null; + a.$_tokenStartCharIndex = 0; + a.$_tokenStartLine = 0; + a.$_tokenStartCharPositionInLine = 0; + a.$_hitEOF = 0; + a.$_channel = 0; + a.$_type = 0; + a.$_modeStack = null; + a.$_mode = 0; + a.$_text = null; +} +let oavr_Lexer__init_ = ($this, $input) => { + oavr_Recognizer__init_($this); + $this.$_factory = oavr_CommonTokenFactory_DEFAULT; + $this.$_tokenStartCharIndex = (-1); + $this.$_modeStack = oavrm_IntegerStack__init_(); + $this.$_mode = 0; + $this.$_input0 = $input; + $this.$_tokenFactorySourcePair = oavrm_Pair__init_($this, $input); }, -oncief_Haversin$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_Lexer_nextToken = $this => { + let $e, $ttype, $$je; + if ($this.$_input0 === null) { + $e = new jl_IllegalStateException; + jl_Throwable__init_($e, $rt_s(4259)); + $rt_throw($e); + } + a: { + b: { + c: { + try { + while (!$this.$_hitEOF) { + $this.$_token = null; + $this.$_channel = 0; + $this.$_tokenStartCharIndex = oavr_CodePointCharStream_index($this.$_input0); + $this.$_tokenStartCharPositionInLine = oavra_LexerATNSimulator_getCharPositionInLine(oavr_Recognizer_getInterpreter($this)); + $this.$_tokenStartLine = oavra_LexerATNSimulator_getLine(oavr_Recognizer_getInterpreter($this)); + $this.$_text = null; + while (true) { + $this.$_type = 0; + d: { + e: { + try { + $ttype = oavra_LexerATNSimulator_match(oavr_Recognizer_getInterpreter($this), $this.$_input0, $this.$_mode); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_LexerNoViableAltException) { + $e = $$je; + break e; + } else { + throw $$e; + } + } + break d; + } + $this.$notifyListeners($e); + oavr_Lexer_recover($this, $e); + $ttype = (-3); + } + if ($this.$_input0.$LA(1) == (-1)) + $this.$_hitEOF = 1; + if (!$this.$_type) + $this.$_type = $ttype; + $ttype = $this.$_type; + if ($ttype == (-3)) + break; + if ($ttype == (-2)) + continue; + else + break c; + } + } + oavr_Lexer_emitEOF($this); + $e = $this.$_token; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $e = $$je; + break b; + + } + return $e; + } + f: { + try { + if ($this.$_token !== null) + break f; + oavr_Lexer_emit($this); + break f; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $e = $$je; + break b; + + } + } + try { + $e = $this.$_token; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $e = $$je; + + } + } + $rt_throw($e); + } + return $e; }, -oncief_Haversin$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_Lexer_skip = $this => { + $this.$_type = (-3); +}, +oavr_Lexer_more = $this => { + $this.$_type = (-2); }, -oncief_Haversin$_hashCode = $this => { - return 296861870; +oavr_Lexer_mode = ($this, $m) => { + $this.$_mode = $m; }, -oncief_Haversin$_toString = $this => { - return $rt_s(5732); +oavr_Lexer_pushMode = ($this, $m) => { + oavrm_IntegerStack_push($this.$_modeStack, $this.$_mode); + $this.$_mode = $m; }, -oncief_Haversin$_signatures0 = $this => { - oncief_Haversin$_$callClinit(); - return oncief_Haversin$_signatures; +oavr_Lexer_popMode = $this => { + let var$1, var$2, var$3, var$4; + if (oavrm_IntegerList_isEmpty($this.$_modeStack)) { + var$1 = new ju_EmptyStackException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + } + var$1 = $this.$_modeStack; + var$2 = var$1.$_size - 1 | 0; + var$3 = oavrm_IntegerList_get(var$1, var$2); + var$4 = var$1.$_data; + jl_System_fastArraycopy(var$4, var$2 + 1 | 0, var$4, var$2, (var$1.$_size - var$2 | 0) - 1 | 0); + var$4 = var$1.$_data.data; + var$2 = var$1.$_size - 1 | 0; + var$4[var$2] = 0; + var$1.$_size = var$2; + $this.$_mode = var$3; + return var$3; }, -oncief_Head$ = $rt_classWithoutFields(oncief_Function), -oncief_Head$_MODULE$ = null, -oncief_Head$_name = null, -oncief_Head$_signatures = null, -oncief_Head$_$callClinit = () => { - oncief_Head$_$callClinit = $rt_eraseClinit(oncief_Head$); - oncief_Head$__clinit_(); +oavr_Lexer_getTokenFactory = $this => { + return $this.$_factory; }, -oncief_Head$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$3, var$8, $x$2, $x$8, $x$6, var$12, var$13, var$14, var$15, $x$10; - var$1 = new oncief_Head$; - oncief_Head$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Head$_MODULE$ = var$1; - oncief_Head$_name = $rt_s(5733); - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Head$_MODULE$; - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(5420); - $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$12 = $rt_createArray(oncius_ListType, 1); - var$8 = var$12.data; - oncius_package$_$callClinit(); - $x$3 = oncius_package$_MODULE$; - var$8[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$12)); - $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$13 = s_Predef$_Map(s_Predef$_MODULE$); - var$14 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5420), $rt_s(5734)); - var$15 = sci_Map$_from(var$13, sr_ScalaRunTime$_wrapRefArray(var$14, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5735), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$15); - oncief_Head$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oavr_Lexer_getInputStream0 = $this => { + return $this.$_input0; }, -oncief_Head$_name0 = $this => { - oncief_Head$_$callClinit(); - return oncief_Head$_name; +oavr_Lexer_emit0 = ($this, $token) => { + $this.$_token = $token; }, -oncief_Head$_productArity = $this => { - return 0; +oavr_Lexer_emit = $this => { + let $t; + $t = $this.$_factory.$create1($this.$_tokenFactorySourcePair, $this.$_type, $this.$_text, $this.$_channel, $this.$_tokenStartCharIndex, oavr_Lexer_getCharIndex($this) - 1 | 0, $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine); + $this.$_token = $t; + return $t; }, -oncief_Head$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_Lexer_emitEOF = $this => { + let $cpos, $line, var$3, var$4, $eof, var$6; + $cpos = oavr_Lexer_getCharPositionInLine($this); + $line = oavr_Lexer_getLine($this); + var$3 = $this.$_factory; + var$4 = $this.$_tokenFactorySourcePair; + $eof = null; + var$6 = $this.$_input0.$position6; + $eof = var$3.$create1(var$4, (-1), $eof, 0, var$6, var$6 - 1 | 0, $line, $cpos); + $this.$_token = $eof; + return $eof; }, -oncief_Head$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oavr_Lexer_getLine = $this => { + return $this.$_interp.$line0; }, -oncief_Head$_hashCode = $this => { - return 2245120; +oavr_Lexer_getCharPositionInLine = $this => { + return $this.$_interp.$charPositionInLine; }, -oncief_Head$_toString = $this => { - return $rt_s(5736); +oavr_Lexer_getCharIndex = $this => { + return $this.$_input0.$position6; }, -oncief_Head$_signatures0 = $this => { - oncief_Head$_$callClinit(); - return oncief_Head$_signatures; +oavr_Lexer_setType = ($this, $ttype) => { + $this.$_type = $ttype; }, -oncief_Id$ = $rt_classWithoutFields(oncief_Function), -oncief_Id$_MODULE$ = null, -oncief_Id$_signatures = null, -oncief_Id$_$callClinit = () => { - oncief_Id$_$callClinit = $rt_eraseClinit(oncief_Id$); - oncief_Id$__clinit_(); +oavr_Lexer_setChannel = ($this, $channel) => { + $this.$_channel = $channel; }, -oncief_Id$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$10, $x$3, var$8, $x$2, $x$4, var$11, $x$9, var$13, var$14, var$15, $x$6; - var$1 = new oncief_Id$; - oncief_Id$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Id$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Id$_MODULE$; - $x$10 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - $x$10 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$9 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTNode(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - var$13 = $x$9.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$10, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = $x$10; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5737)); - var$13 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$9 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5738), $x$6, $x$3, $x$9, 1, $x$10, 0, $x$10, $x$10, var$13); - oncief_Id$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oavr_Lexer_recover = ($this, $e) => { + if ($this.$_input0.$LA(1) != (-1)) + oavra_LexerATNSimulator_consume($this.$_interp, $this.$_input0); }, -oncief_Id$_name = $this => { - return $rt_s(4910); +oavr_Lexer_getErrorDisplay = ($this, $s) => { + let $buf, var$3, var$4, var$5; + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + var$3 = (jl_String_toCharArray($s)).data; + var$4 = var$3.length; + var$5 = 0; + while (var$5 < var$4) { + jl_AbstractStringBuilder_append($buf, oavr_Lexer_getErrorDisplay0($this, var$3[var$5])); + var$5 = var$5 + 1 | 0; + } + return jl_AbstractStringBuilder_toString($buf); }, -oncief_Id$_productArity = $this => { - return 0; +oavr_Lexer_getErrorDisplay0 = ($this, $c) => { + let $s; + a: { + $s = jl_String_valueOf1($c & 65535); + switch ($c) { + case -1: + $s = $rt_s(4236); + break a; + case 9: + $s = $rt_s(4250); + break a; + case 10: + $s = $rt_s(4246); + break a; + case 13: + $s = $rt_s(4248); + break a; + default: + } + } + return $s; }, -oncief_Id$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oavr_Lexer_getInputStream = $this => { + return $this.$_input0; }, -oncief_Id$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Lexer = $rt_classWithoutFields(oavr_Lexer), +oncipv_Cypher25Lexer__decisionToDFA = null, +oncipv_Cypher25Lexer__sharedContextCache = null, +oncipv_Cypher25Lexer_channelNames = null, +oncipv_Cypher25Lexer_modeNames = null, +oncipv_Cypher25Lexer_ruleNames = null, +oncipv_Cypher25Lexer__LITERAL_NAMES = null, +oncipv_Cypher25Lexer__SYMBOLIC_NAMES = null, +oncipv_Cypher25Lexer_VOCABULARY = null, +oncipv_Cypher25Lexer_tokenNames = null, +oncipv_Cypher25Lexer__serializedATN = null, +oncipv_Cypher25Lexer__ATN = null, +oncipv_Cypher25Lexer_$callClinit = () => { + oncipv_Cypher25Lexer_$callClinit = $rt_eraseClinit(oncipv_Cypher25Lexer); + oncipv_Cypher25Lexer__clinit_(); }, -oncief_Id$_hashCode = $this => { - return 2363; +oncipv_Cypher25Lexer_makeRuleNames = () => { + oncipv_Cypher25Lexer_$callClinit(); + return $rt_wrapArray(jl_String, [$rt_s(4260), $rt_s(4261), $rt_s(4262), $rt_s(4263), $rt_s(4264), $rt_s(4265), $rt_s(4266), $rt_s(4267), $rt_s(4268), $rt_s(4269), $rt_s(4270), $rt_s(4271), $rt_s(4272), $rt_s(4273), $rt_s(512), $rt_s(4274), $rt_s(4275), $rt_s(4276), $rt_s(4277), $rt_s(4278), $rt_s(562), $rt_s(4279), $rt_s(4280), $rt_s(708), $rt_s(4281), $rt_s(4282), $rt_s(4283), $rt_s(4284), $rt_s(4285), $rt_s(4286), $rt_s(4287), $rt_s(4288), $rt_s(4289), $rt_s(4290), $rt_s(710), $rt_s(4291), $rt_s(4292), + $rt_s(4293), $rt_s(4294), $rt_s(4295), $rt_s(4039), $rt_s(4296), $rt_s(455), $rt_s(4297), $rt_s(4298), $rt_s(4299), $rt_s(4300), $rt_s(4301), $rt_s(4302), $rt_s(4303), $rt_s(4304), $rt_s(4305), $rt_s(3543), $rt_s(506), $rt_s(4306), $rt_s(4307), $rt_s(4308), $rt_s(4309), $rt_s(4310), $rt_s(4311), $rt_s(4312), $rt_s(4313), $rt_s(4314), $rt_s(4315), $rt_s(4316), $rt_s(743), $rt_s(4317), $rt_s(31), $rt_s(4318), $rt_s(587), $rt_s(4319), $rt_s(4320), $rt_s(4321), $rt_s(4322), $rt_s(4323), $rt_s(4324), $rt_s(4325), + $rt_s(4326), $rt_s(4327), $rt_s(4328), $rt_s(4329), $rt_s(4330), $rt_s(4331), $rt_s(4332), $rt_s(534), $rt_s(4333), $rt_s(4334), $rt_s(4335), $rt_s(752), $rt_s(4336), $rt_s(4337), $rt_s(4338), $rt_s(4339), $rt_s(4340), $rt_s(4341), $rt_s(4342), $rt_s(456), $rt_s(4343), $rt_s(4344), $rt_s(4345), $rt_s(4346), $rt_s(4347), $rt_s(4348), $rt_s(4349), $rt_s(4350), $rt_s(4351), $rt_s(4352), $rt_s(4353), $rt_s(609), $rt_s(719), $rt_s(4354), $rt_s(4355), $rt_s(525), $rt_s(3565), $rt_s(4356), $rt_s(4357), $rt_s(4358), + $rt_s(4359), $rt_s(761), $rt_s(4360), $rt_s(4361), $rt_s(4362), $rt_s(4363), $rt_s(4364), $rt_s(588), $rt_s(4365), $rt_s(4366), $rt_s(4367), $rt_s(4368), $rt_s(477), $rt_s(907), $rt_s(4369), $rt_s(4370), $rt_s(4371), $rt_s(4372), $rt_s(4373), $rt_s(722), $rt_s(4374), $rt_s(4375), $rt_s(4376), $rt_s(4377), $rt_s(4378), $rt_s(4379), $rt_s(4380), $rt_s(4381), $rt_s(4382), $rt_s(4383), $rt_s(4384), $rt_s(4385), $rt_s(4386), $rt_s(4387), $rt_s(4388), $rt_s(3566), $rt_s(4389), $rt_s(4390), $rt_s(4391), $rt_s(724), + $rt_s(4392), $rt_s(4393), $rt_s(4394), $rt_s(4395), $rt_s(4396), $rt_s(4397), $rt_s(4398), $rt_s(4399), $rt_s(4400), $rt_s(4401), $rt_s(4402), $rt_s(4403), $rt_s(4404), $rt_s(4405), $rt_s(727), $rt_s(4406), $rt_s(4407), $rt_s(3648), $rt_s(4408), $rt_s(4409), $rt_s(4410), $rt_s(4411), $rt_s(4412), $rt_s(4118), $rt_s(4413), $rt_s(4414), $rt_s(4415), $rt_s(4416), $rt_s(4417), $rt_s(4418), $rt_s(4419), $rt_s(4420), $rt_s(4421), $rt_s(557), $rt_s(4422), $rt_s(758), $rt_s(4423), $rt_s(4424), $rt_s(4425), $rt_s(4426), + $rt_s(734), $rt_s(4427), $rt_s(4428), $rt_s(4429), $rt_s(4430), $rt_s(4431), $rt_s(4432), $rt_s(4433), $rt_s(4434), $rt_s(531), $rt_s(4435), $rt_s(4436), $rt_s(4437), $rt_s(4438), $rt_s(1097), $rt_s(4439), $rt_s(4440), $rt_s(32), $rt_s(4441), $rt_s(4442), $rt_s(4443), $rt_s(4444), $rt_s(4445), $rt_s(730), $rt_s(4446), $rt_s(4447), $rt_s(4448), $rt_s(770), $rt_s(771), $rt_s(4449), $rt_s(4450), $rt_s(4451), $rt_s(641), $rt_s(4452), $rt_s(4453), $rt_s(4454), $rt_s(4455), $rt_s(4456), $rt_s(4457), $rt_s(4458), + $rt_s(4459), $rt_s(4460), $rt_s(4461), $rt_s(4462), $rt_s(4463), $rt_s(4464), $rt_s(4465), $rt_s(4466), $rt_s(4467), $rt_s(4468), $rt_s(4469), $rt_s(4470), $rt_s(4471), $rt_s(4472), $rt_s(4473), $rt_s(4474), $rt_s(4475), $rt_s(4476), $rt_s(4477), $rt_s(4478), $rt_s(4479), $rt_s(4480), $rt_s(714), $rt_s(4481), $rt_s(513), $rt_s(4482), $rt_s(4483), $rt_s(1096), $rt_s(4484), $rt_s(4485), $rt_s(4486), $rt_s(4487), $rt_s(4488), $rt_s(524), $rt_s(3586), $rt_s(4489), $rt_s(4490), $rt_s(4491), $rt_s(4492), $rt_s(4493), + $rt_s(4494), $rt_s(4495), $rt_s(4496), $rt_s(4497), $rt_s(608), $rt_s(4498), $rt_s(4499), $rt_s(4500), $rt_s(4501), $rt_s(4502), $rt_s(558), $rt_s(4503), $rt_s(4504), $rt_s(4505), $rt_s(4506), $rt_s(3567), $rt_s(4507), $rt_s(4508), $rt_s(4509), $rt_s(4040), $rt_s(642), $rt_s(4510), $rt_s(33), $rt_s(4511), $rt_s(4063), $rt_s(4512), $rt_s(4513), $rt_s(4514), $rt_s(4515), $rt_s(4516), $rt_s(4517), $rt_s(4518), $rt_s(4519), $rt_s(4520), $rt_s(4521), $rt_s(4522), $rt_s(4523), $rt_s(209), $rt_s(4524), $rt_s(4525), + $rt_s(4526), $rt_s(4527), $rt_s(4528), $rt_s(4529), $rt_s(4530), $rt_s(4531), $rt_s(4532), $rt_s(343), $rt_s(4533), $rt_s(4534), $rt_s(4535), $rt_s(4536), $rt_s(207), $rt_s(4537), $rt_s(4538), $rt_s(4539), $rt_s(205), $rt_s(4540), $rt_s(4541), $rt_s(4542), $rt_s(4543)]); }, -oncief_Id$_toString = $this => { - return $rt_s(5739); +oncipv_Cypher25Lexer_makeLiteralNames = () => { + let var$1, var$2; + oncipv_Cypher25Lexer_$callClinit(); + var$1 = $rt_createArray(jl_String, 266); + var$2 = var$1.data; + var$2[0] = null; + var$2[1] = null; + var$2[2] = null; + var$2[3] = null; + var$2[4] = null; + var$2[5] = null; + var$2[6] = null; + var$2[7] = null; + var$2[8] = null; + var$2[9] = null; + var$2[10] = null; + var$2[11] = null; + var$2[12] = null; + var$2[13] = null; + var$2[14] = null; + var$2[15] = null; + var$2[16] = null; + var$2[17] = null; + var$2[18] = null; + var$2[19] = null; + var$2[20] = null; + var$2[21] = null; + var$2[22] = null; + var$2[23] = null; + var$2[24] = null; + var$2[25] = null; + var$2[26] = null; + var$2[27] = null; + var$2[28] = null; + var$2[29] = $rt_s(4544); + var$2[30] = null; + var$2[31] = null; + var$2[32] = null; + var$2[33] = null; + var$2[34] = null; + var$2[35] = null; + var$2[36] = null; + var$2[37] = null; + var$2[38] = null; + var$2[39] = null; + var$2[40] = null; + var$2[41] = null; + var$2[42] = null; + var$2[43] = null; + var$2[44] = $rt_s(4545); + var$2[45] = $rt_s(4546); + var$2[46] = $rt_s(4547); + var$2[47] = null; + var$2[48] = null; + var$2[49] = null; + var$2[50] = null; + var$2[51] = null; + var$2[52] = null; + var$2[53] = null; + var$2[54] = null; + var$2[55] = null; + var$2[56] = null; + var$2[57] = null; + var$2[58] = null; + var$2[59] = null; + var$2[60] = null; + var$2[61] = null; + var$2[62] = null; + var$2[63] = null; + var$2[64] = null; + var$2[65] = null; + var$2[66] = null; + var$2[67] = null; + var$2[68] = null; + var$2[69] = null; + var$2[70] = null; + var$2[71] = null; + var$2[72] = null; + var$2[73] = null; + var$2[74] = null; + var$2[75] = null; + var$2[76] = $rt_s(4548); + var$2[77] = null; + var$2[78] = $rt_s(4549); + var$2[79] = $rt_s(4550); + var$2[80] = $rt_s(4551); + var$2[81] = $rt_s(4552); + var$2[82] = null; + var$2[83] = null; + var$2[84] = null; + var$2[85] = null; + var$2[86] = null; + var$2[87] = null; + var$2[88] = null; + var$2[89] = null; + var$2[90] = null; + var$2[91] = null; + var$2[92] = null; + var$2[93] = null; + var$2[94] = null; + var$2[95] = null; + var$2[96] = $rt_s(4553); + var$2[97] = null; + var$2[98] = null; + var$2[99] = null; + var$2[100] = null; + var$2[101] = null; + var$2[102] = null; + var$2[103] = null; + var$2[104] = null; + var$2[105] = null; + var$2[106] = null; + var$2[107] = null; + var$2[108] = null; + var$2[109] = null; + var$2[110] = null; + var$2[111] = null; + var$2[112] = null; + var$2[113] = null; + var$2[114] = $rt_s(4554); + var$2[115] = null; + var$2[116] = null; + var$2[117] = null; + var$2[118] = null; + var$2[119] = null; + var$2[120] = $rt_s(4555); + var$2[121] = null; + var$2[122] = null; + var$2[123] = null; + var$2[124] = null; + var$2[125] = null; + var$2[126] = null; + var$2[127] = null; + var$2[128] = null; + var$2[129] = null; + var$2[130] = null; + var$2[131] = null; + var$2[132] = null; + var$2[133] = null; + var$2[134] = null; + var$2[135] = null; + var$2[136] = null; + var$2[137] = null; + var$2[138] = null; + var$2[139] = null; + var$2[140] = $rt_s(4556); + var$2[141] = $rt_s(4557); + var$2[142] = $rt_s(4558); + var$2[143] = $rt_s(4559); + var$2[144] = $rt_s(4560); + var$2[145] = null; + var$2[146] = null; + var$2[147] = null; + var$2[148] = null; + var$2[149] = null; + var$2[150] = null; + var$2[151] = $rt_s(4561); + var$2[152] = $rt_s(4562); + var$2[153] = null; + var$2[154] = null; + var$2[155] = null; + var$2[156] = null; + var$2[157] = $rt_s(4563); + var$2[158] = $rt_s(4564); + var$2[159] = $rt_s(4565); + var$2[160] = $rt_s(4566); + var$2[161] = null; + var$2[162] = null; + var$2[163] = null; + var$2[164] = null; + var$2[165] = null; + var$2[166] = null; + var$2[167] = null; + var$2[168] = null; + var$2[169] = null; + var$2[170] = null; + var$2[171] = null; + var$2[172] = null; + var$2[173] = null; + var$2[174] = null; + var$2[175] = null; + var$2[176] = null; + var$2[177] = null; + var$2[178] = null; + var$2[179] = null; + var$2[180] = null; + var$2[181] = null; + var$2[182] = null; + var$2[183] = null; + var$2[184] = null; + var$2[185] = null; + var$2[186] = null; + var$2[187] = null; + var$2[188] = null; + var$2[189] = null; + var$2[190] = null; + var$2[191] = null; + var$2[192] = null; + var$2[193] = $rt_s(4567); + var$2[194] = $rt_s(4568); + var$2[195] = null; + var$2[196] = null; + var$2[197] = $rt_s(4569); + var$2[198] = null; + var$2[199] = null; + var$2[200] = null; + var$2[201] = null; + var$2[202] = null; + var$2[203] = null; + var$2[204] = null; + var$2[205] = null; + var$2[206] = null; + var$2[207] = null; + var$2[208] = $rt_s(4570); + var$2[209] = null; + var$2[210] = $rt_s(4571); + var$2[211] = $rt_s(4572); + var$2[212] = null; + var$2[213] = null; + var$2[214] = null; + var$2[215] = null; + var$2[216] = $rt_s(4573); + var$2[217] = null; + var$2[218] = null; + var$2[219] = null; + var$2[220] = null; + var$2[221] = null; + var$2[222] = null; + var$2[223] = null; + var$2[224] = null; + var$2[225] = null; + var$2[226] = null; + var$2[227] = null; + var$2[228] = null; + var$2[229] = null; + var$2[230] = null; + var$2[231] = null; + var$2[232] = null; + var$2[233] = $rt_s(4574); + var$2[234] = null; + var$2[235] = null; + var$2[236] = null; + var$2[237] = null; + var$2[238] = null; + var$2[239] = null; + var$2[240] = null; + var$2[241] = $rt_s(4575); + var$2[242] = null; + var$2[243] = null; + var$2[244] = null; + var$2[245] = null; + var$2[246] = null; + var$2[247] = null; + var$2[248] = null; + var$2[249] = null; + var$2[250] = null; + var$2[251] = null; + var$2[252] = null; + var$2[253] = null; + var$2[254] = null; + var$2[255] = null; + var$2[256] = null; + var$2[257] = null; + var$2[258] = null; + var$2[259] = null; + var$2[260] = null; + var$2[261] = null; + var$2[262] = null; + var$2[263] = null; + var$2[264] = null; + var$2[265] = $rt_s(4576); + return var$1; }, -oncief_Id$_signatures0 = $this => { - oncief_Id$_$callClinit(); - return oncief_Id$_signatures; +oncipv_Cypher25Lexer_makeSymbolicNames = () => { + let var$1, var$2; + oncipv_Cypher25Lexer_$callClinit(); + var$1 = $rt_createArray(jl_String, 308); + var$2 = var$1.data; + var$2[0] = null; + var$2[1] = $rt_s(4260); + var$2[2] = $rt_s(4261); + var$2[3] = $rt_s(4262); + var$2[4] = $rt_s(4263); + var$2[5] = $rt_s(4264); + var$2[6] = $rt_s(4267); + var$2[7] = $rt_s(4268); + var$2[8] = $rt_s(4269); + var$2[9] = $rt_s(4270); + var$2[10] = $rt_s(4272); + var$2[11] = $rt_s(4273); + var$2[12] = $rt_s(512); + var$2[13] = $rt_s(4274); + var$2[14] = $rt_s(4275); + var$2[15] = $rt_s(4276); + var$2[16] = $rt_s(4277); + var$2[17] = $rt_s(4278); + var$2[18] = $rt_s(562); + var$2[19] = $rt_s(4279); + var$2[20] = $rt_s(4280); + var$2[21] = $rt_s(708); + var$2[22] = $rt_s(4281); + var$2[23] = $rt_s(4282); + var$2[24] = $rt_s(4283); + var$2[25] = $rt_s(4284); + var$2[26] = $rt_s(4285); + var$2[27] = $rt_s(4286); + var$2[28] = $rt_s(4287); + var$2[29] = $rt_s(4288); + var$2[30] = $rt_s(4289); + var$2[31] = $rt_s(4290); + var$2[32] = $rt_s(710); + var$2[33] = $rt_s(4291); + var$2[34] = $rt_s(4292); + var$2[35] = $rt_s(4293); + var$2[36] = $rt_s(4294); + var$2[37] = $rt_s(4295); + var$2[38] = $rt_s(4039); + var$2[39] = $rt_s(4296); + var$2[40] = $rt_s(455); + var$2[41] = $rt_s(4297); + var$2[42] = $rt_s(4298); + var$2[43] = $rt_s(4299); + var$2[44] = $rt_s(4300); + var$2[45] = $rt_s(4301); + var$2[46] = $rt_s(4302); + var$2[47] = $rt_s(4303); + var$2[48] = $rt_s(4304); + var$2[49] = $rt_s(4305); + var$2[50] = $rt_s(3543); + var$2[51] = $rt_s(506); + var$2[52] = $rt_s(4306); + var$2[53] = $rt_s(4307); + var$2[54] = $rt_s(4308); + var$2[55] = $rt_s(4309); + var$2[56] = $rt_s(4310); + var$2[57] = $rt_s(4311); + var$2[58] = $rt_s(4312); + var$2[59] = $rt_s(4313); + var$2[60] = $rt_s(4314); + var$2[61] = $rt_s(4315); + var$2[62] = $rt_s(4316); + var$2[63] = $rt_s(743); + var$2[64] = $rt_s(4317); + var$2[65] = $rt_s(31); + var$2[66] = $rt_s(4318); + var$2[67] = $rt_s(587); + var$2[68] = $rt_s(4319); + var$2[69] = $rt_s(4320); + var$2[70] = $rt_s(4321); + var$2[71] = $rt_s(4322); + var$2[72] = $rt_s(4323); + var$2[73] = $rt_s(4324); + var$2[74] = $rt_s(4325); + var$2[75] = $rt_s(4326); + var$2[76] = $rt_s(4327); + var$2[77] = $rt_s(4328); + var$2[78] = $rt_s(4329); + var$2[79] = $rt_s(4330); + var$2[80] = $rt_s(4331); + var$2[81] = $rt_s(4332); + var$2[82] = $rt_s(534); + var$2[83] = $rt_s(4333); + var$2[84] = $rt_s(4334); + var$2[85] = $rt_s(4335); + var$2[86] = $rt_s(752); + var$2[87] = $rt_s(4336); + var$2[88] = $rt_s(4337); + var$2[89] = $rt_s(4338); + var$2[90] = $rt_s(4339); + var$2[91] = $rt_s(4340); + var$2[92] = $rt_s(4341); + var$2[93] = $rt_s(4342); + var$2[94] = $rt_s(456); + var$2[95] = $rt_s(4343); + var$2[96] = $rt_s(4344); + var$2[97] = $rt_s(4345); + var$2[98] = $rt_s(4346); + var$2[99] = $rt_s(4347); + var$2[100] = $rt_s(4348); + var$2[101] = $rt_s(4349); + var$2[102] = $rt_s(4350); + var$2[103] = $rt_s(4351); + var$2[104] = $rt_s(4352); + var$2[105] = $rt_s(4353); + var$2[106] = $rt_s(609); + var$2[107] = $rt_s(719); + var$2[108] = $rt_s(4354); + var$2[109] = $rt_s(4355); + var$2[110] = $rt_s(525); + var$2[111] = $rt_s(3565); + var$2[112] = $rt_s(4356); + var$2[113] = $rt_s(4357); + var$2[114] = $rt_s(4358); + var$2[115] = $rt_s(4359); + var$2[116] = $rt_s(761); + var$2[117] = $rt_s(4360); + var$2[118] = $rt_s(4361); + var$2[119] = $rt_s(4362); + var$2[120] = $rt_s(4363); + var$2[121] = $rt_s(4364); + var$2[122] = $rt_s(588); + var$2[123] = $rt_s(4365); + var$2[124] = $rt_s(4366); + var$2[125] = $rt_s(4367); + var$2[126] = $rt_s(4368); + var$2[127] = $rt_s(477); + var$2[128] = $rt_s(907); + var$2[129] = $rt_s(4369); + var$2[130] = $rt_s(4370); + var$2[131] = $rt_s(4371); + var$2[132] = $rt_s(4372); + var$2[133] = $rt_s(4373); + var$2[134] = $rt_s(722); + var$2[135] = $rt_s(4374); + var$2[136] = $rt_s(4375); + var$2[137] = $rt_s(4376); + var$2[138] = $rt_s(4377); + var$2[139] = $rt_s(4378); + var$2[140] = $rt_s(4379); + var$2[141] = $rt_s(4380); + var$2[142] = $rt_s(4381); + var$2[143] = $rt_s(4382); + var$2[144] = $rt_s(4383); + var$2[145] = $rt_s(4384); + var$2[146] = $rt_s(4385); + var$2[147] = $rt_s(4386); + var$2[148] = $rt_s(4387); + var$2[149] = $rt_s(4388); + var$2[150] = $rt_s(3566); + var$2[151] = $rt_s(4389); + var$2[152] = $rt_s(4390); + var$2[153] = $rt_s(4391); + var$2[154] = $rt_s(724); + var$2[155] = $rt_s(4392); + var$2[156] = $rt_s(4393); + var$2[157] = $rt_s(4394); + var$2[158] = $rt_s(4395); + var$2[159] = $rt_s(4396); + var$2[160] = $rt_s(4397); + var$2[161] = $rt_s(4398); + var$2[162] = $rt_s(4399); + var$2[163] = $rt_s(4400); + var$2[164] = $rt_s(4401); + var$2[165] = $rt_s(4402); + var$2[166] = $rt_s(4403); + var$2[167] = $rt_s(4404); + var$2[168] = $rt_s(4405); + var$2[169] = $rt_s(727); + var$2[170] = $rt_s(4406); + var$2[171] = $rt_s(4407); + var$2[172] = $rt_s(3648); + var$2[173] = $rt_s(4408); + var$2[174] = $rt_s(4409); + var$2[175] = $rt_s(4410); + var$2[176] = $rt_s(4411); + var$2[177] = $rt_s(4412); + var$2[178] = $rt_s(4118); + var$2[179] = $rt_s(4413); + var$2[180] = $rt_s(4414); + var$2[181] = $rt_s(4415); + var$2[182] = $rt_s(4416); + var$2[183] = $rt_s(4417); + var$2[184] = $rt_s(4418); + var$2[185] = $rt_s(4419); + var$2[186] = $rt_s(4420); + var$2[187] = $rt_s(4421); + var$2[188] = $rt_s(557); + var$2[189] = $rt_s(4422); + var$2[190] = $rt_s(758); + var$2[191] = $rt_s(4423); + var$2[192] = $rt_s(4424); + var$2[193] = $rt_s(4425); + var$2[194] = $rt_s(4426); + var$2[195] = $rt_s(734); + var$2[196] = $rt_s(4427); + var$2[197] = $rt_s(4428); + var$2[198] = $rt_s(4429); + var$2[199] = $rt_s(4430); + var$2[200] = $rt_s(4431); + var$2[201] = $rt_s(4432); + var$2[202] = $rt_s(4433); + var$2[203] = $rt_s(4434); + var$2[204] = $rt_s(531); + var$2[205] = $rt_s(4435); + var$2[206] = $rt_s(4436); + var$2[207] = $rt_s(4437); + var$2[208] = $rt_s(4438); + var$2[209] = $rt_s(1097); + var$2[210] = $rt_s(4439); + var$2[211] = $rt_s(4440); + var$2[212] = $rt_s(32); + var$2[213] = $rt_s(4441); + var$2[214] = $rt_s(4442); + var$2[215] = $rt_s(4443); + var$2[216] = $rt_s(4444); + var$2[217] = $rt_s(4445); + var$2[218] = $rt_s(730); + var$2[219] = $rt_s(4446); + var$2[220] = $rt_s(4447); + var$2[221] = $rt_s(4448); + var$2[222] = $rt_s(770); + var$2[223] = $rt_s(771); + var$2[224] = $rt_s(4449); + var$2[225] = $rt_s(4450); + var$2[226] = $rt_s(4451); + var$2[227] = $rt_s(641); + var$2[228] = $rt_s(4452); + var$2[229] = $rt_s(4453); + var$2[230] = $rt_s(4454); + var$2[231] = $rt_s(4455); + var$2[232] = $rt_s(4456); + var$2[233] = $rt_s(4457); + var$2[234] = $rt_s(4458); + var$2[235] = $rt_s(4459); + var$2[236] = $rt_s(4460); + var$2[237] = $rt_s(4461); + var$2[238] = $rt_s(4462); + var$2[239] = $rt_s(4463); + var$2[240] = $rt_s(4464); + var$2[241] = $rt_s(4465); + var$2[242] = $rt_s(4466); + var$2[243] = $rt_s(4467); + var$2[244] = $rt_s(4468); + var$2[245] = $rt_s(4469); + var$2[246] = $rt_s(4470); + var$2[247] = $rt_s(4471); + var$2[248] = $rt_s(4472); + var$2[249] = $rt_s(4473); + var$2[250] = $rt_s(4474); + var$2[251] = $rt_s(4475); + var$2[252] = $rt_s(4476); + var$2[253] = $rt_s(4477); + var$2[254] = $rt_s(4478); + var$2[255] = $rt_s(4479); + var$2[256] = $rt_s(4480); + var$2[257] = $rt_s(714); + var$2[258] = $rt_s(4481); + var$2[259] = $rt_s(513); + var$2[260] = $rt_s(4482); + var$2[261] = $rt_s(4483); + var$2[262] = $rt_s(1096); + var$2[263] = $rt_s(4484); + var$2[264] = $rt_s(4485); + var$2[265] = $rt_s(4486); + var$2[266] = $rt_s(4487); + var$2[267] = $rt_s(4488); + var$2[268] = $rt_s(524); + var$2[269] = $rt_s(3586); + var$2[270] = $rt_s(4489); + var$2[271] = $rt_s(4490); + var$2[272] = $rt_s(4491); + var$2[273] = $rt_s(4492); + var$2[274] = $rt_s(4493); + var$2[275] = $rt_s(4494); + var$2[276] = $rt_s(4495); + var$2[277] = $rt_s(4496); + var$2[278] = $rt_s(4497); + var$2[279] = $rt_s(608); + var$2[280] = $rt_s(4498); + var$2[281] = $rt_s(4499); + var$2[282] = $rt_s(4500); + var$2[283] = $rt_s(4501); + var$2[284] = $rt_s(4502); + var$2[285] = $rt_s(558); + var$2[286] = $rt_s(4503); + var$2[287] = $rt_s(4504); + var$2[288] = $rt_s(4505); + var$2[289] = $rt_s(4506); + var$2[290] = $rt_s(3567); + var$2[291] = $rt_s(4507); + var$2[292] = $rt_s(4508); + var$2[293] = $rt_s(4509); + var$2[294] = $rt_s(4040); + var$2[295] = $rt_s(642); + var$2[296] = $rt_s(4510); + var$2[297] = $rt_s(33); + var$2[298] = $rt_s(4511); + var$2[299] = $rt_s(4063); + var$2[300] = $rt_s(4512); + var$2[301] = $rt_s(4513); + var$2[302] = $rt_s(4514); + var$2[303] = $rt_s(4515); + var$2[304] = $rt_s(4516); + var$2[305] = $rt_s(4517); + var$2[306] = $rt_s(4518); + var$2[307] = $rt_s(4543); + return var$1; }, -oncief_IsEmpty$ = $rt_classWithoutFields(oncief_Function), -oncief_IsEmpty$_MODULE$ = null, -oncief_IsEmpty$_name = null, -oncief_IsEmpty$_signatures = null, -oncief_IsEmpty$_$callClinit = () => { - oncief_IsEmpty$_$callClinit = $rt_eraseClinit(oncief_IsEmpty$); - oncief_IsEmpty$__clinit_(); +oncipv_Cypher25Lexer_getATN = $this => { + oncipv_Cypher25Lexer_$callClinit(); + return oncipv_Cypher25Lexer__ATN; }, -oncief_IsEmpty$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$3, $x$4, var$8, $x$2, $x$8, var$11, var$12, var$13, var$14, var$15, $x$6, var$17, $x$10; - var$1 = new oncief_IsEmpty$; - oncief_IsEmpty$_$callClinit(); - oncief_Function__init_(var$1); - oncief_IsEmpty$_MODULE$ = var$1; - oncief_IsEmpty$_name = $rt_s(5740); - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_IsEmpty$_MODULE$; - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - $x$4 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - var$12 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 3); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$6 = oncius_package$_MODULE$; - var$15[1] = oncius_package$_CTList($x$6, oncius_package$_CTAny($x$6)); - var$15[2] = oncius_package$_CTMap(oncius_package$_MODULE$); - var$12 = var$12.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$4, var$12, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = $x$4; - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_PREDICATE0(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$12 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5741)); - var$17 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$12, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5742), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$17); - oncief_IsEmpty$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Lexer__clinit_ = () => { + let var$1, $i, var$3; + oavr_RuntimeMetaData_checkVersion($rt_s(4577), $rt_s(4577)); + oncipv_Cypher25Lexer__sharedContextCache = oavra_PredictionContextCache__init_(); + oncipv_Cypher25Lexer_channelNames = $rt_wrapArray(jl_String, [$rt_s(4578), $rt_s(4579)]); + var$1 = $rt_createArray(jl_String, 1); + var$1.data[0] = $rt_s(4580); + oncipv_Cypher25Lexer_modeNames = var$1; + oncipv_Cypher25Lexer_ruleNames = oncipv_Cypher25Lexer_makeRuleNames(); + oncipv_Cypher25Lexer__LITERAL_NAMES = oncipv_Cypher25Lexer_makeLiteralNames(); + var$1 = oncipv_Cypher25Lexer_makeSymbolicNames(); + oncipv_Cypher25Lexer__SYMBOLIC_NAMES = var$1; + oncipv_Cypher25Lexer_VOCABULARY = oavr_VocabularyImpl__init_(oncipv_Cypher25Lexer__LITERAL_NAMES, var$1); + oncipv_Cypher25Lexer_tokenNames = $rt_createArray(jl_String, oncipv_Cypher25Lexer__SYMBOLIC_NAMES.data.length); + $i = 0; + while (true) { + var$1 = oncipv_Cypher25Lexer_tokenNames.data; + if ($i >= var$1.length) + break; + var$1[$i] = oavr_VocabularyImpl_getLiteralName(oncipv_Cypher25Lexer_VOCABULARY, $i); + var$1 = oncipv_Cypher25Lexer_tokenNames.data; + if (var$1[$i] === null) + var$1[$i] = oavr_VocabularyImpl_getSymbolicName(oncipv_Cypher25Lexer_VOCABULARY, $i); + var$1 = oncipv_Cypher25Lexer_tokenNames.data; + if (var$1[$i] === null) + var$1[$i] = $rt_s(4581); + $i = $i + 1 | 0; + } + oncipv_Cypher25Lexer__serializedATN = oavrm_Utils_join($rt_wrapArray(jl_String, [$rt_s(4582), $rt_s(4583)]), $rt_s(4)); + var$3 = oavra_ATNDeserializer_deserialize(oavra_ATNDeserializer__init_(), jl_String_toCharArray(oncipv_Cypher25Lexer__serializedATN)); + oncipv_Cypher25Lexer__ATN = var$3; + oncipv_Cypher25Lexer__decisionToDFA = $rt_createArray(oavrd_DFA, oavra_ATN_getNumberOfDecisions(var$3)); + $i = 0; + while ($i < oavra_ATN_getNumberOfDecisions(oncipv_Cypher25Lexer__ATN)) { + oncipv_Cypher25Lexer__decisionToDFA.data[$i] = oavrd_DFA__init_(oavra_ATN_getDecisionState(oncipv_Cypher25Lexer__ATN, $i), $i); + $i = $i + 1 | 0; + } }, -oncief_IsEmpty$_name0 = $this => { - oncief_IsEmpty$_$callClinit(); - return oncief_IsEmpty$_name; +oncipl_CypherQueryAccess = $rt_classWithoutFields(0), +oncipl_CypherQueryAccess_inputText = ($this, $start, $stop) => { + return jl_String_substring($this.$inputQuery(), oncipl_CypherQueryAccess_inputOffset($this, $start.$getStartIndex()), oncipl_CypherQueryAccess_inputOffset($this, $stop.$getStopIndex()) + 1 | 0); }, -oncief_IsEmpty$_productArity = $this => { - return 0; +oncipl_CypherQueryAccess_inputOffset = ($this, $parserOffset) => { + let $offsetTable; + $offsetTable = $this.$offsetTable(); + if ($offsetTable !== null) { + $offsetTable = $offsetTable.data; + if ($parserOffset >= $offsetTable[0]) + return $offsetTable[($parserOffset - $offsetTable[0] | 0) * 3 | 0]; + } + return $parserOffset; }, -oncief_IsEmpty$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipl_CypherQueryAccess_inputPosition = ($this, $parserIndex, $parserLine, $parserColumn) => { + let $offsetTable, $i; + $offsetTable = $this.$offsetTable(); + if ($offsetTable !== null) { + $offsetTable = $offsetTable.data; + if ($parserIndex >= $offsetTable[0]) { + $i = ($parserIndex - $offsetTable[0] | 0) * 3 | 0; + return onciu_InputPosition_apply($offsetTable[$i], $offsetTable[$i + 1 | 0], $offsetTable[$i + 2 | 0]); + } + } + return onciu_InputPosition_apply($parserIndex, $parserLine, $parserColumn + 1 | 0); }; -let oncief_IsEmpty$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +function oncipvaf_Cypher25AstLexer() { + let a = this; oncipv_Cypher25Lexer.call(a); + a.$inputQuery0 = null; + a.$offsetTable2 = null; +} +let oncipvaf_Cypher25AstLexer_notifyListeners = ($this, $e) => { + let $text, $listener, $dummyToken, var$5; + $text = $this.$_input0; + $text = $text.$getText0(oavrm_Interval_of($this.$_tokenStartCharIndex, $text.$position6)); + $listener = oavr_Lexer_getErrorDisplay($this, $text); + $dummyToken = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($dummyToken); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($dummyToken, $rt_s(4584)), $listener), 39); + var$5 = jl_AbstractStringBuilder_toString($dummyToken); + oavr_ProxyErrorListener_syntaxError(oavr_Recognizer_getErrorListenerDispatch($this), $this, $this.$_factory.$create1($this.$_tokenFactorySourcePair, (-1), $text, $this.$_channel, $this.$_tokenStartCharIndex, $this.$_input0.$position6, $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine), $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine, var$5, $e); }, -oncief_IsEmpty$_hashCode = $this => { - return (-572274141); +oncipvaf_Cypher25AstLexer_inputQuery = $this => { + return $this.$inputQuery0; }, -oncief_IsEmpty$_toString = $this => { - return $rt_s(5743); +oncipvaf_Cypher25AstLexer_offsetTable = $this => { + return $this.$offsetTable2; }, -oncief_IsEmpty$_signatures0 = $this => { - oncief_IsEmpty$_$callClinit(); - return oncief_IsEmpty$_signatures; +oncip_CypherErrorStrategy$Conf = $rt_classWithoutFields(0), +oncip_CypherErrorStrategy$Conf_preferredRules$ = $$this => { + let var$2, var$3, var$4, var$5, var$6; + s_Predef$_$callClinit(); + var$2 = s_Predef$_Set(s_Predef$_MODULE$); + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncip_CypherErrorStrategy$CypherRuleGroup, 8); + var$5 = var$4.data; + var$5[0] = oncip_CypherErrorStrategy$ExpressionRule$_MODULE$; + var$5[1] = oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$; + var$5[2] = oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$; + var$5[3] = oncip_CypherErrorStrategy$ParameterRule$_MODULE$; + var$5[4] = oncip_CypherErrorStrategy$VariableRule$_MODULE$; + var$5[5] = oncip_CypherErrorStrategy$IdentifierRule$_MODULE$; + var$5[6] = oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$; + var$5[7] = oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$; + var$3 = var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + $$this = sc_AbstractMap_view($$this.$ruleGroups()); + var$6 = new oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1; + var$6.$preferredGroups$1 = var$3; + return sc_AbstractIterable_toSet(sc_AbstractIterable_collect($$this, var$6)); }, -oncief_IsNaN$ = $rt_classWithoutFields(oncief_Function), -oncief_IsNaN$_MODULE$ = null, -oncief_IsNaN$_signatures = null, -oncief_IsNaN$_$callClinit = () => { - oncief_IsNaN$_$callClinit = $rt_eraseClinit(oncief_IsNaN$); - oncief_IsNaN$__clinit_(); +oncipvaf_Cypher25ErrorStrategyConf = $rt_classWithoutFields(), +oncipvaf_Cypher25ErrorStrategyConf_preferredRules = $this => { + return oncip_CypherErrorStrategy$Conf_preferredRules$($this); }, -oncief_IsNaN$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$10, $x$3, var$8, $x$2, $x$4, var$11, $x$8, var$13, var$14, var$15, $x$6; - var$1 = new oncief_IsNaN$; - oncief_IsNaN$_$callClinit(); - oncief_Function__init_(var$1); - oncief_IsNaN$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); +oncipvaf_Cypher25ErrorStrategyConf_vocabulary = $this => { + oncipv_Cypher25Parser_$callClinit(); + return oncipv_Cypher25Parser_VOCABULARY; +}, +oncipvaf_Cypher25ErrorStrategyConf_ignoredTokens = $this => { + s_Predef$_$callClinit(); + return ju_Set_of(jl_Integer_valueOf((-2)), jl_Integer_valueOf(241)); +}, +oncipvaf_Cypher25ErrorStrategyConf_customTokenDisplayNames = $this => { + let var$1, var$2, var$3, var$4; + s_Predef$_$callClinit(); + var$1 = s_Predef$_Map(s_Predef$_MODULE$); var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$3 = $rt_createArray(s_Tuple2, 20); var$4 = var$3.data; - $x$1 = oncief_IsNaN$_MODULE$; - $x$10 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - $x$10 = new oncius_ClosedDynamicUnionType; + var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(1), $rt_s(4585)); + var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(2), $rt_s(4586)); + var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(4), $rt_s(4587)); + var$4[3] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(5), $rt_s(4588)); + var$4[4] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(6), $rt_s(4589)); + var$4[5] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(7), $rt_s(4590)); + var$4[6] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(303), $rt_s(4591)); + var$4[7] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(302), $rt_s(4591)); + var$4[8] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(304), $rt_s(4563)); + var$4[9] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(305), $rt_s(4562)); + var$4[10] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(306), $rt_s(4555)); + var$4[11] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(3), $rt_s(4592)); + var$4[12] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(8), $rt_s(4593)); + var$4[13] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(9), $rt_s(4593)); + var$4[14] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(10), $rt_s(4591)); + var$4[15] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(17), $rt_s(4594)); + var$4[16] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(247), $rt_s(4595)); + var$4[17] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(146), $rt_s(4596)); + var$4[18] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(252), $rt_s(4597)); + var$4[19] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf((-1)), $rt_s(4236)); + return sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncipvaf_Cypher25ErrorStrategyConf_ruleGroups = $this => { + let var$1, var$2, var$3, var$4; s_Predef$_$callClinit(); - $x$8 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$13 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$10, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = $x$10; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5744)); - var$13 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5745), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$13); - oncief_IsNaN$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); + var$1 = s_Predef$_Map(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(s_Tuple2, 27); + var$4 = var$3.data; + var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(87), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(105), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(99), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[3] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(98), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[4] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(97), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[5] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(96), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[6] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(95), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[7] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(92), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[8] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(91), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[9] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(90), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[10] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(89), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[11] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(88), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[12] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(317), oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$); + var$4[13] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(127), oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$); + var$4[14] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(131), oncip_CypherErrorStrategy$ParameterRule$_MODULE$); + var$4[15] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(137), oncip_CypherErrorStrategy$VariableRule$_MODULE$); + var$4[16] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(314), oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$); + var$4[17] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(48), oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$); + var$4[18] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(323), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[19] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(324), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[20] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(325), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[21] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(326), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[22] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(327), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[23] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(76), oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$); + var$4[24] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(70), oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$); + var$4[25] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(58), oncip_CypherErrorStrategy$NodePatternRule$_MODULE$); + var$4[26] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(83), oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$); + return sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncipvaf_Cypher25ErrorStrategyConf_errorCharTokenType = $this => { + return 307; +}, +oncipv_Cypher25Parser = $rt_classWithoutFields(oavr_Parser), +oncipv_Cypher25Parser__decisionToDFA = null, +oncipv_Cypher25Parser__sharedContextCache = null, +oncipv_Cypher25Parser_ruleNames = null, +oncipv_Cypher25Parser__LITERAL_NAMES = null, +oncipv_Cypher25Parser__SYMBOLIC_NAMES = null, +oncipv_Cypher25Parser_VOCABULARY = null, +oncipv_Cypher25Parser_tokenNames = null, +oncipv_Cypher25Parser__serializedATN = null, +oncipv_Cypher25Parser__ATN = null, +oncipv_Cypher25Parser_$callClinit = () => { + oncipv_Cypher25Parser_$callClinit = $rt_eraseClinit(oncipv_Cypher25Parser); + oncipv_Cypher25Parser__clinit_(); +}, +oncipv_Cypher25Parser_makeRuleNames = () => { + oncipv_Cypher25Parser_$callClinit(); + return $rt_wrapArray(jl_String, [$rt_s(4598), $rt_s(4599), $rt_s(4600), $rt_s(4601), $rt_s(1150), $rt_s(4602), $rt_s(4603), $rt_s(4604), $rt_s(4605), $rt_s(4606), $rt_s(4607), $rt_s(4608), $rt_s(4609), $rt_s(4610), $rt_s(4611), $rt_s(4612), $rt_s(4613), $rt_s(4614), $rt_s(4615), $rt_s(4616), $rt_s(4617), $rt_s(4618), $rt_s(4619), $rt_s(4620), $rt_s(4621), $rt_s(4622), $rt_s(4623), $rt_s(4624), $rt_s(1191), $rt_s(1175), $rt_s(4625), $rt_s(4626), $rt_s(4627), $rt_s(4628), $rt_s(4629), $rt_s(4630), $rt_s(4631), + $rt_s(4632), $rt_s(4633), $rt_s(4634), $rt_s(4635), $rt_s(4636), $rt_s(4637), $rt_s(4638), $rt_s(4639), $rt_s(4640), $rt_s(4641), $rt_s(4642), $rt_s(4643), $rt_s(4644), $rt_s(4645), $rt_s(4646), $rt_s(4647), $rt_s(4648), $rt_s(1225), $rt_s(4649), $rt_s(4650), $rt_s(4651), $rt_s(4652), $rt_s(4653), $rt_s(4654), $rt_s(4655), $rt_s(4656), $rt_s(4657), $rt_s(4658), $rt_s(4659), $rt_s(4660), $rt_s(1219), $rt_s(4661), $rt_s(4662), $rt_s(4663), $rt_s(4664), $rt_s(4665), $rt_s(4666), $rt_s(4667), $rt_s(4668), $rt_s(4669), + $rt_s(4670), $rt_s(4671), $rt_s(4672), $rt_s(4673), $rt_s(4674), $rt_s(4675), $rt_s(4676), $rt_s(4677), $rt_s(4678), $rt_s(4679), $rt_s(955), $rt_s(4680), $rt_s(4681), $rt_s(4682), $rt_s(4683), $rt_s(4684), $rt_s(4685), $rt_s(4686), $rt_s(4687), $rt_s(4688), $rt_s(4689), $rt_s(4690), $rt_s(4691), $rt_s(4692), $rt_s(4693), $rt_s(4694), $rt_s(4695), $rt_s(4696), $rt_s(4697), $rt_s(4698), $rt_s(4699), $rt_s(4700), $rt_s(4701), $rt_s(4702), $rt_s(4703), $rt_s(4704), $rt_s(4705), $rt_s(4706), $rt_s(4707), $rt_s(4708), + $rt_s(4709), $rt_s(4710), $rt_s(4711), $rt_s(4712), $rt_s(4713), $rt_s(4714), $rt_s(4715), $rt_s(4716), $rt_s(4717), $rt_s(4718), $rt_s(4719), $rt_s(4720), $rt_s(4721), $rt_s(4722), $rt_s(4723), $rt_s(4724), $rt_s(4725), $rt_s(4726), $rt_s(4727), $rt_s(1194), $rt_s(1245), $rt_s(4728), $rt_s(4729), $rt_s(4730), $rt_s(4731), $rt_s(4732), $rt_s(4733), $rt_s(4734), $rt_s(4735), $rt_s(4736), $rt_s(4737), $rt_s(4738), $rt_s(4739), $rt_s(4740), $rt_s(4741), $rt_s(4742), $rt_s(4743), $rt_s(4744), $rt_s(4745), $rt_s(4746), + $rt_s(4747), $rt_s(4748), $rt_s(4749), $rt_s(4750), $rt_s(4751), $rt_s(4752), $rt_s(4753), $rt_s(4754), $rt_s(4755), $rt_s(4756), $rt_s(4757), $rt_s(4758), $rt_s(4759), $rt_s(4760), $rt_s(4761), $rt_s(4762), $rt_s(4763), $rt_s(4764), $rt_s(4765), $rt_s(4766), $rt_s(4767), $rt_s(4768), $rt_s(4769), $rt_s(4770), $rt_s(4771), $rt_s(4772), $rt_s(4773), $rt_s(4774), $rt_s(4775), $rt_s(4776), $rt_s(4777), $rt_s(4778), $rt_s(4779), $rt_s(4780), $rt_s(4781), $rt_s(4782), $rt_s(4783), $rt_s(4784), $rt_s(4785), $rt_s(4786), + $rt_s(4787), $rt_s(4788), $rt_s(4789), $rt_s(4790), $rt_s(4791), $rt_s(4792), $rt_s(4793), $rt_s(4794), $rt_s(4795), $rt_s(4796), $rt_s(4797), $rt_s(4798), $rt_s(4799), $rt_s(4800), $rt_s(4801), $rt_s(4802), $rt_s(4803), $rt_s(4804), $rt_s(4805), $rt_s(4806), $rt_s(4807), $rt_s(4808), $rt_s(4809), $rt_s(4810), $rt_s(4811), $rt_s(4812), $rt_s(4813), $rt_s(4814), $rt_s(4815), $rt_s(4816), $rt_s(4817), $rt_s(4818), $rt_s(4819), $rt_s(4820), $rt_s(4821), $rt_s(4822), $rt_s(4823), $rt_s(4824), $rt_s(4825), $rt_s(4826), + $rt_s(4827), $rt_s(4828), $rt_s(4829), $rt_s(4830), $rt_s(4831), $rt_s(4832), $rt_s(4833), $rt_s(4834), $rt_s(4835), $rt_s(4836), $rt_s(4837), $rt_s(4838), $rt_s(4839), $rt_s(4840), $rt_s(4841), $rt_s(4842), $rt_s(4843), $rt_s(4844), $rt_s(4845), $rt_s(4846), $rt_s(4847), $rt_s(4848), $rt_s(4849), $rt_s(4850), $rt_s(4851), $rt_s(4852), $rt_s(4853), $rt_s(4854), $rt_s(4855), $rt_s(4856), $rt_s(4857), $rt_s(4858), $rt_s(4859), $rt_s(4860), $rt_s(4861), $rt_s(4862), $rt_s(4863), $rt_s(4864), $rt_s(4865), $rt_s(4866), + $rt_s(4867), $rt_s(4868), $rt_s(4869), $rt_s(4870), $rt_s(4871), $rt_s(4872), $rt_s(4873), $rt_s(4874), $rt_s(4875), $rt_s(4876), $rt_s(4877), $rt_s(4878), $rt_s(4879), $rt_s(4880), $rt_s(4881), $rt_s(4882), $rt_s(4883), $rt_s(4884), $rt_s(4885), $rt_s(4886), $rt_s(4887), $rt_s(4888), $rt_s(4889), $rt_s(4890), $rt_s(4891), $rt_s(4892), $rt_s(4893), $rt_s(4894), $rt_s(4895), $rt_s(4896), $rt_s(4897), $rt_s(4898), $rt_s(4899), $rt_s(4900), $rt_s(4901), $rt_s(4902), $rt_s(4903), $rt_s(4904), $rt_s(4905), $rt_s(4906), + $rt_s(4907), $rt_s(4908), $rt_s(4909), $rt_s(4910), $rt_s(4911), $rt_s(4912), $rt_s(4913), $rt_s(4914), $rt_s(4915), $rt_s(4916), $rt_s(4917), $rt_s(4918), $rt_s(4919)]); +}, +oncipv_Cypher25Parser_makeLiteralNames = () => { + let var$1, var$2; + oncipv_Cypher25Parser_$callClinit(); + var$1 = $rt_createArray(jl_String, 266); + var$2 = var$1.data; + var$2[0] = null; + var$2[1] = null; + var$2[2] = null; + var$2[3] = null; + var$2[4] = null; + var$2[5] = null; + var$2[6] = null; + var$2[7] = null; + var$2[8] = null; + var$2[9] = null; + var$2[10] = null; + var$2[11] = null; + var$2[12] = null; + var$2[13] = null; + var$2[14] = null; + var$2[15] = null; + var$2[16] = null; + var$2[17] = null; + var$2[18] = null; + var$2[19] = null; + var$2[20] = null; + var$2[21] = null; + var$2[22] = null; + var$2[23] = null; + var$2[24] = null; + var$2[25] = null; + var$2[26] = null; + var$2[27] = null; + var$2[28] = null; + var$2[29] = $rt_s(4544); + var$2[30] = null; + var$2[31] = null; + var$2[32] = null; + var$2[33] = null; + var$2[34] = null; + var$2[35] = null; + var$2[36] = null; + var$2[37] = null; + var$2[38] = null; + var$2[39] = null; + var$2[40] = null; + var$2[41] = null; + var$2[42] = null; + var$2[43] = null; + var$2[44] = $rt_s(4545); + var$2[45] = $rt_s(4546); + var$2[46] = $rt_s(4547); + var$2[47] = null; + var$2[48] = null; + var$2[49] = null; + var$2[50] = null; + var$2[51] = null; + var$2[52] = null; + var$2[53] = null; + var$2[54] = null; + var$2[55] = null; + var$2[56] = null; + var$2[57] = null; + var$2[58] = null; + var$2[59] = null; + var$2[60] = null; + var$2[61] = null; + var$2[62] = null; + var$2[63] = null; + var$2[64] = null; + var$2[65] = null; + var$2[66] = null; + var$2[67] = null; + var$2[68] = null; + var$2[69] = null; + var$2[70] = null; + var$2[71] = null; + var$2[72] = null; + var$2[73] = null; + var$2[74] = null; + var$2[75] = null; + var$2[76] = $rt_s(4548); + var$2[77] = null; + var$2[78] = $rt_s(4549); + var$2[79] = $rt_s(4550); + var$2[80] = $rt_s(4551); + var$2[81] = $rt_s(4552); + var$2[82] = null; + var$2[83] = null; + var$2[84] = null; + var$2[85] = null; + var$2[86] = null; + var$2[87] = null; + var$2[88] = null; + var$2[89] = null; + var$2[90] = null; + var$2[91] = null; + var$2[92] = null; + var$2[93] = null; + var$2[94] = null; + var$2[95] = null; + var$2[96] = $rt_s(4553); + var$2[97] = null; + var$2[98] = null; + var$2[99] = null; + var$2[100] = null; + var$2[101] = null; + var$2[102] = null; + var$2[103] = null; + var$2[104] = null; + var$2[105] = null; + var$2[106] = null; + var$2[107] = null; + var$2[108] = null; + var$2[109] = null; + var$2[110] = null; + var$2[111] = null; + var$2[112] = null; + var$2[113] = null; + var$2[114] = $rt_s(4554); + var$2[115] = null; + var$2[116] = null; + var$2[117] = null; + var$2[118] = null; + var$2[119] = null; + var$2[120] = $rt_s(4555); + var$2[121] = null; + var$2[122] = null; + var$2[123] = null; + var$2[124] = null; + var$2[125] = null; + var$2[126] = null; + var$2[127] = null; + var$2[128] = null; + var$2[129] = null; + var$2[130] = null; + var$2[131] = null; + var$2[132] = null; + var$2[133] = null; + var$2[134] = null; + var$2[135] = null; + var$2[136] = null; + var$2[137] = null; + var$2[138] = null; + var$2[139] = null; + var$2[140] = $rt_s(4556); + var$2[141] = $rt_s(4557); + var$2[142] = $rt_s(4558); + var$2[143] = $rt_s(4559); + var$2[144] = $rt_s(4560); + var$2[145] = null; + var$2[146] = null; + var$2[147] = null; + var$2[148] = null; + var$2[149] = null; + var$2[150] = null; + var$2[151] = $rt_s(4561); + var$2[152] = $rt_s(4562); + var$2[153] = null; + var$2[154] = null; + var$2[155] = null; + var$2[156] = null; + var$2[157] = $rt_s(4563); + var$2[158] = $rt_s(4564); + var$2[159] = $rt_s(4565); + var$2[160] = $rt_s(4566); + var$2[161] = null; + var$2[162] = null; + var$2[163] = null; + var$2[164] = null; + var$2[165] = null; + var$2[166] = null; + var$2[167] = null; + var$2[168] = null; + var$2[169] = null; + var$2[170] = null; + var$2[171] = null; + var$2[172] = null; + var$2[173] = null; + var$2[174] = null; + var$2[175] = null; + var$2[176] = null; + var$2[177] = null; + var$2[178] = null; + var$2[179] = null; + var$2[180] = null; + var$2[181] = null; + var$2[182] = null; + var$2[183] = null; + var$2[184] = null; + var$2[185] = null; + var$2[186] = null; + var$2[187] = null; + var$2[188] = null; + var$2[189] = null; + var$2[190] = null; + var$2[191] = null; + var$2[192] = null; + var$2[193] = $rt_s(4567); + var$2[194] = $rt_s(4568); + var$2[195] = null; + var$2[196] = null; + var$2[197] = $rt_s(4569); + var$2[198] = null; + var$2[199] = null; + var$2[200] = null; + var$2[201] = null; + var$2[202] = null; + var$2[203] = null; + var$2[204] = null; + var$2[205] = null; + var$2[206] = null; + var$2[207] = null; + var$2[208] = $rt_s(4570); + var$2[209] = null; + var$2[210] = $rt_s(4571); + var$2[211] = $rt_s(4572); + var$2[212] = null; + var$2[213] = null; + var$2[214] = null; + var$2[215] = null; + var$2[216] = $rt_s(4573); + var$2[217] = null; + var$2[218] = null; + var$2[219] = null; + var$2[220] = null; + var$2[221] = null; + var$2[222] = null; + var$2[223] = null; + var$2[224] = null; + var$2[225] = null; + var$2[226] = null; + var$2[227] = null; + var$2[228] = null; + var$2[229] = null; + var$2[230] = null; + var$2[231] = null; + var$2[232] = null; + var$2[233] = $rt_s(4574); + var$2[234] = null; + var$2[235] = null; + var$2[236] = null; + var$2[237] = null; + var$2[238] = null; + var$2[239] = null; + var$2[240] = null; + var$2[241] = $rt_s(4575); + var$2[242] = null; + var$2[243] = null; + var$2[244] = null; + var$2[245] = null; + var$2[246] = null; + var$2[247] = null; + var$2[248] = null; + var$2[249] = null; + var$2[250] = null; + var$2[251] = null; + var$2[252] = null; + var$2[253] = null; + var$2[254] = null; + var$2[255] = null; + var$2[256] = null; + var$2[257] = null; + var$2[258] = null; + var$2[259] = null; + var$2[260] = null; + var$2[261] = null; + var$2[262] = null; + var$2[263] = null; + var$2[264] = null; + var$2[265] = $rt_s(4576); + return var$1; +}, +oncipv_Cypher25Parser_makeSymbolicNames = () => { + let var$1, var$2; + oncipv_Cypher25Parser_$callClinit(); + var$1 = $rt_createArray(jl_String, 308); + var$2 = var$1.data; + var$2[0] = null; + var$2[1] = $rt_s(4260); + var$2[2] = $rt_s(4261); + var$2[3] = $rt_s(4262); + var$2[4] = $rt_s(4263); + var$2[5] = $rt_s(4264); + var$2[6] = $rt_s(4267); + var$2[7] = $rt_s(4268); + var$2[8] = $rt_s(4269); + var$2[9] = $rt_s(4270); + var$2[10] = $rt_s(4272); + var$2[11] = $rt_s(4273); + var$2[12] = $rt_s(512); + var$2[13] = $rt_s(4274); + var$2[14] = $rt_s(4275); + var$2[15] = $rt_s(4276); + var$2[16] = $rt_s(4277); + var$2[17] = $rt_s(4278); + var$2[18] = $rt_s(562); + var$2[19] = $rt_s(4279); + var$2[20] = $rt_s(4280); + var$2[21] = $rt_s(708); + var$2[22] = $rt_s(4281); + var$2[23] = $rt_s(4282); + var$2[24] = $rt_s(4283); + var$2[25] = $rt_s(4284); + var$2[26] = $rt_s(4285); + var$2[27] = $rt_s(4286); + var$2[28] = $rt_s(4287); + var$2[29] = $rt_s(4288); + var$2[30] = $rt_s(4289); + var$2[31] = $rt_s(4290); + var$2[32] = $rt_s(710); + var$2[33] = $rt_s(4291); + var$2[34] = $rt_s(4292); + var$2[35] = $rt_s(4293); + var$2[36] = $rt_s(4294); + var$2[37] = $rt_s(4295); + var$2[38] = $rt_s(4039); + var$2[39] = $rt_s(4296); + var$2[40] = $rt_s(455); + var$2[41] = $rt_s(4297); + var$2[42] = $rt_s(4298); + var$2[43] = $rt_s(4299); + var$2[44] = $rt_s(4300); + var$2[45] = $rt_s(4301); + var$2[46] = $rt_s(4302); + var$2[47] = $rt_s(4303); + var$2[48] = $rt_s(4304); + var$2[49] = $rt_s(4305); + var$2[50] = $rt_s(3543); + var$2[51] = $rt_s(506); + var$2[52] = $rt_s(4306); + var$2[53] = $rt_s(4307); + var$2[54] = $rt_s(4308); + var$2[55] = $rt_s(4309); + var$2[56] = $rt_s(4310); + var$2[57] = $rt_s(4311); + var$2[58] = $rt_s(4312); + var$2[59] = $rt_s(4313); + var$2[60] = $rt_s(4314); + var$2[61] = $rt_s(4315); + var$2[62] = $rt_s(4316); + var$2[63] = $rt_s(743); + var$2[64] = $rt_s(4317); + var$2[65] = $rt_s(31); + var$2[66] = $rt_s(4318); + var$2[67] = $rt_s(587); + var$2[68] = $rt_s(4319); + var$2[69] = $rt_s(4320); + var$2[70] = $rt_s(4321); + var$2[71] = $rt_s(4322); + var$2[72] = $rt_s(4323); + var$2[73] = $rt_s(4324); + var$2[74] = $rt_s(4325); + var$2[75] = $rt_s(4326); + var$2[76] = $rt_s(4327); + var$2[77] = $rt_s(4328); + var$2[78] = $rt_s(4329); + var$2[79] = $rt_s(4330); + var$2[80] = $rt_s(4331); + var$2[81] = $rt_s(4332); + var$2[82] = $rt_s(534); + var$2[83] = $rt_s(4333); + var$2[84] = $rt_s(4334); + var$2[85] = $rt_s(4335); + var$2[86] = $rt_s(752); + var$2[87] = $rt_s(4336); + var$2[88] = $rt_s(4337); + var$2[89] = $rt_s(4338); + var$2[90] = $rt_s(4339); + var$2[91] = $rt_s(4340); + var$2[92] = $rt_s(4341); + var$2[93] = $rt_s(4342); + var$2[94] = $rt_s(456); + var$2[95] = $rt_s(4343); + var$2[96] = $rt_s(4344); + var$2[97] = $rt_s(4345); + var$2[98] = $rt_s(4346); + var$2[99] = $rt_s(4347); + var$2[100] = $rt_s(4348); + var$2[101] = $rt_s(4349); + var$2[102] = $rt_s(4350); + var$2[103] = $rt_s(4351); + var$2[104] = $rt_s(4352); + var$2[105] = $rt_s(4353); + var$2[106] = $rt_s(609); + var$2[107] = $rt_s(719); + var$2[108] = $rt_s(4354); + var$2[109] = $rt_s(4355); + var$2[110] = $rt_s(525); + var$2[111] = $rt_s(3565); + var$2[112] = $rt_s(4356); + var$2[113] = $rt_s(4357); + var$2[114] = $rt_s(4358); + var$2[115] = $rt_s(4359); + var$2[116] = $rt_s(761); + var$2[117] = $rt_s(4360); + var$2[118] = $rt_s(4361); + var$2[119] = $rt_s(4362); + var$2[120] = $rt_s(4363); + var$2[121] = $rt_s(4364); + var$2[122] = $rt_s(588); + var$2[123] = $rt_s(4365); + var$2[124] = $rt_s(4366); + var$2[125] = $rt_s(4367); + var$2[126] = $rt_s(4368); + var$2[127] = $rt_s(477); + var$2[128] = $rt_s(907); + var$2[129] = $rt_s(4369); + var$2[130] = $rt_s(4370); + var$2[131] = $rt_s(4371); + var$2[132] = $rt_s(4372); + var$2[133] = $rt_s(4373); + var$2[134] = $rt_s(722); + var$2[135] = $rt_s(4374); + var$2[136] = $rt_s(4375); + var$2[137] = $rt_s(4376); + var$2[138] = $rt_s(4377); + var$2[139] = $rt_s(4378); + var$2[140] = $rt_s(4379); + var$2[141] = $rt_s(4380); + var$2[142] = $rt_s(4381); + var$2[143] = $rt_s(4382); + var$2[144] = $rt_s(4383); + var$2[145] = $rt_s(4384); + var$2[146] = $rt_s(4385); + var$2[147] = $rt_s(4386); + var$2[148] = $rt_s(4387); + var$2[149] = $rt_s(4388); + var$2[150] = $rt_s(3566); + var$2[151] = $rt_s(4389); + var$2[152] = $rt_s(4390); + var$2[153] = $rt_s(4391); + var$2[154] = $rt_s(724); + var$2[155] = $rt_s(4392); + var$2[156] = $rt_s(4393); + var$2[157] = $rt_s(4394); + var$2[158] = $rt_s(4395); + var$2[159] = $rt_s(4396); + var$2[160] = $rt_s(4397); + var$2[161] = $rt_s(4398); + var$2[162] = $rt_s(4399); + var$2[163] = $rt_s(4400); + var$2[164] = $rt_s(4401); + var$2[165] = $rt_s(4402); + var$2[166] = $rt_s(4403); + var$2[167] = $rt_s(4404); + var$2[168] = $rt_s(4405); + var$2[169] = $rt_s(727); + var$2[170] = $rt_s(4406); + var$2[171] = $rt_s(4407); + var$2[172] = $rt_s(3648); + var$2[173] = $rt_s(4408); + var$2[174] = $rt_s(4409); + var$2[175] = $rt_s(4410); + var$2[176] = $rt_s(4411); + var$2[177] = $rt_s(4412); + var$2[178] = $rt_s(4118); + var$2[179] = $rt_s(4413); + var$2[180] = $rt_s(4414); + var$2[181] = $rt_s(4415); + var$2[182] = $rt_s(4416); + var$2[183] = $rt_s(4417); + var$2[184] = $rt_s(4418); + var$2[185] = $rt_s(4419); + var$2[186] = $rt_s(4420); + var$2[187] = $rt_s(4421); + var$2[188] = $rt_s(557); + var$2[189] = $rt_s(4422); + var$2[190] = $rt_s(758); + var$2[191] = $rt_s(4423); + var$2[192] = $rt_s(4424); + var$2[193] = $rt_s(4425); + var$2[194] = $rt_s(4426); + var$2[195] = $rt_s(734); + var$2[196] = $rt_s(4427); + var$2[197] = $rt_s(4428); + var$2[198] = $rt_s(4429); + var$2[199] = $rt_s(4430); + var$2[200] = $rt_s(4431); + var$2[201] = $rt_s(4432); + var$2[202] = $rt_s(4433); + var$2[203] = $rt_s(4434); + var$2[204] = $rt_s(531); + var$2[205] = $rt_s(4435); + var$2[206] = $rt_s(4436); + var$2[207] = $rt_s(4437); + var$2[208] = $rt_s(4438); + var$2[209] = $rt_s(1097); + var$2[210] = $rt_s(4439); + var$2[211] = $rt_s(4440); + var$2[212] = $rt_s(32); + var$2[213] = $rt_s(4441); + var$2[214] = $rt_s(4442); + var$2[215] = $rt_s(4443); + var$2[216] = $rt_s(4444); + var$2[217] = $rt_s(4445); + var$2[218] = $rt_s(730); + var$2[219] = $rt_s(4446); + var$2[220] = $rt_s(4447); + var$2[221] = $rt_s(4448); + var$2[222] = $rt_s(770); + var$2[223] = $rt_s(771); + var$2[224] = $rt_s(4449); + var$2[225] = $rt_s(4450); + var$2[226] = $rt_s(4451); + var$2[227] = $rt_s(641); + var$2[228] = $rt_s(4452); + var$2[229] = $rt_s(4453); + var$2[230] = $rt_s(4454); + var$2[231] = $rt_s(4455); + var$2[232] = $rt_s(4456); + var$2[233] = $rt_s(4457); + var$2[234] = $rt_s(4458); + var$2[235] = $rt_s(4459); + var$2[236] = $rt_s(4460); + var$2[237] = $rt_s(4461); + var$2[238] = $rt_s(4462); + var$2[239] = $rt_s(4463); + var$2[240] = $rt_s(4464); + var$2[241] = $rt_s(4465); + var$2[242] = $rt_s(4466); + var$2[243] = $rt_s(4467); + var$2[244] = $rt_s(4468); + var$2[245] = $rt_s(4469); + var$2[246] = $rt_s(4470); + var$2[247] = $rt_s(4471); + var$2[248] = $rt_s(4472); + var$2[249] = $rt_s(4473); + var$2[250] = $rt_s(4474); + var$2[251] = $rt_s(4475); + var$2[252] = $rt_s(4476); + var$2[253] = $rt_s(4477); + var$2[254] = $rt_s(4478); + var$2[255] = $rt_s(4479); + var$2[256] = $rt_s(4480); + var$2[257] = $rt_s(714); + var$2[258] = $rt_s(4481); + var$2[259] = $rt_s(513); + var$2[260] = $rt_s(4482); + var$2[261] = $rt_s(4483); + var$2[262] = $rt_s(1096); + var$2[263] = $rt_s(4484); + var$2[264] = $rt_s(4485); + var$2[265] = $rt_s(4486); + var$2[266] = $rt_s(4487); + var$2[267] = $rt_s(4488); + var$2[268] = $rt_s(524); + var$2[269] = $rt_s(3586); + var$2[270] = $rt_s(4489); + var$2[271] = $rt_s(4490); + var$2[272] = $rt_s(4491); + var$2[273] = $rt_s(4492); + var$2[274] = $rt_s(4493); + var$2[275] = $rt_s(4494); + var$2[276] = $rt_s(4495); + var$2[277] = $rt_s(4496); + var$2[278] = $rt_s(4497); + var$2[279] = $rt_s(608); + var$2[280] = $rt_s(4498); + var$2[281] = $rt_s(4499); + var$2[282] = $rt_s(4500); + var$2[283] = $rt_s(4501); + var$2[284] = $rt_s(4502); + var$2[285] = $rt_s(558); + var$2[286] = $rt_s(4503); + var$2[287] = $rt_s(4504); + var$2[288] = $rt_s(4505); + var$2[289] = $rt_s(4506); + var$2[290] = $rt_s(3567); + var$2[291] = $rt_s(4507); + var$2[292] = $rt_s(4508); + var$2[293] = $rt_s(4509); + var$2[294] = $rt_s(4040); + var$2[295] = $rt_s(642); + var$2[296] = $rt_s(4510); + var$2[297] = $rt_s(33); + var$2[298] = $rt_s(4511); + var$2[299] = $rt_s(4063); + var$2[300] = $rt_s(4512); + var$2[301] = $rt_s(4513); + var$2[302] = $rt_s(4514); + var$2[303] = $rt_s(4515); + var$2[304] = $rt_s(4516); + var$2[305] = $rt_s(4517); + var$2[306] = $rt_s(4518); + var$2[307] = $rt_s(4543); + return var$1; }, -oncief_IsNaN$_name = $this => { - return $rt_s(5746); +oncipv_Cypher25Parser_getVocabulary = $this => { + oncipv_Cypher25Parser_$callClinit(); + return oncipv_Cypher25Parser_VOCABULARY; }, -oncief_IsNaN$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_getRuleNames = $this => { + oncipv_Cypher25Parser_$callClinit(); + return oncipv_Cypher25Parser_ruleNames; }, -oncief_IsNaN$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_getATN = $this => { + oncipv_Cypher25Parser_$callClinit(); + return oncipv_Cypher25Parser__ATN; }, -oncief_IsNaN$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_statement = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StatementContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 2, 1); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 675); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 2, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 674); + oncipv_Cypher25Parser_regularQuery($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 673); + oncipv_Cypher25Parser_command($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_IsNaN$_hashCode = $this => { - return 70921041; +oncipv_Cypher25Parser_regularQuery = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RegularQueryContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 4, 2); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 677); + oncipv_Cypher25Parser_singleQuery($this); + oavr_Recognizer_setState($this, 685); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 279) { + oavr_Recognizer_setState($this, 678); + oavr_Parser_match($this, 279); + oavr_Recognizer_setState($this, 680); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 77)) { + oavr_Recognizer_setState($this, 679); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 77) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 682); + oncipv_Cypher25Parser_singleQuery($this); + oavr_Recognizer_setState($this, 687); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_IsNaN$_toString = $this => { - return $rt_s(5747); +oncipv_Cypher25Parser_singleQuery = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SingleQueryContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 6, 3); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 700); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 7, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 689); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 688); + oncipv_Cypher25Parser_clause($this); + oavr_Recognizer_setState($this, 691); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$3 = $_la - 38 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(2148007937, 16)), Long_ZERO)) + continue; + var$3 = $_la - 106 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(67108873, 394496)), Long_ZERO)) + continue; + var$3 = $_la - 170 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(140289, 33816576)), Long_ZERO)) + continue; + $_la = $_la - 244 | 0; + if ($_la & (-64)) + break e; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(257, 524608)), Long_ZERO)) + continue; + else + break; + } + break e; + case 2: + break; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 694); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 284) { + oavr_Recognizer_setState($this, 693); + oncipv_Cypher25Parser_useClause($this); + } + oavr_Recognizer_setState($this, 696); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 697); + oncipv_Cypher25Parser_regularQuery($this); + oavr_Recognizer_setState($this, 698); + oavr_Parser_match($this, 211); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_IsNaN$_signatures0 = $this => { - oncief_IsNaN$_$callClinit(); - return oncief_IsNaN$_signatures; +oncipv_Cypher25Parser_clause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 8, 4); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 719); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 8, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 703); + oncipv_Cypher25Parser_finishClause($this); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 704); + oncipv_Cypher25Parser_returnClause($this); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 705); + oncipv_Cypher25Parser_createClause($this); + break e; + case 5: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 706); + oncipv_Cypher25Parser_insertClause($this); + break e; + case 6: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 707); + oncipv_Cypher25Parser_deleteClause($this); + break e; + case 7: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 708); + oncipv_Cypher25Parser_setClause($this); + break e; + case 8: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 709); + oncipv_Cypher25Parser_removeClause($this); + break e; + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 710); + oncipv_Cypher25Parser_matchClause($this); + break e; + case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 10); + oavr_Recognizer_setState($this, 711); + oncipv_Cypher25Parser_mergeClause($this); + break e; + case 11: + oavr_Parser_enterOuterAlt($this, $_localctx, 11); + oavr_Recognizer_setState($this, 712); + oncipv_Cypher25Parser_withClause($this); + break e; + case 12: + oavr_Parser_enterOuterAlt($this, $_localctx, 12); + oavr_Recognizer_setState($this, 713); + oncipv_Cypher25Parser_unwindClause($this); + break e; + case 13: + oavr_Parser_enterOuterAlt($this, $_localctx, 13); + oavr_Recognizer_setState($this, 714); + oncipv_Cypher25Parser_callClause($this); + break e; + case 14: + oavr_Parser_enterOuterAlt($this, $_localctx, 14); + oavr_Recognizer_setState($this, 715); + oncipv_Cypher25Parser_subqueryClause($this); + break e; + case 15: + oavr_Parser_enterOuterAlt($this, $_localctx, 15); + oavr_Recognizer_setState($this, 716); + oncipv_Cypher25Parser_loadCSVClause($this); + break e; + case 16: + oavr_Parser_enterOuterAlt($this, $_localctx, 16); + oavr_Recognizer_setState($this, 717); + oncipv_Cypher25Parser_foreachClause($this); + break e; + case 17: + oavr_Parser_enterOuterAlt($this, $_localctx, 17); + oavr_Recognizer_setState($this, 718); + oncipv_Cypher25Parser_orderBySkipLimitClause($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 702); + oncipv_Cypher25Parser_useClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$ = $rt_classWithoutFields(oncief_Function), -oncief_Labels$_MODULE$ = null, -oncief_Labels$_signatures = null, -oncief_Labels$_$callClinit = () => { - oncief_Labels$_$callClinit = $rt_eraseClinit(oncief_Labels$); - oncief_Labels$__clinit_(); +oncipv_Cypher25Parser_useClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UseClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 10, 5); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 721); + oavr_Parser_match($this, 284); + oavr_Recognizer_setState($this, 723); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 9, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 722); + oavr_Parser_match($this, 116); + } + oavr_Recognizer_setState($this, 725); + oncipv_Cypher25Parser_graphReference($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14; - var$1 = new oncief_Labels$; - oncief_Labels$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Labels$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Labels$_MODULE$; - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_NodeType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTNode(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTString($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$14 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(s_Tuple2, 1); - var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5748)); - var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$11)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5749), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Labels$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_graphReference = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GraphReferenceContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 12, 6); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 733); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 10, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 727); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 728); + oncipv_Cypher25Parser_graphReference($this); + oavr_Recognizer_setState($this, 729); + oavr_Parser_match($this, 233); + break e; + case 2: + break; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 732); + oncipv_Cypher25Parser_symbolicAliasName($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 731); + oncipv_Cypher25Parser_functionInvocation($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$_name = $this => { - return $rt_s(5096); +oncipv_Cypher25Parser_finishClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$FinishClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 14, 7); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 735); + oavr_Parser_match($this, 106); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_returnClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ReturnClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 16, 8); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 737); + oavr_Parser_match($this, 227); + oavr_Recognizer_setState($this, 738); + oncipv_Cypher25Parser_returnBody($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_returnBody = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ReturnBodyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 18, 9); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 741); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 11, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 740); + oavr_Parser_match($this, 77); + } + f: { + oavr_Recognizer_setState($this, 743); + oncipv_Cypher25Parser_returnItems($this); + oavr_Recognizer_setState($this, 745); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 12, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 744); + oncipv_Cypher25Parser_orderBy($this); + } + g: { + oavr_Recognizer_setState($this, 748); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 13, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 747); + oncipv_Cypher25Parser_skip($this); + } + h: { + oavr_Recognizer_setState($this, 751); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 14, $this.$_ctx)) { + case 1: + break; + default: + break h; + } + oavr_Recognizer_setState($this, 750); + oncipv_Cypher25Parser_limit($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher25Parser_returnItem = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ReturnItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 20, 10); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 753); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 756); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 754); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 755); + oncipv_Cypher25Parser_variable($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher25Parser_returnItems = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ReturnItemsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 22, 11); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 760); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 4: + case 5: + case 6: + case 7: + case 8: + case 9: + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 142: + case 143: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 151: + case 153: + case 154: + case 155: + case 156: + case 157: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 759); + oncipv_Cypher25Parser_returnItem($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 144: + case 152: + case 158: + case 159: + case 160: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Recognizer_setState($this, 758); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 766); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 762); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 763); + oncipv_Cypher25Parser_returnItem($this); + oavr_Recognizer_setState($this, 768); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_orderItem = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$OrderItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 24, 12); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 769); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 772); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case -1: + case 38: + case 46: + case 57: + case 69: + case 74: + case 106: + case 109: + case 132: + case 146: + case 148: + case 155: + case 156: + case 170: + case 180: + case 183: + case 187: + case 211: + case 220: + case 227: + case 233: + case 241: + case 244: + case 249: + case 252: + case 261: + case 279: + case 282: + case 284: + case 294: + case 295: + break; + case 24: + case 25: + oavr_Recognizer_setState($this, 770); + oncipv_Cypher25Parser_ascToken($this); + break e; + case 71: + case 72: + oavr_Recognizer_setState($this, 771); + oncipv_Cypher25Parser_descToken($this); + break e; + default: + break e; + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$_hashCode = $this => { - return (-2026550241); +oncipv_Cypher25Parser_ascToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AscTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 26, 13); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 774); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 24 && $_la != 25) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$_toString = $this => { - return $rt_s(5750); +oncipv_Cypher25Parser_descToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DescTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 28, 14); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 776); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 71 && $_la != 72) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Labels$_signatures0 = $this => { - oncief_Labels$_$callClinit(); - return oncief_Labels$_signatures; +oncipv_Cypher25Parser_orderBy = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$OrderByContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 30, 15); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 778); + oavr_Parser_match($this, 187); + oavr_Recognizer_setState($this, 779); + oavr_Parser_match($this, 37); + oavr_Recognizer_setState($this, 780); + oncipv_Cypher25Parser_orderItem($this); + oavr_Recognizer_setState($this, 785); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 781); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 782); + oncipv_Cypher25Parser_orderItem($this); + oavr_Recognizer_setState($this, 787); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Last$ = $rt_classWithoutFields(oncief_Function), -oncief_Last$_MODULE$ = null, -oncief_Last$_signatures = null, -oncief_Last$_$callClinit = () => { - oncief_Last$_$callClinit = $rt_eraseClinit(oncief_Last$); - oncief_Last$__clinit_(); +oncipv_Cypher25Parser_skip = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SkipContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 32, 16); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 788); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 180 && $_la != 252) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 789); + oncipv_Cypher25Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Last$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, var$10, var$11, $x$4, $x$6, $x$10, var$15; - var$1 = new oncief_Last$; - oncief_Last$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Last$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Last$_MODULE$; - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(5420); - $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ListType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - $x$3 = oncius_package$_MODULE$; - var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); - $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$15 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(s_Tuple2, 1); - var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5420), $rt_s(5751)); - var$15 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$15, var$11)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5752), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$15); - oncief_Last$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_limit = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LimitContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 34, 17); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 791); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 792); + oncipv_Cypher25Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Last$_name = $this => { - return $rt_s(5753); +oncipv_Cypher25Parser_whereClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$WhereClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 36, 18); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 794); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 795); + oncipv_Cypher25Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Last$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_withClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$WithClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 38, 19); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 797); + oavr_Parser_match($this, 295); + oavr_Recognizer_setState($this, 798); + oncipv_Cypher25Parser_returnBody($this); + oavr_Recognizer_setState($this, 800); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 799); + oncipv_Cypher25Parser_whereClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Last$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_createClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 40, 20); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 802); + oavr_Parser_match($this, 57); + oavr_Recognizer_setState($this, 803); + oncipv_Cypher25Parser_patternList($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Last$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_insertClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$InsertClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 42, 21); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 805); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 806); + oncipv_Cypher25Parser_insertPatternList($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher25Parser_setClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SetClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 44, 22); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 808); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 809); + oncipv_Cypher25Parser_setItem($this); + oavr_Recognizer_setState($this, 814); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 810); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 811); + oncipv_Cypher25Parser_setItem($this); + oavr_Recognizer_setState($this, 816); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Last$_hashCode = $this => { - return 2361014; +oncipv_Cypher25Parser_setItem = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SetItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 46, 23); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 839); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 22, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$SetPropContext; + var$2 = $re; + oncipv_Cypher25Parser$SetPropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 817); + oncipv_Cypher25Parser_propertyExpression($this); + oavr_Recognizer_setState($this, 818); + oavr_Parser_match($this, 96); + oavr_Recognizer_setState($this, 819); + oncipv_Cypher25Parser_expression($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$SetDynamicPropContext; + var$2 = $re; + oncipv_Cypher25Parser$SetDynamicPropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 821); + oncipv_Cypher25Parser_dynamicPropertyExpression($this); + oavr_Recognizer_setState($this, 822); + oavr_Parser_match($this, 96); + oavr_Recognizer_setState($this, 823); + oncipv_Cypher25Parser_expression($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$SetPropsContext; + var$2 = $re; + oncipv_Cypher25Parser$SetPropsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 825); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 826); + oavr_Parser_match($this, 96); + oavr_Recognizer_setState($this, 827); + oncipv_Cypher25Parser_expression($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$AddPropContext; + var$2 = $re; + oncipv_Cypher25Parser$AddPropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 829); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 830); + oavr_Parser_match($this, 194); + oavr_Recognizer_setState($this, 831); + oncipv_Cypher25Parser_expression($this); + break e; + case 5: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$SetLabelsContext; + var$2 = $re; + oncipv_Cypher25Parser$SetLabelsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 833); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 834); + oncipv_Cypher25Parser_nodeLabels($this); + break e; + case 6: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$SetLabelsIsContext; + var$2 = $re; + oncipv_Cypher25Parser$SetLabelsIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 836); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 837); + oncipv_Cypher25Parser_nodeLabelsIs($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Last$_toString = $this => { - return $rt_s(5754); +oncipv_Cypher25Parser_removeClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RemoveClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 48, 24); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 841); + oavr_Parser_match($this, 220); + oavr_Recognizer_setState($this, 842); + oncipv_Cypher25Parser_removeItem($this); + oavr_Recognizer_setState($this, 847); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 843); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 844); + oncipv_Cypher25Parser_removeItem($this); + oavr_Recognizer_setState($this, 849); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Last$_signatures0 = $this => { - oncief_Last$_$callClinit(); - return oncief_Last$_signatures; +oncipv_Cypher25Parser_removeItem = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RemoveItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 50, 25); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 858); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 24, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$RemovePropContext; + var$2 = $re; + oncipv_Cypher25Parser$RemovePropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 850); + oncipv_Cypher25Parser_propertyExpression($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$RemoveDynamicPropContext; + var$2 = $re; + oncipv_Cypher25Parser$RemoveDynamicPropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 851); + oncipv_Cypher25Parser_dynamicPropertyExpression($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$RemoveLabelsContext; + var$2 = $re; + oncipv_Cypher25Parser$RemoveLabelsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 852); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 853); + oncipv_Cypher25Parser_nodeLabels($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$RemoveLabelsIsContext; + var$2 = $re; + oncipv_Cypher25Parser$RemoveLabelsIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 855); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 856); + oncipv_Cypher25Parser_nodeLabelsIs($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Left$ = $rt_classWithoutFields(oncief_Function), -oncief_Left$_MODULE$ = null, -oncief_Left$_signatures = null, -oncief_Left$_$callClinit = () => { - oncief_Left$_$callClinit = $rt_eraseClinit(oncief_Left$); - oncief_Left$__clinit_(); +oncipv_Cypher25Parser_deleteClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DeleteClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 52, 26); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 861); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 74 && $_la != 170)) { + oavr_Recognizer_setState($this, 860); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 74 && $_la != 170) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 863); + oavr_Parser_match($this, 69); + oavr_Recognizer_setState($this, 864); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 869); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 865); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 866); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 871); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Left$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; - var$1 = new oncief_Left$; - oncief_Left$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Left$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Left$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5755), $rt_s(5756)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$7 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5755), $rt_s(5757)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5756), $rt_s(5758)); - var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5759), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); - oncief_Left$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_matchClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$MatchClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 54, 27); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 873); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 183) { + oavr_Recognizer_setState($this, 872); + oavr_Parser_match($this, 183); + } + e: { + oavr_Recognizer_setState($this, 875); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 877); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 28, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 876); + oncipv_Cypher25Parser_matchMode($this); + } + oavr_Recognizer_setState($this, 879); + oncipv_Cypher25Parser_patternList($this); + oavr_Recognizer_setState($this, 883); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 287) { + oavr_Recognizer_setState($this, 880); + oncipv_Cypher25Parser_hint($this); + oavr_Recognizer_setState($this, 885); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 887); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 886); + oncipv_Cypher25Parser_whereClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Left$_name = $this => { - return $rt_s(5760); +oncipv_Cypher25Parser_matchMode = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$MatchModeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 56, 28); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 905); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 75: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 897); + oavr_Parser_match($this, 75); + oavr_Recognizer_setState($this, 903); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 218: + f: { + oavr_Recognizer_setState($this, 898); + oavr_Parser_match($this, 218); + oavr_Recognizer_setState($this, 900); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 33, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 899); + oavr_Parser_match($this, 30); + } + break e; + case 219: + oavr_Recognizer_setState($this, 902); + oavr_Parser_match($this, 219); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 221: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 889); + oavr_Parser_match($this, 221); + oavr_Recognizer_setState($this, 895); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 90: + g: { + oavr_Recognizer_setState($this, 890); + oavr_Parser_match($this, 90); + oavr_Recognizer_setState($this, 892); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 31, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 891); + oavr_Parser_match($this, 30); + } + break e; + case 91: + oavr_Recognizer_setState($this, 894); + oavr_Parser_match($this, 91); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Left$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_hint = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$HintContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 58, 29); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 907); + oavr_Parser_match($this, 287); + oavr_Recognizer_setState($this, 933); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 128: + case 195: + case 209: + case 262: + f: { + oavr_Recognizer_setState($this, 915); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 128: + oavr_Recognizer_setState($this, 908); + oavr_Parser_match($this, 128); + break f; + case 195: + oavr_Recognizer_setState($this, 913); + oavr_Parser_match($this, 195); + oavr_Recognizer_setState($this, 914); + oavr_Parser_match($this, 128); + break f; + case 209: + oavr_Recognizer_setState($this, 911); + oavr_Parser_match($this, 209); + oavr_Recognizer_setState($this, 912); + oavr_Parser_match($this, 128); + break f; + case 262: + oavr_Recognizer_setState($this, 909); + oavr_Parser_match($this, 262); + oavr_Recognizer_setState($this, 910); + oavr_Parser_match($this, 128); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + g: { + oavr_Recognizer_setState($this, 918); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 37, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 917); + oavr_Parser_match($this, 240); + } + oavr_Recognizer_setState($this, 920); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 921); + oncipv_Cypher25Parser_labelOrRelType($this); + oavr_Recognizer_setState($this, 922); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 923); + oncipv_Cypher25Parser_nonEmptyNameList($this); + oavr_Recognizer_setState($this, 924); + oavr_Parser_match($this, 233); + break e; + case 136: + oavr_Recognizer_setState($this, 926); + oavr_Parser_match($this, 136); + oavr_Recognizer_setState($this, 927); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 928); + oncipv_Cypher25Parser_nonEmptyNameList($this); + break e; + case 234: + oavr_Recognizer_setState($this, 929); + oavr_Parser_match($this, 234); + oavr_Recognizer_setState($this, 930); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 931); + oncipv_Cypher25Parser_labelOrRelType($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Left$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_mergeClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$MergeClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 60, 30); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 935); + oavr_Parser_match($this, 156); + oavr_Recognizer_setState($this, 936); + oncipv_Cypher25Parser_pattern($this); + oavr_Recognizer_setState($this, 940); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 181) { + oavr_Recognizer_setState($this, 937); + oncipv_Cypher25Parser_mergeAction($this); + oavr_Recognizer_setState($this, 942); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Left$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_mergeAction = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$MergeActionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 62, 31); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 943); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 944); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 57 && $_la != 155) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 945); + oncipv_Cypher25Parser_setClause($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Left$_hashCode = $this => { - return 2364455; -}; -let oncief_Left$_toString = $this => { - return $rt_s(3637); +oncipv_Cypher25Parser_unwindClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UnwindClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 64, 32); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 947); + oavr_Parser_match($this, 282); + oavr_Recognizer_setState($this, 948); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 949); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 950); + oncipv_Cypher25Parser_variable($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Left$_signatures0 = $this => { - oncief_Left$_$callClinit(); - return oncief_Left$_signatures; +oncipv_Cypher25Parser_callClause = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CallClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 66, 33); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 953); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 183) { + oavr_Recognizer_setState($this, 952); + oavr_Parser_match($this, 183); + } + oavr_Recognizer_setState($this, 955); + oavr_Parser_match($this, 38); + oavr_Recognizer_setState($this, 956); + oncipv_Cypher25Parser_procedureName($this); + oavr_Recognizer_setState($this, 969); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) { + e: { + oavr_Recognizer_setState($this, 957); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 966); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294721535, 4277927934)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1056886783, 4294967294)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338075, 4294835711)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 958); + oncipv_Cypher25Parser_procedureArgument($this); + oavr_Recognizer_setState($this, 963); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 46) + break e; + oavr_Recognizer_setState($this, 959); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 960); + oncipv_Cypher25Parser_procedureArgument($this); + oavr_Recognizer_setState($this, 965); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 968); + oavr_Parser_match($this, 233); + } + f: { + oavr_Recognizer_setState($this, 986); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 299) { + oavr_Recognizer_setState($this, 971); + oavr_Parser_match($this, 299); + oavr_Recognizer_setState($this, 984); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 973); + oncipv_Cypher25Parser_procedureResultItem($this); + oavr_Recognizer_setState($this, 978); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 974); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 975); + oncipv_Cypher25Parser_procedureResultItem($this); + oavr_Recognizer_setState($this, 980); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 982); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 294) + break f; + oavr_Recognizer_setState($this, 981); + oncipv_Cypher25Parser_whereClause($this); + break f; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Recognizer_setState($this, 972); + oavr_Parser_match($this, 265); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$ = $rt_classWithoutFields(oncief_Function), -oncief_Length$_MODULE$ = null, -oncief_Length$_signatures = null, -oncief_Length$_$callClinit = () => { - oncief_Length$_$callClinit = $rt_eraseClinit(oncief_Length$); - oncief_Length$__clinit_(); +oncipv_Cypher25Parser_procedureName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ProcedureNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 68, 34); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 988); + oncipv_Cypher25Parser_namespace($this); + oavr_Recognizer_setState($this, 989); + oncipv_Cypher25Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Length$; - oncief_Length$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Length$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Length$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_PathType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTPath(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5761)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5762), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Length$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_procedureArgument = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ProcedureArgumentContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 70, 35); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 991); + oncipv_Cypher25Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$_name = $this => { - return $rt_s(5756); +oncipv_Cypher25Parser_procedureResultItem = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ProcedureResultItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 72, 36); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 993); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 996); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 994); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 995); + oncipv_Cypher25Parser_variable($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_loadCSVClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LoadCSVClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 74, 37); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 998); + oavr_Parser_match($this, 148); + oavr_Recognizer_setState($this, 999); + oavr_Parser_match($this, 58); + oavr_Recognizer_setState($this, 1002); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 295) { + oavr_Recognizer_setState($this, 1000); + oavr_Parser_match($this, 295); + oavr_Recognizer_setState($this, 1001); + oavr_Parser_match($this, 121); + } + oavr_Recognizer_setState($this, 1004); + oavr_Parser_match($this, 110); + oavr_Recognizer_setState($this, 1005); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1006); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 1007); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1010); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 105) { + oavr_Recognizer_setState($this, 1008); + oavr_Parser_match($this, 105); + oavr_Recognizer_setState($this, 1009); + oncipv_Cypher25Parser_stringLiteral($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_foreachClause = $this => { + let $_localctx, var$2, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ForeachClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 76, 38); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1012); + oavr_Parser_match($this, 109); + oavr_Recognizer_setState($this, 1013); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1014); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1015); + oavr_Parser_match($this, 127); + oavr_Recognizer_setState($this, 1016); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1017); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 1019); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 1018); + oncipv_Cypher25Parser_clause($this); + oavr_Recognizer_setState($this, 1021); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$3 = var$2 - 38 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(2148007937, 16)), Long_ZERO)) + continue; + var$3 = var$2 - 106 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(67108873, 394496)), Long_ZERO)) + continue; + var$3 = var$2 - 170 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(140289, 33816576)), Long_ZERO)) + continue; + var$2 = var$2 - 244 | 0; + if (var$2 & (-64)) + break; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$2), Long_create(257, 524608)), Long_ZERO)) + continue; + else + break; + } + oavr_Recognizer_setState($this, 1023); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_subqueryClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SubqueryClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 78, 39); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1026); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 183) { + oavr_Recognizer_setState($this, 1025); + oavr_Parser_match($this, 183); + } + oavr_Recognizer_setState($this, 1028); + oavr_Parser_match($this, 38); + oavr_Recognizer_setState($this, 1030); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) { + oavr_Recognizer_setState($this, 1029); + oncipv_Cypher25Parser_subqueryScope($this); + } + oavr_Recognizer_setState($this, 1032); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 1033); + oncipv_Cypher25Parser_regularQuery($this); + oavr_Recognizer_setState($this, 1034); + oavr_Parser_match($this, 211); + oavr_Recognizer_setState($this, 1036); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 127) { + oavr_Recognizer_setState($this, 1035); + oncipv_Cypher25Parser_subqueryInTransactionsParameters($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$_hashCode = $this => { - return (-2022496506); +oncipv_Cypher25Parser_subqueryScope = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SubqueryScopeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 80, 40); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1038); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1048); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + break f; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 241: + break e; + case 233: + break; + case 265: + oavr_Recognizer_setState($this, 1039); + oavr_Parser_match($this, 265); + break e; + default: + break e; + } + break e; + } + oavr_Recognizer_setState($this, 1040); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1045); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 46) + break e; + oavr_Recognizer_setState($this, 1041); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1042); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1047); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1050); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$_toString = $this => { - return $rt_s(5763); +oncipv_Cypher25Parser_subqueryInTransactionsParameters = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 82, 41); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1052); + oavr_Parser_match($this, 127); + oavr_Recognizer_setState($this, 1057); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 58, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + f: { + oavr_Recognizer_setState($this, 1054); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 57, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1053); + oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1056); + oavr_Parser_match($this, 50); + } + oavr_Recognizer_setState($this, 1059); + oavr_Parser_match($this, 272); + oavr_Recognizer_setState($this, 1065); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + g: { + try { + while (true) { + $_la = $_la - 179 | 0; + if ($_la & (-64)) + break; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(5, 4096)), Long_ZERO)) + break; + h: { + oavr_Recognizer_setState($this, 1063); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 179: + break; + case 181: + oavr_Recognizer_setState($this, 1061); + oncipv_Cypher25Parser_subqueryInTransactionsErrorParameters($this); + break h; + case 223: + oavr_Recognizer_setState($this, 1062); + oncipv_Cypher25Parser_subqueryInTransactionsReportParameters($this); + break h; + default: + break g; + } + oavr_Recognizer_setState($this, 1060); + oncipv_Cypher25Parser_subqueryInTransactionsBatchParameters($this); + } + oavr_Recognizer_setState($this, 1067); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $rt_throw(oavr_NoViableAltException__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + } else{ + $_localctx = $$je; + break c; + } + } + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Length$_signatures0 = $this => { - oncief_Length$_$callClinit(); - return oncief_Length$_signatures; +oncipv_Cypher25Parser_subqueryInTransactionsBatchParameters = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 84, 42); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1068); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 1069); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1070); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 231 && $_la != 232) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$ = $rt_classWithoutFields(oncief_Function), -oncief_Linenumber$_MODULE$ = null, -oncief_Linenumber$_signatures = null, -oncief_Linenumber$_$callClinit = () => { - oncief_Linenumber$_$callClinit = $rt_eraseClinit(oncief_Linenumber$); - oncief_Linenumber$__clinit_(); +oncipv_Cypher25Parser_subqueryInTransactionsErrorParameters = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 86, 43); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1072); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 1073); + oavr_Parser_match($this, 102); + oavr_Recognizer_setState($this, 1074); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 35 && $_la != 55 && $_la != 103) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new oncief_Linenumber$; - oncief_Linenumber$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Linenumber$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - oncie_FunctionTypeSignature$_$callClinit(); - var$5 = oncie_FunctionTypeSignature$_MODULE$; - var$6 = oncief_Linenumber$_MODULE$; - oncius_package$_$callClinit(); - var$7 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(5764), oncief_Category$_SCALAR(oncief_Category$_MODULE$)); - oncief_Linenumber$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_subqueryInTransactionsReportParameters = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 88, 44); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1076); + oavr_Parser_match($this, 223); + oavr_Recognizer_setState($this, 1077); + oavr_Parser_match($this, 255); + oavr_Recognizer_setState($this, 1078); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 1079); + oncipv_Cypher25Parser_variable($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher25Parser_orderBySkipLimitClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$OrderBySkipLimitClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 90, 45); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1093); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 146: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1092); + oncipv_Cypher25Parser_limit($this); + break e; + case 180: + case 252: + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1088); + oncipv_Cypher25Parser_skip($this); + oavr_Recognizer_setState($this, 1090); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 63, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1089); + oncipv_Cypher25Parser_limit($this); + } + break e; + case 187: + g: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1081); + oncipv_Cypher25Parser_orderBy($this); + oavr_Recognizer_setState($this, 1083); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 61, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 1082); + oncipv_Cypher25Parser_skip($this); + } + h: { + oavr_Recognizer_setState($this, 1086); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 62, $this.$_ctx)) { + case 1: + break; + default: + break h; + } + oavr_Recognizer_setState($this, 1085); + oncipv_Cypher25Parser_limit($this); + } + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$_name = $this => { - return $rt_s(5765); +oncipv_Cypher25Parser_patternList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PatternListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 92, 46); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1095); + oncipv_Cypher25Parser_pattern($this); + oavr_Recognizer_setState($this, 1100); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 1096); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1097); + oncipv_Cypher25Parser_pattern($this); + oavr_Recognizer_setState($this, 1102); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_insertPatternList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$InsertPatternListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 94, 47); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1103); + oncipv_Cypher25Parser_insertPattern($this); + oavr_Recognizer_setState($this, 1108); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 1104); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1105); + oncipv_Cypher25Parser_insertPattern($this); + oavr_Recognizer_setState($this, 1110); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_pattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 96, 48); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1114); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 67, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1111); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1112); + oavr_Parser_match($this, 96); + } + oavr_Recognizer_setState($this, 1117); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 21 && $_la != 248)) { + oavr_Recognizer_setState($this, 1116); + oncipv_Cypher25Parser_selector($this); + } + oavr_Recognizer_setState($this, 1119); + oncipv_Cypher25Parser_anonymousPattern($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_insertPattern = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$InsertPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 98, 49); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1124); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758095360, 4294938623)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294717439, 4277927934)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294967294)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338073, 4294835711)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 1121); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1122); + oavr_Parser_match($this, 96); + } + oavr_Recognizer_setState($this, 1126); + oncipv_Cypher25Parser_insertNodePattern($this); + oavr_Recognizer_setState($this, 1132); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 152 && $_la != 157 && $_la != 304 && $_la != 305)) { + oavr_Recognizer_setState($this, 1127); + oncipv_Cypher25Parser_insertRelationshipPattern($this); + oavr_Recognizer_setState($this, 1128); + oncipv_Cypher25Parser_insertNodePattern($this); + oavr_Recognizer_setState($this, 1134); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$_hashCode = $this => { - return (-1714511779); +oncipv_Cypher25Parser_quantifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$QuantifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 100, 50); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1149); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 73, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1135); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 1136); + oavr_Parser_match($this, 5); + oavr_Recognizer_setState($this, 1137); + oavr_Parser_match($this, 211); + break e; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1138); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 1140); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + oavr_Recognizer_setState($this, 1139); + $_localctx.$from20 = oavr_Parser_match($this, 5); + } + oavr_Recognizer_setState($this, 1142); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1144); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + oavr_Recognizer_setState($this, 1143); + $_localctx.$to3 = oavr_Parser_match($this, 5); + } + oavr_Recognizer_setState($this, 1146); + oavr_Parser_match($this, 211); + break e; + case 3: + break; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 1148); + oavr_Parser_match($this, 265); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1147); + oavr_Parser_match($this, 193); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$_toString = $this => { - return $rt_s(5766); +oncipv_Cypher25Parser_anonymousPattern = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AnonymousPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 102, 51); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1153); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 17: + case 247: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1151); + oncipv_Cypher25Parser_shortestPathPattern($this); + break e; + case 151: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1152); + oncipv_Cypher25Parser_patternElement($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Linenumber$_signatures0 = $this => { - oncief_Linenumber$_$callClinit(); - return oncief_Linenumber$_signatures; +oncipv_Cypher25Parser_shortestPathPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShortestPathPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 104, 52); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1155); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 17 && $_la != 247) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1156); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1157); + oncipv_Cypher25Parser_patternElement($this); + oavr_Recognizer_setState($this, 1158); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log$ = $rt_classWithoutFields(oncief_Function), -oncief_Log$_MODULE$ = null, -oncief_Log$_signatures = null, -oncief_Log$_$callClinit = () => { - oncief_Log$_$callClinit = $rt_eraseClinit(oncief_Log$); - oncief_Log$__clinit_(); +oncipv_Cypher25Parser_patternElement = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PatternElementContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 106, 53); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1173); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + e: { + f: { + oavr_Recognizer_setState($this, 1173); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 77, $this.$_ctx)) { + case 1: + break f; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1172); + oncipv_Cypher25Parser_parenthesizedPath($this); + break e; + } + oavr_Recognizer_setState($this, 1160); + oncipv_Cypher25Parser_nodePattern($this); + oavr_Recognizer_setState($this, 1169); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if (var$2 != 152 && var$2 != 157 && var$2 != 304 && var$2 != 305) + break e; + oavr_Recognizer_setState($this, 1161); + oncipv_Cypher25Parser_relationshipPattern($this); + oavr_Recognizer_setState($this, 1163); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(var$2 != 143 && var$2 != 193 && var$2 != 265)) { + oavr_Recognizer_setState($this, 1162); + oncipv_Cypher25Parser_quantifier($this); + } + oavr_Recognizer_setState($this, 1165); + oncipv_Cypher25Parser_nodePattern($this); + oavr_Recognizer_setState($this, 1171); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1175); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Log$; - oncief_Log$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Log$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Log$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5767)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5768), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Log$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_selector = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher25Parser$SelectorContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 108, 54); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1211); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 87, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$AnyShortestPathContext; + var$2 = $re; + oncipv_Cypher25Parser$AnyShortestPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1177); + oavr_Parser_match($this, 21); + oavr_Recognizer_setState($this, 1178); + oavr_Parser_match($this, 248); + oavr_Recognizer_setState($this, 1180); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 190) { + var$2 = $re; + if ($_la != 191) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1179); + oncipv_Cypher25Parser_pathToken($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$AllShortestPathContext; + var$2 = $re; + oncipv_Cypher25Parser$AllShortestPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1182); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 1183); + oavr_Parser_match($this, 248); + oavr_Recognizer_setState($this, 1185); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 190) { + var$2 = $re; + if ($_la != 191) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1184); + oncipv_Cypher25Parser_pathToken($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$AnyPathContext; + var$2 = $re; + oncipv_Cypher25Parser$AnyPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1187); + oavr_Parser_match($this, 21); + oavr_Recognizer_setState($this, 1189); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + var$2 = $re; + oavr_Recognizer_setState($this, 1188); + oavr_Parser_match($this, 5); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1192); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 190) { + var$2 = $re; + if ($_la != 191) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1191); + oncipv_Cypher25Parser_pathToken($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$AllPathContext; + var$2 = $re; + oncipv_Cypher25Parser$AllPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1194); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 1196); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 190) { + var$2 = $re; + if ($_la != 191) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1195); + oncipv_Cypher25Parser_pathToken($this); + break e; + case 5: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ShortestGroupContext; + var$2 = $re; + oncipv_Cypher25Parser$ShortestGroupContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 1198); + oavr_Parser_match($this, 248); + oavr_Recognizer_setState($this, 1200); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + var$2 = $re; + oavr_Recognizer_setState($this, 1199); + oavr_Parser_match($this, 5); + } + f: { + var$2 = $re; + oavr_Recognizer_setState($this, 1203); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 190) { + var$2 = $re; + if ($_la != 191) + break f; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1202); + oncipv_Cypher25Parser_pathToken($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1205); + oncipv_Cypher25Parser_groupToken($this); + break e; + case 6: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$AnyShortestPathContext; + var$2 = $re; + oncipv_Cypher25Parser$AnyShortestPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 1206); + oavr_Parser_match($this, 248); + oavr_Recognizer_setState($this, 1207); + oavr_Parser_match($this, 5); + oavr_Recognizer_setState($this, 1209); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 190) { + var$2 = $re; + if ($_la != 191) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1208); + oncipv_Cypher25Parser_pathToken($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Log$_name = $this => { - return $rt_s(5769); +oncipv_Cypher25Parser_groupToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GroupTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 110, 55); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1213); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 118 && $_la != 119) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_pathToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PathTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 112, 56); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1215); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 190 && $_la != 191) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_pathPatternNonEmpty = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PathPatternNonEmptyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 114, 57); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1217); + oncipv_Cypher25Parser_nodePattern($this); + oavr_Recognizer_setState($this, 1221); + $this.$_errHandler.$sync($this); + $_alt = 1; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + e: { + try { + while (true) { + switch ($_alt) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1218); + oncipv_Cypher25Parser_relationshipPattern($this); + oavr_Recognizer_setState($this, 1219); + oncipv_Cypher25Parser_nodePattern($this); + oavr_Recognizer_setState($this, 1223); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 88, $this.$_ctx); + if ($_alt == 2) + break; + if (!$_alt) + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $rt_throw(oavr_NoViableAltException__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + } else{ + $_localctx = $$je; + break c; + } + } + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_nodePattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 116, 58); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1225); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1227); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 89, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1226); + oncipv_Cypher25Parser_variable($this); + } + oavr_Recognizer_setState($this, 1230); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 44 && $_la != 135)) { + oavr_Recognizer_setState($this, 1229); + oncipv_Cypher25Parser_labelExpression($this); + } + oavr_Recognizer_setState($this, 1233); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 76 && $_la != 143)) { + oavr_Recognizer_setState($this, 1232); + oncipv_Cypher25Parser_properties($this); + } + oavr_Recognizer_setState($this, 1237); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 1235); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 1236); + oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1239); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher25Parser_insertNodePattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$InsertNodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 118, 59); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1241); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1243); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 93, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1242); + oncipv_Cypher25Parser_variable($this); + } + oavr_Recognizer_setState($this, 1246); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 44 && $_la != 135)) { + oavr_Recognizer_setState($this, 1245); + oncipv_Cypher25Parser_insertNodeLabelExpression($this); + } + oavr_Recognizer_setState($this, 1249); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 143) { + oavr_Recognizer_setState($this, 1248); + oncipv_Cypher25Parser_map($this); + } + oavr_Recognizer_setState($this, 1251); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log$_hashCode = $this => { - return 76580; +oncipv_Cypher25Parser_parenthesizedPath = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ParenthesizedPathContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 120, 60); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1253); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1254); + oncipv_Cypher25Parser_pattern($this); + oavr_Recognizer_setState($this, 1257); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 1255); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 1256); + oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1259); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 1261); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 143 && $_la != 193 && $_la != 265)) { + oavr_Recognizer_setState($this, 1260); + oncipv_Cypher25Parser_quantifier($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log$_toString = $this => { - return $rt_s(5770); +oncipv_Cypher25Parser_nodeLabels = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NodeLabelsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 122, 61); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1265); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + e: { + oavr_Recognizer_setState($this, 1265); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 98, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 1264); + oncipv_Cypher25Parser_dynamicLabelType($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 1263); + oncipv_Cypher25Parser_labelType($this); + } + oavr_Recognizer_setState($this, 1267); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log$_signatures0 = $this => { - oncief_Log$_$callClinit(); - return oncief_Log$_signatures; +oncipv_Cypher25Parser_nodeLabelsIs = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NodeLabelsIsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 124, 62); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1269); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 1272); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 1270); + oncipv_Cypher25Parser_symbolicNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + case 76: + oavr_Recognizer_setState($this, 1271); + oncipv_Cypher25Parser_dynamicExpression($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 1278); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 44) { + f: { + oavr_Recognizer_setState($this, 1276); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 101, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 1275); + oncipv_Cypher25Parser_dynamicLabelType($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 1274); + oncipv_Cypher25Parser_labelType($this); + } + oavr_Recognizer_setState($this, 1280); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$ = $rt_classWithoutFields(oncief_Function), -oncief_Log10$_MODULE$ = null, -oncief_Log10$_signatures = null, -oncief_Log10$_$callClinit = () => { - oncief_Log10$_$callClinit = $rt_eraseClinit(oncief_Log10$); - oncief_Log10$__clinit_(); +oncipv_Cypher25Parser_dynamicExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DynamicExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 126, 63); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1281); + oavr_Parser_match($this, 76); + oavr_Recognizer_setState($this, 1282); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1283); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1284); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Log10$; - oncief_Log10$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Log10$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Log10$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5771)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5772), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Log10$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_dynamicAnyAllExpression = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DynamicAnyAllExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 128, 64); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1286); + oavr_Parser_match($this, 76); + oavr_Recognizer_setState($this, 1288); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 21)) { + oavr_Recognizer_setState($this, 1287); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 21) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 1290); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1291); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1292); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$_name = $this => { - return $rt_s(5773); +oncipv_Cypher25Parser_dynamicLabelType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DynamicLabelTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 130, 65); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1294); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 1295); + oncipv_Cypher25Parser_dynamicExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_labelType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 132, 66); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1297); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 1298); + oncipv_Cypher25Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_relType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RelTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 134, 67); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1300); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 1301); + oncipv_Cypher25Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_labelOrRelType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelOrRelTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 136, 68); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1303); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 1304); + oncipv_Cypher25Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$_hashCode = $this => { - return 73594947; +oncipv_Cypher25Parser_properties = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PropertiesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 138, 69); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1308); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1307); + oncipv_Cypher25Parser_parameter($this, $rt_s(708)); + break e; + case 143: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1306); + oncipv_Cypher25Parser_map($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$_toString = $this => { - return $rt_s(5774); +oncipv_Cypher25Parser_relationshipPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RelationshipPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 140, 70); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1311); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 152 && $_la != 305)) { + oavr_Recognizer_setState($this, 1310); + oncipv_Cypher25Parser_leftArrow($this); + } + oavr_Recognizer_setState($this, 1313); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 1332); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 142) { + e: { + oavr_Recognizer_setState($this, 1314); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 1316); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 106, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1315); + oncipv_Cypher25Parser_variable($this); + } + oavr_Recognizer_setState($this, 1319); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 44 && $_la != 135)) { + oavr_Recognizer_setState($this, 1318); + oncipv_Cypher25Parser_labelExpression($this); + } + oavr_Recognizer_setState($this, 1322); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 265) { + oavr_Recognizer_setState($this, 1321); + oncipv_Cypher25Parser_pathLength($this); + } + oavr_Recognizer_setState($this, 1325); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 76 && $_la != 143)) { + oavr_Recognizer_setState($this, 1324); + oncipv_Cypher25Parser_properties($this); + } + oavr_Recognizer_setState($this, 1329); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 1327); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 1328); + oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1331); + oavr_Parser_match($this, 210); + } + oavr_Recognizer_setState($this, 1334); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 1336); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 120 && $_la != 306)) { + oavr_Recognizer_setState($this, 1335); + oncipv_Cypher25Parser_rightArrow($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Log10$_signatures0 = $this => { - oncief_Log10$_$callClinit(); - return oncief_Log10$_signatures; +oncipv_Cypher25Parser_insertRelationshipPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$InsertRelationshipPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 142, 71); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1339); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 152 && $_la != 305)) { + oavr_Recognizer_setState($this, 1338); + oncipv_Cypher25Parser_leftArrow($this); + } + e: { + oavr_Recognizer_setState($this, 1341); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 1342); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 1344); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 114, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1343); + oncipv_Cypher25Parser_variable($this); + } + oavr_Recognizer_setState($this, 1346); + oncipv_Cypher25Parser_insertRelationshipLabelExpression($this); + oavr_Recognizer_setState($this, 1348); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 143) { + oavr_Recognizer_setState($this, 1347); + oncipv_Cypher25Parser_map($this); + } + oavr_Recognizer_setState($this, 1350); + oavr_Parser_match($this, 210); + oavr_Recognizer_setState($this, 1351); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 1353); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 120 && $_la != 306)) { + oavr_Recognizer_setState($this, 1352); + oncipv_Cypher25Parser_rightArrow($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }; -let oncief_Lower$ = $rt_classWithoutFields(oncief_Function), -oncief_Lower$_MODULE$ = null, -oncief_Lower$_signatures = null, -oncief_Lower$_$callClinit = () => { - oncief_Lower$_$callClinit = $rt_eraseClinit(oncief_Lower$); - oncief_Lower$__clinit_(); -}, -oncief_Lower$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Lower$; - oncief_Lower$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Lower$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Lower$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5775)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5776), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Lower$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Lower$_name = $this => { - return $rt_s(3567); -}, -oncief_Lower$_productArity = $this => { - return 0; +let oncipv_Cypher25Parser_leftArrow = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LeftArrowContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 144, 72); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1355); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 152 && $_la != 305) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Lower$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_arrowLine = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ArrowLineContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 146, 73); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1357); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 157 && $_la != 304) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Lower$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_rightArrow = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RightArrowContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 148, 74); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1359); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 120 && $_la != 306) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Lower$_hashCode = $this => { - return 73612001; +oncipv_Cypher25Parser_pathLength = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PathLengthContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 150, 75); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1361); + oavr_Parser_match($this, 265); + oavr_Recognizer_setState($this, 1370); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 119, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 1363); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + oavr_Recognizer_setState($this, 1362); + $_localctx.$from22 = oavr_Parser_match($this, 5); + } + oavr_Recognizer_setState($this, 1365); + oavr_Parser_match($this, 80); + oavr_Recognizer_setState($this, 1367); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 5) + break e; + oavr_Recognizer_setState($this, 1366); + $_localctx.$to6 = oavr_Parser_match($this, 5); + break e; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1369); + $_localctx.$single1 = oavr_Parser_match($this, 5); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Lower$_toString = $this => { - return $rt_s(189); +oncipv_Cypher25Parser_labelExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 152, 76); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1376); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 44: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1372); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 1373); + oncipv_Cypher25Parser_labelExpression4($this); + break e; + case 135: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1374); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 1375); + oncipv_Cypher25Parser_labelExpression4Is($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Lower$_signatures0 = $this => { - oncief_Lower$_$callClinit(); - return oncief_Lower$_signatures; +oncipv_Cypher25Parser_labelExpression4 = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpression4Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 154, 77); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1378); + oncipv_Cypher25Parser_labelExpression3($this); + oavr_Recognizer_setState($this, 1386); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 122, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1379); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 1381); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) { + oavr_Recognizer_setState($this, 1380); + oavr_Parser_match($this, 44); + } + oavr_Recognizer_setState($this, 1383); + oncipv_Cypher25Parser_labelExpression3($this); + } + oavr_Recognizer_setState($this, 1388); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 122, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_LTrim$ = $rt_classWithoutFields(oncief_Function), -oncief_LTrim$_MODULE$ = null, -oncief_LTrim$_signatures = null, -oncief_LTrim$_$callClinit = () => { - oncief_LTrim$_$callClinit = $rt_eraseClinit(oncief_LTrim$); - oncief_LTrim$__clinit_(); +oncipv_Cypher25Parser_labelExpression4Is = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpression4IsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 156, 78); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1389); + oncipv_Cypher25Parser_labelExpression3Is($this); + oavr_Recognizer_setState($this, 1397); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 124, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1390); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 1392); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) { + oavr_Recognizer_setState($this, 1391); + oavr_Parser_match($this, 44); + } + oavr_Recognizer_setState($this, 1394); + oncipv_Cypher25Parser_labelExpression3Is($this); + } + oavr_Recognizer_setState($this, 1399); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 124, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_LTrim$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$14, $x$16, $x$10, $x$15, $x$17, $x$19, $x$21, $x$23; - var$1 = new oncief_LTrim$; - oncief_LTrim$_$callClinit(); - oncief_Function__init_(var$1); - oncief_LTrim$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); - var$4 = var$3.data; - $x$1 = oncief_LTrim$_MODULE$; - $x$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - $x$14 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5777)); - $x$16 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$14, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5778), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$16); - $x$14 = oncief_LTrim$_MODULE$; - $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1141), $rt_s(5442)]))); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 2); - var$11 = var$8.data; - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$11[1] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$16 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); - $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$3 = s_Predef$_Map(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 2); - var$11 = var$8.data; - var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5779)); - var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5442), $rt_s(5780)); - $x$6 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$23 = s_None$_MODULE$; - var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5781), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$6); - oncief_LTrim$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_labelExpression3 = $this => { + let $_localctx, $_alt, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpression3Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 158, 79); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1400); + oncipv_Cypher25Parser_labelExpression2($this); + oavr_Recognizer_setState($this, 1405); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 125, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1401); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 44 && $_la != 140) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1402); + oncipv_Cypher25Parser_labelExpression2($this); + } + oavr_Recognizer_setState($this, 1407); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 125, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_LTrim$_name = $this => { - return $rt_s(5782); +oncipv_Cypher25Parser_labelExpression3Is = $this => { + let $_localctx, $_alt, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpression3IsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 160, 80); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1408); + oncipv_Cypher25Parser_labelExpression2Is($this); + oavr_Recognizer_setState($this, 1413); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 126, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1409); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 44 && $_la != 140) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1410); + oncipv_Cypher25Parser_labelExpression2Is($this); + } + oavr_Recognizer_setState($this, 1415); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 126, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_LTrim$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_labelExpression2 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpression2Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 162, 81); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1419); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 141) { + oavr_Recognizer_setState($this, 1416); + oavr_Parser_match($this, 141); + oavr_Recognizer_setState($this, 1421); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 1422); + oncipv_Cypher25Parser_labelExpression1($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_LTrim$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_labelExpression2Is = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpression2IsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 164, 82); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1427); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 141) { + oavr_Recognizer_setState($this, 1424); + oavr_Parser_match($this, 141); + oavr_Recognizer_setState($this, 1429); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 1430); + oncipv_Cypher25Parser_labelExpression1Is($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_LTrim$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_labelExpression1 = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpression1Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 166, 83); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1439); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$LabelNameContext; + var$2 = $re; + oncipv_Cypher25Parser$LabelNameContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1438); + oncipv_Cypher25Parser_symbolicNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 152: + case 157: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + case 76: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$DynamicLabelContext; + var$2 = $re; + oncipv_Cypher25Parser$DynamicLabelContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1437); + oncipv_Cypher25Parser_dynamicAnyAllExpression($this); + break e; + case 151: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext; + var$2 = $re; + oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1432); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1433); + oncipv_Cypher25Parser_labelExpression4($this); + oavr_Recognizer_setState($this, 1434); + oavr_Parser_match($this, 233); + break e; + case 158: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$AnyLabelContext; + var$2 = $re; + oncipv_Cypher25Parser$AnyLabelContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1436); + oavr_Parser_match($this, 158); + break e; + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_LTrim$_hashCode = $this => { - return 72802958; +oncipv_Cypher25Parser_labelExpression1Is = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelExpression1IsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 168, 84); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1448); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 176: + case 177: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$LabelNameIsContext; + var$2 = $re; + oncipv_Cypher25Parser$LabelNameIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1447); + oncipv_Cypher25Parser_symbolicLabelNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 152: + case 157: + case 159: + case 160: + case 164: + case 165: + case 166: + case 167: + case 174: + case 175: + case 178: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + case 277: + break; + case 76: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$DynamicLabelIsContext; + var$2 = $re; + oncipv_Cypher25Parser$DynamicLabelIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1446); + oncipv_Cypher25Parser_dynamicAnyAllExpression($this); + break e; + case 151: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext; + var$2 = $re; + oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1441); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1442); + oncipv_Cypher25Parser_labelExpression4Is($this); + oavr_Recognizer_setState($this, 1443); + oavr_Parser_match($this, 233); + break e; + case 158: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$AnyLabelIsContext; + var$2 = $re; + oncipv_Cypher25Parser$AnyLabelIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1445); + oavr_Parser_match($this, 158); + break e; + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_LTrim$_toString = $this => { - return $rt_s(5783); +oncipv_Cypher25Parser_insertNodeLabelExpression = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$InsertNodeLabelExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 170, 85); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1450); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 44 && $_la != 135) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1451); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1456); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 44 && $_la != 140)) { + oavr_Recognizer_setState($this, 1452); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 44 && $_la != 140) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1453); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1458); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_LTrim$_signatures0 = $this => { - oncief_LTrim$_$callClinit(); - return oncief_LTrim$_signatures; +oncipv_Cypher25Parser_insertRelationshipLabelExpression = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 172, 86); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1459); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 44 && $_la != 135) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1460); + oncipv_Cypher25Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Max$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_Max$_MODULE$ = null, -oncief_Max$_signatures = null, -oncief_Max$_$callClinit = () => { - oncief_Max$_$callClinit = $rt_eraseClinit(oncief_Max$); - oncief_Max$__clinit_(); +oncipv_Cypher25Parser_expression = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 174, 87); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1462); + oncipv_Cypher25Parser_expression11($this); + oavr_Recognizer_setState($this, 1467); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 186) { + oavr_Recognizer_setState($this, 1463); + oavr_Parser_match($this, 186); + oavr_Recognizer_setState($this, 1464); + oncipv_Cypher25Parser_expression11($this); + oavr_Recognizer_setState($this, 1469); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Max$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Max$; - oncief_Max$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Max$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Max$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5686)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5784), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Max$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_expression11 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression11Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 176, 88); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1470); + oncipv_Cypher25Parser_expression10($this); + oavr_Recognizer_setState($this, 1475); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 298) { + oavr_Recognizer_setState($this, 1471); + oavr_Parser_match($this, 298); + oavr_Recognizer_setState($this, 1472); + oncipv_Cypher25Parser_expression10($this); + oavr_Recognizer_setState($this, 1477); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Max$_name = $this => { - return $rt_s(5785); +oncipv_Cypher25Parser_expression10 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression10Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 178, 89); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1478); + oncipv_Cypher25Parser_expression9($this); + oavr_Recognizer_setState($this, 1483); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 20) { + oavr_Recognizer_setState($this, 1479); + oavr_Parser_match($this, 20); + oavr_Recognizer_setState($this, 1480); + oncipv_Cypher25Parser_expression9($this); + oavr_Recognizer_setState($this, 1485); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Max$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_expression9 = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression9Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 180, 90); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1489); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 135, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1486); + oavr_Parser_match($this, 175); + } + oavr_Recognizer_setState($this, 1491); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 135, $this.$_ctx); + } + oavr_Recognizer_setState($this, 1492); + oncipv_Cypher25Parser_expression8($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Max$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_expression8 = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression8Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 182, 91); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1494); + oncipv_Cypher25Parser_expression7($this); + oavr_Recognizer_setState($this, 1499); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + var$3 = $_la - 96 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17039361, 2164326400)), Long_ZERO)) && $_la != 160) + break; + oavr_Recognizer_setState($this, 1495); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$3 = $_la - 96 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17039361, 2164326400)), Long_ZERO)) && $_la != 160) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1496); + oncipv_Cypher25Parser_expression7($this); + oavr_Recognizer_setState($this, 1501); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Max$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_expression7 = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression7Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 184, 92); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1502); + oncipv_Cypher25Parser_expression6($this); + oavr_Recognizer_setState($this, 1504); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 45 && $_la != 53) { + var$3 = $_la - 95 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1, 257)), Long_ZERO)) && $_la != 216 && $_la != 254) + break e; + } + oavr_Recognizer_setState($this, 1503); + oncipv_Cypher25Parser_comparisonExpression6($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Max$_hashCode = $this => { - return 77124; +oncipv_Cypher25Parser_comparisonExpression6 = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher25Parser$ComparisonExpression6Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 186, 93); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1538); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 144, $this.$_ctx)) { + case 1: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$StringAndListComparisonContext; + var$2 = $re; + oncipv_Cypher25Parser$StringAndListComparisonContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1513); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 53: + var$2 = $re; + oavr_Recognizer_setState($this, 1511); + oavr_Parser_match($this, 53); + break f; + case 95: + var$2 = $re; + oavr_Recognizer_setState($this, 1509); + oavr_Parser_match($this, 95); + oavr_Recognizer_setState($this, 1510); + oavr_Parser_match($this, 295); + break f; + case 127: + var$2 = $re; + oavr_Recognizer_setState($this, 1512); + oavr_Parser_match($this, 127); + break f; + case 216: + var$2 = $re; + oavr_Recognizer_setState($this, 1506); + oavr_Parser_match($this, 216); + break f; + case 254: + var$2 = $re; + oavr_Recognizer_setState($this, 1507); + oavr_Parser_match($this, 254); + oavr_Recognizer_setState($this, 1508); + oavr_Parser_match($this, 295); + break f; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1515); + oncipv_Cypher25Parser_expression6($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$NullComparisonContext; + var$2 = $re; + oncipv_Cypher25Parser$NullComparisonContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1516); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 1518); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { + var$2 = $re; + oavr_Recognizer_setState($this, 1517); + oavr_Parser_match($this, 175); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1520); + oavr_Parser_match($this, 178); + break e; + case 3: + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$TypeComparisonContext; + var$2 = $re; + oncipv_Cypher25Parser$TypeComparisonContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1527); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 45: + var$2 = $re; + oavr_Recognizer_setState($this, 1526); + oavr_Parser_match($this, 45); + break g; + case 135: + var$2 = $re; + oavr_Recognizer_setState($this, 1521); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 1523); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { + var$2 = $re; + oavr_Recognizer_setState($this, 1522); + oavr_Parser_match($this, 175); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1525); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 45) { + var$2 = $re; + if ($_la != 277) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break g; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break g; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1529); + oncipv_Cypher25Parser_type($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$NormalFormComparisonContext; + var$2 = $re; + oncipv_Cypher25Parser$NormalFormComparisonContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1530); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 1532); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { + var$2 = $re; + oavr_Recognizer_setState($this, 1531); + oavr_Parser_match($this, 175); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1535); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 164 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 1534); + oncipv_Cypher25Parser_normalForm($this); + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 1537); + oavr_Parser_match($this, 174); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Max$_toString = $this => { - return $rt_s(5786); +oncipv_Cypher25Parser_normalForm = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NormalFormContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 188, 94); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1540); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 164 | 0; + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else + $this.$_errHandler.$recoverInline($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Max$_signatures0 = $this => { - oncief_Max$_$callClinit(); - return oncief_Max$_signatures; +oncipv_Cypher25Parser_expression6 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression6Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 190, 95); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1542); + oncipv_Cypher25Parser_expression5($this); + oavr_Recognizer_setState($this, 1547); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 81 && $_la != 157 && $_la != 193)) { + oavr_Recognizer_setState($this, 1543); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 81 && $_la != 157 && $_la != 193) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1544); + oncipv_Cypher25Parser_expression5($this); + oavr_Recognizer_setState($this, 1549); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Min$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_Min$_MODULE$ = null, -oncief_Min$_signatures = null, -oncief_Min$_$callClinit = () => { - oncief_Min$_$callClinit = $rt_eraseClinit(oncief_Min$); - oncief_Min$__clinit_(); +oncipv_Cypher25Parser_expression5 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression5Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 192, 96); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1550); + oncipv_Cypher25Parser_expression4($this); + oavr_Recognizer_setState($this, 1555); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 78 && $_la != 158 && $_la != 265)) { + oavr_Recognizer_setState($this, 1551); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 78 && $_la != 158 && $_la != 265) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1552); + oncipv_Cypher25Parser_expression4($this); + oavr_Recognizer_setState($this, 1557); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Min$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Min$; - oncief_Min$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Min$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Min$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5686)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5787), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Min$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_expression4 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression4Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 194, 97); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1558); + oncipv_Cypher25Parser_expression3($this); + oavr_Recognizer_setState($this, 1563); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 197) { + oavr_Recognizer_setState($this, 1559); + oavr_Parser_match($this, 197); + oavr_Recognizer_setState($this, 1560); + oncipv_Cypher25Parser_expression3($this); + oavr_Recognizer_setState($this, 1565); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Min$_name = $this => { - return $rt_s(5788); +oncipv_Cypher25Parser_expression3 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression3Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 196, 98); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1569); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 148, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1567); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 157 && $_la != 193) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1568); + oncipv_Cypher25Parser_expression2($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1566); + oncipv_Cypher25Parser_expression2($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Min$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_expression2 = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression2Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 198, 99); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1571); + oncipv_Cypher25Parser_expression1($this); + oavr_Recognizer_setState($this, 1575); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 149, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1572); + oncipv_Cypher25Parser_postFix($this); + } + oavr_Recognizer_setState($this, 1577); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 149, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Min$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_postFix = $this => { + let $_localctx, var$2, $re, $_la, var$5, $$je; + $_localctx = new oncipv_Cypher25Parser$PostFixContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 200, 100); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1593); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 152, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$PropertyPostfixContext; + var$2 = $re; + oncipv_Cypher25Parser$PropertyPostfixContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1578); + oncipv_Cypher25Parser_property($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$LabelPostfixContext; + var$2 = $re; + oncipv_Cypher25Parser$LabelPostfixContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1579); + oncipv_Cypher25Parser_labelExpression($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$IndexPostfixContext; + var$2 = $re; + oncipv_Cypher25Parser$IndexPostfixContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1580); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 1581); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1582); + oavr_Parser_match($this, 210); + break e; + case 4: + f: { + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$RangePostfixContext; + var$2 = $re; + oncipv_Cypher25Parser$RangePostfixContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1584); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 1586); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO)) + break g; + } + var$2 = $re; + var$5 = $_la - 64 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4294721535, 4277927934)), Long_ZERO)) + break g; + } + var$2 = $re; + var$5 = $_la - 128 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(1056886783, 4294967294)), Long_ZERO)) + break g; + } + var$2 = $re; + var$5 = $_la - 192 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4277338075, 4294835711)), Long_ZERO)) + break g; + } + var$2 = $re; + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break f; + var$2 = $re; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break f; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1585); + $re.$fromExp = oncipv_Cypher25Parser_expression($this); + } + h: { + i: { + var$2 = $re; + oavr_Recognizer_setState($this, 1588); + oavr_Parser_match($this, 80); + oavr_Recognizer_setState($this, 1590); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO)) + break i; + } + var$2 = $re; + var$5 = $_la - 64 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4294721535, 4277927934)), Long_ZERO)) + break i; + } + var$2 = $re; + var$5 = $_la - 128 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(1056886783, 4294967294)), Long_ZERO)) + break i; + } + var$2 = $re; + var$5 = $_la - 192 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4277338075, 4294835711)), Long_ZERO)) + break i; + } + var$2 = $re; + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break h; + var$2 = $re; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break h; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1589); + $re.$toExp = oncipv_Cypher25Parser_expression($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1592); + oavr_Parser_match($this, 210); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Min$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_property = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PropertyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 202, 101); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1595); + oavr_Parser_match($this, 79); + oavr_Recognizer_setState($this, 1596); + oncipv_Cypher25Parser_propertyKeyName($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Min$_hashCode = $this => { - return 77362; +oncipv_Cypher25Parser_dynamicProperty = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DynamicPropertyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 204, 102); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1598); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 1599); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1600); + oavr_Parser_match($this, 210); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Min$_toString = $this => { - return $rt_s(5789); +oncipv_Cypher25Parser_propertyExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PropertyExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 206, 103); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1602); + oncipv_Cypher25Parser_expression1($this); + oavr_Recognizer_setState($this, 1604); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 1603); + oncipv_Cypher25Parser_property($this); + oavr_Recognizer_setState($this, 1606); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 79) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Min$_signatures0 = $this => { - oncief_Min$_$callClinit(); - return oncief_Min$_signatures; +oncipv_Cypher25Parser_dynamicPropertyExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DynamicPropertyExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 208, 104); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1608); + oncipv_Cypher25Parser_expression1($this); + oavr_Recognizer_setState($this, 1609); + oncipv_Cypher25Parser_dynamicProperty($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Nodes$ = $rt_classWithoutFields(oncief_Function), -oncief_Nodes$_MODULE$ = null; -let oncief_Nodes$_signatures = null, -oncief_Nodes$_$callClinit = () => { - oncief_Nodes$_$callClinit = $rt_eraseClinit(oncief_Nodes$); - oncief_Nodes$__clinit_(); +oncipv_Cypher25Parser_expression1 = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$Expression1Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 210, 105); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1632); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 154, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1612); + oncipv_Cypher25Parser_parameter($this, $rt_s(708)); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1613); + oncipv_Cypher25Parser_caseExpression($this); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 1614); + oncipv_Cypher25Parser_extendedCaseExpression($this); + break e; + case 5: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 1615); + oncipv_Cypher25Parser_countStar($this); + break e; + case 6: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 1616); + oncipv_Cypher25Parser_existsExpression($this); + break e; + case 7: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 1617); + oncipv_Cypher25Parser_countExpression($this); + break e; + case 8: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 1618); + oncipv_Cypher25Parser_collectExpression($this); + break e; + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 1619); + oncipv_Cypher25Parser_mapProjection($this); + break e; + case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 10); + oavr_Recognizer_setState($this, 1620); + oncipv_Cypher25Parser_listComprehension($this); + break e; + case 11: + oavr_Parser_enterOuterAlt($this, $_localctx, 11); + oavr_Recognizer_setState($this, 1621); + oncipv_Cypher25Parser_listLiteral($this); + break e; + case 12: + oavr_Parser_enterOuterAlt($this, $_localctx, 12); + oavr_Recognizer_setState($this, 1622); + oncipv_Cypher25Parser_patternComprehension($this); + break e; + case 13: + oavr_Parser_enterOuterAlt($this, $_localctx, 13); + oavr_Recognizer_setState($this, 1623); + oncipv_Cypher25Parser_reduceExpression($this); + break e; + case 14: + oavr_Parser_enterOuterAlt($this, $_localctx, 14); + oavr_Recognizer_setState($this, 1624); + oncipv_Cypher25Parser_listItemsPredicate($this); + break e; + case 15: + oavr_Parser_enterOuterAlt($this, $_localctx, 15); + oavr_Recognizer_setState($this, 1625); + oncipv_Cypher25Parser_normalizeFunction($this); + break e; + case 16: + oavr_Parser_enterOuterAlt($this, $_localctx, 16); + oavr_Recognizer_setState($this, 1626); + oncipv_Cypher25Parser_trimFunction($this); + break e; + case 17: + oavr_Parser_enterOuterAlt($this, $_localctx, 17); + oavr_Recognizer_setState($this, 1627); + oncipv_Cypher25Parser_patternExpression($this); + break e; + case 18: + oavr_Parser_enterOuterAlt($this, $_localctx, 18); + oavr_Recognizer_setState($this, 1628); + oncipv_Cypher25Parser_shortestPathExpression($this); + break e; + case 19: + oavr_Parser_enterOuterAlt($this, $_localctx, 19); + oavr_Recognizer_setState($this, 1629); + oncipv_Cypher25Parser_parenthesizedExpression($this); + break e; + case 20: + oavr_Parser_enterOuterAlt($this, $_localctx, 20); + oavr_Recognizer_setState($this, 1630); + oncipv_Cypher25Parser_functionInvocation($this); + break e; + case 21: + oavr_Parser_enterOuterAlt($this, $_localctx, 21); + oavr_Recognizer_setState($this, 1631); + oncipv_Cypher25Parser_variable($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1611); + oncipv_Cypher25Parser_literal($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Nodes$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14; - var$1 = new oncief_Nodes$; - oncief_Nodes$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Nodes$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Nodes$_MODULE$; - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_PathType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTPath(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTNode($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$14 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(s_Tuple2, 1); - var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5790)); - var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$11)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5791), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Nodes$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_literal = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 212, 106); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1643); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 4: + case 5: + case 6: + case 7: + case 157: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$NummericLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$NummericLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1634); + oncipv_Cypher25Parser_numberLiteral($this); + break e; + case 8: + case 9: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$StringsLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$StringsLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1635); + oncipv_Cypher25Parser_stringLiteral($this); + break e; + case 104: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$BooleanLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$BooleanLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 1638); + oavr_Parser_match($this, 104); + break e; + case 130: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$KeywordLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$KeywordLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 1639); + oavr_Parser_match($this, 130); + break e; + case 131: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$KeywordLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$KeywordLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 7); + oavr_Recognizer_setState($this, 1640); + oavr_Parser_match($this, 131); + break e; + case 143: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$OtherLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$OtherLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1636); + oncipv_Cypher25Parser_map($this); + break e; + case 163: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$KeywordLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$KeywordLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 8); + oavr_Recognizer_setState($this, 1641); + oavr_Parser_match($this, 163); + break e; + case 178: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$KeywordLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$KeywordLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 9); + oavr_Recognizer_setState($this, 1642); + oavr_Parser_match($this, 178); + break e; + case 275: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$BooleanLiteralContext; + var$2 = $re; + oncipv_Cypher25Parser$BooleanLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1637); + oavr_Parser_match($this, 275); + break e; + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Nodes$_name = $this => { - return $rt_s(5792); +oncipv_Cypher25Parser_caseExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CaseExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 214, 107); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1645); + oavr_Parser_match($this, 40); + oavr_Recognizer_setState($this, 1647); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 1646); + oncipv_Cypher25Parser_caseAlternative($this); + oavr_Recognizer_setState($this, 1649); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 293) + continue; + else + break; + } + oavr_Recognizer_setState($this, 1653); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 92) { + oavr_Recognizer_setState($this, 1651); + oavr_Parser_match($this, 92); + oavr_Recognizer_setState($this, 1652); + oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1655); + oavr_Parser_match($this, 94); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Nodes$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_caseAlternative = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CaseAlternativeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 216, 108); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1657); + oavr_Parser_match($this, 293); + oavr_Recognizer_setState($this, 1658); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1659); + oavr_Parser_match($this, 263); + oavr_Recognizer_setState($this, 1660); + oncipv_Cypher25Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Nodes$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_extendedCaseExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ExtendedCaseExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 218, 109); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1662); + oavr_Parser_match($this, 40); + oavr_Recognizer_setState($this, 1663); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1665); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 1664); + oncipv_Cypher25Parser_extendedCaseAlternative($this); + oavr_Recognizer_setState($this, 1667); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 293) + continue; + else + break; + } + oavr_Recognizer_setState($this, 1671); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 92) { + oavr_Recognizer_setState($this, 1669); + oavr_Parser_match($this, 92); + oavr_Recognizer_setState($this, 1670); + $_localctx.$elseExp0 = oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1673); + oavr_Parser_match($this, 94); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Nodes$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_extendedCaseAlternative = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ExtendedCaseAlternativeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 220, 110); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1675); + oavr_Parser_match($this, 293); + oavr_Recognizer_setState($this, 1676); + oncipv_Cypher25Parser_extendedWhen($this); + oavr_Recognizer_setState($this, 1681); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 1677); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1678); + oncipv_Cypher25Parser_extendedWhen($this); + oavr_Recognizer_setState($this, 1683); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 1684); + oavr_Parser_match($this, 263); + oavr_Recognizer_setState($this, 1685); + oncipv_Cypher25Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Nodes$_hashCode = $this => { - return 75440785; +oncipv_Cypher25Parser_extendedWhen = $this => { + let $_localctx, var$2, $re, $_la, var$5, $$je; + $_localctx = new oncipv_Cypher25Parser$ExtendedWhenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 222, 111); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1720); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 167, $this.$_ctx)) { + case 1: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$WhenStringOrListContext; + var$2 = $re; + oncipv_Cypher25Parser$WhenStringOrListContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1692); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 95: + var$2 = $re; + oavr_Recognizer_setState($this, 1690); + oavr_Parser_match($this, 95); + oavr_Recognizer_setState($this, 1691); + oavr_Parser_match($this, 295); + break f; + case 216: + var$2 = $re; + oavr_Recognizer_setState($this, 1687); + oavr_Parser_match($this, 216); + break f; + case 254: + var$2 = $re; + oavr_Recognizer_setState($this, 1688); + oavr_Parser_match($this, 254); + oavr_Recognizer_setState($this, 1689); + oavr_Parser_match($this, 295); + break f; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1694); + oncipv_Cypher25Parser_expression6($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$WhenNullContext; + var$2 = $re; + oncipv_Cypher25Parser$WhenNullContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1695); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 1697); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { + var$2 = $re; + oavr_Recognizer_setState($this, 1696); + oavr_Parser_match($this, 175); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1699); + oavr_Parser_match($this, 178); + break e; + case 3: + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$WhenTypeContext; + var$2 = $re; + oncipv_Cypher25Parser$WhenTypeContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1706); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 45: + var$2 = $re; + oavr_Recognizer_setState($this, 1705); + oavr_Parser_match($this, 45); + break g; + case 135: + var$2 = $re; + oavr_Recognizer_setState($this, 1700); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 1702); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { + var$2 = $re; + oavr_Recognizer_setState($this, 1701); + oavr_Parser_match($this, 175); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1704); + oavr_Parser_match($this, 277); + break g; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1708); + oncipv_Cypher25Parser_type($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$WhenFormContext; + var$2 = $re; + oncipv_Cypher25Parser$WhenFormContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1709); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 1711); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { + var$2 = $re; + oavr_Recognizer_setState($this, 1710); + oavr_Parser_match($this, 175); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1714); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 164 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 1713); + oncipv_Cypher25Parser_normalForm($this); + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 1716); + oavr_Parser_match($this, 174); + break e; + case 5: + h: { + i: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$WhenComparatorContext; + var$2 = $re; + oncipv_Cypher25Parser$WhenComparatorContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 1717); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$5 = $_la - 96 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(17039361, 2164326400)), Long_ZERO)) + break i; + } + var$2 = $re; + if ($_la != 160) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break h; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1718); + oncipv_Cypher25Parser_expression7($this); + break e; + case 6: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$WhenEqualsContext; + var$2 = $re; + oncipv_Cypher25Parser$WhenEqualsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 1719); + oncipv_Cypher25Parser_expression($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Nodes$_toString = $this => { - return $rt_s(5793); +oncipv_Cypher25Parser_listComprehension = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ListComprehensionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 224, 112); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1722); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 1723); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1724); + oavr_Parser_match($this, 127); + oavr_Recognizer_setState($this, 1725); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1736); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 170, $this.$_ctx)) { + case 1: + break f; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1734); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 294) + break e; + oavr_Recognizer_setState($this, 1732); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 1733); + $_localctx.$whereExp = oncipv_Cypher25Parser_expression($this); + break e; + } + oavr_Recognizer_setState($this, 1728); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 1726); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 1727); + $_localctx.$whereExp = oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1730); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 1731); + $_localctx.$barExp = oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1738); + oavr_Parser_match($this, 210); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Nodes$_signatures0 = $this => { - oncief_Nodes$_$callClinit(); - return oncief_Nodes$_signatures; +oncipv_Cypher25Parser_patternComprehension = $this => { + let $_localctx, $_la, var$3, var$4, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PatternComprehensionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 226, 113); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1740); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 1744); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758095360, 4294938623)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294717439, 4277927934)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294967294)), Long_ZERO))) { + var$4 = $_la - 192 | 0; + if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(4277338073, 4294835711)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 1741); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1742); + oavr_Parser_match($this, 96); + } + oavr_Recognizer_setState($this, 1746); + oncipv_Cypher25Parser_pathPatternNonEmpty($this); + oavr_Recognizer_setState($this, 1749); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 1747); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 1748); + $_localctx.$whereExp1 = oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1751); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 1752); + $_localctx.$barExp0 = oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1753); + oavr_Parser_match($this, 210); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$ = $rt_classWithoutFields(oncief_Function), -oncief_Pi$_MODULE$ = null, -oncief_Pi$_signatures = null, -oncief_Pi$_$callClinit = () => { - oncief_Pi$_$callClinit = $rt_eraseClinit(oncief_Pi$); - oncief_Pi$__clinit_(); +oncipv_Cypher25Parser_reduceExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ReduceExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 228, 114); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1755); + oavr_Parser_match($this, 214); + oavr_Recognizer_setState($this, 1756); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1757); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1758); + oavr_Parser_match($this, 96); + oavr_Recognizer_setState($this, 1759); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1760); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1761); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1762); + oavr_Parser_match($this, 127); + oavr_Recognizer_setState($this, 1763); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1764); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 1765); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1766); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new oncief_Pi$; - oncief_Pi$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Pi$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - oncie_FunctionTypeSignature$_$callClinit(); - var$5 = oncie_FunctionTypeSignature$_MODULE$; - var$6 = oncief_Pi$_MODULE$; - oncius_package$_$callClinit(); - var$7 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(5794), oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$)); - oncief_Pi$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_listItemsPredicate = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ListItemsPredicateContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 230, 115); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1768); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 21 && $_la != 172 && $_la != 251) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1769); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1770); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1771); + oavr_Parser_match($this, 127); + oavr_Recognizer_setState($this, 1772); + $_localctx.$inExp0 = oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1775); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 1773); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 1774); + $_localctx.$whereExp4 = oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1777); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$_name = $this => { - return $rt_s(5795); +oncipv_Cypher25Parser_normalizeFunction = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NormalizeFunctionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 232, 116); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1779); + oavr_Parser_match($this, 173); + oavr_Recognizer_setState($this, 1780); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1781); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1784); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 46) { + oavr_Recognizer_setState($this, 1782); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1783); + oncipv_Cypher25Parser_normalForm($this); + } + oavr_Recognizer_setState($this, 1786); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_trimFunction = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$TrimFunctionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 234, 117); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1788); + oavr_Parser_match($this, 274); + oavr_Recognizer_setState($this, 1789); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1797); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 177, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + f: { + oavr_Recognizer_setState($this, 1791); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 175, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1790); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 34 && $_la != 145 && $_la != 270) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + g: { + oavr_Recognizer_setState($this, 1794); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 176, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 1793); + $_localctx.$trimCharacterString = oncipv_Cypher25Parser_expression($this); + } + oavr_Recognizer_setState($this, 1796); + oavr_Parser_match($this, 110); + } + oavr_Recognizer_setState($this, 1799); + $_localctx.$trimSource0 = oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1800); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_patternExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PatternExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 236, 118); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1802); + oncipv_Cypher25Parser_pathPatternNonEmpty($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_shortestPathExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShortestPathExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 238, 119); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1804); + oncipv_Cypher25Parser_shortestPathPattern($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$_hashCode = $this => { - return 2585; +oncipv_Cypher25Parser_parenthesizedExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ParenthesizedExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 240, 120); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1806); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1807); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1808); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$_toString = $this => { - return $rt_s(381); +oncipv_Cypher25Parser_mapProjection = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$MapProjectionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 242, 121); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1810); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 1811); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 1820); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758095360, 4294938623)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294750207, 4277927934)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294967294)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338073, 4294835711)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 1812); + oncipv_Cypher25Parser_mapProjectionElement($this); + oavr_Recognizer_setState($this, 1817); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 46) + break e; + oavr_Recognizer_setState($this, 1813); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1814); + oncipv_Cypher25Parser_mapProjectionElement($this); + oavr_Recognizer_setState($this, 1819); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1822); + oavr_Parser_match($this, 211); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher25Parser_mapProjectionElement = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$MapProjectionElementContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 244, 122); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1832); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 180, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1824); + oncipv_Cypher25Parser_propertyKeyName($this); + oavr_Recognizer_setState($this, 1825); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 1826); + oncipv_Cypher25Parser_expression($this); + break e; + case 2: + break; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1829); + oncipv_Cypher25Parser_variable($this); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 1830); + oavr_Parser_match($this, 79); + oavr_Recognizer_setState($this, 1831); + oavr_Parser_match($this, 265); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1828); + oncipv_Cypher25Parser_property($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Pi$_signatures0 = $this => { - oncief_Pi$_$callClinit(); - return oncief_Pi$_signatures; +oncipv_Cypher25Parser_countStar = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CountStarContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 246, 123); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1834); + oavr_Parser_match($this, 56); + oavr_Recognizer_setState($this, 1835); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1836); + oavr_Parser_match($this, 265); + oavr_Recognizer_setState($this, 1837); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_PercentileCont$_MODULE$ = null, -oncief_PercentileCont$_signatures = null, -oncief_PercentileCont$_$callClinit = () => { - oncief_PercentileCont$_$callClinit = $rt_eraseClinit(oncief_PercentileCont$); - oncief_PercentileCont$__clinit_(); +oncipv_Cypher25Parser_existsExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ExistsExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 248, 124); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1839); + oavr_Parser_match($this, 101); + oavr_Recognizer_setState($this, 1840); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 1849); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 183, $this.$_ctx)) { + case 1: + break; + case 2: + f: { + oavr_Recognizer_setState($this, 1843); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 181, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1842); + oncipv_Cypher25Parser_matchMode($this); + } + oavr_Recognizer_setState($this, 1845); + oncipv_Cypher25Parser_patternList($this); + oavr_Recognizer_setState($this, 1847); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 294) + break e; + oavr_Recognizer_setState($this, 1846); + oncipv_Cypher25Parser_whereClause($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 1841); + oncipv_Cypher25Parser_regularQuery($this); + } + oavr_Recognizer_setState($this, 1851); + oavr_Parser_match($this, 211); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; - var$1 = new oncief_PercentileCont$; - oncief_PercentileCont$_$callClinit(); - oncief_Function__init_(var$1); - oncief_PercentileCont$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_PercentileCont$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1141), $rt_s(5796)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_FloatType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$7 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5686)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5796), $rt_s(5797)); - var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5798), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); - oncief_PercentileCont$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_countExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CountExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 250, 125); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1853); + oavr_Parser_match($this, 56); + oavr_Recognizer_setState($this, 1854); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 1863); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 186, $this.$_ctx)) { + case 1: + break; + case 2: + f: { + oavr_Recognizer_setState($this, 1857); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 184, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1856); + oncipv_Cypher25Parser_matchMode($this); + } + oavr_Recognizer_setState($this, 1859); + oncipv_Cypher25Parser_patternList($this); + oavr_Recognizer_setState($this, 1861); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 294) + break e; + oavr_Recognizer_setState($this, 1860); + oncipv_Cypher25Parser_whereClause($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 1855); + oncipv_Cypher25Parser_regularQuery($this); + } + oavr_Recognizer_setState($this, 1865); + oavr_Parser_match($this, 211); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$_name = $this => { - return $rt_s(5799); +oncipv_Cypher25Parser_collectExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CollectExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 252, 126); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1867); + oavr_Parser_match($this, 43); + oavr_Recognizer_setState($this, 1868); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 1869); + oncipv_Cypher25Parser_regularQuery($this); + oavr_Recognizer_setState($this, 1870); + oavr_Parser_match($this, 211); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_numberLiteral = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NumberLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 254, 127); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1873); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 157) { + oavr_Recognizer_setState($this, 1872); + oavr_Parser_match($this, 157); + } + oavr_Recognizer_setState($this, 1875); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(240)), Long_ZERO)) { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else + $this.$_errHandler.$recoverInline($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_signedIntegerLiteral = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SignedIntegerLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 256, 128); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1878); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 157) { + oavr_Recognizer_setState($this, 1877); + oavr_Parser_match($this, 157); + } + oavr_Recognizer_setState($this, 1880); + oavr_Parser_match($this, 5); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_listLiteral = $this => { + let $_localctx, $_la, var$3, var$4, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ListLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 258, 129); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1882); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 1891); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294721535, 4277927934)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1056886783, 4294967294)), Long_ZERO))) { + var$4 = $_la - 192 | 0; + if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(4277338075, 4294835711)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 1883); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1888); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 46) + break e; + oavr_Recognizer_setState($this, 1884); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1885); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 1890); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1893); + oavr_Parser_match($this, 210); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$_hashCode = $this => { - return 1231034927; +oncipv_Cypher25Parser_propertyKeyName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PropertyKeyNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 260, 130); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1895); + oncipv_Cypher25Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$_toString = $this => { - return $rt_s(5800); +oncipv_Cypher25Parser_parameter = ($this, $paramType) => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ParameterContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + $_localctx.$paramType1 = $paramType; + oavr_Parser_enterRule($this, $_localctx, 262, 131); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1897); + oavr_Parser_match($this, 76); + oavr_Recognizer_setState($this, 1898); + oncipv_Cypher25Parser_parameterName($this, $paramType); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $paramType = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $paramType = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($paramType); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileCont$_signatures0 = $this => { - oncief_PercentileCont$_$callClinit(); - return oncief_PercentileCont$_signatures; +oncipv_Cypher25Parser_parameterName = ($this, $paramType) => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ParameterNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + $_localctx.$paramType = $paramType; + oavr_Parser_enterRule($this, $_localctx, 264, 132); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1904); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 5: + oavr_Recognizer_setState($this, 1901); + oavr_Parser_match($this, 5); + break e; + case 6: + case 8: + case 9: + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + case 7: + oavr_Recognizer_setState($this, 1902); + oavr_Parser_match($this, 7); + break e; + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 1900); + oncipv_Cypher25Parser_symbolicNameString($this); + break e; + case 303: + oavr_Recognizer_setState($this, 1903); + oavr_Parser_match($this, 303); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $paramType = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $paramType = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($paramType); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_PercentileDisc$_MODULE$ = null, -oncief_PercentileDisc$_signatures = null, -oncief_PercentileDisc$_$callClinit = () => { - oncief_PercentileDisc$_$callClinit = $rt_eraseClinit(oncief_PercentileDisc$); - oncief_PercentileDisc$__clinit_(); +oncipv_Cypher25Parser_functionInvocation = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$FunctionInvocationContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 266, 133); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1906); + oncipv_Cypher25Parser_functionName($this); + oavr_Recognizer_setState($this, 1907); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 1909); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 192, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1908); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 77) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + f: { + oavr_Recognizer_setState($this, 1919); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294721535, 4277927934)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1056886783, 4294967294)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338075, 4294835711)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break f; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break f; + } + } + } + } + oavr_Recognizer_setState($this, 1911); + oncipv_Cypher25Parser_functionArgument($this); + oavr_Recognizer_setState($this, 1916); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 46) + break f; + oavr_Recognizer_setState($this, 1912); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1913); + oncipv_Cypher25Parser_functionArgument($this); + oavr_Recognizer_setState($this, 1918); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1921); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$8, var$8, var$9, var$10, var$11, $x$3, var$13, var$14, var$15, $x$4, $x$6, $x$10; - var$1 = new oncief_PercentileDisc$; - oncief_PercentileDisc$_$callClinit(); - oncief_Function__init_(var$1); - oncief_PercentileDisc$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_PercentileDisc$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1141), $rt_s(5796)]))); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - var$11 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$3 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$13 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_(var$11, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$10[0] = var$11; - var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)); - $x$4 = new oncius_ClosedDynamicUnionType; - $x$8 = s_Predef$_Set(s_Predef$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$10 = $rt_createArray(oncius_CypherType, 2); - var$9 = var$10.data; - var$9[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$9[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncius_ClosedDynamicUnionType__init_($x$4, $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$10)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$11 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5686)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5796), $rt_s(5797)); - var$11 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$11, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5801), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$11); - oncief_PercentileDisc$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_functionArgument = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$FunctionArgumentContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 268, 134); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1923); + oncipv_Cypher25Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$_name = $this => { - return $rt_s(5802); +oncipv_Cypher25Parser_functionName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$FunctionNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 270, 135); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1925); + oncipv_Cypher25Parser_namespace($this); + oavr_Recognizer_setState($this, 1926); + oncipv_Cypher25Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_namespace = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NamespaceContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 272, 136); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1933); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 195, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1928); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1929); + oavr_Parser_match($this, 79); + } + oavr_Recognizer_setState($this, 1935); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 195, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_variable = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$VariableContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 274, 137); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1936); + oncipv_Cypher25Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_nonEmptyNameList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NonEmptyNameListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 276, 138); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1938); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1943); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 1939); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1940); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1945); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$_hashCode = $this => { - return 1231059090; +oncipv_Cypher25Parser_type = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$TypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 278, 139); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1946); + oncipv_Cypher25Parser_typePart($this); + oavr_Recognizer_setState($this, 1951); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 197, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1947); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 1948); + oncipv_Cypher25Parser_typePart($this); + } + oavr_Recognizer_setState($this, 1953); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 197, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$_toString = $this => { - return $rt_s(5803); +oncipv_Cypher25Parser_typePart = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$TypePartContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 280, 140); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1954); + oncipv_Cypher25Parser_typeName($this); + oavr_Recognizer_setState($this, 1956); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 141 && $_la != 175)) { + oavr_Recognizer_setState($this, 1955); + oncipv_Cypher25Parser_typeNullability($this); + } + oavr_Recognizer_setState($this, 1961); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 22 && $_la != 147)) { + oavr_Recognizer_setState($this, 1958); + oncipv_Cypher25Parser_typeListSuffix($this); + oavr_Recognizer_setState($this, 1963); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_PercentileDisc$_signatures0 = $this => { - oncief_PercentileDisc$_$callClinit(); - return oncief_PercentileDisc$_signatures; +oncipv_Cypher25Parser_typeName = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = oncipv_Cypher25Parser$TypeNameContext__init_($this.$_ctx, oavr_Recognizer_getState($this)); + oavr_Parser_enterRule($this, $_localctx, 282, 141); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2029); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 21: + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 26); + oavr_Recognizer_setState($this, 2011); + oavr_Parser_match($this, 21); + oavr_Recognizer_setState($this, 2027); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 204, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2013); + oavr_Parser_match($this, 291); + break f; + case 3: + oavr_Recognizer_setState($this, 2014); + oavr_Parser_match($this, 218); + break f; + case 4: + oavr_Recognizer_setState($this, 2015); + oavr_Parser_match($this, 88); + break f; + case 5: + oavr_Recognizer_setState($this, 2016); + oavr_Parser_match($this, 154); + break f; + case 6: + oavr_Recognizer_setState($this, 2017); + oavr_Parser_match($this, 205); + oavr_Recognizer_setState($this, 2018); + oavr_Parser_match($this, 288); + break f; + case 7: + oavr_Recognizer_setState($this, 2020); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 288) { + oavr_Recognizer_setState($this, 2019); + oavr_Parser_match($this, 288); + } + oavr_Recognizer_setState($this, 2022); + oavr_Parser_match($this, 152); + oavr_Recognizer_setState($this, 2023); + oncipv_Cypher25Parser_type($this); + oavr_Recognizer_setState($this, 2024); + oavr_Parser_match($this, 120); + break f; + case 8: + oavr_Recognizer_setState($this, 2026); + oavr_Parser_match($this, 288); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2012); + oavr_Parser_match($this, 169); + } + break e; + case 22: + case 147: + oavr_Parser_enterOuterAlt($this, $_localctx, 22); + oavr_Recognizer_setState($this, 2002); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 22 && $_la != 147) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2003); + oavr_Parser_match($this, 152); + oavr_Recognizer_setState($this, 2004); + oncipv_Cypher25Parser_type($this); + oavr_Recognizer_setState($this, 2005); + oavr_Parser_match($this, 120); + break e; + case 31: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1966); + oavr_Parser_match($this, 31); + break e; + case 32: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 1967); + oavr_Parser_match($this, 32); + break e; + case 63: + oavr_Parser_enterOuterAlt($this, $_localctx, 10); + oavr_Recognizer_setState($this, 1976); + oavr_Parser_match($this, 63); + break e; + case 86: + oavr_Parser_enterOuterAlt($this, $_localctx, 15); + oavr_Recognizer_setState($this, 1995); + oavr_Parser_match($this, 86); + break e; + case 88: + oavr_Parser_enterOuterAlt($this, $_localctx, 20); + oavr_Recognizer_setState($this, 2000); + oavr_Parser_match($this, 88); + break e; + case 107: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 1975); + oavr_Parser_match($this, 107); + break e; + case 133: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 1970); + oavr_Parser_match($this, 133); + break e; + case 134: + case 250: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 1972); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 250) { + oavr_Recognizer_setState($this, 1971); + oavr_Parser_match($this, 250); + } + oavr_Recognizer_setState($this, 1974); + oavr_Parser_match($this, 134); + break e; + case 149: + oavr_Parser_enterOuterAlt($this, $_localctx, 11); + oavr_Recognizer_setState($this, 1977); + oavr_Parser_match($this, 149); + oavr_Recognizer_setState($this, 1978); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 64 && $_la != 264) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + case 154: + oavr_Parser_enterOuterAlt($this, $_localctx, 21); + oavr_Recognizer_setState($this, 2001); + oavr_Parser_match($this, 154); + break e; + case 169: + oavr_Parser_enterOuterAlt($this, $_localctx, 17); + oavr_Recognizer_setState($this, 1997); + oavr_Parser_match($this, 169); + break e; + case 176: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1964); + oavr_Parser_match($this, 176); + break e; + case 178: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1965); + oavr_Parser_match($this, 178); + break e; + case 190: + oavr_Parser_enterOuterAlt($this, $_localctx, 23); + oavr_Recognizer_setState($this, 2007); + oavr_Parser_match($this, 190); + break e; + case 191: + oavr_Parser_enterOuterAlt($this, $_localctx, 24); + oavr_Recognizer_setState($this, 2008); + oavr_Parser_match($this, 191); + break e; + case 195: + oavr_Parser_enterOuterAlt($this, $_localctx, 16); + oavr_Recognizer_setState($this, 1996); + oavr_Parser_match($this, 195); + break e; + case 205: + oavr_Parser_enterOuterAlt($this, $_localctx, 25); + oavr_Recognizer_setState($this, 2009); + oavr_Parser_match($this, 205); + oavr_Recognizer_setState($this, 2010); + oavr_Parser_match($this, 288); + break e; + case 218: + oavr_Parser_enterOuterAlt($this, $_localctx, 19); + oavr_Recognizer_setState($this, 1999); + oavr_Parser_match($this, 218); + break e; + case 257: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 1969); + oavr_Parser_match($this, 257); + break e; + case 264: + oavr_Parser_enterOuterAlt($this, $_localctx, 13); + oavr_Recognizer_setState($this, 1981); + oavr_Parser_match($this, 264); + oavr_Recognizer_setState($this, 1982); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 295 && $_la != 296) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1986); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 264: + oavr_Recognizer_setState($this, 1984); + oavr_Parser_match($this, 264); + oavr_Recognizer_setState($this, 1985); + oavr_Parser_match($this, 300); + break e; + case 267: + oavr_Recognizer_setState($this, 1983); + oavr_Parser_match($this, 267); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 266: + oavr_Parser_enterOuterAlt($this, $_localctx, 14); + oavr_Recognizer_setState($this, 1988); + oavr_Parser_match($this, 266); + oavr_Recognizer_setState($this, 1989); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 295 && $_la != 296) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1993); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 264: + oavr_Recognizer_setState($this, 1991); + oavr_Parser_match($this, 264); + oavr_Recognizer_setState($this, 1992); + oavr_Parser_match($this, 300); + break e; + case 267: + oavr_Recognizer_setState($this, 1990); + oavr_Parser_match($this, 267); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 289: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 1968); + oavr_Parser_match($this, 289); + break e; + case 291: + oavr_Parser_enterOuterAlt($this, $_localctx, 18); + oavr_Recognizer_setState($this, 1998); + oavr_Parser_match($this, 291); + break e; + case 301: + oavr_Parser_enterOuterAlt($this, $_localctx, 12); + oavr_Recognizer_setState($this, 1979); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 1980); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 64 && $_la != 264) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule0($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule0($this); + $rt_throw($_localctx); + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule0($this); + } + return $_localctx; }, -oncief_Percentiles$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_Percentiles$_MODULE$ = null, -oncief_Percentiles$_signatures = null, -oncief_Percentiles$_$callClinit = () => { - oncief_Percentiles$_$callClinit = $rt_eraseClinit(oncief_Percentiles$); - oncief_Percentiles$__clinit_(); -}; -let oncief_Percentiles$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$3, $x$8, var$9, var$10, $x$13, var$12, $x$6, var$14, var$15, $x$4, $x$10; - var$1 = new oncief_Percentiles$; - oncief_Percentiles$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Percentiles$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Percentiles$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1141), $rt_s(5804), $rt_s(5805), $rt_s(5806)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 4); - var$10 = var$9.data; - $x$13 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - var$12 = s_Predef$_Set(s_Predef$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$4 = var$12.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$13, $x$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$10[0] = $x$13; - $x$4 = oncius_package$_MODULE$; - var$10[1] = oncius_package$_CTList($x$4, oncius_package$_CTFloat($x$4)); - $x$4 = oncius_package$_MODULE$; - var$10[2] = oncius_package$_CTList($x$4, oncius_package$_CTString($x$4)); - $x$4 = oncius_package$_MODULE$; - var$10[3] = oncius_package$_CTList($x$4, oncius_package$_CTBoolean($x$4)); - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - $x$4 = oncius_package$_CTMap(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5807), $x$6, $x$3, $x$8, 0, $x$10, 1, $x$10, $x$10, oncie_FunctionTypeSignature$_apply$default$13(oncie_FunctionTypeSignature$_MODULE$)); - oncief_Percentiles$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_typeNullability = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$TypeNullabilityContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 284, 142); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2034); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 141: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2033); + oavr_Parser_match($this, 141); + break e; + case 175: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2031); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 2032); + oavr_Parser_match($this, 178); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Percentiles$_name = $this => { - return $rt_s(5804); +oncipv_Cypher25Parser_typeListSuffix = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$TypeListSuffixContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 286, 143); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2036); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 22 && $_la != 147) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2038); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 141 && $_la != 175)) { + oavr_Recognizer_setState($this, 2037); + oncipv_Cypher25Parser_typeNullability($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Percentiles$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_command = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 288, 144); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2041); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 284) { + oavr_Recognizer_setState($this, 2040); + oncipv_Cypher25Parser_useClause($this); + } + e: { + oavr_Recognizer_setState($this, 2056); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 19: + oavr_Recognizer_setState($this, 2045); + oncipv_Cypher25Parser_alterCommand($this); + break e; + case 57: + oavr_Recognizer_setState($this, 2043); + oncipv_Cypher25Parser_createCommand($this); + break e; + case 66: + case 84: + case 213: + oavr_Recognizer_setState($this, 2053); + oncipv_Cypher25Parser_allocationCommand($this); + break e; + case 70: + oavr_Recognizer_setState($this, 2047); + oncipv_Cypher25Parser_denyCommand($this); + break e; + case 83: + oavr_Recognizer_setState($this, 2044); + oncipv_Cypher25Parser_dropCommand($this); + break e; + case 89: + oavr_Recognizer_setState($this, 2052); + oncipv_Cypher25Parser_enableServerCommand($this); + break e; + case 115: + oavr_Recognizer_setState($this, 2049); + oncipv_Cypher25Parser_grantCommand($this); + break e; + case 215: + oavr_Recognizer_setState($this, 2046); + oncipv_Cypher25Parser_renameCommand($this); + break e; + case 228: + oavr_Recognizer_setState($this, 2048); + oncipv_Cypher25Parser_revokeCommand($this); + break e; + case 249: + oavr_Recognizer_setState($this, 2054); + oncipv_Cypher25Parser_showCommand($this); + break e; + case 253: + oavr_Recognizer_setState($this, 2050); + oncipv_Cypher25Parser_startDatabase($this); + break e; + case 256: + oavr_Recognizer_setState($this, 2051); + oncipv_Cypher25Parser_stopDatabase($this); + break e; + case 261: + oavr_Recognizer_setState($this, 2055); + oncipv_Cypher25Parser_terminateCommand($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Percentiles$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_createCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 290, 145); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2058); + oavr_Parser_match($this, 57); + oavr_Recognizer_setState($this, 2061); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 186) { + oavr_Recognizer_setState($this, 2059); + oavr_Parser_match($this, 186); + oavr_Recognizer_setState($this, 2060); + oavr_Parser_match($this, 222); + } + e: { + oavr_Recognizer_setState($this, 2070); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 2063); + oncipv_Cypher25Parser_createAlias($this); + break e; + case 49: + oavr_Recognizer_setState($this, 2064); + oncipv_Cypher25Parser_createCompositeDatabase($this); + break e; + case 51: + oavr_Recognizer_setState($this, 2065); + oncipv_Cypher25Parser_createConstraint($this); + break e; + case 61: + oavr_Recognizer_setState($this, 2066); + oncipv_Cypher25Parser_createDatabase($this); + break e; + case 111: + case 128: + case 150: + case 195: + case 209: + case 262: + case 290: + oavr_Recognizer_setState($this, 2067); + oncipv_Cypher25Parser_createIndex($this); + break e; + case 126: + case 229: + oavr_Recognizer_setState($this, 2068); + oncipv_Cypher25Parser_createRole($this); + break e; + case 285: + oavr_Recognizer_setState($this, 2069); + oncipv_Cypher25Parser_createUser($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Percentiles$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_dropCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 292, 146); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2072); + oavr_Parser_match($this, 83); + oavr_Recognizer_setState($this, 2080); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 2073); + oncipv_Cypher25Parser_dropAlias($this); + break e; + case 49: + case 61: + oavr_Recognizer_setState($this, 2075); + oncipv_Cypher25Parser_dropDatabase($this); + break e; + case 51: + oavr_Recognizer_setState($this, 2074); + oncipv_Cypher25Parser_dropConstraint($this); + break e; + case 128: + oavr_Recognizer_setState($this, 2076); + oncipv_Cypher25Parser_dropIndex($this); + break e; + case 229: + oavr_Recognizer_setState($this, 2077); + oncipv_Cypher25Parser_dropRole($this); + break e; + case 242: + oavr_Recognizer_setState($this, 2078); + oncipv_Cypher25Parser_dropServer($this); + break e; + case 285: + oavr_Recognizer_setState($this, 2079); + oncipv_Cypher25Parser_dropUser($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Percentiles$_hashCode = $this => { - return (-1138901322); +oncipv_Cypher25Parser_showCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 294, 147); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2082); + oavr_Parser_match($this, 249); + oavr_Recognizer_setState($this, 2099); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 213, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2084); + oncipv_Cypher25Parser_showConstraintCommand($this); + break e; + case 3: + oavr_Recognizer_setState($this, 2085); + oncipv_Cypher25Parser_showCurrentUser($this); + break e; + case 4: + oavr_Recognizer_setState($this, 2086); + oncipv_Cypher25Parser_showDatabase($this); + break e; + case 5: + oavr_Recognizer_setState($this, 2087); + oncipv_Cypher25Parser_showFunctions($this); + break e; + case 6: + oavr_Recognizer_setState($this, 2088); + oncipv_Cypher25Parser_showIndexCommand($this); + break e; + case 7: + oavr_Recognizer_setState($this, 2089); + oncipv_Cypher25Parser_showPrivileges($this); + break e; + case 8: + oavr_Recognizer_setState($this, 2090); + oncipv_Cypher25Parser_showProcedures($this); + break e; + case 9: + oavr_Recognizer_setState($this, 2091); + oncipv_Cypher25Parser_showRolePrivileges($this); + break e; + case 10: + oavr_Recognizer_setState($this, 2092); + oncipv_Cypher25Parser_showRoles($this); + break e; + case 11: + oavr_Recognizer_setState($this, 2093); + oncipv_Cypher25Parser_showServers($this); + break e; + case 12: + oavr_Recognizer_setState($this, 2094); + oncipv_Cypher25Parser_showSettings($this); + break e; + case 13: + oavr_Recognizer_setState($this, 2095); + oncipv_Cypher25Parser_showSupportedPrivileges($this); + break e; + case 14: + oavr_Recognizer_setState($this, 2096); + oncipv_Cypher25Parser_showTransactions($this); + break e; + case 15: + oavr_Recognizer_setState($this, 2097); + oncipv_Cypher25Parser_showUserPrivileges($this); + break e; + case 16: + oavr_Recognizer_setState($this, 2098); + oncipv_Cypher25Parser_showUsers($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2083); + oncipv_Cypher25Parser_showAliases($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Percentiles$_toString = $this => { - return $rt_s(5808); +oncipv_Cypher25Parser_showCommandYield = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowCommandYieldContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 296, 148); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2106); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 294: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2105); + oncipv_Cypher25Parser_whereClause($this); + break e; + case 299: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2101); + oncipv_Cypher25Parser_yieldClause($this); + oavr_Recognizer_setState($this, 2103); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 227) + break e; + oavr_Recognizer_setState($this, 2102); + oncipv_Cypher25Parser_returnClause($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Percentiles$_signatures0 = $this => { - oncief_Percentiles$_$callClinit(); - return oncief_Percentiles$_signatures; +oncipv_Cypher25Parser_yieldItem = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$YieldItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 298, 149); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2108); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2111); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2109); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 2110); + oncipv_Cypher25Parser_variable($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$ = $rt_classWithoutFields(oncief_Function), -oncief_Point$_MODULE$ = null, -oncief_Point$_signatures = null, -oncief_Point$_$callClinit = () => { - oncief_Point$_$callClinit = $rt_eraseClinit(oncief_Point$); - oncief_Point$__clinit_(); +oncipv_Cypher25Parser_yieldSkip = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$YieldSkipContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 300, 150); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2113); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 180 && $_la != 252) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2114); + oncipv_Cypher25Parser_signedIntegerLiteral($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Point$; - oncief_Point$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Point$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Point$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_MapType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTMap(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTPoint(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SPATIAL(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5809)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5810), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Point$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_yieldLimit = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$YieldLimitContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 302, 151); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2116); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 2117); + oncipv_Cypher25Parser_signedIntegerLiteral($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$_name = $this => { - return $rt_s(1207); +oncipv_Cypher25Parser_yieldClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$YieldClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 304, 152); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2119); + oavr_Parser_match($this, 299); + oavr_Recognizer_setState($this, 2129); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + break f; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Recognizer_setState($this, 2120); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 2121); + oncipv_Cypher25Parser_yieldItem($this); + oavr_Recognizer_setState($this, 2126); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 46) + break e; + oavr_Recognizer_setState($this, 2122); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 2123); + oncipv_Cypher25Parser_yieldItem($this); + oavr_Recognizer_setState($this, 2128); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 2132); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 187) { + oavr_Recognizer_setState($this, 2131); + oncipv_Cypher25Parser_orderBy($this); + } + oavr_Recognizer_setState($this, 2135); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 180 && $_la != 252)) { + oavr_Recognizer_setState($this, 2134); + oncipv_Cypher25Parser_yieldSkip($this); + } + oavr_Recognizer_setState($this, 2138); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 146) { + oavr_Recognizer_setState($this, 2137); + oncipv_Cypher25Parser_yieldLimit($this); + } + oavr_Recognizer_setState($this, 2141); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 2140); + oncipv_Cypher25Parser_whereClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_commandOptions = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CommandOptionsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 306, 153); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2143); + oavr_Parser_match($this, 184); + oavr_Recognizer_setState($this, 2144); + oncipv_Cypher25Parser_mapOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_terminateCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$TerminateCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 308, 154); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2146); + oavr_Parser_match($this, 261); + oavr_Recognizer_setState($this, 2147); + oncipv_Cypher25Parser_terminateTransactions($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_composableCommandClauses = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ComposableCommandClausesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 310, 155); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2151); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 249: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2150); + oncipv_Cypher25Parser_composableShowCommandClauses($this); + break e; + case 261: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2149); + oncipv_Cypher25Parser_terminateCommand($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$_hashCode = $this => { - return 77292912; +oncipv_Cypher25Parser_composableShowCommandClauses = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ComposableShowCommandClausesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 312, 156); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2153); + oavr_Parser_match($this, 249); + oavr_Recognizer_setState($this, 2160); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 224, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2155); + oncipv_Cypher25Parser_showConstraintCommand($this); + break e; + case 3: + oavr_Recognizer_setState($this, 2156); + oncipv_Cypher25Parser_showFunctions($this); + break e; + case 4: + oavr_Recognizer_setState($this, 2157); + oncipv_Cypher25Parser_showProcedures($this); + break e; + case 5: + oavr_Recognizer_setState($this, 2158); + oncipv_Cypher25Parser_showSettings($this); + break e; + case 6: + oavr_Recognizer_setState($this, 2159); + oncipv_Cypher25Parser_showTransactions($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2154); + oncipv_Cypher25Parser_showIndexCommand($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$_toString = $this => { - return $rt_s(733); +oncipv_Cypher25Parser_showIndexCommand = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowIndexCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 314, 157); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2163); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 111 && $_la != 150 && $_la != 195 && $_la != 209 && $_la != 262 && $_la != 290)) { + oavr_Recognizer_setState($this, 2162); + oncipv_Cypher25Parser_showIndexType($this); + } + oavr_Recognizer_setState($this, 2165); + oncipv_Cypher25Parser_showIndexesEnd($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Point$_signatures0 = $this => { - oncief_Point$_$callClinit(); - return oncief_Point$_signatures; +oncipv_Cypher25Parser_showIndexType = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowIndexTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 316, 158); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2167); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 111 && $_la != 150 && $_la != 195 && $_la != 209 && $_la != 262 && $_la != 290) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Keys$ = $rt_classWithoutFields(oncief_Function), -oncief_Keys$_MODULE$ = null, -oncief_Keys$_signatures = null, -oncief_Keys$_$callClinit = () => { - oncief_Keys$_$callClinit = $rt_eraseClinit(oncief_Keys$); - oncief_Keys$__clinit_(); +oncipv_Cypher25Parser_showIndexesEnd = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowIndexesEndContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 318, 159); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2169); + oncipv_Cypher25Parser_indexToken($this); + oavr_Recognizer_setState($this, 2171); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2170); + oncipv_Cypher25Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2174); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 249 && $_la != 261)) { + oavr_Recognizer_setState($this, 2173); + oncipv_Cypher25Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Keys$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$8, var$8, $x$2, var$10, var$11, var$12, $x$3, $x$10, var$15, var$16, $x$4, $x$6; - var$1 = new oncief_Keys$; - oncief_Keys$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Keys$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Keys$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - var$12 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$3 = s_Predef$_Set(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$15 = $rt_createArray(oncius_CypherType, 3); - var$16 = var$15.data; - oncius_package$_$callClinit(); - var$16[0] = oncius_package$_CTNode(oncius_package$_MODULE$); - var$16[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - var$16[2] = oncius_package$_CTMap(oncius_package$_MODULE$); - var$6 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$15)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_(var$12, var$6, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = var$12; - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); - $x$8 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$8, oncius_package$_CTString($x$8)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$12 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(s_Tuple2, 1); - var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5811)); - var$12 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$12, var$11)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5812), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); - oncief_Keys$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_showConstraintCommand = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowConstraintCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 320, 160); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 2205); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 234, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ShowConstraintAllContext; + var$2 = $re; + oncipv_Cypher25Parser$ShowConstraintAllContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 2177); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 18) { + var$2 = $re; + oavr_Recognizer_setState($this, 2176); + oavr_Parser_match($this, 18); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2179); + oncipv_Cypher25Parser_showConstraintsEnd($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ShowConstraintExistContext; + var$2 = $re; + oncipv_Cypher25Parser$ShowConstraintExistContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 2181); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2180); + oncipv_Cypher25Parser_showConstraintEntity($this); + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2183); + oncipv_Cypher25Parser_constraintExistType($this); + oavr_Recognizer_setState($this, 2184); + oncipv_Cypher25Parser_showConstraintsEnd($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ShowConstraintKeyContext; + var$2 = $re; + oncipv_Cypher25Parser$ShowConstraintKeyContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 2187); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2186); + oncipv_Cypher25Parser_showConstraintEntity($this); + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2189); + oavr_Parser_match($this, 137); + oavr_Recognizer_setState($this, 2190); + oncipv_Cypher25Parser_showConstraintsEnd($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ShowConstraintPropTypeContext; + var$2 = $re; + oncipv_Cypher25Parser$ShowConstraintPropTypeContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 2192); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2191); + oncipv_Cypher25Parser_showConstraintEntity($this); + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2194); + oavr_Parser_match($this, 205); + oavr_Recognizer_setState($this, 2195); + oavr_Parser_match($this, 276); + oavr_Recognizer_setState($this, 2196); + oncipv_Cypher25Parser_showConstraintsEnd($this); + break e; + case 5: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ShowConstraintUniqueContext; + var$2 = $re; + oncipv_Cypher25Parser$ShowConstraintUniqueContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 2198); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2197); + oncipv_Cypher25Parser_showConstraintEntity($this); + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2201); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 205) { + var$2 = $re; + oavr_Recognizer_setState($this, 2200); + oavr_Parser_match($this, 205); + } + f: { + var$2 = $re; + oavr_Recognizer_setState($this, 2203); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 280) { + var$2 = $re; + if ($_la != 281) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break f; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2204); + oncipv_Cypher25Parser_showConstraintsEnd($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Keys$_name = $this => { - return $rt_s(5813); +oncipv_Cypher25Parser_showConstraintEntity = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowConstraintEntityContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 322, 161); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 2209); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 169: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$NodeEntityContext; + var$2 = $re; + oncipv_Cypher25Parser$NodeEntityContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 2207); + oavr_Parser_match($this, 169); + break e; + case 217: + case 218: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$RelEntityContext; + var$2 = $re; + oncipv_Cypher25Parser$RelEntityContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 2208); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 217) { + var$2 = $re; + if ($_la != 218) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break e; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Keys$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_constraintExistType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ConstraintExistTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 324, 162); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2217); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 236, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2212); + oavr_Parser_match($this, 99); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2213); + oavr_Parser_match($this, 205); + oavr_Recognizer_setState($this, 2214); + oavr_Parser_match($this, 100); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 2215); + oavr_Parser_match($this, 205); + oavr_Recognizer_setState($this, 2216); + oavr_Parser_match($this, 99); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2211); + oavr_Parser_match($this, 100); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Keys$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_showConstraintsEnd = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowConstraintsEndContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 326, 163); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2219); + oncipv_Cypher25Parser_constraintToken($this); + oavr_Recognizer_setState($this, 2221); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2220); + oncipv_Cypher25Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2224); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 249 && $_la != 261)) { + oavr_Recognizer_setState($this, 2223); + oncipv_Cypher25Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Keys$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_showProcedures = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowProceduresContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 328, 164); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2226); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 202 && $_la != 203) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2228); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 97) { + oavr_Recognizer_setState($this, 2227); + oncipv_Cypher25Parser_executableBy($this); + } + oavr_Recognizer_setState($this, 2231); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2230); + oncipv_Cypher25Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2234); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 249 && $_la != 261)) { + oavr_Recognizer_setState($this, 2233); + oncipv_Cypher25Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Keys$_hashCode = $this => { - return 2335252; +oncipv_Cypher25Parser_showFunctions = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowFunctionsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 330, 165); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2237); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 36 && $_la != 285)) { + oavr_Recognizer_setState($this, 2236); + oncipv_Cypher25Parser_showFunctionsType($this); + } + oavr_Recognizer_setState($this, 2239); + oncipv_Cypher25Parser_functionToken($this); + oavr_Recognizer_setState($this, 2241); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 97) { + oavr_Recognizer_setState($this, 2240); + oncipv_Cypher25Parser_executableBy($this); + } + oavr_Recognizer_setState($this, 2244); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2243); + oncipv_Cypher25Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2247); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 249 && $_la != 261)) { + oavr_Recognizer_setState($this, 2246); + oncipv_Cypher25Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Keys$_toString = $this => { - return $rt_s(5814); +oncipv_Cypher25Parser_functionToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$FunctionTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 332, 166); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2249); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 112 && $_la != 113) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Keys$_signatures0 = $this => { - oncief_Keys$_$callClinit(); - return oncief_Keys$_signatures; +oncipv_Cypher25Parser_executableBy = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ExecutableByContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 334, 167); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2251); + oavr_Parser_match($this, 97); + oavr_Recognizer_setState($this, 2258); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 37) { + oavr_Recognizer_setState($this, 2252); + oavr_Parser_match($this, 37); + oavr_Recognizer_setState($this, 2256); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 246, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 2253); + oavr_Parser_match($this, 59); + oavr_Recognizer_setState($this, 2254); + oavr_Parser_match($this, 285); + break e; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2255); + oncipv_Cypher25Parser_symbolicNameString($this); + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$ = $rt_classWithoutFields(oncief_Function), -oncief_Radians$_MODULE$ = null, -oncief_Radians$_signatures = null, -oncief_Radians$_$callClinit = () => { - oncief_Radians$_$callClinit = $rt_eraseClinit(oncief_Radians$); - oncief_Radians$__clinit_(); +oncipv_Cypher25Parser_showFunctionsType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowFunctionsTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 336, 168); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2265); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 18: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2260); + oavr_Parser_match($this, 18); + break e; + case 36: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2261); + oavr_Parser_match($this, 36); + oavr_Recognizer_setState($this, 2262); + oavr_Parser_match($this, 127); + break e; + case 285: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2263); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 2264); + oavr_Parser_match($this, 68); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Radians$; - oncief_Radians$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Radians$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Radians$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5815)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5816), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Radians$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_showTransactions = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowTransactionsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 338, 169); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2267); + oncipv_Cypher25Parser_transactionToken($this); + oavr_Recognizer_setState($this, 2268); + oncipv_Cypher25Parser_namesAndClauses($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$_name = $this => { - return $rt_s(5817); +oncipv_Cypher25Parser_terminateTransactions = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$TerminateTransactionsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 340, 170); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2270); + oncipv_Cypher25Parser_transactionToken($this); + oavr_Recognizer_setState($this, 2271); + oncipv_Cypher25Parser_stringsOrExpression($this); + oavr_Recognizer_setState($this, 2273); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2272); + oncipv_Cypher25Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2276); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 249 && $_la != 261)) { + oavr_Recognizer_setState($this, 2275); + oncipv_Cypher25Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_showSettings = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowSettingsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 342, 171); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2278); + oncipv_Cypher25Parser_settingToken($this); + oavr_Recognizer_setState($this, 2279); + oncipv_Cypher25Parser_namesAndClauses($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher25Parser_settingToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SettingTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 344, 172); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2281); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 245 && $_la != 246) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_namesAndClauses = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NamesAndClausesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 346, 173); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2290); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 253, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2286); + oncipv_Cypher25Parser_stringsOrExpression($this); + oavr_Recognizer_setState($this, 2288); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 294 && $_la != 299) + break e; + oavr_Recognizer_setState($this, 2287); + oncipv_Cypher25Parser_showCommandYield($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2284); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2283); + oncipv_Cypher25Parser_showCommandYield($this); + } + } + oavr_Recognizer_setState($this, 2293); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 249 && $_la != 261)) { + oavr_Recognizer_setState($this, 2292); + oncipv_Cypher25Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_stringsOrExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StringsOrExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 348, 174); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2297); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 255, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2296); + oncipv_Cypher25Parser_expression($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2295); + oncipv_Cypher25Parser_stringList($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$_hashCode = $this => { - return (-1661504942); +oncipv_Cypher25Parser_commandNodePattern = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CommandNodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 350, 175); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2299); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2300); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2301); + oncipv_Cypher25Parser_labelType($this); + oavr_Recognizer_setState($this, 2302); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$_toString = $this => { - return $rt_s(5818); +oncipv_Cypher25Parser_commandRelPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CommandRelPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 352, 176); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2304); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2305); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 2307); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 152 && $_la != 305)) { + oavr_Recognizer_setState($this, 2306); + oncipv_Cypher25Parser_leftArrow($this); + } + oavr_Recognizer_setState($this, 2309); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2310); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 2311); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2312); + oncipv_Cypher25Parser_relType($this); + oavr_Recognizer_setState($this, 2313); + oavr_Parser_match($this, 210); + oavr_Recognizer_setState($this, 2314); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2316); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 120 && $_la != 306)) { + oavr_Recognizer_setState($this, 2315); + oncipv_Cypher25Parser_rightArrow($this); + } + oavr_Recognizer_setState($this, 2318); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2319); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Radians$_signatures0 = $this => { - oncief_Radians$_$callClinit(); - return oncief_Radians$_signatures; +oncipv_Cypher25Parser_createConstraint = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateConstraintContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 354, 177); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2321); + oavr_Parser_match($this, 51); + oavr_Recognizer_setState($this, 2323); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 258, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2322); + oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); + } + oavr_Recognizer_setState($this, 2328); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2325); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2326); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 2327); + oavr_Parser_match($this, 101); + } + f: { + oavr_Recognizer_setState($this, 2330); + oavr_Parser_match($this, 108); + oavr_Recognizer_setState($this, 2333); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 260, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2332); + oncipv_Cypher25Parser_commandRelPattern($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2331); + oncipv_Cypher25Parser_commandNodePattern($this); + } + oavr_Recognizer_setState($this, 2335); + oncipv_Cypher25Parser_constraintType($this); + oavr_Recognizer_setState($this, 2337); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { + oavr_Recognizer_setState($this, 2336); + oncipv_Cypher25Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Rand$ = $rt_classWithoutFields(oncief_Function), -oncief_Rand$_MODULE$ = null, -oncief_Rand$_name = null, -oncief_Rand$_signatures = null, -oncief_Rand$_$callClinit = () => { - oncief_Rand$_$callClinit = $rt_eraseClinit(oncief_Rand$); - oncief_Rand$__clinit_(); +oncipv_Cypher25Parser_constraintType = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher25Parser$ConstraintTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 356, 178); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 2370); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 265, $this.$_ctx)) { + case 1: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ConstraintTypedContext; + var$2 = $re; + oncipv_Cypher25Parser$ConstraintTypedContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 2339); + oavr_Parser_match($this, 224); + oavr_Recognizer_setState($this, 2340); + oncipv_Cypher25Parser_propertyList($this); + oavr_Recognizer_setState($this, 2344); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 45: + var$2 = $re; + oavr_Recognizer_setState($this, 2341); + oavr_Parser_match($this, 45); + break f; + case 135: + var$2 = $re; + oavr_Recognizer_setState($this, 2342); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 2343); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 45) { + var$2 = $re; + if ($_la != 277) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break f; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break f; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2346); + oncipv_Cypher25Parser_type($this); + break e; + case 2: + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ConstraintIsUniqueContext; + var$2 = $re; + oncipv_Cypher25Parser$ConstraintIsUniqueContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 2348); + oavr_Parser_match($this, 224); + oavr_Recognizer_setState($this, 2349); + oncipv_Cypher25Parser_propertyList($this); + oavr_Recognizer_setState($this, 2350); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 2352); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2351); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break g; + } + } + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + } + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2354); + oavr_Parser_match($this, 280); + break e; + case 3: + h: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ConstraintKeyContext; + var$2 = $re; + oncipv_Cypher25Parser$ConstraintKeyContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 2356); + oavr_Parser_match($this, 224); + oavr_Recognizer_setState($this, 2357); + oncipv_Cypher25Parser_propertyList($this); + oavr_Recognizer_setState($this, 2358); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 2360); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2359); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break h; + } + } + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + } + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2362); + oavr_Parser_match($this, 137); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$ConstraintIsNotNullContext; + var$2 = $re; + oncipv_Cypher25Parser$ConstraintIsNotNullContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 2364); + oavr_Parser_match($this, 224); + oavr_Recognizer_setState($this, 2365); + oncipv_Cypher25Parser_propertyList($this); + oavr_Recognizer_setState($this, 2366); + oavr_Parser_match($this, 135); + oavr_Recognizer_setState($this, 2367); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 2368); + oavr_Parser_match($this, 178); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Rand$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new oncief_Rand$; - oncief_Rand$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Rand$_MODULE$ = var$1; - oncief_Rand$_name = $rt_s(5819); - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - oncie_FunctionTypeSignature$_$callClinit(); - var$5 = oncie_FunctionTypeSignature$_MODULE$; - var$6 = oncief_Rand$_MODULE$; - oncius_package$_$callClinit(); - var$7 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(5820), oncief_Category$_NUMERIC(oncief_Category$_MODULE$)); - oncief_Rand$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}; -let oncief_Rand$_name0 = $this => { - oncief_Rand$_$callClinit(); - return oncief_Rand$_name; +oncipv_Cypher25Parser_dropConstraint = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropConstraintContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 358, 179); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2372); + oavr_Parser_match($this, 51); + oavr_Recognizer_setState($this, 2373); + oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); + oavr_Recognizer_setState($this, 2376); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2374); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2375); + oavr_Parser_match($this, 101); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Rand$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_createIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 360, 180); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2398); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 111: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 2393); + oavr_Parser_match($this, 111); + oavr_Recognizer_setState($this, 2394); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2395); + oncipv_Cypher25Parser_createFulltextIndex($this); + break e; + case 128: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 2396); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2397); + oncipv_Cypher25Parser_createIndex_($this); + break e; + case 150: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 2390); + oavr_Parser_match($this, 150); + oavr_Recognizer_setState($this, 2391); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2392); + oncipv_Cypher25Parser_createLookupIndex($this); + break e; + case 195: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2384); + oavr_Parser_match($this, 195); + oavr_Recognizer_setState($this, 2385); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2386); + oncipv_Cypher25Parser_createIndex_($this); + break e; + case 209: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2378); + oavr_Parser_match($this, 209); + oavr_Recognizer_setState($this, 2379); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2380); + oncipv_Cypher25Parser_createIndex_($this); + break e; + case 262: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2381); + oavr_Parser_match($this, 262); + oavr_Recognizer_setState($this, 2382); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2383); + oncipv_Cypher25Parser_createIndex_($this); + break e; + case 290: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 2387); + oavr_Parser_match($this, 290); + oavr_Recognizer_setState($this, 2388); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2389); + oncipv_Cypher25Parser_createIndex_($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Rand$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_createIndex_ = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateIndex_Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 362, 181); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2401); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 268, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2400); + oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); + } + oavr_Recognizer_setState($this, 2406); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2403); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2404); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 2405); + oavr_Parser_match($this, 101); + } + f: { + oavr_Recognizer_setState($this, 2408); + oavr_Parser_match($this, 108); + oavr_Recognizer_setState($this, 2411); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 270, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2410); + oncipv_Cypher25Parser_commandRelPattern($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2409); + oncipv_Cypher25Parser_commandNodePattern($this); + } + oavr_Recognizer_setState($this, 2413); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2414); + oncipv_Cypher25Parser_propertyList($this); + oavr_Recognizer_setState($this, 2416); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { + oavr_Recognizer_setState($this, 2415); + oncipv_Cypher25Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Rand$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_createFulltextIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateFulltextIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 364, 182); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2419); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 272, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2418); + oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); + } + oavr_Recognizer_setState($this, 2424); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2421); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2422); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 2423); + oavr_Parser_match($this, 101); + } + f: { + oavr_Recognizer_setState($this, 2426); + oavr_Parser_match($this, 108); + oavr_Recognizer_setState($this, 2429); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 274, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2428); + oncipv_Cypher25Parser_fulltextRelPattern($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2427); + oncipv_Cypher25Parser_fulltextNodePattern($this); + } + oavr_Recognizer_setState($this, 2431); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2432); + oavr_Parser_match($this, 87); + oavr_Recognizer_setState($this, 2433); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 2434); + oncipv_Cypher25Parser_enclosedPropertyList($this); + oavr_Recognizer_setState($this, 2435); + oavr_Parser_match($this, 210); + oavr_Recognizer_setState($this, 2437); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { + oavr_Recognizer_setState($this, 2436); + oncipv_Cypher25Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Rand$_hashCode = $this => { - return 2539589; +oncipv_Cypher25Parser_fulltextNodePattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$FulltextNodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 366, 183); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2439); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2440); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2441); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 2442); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2447); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 29) { + oavr_Recognizer_setState($this, 2443); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 2444); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2449); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 2450); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Rand$_toString = $this => { - return $rt_s(5821); +oncipv_Cypher25Parser_fulltextRelPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$FulltextRelPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 368, 184); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2452); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2453); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 2455); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 152 && $_la != 305)) { + oavr_Recognizer_setState($this, 2454); + oncipv_Cypher25Parser_leftArrow($this); + } + oavr_Recognizer_setState($this, 2457); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2458); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 2459); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2460); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 2461); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2466); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 29) { + oavr_Recognizer_setState($this, 2462); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 2463); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2468); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 2469); + oavr_Parser_match($this, 210); + oavr_Recognizer_setState($this, 2470); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2472); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 120 && $_la != 306)) { + oavr_Recognizer_setState($this, 2471); + oncipv_Cypher25Parser_rightArrow($this); + } + oavr_Recognizer_setState($this, 2474); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2475); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Rand$_signatures0 = $this => { - oncief_Rand$_$callClinit(); - return oncief_Rand$_signatures; +oncipv_Cypher25Parser_createLookupIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateLookupIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 370, 185); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2478); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 280, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2477); + oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); + } + oavr_Recognizer_setState($this, 2483); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2480); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2481); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 2482); + oavr_Parser_match($this, 101); + } + f: { + oavr_Recognizer_setState($this, 2485); + oavr_Parser_match($this, 108); + oavr_Recognizer_setState($this, 2488); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 282, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2487); + oncipv_Cypher25Parser_lookupIndexRelPattern($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2486); + oncipv_Cypher25Parser_lookupIndexNodePattern($this); + } + oavr_Recognizer_setState($this, 2490); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2491); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2492); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2493); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 2495); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { + oavr_Recognizer_setState($this, 2494); + oncipv_Cypher25Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RandomUUID$ = $rt_classWithoutFields(oncief_Function), -oncief_RandomUUID$_MODULE$ = null, -oncief_RandomUUID$_signatures = null, -oncief_RandomUUID$_$callClinit = () => { - oncief_RandomUUID$_$callClinit = $rt_eraseClinit(oncief_RandomUUID$); - oncief_RandomUUID$__clinit_(); +oncipv_Cypher25Parser_lookupIndexNodePattern = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LookupIndexNodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 372, 186); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2497); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2498); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2499); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 2500); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2501); + oavr_Parser_match($this, 87); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RandomUUID$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new oncief_RandomUUID$; - oncief_RandomUUID$_$callClinit(); - oncief_Function__init_(var$1); - oncief_RandomUUID$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - oncie_FunctionTypeSignature$_$callClinit(); - var$5 = oncie_FunctionTypeSignature$_MODULE$; - var$6 = oncief_RandomUUID$_MODULE$; - oncius_package$_$callClinit(); - var$7 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(5822), oncief_Category$_SCALAR(oncief_Category$_MODULE$)); - oncief_RandomUUID$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_lookupIndexRelPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LookupIndexRelPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 374, 187); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2503); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2504); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 2506); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 152 && $_la != 305)) { + oavr_Recognizer_setState($this, 2505); + oncipv_Cypher25Parser_leftArrow($this); + } + oavr_Recognizer_setState($this, 2508); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2509); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 2510); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2511); + oavr_Parser_match($this, 210); + oavr_Recognizer_setState($this, 2512); + oncipv_Cypher25Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2514); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 120 && $_la != 306)) { + oavr_Recognizer_setState($this, 2513); + oncipv_Cypher25Parser_rightArrow($this); + } + e: { + oavr_Recognizer_setState($this, 2516); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2517); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 2518); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2520); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 286, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2519); + oavr_Parser_match($this, 87); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RandomUUID$_name = $this => { - return $rt_s(5823); +oncipv_Cypher25Parser_dropIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 376, 188); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2522); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2523); + oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); + oavr_Recognizer_setState($this, 2526); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2524); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2525); + oavr_Parser_match($this, 101); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RandomUUID$_signatures0 = $this => { - oncief_RandomUUID$_$callClinit(); - return oncief_RandomUUID$_signatures; +oncipv_Cypher25Parser_propertyList = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PropertyListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 378, 189); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2535); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2528); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2529); + oncipv_Cypher25Parser_property($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + case 151: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2531); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 2532); + oncipv_Cypher25Parser_enclosedPropertyList($this); + oavr_Recognizer_setState($this, 2533); + oavr_Parser_match($this, 233); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$ = $rt_classWithoutFields(oncief_Function), -oncief_Range$_MODULE$ = null, -oncief_Range$_signatures = null, -oncief_Range$_$callClinit = () => { - oncief_Range$_$callClinit = $rt_eraseClinit(oncief_Range$); - oncief_Range$__clinit_(); +oncipv_Cypher25Parser_enclosedPropertyList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$EnclosedPropertyListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 380, 190); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2537); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2538); + oncipv_Cypher25Parser_property($this); + oavr_Recognizer_setState($this, 2545); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 2539); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 2540); + oncipv_Cypher25Parser_variable($this); + oavr_Recognizer_setState($this, 2541); + oncipv_Cypher25Parser_property($this); + oavr_Recognizer_setState($this, 2547); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$6, $x$3, var$9, var$10, $x$4, $x$8, $x$23, $x$15, $x$10, $x$14, $x$16, $x$17, $x$19, $x$21; - var$1 = new oncief_Range$; - oncief_Range$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Range$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); - var$4 = var$3.data; - $x$1 = oncief_Range$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5824), $rt_s(5825)]))); - $x$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_IntegerType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - $x$3 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTInteger($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - $x$23 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5824), $rt_s(5826)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5825), $rt_s(5827)); - $x$15 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$23, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5828), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$15); - $x$14 = oncief_Range$_MODULE$; - $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5824), $rt_s(5825), $rt_s(5829)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_IntegerType, 3); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[2] = oncius_package$_CTInteger(oncius_package$_MODULE$); - $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); - $x$3 = oncius_package$_MODULE$; - $x$17 = oncius_package$_CTList($x$3, oncius_package$_CTInteger($x$3)); - $x$19 = oncief_Category$_LIST(oncief_Category$_MODULE$); - $x$3 = s_Predef$_Map(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 3); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5824), $rt_s(5826)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5825), $rt_s(5827)); - var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5829), $rt_s(5830)); - $x$4 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); - $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$23 = s_None$_MODULE$; - var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5831), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$4); - oncief_Range$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_alterCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 382, 191); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2548); + oavr_Parser_match($this, 19); + oavr_Recognizer_setState($this, 2554); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 2549); + oncipv_Cypher25Parser_alterAlias($this); + break e; + case 59: + oavr_Recognizer_setState($this, 2550); + oncipv_Cypher25Parser_alterCurrentUser($this); + break e; + case 61: + oavr_Recognizer_setState($this, 2551); + oncipv_Cypher25Parser_alterDatabase($this); + break e; + case 242: + oavr_Recognizer_setState($this, 2553); + oncipv_Cypher25Parser_alterServer($this); + break e; + case 285: + oavr_Recognizer_setState($this, 2552); + oncipv_Cypher25Parser_alterUser($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$_name = $this => { - return $rt_s(1208); +oncipv_Cypher25Parser_renameCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RenameCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 384, 192); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2556); + oavr_Parser_match($this, 215); + oavr_Recognizer_setState($this, 2560); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 229: + oavr_Recognizer_setState($this, 2557); + oncipv_Cypher25Parser_renameRole($this); + break e; + case 242: + oavr_Recognizer_setState($this, 2558); + oncipv_Cypher25Parser_renameServer($this); + break e; + case 285: + oavr_Recognizer_setState($this, 2559); + oncipv_Cypher25Parser_renameUser($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_grantCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GrantCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 386, 193); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2562); + oavr_Parser_match($this, 115); + oavr_Recognizer_setState($this, 2573); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 293, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 2564); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 126) { + oavr_Recognizer_setState($this, 2563); + oavr_Parser_match($this, 126); + } + oavr_Recognizer_setState($this, 2566); + oncipv_Cypher25Parser_privilege($this); + oavr_Recognizer_setState($this, 2567); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 2568); + oncipv_Cypher25Parser_roleNames($this); + break e; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2570); + oncipv_Cypher25Parser_roleToken($this); + oavr_Recognizer_setState($this, 2571); + oncipv_Cypher25Parser_grantRole($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_denyCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DenyCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 388, 194); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2575); + oavr_Parser_match($this, 70); + oavr_Recognizer_setState($this, 2577); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 126) { + oavr_Recognizer_setState($this, 2576); + oavr_Parser_match($this, 126); + } + oavr_Recognizer_setState($this, 2579); + oncipv_Cypher25Parser_privilege($this); + oavr_Recognizer_setState($this, 2580); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 2581); + oncipv_Cypher25Parser_roleNames($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_revokeCommand = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RevokeCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 390, 195); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2583); + oavr_Parser_match($this, 228); + oavr_Recognizer_setState($this, 2597); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 297, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 2585); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 70 && $_la != 115)) { + oavr_Recognizer_setState($this, 2584); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 70 && $_la != 115) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2588); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 126) { + oavr_Recognizer_setState($this, 2587); + oavr_Parser_match($this, 126); + } + oavr_Recognizer_setState($this, 2590); + oncipv_Cypher25Parser_privilege($this); + oavr_Recognizer_setState($this, 2591); + oavr_Parser_match($this, 110); + oavr_Recognizer_setState($this, 2592); + oncipv_Cypher25Parser_roleNames($this); + break e; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2594); + oncipv_Cypher25Parser_roleToken($this); + oavr_Recognizer_setState($this, 2595); + oncipv_Cypher25Parser_revokeRole($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$_hashCode = $this => { - return 78727453; +oncipv_Cypher25Parser_userNames = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UserNamesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 392, 196); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2599); + oncipv_Cypher25Parser_symbolicNameOrStringParameterList($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$_toString = $this => { - return $rt_s(4676); +oncipv_Cypher25Parser_roleNames = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RoleNamesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 394, 197); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2601); + oncipv_Cypher25Parser_symbolicNameOrStringParameterList($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Range$_signatures0 = $this => { - oncief_Range$_$callClinit(); - return oncief_Range$_signatures; +oncipv_Cypher25Parser_roleToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RoleTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 396, 198); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2603); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 229 && $_la != 230) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$ = $rt_classWithoutFields(oncief_Function), -oncief_Reduce$_MODULE$ = null, -oncief_Reduce$_signatures = null, -oncief_Reduce$_$callClinit = () => { - oncief_Reduce$_$callClinit = $rt_eraseClinit(oncief_Reduce$); - oncief_Reduce$__clinit_(); +oncipv_Cypher25Parser_enableServerCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$EnableServerCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 398, 199); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2605); + oavr_Parser_match($this, 89); + oavr_Recognizer_setState($this, 2606); + oavr_Parser_match($this, 242); + oavr_Recognizer_setState($this, 2607); + oncipv_Cypher25Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2609); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { + oavr_Recognizer_setState($this, 2608); + oncipv_Cypher25Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$9, $x$4, $x$6, $x$7, var$15, var$16, $x$11; - var$1 = new oncief_Reduce$; - oncief_Reduce$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Reduce$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Reduce$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5832), $rt_s(1203)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$9 = oncius_package$_MODULE$; - var$10[1] = oncius_package$_CTList($x$9, oncius_package$_CTAny($x$9)); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - $x$7 = new s_Some; - $x$9 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($x$9); - jl_StringBuilder_append(jl_StringBuilder_append($x$9, $rt_s(5833)), $rt_s(5834)); - s_Some__init_0($x$7, jl_AbstractStringBuilder_toString($x$9)); - s_Predef$_$callClinit(); - var$15 = s_Predef$_Map(s_Predef$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5832), $rt_s(5835)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1203), $rt_s(5836)); - var$16 = sci_Map$_from(var$15, sr_ScalaRunTime$_wrapRefArray(var$7, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$9 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$11 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5837), $x$6, $x$3, $x$9, 0, $x$11, 0, $x$7, $x$11, var$16); - oncief_Reduce$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_alterServer = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterServerContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 400, 200); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2611); + oavr_Parser_match($this, 242); + oavr_Recognizer_setState($this, 2612); + oncipv_Cypher25Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2613); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 2614); + oncipv_Cypher25Parser_commandOptions($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$_name = $this => { - return $rt_s(5833); +oncipv_Cypher25Parser_renameServer = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RenameServerContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 402, 201); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2616); + oavr_Parser_match($this, 242); + oavr_Recognizer_setState($this, 2617); + oncipv_Cypher25Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2618); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 2619); + oncipv_Cypher25Parser_stringOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_dropServer = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropServerContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 404, 202); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2621); + oavr_Parser_match($this, 242); + oavr_Recognizer_setState($this, 2622); + oncipv_Cypher25Parser_stringOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_showServers = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowServersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 406, 203); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2624); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 242 && $_la != 243) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2626); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2625); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_allocationCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AllocationCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 408, 204); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2629); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 84) { + oavr_Recognizer_setState($this, 2628); + oavr_Parser_match($this, 84); + } + e: { + oavr_Recognizer_setState($this, 2633); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 66: + oavr_Recognizer_setState($this, 2631); + oncipv_Cypher25Parser_deallocateDatabaseFromServers($this); + break e; + case 213: + oavr_Recognizer_setState($this, 2632); + oncipv_Cypher25Parser_reallocateDatabases($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$_hashCode = $this => { - return (-1851006586); +oncipv_Cypher25Parser_deallocateDatabaseFromServers = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 410, 205); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2635); + oavr_Parser_match($this, 66); + oavr_Recognizer_setState($this, 2636); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 61 && $_la != 62) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2637); + oavr_Parser_match($this, 110); + oavr_Recognizer_setState($this, 2638); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 242 && $_la != 243) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2639); + oncipv_Cypher25Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2644); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 2640); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 2641); + oncipv_Cypher25Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2646); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$_toString = $this => { - return $rt_s(5838); +oncipv_Cypher25Parser_reallocateDatabases = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ReallocateDatabasesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 412, 206); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2647); + oavr_Parser_match($this, 213); + oavr_Recognizer_setState($this, 2648); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 61 && $_la != 62) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reduce$_signatures0 = $this => { - oncief_Reduce$_$callClinit(); - return oncief_Reduce$_signatures; +oncipv_Cypher25Parser_createRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 414, 207); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2651); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 126) { + oavr_Recognizer_setState($this, 2650); + oavr_Parser_match($this, 126); + } + oavr_Recognizer_setState($this, 2653); + oavr_Parser_match($this, 229); + oavr_Recognizer_setState($this, 2654); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2658); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2655); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2656); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 2657); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 2664); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2660); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 2661); + oavr_Parser_match($this, 54); + oavr_Recognizer_setState($this, 2662); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2663); + oncipv_Cypher25Parser_commandNameExpression($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$ = $rt_classWithoutFields(oncief_Function), -oncief_Relationships$_MODULE$ = null, -oncief_Relationships$_signatures = null, -oncief_Relationships$_$callClinit = () => { - oncief_Relationships$_$callClinit = $rt_eraseClinit(oncief_Relationships$); - oncief_Relationships$__clinit_(); +oncipv_Cypher25Parser_dropRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 416, 208); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2666); + oavr_Parser_match($this, 229); + oavr_Recognizer_setState($this, 2667); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2670); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2668); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2669); + oavr_Parser_match($this, 101); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14; - var$1 = new oncief_Relationships$; - oncief_Relationships$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Relationships$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Relationships$_MODULE$; - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_PathType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTPath(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTRelationship($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$14 = sr_ScalaRunTime$_MODULE$; - var$11 = $rt_createArray(s_Tuple2, 1); - var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5839)); - var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$11)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5840), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Relationships$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_renameRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RenameRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 418, 209); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2672); + oavr_Parser_match($this, 229); + oavr_Recognizer_setState($this, 2673); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2676); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2674); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2675); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 2678); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 2679); + oncipv_Cypher25Parser_commandNameExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$_name = $this => { - return $rt_s(5841); +oncipv_Cypher25Parser_showRoles = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowRolesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 420, 210); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2682); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 196)) { + oavr_Recognizer_setState($this, 2681); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 196) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2684); + oncipv_Cypher25Parser_roleToken($this); + oavr_Recognizer_setState($this, 2687); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 295) { + oavr_Recognizer_setState($this, 2685); + oavr_Parser_match($this, 295); + oavr_Recognizer_setState($this, 2686); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 285 && $_la != 286) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2690); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2689); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_grantRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GrantRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 422, 211); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2692); + oncipv_Cypher25Parser_roleNames($this); + oavr_Recognizer_setState($this, 2693); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 2694); + oncipv_Cypher25Parser_userNames($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_revokeRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RevokeRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 424, 212); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2696); + oncipv_Cypher25Parser_roleNames($this); + oavr_Recognizer_setState($this, 2697); + oavr_Parser_match($this, 110); + oavr_Recognizer_setState($this, 2698); + oncipv_Cypher25Parser_userNames($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_createUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 426, 213); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2700); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 2701); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2705); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2702); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2703); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 2704); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 2716); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + e: { + oavr_Recognizer_setState($this, 2707); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 2714); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 312, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2709); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 2710); + oncipv_Cypher25Parser_passwordChangeRequired($this); + break e; + case 3: + oavr_Recognizer_setState($this, 2711); + oncipv_Cypher25Parser_userStatus($this); + break e; + case 4: + oavr_Recognizer_setState($this, 2712); + oncipv_Cypher25Parser_homeDatabase($this); + break e; + case 5: + oavr_Recognizer_setState($this, 2713); + oncipv_Cypher25Parser_setAuthClause($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2708); + oncipv_Cypher25Parser_password($this); + } + oavr_Recognizer_setState($this, 2718); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 244) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$_hashCode = $this => { - return 1271496987; +oncipv_Cypher25Parser_dropUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 428, 214); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2720); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 2721); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2724); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2722); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2723); + oavr_Parser_match($this, 101); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$_toString = $this => { - return $rt_s(5842); +oncipv_Cypher25Parser_renameUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RenameUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 430, 215); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2726); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 2727); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2730); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2728); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2729); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 2732); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 2733); + oncipv_Cypher25Parser_commandNameExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Relationships$_signatures0 = $this => { - oncief_Relationships$_$callClinit(); - return oncief_Relationships$_signatures; -}; -let oncief_Replace$ = $rt_classWithoutFields(oncief_Function), -oncief_Replace$_MODULE$ = null, -oncief_Replace$_signatures = null, -oncief_Replace$_$callClinit = () => { - oncief_Replace$_$callClinit = $rt_eraseClinit(oncief_Replace$); - oncief_Replace$__clinit_(); +oncipv_Cypher25Parser_alterCurrentUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterCurrentUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 432, 216); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2735); + oavr_Parser_match($this, 59); + oavr_Recognizer_setState($this, 2736); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 2737); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 2738); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 2739); + oavr_Parser_match($this, 110); + oavr_Recognizer_setState($this, 2740); + oncipv_Cypher25Parser_passwordExpression($this); + oavr_Recognizer_setState($this, 2741); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 2742); + oncipv_Cypher25Parser_passwordExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Replace$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$3, $x$8, var$9, var$10, $x$4, $x$6, var$13, var$14, $x$10; - var$1 = new oncief_Replace$; - oncief_Replace$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Replace$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Replace$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5755), $rt_s(5843), $rt_s(5844)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_StringType, 3); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[2] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 3); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5755), $rt_s(5845)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5843), $rt_s(5846)); - var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5844), $rt_s(5847)); - var$14 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$13, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5848), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Replace$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_alterUser = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 434, 217); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2744); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 2745); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2748); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 2746); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 2747); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 2763); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + e: { + f: while (true) { + if ($_la != 220) + break e; + g: { + oavr_Recognizer_setState($this, 2750); + oavr_Parser_match($this, 220); + oavr_Recognizer_setState($this, 2759); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 18: + oavr_Recognizer_setState($this, 2753); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 2754); + oavr_Parser_match($this, 28); + oavr_Recognizer_setState($this, 2756); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 206 && $_la != 207) + break g; + oavr_Recognizer_setState($this, 2755); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 206 && $_la != 207) { + $this.$_errHandler.$recoverInline($this); + break g; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break g; + case 28: + break; + case 122: + oavr_Recognizer_setState($this, 2751); + oavr_Parser_match($this, 122); + oavr_Recognizer_setState($this, 2752); + oavr_Parser_match($this, 61); + break g; + default: + break f; + } + oavr_Recognizer_setState($this, 2758); + oncipv_Cypher25Parser_removeNamedProvider($this); + } + oavr_Recognizer_setState($this, 2765); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 2777); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 244) { + h: { + oavr_Recognizer_setState($this, 2766); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 2773); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 320, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2768); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 2769); + oncipv_Cypher25Parser_passwordChangeRequired($this); + break h; + case 3: + oavr_Recognizer_setState($this, 2770); + oncipv_Cypher25Parser_userStatus($this); + break h; + case 4: + oavr_Recognizer_setState($this, 2771); + oncipv_Cypher25Parser_homeDatabase($this); + break h; + case 5: + oavr_Recognizer_setState($this, 2772); + oncipv_Cypher25Parser_setAuthClause($this); + break h; + default: + break h; + } + oavr_Recognizer_setState($this, 2767); + oncipv_Cypher25Parser_password($this); + } + oavr_Recognizer_setState($this, 2779); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Replace$_name = $this => { - return $rt_s(5844); +oncipv_Cypher25Parser_removeNamedProvider = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RemoveNamedProviderContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 436, 218); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2780); + oavr_Parser_match($this, 28); + oavr_Recognizer_setState($this, 2782); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 206 && $_la != 207)) { + oavr_Recognizer_setState($this, 2781); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 206 && $_la != 207) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + e: { + oavr_Recognizer_setState($this, 2787); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 8: + case 9: + oavr_Recognizer_setState($this, 2784); + oncipv_Cypher25Parser_stringLiteral($this); + break e; + case 76: + oavr_Recognizer_setState($this, 2786); + oncipv_Cypher25Parser_parameter($this, $rt_s(708)); + break e; + case 142: + oavr_Recognizer_setState($this, 2785); + oncipv_Cypher25Parser_stringListLiteral($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Replace$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_password = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PasswordContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 438, 219); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2790); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 93 && $_la != 192)) { + oavr_Recognizer_setState($this, 2789); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 93 && $_la != 192) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2792); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 2793); + oncipv_Cypher25Parser_passwordExpression($this); + oavr_Recognizer_setState($this, 2795); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 41) { + oavr_Recognizer_setState($this, 2794); + oncipv_Cypher25Parser_passwordChangeRequired($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Replace$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_passwordOnly = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PasswordOnlyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 440, 220); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2798); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 93 && $_la != 192)) { + oavr_Recognizer_setState($this, 2797); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 93 && $_la != 192) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2800); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 2801); + oncipv_Cypher25Parser_passwordExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Replace$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_passwordExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PasswordExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 442, 221); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2805); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 8: + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2803); + oncipv_Cypher25Parser_stringLiteral($this); + break e; + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2804); + oncipv_Cypher25Parser_parameter($this, $rt_s(714)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher25Parser_passwordChangeRequired = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PasswordChangeRequiredContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 444, 222); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2807); + oavr_Parser_match($this, 41); + oavr_Recognizer_setState($this, 2809); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { + oavr_Recognizer_setState($this, 2808); + oavr_Parser_match($this, 175); + } + oavr_Recognizer_setState($this, 2811); + oavr_Parser_match($this, 225); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Replace$_hashCode = $this => { - return (-1535817068); +oncipv_Cypher25Parser_userStatus = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UserStatusContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 446, 223); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2813); + oavr_Parser_match($this, 255); + oavr_Recognizer_setState($this, 2814); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 12 && $_la != 259) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Replace$_toString = $this => { - return $rt_s(5849); +oncipv_Cypher25Parser_homeDatabase = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$HomeDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 448, 224); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2816); + oavr_Parser_match($this, 122); + oavr_Recognizer_setState($this, 2817); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 2818); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Replace$_signatures0 = $this => { - oncief_Replace$_$callClinit(); - return oncief_Replace$_signatures; +oncipv_Cypher25Parser_setAuthClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SetAuthClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 450, 225); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2820); + oavr_Parser_match($this, 28); + oavr_Recognizer_setState($this, 2822); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 206) { + oavr_Recognizer_setState($this, 2821); + oavr_Parser_match($this, 206); + } + oavr_Recognizer_setState($this, 2824); + oncipv_Cypher25Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 2825); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 2828); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 2826); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 2827); + oncipv_Cypher25Parser_userAuthAttribute($this); + oavr_Recognizer_setState($this, 2830); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 244) + continue; + else + break; + } + oavr_Recognizer_setState($this, 2832); + oavr_Parser_match($this, 211); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$ = $rt_classWithoutFields(oncief_Function), -oncief_Reverse$_MODULE$ = null, -oncief_Reverse$_signatures = null, -oncief_Reverse$_$callClinit = () => { - oncief_Reverse$_$callClinit = $rt_eraseClinit(oncief_Reverse$); - oncief_Reverse$__clinit_(); +oncipv_Cypher25Parser_userAuthAttribute = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UserAuthAttributeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 452, 226); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2839); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 331, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2834); + oavr_Parser_match($this, 123); + oavr_Recognizer_setState($this, 2835); + oncipv_Cypher25Parser_stringOrParameterExpression($this); + break e; + case 2: + break; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2837); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 2838); + oncipv_Cypher25Parser_passwordChangeRequired($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2836); + oncipv_Cypher25Parser_passwordOnly($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$10, var$11, $x$8, $x$6, var$14, var$15, $x$4; - var$1 = new oncief_Reverse$; - oncief_Reverse$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Reverse$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Reverse$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - var$6 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Set(s_Predef$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$4 = oncius_package$_MODULE$; - var$15[1] = oncius_package$_CTList($x$4, oncius_package$_CTAny($x$4)); - $x$4 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_(var$6, $x$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = var$6; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - $x$4 = new oncius_ClosedDynamicUnionType; - $x$10 = s_Predef$_Set(s_Predef$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 2); - var$11 = var$8.data; - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$6 = oncius_package$_MODULE$; - var$11[1] = oncius_package$_CTList($x$6, oncius_package$_CTAny($x$6)); - oncius_ClosedDynamicUnionType__init_($x$4, $x$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5850)); - var$6 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5851), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$6); - oncief_Reverse$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_showUsers = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowUsersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 454, 227); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2841); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 285 && $_la != 286) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2844); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 295) { + oavr_Recognizer_setState($this, 2842); + oavr_Parser_match($this, 295); + oavr_Recognizer_setState($this, 2843); + oavr_Parser_match($this, 28); + } + oavr_Recognizer_setState($this, 2847); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2846); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$_name = $this => { - return $rt_s(5852); +oncipv_Cypher25Parser_showCurrentUser = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowCurrentUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 456, 228); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2849); + oavr_Parser_match($this, 59); + oavr_Recognizer_setState($this, 2850); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 2852); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2851); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_showSupportedPrivileges = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowSupportedPrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 458, 229); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2854); + oavr_Parser_match($this, 258); + oavr_Recognizer_setState($this, 2855); + oncipv_Cypher25Parser_privilegeToken($this); + oavr_Recognizer_setState($this, 2857); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2856); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_showPrivileges = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowPrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 460, 230); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2860); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 18) { + oavr_Recognizer_setState($this, 2859); + oavr_Parser_match($this, 18); + } + oavr_Recognizer_setState($this, 2862); + oncipv_Cypher25Parser_privilegeToken($this); + oavr_Recognizer_setState($this, 2864); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2863); + oncipv_Cypher25Parser_privilegeAsCommand($this); + } + oavr_Recognizer_setState($this, 2867); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2866); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_showRolePrivileges = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowRolePrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 462, 231); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2869); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 229 && $_la != 230) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2870); + oncipv_Cypher25Parser_roleNames($this); + oavr_Recognizer_setState($this, 2871); + oncipv_Cypher25Parser_privilegeToken($this); + oavr_Recognizer_setState($this, 2873); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2872); + oncipv_Cypher25Parser_privilegeAsCommand($this); + } + oavr_Recognizer_setState($this, 2876); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2875); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$_hashCode = $this => { - return (-1530467646); +oncipv_Cypher25Parser_showUserPrivileges = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowUserPrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 464, 232); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2878); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 285 && $_la != 286) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + e: { + oavr_Recognizer_setState($this, 2880); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 341, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2879); + oncipv_Cypher25Parser_userNames($this); + } + oavr_Recognizer_setState($this, 2882); + oncipv_Cypher25Parser_privilegeToken($this); + oavr_Recognizer_setState($this, 2884); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2883); + oncipv_Cypher25Parser_privilegeAsCommand($this); + } + oavr_Recognizer_setState($this, 2887); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 2886); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$_toString = $this => { - return $rt_s(5853); +oncipv_Cypher25Parser_privilegeAsCommand = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PrivilegeAsCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 466, 233); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2889); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 2891); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 228) { + oavr_Recognizer_setState($this, 2890); + oavr_Parser_match($this, 228); + } + oavr_Recognizer_setState($this, 2893); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 47 && $_la != 48) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Reverse$_signatures0 = $this => { - oncief_Reverse$_$callClinit(); - return oncief_Reverse$_signatures; +oncipv_Cypher25Parser_privilegeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PrivilegeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 468, 234); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2895); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 200 && $_la != 201) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Right$ = $rt_classWithoutFields(oncief_Function), -oncief_Right$_MODULE$ = null, -oncief_Right$_signatures = null, -oncief_Right$_$callClinit = () => { - oncief_Right$_$callClinit = $rt_eraseClinit(oncief_Right$); - oncief_Right$__clinit_(); +oncipv_Cypher25Parser_privilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 470, 235); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2909); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + case 51: + case 52: + case 128: + case 129: + case 161: + case 253: + case 256: + case 261: + case 271: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2899); + oncipv_Cypher25Parser_databasePrivilege($this); + break e; + case 15: + case 19: + case 26: + case 49: + case 61: + case 98: + case 125: + case 200: + case 215: + case 229: + case 242: + case 285: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 2900); + oncipv_Cypher25Parser_dbmsPrivilege($this); + break e; + case 18: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2897); + oncipv_Cypher25Parser_allPrivilege($this); + break e; + case 57: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2898); + oncipv_Cypher25Parser_createPrivilege($this); + break e; + case 69: + case 156: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 2903); + oncipv_Cypher25Parser_qualifiedGraphPrivileges($this); + break e; + case 83: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 2901); + oncipv_Cypher25Parser_dropPrivilege($this); + break e; + case 148: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 2902); + oncipv_Cypher25Parser_loadPrivilege($this); + break e; + case 155: + case 212: + case 273: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 2904); + oncipv_Cypher25Parser_qualifiedGraphPrivilegesWithProperty($this); + break e; + case 220: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 2905); + oncipv_Cypher25Parser_removePrivilege($this); + break e; + case 244: + oavr_Parser_enterOuterAlt($this, $_localctx, 10); + oavr_Recognizer_setState($this, 2906); + oncipv_Cypher25Parser_setPrivilege($this); + break e; + case 249: + oavr_Parser_enterOuterAlt($this, $_localctx, 11); + oavr_Recognizer_setState($this, 2907); + oncipv_Cypher25Parser_showPrivilege($this); + break e; + case 297: + oavr_Parser_enterOuterAlt($this, $_localctx, 12); + oavr_Recognizer_setState($this, 2908); + oncipv_Cypher25Parser_writePrivilege($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Right$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; - var$1 = new oncief_Right$; - oncief_Right$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Right$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Right$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5755), $rt_s(5756)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$7 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5755), $rt_s(5854)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5756), $rt_s(5855)); - var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5856), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); - oncief_Right$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_allPrivilege = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AllPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 472, 236); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2911); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 2913); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$3 = $_la - 61 | 0; + if (!(!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17, 8388608)), Long_ZERO)) && $_la != 201)) { + oavr_Recognizer_setState($this, 2912); + oncipv_Cypher25Parser_allPrivilegeType($this); + } + oavr_Recognizer_setState($this, 2915); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2916); + oncipv_Cypher25Parser_allPrivilegeTarget($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Right$_name = $this => { - return $rt_s(5857); +oncipv_Cypher25Parser_allPrivilegeType = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AllPrivilegeTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 474, 237); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2919); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 61 | 0; + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(17, 8388608)), Long_ZERO)) { + oavr_Recognizer_setState($this, 2918); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 61 | 0; + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(17, 8388608)), Long_ZERO)) { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else + $this.$_errHandler.$recoverInline($this); + } + oavr_Recognizer_setState($this, 2921); + oavr_Parser_match($this, 201); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Right$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_allPrivilegeTarget = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher25Parser$AllPrivilegeTargetContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 476, 238); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 2936); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 61: + case 62: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$DatabaseVariableTargetContext; + var$2 = $re; + oncipv_Cypher25Parser$DatabaseVariableTargetContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 2925); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 61) { + var$2 = $re; + if ($_la != 62) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break f; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2928); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + var$2 = $re; + oavr_Recognizer_setState($this, 2927); + oncipv_Cypher25Parser_symbolicAliasNameList($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + var$2 = $re; + oavr_Recognizer_setState($this, 2926); + oavr_Parser_match($this, 265); + break e; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + case 65: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$DBMSTargetContext; + var$2 = $re; + oncipv_Cypher25Parser$DBMSTargetContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 2935); + oavr_Parser_match($this, 65); + break e; + case 116: + case 117: + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$GraphVariableTargetContext; + var$2 = $re; + oncipv_Cypher25Parser$GraphVariableTargetContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 2930); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 116) { + var$2 = $re; + if ($_la != 117) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break g; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2933); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + var$2 = $re; + oavr_Recognizer_setState($this, 2932); + oncipv_Cypher25Parser_symbolicAliasNameList($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + var$2 = $re; + oavr_Recognizer_setState($this, 2931); + oavr_Parser_match($this, 265); + break e; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + case 122: + var$2 = $_localctx; + $re = new oncipv_Cypher25Parser$DefaultTargetContext; + var$2 = $re; + oncipv_Cypher25Parser$DefaultTargetContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 2923); + oavr_Parser_match($this, 122); + oavr_Recognizer_setState($this, 2924); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 61) { + var$2 = $re; + if ($_la != 116) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break e; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_Right$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_createPrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreatePrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 478, 239); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2938); + oavr_Parser_match($this, 57); + oavr_Recognizer_setState($this, 2951); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + case 49: + case 61: + case 229: + case 285: + oavr_Recognizer_setState($this, 2943); + oncipv_Cypher25Parser_actionForDBMS($this); + oavr_Recognizer_setState($this, 2944); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2945); + oavr_Parser_match($this, 65); + break e; + case 51: + case 52: + case 128: + case 129: + case 168: + oavr_Recognizer_setState($this, 2939); + oncipv_Cypher25Parser_createPrivilegeForDatabase($this); + oavr_Recognizer_setState($this, 2940); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2941); + oncipv_Cypher25Parser_databaseScope($this); + break e; + case 181: + oavr_Recognizer_setState($this, 2947); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2948); + oncipv_Cypher25Parser_graphScope($this); + oavr_Recognizer_setState($this, 2949); + oncipv_Cypher25Parser_graphQualifier($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Right$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_createPrivilegeForDatabase = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 480, 240); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2958); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 352, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2954); + oncipv_Cypher25Parser_constraintToken($this); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2955); + oncipv_Cypher25Parser_createNodePrivilegeToken($this); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 2956); + oncipv_Cypher25Parser_createRelPrivilegeToken($this); + break e; + case 5: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 2957); + oncipv_Cypher25Parser_createPropertyPrivilegeToken($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2953); + oncipv_Cypher25Parser_indexToken($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Right$_hashCode = $this => { - return 78959100; +oncipv_Cypher25Parser_createNodePrivilegeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 482, 241); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2960); + oavr_Parser_match($this, 168); + oavr_Recognizer_setState($this, 2962); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 169) { + oavr_Recognizer_setState($this, 2961); + oavr_Parser_match($this, 169); + } + oavr_Recognizer_setState($this, 2964); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 138 && $_la != 139) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Right$_toString = $this => { - return $rt_s(3642); +oncipv_Cypher25Parser_createRelPrivilegeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 484, 242); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2966); + oavr_Parser_match($this, 168); + oavr_Recognizer_setState($this, 2968); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 218) { + oavr_Recognizer_setState($this, 2967); + oavr_Parser_match($this, 218); + } + oavr_Recognizer_setState($this, 2970); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 276 && $_la != 278) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Right$_signatures0 = $this => { - oncief_Right$_$callClinit(); - return oncief_Right$_signatures; +oncipv_Cypher25Parser_createPropertyPrivilegeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 486, 243); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2972); + oavr_Parser_match($this, 168); + oavr_Recognizer_setState($this, 2974); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 205) { + oavr_Recognizer_setState($this, 2973); + oavr_Parser_match($this, 205); + } + oavr_Recognizer_setState($this, 2976); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 161 && $_la != 162) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$ = $rt_classWithoutFields(oncief_Function), -oncief_Round$_MODULE$ = null, -oncief_Round$_signatures = null, -oncief_Round$_$callClinit = () => { - oncief_Round$_$callClinit = $rt_eraseClinit(oncief_Round$); - oncief_Round$__clinit_(); +oncipv_Cypher25Parser_actionForDBMS = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ActionForDBMSContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 488, 244); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2985); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2978); + oavr_Parser_match($this, 15); + break e; + case 49: + case 61: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2980); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) { + oavr_Recognizer_setState($this, 2979); + oavr_Parser_match($this, 49); + } + oavr_Recognizer_setState($this, 2982); + oavr_Parser_match($this, 61); + break e; + case 229: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2983); + oavr_Parser_match($this, 229); + break e; + case 285: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 2984); + oavr_Parser_match($this, 285); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$39, $x$23, $x$10, $x$14, $x$15, $x$16, $x$17, $x$19, $x$21, $x$27, $x$28, $x$29, $x$30, $x$32, $x$34, $x$36; - var$1 = new oncief_Round$; - oncief_Round$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Round$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 3); - var$4 = var$3.data; - $x$1 = oncief_Round$_MODULE$; - $x$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1201); - $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - $x$39 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1201), $rt_s(5858)); - $x$23 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$39, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5859), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$23); - $x$14 = oncief_Round$_MODULE$; - $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1201), $rt_s(5860)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 2); - var$11 = var$8.data; - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$11[1] = oncius_package$_CTNumber(oncius_package$_MODULE$); - $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$17 = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$19 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); - $x$3 = s_Predef$_Map(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 2); - var$11 = var$8.data; - var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1201), $rt_s(5858)); - var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5860), $rt_s(5861)); - $x$3 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$23 = s_None$_MODULE$; - var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5862), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$3); - $x$27 = oncief_Round$_MODULE$; - $x$28 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1201), $rt_s(5860), $rt_s(5011)]))); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 3); - var$11 = var$8.data; - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$11[1] = oncius_package$_CTNumber(oncius_package$_MODULE$); - var$11[2] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$29 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$30 = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$32 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); - $x$3 = s_Predef$_Map(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 3); - var$11 = var$8.data; - var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1201), $rt_s(5858)); - var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5860), $rt_s(5861)); - var$11[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5011), $rt_s(5863)); - $x$6 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$34 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$36 = s_None$_MODULE$; - var$4[2] = oncie_FunctionTypeSignature__init_($x$27, $x$30, $x$28, $rt_s(5864), $x$32, $x$29, $x$34, 0, $x$36, 0, $x$36, oncie_FunctionTypeSignature$_apply$default$12(oncie_FunctionTypeSignature$_MODULE$), $x$6); - oncief_Round$_signatures = sci_Vector$_apply(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_dropPrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 490, 245); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2987); + oavr_Parser_match($this, 83); + oavr_Recognizer_setState($this, 2999); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + case 49: + case 61: + case 229: + case 285: + oavr_Recognizer_setState($this, 2995); + oncipv_Cypher25Parser_actionForDBMS($this); + oavr_Recognizer_setState($this, 2996); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2997); + oavr_Parser_match($this, 65); + break e; + case 51: + case 52: + case 128: + case 129: + f: { + oavr_Recognizer_setState($this, 2990); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 51: + case 52: + oavr_Recognizer_setState($this, 2989); + oncipv_Cypher25Parser_constraintToken($this); + break f; + case 128: + case 129: + oavr_Recognizer_setState($this, 2988); + oncipv_Cypher25Parser_indexToken($this); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 2992); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 2993); + oncipv_Cypher25Parser_databaseScope($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$_name = $this => { - return $rt_s(5865); +oncipv_Cypher25Parser_loadPrivilege = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LoadPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 492, 246); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3001); + oavr_Parser_match($this, 148); + oavr_Recognizer_setState($this, 3002); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3007); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 18: + oavr_Recognizer_setState($this, 3005); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 3006); + oavr_Parser_match($this, 60); + break e; + case 42: + case 283: + oavr_Recognizer_setState($this, 3003); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 42 && $_la != 283) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3004); + oncipv_Cypher25Parser_stringOrParameter($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_showPrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 494, 247); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3009); + oavr_Parser_match($this, 249); + oavr_Recognizer_setState($this, 3034); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + case 200: + case 229: + case 242: + case 243: + case 245: + case 246: + case 285: + f: { + oavr_Recognizer_setState($this, 3030); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 3021); + oavr_Parser_match($this, 15); + break f; + case 200: + oavr_Recognizer_setState($this, 3022); + oavr_Parser_match($this, 200); + break f; + case 229: + oavr_Recognizer_setState($this, 3023); + oavr_Parser_match($this, 229); + break f; + case 242: + oavr_Recognizer_setState($this, 3024); + oavr_Parser_match($this, 242); + break f; + case 243: + oavr_Recognizer_setState($this, 3025); + oavr_Parser_match($this, 243); + break f; + case 245: + case 246: + oavr_Recognizer_setState($this, 3026); + oncipv_Cypher25Parser_settingToken($this); + oavr_Recognizer_setState($this, 3027); + oncipv_Cypher25Parser_settingQualifier($this); + break f; + case 285: + oavr_Recognizer_setState($this, 3029); + oavr_Parser_match($this, 285); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3032); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3033); + oavr_Parser_match($this, 65); + break e; + case 51: + case 52: + case 128: + case 129: + case 271: + case 272: + g: { + oavr_Recognizer_setState($this, 3016); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 51: + case 52: + oavr_Recognizer_setState($this, 3011); + oncipv_Cypher25Parser_constraintToken($this); + break g; + case 128: + case 129: + oavr_Recognizer_setState($this, 3010); + oncipv_Cypher25Parser_indexToken($this); + break g; + case 271: + case 272: + oavr_Recognizer_setState($this, 3012); + oncipv_Cypher25Parser_transactionToken($this); + oavr_Recognizer_setState($this, 3014); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 151) + break g; + oavr_Recognizer_setState($this, 3013); + oncipv_Cypher25Parser_userQualifier($this); + break g; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3018); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3019); + oncipv_Cypher25Parser_databaseScope($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_setPrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SetPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 496, 248); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3036); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 3064); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 28: + oavr_Recognizer_setState($this, 3061); + oavr_Parser_match($this, 28); + oavr_Recognizer_setState($this, 3062); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3063); + oavr_Parser_match($this, 65); + break e; + case 61: + case 188: + case 189: + case 285: + f: { + oavr_Recognizer_setState($this, 3046); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 61: + oavr_Recognizer_setState($this, 3044); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3045); + oavr_Parser_match($this, 11); + break f; + case 188: + case 189: + oavr_Recognizer_setState($this, 3037); + oncipv_Cypher25Parser_passwordToken($this); + break f; + case 285: + oavr_Recognizer_setState($this, 3038); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 3042); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 122: + oavr_Recognizer_setState($this, 3040); + oavr_Parser_match($this, 122); + oavr_Recognizer_setState($this, 3041); + oavr_Parser_match($this, 61); + break f; + case 255: + oavr_Recognizer_setState($this, 3039); + oavr_Parser_match($this, 255); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3048); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3049); + oavr_Parser_match($this, 65); + break e; + case 138: + oavr_Recognizer_setState($this, 3050); + oavr_Parser_match($this, 138); + oavr_Recognizer_setState($this, 3051); + oncipv_Cypher25Parser_labelsResource($this); + oavr_Recognizer_setState($this, 3052); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3053); + oncipv_Cypher25Parser_graphScope($this); + break e; + case 205: + oavr_Recognizer_setState($this, 3055); + oavr_Parser_match($this, 205); + oavr_Recognizer_setState($this, 3056); + oncipv_Cypher25Parser_propertiesResource($this); + oavr_Recognizer_setState($this, 3057); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3058); + oncipv_Cypher25Parser_graphScope($this); + oavr_Recognizer_setState($this, 3059); + oncipv_Cypher25Parser_graphQualifier($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_passwordToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PasswordTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 498, 249); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3066); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 188 && $_la != 189) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$_hashCode = $this => { - return 79151470; +oncipv_Cypher25Parser_removePrivilege = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RemovePrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 500, 250); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3068); + oavr_Parser_match($this, 220); + oavr_Recognizer_setState($this, 3077); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 138: + oavr_Recognizer_setState($this, 3072); + oavr_Parser_match($this, 138); + oavr_Recognizer_setState($this, 3073); + oncipv_Cypher25Parser_labelsResource($this); + oavr_Recognizer_setState($this, 3074); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3075); + oncipv_Cypher25Parser_graphScope($this); + break e; + case 200: + case 229: + oavr_Recognizer_setState($this, 3069); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 200 && $_la != 229) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3070); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3071); + oavr_Parser_match($this, 65); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$_toString = $this => { - return $rt_s(5866); +oncipv_Cypher25Parser_writePrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$WritePrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 502, 251); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3079); + oavr_Parser_match($this, 297); + oavr_Recognizer_setState($this, 3080); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3081); + oncipv_Cypher25Parser_graphScope($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Round$_signatures0 = $this => { - oncief_Round$_$callClinit(); - return oncief_Round$_signatures; +oncipv_Cypher25Parser_databasePrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DatabasePrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 504, 252); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3105); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + oavr_Recognizer_setState($this, 3083); + oavr_Parser_match($this, 11); + break e; + case 51: + case 52: + case 128: + case 129: + case 161: + g: { + oavr_Recognizer_setState($this, 3089); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 51: + case 52: + oavr_Recognizer_setState($this, 3087); + oncipv_Cypher25Parser_constraintToken($this); + break g; + case 128: + case 129: + oavr_Recognizer_setState($this, 3086); + oncipv_Cypher25Parser_indexToken($this); + break g; + case 161: + oavr_Recognizer_setState($this, 3088); + oavr_Parser_match($this, 161); + break g; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3092); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 153) + break e; + oavr_Recognizer_setState($this, 3091); + oavr_Parser_match($this, 153); + break e; + case 253: + oavr_Recognizer_setState($this, 3084); + oavr_Parser_match($this, 253); + break e; + case 256: + oavr_Recognizer_setState($this, 3085); + oavr_Parser_match($this, 256); + break e; + case 261: + case 271: + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + h: { + oavr_Recognizer_setState($this, 3100); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 261: + oavr_Recognizer_setState($this, 3098); + oavr_Parser_match($this, 261); + oavr_Recognizer_setState($this, 3099); + oncipv_Cypher25Parser_transactionToken($this); + break h; + case 271: + oavr_Recognizer_setState($this, 3094); + oavr_Parser_match($this, 271); + oavr_Recognizer_setState($this, 3096); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 153) + break h; + oavr_Recognizer_setState($this, 3095); + oavr_Parser_match($this, 153); + break h; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3103); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) { + oavr_Recognizer_setState($this, 3102); + oncipv_Cypher25Parser_userQualifier($this); + } + } + oavr_Recognizer_setState($this, 3107); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3108); + oncipv_Cypher25Parser_databaseScope($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$ = $rt_classWithoutFields(oncief_Function), -oncief_RTrim$_MODULE$ = null; -let oncief_RTrim$_signatures = null, -oncief_RTrim$_$callClinit = () => { - oncief_RTrim$_$callClinit = $rt_eraseClinit(oncief_RTrim$); - oncief_RTrim$__clinit_(); +oncipv_Cypher25Parser_dbmsPrivilege = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DbmsPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 506, 253); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3133); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + case 49: + case 61: + case 200: + case 229: + case 242: + case 285: + g: { + oavr_Recognizer_setState($this, 3123); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 3114); + oavr_Parser_match($this, 15); + break g; + case 49: + case 61: + oavr_Recognizer_setState($this, 3116); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) { + oavr_Recognizer_setState($this, 3115); + oavr_Parser_match($this, 49); + } + oavr_Recognizer_setState($this, 3118); + oavr_Parser_match($this, 61); + break g; + case 200: + oavr_Recognizer_setState($this, 3119); + oavr_Parser_match($this, 200); + break g; + case 229: + oavr_Recognizer_setState($this, 3120); + oavr_Parser_match($this, 229); + break g; + case 242: + oavr_Recognizer_setState($this, 3121); + oavr_Parser_match($this, 242); + break g; + case 285: + oavr_Recognizer_setState($this, 3122); + oavr_Parser_match($this, 285); + break g; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3125); + oavr_Parser_match($this, 153); + break e; + case 19: + oavr_Recognizer_setState($this, 3110); + oavr_Parser_match($this, 19); + oavr_Recognizer_setState($this, 3111); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 15 && $_la != 61 && $_la != 285) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + case 26: + break f; + case 98: + oavr_Recognizer_setState($this, 3126); + oncipv_Cypher25Parser_dbmsPrivilegeExecute($this); + break e; + case 125: + oavr_Recognizer_setState($this, 3129); + oavr_Parser_match($this, 125); + oavr_Recognizer_setState($this, 3131); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 151) + break e; + oavr_Recognizer_setState($this, 3130); + oncipv_Cypher25Parser_userQualifier($this); + break e; + case 215: + oavr_Recognizer_setState($this, 3127); + oavr_Parser_match($this, 215); + oavr_Recognizer_setState($this, 3128); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 229 && $_la != 285) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3112); + oavr_Parser_match($this, 26); + oavr_Recognizer_setState($this, 3113); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 200 && $_la != 229) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 3135); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3136); + oavr_Parser_match($this, 65); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$14, $x$16, $x$10, $x$15, $x$17, $x$19, $x$21, $x$23; - var$1 = new oncief_RTrim$; - oncief_RTrim$_$callClinit(); - oncief_Function__init_(var$1); - oncief_RTrim$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); - var$4 = var$3.data; - $x$1 = oncief_RTrim$_MODULE$; - $x$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - $x$14 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5440)); - $x$16 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$14, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5867), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$16); - $x$14 = oncief_RTrim$_MODULE$; - $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1141), $rt_s(5442)]))); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 2); - var$11 = var$8.data; - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$11[1] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$16 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); - $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$3 = s_Predef$_Map(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 2); - var$11 = var$8.data; - var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5657)); - var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5442), $rt_s(5658)); - $x$6 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$23 = s_None$_MODULE$; - var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5868), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$6); - oncief_RTrim$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_dbmsPrivilegeExecute = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 508, 254); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3138); + oavr_Parser_match($this, 98); + oavr_Recognizer_setState($this, 3159); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 13: + case 14: + oavr_Recognizer_setState($this, 3139); + oncipv_Cypher25Parser_adminToken($this); + oavr_Recognizer_setState($this, 3140); + oavr_Parser_match($this, 203); + break e; + case 33: + case 112: + case 113: + case 202: + case 203: + case 285: + oavr_Recognizer_setState($this, 3143); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 33) { + oavr_Recognizer_setState($this, 3142); + oavr_Parser_match($this, 33); + } + oavr_Recognizer_setState($this, 3157); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 112: + case 113: + case 285: + oavr_Recognizer_setState($this, 3152); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 285) { + oavr_Recognizer_setState($this, 3148); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 3150); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 68) { + oavr_Recognizer_setState($this, 3149); + oavr_Parser_match($this, 68); + } + } + oavr_Recognizer_setState($this, 3154); + oncipv_Cypher25Parser_functionToken($this); + oavr_Recognizer_setState($this, 3155); + oncipv_Cypher25Parser_executeFunctionQualifier($this); + break e; + case 202: + case 203: + oavr_Recognizer_setState($this, 3145); + oncipv_Cypher25Parser_procedureToken($this); + oavr_Recognizer_setState($this, 3146); + oncipv_Cypher25Parser_executeProcedureQualifier($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$_name = $this => { - return $rt_s(5869); +oncipv_Cypher25Parser_adminToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AdminTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 510, 255); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3161); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 13 && $_la != 14) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_procedureToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ProcedureTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 512, 256); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3163); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 202 && $_la != 203) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_indexToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$IndexTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 514, 257); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3165); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 128 && $_la != 129) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_constraintToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ConstraintTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 516, 258); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3167); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 51 && $_la != 52) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$_hashCode = $this => { - return 78344084; +oncipv_Cypher25Parser_transactionToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$TransactionTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 518, 259); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3169); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 271 && $_la != 272) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$_toString = $this => { - return $rt_s(5870); +oncipv_Cypher25Parser_userQualifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UserQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 520, 260); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3171); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 3174); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 3173); + oncipv_Cypher25Parser_userNames($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Recognizer_setState($this, 3172); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3176); + oavr_Parser_match($this, 233); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_RTrim$_signatures0 = $this => { - oncief_RTrim$_$callClinit(); - return oncief_RTrim$_signatures; +oncipv_Cypher25Parser_executeFunctionQualifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ExecuteFunctionQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 522, 261); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3178); + oncipv_Cypher25Parser_globs($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$ = $rt_classWithoutFields(oncief_Function), -oncief_Sign$_MODULE$ = null, -oncief_Sign$_signatures = null, -oncief_Sign$_$callClinit = () => { - oncief_Sign$_$callClinit = $rt_eraseClinit(oncief_Sign$); - oncief_Sign$__clinit_(); +oncipv_Cypher25Parser_executeProcedureQualifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ExecuteProcedureQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 524, 262); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3180); + oncipv_Cypher25Parser_globs($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$10, $x$3, var$8, $x$2, $x$4, var$11, $x$8, var$13, var$14, var$15, $x$6; - var$1 = new oncief_Sign$; - oncief_Sign$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Sign$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Sign$_MODULE$; - $x$10 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - $x$10 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$13 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$10, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = $x$10; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5871)); - var$13 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5872), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$13); - oncief_Sign$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_settingQualifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SettingQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 526, 263); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3182); + oncipv_Cypher25Parser_globs($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$_name = $this => { - return $rt_s(5873); +oncipv_Cypher25Parser_globs = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GlobsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 528, 264); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3184); + oncipv_Cypher25Parser_glob($this); + oavr_Recognizer_setState($this, 3189); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 3185); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 3186); + oncipv_Cypher25Parser_glob($this); + oavr_Recognizer_setState($this, 3191); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_glob = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GlobContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 530, 265); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3197); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3192); + oncipv_Cypher25Parser_escapedSymbolicNameString($this); + oavr_Recognizer_setState($this, 3194); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 386, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 3193); + oncipv_Cypher25Parser_globRecursive($this); + } + break e; + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 79: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3196); + oncipv_Cypher25Parser_globRecursive($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_globRecursive = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GlobRecursiveContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 532, 266); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3199); + oncipv_Cypher25Parser_globPart($this); + oavr_Recognizer_setState($this, 3201); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 388, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 3200); + oncipv_Cypher25Parser_globRecursive($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_globPart = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GlobPartContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 534, 267); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3210); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 3209); + oncipv_Cypher25Parser_unescapedSymbolicNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 79: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3203); + oavr_Parser_match($this, 79); + oavr_Recognizer_setState($this, 3205); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 10) + break e; + oavr_Recognizer_setState($this, 3204); + oncipv_Cypher25Parser_escapedSymbolicNameString($this); + break e; + case 208: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3207); + oavr_Parser_match($this, 208); + break e; + case 265: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3208); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$_hashCode = $this => { - return 2576861; +oncipv_Cypher25Parser_qualifiedGraphPrivilegesWithProperty = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 536, 268); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3215); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 155: + case 212: + oavr_Recognizer_setState($this, 3213); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 155 && $_la != 212) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3214); + oncipv_Cypher25Parser_propertiesResource($this); + break e; + case 273: + oavr_Recognizer_setState($this, 3212); + oavr_Parser_match($this, 273); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3217); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3218); + oncipv_Cypher25Parser_graphScope($this); + oavr_Recognizer_setState($this, 3219); + oncipv_Cypher25Parser_graphQualifier($this); + oavr_Recognizer_setState($this, 3223); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) { + oavr_Recognizer_setState($this, 3220); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 3221); + oavr_Parser_match($this, 265); + oavr_Recognizer_setState($this, 3222); + oavr_Parser_match($this, 233); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$_toString = $this => { - return $rt_s(5874); +oncipv_Cypher25Parser_qualifiedGraphPrivileges = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 538, 269); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3228); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 69: + oavr_Recognizer_setState($this, 3225); + oavr_Parser_match($this, 69); + break e; + case 156: + oavr_Recognizer_setState($this, 3226); + oavr_Parser_match($this, 156); + oavr_Recognizer_setState($this, 3227); + oncipv_Cypher25Parser_propertiesResource($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3230); + oavr_Parser_match($this, 181); + oavr_Recognizer_setState($this, 3231); + oncipv_Cypher25Parser_graphScope($this); + oavr_Recognizer_setState($this, 3232); + oncipv_Cypher25Parser_graphQualifier($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sign$_signatures0 = $this => { - oncief_Sign$_$callClinit(); - return oncief_Sign$_signatures; +oncipv_Cypher25Parser_labelsResource = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$LabelsResourceContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 540, 270); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3236); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3235); + oncipv_Cypher25Parser_nonEmptyStringList($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3234); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$ = $rt_classWithoutFields(oncief_Function), -oncief_Sin$_MODULE$ = null, -oncief_Sin$_signatures = null, -oncief_Sin$_$callClinit = () => { - oncief_Sin$_$callClinit = $rt_eraseClinit(oncief_Sin$); - oncief_Sin$__clinit_(); +oncipv_Cypher25Parser_propertiesResource = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PropertiesResourceContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 542, 271); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3238); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 3241); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 3240); + oncipv_Cypher25Parser_nonEmptyStringList($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Recognizer_setState($this, 3239); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3243); + oavr_Parser_match($this, 211); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher25Parser_nonEmptyStringList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NonEmptyStringListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 544, 272); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3245); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3250); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 3246); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 3247); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3252); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Sin$; - oncief_Sin$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Sin$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Sin$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5875), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Sin$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_graphQualifier = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GraphQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 546, 273); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3286); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 90: + case 91: + case 169: + case 171: + case 218: + case 219: + oavr_Recognizer_setState($this, 3253); + oncipv_Cypher25Parser_graphQualifierToken($this); + oavr_Recognizer_setState($this, 3256); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 3255); + oncipv_Cypher25Parser_nonEmptyStringList($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Recognizer_setState($this, 3254); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 108: + f: { + oavr_Recognizer_setState($this, 3258); + oavr_Parser_match($this, 108); + oavr_Recognizer_setState($this, 3259); + oavr_Parser_match($this, 151); + oavr_Recognizer_setState($this, 3261); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 398, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 3260); + oncipv_Cypher25Parser_variable($this); + } + g: { + oavr_Recognizer_setState($this, 3272); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) { + oavr_Recognizer_setState($this, 3263); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 3264); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3269); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 29) + break g; + oavr_Recognizer_setState($this, 3265); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 3266); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3271); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + } + oavr_Recognizer_setState($this, 3284); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 143: + case 294: + h: { + oavr_Recognizer_setState($this, 3280); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 143: + oavr_Recognizer_setState($this, 3279); + oncipv_Cypher25Parser_map($this); + break h; + case 294: + oavr_Recognizer_setState($this, 3277); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 3278); + oncipv_Cypher25Parser_expression($this); + break h; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3282); + oavr_Parser_match($this, 233); + break e; + case 233: + oavr_Recognizer_setState($this, 3274); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 3275); + oavr_Parser_match($this, 294); + oavr_Recognizer_setState($this, 3276); + oncipv_Cypher25Parser_expression($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 110: + case 151: + case 268: + break; + default: + break e; + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$_name = $this => { - return $rt_s(5876); +oncipv_Cypher25Parser_graphQualifierToken = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GraphQualifierTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 548, 274); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3291); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 90: + case 91: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3290); + oncipv_Cypher25Parser_elementToken($this); + break e; + case 169: + case 171: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3289); + oncipv_Cypher25Parser_nodeToken($this); + break e; + case 218: + case 219: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3288); + oncipv_Cypher25Parser_relToken($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_relToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$RelTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 550, 275); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3293); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 218 && $_la != 219) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_elementToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ElementTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 552, 276); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3295); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 90 && $_la != 91) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_nodeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$NodeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 554, 277); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3297); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 169 && $_la != 171) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$_hashCode = $this => { - return 83128; +oncipv_Cypher25Parser_databaseScope = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DatabaseScopeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 556, 278); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3306); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 61: + case 62: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3301); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 61 && $_la != 62) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3304); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 3303); + oncipv_Cypher25Parser_symbolicAliasNameList($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Recognizer_setState($this, 3302); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 122: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3299); + oavr_Parser_match($this, 122); + oavr_Recognizer_setState($this, 3300); + oavr_Parser_match($this, 61); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$_toString = $this => { - return $rt_s(5877); +oncipv_Cypher25Parser_graphScope = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$GraphScopeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 558, 279); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3315); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 116: + case 117: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3310); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 116 && $_la != 117) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3313); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Recognizer_setState($this, 3312); + oncipv_Cypher25Parser_symbolicAliasNameList($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + break; + case 265: + oavr_Recognizer_setState($this, 3311); + oavr_Parser_match($this, 265); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 122: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3308); + oavr_Parser_match($this, 122); + oavr_Recognizer_setState($this, 3309); + oavr_Parser_match($this, 116); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sin$_signatures0 = $this => { - oncief_Sin$_$callClinit(); - return oncief_Sin$_signatures; +oncipv_Cypher25Parser_createCompositeDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateCompositeDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 560, 280); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3317); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 3318); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3319); + oncipv_Cypher25Parser_databaseName($this); + oavr_Recognizer_setState($this, 3323); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 3320); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 3321); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 3322); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 3326); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { + oavr_Recognizer_setState($this, 3325); + oncipv_Cypher25Parser_commandOptions($this); + } + oavr_Recognizer_setState($this, 3329); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 177 && $_la != 292)) { + oavr_Recognizer_setState($this, 3328); + oncipv_Cypher25Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$ = $rt_classWithoutFields(oncief_Function), -oncief_Size$_MODULE$ = null, -oncief_Size$_signatures = null, -oncief_Size$_$callClinit = () => { - oncief_Size$_$callClinit = $rt_eraseClinit(oncief_Size$); - oncief_Size$__clinit_(); +oncipv_Cypher25Parser_createDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 562, 281); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3331); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3332); + oncipv_Cypher25Parser_databaseName($this); + oavr_Recognizer_setState($this, 3336); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 3333); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 3334); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 3335); + oavr_Parser_match($this, 101); + } + e: { + oavr_Recognizer_setState($this, 3345); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 269) { + oavr_Recognizer_setState($this, 3338); + oavr_Parser_match($this, 269); + oavr_Recognizer_setState($this, 3341); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + f: { + oavr_Recognizer_setState($this, 3341); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 413, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 3340); + oncipv_Cypher25Parser_secondaryTopology($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 3339); + oncipv_Cypher25Parser_primaryTopology($this); + } + oavr_Recognizer_setState($this, 3343); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la == 5) + continue; + if ($_la == 76) + continue; + else + break e; + } + } + } + oavr_Recognizer_setState($this, 3348); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { + oavr_Recognizer_setState($this, 3347); + oncipv_Cypher25Parser_commandOptions($this); + } + oavr_Recognizer_setState($this, 3351); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 177 && $_la != 292)) { + oavr_Recognizer_setState($this, 3350); + oncipv_Cypher25Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$10, var$13, var$14, var$15, var$16, $x$6; - var$1 = new oncief_Size$; - oncief_Size$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Size$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Size$_MODULE$; - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - $x$10 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - var$13 = s_Predef$_Set(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$16 = oncius_package$_MODULE$; - var$15[1] = oncius_package$_CTList(var$16, oncius_package$_CTAny(var$16)); - $x$8 = var$13.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$10, $x$8, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = $x$10; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$16 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5878)); - var$13 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$16, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5879), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$13); - oncief_Size$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_primaryTopology = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PrimaryTopologyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 564, 282); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3353); + oncipv_Cypher25Parser_uIntOrIntParameter($this); + oavr_Recognizer_setState($this, 3354); + oncipv_Cypher25Parser_primaryToken($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$_name = $this => { - return $rt_s(5880); +oncipv_Cypher25Parser_primaryToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$PrimaryTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 566, 283); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3356); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 198 && $_la != 199) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_secondaryTopology = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SecondaryTopologyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 568, 284); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3358); + oncipv_Cypher25Parser_uIntOrIntParameter($this); + oavr_Recognizer_setState($this, 3359); + oncipv_Cypher25Parser_secondaryToken($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_secondaryToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SecondaryTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 570, 285); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3361); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 237 && $_la != 238) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_dropDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 572, 286); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3364); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) { + oavr_Recognizer_setState($this, 3363); + oavr_Parser_match($this, 49); + } + oavr_Recognizer_setState($this, 3366); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3367); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3370); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 3368); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 3369); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 3373); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 39 && $_la != 226)) { + oavr_Recognizer_setState($this, 3372); + oncipv_Cypher25Parser_aliasAction($this); + } + oavr_Recognizer_setState($this, 3377); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 73 && $_la != 85)) { + oavr_Recognizer_setState($this, 3375); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 73 && $_la != 85) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3376); + oavr_Parser_match($this, 60); + } + oavr_Recognizer_setState($this, 3380); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 177 && $_la != 292)) { + oavr_Recognizer_setState($this, 3379); + oncipv_Cypher25Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$_hashCode = $this => { - return 2577441; +oncipv_Cypher25Parser_aliasAction = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AliasActionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 574, 287); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3385); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 39: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3383); + oavr_Parser_match($this, 39); + oavr_Recognizer_setState($this, 3384); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 15 && $_la != 16) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + case 226: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3382); + oavr_Parser_match($this, 226); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$_toString = $this => { - return $rt_s(5881); +oncipv_Cypher25Parser_alterDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 576, 288); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3387); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3388); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3391); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 3389); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 3390); + oavr_Parser_match($this, 101); + } + e: { + oavr_Recognizer_setState($this, 3410); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 220: + oavr_Recognizer_setState($this, 3406); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 3403); + oavr_Parser_match($this, 220); + oavr_Recognizer_setState($this, 3404); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3405); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3408); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 220) + continue; + else + break; + } + break e; + case 244: + oavr_Recognizer_setState($this, 3399); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + f: while (true) { + g: { + oavr_Recognizer_setState($this, 3393); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 3397); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + break; + case 185: + oavr_Recognizer_setState($this, 3396); + oncipv_Cypher25Parser_alterDatabaseOption($this); + break g; + case 269: + oavr_Recognizer_setState($this, 3395); + oncipv_Cypher25Parser_alterDatabaseTopology($this); + break g; + default: + break f; + } + oavr_Recognizer_setState($this, 3394); + oncipv_Cypher25Parser_alterDatabaseAccess($this); + } + oavr_Recognizer_setState($this, 3401); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 244) + continue; + else + break e; + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3413); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 177 && $_la != 292)) { + oavr_Recognizer_setState($this, 3412); + oncipv_Cypher25Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Size$_signatures0 = $this => { - oncief_Size$_$callClinit(); - return oncief_Size$_signatures; +oncipv_Cypher25Parser_alterDatabaseAccess = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterDatabaseAccessContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 578, 289); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3415); + oavr_Parser_match($this, 11); + oavr_Recognizer_setState($this, 3416); + oavr_Parser_match($this, 212); + oavr_Recognizer_setState($this, 3417); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 182 && $_la != 297) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sqrt$ = $rt_classWithoutFields(oncief_Function), -oncief_Sqrt$_MODULE$ = null, -oncief_Sqrt$_signatures = null, -oncief_Sqrt$_$callClinit = () => { - oncief_Sqrt$_$callClinit = $rt_eraseClinit(oncief_Sqrt$); - oncief_Sqrt$__clinit_(); -}; -let oncief_Sqrt$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Sqrt$; - oncief_Sqrt$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Sqrt$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Sqrt$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5882)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5883), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Sqrt$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_alterDatabaseTopology = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterDatabaseTopologyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 580, 290); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3419); + oavr_Parser_match($this, 269); + oavr_Recognizer_setState($this, 3422); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + e: { + oavr_Recognizer_setState($this, 3422); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 430, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 3421); + oncipv_Cypher25Parser_secondaryTopology($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 3420); + oncipv_Cypher25Parser_primaryTopology($this); + } + oavr_Recognizer_setState($this, 3424); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (var$2 == 5) + continue; + if (var$2 == 76) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sqrt$_name = $this => { - return $rt_s(5884); +oncipv_Cypher25Parser_alterDatabaseOption = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterDatabaseOptionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 582, 291); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3426); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3427); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3428); + oncipv_Cypher25Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sqrt$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_startDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StartDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 584, 292); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3430); + oavr_Parser_match($this, 253); + oavr_Recognizer_setState($this, 3431); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3432); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3434); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 177 && $_la != 292)) { + oavr_Recognizer_setState($this, 3433); + oncipv_Cypher25Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sqrt$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_stopDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StopDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 586, 293); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3436); + oavr_Parser_match($this, 256); + oavr_Recognizer_setState($this, 3437); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3438); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3440); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 177 && $_la != 292)) { + oavr_Recognizer_setState($this, 3439); + oncipv_Cypher25Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sqrt$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_waitClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$WaitClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 588, 294); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3450); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 177: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3449); + oavr_Parser_match($this, 177); + break e; + case 292: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3442); + oavr_Parser_match($this, 292); + oavr_Recognizer_setState($this, 3447); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 5) + break e; + oavr_Recognizer_setState($this, 3443); + oavr_Parser_match($this, 5); + oavr_Recognizer_setState($this, 3445); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 235 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(19)), Long_ZERO)) + break e; + oavr_Recognizer_setState($this, 3444); + oncipv_Cypher25Parser_secondsToken($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sqrt$_hashCode = $this => { - return 2584896; +oncipv_Cypher25Parser_secondsToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SecondsTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 590, 295); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3452); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 235 | 0; + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(19)), Long_ZERO)) { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else + $this.$_errHandler.$recoverInline($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sqrt$_toString = $this => { - return $rt_s(5885); +oncipv_Cypher25Parser_showDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 592, 296); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3466); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 61: + case 62: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3459); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 61 && $_la != 62) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + f: { + oavr_Recognizer_setState($this, 3461); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 438, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 3460); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + } + oavr_Recognizer_setState($this, 3464); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 294 && $_la != 299) + break e; + oavr_Recognizer_setState($this, 3463); + oncipv_Cypher25Parser_showCommandYield($this); + break e; + case 67: + case 122: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3454); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 67 && $_la != 122) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3455); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3457); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 294 && $_la != 299) + break e; + oavr_Recognizer_setState($this, 3456); + oncipv_Cypher25Parser_showCommandYield($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Sqrt$_signatures0 = $this => { - oncief_Sqrt$_$callClinit(); - return oncief_Sqrt$_signatures; +oncipv_Cypher25Parser_aliasName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AliasNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 594, 297); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3468); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$ = $rt_classWithoutFields(oncief_Function), -oncief_Split$_MODULE$ = null, -oncief_Split$_signatures = null, -oncief_Split$_$callClinit = () => { - oncief_Split$_$callClinit = $rt_eraseClinit(oncief_Split$); - oncief_Split$__clinit_(); +oncipv_Cypher25Parser_aliasTargetName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AliasTargetNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 596, 298); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3470); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$3, $x$8, var$9, var$10, $x$10, var$12, $x$4, var$14, var$15, var$16, $x$6; - var$1 = new oncief_Split$; - oncief_Split$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Split$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Split$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5755), $rt_s(5886)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$10 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - var$12 = s_Predef$_Set(s_Predef$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 2); - var$15 = var$14.data; - var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$16 = oncius_package$_MODULE$; - var$15[1] = oncius_package$_CTList(var$16, oncius_package$_CTString(var$16)); - var$16 = var$12.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$10, var$16, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$10[1] = $x$10; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); - $x$8 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$8, oncius_package$_CTString($x$8)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$12 = sr_ScalaRunTime$_MODULE$; - var$15 = $rt_createArray(s_Tuple2, 2); - var$9 = var$15.data; - var$9[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5755), $rt_s(5887)); - var$9[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5886), $rt_s(5888)); - var$12 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$12, var$15)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5889), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); - oncief_Split$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_databaseName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DatabaseNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 598, 299); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3472); + oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$_name = $this => { - return $rt_s(5890); +oncipv_Cypher25Parser_createAlias = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CreateAliasContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 600, 300); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3474); + oavr_Parser_match($this, 15); + oavr_Recognizer_setState($this, 3475); + oncipv_Cypher25Parser_aliasName($this); + oavr_Recognizer_setState($this, 3479); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 3476); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 3477); + oavr_Parser_match($this, 175); + oavr_Recognizer_setState($this, 3478); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 3481); + oavr_Parser_match($this, 108); + oavr_Recognizer_setState($this, 3482); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3483); + oncipv_Cypher25Parser_aliasTargetName($this); + oavr_Recognizer_setState($this, 3494); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 27) { + oavr_Recognizer_setState($this, 3484); + oavr_Parser_match($this, 27); + oavr_Recognizer_setState($this, 3485); + oncipv_Cypher25Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 3486); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 3487); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 3488); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 3489); + oncipv_Cypher25Parser_passwordExpression($this); + oavr_Recognizer_setState($this, 3492); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 82) { + oavr_Recognizer_setState($this, 3490); + oavr_Parser_match($this, 82); + oavr_Recognizer_setState($this, 3491); + oncipv_Cypher25Parser_mapOrParameter($this); + } + } + oavr_Recognizer_setState($this, 3498); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 204) { + oavr_Recognizer_setState($this, 3496); + oavr_Parser_match($this, 204); + oavr_Recognizer_setState($this, 3497); + oncipv_Cypher25Parser_mapOrParameter($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_dropAlias = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$DropAliasContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 602, 301); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3500); + oavr_Parser_match($this, 15); + oavr_Recognizer_setState($this, 3501); + oncipv_Cypher25Parser_aliasName($this); + oavr_Recognizer_setState($this, 3504); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 3502); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 3503); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 3506); + oavr_Parser_match($this, 108); + oavr_Recognizer_setState($this, 3507); + oavr_Parser_match($this, 61); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_alterAlias = $this => { + let $_localctx, $re, $_la, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterAliasContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 604, 302); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3509); + oavr_Parser_match($this, 15); + oavr_Recognizer_setState($this, 3510); + oncipv_Cypher25Parser_aliasName($this); + oavr_Recognizer_setState($this, 3513); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { + oavr_Recognizer_setState($this, 3511); + oavr_Parser_match($this, 124); + oavr_Recognizer_setState($this, 3512); + oavr_Parser_match($this, 101); + } + oavr_Recognizer_setState($this, 3515); + oavr_Parser_match($this, 244); + oavr_Recognizer_setState($this, 3516); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3522); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + e: { + try { + while (true) { + f: { + oavr_Recognizer_setState($this, 3522); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 82: + break; + case 188: + oavr_Recognizer_setState($this, 3519); + oncipv_Cypher25Parser_alterAliasPassword($this); + break f; + case 204: + oavr_Recognizer_setState($this, 3521); + oncipv_Cypher25Parser_alterAliasProperties($this); + break f; + case 260: + oavr_Recognizer_setState($this, 3517); + oncipv_Cypher25Parser_alterAliasTarget($this); + break f; + case 285: + oavr_Recognizer_setState($this, 3518); + oncipv_Cypher25Parser_alterAliasUser($this); + break f; + default: + break e; + } + oavr_Recognizer_setState($this, 3520); + oncipv_Cypher25Parser_alterAliasDriver($this); + } + oavr_Recognizer_setState($this, 3524); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la == 82) + continue; + if ($_la == 188) + continue; + if ($_la == 204) + continue; + if ($_la == 260) + continue; + if ($_la == 285) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $rt_throw(oavr_NoViableAltException__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + } else{ + $_localctx = $$je; + break c; + } + } + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_alterAliasTarget = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterAliasTargetContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 606, 303); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3526); + oavr_Parser_match($this, 260); + oavr_Recognizer_setState($this, 3527); + oncipv_Cypher25Parser_aliasTargetName($this); + oavr_Recognizer_setState($this, 3530); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 27) { + oavr_Recognizer_setState($this, 3528); + oavr_Parser_match($this, 27); + oavr_Recognizer_setState($this, 3529); + oncipv_Cypher25Parser_stringOrParameter($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$_hashCode = $this => { - return 80095994; +oncipv_Cypher25Parser_alterAliasUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterAliasUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 608, 304); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3532); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 3533); + oncipv_Cypher25Parser_commandNameExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$_toString = $this => { - return $rt_s(5891); +oncipv_Cypher25Parser_alterAliasPassword = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterAliasPasswordContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 610, 305); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3535); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 3536); + oncipv_Cypher25Parser_passwordExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Split$_signatures0 = $this => { - oncief_Split$_$callClinit(); - return oncief_Split$_signatures; +oncipv_Cypher25Parser_alterAliasDriver = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterAliasDriverContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 612, 306); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3538); + oavr_Parser_match($this, 82); + oavr_Recognizer_setState($this, 3539); + oncipv_Cypher25Parser_mapOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$ = $rt_classWithoutFields(oncief_Function), -oncief_StartNode$_MODULE$ = null, -oncief_StartNode$_signatures = null, -oncief_StartNode$_$callClinit = () => { - oncief_StartNode$_$callClinit = $rt_eraseClinit(oncief_StartNode$); - oncief_StartNode$__clinit_(); +oncipv_Cypher25Parser_alterAliasProperties = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$AlterAliasPropertiesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 614, 307); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3541); + oavr_Parser_match($this, 204); + oavr_Recognizer_setState($this, 3542); + oncipv_Cypher25Parser_mapOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_StartNode$; - oncief_StartNode$_$callClinit(); - oncief_Function__init_(var$1); - oncief_StartNode$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_StartNode$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_RelationshipType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTNode(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5705)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5892), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_StartNode$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_showAliases = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$ShowAliasesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 616, 308); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3544); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 15 && $_la != 16) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + e: { + oavr_Recognizer_setState($this, 3546); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 450, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 3545); + oncipv_Cypher25Parser_aliasName($this); + } + oavr_Recognizer_setState($this, 3548); + oavr_Parser_match($this, 108); + oavr_Recognizer_setState($this, 3549); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 61 && $_la != 62) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3551); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 294 && $_la != 299)) { + oavr_Recognizer_setState($this, 3550); + oncipv_Cypher25Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$_name = $this => { - return $rt_s(5893); +oncipv_Cypher25Parser_symbolicNameOrStringParameter = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 618, 309); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3555); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3553); + oncipv_Cypher25Parser_symbolicNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3554); + oncipv_Cypher25Parser_parameter($this, $rt_s(714)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_commandNameExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$CommandNameExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 620, 310); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3559); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3557); + oncipv_Cypher25Parser_symbolicNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3558); + oncipv_Cypher25Parser_parameter($this, $rt_s(714)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_symbolicNameOrStringParameterList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 622, 311); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3561); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 3566); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 3562); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 3563); + oncipv_Cypher25Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 3568); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher25Parser_symbolicAliasNameList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SymbolicAliasNameListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 624, 312); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3569); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3574); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 46) { + oavr_Recognizer_setState($this, 3570); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 3571); + oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3576); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_symbolicAliasNameOrParameter = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 626, 313); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3579); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3577); + oncipv_Cypher25Parser_symbolicAliasName($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3578); + oncipv_Cypher25Parser_parameter($this, $rt_s(714)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$_hashCode = $this => { - return (-125500060); +oncipv_Cypher25Parser_symbolicAliasName = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SymbolicAliasNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 628, 314); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3581); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3586); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 79) { + oavr_Recognizer_setState($this, 3582); + oavr_Parser_match($this, 79); + oavr_Recognizer_setState($this, 3583); + oncipv_Cypher25Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3588); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$_toString = $this => { - return $rt_s(5894); +oncipv_Cypher25Parser_stringListLiteral = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StringListLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 630, 315); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3589); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 3598); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 8 && $_la != 9)) { + oavr_Recognizer_setState($this, 3590); + oncipv_Cypher25Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 3595); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 46) + break e; + oavr_Recognizer_setState($this, 3591); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 3592); + oncipv_Cypher25Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 3597); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + } + oavr_Recognizer_setState($this, 3600); + oavr_Parser_match($this, 210); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StartNode$_signatures0 = $this => { - oncief_StartNode$_$callClinit(); - return oncief_StartNode$_signatures; +oncipv_Cypher25Parser_stringList = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StringListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 632, 316); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3602); + oncipv_Cypher25Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 3605); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 3603); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 3604); + oncipv_Cypher25Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 3607); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 46) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_StdDev$_MODULE$ = null, -oncief_StdDev$_signatures = null, -oncief_StdDev$_$callClinit = () => { - oncief_StdDev$_$callClinit = $rt_eraseClinit(oncief_StdDev$); - oncief_StdDev$__clinit_(); +oncipv_Cypher25Parser_stringLiteral = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StringLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 634, 317); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3609); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 8 && $_la != 9) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_StdDev$; - oncief_StdDev$_$callClinit(); - oncief_Function__init_(var$1); - oncief_StdDev$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_StdDev$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5895)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5896), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_StdDev$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_stringOrParameterExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StringOrParameterExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 636, 318); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3613); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 8: + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3611); + oncipv_Cypher25Parser_stringLiteral($this); + break e; + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3612); + oncipv_Cypher25Parser_parameter($this, $rt_s(714)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$_name = $this => { - return $rt_s(5897); +oncipv_Cypher25Parser_stringOrParameter = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$StringOrParameterContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 638, 319); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3617); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 8: + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3615); + oncipv_Cypher25Parser_stringLiteral($this); + break e; + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3616); + oncipv_Cypher25Parser_parameter($this, $rt_s(714)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$_productArity = $this => { - return 0; +oncipv_Cypher25Parser_uIntOrIntParameter = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UIntOrIntParameterContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 640, 320); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3621); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 5: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3619); + oavr_Parser_match($this, 5); + break e; + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3620); + oncipv_Cypher25Parser_parameter($this, $rt_s(722)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher25Parser_mapOrParameter = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$MapOrParameterContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 642, 321); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3625); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 76: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3624); + oncipv_Cypher25Parser_parameter($this, $rt_s(724)); + break e; + case 143: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3623); + oncipv_Cypher25Parser_map($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher25Parser_map = $this => { + let $_localctx, $_la, var$3, var$4, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$MapContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 644, 322); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3627); + oavr_Parser_match($this, 143); + oavr_Recognizer_setState($this, 3641); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758095360, 4294938623)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294717439, 4277927934)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294967294)), Long_ZERO))) { + var$4 = $_la - 192 | 0; + if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(4277338073, 4294835711)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 3628); + oncipv_Cypher25Parser_propertyKeyName($this); + oavr_Recognizer_setState($this, 3629); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 3630); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 3638); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 46) + break e; + oavr_Recognizer_setState($this, 3631); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 3632); + oncipv_Cypher25Parser_propertyKeyName($this); + oavr_Recognizer_setState($this, 3633); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 3634); + oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 3640); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 3643); + oavr_Parser_match($this, 211); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher25Parser_symbolicNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SymbolicNameStringContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 646, 323); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3647); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3645); + oncipv_Cypher25Parser_escapedSymbolicNameString($this); + break e; + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3646); + oncipv_Cypher25Parser_unescapedSymbolicNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$_hashCode = $this => { - return (-1808571630); +oncipv_Cypher25Parser_escapedSymbolicNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$EscapedSymbolicNameStringContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 648, 324); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3649); + oavr_Parser_match($this, 10); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$_toString = $this => { - return $rt_s(5898); +oncipv_Cypher25Parser_unescapedSymbolicNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 650, 325); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3660); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 176: + case 177: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3651); + oncipv_Cypher25Parser_unescapedLabelSymbolicNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + break; + case 164: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 3656); + oavr_Parser_match($this, 164); + break e; + case 165: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 3657); + oavr_Parser_match($this, 165); + break e; + case 166: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 3658); + oavr_Parser_match($this, 166); + break e; + case 167: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 3659); + oavr_Parser_match($this, 167); + break e; + case 174: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 3655); + oavr_Parser_match($this, 174); + break e; + case 175: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3652); + oavr_Parser_match($this, 175); + break e; + case 178: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3653); + oavr_Parser_match($this, 178); + break e; + case 277: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 3654); + oavr_Parser_match($this, 277); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDev$_signatures0 = $this => { - oncief_StdDev$_$callClinit(); - return oncief_StdDev$_signatures; +oncipv_Cypher25Parser_symbolicLabelNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$SymbolicLabelNameStringContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 652, 326); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3664); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3662); + oncipv_Cypher25Parser_escapedSymbolicNameString($this); + break e; + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 47: + case 48: + case 49: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 77: + case 82: + case 83: + case 84: + case 85: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 97: + case 98: + case 99: + case 100: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 115: + case 116: + case 117: + case 118: + case 119: + case 121: + case 122: + case 123: + case 124: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 145: + case 146: + case 147: + case 148: + case 149: + case 150: + case 153: + case 154: + case 155: + case 156: + case 161: + case 162: + case 163: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 176: + case 177: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 195: + case 196: + case 198: + case 199: + case 200: + case 201: + case 202: + case 203: + case 204: + case 205: + case 206: + case 207: + case 209: + case 212: + case 213: + case 214: + case 215: + case 217: + case 218: + case 219: + case 220: + case 221: + case 222: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 234: + case 235: + case 236: + case 237: + case 238: + case 239: + case 240: + case 242: + case 243: + case 244: + case 245: + case 246: + case 247: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3663); + oncipv_Cypher25Parser_unescapedLabelSymbolicNameString($this); + break e; + case 29: + case 44: + case 45: + case 46: + case 76: + case 78: + case 79: + case 80: + case 81: + case 96: + case 114: + case 120: + case 140: + case 141: + case 142: + case 143: + case 144: + case 151: + case 152: + case 157: + case 158: + case 159: + case 160: + case 164: + case 165: + case 166: + case 167: + case 174: + case 175: + case 178: + case 193: + case 194: + case 197: + case 208: + case 210: + case 211: + case 216: + case 233: + case 241: + case 265: + case 277: + break; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDevP$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_StdDevP$_MODULE$ = null, -oncief_StdDevP$_signatures = null, -oncief_StdDevP$_$callClinit = () => { - oncief_StdDevP$_$callClinit = $rt_eraseClinit(oncief_StdDevP$); - oncief_StdDevP$__clinit_(); +oncipv_Cypher25Parser_unescapedLabelSymbolicNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 654, 327); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3666); + oncipv_Cypher25Parser_unescapedLabelSymbolicNameString_($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDevP$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_StdDevP$; - oncief_StdDevP$_$callClinit(); - oncief_Function__init_(var$1); - oncief_StdDevP$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_StdDevP$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5899)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5900), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_StdDevP$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher25Parser_unescapedLabelSymbolicNameString_ = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 656, 328); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3668); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758094336, 4294938623)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294717439, 4277927934)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294655758)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338073, 4294835711)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4292869631, 32767)), Long_ZERO))) { + $this.$_errHandler.$recoverInline($this); + break e; + } + } + } + } + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_StdDevP$_name = $this => { - return $rt_s(5901); +oncipv_Cypher25Parser__clinit_ = () => { + let var$1, $i, var$3, var$4; + oavr_RuntimeMetaData_checkVersion($rt_s(4577), $rt_s(4577)); + oncipv_Cypher25Parser__sharedContextCache = oavra_PredictionContextCache__init_(); + oncipv_Cypher25Parser_ruleNames = oncipv_Cypher25Parser_makeRuleNames(); + oncipv_Cypher25Parser__LITERAL_NAMES = oncipv_Cypher25Parser_makeLiteralNames(); + var$1 = oncipv_Cypher25Parser_makeSymbolicNames(); + oncipv_Cypher25Parser__SYMBOLIC_NAMES = var$1; + oncipv_Cypher25Parser_VOCABULARY = oavr_VocabularyImpl__init_(oncipv_Cypher25Parser__LITERAL_NAMES, var$1); + oncipv_Cypher25Parser_tokenNames = $rt_createArray(jl_String, oncipv_Cypher25Parser__SYMBOLIC_NAMES.data.length); + $i = 0; + while (true) { + var$3 = oncipv_Cypher25Parser_tokenNames.data; + if ($i >= var$3.length) + break; + var$3[$i] = oavr_VocabularyImpl_getLiteralName(oncipv_Cypher25Parser_VOCABULARY, $i); + var$3 = oncipv_Cypher25Parser_tokenNames.data; + if (var$3[$i] === null) + var$3[$i] = oavr_VocabularyImpl_getSymbolicName(oncipv_Cypher25Parser_VOCABULARY, $i); + var$3 = oncipv_Cypher25Parser_tokenNames.data; + if (var$3[$i] === null) + var$3[$i] = $rt_s(4581); + $i = $i + 1 | 0; + } + oncipv_Cypher25Parser__serializedATN = oavrm_Utils_join($rt_wrapArray(jl_String, [$rt_s(4920), $rt_s(4921)]), $rt_s(4)); + var$4 = oavra_ATNDeserializer_deserialize(oavra_ATNDeserializer__init_(), jl_String_toCharArray(oncipv_Cypher25Parser__serializedATN)); + oncipv_Cypher25Parser__ATN = var$4; + oncipv_Cypher25Parser__decisionToDFA = $rt_createArray(oavrd_DFA, oavra_ATN_getNumberOfDecisions(var$4)); + $i = 0; + while ($i < oavra_ATN_getNumberOfDecisions(oncipv_Cypher25Parser__ATN)) { + oncipv_Cypher25Parser__decisionToDFA.data[$i] = oavrd_DFA__init_(oavra_ATN_getDecisionState(oncipv_Cypher25Parser__ATN, $i), $i); + $i = $i + 1 | 0; + } }; -let oncief_StdDevP$_productArity = $this => { - return 0; -}, -oncief_StdDevP$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_StdDevP$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_StdDevP$_hashCode = $this => { - return (-231145602); -}, -oncief_StdDevP$_toString = $this => { - return $rt_s(5902); -}, -oncief_StdDevP$_signatures0 = $this => { - oncief_StdDevP$_$callClinit(); - return oncief_StdDevP$_signatures; -}, -oncief_Substring$ = $rt_classWithoutFields(oncief_Function), -oncief_Substring$_MODULE$ = null, -oncief_Substring$_signatures = null, -oncief_Substring$_$callClinit = () => { - oncief_Substring$_$callClinit = $rt_eraseClinit(oncief_Substring$); - oncief_Substring$__clinit_(); -}, -oncief_Substring$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$6, $x$3, var$9, var$10, $x$4, $x$8, $x$14, $x$16, $x$10, $x$15, $x$17, $x$19, $x$21, $x$23; - var$1 = new oncief_Substring$; - oncief_Substring$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Substring$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); - var$4 = var$3.data; - $x$1 = oncief_Substring$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5755), $rt_s(5824)]))); - $x$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - $x$3 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - $x$14 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5755), $rt_s(5903)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5824), $rt_s(5904)); - $x$16 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$14, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5905), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$16); - $x$14 = oncief_Substring$_MODULE$; - $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5755), $rt_s(5824), $rt_s(5756)]))); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_CypherType, 3); - var$10 = var$9.data; - var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$10[2] = oncius_package$_CTInteger(oncius_package$_MODULE$); - $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); - $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); - $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 3); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5755), $rt_s(5903)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5824), $rt_s(5904)); - var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5756), $rt_s(5906)); - $x$6 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$23 = s_None$_MODULE$; - var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5907), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$6); - oncief_Substring$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_Substring$_name = $this => { - return $rt_s(5908); -}, -oncief_Substring$_productArity = $this => { - return 0; -}, -oncief_Substring$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_Substring$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Substring$_hashCode = $this => { - return (-1760457167); -}, -oncief_Substring$_toString = $this => { - return $rt_s(5909); -}, -oncief_Substring$_signatures0 = $this => { - oncief_Substring$_$callClinit(); - return oncief_Substring$_signatures; +function oncipvaf_CypherAstBuildingAntlrParser0() { + let a = this; oncipv_Cypher25Parser.call(a); + a.$exceptionFactory7 = null; + a.$notificationLogger3 = null; + a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder1 = null; + a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker1 = null; + a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed1 = 0; + a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors1 = 0; +} +let oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule = $this => { + oavr_Parser_exitRule($this); }, -oncief_Sum$ = $rt_classWithoutFields(oncief_AggregatingFunction), -oncief_Sum$_MODULE$ = null, -oncief_Sum$_signatures = null, -oncief_Sum$_$callClinit = () => { - oncief_Sum$_$callClinit = $rt_eraseClinit(oncief_Sum$); - oncief_Sum$__clinit_(); +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode = ($this, $x$1, $x$2) => { + return oavr_Parser_createTerminalNode($this, $x$1, $x$2); }, -oncief_Sum$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$4, var$8, $x$2, $x$6, var$11, $x$10, var$13, var$14, var$15, var$16, $x$3, var$18; - var$1 = new oncief_Sum$; - oncief_Sum$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Sum$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Sum$_MODULE$; - $x$8 = s_package$_Vector(s_package$_MODULE$); - $x$4 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - $x$8 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 3); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$15[2] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$16 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_($x$8, var$16, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = $x$8; - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$4 = new oncius_ClosedDynamicUnionType; - $x$6 = s_Predef$_Set(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 3); - var$15 = var$8.data; - var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$15[2] = oncius_package$_CTDuration(oncius_package$_MODULE$); - oncius_ClosedDynamicUnionType__init_($x$4, $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$16 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5686)); - var$18 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$16, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5910), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$18); - oncief_Sum$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset = $this => { + oavr_Parser_reset($this); }, -oncief_Sum$_name = $this => { - return $rt_s(5911); +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler = ($this, $x$1) => { + $this.$_errHandler = $x$1; }, -oncief_Sum$_productArity = $this => { - return 0; +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners = ($this, $x$1, $x$2, $x$3) => { + oavr_Parser_notifyErrorListeners($this, $x$1, $x$2, $x$3); }, -oncief_Sum$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipvaf_CypherAstBuildingAntlrParser_exitRule0 = $this => { + oncipa_AstBuildingAntlrParser_exitRule$($this); }, -oncief_Sum$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipvaf_CypherAstBuildingAntlrParser_createTerminalNode = ($this, $parent, $t) => { + return oncipa_AstBuildingAntlrParser_createTerminalNode$($this, $parent, $t); }, -oncief_Sum$_hashCode = $this => { - return 83499; +oncipvaf_CypherAstBuildingAntlrParser_reset = $this => { + oncipa_AstBuildingAntlrParser_reset$($this); }, -oncief_Sum$_toString = $this => { - return $rt_s(5912); +oncipvaf_CypherAstBuildingAntlrParser_addParseListener0 = ($this, $listener) => { + oncipa_AstBuildingAntlrParser_addParseListener$($this, $listener); }, -oncief_Sum$_signatures0 = $this => { - oncief_Sum$_$callClinit(); - return oncief_Sum$_signatures; +oncipvaf_CypherAstBuildingAntlrParser_setErrorHandler0 = ($this, $handler) => { + oncipa_AstBuildingAntlrParser_setErrorHandler$($this, $handler); }, -oncief_Tail$ = $rt_classWithoutFields(oncief_Function), -oncief_Tail$_MODULE$ = null, -oncief_Tail$_signatures = null, -oncief_Tail$_$callClinit = () => { - oncief_Tail$_$callClinit = $rt_eraseClinit(oncief_Tail$); - oncief_Tail$__clinit_(); +oncipvaf_CypherAstBuildingAntlrParser_notifyErrorListeners = ($this, $offendingToken, $msg, $e) => { + oncipa_AstBuildingAntlrParser_notifyErrorListeners$($this, $offendingToken, $msg, $e); }, -oncief_Tail$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; - var$1 = new oncief_Tail$; - oncief_Tail$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Tail$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Tail$_MODULE$; - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ListType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - $x$3 = oncius_package$_MODULE$; - var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTAny($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$14 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5913)); - var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5914), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Tail$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipvaf_CypherAstBuildingAntlrParser_syntaxChecker = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker(); }, -oncief_Tail$_name = $this => { - return $rt_s(5915); +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder1; }, -oncief_Tail$_productArity = $this => { - return 0; +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder1 = $x$1; }, -oncief_Tail$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0 = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker1; }, -oncief_Tail$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker1 = $x$1; }, -oncief_Tail$_hashCode = $this => { - return 2599024; +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0 = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed1; }, -oncief_Tail$_toString = $this => { - return $rt_s(5916); +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq0 = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed1 = $x$1; }, -oncief_Tail$_signatures0 = $this => { - oncief_Tail$_$callClinit(); - return oncief_Tail$_signatures; +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors1; }, -oncief_Tan$ = $rt_classWithoutFields(oncief_Function), -oncief_Tan$_MODULE$ = null, -oncief_Tan$_signatures = null, -oncief_Tan$_$callClinit = () => { - oncief_Tan$_$callClinit = $rt_eraseClinit(oncief_Tan$); - oncief_Tan$__clinit_(); +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors1 = $x$1; }, -oncief_Tan$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Tan$; - oncief_Tan$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Tan$_MODULE$ = var$1; +oncipvaf_CypherAstBuildingAntlrParser_createSyntaxChecker0 = $this => { + let var$1; + var$1 = new oncipvaf_Cypher25SyntaxChecker; + var$1.$exceptionFactory1 = $this.$exceptionFactory7; s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Tan$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_FloatType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5636)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5917), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Tan$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); + var$1.$_errors0 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + return var$1; }, -oncief_Tan$_name = $this => { - return $rt_s(5918); +oncipvaf_CypherAstBuildingAntlrParser_createAstBuilder = $this => { + let var$1, var$2, var$3; + var$1 = new oncipvaf_Cypher25AstBuilder; + var$2 = $this.$notificationLogger3; + var$3 = $this.$exceptionFactory7; + var$1.$notificationLogger4 = var$2; + var$1.$exceptionFactory3 = var$3; + return var$1; }, -oncief_Tan$_productArity = $this => { +oncipvaf_CypherAstBuildingAntlrParser_isSafeToFreeChildren0 = ($this, $ctx) => { + switch ($ctx.$getRuleIndex()) { + case 34: + break; + case 35: + return 0; + case 93: + return 0; + case 100: + return 0; + case 110: + return 0; + case 111: + return 0; + case 134: + return 0; + case 135: + return 0; + case 138: + return 0; + case 162: + return 0; + case 178: + return 0; + case 180: + return 0; + case 187: + return 0; + case 189: + return 0; + case 196: + return 0; + case 197: + return 0; + case 219: + return 0; + case 237: + return 0; + case 238: + return 0; + case 267: + return 0; + case 289: + return 0; + case 290: + return 0; + case 297: + return 0; + case 298: + return 0; + case 299: + return 0; + case 303: + return 0; + case 304: + return 0; + case 305: + return 0; + case 306: + return 0; + case 307: + return 0; + case 313: + return 0; + case 314: + return 0; + case 323: + return 0; + case 325: + return 0; + case 327: + return 0; + case 328: + return 0; + default: + return 1; + } return 0; -}, -oncief_Tan$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); }; -let oncief_Tan$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_Tan$_hashCode = $this => { - return 83841; -}, -oncief_Tan$_toString = $this => { - return $rt_s(5919); -}, -oncief_Tan$_signatures0 = $this => { - oncief_Tan$_$callClinit(); - return oncief_Tan$_signatures; -}, -oncief_ToBoolean$ = $rt_classWithoutFields(oncief_Function), -oncief_ToBoolean$_MODULE$ = null, -oncief_ToBoolean$_signatures = null, -oncief_ToBoolean$_$callClinit = () => { - oncief_ToBoolean$_$callClinit = $rt_eraseClinit(oncief_ToBoolean$); - oncief_ToBoolean$__clinit_(); -}, -oncief_ToBoolean$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, var$7, var$8, $x$2, $x$8, var$11, var$12, $x$3, $x$10, var$15, var$16, $x$4, $x$6; - var$1 = new oncief_ToBoolean$; - oncief_ToBoolean$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToBoolean$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToBoolean$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - var$12 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$3 = s_Predef$_Set(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$15 = $rt_createArray(oncius_CypherType, 3); - var$16 = var$15.data; - oncius_package$_$callClinit(); - var$16[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$16[1] = oncius_package$_CTString(oncius_package$_MODULE$); - var$16[2] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$7 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$15)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_(var$12, var$7, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = var$12; - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5920)); - var$12 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5921), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); - oncief_ToBoolean$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_ToBoolean$_name = $this => { - return $rt_s(5922); -}, -oncief_ToBoolean$_productArity = $this => { - return 0; -}, -oncief_ToBoolean$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_ToBoolean$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_ToBoolean$_hashCode = $this => { - return 405464333; -}, -oncief_ToBoolean$_toString = $this => { - return $rt_s(5923); -}, -oncief_ToBoolean$_signatures0 = $this => { - oncief_ToBoolean$_$callClinit(); - return oncief_ToBoolean$_signatures; -}, -oncief_ToBooleanList$ = $rt_classWithoutFields(oncief_Function), -oncief_ToBooleanList$_MODULE$ = null, -oncief_ToBooleanList$_signatures = null, -oncief_ToBooleanList$_$callClinit = () => { - oncief_ToBooleanList$_$callClinit = $rt_eraseClinit(oncief_ToBooleanList$); - oncief_ToBooleanList$__clinit_(); -}, -oncief_ToBooleanList$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; - var$1 = new oncief_ToBooleanList$; - oncief_ToBooleanList$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToBooleanList$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToBooleanList$_MODULE$; - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ListType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - $x$3 = oncius_package$_MODULE$; - var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTBoolean($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$14 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5924)); - var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5925), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToBooleanList$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_ToBooleanList$_name = $this => { - return $rt_s(5926); -}, -oncief_ToBooleanList$_productArity = $this => { - return 0; -}, -oncief_ToBooleanList$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_ToBooleanList$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_ToBooleanList$_hashCode = $this => { - return (-1895056565); -}, -oncief_ToBooleanList$_toString = $this => { - return $rt_s(5927); -}, -oncief_ToBooleanList$_signatures0 = $this => { - oncief_ToBooleanList$_$callClinit(); - return oncief_ToBooleanList$_signatures; -}, -oncief_ToBooleanOrNull$ = $rt_classWithoutFields(oncief_Function), -oncief_ToBooleanOrNull$_MODULE$ = null, -oncief_ToBooleanOrNull$_signatures = null, -oncief_ToBooleanOrNull$_$callClinit = () => { - oncief_ToBooleanOrNull$_$callClinit = $rt_eraseClinit(oncief_ToBooleanOrNull$); - oncief_ToBooleanOrNull$__clinit_(); -}, -oncief_ToBooleanOrNull$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_ToBooleanOrNull$; - oncief_ToBooleanOrNull$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToBooleanOrNull$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToBooleanOrNull$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5928)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5929), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToBooleanOrNull$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_ToBooleanOrNull$_name = $this => { - return $rt_s(5930); -}, -oncief_ToBooleanOrNull$_productArity = $this => { - return 0; -}, -oncief_ToBooleanOrNull$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_ToBooleanOrNull$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_ToBooleanOrNull$_hashCode = $this => { - return 9875831; -}, -oncief_ToBooleanOrNull$_toString = $this => { - return $rt_s(5931); -}, -oncief_ToBooleanOrNull$_signatures0 = $this => { - oncief_ToBooleanOrNull$_$callClinit(); - return oncief_ToBooleanOrNull$_signatures; -}, -oncief_ToFloat$ = $rt_classWithoutFields(oncief_Function), -oncief_ToFloat$_MODULE$ = null, -oncief_ToFloat$_signatures = null, -oncief_ToFloat$_$callClinit = () => { - oncief_ToFloat$_$callClinit = $rt_eraseClinit(oncief_ToFloat$); - oncief_ToFloat$__clinit_(); -}, -oncief_ToFloat$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, var$7, var$8, $x$2, $x$8, var$11, var$12, $x$3, $x$10, var$15, var$16, $x$4, $x$6; - var$1 = new oncief_ToFloat$; - oncief_ToFloat$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToFloat$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToFloat$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - var$12 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$3 = s_Predef$_Set(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$15 = $rt_createArray(oncius_CypherType, 3); - var$16 = var$15.data; - oncius_package$_$callClinit(); - var$16[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$16[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$16[2] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$7 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$15)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_(var$12, var$7, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = var$12; - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5932)); - var$12 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5933), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); - oncief_ToFloat$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_ToFloat$_name = $this => { - return $rt_s(5934); +function oncia_ShowColumn() { + let a = this; jl_Object.call(a); + a.$variable18 = null; + a.$cypherType0 = null; + a.$name18 = null; +} +let oncia_ShowColumn_productPrefix = $this => { + return $rt_s(4922); }, -oncief_ToFloat$_productArity = $this => { - return 0; +oncia_ShowColumn_productArity = $this => { + return 3; }, -oncief_ToFloat$_productElement = ($this, $x$1) => { +oncia_ShowColumn_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable18; + case 1: + return $this.$cypherType0; + case 2: + return $this.$name18; + default: + } return sr_Statics_ioobe($x$1); }, -oncief_ToFloat$_productIterator = $this => { +oncia_ShowColumn_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToFloat$_hashCode = $this => { - return 486707329; -}; -let oncief_ToFloat$_toString = $this => { - return $rt_s(5935); -}, -oncief_ToFloat$_signatures0 = $this => { - oncief_ToFloat$_$callClinit(); - return oncief_ToFloat$_signatures; -}, -oncief_ToFloatList$ = $rt_classWithoutFields(oncief_Function), -oncief_ToFloatList$_MODULE$ = null, -oncief_ToFloatList$_signatures = null, -oncief_ToFloatList$_$callClinit = () => { - oncief_ToFloatList$_$callClinit = $rt_eraseClinit(oncief_ToFloatList$); - oncief_ToFloatList$__clinit_(); -}, -oncief_ToFloatList$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; - var$1 = new oncief_ToFloatList$; - oncief_ToFloatList$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToFloatList$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToFloatList$_MODULE$; - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ListType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - $x$3 = oncius_package$_MODULE$; - var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTFloat($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$14 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5936)); - var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5937), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToFloatList$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_ToFloatList$_name = $this => { - return $rt_s(5938); -}, -oncief_ToFloatList$_productArity = $this => { - return 0; -}, -oncief_ToFloatList$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_ToFloatList$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_ShowColumn_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToFloatList$_hashCode = $this => { - return (-1065841473); +oncia_ShowColumn_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToFloatList$_toString = $this => { - return $rt_s(5939); +oncia_ShowColumn_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowColumn) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable18; + var$3 = $x$1.$variable18; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$cypherType0; + var$3 = $x$1.$cypherType0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$name18; + $x$1 = $x$1.$name18; + if (var$3 !== null) { + if (!jl_String_equals(var$3, $x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ShowColumn)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncief_ToFloatList$_signatures0 = $this => { - oncief_ToFloatList$_$callClinit(); - return oncief_ToFloatList$_signatures; +oncia_ShowColumn__init_ = ($this, $variable, $cypherType, $name) => { + $this.$variable18 = $variable; + $this.$cypherType0 = $cypherType; + $this.$name18 = $name; }, -oncief_ToFloatOrNull$ = $rt_classWithoutFields(oncief_Function), -oncief_ToFloatOrNull$_MODULE$ = null, -oncief_ToFloatOrNull$_signatures = null, -oncief_ToFloatOrNull$_$callClinit = () => { - oncief_ToFloatOrNull$_$callClinit = $rt_eraseClinit(oncief_ToFloatOrNull$); - oncief_ToFloatOrNull$__clinit_(); +oncia_ShowColumn__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_ShowColumn(); + oncia_ShowColumn__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_ASTAnnotationMap$PositionedNode() { + jl_Object.call(this); + this.$node1 = null; +} +let oncia_ASTAnnotationMap$PositionedNode_toString = $this => { + let var$1, var$2, var$3, var$4; + var$1 = $this.$node1; + var$2 = (var$1.$position()).$offset(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4923)), var$1); + jl_AbstractStringBuilder_append0(var$4, 64); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append0(var$4, var$2), 41); + return jl_AbstractStringBuilder_toString(var$3); }, -oncief_ToFloatOrNull$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_ToFloatOrNull$; - oncief_ToFloatOrNull$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToFloatOrNull$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToFloatOrNull$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5940)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5941), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToFloatOrNull$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncia_ASTAnnotationMap$PositionedNode_equals = ($this, $that) => { + let var$2, var$3, var$4; + if (!($that instanceof oncia_ASTAnnotationMap$PositionedNode)) + return 0; + a: { + b: { + $that = $that; + if ($this instanceof oncia_ASTAnnotationMap$PositionedNode) { + c: { + var$2 = $this.$node1; + var$3 = $that.$node1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$node1.$position(); + $that = $that.$node1.$position(); + if (var$3 !== null) { + if (!var$3.$equals($that)) + break b; + else + break d; + } + if ($that !== null) + break b; + } + var$4 = 1; + break a; + } + } + var$4 = 0; + } + return var$4; }, -oncief_ToFloatOrNull$_name = $this => { - return $rt_s(5942); +oncia_ASTAnnotationMap$PositionedNode_hashCode = $this => { + let var$1, var$2; + var$1 = new s_Tuple2; + var$2 = $this.$node1; + s_Tuple2__init_0(var$1, var$2, var$2.$position()); + return s_Tuple2_hashCode(var$1); }, -oncief_ToFloatOrNull$_productArity = $this => { - return 0; +oncia_ASTAnnotationMap$PositionedNode_productArity = $this => { + return 1; }, -oncief_ToFloatOrNull$_productElement = ($this, $x$1) => { +oncia_ASTAnnotationMap$PositionedNode_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$node1; + default: + } return sr_Statics_ioobe($x$1); }, -oncief_ToFloatOrNull$_productIterator = $this => { +oncia_ASTAnnotationMap$PositionedNode_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}; +function ju_TemplateCollections$ImmutableArrayList() { + ju_TemplateCollections$AbstractImmutableList.call(this); + this.$list3 = null; +} +let ju_TemplateCollections$ImmutableArrayList__init_0 = ($this, $list) => { + $this.$list3 = $list; }, -oncief_ToFloatOrNull$_hashCode = $this => { - return (-1978337813); -}, -oncief_ToFloatOrNull$_toString = $this => { - return $rt_s(5943); -}, -oncief_ToFloatOrNull$_signatures0 = $this => { - oncief_ToFloatOrNull$_$callClinit(); - return oncief_ToFloatOrNull$_signatures; -}, -oncief_ToInteger$ = $rt_classWithoutFields(oncief_Function), -oncief_ToInteger$_MODULE$ = null, -oncief_ToInteger$_signatures = null, -oncief_ToInteger$_$callClinit = () => { - oncief_ToInteger$_$callClinit = $rt_eraseClinit(oncief_ToInteger$); - oncief_ToInteger$__clinit_(); +ju_TemplateCollections$ImmutableArrayList__init_ = var_0 => { + let var_1 = new ju_TemplateCollections$ImmutableArrayList(); + ju_TemplateCollections$ImmutableArrayList__init_0(var_1, var_0); + return var_1; }, -oncief_ToInteger$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$3, $x$6, var$8, $x$2, var$10, var$11, $x$10, var$13, var$14, var$15, $x$8, $x$4, var$18; - var$1 = new oncief_ToInteger$; - oncief_ToInteger$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToInteger$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToInteger$_MODULE$; - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$3 = s_package$_Vector(s_package$_MODULE$); - $x$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$10 = var$8.data; - var$11 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Set(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$14 = $rt_createArray(oncius_CypherType, 4); - var$15 = var$14.data; - oncius_package$_$callClinit(); - var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); - var$15[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$15[2] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$15[3] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - $x$8 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_(var$11, $x$8, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$10[0] = var$11; - $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$13 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5944)); - var$18 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5945), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$18); - oncief_ToInteger$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +ju_TemplateCollections$ImmutableArrayList_get = ($this, $index) => { + return $this.$list3.data[$index]; }, -oncief_ToInteger$_name = $this => { - return $rt_s(5946); +ju_TemplateCollections$ImmutableArrayList_size = $this => { + return $this.$list3.data.length; +}; +function oncia_SingleQuery$semanticCheck$lambda$_74_0() { + jl_Object.call(this); + this.$_0835 = null; +} +let oncia_SingleQuery$semanticCheck$lambda$_74_0_apply = (var$0, var$1) => { + return oncia_SingleQuery_checkClauses(var$0.$_0835, var$1, s_None$_MODULE$); }, -oncief_ToInteger$_productArity = $this => { - return 0; +oncie_SensitiveLiteral = $rt_classWithoutFields(0), +oncie_Null$$anon$7 = $rt_classWithoutFields(oncie_Null), +oncie_Null$$anon$7_literalLength = $this => { + return 4; }, -oncief_ToInteger$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_ShowPrivilegeScope = $rt_classWithoutFields(0); +function oncie_In() { + let a = this; oncie_Expression.call(a); + a.$lhs6 = null; + a.$rhs8 = null; + a.$position109 = null; +} +let oncie_In_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncief_ToInteger$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_In_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncief_ToInteger$_hashCode = $this => { - return (-1996162525); +oncie_In_canonicalOperatorSymbol = $this => { + return oncie_OperatorExpression_canonicalOperatorSymbol$($this); }, -oncief_ToInteger$_toString = $this => { - return $rt_s(5947); +oncie_In_lhs = $this => { + return $this.$lhs6; }, -oncief_ToInteger$_signatures0 = $this => { - oncief_ToInteger$_$callClinit(); - return oncief_ToInteger$_signatures; +oncie_In_rhs = $this => { + return $this.$rhs8; }, -oncief_ToIntegerList$ = $rt_classWithoutFields(oncief_Function), -oncief_ToIntegerList$_MODULE$ = null, -oncief_ToIntegerList$_signatures = null, -oncief_ToIntegerList$_$callClinit = () => { - oncief_ToIntegerList$_$callClinit = $rt_eraseClinit(oncief_ToIntegerList$); - oncief_ToIntegerList$__clinit_(); +oncie_In_position = $this => { + return $this.$position109; }, -oncief_ToIntegerList$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; - var$1 = new oncief_ToIntegerList$; - oncief_ToIntegerList$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToIntegerList$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToIntegerList$_MODULE$; - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ListType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - $x$3 = oncius_package$_MODULE$; - var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTInteger($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$14 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5948)); - var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5949), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToIntegerList$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncie_In_copy = ($this, $lhs, $rhs, $position) => { + return oncie_In__init_($lhs, $rhs, $position); }, -oncief_ToIntegerList$_name = $this => { - return $rt_s(5950); +oncie_In_productPrefix = $this => { + return $rt_s(138); }, -oncief_ToIntegerList$_productArity = $this => { - return 0; +oncie_In_productArity = $this => { + return 2; }, -oncief_ToIntegerList$_productElement = ($this, $x$1) => { +oncie_In_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs6; + case 1: + return $this.$rhs8; + default: + } return sr_Statics_ioobe($x$1); }, -oncief_ToIntegerList$_productIterator = $this => { +oncie_In_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToIntegerList$_hashCode = $this => { - return 738809185; +oncie_In_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToIntegerList$_toString = $this => { - return $rt_s(5951); +oncie_In_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToIntegerList$_signatures0 = $this => { - oncief_ToIntegerList$_$callClinit(); - return oncief_ToIntegerList$_signatures; -}; -let oncief_ToIntegerOrNull$ = $rt_classWithoutFields(oncief_Function), -oncief_ToIntegerOrNull$_MODULE$ = null, -oncief_ToIntegerOrNull$_signatures = null, -oncief_ToIntegerOrNull$_$callClinit = () => { - oncief_ToIntegerOrNull$_$callClinit = $rt_eraseClinit(oncief_ToIntegerOrNull$); - oncief_ToIntegerOrNull$__clinit_(); +oncie_In_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_In) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs6; + var$3 = $x$1.$lhs6; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs8; + $x$1 = $x$1.$rhs8; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_In)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncief_ToIntegerOrNull$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_ToIntegerOrNull$; - oncief_ToIntegerOrNull$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToIntegerOrNull$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToIntegerOrNull$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5952)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5953), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToIntegerOrNull$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncie_In__init_0 = ($this, $lhs, $rhs, $position) => { + $this.$lhs6 = $lhs; + $this.$rhs8 = $rhs; + $this.$position109 = $position; + oncie_Expression__init_($this); }, -oncief_ToIntegerOrNull$_name = $this => { - return $rt_s(5954); +oncie_In__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_In(); + oncie_In__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_ListLiteral() { + let a = this; oncie_Expression.call(a); + a.$expressions0 = null; + a.$position164 = null; +} +let oncie_ListLiteral_expressions = $this => { + return $this.$expressions0; }, -oncief_ToIntegerOrNull$_productArity = $this => { - return 0; +oncie_ListLiteral_position = $this => { + return $this.$position164; }, -oncief_ToIntegerOrNull$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncie_ListLiteral_asCanonicalStringVal = $this => { + return sc_IterableOnceOps_mkString$($this.$expressions0.$map(new oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0), $rt_s(424), $rt_s(45), $rt_s(425)); }, -oncief_ToIntegerOrNull$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_ListLiteral_isConstantForQuery = $this => { + return $this.$expressions0.$forall(new oncie_ListLiteral$isConstantForQuery$lambda$_6_0); }, -oncief_ToIntegerOrNull$_hashCode = $this => { - return 1419124237; +oncie_ListLiteral_copy = ($this, $expressions, $position) => { + return oncie_ListLiteral__init_0($expressions, $position); }, -oncief_ToIntegerOrNull$_toString = $this => { - return $rt_s(5955); +oncie_ListLiteral_productPrefix = $this => { + return $rt_s(4924); }, -oncief_ToIntegerOrNull$_signatures0 = $this => { - oncief_ToIntegerOrNull$_$callClinit(); - return oncief_ToIntegerOrNull$_signatures; +oncie_ListLiteral_productArity = $this => { + return 1; }, -oncief_ToLower$ = $rt_classWithoutFields(oncief_Function), -oncief_ToLower$_MODULE$ = null, -oncief_ToLower$_signatures = null, -oncief_ToLower$_$callClinit = () => { - oncief_ToLower$_$callClinit = $rt_eraseClinit(oncief_ToLower$); - oncief_ToLower$__clinit_(); +oncie_ListLiteral_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expressions0; + default: + } + return sr_Statics_ioobe($x$1); }, -oncief_ToLower$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_ToLower$; - oncief_ToLower$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToLower$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToLower$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5775)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5776), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToLower$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncie_ListLiteral_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToLower$_name = $this => { - return $rt_s(5956); +oncie_ListLiteral_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToLower$_productArity = $this => { - return 0; +oncie_ListLiteral_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToLower$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncie_ListLiteral_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ListLiteral) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expressions0; + $x$1 = $x$1.$expressions0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_ListLiteral)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncief_ToLower$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_ListLiteral__init_ = ($this, $expressions, $position) => { + $this.$expressions0 = $expressions; + $this.$position164 = $position; + oncie_Expression__init_($this); }, -oncief_ToLower$_hashCode = $this => { - return 492345638; +oncie_ListLiteral__init_0 = (var_0, var_1) => { + let var_2 = new oncie_ListLiteral(); + oncie_ListLiteral__init_(var_2, var_0, var_1); + return var_2; }, -oncief_ToLower$_toString = $this => { - return $rt_s(5957); +oncie_BooleanLiteral = $rt_classWithoutFields(0); +function oncie_False() { + let a = this; oncie_Expression.call(a); + a.$position190 = null; + a.$value44 = null; +} +let oncie_False_isConstantForQuery = $this => { + return 1; }, -oncief_ToLower$_signatures0 = $this => { - oncief_ToLower$_$callClinit(); - return oncief_ToLower$_signatures; +oncie_False_position = $this => { + return $this.$position190; }, -oncief_ToString$ = $rt_classWithoutFields(oncief_Function), -oncief_ToString$_MODULE$ = null, -oncief_ToString$_validInputTypes = null, -oncief_ToString$_signatures = null, -oncief_ToString$_$callClinit = () => { - oncief_ToString$_$callClinit = $rt_eraseClinit(oncief_ToString$); - oncief_ToString$__clinit_(); +oncie_False_asCanonicalStringVal = $this => { + return $rt_s(19); }, -oncief_ToString$__clinit_ = () => { - let $x$8, var$2, var$3, var$4, var$5, var$6, var$7, $x$1, var$9, $x$2, $x$3, $x$4, $x$6, $x$10, var$15, var$16; - $x$8 = new oncief_ToString$; - oncief_ToString$_$callClinit(); - oncief_Function__init_($x$8); - oncief_ToString$_MODULE$ = $x$8; - s_package$_$callClinit(); - $x$8 = s_package$_Seq(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncius_CypherType, 11); - var$4 = var$3.data; - oncius_package$_$callClinit(); - var$4[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$4[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$4[2] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$4[3] = oncius_package$_CTString(oncius_package$_MODULE$); - var$4[4] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$4[5] = oncius_package$_CTDate(oncius_package$_MODULE$); - var$4[6] = oncius_package$_CTTime(oncius_package$_MODULE$); - var$4[7] = oncius_package$_CTDateTime(oncius_package$_MODULE$); - var$4[8] = oncius_package$_CTLocalTime(oncius_package$_MODULE$); - var$4[9] = oncius_package$_CTLocalDateTime(oncius_package$_MODULE$); - var$4[10] = oncius_package$_CTPoint(oncius_package$_MODULE$); - oncief_ToString$_validInputTypes = sc_SeqFactory$Delegate_apply($x$8, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); - var$5 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$7 = var$3.data; - $x$1 = oncief_ToString$_MODULE$; - var$9 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(jl_String, 1); - var$4.data[0] = $rt_s(1141); - $x$2 = var$9.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$4)); - var$2 = s_package$_Vector(s_package$_MODULE$); - var$9 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncius_AnyType, 1); - var$4.data[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$9, var$4)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$15 = sr_ScalaRunTime$_MODULE$; - var$16 = $rt_createArray(s_Tuple2, 1); - var$16.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5958)); - var$15 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$15, var$16)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$7[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5959), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$15); - oncief_ToString$_signatures = var$5.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$3)); +oncie_False_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_False$$anon$11; + oncie_False__init_(var$1, $this.$position190); + return var$1; }, -oncief_ToString$_name = $this => { - return $rt_s(5960); +oncie_False_copy = ($this, $position) => { + return oncie_False__init_0($position); }, -oncief_ToString$_productArity = $this => { +oncie_False_productPrefix = $this => { + return $rt_s(4925); +}, +oncie_False_productArity = $this => { return 0; }, -oncief_ToString$_productElement = ($this, $x$1) => { +oncie_False_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -oncief_ToString$_productIterator = $this => { +oncie_False_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToString$_hashCode = $this => { - return (-1712277876); +oncie_False_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_False; }, -oncief_ToString$_toString = $this => { - return $rt_s(5961); +oncie_False_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToString$_signatures0 = $this => { - oncief_ToString$_$callClinit(); - return oncief_ToString$_signatures; +oncie_False_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToStringList$ = $rt_classWithoutFields(oncief_Function), -oncief_ToStringList$_MODULE$ = null, -oncief_ToStringList$_signatures = null, -oncief_ToStringList$_$callClinit = () => { - oncief_ToStringList$_$callClinit = $rt_eraseClinit(oncief_ToStringList$); - oncief_ToStringList$__clinit_(); +oncie_False_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_False) ? 0 : 1; + return var$2 && $this instanceof oncie_False ? 1 : 0; }, -oncief_ToStringList$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; - var$1 = new oncief_ToStringList$; - oncief_ToStringList$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToStringList$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToStringList$_MODULE$; - $x$4 = s_package$_Vector(s_package$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ListType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - $x$3 = oncius_package$_MODULE$; - var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); - $x$4 = oncius_package$_MODULE$; - $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTString($x$4)); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); +oncie_False__init_ = ($this, $position) => { + $this.$position190 = $position; + oncie_Expression__init_($this); s_Predef$_$callClinit(); - var$14 = s_Predef$_Map(s_Predef$_MODULE$); - $x$8 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5962)); - var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5963), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToStringList$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_ToStringList$_name = $this => { - return $rt_s(5964); + $this.$value44 = jl_Boolean_valueOf(0); }, -oncief_ToStringList$_productArity = $this => { - return 0; +oncie_False__init_0 = var_0 => { + let var_1 = new oncie_False(); + oncie_False__init_(var_1, var_0); + return var_1; }, -oncief_ToStringList$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_DatabaseScope = $rt_classWithoutFields(0), +oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems$lambda$_40_0 = $rt_classWithoutFields(), +oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems$lambda$_40_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + if (var$1 instanceof oncia_UnaliasedReturnItem) { + var$2 = var$1; + if (s_Option_isDefined(var$2.$alias0)) + var$1 = oncia_AliasedReturnItem__init_(var$2.$expression19, var$2.$alias0.$get1(), var$2.$position107); + } + return var$1; +}; +function scm_ArrayDeque$addAll$lambda$_98_0() { + jl_Object.call(this); + this.$_01119 = null; +} +let scm_ArrayDeque$addAll$lambda$_98_0_apply = (var$0, var$1) => { + return var$0.$_01119.$addOne(var$1); +}; +function scm_ArrayDeque$addAll$lambda$_98_1() { + jl_Object.call(this); + this.$_067 = null; +} +let scm_ArrayDeque$addAll$lambda$_98_1_apply = (var$0, var$1) => { + return scm_ArrayDeque_scala$collection$mutable$ArrayDeque$$appendAssumingCapacity(var$0.$_067, var$1); }, -oncief_ToStringList$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_0 = $rt_classWithoutFields(), +oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1)); +}; +function oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_1() { + jl_Object.call(this); + this.$_01080 = null; +} +let oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_01080; + var$3 = new oncia_Return; + var$4 = new oncia_ReturnItems; + var$5 = new oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0; + var$5.$_0972 = var$2; + var$6 = var$1.$map(var$5); + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_(var$4, 0, var$6, s_None$_MODULE$, var$2.$position9); + var$5 = s_None$_MODULE$; + oncia_Return__init_(var$3, 0, var$4, var$5, var$5, var$5, oncia_Return$_apply$default$6(oncia_Return$_MODULE$), 0, 0, var$2.$position9); + return var$3; }, -oncief_ToStringList$_hashCode = $this => { - return 780055882; +su_Try$ = $rt_classWithoutFields(), +su_Try$_MODULE$ = null, +su_Try$__clinit_ = () => { + su_Try$_MODULE$ = new su_Try$; +}; +function oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0() { + let a = this; jl_Object.call(a); + a.$_01186 = null; + a.$_1309 = null; + a.$_2102 = null; +} +let oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$1 = var$0.$_1309; + var$2 = var$0.$_2102; + oncifp_ResolvedCall$_$callClinit(); + var$3 = oncifp_ResolvedCall$_MODULE$; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$4 = var$2.$declaredArguments; + var$5 = var$2.$declaredResult; + var$6 = var$2.$yieldAll2; + var$7 = var$2.$optional0; + var$8 = jl_Boolean_valueOf(var$6); + var$9 = jl_Boolean_valueOf(var$7); + var$7 = sr_BoxesRunTime_unboxToBoolean(var$8); + var$6 = sr_BoxesRunTime_unboxToBoolean(var$9); + var$10 = var$2.$position57; + var$8 = oncifp_RewriteProcedureCalls_$anonfun$resolveProcedure$1(var$1, oncifp_QualifiedName__init_(var$2.$procedureNamespace.$parts0, var$2.$procedureName1.$name24)); + var$1 = new oncifp_ResolvedCall$$apply$lambda$_5_0; + var$1.$_0351 = var$8; + var$1.$_1125 = var$10; + var$11 = s_Option_getOrElse(var$4, var$1); + var$9 = (var$11.$zipAll(sci_ArraySeq_map(sci_ArraySeq_take(var$8.$inputSignature0, var$11.$length()), new oncifp_ResolvedCall$$apply$lambda$_5_1), null, jl_Boolean_valueOf(0))).$map(new oncifp_ResolvedCall$$apply$lambda$_5_2); + var$11 = s_Option_map(var$5, new oncifp_ResolvedCall$$apply$lambda$_5_3); + var$1 = new oncifp_ResolvedCall$$apply$lambda$_5_4; + var$1.$_01177 = var$3; + var$1.$_1239 = var$8; + var$1.$_278 = var$10; + var$3 = s_Option_getOrElse(var$11, var$1); + if (s_Option_isDefined(s_Option_flatMap(var$5, new oncifp_ResolvedCall$$apply$lambda$_5_5))) { + var$1 = new jl_IllegalArgumentException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4926)), var$2); + jl_Exception__init_(var$1, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$1); + } + var$1 = oncifp_ResolvedCall__init_(var$8, var$9, var$3, s_Option_isDefined(var$4), s_Option_isDefined(var$5), var$7, var$6, var$10); + var$8 = sci_ArraySeq_map(var$1.$signature.$inputSignature0, new oncifp_ResolvedCall$coerceArguments$lambda$_22_0); + var$2 = (onciu_ZippableUtil$Zippable_zipLeft(onciu_ZippableUtil$_Zippable(onciu_ZippableUtil$_MODULE$, var$1.$callArguments), var$8, s_None$_MODULE$, sc_BuildFrom$_buildFromIterableOps(sc_BuildFrom$_MODULE$))).$map(new oncifp_ResolvedCall$coerceArguments$lambda$_22_1); + return oncifp_ResolvedCall_copy(var$1, var$1.$signature, var$2, var$1.$callResults, var$1.$declaredArguments0, var$1.$declaredResults, var$1.$yieldAll5, var$1.$optional3, var$1.$position9); +}; +function oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_1() { + jl_Object.call(this); + this.$_0335 = null; +} +let oncief_UserDefinedFunctionInvocation = $rt_classWithoutFields(0), +oncias_SemanticCheckableExpression = $rt_classWithoutFields(0); +function oncifp_ResolvedFunctionInvocation() { + let a = this; oncie_Expression.call(a); + a.$qualifiedName = null; + a.$fcnSignature = null; + a.$callArguments0 = null; + a.$position12 = null; +} +let oncifp_ResolvedFunctionInvocation_position = $this => { + return $this.$position12; }, -oncief_ToStringList$_toString = $this => { - return $rt_s(5965); +oncifp_ResolvedFunctionInvocation_semanticCheck = ($this, $ctx) => { + let $signature, $qn, var$4, $usedDefaultArgs, $expectedNumArgs, $actualNumArgs; + $signature = $this.$fcnSignature; + if (jl_Object_equals(s_None$_MODULE$, $signature)) { + $ctx = $this.$qualifiedName; + if ($ctx !== null) { + $signature = $ctx.$namespace5; + $qn = $ctx.$name22; + if ($signature !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $signature); + if (!$signature.$lengthCompare(0) && jl_String_equalsIgnoreCase($qn, $rt_s(4927))) { + $ctx = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + $signature = oncias_SemanticError$_MODULE$; + var$4 = $this.$qualifiedName; + $usedDefaultArgs = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($usedDefaultArgs); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($usedDefaultArgs, $rt_s(4928)), var$4), $rt_s(4929)); + return oncias_package$_liftSemanticErrorDef($ctx, oncias_SemanticError$_apply($signature, jl_AbstractStringBuilder_toString($usedDefaultArgs), $this.$position12)); + } + } + } + $ctx = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + $signature = oncias_SemanticError$_MODULE$; + var$4 = $this.$qualifiedName; + $usedDefaultArgs = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($usedDefaultArgs); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($usedDefaultArgs, $rt_s(4928)), var$4), 39); + return oncias_package$_liftSemanticErrorDef($ctx, oncias_SemanticError$_apply($signature, jl_AbstractStringBuilder_toString($usedDefaultArgs), $this.$position12)); + } + if (!($signature instanceof s_Some)) + $rt_throw(s_MatchError__init_($signature)); + $signature = $signature.$value5; + $expectedNumArgs = $signature.$inputSignature.$length(); + $usedDefaultArgs = sc_StrictOptimizedIterableOps_flatMap$(sci_ArraySeq_drop($signature.$inputSignature, $this.$callArguments0.$length()), new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0); + $actualNumArgs = $this.$callArguments0.$length() + $usedDefaultArgs.$length() | 0; + if ($expectedNumArgs == $actualNumArgs) { + $qn = sci_ArraySeq_map(sci_ArraySeq_zip($signature.$inputSignature, $this.$callArguments0), new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1); + oncias_SemanticCheck$_$callClinit(); + $ctx = sci_ArraySeq_foldLeft($qn, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$), new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2); + $usedDefaultArgs = oncias_package$_MODULE$; + oncias_SemanticExpressionCheck$_$callClinit(); + $qn = oncias_SemanticExpressionCheck$_MODULE$; + var$4 = new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3; + var$4.$_0226 = $signature; + return $ctx.$chain(oncias_package$_liftSemanticEitherFunc($usedDefaultArgs, oncias_SemanticAnalysisTooling_specifyType$($qn, var$4, $this))); + } + if (sc_SeqOps_isEmpty$($signature.$inputSignature)) + $usedDefaultArgs = $rt_s(4930); + else if ($signature.$inputSignature.$length() != 1) { + $ctx = sc_AbstractIterable_mkString(sci_ArraySeq_map($signature.$inputSignature, new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7), $rt_s(45)); + $usedDefaultArgs = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($usedDefaultArgs); + jl_StringBuilder_append(jl_StringBuilder_append($usedDefaultArgs, $rt_s(4931)), $ctx); + $usedDefaultArgs = jl_AbstractStringBuilder_toString($usedDefaultArgs); + } else { + $usedDefaultArgs = (sc_IndexedSeqOps_head$($signature.$inputSignature)).$typ.$normalizedCypherTypeString(); + $qn = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($qn); + jl_StringBuilder_append(jl_StringBuilder_append($qn, $rt_s(4932)), $usedDefaultArgs); + $usedDefaultArgs = jl_AbstractStringBuilder_toString($qn); + } + $ctx = s_Option_getOrElse(s_Option_map($signature.$description2, new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4), new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5); + $qn = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($qn); + jl_StringBuilder_append(jl_StringBuilder_append($qn, $usedDefaultArgs), $ctx); + $ctx = jl_AbstractStringBuilder_toString($qn); + $usedDefaultArgs = oncias_package$_MODULE$; + $qn = new oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6; + $qn.$_0904 = $this; + $qn.$_1308 = $expectedNumArgs; + $qn.$_2101 = $actualNumArgs; + $qn.$_332 = $signature; + $qn.$_49 = $ctx; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($usedDefaultArgs, $qn); }, -oncief_ToStringList$_signatures0 = $this => { - oncief_ToStringList$_$callClinit(); - return oncief_ToStringList$_signatures; +oncifp_ResolvedFunctionInvocation_asUnresolvedFunction = $this => { + let var$1, var$2, var$3; + var$1 = new oncie_FunctionInvocation; + var$2 = oncie_FunctionName__init_(oncie_Namespace__init_($this.$qualifiedName.$namespace5.$toList(), $this.$position12), $this.$qualifiedName.$name22, $this.$position12); + var$3 = (oncie_Expression_arguments($this)).$toIndexedSeq(); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$1, var$2, 0, var$3, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, $this.$position12); + return var$1; }, -oncief_ToStringOrNull$ = $rt_classWithoutFields(oncief_Function); -let oncief_ToStringOrNull$_MODULE$ = null, -oncief_ToStringOrNull$_signatures = null, -oncief_ToStringOrNull$_$callClinit = () => { - oncief_ToStringOrNull$_$callClinit = $rt_eraseClinit(oncief_ToStringOrNull$); - oncief_ToStringOrNull$__clinit_(); +oncifp_ResolvedFunctionInvocation_isConstantForQuery = $this => { + return 0; }, -oncief_ToStringOrNull$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_ToStringOrNull$; - oncief_ToStringOrNull$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToStringOrNull$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToStringOrNull$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5966)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5967), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToStringOrNull$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncifp_ResolvedFunctionInvocation_copy = ($this, $qualifiedName, $fcnSignature, $callArguments, $position) => { + return oncifp_ResolvedFunctionInvocation__init_($qualifiedName, $fcnSignature, $callArguments, $position); }, -oncief_ToStringOrNull$_name = $this => { - return $rt_s(5968); +oncifp_ResolvedFunctionInvocation_productPrefix = $this => { + return $rt_s(4933); }, -oncief_ToStringOrNull$_productArity = $this => { - return 0; +oncifp_ResolvedFunctionInvocation_productArity = $this => { + return 3; }, -oncief_ToStringOrNull$_productElement = ($this, $x$1) => { +oncifp_ResolvedFunctionInvocation_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$qualifiedName; + case 1: + return $this.$fcnSignature; + case 2: + return $this.$callArguments0; + default: + } return sr_Statics_ioobe($x$1); }, -oncief_ToStringOrNull$_productIterator = $this => { +oncifp_ResolvedFunctionInvocation_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToStringOrNull$_hashCode = $this => { - return (-1892472906); -}, -oncief_ToStringOrNull$_toString = $this => { - return $rt_s(5969); -}, -oncief_ToStringOrNull$_signatures0 = $this => { - oncief_ToStringOrNull$_$callClinit(); - return oncief_ToStringOrNull$_signatures; +oncifp_ResolvedFunctionInvocation_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToUpper$ = $rt_classWithoutFields(oncief_Function), -oncief_ToUpper$_MODULE$ = null, -oncief_ToUpper$_signatures = null, -oncief_ToUpper$_$callClinit = () => { - oncief_ToUpper$_$callClinit = $rt_eraseClinit(oncief_ToUpper$); - oncief_ToUpper$__clinit_(); +oncifp_ResolvedFunctionInvocation_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_ToUpper$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_ToUpper$; - oncief_ToUpper$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ToUpper$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ToUpper$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5970)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5971), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ToUpper$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncifp_ResolvedFunctionInvocation_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncifp_ResolvedFunctionInvocation) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$qualifiedName; + var$3 = $x$1.$qualifiedName; + if (var$2 !== null) { + if (!oncifp_QualifiedName_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$fcnSignature; + var$3 = $x$1.$fcnSignature; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$callArguments0; + $x$1 = $x$1.$callArguments0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncifp_ResolvedFunctionInvocation)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncief_ToUpper$_name = $this => { - return $rt_s(5972); +oncifp_ResolvedFunctionInvocation__init_0 = ($this, $qualifiedName, $fcnSignature, $callArguments, $position) => { + $this.$qualifiedName = $qualifiedName; + $this.$fcnSignature = $fcnSignature; + $this.$callArguments0 = $callArguments; + $this.$position12 = $position; + oncie_Expression__init_($this); }, -oncief_ToUpper$_productArity = $this => { - return 0; +oncifp_ResolvedFunctionInvocation__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncifp_ResolvedFunctionInvocation(); + oncifp_ResolvedFunctionInvocation__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_0() { + jl_Object.call(this); + this.$_01084 = null; +} +let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_01084; + var$2 = new jl_IllegalStateException; + var$1 = var$1.$name(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(4934)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); }, -oncief_ToUpper$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_1 = $rt_classWithoutFields(), +oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_1_apply = (var$0, var$1) => { + return var$1.$name(); +}; +function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_2() { + jl_Object.call(this); + this.$_0112 = null; +} +let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0112; + var$3 = var$2.$removedAll(var$1); + var$4 = new oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0; + var$4.$_0965 = var$2; + return sc_AbstractIterable_toIndexedSeq((sci_List_filter(var$1, var$4)).$concat(var$3)); +}; +function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_3() { + jl_Object.call(this); + this.$_0678 = null; +} +let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_3_apply = var$0 => { + let var$1; + var$1 = sc_AbstractIterable_toIndexedSeq(var$0.$_0678); + sm_Ordering$String$_$callClinit(); + return var$1.$sorted(sm_Ordering$String$_MODULE$); +}; +function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4() { + jl_Object.call(this); + this.$_070 = null; +} +let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_070; + var$3 = new oncie_Variable; + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$3, var$1, var$2, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + return oncia_AliasedReturnItem__init_(var$3, oncie_Variable_copyId(var$3), var$2); +}; +function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0() { + jl_Object.call(this); + this.$_01181 = null; +} +let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0_apply = var$0 => { + let var$1, var$2; + var$1 = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(4039)), $rt_s(4934)); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$1); +}; +function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_1() { + jl_Object.call(this); + this.$_01157 = null; +} +let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_1_apply = var$0 => { + let var$1, var$2; + var$1 = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(4039)), $rt_s(4934)); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$1); }, -oncief_ToUpper$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_2 = $rt_classWithoutFields(), +oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_2_apply = (var$0, var$1) => { + return var$1.$name4; }, -oncief_ToUpper$_hashCode = $this => { - return 500680391; +oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_3 = $rt_classWithoutFields(), +oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_3_apply = (var$0, var$1) => { + return s_Option_map(var$1.$reportParams0, new oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0); +}; +function oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4() { + jl_Object.call(this); + this.$_0718 = null; +} +let oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0718; + var$3 = new oncie_Variable; + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$3, var$1, var$2, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + return var$3; +}; +function oncias_SymbolUse() { + jl_Object.call(this); + this.$use = null; +} +let oncias_SymbolUse_toString = $this => { + let var$1, var$2; + var$1 = oncias_SymbolUse_uniqueName($this); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(4935)), var$1), 41); + return jl_AbstractStringBuilder_toString(var$2); }, -oncief_ToUpper$_toString = $this => { - return $rt_s(5973); +oncias_SymbolUse_asVariable = $this => { + return $this.$use.$value20; }, -oncief_ToUpper$_signatures0 = $this => { - oncief_ToUpper$_$callClinit(); - return oncief_ToUpper$_signatures; +oncias_SymbolUse_uniqueName = $this => { + let var$1, var$2, var$3, var$4; + var$1 = (oncias_SymbolUse_asVariable($this)).$name4; + var$2 = (oncias_SymbolUse_asVariable($this)).$position4.$offset(); + var$3 = onciu_Ref_toIdString($this.$use); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$1 = jl_StringBuilder_append(var$4, var$1); + jl_AbstractStringBuilder_append0(var$1, 64); + var$1 = jl_StringBuilder_append0(var$1, var$2); + jl_AbstractStringBuilder_append0(var$1, 40); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$3), 41); + return jl_AbstractStringBuilder_toString(var$4); }, -oncief_Properties$ = $rt_classWithoutFields(oncief_Function), -oncief_Properties$_MODULE$ = null, -oncief_Properties$_signatures = null, -oncief_Properties$_$callClinit = () => { - oncief_Properties$_$callClinit = $rt_eraseClinit(oncief_Properties$); - oncief_Properties$__clinit_(); +oncias_SymbolUse_positionsAndUniqueIdString = $this => { + return s_Tuple2__init_(jl_Integer_valueOf((oncias_SymbolUse_asVariable($this)).$position4.$offset()), onciu_Ref_toIdString($this.$use)); }, -oncief_Properties$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, var$7, var$8, $x$2, $x$8, var$11, var$12, $x$3, $x$10, var$15, var$16, $x$4, $x$6; - var$1 = new oncief_Properties$; - oncief_Properties$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Properties$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Properties$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); - $x$8 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); - var$11 = var$8.data; - var$12 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - $x$3 = s_Predef$_Set(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$15 = $rt_createArray(oncius_CypherType, 3); - var$16 = var$15.data; - oncius_package$_$callClinit(); - var$16[0] = oncius_package$_CTNode(oncius_package$_MODULE$); - var$16[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - var$16[2] = oncius_package$_CTMap(oncius_package$_MODULE$); - var$7 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$15)); - onciu_InputPosition$_$callClinit(); - oncius_ClosedDynamicUnionType__init_(var$12, var$7, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$11[0] = var$12; - $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTMap(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - $x$8 = s_Predef$_Map(s_Predef$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5974)); - var$12 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5975), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); - oncief_Properties$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncias_SymbolUse_name = $this => { + return (oncias_SymbolUse_asVariable($this)).$name4; }, -oncief_Properties$_name = $this => { - return $rt_s(4907); +oncias_SymbolUse_productPrefix = $this => { + return $rt_s(4936); }, -oncief_Properties$_productArity = $this => { - return 0; +oncias_SymbolUse_productArity = $this => { + return 1; }, -oncief_Properties$_productElement = ($this, $x$1) => { +oncias_SymbolUse_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$use; + default: + } return sr_Statics_ioobe($x$1); }, -oncief_Properties$_productIterator = $this => { +oncias_SymbolUse_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_Properties$_hashCode = $this => { - return 1067411795; +oncias_SymbolUse_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncief_Properties$_toString = $this => { - return $rt_s(5976); +oncias_SymbolUse_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SymbolUse) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$use; + $x$1 = $x$1.$use; + if (var$2 !== null) { + if (!onciu_Ref_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}; +function sci_HashCollisionMapNode$foreachEntry$lambda$_24_0() { + jl_Object.call(this); + this.$_01028 = null; +} +let sci_HashCollisionMapNode$foreachEntry$lambda$_24_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_01028; + if (var$1 === null) + $rt_throw(s_MatchError__init_(null)); + return var$2.$apply3(var$1.$_1(), var$1.$_2()); }, -oncief_Properties$_signatures0 = $this => { - oncief_Properties$_$callClinit(); - return oncief_Properties$_signatures; +oncipvaf_Cypher5ErrorStrategyConf = $rt_classWithoutFields(), +oncipvaf_Cypher5ErrorStrategyConf_preferredRules = $this => { + return oncip_CypherErrorStrategy$Conf_preferredRules$($this); }, -oncief_Type$ = $rt_classWithoutFields(oncief_Function), -oncief_Type$_MODULE$ = null, -oncief_Type$_signatures = null, -oncief_Type$_$callClinit = () => { - oncief_Type$_$callClinit = $rt_eraseClinit(oncief_Type$); - oncief_Type$__clinit_(); +oncipvaf_Cypher5ErrorStrategyConf_vocabulary = $this => { + oncipv_Cypher5Parser_$callClinit(); + return oncipv_Cypher5Parser_VOCABULARY; }, -oncief_Type$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Type$; - oncief_Type$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Type$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); +oncipvaf_Cypher5ErrorStrategyConf_ignoredTokens = $this => { + s_Predef$_$callClinit(); + return ju_Set_of(jl_Integer_valueOf((-2)), jl_Integer_valueOf(247)); +}, +oncipvaf_Cypher5ErrorStrategyConf_customTokenDisplayNames = $this => { + let var$1, var$2, var$3, var$4; + s_Predef$_$callClinit(); + var$1 = s_Predef$_Map(s_Predef$_MODULE$); var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$3 = $rt_createArray(s_Tuple2, 19); var$4 = var$3.data; - $x$1 = oncief_Type$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_RelationshipType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(1), $rt_s(4585)); + var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(2), $rt_s(4586)); + var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(4), $rt_s(4587)); + var$4[3] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(5), $rt_s(4588)); + var$4[4] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(6), $rt_s(4589)); + var$4[5] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(7), $rt_s(4590)); + var$4[6] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(309), $rt_s(4591)); + var$4[7] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(310), $rt_s(4563)); + var$4[8] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(311), $rt_s(4562)); + var$4[9] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(312), $rt_s(4555)); + var$4[10] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(3), $rt_s(4592)); + var$4[11] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(8), $rt_s(4593)); + var$4[12] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(9), $rt_s(4593)); + var$4[13] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(10), $rt_s(4591)); + var$4[14] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(17), $rt_s(4594)); + var$4[15] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(253), $rt_s(4595)); + var$4[16] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(150), $rt_s(4596)); + var$4[17] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(258), $rt_s(4597)); + var$4[18] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf((-1)), $rt_s(4236)); + return sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncipvaf_Cypher5ErrorStrategyConf_ruleGroups = $this => { + let var$1, var$2, var$3, var$4; s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5705)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5977), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Type$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); + var$1 = s_Predef$_Map(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(s_Tuple2, 27); + var$4 = var$3.data; + var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(88), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(106), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(100), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[3] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(99), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[4] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(98), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[5] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(97), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[6] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(96), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[7] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(93), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[8] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(92), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[9] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(91), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[10] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(90), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[11] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(89), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); + var$4[12] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(322), oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$); + var$4[13] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(128), oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$); + var$4[14] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(132), oncip_CypherErrorStrategy$ParameterRule$_MODULE$); + var$4[15] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(138), oncip_CypherErrorStrategy$VariableRule$_MODULE$); + var$4[16] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(319), oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$); + var$4[17] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(49), oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$); + var$4[18] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(331), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[19] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(332), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[20] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(333), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[21] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(334), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[22] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(335), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); + var$4[23] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(77), oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$); + var$4[24] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(71), oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$); + var$4[25] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(59), oncip_CypherErrorStrategy$NodePatternRule$_MODULE$); + var$4[26] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(84), oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$); + return sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncief_Type$_name = $this => { - return $rt_s(4912); +oncipvaf_Cypher5ErrorStrategyConf_errorCharTokenType = $this => { + return 313; }, -oncief_Type$_productArity = $this => { - return 0; +oncipv_Cypher5Lexer = $rt_classWithoutFields(oavr_Lexer), +oncipv_Cypher5Lexer__decisionToDFA = null, +oncipv_Cypher5Lexer__sharedContextCache = null, +oncipv_Cypher5Lexer_channelNames = null, +oncipv_Cypher5Lexer_modeNames = null, +oncipv_Cypher5Lexer_ruleNames = null, +oncipv_Cypher5Lexer__LITERAL_NAMES = null, +oncipv_Cypher5Lexer__SYMBOLIC_NAMES = null, +oncipv_Cypher5Lexer_VOCABULARY = null, +oncipv_Cypher5Lexer_tokenNames = null, +oncipv_Cypher5Lexer__serializedATN = null, +oncipv_Cypher5Lexer__ATN = null, +oncipv_Cypher5Lexer_$callClinit = () => { + oncipv_Cypher5Lexer_$callClinit = $rt_eraseClinit(oncipv_Cypher5Lexer); + oncipv_Cypher5Lexer__clinit_(); }, -oncief_Type$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher5Lexer_makeRuleNames = () => { + oncipv_Cypher5Lexer_$callClinit(); + return $rt_wrapArray(jl_String, [$rt_s(4260), $rt_s(4261), $rt_s(4262), $rt_s(4263), $rt_s(4264), $rt_s(4265), $rt_s(4266), $rt_s(4267), $rt_s(4268), $rt_s(4269), $rt_s(4270), $rt_s(4271), $rt_s(4272), $rt_s(4273), $rt_s(512), $rt_s(4274), $rt_s(4275), $rt_s(4276), $rt_s(4277), $rt_s(4278), $rt_s(562), $rt_s(4279), $rt_s(4280), $rt_s(708), $rt_s(4281), $rt_s(4282), $rt_s(4283), $rt_s(4284), $rt_s(4937), $rt_s(4285), $rt_s(4286), $rt_s(4287), $rt_s(4288), $rt_s(4289), $rt_s(4290), $rt_s(710), $rt_s(4291), + $rt_s(4292), $rt_s(4293), $rt_s(4938), $rt_s(1095), $rt_s(4294), $rt_s(4295), $rt_s(4039), $rt_s(4296), $rt_s(455), $rt_s(4297), $rt_s(4298), $rt_s(4299), $rt_s(4300), $rt_s(4301), $rt_s(4302), $rt_s(4303), $rt_s(4304), $rt_s(4939), $rt_s(4305), $rt_s(3543), $rt_s(506), $rt_s(4306), $rt_s(4307), $rt_s(4308), $rt_s(4309), $rt_s(4310), $rt_s(4311), $rt_s(4312), $rt_s(4313), $rt_s(4314), $rt_s(4315), $rt_s(4316), $rt_s(743), $rt_s(4317), $rt_s(31), $rt_s(4318), $rt_s(587), $rt_s(4319), $rt_s(4320), $rt_s(4321), + $rt_s(4322), $rt_s(4323), $rt_s(4324), $rt_s(4325), $rt_s(4326), $rt_s(4327), $rt_s(4328), $rt_s(4329), $rt_s(4330), $rt_s(4331), $rt_s(4332), $rt_s(534), $rt_s(4333), $rt_s(4334), $rt_s(4335), $rt_s(752), $rt_s(4336), $rt_s(4337), $rt_s(4338), $rt_s(4339), $rt_s(4340), $rt_s(4341), $rt_s(4342), $rt_s(456), $rt_s(4343), $rt_s(4344), $rt_s(4345), $rt_s(4346), $rt_s(4347), $rt_s(4348), $rt_s(4349), $rt_s(4350), $rt_s(4351), $rt_s(4352), $rt_s(4353), $rt_s(609), $rt_s(719), $rt_s(4354), $rt_s(4355), $rt_s(525), + $rt_s(3565), $rt_s(4356), $rt_s(4357), $rt_s(4358), $rt_s(4359), $rt_s(761), $rt_s(4360), $rt_s(4361), $rt_s(4362), $rt_s(4363), $rt_s(4364), $rt_s(588), $rt_s(4365), $rt_s(4366), $rt_s(4367), $rt_s(4368), $rt_s(477), $rt_s(907), $rt_s(4369), $rt_s(4370), $rt_s(4371), $rt_s(4372), $rt_s(4373), $rt_s(722), $rt_s(4374), $rt_s(4375), $rt_s(4376), $rt_s(4377), $rt_s(4378), $rt_s(4379), $rt_s(4380), $rt_s(4381), $rt_s(4382), $rt_s(4383), $rt_s(4384), $rt_s(4385), $rt_s(4386), $rt_s(4387), $rt_s(4388), $rt_s(3566), + $rt_s(4389), $rt_s(4390), $rt_s(4391), $rt_s(724), $rt_s(4392), $rt_s(4393), $rt_s(4394), $rt_s(4395), $rt_s(4396), $rt_s(4397), $rt_s(4398), $rt_s(4399), $rt_s(4400), $rt_s(4401), $rt_s(4402), $rt_s(4403), $rt_s(4404), $rt_s(4405), $rt_s(727), $rt_s(4406), $rt_s(4407), $rt_s(3648), $rt_s(4408), $rt_s(4409), $rt_s(4410), $rt_s(4411), $rt_s(4412), $rt_s(4118), $rt_s(4413), $rt_s(4414), $rt_s(4415), $rt_s(4416), $rt_s(4417), $rt_s(4418), $rt_s(4419), $rt_s(4420), $rt_s(4421), $rt_s(4940), $rt_s(557), $rt_s(4422), + $rt_s(758), $rt_s(4423), $rt_s(4941), $rt_s(4424), $rt_s(4425), $rt_s(4426), $rt_s(734), $rt_s(4427), $rt_s(4428), $rt_s(4429), $rt_s(4430), $rt_s(4431), $rt_s(4432), $rt_s(4433), $rt_s(4434), $rt_s(531), $rt_s(4435), $rt_s(4436), $rt_s(4437), $rt_s(4438), $rt_s(1097), $rt_s(4439), $rt_s(4440), $rt_s(32), $rt_s(4441), $rt_s(4442), $rt_s(4443), $rt_s(4444), $rt_s(4445), $rt_s(730), $rt_s(4446), $rt_s(4447), $rt_s(4448), $rt_s(770), $rt_s(771), $rt_s(4449), $rt_s(4450), $rt_s(4451), $rt_s(641), $rt_s(4452), + $rt_s(4453), $rt_s(4454), $rt_s(4455), $rt_s(4456), $rt_s(4457), $rt_s(4458), $rt_s(4459), $rt_s(4460), $rt_s(4461), $rt_s(4462), $rt_s(4463), $rt_s(4464), $rt_s(4465), $rt_s(4466), $rt_s(4467), $rt_s(4468), $rt_s(4469), $rt_s(4470), $rt_s(4471), $rt_s(4472), $rt_s(4473), $rt_s(4474), $rt_s(4475), $rt_s(4476), $rt_s(4477), $rt_s(4478), $rt_s(4479), $rt_s(4480), $rt_s(714), $rt_s(4481), $rt_s(513), $rt_s(4482), $rt_s(4483), $rt_s(1096), $rt_s(4484), $rt_s(4485), $rt_s(4486), $rt_s(4487), $rt_s(4488), $rt_s(524), + $rt_s(3586), $rt_s(4489), $rt_s(4490), $rt_s(4491), $rt_s(4492), $rt_s(4493), $rt_s(4494), $rt_s(4495), $rt_s(4496), $rt_s(4497), $rt_s(608), $rt_s(4498), $rt_s(4499), $rt_s(4500), $rt_s(4501), $rt_s(4502), $rt_s(558), $rt_s(4503), $rt_s(4504), $rt_s(4505), $rt_s(4506), $rt_s(3567), $rt_s(4942), $rt_s(4507), $rt_s(4508), $rt_s(4509), $rt_s(4040), $rt_s(642), $rt_s(4510), $rt_s(33), $rt_s(4511), $rt_s(4063), $rt_s(4512), $rt_s(4513), $rt_s(4514), $rt_s(4516), $rt_s(4517), $rt_s(4518), $rt_s(4519), $rt_s(4520), + $rt_s(4521), $rt_s(4522), $rt_s(4523), $rt_s(209), $rt_s(4524), $rt_s(4525), $rt_s(4526), $rt_s(4527), $rt_s(4528), $rt_s(4529), $rt_s(4530), $rt_s(4531), $rt_s(4532), $rt_s(343), $rt_s(4533), $rt_s(4534), $rt_s(4535), $rt_s(4536), $rt_s(207), $rt_s(4537), $rt_s(4538), $rt_s(4539), $rt_s(205), $rt_s(4540), $rt_s(4541), $rt_s(4542), $rt_s(4543)]); }, -oncief_Type$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher5Lexer_makeLiteralNames = () => { + let var$1, var$2; + oncipv_Cypher5Lexer_$callClinit(); + var$1 = $rt_createArray(jl_String, 272); + var$2 = var$1.data; + var$2[0] = null; + var$2[1] = null; + var$2[2] = null; + var$2[3] = null; + var$2[4] = null; + var$2[5] = null; + var$2[6] = null; + var$2[7] = null; + var$2[8] = null; + var$2[9] = null; + var$2[10] = null; + var$2[11] = null; + var$2[12] = null; + var$2[13] = null; + var$2[14] = null; + var$2[15] = null; + var$2[16] = null; + var$2[17] = null; + var$2[18] = null; + var$2[19] = null; + var$2[20] = null; + var$2[21] = null; + var$2[22] = null; + var$2[23] = null; + var$2[24] = null; + var$2[25] = null; + var$2[26] = null; + var$2[27] = null; + var$2[28] = null; + var$2[29] = null; + var$2[30] = $rt_s(4544); + var$2[31] = null; + var$2[32] = null; + var$2[33] = null; + var$2[34] = null; + var$2[35] = null; + var$2[36] = null; + var$2[37] = null; + var$2[38] = null; + var$2[39] = null; + var$2[40] = null; + var$2[41] = null; + var$2[42] = null; + var$2[43] = null; + var$2[44] = null; + var$2[45] = null; + var$2[46] = null; + var$2[47] = $rt_s(4545); + var$2[48] = $rt_s(4546); + var$2[49] = $rt_s(4547); + var$2[50] = null; + var$2[51] = null; + var$2[52] = null; + var$2[53] = null; + var$2[54] = null; + var$2[55] = null; + var$2[56] = null; + var$2[57] = null; + var$2[58] = null; + var$2[59] = null; + var$2[60] = null; + var$2[61] = null; + var$2[62] = null; + var$2[63] = null; + var$2[64] = null; + var$2[65] = null; + var$2[66] = null; + var$2[67] = null; + var$2[68] = null; + var$2[69] = null; + var$2[70] = null; + var$2[71] = null; + var$2[72] = null; + var$2[73] = null; + var$2[74] = null; + var$2[75] = null; + var$2[76] = null; + var$2[77] = null; + var$2[78] = null; + var$2[79] = null; + var$2[80] = $rt_s(4548); + var$2[81] = null; + var$2[82] = $rt_s(4549); + var$2[83] = $rt_s(4550); + var$2[84] = $rt_s(4551); + var$2[85] = $rt_s(4552); + var$2[86] = null; + var$2[87] = null; + var$2[88] = null; + var$2[89] = null; + var$2[90] = null; + var$2[91] = null; + var$2[92] = null; + var$2[93] = null; + var$2[94] = null; + var$2[95] = null; + var$2[96] = null; + var$2[97] = null; + var$2[98] = null; + var$2[99] = null; + var$2[100] = $rt_s(4553); + var$2[101] = null; + var$2[102] = null; + var$2[103] = null; + var$2[104] = null; + var$2[105] = null; + var$2[106] = null; + var$2[107] = null; + var$2[108] = null; + var$2[109] = null; + var$2[110] = null; + var$2[111] = null; + var$2[112] = null; + var$2[113] = null; + var$2[114] = null; + var$2[115] = null; + var$2[116] = null; + var$2[117] = null; + var$2[118] = $rt_s(4554); + var$2[119] = null; + var$2[120] = null; + var$2[121] = null; + var$2[122] = null; + var$2[123] = null; + var$2[124] = $rt_s(4555); + var$2[125] = null; + var$2[126] = null; + var$2[127] = null; + var$2[128] = null; + var$2[129] = null; + var$2[130] = null; + var$2[131] = null; + var$2[132] = null; + var$2[133] = null; + var$2[134] = null; + var$2[135] = null; + var$2[136] = null; + var$2[137] = null; + var$2[138] = null; + var$2[139] = null; + var$2[140] = null; + var$2[141] = null; + var$2[142] = null; + var$2[143] = null; + var$2[144] = $rt_s(4556); + var$2[145] = $rt_s(4557); + var$2[146] = $rt_s(4558); + var$2[147] = $rt_s(4559); + var$2[148] = $rt_s(4560); + var$2[149] = null; + var$2[150] = null; + var$2[151] = null; + var$2[152] = null; + var$2[153] = null; + var$2[154] = null; + var$2[155] = $rt_s(4561); + var$2[156] = $rt_s(4562); + var$2[157] = null; + var$2[158] = null; + var$2[159] = null; + var$2[160] = null; + var$2[161] = $rt_s(4563); + var$2[162] = $rt_s(4564); + var$2[163] = $rt_s(4565); + var$2[164] = $rt_s(4566); + var$2[165] = null; + var$2[166] = null; + var$2[167] = null; + var$2[168] = null; + var$2[169] = null; + var$2[170] = null; + var$2[171] = null; + var$2[172] = null; + var$2[173] = null; + var$2[174] = null; + var$2[175] = null; + var$2[176] = null; + var$2[177] = null; + var$2[178] = null; + var$2[179] = null; + var$2[180] = null; + var$2[181] = null; + var$2[182] = null; + var$2[183] = null; + var$2[184] = null; + var$2[185] = null; + var$2[186] = null; + var$2[187] = null; + var$2[188] = null; + var$2[189] = null; + var$2[190] = null; + var$2[191] = null; + var$2[192] = null; + var$2[193] = null; + var$2[194] = null; + var$2[195] = null; + var$2[196] = null; + var$2[197] = null; + var$2[198] = null; + var$2[199] = $rt_s(4567); + var$2[200] = $rt_s(4568); + var$2[201] = null; + var$2[202] = null; + var$2[203] = $rt_s(4569); + var$2[204] = null; + var$2[205] = null; + var$2[206] = null; + var$2[207] = null; + var$2[208] = null; + var$2[209] = null; + var$2[210] = null; + var$2[211] = null; + var$2[212] = null; + var$2[213] = null; + var$2[214] = $rt_s(4570); + var$2[215] = null; + var$2[216] = $rt_s(4571); + var$2[217] = $rt_s(4572); + var$2[218] = null; + var$2[219] = null; + var$2[220] = null; + var$2[221] = null; + var$2[222] = $rt_s(4573); + var$2[223] = null; + var$2[224] = null; + var$2[225] = null; + var$2[226] = null; + var$2[227] = null; + var$2[228] = null; + var$2[229] = null; + var$2[230] = null; + var$2[231] = null; + var$2[232] = null; + var$2[233] = null; + var$2[234] = null; + var$2[235] = null; + var$2[236] = null; + var$2[237] = null; + var$2[238] = null; + var$2[239] = $rt_s(4574); + var$2[240] = null; + var$2[241] = null; + var$2[242] = null; + var$2[243] = null; + var$2[244] = null; + var$2[245] = null; + var$2[246] = null; + var$2[247] = $rt_s(4575); + var$2[248] = null; + var$2[249] = null; + var$2[250] = null; + var$2[251] = null; + var$2[252] = null; + var$2[253] = null; + var$2[254] = null; + var$2[255] = null; + var$2[256] = null; + var$2[257] = null; + var$2[258] = null; + var$2[259] = null; + var$2[260] = null; + var$2[261] = null; + var$2[262] = null; + var$2[263] = null; + var$2[264] = null; + var$2[265] = null; + var$2[266] = null; + var$2[267] = null; + var$2[268] = null; + var$2[269] = null; + var$2[270] = null; + var$2[271] = $rt_s(4576); + return var$1; }, -oncief_Type$_hashCode = $this => { - return 2622298; +oncipv_Cypher5Lexer_makeSymbolicNames = () => { + let var$1, var$2; + oncipv_Cypher5Lexer_$callClinit(); + var$1 = $rt_createArray(jl_String, 314); + var$2 = var$1.data; + var$2[0] = null; + var$2[1] = $rt_s(4260); + var$2[2] = $rt_s(4261); + var$2[3] = $rt_s(4262); + var$2[4] = $rt_s(4263); + var$2[5] = $rt_s(4264); + var$2[6] = $rt_s(4267); + var$2[7] = $rt_s(4268); + var$2[8] = $rt_s(4269); + var$2[9] = $rt_s(4270); + var$2[10] = $rt_s(4272); + var$2[11] = $rt_s(4273); + var$2[12] = $rt_s(512); + var$2[13] = $rt_s(4274); + var$2[14] = $rt_s(4275); + var$2[15] = $rt_s(4276); + var$2[16] = $rt_s(4277); + var$2[17] = $rt_s(4278); + var$2[18] = $rt_s(562); + var$2[19] = $rt_s(4279); + var$2[20] = $rt_s(4280); + var$2[21] = $rt_s(708); + var$2[22] = $rt_s(4281); + var$2[23] = $rt_s(4282); + var$2[24] = $rt_s(4283); + var$2[25] = $rt_s(4284); + var$2[26] = $rt_s(4937); + var$2[27] = $rt_s(4285); + var$2[28] = $rt_s(4286); + var$2[29] = $rt_s(4287); + var$2[30] = $rt_s(4288); + var$2[31] = $rt_s(4289); + var$2[32] = $rt_s(4290); + var$2[33] = $rt_s(710); + var$2[34] = $rt_s(4291); + var$2[35] = $rt_s(4292); + var$2[36] = $rt_s(4293); + var$2[37] = $rt_s(4938); + var$2[38] = $rt_s(1095); + var$2[39] = $rt_s(4294); + var$2[40] = $rt_s(4295); + var$2[41] = $rt_s(4039); + var$2[42] = $rt_s(4296); + var$2[43] = $rt_s(455); + var$2[44] = $rt_s(4297); + var$2[45] = $rt_s(4298); + var$2[46] = $rt_s(4299); + var$2[47] = $rt_s(4300); + var$2[48] = $rt_s(4301); + var$2[49] = $rt_s(4302); + var$2[50] = $rt_s(4303); + var$2[51] = $rt_s(4304); + var$2[52] = $rt_s(4939); + var$2[53] = $rt_s(4305); + var$2[54] = $rt_s(3543); + var$2[55] = $rt_s(506); + var$2[56] = $rt_s(4306); + var$2[57] = $rt_s(4307); + var$2[58] = $rt_s(4308); + var$2[59] = $rt_s(4309); + var$2[60] = $rt_s(4310); + var$2[61] = $rt_s(4311); + var$2[62] = $rt_s(4312); + var$2[63] = $rt_s(4313); + var$2[64] = $rt_s(4314); + var$2[65] = $rt_s(4315); + var$2[66] = $rt_s(4316); + var$2[67] = $rt_s(743); + var$2[68] = $rt_s(4317); + var$2[69] = $rt_s(31); + var$2[70] = $rt_s(4318); + var$2[71] = $rt_s(587); + var$2[72] = $rt_s(4319); + var$2[73] = $rt_s(4320); + var$2[74] = $rt_s(4321); + var$2[75] = $rt_s(4322); + var$2[76] = $rt_s(4323); + var$2[77] = $rt_s(4324); + var$2[78] = $rt_s(4325); + var$2[79] = $rt_s(4326); + var$2[80] = $rt_s(4327); + var$2[81] = $rt_s(4328); + var$2[82] = $rt_s(4329); + var$2[83] = $rt_s(4330); + var$2[84] = $rt_s(4331); + var$2[85] = $rt_s(4332); + var$2[86] = $rt_s(534); + var$2[87] = $rt_s(4333); + var$2[88] = $rt_s(4334); + var$2[89] = $rt_s(4335); + var$2[90] = $rt_s(752); + var$2[91] = $rt_s(4336); + var$2[92] = $rt_s(4337); + var$2[93] = $rt_s(4338); + var$2[94] = $rt_s(4339); + var$2[95] = $rt_s(4340); + var$2[96] = $rt_s(4341); + var$2[97] = $rt_s(4342); + var$2[98] = $rt_s(456); + var$2[99] = $rt_s(4343); + var$2[100] = $rt_s(4344); + var$2[101] = $rt_s(4345); + var$2[102] = $rt_s(4346); + var$2[103] = $rt_s(4347); + var$2[104] = $rt_s(4348); + var$2[105] = $rt_s(4349); + var$2[106] = $rt_s(4350); + var$2[107] = $rt_s(4351); + var$2[108] = $rt_s(4352); + var$2[109] = $rt_s(4353); + var$2[110] = $rt_s(609); + var$2[111] = $rt_s(719); + var$2[112] = $rt_s(4354); + var$2[113] = $rt_s(4355); + var$2[114] = $rt_s(525); + var$2[115] = $rt_s(3565); + var$2[116] = $rt_s(4356); + var$2[117] = $rt_s(4357); + var$2[118] = $rt_s(4358); + var$2[119] = $rt_s(4359); + var$2[120] = $rt_s(761); + var$2[121] = $rt_s(4360); + var$2[122] = $rt_s(4361); + var$2[123] = $rt_s(4362); + var$2[124] = $rt_s(4363); + var$2[125] = $rt_s(4364); + var$2[126] = $rt_s(588); + var$2[127] = $rt_s(4365); + var$2[128] = $rt_s(4366); + var$2[129] = $rt_s(4367); + var$2[130] = $rt_s(4368); + var$2[131] = $rt_s(477); + var$2[132] = $rt_s(907); + var$2[133] = $rt_s(4369); + var$2[134] = $rt_s(4370); + var$2[135] = $rt_s(4371); + var$2[136] = $rt_s(4372); + var$2[137] = $rt_s(4373); + var$2[138] = $rt_s(722); + var$2[139] = $rt_s(4374); + var$2[140] = $rt_s(4375); + var$2[141] = $rt_s(4376); + var$2[142] = $rt_s(4377); + var$2[143] = $rt_s(4378); + var$2[144] = $rt_s(4379); + var$2[145] = $rt_s(4380); + var$2[146] = $rt_s(4381); + var$2[147] = $rt_s(4382); + var$2[148] = $rt_s(4383); + var$2[149] = $rt_s(4384); + var$2[150] = $rt_s(4385); + var$2[151] = $rt_s(4386); + var$2[152] = $rt_s(4387); + var$2[153] = $rt_s(4388); + var$2[154] = $rt_s(3566); + var$2[155] = $rt_s(4389); + var$2[156] = $rt_s(4390); + var$2[157] = $rt_s(4391); + var$2[158] = $rt_s(724); + var$2[159] = $rt_s(4392); + var$2[160] = $rt_s(4393); + var$2[161] = $rt_s(4394); + var$2[162] = $rt_s(4395); + var$2[163] = $rt_s(4396); + var$2[164] = $rt_s(4397); + var$2[165] = $rt_s(4398); + var$2[166] = $rt_s(4399); + var$2[167] = $rt_s(4400); + var$2[168] = $rt_s(4401); + var$2[169] = $rt_s(4402); + var$2[170] = $rt_s(4403); + var$2[171] = $rt_s(4404); + var$2[172] = $rt_s(4405); + var$2[173] = $rt_s(727); + var$2[174] = $rt_s(4406); + var$2[175] = $rt_s(4407); + var$2[176] = $rt_s(3648); + var$2[177] = $rt_s(4408); + var$2[178] = $rt_s(4409); + var$2[179] = $rt_s(4410); + var$2[180] = $rt_s(4411); + var$2[181] = $rt_s(4412); + var$2[182] = $rt_s(4118); + var$2[183] = $rt_s(4413); + var$2[184] = $rt_s(4414); + var$2[185] = $rt_s(4415); + var$2[186] = $rt_s(4416); + var$2[187] = $rt_s(4417); + var$2[188] = $rt_s(4418); + var$2[189] = $rt_s(4419); + var$2[190] = $rt_s(4420); + var$2[191] = $rt_s(4421); + var$2[192] = $rt_s(4940); + var$2[193] = $rt_s(557); + var$2[194] = $rt_s(4422); + var$2[195] = $rt_s(758); + var$2[196] = $rt_s(4423); + var$2[197] = $rt_s(4941); + var$2[198] = $rt_s(4424); + var$2[199] = $rt_s(4425); + var$2[200] = $rt_s(4426); + var$2[201] = $rt_s(734); + var$2[202] = $rt_s(4427); + var$2[203] = $rt_s(4428); + var$2[204] = $rt_s(4429); + var$2[205] = $rt_s(4430); + var$2[206] = $rt_s(4431); + var$2[207] = $rt_s(4432); + var$2[208] = $rt_s(4433); + var$2[209] = $rt_s(4434); + var$2[210] = $rt_s(531); + var$2[211] = $rt_s(4435); + var$2[212] = $rt_s(4436); + var$2[213] = $rt_s(4437); + var$2[214] = $rt_s(4438); + var$2[215] = $rt_s(1097); + var$2[216] = $rt_s(4439); + var$2[217] = $rt_s(4440); + var$2[218] = $rt_s(32); + var$2[219] = $rt_s(4441); + var$2[220] = $rt_s(4442); + var$2[221] = $rt_s(4443); + var$2[222] = $rt_s(4444); + var$2[223] = $rt_s(4445); + var$2[224] = $rt_s(730); + var$2[225] = $rt_s(4446); + var$2[226] = $rt_s(4447); + var$2[227] = $rt_s(4448); + var$2[228] = $rt_s(770); + var$2[229] = $rt_s(771); + var$2[230] = $rt_s(4449); + var$2[231] = $rt_s(4450); + var$2[232] = $rt_s(4451); + var$2[233] = $rt_s(641); + var$2[234] = $rt_s(4452); + var$2[235] = $rt_s(4453); + var$2[236] = $rt_s(4454); + var$2[237] = $rt_s(4455); + var$2[238] = $rt_s(4456); + var$2[239] = $rt_s(4457); + var$2[240] = $rt_s(4458); + var$2[241] = $rt_s(4459); + var$2[242] = $rt_s(4460); + var$2[243] = $rt_s(4461); + var$2[244] = $rt_s(4462); + var$2[245] = $rt_s(4463); + var$2[246] = $rt_s(4464); + var$2[247] = $rt_s(4465); + var$2[248] = $rt_s(4466); + var$2[249] = $rt_s(4467); + var$2[250] = $rt_s(4468); + var$2[251] = $rt_s(4469); + var$2[252] = $rt_s(4470); + var$2[253] = $rt_s(4471); + var$2[254] = $rt_s(4472); + var$2[255] = $rt_s(4473); + var$2[256] = $rt_s(4474); + var$2[257] = $rt_s(4475); + var$2[258] = $rt_s(4476); + var$2[259] = $rt_s(4477); + var$2[260] = $rt_s(4478); + var$2[261] = $rt_s(4479); + var$2[262] = $rt_s(4480); + var$2[263] = $rt_s(714); + var$2[264] = $rt_s(4481); + var$2[265] = $rt_s(513); + var$2[266] = $rt_s(4482); + var$2[267] = $rt_s(4483); + var$2[268] = $rt_s(1096); + var$2[269] = $rt_s(4484); + var$2[270] = $rt_s(4485); + var$2[271] = $rt_s(4486); + var$2[272] = $rt_s(4487); + var$2[273] = $rt_s(4488); + var$2[274] = $rt_s(524); + var$2[275] = $rt_s(3586); + var$2[276] = $rt_s(4489); + var$2[277] = $rt_s(4490); + var$2[278] = $rt_s(4491); + var$2[279] = $rt_s(4492); + var$2[280] = $rt_s(4493); + var$2[281] = $rt_s(4494); + var$2[282] = $rt_s(4495); + var$2[283] = $rt_s(4496); + var$2[284] = $rt_s(4497); + var$2[285] = $rt_s(608); + var$2[286] = $rt_s(4498); + var$2[287] = $rt_s(4499); + var$2[288] = $rt_s(4500); + var$2[289] = $rt_s(4501); + var$2[290] = $rt_s(4502); + var$2[291] = $rt_s(558); + var$2[292] = $rt_s(4503); + var$2[293] = $rt_s(4504); + var$2[294] = $rt_s(4505); + var$2[295] = $rt_s(4506); + var$2[296] = $rt_s(3567); + var$2[297] = $rt_s(4942); + var$2[298] = $rt_s(4507); + var$2[299] = $rt_s(4508); + var$2[300] = $rt_s(4509); + var$2[301] = $rt_s(4040); + var$2[302] = $rt_s(642); + var$2[303] = $rt_s(4510); + var$2[304] = $rt_s(33); + var$2[305] = $rt_s(4511); + var$2[306] = $rt_s(4063); + var$2[307] = $rt_s(4512); + var$2[308] = $rt_s(4513); + var$2[309] = $rt_s(4514); + var$2[310] = $rt_s(4516); + var$2[311] = $rt_s(4517); + var$2[312] = $rt_s(4518); + var$2[313] = $rt_s(4543); + return var$1; }, -oncief_Type$_toString = $this => { - return $rt_s(5978); +oncipv_Cypher5Lexer_getATN = $this => { + oncipv_Cypher5Lexer_$callClinit(); + return oncipv_Cypher5Lexer__ATN; }, -oncief_Type$_signatures0 = $this => { - oncief_Type$_$callClinit(); - return oncief_Type$_signatures; +oncipv_Cypher5Lexer__clinit_ = () => { + let var$1, $i, var$3; + oavr_RuntimeMetaData_checkVersion($rt_s(4577), $rt_s(4577)); + oncipv_Cypher5Lexer__sharedContextCache = oavra_PredictionContextCache__init_(); + oncipv_Cypher5Lexer_channelNames = $rt_wrapArray(jl_String, [$rt_s(4578), $rt_s(4579)]); + var$1 = $rt_createArray(jl_String, 1); + var$1.data[0] = $rt_s(4580); + oncipv_Cypher5Lexer_modeNames = var$1; + oncipv_Cypher5Lexer_ruleNames = oncipv_Cypher5Lexer_makeRuleNames(); + oncipv_Cypher5Lexer__LITERAL_NAMES = oncipv_Cypher5Lexer_makeLiteralNames(); + var$1 = oncipv_Cypher5Lexer_makeSymbolicNames(); + oncipv_Cypher5Lexer__SYMBOLIC_NAMES = var$1; + oncipv_Cypher5Lexer_VOCABULARY = oavr_VocabularyImpl__init_(oncipv_Cypher5Lexer__LITERAL_NAMES, var$1); + oncipv_Cypher5Lexer_tokenNames = $rt_createArray(jl_String, oncipv_Cypher5Lexer__SYMBOLIC_NAMES.data.length); + $i = 0; + while (true) { + var$1 = oncipv_Cypher5Lexer_tokenNames.data; + if ($i >= var$1.length) + break; + var$1[$i] = oavr_VocabularyImpl_getLiteralName(oncipv_Cypher5Lexer_VOCABULARY, $i); + var$1 = oncipv_Cypher5Lexer_tokenNames.data; + if (var$1[$i] === null) + var$1[$i] = oavr_VocabularyImpl_getSymbolicName(oncipv_Cypher5Lexer_VOCABULARY, $i); + var$1 = oncipv_Cypher5Lexer_tokenNames.data; + if (var$1[$i] === null) + var$1[$i] = $rt_s(4581); + $i = $i + 1 | 0; + } + oncipv_Cypher5Lexer__serializedATN = oavrm_Utils_join($rt_wrapArray(jl_String, [$rt_s(4943), $rt_s(4944)]), $rt_s(4)); + var$3 = oavra_ATNDeserializer_deserialize(oavra_ATNDeserializer__init_(), jl_String_toCharArray(oncipv_Cypher5Lexer__serializedATN)); + oncipv_Cypher5Lexer__ATN = var$3; + oncipv_Cypher5Lexer__decisionToDFA = $rt_createArray(oavrd_DFA, oavra_ATN_getNumberOfDecisions(var$3)); + $i = 0; + while ($i < oavra_ATN_getNumberOfDecisions(oncipv_Cypher5Lexer__ATN)) { + oncipv_Cypher5Lexer__decisionToDFA.data[$i] = oavrd_DFA__init_(oavra_ATN_getDecisionState(oncipv_Cypher5Lexer__ATN, $i), $i); + $i = $i + 1 | 0; + } +}; +function oncipvaf_Cypher5AstLexer() { + let a = this; oncipv_Cypher5Lexer.call(a); + a.$inputQuery1 = null; + a.$offsetTable3 = null; +} +let oncipvaf_Cypher5AstLexer_notifyListeners = ($this, $e) => { + let $text, $listener, $dummyToken, var$5; + $text = $this.$_input0; + $text = $text.$getText0(oavrm_Interval_of($this.$_tokenStartCharIndex, $text.$position6)); + $listener = oavr_Lexer_getErrorDisplay($this, $text); + $dummyToken = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($dummyToken); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($dummyToken, $rt_s(4584)), $listener), 39); + var$5 = jl_AbstractStringBuilder_toString($dummyToken); + oavr_ProxyErrorListener_syntaxError(oavr_Recognizer_getErrorListenerDispatch($this), $this, $this.$_factory.$create1($this.$_tokenFactorySourcePair, (-1), $text, $this.$_channel, $this.$_tokenStartCharIndex, $this.$_input0.$position6, $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine), $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine, var$5, $e); }, -oncief_Upper$ = $rt_classWithoutFields(oncief_Function), -oncief_Upper$_MODULE$ = null, -oncief_Upper$_signatures = null; -let oncief_Upper$_$callClinit = () => { - oncief_Upper$_$callClinit = $rt_eraseClinit(oncief_Upper$); - oncief_Upper$__clinit_(); +oncipvaf_Cypher5AstLexer_inputQuery = $this => { + return $this.$inputQuery1; }, -oncief_Upper$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_Upper$; - oncief_Upper$_$callClinit(); - oncief_Function__init_(var$1); - oncief_Upper$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_Upper$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_StringType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5970)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5971), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_Upper$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipvaf_Cypher5AstLexer_offsetTable = $this => { + return $this.$offsetTable3; }, -oncief_Upper$_name = $this => { - return $rt_s(3570); +oncipv_Cypher5Parser = $rt_classWithoutFields(oavr_Parser), +oncipv_Cypher5Parser__decisionToDFA = null, +oncipv_Cypher5Parser__sharedContextCache = null, +oncipv_Cypher5Parser_ruleNames = null, +oncipv_Cypher5Parser__LITERAL_NAMES = null, +oncipv_Cypher5Parser__SYMBOLIC_NAMES = null, +oncipv_Cypher5Parser_VOCABULARY = null, +oncipv_Cypher5Parser_tokenNames = null, +oncipv_Cypher5Parser__serializedATN = null, +oncipv_Cypher5Parser__ATN = null, +oncipv_Cypher5Parser_$callClinit = () => { + oncipv_Cypher5Parser_$callClinit = $rt_eraseClinit(oncipv_Cypher5Parser); + oncipv_Cypher5Parser__clinit_(); }, -oncief_Upper$_productArity = $this => { - return 0; +oncipv_Cypher5Parser_makeRuleNames = () => { + oncipv_Cypher5Parser_$callClinit(); + return $rt_wrapArray(jl_String, [$rt_s(4598), $rt_s(4599), $rt_s(4945), $rt_s(4600), $rt_s(4601), $rt_s(1150), $rt_s(4602), $rt_s(4603), $rt_s(4604), $rt_s(4605), $rt_s(4606), $rt_s(4607), $rt_s(4608), $rt_s(4609), $rt_s(4610), $rt_s(4611), $rt_s(4612), $rt_s(4613), $rt_s(4614), $rt_s(4615), $rt_s(4616), $rt_s(4617), $rt_s(4618), $rt_s(4619), $rt_s(4620), $rt_s(4621), $rt_s(4622), $rt_s(4623), $rt_s(4624), $rt_s(1191), $rt_s(1175), $rt_s(4625), $rt_s(4626), $rt_s(4627), $rt_s(4628), $rt_s(4629), $rt_s(4630), + $rt_s(4631), $rt_s(4632), $rt_s(4633), $rt_s(4634), $rt_s(4635), $rt_s(4636), $rt_s(4637), $rt_s(4638), $rt_s(4639), $rt_s(4640), $rt_s(4641), $rt_s(4642), $rt_s(4643), $rt_s(4644), $rt_s(4645), $rt_s(4646), $rt_s(4647), $rt_s(4648), $rt_s(1225), $rt_s(4649), $rt_s(4650), $rt_s(4651), $rt_s(4652), $rt_s(4653), $rt_s(4654), $rt_s(4655), $rt_s(4656), $rt_s(4657), $rt_s(4658), $rt_s(4659), $rt_s(4660), $rt_s(1219), $rt_s(4661), $rt_s(4662), $rt_s(4663), $rt_s(4664), $rt_s(4665), $rt_s(4666), $rt_s(4667), $rt_s(4668), + $rt_s(4669), $rt_s(4670), $rt_s(4671), $rt_s(4672), $rt_s(4673), $rt_s(4674), $rt_s(4675), $rt_s(4676), $rt_s(4677), $rt_s(4678), $rt_s(4679), $rt_s(955), $rt_s(4680), $rt_s(4681), $rt_s(4682), $rt_s(4683), $rt_s(4684), $rt_s(4685), $rt_s(4686), $rt_s(4687), $rt_s(4688), $rt_s(4689), $rt_s(4690), $rt_s(4691), $rt_s(4692), $rt_s(4693), $rt_s(4694), $rt_s(4695), $rt_s(4696), $rt_s(4697), $rt_s(4698), $rt_s(4699), $rt_s(4700), $rt_s(4701), $rt_s(4702), $rt_s(4703), $rt_s(4704), $rt_s(4705), $rt_s(4706), $rt_s(4707), + $rt_s(4708), $rt_s(4709), $rt_s(4710), $rt_s(4711), $rt_s(4712), $rt_s(4713), $rt_s(4714), $rt_s(4715), $rt_s(4716), $rt_s(4717), $rt_s(4718), $rt_s(4719), $rt_s(4720), $rt_s(4721), $rt_s(4722), $rt_s(4723), $rt_s(4724), $rt_s(4725), $rt_s(4726), $rt_s(4727), $rt_s(1194), $rt_s(1245), $rt_s(4728), $rt_s(4729), $rt_s(4730), $rt_s(4731), $rt_s(4732), $rt_s(4733), $rt_s(4734), $rt_s(4735), $rt_s(4736), $rt_s(4737), $rt_s(4738), $rt_s(4739), $rt_s(4740), $rt_s(4741), $rt_s(4742), $rt_s(4743), $rt_s(4744), $rt_s(4745), + $rt_s(4746), $rt_s(4946), $rt_s(4747), $rt_s(4947), $rt_s(4948), $rt_s(4750), $rt_s(4949), $rt_s(4752), $rt_s(4950), $rt_s(4951), $rt_s(4952), $rt_s(4953), $rt_s(4754), $rt_s(4755), $rt_s(4756), $rt_s(4757), $rt_s(4758), $rt_s(4759), $rt_s(4760), $rt_s(4761), $rt_s(4762), $rt_s(4763), $rt_s(4764), $rt_s(4765), $rt_s(4766), $rt_s(4767), $rt_s(4768), $rt_s(4769), $rt_s(4770), $rt_s(4954), $rt_s(4771), $rt_s(4772), $rt_s(4773), $rt_s(4774), $rt_s(4775), $rt_s(4776), $rt_s(4777), $rt_s(4778), $rt_s(4779), $rt_s(4780), + $rt_s(4781), $rt_s(4782), $rt_s(4783), $rt_s(4784), $rt_s(4785), $rt_s(4786), $rt_s(4787), $rt_s(4788), $rt_s(4789), $rt_s(4790), $rt_s(4791), $rt_s(4792), $rt_s(4793), $rt_s(4794), $rt_s(4795), $rt_s(4796), $rt_s(4797), $rt_s(4798), $rt_s(4799), $rt_s(4800), $rt_s(4801), $rt_s(4802), $rt_s(4803), $rt_s(4804), $rt_s(4805), $rt_s(4806), $rt_s(4807), $rt_s(4808), $rt_s(4809), $rt_s(4810), $rt_s(4811), $rt_s(4812), $rt_s(4813), $rt_s(4814), $rt_s(4815), $rt_s(4816), $rt_s(4817), $rt_s(4818), $rt_s(4819), $rt_s(4820), + $rt_s(4821), $rt_s(4822), $rt_s(4823), $rt_s(4824), $rt_s(4825), $rt_s(4826), $rt_s(4827), $rt_s(4828), $rt_s(4829), $rt_s(4830), $rt_s(4831), $rt_s(4832), $rt_s(4833), $rt_s(4834), $rt_s(4835), $rt_s(4836), $rt_s(4837), $rt_s(4838), $rt_s(4839), $rt_s(4840), $rt_s(4841), $rt_s(4842), $rt_s(4843), $rt_s(4844), $rt_s(4845), $rt_s(4846), $rt_s(4847), $rt_s(4848), $rt_s(4849), $rt_s(4850), $rt_s(4851), $rt_s(4852), $rt_s(4853), $rt_s(4854), $rt_s(4855), $rt_s(4856), $rt_s(4857), $rt_s(4858), $rt_s(4859), $rt_s(4860), + $rt_s(4861), $rt_s(4862), $rt_s(4863), $rt_s(4864), $rt_s(4865), $rt_s(4866), $rt_s(4867), $rt_s(4868), $rt_s(4869), $rt_s(4870), $rt_s(4871), $rt_s(4872), $rt_s(4873), $rt_s(4874), $rt_s(4875), $rt_s(4876), $rt_s(4877), $rt_s(4878), $rt_s(4879), $rt_s(4880), $rt_s(4881), $rt_s(4882), $rt_s(4883), $rt_s(4884), $rt_s(4885), $rt_s(4886), $rt_s(4887), $rt_s(4889), $rt_s(4890), $rt_s(4891), $rt_s(4892), $rt_s(4893), $rt_s(4894), $rt_s(4895), $rt_s(4896), $rt_s(4897), $rt_s(4898), $rt_s(4899), $rt_s(4900), $rt_s(4901), + $rt_s(4902), $rt_s(4903), $rt_s(4904), $rt_s(4905), $rt_s(4906), $rt_s(4907), $rt_s(4908), $rt_s(4909), $rt_s(4910), $rt_s(4911), $rt_s(4912), $rt_s(4955), $rt_s(4956), $rt_s(4957), $rt_s(4913), $rt_s(4914), $rt_s(4915), $rt_s(4916), $rt_s(4917), $rt_s(4918), $rt_s(4919)]); }, -oncief_Upper$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher5Parser_makeLiteralNames = () => { + let var$1, var$2; + oncipv_Cypher5Parser_$callClinit(); + var$1 = $rt_createArray(jl_String, 272); + var$2 = var$1.data; + var$2[0] = null; + var$2[1] = null; + var$2[2] = null; + var$2[3] = null; + var$2[4] = null; + var$2[5] = null; + var$2[6] = null; + var$2[7] = null; + var$2[8] = null; + var$2[9] = null; + var$2[10] = null; + var$2[11] = null; + var$2[12] = null; + var$2[13] = null; + var$2[14] = null; + var$2[15] = null; + var$2[16] = null; + var$2[17] = null; + var$2[18] = null; + var$2[19] = null; + var$2[20] = null; + var$2[21] = null; + var$2[22] = null; + var$2[23] = null; + var$2[24] = null; + var$2[25] = null; + var$2[26] = null; + var$2[27] = null; + var$2[28] = null; + var$2[29] = null; + var$2[30] = $rt_s(4544); + var$2[31] = null; + var$2[32] = null; + var$2[33] = null; + var$2[34] = null; + var$2[35] = null; + var$2[36] = null; + var$2[37] = null; + var$2[38] = null; + var$2[39] = null; + var$2[40] = null; + var$2[41] = null; + var$2[42] = null; + var$2[43] = null; + var$2[44] = null; + var$2[45] = null; + var$2[46] = null; + var$2[47] = $rt_s(4545); + var$2[48] = $rt_s(4546); + var$2[49] = $rt_s(4547); + var$2[50] = null; + var$2[51] = null; + var$2[52] = null; + var$2[53] = null; + var$2[54] = null; + var$2[55] = null; + var$2[56] = null; + var$2[57] = null; + var$2[58] = null; + var$2[59] = null; + var$2[60] = null; + var$2[61] = null; + var$2[62] = null; + var$2[63] = null; + var$2[64] = null; + var$2[65] = null; + var$2[66] = null; + var$2[67] = null; + var$2[68] = null; + var$2[69] = null; + var$2[70] = null; + var$2[71] = null; + var$2[72] = null; + var$2[73] = null; + var$2[74] = null; + var$2[75] = null; + var$2[76] = null; + var$2[77] = null; + var$2[78] = null; + var$2[79] = null; + var$2[80] = $rt_s(4548); + var$2[81] = null; + var$2[82] = $rt_s(4549); + var$2[83] = $rt_s(4550); + var$2[84] = $rt_s(4551); + var$2[85] = $rt_s(4552); + var$2[86] = null; + var$2[87] = null; + var$2[88] = null; + var$2[89] = null; + var$2[90] = null; + var$2[91] = null; + var$2[92] = null; + var$2[93] = null; + var$2[94] = null; + var$2[95] = null; + var$2[96] = null; + var$2[97] = null; + var$2[98] = null; + var$2[99] = null; + var$2[100] = $rt_s(4553); + var$2[101] = null; + var$2[102] = null; + var$2[103] = null; + var$2[104] = null; + var$2[105] = null; + var$2[106] = null; + var$2[107] = null; + var$2[108] = null; + var$2[109] = null; + var$2[110] = null; + var$2[111] = null; + var$2[112] = null; + var$2[113] = null; + var$2[114] = null; + var$2[115] = null; + var$2[116] = null; + var$2[117] = null; + var$2[118] = $rt_s(4554); + var$2[119] = null; + var$2[120] = null; + var$2[121] = null; + var$2[122] = null; + var$2[123] = null; + var$2[124] = $rt_s(4555); + var$2[125] = null; + var$2[126] = null; + var$2[127] = null; + var$2[128] = null; + var$2[129] = null; + var$2[130] = null; + var$2[131] = null; + var$2[132] = null; + var$2[133] = null; + var$2[134] = null; + var$2[135] = null; + var$2[136] = null; + var$2[137] = null; + var$2[138] = null; + var$2[139] = null; + var$2[140] = null; + var$2[141] = null; + var$2[142] = null; + var$2[143] = null; + var$2[144] = $rt_s(4556); + var$2[145] = $rt_s(4557); + var$2[146] = $rt_s(4558); + var$2[147] = $rt_s(4559); + var$2[148] = $rt_s(4560); + var$2[149] = null; + var$2[150] = null; + var$2[151] = null; + var$2[152] = null; + var$2[153] = null; + var$2[154] = null; + var$2[155] = $rt_s(4561); + var$2[156] = $rt_s(4562); + var$2[157] = null; + var$2[158] = null; + var$2[159] = null; + var$2[160] = null; + var$2[161] = $rt_s(4563); + var$2[162] = $rt_s(4564); + var$2[163] = $rt_s(4565); + var$2[164] = $rt_s(4566); + var$2[165] = null; + var$2[166] = null; + var$2[167] = null; + var$2[168] = null; + var$2[169] = null; + var$2[170] = null; + var$2[171] = null; + var$2[172] = null; + var$2[173] = null; + var$2[174] = null; + var$2[175] = null; + var$2[176] = null; + var$2[177] = null; + var$2[178] = null; + var$2[179] = null; + var$2[180] = null; + var$2[181] = null; + var$2[182] = null; + var$2[183] = null; + var$2[184] = null; + var$2[185] = null; + var$2[186] = null; + var$2[187] = null; + var$2[188] = null; + var$2[189] = null; + var$2[190] = null; + var$2[191] = null; + var$2[192] = null; + var$2[193] = null; + var$2[194] = null; + var$2[195] = null; + var$2[196] = null; + var$2[197] = null; + var$2[198] = null; + var$2[199] = $rt_s(4567); + var$2[200] = $rt_s(4568); + var$2[201] = null; + var$2[202] = null; + var$2[203] = $rt_s(4569); + var$2[204] = null; + var$2[205] = null; + var$2[206] = null; + var$2[207] = null; + var$2[208] = null; + var$2[209] = null; + var$2[210] = null; + var$2[211] = null; + var$2[212] = null; + var$2[213] = null; + var$2[214] = $rt_s(4570); + var$2[215] = null; + var$2[216] = $rt_s(4571); + var$2[217] = $rt_s(4572); + var$2[218] = null; + var$2[219] = null; + var$2[220] = null; + var$2[221] = null; + var$2[222] = $rt_s(4573); + var$2[223] = null; + var$2[224] = null; + var$2[225] = null; + var$2[226] = null; + var$2[227] = null; + var$2[228] = null; + var$2[229] = null; + var$2[230] = null; + var$2[231] = null; + var$2[232] = null; + var$2[233] = null; + var$2[234] = null; + var$2[235] = null; + var$2[236] = null; + var$2[237] = null; + var$2[238] = null; + var$2[239] = $rt_s(4574); + var$2[240] = null; + var$2[241] = null; + var$2[242] = null; + var$2[243] = null; + var$2[244] = null; + var$2[245] = null; + var$2[246] = null; + var$2[247] = $rt_s(4575); + var$2[248] = null; + var$2[249] = null; + var$2[250] = null; + var$2[251] = null; + var$2[252] = null; + var$2[253] = null; + var$2[254] = null; + var$2[255] = null; + var$2[256] = null; + var$2[257] = null; + var$2[258] = null; + var$2[259] = null; + var$2[260] = null; + var$2[261] = null; + var$2[262] = null; + var$2[263] = null; + var$2[264] = null; + var$2[265] = null; + var$2[266] = null; + var$2[267] = null; + var$2[268] = null; + var$2[269] = null; + var$2[270] = null; + var$2[271] = $rt_s(4576); + return var$1; }, -oncief_Upper$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher5Parser_makeSymbolicNames = () => { + let var$1, var$2; + oncipv_Cypher5Parser_$callClinit(); + var$1 = $rt_createArray(jl_String, 314); + var$2 = var$1.data; + var$2[0] = null; + var$2[1] = $rt_s(4260); + var$2[2] = $rt_s(4261); + var$2[3] = $rt_s(4262); + var$2[4] = $rt_s(4263); + var$2[5] = $rt_s(4264); + var$2[6] = $rt_s(4267); + var$2[7] = $rt_s(4268); + var$2[8] = $rt_s(4269); + var$2[9] = $rt_s(4270); + var$2[10] = $rt_s(4272); + var$2[11] = $rt_s(4273); + var$2[12] = $rt_s(512); + var$2[13] = $rt_s(4274); + var$2[14] = $rt_s(4275); + var$2[15] = $rt_s(4276); + var$2[16] = $rt_s(4277); + var$2[17] = $rt_s(4278); + var$2[18] = $rt_s(562); + var$2[19] = $rt_s(4279); + var$2[20] = $rt_s(4280); + var$2[21] = $rt_s(708); + var$2[22] = $rt_s(4281); + var$2[23] = $rt_s(4282); + var$2[24] = $rt_s(4283); + var$2[25] = $rt_s(4284); + var$2[26] = $rt_s(4937); + var$2[27] = $rt_s(4285); + var$2[28] = $rt_s(4286); + var$2[29] = $rt_s(4287); + var$2[30] = $rt_s(4288); + var$2[31] = $rt_s(4289); + var$2[32] = $rt_s(4290); + var$2[33] = $rt_s(710); + var$2[34] = $rt_s(4291); + var$2[35] = $rt_s(4292); + var$2[36] = $rt_s(4293); + var$2[37] = $rt_s(4938); + var$2[38] = $rt_s(1095); + var$2[39] = $rt_s(4294); + var$2[40] = $rt_s(4295); + var$2[41] = $rt_s(4039); + var$2[42] = $rt_s(4296); + var$2[43] = $rt_s(455); + var$2[44] = $rt_s(4297); + var$2[45] = $rt_s(4298); + var$2[46] = $rt_s(4299); + var$2[47] = $rt_s(4300); + var$2[48] = $rt_s(4301); + var$2[49] = $rt_s(4302); + var$2[50] = $rt_s(4303); + var$2[51] = $rt_s(4304); + var$2[52] = $rt_s(4939); + var$2[53] = $rt_s(4305); + var$2[54] = $rt_s(3543); + var$2[55] = $rt_s(506); + var$2[56] = $rt_s(4306); + var$2[57] = $rt_s(4307); + var$2[58] = $rt_s(4308); + var$2[59] = $rt_s(4309); + var$2[60] = $rt_s(4310); + var$2[61] = $rt_s(4311); + var$2[62] = $rt_s(4312); + var$2[63] = $rt_s(4313); + var$2[64] = $rt_s(4314); + var$2[65] = $rt_s(4315); + var$2[66] = $rt_s(4316); + var$2[67] = $rt_s(743); + var$2[68] = $rt_s(4317); + var$2[69] = $rt_s(31); + var$2[70] = $rt_s(4318); + var$2[71] = $rt_s(587); + var$2[72] = $rt_s(4319); + var$2[73] = $rt_s(4320); + var$2[74] = $rt_s(4321); + var$2[75] = $rt_s(4322); + var$2[76] = $rt_s(4323); + var$2[77] = $rt_s(4324); + var$2[78] = $rt_s(4325); + var$2[79] = $rt_s(4326); + var$2[80] = $rt_s(4327); + var$2[81] = $rt_s(4328); + var$2[82] = $rt_s(4329); + var$2[83] = $rt_s(4330); + var$2[84] = $rt_s(4331); + var$2[85] = $rt_s(4332); + var$2[86] = $rt_s(534); + var$2[87] = $rt_s(4333); + var$2[88] = $rt_s(4334); + var$2[89] = $rt_s(4335); + var$2[90] = $rt_s(752); + var$2[91] = $rt_s(4336); + var$2[92] = $rt_s(4337); + var$2[93] = $rt_s(4338); + var$2[94] = $rt_s(4339); + var$2[95] = $rt_s(4340); + var$2[96] = $rt_s(4341); + var$2[97] = $rt_s(4342); + var$2[98] = $rt_s(456); + var$2[99] = $rt_s(4343); + var$2[100] = $rt_s(4344); + var$2[101] = $rt_s(4345); + var$2[102] = $rt_s(4346); + var$2[103] = $rt_s(4347); + var$2[104] = $rt_s(4348); + var$2[105] = $rt_s(4349); + var$2[106] = $rt_s(4350); + var$2[107] = $rt_s(4351); + var$2[108] = $rt_s(4352); + var$2[109] = $rt_s(4353); + var$2[110] = $rt_s(609); + var$2[111] = $rt_s(719); + var$2[112] = $rt_s(4354); + var$2[113] = $rt_s(4355); + var$2[114] = $rt_s(525); + var$2[115] = $rt_s(3565); + var$2[116] = $rt_s(4356); + var$2[117] = $rt_s(4357); + var$2[118] = $rt_s(4358); + var$2[119] = $rt_s(4359); + var$2[120] = $rt_s(761); + var$2[121] = $rt_s(4360); + var$2[122] = $rt_s(4361); + var$2[123] = $rt_s(4362); + var$2[124] = $rt_s(4363); + var$2[125] = $rt_s(4364); + var$2[126] = $rt_s(588); + var$2[127] = $rt_s(4365); + var$2[128] = $rt_s(4366); + var$2[129] = $rt_s(4367); + var$2[130] = $rt_s(4368); + var$2[131] = $rt_s(477); + var$2[132] = $rt_s(907); + var$2[133] = $rt_s(4369); + var$2[134] = $rt_s(4370); + var$2[135] = $rt_s(4371); + var$2[136] = $rt_s(4372); + var$2[137] = $rt_s(4373); + var$2[138] = $rt_s(722); + var$2[139] = $rt_s(4374); + var$2[140] = $rt_s(4375); + var$2[141] = $rt_s(4376); + var$2[142] = $rt_s(4377); + var$2[143] = $rt_s(4378); + var$2[144] = $rt_s(4379); + var$2[145] = $rt_s(4380); + var$2[146] = $rt_s(4381); + var$2[147] = $rt_s(4382); + var$2[148] = $rt_s(4383); + var$2[149] = $rt_s(4384); + var$2[150] = $rt_s(4385); + var$2[151] = $rt_s(4386); + var$2[152] = $rt_s(4387); + var$2[153] = $rt_s(4388); + var$2[154] = $rt_s(3566); + var$2[155] = $rt_s(4389); + var$2[156] = $rt_s(4390); + var$2[157] = $rt_s(4391); + var$2[158] = $rt_s(724); + var$2[159] = $rt_s(4392); + var$2[160] = $rt_s(4393); + var$2[161] = $rt_s(4394); + var$2[162] = $rt_s(4395); + var$2[163] = $rt_s(4396); + var$2[164] = $rt_s(4397); + var$2[165] = $rt_s(4398); + var$2[166] = $rt_s(4399); + var$2[167] = $rt_s(4400); + var$2[168] = $rt_s(4401); + var$2[169] = $rt_s(4402); + var$2[170] = $rt_s(4403); + var$2[171] = $rt_s(4404); + var$2[172] = $rt_s(4405); + var$2[173] = $rt_s(727); + var$2[174] = $rt_s(4406); + var$2[175] = $rt_s(4407); + var$2[176] = $rt_s(3648); + var$2[177] = $rt_s(4408); + var$2[178] = $rt_s(4409); + var$2[179] = $rt_s(4410); + var$2[180] = $rt_s(4411); + var$2[181] = $rt_s(4412); + var$2[182] = $rt_s(4118); + var$2[183] = $rt_s(4413); + var$2[184] = $rt_s(4414); + var$2[185] = $rt_s(4415); + var$2[186] = $rt_s(4416); + var$2[187] = $rt_s(4417); + var$2[188] = $rt_s(4418); + var$2[189] = $rt_s(4419); + var$2[190] = $rt_s(4420); + var$2[191] = $rt_s(4421); + var$2[192] = $rt_s(4940); + var$2[193] = $rt_s(557); + var$2[194] = $rt_s(4422); + var$2[195] = $rt_s(758); + var$2[196] = $rt_s(4423); + var$2[197] = $rt_s(4941); + var$2[198] = $rt_s(4424); + var$2[199] = $rt_s(4425); + var$2[200] = $rt_s(4426); + var$2[201] = $rt_s(734); + var$2[202] = $rt_s(4427); + var$2[203] = $rt_s(4428); + var$2[204] = $rt_s(4429); + var$2[205] = $rt_s(4430); + var$2[206] = $rt_s(4431); + var$2[207] = $rt_s(4432); + var$2[208] = $rt_s(4433); + var$2[209] = $rt_s(4434); + var$2[210] = $rt_s(531); + var$2[211] = $rt_s(4435); + var$2[212] = $rt_s(4436); + var$2[213] = $rt_s(4437); + var$2[214] = $rt_s(4438); + var$2[215] = $rt_s(1097); + var$2[216] = $rt_s(4439); + var$2[217] = $rt_s(4440); + var$2[218] = $rt_s(32); + var$2[219] = $rt_s(4441); + var$2[220] = $rt_s(4442); + var$2[221] = $rt_s(4443); + var$2[222] = $rt_s(4444); + var$2[223] = $rt_s(4445); + var$2[224] = $rt_s(730); + var$2[225] = $rt_s(4446); + var$2[226] = $rt_s(4447); + var$2[227] = $rt_s(4448); + var$2[228] = $rt_s(770); + var$2[229] = $rt_s(771); + var$2[230] = $rt_s(4449); + var$2[231] = $rt_s(4450); + var$2[232] = $rt_s(4451); + var$2[233] = $rt_s(641); + var$2[234] = $rt_s(4452); + var$2[235] = $rt_s(4453); + var$2[236] = $rt_s(4454); + var$2[237] = $rt_s(4455); + var$2[238] = $rt_s(4456); + var$2[239] = $rt_s(4457); + var$2[240] = $rt_s(4458); + var$2[241] = $rt_s(4459); + var$2[242] = $rt_s(4460); + var$2[243] = $rt_s(4461); + var$2[244] = $rt_s(4462); + var$2[245] = $rt_s(4463); + var$2[246] = $rt_s(4464); + var$2[247] = $rt_s(4465); + var$2[248] = $rt_s(4466); + var$2[249] = $rt_s(4467); + var$2[250] = $rt_s(4468); + var$2[251] = $rt_s(4469); + var$2[252] = $rt_s(4470); + var$2[253] = $rt_s(4471); + var$2[254] = $rt_s(4472); + var$2[255] = $rt_s(4473); + var$2[256] = $rt_s(4474); + var$2[257] = $rt_s(4475); + var$2[258] = $rt_s(4476); + var$2[259] = $rt_s(4477); + var$2[260] = $rt_s(4478); + var$2[261] = $rt_s(4479); + var$2[262] = $rt_s(4480); + var$2[263] = $rt_s(714); + var$2[264] = $rt_s(4481); + var$2[265] = $rt_s(513); + var$2[266] = $rt_s(4482); + var$2[267] = $rt_s(4483); + var$2[268] = $rt_s(1096); + var$2[269] = $rt_s(4484); + var$2[270] = $rt_s(4485); + var$2[271] = $rt_s(4486); + var$2[272] = $rt_s(4487); + var$2[273] = $rt_s(4488); + var$2[274] = $rt_s(524); + var$2[275] = $rt_s(3586); + var$2[276] = $rt_s(4489); + var$2[277] = $rt_s(4490); + var$2[278] = $rt_s(4491); + var$2[279] = $rt_s(4492); + var$2[280] = $rt_s(4493); + var$2[281] = $rt_s(4494); + var$2[282] = $rt_s(4495); + var$2[283] = $rt_s(4496); + var$2[284] = $rt_s(4497); + var$2[285] = $rt_s(608); + var$2[286] = $rt_s(4498); + var$2[287] = $rt_s(4499); + var$2[288] = $rt_s(4500); + var$2[289] = $rt_s(4501); + var$2[290] = $rt_s(4502); + var$2[291] = $rt_s(558); + var$2[292] = $rt_s(4503); + var$2[293] = $rt_s(4504); + var$2[294] = $rt_s(4505); + var$2[295] = $rt_s(4506); + var$2[296] = $rt_s(3567); + var$2[297] = $rt_s(4942); + var$2[298] = $rt_s(4507); + var$2[299] = $rt_s(4508); + var$2[300] = $rt_s(4509); + var$2[301] = $rt_s(4040); + var$2[302] = $rt_s(642); + var$2[303] = $rt_s(4510); + var$2[304] = $rt_s(33); + var$2[305] = $rt_s(4511); + var$2[306] = $rt_s(4063); + var$2[307] = $rt_s(4512); + var$2[308] = $rt_s(4513); + var$2[309] = $rt_s(4514); + var$2[310] = $rt_s(4516); + var$2[311] = $rt_s(4517); + var$2[312] = $rt_s(4518); + var$2[313] = $rt_s(4543); + return var$1; }, -oncief_Upper$_hashCode = $this => { - return 81946754; +oncipv_Cypher5Parser_getVocabulary = $this => { + oncipv_Cypher5Parser_$callClinit(); + return oncipv_Cypher5Parser_VOCABULARY; }, -oncief_Upper$_toString = $this => { - return $rt_s(190); +oncipv_Cypher5Parser_getRuleNames = $this => { + oncipv_Cypher5Parser_$callClinit(); + return oncipv_Cypher5Parser_ruleNames; +}, +oncipv_Cypher5Parser_getATN = $this => { + oncipv_Cypher5Parser_$callClinit(); + return oncipv_Cypher5Parser__ATN; +}, +oncipv_Cypher5Parser_statement = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$StatementContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 2, 1); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 690); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 293) { + oavr_Recognizer_setState($this, 689); + oncipv_Cypher5Parser_periodicCommitQueryHintFailure($this); + } + e: { + oavr_Recognizer_setState($this, 694); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 3, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 693); + oncipv_Cypher5Parser_regularQuery($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 692); + oncipv_Cypher5Parser_command($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_Upper$_signatures0 = $this => { - oncief_Upper$_$callClinit(); - return oncief_Upper$_signatures; +oncipv_Cypher5Parser_periodicCommitQueryHintFailure = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 4, 2); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 696); + oavr_Parser_match($this, 293); + oavr_Recognizer_setState($this, 697); + oavr_Parser_match($this, 197); + oavr_Recognizer_setState($this, 698); + oavr_Parser_match($this, 52); + oavr_Recognizer_setState($this, 700); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + oavr_Recognizer_setState($this, 699); + oavr_Parser_match($this, 5); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$ = $rt_classWithoutFields(oncief_Function), -oncief_ValueType$_MODULE$ = null, -oncief_ValueType$_signatures = null, -oncief_ValueType$_$callClinit = () => { - oncief_ValueType$_$callClinit = $rt_eraseClinit(oncief_ValueType$); - oncief_ValueType$__clinit_(); +oncipv_Cypher5Parser_regularQuery = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RegularQueryContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 6, 3); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 702); + oncipv_Cypher5Parser_singleQuery($this); + oavr_Recognizer_setState($this, 710); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 285) { + oavr_Recognizer_setState($this, 703); + oavr_Parser_match($this, 285); + oavr_Recognizer_setState($this, 705); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 81)) { + oavr_Recognizer_setState($this, 704); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 81) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 707); + oncipv_Cypher5Parser_singleQuery($this); + oavr_Recognizer_setState($this, 712); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_ValueType$; - oncief_ValueType$_$callClinit(); - oncief_Function__init_(var$1); - oncief_ValueType$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_ValueType$_MODULE$; - var$6 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 1); - var$8.data[0] = $rt_s(1141); - $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); - $x$4 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_AnyType, 1); - var$11 = var$8.data; - oncius_package$_$callClinit(); - var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); - $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$6 = s_Predef$_Map(s_Predef$_MODULE$); - $x$10 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(s_Tuple2, 1); - var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1141), $rt_s(5979)); - var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5980), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_ValueType$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher5Parser_singleQuery = $this => { + let $_localctx, var$2, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SingleQueryContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 8, 4); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 714); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 713); + oncipv_Cypher5Parser_clause($this); + oavr_Recognizer_setState($this, 716); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$3 = var$2 - 41 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1048577, 33)), Long_ZERO)) + continue; + var$3 = var$2 - 110 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(67108873, 394496)), Long_ZERO)) + continue; + var$3 = var$2 - 174 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(140289, 135266304)), Long_ZERO)) + continue; + var$2 = var$2 - 250 | 0; + if (var$2 & (-64)) + break; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$2), Long_create(257, 1048896)), Long_ZERO)) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$_name = $this => { - return $rt_s(1202); +oncipv_Cypher5Parser_clause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 10, 5); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 735); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 8, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 719); + oncipv_Cypher5Parser_finishClause($this); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 720); + oncipv_Cypher5Parser_returnClause($this); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 721); + oncipv_Cypher5Parser_createClause($this); + break e; + case 5: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 722); + oncipv_Cypher5Parser_insertClause($this); + break e; + case 6: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 723); + oncipv_Cypher5Parser_deleteClause($this); + break e; + case 7: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 724); + oncipv_Cypher5Parser_setClause($this); + break e; + case 8: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 725); + oncipv_Cypher5Parser_removeClause($this); + break e; + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 726); + oncipv_Cypher5Parser_matchClause($this); + break e; + case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 10); + oavr_Recognizer_setState($this, 727); + oncipv_Cypher5Parser_mergeClause($this); + break e; + case 11: + oavr_Parser_enterOuterAlt($this, $_localctx, 11); + oavr_Recognizer_setState($this, 728); + oncipv_Cypher5Parser_withClause($this); + break e; + case 12: + oavr_Parser_enterOuterAlt($this, $_localctx, 12); + oavr_Recognizer_setState($this, 729); + oncipv_Cypher5Parser_unwindClause($this); + break e; + case 13: + oavr_Parser_enterOuterAlt($this, $_localctx, 13); + oavr_Recognizer_setState($this, 730); + oncipv_Cypher5Parser_callClause($this); + break e; + case 14: + oavr_Parser_enterOuterAlt($this, $_localctx, 14); + oavr_Recognizer_setState($this, 731); + oncipv_Cypher5Parser_subqueryClause($this); + break e; + case 15: + oavr_Parser_enterOuterAlt($this, $_localctx, 15); + oavr_Recognizer_setState($this, 732); + oncipv_Cypher5Parser_loadCSVClause($this); + break e; + case 16: + oavr_Parser_enterOuterAlt($this, $_localctx, 16); + oavr_Recognizer_setState($this, 733); + oncipv_Cypher5Parser_foreachClause($this); + break e; + case 17: + oavr_Parser_enterOuterAlt($this, $_localctx, 17); + oavr_Recognizer_setState($this, 734); + oncipv_Cypher5Parser_orderBySkipLimitClause($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 718); + oncipv_Cypher5Parser_useClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$_productArity = $this => { - return 0; +oncipv_Cypher5Parser_useClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$UseClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 12, 6); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 737); + oavr_Parser_match($this, 290); + oavr_Recognizer_setState($this, 739); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 9, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 738); + oavr_Parser_match($this, 120); + } + oavr_Recognizer_setState($this, 741); + oncipv_Cypher5Parser_graphReference($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher5Parser_graphReference = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GraphReferenceContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 14, 7); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 749); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 10, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 743); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 744); + oncipv_Cypher5Parser_graphReference($this); + oavr_Recognizer_setState($this, 745); + oavr_Parser_match($this, 239); + break e; + case 2: + break; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 748); + oncipv_Cypher5Parser_symbolicAliasName($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 747); + oncipv_Cypher5Parser_functionInvocation($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher5Parser_finishClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$FinishClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 16, 8); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 751); + oavr_Parser_match($this, 110); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$_hashCode = $this => { - return 1238275115; +oncipv_Cypher5Parser_returnClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ReturnClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 18, 9); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 753); + oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 754); + oncipv_Cypher5Parser_returnBody($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$_toString = $this => { - return $rt_s(5981); +oncipv_Cypher5Parser_returnBody = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ReturnBodyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 20, 10); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 757); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 11, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 756); + oavr_Parser_match($this, 81); + } + f: { + oavr_Recognizer_setState($this, 759); + oncipv_Cypher5Parser_returnItems($this); + oavr_Recognizer_setState($this, 761); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 12, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 760); + oncipv_Cypher5Parser_orderBy($this); + } + g: { + oavr_Recognizer_setState($this, 764); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 13, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 763); + oncipv_Cypher5Parser_skip($this); + } + h: { + oavr_Recognizer_setState($this, 767); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 14, $this.$_ctx)) { + case 1: + break; + default: + break h; + } + oavr_Recognizer_setState($this, 766); + oncipv_Cypher5Parser_limit($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_ValueType$_signatures0 = $this => { - oncief_ValueType$_$callClinit(); - return oncief_ValueType$_signatures; +oncipv_Cypher5Parser_returnItem = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ReturnItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 22, 11); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 769); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 772); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 770); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 771); + oncipv_Cypher5Parser_variable($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$ = $rt_classWithoutFields(oncief_Function), -oncief_WithinBBox$_MODULE$ = null, -oncief_WithinBBox$_name = null, -oncief_WithinBBox$_signatures = null, -oncief_WithinBBox$_$callClinit = () => { - oncief_WithinBBox$_$callClinit = $rt_eraseClinit(oncief_WithinBBox$); - oncief_WithinBBox$__clinit_(); +oncipv_Cypher5Parser_returnItems = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ReturnItemsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 24, 12); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 776); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 4: + case 5: + case 6: + case 7: + case 8: + case 9: + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 80: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 146: + case 147: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 155: + case 157: + case 158: + case 159: + case 160: + case 161: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 199: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 775); + oncipv_Cypher5Parser_returnItem($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 148: + case 156: + case 162: + case 163: + case 164: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Recognizer_setState($this, 774); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 782); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 778); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 779); + oncipv_Cypher5Parser_returnItem($this); + oavr_Recognizer_setState($this, 784); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$10, var$14, $x$8; - var$1 = new oncief_WithinBBox$; - oncief_WithinBBox$_$callClinit(); - oncief_Function__init_(var$1); - oncief_WithinBBox$_MODULE$ = var$1; - oncief_WithinBBox$_name = $rt_s(5982); - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_WithinBBox$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1207), $rt_s(5983), $rt_s(5984)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_PointType, 3); - var$10 = var$9.data; - oncius_package$_$callClinit(); - var$10[0] = oncius_package$_CTPoint(oncius_package$_MODULE$); - var$10[1] = oncius_package$_CTPoint(oncius_package$_MODULE$); - var$10[2] = oncius_package$_CTPoint(oncius_package$_MODULE$); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_SPATIAL(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - $x$10 = s_Predef$_Map(s_Predef$_MODULE$); - var$14 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 3); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1207), $rt_s(5985)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5983), $rt_s(5986)); - var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5984), $rt_s(5987)); - var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5988), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); - oncief_WithinBBox$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher5Parser_orderItem = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$OrderItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 26, 13); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 785); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 788); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case -1: + case 41: + case 49: + case 61: + case 73: + case 78: + case 110: + case 113: + case 136: + case 150: + case 152: + case 159: + case 160: + case 174: + case 184: + case 187: + case 191: + case 217: + case 226: + case 233: + case 239: + case 247: + case 250: + case 255: + case 258: + case 267: + case 285: + case 288: + case 290: + case 301: + case 302: + break; + case 24: + case 25: + oavr_Recognizer_setState($this, 786); + oncipv_Cypher5Parser_ascToken($this); + break e; + case 75: + case 76: + oavr_Recognizer_setState($this, 787); + oncipv_Cypher5Parser_descToken($this); + break e; + default: + break e; + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$_name0 = $this => { - oncief_WithinBBox$_$callClinit(); - return oncief_WithinBBox$_name; +oncipv_Cypher5Parser_ascToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AscTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 28, 14); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 790); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 24 && $_la != 25) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$_productArity = $this => { - return 0; +oncipv_Cypher5Parser_descToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DescTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 30, 15); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 792); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 75 && $_la != 76) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher5Parser_orderBy = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$OrderByContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 32, 16); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 794); + oavr_Parser_match($this, 191); + oavr_Recognizer_setState($this, 795); + oavr_Parser_match($this, 40); + oavr_Recognizer_setState($this, 796); + oncipv_Cypher5Parser_orderItem($this); + oavr_Recognizer_setState($this, 801); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 797); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 798); + oncipv_Cypher5Parser_orderItem($this); + oavr_Recognizer_setState($this, 803); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher5Parser_skip = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SkipContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 34, 17); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 804); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 184 && $_la != 258) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 805); + oncipv_Cypher5Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$_hashCode = $this => { - return 502356276; +oncipv_Cypher5Parser_limit = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LimitContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 36, 18); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 807); + oavr_Parser_match($this, 150); + oavr_Recognizer_setState($this, 808); + oncipv_Cypher5Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$_toString = $this => { - return $rt_s(5989); +oncipv_Cypher5Parser_whereClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$WhereClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 38, 19); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 810); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 811); + oncipv_Cypher5Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_WithinBBox$_signatures0 = $this => { - oncief_WithinBBox$_$callClinit(); - return oncief_WithinBBox$_signatures; +oncipv_Cypher5Parser_withClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$WithClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 40, 20); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 813); + oavr_Parser_match($this, 302); + oavr_Recognizer_setState($this, 814); + oncipv_Cypher5Parser_returnBody($this); + oavr_Recognizer_setState($this, 816); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 815); + oncipv_Cypher5Parser_whereClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_VectorSimilarityEuclidean$ = $rt_classWithoutFields(oncief_Function), -oncief_VectorSimilarityEuclidean$_MODULE$ = null, -oncief_VectorSimilarityEuclidean$_signatures = null, -oncief_VectorSimilarityEuclidean$_$callClinit = () => { - oncief_VectorSimilarityEuclidean$_$callClinit = $rt_eraseClinit(oncief_VectorSimilarityEuclidean$); - oncief_VectorSimilarityEuclidean$__clinit_(); +oncipv_Cypher5Parser_createClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 42, 21); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 818); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 819); + oncipv_Cypher5Parser_patternList($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_VectorSimilarityEuclidean$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$8, $x$4, $x$6, var$14, var$15, $x$10; - var$1 = new oncief_VectorSimilarityEuclidean$; - oncief_VectorSimilarityEuclidean$_$callClinit(); - oncief_Function__init_(var$1); - oncief_VectorSimilarityEuclidean$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_VectorSimilarityEuclidean$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5990), $rt_s(5991)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_ListType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - $x$8 = oncius_package$_MODULE$; - var$10[0] = oncius_package$_CTList($x$8, oncius_package$_CTNumber($x$8)); - $x$8 = oncius_package$_MODULE$; - var$10[1] = oncius_package$_CTList($x$8, oncius_package$_CTNumber($x$8)); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_VECTOR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$14 = s_Predef$_Map(s_Predef$_MODULE$); - var$15 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5990), $rt_s(5992)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5991), $rt_s(5993)); - var$7 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray(var$15, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5994), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); - oncief_VectorSimilarityEuclidean$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncipv_Cypher5Parser_insertClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$InsertClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 44, 22); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 821); + oavr_Parser_match($this, 136); + oavr_Recognizer_setState($this, 822); + oncipv_Cypher5Parser_insertPatternList($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_VectorSimilarityEuclidean$_name = $this => { - return $rt_s(5995); +oncipv_Cypher5Parser_setClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SetClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 46, 23); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 824); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 825); + oncipv_Cypher5Parser_setItem($this); + oavr_Recognizer_setState($this, 830); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 826); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 827); + oncipv_Cypher5Parser_setItem($this); + oavr_Recognizer_setState($this, 832); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_VectorSimilarityEuclidean$_productArity = $this => { - return 0; +oncipv_Cypher5Parser_setItem = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SetItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 48, 24); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 855); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 22, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$SetPropContext; + var$2 = $re; + oncipv_Cypher5Parser$SetPropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 833); + oncipv_Cypher5Parser_propertyExpression($this); + oavr_Recognizer_setState($this, 834); + oavr_Parser_match($this, 100); + oavr_Recognizer_setState($this, 835); + oncipv_Cypher5Parser_expression($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$SetDynamicPropContext; + var$2 = $re; + oncipv_Cypher5Parser$SetDynamicPropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 837); + oncipv_Cypher5Parser_dynamicPropertyExpression($this); + oavr_Recognizer_setState($this, 838); + oavr_Parser_match($this, 100); + oavr_Recognizer_setState($this, 839); + oncipv_Cypher5Parser_expression($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$SetPropsContext; + var$2 = $re; + oncipv_Cypher5Parser$SetPropsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 841); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 842); + oavr_Parser_match($this, 100); + oavr_Recognizer_setState($this, 843); + oncipv_Cypher5Parser_expression($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$AddPropContext; + var$2 = $re; + oncipv_Cypher5Parser$AddPropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 845); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 846); + oavr_Parser_match($this, 200); + oavr_Recognizer_setState($this, 847); + oncipv_Cypher5Parser_expression($this); + break e; + case 5: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$SetLabelsContext; + var$2 = $re; + oncipv_Cypher5Parser$SetLabelsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 849); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 850); + oncipv_Cypher5Parser_nodeLabels($this); + break e; + case 6: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$SetLabelsIsContext; + var$2 = $re; + oncipv_Cypher5Parser$SetLabelsIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 852); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 853); + oncipv_Cypher5Parser_nodeLabelsIs($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_VectorSimilarityEuclidean$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncipv_Cypher5Parser_removeClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RemoveClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 50, 25); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 857); + oavr_Parser_match($this, 226); + oavr_Recognizer_setState($this, 858); + oncipv_Cypher5Parser_removeItem($this); + oavr_Recognizer_setState($this, 863); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 859); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 860); + oncipv_Cypher5Parser_removeItem($this); + oavr_Recognizer_setState($this, 865); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_VectorSimilarityEuclidean$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncipv_Cypher5Parser_removeItem = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RemoveItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 52, 26); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 874); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 24, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$RemovePropContext; + var$2 = $re; + oncipv_Cypher5Parser$RemovePropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 866); + oncipv_Cypher5Parser_propertyExpression($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$RemoveDynamicPropContext; + var$2 = $re; + oncipv_Cypher5Parser$RemoveDynamicPropContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 867); + oncipv_Cypher5Parser_dynamicPropertyExpression($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$RemoveLabelsContext; + var$2 = $re; + oncipv_Cypher5Parser$RemoveLabelsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 868); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 869); + oncipv_Cypher5Parser_nodeLabels($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$RemoveLabelsIsContext; + var$2 = $re; + oncipv_Cypher5Parser$RemoveLabelsIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 871); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 872); + oncipv_Cypher5Parser_nodeLabelsIs($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -oncief_VectorSimilarityEuclidean$_hashCode = $this => { - return (-1341475624); +oncipv_Cypher5Parser_deleteClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DeleteClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 54, 27); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 877); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 78 && $_la != 174)) { + oavr_Recognizer_setState($this, 876); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 78 && $_la != 174) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 879); + oavr_Parser_match($this, 73); + oavr_Recognizer_setState($this, 880); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 885); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 881); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 882); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 887); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_VectorSimilarityEuclidean$_toString = $this => { - return $rt_s(5996); +oncipv_Cypher5Parser_matchClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$MatchClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 56, 28); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 889); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 187) { + oavr_Recognizer_setState($this, 888); + oavr_Parser_match($this, 187); + } + e: { + oavr_Recognizer_setState($this, 891); + oavr_Parser_match($this, 159); + oavr_Recognizer_setState($this, 893); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 28, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 892); + oncipv_Cypher5Parser_matchMode($this); + } + oavr_Recognizer_setState($this, 895); + oncipv_Cypher5Parser_patternList($this); + oavr_Recognizer_setState($this, 899); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 293) { + oavr_Recognizer_setState($this, 896); + oncipv_Cypher5Parser_hint($this); + oavr_Recognizer_setState($this, 901); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 903); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 902); + oncipv_Cypher5Parser_whereClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_VectorSimilarityEuclidean$_signatures0 = $this => { - oncief_VectorSimilarityEuclidean$_$callClinit(); - return oncief_VectorSimilarityEuclidean$_signatures; +oncipv_Cypher5Parser_matchMode = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$MatchModeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 58, 29); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 921); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 79: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 913); + oavr_Parser_match($this, 79); + oavr_Recognizer_setState($this, 919); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 224: + f: { + oavr_Recognizer_setState($this, 914); + oavr_Parser_match($this, 224); + oavr_Recognizer_setState($this, 916); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 33, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 915); + oavr_Parser_match($this, 31); + } + break e; + case 225: + oavr_Recognizer_setState($this, 918); + oavr_Parser_match($this, 225); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 227: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 905); + oavr_Parser_match($this, 227); + oavr_Recognizer_setState($this, 911); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 94: + g: { + oavr_Recognizer_setState($this, 906); + oavr_Parser_match($this, 94); + oavr_Recognizer_setState($this, 908); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 31, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 907); + oavr_Parser_match($this, 31); + } + break e; + case 95: + oavr_Recognizer_setState($this, 910); + oavr_Parser_match($this, 95); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncief_VectorSimilarityCosine$ = $rt_classWithoutFields(oncief_Function), -oncief_VectorSimilarityCosine$_MODULE$ = null, -oncief_VectorSimilarityCosine$_signatures = null, -oncief_VectorSimilarityCosine$_$callClinit = () => { - oncief_VectorSimilarityCosine$_$callClinit = $rt_eraseClinit(oncief_VectorSimilarityCosine$); - oncief_VectorSimilarityCosine$__clinit_(); +oncipv_Cypher5Parser_hint = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$HintContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 60, 30); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 923); + oavr_Parser_match($this, 293); + oavr_Recognizer_setState($this, 951); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 38: + case 132: + case 201: + case 215: + case 268: + f: { + oavr_Recognizer_setState($this, 933); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 38: + oavr_Recognizer_setState($this, 925); + oavr_Parser_match($this, 38); + oavr_Recognizer_setState($this, 926); + oavr_Parser_match($this, 132); + break f; + case 132: + oavr_Recognizer_setState($this, 924); + oavr_Parser_match($this, 132); + break f; + case 201: + oavr_Recognizer_setState($this, 931); + oavr_Parser_match($this, 201); + oavr_Recognizer_setState($this, 932); + oavr_Parser_match($this, 132); + break f; + case 215: + oavr_Recognizer_setState($this, 929); + oavr_Parser_match($this, 215); + oavr_Recognizer_setState($this, 930); + oavr_Parser_match($this, 132); + break f; + case 268: + oavr_Recognizer_setState($this, 927); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 928); + oavr_Parser_match($this, 132); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + g: { + oavr_Recognizer_setState($this, 936); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 37, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 935); + oavr_Parser_match($this, 246); + } + oavr_Recognizer_setState($this, 938); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 939); + oncipv_Cypher5Parser_labelOrRelType($this); + oavr_Recognizer_setState($this, 940); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 941); + oncipv_Cypher5Parser_nonEmptyNameList($this); + oavr_Recognizer_setState($this, 942); + oavr_Parser_match($this, 239); + break e; + case 140: + oavr_Recognizer_setState($this, 944); + oavr_Parser_match($this, 140); + oavr_Recognizer_setState($this, 945); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 946); + oncipv_Cypher5Parser_nonEmptyNameList($this); + break e; + case 240: + oavr_Recognizer_setState($this, 947); + oavr_Parser_match($this, 240); + oavr_Recognizer_setState($this, 948); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 949); + oncipv_Cypher5Parser_labelOrRelType($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }; -let oncief_VectorSimilarityCosine$__clinit_ = () => { - let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$8, $x$4, $x$6, var$14, var$15, $x$10; - var$1 = new oncief_VectorSimilarityCosine$; - oncief_VectorSimilarityCosine$_$callClinit(); - oncief_Function__init_(var$1); - oncief_VectorSimilarityCosine$_MODULE$ = var$1; - s_package$_$callClinit(); - var$1 = s_package$_Vector(s_package$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); - var$4 = var$3.data; - $x$1 = oncief_VectorSimilarityCosine$_MODULE$; - $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5990), $rt_s(5991)]))); - var$7 = s_package$_Vector(s_package$_MODULE$); - $x$3 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_ListType, 2); - var$10 = var$9.data; - oncius_package$_$callClinit(); - $x$8 = oncius_package$_MODULE$; - var$10[0] = oncius_package$_CTList($x$8, oncius_package$_CTNumber($x$8)); - $x$8 = oncius_package$_MODULE$; - var$10[1] = oncius_package$_CTList($x$8, oncius_package$_CTNumber($x$8)); - $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); - $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); - oncief_Category$_$callClinit(); - $x$6 = oncief_Category$_VECTOR(oncief_Category$_MODULE$); - s_Predef$_$callClinit(); - var$14 = s_Predef$_Map(s_Predef$_MODULE$); - var$15 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(s_Tuple2, 2); - var$10 = var$9.data; - var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5990), $rt_s(5992)); - var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5991), $rt_s(5993)); - var$7 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray(var$15, var$9)); - oncie_FunctionTypeSignature$_$callClinit(); - $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); - $x$10 = s_None$_MODULE$; - var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5997), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); - oncief_VectorSimilarityCosine$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncief_VectorSimilarityCosine$_name = $this => { - return $rt_s(5998); -}, -oncief_VectorSimilarityCosine$_productArity = $this => { - return 0; -}, -oncief_VectorSimilarityCosine$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_VectorSimilarityCosine$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_VectorSimilarityCosine$_hashCode = $this => { - return (-548655809); -}, -oncief_VectorSimilarityCosine$_toString = $this => { - return $rt_s(5999); -}, -oncief_VectorSimilarityCosine$_signatures0 = $this => { - oncief_VectorSimilarityCosine$_$callClinit(); - return oncief_VectorSimilarityCosine$_signatures; -}, -oncief_Function$$lookup$lzycompute$lambda$_2_0 = $rt_classWithoutFields(), -oncief_Function$$lookup$lzycompute$lambda$_2_0__init_ = var$0 => { - return; -}, -oncief_Function$$lookup$lzycompute$lambda$_2_0__init_0 = () => { - let var_0 = new oncief_Function$$lookup$lzycompute$lambda$_2_0(); - oncief_Function$$lookup$lzycompute$lambda$_2_0__init_(var_0); - return var_0; -}, -oncief_Function$$lookup$lzycompute$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - oncief_Function$_$callClinit(); - var$2 = new s_Tuple2; - var$3 = var$1.$name(); - ju_Locale_$callClinit(); - s_Tuple2__init_0(var$2, jl_String_toLowerCase0(var$3, ju_Locale_ROOT), var$1); - return var$2; -}, -oncia_FulltextCreateIndex$ = $rt_classWithoutFields(), -oncia_FulltextCreateIndex$_MODULE$ = null, -oncia_FulltextCreateIndex$_command = null, -oncia_FulltextCreateIndex$_nodeDescription = null, -oncia_FulltextCreateIndex$_relDescription = null, -oncia_FulltextCreateIndex$_allDescription = null, -oncia_FulltextCreateIndex$_singlePropertyOnly = 0, -oncia_FulltextCreateIndex$__clinit_ = () => { - oncia_FulltextCreateIndex$_MODULE$ = new oncia_FulltextCreateIndex$; - oncia_FulltextCreateIndex$_command = $rt_s(6000); - oncia_FulltextCreateIndex$_nodeDescription = $rt_s(6001); - oncia_FulltextCreateIndex$_relDescription = $rt_s(6002); - oncia_FulltextCreateIndex$_allDescription = $rt_s(6003); - oncia_FulltextCreateIndex$_singlePropertyOnly = 0; +let oncipv_Cypher5Parser_mergeClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$MergeClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 62, 31); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 953); + oavr_Parser_match($this, 160); + oavr_Recognizer_setState($this, 954); + oncipv_Cypher5Parser_pattern($this); + oavr_Recognizer_setState($this, 958); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 185) { + oavr_Recognizer_setState($this, 955); + oncipv_Cypher5Parser_mergeAction($this); + oavr_Recognizer_setState($this, 960); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncia_LookupCreateIndex$ = $rt_classWithoutFields(), -oncia_LookupCreateIndex$_MODULE$ = null, -oncia_LookupCreateIndex$_command = null, -oncia_LookupCreateIndex$_nodeDescription = null, -oncia_LookupCreateIndex$_relDescription = null, -oncia_LookupCreateIndex$_allDescription = null, -oncia_LookupCreateIndex$_singlePropertyOnly = 0, -oncia_LookupCreateIndex$__clinit_ = () => { - oncia_LookupCreateIndex$_MODULE$ = new oncia_LookupCreateIndex$; - oncia_LookupCreateIndex$_command = $rt_s(6004); - oncia_LookupCreateIndex$_nodeDescription = $rt_s(6005); - oncia_LookupCreateIndex$_relDescription = $rt_s(6006); - oncia_LookupCreateIndex$_allDescription = $rt_s(6007); - oncia_LookupCreateIndex$_singlePropertyOnly = 0; -}; -function oncipcaf_ASTExceptionFactory$joiningLastDelimiter$lambda$_15_0() { - let a = this; jl_Object.call(a); - a.$_0836 = null; - a.$_1287 = null; -} -let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1_applyOrElse = ($this, $x1, $default) => { - if ($x1 instanceof oncie_Or) - return jl_Boolean_valueOf(1); - if (!$rt_isInstance($x1, oncie_ScopeExpression)) - return s_PartialFunction$_fallback_fn; - return jl_Boolean_valueOf(1); +oncipv_Cypher5Parser_mergeAction = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$MergeActionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 64, 32); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 961); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 962); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 61 && $_la != 159) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 963); + oncipv_Cypher5Parser_setClause($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1_applyOrElse = ($this, $x1, $default) => { - if (!($x1 instanceof oncie_In)) - return s_PartialFunction$_fallback_fn; - return jl_Boolean_valueOf(1); +oncipv_Cypher5Parser_unwindClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$UnwindClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 66, 33); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 965); + oavr_Parser_match($this, 288); + oavr_Recognizer_setState($this, 966); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 967); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 968); + oncipv_Cypher5Parser_variable($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1_applyOrElse = ($this, $x1, $default) => { - if (!($x1 instanceof oncie_Not)) - return s_PartialFunction$_fallback_fn; - return jl_Boolean_valueOf(1); +oncipv_Cypher5Parser_callClause = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CallClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 68, 34); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 971); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 187) { + oavr_Recognizer_setState($this, 970); + oavr_Parser_match($this, 187); + } + oavr_Recognizer_setState($this, 973); + oavr_Parser_match($this, 41); + oavr_Recognizer_setState($this, 974); + oncipv_Cypher5Parser_procedureName($this); + oavr_Recognizer_setState($this, 987); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) { + e: { + oavr_Recognizer_setState($this, 975); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 984); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4291035135, 4022337519)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4025286655, 4294967267)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697215, 4286545919)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 976); + oncipv_Cypher5Parser_procedureArgument($this); + oavr_Recognizer_setState($this, 981); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 49) + break e; + oavr_Recognizer_setState($this, 977); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 978); + oncipv_Cypher5Parser_procedureArgument($this); + oavr_Recognizer_setState($this, 983); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 986); + oavr_Parser_match($this, 239); + } + f: { + oavr_Recognizer_setState($this, 1004); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 306) { + oavr_Recognizer_setState($this, 989); + oavr_Parser_match($this, 306); + oavr_Recognizer_setState($this, 1002); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 991); + oncipv_Cypher5Parser_procedureResultItem($this); + oavr_Recognizer_setState($this, 996); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 992); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 993); + oncipv_Cypher5Parser_procedureResultItem($this); + oavr_Recognizer_setState($this, 998); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 1000); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 301) + break f; + oavr_Recognizer_setState($this, 999); + oncipv_Cypher5Parser_whereClause($this); + break f; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Recognizer_setState($this, 990); + oavr_Parser_match($this, 271); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1_applyOrElse = ($this, $x1, $default) => { - if (!($x1 instanceof oncie_Not)) - return s_PartialFunction$_fallback_fn; - return jl_Boolean_valueOf(1); +oncipv_Cypher5Parser_procedureName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ProcedureNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 70, 35); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1006); + oncipv_Cypher5Parser_namespace($this); + oavr_Recognizer_setState($this, 1007); + oncipv_Cypher5Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1_applyOrElse = ($this, $x1, $default) => { - if (!($x1 instanceof oncie_And)) - return s_PartialFunction$_fallback_fn; - return jl_Boolean_valueOf(1); +oncipv_Cypher5Parser_procedureArgument = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ProcedureArgumentContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 72, 36); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1009); + oncipv_Cypher5Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncias_SemanticError$ = $rt_classWithoutFields(), -oncias_SemanticError$_MODULE$ = null, -oncias_SemanticError$_$callClinit = () => { - oncias_SemanticError$_$callClinit = $rt_eraseClinit(oncias_SemanticError$); - oncias_SemanticError$__clinit_(); +oncipv_Cypher5Parser_procedureResultItem = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ProcedureResultItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 74, 37); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1011); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1014); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 1012); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 1013); + oncipv_Cypher5Parser_variable($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncias_SemanticError$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticError$; - oncias_SemanticError$_$callClinit(); - oncias_SemanticError$_MODULE$ = var$1; +oncipv_Cypher5Parser_loadCSVClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LoadCSVClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 76, 38); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1016); + oavr_Parser_match($this, 152); + oavr_Recognizer_setState($this, 1017); + oavr_Parser_match($this, 62); + oavr_Recognizer_setState($this, 1020); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 302) { + oavr_Recognizer_setState($this, 1018); + oavr_Parser_match($this, 302); + oavr_Recognizer_setState($this, 1019); + oavr_Parser_match($this, 125); + } + oavr_Recognizer_setState($this, 1022); + oavr_Parser_match($this, 114); + oavr_Recognizer_setState($this, 1023); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1024); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 1025); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1028); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 109) { + oavr_Recognizer_setState($this, 1026); + oavr_Parser_match($this, 109); + oavr_Recognizer_setState($this, 1027); + oncipv_Cypher5Parser_stringLiteral($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncias_SemanticError$_apply = ($this, $msg, $position) => { - return oncias_SemanticError__init_(null, $msg, $position); +oncipv_Cypher5Parser_foreachClause = $this => { + let $_localctx, var$2, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ForeachClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 78, 39); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1030); + oavr_Parser_match($this, 113); + oavr_Recognizer_setState($this, 1031); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1032); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1033); + oavr_Parser_match($this, 131); + oavr_Recognizer_setState($this, 1034); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1035); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 1037); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 1036); + oncipv_Cypher5Parser_clause($this); + oavr_Recognizer_setState($this, 1039); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$3 = var$2 - 41 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1048577, 33)), Long_ZERO)) + continue; + var$3 = var$2 - 110 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(67108873, 394496)), Long_ZERO)) + continue; + var$3 = var$2 - 174 | 0; + if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(140289, 135266304)), Long_ZERO)) + continue; + var$2 = var$2 - 250 | 0; + if (var$2 & (-64)) + break; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$2), Long_create(257, 1048896)), Long_ZERO)) + continue; + else + break; + } + oavr_Recognizer_setState($this, 1041); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncias_SemanticError$_invalidUseOfGraphFunction = ($this, $graphFunction, $pos) => { - let var$3, $gql, var$5; - ong_GqlStatusInfoCodes_$callClinit(); - var$3 = ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001); - ong_ErrorClassification_$callClinit(); - $gql = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withClassification(var$3, ong_ErrorClassification_CLIENT_ERROR), $pos.$line(), $pos.$column(), $pos.$offset()); - var$3 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withClassification(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N75), ong_ErrorClassification_CLIENT_ERROR), $pos.$line(), $pos.$column(), $pos.$offset()); - var$5 = ong_GqlParams$StringParam_fun; - var$3.$paramMap.$put(var$5, $graphFunction); - $gql.$cause1 = ong_ErrorGqlStatusObjectImplementation$Builder_build(var$3); - $gql = ong_ErrorGqlStatusObjectImplementation$Builder_build($gql); - var$3 = new oncias_SemanticError; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_AbstractStringBuilder_append0(var$5, 96); - jl_StringBuilder_append(jl_StringBuilder_append(var$5, $graphFunction), $rt_s(6008)); - oncias_SemanticError__init_0(var$3, $gql, jl_AbstractStringBuilder_toString(var$5), $pos); - return var$3; +oncipv_Cypher5Parser_subqueryClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SubqueryClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 80, 40); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1044); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 187) { + oavr_Recognizer_setState($this, 1043); + oavr_Parser_match($this, 187); + } + oavr_Recognizer_setState($this, 1046); + oavr_Parser_match($this, 41); + oavr_Recognizer_setState($this, 1048); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) { + oavr_Recognizer_setState($this, 1047); + oncipv_Cypher5Parser_subqueryScope($this); + } + oavr_Recognizer_setState($this, 1050); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 1051); + oncipv_Cypher5Parser_regularQuery($this); + oavr_Recognizer_setState($this, 1052); + oavr_Parser_match($this, 217); + oavr_Recognizer_setState($this, 1054); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 131) { + oavr_Recognizer_setState($this, 1053); + oncipv_Cypher5Parser_subqueryInTransactionsParameters($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncias_SemanticCheck$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), -oncias_SemanticCheck$$_clinit_$lambda$_0_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticCheck$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); +oncipv_Cypher5Parser_subqueryScope = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SubqueryScopeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 82, 41); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1056); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1066); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + break f; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 247: + break e; + case 239: + break; + case 271: + oavr_Recognizer_setState($this, 1057); + oavr_Parser_match($this, 271); + break e; + default: + break e; + } + break e; + } + oavr_Recognizer_setState($this, 1058); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1063); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 49) + break e; + oavr_Recognizer_setState($this, 1059); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1060); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1065); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1068); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -ong_ErrorMessageHolder = $rt_classWithoutFields(), -ong_GqlHelper = $rt_classWithoutFields(), -ong_GqlHelper_getErrorObjectWithRewrittenCause = ($gqlStatusObject, $newCause) => { - let $gsoImplementation; - $gsoImplementation = $gqlStatusObject.$gqlStatusObject(); - if (!($gsoImplementation instanceof ong_ErrorGqlStatusObjectImplementation)) - return $gqlStatusObject; - $gsoImplementation = $gsoImplementation; - if (ju_Optional_isPresent($gqlStatusObject.$cause0())) - $newCause = ong_GqlHelper_getErrorObjectWithRewrittenCause(ju_Optional_get($gqlStatusObject.$cause0()), $newCause); - $gqlStatusObject = ong_ErrorGqlStatusObjectImplementation$Builder__init_($gsoImplementation.$gqlStatusInfoCode); - $gqlStatusObject.$paramMap = $gsoImplementation.$paramMap0; - $gqlStatusObject.$cause1 = $newCause; - return ong_ErrorGqlStatusObjectImplementation$Builder_build($gqlStatusObject); -}; -function s_Enumeration$Value() { - let a = this; jl_Object.call(a); - a.$scala$Enumeration$$outerEnum0 = null; - a.$$outer40 = null; -} -let s_Enumeration$Value_compareTo = ($this, $that) => { - let var$2; - $that = $that; - var$2 = $rt_compare($this.$i, $that.$i); - return var$2 < 0 ? (-1) : var$2 ? 1 : 0; +oncipv_Cypher5Parser_subqueryInTransactionsParameters = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 84, 42); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1070); + oavr_Parser_match($this, 131); + oavr_Recognizer_setState($this, 1075); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 58, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + f: { + oavr_Recognizer_setState($this, 1072); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 57, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1071); + oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1074); + oavr_Parser_match($this, 54); + } + oavr_Recognizer_setState($this, 1077); + oavr_Parser_match($this, 278); + oavr_Recognizer_setState($this, 1083); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + g: { + try { + while (true) { + $_la = $_la - 183 | 0; + if ($_la & (-64)) + break; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(5, 16384)), Long_ZERO)) + break; + h: { + oavr_Recognizer_setState($this, 1081); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 183: + break; + case 185: + oavr_Recognizer_setState($this, 1079); + oncipv_Cypher5Parser_subqueryInTransactionsErrorParameters($this); + break h; + case 229: + oavr_Recognizer_setState($this, 1080); + oncipv_Cypher5Parser_subqueryInTransactionsReportParameters($this); + break h; + default: + break g; + } + oavr_Recognizer_setState($this, 1078); + oncipv_Cypher5Parser_subqueryInTransactionsBatchParameters($this); + } + oavr_Recognizer_setState($this, 1085); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $rt_throw(oavr_NoViableAltException__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + } else{ + $_localctx = $$je; + break c; + } + } + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -s_Enumeration$Value_equals = ($this, $other) => { - if (!($other instanceof s_Enumeration$Value)) - return 0; - $other = $other; - if ($this.$scala$Enumeration$$outerEnum0 === $other.$scala$Enumeration$$outerEnum0 && $this.$i == $other.$i) - return 1; - return 0; +oncipv_Cypher5Parser_subqueryInTransactionsBatchParameters = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 86, 43); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1086); + oavr_Parser_match($this, 183); + oavr_Recognizer_setState($this, 1087); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1088); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 237 && $_la != 238) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -s_Enumeration$Value_hashCode = $this => { - return $this.$i; -}; -function s_Enumeration$Val() { - let a = this; s_Enumeration$Value.call(a); - a.$i = 0; - a.$name57 = null; -} -let s_Enumeration$Val_toString = $this => { - let var$1, $$je; - var$1 = $this.$name57; - if (var$1 !== null) - return var$1; +oncipv_Cypher5Parser_subqueryInTransactionsErrorParameters = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 88, 44); a: { - try { - var$1 = s_Enumeration_scala$Enumeration$$nameOf(s_Enumeration$Val_scala$Enumeration$Val$$$outer($this), $this.$i); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ju_NoSuchElementException) { - break a; - } else { - throw $$e; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1090); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 1091); + oavr_Parser_match($this, 106); + oavr_Recognizer_setState($this, 1092); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 36 && $_la != 59 && $_la != 107) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - return var$1; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$1, 30); - jl_AbstractStringBuilder_append(var$1, $rt_s(6009)); - var$1 = jl_StringBuilder_append0(var$1, $this.$i); - jl_AbstractStringBuilder_append(var$1, $rt_s(604)); - return jl_AbstractStringBuilder_toString(var$1); -}, -s_Enumeration$Val_scala$Enumeration$Val$$$outer = $this => { - return $this.$$outer40; -}; -function ong_ErrorGqlStatusObjectImplementation() { - let a = this; ong_CommonGqlStatusObjectImplementation.call(a); - a.$cause3 = null; - a.$paramMap0 = null; - a.$gqlStatusInfoCode = null; -} -let ong_ErrorGqlStatusObjectImplementation_from = $gqlStatusInfo => { - return ong_ErrorGqlStatusObjectImplementation$Builder__init_($gqlStatusInfo); -}, -ong_ErrorGqlStatusObjectImplementation_cause = $this => { - return $this.$cause3; -}, -ong_ErrorGqlStatusObjectImplementation_gqlStatusObject = $this => { - return $this; + return $_localctx; }, -ong_ErrorGqlStatusObjectImplementation_toString = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append(var$1, $rt_s(93)); - jl_AbstractStringBuilder_append(var$1, $rt_s(6010)); - jl_AbstractStringBuilder_append(var$1, jl_String_trim(ong_GqlStatusInfoCodes_getStatusString($this.$gqlStatusInfoCode))); - jl_AbstractStringBuilder_append(var$1, $rt_s(93)); - jl_AbstractStringBuilder_append(var$1, $rt_s(6011)); - jl_AbstractStringBuilder_append(var$1, jl_String_trim(ong_CommonGqlStatusObjectImplementation_insertMessageParameters($this, $this.$paramMap0))); - jl_AbstractStringBuilder_append(var$1, $rt_s(93)); - jl_AbstractStringBuilder_append(var$1, $rt_s(6012)); - jl_AbstractStringBuilder_append(var$1, jl_String_trim($this.$gqlStatusInfoCode.$subCondition)); - if (!ju_Optional_isPresent($this.$cause3)) - var$1 = jl_AbstractStringBuilder_toString(var$1); - else { - jl_AbstractStringBuilder_append(var$1, $rt_s(93)); - jl_AbstractStringBuilder_append(var$1, $rt_s(6013)); - var$2 = (ju_Optional_get($this.$cause3)).$toString(); - var$3 = jl_String_repeat($rt_s(384), 4); - var$4 = (jl_String_split(var$2, $rt_s(93))).data; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$5 = var$4.length; - var$6 = 0; - while (var$6 < var$5) { - var$7 = var$4[var$6]; - jl_AbstractStringBuilder_append(var$2, var$3); - jl_AbstractStringBuilder_append(var$2, var$7); - jl_AbstractStringBuilder_append(var$2, $rt_s(93)); - var$6 = var$6 + 1 | 0; +oncipv_Cypher5Parser_subqueryInTransactionsReportParameters = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 90, 45); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1094); + oavr_Parser_match($this, 229); + oavr_Recognizer_setState($this, 1095); + oavr_Parser_match($this, 261); + oavr_Recognizer_setState($this, 1096); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 1097); + oncipv_Cypher5Parser_variable($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$6 = var$2.$length1; - if (var$6 > 0) - var$2.$length1 = var$6 - 1 | 0; - jl_AbstractStringBuilder_append(var$1, jl_AbstractStringBuilder_toString(var$2)); - var$1 = jl_AbstractStringBuilder_toString(var$1); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$1; -}; -function ong_ErrorGqlStatusObjectImplementation$Builder() { - let a = this; jl_Object.call(a); - a.$cause1 = null; - a.$paramMap = null; - a.$gqlStatusInfoCode0 = null; - a.$diagnosticRecordBuilder = null; -} -let ong_ErrorGqlStatusObjectImplementation$Builder__init_0 = ($this, $gqlStatusInfo) => { - let var$2, var$3; - $this.$cause1 = null; - $this.$paramMap = ju_HashMap__init_(); - ong_DiagnosticRecord_$callClinit(); - var$2 = new ong_DiagnosticRecord$Builder; - var$3 = ju_HashMap__init_(); - var$2.$innerDiagnosticRecord0 = var$3; - ju_HashMap_put(var$3, $rt_s(3454), $rt_s(89)); - ju_HashMap_put(var$2.$innerDiagnosticRecord0, $rt_s(3455), $rt_s(4)); - ju_HashMap_put(var$2.$innerDiagnosticRecord0, $rt_s(3456), $rt_s(21)); - $this.$diagnosticRecordBuilder = var$2; - $this.$gqlStatusInfoCode0 = $gqlStatusInfo; -}, -ong_ErrorGqlStatusObjectImplementation$Builder__init_ = var_0 => { - let var_1 = new ong_ErrorGqlStatusObjectImplementation$Builder(); - ong_ErrorGqlStatusObjectImplementation$Builder__init_0(var_1, var_0); - return var_1; -}, -ong_ErrorGqlStatusObjectImplementation$Builder_withParam = ($this, $param, $value) => { - $this.$paramMap.$put($param, $value); - return $this; -}, -ong_ErrorGqlStatusObjectImplementation$Builder_withClassification = ($this, $classification) => { - ju_HashMap_put($this.$diagnosticRecordBuilder.$innerDiagnosticRecord0, $rt_s(3458), jl_Enum_toString($classification)); - return $this; -}, -ong_ErrorGqlStatusObjectImplementation$Builder_atPosition = ($this, $line, $col, $offset) => { - ju_HashMap_put($this.$diagnosticRecordBuilder.$innerDiagnosticRecord0, $rt_s(3459), ju_Map_of0($rt_s(3461), jl_Integer_valueOf($line), $rt_s(3462), jl_Integer_valueOf($col), $rt_s(3460), jl_Integer_valueOf($offset))); - return $this; + return $_localctx; }, -ong_ErrorGqlStatusObjectImplementation$Builder_build = $this => { - let var$1, $diagnosticRecord, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = $this.$diagnosticRecordBuilder; - $diagnosticRecord = new ong_DiagnosticRecord; - var$1 = var$1.$innerDiagnosticRecord0; - ong_DiagnosticRecord_$callClinit(); - $diagnosticRecord.$innerDiagnosticRecord = ju_HashMap__init_(); - var$3 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3454))); - var$4 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3455))); - var$5 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3456))); - var$6 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3457))); - var$7 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3458))); - var$8 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3459))); - ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(6014))); - ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3454), ju_Optional_orElse(var$3, $rt_s(89))); - ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3455), ju_Optional_orElse(var$4, $rt_s(4))); - ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3456), ju_Optional_orElse(var$5, $rt_s(21))); - var$1 = new ong_DiagnosticRecord$_init_$lambda$_4_0; - var$1.$_0968 = $diagnosticRecord; - ju_Optional_ifPresent(var$6, var$1); - var$1 = new ong_DiagnosticRecord$_init_$lambda$_4_1; - var$1.$_0430 = $diagnosticRecord; - ju_Optional_ifPresent(var$7, var$1); - var$1 = new ong_DiagnosticRecord$_init_$lambda$_4_2; - var$1.$_01090 = $diagnosticRecord; - ju_Optional_ifPresent(var$8, var$1); - var$1 = new ong_ErrorGqlStatusObjectImplementation; - var$5 = $this.$gqlStatusInfoCode0; - var$6 = $this.$paramMap; - var$7 = $this.$cause1; - var$1.$gqlStatusInfo = var$5; - var$1.$diagnosticRecord = $diagnosticRecord; - var$1.$messageWithParameters = ong_CommonGqlStatusObjectImplementation_insertMessageParameters(var$1, var$6); - var$1.$gqlStatusInfoCode = var$5; - var$1.$cause3 = ju_Optional_ofNullable(var$7); - if (var$6 instanceof ju_TemplateCollections$NEtriesMap) - var$5 = var$6; - else { - var$5 = new ju_TemplateCollections$NEtriesMap; - var$5.$data0 = ju_TemplateCollections$NEtriesMap_toEntryArray(var$5, ju_AbstractCollection_toArray(var$6.$entrySet(), $rt_createArray(ju_Map$Entry, 0))); +oncipv_Cypher5Parser_orderBySkipLimitClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$OrderBySkipLimitClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 92, 46); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1111); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 150: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1110); + oncipv_Cypher5Parser_limit($this); + break e; + case 184: + case 258: + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1106); + oncipv_Cypher5Parser_skip($this); + oavr_Recognizer_setState($this, 1108); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 63, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1107); + oncipv_Cypher5Parser_limit($this); + } + break e; + case 191: + g: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1099); + oncipv_Cypher5Parser_orderBy($this); + oavr_Recognizer_setState($this, 1101); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 61, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 1100); + oncipv_Cypher5Parser_skip($this); + } + h: { + oavr_Recognizer_setState($this, 1104); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 62, $this.$_ctx)) { + case 1: + break; + default: + break h; + } + oavr_Recognizer_setState($this, 1103); + oncipv_Cypher5Parser_limit($this); + } + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - var$1.$paramMap0 = var$5; - return var$1; -}; -function ong_DiagnosticRecord$Builder() { - jl_Object.call(this); - this.$innerDiagnosticRecord0 = null; -} -let onc_SettingsDeclaration = $rt_classWithoutFields(0), -onc_GraphDatabaseInternalSettings = $rt_classWithoutFields(), -ong_GqlParams = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_20 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_20_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_20 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_20_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$7_105 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_105_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Auth__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_106 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_106_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SubqueryCall$InTransactionsReportParameters__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_107 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_107_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Variable_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_108 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_108_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_109 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_109_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_UseGraph__init_(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_110 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_110_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SubqueryCall$InTransactionsParameters__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); -}, -onciu_RewritableJavascript$PROXY$7_111 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_111_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SubqueryCall$InTransactionsBatchParameters__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_112 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_112_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_114 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_114_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Where_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_115 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_115_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ProcedureOutput__init_(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_116 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_116_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_OrderBy_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_117 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_117_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SubqueryCall$InTransactionsErrorParameters__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_118 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_118_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_SignedDecimalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_119 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_119_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_133 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_133_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_UnsignedDecimalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_146 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_146_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Match__init_0(var$3[0].$value3, var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); -}, -onciu_RewritableJavascript$PROXY$7_160 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_160_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_AliasedReturnItem_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_178 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_178_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PropertyKeyName__init_(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_193 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_193_copyConstructor = (var$1, var$2, var$3) => { - return oncie_False_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_205 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_205_copyConstructor = (var$1, var$2, var$3) => { - return oncie_Null_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_224 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_224_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_StringLiteral_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_229 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$7_229_copyConstructor = (var$1, var$2, var$3) => { - return oncia_RemovePropertyItem_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_230 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_230_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Multiply__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_231 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_231_copyConstructor = (var$1, var$2, var$3) => { - return oncie_NaN_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_232 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_232_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CollectExpression_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_233 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_233_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_TerminateTransactionsClause__init_(var$3[0], var$3[1], var$3[2], var$3[3].$value3, var$3[4], var$3[5]); -}, -onciu_RewritableJavascript$PROXY$7_234 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_234_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_SignedHexIntegerLiteral_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_235 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_235_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_UnaryAdd__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_236 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_236_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_In_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_238 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_238_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_MapExpression_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_239 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_239_copyConstructor = (var$1, var$2, var$3) => { - return oncie_ShortestPathExpression__init_0(var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_241 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_241_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_UnionAll_copy(var$2, var$3[0], var$3[1], var$3[2].$value3, var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_242 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_242_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_SensitiveStringLiteral__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_243 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_243_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Pow__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_244 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_244_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_IsNotNull__init_(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_245 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_245_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Ands__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_246 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_246_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_StartsWith__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_247 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_247_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ListSlice__init_0(var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_248 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_248_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CountExpression_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_249 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_249_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_And_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_250 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_250_copyConstructor = (var$1, var$2, var$3) => { - return oncie_CountStar__init_0(var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_251 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_251_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SetPropertyItem_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_252 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_252_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_MapProjection__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_253 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_253_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_SignedOctalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_254 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_254_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ContainerIndex__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_255 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_255_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_IsNotNormalized__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_256 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$7_256_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpressionPredicate__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_257 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_257_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowTransactionsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6]); -}, -onciu_RewritableJavascript$PROXY$7_258 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_258_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Xor__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_259 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_259_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpression$Leaf__init_0(var$3[0], var$3[1].$value3); -}, -onciu_RewritableJavascript$PROXY$7_260 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_260_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PatternExpression_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_262 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_262_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PatternComprehension_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6]); -}, -onciu_RewritableJavascript$PROXY$7_263 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_263_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_NoneIterablePredicate__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_264 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_264_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Or_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_265 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_265_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Add__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_266 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_266_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Password__init_0(var$3[0], var$3[1].$value3, var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_267 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_267_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_IsNotTyped__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_269 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_269_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ListComprehension__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_270 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_270_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ExistsExpression_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_271 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_271_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ListLiteral_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_272 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_272_copyConstructor = (var$1, var$2, var$3) => { - return oncie_True_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_273 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_273_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_SingleIterablePredicate__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_274 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_274_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Concatenate__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_275 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_275_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_DecimalDoubleLiteral_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_276 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_276_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_RegexMatch__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_277 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_277_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_AllIterablePredicate__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_279 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_279_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_IsNull__init_(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_280 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_280_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Subtract__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_281 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_281_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_IsNormalized__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_282 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_282_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_IsTyped__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_283 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_283_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Not__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_284 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$7_284_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Modulo__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_285 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_285_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_EndsWith__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_286 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_286_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ReduceExpression__init_(var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_287 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_287_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SetClause_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_288 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_288_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_FunctionInvocation_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4].$value3, var$3[5]); -}, -onciu_RewritableJavascript$PROXY$7_289 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_289_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Contains__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_290 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_290_copyConstructor = (var$1, var$2, var$3) => { - return oncie_Infinity_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_291 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_291_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_UnarySubtract__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_292 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_292_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Divide__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_293 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_293_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_PasswordChange__init_0(var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_294 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_294_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_UnionDistinct_copy(var$2, var$3[0], var$3[1], var$3[2].$value3, var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_295 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_295_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_AuthId__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_296 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_296_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_AnyIterablePredicate__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_297 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_297_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_VariableSelector__init_0(var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_298 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_298_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Insert_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_299 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_299_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_GreaterThan__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_300 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_300_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpression$DynamicLeaf__init_(var$3[0], var$3[1].$value3); -}, -onciu_RewritableJavascript$PROXY$7_302 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_302_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowIndexesClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6]); -}, -onciu_RewritableJavascript$PROXY$7_303 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_303_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_RelationshipPattern_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6]); -}, -onciu_RewritableJavascript$PROXY$7_304 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_304_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpression$Negation__init_0(var$3[0], var$3[1].$value3, var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_306 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_306_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Remove_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_307 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_307_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_LiteralEntry__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_308 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_308_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_LoadCSV__init_(var$3[0].$value3, var$3[1], var$3[2], var$3[3], var$3[4]); -}, -onciu_RewritableJavascript$PROXY$7_309 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_309_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowFunctionsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6].$value3, var$3[7]); -}, -onciu_RewritableJavascript$PROXY$7_310 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_310_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Foreach_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_311 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$7_311_copyConstructor = (var$1, var$2, var$3) => { - return oncie_AllPropertiesSelector__init_0(var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_312 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_312_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_LessThanOrEqual__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_313 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_313_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_InvalidNotEquals__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_314 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_314_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Unwind__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_315 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_315_copyConstructor = (var$1, var$2, var$3) => { - return oncie_PathPatternPart_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_316 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_316_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_NodePattern_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); -}, -onciu_RewritableJavascript$PROXY$7_317 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_317_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SetIncludingPropertiesFromMapItem_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_318 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_318_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Merge_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_321 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_321_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DescSortItem_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_322 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_322_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_UnresolvedCall_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4].$value3, var$3[5].$value3, var$3[6]); -}, -onciu_RewritableJavascript$PROXY$7_323 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_323_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowProceduresClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6]); -}, -onciu_RewritableJavascript$PROXY$7_324 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_324_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_UsingScanHint__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_325 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_325_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Delete_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_326 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_326_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SetExactPropertiesFromMapItem_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_327 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_327_copyConstructor = (var$1, var$2, var$3) => { - return oncia_Finish__init_0(var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_328 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_328_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_LessThan__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_329 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_329_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpression$Wildcard__init_0(var$3[0].$value3, var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_330 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_330_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Create_copy(var$2, var$3[0], var$3[1]); -}, -onciu_RewritableJavascript$PROXY$7_331 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_331_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ShortestPathsPatternPart_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_334 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_334_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ProcedureResultItem__init_(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_335 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_335_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_NamedPatternPart_copy(var$2, var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_336 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_336_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SetLabelItem_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3, var$3[4]); -}, -onciu_RewritableJavascript$PROXY$7_337 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_337_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_GreaterThanOrEqual__init_0(var$3[0], var$3[1], var$3[2]); -}, -onciu_RewritableJavascript$PROXY$7_338 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_338_copyConstructor = (var$1, var$2, var$3) => { - return oncia_RemoveDynamicPropertyItem_copy(var$2, var$3.data[0]); -}, -onciu_RewritableJavascript$PROXY$7_339 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_339_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ImportingWithSubqueryCall_copy(var$2, var$3[0], var$3[1], var$3[2].$value3, var$3[3]); -}, -onciu_RewritableJavascript$PROXY$7_340 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$7_340_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowSettingsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6]); -}, -onciu_RewritableJavascript$PROXY$7_341 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_341_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SetDynamicPropertyItem_copy(var$2, var$3[0], var$3[1], var$3[2]); + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_342 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_342_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_UnaliasedReturnItem__init_(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_patternList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PatternListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 94, 47); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1113); + oncipv_Cypher5Parser_pattern($this); + oavr_Recognizer_setState($this, 1118); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 1114); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1115); + oncipv_Cypher5Parser_pattern($this); + oavr_Recognizer_setState($this, 1120); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_343 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_343_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ShowConstraintsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6]); +oncipv_Cypher5Parser_insertPatternList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$InsertPatternListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 96, 48); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1121); + oncipv_Cypher5Parser_insertPattern($this); + oavr_Recognizer_setState($this, 1126); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 1122); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1123); + oncipv_Cypher5Parser_insertPattern($this); + oavr_Recognizer_setState($this, 1128); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_344 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_344_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpression$ColonConjunction__init_0(var$3[0], var$3[1], var$3[2].$value3, var$3[3]); +oncipv_Cypher5Parser_pattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 98, 49); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1132); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 67, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1129); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1130); + oavr_Parser_match($this, 100); + } + oavr_Recognizer_setState($this, 1135); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 21 && $_la != 254)) { + oavr_Recognizer_setState($this, 1134); + oncipv_Cypher5Parser_selector($this); + } + oavr_Recognizer_setState($this, 1137); + oncipv_Cypher5Parser_anonymousPattern($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_345 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_345_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PatternPartWithSelector_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_insertPattern = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$InsertPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 100, 50); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1142); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221224448, 4294737919)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4290969599, 4022337519)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4294967265)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697087, 4286545919)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 1139); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1140); + oavr_Parser_match($this, 100); + } + oavr_Recognizer_setState($this, 1144); + oncipv_Cypher5Parser_insertNodePattern($this); + oavr_Recognizer_setState($this, 1150); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 156 && $_la != 161 && $_la != 310 && $_la != 311)) { + oavr_Recognizer_setState($this, 1145); + oncipv_Cypher5Parser_insertRelationshipPattern($this); + oavr_Recognizer_setState($this, 1146); + oncipv_Cypher5Parser_insertNodePattern($this); + oavr_Recognizer_setState($this, 1152); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_346 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_346_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_UsingJoinHint__init_0(var$3[0], var$3[1]); +oncipv_Cypher5Parser_quantifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$QuantifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 102, 51); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1167); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 73, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1153); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 1154); + oavr_Parser_match($this, 5); + oavr_Recognizer_setState($this, 1155); + oavr_Parser_match($this, 217); + break e; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1156); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 1158); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + oavr_Recognizer_setState($this, 1157); + $_localctx.$from21 = oavr_Parser_match($this, 5); + } + oavr_Recognizer_setState($this, 1160); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1162); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + oavr_Recognizer_setState($this, 1161); + $_localctx.$to4 = oavr_Parser_match($this, 5); + } + oavr_Recognizer_setState($this, 1164); + oavr_Parser_match($this, 217); + break e; + case 3: + break; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 1166); + oavr_Parser_match($this, 271); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1165); + oavr_Parser_match($this, 199); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_348 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_348_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_NotEquals__init_0(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_anonymousPattern = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AnonymousPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 104, 52); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1171); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 17: + case 253: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1169); + oncipv_Cypher5Parser_shortestPathPattern($this); + break e; + case 155: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1170); + oncipv_Cypher5Parser_patternElement($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_349 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_349_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_RemoveLabelItem_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3, var$3[4]); +oncipv_Cypher5Parser_shortestPathPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShortestPathPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 106, 53); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1173); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 17 && $_la != 253) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1174); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1175); + oncipv_Cypher5Parser_patternElement($this); + oavr_Recognizer_setState($this, 1176); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_350 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_350_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_QuantifiedPath_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); +oncipv_Cypher5Parser_patternElement = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PatternElementContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 108, 54); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1191); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + e: { + f: { + oavr_Recognizer_setState($this, 1191); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 77, $this.$_ctx)) { + case 1: + break f; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1190); + oncipv_Cypher5Parser_parenthesizedPath($this); + break e; + } + oavr_Recognizer_setState($this, 1178); + oncipv_Cypher5Parser_nodePattern($this); + oavr_Recognizer_setState($this, 1187); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if (var$2 != 156 && var$2 != 161 && var$2 != 310 && var$2 != 311) + break e; + oavr_Recognizer_setState($this, 1179); + oncipv_Cypher5Parser_relationshipPattern($this); + oavr_Recognizer_setState($this, 1181); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(var$2 != 147 && var$2 != 199 && var$2 != 271)) { + oavr_Recognizer_setState($this, 1180); + oncipv_Cypher5Parser_quantifier($this); + } + oavr_Recognizer_setState($this, 1183); + oncipv_Cypher5Parser_nodePattern($this); + oavr_Recognizer_setState($this, 1189); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1193); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_351 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_351_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PropertySelector__init_(var$3[0], var$3[1]); +oncipv_Cypher5Parser_selector = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher5Parser$SelectorContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 110, 55); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1229); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 87, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$AnyShortestPathContext; + var$2 = $re; + oncipv_Cypher5Parser$AnyShortestPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1195); + oavr_Parser_match($this, 21); + oavr_Recognizer_setState($this, 1196); + oavr_Parser_match($this, 254); + oavr_Recognizer_setState($this, 1198); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 195) { + var$2 = $re; + if ($_la != 196) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1197); + oncipv_Cypher5Parser_pathToken($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$AllShortestPathContext; + var$2 = $re; + oncipv_Cypher5Parser$AllShortestPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1200); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 1201); + oavr_Parser_match($this, 254); + oavr_Recognizer_setState($this, 1203); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 195) { + var$2 = $re; + if ($_la != 196) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1202); + oncipv_Cypher5Parser_pathToken($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$AnyPathContext; + var$2 = $re; + oncipv_Cypher5Parser$AnyPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1205); + oavr_Parser_match($this, 21); + oavr_Recognizer_setState($this, 1207); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + var$2 = $re; + oavr_Recognizer_setState($this, 1206); + oavr_Parser_match($this, 5); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1210); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 195) { + var$2 = $re; + if ($_la != 196) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1209); + oncipv_Cypher5Parser_pathToken($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$AllPathContext; + var$2 = $re; + oncipv_Cypher5Parser$AllPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1212); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 1214); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 195) { + var$2 = $re; + if ($_la != 196) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1213); + oncipv_Cypher5Parser_pathToken($this); + break e; + case 5: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ShortestGroupContext; + var$2 = $re; + oncipv_Cypher5Parser$ShortestGroupContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 1216); + oavr_Parser_match($this, 254); + oavr_Recognizer_setState($this, 1218); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + var$2 = $re; + oavr_Recognizer_setState($this, 1217); + oavr_Parser_match($this, 5); + } + f: { + var$2 = $re; + oavr_Recognizer_setState($this, 1221); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 195) { + var$2 = $re; + if ($_la != 196) + break f; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1220); + oncipv_Cypher5Parser_pathToken($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1223); + oncipv_Cypher5Parser_groupToken($this); + break e; + case 6: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$AnyShortestPathContext; + var$2 = $re; + oncipv_Cypher5Parser$AnyShortestPathContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 1224); + oavr_Parser_match($this, 254); + oavr_Recognizer_setState($this, 1225); + oavr_Parser_match($this, 5); + oavr_Recognizer_setState($this, 1227); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 195) { + var$2 = $re; + if ($_la != 196) + break e; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1226); + oncipv_Cypher5Parser_pathToken($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -onciu_RewritableJavascript$PROXY$7_352 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_352_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_AscSortItem_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_groupToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GroupTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 112, 56); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1231); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 122 && $_la != 123) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_353 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_353_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpression$ColonDisjunction__init_0(var$3[0], var$3[1], var$3[2].$value3, var$3[3]); +oncipv_Cypher5Parser_pathToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PathTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 114, 57); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1233); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 195 && $_la != 196) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_354 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_354_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_UsingIndexHint__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); +oncipv_Cypher5Parser_pathPatternNonEmpty = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PathPatternNonEmptyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 116, 58); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1235); + oncipv_Cypher5Parser_nodePattern($this); + oavr_Recognizer_setState($this, 1239); + $this.$_errHandler.$sync($this); + $_alt = 1; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + e: { + try { + while (true) { + switch ($_alt) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1236); + oncipv_Cypher5Parser_relationshipPattern($this); + oavr_Recognizer_setState($this, 1237); + oncipv_Cypher5Parser_nodePattern($this); + oavr_Recognizer_setState($this, 1241); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 88, $this.$_ctx); + if ($_alt == 2) + break; + if (!$_alt) + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $rt_throw(oavr_NoViableAltException__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + } else{ + $_localctx = $$je; + break c; + } + } + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_355 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_355_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ParenthesizedPath_copy(var$2, var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_nodePattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 118, 59); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1243); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1245); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 89, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1244); + oncipv_Cypher5Parser_variable($this); + } + oavr_Recognizer_setState($this, 1248); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 47 && $_la != 139)) { + oavr_Recognizer_setState($this, 1247); + oncipv_Cypher5Parser_labelExpression($this); + } + oavr_Recognizer_setState($this, 1251); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 80 && $_la != 147)) { + oavr_Recognizer_setState($this, 1250); + oncipv_Cypher5Parser_properties($this); + } + oavr_Recognizer_setState($this, 1255); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 1253); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 1254); + oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1257); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_356 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_356_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_RelationshipChain_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +oncipv_Cypher5Parser_insertNodePattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$InsertNodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 120, 60); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1259); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1261); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 93, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1260); + oncipv_Cypher5Parser_variable($this); + } + oavr_Recognizer_setState($this, 1264); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 47 && $_la != 139)) { + oavr_Recognizer_setState($this, 1263); + oncipv_Cypher5Parser_insertNodeLabelExpression($this); + } + oavr_Recognizer_setState($this, 1267); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 147) { + oavr_Recognizer_setState($this, 1266); + oncipv_Cypher5Parser_map($this); + } + oavr_Recognizer_setState($this, 1269); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncie_False$$anon$11 = $rt_classWithoutFields(oncie_False), -oncie_False$$anon$11_literalLength = $this => { - return 5; -}; -function oncir_Deprecation() { - let a = this; jl_Object.call(a); - a.$replacement1 = null; - a.$notification0 = null; -} -let oncir_Deprecation_productPrefix = $this => { - return $rt_s(6015); +oncipv_Cypher5Parser_parenthesizedPath = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ParenthesizedPathContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 122, 61); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1271); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1272); + oncipv_Cypher5Parser_pattern($this); + oavr_Recognizer_setState($this, 1275); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 1273); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 1274); + oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1277); + oavr_Parser_match($this, 239); + oavr_Recognizer_setState($this, 1279); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 147 && $_la != 199 && $_la != 271)) { + oavr_Recognizer_setState($this, 1278); + oncipv_Cypher5Parser_quantifier($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncir_Deprecation_productArity = $this => { - return 2; +oncipv_Cypher5Parser_nodeLabels = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NodeLabelsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 124, 62); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1283); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + e: { + oavr_Recognizer_setState($this, 1283); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 98, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 1282); + oncipv_Cypher5Parser_dynamicLabelType($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 1281); + oncipv_Cypher5Parser_labelType($this); + } + oavr_Recognizer_setState($this, 1285); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 47) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncir_Deprecation_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$replacement1; - case 1: - return $this.$notification0; - default: +oncipv_Cypher5Parser_nodeLabelsIs = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NodeLabelsIsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 126, 63); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1287); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 1290); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 1288); + oncipv_Cypher5Parser_symbolicNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + break; + case 80: + oavr_Recognizer_setState($this, 1289); + oncipv_Cypher5Parser_dynamicExpression($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 1296); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 47) { + f: { + oavr_Recognizer_setState($this, 1294); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 101, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 1293); + oncipv_Cypher5Parser_dynamicLabelType($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 1292); + oncipv_Cypher5Parser_labelType($this); + } + oavr_Recognizer_setState($this, 1298); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncir_Deprecation_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncir_Deprecation_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncir_Deprecation_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncir_Deprecation_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncipv_Cypher5Parser_dynamicExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DynamicExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 128, 64); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncir_Deprecation) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$replacement1; - var$3 = $x$1.$replacement1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1299); + oavr_Parser_match($this, 80); + oavr_Recognizer_setState($this, 1300); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1301); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1302); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if (var$3 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_dynamicAnyAllExpression = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DynamicAnyAllExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 130, 65); + a: { + b: { + c: { d: { - var$3 = $this.$notification0; - $x$1 = $x$1.$notification0; - if (var$3 !== null) { - if (!s_Some_equals(var$3, $x$1)) - break b; - else + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1304); + oavr_Parser_match($this, 80); + oavr_Recognizer_setState($this, 1306); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 21)) { + oavr_Recognizer_setState($this, 1305); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 21) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 1308); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1309); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1310); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; break d; + } else{ + $_localctx = $$je; + break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (!($this instanceof oncir_Deprecation)) + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$4 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$4 = 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$4; -}, -oncir_Deprecation__init_ = ($this, $replacement, $notification) => { - $this.$replacement1 = $replacement; - $this.$notification0 = $notification; -}, -oncir_Deprecation__init_0 = (var_0, var_1) => { - let var_2 = new oncir_Deprecation(); - oncir_Deprecation__init_(var_2, var_0, var_1); - return var_2; -}, -ju_HashMap$EntryIterator = $rt_classWithoutFields(ju_HashMap$AbstractMapIterator), -ju_HashMap$EntryIterator_next = $this => { - ju_HashMap$AbstractMapIterator_makeNext($this); - return $this.$currentEntry; -}, -scm_IndexedSeq$ = $rt_classWithoutFields(sc_SeqFactory$Delegate), -scm_IndexedSeq$_MODULE$ = null, -scm_IndexedSeq$_$callClinit = () => { - scm_IndexedSeq$_$callClinit = $rt_eraseClinit(scm_IndexedSeq$); - scm_IndexedSeq$__clinit_(); -}, -scm_IndexedSeq$__clinit_ = () => { - let var$1; - var$1 = new scm_IndexedSeq$; - scm_IndexedSeq$_$callClinit(); - sc_SeqFactory$Delegate__init_(var$1, scm_ArrayBuffer$_MODULE$); - scm_IndexedSeq$_MODULE$ = var$1; -}; -function jusi_FindFirstConsumer() { - jl_Object.call(this); - this.$result6 = null; -} -let jusi_FindFirstConsumer_test = ($this, $t) => { - $this.$result6 = $t; - return 0; -}, -onciu_NonEmptyList$IterableConverter$toNonEmptyList$lambda$_1_0 = $rt_classWithoutFields(), -onciu_NonEmptyList$IterableConverter$toNonEmptyList$lambda$_1_0_apply = var$0 => { - let var$1; - var$1 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$1, $rt_s(6016)); - $rt_throw(var$1); + return $_localctx; }, -onciu_NonEmptyList = $rt_classWithoutFields(0), -onciu_NonEmptyList_map$ = ($$this, $f) => { - let var$3; - if (!($$this instanceof onciu_Fby)) { - if (!($$this instanceof onciu_Last)) - $rt_throw(s_MatchError__init_($$this)); - var$3 = $$this.$head4; - $$this = onciu_Last__init_(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1_apply($f, var$3)); - } else { - $$this = $$this; - var$3 = $$this.$head3; - $$this = onciu_NonEmptyList_reverse$($$this.$nonEmptyTail.$mapAndPrependReversedTo($f, onciu_Last__init_(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1_apply($f, var$3)))); +oncipv_Cypher5Parser_dynamicLabelType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DynamicLabelTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 132, 66); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1312); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 1313); + oncipv_Cypher5Parser_dynamicExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $$this; + return $_localctx; }, -onciu_NonEmptyList_mapAndPrependReversedTo$ = ($$this, $f, $acc) => { - let var$4, var$5; - while ($$this instanceof onciu_Fby) { - $$this = $$this; - var$4 = $$this.$head3; - $$this = $$this.$nonEmptyTail; - $acc = onciu_Fby__init_($f.$apply2(var$4), $acc); +oncipv_Cypher5Parser_labelType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 134, 67); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1315); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 1316); + oncipv_Cypher5Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - if (!($$this instanceof onciu_Last)) - $rt_throw(s_MatchError__init_($$this)); - var$5 = $$this.$head4; - return onciu_Fby__init_($f.$apply2(var$5), $acc); + return $_localctx; }, -onciu_NonEmptyList_reverse$ = $$this => { - let var$2; - if ($$this instanceof onciu_Fby) { - $$this = $$this; - var$2 = $$this.$head3; - $$this = $$this.$nonEmptyTail.$mapAndPrependReversedTo(new onciu_NonEmptyList$reverse$lambda$_66_0, onciu_Last__init_(var$2)); +oncipv_Cypher5Parser_relType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RelTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 136, 68); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1318); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 1319); + oncipv_Cypher5Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $$this; -}, -onciu_NonEmptyList_toIterable$ = $$this => { - let var$2; - var$2 = $$this.$iterator0(); - sc_IterableFactory$_$callClinit(); - $$this = sc_IterableFactory$_MODULE$; - s_package$_$callClinit(); - return var$2.$to0(sc_IterableFactory$_toFactory($$this, s_package$_Iterable(s_package$_MODULE$))); -}, -onciu_NonEmptyList_toIndexedSeq$ = $$this => { - s_package$_$callClinit(); - return sci_IndexedSeq$_from(s_package$_IndexedSeq(s_package$_MODULE$), $$this); -}, -oncil_MultiOperatorLabelExpression = $rt_classWithoutFields(0), -oncil_MultiOperatorLabelExpression_flatten$ = $$this => { - return ($$this.$children()).$flatMap(new oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0); -}; -function oncil_LabelExpression$Conjunctions() { - let a = this; jl_Object.call(a); - a.$children4 = null; - a.$containsIs5 = 0; - a.$position173 = null; -} -let oncil_LabelExpression$Conjunctions_flatten = $this => { - return oncil_MultiOperatorLabelExpression_flatten$($this); -}, -oncil_LabelExpression$Conjunctions_containsGpmSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); -}, -oncil_LabelExpression$Conjunctions_containsGpmSpecificRelTypeExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); -}, -oncil_LabelExpression$Conjunctions_containsMatchSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); -}, -oncil_LabelExpression$Conjunctions_containsDynamicLabelOrTypeExpression = $this => { - return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); -}, -oncil_LabelExpression$Conjunctions_replaceColonSyntax = $this => { - return oncil_LabelExpression_replaceColonSyntax$($this); -}, -oncil_LabelExpression$Conjunctions_foldedOver = $this => { - return $this; -}, -oncil_LabelExpression$Conjunctions_folder = $this => { - return onciu_Foldable_folder$($this); -}, -oncil_LabelExpression$Conjunctions_folder0 = ($this, $cancellation) => { - return onciu_Foldable_folder$0($this, $cancellation); -}, -oncil_LabelExpression$Conjunctions_children = $this => { - return $this.$children4; -}, -oncil_LabelExpression$Conjunctions_containsIs = $this => { - return $this.$containsIs5; -}, -oncil_LabelExpression$Conjunctions_position = $this => { - return $this.$position173; -}, -oncil_LabelExpression$Conjunctions_unnestConjunctions = $this => { - if (!$this.$children4.$exists(new oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_0)) - return $this; - return oncil_LabelExpression$Conjunctions_copy($this, $this.$children4.$flatMap(new oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_1), $this.$containsIs5, $this.$position173); -}, -oncil_LabelExpression$Conjunctions_copy = ($this, $children, $containsIs, $position) => { - return oncil_LabelExpression$Conjunctions__init_0($children, $containsIs, $position); -}, -oncil_LabelExpression$Conjunctions_productPrefix = $this => { - return $rt_s(6017); -}, -oncil_LabelExpression$Conjunctions_productArity = $this => { - return 2; + return $_localctx; }, -oncil_LabelExpression$Conjunctions_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$children4; - case 1: - return jl_Boolean_valueOf($this.$containsIs5); - default: +oncipv_Cypher5Parser_labelOrRelType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelOrRelTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 138, 69); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1321); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 1322); + oncipv_Cypher5Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncil_LabelExpression$Conjunctions_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncil_LabelExpression$Conjunctions_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6017))), sr_Statics_anyHash($this.$children4)), !$this.$containsIs5 ? 1237 : 1231), 2); -}, -oncil_LabelExpression$Conjunctions_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncil_LabelExpression$Conjunctions_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_properties = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PropertiesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 140, 70); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_LabelExpression$Conjunctions) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs5 != $x$1.$containsIs5) - break b; - c: { - var$2 = $this.$children4; - $x$1 = $x$1.$children4; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1326); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 80: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1325); + oncipv_Cypher5Parser_parameter($this, $rt_s(708)); + break e; + case 147: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1324); + oncipv_Cypher5Parser_map($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (!($this instanceof oncil_LabelExpression$Conjunctions)) + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$3; -}, -oncil_LabelExpression$Conjunctions_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncil_LabelExpression$Conjunctions__init_ = ($this, $children, $containsIs, $position) => { - $this.$children4 = $children; - $this.$containsIs5 = $containsIs; - $this.$position173 = $position; -}, -oncil_LabelExpression$Conjunctions__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncil_LabelExpression$Conjunctions(); - oncil_LabelExpression$Conjunctions__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncil_LabelExpression$Disjunctions() { - let a = this; jl_Object.call(a); - a.$children3 = null; - a.$containsIs2 = 0; - a.$position126 = null; -} -let oncil_LabelExpression$Disjunctions_flatten = $this => { - return oncil_MultiOperatorLabelExpression_flatten$($this); -}, -oncil_LabelExpression$Disjunctions_containsGpmSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); -}, -oncil_LabelExpression$Disjunctions_containsGpmSpecificRelTypeExpression = $this => { - return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); -}, -oncil_LabelExpression$Disjunctions_containsMatchSpecificLabelExpression = $this => { - return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); -}, -oncil_LabelExpression$Disjunctions_containsDynamicLabelOrTypeExpression = $this => { - return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); -}, -oncil_LabelExpression$Disjunctions_replaceColonSyntax = $this => { - return oncil_LabelExpression_replaceColonSyntax$($this); -}, -oncil_LabelExpression$Disjunctions_foldedOver = $this => { - return $this; -}, -oncil_LabelExpression$Disjunctions_folder0 = $this => { - return onciu_Foldable_folder$($this); -}, -oncil_LabelExpression$Disjunctions_folder = ($this, $cancellation) => { - return onciu_Foldable_folder$0($this, $cancellation); -}, -oncil_LabelExpression$Disjunctions_children = $this => { - return $this.$children3; -}, -oncil_LabelExpression$Disjunctions_containsIs = $this => { - return $this.$containsIs2; -}, -oncil_LabelExpression$Disjunctions_position = $this => { - return $this.$position126; -}, -oncil_LabelExpression$Disjunctions_unnestDisjunctions = $this => { - if (!$this.$children3.$exists(new oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_0)) - return $this; - return oncil_LabelExpression$Disjunctions_copy($this, $this.$children3.$flatMap(new oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_1), $this.$containsIs2, $this.$position126); -}, -oncil_LabelExpression$Disjunctions_copy = ($this, $children, $containsIs, $position) => { - return oncil_LabelExpression$Disjunctions__init_0($children, $containsIs, $position); -}, -oncil_LabelExpression$Disjunctions_productPrefix = $this => { - return $rt_s(6018); -}, -oncil_LabelExpression$Disjunctions_productArity = $this => { - return 2; + return $_localctx; }, -oncil_LabelExpression$Disjunctions_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$children3; - case 1: - return jl_Boolean_valueOf($this.$containsIs2); - default: +oncipv_Cypher5Parser_relationshipPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RelationshipPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 142, 71); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1329); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 156 && $_la != 311)) { + oavr_Recognizer_setState($this, 1328); + oncipv_Cypher5Parser_leftArrow($this); + } + oavr_Recognizer_setState($this, 1331); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 1350); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 146) { + e: { + oavr_Recognizer_setState($this, 1332); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 1334); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 106, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1333); + oncipv_Cypher5Parser_variable($this); + } + oavr_Recognizer_setState($this, 1337); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 47 && $_la != 139)) { + oavr_Recognizer_setState($this, 1336); + oncipv_Cypher5Parser_labelExpression($this); + } + oavr_Recognizer_setState($this, 1340); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 271) { + oavr_Recognizer_setState($this, 1339); + oncipv_Cypher5Parser_pathLength($this); + } + oavr_Recognizer_setState($this, 1343); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 80 && $_la != 147)) { + oavr_Recognizer_setState($this, 1342); + oncipv_Cypher5Parser_properties($this); + } + oavr_Recognizer_setState($this, 1347); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 1345); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 1346); + oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1349); + oavr_Parser_match($this, 216); + } + oavr_Recognizer_setState($this, 1352); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 1354); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 124 && $_la != 312)) { + oavr_Recognizer_setState($this, 1353); + oncipv_Cypher5Parser_rightArrow($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncil_LabelExpression$Disjunctions_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncil_LabelExpression$Disjunctions_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6018))), sr_Statics_anyHash($this.$children3)), !$this.$containsIs2 ? 1237 : 1231), 2); -}, -oncil_LabelExpression$Disjunctions_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncil_LabelExpression$Disjunctions_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_insertRelationshipPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$InsertRelationshipPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 144, 72); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1357); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 156 && $_la != 311)) { + oavr_Recognizer_setState($this, 1356); + oncipv_Cypher5Parser_leftArrow($this); + } + e: { + oavr_Recognizer_setState($this, 1359); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 1360); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 1362); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 114, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1361); + oncipv_Cypher5Parser_variable($this); + } + oavr_Recognizer_setState($this, 1364); + oncipv_Cypher5Parser_insertRelationshipLabelExpression($this); + oavr_Recognizer_setState($this, 1366); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 147) { + oavr_Recognizer_setState($this, 1365); + oncipv_Cypher5Parser_map($this); + } + oavr_Recognizer_setState($this, 1368); + oavr_Parser_match($this, 216); + oavr_Recognizer_setState($this, 1369); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 1371); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 124 && $_la != 312)) { + oavr_Recognizer_setState($this, 1370); + oncipv_Cypher5Parser_rightArrow($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_leftArrow = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LeftArrowContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 146, 73); a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_LabelExpression$Disjunctions) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$containsIs2 != $x$1.$containsIs2) - break b; - var$2 = $this.$children3; - $x$1 = $x$1.$children3; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1373); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 156 && $_la != 311) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; - } - return var$3; -}, -oncil_LabelExpression$Disjunctions_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncil_LabelExpression$Disjunctions__init_ = ($this, $children, $containsIs, $position) => { - $this.$children3 = $children; - $this.$containsIs2 = $containsIs; - $this.$position126 = $position; -}, -oncil_LabelExpression$Disjunctions__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncil_LabelExpression$Disjunctions(); - oncil_LabelExpression$Disjunctions__init_(var_3, var_0, var_1, var_2); - return var_3; -}; -function onciuh_TreeZipper$TreeContext() { - let a = this; jl_Object.call(a); - a.$left2 = null; - a.$parent2 = null; - a.$right1 = null; - a.$$outer25 = null; -} -let onciuh_TreeZipper$TreeContext_productPrefix = $this => { - return $rt_s(6019); -}, -onciuh_TreeZipper$TreeContext_productArity = $this => { - return 3; -}, -onciuh_TreeZipper$TreeContext_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$left2; - case 1: - return $this.$parent2; - case 2: - return $this.$right1; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -onciuh_TreeZipper$TreeContext_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -onciuh_TreeZipper$TreeContext_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -onciuh_TreeZipper$TreeContext_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -onciuh_TreeZipper$TreeContext_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncipv_Cypher5Parser_arrowLine = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ArrowLineContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 148, 74); a: { b: { - if ($this !== $x$1) { - if (!($x$1 instanceof onciuh_TreeZipper$TreeContext && $x$1.$$outer25 === $this.$$outer25 ? 1 : 0)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$left2; - var$3 = $x$1.$left2; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } + c: { d: { - var$2 = $this.$parent2; - var$3 = $x$1.$parent2; - if (var$2 !== null) { - if (!onciuh_TreeZipper$Location_equals(var$2, var$3)) - break b; - else + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1375); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 161 && $_la != 310) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; break d; + } else{ + $_localctx = $$je; + break c; + } } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$right1; - $x$1 = $x$1.$right1; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else - break e; - } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (!($this instanceof onciuh_TreeZipper$TreeContext)) + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$4 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$4 = 0; - } - return var$4; -}, -onciuh_TreeZipper$TreeContext__init_ = ($this, $$outer, $left, $parent, $right) => { - $this.$left2 = $left; - $this.$parent2 = $parent; - $this.$right1 = $right; - if ($$outer === null) - $rt_throw(null); - $this.$$outer25 = $$outer; -}, -onciuh_TreeZipper$TreeContext__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new onciuh_TreeZipper$TreeContext(); - onciuh_TreeZipper$TreeContext__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0_apply = (var$0, var$1) => { - return s_Some__init_(var$1); -}, -onciu_ZippableUtil$ = $rt_classWithoutFields(), -onciu_ZippableUtil$_MODULE$ = null, -onciu_ZippableUtil$_$callClinit = () => { - onciu_ZippableUtil$_$callClinit = $rt_eraseClinit(onciu_ZippableUtil$); - onciu_ZippableUtil$__clinit_(); -}, -onciu_ZippableUtil$__clinit_ = () => { - let var$1; - var$1 = new onciu_ZippableUtil$; - onciu_ZippableUtil$_$callClinit(); - onciu_ZippableUtil$_MODULE$ = var$1; -}, -onciu_ZippableUtil$_Zippable = ($this, $left) => { - let var$2; - var$2 = new onciu_ZippableUtil$Zippable; - var$2.$left3 = $left; - return var$2; -}, -oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = new oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0; - var$3.$_0686 = var$2; - var$1 = s_Option_map(var$1, var$3); - var$3 = new oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1; - var$3.$_0126 = var$2; - return s_Option_getOrElse(var$1, var$3); -}, -oncie_SignedDecimalIntegerLiteral$$anon$1 = $rt_classWithoutFields(oncie_SignedDecimalIntegerLiteral), -oncie_SignedDecimalIntegerLiteral$$anon$1_literalLength = $this => { - return $this.$stringVal2.$nativeString.length; -}, -oncie_StringLiteral$$anon$6 = $rt_classWithoutFields(oncie_StringLiteral), -oncie_StringLiteral$$anon$6_literalLength = $this => { - return $this.$position18.$inputLength; -}, -oncie_StringLiteral$$anon$6_position = $this => { - return $this.$position18; -}; -function onciu_InputPosition$Range() { - let a = this; jl_Object.call(a); - a.$offset2 = 0; - a.$line3 = 0; - a.$column2 = 0; - a.$inputLength = 0; -} -let onciu_InputPosition$Range_withOffset = ($this, $pos) => { - return onciu_InputPosition_withOffset$($this, $pos); -}, -onciu_InputPosition$Range_toString = $this => { - return onciu_InputPosition_toString$($this); -}, -onciu_InputPosition$Range_offset = $this => { - return $this.$offset2; -}, -onciu_InputPosition$Range_line = $this => { - return $this.$line3; -}, -onciu_InputPosition$Range_column = $this => { - return $this.$column2; -}, -onciu_InputPosition$Range_productArity = $this => { - return 4; -}, -onciu_InputPosition$Range_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Integer_valueOf($this.$offset2); - case 1: - return jl_Integer_valueOf($this.$line3); - case 2: - return jl_Integer_valueOf($this.$column2); - case 3: - return jl_Integer_valueOf($this.$inputLength); - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -onciu_InputPosition$Range_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -onciu_InputPosition$Range_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4676))), $this.$offset2), $this.$line3), $this.$column2), $this.$inputLength), 4); + return $_localctx; }, -onciu_InputPosition$Range_equals = ($this, $x$1) => { - let var$2; +oncipv_Cypher5Parser_rightArrow = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RightArrowContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 150, 75); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_InputPosition$Range) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$offset2 != $x$1.$offset2) - break b; - if ($this.$line3 != $x$1.$line3) - break b; - if ($this.$column2 != $x$1.$column2) - break b; - if ($this.$inputLength != $x$1.$inputLength) - break b; - if (!($this instanceof onciu_InputPosition$Range)) + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1377); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 124 && $_la != 312) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$2 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$2 = 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$2; -}, -oncie_Infinity$$anon$8 = $rt_classWithoutFields(oncie_Infinity), -oncie_Infinity$$anon$8_literalLength = $this => { - return 8; -}, -oncie_DecimalDoubleLiteral$$anon$5 = $rt_classWithoutFields(oncie_DecimalDoubleLiteral), -oncie_DecimalDoubleLiteral$$anon$5_literalLength = $this => { - return $this.$stringVal3.$nativeString.length; -}, -oncie_SignedHexIntegerLiteral$$anon$4 = $rt_classWithoutFields(oncie_SignedHexIntegerLiteral), -oncie_SignedHexIntegerLiteral$$anon$4_literalLength = $this => { - return $this.$stringVal4.$nativeString.length; -}, -oncie_True$$anon$10 = $rt_classWithoutFields(oncie_True), -oncie_True$$anon$10_literalLength = $this => { - return 4; -}, -oncie_NaN$$anon$9 = $rt_classWithoutFields(oncie_NaN), -oncie_NaN$$anon$9_literalLength = $this => { - return 3; -}, -oncie_SignedOctalIntegerLiteral$$anon$3 = $rt_classWithoutFields(oncie_SignedOctalIntegerLiteral), -oncie_SignedOctalIntegerLiteral$$anon$3_literalLength = $this => { - return $this.$stringVal1.$nativeString.length; -}, -oncief_UnresolvedFunction$ = $rt_classWithoutFields(oncief_Function), -oncief_UnresolvedFunction$_MODULE$ = null, -oncief_UnresolvedFunction$_$callClinit = () => { - oncief_UnresolvedFunction$_$callClinit = $rt_eraseClinit(oncief_UnresolvedFunction$); - oncief_UnresolvedFunction$__clinit_(); -}, -oncief_UnresolvedFunction$__clinit_ = () => { - let var$1; - var$1 = new oncief_UnresolvedFunction$; - oncief_UnresolvedFunction$_$callClinit(); - oncief_Function__init_(var$1); - oncief_UnresolvedFunction$_MODULE$ = var$1; -}, -oncief_UnresolvedFunction$_name = $this => { - return $rt_s(3514); -}, -oncief_UnresolvedFunction$_productArity = $this => { - return 0; -}, -oncief_UnresolvedFunction$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncief_UnresolvedFunction$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncief_UnresolvedFunction$_hashCode = $this => { - return 933205161; -}, -oncief_UnresolvedFunction$_toString = $this => { - return $rt_s(6020); -}, -oncia_UnresolvedCall$returnVariables$lambda$_17_0 = $rt_classWithoutFields(), -oncia_UnresolvedCall$returnVariables$lambda$_17_0_apply = (var$0, var$1) => { - return sc_IterableOnceOps_toList$(var$1.$items2.$map(new oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0)); -}, -oncia_UnresolvedCall$returnVariables$lambda$_17_1 = $rt_classWithoutFields(), -oncia_UnresolvedCall$returnVariables$lambda$_17_1_apply = var$0 => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; + return $_localctx; }, -oncipvaf_Cypher5AstParser$statements$lambda$_2_0 = $rt_classWithoutFields(), -oncipvaf_Cypher5AstParser$statements$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, $$je; - var$1 = var$1; - var$2 = new oncipv_Cypher5Parser$StatementsContext; - oncip_AstRuleCtx__init_(var$2, var$1.$_ctx, var$1.$_stateNumber); - oavr_Parser_enterRule(var$1, var$2, 0, 0); +oncipv_Cypher5Parser_pathLength = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PathLengthContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 152, 76); a: { b: { c: { d: { try { - oavr_Parser_enterOuterAlt(var$1, var$2, 1); - oavr_Recognizer_setState(var$1, 668); - oncipv_Cypher5Parser_statement(var$1); - oavr_Recognizer_setState(var$1, 673); - var$1.$_errHandler.$sync(var$1); - var$3 = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter(var$1), var$1.$_input, 0, var$1.$_ctx); - while (var$3 != 2 && var$3) { - if (var$3 == 1) { - oavr_Recognizer_setState(var$1, 669); - oavr_Parser_match(var$1, 247); - oavr_Recognizer_setState(var$1, 670); - oncipv_Cypher5Parser_statement(var$1); + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1379); + oavr_Parser_match($this, 271); + oavr_Recognizer_setState($this, 1388); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 119, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 1381); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { + oavr_Recognizer_setState($this, 1380); + $_localctx.$from23 = oavr_Parser_match($this, 5); + } + oavr_Recognizer_setState($this, 1383); + oavr_Parser_match($this, 84); + oavr_Recognizer_setState($this, 1385); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 5) + break e; + oavr_Recognizer_setState($this, 1384); + $_localctx.$to5 = oavr_Parser_match($this, 5); + break e; + case 2: + break; + default: + break e; } - oavr_Recognizer_setState(var$1, 675); - var$1.$_errHandler.$sync(var$1); - var$3 = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter(var$1), var$1.$_input, 0, var$1.$_ctx); - } - oavr_Recognizer_setState(var$1, 677); - var$1.$_errHandler.$sync(var$1); - if (oavr_BufferedTokenStream_LA(var$1.$_input, 1) == 247) { - oavr_Recognizer_setState(var$1, 676); - oavr_Parser_match(var$1, 247); + oavr_Recognizer_setState($this, 1387); + $_localctx.$single2 = oavr_Parser_match($this, 5); } - oavr_Recognizer_setState(var$1, 679); - oavr_Parser_match(var$1, (-1)); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { - var$4 = $$je; + $re = $$je; break d; } else{ - var$2 = $$je; + $_localctx = $$je; break c; } } - oncipa_AstBuildingAntlrParser_exitRule$(var$1); + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } try { - var$2.$exception = var$4; - var$1.$_errHandler.$reportError(var$1, var$4); - var$1.$_errHandler.$recover(var$1, var$4); + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; } catch ($$e) { $$je = $rt_wrapException($$e); - var$2 = $$je; + $_localctx = $$je; } } - oncipa_AstBuildingAntlrParser_exitRule$(var$1); - $rt_throw(var$2); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$(var$1); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$2; + return $_localctx; }, -oncipvaf_Cypher25AstParser$statements$lambda$_2_0 = $rt_classWithoutFields(), -oncipvaf_Cypher25AstParser$statements$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, $$je; - var$1 = var$1; - var$2 = new oncipv_Cypher25Parser$StatementsContext; - oncip_AstRuleCtx__init_(var$2, var$1.$_ctx, var$1.$_stateNumber); - oavr_Parser_enterRule(var$1, var$2, 0, 0); +oncipv_Cypher5Parser_labelExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 154, 77); a: { b: { c: { d: { try { - oavr_Parser_enterOuterAlt(var$1, var$2, 1); - oavr_Recognizer_setState(var$1, 656); - oncipv_Cypher25Parser_statement(var$1); - oavr_Recognizer_setState(var$1, 661); - var$1.$_errHandler.$sync(var$1); - var$3 = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter(var$1), var$1.$_input, 0, var$1.$_ctx); - while (var$3 != 2 && var$3) { - if (var$3 == 1) { - oavr_Recognizer_setState(var$1, 657); - oavr_Parser_match(var$1, 241); - oavr_Recognizer_setState(var$1, 658); - oncipv_Cypher25Parser_statement(var$1); + e: { + oavr_Recognizer_setState($this, 1394); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 47: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1390); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 1391); + oncipv_Cypher5Parser_labelExpression4($this); + break e; + case 139: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1392); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 1393); + oncipv_Cypher5Parser_labelExpression4Is($this); + break e; + default: } - oavr_Recognizer_setState(var$1, 663); - var$1.$_errHandler.$sync(var$1); - var$3 = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter(var$1), var$1.$_input, 0, var$1.$_ctx); - } - oavr_Recognizer_setState(var$1, 665); - var$1.$_errHandler.$sync(var$1); - if (oavr_BufferedTokenStream_LA(var$1.$_input, 1) == 241) { - oavr_Recognizer_setState(var$1, 664); - oavr_Parser_match(var$1, 241); + $rt_throw(oavr_NoViableAltException__init_($this)); } - oavr_Recognizer_setState(var$1, 667); - oavr_Parser_match(var$1, (-1)); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { - var$4 = $$je; + $re = $$je; break d; } else{ - var$2 = $$je; + $_localctx = $$je; break c; } } - oncipa_AstBuildingAntlrParser_exitRule$(var$1); + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } try { - var$2.$exception = var$4; - var$1.$_errHandler.$reportError(var$1, var$4); - var$1.$_errHandler.$recover(var$1, var$4); + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; } catch ($$e) { $$je = $rt_wrapException($$e); - var$2 = $$je; + $_localctx = $$je; } } - oncipa_AstBuildingAntlrParser_exitRule$(var$1); - $rt_throw(var$2); - } - oncipa_AstBuildingAntlrParser_exitRule$(var$1); - } - return var$2; -}; -function jusi_SimpleStreamImpl$ArrayFillingConsumer() { - let a = this; jl_Object.call(a); - a.$array20 = null; - a.$index11 = 0; -} -let jusi_SimpleStreamImpl$ArrayFillingConsumer_test = ($this, $t) => { - let var$2, var$3; - var$2 = $this.$array20.data; - var$3 = $this.$index11; - $this.$index11 = var$3 + 1 | 0; - var$2[var$3] = $t; - return 1; -}; -function jusi_SimpleStreamImpl$toArray$lambda$_21_0() { - jl_Object.call(this); - this.$_0930 = null; -} -let jusi_SimpleStreamImpl$toArray$lambda$_21_0_test = (var$0, var$1) => { - return ju_ArrayList_add(var$0.$_0930, var$1); -}, -oncia_NamespacedName$ = $rt_classWithoutFields(), -oncia_NamespacedName$_MODULE$ = null, -oncia_NamespacedName$__clinit_ = () => { - oncia_NamespacedName$_MODULE$ = new oncia_NamespacedName$; -}, -oncia_NamespacedName$_apply = ($this, $names, $pos) => { - let var$3, var$4, $x, $xs; - var$3 = 0; - var$4 = null; - if ($names instanceof sci_$colon$colon) { - var$3 = 1; - var$4 = $names; - $x = var$4.$head1; - $xs = var$4.$next6; - if (sci_List_equals(sci_Nil$_MODULE$, $xs)) - return oncia_NamespacedName__init_(sci_$colon$colon__init_($x, sci_Nil$_MODULE$), s_None$_MODULE$, $pos); - } - if (!var$3) { - $names = new jl_InternalError; - jl_Throwable__init_0($names, $rt_s(6021)); - $rt_throw($names); - } - $x = var$4.$head1; - return oncia_NamespacedName__init_(var$4.$next6, s_Some__init_($x), $pos); -}; -function ju_LinkedHashMapKeySet() { - let a = this; ju_AbstractSet.call(a); - a.$base1 = null; - a.$reversed0 = 0; -} -let ju_LinkedHashMapKeySet_size = $this => { - return $this.$base1.$elementCount; -}, -ju_LinkedHashMapKeySet_iterator = $this => { - let var$1; - var$1 = new ju_LinkedHashMapIterator$KeyIterator; - ju_LinkedHashMapIterator__init_(var$1, $this.$base1, $this.$reversed0); - return var$1; -}; -function oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0() { - let a = this; jl_Object.call(a); - a.$_0762 = null; - a.$_1258 = null; -} -let oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0762; - var$3 = var$0.$_1258; - if (var$1 instanceof oncia_AscSortItem) { - var$4 = var$1.$expression21; - var$5 = oncia_AscSortItem__init_(oncirr_normalizeWithAndReturnClauses_aliasExpression(var$2, var$3, var$4), var$1.$position()); - } else { - if (!(var$1 instanceof oncia_DescSortItem)) - $rt_throw(s_MatchError__init_(var$1)); - var$4 = var$1.$expression24; - var$5 = oncia_DescSortItem__init_(oncirr_normalizeWithAndReturnClauses_aliasExpression(var$2, var$3, var$4), var$1.$position()); - } - return var$5; -}; -function juf_Function$andThen$lambda$_2_0() { - let a = this; jl_Object.call(a); - a.$_0656 = null; - a.$_1226 = null; -} -let juf_Function$andThen$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; - var$2 = var$0.$_0656; - var$3 = var$0.$_1226; - var$1 = var$2.$apply2(var$1); - var$2 = var$3.$_0836; - var$3 = var$3.$_1287; - var$4 = var$1.$size() - 1 | 0; - var$5 = $rt_createArray(jl_CharSequence, 2).data; - var$5[0] = jl_String_join(var$3, ju_AbstractList_subList(var$1, 0, var$4)); - var$5[1] = var$1.$get0(var$4); - var$6 = var$5.length; - if (!var$6) - var$1 = jl_String_EMPTY; - else { - var$4 = 0; - var$7 = 0; - while (var$7 < var$6) { - var$4 = var$4 + var$5[var$7].$nativeString.length | 0; - var$7 = var$7 + 1 | 0; - } - var$8 = $rt_createCharArray(var$4 + $rt_imul(var$6 - 1 | 0, var$2.$nativeString.length) | 0); - var$9 = var$8.data; - var$10 = 0; - var$1 = var$5[0]; - var$7 = 0; - while (var$7 < var$1.$nativeString.length) { - var$11 = var$10 + 1 | 0; - var$9[var$10] = jl_String_charAt(var$1, var$7); - var$7 = var$7 + 1 | 0; - var$10 = var$11; - } - var$12 = 1; - while (var$12 < var$6) { - var$11 = 0; - while (var$11 < var$2.$nativeString.length) { - var$4 = var$10 + 1 | 0; - var$9[var$10] = jl_String_charAt(var$2, var$11); - var$11 = var$11 + 1 | 0; - var$10 = var$4; - } - var$1 = var$5[var$12]; - var$11 = 0; - while (var$11 < var$1.$nativeString.length) { - var$4 = var$10 + 1 | 0; - var$9[var$10] = jl_String_charAt(var$1, var$11); - var$11 = var$11 + 1 | 0; - var$10 = var$4; - } - var$12 = var$12 + 1 | 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$1 = jl_String_fromArray(var$8); - } - return var$1; -}; -function jusi_FilteringStreamImpl$wrap$lambda$_1_0() { - let a = this; jl_Object.call(a); - a.$_0127 = null; - a.$_147 = null; -} -let jusi_FilteringStreamImpl$wrap$lambda$_1_0_test = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0127; - var$3 = var$0.$_147; - return var$2.$filter6.$test0(var$1) ? var$3.$test0(var$1) : 1; -}; -function jnc_CharsetEncoder() { - let a = this; jl_Object.call(a); - a.$charset0 = null; - a.$replacement5 = null; - a.$averageBytesPerChar = 0.0; - a.$maxBytesPerChar = 0.0; - a.$malformedAction0 = null; - a.$unmappableAction0 = null; - a.$status = 0; -} -let jnc_CharsetEncoder_onMalformedInput = ($this, $newAction) => { - let var$2; - if ($newAction !== null) { - $this.$malformedAction0 = $newAction; - return $this; - } - var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$2, $rt_s(6022)); - $rt_throw(var$2); -}, -jnc_CharsetEncoder_onUnmappableCharacter = ($this, $newAction) => { - let var$2; - if ($newAction !== null) { - $this.$unmappableAction0 = $newAction; - return $this; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$2, $rt_s(6022)); - $rt_throw(var$2); + return $_localctx; }, -jnc_CharsetEncoder_encode = ($this, $in, $out, $endOfInput) => { - let var$4, $result, $e, $remaining, $action, var$9, $$je; +oncipv_Cypher5Parser_labelExpression4 = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpression4Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 156, 78); a: { - var$4 = $this.$status; - if (var$4 != 3) { - if ($endOfInput) - break a; - if (var$4 != 2) - break a; - } - $in = new jl_IllegalStateException; - jl_Throwable__init_($in); - $rt_throw($in); - } - $this.$status = !$endOfInput ? 1 : 2; - while (true) { - try { - $result = jnci_BufferedEncoder_encodeLoop($this, $in, $out); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_RuntimeException) { - $e = $$je; - $in = new jnc_CoderMalfunctionError; - jl_Throwable__init_2($in, $e); - $rt_throw($in); - } else { - throw $$e; - } - } - if (jnc_CoderResult_isUnderflow($result)) { - if (!$endOfInput) - return $result; - $remaining = jn_Buffer_remaining($in); - if ($remaining <= 0) - return $result; - $result = jnc_CoderResult_malformedForLength($remaining); - } else if (jnc_CoderResult_isOverflow($result)) - break; - $action = !jnc_CoderResult_isUnmappable($result) ? $this.$malformedAction0 : $this.$unmappableAction0; b: { - jnc_CodingErrorAction_$callClinit(); - if ($action !== jnc_CodingErrorAction_REPLACE) { - if ($action === jnc_CodingErrorAction_IGNORE) + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1396); + oncipv_Cypher5Parser_labelExpression3($this); + oavr_Recognizer_setState($this, 1404); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 122, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1397); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 1399); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 47) { + oavr_Recognizer_setState($this, 1398); + oavr_Parser_match($this, 47); + } + oavr_Recognizer_setState($this, 1401); + oncipv_Cypher5Parser_labelExpression3($this); + } + oavr_Recognizer_setState($this, 1406); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 122, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; - else - return $result; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - $remaining = jn_Buffer_remaining($out); - var$9 = $this.$replacement5; - var$4 = var$9.data.length; - if ($remaining < var$4) - return jnc_CoderResult_OVERFLOW; - jn_ByteBuffer_put($out, var$9, 0, var$4); - } - jn_Buffer_position($in, $in.$position3 + jnc_CoderResult_length($result) | 0); - } - return $result; -}, -jnc_CharsetEncoder_encode0 = ($this, $in) => { - let $output, $result, var$4; - if (!jn_Buffer_remaining($in)) - return jn_ByteBuffer_allocate(0); - $this.$status = 0; - $output = jn_ByteBuffer_allocate(jn_Buffer_remaining($in) * $this.$averageBytesPerChar | 0); - while (true) { - $result = jnc_CharsetEncoder_encode($this, $in, $output, 0); - if ($result === jnc_CoderResult_UNDERFLOW) - break; - if ($result === jnc_CoderResult_OVERFLOW) { - $output = jnc_CharsetEncoder_allocateMore($this, $output); - continue; - } - if (!jnc_CoderResult_isError($result)) - continue; - jnc_CoderResult_throwException($result); - } - $in = jnc_CharsetEncoder_encode($this, $in, $output, 1); - if (jnc_CoderResult_isError($in)) - jnc_CoderResult_throwException($in); - while (true) { - var$4 = $this.$status; - if (var$4 != 2 && var$4 != 4) { - $in = new jl_IllegalStateException; - jl_Throwable__init_($in); - $rt_throw($in); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - $in = jnc_CoderResult_UNDERFLOW; - if ($in === $in) - $this.$status = 3; - if (jnc_CoderResult_isUnderflow($in)) - break; - if (!jnc_CoderResult_isOverflow($in)) - continue; - $output = jnc_CharsetEncoder_allocateMore($this, $output); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - jn_Buffer_flip($output); - return $output; -}, -jnc_CharsetEncoder_allocateMore = ($this, $buffer) => { - let $array, $result; - $array = $buffer.$array6; - $result = jn_ByteBuffer_wrap0(ju_Arrays_copyOf2($array, $array.data.length * 2 | 0)); - jn_Buffer_position($result, $buffer.$position3); - return $result; -}, -jnc_CharacterCodingException = $rt_classWithoutFields(ji_IOException), -oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_0 = $rt_classWithoutFields(), -oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncil_LabelExpression$Disjunctions); + return $_localctx; }, -oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_1 = $rt_classWithoutFields(), -oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_1_apply = (var$0, var$1) => { - var$1 = var$1; - return !(var$1 instanceof oncil_LabelExpression$Disjunctions) ? sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$) : var$1.$children3; -}; -function onciu_ZippableUtil$Zippable() { - jl_Object.call(this); - this.$left3 = null; -} -let onciu_ZippableUtil$Zippable_zipLeft = ($this, $right, $fill, $bf) => { - let var$4, $zipped; - s_package$_$callClinit(); - $bf = s_package$_Seq(s_package$_MODULE$); - var$4 = $this.$left3.$length() - $right.$length() | 0; - $zipped = new onciu_ZippableUtil$Zippable$zipLeft$lambda$_0_0; - $zipped.$_0552 = $fill; - $fill = new sc_View$Fill; - $fill.$n2 = var$4; - $fill.$elem7 = $zipped; - $fill = $right.$concat(sci_Seq$_from($bf, $fill)); - $zipped = $this.$left3.$zip1($fill); - return ($this.$left3.$iterableFactory()).$from0($zipped); -}; -function oncirr_normalizeWithAndReturnClauses$$anonfun$3() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer77 = null; - a.$existingAliases$3 = null; -} -let oncirr_normalizeWithAndReturnClauses$$anonfun$3_applyOrElse = ($this, $x1, $default) => { - let $subAlias, var$4, var$5; - if (!($x1 instanceof oncie_Expression)) - return $default.$apply2($x1); - $x1 = $x1; - $default = $this.$existingAliases$3.$get2($x1); - if ($default instanceof s_Some) { - a: { - $subAlias = $default.$value5; - $default = $this.$existingAliases$3; - if (!($default.$valuesIterator()).$contains($x1)) { - $default = ($default.$filter1(new oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0)).$valuesIterator(); - var$4 = new oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1; - var$4.$_0268 = $x1; - if (!$default.$exists(var$4)) { - var$5 = 0; +oncipv_Cypher5Parser_labelExpression4Is = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpression4IsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 158, 79); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1407); + oncipv_Cypher5Parser_labelExpression3Is($this); + oavr_Recognizer_setState($this, 1415); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 124, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1408); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 1410); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 47) { + oavr_Recognizer_setState($this, 1409); + oavr_Parser_match($this, 47); + } + oavr_Recognizer_setState($this, 1412); + oncipv_Cypher5Parser_labelExpression3Is($this); + } + oavr_Recognizer_setState($this, 1417); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 124, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$5 = 1; - } - if (!var$5) - return oncie_Variable_withPosition(oncie_Variable_copyId($subAlias), $x1.$position()); - } - return $x1; -}, -oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0 = $rt_classWithoutFields(), -oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0_shouldStop = (var$0, var$1) => { - return $rt_isInstance(var$1, oncie_ScopeExpression); -}, -oncia_SingleQuery$ = $rt_classWithoutFields(), -oncia_SingleQuery$_MODULE$ = null, -oncia_SingleQuery$_$callClinit = () => { - oncia_SingleQuery$_$callClinit = $rt_eraseClinit(oncia_SingleQuery$); - oncia_SingleQuery$__clinit_(); -}, -oncia_SingleQuery$__clinit_ = () => { - let var$1; - var$1 = new oncia_SingleQuery$; - oncia_SingleQuery$_$callClinit(); - oncia_SingleQuery$_MODULE$ = var$1; -}, -oncia_SingleQuery$_org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses = ($this, $clauses) => { - let var$2, var$3; - var$2 = s_Option_map(oncia_SingleQuery$_extractImportingWith($this, $clauses), new oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0); - var$3 = new oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0; - var$3.$_0564 = $clauses; - var$3 = s_Option_orElse(var$2, var$3); - var$2 = new oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1; - var$2.$_01088 = $clauses; - return s_Option_getOrElse(var$3, var$2); -}, -oncia_SingleQuery$_extractImportingWith = ($this, $clauses) => { - let var$2, var$3; - var$2 = $clauses.$headOption(); - var$3 = new oncia_SingleQuery$$anonfun$extractImportingWith$1; - var$3.$clauses$5 = $clauses; - return s_Option_collect(var$2, var$3); -}, -oncia_SingleQuery$_extractGraphSelection = ($this, $clauses) => { - let var$2, var$3; - var$2 = $clauses.$headOption(); - var$3 = new oncia_SingleQuery$$anonfun$extractGraphSelection$1; - var$3.$clauses$6 = $clauses; - return s_Option_collect(var$2, var$3); -}; -function sci_HashMap$HashKeySet$filterNot$lambda$_5_0() { - jl_Object.call(this); - this.$_0122 = null; -} -let sci_HashMap$HashKeySet$filterNot$lambda$_5_0__init_ = (var$0, var$1) => { - var$0.$_0122 = var$1; -}, -sci_HashMap$HashKeySet$filterNot$lambda$_5_0__init_0 = var_0 => { - let var_1 = new sci_HashMap$HashKeySet$filterNot$lambda$_5_0(); - sci_HashMap$HashKeySet$filterNot$lambda$_5_0__init_(var_1, var_0); - return var_1; -}, -sci_HashMap$HashKeySet$filterNot$lambda$_5_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0122.$apply2(var$1.$_1()))); -}; -function oncia_ProcedureResult() { - let a = this; jl_Object.call(a); - a.$items2 = null; - a.$where5 = null; - a.$position153 = null; -} -let oncia_ProcedureResult_position = $this => { - return $this.$position153; -}, -oncia_ProcedureResult_copy = ($this, $items, $where, $position) => { - return oncia_ProcedureResult__init_($items, $where, $position); -}, -oncia_ProcedureResult_productPrefix = $this => { - return $rt_s(6023); -}, -oncia_ProcedureResult_productArity = $this => { - return 2; -}, -oncia_ProcedureResult_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$items2; - case 1: - return $this.$where5; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_ProcedureResult_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ProcedureResult_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ProcedureResult_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncia_ProcedureResult_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncipv_Cypher5Parser_labelExpression3 = $this => { + let $_localctx, $_alt, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpression3Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 160, 80); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ProcedureResult) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$items2; - var$3 = $x$1.$items2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } + c: { d: { - var$3 = $this.$where5; - $x$1 = $x$1.$where5; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1418); + oncipv_Cypher5Parser_labelExpression2($this); + oavr_Recognizer_setState($this, 1423); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 125, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1419); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 47 && $_la != 144) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1420); + oncipv_Cypher5Parser_labelExpression2($this); + } + oavr_Recognizer_setState($this, 1425); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 125, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; break d; + } else{ + $_localctx = $$je; + break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (!($this instanceof oncia_ProcedureResult)) + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$4 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$4 = 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$4; -}, -oncia_ProcedureResult_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ProcedureResult__init_0 = ($this, $items, $where, $position) => { - $this.$items2 = $items; - $this.$where5 = $where; - $this.$position153 = $position; -}, -oncia_ProcedureResult__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_ProcedureResult(); - oncia_ProcedureResult__init_0(var_3, var_0, var_1, var_2); - return var_3; -}, -oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0_apply = (var$0, var$1) => { - return ((var$1.$alias()).$get1()).$name4; -}, -oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1_apply = (var$0, var$1) => { - return ((var$1.$alias()).$get1()).$name4; + return $_localctx; }; -function sc_Iterator$GroupedIterator() { - let a = this; sc_AbstractIterator.call(a); - a.$self0 = null; - a.$size6 = 0; - a.$step3 = 0; - a.$buffer0 = null; - a.$prev = null; - a.$first2 = 0; - a.$filled = 0; - a.$partial = 0; - a.$padding = null; - a.$$outer79 = null; -} -let sc_Iterator$GroupedIterator_newBuilder = $this => { - let $make_evidence$1, var$2, $b, $k; +let oncipv_Cypher5Parser_labelExpression3Is = $this => { + let $_localctx, $_alt, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpression3IsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 162, 81); a: { - sr_ClassTag$_$callClinit(); - $make_evidence$1 = sr_ClassTag$_Any(sr_ClassTag$_MODULE$); - var$2 = $make_evidence$1.$runtimeClass1; - if (jl_Object_equals($rt_cls($rt_bytecls), var$2)) { - $b = new scm_ArrayBuilder$ofByte; - scm_ArrayBuilder__init_($b); - break a; - } - if (jl_Object_equals($rt_cls($rt_shortcls), var$2)) { - $b = new scm_ArrayBuilder$ofShort; - scm_ArrayBuilder__init_($b); - break a; - } - if (jl_Object_equals($rt_cls($rt_charcls), var$2)) { - $b = new scm_ArrayBuilder$ofChar; - scm_ArrayBuilder__init_($b); - break a; - } - if (jl_Object_equals($rt_cls($rt_intcls), var$2)) { - $b = new scm_ArrayBuilder$ofInt; - scm_ArrayBuilder__init_($b); - break a; - } - if (jl_Object_equals($rt_cls($rt_longcls), var$2)) { - $b = new scm_ArrayBuilder$ofLong; - scm_ArrayBuilder__init_($b); - break a; - } - if (jl_Object_equals($rt_cls($rt_floatcls), var$2)) { - $b = new scm_ArrayBuilder$ofFloat; - scm_ArrayBuilder__init_($b); - break a; - } - if (jl_Object_equals($rt_cls($rt_doublecls), var$2)) { - $b = new scm_ArrayBuilder$ofDouble; - scm_ArrayBuilder__init_($b); - break a; - } - if (jl_Object_equals($rt_cls($rt_booleancls), var$2)) { - $b = new scm_ArrayBuilder$ofBoolean; - scm_ArrayBuilder__init_($b); - break a; - } - if (!jl_Object_equals($rt_cls($rt_voidcls), var$2)) { - $b = scm_ArrayBuilder$ofRef__init_($make_evidence$1); - break a; - } - $b = new scm_ArrayBuilder$ofUnit; - scm_ArrayBuilder__init_($b); - } - $k = $this.$self0.$knownSize(); - if ($k > 0) - scm_ArrayBuilder_sizeHint($b, jl_Math_min($k, $this.$size6)); - return $b; -}, -sc_Iterator$GroupedIterator_fill = $this => { - let var$1, var$2, var$3, var$4, var$5; - if (!$this.$filled) { - a: { - if ($this.$self0.$hasNext()) { - var$1 = sc_Iterator$GroupedIterator_newBuilder($this); - var$2 = 0; - var$3 = $this.$prev; - if (var$3 !== null) - scm_ArrayBuilder_addAll(var$1, var$3); - if (!$this.$first2) { - var$4 = $this.$step3; - var$5 = $this.$size6; - if (var$4 > var$5) { - var$2 = var$4 - var$5 | 0; - while (true) { - var$4 = $rt_compare(var$2, 0); - if (var$4 <= 0) - break; - if (!$this.$self0.$hasNext()) - break; - $this.$self0.$next(); - var$2 = var$2 + (-1) | 0; - } - var$2 = var$4 <= 0 ? 0 : 1; - } - } - var$4 = var$1.$size1; - if (!var$2) { - while (var$4 < $this.$size6 && $this.$self0.$hasNext()) { - var$1.$addOne($this.$self0.$next()); - var$4 = var$4 + 1 | 0; - } - var$2 = $this.$size6; - if (var$4 < var$2 && ($this.$padding === null ? 0 : 1)) { - scm_ArrayBuilder_sizeHint(var$1, var$2); - while (var$4 < $this.$size6) { - var$1.$addOne($this.$padding.$apply4()); - var$4 = var$4 + 1 | 0; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1426); + oncipv_Cypher5Parser_labelExpression2Is($this); + oavr_Recognizer_setState($this, 1431); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 126, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1427); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 47 && $_la != 144) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1428); + oncipv_Cypher5Parser_labelExpression2Is($this); + } + oavr_Recognizer_setState($this, 1433); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 126, $this.$_ctx); } - } - } - b: { - c: { - if (var$4 > 0) { - if ($this.$partial) - break c; - if (var$4 == $this.$size6) - break c; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } - var$2 = 0; - break b; } - var$2 = 1; - } - if (!var$2) - $this.$prev = null; - else - $this.$buffer0 = var$1.$result(); - if (var$2) { - var$2 = 1; + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } - } - var$2 = 0; - } - $this.$filled = var$2; - if (!var$2) - return 0; - } - return 1; -}, -sc_Iterator$GroupedIterator_hasNext = $this => { - return sc_Iterator$GroupedIterator_fill($this); -}, -sc_Iterator$GroupedIterator_next = $this => { - let var$1, var$2, var$3, var$4, var$5; - if (!sc_Iterator$GroupedIterator_fill($this)) - var$1 = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - else { - $this.$filled = 0; - var$2 = $this.$step3; - if (var$2 < $this.$size6) { - if ($this.$first2) - $this.$prev = sc_ArrayOps$_drop$extension(sc_ArrayOps$_MODULE$, $this.$buffer0, var$2); - else { - var$2 = jlr_Array_getLength($this.$buffer0); - var$3 = $this.$size6; - if (var$2 != var$3) - $this.$prev = null; - else { - var$1 = s_Array$_MODULE$; - var$4 = $this.$buffer0; - var$5 = $this.$step3; - s_Array$_copy(var$1, var$4, var$5, $this.$prev, 0, var$3 - var$5 | 0); + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$1 = sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, $this.$buffer0); - $this.$buffer0 = null; - $this.$first2 = 0; - } - return var$1; -}, -sc_Iterator$GroupedIterator__init_0 = ($this, $$outer, $self, $size, $step) => { - let var$5, var$6, var$7, var$8; - $this.$self0 = $self; - $this.$size6 = $size; - $this.$step3 = $step; - if ($$outer === null) - $rt_throw(null); - $this.$$outer79 = $$outer; - if ($size >= 1 && $step >= 1 ? 1 : 0) { - $this.$buffer0 = null; - $this.$prev = null; - $this.$first2 = 1; - $this.$filled = 0; - $this.$partial = 1; - $this.$padding = null; - return; - } - $self = new jl_IllegalArgumentException; - $$outer = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0($$outer, 20); - jl_AbstractStringBuilder_append($$outer, $rt_s(824)); - var$5 = sc_StringOps$_MODULE$; - var$6 = sr_ScalaRunTime$_MODULE$; - var$7 = $rt_createArray(jl_Object, 2); - var$8 = var$7.data; - var$8[0] = jl_Integer_valueOf($this.$size6); - var$8[1] = jl_Integer_valueOf($this.$step3); - jl_Throwable__init_0($self, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($$outer, sc_StringOps$_format$extension(var$5, $rt_s(6024), sr_ScalaRunTime$_genericWrapArray(var$6, var$7))))); - $rt_throw($self); -}, -sc_Iterator$GroupedIterator__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new sc_Iterator$GroupedIterator(); - sc_Iterator$GroupedIterator__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}; -function oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0() { - jl_Object.call(this); - this.$_0978 = null; -} -let oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0978; - return oncia_AliasedReturnItem__init_(oncie_Variable_copyId(var$1.$variable8), oncie_Variable_copyId(var$1.$variable8), var$2.$position9); -}; -function oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0() { - jl_Object.call(this); - this.$_0970 = null; -} -let oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(var$0.$_0970.$contains(var$1)); -}, -sm_Ordering$StringOrdering = $rt_classWithoutFields(0), -sm_Ordering$String$ = $rt_classWithoutFields(), -sm_Ordering$String$_MODULE$ = null, -sm_Ordering$String$_$callClinit = () => { - sm_Ordering$String$_$callClinit = $rt_eraseClinit(sm_Ordering$String$); - sm_Ordering$String$__clinit_(); -}, -sm_Ordering$String$__clinit_ = () => { - let var$1; - var$1 = new sm_Ordering$String$; - sm_Ordering$String$_$callClinit(); - sm_Ordering$String$_MODULE$ = var$1; -}, -sm_Ordering$String$_on = ($this, $f) => { - return sm_Ordering_on$($this, $f); -}, -sm_Ordering$String$_compare = ($this, $x, $y) => { - return jl_String_compareTo($x, $y); -}; -function jnc_CoderResult() { - let a = this; jl_Object.call(a); - a.$kind0 = 0; - a.$length5 = 0; -} -let jnc_CoderResult_UNDERFLOW = null, -jnc_CoderResult_OVERFLOW = null, -jnc_CoderResult__init_0 = ($this, $kind, $length) => { - $this.$kind0 = $kind; - $this.$length5 = $length; -}, -jnc_CoderResult__init_ = (var_0, var_1) => { - let var_2 = new jnc_CoderResult(); - jnc_CoderResult__init_0(var_2, var_0, var_1); - return var_2; -}, -jnc_CoderResult_isUnderflow = $this => { - return $this.$kind0 ? 0 : 1; -}, -jnc_CoderResult_isOverflow = $this => { - return $this.$kind0 != 1 ? 0 : 1; -}, -jnc_CoderResult_isError = $this => { - return !jnc_CoderResult_isMalformed($this) && !jnc_CoderResult_isUnmappable($this) ? 0 : 1; -}, -jnc_CoderResult_isMalformed = $this => { - return $this.$kind0 != 2 ? 0 : 1; -}, -jnc_CoderResult_isUnmappable = $this => { - return $this.$kind0 != 3 ? 0 : 1; -}, -jnc_CoderResult_length = $this => { - let var$1; - if (jnc_CoderResult_isError($this)) - return $this.$length5; - var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}, -jnc_CoderResult_malformedForLength = $length => { - return jnc_CoderResult__init_(2, $length); -}, -jnc_CoderResult_throwException = $this => { - let var$1, var$2; - switch ($this.$kind0) { - case 0: - var$1 = new jnc_BufferUnderflowException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - case 1: - var$1 = new jnc_BufferOverflowException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - case 2: - var$1 = new jnc_MalformedInputException; - var$2 = $this.$length5; - jl_Throwable__init_(var$1); - var$1.$length7 = var$2; - $rt_throw(var$1); - case 3: - var$1 = new jnc_UnmappableCharacterException; - var$2 = $this.$length5; - jl_Throwable__init_(var$1); - var$1.$length8 = var$2; - $rt_throw(var$1); - default: - } -}, -jnc_CoderResult__clinit_ = () => { - jnc_CoderResult_UNDERFLOW = jnc_CoderResult__init_(0, 0); - jnc_CoderResult_OVERFLOW = jnc_CoderResult__init_(1, 0); -}, -onciafn_Neo4jASTFactory$$anonfun$createConstraint$1$lambda$_547_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$$anonfun$createConstraint$1$lambda$_547_0_apply = (var$0, var$1) => { - return var$1.$string; -}, -onciafn_Neo4jASTFactory$$anonfun$createIndex$1$lambda$_553_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$$anonfun$createIndex$1$lambda$_553_0_apply = (var$0, var$1) => { - return var$1.$string; -}, -onciafn_Neo4jASTFactory$$anonfun$createFulltextIndex$1$lambda$_555_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$$anonfun$createFulltextIndex$1$lambda$_555_0_apply = (var$0, var$1) => { - return var$1.$string; -}, -onciafn_Neo4jASTFactory$$anonfun$createLookupIndex$1$lambda$_551_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$$anonfun$createLookupIndex$1$lambda$_551_0_apply = (var$0, var$1) => { - return var$1.$string; -}, -oncia_MergeAction = $rt_classWithoutFields(0); -function oncia_OnMatch() { - let a = this; jl_Object.call(a); - a.$action2 = null; - a.$position137 = null; -} -let oncia_OnMatch_position = $this => { - return $this.$position137; -}, -oncia_OnMatch_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this.$action2); -}, -oncia_OnMatch_copy = ($this, $action, $position) => { - return oncia_OnMatch__init_($action, $position); -}, -oncia_OnMatch_productPrefix = $this => { - return $rt_s(4543); -}, -oncia_OnMatch_productArity = $this => { - return 1; -}, -oncia_OnMatch_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$action2; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncia_OnMatch_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OnMatch_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OnMatch_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncia_OnMatch_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_labelExpression2 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpression2Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 164, 82); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_OnMatch) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$action2; - $x$1 = $x$1.$action2; - if (var$2 !== null) { - if (!oncia_SetClause_equals(var$2, $x$1)) - break b; - else + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1437); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 145) { + oavr_Recognizer_setState($this, 1434); + oavr_Parser_match($this, 145); + oavr_Recognizer_setState($this, 1439); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 1440); + oncipv_Cypher5Parser_labelExpression1($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (!($this instanceof oncia_OnMatch)) + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; - } - return var$3; -}, -oncia_OnMatch_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_OnMatch_mapExpressions = ($this, $f) => { - return oncia_OnMatch_copy($this, oncia_SetClause_mapExpressions($this.$action2, $f), $this.$position137); -}, -oncia_OnMatch__init_0 = ($this, $action, $position) => { - $this.$action2 = $action; - $this.$position137 = $position; -}, -oncia_OnMatch__init_ = (var_0, var_1) => { - let var_2 = new oncia_OnMatch(); - oncia_OnMatch__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_OnCreate() { - let a = this; jl_Object.call(a); - a.$action1 = null; - a.$position127 = null; -} -let oncia_OnCreate_position = $this => { - return $this.$position127; -}, -oncia_OnCreate_semanticCheck = $this => { - return oncia_Clause_semanticCheck$($this.$action1); -}, -oncia_OnCreate_copy = ($this, $action, $position) => { - return oncia_OnCreate__init_($action, $position); -}, -oncia_OnCreate_productPrefix = $this => { - return $rt_s(4542); -}, -oncia_OnCreate_productArity = $this => { - return 1; -}, -oncia_OnCreate_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$action1; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncia_OnCreate_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OnCreate_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_OnCreate_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncia_OnCreate_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_labelExpression2Is = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpression2IsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 166, 83); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_OnCreate) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$action1; - $x$1 = $x$1.$action1; - if (var$2 !== null) { - if (!oncia_SetClause_equals(var$2, $x$1)) - break b; - else + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1445); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 145) { + oavr_Recognizer_setState($this, 1442); + oavr_Parser_match($this, 145); + oavr_Recognizer_setState($this, 1447); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 1448); + oncipv_Cypher5Parser_labelExpression1Is($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (!($this instanceof oncia_OnCreate)) + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; - } - return var$3; -}, -oncia_OnCreate_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_OnCreate_mapExpressions = ($this, $f) => { - return oncia_OnCreate_copy($this, oncia_SetClause_mapExpressions($this.$action1, $f), $this.$position127); -}, -oncia_OnCreate__init_0 = ($this, $action, $position) => { - $this.$action1 = $action; - $this.$position127 = $position; -}, -oncia_OnCreate__init_ = (var_0, var_1) => { - let var_2 = new oncia_OnCreate(); - oncia_OnCreate__init_0(var_2, var_0, var_1); - return var_2; -}, -oncia_ASTSlicingPhrase = $rt_classWithoutFields(0), -oncia_ASTSlicingPhrase_semanticCheck$ = $$this => { - oncia_ASTSlicingPhrase$_$callClinit(); - return oncia_ASTSlicingPhrase$_checkExpressionIsStaticInt(oncia_ASTSlicingPhrase$_MODULE$, $$this.$expression(), $$this.$name(), 1); -}; -function oncia_Skip() { - let a = this; jl_Object.call(a); - a.$expression31 = null; - a.$position291 = null; -} -let oncia_Skip_semanticCheck = $this => { - return oncia_ASTSlicingPhrase_semanticCheck$($this); -}, -oncia_Skip_expression = $this => { - return $this.$expression31; -}, -oncia_Skip_position = $this => { - return $this.$position291; -}, -oncia_Skip_name = $this => { - return $rt_s(6025); -}, -oncia_Skip_productPrefix = $this => { - return $rt_s(6026); -}, -oncia_Skip_productArity = $this => { - return 1; -}, -oncia_Skip_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression31; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncia_Skip_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Skip_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Skip_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncia_Skip_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_labelExpression1 = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpression1Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 168, 84); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Skip) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expression31; - $x$1 = $x$1.$expression31; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1457); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$LabelNameContext; + var$2 = $re; + oncipv_Cypher5Parser$LabelNameContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1456); + oncipv_Cypher5Parser_symbolicNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 156: + case 161: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + break; + case 80: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$DynamicLabelContext; + var$2 = $re; + oncipv_Cypher5Parser$DynamicLabelContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1455); + oncipv_Cypher5Parser_dynamicAnyAllExpression($this); + break e; + case 155: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext; + var$2 = $re; + oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1450); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1451); + oncipv_Cypher5Parser_labelExpression4($this); + oavr_Recognizer_setState($this, 1452); + oavr_Parser_match($this, 239); + break e; + case 162: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$AnyLabelContext; + var$2 = $re; + oncipv_Cypher5Parser$AnyLabelContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1454); + oavr_Parser_match($this, 162); + break e; + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (!($this instanceof oncia_Skip)) + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; - } - return var$3; -}, -oncia_Skip_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Skip__init_ = ($this, $expression, $position) => { - $this.$expression31 = $expression; - $this.$position291 = $position; -}, -oncia_Skip__init_0 = (var_0, var_1) => { - let var_2 = new oncia_Skip(); - oncia_Skip__init_(var_2, var_0, var_1); - return var_2; -}; -function oncia_Limit() { - let a = this; jl_Object.call(a); - a.$expression33 = null; - a.$position280 = null; -} -let oncia_Limit_semanticCheck = $this => { - return oncia_ASTSlicingPhrase_semanticCheck$($this); -}, -oncia_Limit_expression = $this => { - return $this.$expression33; -}, -oncia_Limit_position = $this => { - return $this.$position280; -}, -oncia_Limit_name = $this => { - return $rt_s(6027); -}, -oncia_Limit_productPrefix = $this => { - return $rt_s(6028); -}, -oncia_Limit_productArity = $this => { - return 1; -}, -oncia_Limit_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$expression33; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; } - return sr_Statics_ioobe($x$1); -}, -oncia_Limit_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Limit_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Limit_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $re; }, -oncia_Limit_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_labelExpression1Is = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelExpression1IsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 170, 85); a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Limit) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$expression33; - $x$1 = $x$1.$expression33; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1466); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 180: + case 181: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$LabelNameIsContext; + var$2 = $re; + oncipv_Cypher5Parser$LabelNameIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1465); + oncipv_Cypher5Parser_symbolicLabelNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 156: + case 161: + case 163: + case 164: + case 168: + case 169: + case 170: + case 171: + case 178: + case 179: + case 182: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + case 283: + break; + case 80: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$DynamicLabelIsContext; + var$2 = $re; + oncipv_Cypher5Parser$DynamicLabelIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1464); + oncipv_Cypher5Parser_dynamicAnyAllExpression($this); + break e; + case 155: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext; + var$2 = $re; + oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1459); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1460); + oncipv_Cypher5Parser_labelExpression4Is($this); + oavr_Recognizer_setState($this, 1461); + oavr_Parser_match($this, 239); + break e; + case 162: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$AnyLabelIsContext; + var$2 = $re; + oncipv_Cypher5Parser$AnyLabelIsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1463); + oavr_Parser_match($this, 162); + break e; + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (!($this instanceof oncia_Limit)) + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; -}, -oncia_Limit_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_Limit__init_ = ($this, $expression, $position) => { - $this.$expression33 = $expression; - $this.$position280 = $position; -}, -oncia_Limit__init_0 = (var_0, var_1) => { - let var_2 = new oncia_Limit(); - oncia_Limit__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_Access = $rt_classWithoutFields(0), -oncia_ReadOnlyAccess$ = $rt_classWithoutFields(), -oncia_ReadOnlyAccess$_MODULE$ = null, -oncia_ReadOnlyAccess$_$callClinit = () => { - oncia_ReadOnlyAccess$_$callClinit = $rt_eraseClinit(oncia_ReadOnlyAccess$); - oncia_ReadOnlyAccess$__clinit_(); -}, -oncia_ReadOnlyAccess$__clinit_ = () => { - let var$1; - var$1 = new oncia_ReadOnlyAccess$; - oncia_ReadOnlyAccess$_$callClinit(); - oncia_ReadOnlyAccess$_MODULE$ = var$1; -}, -oncia_ReadOnlyAccess$_productArity = $this => { - return 0; -}, -oncia_ReadOnlyAccess$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ReadOnlyAccess$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ReadOnlyAccess$_hashCode = $this => { - return (-422523258); -}, -oncia_ReadOnlyAccess$_toString = $this => { - return $rt_s(6029); -}, -oncia_ReadWriteAccess$ = $rt_classWithoutFields(), -oncia_ReadWriteAccess$_MODULE$ = null, -oncia_ReadWriteAccess$_$callClinit = () => { - oncia_ReadWriteAccess$_$callClinit = $rt_eraseClinit(oncia_ReadWriteAccess$); - oncia_ReadWriteAccess$__clinit_(); -}, -oncia_ReadWriteAccess$__clinit_ = () => { - let var$1; - var$1 = new oncia_ReadWriteAccess$; - oncia_ReadWriteAccess$_$callClinit(); - oncia_ReadWriteAccess$_MODULE$ = var$1; -}, -oncia_ReadWriteAccess$_productArity = $this => { - return 0; -}, -oncia_ReadWriteAccess$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_ReadWriteAccess$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ReadWriteAccess$_hashCode = $this => { - return (-574905715); -}, -oncia_ReadWriteAccess$_toString = $this => { - return $rt_s(6030); -}, -onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$2$lambda$_543_0 = $rt_classWithoutFields(), -onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$2$lambda$_543_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$1.$expression(); - var$3 = var$1.$alias(); - var$4 = new onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$3$lambda$_542_0; - var$4.$_083 = var$2; - var$3 = s_Option_getOrElse(var$3, var$4); - return oncia_CommandResultItem__init_(var$2.$name4, var$3, var$1.$position()); -}; -function oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0() { - jl_Object.call(this); - this.$_01159 = null; -} -let oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_01159; - oncia_CommandClause$_$callClinit(); - var$3 = new oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0; - var$3.$_0324 = var$2; - return var$1.$mapExpression(var$3); -}; -function oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0() { - jl_Object.call(this); - this.$_0744 = null; -} -let oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0744; - oncia_CommandClause$_$callClinit(); - return oncia_CommandClause$_updateExpression$1(var$1, var$2); -}; -function sci_VectorSliceBuilder() { - let a = this; jl_Object.call(a); - a.$lo = 0; - a.$hi = 0; - a.$scala$collection$immutable$VectorSliceBuilder$$slices = null; - a.$len0 = 0; - a.$pos5 = 0; - a.$maxDim = 0; -} -let sci_VectorSliceBuilder_consider = ($this, $n, $a) => { - let $count, $lo0, $hi0; - $count = $rt_imul($a.data.length, 1 << (5 * ($n - 1 | 0) | 0)); - $lo0 = jl_Math_max($this.$lo - $this.$pos5 | 0, 0); - $hi0 = jl_Math_min($this.$hi - $this.$pos5 | 0, $count); - if ($hi0 > $lo0) { - sci_VectorSliceBuilder_addSlice($this, $n, $a, $lo0, $hi0); - $this.$len0 = $this.$len0 + ($hi0 - $lo0 | 0) | 0; - } - $this.$pos5 = $this.$pos5 + $count | 0; -}, -sci_VectorSliceBuilder_addSlice = ($this, $n, $a, $lo, $hi) => { - let $n_0, $bitsN, $widthN, $loN, $hiN, var$10; - while (true) { - if ($n == 1) { - if (!(!$lo && $hi == $a.data.length)) - $a = ju_Arrays_copyOfRange($a, $lo, $hi); - sci_VectorSliceBuilder_add($this, 1, $a); - return; - } - $n_0 = $n - 1 | 0; - $bitsN = 5 * $n_0 | 0; - $widthN = 1 << $bitsN; - $loN = $lo >>> $bitsN | 0; - $hiN = $hi >>> $bitsN | 0; - $bitsN = $widthN - 1 | 0; - $lo = $lo & $bitsN; - $hi = $hi & $bitsN; - if (!$lo) { - if (!$hi) - break; - if ($hiN > $loN) - sci_VectorSliceBuilder_add($this, $n, !$loN && $hiN == $a.data.length ? $a : ju_Arrays_copyOfRange($a, $loN, $hiN)); - $a = $a.data[$hiN]; - $lo = 0; - $n = $n_0; - continue; - } - if ($hiN == $loN) { - $a = $a.data[$loN]; - $n = $n_0; - continue; - } - var$10 = $a.data; - sci_VectorSliceBuilder_addSlice($this, $n_0, var$10[$loN], $lo, $widthN); - if (!$hi) { - $lo = $loN + 1 | 0; - if ($hiN <= $lo) - return; - if (!(!$lo && $hiN == var$10.length)) - $a = ju_Arrays_copyOfRange($a, $lo, $hiN); - sci_VectorSliceBuilder_add($this, $n, $a); - return; - } - $lo = $loN + 1 | 0; - if ($hiN > $lo) { - if (!(!$lo && $hiN == var$10.length)) - $a = ju_Arrays_copyOfRange($a, $lo, $hiN); - sci_VectorSliceBuilder_add($this, $n, $a); - } - $a = var$10[$hiN]; - $lo = 0; - $n = $n_0; - } - if (!(!$loN && $hiN == $a.data.length)) - $a = ju_Arrays_copyOfRange($a, $loN, $hiN); - sci_VectorSliceBuilder_add($this, $n, $a); -}, -sci_VectorSliceBuilder_add = ($this, $n, $a) => { - let $idx; - if ($n <= $this.$maxDim) - $idx = 11 - $n | 0; - else { - $this.$maxDim = $n; - $idx = $n - 1 | 0; - } - $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[$idx] = $a; -}, -sci_VectorSliceBuilder_result = $this => { - let $len12, $suffix1, $a, $a_0, $prefix1, $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n, $prefix2, $pre, $suf, $suffixOr_s, $len123, $len1234, $len1, $concatArrays_dest, $dataOr_a, $dataOr_s, $prefixOr_a, $prefixOr_p, $data3, $suffixOr_a, $prefix3, $data4, $suffix3, $suffix2, $prefix4, $data5, $suffix4, $prefix5, $data6, $suffix5, $suffixOr_a_0, $len12_0; - $len12 = $this.$len0; - if ($len12 <= 32) { - if (!$len12) { - sci_Vector0$_$callClinit(); - return sci_Vector0$_MODULE$; - } - $suffix1 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - $a = $suffix1[0]; - $a_0 = $suffix1[10]; - if ($a !== null) { - if ($a_0 !== null) { - $suffix1 = $a.data; - $prefix1 = $a_0.data; - $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n = $suffix1.length; - $len12 = $prefix1.length; - $a = ju_Arrays_copyOf($a, $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n + $len12 | 0); - jl_System_fastArraycopy($a_0, 0, $a, $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n, $len12); - } - } else if ($a_0 !== null) - $a = $a_0; - else { - $prefix2 = $suffix1[1]; - $a = $prefix2 !== null ? $prefix2.data[0] : $suffix1[9].data[0]; - } - return sci_Vector1__init_($a); - } - sci_VectorSliceBuilder_balancePrefix($this, 1); - sci_VectorSliceBuilder_balanceSuffix($this, 1); - $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n = $this.$maxDim; - if ($scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n < 6) { - $suffix1 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - $len12 = $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n - 1 | 0; - $pre = $suffix1[$len12]; - $suf = $suffix1[11 - $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n | 0]; - if ($pre !== null && $suf !== null) { - $prefix1 = $pre.data; - $suffixOr_s = $suf.data; - $len123 = $prefix1.length; - $len1234 = $suffixOr_s.length; - $len1 = $len123 + $len1234 | 0; - if ($len1 > 30) - $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n = $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n + 1 | 0; - else { - $concatArrays_dest = ju_Arrays_copyOf($pre, $len1); - jl_System_fastArraycopy($suf, 0, $concatArrays_dest, $len123, $len1234); - $suffix1[$len12] = $concatArrays_dest; - $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[11 - $this.$maxDim | 0] = null; - } - } else { - if ($pre !== null) - $suf = $pre; - if ($suf.data.length > 30) - $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n = $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n + 1 | 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; } - $suffix1 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - $prefix1 = $suffix1[0]; - $suffixOr_s = $prefix1.data; - $suffix1 = $suffix1[10]; - $len1 = $suffixOr_s.length; - switch ($scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n) { - case 2: - $dataOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - $dataOr_s = $suffixOr_s[1]; - if ($dataOr_s === null) { - $dataOr_s = $suffixOr_s[9]; - if ($dataOr_s === null) - $dataOr_s = $dataOr_a; - } - return sci_Vector2__init_($prefix1, $len1, $dataOr_s, $suffix1, $this.$len0); - case 3: - $prefixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[1]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix2 = $prefixOr_a; - $dataOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - $dataOr_s = $suffixOr_s[2]; - if ($dataOr_s === null) { - $dataOr_s = $suffixOr_s[8]; - if ($dataOr_s === null) - $dataOr_s = $dataOr_a; - } - $data3 = $dataOr_s; - $suffixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[9]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - return sci_Vector3__init_($prefix1, $len1, $prefix2, $len1 + ($prefix2.data.length * 32 | 0) | 0, $data3, $suffixOr_a, $suffix1, $this.$len0); - case 4: - $prefixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[1]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix2 = $prefixOr_a; - $prefixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[2]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix3 = $prefixOr_a; - $dataOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - $dataOr_s = $suffixOr_s[3]; - if ($dataOr_s === null) { - $dataOr_s = $suffixOr_s[7]; - if ($dataOr_s === null) - $dataOr_s = $dataOr_a; - } - $data4 = $dataOr_s; - $suffixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[8]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - $suffix3 = $suffixOr_a; - $suffixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[9]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - $suffixOr_s = $prefix2.data; - $prefixOr_a = $prefix3.data; - $suffix2 = $suffixOr_a; - $len12 = $len1 + ($suffixOr_s.length * 32 | 0) | 0; - return sci_Vector4__init_($prefix1, $len1, $prefix2, $len12, $prefix3, $len12 + ($prefixOr_a.length * 1024 | 0) | 0, $data4, $suffix3, $suffix2, $suffix1, $this.$len0); - case 5: - $prefixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[1]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix2 = $prefixOr_a; - $prefixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[2]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix3 = $prefixOr_a; - $prefixOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[3]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix4 = $prefixOr_a; - $dataOr_a = sci_VectorStatics$_empty5(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - $dataOr_s = $suffixOr_s[4]; - if ($dataOr_s === null) { - $dataOr_s = $suffixOr_s[6]; - if ($dataOr_s === null) - $dataOr_s = $dataOr_a; - } - $data5 = $dataOr_s; - $suffixOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[7]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - $suffix4 = $suffixOr_a; - $suffixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[8]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - $suffix3 = $suffixOr_a; - $suffixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[9]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - $suffixOr_s = $prefix2.data; - $prefixOr_a = $prefix3.data; - $prefixOr_p = $prefix4.data; - $suffix2 = $suffixOr_a; - $len12 = $len1 + ($suffixOr_s.length * 32 | 0) | 0; - $len123 = $len12 + ($prefixOr_a.length * 1024 | 0) | 0; - return sci_Vector5__init_($prefix1, $len1, $prefix2, $len12, $prefix3, $len123, $prefix4, $len123 + ($prefixOr_p.length * 32768 | 0) | 0, $data5, $suffix4, $suffix3, $suffix2, $suffix1, $this.$len0); - case 6: - $prefixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[1]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix2 = $prefixOr_a; - $prefixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[2]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix3 = $prefixOr_a; - $prefixOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[3]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix4 = $prefixOr_a; - $prefixOr_a = sci_VectorStatics$_empty5(sci_VectorStatics$_MODULE$); - $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[4]; - if ($prefixOr_p !== null) - $prefixOr_a = $prefixOr_p; - $prefix5 = $prefixOr_a; - $dataOr_a = sci_VectorStatics$_empty6(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - $dataOr_s = $suffixOr_s[5]; - if ($dataOr_s === null) { - $dataOr_s = $suffixOr_s[5]; - if ($dataOr_s === null) - $dataOr_s = $dataOr_a; - } - $data6 = $dataOr_s; - $suffixOr_a = sci_VectorStatics$_empty5(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[6]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - $suffix5 = $suffixOr_a; - $suffixOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[7]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - $suffix4 = $suffixOr_a; - $suffixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[8]; - if ($suffixOr_s !== null) - $suffixOr_a = $suffixOr_s; - $suffix3 = $suffixOr_a; - $suffixOr_a_0 = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); - $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[9]; - if ($suffixOr_s !== null) - $suffixOr_a_0 = $suffixOr_s; - $prefixOr_a = $prefix2.data; - $prefixOr_p = $prefix3.data; - $suffixOr_s = $prefix4.data; - $suffixOr_a = $prefix5.data; - $suffix2 = $suffixOr_a_0; - $len12_0 = $len1 + ($prefixOr_a.length * 32 | 0) | 0; - $len123 = $len12_0 + ($prefixOr_p.length * 1024 | 0) | 0; - $len1234 = $len123 + ($suffixOr_s.length * 32768 | 0) | 0; - return sci_Vector6__init_($prefix1, $len1, $prefix2, $len12_0, $prefix3, $len123, $prefix4, $len1234, $prefix5, $len1234 + $rt_imul($suffixOr_a.length, 1048576) | 0, $data6, $suffix5, $suffix4, $suffix3, $suffix2, $suffix1, $this.$len0); - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n))); -}, -sci_VectorSliceBuilder_balancePrefix = ($this, $n) => { - let var$2, var$3, var$4, var$5, var$6, $preN1, var$8, var$9; - var$2 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - var$3 = $n - 1 | 0; - if (var$2[var$3] !== null) - return; - if ($n == $this.$maxDim) { - $n = 11 - $n | 0; - var$2[var$3] = var$2[$n]; - var$2[$n] = null; - return; - } - var$4 = $n + 1 | 0; - sci_VectorSliceBuilder_balancePrefix($this, var$4); - var$5 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - var$6 = var$4 - 1 | 0; - $preN1 = var$5[var$6]; - var$8 = $preN1.data; - var$5[var$3] = var$8[0]; - var$9 = var$8.length; - if (var$9 != 1) { - var$5[var$6] = ju_Arrays_copyOfRange($preN1, 1, var$9); - return; - } - var$5[var$6] = null; - if ($this.$maxDim == var$4 && var$5[11 - var$4 | 0] === null) { - $this.$maxDim = $n; - return; - } + return $re; }, -sci_VectorSliceBuilder_balanceSuffix = ($this, $n) => { - let var$2, var$3, var$4, var$5, var$6, $sufN1, var$8, var$9; - var$2 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - var$3 = 11 - $n | 0; - if (var$2[var$3] !== null) - return; - if ($n == $this.$maxDim) { - $n = $n - 1 | 0; - var$2[var$3] = var$2[$n]; - var$2[$n] = null; - return; - } - var$4 = $n + 1 | 0; - sci_VectorSliceBuilder_balanceSuffix($this, var$4); - var$5 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; - var$6 = 11 - var$4 | 0; - $sufN1 = var$5[var$6]; - var$2 = $sufN1.data; - var$8 = var$2.length; - var$9 = var$8 - 1 | 0; - var$5[var$3] = var$2[var$9]; - if (var$8 != 1) { - var$5[var$6] = ju_Arrays_copyOfRange($sufN1, 0, var$9); - return; - } - var$5[var$6] = null; - if ($this.$maxDim == var$4 && var$5[var$4 - 1 | 0] === null) { - $this.$maxDim = $n; - return; +oncipv_Cypher5Parser_insertNodeLabelExpression = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$InsertNodeLabelExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 172, 86); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1468); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 47 && $_la != 139) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1469); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1474); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 47 && $_la != 144)) { + oavr_Recognizer_setState($this, 1470); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 47 && $_la != 144) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1471); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1476); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; }, -sci_VectorSliceBuilder__init_0 = ($this, $lo, $hi) => { - $this.$lo = $lo; - $this.$hi = $hi; - $this.$scala$collection$immutable$VectorSliceBuilder$$slices = $rt_createArray($rt_arraycls(jl_Object), 11); - $this.$len0 = 0; - $this.$pos5 = 0; - $this.$maxDim = 0; -}, -sci_VectorSliceBuilder__init_ = (var_0, var_1) => { - let var_2 = new sci_VectorSliceBuilder(); - sci_VectorSliceBuilder__init_0(var_2, var_0, var_1); - return var_2; -}; -function oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0() { - jl_Object.call(this); - this.$_0328 = null; -} -let oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +oncipv_Cypher5Parser_insertRelationshipLabelExpression = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 174, 87); a: { b: { c: { - var$1 = var$1; - var$2 = var$0.$_0328; - var$3 = var$1.$name4; - var$1 = var$2.$name4; - if (var$3 !== null) { - if (!jl_String_equals(var$3, var$1)) - break b; - else - break c; + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1477); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 47 && $_la != 139) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1478); + oncipv_Cypher5Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (var$1 !== null) + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$4 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$4 = 0; - } - return jl_Boolean_valueOf(var$4); -}; -function oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1() { - let a = this; jl_Object.call(a); - a.$_01157 = null; - a.$_1387 = null; -} -let oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_01157; - var$3 = var$0.$_1387; - var$4 = new oncia_Union$UnionMapping; - var$4.$unionVariable = oncie_Variable__init_(var$3.$name4, var$2.$position()); - var$4.$variableInLhs = var$3; - var$4.$variableInRhs = var$1; - return var$4; -}, -oncia_AuthImpl = $rt_classWithoutFields(0), -oncia_AuthImpl_checkDuplicates$ = $$this => { - let var$2, var$3; - var$2 = sc_AbstractIterable_groupBy($$this.$authAttributes(), new oncia_AuthImpl$checkDuplicates$lambda$_5_0); - var$3 = new oncia_AuthImpl$$anonfun$checkDuplicates$2; - var$3.$$outer47 = $$this; - return s_Option_getOrElse(sc_AbstractIterable_collectFirst(var$2, var$3), new oncia_AuthImpl$checkDuplicates$lambda$_5_1); -}, -oncia_AuthImpl_checkProviderName$ = $$this => { - if (!jl_String_isEmpty($$this.$provider())) { - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else - $$this = $$this.$error2($rt_s(6031), $$this.$position()); - return $$this; -}, -oncia_AuthImpl_requiredAttributes$ = ($$this, $func, $name) => { - $func = sci_List_find($$this.$authAttributes(), $func); - if ($func instanceof s_Some) { - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - if (!jl_Object_equals(s_None$_MODULE$, $func)) - $rt_throw(s_MatchError__init_($func)); - $$this = $$this.$error2($$this.$missingRequiredClauseErrorMessage($name), $$this.$position()); - } - return $$this; -}, -oncia_AuthImpl_noUnsupportedAttributes$ = ($$this, $func) => { - let var$3, var$4, var$5; - $func = sci_List_find($$this.$authAttributes(), $func); - if (!($func instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, $func)) - $rt_throw(s_MatchError__init_($func)); - oncias_SemanticCheck$_$callClinit(); - $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - $func = $func.$value5; - var$3 = $$this.$provider(); - var$4 = $func.$name(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6032)), var$3), $rt_s(6033)), var$4), $rt_s(6034)); - $$this = $$this.$error2(jl_AbstractStringBuilder_toString(var$5), $func.$position()); - } - return $$this; -}, -oncia_AuthImpl_missingRequiredClauseErrorMessage$ = ($$this, $name) => { - let var$3; - $$this = $$this.$provider(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6035)), $name), $rt_s(6036)), $$this), $rt_s(158)); - return jl_AbstractStringBuilder_toString(var$3); -}; -function oncia_ExternalAuth() { - let a = this; jl_Object.call(a); - a.$provider1 = null; - a.$authAttributes2 = null; - a.$position151 = null; - a.$maybeId = null; -} -let oncia_ExternalAuth_checkDuplicates = $this => { - return oncia_AuthImpl_checkDuplicates$($this); -}, -oncia_ExternalAuth_checkProviderName = $this => { - return oncia_AuthImpl_checkProviderName$($this); -}, -oncia_ExternalAuth_missingRequiredClauseErrorMessage = ($this, $name) => { - return oncia_AuthImpl_missingRequiredClauseErrorMessage$($this, $name); -}, -oncia_ExternalAuth_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_ExternalAuth_provider = $this => { - return $this.$provider1; -}, -oncia_ExternalAuth_authAttributes = $this => { - return $this.$authAttributes2; -}, -oncia_ExternalAuth_position = $this => { - return $this.$position151; -}, -oncia_ExternalAuth_checkRequiredAttributes = $this => { - let var$1, var$2; - var$1 = oncia_AuthImpl_requiredAttributes$($this, new oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_0, $rt_s(4860)); - var$2 = new oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_1; - var$2.$_0668 = $this; - return oncias_SemanticCheck_ifOkChain$(var$1, var$2); -}, -oncia_ExternalAuth_checkNoUnsupportedAttributes = $this => { - return oncia_AuthImpl_noUnsupportedAttributes$($this, new oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_61_0); -}, -oncia_ExternalAuth_checkIdIsStringLiteralOrParameter = $this => { - let var$1, var$2; - var$1 = s_Option_map($this.$maybeId, new oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_0); - var$2 = new oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_1; - var$2.$_0994 = $this; - return s_Option_getOrElse(var$1, var$2); -}, -oncia_ExternalAuth_productPrefix = $this => { - return $rt_s(6037); -}, -oncia_ExternalAuth_productArity = $this => { - return 2; -}, -oncia_ExternalAuth_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$provider1; - case 1: - return $this.$authAttributes2; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncia_ExternalAuth_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExternalAuth_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ExternalAuth_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncia_ExternalAuth_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncipv_Cypher5Parser_expression = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 176, 88); a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ExternalAuth) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$provider1; - var$3 = $x$1.$provider1; - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) - break b; - else - break d; + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1480); + oncipv_Cypher5Parser_expression11($this); + oavr_Recognizer_setState($this, 1485); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 190) { + oavr_Recognizer_setState($this, 1481); + oavr_Parser_match($this, 190); + oavr_Recognizer_setState($this, 1482); + oncipv_Cypher5Parser_expression11($this); + oavr_Recognizer_setState($this, 1487); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); } - if (var$3 !== null) - break b; - } - var$3 = $this.$authAttributes2; - $x$1 = $x$1.$authAttributes2; - if (var$3 !== null) { - if (!sci_List_equals(var$3, $x$1)) - break b; - else + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$4 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$4 = 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$4; -}, -oncia_ExternalAuth_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_ExternalAuth__init_0 = ($this, $provider, $authAttributes, $position) => { - $this.$provider1 = $provider; - $this.$authAttributes2 = $authAttributes; - $this.$position151 = $position; - $this.$maybeId = sc_AbstractIterable_collectFirst($authAttributes, new oncia_ExternalAuth$$anonfun$2); -}, -oncia_ExternalAuth__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_ExternalAuth(); - oncia_ExternalAuth__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncia_NativeAuth() { - let a = this; jl_Object.call(a); - a.$authAttributes1 = null; - a.$position257 = null; - a.$provider2 = null; -} -let oncia_NativeAuth_checkDuplicates = $this => { - return oncia_AuthImpl_checkDuplicates$($this); -}, -oncia_NativeAuth_checkProviderName = $this => { - return oncia_AuthImpl_checkProviderName$($this); -}, -oncia_NativeAuth_missingRequiredClauseErrorMessage = ($this, $name) => { - return oncia_AuthImpl_missingRequiredClauseErrorMessage$($this, $name); -}, -oncia_NativeAuth_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); -}, -oncia_NativeAuth_authAttributes = $this => { - return $this.$authAttributes1; -}, -oncia_NativeAuth_position = $this => { - return $this.$position257; -}, -oncia_NativeAuth_provider = $this => { - return $this.$provider2; -}, -oncia_NativeAuth_checkRequiredAttributes = $this => { - return oncia_AuthImpl_requiredAttributes$($this, new oncia_NativeAuth$checkRequiredAttributes$lambda$_59_0, $rt_s(556)); -}, -oncia_NativeAuth_checkNoUnsupportedAttributes = $this => { - return oncia_AuthImpl_noUnsupportedAttributes$($this, new oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_60_0); -}, -oncia_NativeAuth_password = $this => { - return sc_AbstractIterable_collectFirst($this.$authAttributes1, new oncia_NativeAuth$$anonfun$password$1); -}, -oncia_NativeAuth_changeRequired = $this => { - return sc_AbstractIterable_collectFirst($this.$authAttributes1, new oncia_NativeAuth$$anonfun$changeRequired$1); -}, -oncia_NativeAuth_productPrefix = $this => { - return $rt_s(6038); -}, -oncia_NativeAuth_productArity = $this => { - return 1; + return $_localctx; }, -oncia_NativeAuth_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$authAttributes1; - default: +oncipv_Cypher5Parser_expression11 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression11Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 178, 89); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1488); + oncipv_Cypher5Parser_expression10($this); + oavr_Recognizer_setState($this, 1493); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 305) { + oavr_Recognizer_setState($this, 1489); + oavr_Parser_match($this, 305); + oavr_Recognizer_setState($this, 1490); + oncipv_Cypher5Parser_expression10($this); + oavr_Recognizer_setState($this, 1495); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncia_NativeAuth_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NativeAuth_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NativeAuth_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncia_NativeAuth_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_expression10 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression10Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 180, 90); a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_NativeAuth) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$authAttributes1; - $x$1 = $x$1.$authAttributes1; - if (var$2 !== null) { - if (!sci_List_equals(var$2, $x$1)) - break b; - else + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1496); + oncipv_Cypher5Parser_expression9($this); + oavr_Recognizer_setState($this, 1501); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 20) { + oavr_Recognizer_setState($this, 1497); + oavr_Parser_match($this, 20); + oavr_Recognizer_setState($this, 1498); + oncipv_Cypher5Parser_expression9($this); + oavr_Recognizer_setState($this, 1503); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$3; -}, -oncia_NativeAuth_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncia_NativeAuth__init_0 = ($this, $authAttributes, $position) => { - $this.$authAttributes1 = $authAttributes; - $this.$position257 = $position; - oncia_AdministrationCommand$_$callClinit(); - $this.$provider2 = oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$); -}, -oncia_NativeAuth__init_ = (var_0, var_1) => { - let var_2 = new oncia_NativeAuth(); - oncia_NativeAuth__init_0(var_2, var_0, var_1); - return var_2; + return $_localctx; }, -onih_Strings = $rt_classWithoutFields(), -onih_Strings_codePoints = $s => { - let $iterable, var$3, var$4, var$5, var$6, var$7; - $iterable = new onih_Strings$codePoints$lambda$_5_0; - $iterable.$_01188 = $s; - var$3 = new onih_Strings$CodePointsIterator; - var$3.$s = $s; - var$4 = 0; - var$5 = $s.$nativeString.length; - var$6 = $s.$nativeString.length; - if (var$4 <= var$5 && var$5 <= var$6) { - var$6 = var$5 - var$4 | 0; - var$5 = var$5 + (-1) | 0; - while (var$4 < var$5) { - if (!jl_Character_isHighSurrogate(jl_String_charAt($s, var$4))) - var$7 = var$4; - else { - var$7 = var$4 + 1 | 0; - if (!jl_Character_isLowSurrogate(jl_String_charAt($s, var$7))) - var$7 = var$4; - else - var$6 = var$6 + (-1) | 0; +oncipv_Cypher5Parser_expression9 = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression9Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 182, 91); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1507); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 135, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1504); + oavr_Parser_match($this, 179); + } + oavr_Recognizer_setState($this, 1509); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 135, $this.$_ctx); + } + oavr_Recognizer_setState($this, 1510); + oncipv_Cypher5Parser_expression8($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - var$4 = var$7 + 1 | 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3.$numCodePoints = var$6; - var$3.$charIndex = 0; - var$3.$codePointIndex = 0; - $s = new jl_Iterable$1; - $s.$this$023 = $iterable; - $s.$val$iterator = var$3; - return jusi_SimpleStreamImpl_mapToInt(jusi_StreamOverSpliterator__init_($s), new onih_Strings$codePoints$lambda$_5_1); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $s = new jl_IndexOutOfBoundsException; - jl_RuntimeException__init_($s); - $rt_throw($s); -}; -function onciap_ExpressionStringifier$$backtick$lambda$_9_0() { - jl_Object.call(this); - this.$_0502 = 0; -} -let onciap_ExpressionStringifier$$backtick$lambda$_9_0_test = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = var$0.$_0502; - onciu_UnicodeHelper$_$callClinit(); - var$3 = onciu_UnicodeHelper$_MODULE$; - s_Predef$_$callClinit(); - var$4 = jl_Integer_valueOf(var$1); - var$5 = onci_CypherVersion_Cypher25; - var$6 = sr_BoxesRunTime_unboxToInt(var$4); - var$5 = jl_Enum_equals(onci_CypherVersion_Cypher25, var$5) ? onciu_UnicodeHelper$_identifierStartUnicodesCypher25(var$3) : onciu_UnicodeHelper$_deprecatedIdentifierStartUnicodes.$concat(onciu_UnicodeHelper$_identifierStartUnicodesCypher25(var$3)); - return !onciu_UnicodeHelper$_isAllowedUnicode(var$3, var$6, var$5) && !onciap_ExpressionStringifier$_orGlobbedCharacter$1(var$1, var$2) ? 0 : 1; -}; -function onciap_ExpressionStringifier$$backtick$lambda$_9_1() { - jl_Object.call(this); - this.$_0989 = 0; -} -let onciap_ExpressionStringifier$$backtick$lambda$_9_1_test = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = var$0.$_0989; - onciu_UnicodeHelper$_$callClinit(); - var$3 = onciu_UnicodeHelper$_MODULE$; - s_Predef$_$callClinit(); - var$4 = jl_Integer_valueOf(var$1); - var$5 = onci_CypherVersion_Cypher25; - var$6 = sr_BoxesRunTime_unboxToInt(var$4); - var$5 = jl_Enum_equals(onci_CypherVersion_Cypher25, var$5) ? onciu_UnicodeHelper$_identifierPartUnicodesCypher25(var$3) : onciu_UnicodeHelper$_deprecatedIdentifierPartUnicodes.$concat(onciu_UnicodeHelper$_identifierPartUnicodesCypher25(var$3)); - return !onciu_UnicodeHelper$_isAllowedUnicode(var$3, var$6, var$5) && !onciap_ExpressionStringifier$_orGlobbedCharacter$1(var$1, var$2) ? 0 : 1; -}; -function sc_StrictOptimizedIterableOps$partition$lambda$_1_0() { - let a = this; jl_Object.call(a); - a.$_0364 = null; - a.$_1133 = null; - a.$_249 = null; -} -let sc_StrictOptimizedIterableOps$partition$lambda$_1_0_apply = (var$0, var$1) => { - return sc_StrictOptimizedIterableOps_$anonfun$partition$1(var$0.$_0364, var$0.$_1133, var$0.$_249, var$1); -}, -scc_JavaCollectionWrappers$MapWrapper = $rt_classWithoutFields(ju_AbstractMap), -scc_JavaCollectionWrappers$MutableMapWrapper = $rt_classWithoutFields(scc_JavaCollectionWrappers$MapWrapper), -scc_JavaCollectionWrappers$JMapWrapperLike = $rt_classWithoutFields(0), -scc_JavaCollectionWrappers$AbstractJMapWrapper = $rt_classWithoutFields(scm_AbstractMap), -scc_JavaCollectionWrappers$AbstractJMapWrapper_iterator = $this => { - let var$1; - var$1 = new scc_JavaCollectionWrappers$JMapWrapperLike$$anon$5; - var$1.$ui = ($this.$underlying32.$entrySet()).$iterator(); - return var$1; -}; -function scc_JavaCollectionWrappers$JMapWrapper() { - scc_JavaCollectionWrappers$AbstractJMapWrapper.call(this); - this.$underlying32 = null; -} -let scc_JavaCollectionWrappers$JMapWrapper_knownSize = $this => { - if (!$this.$underlying32.$isEmpty()) - return (-1); - return 0; -}, -scc_JavaCollectionWrappers$MutableSetWrapper = $rt_classWithoutFields(scc_JavaCollectionWrappers$SetWrapper); -function oncias_SemanticCheck$chain$lambda$_15_0() { - jl_Object.call(this); - this.$_043 = null; -} -let oncias_SemanticCheck$chain$lambda$_15_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_043; - var$3 = new oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0; - var$3.$_073 = var$1; - return var$2.$map11(var$3); -}; -function oncias_SemanticCheck$FlatMap() { - let a = this; jl_Object.call(a); - a.$check9 = null; - a.$f6 = null; -} -let oncias_SemanticCheck$FlatMap_run = ($this, $state, $context) => { - return oncias_SemanticCheck_run$($this, $state, $context); -}, -oncias_SemanticCheck$FlatMap_chain = ($this, $next) => { - return oncias_SemanticCheck_chain$($this, $next); -}, -oncias_SemanticCheck$FlatMap_ifOkChain = ($this, $next) => { - return oncias_SemanticCheck_ifOkChain$($this, $next); -}, -oncias_SemanticCheck$FlatMap_map = ($this, $f) => { - return oncias_SemanticCheck_map$($this, $f); -}, -oncias_SemanticCheck$FlatMap_flatMap = ($this, $f) => { - return oncias_SemanticCheck_flatMap$($this, $f); -}, -oncias_SemanticCheck$FlatMap_productPrefix = $this => { - return $rt_s(6039); -}, -oncias_SemanticCheck$FlatMap_productArity = $this => { - return 2; + return $_localctx; }, -oncias_SemanticCheck$FlatMap_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$check9; - case 1: - return $this.$f6; - default: +oncipv_Cypher5Parser_expression8 = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression8Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 184, 92); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1512); + oncipv_Cypher5Parser_expression7($this); + oavr_Recognizer_setState($this, 1517); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + var$3 = $_la - 100 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17039361, 2164326400)), Long_ZERO)) && $_la != 164) + break; + oavr_Recognizer_setState($this, 1513); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$3 = $_la - 100 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17039361, 2164326400)), Long_ZERO)) && $_la != 164) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1514); + oncipv_Cypher5Parser_expression7($this); + oavr_Recognizer_setState($this, 1519); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticCheck$FlatMap_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheck$FlatMap_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheck$FlatMap_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncias_SemanticCheck$FlatMap_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncipv_Cypher5Parser_expression7 = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression7Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 186, 93); a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticCheck$FlatMap) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$check9; - var$3 = $x$1.$check9; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1520); + oncipv_Cypher5Parser_expression6($this); + oavr_Recognizer_setState($this, 1522); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 48 && $_la != 57) { + var$3 = $_la - 99 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1, 257)), Long_ZERO)) && $_la != 222 && $_la != 260) + break e; + } + oavr_Recognizer_setState($this, 1521); + oncipv_Cypher5Parser_comparisonExpression6($this); } - if (var$3 !== null) - break b; - } - var$3 = $this.$f6; - $x$1 = $x$1.$f6; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$4 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$4 = 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$4; -}, -scm_Iterable$ = $rt_classWithoutFields(sc_IterableFactory$Delegate), -scm_Iterable$_MODULE$ = null, -scm_Iterable$_$callClinit = () => { - scm_Iterable$_$callClinit = $rt_eraseClinit(scm_Iterable$); - scm_Iterable$__clinit_(); -}, -scm_Iterable$__clinit_ = () => { - let var$1; - var$1 = new scm_Iterable$; - scm_Iterable$_$callClinit(); - sc_IterableFactory$Delegate__init_(var$1, scm_ArrayBuffer$_MODULE$); - scm_Iterable$_MODULE$ = var$1; -}, -oncia_Union$semanticCheck$lambda$_15_0 = $rt_classWithoutFields(), -oncia_Union$semanticCheck$lambda$_15_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_semanticCheck(var$1); -}, -oncia_SubqueryCall$ = $rt_classWithoutFields(), -oncia_SubqueryCall$_MODULE$ = null, -oncia_SubqueryCall$_$callClinit = () => { - oncia_SubqueryCall$_$callClinit = $rt_eraseClinit(oncia_SubqueryCall$); - oncia_SubqueryCall$__clinit_(); -}, -oncia_SubqueryCall$__clinit_ = () => { - let var$1; - var$1 = new oncia_SubqueryCall$; - oncia_SubqueryCall$_$callClinit(); - oncia_SubqueryCall$_MODULE$ = var$1; -}, -oncia_SubqueryCall$_isTransactionalSubquery = ($this, $clause) => { - return s_Option_isDefined($clause.$inTransactionsParameters()); -}, -oncia_SubqueryCall$_findTransactionalSubquery = ($this, $node) => { - let var$2; - var$2 = $node.$folder(); - $node = new oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1; - sr_ClassTag$_$callClinit(); - return onciu_Foldable$Folder_treeFind(var$2, $node, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SubqueryCall))); -}, -oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1_applyOrElse = ($this, $x1, $default) => { - if (!$rt_isInstance($x1, oncia_UpdateClause)) - return s_PartialFunction$_fallback_fn; - return jl_Boolean_valueOf(1); -}, -jl_InternalError = $rt_classWithoutFields(jl_VirtualMachineError), -jl_InternalError__init_ = ($this, $message) => { - jl_Throwable__init_0($this, $message); -}, -jl_InternalError__init_0 = var_0 => { - let var_1 = new jl_InternalError(); - jl_InternalError__init_(var_1, var_0); - return var_1; -}, -oncia_Union$returnVariables$lambda$_6_0 = $rt_classWithoutFields(), -oncia_Union$returnVariables$lambda$_6_0_apply = (var$0, var$1) => { - return var$1.$unionVariable; -}; -function oncia_UserQualifier() { - let a = this; jl_Object.call(a); - a.$username2 = null; - a.$position217 = null; -} -let oncia_UserQualifier_username = $this => { - return $this.$username2; -}, -oncia_UserQualifier_productPrefix = $this => { - return $rt_s(6040); -}, -oncia_UserQualifier_productArity = $this => { - return 1; + return $_localctx; }, -oncia_UserQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$username2; - default: +oncipv_Cypher5Parser_comparisonExpression6 = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher5Parser$ComparisonExpression6Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 188, 94); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1556); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 144, $this.$_ctx)) { + case 1: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$StringAndListComparisonContext; + var$2 = $re; + oncipv_Cypher5Parser$StringAndListComparisonContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1531); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 57: + var$2 = $re; + oavr_Recognizer_setState($this, 1529); + oavr_Parser_match($this, 57); + break f; + case 99: + var$2 = $re; + oavr_Recognizer_setState($this, 1527); + oavr_Parser_match($this, 99); + oavr_Recognizer_setState($this, 1528); + oavr_Parser_match($this, 302); + break f; + case 131: + var$2 = $re; + oavr_Recognizer_setState($this, 1530); + oavr_Parser_match($this, 131); + break f; + case 222: + var$2 = $re; + oavr_Recognizer_setState($this, 1524); + oavr_Parser_match($this, 222); + break f; + case 260: + var$2 = $re; + oavr_Recognizer_setState($this, 1525); + oavr_Parser_match($this, 260); + oavr_Recognizer_setState($this, 1526); + oavr_Parser_match($this, 302); + break f; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1533); + oncipv_Cypher5Parser_expression6($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$NullComparisonContext; + var$2 = $re; + oncipv_Cypher5Parser$NullComparisonContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1534); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 1536); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { + var$2 = $re; + oavr_Recognizer_setState($this, 1535); + oavr_Parser_match($this, 179); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1538); + oavr_Parser_match($this, 182); + break e; + case 3: + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$TypeComparisonContext; + var$2 = $re; + oncipv_Cypher5Parser$TypeComparisonContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1545); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 48: + var$2 = $re; + oavr_Recognizer_setState($this, 1544); + oavr_Parser_match($this, 48); + break g; + case 139: + var$2 = $re; + oavr_Recognizer_setState($this, 1539); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 1541); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { + var$2 = $re; + oavr_Recognizer_setState($this, 1540); + oavr_Parser_match($this, 179); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1543); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 48) { + var$2 = $re; + if ($_la != 283) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break g; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break g; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1547); + oncipv_Cypher5Parser_type($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$NormalFormComparisonContext; + var$2 = $re; + oncipv_Cypher5Parser$NormalFormComparisonContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1548); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 1550); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { + var$2 = $re; + oavr_Recognizer_setState($this, 1549); + oavr_Parser_match($this, 179); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1553); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 168 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 1552); + oncipv_Cypher5Parser_normalForm($this); + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 1555); + oavr_Parser_match($this, 178); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; } - return sr_Statics_ioobe($x$1); -}, -oncia_UserQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UserQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $re; }, -oncia_UserQualifier_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_normalForm = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NormalFormContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 190, 95); a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_UserQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$username2; - $x$1 = $x$1.$username2; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1558); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 168 | 0; + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else + $this.$_errHandler.$recoverInline($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; - } - return var$3; -}, -oncia_UserQualifier_dup = ($this, $children) => { - return oncia_UserQualifier__init_0($children.$head(), $this.$position217); -}, -oncia_UserQualifier__init_ = ($this, $username, $position) => { - $this.$username2 = $username; - $this.$position217 = $position; -}, -oncia_UserQualifier__init_0 = (var_0, var_1) => { - let var_2 = new oncia_UserQualifier(); - oncia_UserQualifier__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_ExecutePrivilegeQualifier = $rt_classWithoutFields(0), -oncia_FunctionPrivilegeQualifier = $rt_classWithoutFields(0); -function oncia_FunctionQualifier() { - let a = this; jl_Object.call(a); - a.$glob1 = null; - a.$position303 = null; -} -let oncia_FunctionQualifier_productPrefix = $this => { - return $rt_s(6041); -}, -oncia_FunctionQualifier_productArity = $this => { - return 1; -}, -oncia_FunctionQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$glob1; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncia_FunctionQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_FunctionQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_FunctionQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncia_FunctionQualifier_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_expression6 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression6Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 192, 96); a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_FunctionQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$glob1; - $x$1 = $x$1.$glob1; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1560); + oncipv_Cypher5Parser_expression5($this); + oavr_Recognizer_setState($this, 1565); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 85 && $_la != 161 && $_la != 199)) { + oavr_Recognizer_setState($this, 1561); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 85 && $_la != 161 && $_la != 199) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1562); + oncipv_Cypher5Parser_expression5($this); + oavr_Recognizer_setState($this, 1567); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; - } - return var$3; -}, -oncia_FunctionQualifier_dup = ($this, $children) => { - return oncia_FunctionQualifier__init_0($children.$head(), $this.$position303); -}, -oncia_FunctionQualifier__init_ = ($this, $glob, $position) => { - $this.$glob1 = $glob; - $this.$position303 = $position; -}, -oncia_FunctionQualifier__init_0 = (var_0, var_1) => { - let var_2 = new oncia_FunctionQualifier(); - oncia_FunctionQualifier__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_ProcedurePrivilegeQualifier = $rt_classWithoutFields(0); -function oncia_ProcedureQualifier() { - let a = this; jl_Object.call(a); - a.$glob3 = null; - a.$position227 = null; -} -let oncia_ProcedureQualifier_productPrefix = $this => { - return $rt_s(6042); -}, -oncia_ProcedureQualifier_productArity = $this => { - return 1; -}, -oncia_ProcedureQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$glob3; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncia_ProcedureQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ProcedureQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_ProcedureQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncia_ProcedureQualifier_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_expression5 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression5Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 194, 97); a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_ProcedureQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$glob3; - $x$1 = $x$1.$glob3; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1568); + oncipv_Cypher5Parser_expression4($this); + oavr_Recognizer_setState($this, 1573); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 82 && $_la != 162 && $_la != 271)) { + oavr_Recognizer_setState($this, 1569); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 82 && $_la != 162 && $_la != 271) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1570); + oncipv_Cypher5Parser_expression4($this); + oavr_Recognizer_setState($this, 1575); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; - } - return var$3; -}, -oncia_ProcedureQualifier_dup = ($this, $children) => { - return oncia_ProcedureQualifier__init_0($children.$head(), $this.$position227); -}, -oncia_ProcedureQualifier__init_ = ($this, $glob, $position) => { - $this.$glob3 = $glob; - $this.$position227 = $position; -}, -oncia_ProcedureQualifier__init_0 = (var_0, var_1) => { - let var_2 = new oncia_ProcedureQualifier(); - oncia_ProcedureQualifier__init_(var_2, var_0, var_1); - return var_2; -}, -oncia_SettingPrivilegeQualifier = $rt_classWithoutFields(0); -function oncia_SettingQualifier() { - let a = this; jl_Object.call(a); - a.$glob2 = null; - a.$position299 = null; -} -let oncia_SettingQualifier_productPrefix = $this => { - return $rt_s(6043); -}, -oncia_SettingQualifier_productArity = $this => { - return 1; -}, -oncia_SettingQualifier_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$glob2; - default: + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return sr_Statics_ioobe($x$1); -}, -oncia_SettingQualifier_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SettingQualifier_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_SettingQualifier_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); + return $_localctx; }, -oncia_SettingQualifier_equals = ($this, $x$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_expression4 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression4Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 196, 98); a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_SettingQualifier) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$glob2; - $x$1 = $x$1.$glob2; - if (var$2 !== null) { - if (!jl_String_equals(var$2, $x$1)) - break b; - else + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1576); + oncipv_Cypher5Parser_expression3($this); + oavr_Recognizer_setState($this, 1581); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 203) { + oavr_Recognizer_setState($this, 1577); + oavr_Parser_match($this, 203); + oavr_Recognizer_setState($this, 1578); + oncipv_Cypher5Parser_expression3($this); + oavr_Recognizer_setState($this, 1583); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; break c; + } } - if ($x$1 !== null) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$3 = 1; - break a; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$3 = 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$3; -}, -oncia_SettingQualifier_dup = ($this, $children) => { - return oncia_SettingQualifier__init_0($children.$head(), $this.$position299); -}, -oncia_SettingQualifier__init_ = ($this, $glob, $position) => { - $this.$glob2 = $glob; - $this.$position299 = $position; -}, -oncia_SettingQualifier__init_0 = (var_0, var_1) => { - let var_2 = new oncia_SettingQualifier(); - oncia_SettingQualifier__init_(var_2, var_0, var_1); - return var_2; -}, -oncias_SemanticAnalysisTooling$ = $rt_classWithoutFields(), -oncias_SemanticAnalysisTooling$_MODULE$ = null, -oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScope = null, -oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope = null, -oncias_SemanticAnalysisTooling$_$callClinit = () => { - oncias_SemanticAnalysisTooling$_$callClinit = $rt_eraseClinit(oncias_SemanticAnalysisTooling$); - oncias_SemanticAnalysisTooling$__clinit_(); -}, -oncias_SemanticAnalysisTooling$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticAnalysisTooling$; - oncias_SemanticAnalysisTooling$_$callClinit(); - oncias_SemanticAnalysisTooling$_MODULE$ = var$1; - oncias_package$_$callClinit(); - oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScope = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0); - oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1); -}, -oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope0 = $this => { - oncias_SemanticAnalysisTooling$_$callClinit(); - return oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope; -}; -function oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_71_0() { - jl_Object.call(this); - this.$_01064 = null; -} -let oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_71_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01064; - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_recordCurrentScope(var$1, var$2)); -}, -oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0 = $rt_classWithoutFields(), -oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0_apply = (var$0, var$1) => { - return var$1.$reportAs.$name4; -}, -sc_BufferedIterator = $rt_classWithoutFields(0); -function sc_Iterator$$anon$1() { - let a = this; sc_AbstractIterator.call(a); - a.$hd0 = null; - a.$hdDefined = 0; - a.$$outer31 = null; -} -let sc_Iterator$$anon$1_hasNext = $this => { - if (!$this.$hdDefined && !scc_JavaCollectionWrappers$JIteratorWrapper_hasNext($this.$$outer31)) - return 0; - return 1; + return $_localctx; }, -sc_Iterator$$anon$1_next = $this => { - if (!$this.$hdDefined) - return scc_JavaCollectionWrappers$JIteratorWrapper_next($this.$$outer31); - $this.$hdDefined = 0; - return $this.$hd0; -}; -function oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1() { - sr_AbstractPartialFunction.call(this); - this.$baseState$1 = null; -} -let oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4, var$5, $p, var$7, var$8; - if ($x1 instanceof oncie_Expression) { - $default = $x1; - oncief_Exists$_$callClinit(); - onciu_InputPosition$_$callClinit(); - var$3 = onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$); - var$4 = jl_String_split($rt_s(5711), $rt_s(6044)); - if (var$4.data.length == 1) { - var$5 = new oncie_FunctionName; - $p = new oncie_Namespace; - oncie_Namespace$_$callClinit(); - oncie_Namespace__init_($p, oncie_Namespace$_apply$default$1(oncie_Namespace$_MODULE$), var$3); - oncie_FunctionName__init_(var$5, $p, $rt_s(5711), var$3); - } else { - var$5 = new oncie_FunctionName; - var$7 = new oncie_Namespace; - s_Predef$_$callClinit(); - oncie_Namespace__init_(var$7, sc_IterableOnceOps_toList$(s_LowPriorityImplicits_wrapRefArray(s_Predef$_MODULE$, sc_ArrayOps$_dropRight$extension(sc_ArrayOps$_MODULE$, var$4, 1))), var$3); - if (!(!jlr_Array_getLength(var$4) ? 0 : 1)) { - $default = new ju_NoSuchElementException; - jl_Throwable__init_0($default, $rt_s(6045)); - $rt_throw($default); - } - oncie_FunctionName__init_(var$5, var$7, sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, var$4, jlr_Array_getLength(var$4) - 1 | 0), var$3); - } - a: { - $p = var$5.$namespace3; - var$8 = var$5.$name7; - if ($default instanceof oncie_FunctionInvocation) { - $default = $default; - var$7 = $default.$functionName2; - var$5 = $default.$args0; - if (var$7 !== null) - b: { - var$3 = var$7.$namespace3; - if (jl_String_equalsIgnoreCase(var$8, var$7.$name7)) { - c: { - if (var$3 !== null) { - if (!oncie_Namespace_equals(var$3, $p)) - break b; - else - break c; - } - if ($p !== null) - break b; +oncipv_Cypher5Parser_expression3 = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression3Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 198, 99); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1587); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 148, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1585); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 161 && $_la != 199) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1586); + oncipv_Cypher5Parser_expression2($this); + break e; + default: + break e; } - $default = s_Some__init_(var$5.$head()); - break a; + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1584); + oncipv_Cypher5Parser_expression2($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } } - } - $default = s_None$_MODULE$; - } - if (!s_Option_isEmpty($default)) - return new oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0; - } - if ($x1 instanceof oncie_FunctionInvocation) { - $default = $x1; - $p = $default.$functionName2; - var$3 = $default.$args0; - if ($p !== null && jl_String_equals($rt_s(5880), $p.$name7) && var$3 !== null) { - s_package$_$callClinit(); - s_package$_IndexedSeq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$3); - if (!var$3.$lengthCompare(1)) { - $p = var$3.$apply1(0); - if ($p instanceof oncie_PatternExpression) { - $default = $p; - oncifp_PatternExpressionInNonExistenceCheck$_$callClinit(); - if (!oncifp_ExpectedBooleanTypeCheck_isExpectedTypeBoolean$(oncifp_PatternExpressionInNonExistenceCheck$_MODULE$, oncifp_InitialState_semanticTable($this.$baseState$1), $default)) { - $x1 = new oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1; - $x1.$_082 = $default; - return $x1; - } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - } - } - } - if ($x1 instanceof oncie_PatternExpression) { - $x1 = $x1; - oncifp_PatternExpressionInNonExistenceCheck$_$callClinit(); - if (!oncifp_ExpectedBooleanTypeCheck_isExpectedTypeBoolean$(oncifp_PatternExpressionInNonExistenceCheck$_MODULE$, oncifp_InitialState_semanticTable($this.$baseState$1), $x1)) { - $default = new oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2; - $default.$_0732 = $x1; - return $default; - } - } - return s_PartialFunction$_fallback_fn; -}; -function oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1() { - sr_AbstractPartialFunction.call(this); - this.$baseState$2 = null; -} -let oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4; - if ($x1 instanceof oncie_Expression) { - $x1 = $x1; - $default = oncifp_InitialState_semanticTable($this.$baseState$2); - var$3 = $default.$types2; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - var$4 = var$3.$get2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $x1)); - var$3 = new oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0; - var$3.$_0332 = $default; - var$3.$_1120 = $x1; - if (s_Option_exists(var$4, var$3) && !($x1 instanceof oncie_PatternExpression)) { - $default = new oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0; - $default.$_0856 = $x1; - return $default; - } - } - return s_PartialFunction$_fallback_fn; -}; -function oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer16 = null; - a.$semanticTable$10 = null; - a.$errorMessageProvider$1 = null; -} -let oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1_applyOrElse = ($this, $x1, $default) => { - if ($rt_isInstance($x1, oncia_CreateOrInsert)) { - $x1 = $x1; - $default = new oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0; - $default.$_0923 = $this; - $default.$_1324 = $x1; - return $default; - } - if ($x1 instanceof oncia_Merge) { - $x1 = $x1; - oncia_Merge$SelfReference$_$callClinit(); - if (onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6_errorIn$(oncia_Merge$SelfReference$_MODULE$, $this.$$outer16.$cypherVersion2)) { - $default = new oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1; - $default.$_0418 = $this; - $default.$_1153 = $x1; - return $default; - } - } - return s_PartialFunction$_fallback_fn; -}; -function oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer19 = null; - a.$semanticTable$4 = null; -} -let oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1_applyOrElse = ($this, $x1, $default) => { - if ($x1 instanceof oncia_Insert) { - $x1 = $x1; - $default = new oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0; - $default.$_0485 = $this; - $default.$_1170 = $x1; - return $default; - } - if ($x1 instanceof oncia_Create) { - $x1 = $x1; - oncia_Create$SelfReferenceAcrossPatterns$_$callClinit(); - if (onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6_errorIn$(oncia_Create$SelfReferenceAcrossPatterns$_MODULE$, $this.$$outer19.$cypherVersion3)) { - $default = new oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1; - $default.$_01169 = $this; - $default.$_1391 = $x1; - return $default; - } - } - return s_PartialFunction$_fallback_fn; -}; -function oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_75_0() { - let a = this; jl_Object.call(a); - a.$_0870 = null; - a.$_1298 = null; - a.$_296 = null; -} -let oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_75_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0870; - var$3 = var$0.$_1298; - var$4 = var$0.$_296; - if (var$1.$features.$contains(var$2)) { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } else { - oncias_SemanticCheckResult$_$callClinit(); - var$5 = oncias_SemanticCheckResult$_MODULE$; - oncias_FeatureError$_$callClinit(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$3), $rt_s(6046)), var$2), 46); - var$1 = oncias_SemanticCheckResult$_error(var$5, var$1, oncias_FeatureError__init_(null, jl_AbstractStringBuilder_toString(var$6), var$2, var$4)); - } - return var$1; -}; -function oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0() { - jl_Object.call(this); - this.$_0564 = null; -} -let oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0564; - oncia_SingleQuery$_$callClinit(); - return s_Option_map(oncia_SingleQuery$_extractGraphSelection(oncia_SingleQuery$_MODULE$, var$1), new oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0); -}; -function oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1() { - jl_Object.call(this); - this.$_01088 = null; -} -let oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_01088; - oncia_SingleQuery$_$callClinit(); - var$2 = new oncia_SingleQuery$PartitionedClauses; - var$3 = s_None$_MODULE$; - oncia_SingleQuery$PartitionedClauses__init_0(var$2, var$3, var$3, var$3, var$1); - return var$2; -}, -onciu_StepSequencer$$anonfun$orderSteps$16$lambda$_34_0 = $rt_classWithoutFields(), -onciu_StepSequencer$$anonfun$orderSteps$16$lambda$_34_0_apply = (var$0, var$1) => { - return var$1.$_2(); -}, -onciu_StepSequencer$$anonfun$orderSteps$8$lambda$_26_0 = $rt_classWithoutFields(), -onciu_StepSequencer$$anonfun$orderSteps$8$lambda$_26_0_apply = (var$0, var$1) => { - return (su_Either_toOption(var$1.$_2())).$get1(); -}, -jnc_CoderMalfunctionError = $rt_classWithoutFields(jl_Error), -oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0 = $rt_classWithoutFields(), -oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0_apply = (var$0, var$1) => { - return var$1.$expression(); -}, -oncie_containsAggregate$ = $rt_classWithoutFields(), -oncie_containsAggregate$_MODULE$ = null, -oncie_containsAggregate$_$callClinit = () => { - oncie_containsAggregate$_$callClinit = $rt_eraseClinit(oncie_containsAggregate$); - oncie_containsAggregate$__clinit_(); -}, -oncie_containsAggregate$__clinit_ = () => { - let var$1; - var$1 = new oncie_containsAggregate$; - oncie_containsAggregate$_$callClinit(); - oncie_containsAggregate$_MODULE$ = var$1; -}, -oncie_containsAggregate$_apply = ($this, $v1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(onciu_Foldable$Folder_treeFold(onciu_Foldable_folder$($v1), jl_Boolean_valueOf(0), new oncie_containsAggregate$$anonfun$apply$1))); -}, -oncia_ExternalAuth$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_ExternalAuth$$anonfun$2_applyOrElse = ($this, $x, $default) => { - $x = $x; - if ($x instanceof oncia_AuthId) - $default = $x.$id1; - return $default; -}; -function onih_Strings$codePoints$lambda$_5_0() { - jl_Object.call(this); - this.$_01188 = null; -} -let jus_StreamSupport = $rt_classWithoutFields(), -onih_Strings$codePoints$lambda$_5_1 = $rt_classWithoutFields(), -onih_Strings$codePoints$lambda$_5_1_applyAsInt = (var$0, var$1) => { - return var$1.$value4; -}, -oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - var$1 = var$1; - oncifp_ResolvedFunctionInvocation$_$callClinit(); - if (var$1 !== null) { - var$2 = var$1.$_1(); - var$3 = var$1.$_2(); - if (var$2 !== null && var$3 !== null && var$3.$sensitive) { - oncifp_SensitiveParameterRewriter$_$callClinit(); - var$1 = oncifp_SensitiveParameterRewriter$_MODULE$.$apply2(var$2); - break a; - } - } - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = var$1.$_1(); - } - return var$1; -}; -function oncia_Union$checkRecursively$lambda$_13_0() { - let a = this; jl_Object.call(a); - a.$_0455 = null; - a.$_1158 = null; -} -let oncia_Union$checkRecursively$lambda$_13_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = var$0.$_0455; - var$3 = var$0.$_1158; - var$4 = s_Tuple2__init_(var$2.$lhs(), var$2); - var$5 = var$4.$_10; - if (var$5 instanceof oncia_SingleQuery) { - oncias_package$_$callClinit(); - var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } else if (var$5 instanceof oncia_UnionAll && var$4.$_20 instanceof oncia_UnionAll) { - oncias_package$_$callClinit(); - var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } else if (var$5 instanceof oncia_UnionDistinct && var$4.$_20 instanceof oncia_UnionDistinct) { - oncias_package$_$callClinit(); - var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } else if (var$5 instanceof oncia_ProjectingUnionAll && var$4.$_20 instanceof oncia_ProjectingUnionAll) { - oncias_package$_$callClinit(); - var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } else if (var$5 instanceof oncia_ProjectingUnionDistinct && var$4.$_20 instanceof oncia_ProjectingUnionDistinct) { - oncias_package$_$callClinit(); - var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } else { - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = new s_Some; - oncias_SemanticError$_$callClinit(); - s_Some__init_0(var$5, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6047), var$2.$position())); - var$6 = oncias_package$_liftSemanticErrorDefOption(var$4, var$5); - } - var$4 = var$2.$lhs(); - if (var$4 instanceof oncia_SingleQuery) - var$4 = oncia_Union_checkSingleQuery$1(var$2, var$4, var$3); - else { - if (!$rt_isInstance(var$4, oncia_Union)) - $rt_throw(s_MatchError__init_(var$4)); - var$4 = var$4; - var$5 = new oncia_Union$checkNestedQuery$1$lambda$_44_0; - var$5.$_0146 = var$4; - var$5.$_157 = var$3; - var$4 = var$2.$withScopedState(var$5); - } - var$5 = oncias_SemanticCheck_chain$(var$6, var$4); - oncias_SemanticCheck$_$callClinit(); - var$6 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncia_Union$$anonfun$checkRecursively$6$lambda$_50_0; - var$4.$_0369 = var$1; - var$6 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$5, oncias_SemanticCheck$_fromState(var$6, var$4)), oncia_Union_checkSingleQuery$1(var$2, var$2.$rhs(), var$3)), var$2.$checkColumnNamesAgree()); - oncias_package$_$callClinit(); - var$1 = oncias_package$_MODULE$; - var$3 = new oncia_Union$defineUnionVariables$lambda$_32_0; - var$3.$_035 = var$2; - var$3 = oncias_SemanticCheck_chain$(var$6, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$1, var$3)); - oncias_SemanticState$_$callClinit(); - var$5 = oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$2)); - var$1 = oncias_SemanticCheck$_MODULE$; - var$7 = !var$2.$differentReturnOrderAllowed() && (sc_IterableOnceOps_nonEmpty$(oncia_Query_returnColumns$(var$2.$rhs())) && sc_IterableOnceOps_nonEmpty$((var$2.$lhs()).$returnColumns()) && !sci_List_equals(sci_List_map(oncia_Query_returnColumns$(var$2.$rhs()), new oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_0), sci_List_map((var$2.$lhs()).$returnColumns(), new oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_1)) ? 1 : 0) ? 1 : 0; - var$3 = new oncia_Union$$anonfun$checkRecursively$6$lambda$_50_1; - var$3.$_01004 = var$2; - return oncias_SemanticCheck_chain$(var$5, oncias_SemanticCheck$_when(var$1, var$7, var$3)); -}, -oavr_ANTLRErrorListener = $rt_classWithoutFields(0), -oavr_BaseErrorListener = $rt_classWithoutFields(), -oavr_BaseErrorListener_reportAmbiguity = ($this, $recognizer, $dfa, $startIndex, $stopIndex, $exact, $ambigAlts, $configs) => { - return; -}, -oavr_BaseErrorListener_reportAttemptingFullContext = ($this, $recognizer, $dfa, $startIndex, $stopIndex, $conflictingAlts, $configs) => { - return; -}, -oavr_BaseErrorListener_reportContextSensitivity = ($this, $recognizer, $dfa, $startIndex, $stopIndex, $prediction, $configs) => { - return; -}; -function oncip_SyntaxErrorListener() { - let a = this; oavr_BaseErrorListener.call(a); - a.$exceptionFactory10 = null; - a.$_syntaxErrors = null; -} -let oncip_SyntaxErrorListener_syntaxError = ($this, $recognizer, $offendingSymbol, $line, $charPositionInLine, $msg, $e) => { - let $position; - if ($rt_isInstance($offendingSymbol, oncipl_CypherToken)) - $position = $offendingSymbol.$position(); - else { - onciu_InputPosition$_$callClinit(); - $position = onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, ($recognizer.$getInputStream()).$index0(), $line, $charPositionInLine); - } - $this.$_syntaxErrors = $this.$_syntaxErrors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory10, $msg, $position)); -}; -function oavr_Recognizer() { - let a = this; jl_Object.call(a); - a.$_listeners = null; - a.$_interp = null; - a.$_stateNumber = 0; -} -let oavr_Recognizer_tokenTypeMapCache = null, -oavr_Recognizer_ruleIndexMapCache = null, -oavr_Recognizer_$callClinit = () => { - oavr_Recognizer_$callClinit = $rt_eraseClinit(oavr_Recognizer); - oavr_Recognizer__clinit_(); -}, -oavr_Recognizer__init_ = $this => { - let var$1; - oavr_Recognizer_$callClinit(); - var$1 = new oavr_Recognizer$1; - var$1.$this$025 = $this; - var$1.$array10 = $rt_createArray(jl_Object, 0); - juc_CopyOnWriteArrayList_add(var$1, oavr_ConsoleErrorListener_INSTANCE); - $this.$_listeners = var$1; - $this.$_stateNumber = (-1); -}, -oavr_Recognizer_getInterpreter = $this => { - return $this.$_interp; -}, -oavr_Recognizer_addErrorListener = ($this, $listener) => { - let var$2; - if ($listener !== null) { - juc_CopyOnWriteArrayList_add($this.$_listeners, $listener); - return; - } - var$2 = new jl_NullPointerException; - jl_Throwable__init_0(var$2, $rt_s(6048)); - $rt_throw(var$2); -}, -oavr_Recognizer_removeErrorListeners = $this => { - let var$1; - var$1 = $this.$_listeners; - if (!(var$1.$array10.data.length ? 0 : 1)) - var$1.$array10 = $rt_createArray(jl_Object, 0); -}, -oavr_Recognizer_getErrorListeners = $this => { - return $this.$_listeners; -}, -oavr_Recognizer_getErrorListenerDispatch = $this => { - let var$1, var$2; - var$1 = new oavr_ProxyErrorListener; - var$2 = $this.$_listeners; - if (var$2 !== null) { - var$1.$delegates = var$2; - return var$1; - } - var$2 = new jl_NullPointerException; - jl_Throwable__init_0(var$2, $rt_s(6049)); - $rt_throw(var$2); -}, -oavr_Recognizer_sempred = ($this, $_localctx, $ruleIndex, $actionIndex) => { - return 1; -}, -oavr_Recognizer_action = ($this, $_localctx, $ruleIndex, $actionIndex) => { - return; -}, -oavr_Recognizer_getState = $this => { - return $this.$_stateNumber; -}, -oavr_Recognizer_setState = ($this, $atnState) => { - $this.$_stateNumber = $atnState; -}, -oavr_Recognizer__clinit_ = () => { - oavr_Recognizer_tokenTypeMapCache = ju_WeakHashMap__init_(); - oavr_Recognizer_ruleIndexMapCache = ju_WeakHashMap__init_(); -}; -function oavra_ATNSimulator() { - let a = this; jl_Object.call(a); - a.$atn = null; - a.$sharedContextCache = null; -} -let oavra_ATNSimulator_ERROR = null, -oavra_ATNSimulator_$callClinit = () => { - oavra_ATNSimulator_$callClinit = $rt_eraseClinit(oavra_ATNSimulator); - oavra_ATNSimulator__clinit_(); -}, -oavra_ATNSimulator__init_ = ($this, $atn, $sharedContextCache) => { - oavra_ATNSimulator_$callClinit(); - $this.$atn = $atn; - $this.$sharedContextCache = $sharedContextCache; -}, -oavra_ATNSimulator__clinit_ = () => { - let var$1; - var$1 = oavrd_DFAState__init_(oavra_ATNConfigSet__init_0()); - oavra_ATNSimulator_ERROR = var$1; - var$1.$stateNumber0 = 2147483647; -}; -function oavra_ParserATNSimulator() { - let a = this; oavra_ATNSimulator.call(a); - a.$parser = null; - a.$decisionToDFA0 = null; - a.$mode1 = null; - a.$mergeCache = null; - a.$_input1 = null; - a.$_startIndex = 0; - a.$_outerContext = null; - a.$_dfa = null; -} -let oavra_ParserATNSimulator_debug = 0, -oavra_ParserATNSimulator_trace_atn_sim = 0, -oavra_ParserATNSimulator_dfa_debug = 0, -oavra_ParserATNSimulator_retry_debug = 0, -oavra_ParserATNSimulator_TURN_OFF_LR_LOOP_ENTRY_BRANCH_OPT = 0, -oavra_ParserATNSimulator_$assertionsDisabled = 0, -oavra_ParserATNSimulator_$callClinit = () => { - oavra_ParserATNSimulator_$callClinit = $rt_eraseClinit(oavra_ParserATNSimulator); - oavra_ParserATNSimulator__clinit_(); -}, -oavra_ParserATNSimulator__init_0 = ($this, $parser, $atn, $decisionToDFA, $sharedContextCache) => { - oavra_ParserATNSimulator_$callClinit(); - oavra_ATNSimulator__init_($this, $atn, $sharedContextCache); - $this.$mode1 = oavra_PredictionMode_LL; - $this.$parser = $parser; - $this.$decisionToDFA0 = $decisionToDFA; -}, -oavra_ParserATNSimulator__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oavra_ParserATNSimulator(); - oavra_ParserATNSimulator__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; -}, -oavra_ParserATNSimulator_reset = $this => { - return; -}, -oavra_ParserATNSimulator_adaptivePredict = ($this, $input, $decision, $outerContext) => { - let $s0_closure, $dfa, var$6, $s0, $alt, $$je; - oavra_ParserATNSimulator_$callClinit(); - if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_trace_atn_sim)) { - $s0_closure = jl_System_out(); - $dfa = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($dfa); - jl_AbstractStringBuilder_append($dfa, $rt_s(6050)); - $dfa = jl_StringBuilder_append0($dfa, $decision); - jl_AbstractStringBuilder_append($dfa, $rt_s(6051)); - jl_AbstractStringBuilder_append($dfa, oavra_ParserATNSimulator_getLookaheadName($this, $input)); - jl_AbstractStringBuilder_append($dfa, $rt_s(6052)); - $dfa = jl_StringBuilder_append0($dfa, (oavr_CommonTokenStream_LT($input, 1)).$getLine0()); - jl_AbstractStringBuilder_append($dfa, $rt_s(91)); - otcic_JsConsolePrintStream_println($s0_closure, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($dfa, (oavr_CommonTokenStream_LT($input, 1)).$getCharPositionInLine()))); - } - $this.$_input1 = $input; - var$6 = $input.$p; - $this.$_startIndex = var$6; - $this.$_outerContext = $outerContext; - $dfa = $this.$decisionToDFA0.data[$decision]; - $this.$_dfa = $dfa; - a: { - try { - $s0 = !oavrd_DFA_isPrecedenceDfa($dfa) ? $dfa.$s0 : oavrd_DFA_getPrecedenceStartState($dfa, oavr_Parser_getPrecedence($this.$parser)); - if ($s0 === null) { - if ($outerContext === null) - $outerContext = oavr_ParserRuleContext_EMPTY; - $s0_closure = oavra_ParserATNSimulator_computeStartState($this, $dfa.$atnStartState, oavr_ParserRuleContext_EMPTY, 0); - if (!oavrd_DFA_isPrecedenceDfa($dfa)) { - $s0 = oavra_ParserATNSimulator_addDFAState($this, $dfa, oavrd_DFAState__init_($s0_closure)); - $dfa.$s0 = $s0; - } else { - $dfa.$s0.$configs = $s0_closure; - $s0 = oavra_ParserATNSimulator_addDFAState($this, $dfa, oavrd_DFAState__init_(oavra_ParserATNSimulator_applyPrecedenceFilter($this, $s0_closure))); - oavrd_DFA_setPrecedenceStartState($dfa, oavr_Parser_getPrecedence($this.$parser), $s0); + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - $alt = oavra_ParserATNSimulator_execATN($this, $dfa, $s0, $input, var$6, $outerContext); - if (oavra_ParserATNSimulator_debug) - otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(6053)), oavrd_DFA_toString($dfa, $this.$parser.$getVocabulary())))); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $outerContext = $$je; - + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - $this.$mergeCache = null; - $this.$_dfa = null; - oavr_BufferedTokenStream_seek($input, var$6); - $rt_throw($outerContext); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $this.$mergeCache = null; - $this.$_dfa = null; - oavr_BufferedTokenStream_seek($input, var$6); - return $alt; + return $_localctx; }, -oavra_ParserATNSimulator_execATN = ($this, $dfa, $s0, $input, $startIndex, $outerContext) => { - let $conflictingAlts, $D, $t, $e, var$10, $stopIndex, $alts, $conflictIndex, $s0_closure, $alt; - oavra_ParserATNSimulator_$callClinit(); - if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_trace_atn_sim)) { - $conflictingAlts = jl_System_out(); - $D = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($D); - jl_AbstractStringBuilder_append($D, $rt_s(6054)); - $D = jl_StringBuilder_append0($D, $dfa.$decision); - jl_AbstractStringBuilder_append($D, $rt_s(6055)); - $D = jl_StringBuilder_append($D, $s0); - jl_AbstractStringBuilder_append($D, $rt_s(6056)); - jl_AbstractStringBuilder_append($D, oavra_ParserATNSimulator_getLookaheadName($this, $input)); - jl_AbstractStringBuilder_append($D, $rt_s(6052)); - $D = jl_StringBuilder_append0($D, (oavr_CommonTokenStream_LT($input, 1)).$getLine0()); - jl_AbstractStringBuilder_append($D, $rt_s(91)); - otcic_JsConsolePrintStream_println($conflictingAlts, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($D, (oavr_CommonTokenStream_LT($input, 1)).$getCharPositionInLine()))); - } - $t = oavr_BufferedTokenStream_LA($input, 1); - while (true) { - $D = oavra_ParserATNSimulator_getExistingTargetState($this, $s0, $t); - if ($D === null) { - $e = oavra_ParserATNSimulator_computeReachSet($this, $s0.$configs, $t, 0); - if ($e === null) { - oavra_ATNSimulator_$callClinit(); - oavra_ParserATNSimulator_addDFAEdge($this, $dfa, $s0, $t, oavra_ATNSimulator_ERROR); - $D = oavra_ATNSimulator_ERROR; - } else { - var$10 = oavrd_DFAState__init_($e); - $stopIndex = oavra_ParserATNSimulator_getUniqueAlt($e); - if (oavra_ParserATNSimulator_debug) { - $D = oavra_PredictionMode_getConflictingAltSubsets($e); - $conflictingAlts = jl_System_out(); - $alts = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($alts); - jl_AbstractStringBuilder_append($alts, $rt_s(6057)); - $alts = jl_StringBuilder_append($alts, $D); - jl_AbstractStringBuilder_append($alts, $rt_s(6058)); - $alts = jl_StringBuilder_append($alts, $e); - jl_AbstractStringBuilder_append($alts, $rt_s(6059)); - $alts = jl_StringBuilder_append0($alts, $stopIndex); - jl_AbstractStringBuilder_append($alts, $rt_s(6060)); - $D = jl_StringBuilder_append4($alts, oavra_PredictionMode_allSubsetsConflict($D)); - jl_AbstractStringBuilder_append($D, $rt_s(6061)); - otcic_JsConsolePrintStream_println($conflictingAlts, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($D, oavra_ParserATNSimulator_getConflictingAlts($this, $e)))); - } - if ($stopIndex) { - var$10.$isAcceptState = 1; - var$10.$configs.$uniqueAlt = $stopIndex; - var$10.$prediction = $stopIndex; - } else { - $D = $this.$mode1; - if (oavra_PredictionMode_allConfigsInRuleStopStates($e)) - $conflictIndex = 1; - else { - if ($D !== oavra_PredictionMode_SLL) - $conflictingAlts = $e; - else if (!$e.$hasSemanticContext) - $conflictingAlts = $e; - else { - $conflictingAlts = oavra_ATNConfigSet__init_0(); - $alts = oavra_ATNConfigSet_iterator($e); - while (ju_AbstractList$1_hasNext($alts)) { - oavra_ATNConfigSet_add0($conflictingAlts, oavra_ATNConfig__init_5(ju_AbstractList$1_next($alts), oavra_SemanticContext$Empty_Instance)); - } - } - $D = ju_AbstractList_iterator(oavra_PredictionMode_getConflictingAltSubsets($conflictingAlts)); - a: { - while (ju_AbstractList$1_hasNext($D)) { - if (ju_BitSet_cardinality(ju_AbstractList$1_next($D)) > 1) { - $conflictIndex = 1; - break a; - } - } - $conflictIndex = 0; - } - b: { - if ($conflictIndex) { - $D = ju_HashMap$2_iterator(ju_HashMap_values(oavra_PredictionMode_getStateToAltMap($conflictingAlts))); - c: { - while (ju_HashMap$AbstractMapIterator_hasNext($D)) { - if (ju_BitSet_cardinality(ju_HashMap$ValueIterator_next($D)) == 1) { - $conflictIndex = 1; - break c; - } - } - $conflictIndex = 0; - } - if (!$conflictIndex) { - $conflictIndex = 1; - break b; - } +oncipv_Cypher5Parser_expression2 = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression2Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 200, 100); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1589); + oncipv_Cypher5Parser_expression1($this); + oavr_Recognizer_setState($this, 1593); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 149, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1590); + oncipv_Cypher5Parser_postFix($this); } - $conflictIndex = 0; + oavr_Recognizer_setState($this, 1595); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 149, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } } - if ($conflictIndex) { - var$10.$configs.$conflictingAlts = oavra_ParserATNSimulator_getConflictingAlts($this, $e); - var$10.$requiresFullContext = 1; - var$10.$isAcceptState = 1; - var$10.$prediction = ju_BitSet_nextSetBit(var$10.$configs.$conflictingAlts, 0); - } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - if (var$10.$isAcceptState && var$10.$configs.$hasSemanticContext) { - oavra_ParserATNSimulator_predicateDFAState($this, var$10, oavra_ATN_getDecisionState($this.$atn, $dfa.$decision)); - if (var$10.$predicates !== null) - var$10.$prediction = 0; + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } - $D = oavra_ParserATNSimulator_addDFAEdge($this, $dfa, $s0, $t, var$10); } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - oavra_ATNSimulator_$callClinit(); - if ($D === oavra_ATNSimulator_ERROR) - break; - if ($D.$requiresFullContext && $this.$mode1 !== oavra_PredictionMode_SLL) { - $conflictingAlts = $D.$configs.$conflictingAlts; - if ($D.$predicates !== null) { - if (oavra_ParserATNSimulator_debug) - otcic_JsConsolePrintStream_println(jl_System_out(), $rt_s(6062)); - $conflictIndex = $input.$p; - $stopIndex = $rt_compare($conflictIndex, $startIndex); - if ($stopIndex) - oavr_BufferedTokenStream_seek($input, $startIndex); - $conflictingAlts = oavra_ParserATNSimulator_evalSemanticContext0($this, $D.$predicates, $outerContext, 1); - if (ju_BitSet_cardinality($conflictingAlts) == 1) { - if (oavra_ParserATNSimulator_debug) - otcic_JsConsolePrintStream_println(jl_System_out(), $rt_s(6063)); - return ju_BitSet_nextSetBit($conflictingAlts, 0); + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_postFix = $this => { + let $_localctx, var$2, $re, $_la, var$5, $$je; + $_localctx = new oncipv_Cypher5Parser$PostFixContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 202, 101); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1611); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 152, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$PropertyPostfixContext; + var$2 = $re; + oncipv_Cypher5Parser$PropertyPostfixContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1596); + oncipv_Cypher5Parser_property($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$LabelPostfixContext; + var$2 = $re; + oncipv_Cypher5Parser$LabelPostfixContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1597); + oncipv_Cypher5Parser_labelExpression($this); + break e; + case 3: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$IndexPostfixContext; + var$2 = $re; + oncipv_Cypher5Parser$IndexPostfixContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1598); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 1599); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1600); + oavr_Parser_match($this, 216); + break e; + case 4: + f: { + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$RangePostfixContext; + var$2 = $re; + oncipv_Cypher5Parser$RangePostfixContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1602); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 1604); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO)) + break g; + } + var$2 = $re; + var$5 = $_la - 64 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4291035135, 4022337519)), Long_ZERO)) + break g; + } + var$2 = $re; + var$5 = $_la - 128 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4025286655, 4294967267)), Long_ZERO)) + break g; + } + var$2 = $re; + var$5 = $_la - 192 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(3166697215, 4286545919)), Long_ZERO)) + break g; + } + var$2 = $re; + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break f; + var$2 = $re; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break f; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1603); + $re.$fromExp0 = oncipv_Cypher5Parser_expression($this); + } + h: { + i: { + var$2 = $re; + oavr_Recognizer_setState($this, 1606); + oavr_Parser_match($this, 84); + oavr_Recognizer_setState($this, 1608); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO)) + break i; + } + var$2 = $re; + var$5 = $_la - 64 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4291035135, 4022337519)), Long_ZERO)) + break i; + } + var$2 = $re; + var$5 = $_la - 128 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4025286655, 4294967267)), Long_ZERO)) + break i; + } + var$2 = $re; + var$5 = $_la - 192 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(3166697215, 4286545919)), Long_ZERO)) + break i; + } + var$2 = $re; + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break h; + var$2 = $re; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break h; + } + var$2 = $re; + oavr_Recognizer_setState($this, 1607); + $re.$toExp0 = oncipv_Cypher5Parser_expression($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1610); + oavr_Parser_match($this, 216); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } - if ($stopIndex) - oavr_BufferedTokenStream_seek($input, $conflictIndex); - } - if (oavra_ParserATNSimulator_dfa_debug) - otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(6064)), $outerContext), $rt_s(3610)), $D))); - $s0_closure = oavra_ParserATNSimulator_computeStartState($this, $dfa.$atnStartState, $outerContext, 1); - oavra_ParserATNSimulator_reportAttemptingFullContext($this, $dfa, $conflictingAlts, $D.$configs, $startIndex, oavr_BufferedTokenStream_index($input)); - return oavra_ParserATNSimulator_execATNWithFullContext($this, $dfa, $D, $s0_closure, $input, $startIndex, $outerContext); - } - if ($D.$isAcceptState) { - if ($D.$predicates === null) - return $D.$prediction; - $stopIndex = oavr_BufferedTokenStream_index($input); - oavr_BufferedTokenStream_seek($input, $startIndex); - $alts = oavra_ParserATNSimulator_evalSemanticContext0($this, $D.$predicates, $outerContext, 1); - switch (ju_BitSet_cardinality($alts)) { - case 0: - break; - case 1: - return ju_BitSet_nextSetBit($alts, 0); - default: - oavra_ParserATNSimulator_reportAmbiguity($this, $dfa, $D, $startIndex, $stopIndex, 0, $alts, $D.$configs); - return ju_BitSet_nextSetBit($alts, 0); } - $rt_throw(oavra_ParserATNSimulator_noViableAlt($this, $input, $outerContext, $D.$configs, $startIndex)); - } - if ($t != (-1)) { - oavr_BufferedTokenStream_consume($input); - $t = oavr_BufferedTokenStream_LA($input, 1); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - $s0 = $D; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; } - $e = oavra_ParserATNSimulator_noViableAlt($this, $input, $outerContext, $s0.$configs, $startIndex); - oavr_BufferedTokenStream_seek($input, $startIndex); - $alt = oavra_ParserATNSimulator_getSynValidOrSemInvalidAltThatFinishedDecisionEntryRule($this, $s0.$configs, $outerContext); - if (!$alt) - $rt_throw($e); - return $alt; + return $re; }, -oavra_ParserATNSimulator_getExistingTargetState = ($this, $previousD, $t) => { - let $edges; - $edges = $previousD.$edges; - if ($edges !== null) { - $t = $t + 1 | 0; - if ($t >= 0) { - $edges = $edges.data; - if ($t < $edges.length) - return $edges[$t]; +oncipv_Cypher5Parser_property = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PropertyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 204, 102); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1613); + oavr_Parser_match($this, 83); + oavr_Recognizer_setState($this, 1614); + oncipv_Cypher5Parser_propertyKeyName($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return null; + return $_localctx; }, -oavra_ParserATNSimulator_predicateDFAState = ($this, $dfaState, $decisionState) => { - let $nalts, $altsToCollectPredsFrom, $altToPred, var$6, var$7, var$8, var$9, var$10; - $nalts = oavra_ATNState_getNumberOfTransitions($decisionState); - $decisionState = $dfaState.$configs; - if (!$decisionState.$uniqueAlt) - $altsToCollectPredsFrom = $decisionState.$conflictingAlts; - else { - $altsToCollectPredsFrom = ju_BitSet__init_(); - ju_BitSet_set($altsToCollectPredsFrom, $decisionState.$uniqueAlt); - } - $decisionState = $dfaState.$configs; - $altToPred = $rt_createArray(oavra_SemanticContext, $nalts + 1 | 0); - var$6 = $altToPred.data; - $decisionState = oavra_ATNConfigSet_iterator($decisionState); - while (ju_AbstractList$1_hasNext($decisionState)) { - var$7 = ju_AbstractList$1_next($decisionState); - if (ju_BitSet_get($altsToCollectPredsFrom, var$7.$alt0)) { - var$8 = var$7.$alt0; - var$6[var$8] = oavra_SemanticContext_or(var$6[var$8], var$7.$semanticContext); - } - } - var$8 = 0; - var$9 = 1; - while (var$9 <= $nalts) { - if (var$6[var$9] === null) - var$6[var$9] = oavra_SemanticContext$Empty_Instance; - else if (var$6[var$9] !== oavra_SemanticContext$Empty_Instance) - var$8 = var$8 + 1 | 0; - var$9 = var$9 + 1 | 0; - } - if (!var$8) - $altToPred = null; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_debug) { - $decisionState = jl_System_out(); - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append(var$7, $rt_s(6065)); - jl_AbstractStringBuilder_append(var$7, ju_Arrays_toString($altToPred)); - otcic_JsConsolePrintStream_println($decisionState, jl_AbstractStringBuilder_toString(var$7)); - } +oncipv_Cypher5Parser_dynamicProperty = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DynamicPropertyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 206, 103); a: { - if ($altToPred === null) - $dfaState.$prediction = ju_BitSet_nextSetBit($altsToCollectPredsFrom, 0); - else { - $decisionState = ju_ArrayList__init_(); - $nalts = 0; - var$8 = 1; - while (true) { - var$6 = $altToPred.data; - if (var$8 >= var$6.length) { - $dfaState.$predicates = !$nalts ? null : ju_AbstractCollection_toArray($decisionState, $rt_createArray(oavrd_DFAState$PredPrediction, 0)); - $dfaState.$prediction = 0; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1616); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 1617); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1618); + oavr_Parser_match($this, 216); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } - var$7 = var$6[var$8]; - if (!oavra_ParserATNSimulator_$assertionsDisabled && var$7 === null) - break; - if ($altsToCollectPredsFrom !== null && ju_BitSet_get($altsToCollectPredsFrom, var$8)) { - var$10 = new oavrd_DFAState$PredPrediction; - var$10.$alt1 = var$8; - var$10.$pred = var$7; - ju_ArrayList_add($decisionState, var$10); + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } - if (var$7 !== oavra_SemanticContext$Empty_Instance) - $nalts = 1; - var$8 = var$8 + 1 | 0; } - $dfaState = new jl_AssertionError; - jl_Throwable__init_($dfaState); - $rt_throw($dfaState); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; }, -oavra_ParserATNSimulator_execATNWithFullContext = ($this, $dfa, $D, $s0, $input, $startIndex, $outerContext) => { - let var$7, $e, $foundExactAmbig, $t, var$11, $altSubSets, $predictedAlt, $alt, $fullCtx; - oavra_ParserATNSimulator_$callClinit(); - if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_trace_atn_sim)) { - var$7 = jl_System_out(); - $e = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($e); - jl_AbstractStringBuilder_append($e, $rt_s(6066)); - otcic_JsConsolePrintStream_println(var$7, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($e, $s0))); - } - $foundExactAmbig = 0; - oavr_BufferedTokenStream_seek($input, $startIndex); - $t = oavr_BufferedTokenStream_LA($input, 1); +oncipv_Cypher5Parser_propertyExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PropertyExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 208, 104); a: { - while (true) { - var$11 = oavra_ParserATNSimulator_computeReachSet($this, $s0, $t, 1); - if (var$11 === null) - break; - $altSubSets = oavra_PredictionMode_getConflictingAltSubsets(var$11); - if (oavra_ParserATNSimulator_debug) { - var$7 = jl_System_out(); - $s0 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($s0); - jl_AbstractStringBuilder_append($s0, $rt_s(6067)); - $s0 = jl_StringBuilder_append($s0, $altSubSets); - jl_AbstractStringBuilder_append($s0, $rt_s(6059)); - $e = oavra_PredictionMode_getAlts($altSubSets); - $s0 = jl_StringBuilder_append0($s0, ju_BitSet_cardinality($e) != 1 ? 0 : ju_BitSet_nextSetBit($e, 0)); - jl_AbstractStringBuilder_append($s0, $rt_s(6068)); - otcic_JsConsolePrintStream_println(var$7, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($s0, oavra_PredictionMode_getSingleViableAlt($altSubSets)))); - } - $predictedAlt = oavra_ParserATNSimulator_getUniqueAlt(var$11); - var$11.$uniqueAlt = $predictedAlt; - if ($predictedAlt) - break a; - b: { - if ($this.$mode1 !== oavra_PredictionMode_LL_EXACT_AMBIG_DETECTION) { - $predictedAlt = oavra_PredictionMode_getSingleViableAlt($altSubSets); - if (!$predictedAlt) - break b; - else - break a; - } - if (oavra_PredictionMode_allSubsetsConflict($altSubSets)) { - $s0 = ju_AbstractList_iterator($altSubSets); - $e = ju_AbstractList$1_next($s0); - c: { - while (ju_AbstractList$1_hasNext($s0)) { - if (!ju_BitSet_equals(ju_AbstractList$1_next($s0), $e)) { - $alt = 0; - break c; - } + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1620); + oncipv_Cypher5Parser_expression1($this); + oavr_Recognizer_setState($this, 1622); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 1621); + oncipv_Cypher5Parser_property($this); + oavr_Recognizer_setState($this, 1624); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 83) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } - $alt = 1; - } - if ($alt) { - $foundExactAmbig = 1; - $predictedAlt = oavra_PredictionMode_getSingleViableAlt($altSubSets); - break a; } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - if ($t != (-1)) { - oavr_BufferedTokenStream_consume($input); - $t = oavr_BufferedTokenStream_LA($input, 1); - } - $s0 = var$11; - } - $e = oavra_ParserATNSimulator_noViableAlt($this, $input, $outerContext, $s0, $startIndex); - oavr_BufferedTokenStream_seek($input, $startIndex); - $alt = oavra_ParserATNSimulator_getSynValidOrSemInvalidAltThatFinishedDecisionEntryRule($this, $s0, $outerContext); - if (!$alt) - $rt_throw($e); - return $alt; - } - if (!var$11.$uniqueAlt) { - $fullCtx = $input.$p; - $s0 = ju_BitSet__init_(); - $input = ju_AbstractList_iterator(var$11.$configs0); - while (ju_AbstractList$1_hasNext($input)) { - ju_BitSet_set($s0, (ju_AbstractList$1_next($input)).$alt0); - } - oavra_ParserATNSimulator_reportAmbiguity($this, $dfa, $D, $startIndex, $fullCtx, $foundExactAmbig, $s0, var$11); - return $predictedAlt; - } - $fullCtx = $input.$p; - if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_retry_debug)) { - $s0 = oavrm_Interval_of($startIndex, $fullCtx); - $D = jl_System_out(); - $input = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($input); - jl_AbstractStringBuilder_append($input, $rt_s(6069)); - $dfa = jl_StringBuilder_append0($input, $dfa.$decision); - jl_AbstractStringBuilder_append($dfa, $rt_s(91)); - $dfa = jl_StringBuilder_append($dfa, var$11); - jl_AbstractStringBuilder_append($dfa, $rt_s(6070)); - jl_AbstractStringBuilder_append($dfa, oavr_BufferedTokenStream_getText($this.$parser.$_input, $s0)); - otcic_JsConsolePrintStream_println($D, jl_AbstractStringBuilder_toString($dfa)); - } - $dfa = $this.$parser; - if ($dfa !== null) { - $dfa = juc_CopyOnWriteArrayList_iterator((oavr_Recognizer_getErrorListenerDispatch($dfa)).$delegates); - while (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext($dfa)) { - juc_CopyOnWriteArrayList$ListIteratorImpl_next($dfa); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $predictedAlt; + return $_localctx; }, -oavra_ParserATNSimulator_computeReachSet = ($this, $closure, $t, $fullCtx) => { - let $target, $trans, $intermediate, $skippedStopStates, $closureBusy, var$9, $reach, $treatEofAsEpsilon, $c, $n, $ti; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_debug) { - $target = jl_System_out(); - $trans = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($trans); - jl_AbstractStringBuilder_append($trans, $rt_s(6071)); - otcic_JsConsolePrintStream_println($target, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($trans, $closure))); - } - if ($this.$mergeCache === null) { - $target = new oavrm_DoubleKeyMap; - $target.$data7 = ju_LinkedHashMap__init_(); - $this.$mergeCache = $target; - } - $intermediate = oavra_ATNConfigSet__init_($fullCtx); - $skippedStopStates = null; - $closureBusy = oavra_ATNConfigSet_iterator($closure); - var$9 = $rt_compare($t, (-1)); - while (true) { - if (!ju_AbstractList$1_hasNext($closureBusy)) { - $reach = null; - if ($skippedStopStates === null && var$9) { - if (oavra_ATNConfigSet_size($intermediate) == 1) - $reach = $intermediate; - else if (oavra_ParserATNSimulator_getUniqueAlt($intermediate)) - $reach = $intermediate; - } - if ($reach === null) { - $reach = oavra_ATNConfigSet__init_($fullCtx); - $closureBusy = ju_HashSet__init_(); - $treatEofAsEpsilon = var$9 ? 0 : 1; - $target = oavra_ATNConfigSet_iterator($intermediate); - while (ju_AbstractList$1_hasNext($target)) { - oavra_ParserATNSimulator_closure($this, ju_AbstractList$1_next($target), $reach, $closureBusy, 0, $fullCtx, $treatEofAsEpsilon); - } - } - if (!var$9) { - $treatEofAsEpsilon = $reach !== $intermediate ? 0 : 1; - if (!oavra_PredictionMode_allConfigsInRuleStopStates($reach)) { - $target = oavra_ATNConfigSet__init_($reach.$fullCtx); - $trans = oavra_ATNConfigSet_iterator($reach); - while (ju_AbstractList$1_hasNext($trans)) { - $reach = ju_AbstractList$1_next($trans); - $intermediate = $reach.$state0; - if ($intermediate instanceof oavra_RuleStopState) { - oavra_ATNConfigSet_add($target, $reach, $this.$mergeCache); - continue; +oncipv_Cypher5Parser_dynamicPropertyExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DynamicPropertyExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 210, 105); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1626); + oncipv_Cypher5Parser_expression1($this); + oavr_Recognizer_setState($this, 1627); + oncipv_Cypher5Parser_dynamicProperty($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } - if ($treatEofAsEpsilon && $intermediate.$epsilonOnlyTransitions && oavrm_IntervalSet_contains(oavra_ATN_nextTokens($this.$atn, $intermediate), (-2))) - oavra_ATNConfigSet_add($target, oavra_ATNConfig__init_($reach, $this.$atn.$ruleToStopState.data[$reach.$state0.$ruleIndex]), $this.$mergeCache); } - $reach = $target; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - a: { - if ($skippedStopStates !== null) { - if ($fullCtx) { - $target = oavra_ATNConfigSet_iterator($reach); - b: { - while (ju_AbstractList$1_hasNext($target)) { - if ((ju_AbstractList$1_next($target)).$state0 instanceof oavra_RuleStopState) { - $t = 1; - break b; - } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_expression1 = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$Expression1Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 212, 106); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1650); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 154, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1630); + oncipv_Cypher5Parser_parameter($this, $rt_s(708)); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1631); + oncipv_Cypher5Parser_caseExpression($this); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 1632); + oncipv_Cypher5Parser_extendedCaseExpression($this); + break e; + case 5: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 1633); + oncipv_Cypher5Parser_countStar($this); + break e; + case 6: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 1634); + oncipv_Cypher5Parser_existsExpression($this); + break e; + case 7: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 1635); + oncipv_Cypher5Parser_countExpression($this); + break e; + case 8: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 1636); + oncipv_Cypher5Parser_collectExpression($this); + break e; + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 1637); + oncipv_Cypher5Parser_mapProjection($this); + break e; + case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 10); + oavr_Recognizer_setState($this, 1638); + oncipv_Cypher5Parser_listComprehension($this); + break e; + case 11: + oavr_Parser_enterOuterAlt($this, $_localctx, 11); + oavr_Recognizer_setState($this, 1639); + oncipv_Cypher5Parser_listLiteral($this); + break e; + case 12: + oavr_Parser_enterOuterAlt($this, $_localctx, 12); + oavr_Recognizer_setState($this, 1640); + oncipv_Cypher5Parser_patternComprehension($this); + break e; + case 13: + oavr_Parser_enterOuterAlt($this, $_localctx, 13); + oavr_Recognizer_setState($this, 1641); + oncipv_Cypher5Parser_reduceExpression($this); + break e; + case 14: + oavr_Parser_enterOuterAlt($this, $_localctx, 14); + oavr_Recognizer_setState($this, 1642); + oncipv_Cypher5Parser_listItemsPredicate($this); + break e; + case 15: + oavr_Parser_enterOuterAlt($this, $_localctx, 15); + oavr_Recognizer_setState($this, 1643); + oncipv_Cypher5Parser_normalizeFunction($this); + break e; + case 16: + oavr_Parser_enterOuterAlt($this, $_localctx, 16); + oavr_Recognizer_setState($this, 1644); + oncipv_Cypher5Parser_trimFunction($this); + break e; + case 17: + oavr_Parser_enterOuterAlt($this, $_localctx, 17); + oavr_Recognizer_setState($this, 1645); + oncipv_Cypher5Parser_patternExpression($this); + break e; + case 18: + oavr_Parser_enterOuterAlt($this, $_localctx, 18); + oavr_Recognizer_setState($this, 1646); + oncipv_Cypher5Parser_shortestPathExpression($this); + break e; + case 19: + oavr_Parser_enterOuterAlt($this, $_localctx, 19); + oavr_Recognizer_setState($this, 1647); + oncipv_Cypher5Parser_parenthesizedExpression($this); + break e; + case 20: + oavr_Parser_enterOuterAlt($this, $_localctx, 20); + oavr_Recognizer_setState($this, 1648); + oncipv_Cypher5Parser_functionInvocation($this); + break e; + case 21: + oavr_Parser_enterOuterAlt($this, $_localctx, 21); + oavr_Recognizer_setState($this, 1649); + oncipv_Cypher5Parser_variable($this); + break e; + default: + break e; } - $t = 0; + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1629); + oncipv_Cypher5Parser_literal($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } - if ($t) - break a; - } - if (!oavra_ParserATNSimulator_$assertionsDisabled && ju_AbstractCollection_isEmpty($skippedStopStates)) { - $closure = new jl_AssertionError; - jl_Throwable__init_($closure); - $rt_throw($closure); - } - $target = ju_AbstractList_iterator($skippedStopStates); - while (true) { - if (!ju_AbstractList$1_hasNext($target)) - break a; - oavra_ATNConfigSet_add($reach, ju_AbstractList$1_next($target), $this.$mergeCache); } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - if (oavra_ParserATNSimulator_trace_atn_sim) { - $target = jl_System_out(); - $trans = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($trans); - jl_AbstractStringBuilder_append($trans, $rt_s(6072)); - $closure = jl_StringBuilder_append($trans, $closure); - jl_AbstractStringBuilder_append($closure, $rt_s(4771)); - otcic_JsConsolePrintStream_println($target, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($closure, $reach))); - } - if (!oavra_ATNConfigSet_isEmpty($reach)) - return $reach; - return null; - } - $c = ju_AbstractList$1_next($closureBusy); - if (oavra_ParserATNSimulator_debug) { - $target = jl_System_out(); - $trans = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($trans); - jl_AbstractStringBuilder_append($trans, $rt_s(6073)); - jl_AbstractStringBuilder_append($trans, oavra_ParserATNSimulator_getTokenName($this, $t)); - jl_AbstractStringBuilder_append($trans, $rt_s(6074)); - jl_AbstractStringBuilder_append($trans, oavra_ATNConfig_toString($c)); - otcic_JsConsolePrintStream_println($target, jl_AbstractStringBuilder_toString($trans)); - } - $target = $c.$state0; - if (!($target instanceof oavra_RuleStopState)) { - $n = oavra_ATNState_getNumberOfTransitions($target); - $ti = 0; - while ($ti < $n) { - $trans = oavra_ATNState_transition($c.$state0, $ti); - $target = !$trans.$matches3($t, 0, $this.$atn.$maxTokenType) ? null : $trans.$target; - if ($target !== null) - oavra_ATNConfigSet_add($intermediate, oavra_ATNConfig__init_($c, $target), $this.$mergeCache); - $ti = $ti + 1 | 0; - } - continue; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - if (!oavra_ParserATNSimulator_$assertionsDisabled && !$c.$context.$isEmpty()) - break; - if (!$fullCtx && var$9) - continue; - if ($skippedStopStates === null) - $skippedStopStates = ju_ArrayList__init_(); - ju_ArrayList_add($skippedStopStates, $c); - } - $closure = new jl_AssertionError; - jl_Throwable__init_($closure); - $rt_throw($closure); -}, -oavra_ParserATNSimulator_computeStartState = ($this, $p, $ctx, $fullCtx) => { - let $initialContext, $configs, $target, $i, $c; - $initialContext = oavra_PredictionContext_fromRuleContext($this.$atn, $ctx); - $configs = oavra_ATNConfigSet__init_($fullCtx); - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_trace_atn_sim) { - $ctx = jl_System_out(); - $target = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($target); - jl_AbstractStringBuilder_append($target, $rt_s(6075)); - $target = jl_StringBuilder_append($target, $p); - jl_AbstractStringBuilder_append($target, $rt_s(6076)); - jl_AbstractStringBuilder_append($target, $initialContext.$toString()); - otcic_JsConsolePrintStream_println($ctx, jl_AbstractStringBuilder_toString($target)); - } - $i = 0; - while ($i < oavra_ATNState_getNumberOfTransitions($p)) { - $target = (oavra_ATNState_transition($p, $i)).$target; - $c = new oavra_ATNConfig; - $i = $i + 1 | 0; - oavra_ATNConfig__init_3($c, $target, $i, $initialContext); - oavra_ParserATNSimulator_closure($this, $c, $configs, ju_HashSet__init_(), 1, $fullCtx, 0); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $configs; + return $_localctx; }, -oavra_ParserATNSimulator_applyPrecedenceFilter = ($this, $configs) => { - let $statesFromAlt1, $configSet, var$4, $config, $updatedContext, $context; - $statesFromAlt1 = ju_HashMap__init_(); - $configSet = oavra_ATNConfigSet__init_($configs.$fullCtx); - var$4 = oavra_ATNConfigSet_iterator($configs); - while (ju_AbstractList$1_hasNext(var$4)) { - $config = ju_AbstractList$1_next(var$4); - if ($config.$alt0 != 1) - continue; - $updatedContext = $config.$semanticContext.$evalPrecedence($this.$parser, $this.$_outerContext); - if ($updatedContext === null) - continue; - ju_HashMap_put($statesFromAlt1, jl_Integer_valueOf($config.$state0.$stateNumber), $config.$context); - if ($updatedContext === $config.$semanticContext) - oavra_ATNConfigSet_add($configSet, $config, $this.$mergeCache); - else - oavra_ATNConfigSet_add($configSet, oavra_ATNConfig__init_5($config, $updatedContext), $this.$mergeCache); - } - $configs = oavra_ATNConfigSet_iterator($configs); - while (ju_AbstractList$1_hasNext($configs)) { - $config = ju_AbstractList$1_next($configs); - if ($config.$alt0 == 1) - continue; - if (!oavra_ATNConfig_isPrecedenceFilterSuppressed($config)) { - $context = ju_HashMap_get($statesFromAlt1, jl_Integer_valueOf($config.$state0.$stateNumber)); - if ($context !== null && $context.$equals($config.$context)) - continue; +oncipv_Cypher5Parser_literal = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 214, 107); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1661); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 4: + case 5: + case 6: + case 7: + case 161: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$NummericLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$NummericLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1652); + oncipv_Cypher5Parser_numberLiteral($this); + break e; + case 8: + case 9: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$StringsLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$StringsLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1653); + oncipv_Cypher5Parser_stringLiteral($this); + break e; + case 108: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$BooleanLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$BooleanLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 1656); + oavr_Parser_match($this, 108); + break e; + case 134: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$KeywordLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$KeywordLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 1657); + oavr_Parser_match($this, 134); + break e; + case 135: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$KeywordLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$KeywordLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 7); + oavr_Recognizer_setState($this, 1658); + oavr_Parser_match($this, 135); + break e; + case 147: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$OtherLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$OtherLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1654); + oncipv_Cypher5Parser_map($this); + break e; + case 167: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$KeywordLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$KeywordLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 8); + oavr_Recognizer_setState($this, 1659); + oavr_Parser_match($this, 167); + break e; + case 182: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$KeywordLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$KeywordLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 9); + oavr_Recognizer_setState($this, 1660); + oavr_Parser_match($this, 182); + break e; + case 281: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$BooleanLiteralContext; + var$2 = $re; + oncipv_Cypher5Parser$BooleanLiteralContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1655); + oavr_Parser_match($this, 281); + break e; + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - oavra_ATNConfigSet_add($configSet, $config, $this.$mergeCache); - } - return $configSet; -}, -oavra_ParserATNSimulator_getSynValidOrSemInvalidAltThatFinishedDecisionEntryRule = ($this, $configs, $outerContext) => { - let $semValidConfigs, var$4, var$5, $semInvalidConfigs, $sets, $alt; - $semValidConfigs = oavra_ATNConfigSet__init_($configs.$fullCtx); - var$4 = oavra_ATNConfigSet__init_($configs.$fullCtx); - var$5 = oavra_ATNConfigSet_iterator($configs); - while (ju_AbstractList$1_hasNext(var$5)) { - $semInvalidConfigs = ju_AbstractList$1_next(var$5); - $sets = $semInvalidConfigs.$semanticContext; - if ($sets === oavra_SemanticContext$Empty_Instance) - oavra_ATNConfigSet_add0($semValidConfigs, $semInvalidConfigs); - else if (!oavra_ParserATNSimulator_evalSemanticContext($this, $sets, $outerContext, $semInvalidConfigs.$alt0, $configs.$fullCtx)) - oavra_ATNConfigSet_add0(var$4, $semInvalidConfigs); - else - oavra_ATNConfigSet_add0($semValidConfigs, $semInvalidConfigs); - } - $sets = oavrm_Pair__init_($semValidConfigs, var$4); - $semValidConfigs = $sets.$a7; - $semInvalidConfigs = $sets.$b0; - $alt = oavra_ParserATNSimulator_getAltThatFinishedDecisionEntryRule($this, $semValidConfigs); - if ($alt) - return $alt; - if (oavra_ATNConfigSet_size($semInvalidConfigs) > 0) { - $alt = oavra_ParserATNSimulator_getAltThatFinishedDecisionEntryRule($this, $semInvalidConfigs); - if ($alt) - return $alt; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; } - return 0; + return $re; }, -oavra_ParserATNSimulator_getAltThatFinishedDecisionEntryRule = ($this, $configs) => { - let $alts, $c; - $alts = oavrm_IntervalSet__init_($rt_createIntArray(0)); - $configs = oavra_ATNConfigSet_iterator($configs); - while (ju_AbstractList$1_hasNext($configs)) { - a: { - $c = ju_AbstractList$1_next($configs); - if (oavra_ATNConfig_getOuterContextDepth($c) <= 0) { - if (!($c.$state0 instanceof oavra_RuleStopState)) - break a; - if (!oavra_PredictionContext_hasEmptyPath($c.$context)) +oncipv_Cypher5Parser_caseExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CaseExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 216, 108); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1663); + oavr_Parser_match($this, 43); + oavr_Recognizer_setState($this, 1665); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 1664); + oncipv_Cypher5Parser_caseAlternative($this); + oavr_Recognizer_setState($this, 1667); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 300) + continue; + else + break; + } + oavr_Recognizer_setState($this, 1671); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 96) { + oavr_Recognizer_setState($this, 1669); + oavr_Parser_match($this, 96); + oavr_Recognizer_setState($this, 1670); + oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1673); + oavr_Parser_match($this, 98); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - oavrm_IntervalSet_add($alts, $c.$alt0); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - if (oavrm_IntervalSet_size($alts)) - return oavrm_IntervalSet_getMinElement($alts); - return 0; + return $_localctx; }, -oavra_ParserATNSimulator_evalSemanticContext0 = ($this, $predPredictions, $outerContext, $complete) => { - let $predictions, var$5, var$6, $pair, var$8, $predicateEvaluationResult, var$10, var$11; - $predPredictions = $predPredictions.data; - $predictions = ju_BitSet__init_(); - var$5 = $predPredictions.length; - var$6 = 0; +oncipv_Cypher5Parser_caseAlternative = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CaseAlternativeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 218, 109); a: { - b: while (true) { - if (var$6 >= var$5) - break a; + b: { c: { - $pair = $predPredictions[var$6]; - var$8 = $pair.$pred; - if (var$8 === oavra_SemanticContext$Empty_Instance) { - ju_BitSet_set($predictions, $pair.$alt1); - if ($complete) - break c; - else - break a; - } - $predicateEvaluationResult = oavra_ParserATNSimulator_evalSemanticContext($this, var$8, $outerContext, $pair.$alt1, 0); - if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_dfa_debug)) { - var$8 = jl_System_out(); - var$10 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$10); - jl_AbstractStringBuilder_append(var$10, $rt_s(6077)); - var$10 = jl_StringBuilder_append(var$10, $pair); - jl_AbstractStringBuilder_append(var$10, $rt_s(4453)); - otcic_JsConsolePrintStream_println(var$8, jl_AbstractStringBuilder_toString(jl_StringBuilder_append4(var$10, $predicateEvaluationResult))); - } - if ($predicateEvaluationResult) { - if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_dfa_debug)) { - var$10 = jl_System_out(); - var$11 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$11); - jl_AbstractStringBuilder_append(var$11, $rt_s(6078)); - otcic_JsConsolePrintStream_println(var$10, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$11, $pair.$alt1))); + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1675); + oavr_Parser_match($this, 300); + oavr_Recognizer_setState($this, 1676); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1677); + oavr_Parser_match($this, 269); + oavr_Recognizer_setState($this, 1678); + oncipv_Cypher5Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } } - ju_BitSet_set($predictions, $pair.$alt1); - if (!$complete) - break b; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - var$6 = var$6 + 1 | 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $predictions; -}, -oavra_ParserATNSimulator_evalSemanticContext = ($this, $pred, $parserCallStack, $alt, $fullCtx) => { - return $pred.$eval($this.$parser, $parserCallStack); + return $_localctx; }, -oavra_ParserATNSimulator_closure = ($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $treatEofAsEpsilon) => { - oavra_ParserATNSimulator_closureCheckingStopState($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, 0, $treatEofAsEpsilon); - if (!oavra_ParserATNSimulator_$assertionsDisabled && $fullCtx && $configs.$dipsIntoOuterContext) { - $config = new jl_AssertionError; - jl_Throwable__init_($config); - $rt_throw($config); +oncipv_Cypher5Parser_extendedCaseExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ExtendedCaseExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 220, 110); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1680); + oavr_Parser_match($this, 43); + oavr_Recognizer_setState($this, 1681); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1683); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 1682); + oncipv_Cypher5Parser_extendedCaseAlternative($this); + oavr_Recognizer_setState($this, 1685); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 300) + continue; + else + break; + } + oavr_Recognizer_setState($this, 1689); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 96) { + oavr_Recognizer_setState($this, 1687); + oavr_Parser_match($this, 96); + oavr_Recognizer_setState($this, 1688); + $_localctx.$elseExp = oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1691); + oavr_Parser_match($this, 98); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; }, -oavra_ParserATNSimulator_closureCheckingStopState = ($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $depth, $treatEofAsEpsilon) => { - let $returnState, $newContext, $i, var$11, var$12, $c; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_trace_atn_sim) { - $returnState = jl_System_out(); - $newContext = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($newContext); - jl_AbstractStringBuilder_append($newContext, $rt_s(6079)); - jl_AbstractStringBuilder_append($newContext, oavra_ATNConfig_toString0($config, $this.$parser, 1)); - jl_AbstractStringBuilder_append($newContext, $rt_s(42)); - otcic_JsConsolePrintStream_println($returnState, jl_AbstractStringBuilder_toString($newContext)); - } - if ($config.$state0 instanceof oavra_RuleStopState) { - if (!$config.$context.$isEmpty()) { - $i = 0; - var$11 = $rt_compare($depth, (-2147483648)); - var$12 = $depth - 1 | 0; - while ($i < $config.$context.$size()) { - if ($config.$context.$getReturnState($i) != 2147483647) { - $returnState = ju_ArrayList_get($this.$atn.$states, $config.$context.$getReturnState($i)); - $newContext = $config.$context.$getParent($i); - $c = oavra_ATNConfig__init_7($returnState, $config.$alt0, $newContext, $config.$semanticContext); - $c.$reachesIntoOuterContext = $config.$reachesIntoOuterContext; - if (!oavra_ParserATNSimulator_$assertionsDisabled && var$11 <= 0) { - $config = new jl_AssertionError; - jl_Throwable__init_($config); - $rt_throw($config); - } - oavra_ParserATNSimulator_closureCheckingStopState($this, $c, $configs, $closureBusy, $collectPredicates, $fullCtx, var$12, $treatEofAsEpsilon); - } else if ($fullCtx) { - $newContext = new oavra_ATNConfig; - $returnState = $config.$state0; - oavra_EmptyPredictionContext_$callClinit(); - oavra_ATNConfig__init_2($newContext, $config, $returnState, oavra_EmptyPredictionContext_Instance); - oavra_ATNConfigSet_add($configs, $newContext, $this.$mergeCache); - } else { - if (oavra_ParserATNSimulator_debug) { - $newContext = jl_System_out(); - $returnState = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($returnState); - jl_AbstractStringBuilder_append($returnState, $rt_s(6080)); - jl_AbstractStringBuilder_append($returnState, oavra_ParserATNSimulator_getRuleName($this, $config.$state0.$ruleIndex)); - otcic_JsConsolePrintStream_println($newContext, jl_AbstractStringBuilder_toString($returnState)); +oncipv_Cypher5Parser_extendedCaseAlternative = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ExtendedCaseAlternativeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 222, 111); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1693); + oavr_Parser_match($this, 300); + oavr_Recognizer_setState($this, 1694); + oncipv_Cypher5Parser_extendedWhen($this); + oavr_Recognizer_setState($this, 1699); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 1695); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1696); + oncipv_Cypher5Parser_extendedWhen($this); + oavr_Recognizer_setState($this, 1701); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 1702); + oavr_Parser_match($this, 269); + oavr_Recognizer_setState($this, 1703); + oncipv_Cypher5Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } } - oavra_ParserATNSimulator_closure_($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $depth, $treatEofAsEpsilon); + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } - $i = $i + 1 | 0; } - return; - } - if ($fullCtx) { - oavra_ATNConfigSet_add($configs, $config, $this.$mergeCache); - return; - } - if (oavra_ParserATNSimulator_debug) { - $returnState = jl_System_out(); - $newContext = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($newContext); - jl_AbstractStringBuilder_append($newContext, $rt_s(6080)); - jl_AbstractStringBuilder_append($newContext, oavra_ParserATNSimulator_getRuleName($this, $config.$state0.$ruleIndex)); - otcic_JsConsolePrintStream_println($returnState, jl_AbstractStringBuilder_toString($newContext)); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - oavra_ParserATNSimulator_closure_($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $depth, $treatEofAsEpsilon); + return $_localctx; }, -oavra_ParserATNSimulator_closure_ = ($this, $config, $configs, $closureBusy, $collectPredicates, $fullCtx, $depth, $treatEofAsEpsilon) => { - let $p, $i, var$10, var$11, var$12, $t, $continueCollecting, var$15, $c, var$17, var$18, var$19, $outermostPrecedenceReturn; - $p = $config.$state0; - if (!$p.$epsilonOnlyTransitions) - oavra_ATNConfigSet_add($configs, $config, $this.$mergeCache); - $i = 0; - var$10 = $rt_compare($depth, (-2147483648)); - var$11 = $depth + (-1) | 0; - var$12 = $depth + 1 | 0; - while ($i < oavra_ATNState_getNumberOfTransitions($p)) { - a: { - if (!(!$i && oavra_ParserATNSimulator_canDropLoopEntryEdgeInLeftRecursiveRule($this, $config))) { - $t = oavra_ATNState_transition($p, $i); - $continueCollecting = !($t instanceof oavra_ActionTransition) && $collectPredicates ? 1 : 0; - var$15 = $depth ? 0 : 1; - b: { - switch ($t.$getSerializationType()) { - case 1: - $c = oavra_ATNConfig__init_($config, $t.$target); - break b; - case 2: - case 5: - case 7: - if ($treatEofAsEpsilon && $t.$matches3((-1), 0, 1)) { - $c = oavra_ATNConfig__init_($config, $t.$target); - break b; - } - $c = null; - break b; - case 3: - var$17 = $t; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_debug) { - var$18 = jl_System_out(); - $c = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($c); - jl_AbstractStringBuilder_append($c, $rt_s(6081)); - jl_AbstractStringBuilder_append($c, oavra_ParserATNSimulator_getRuleName($this, var$17.$target.$ruleIndex)); - jl_AbstractStringBuilder_append($c, $rt_s(6082)); - otcic_JsConsolePrintStream_println(var$18, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($c, $config.$context))); - } - var$19 = var$17.$followState; - var$19 = oavra_SingletonPredictionContext_create($config.$context, var$19.$stateNumber); - $c = oavra_ATNConfig__init_11($config, var$17.$target, var$19); - break b; - case 4: - var$17 = $t; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_debug) { - $c = jl_System_out(); - var$19 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$19); - jl_AbstractStringBuilder_append(var$19, $rt_s(6083)); - var$19 = jl_StringBuilder_append4(var$19, $continueCollecting); - jl_AbstractStringBuilder_append(var$19, $rt_s(6084)); - var$19 = jl_StringBuilder_append0(var$19, var$17.$ruleIndex1); - jl_AbstractStringBuilder_append(var$19, $rt_s(91)); - var$19 = jl_StringBuilder_append0(var$19, var$17.$predIndex); - jl_AbstractStringBuilder_append(var$19, $rt_s(6085)); - otcic_JsConsolePrintStream_println($c, jl_AbstractStringBuilder_toString(jl_StringBuilder_append4(var$19, var$17.$isCtxDependent))); - if ($this.$parser !== null) { - var$19 = jl_System_out(); - var$18 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$18); - jl_AbstractStringBuilder_append(var$18, $rt_s(6086)); - otcic_JsConsolePrintStream_println(var$19, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$18, oavr_Parser_getRuleInvocationStack($this.$parser)))); - } - } - c: { - d: { - $c = null; - if ($continueCollecting) { - $outermostPrecedenceReturn = var$17.$isCtxDependent; - if (!$outermostPrecedenceReturn) - break d; - if ($outermostPrecedenceReturn && var$15) - break d; +oncipv_Cypher5Parser_extendedWhen = $this => { + let $_localctx, var$2, $re, $_la, var$5, $$je; + $_localctx = new oncipv_Cypher5Parser$ExtendedWhenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 224, 112); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 1738); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 167, $this.$_ctx)) { + case 1: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$WhenStringOrListContext; + var$2 = $re; + oncipv_Cypher5Parser$WhenStringOrListContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 1710); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 99: + var$2 = $re; + oavr_Recognizer_setState($this, 1708); + oavr_Parser_match($this, 99); + oavr_Recognizer_setState($this, 1709); + oavr_Parser_match($this, 302); + break f; + case 222: + var$2 = $re; + oavr_Recognizer_setState($this, 1705); + oavr_Parser_match($this, 222); + break f; + case 260: + var$2 = $re; + oavr_Recognizer_setState($this, 1706); + oavr_Parser_match($this, 260); + oavr_Recognizer_setState($this, 1707); + oavr_Parser_match($this, 302); + break f; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); } - $c = oavra_ATNConfig__init_($config, var$17.$target); - break c; - } - if (!$fullCtx) { - var$19 = oavra_SemanticContext_and($config.$semanticContext, oavra_PredicateTransition_getPredicate(var$17)); - $c = oavra_ATNConfig__init_4($config, var$17.$target, var$19); - } else { - var$19 = $this.$_input1; - var$15 = var$19.$p; - oavr_BufferedTokenStream_seek(var$19, $this.$_startIndex); - $outermostPrecedenceReturn = oavra_ParserATNSimulator_evalSemanticContext($this, oavra_PredicateTransition_getPredicate(var$17), $this.$_outerContext, $config.$alt0, $fullCtx); - oavr_BufferedTokenStream_seek($this.$_input1, var$15); - if ($outermostPrecedenceReturn) - $c = oavra_ATNConfig__init_($config, var$17.$target); - } - } - if (oavra_ParserATNSimulator_debug) { - var$17 = jl_System_out(); - var$19 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$19); - jl_AbstractStringBuilder_append(var$19, $rt_s(6087)); - otcic_JsConsolePrintStream_println(var$17, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$19, $c))); - } - break b; - case 6: - var$17 = $t; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_debug) { - var$19 = jl_System_out(); - var$18 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$18); - jl_AbstractStringBuilder_append(var$18, $rt_s(6088)); - var$18 = jl_StringBuilder_append0(var$18, var$17.$ruleIndex4); - jl_AbstractStringBuilder_append(var$18, $rt_s(91)); - otcic_JsConsolePrintStream_println(var$19, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$18, var$17.$actionIndex0))); + var$2 = $re; + oavr_Recognizer_setState($this, 1712); + oncipv_Cypher5Parser_expression6($this); + break e; + case 2: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$WhenNullContext; + var$2 = $re; + oncipv_Cypher5Parser$WhenNullContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 1713); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 1715); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { + var$2 = $re; + oavr_Recognizer_setState($this, 1714); + oavr_Parser_match($this, 179); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1717); + oavr_Parser_match($this, 182); + break e; + case 3: + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$WhenTypeContext; + var$2 = $re; + oncipv_Cypher5Parser$WhenTypeContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 1724); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 48: + var$2 = $re; + oavr_Recognizer_setState($this, 1723); + oavr_Parser_match($this, 48); + break g; + case 139: + var$2 = $re; + oavr_Recognizer_setState($this, 1718); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 1720); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { + var$2 = $re; + oavr_Recognizer_setState($this, 1719); + oavr_Parser_match($this, 179); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1722); + oavr_Parser_match($this, 283); + break g; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1726); + oncipv_Cypher5Parser_type($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$WhenFormContext; + var$2 = $re; + oncipv_Cypher5Parser$WhenFormContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 1727); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 1729); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { + var$2 = $re; + oavr_Recognizer_setState($this, 1728); + oavr_Parser_match($this, 179); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1732); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 168 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 1731); + oncipv_Cypher5Parser_normalForm($this); + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 1734); + oavr_Parser_match($this, 178); + break e; + case 5: + h: { + i: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$WhenComparatorContext; + var$2 = $re; + oncipv_Cypher5Parser$WhenComparatorContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 1735); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$5 = $_la - 100 | 0; + if (!(var$5 & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(17039361, 2164326400)), Long_ZERO)) + break i; + } + var$2 = $re; + if ($_la != 164) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break h; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 1736); + oncipv_Cypher5Parser_expression7($this); + break e; + case 6: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$WhenEqualsContext; + var$2 = $re; + oncipv_Cypher5Parser$WhenEqualsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 1737); + oncipv_Cypher5Parser_expression($this); + break e; + default: } - $c = oavra_ATNConfig__init_($config, var$17.$target); - break b; - case 8: - case 9: - break; - case 10: - $c = oavra_ParserATNSimulator_precedenceTransition($this, $config, $t, $continueCollecting, var$15, $fullCtx); - break b; - default: - } - $c = null; - } - if ($c !== null) { - if (!($config.$state0 instanceof oavra_RuleStopState)) { - if (!$t.$isEpsilon() && !ju_HashSet_add($closureBusy, $c)) - break a; - $outermostPrecedenceReturn = !($t instanceof oavra_RuleTransition) ? $depth : $depth >= 0 ? var$12 : $depth; - } else { - oavra_ParserATNSimulator_$callClinit(); - if (!oavra_ParserATNSimulator_$assertionsDisabled && $fullCtx) { - $config = new jl_AssertionError; - jl_Throwable__init_($config); - $rt_throw($config); - } - var$17 = $this.$_dfa; - if (var$17 !== null && var$17.$precedenceDfa && $t.$outermostPrecedenceReturn == var$17.$atnStartState.$ruleIndex) - oavra_ATNConfig_setPrecedenceFilterSuppressed($c, 1); - $c.$reachesIntoOuterContext = $c.$reachesIntoOuterContext + 1 | 0; - if (!ju_HashSet_add($closureBusy, $c)) - break a; - $configs.$dipsIntoOuterContext = 1; - if (!oavra_ParserATNSimulator_$assertionsDisabled && var$10 <= 0) { - $config = new jl_AssertionError; - jl_Throwable__init_($config); - $rt_throw($config); + $re = $_localctx; } - if (!oavra_ParserATNSimulator_debug) - $outermostPrecedenceReturn = var$11; - else { - $t = jl_System_out(); - var$17 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$17); - jl_AbstractStringBuilder_append(var$17, $rt_s(6089)); - otcic_JsConsolePrintStream_println($t, jl_AbstractStringBuilder_toString(jl_StringBuilder_append(var$17, $c))); - $outermostPrecedenceReturn = var$11; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } } - oavra_ParserATNSimulator_closureCheckingStopState($this, $c, $configs, $closureBusy, $continueCollecting, $fullCtx, $outermostPrecedenceReturn, $treatEofAsEpsilon); + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - $i = $i + 1 | 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; } + return $re; }, -oavra_ParserATNSimulator_canDropLoopEntryEdgeInLeftRecursiveRule = ($this, $config) => { - let $p, $numCtxs, $i, $blockEndStateNum, $blockEndState, $returnStateNumber, $returnState, $returnStateTarget; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_TURN_OFF_LR_LOOP_ENTRY_BRANCH_OPT) - return 0; - $p = $config.$state0; - if ($p.$getStateType() == 10 && $p.$isPrecedenceDecision && !$config.$context.$isEmpty() && !oavra_PredictionContext_hasEmptyPath($config.$context)) { - $numCtxs = $config.$context.$size(); - $i = 0; - while (true) { - if ($i >= $numCtxs) { - $blockEndStateNum = (oavra_ATNState_transition($p, 0)).$target.$endState.$stateNumber; - $blockEndState = ju_ArrayList_get($this.$atn.$states, $blockEndStateNum); - $i = 0; - a: { - b: { - while ($i < $numCtxs) { - $returnStateNumber = $config.$context.$getReturnState($i); - $returnState = ju_ArrayList_get($this.$atn.$states, $returnStateNumber); - if (oavra_ATNState_getNumberOfTransitions($returnState) != 1) - break a; - if (!(oavra_ATNState_transition($returnState, 0)).$isEpsilon()) - break a; - $returnStateTarget = (oavra_ATNState_transition($returnState, 0)).$target; - if (!($returnState.$getStateType() == 8 && $returnStateTarget === $p) && $returnState !== $blockEndState && $returnStateTarget !== $blockEndState) { - if ($returnStateTarget.$getStateType() != 8) - break b; - if (oavra_ATNState_getNumberOfTransitions($returnStateTarget) != 1) - break b; - if (!(oavra_ATNState_transition($returnStateTarget, 0)).$isEpsilon()) - break b; - if ((oavra_ATNState_transition($returnStateTarget, 0)).$target !== $p) - break b; +oncipv_Cypher5Parser_listComprehension = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ListComprehensionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 226, 113); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1740); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 1741); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1742); + oavr_Parser_match($this, 131); + oavr_Recognizer_setState($this, 1743); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1754); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 170, $this.$_ctx)) { + case 1: + break f; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1752); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 301) + break e; + oavr_Recognizer_setState($this, 1750); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 1751); + $_localctx.$whereExp0 = oncipv_Cypher5Parser_expression($this); + break e; } - $i = $i + 1 | 0; + oavr_Recognizer_setState($this, 1746); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 1744); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 1745); + $_localctx.$whereExp0 = oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1748); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 1749); + $_localctx.$barExp2 = oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1756); + oavr_Parser_match($this, 216); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } - return 1; } - return 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } - return 0; } - if ((ju_ArrayList_get($this.$atn.$states, $config.$context.$getReturnState($i))).$ruleIndex != $p.$ruleIndex) - break; - $i = $i + 1 | 0; - } - return 0; - } - return 0; -}, -oavra_ParserATNSimulator_getRuleName = ($this, $index) => { - let var$2; - var$2 = $this.$parser; - if (var$2 !== null && $index >= 0) - return (var$2.$getRuleNames()).data[$index]; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append(var$2, $rt_s(6090)); - var$2 = jl_StringBuilder_append0(var$2, $index); - jl_AbstractStringBuilder_append(var$2, $rt_s(604)); - return jl_AbstractStringBuilder_toString(var$2); -}, -oavra_ParserATNSimulator_precedenceTransition = ($this, $config, $pt, $collectPredicates, $inContext, $fullCtx) => { - let $newSemCtx, $c, $currentPosition, $predSucceeds; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_debug) { - $newSemCtx = jl_System_out(); - $c = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($c); - jl_AbstractStringBuilder_append($c, $rt_s(6083)); - $c = jl_StringBuilder_append4($c, $collectPredicates); - jl_AbstractStringBuilder_append($c, $rt_s(6084)); - $c = jl_StringBuilder_append0($c, $pt.$precedence0); - jl_AbstractStringBuilder_append($c, $rt_s(6091)); - otcic_JsConsolePrintStream_println($newSemCtx, jl_AbstractStringBuilder_toString($c)); - if ($this.$parser !== null) { - $c = jl_System_out(); - $newSemCtx = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($newSemCtx); - jl_AbstractStringBuilder_append($newSemCtx, $rt_s(6086)); - otcic_JsConsolePrintStream_println($c, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($newSemCtx, oavr_Parser_getRuleInvocationStack($this.$parser)))); - } - } - $c = null; - if ($collectPredicates && $inContext) { - if (!$fullCtx) { - $newSemCtx = oavra_SemanticContext_and($config.$semanticContext, oavra_PrecedencePredicateTransition_getPredicate($pt)); - $c = oavra_ATNConfig__init_4($config, $pt.$target, $newSemCtx); - } else { - $newSemCtx = $this.$_input1; - $currentPosition = $newSemCtx.$p; - oavr_BufferedTokenStream_seek($newSemCtx, $this.$_startIndex); - $predSucceeds = oavra_ParserATNSimulator_evalSemanticContext($this, oavra_PrecedencePredicateTransition_getPredicate($pt), $this.$_outerContext, $config.$alt0, $fullCtx); - oavr_BufferedTokenStream_seek($this.$_input1, $currentPosition); - if ($predSucceeds) - $c = oavra_ATNConfig__init_($config, $pt.$target); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - } else - $c = oavra_ATNConfig__init_($config, $pt.$target); - if (oavra_ParserATNSimulator_debug) { - $config = jl_System_out(); - $pt = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($pt); - jl_AbstractStringBuilder_append($pt, $rt_s(6087)); - otcic_JsConsolePrintStream_println($config, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($pt, $c))); - } - return $c; -}, -oavra_ParserATNSimulator_getConflictingAlts = ($this, $configs) => { - return oavra_PredictionMode_getAlts(oavra_PredictionMode_getConflictingAltSubsets($configs)); -}, -oavra_ParserATNSimulator_getTokenName = ($this, $t) => { - let $vocabulary, $displayName; - if ($t == (-1)) - return $rt_s(6092); - $vocabulary = $this.$parser; - if ($vocabulary !== null) - $vocabulary = $vocabulary.$getVocabulary(); - else { - oavr_VocabularyImpl_$callClinit(); - $vocabulary = oavr_VocabularyImpl_EMPTY_VOCABULARY; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $displayName = oavr_VocabularyImpl_getDisplayName($vocabulary, $t); - if (jl_String_equals($displayName, jl_Integer_toString($t))) - return $displayName; - $vocabulary = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($vocabulary); - jl_AbstractStringBuilder_append($vocabulary, $displayName); - jl_AbstractStringBuilder_append($vocabulary, $rt_s(603)); - $vocabulary = jl_StringBuilder_append0($vocabulary, $t); - jl_AbstractStringBuilder_append($vocabulary, $rt_s(604)); - return jl_AbstractStringBuilder_toString($vocabulary); -}, -oavra_ParserATNSimulator_getLookaheadName = ($this, $input) => { - return oavra_ParserATNSimulator_getTokenName($this, oavr_BufferedTokenStream_LA($input, 1)); + return $_localctx; }, -oavra_ParserATNSimulator_noViableAlt = ($this, $input, $outerContext, $configs, $startIndex) => { - let var$5, var$6, var$7; - var$5 = new oavr_NoViableAltException; - var$6 = $this.$parser; - if ($startIndex >= 0) { - var$7 = $input.$tokens; - if ($startIndex < var$7.$size0) { - oavr_NoViableAltException__init_0(var$5, var$6, $input, ju_ArrayList_get(var$7, $startIndex), oavr_CommonTokenStream_LT($input, 1), $configs, $outerContext); - return var$5; +oncipv_Cypher5Parser_patternComprehension = $this => { + let $_localctx, $_la, var$3, var$4, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PatternComprehensionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 228, 114); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1758); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 1762); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221224448, 4294737919)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4290969599, 4022337519)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4294967265)), Long_ZERO))) { + var$4 = $_la - 192 | 0; + if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(3166697087, 4286545919)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 1759); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1760); + oavr_Parser_match($this, 100); + } + oavr_Recognizer_setState($this, 1764); + oncipv_Cypher5Parser_pathPatternNonEmpty($this); + oavr_Recognizer_setState($this, 1767); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 1765); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 1766); + $_localctx.$whereExp2 = oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1769); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 1770); + $_localctx.$barExp1 = oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1771); + oavr_Parser_match($this, 216); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $configs = new jl_IndexOutOfBoundsException; - $outerContext = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($outerContext); - jl_AbstractStringBuilder_append($outerContext, $rt_s(6093)); - $outerContext = jl_StringBuilder_append0($outerContext, $startIndex); - jl_AbstractStringBuilder_append($outerContext, $rt_s(6094)); - jl_Throwable__init_0($configs, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($outerContext, $input.$tokens.$size0 - 1 | 0))); - $rt_throw($configs); -}, -oavra_ParserATNSimulator_getUniqueAlt = $configs => { - let $alt, $c; - oavra_ParserATNSimulator_$callClinit(); - $alt = 0; - $configs = oavra_ATNConfigSet_iterator($configs); - while (ju_AbstractList$1_hasNext($configs)) { - $c = ju_AbstractList$1_next($configs); - if (!$alt) - $alt = $c.$alt0; - else if ($c.$alt0 != $alt) - return 0; - } - return $alt; + return $_localctx; }, -oavra_ParserATNSimulator_addDFAEdge = ($this, $dfa, $from, $t, $to) => { - let var$5, var$6, var$7, $$je; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_debug) { - var$5 = jl_System_out(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append(var$6, $rt_s(6095)); - var$6 = jl_StringBuilder_append(var$6, $from); - jl_AbstractStringBuilder_append(var$6, $rt_s(4771)); - var$6 = jl_StringBuilder_append(var$6, $to); - jl_AbstractStringBuilder_append(var$6, $rt_s(6096)); - jl_AbstractStringBuilder_append(var$6, oavra_ParserATNSimulator_getTokenName($this, $t)); - otcic_JsConsolePrintStream_println(var$5, jl_AbstractStringBuilder_toString(var$6)); - } - if ($to === null) - return null; - $to = oavra_ParserATNSimulator_addDFAState($this, $dfa, $to); - if ($from !== null && $t >= (-1)) { - var$7 = $this.$atn.$maxTokenType; - if ($t <= var$7) { - jl_Object_monitorEnterSync($from); - a: { - try { - if ($from.$edges === null) - $from.$edges = $rt_createArray(oavrd_DFAState, (var$7 + 1 | 0) + 1 | 0); - $from.$edges.data[$t + 1 | 0] = $to; - jl_Object_monitorExitSync($from); +oncipv_Cypher5Parser_reduceExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ReduceExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 230, 115); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1773); + oavr_Parser_match($this, 220); + oavr_Recognizer_setState($this, 1774); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1775); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1776); + oavr_Parser_match($this, 100); + oavr_Recognizer_setState($this, 1777); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1778); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1779); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1780); + oavr_Parser_match($this, 131); + oavr_Recognizer_setState($this, 1781); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1782); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 1783); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1784); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; } catch ($$e) { $$je = $rt_wrapException($$e); - $dfa = $$je; + $_localctx = $$je; } - jl_Object_monitorExitSync($from); - $rt_throw($dfa); - } - if (oavra_ParserATNSimulator_debug) { - $from = jl_System_out(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_AbstractStringBuilder_append(var$5, $rt_s(6097)); - var$6 = $this.$parser; - if (var$6 !== null) - var$6 = var$6.$getVocabulary(); - else { - oavr_VocabularyImpl_$callClinit(); - var$6 = oavr_VocabularyImpl_EMPTY_VOCABULARY; - } - jl_AbstractStringBuilder_append(var$5, oavrd_DFA_toString($dfa, var$6)); - otcic_JsConsolePrintStream_println($from, jl_AbstractStringBuilder_toString(var$5)); } - return $to; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $to; + return $_localctx; }, -oavra_ParserATNSimulator_addDFAState = ($this, $dfa, $D) => { - let var$3, $existing, $$je; - oavra_ATNSimulator_$callClinit(); - if ($D === oavra_ATNSimulator_ERROR) - return $D; - var$3 = $dfa.$states0; - jl_Object_monitorEnterSync(var$3); +oncipv_Cypher5Parser_listItemsPredicate = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ListItemsPredicateContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 232, 116); a: { b: { - try { - $existing = ju_HashMap_get(var$3, $D); - if ($existing === null) + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1786); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 21 && $_la != 176 && $_la != 257) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 1787); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1788); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1789); + oavr_Parser_match($this, 131); + oavr_Recognizer_setState($this, 1790); + $_localctx.$inExp = oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1793); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 1791); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 1792); + $_localctx.$whereExp3 = oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1795); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); break b; - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_trace_atn_sim) - otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(6098)), $D), $rt_s(6099)))); - jl_Object_monitorExitSync(var$3); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $dfa = $$je; - break a; - - } - return $existing; - } - c: { - try { - $D.$stateNumber0 = ju_HashMap_size($dfa.$states0); - if (oavra_ATNConfigSet_isReadonly($D.$configs)) - break c; - oavra_ATNConfigSet_optimizeConfigs($D.$configs, $this); - oavra_ATNConfigSet_setReadonly($D.$configs, 1); - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $dfa = $$je; - break a; - - } - } - d: { - try { - oavra_ParserATNSimulator_$callClinit(); - if (!oavra_ParserATNSimulator_trace_atn_sim) - break d; - otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(6100)), $D))); - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $dfa = $$je; - break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - try { - ju_HashMap_put($dfa.$states0, $D, $D); - jl_Object_monitorExitSync(var$3); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $dfa = $$je; - break a; - - } - return $D; - } - jl_Object_monitorExitSync(var$3); - $rt_throw($dfa); -}, -oavra_ParserATNSimulator_reportAttemptingFullContext = ($this, $dfa, $conflictingAlts, $configs, $startIndex, $stopIndex) => { - let $interval, var$7; - oavra_ParserATNSimulator_$callClinit(); - if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_retry_debug)) { - $interval = oavrm_Interval_of($startIndex, $stopIndex); - $conflictingAlts = jl_System_out(); - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append(var$7, $rt_s(6101)); - $dfa = jl_StringBuilder_append0(var$7, $dfa.$decision); - jl_AbstractStringBuilder_append($dfa, $rt_s(91)); - $dfa = jl_StringBuilder_append($dfa, $configs); - jl_AbstractStringBuilder_append($dfa, $rt_s(6070)); - jl_AbstractStringBuilder_append($dfa, oavr_BufferedTokenStream_getText($this.$parser.$_input, $interval)); - otcic_JsConsolePrintStream_println($conflictingAlts, jl_AbstractStringBuilder_toString($dfa)); - } - $dfa = $this.$parser; - if ($dfa !== null) { - $dfa = juc_CopyOnWriteArrayList_iterator((oavr_Recognizer_getErrorListenerDispatch($dfa)).$delegates); - while (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext($dfa)) { - juc_CopyOnWriteArrayList$ListIteratorImpl_next($dfa); - } - } -}, -oavra_ParserATNSimulator_reportAmbiguity = ($this, $dfa, $D, $startIndex, $stopIndex, $exact, $ambigAlts, $configs) => { - let $interval; - oavra_ParserATNSimulator_$callClinit(); - if (!(!oavra_ParserATNSimulator_debug && !oavra_ParserATNSimulator_retry_debug)) { - $interval = oavrm_Interval_of($startIndex, $stopIndex); - $D = jl_System_out(); - $dfa = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($dfa); - jl_AbstractStringBuilder_append($dfa, $rt_s(6102)); - $dfa = jl_StringBuilder_append($dfa, $ambigAlts); - jl_AbstractStringBuilder_append($dfa, $rt_s(91)); - $ambigAlts = jl_StringBuilder_append($dfa, $configs); - jl_AbstractStringBuilder_append($ambigAlts, $rt_s(6070)); - jl_AbstractStringBuilder_append($ambigAlts, oavr_BufferedTokenStream_getText($this.$parser.$_input, $interval)); - otcic_JsConsolePrintStream_println($D, jl_AbstractStringBuilder_toString($ambigAlts)); - } - $dfa = $this.$parser; - if ($dfa !== null) { - $dfa = juc_CopyOnWriteArrayList_iterator((oavr_Recognizer_getErrorListenerDispatch($dfa)).$delegates); - while (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext($dfa)) { - juc_CopyOnWriteArrayList$ListIteratorImpl_next($dfa); - } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; }, -oavra_ParserATNSimulator__clinit_ = () => { - let var$1, $$je; - oavra_ParserATNSimulator_$assertionsDisabled = 0; - oavra_ParserATNSimulator_debug = 0; - oavra_ParserATNSimulator_trace_atn_sim = 0; - oavra_ParserATNSimulator_dfa_debug = 0; - oavra_ParserATNSimulator_retry_debug = 0; - oavra_ParserATNSimulator_$callClinit(); +oncipv_Cypher5Parser_normalizeFunction = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NormalizeFunctionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 234, 117); a: { - try { - var$1 = js_AccessController_doPrivileged(oavra_ParserATNSimulator$1__init_($rt_s(6103))); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_SecurityException) { - } else { - throw $$e; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1797); + oavr_Parser_match($this, 177); + oavr_Recognizer_setState($this, 1798); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1799); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1802); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) { + oavr_Recognizer_setState($this, 1800); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1801); + oncipv_Cypher5Parser_normalForm($this); + } + oavr_Recognizer_setState($this, 1804); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$1 = null; - } - oavra_ParserATNSimulator_TURN_OFF_LR_LOOP_ENTRY_BRANCH_OPT = jl_Boolean_parseBoolean(var$1); -}, -oavra_PredictionMode = $rt_classWithoutFields(jl_Enum), -oavra_PredictionMode_SLL = null, -oavra_PredictionMode_LL = null, -oavra_PredictionMode_LL_EXACT_AMBIG_DETECTION = null, -oavra_PredictionMode_$VALUES = null, -oavra_PredictionMode_values = () => { - return oavra_PredictionMode_$VALUES.$clone0(); -}, -oavra_PredictionMode_allConfigsInRuleStopStates = $configs => { - $configs = oavra_ATNConfigSet_iterator($configs); - while (ju_AbstractList$1_hasNext($configs)) { - if (!((ju_AbstractList$1_next($configs)).$state0 instanceof oavra_RuleStopState)) - return 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return 1; + return $_localctx; }, -oavra_PredictionMode_allSubsetsConflict = $altsets => { - let var$2; - $altsets = ju_AbstractList_iterator($altsets); +oncipv_Cypher5Parser_trimFunction = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$TrimFunctionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 236, 118); a: { - while (ju_AbstractList$1_hasNext($altsets)) { - if (ju_BitSet_cardinality(ju_AbstractList$1_next($altsets)) == 1) { - var$2 = 1; - break a; + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1806); + oavr_Parser_match($this, 280); + oavr_Recognizer_setState($this, 1807); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1815); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 177, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + f: { + oavr_Recognizer_setState($this, 1809); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 175, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1808); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 35 && $_la != 149 && $_la != 276) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + g: { + oavr_Recognizer_setState($this, 1812); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 176, $this.$_ctx)) { + case 1: + break; + default: + break g; + } + oavr_Recognizer_setState($this, 1811); + $_localctx.$trimCharacterString0 = oncipv_Cypher5Parser_expression($this); + } + oavr_Recognizer_setState($this, 1814); + oavr_Parser_match($this, 114); + } + oavr_Recognizer_setState($this, 1817); + $_localctx.$trimSource = oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1818); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$2 = 0; - } - return var$2 ? 0 : 1; -}, -oavra_PredictionMode_getAlts = $altsets => { - let $all; - $all = ju_BitSet__init_(); - $altsets = ju_AbstractList_iterator($altsets); - while (ju_AbstractList$1_hasNext($altsets)) { - ju_BitSet_or($all, ju_AbstractList$1_next($altsets)); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $all; + return $_localctx; }, -oavra_PredictionMode_getConflictingAltSubsets = $configs => { - let $configToAlts, $c, $alts, var$5, var$6, var$7, var$8; - $configToAlts = new oavra_PredictionMode$AltAndContextMap; - $c = oavra_PredictionMode$AltAndContextConfigEqualityComparator_INSTANCE; - $configToAlts.$n0 = 0; - $configToAlts.$currentPrime = 1; - if ($c === null) - $c = oavrm_ObjectEqualityComparator_INSTANCE; - $configToAlts.$comparator = $c; - $configToAlts.$initialCapacity0 = 16; - $configToAlts.$initialBucketCapacity0 = 8; - $configToAlts.$threshold1 = jl_Math_floor(12.0) | 0; - $configToAlts.$buckets = $rt_createArray(ju_LinkedList, 8); - $configs = oavra_ATNConfigSet_iterator($configs); - while (ju_AbstractList$1_hasNext($configs)) { - a: { - $c = ju_AbstractList$1_next($configs); - if ($c === null) - $alts = null; - else { - var$5 = oavrm_FlexibleHashMap_getBucket($configToAlts, $c); - $alts = $configToAlts.$buckets.data[var$5]; - if ($alts === null) - $alts = null; - else { - $alts = ju_AbstractSequentialList_iterator($alts); - while (ju_LinkedList$SequentialListIterator_hasNext($alts)) { - var$6 = ju_LinkedList$SequentialListIterator_next($alts); - if ($configToAlts.$comparator.$equals0(var$6.$key6, $c)) { - $alts = var$6.$value19; - break a; +oncipv_Cypher5Parser_patternExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PatternExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 238, 119); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1820); + oncipv_Cypher5Parser_pathPatternNonEmpty($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } } - $alts = null; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - if ($alts === null) { - $alts = ju_BitSet__init_(); - oavrm_FlexibleHashMap_put($configToAlts, $c, $alts); - } - ju_BitSet_set($alts, $c.$alt0); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $configs = ju_ArrayList__init_1($configToAlts.$n0); - var$7 = $configToAlts.$buckets.data; - var$5 = var$7.length; - var$8 = 0; - while (var$8 < var$5) { + return $_localctx; +}, +oncipv_Cypher5Parser_shortestPathExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShortestPathExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 240, 120); + a: { b: { - $configToAlts = var$7[var$8]; - if ($configToAlts !== null) { - $configToAlts = ju_AbstractSequentialList_iterator($configToAlts); - while (true) { - if (!ju_LinkedList$SequentialListIterator_hasNext($configToAlts)) - break b; - ju_ArrayList_add($configs, (ju_LinkedList$SequentialListIterator_next($configToAlts)).$value19); + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1822); + oncipv_Cypher5Parser_shortestPathPattern($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - var$8 = var$8 + 1 | 0; - } - return $configs; -}, -oavra_PredictionMode_getStateToAltMap = $configs => { - let $m, $c, $alts; - $m = ju_HashMap__init_(); - $configs = oavra_ATNConfigSet_iterator($configs); - while (ju_AbstractList$1_hasNext($configs)) { - $c = ju_AbstractList$1_next($configs); - $alts = ju_HashMap_get($m, $c.$state0); - if ($alts === null) { - $alts = ju_BitSet__init_(); - ju_HashMap_put($m, $c.$state0, $alts); - } - ju_BitSet_set($alts, $c.$alt0); - } - return $m; -}, -oavra_PredictionMode_getSingleViableAlt = $altsets => { - let $viableAlts; - $viableAlts = ju_BitSet__init_(); - $altsets = ju_AbstractList_iterator($altsets); - while (true) { - if (!ju_AbstractList$1_hasNext($altsets)) - return ju_BitSet_nextSetBit($viableAlts, 0); - ju_BitSet_set($viableAlts, ju_BitSet_nextSetBit(ju_AbstractList$1_next($altsets), 0)); - if (ju_BitSet_cardinality($viableAlts) > 1) - break; - } - return 0; -}; -let oavra_PredictionMode__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oavra_PredictionMode; - jl_Enum__init_(var$1, $rt_s(6104), 0); - oavra_PredictionMode_SLL = var$1; - var$1 = new oavra_PredictionMode; - jl_Enum__init_(var$1, $rt_s(6105), 1); - oavra_PredictionMode_LL = var$1; - var$1 = new oavra_PredictionMode; - jl_Enum__init_(var$1, $rt_s(6106), 2); - oavra_PredictionMode_LL_EXACT_AMBIG_DETECTION = var$1; - var$2 = $rt_createArray(oavra_PredictionMode, 3); - var$3 = var$2.data; - var$3[0] = oavra_PredictionMode_SLL; - var$3[1] = oavra_PredictionMode_LL; - var$3[2] = var$1; - oavra_PredictionMode_$VALUES = var$2; -}, -oavr_ANTLRErrorStrategy = $rt_classWithoutFields(0); -function oavr_DefaultErrorStrategy() { - let a = this; jl_Object.call(a); - a.$errorRecoveryMode = 0; - a.$lastErrorIndex = 0; - a.$lastErrorStates = null; - a.$nextTokensContext = null; - a.$nextTokensState = 0; -} -let oavr_DefaultErrorStrategy__init_ = $this => { - $this.$errorRecoveryMode = 0; - $this.$lastErrorIndex = (-1); -}, -oavr_DefaultErrorStrategy__init_0 = () => { - let var_0 = new oavr_DefaultErrorStrategy(); - oavr_DefaultErrorStrategy__init_(var_0); - return var_0; -}, -oavr_DefaultErrorStrategy_reset = ($this, $recognizer) => { - oavr_DefaultErrorStrategy_endErrorCondition($this, $recognizer); -}, -oavr_DefaultErrorStrategy_beginErrorCondition = ($this, $recognizer) => { - $this.$errorRecoveryMode = 1; -}, -oavr_DefaultErrorStrategy_inErrorRecoveryMode = ($this, $recognizer) => { - return $this.$errorRecoveryMode; -}, -oavr_DefaultErrorStrategy_endErrorCondition = ($this, $recognizer) => { - $this.$errorRecoveryMode = 0; - $this.$lastErrorStates = null; - $this.$lastErrorIndex = (-1); -}, -oavr_DefaultErrorStrategy_reportMatch = ($this, $recognizer) => { - oavr_DefaultErrorStrategy_endErrorCondition($this, $recognizer); -}, -oavr_DefaultErrorStrategy_reportError = ($this, $recognizer, $e) => { - let var$3, var$4; - if ($this.$errorRecoveryMode) - return; - oavr_DefaultErrorStrategy_beginErrorCondition($this, $recognizer); - if ($e instanceof oavr_NoViableAltException) - oavr_DefaultErrorStrategy_reportNoViableAlternative($this, $recognizer, $e); - else if ($e instanceof oavr_InputMismatchException) - oavr_DefaultErrorStrategy_reportInputMismatch($this, $recognizer, $e); - else if ($e instanceof oavr_FailedPredicateException) - oavr_DefaultErrorStrategy_reportFailedPredicate($this, $recognizer, $e); - else { - var$3 = jl_System_err(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append(var$4, $rt_s(6107)); - jl_AbstractStringBuilder_append(var$4, jl_Class_getName(jl_Object_getClass($e))); - otcic_JsConsolePrintStream_println(var$3, jl_AbstractStringBuilder_toString(var$4)); - $recognizer.$notifyErrorListeners($e.$offendingToken, $e.$message, $e); - } -}, -oavr_DefaultErrorStrategy_recover = ($this, $recognizer, $e) => { - if ($this.$lastErrorIndex == $recognizer.$_input.$p) { - $e = $this.$lastErrorStates; - if ($e !== null && oavrm_IntervalSet_contains($e, $recognizer.$_stateNumber)) - oavr_Parser_consume($recognizer); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $this.$lastErrorIndex = $recognizer.$_input.$p; - if ($this.$lastErrorStates === null) - $this.$lastErrorStates = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavrm_IntervalSet_add($this.$lastErrorStates, $recognizer.$_stateNumber); - oavr_DefaultErrorStrategy_consumeUntil($this, $recognizer, oavr_DefaultErrorStrategy_getErrorRecoverySet($this, $recognizer)); + return $_localctx; }, -oavr_DefaultErrorStrategy_sync = ($this, $recognizer) => { - let $s, $la, $nextTokens, $expecting, $whatFollowsLoopIterationOrRule; - $s = ju_ArrayList_get($recognizer.$_interp.$atn.$states, $recognizer.$_stateNumber); - if ($this.$errorRecoveryMode) - return; - $la = oavr_BufferedTokenStream_LA($recognizer.$_input, 1); - $nextTokens = oavra_ATN_nextTokens($recognizer.$getATN(), $s); - if (oavrm_IntervalSet_contains($nextTokens, $la)) { - $this.$nextTokensContext = null; - $this.$nextTokensState = (-1); - return; - } - if (oavrm_IntervalSet_contains($nextTokens, (-2))) { - if ($this.$nextTokensContext === null) { - $this.$nextTokensContext = $recognizer.$_ctx; - $this.$nextTokensState = $recognizer.$_stateNumber; - } - return; - } +oncipv_Cypher5Parser_parenthesizedExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ParenthesizedExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 242, 121); a: { - switch ($s.$getStateType()) { - case 3: - case 4: - case 5: - case 10: - break; - case 6: - case 7: - case 8: - break a; - case 9: - case 11: - oavr_DefaultErrorStrategy_reportUnwantedToken($this, $recognizer); - $expecting = oavr_Parser_getExpectedTokens($recognizer); - $s = oavr_DefaultErrorStrategy_getErrorRecoverySet($this, $recognizer); - $whatFollowsLoopIterationOrRule = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavrm_IntervalSet_addAll($whatFollowsLoopIterationOrRule, $expecting); - oavrm_IntervalSet_addAll($whatFollowsLoopIterationOrRule, $s); - oavr_DefaultErrorStrategy_consumeUntil($this, $recognizer, $whatFollowsLoopIterationOrRule); - break a; - default: - break a; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1824); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1825); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1826); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - if (oavr_DefaultErrorStrategy_singleTokenDeletion($this, $recognizer) !== null) - return; - $rt_throw(oavr_InputMismatchException__init_($recognizer)); - } -}, -oavr_DefaultErrorStrategy_reportNoViableAlternative = ($this, $recognizer, $e) => { - let var$3, $input, $msg; - var$3 = $recognizer.$_input; - if (var$3 === null) - $input = $rt_s(6108); - else if ($e.$startToken.$getType0() == (-1)) - $input = $rt_s(4015); - else { - $input = $e.$startToken; - $msg = $e.$offendingToken; - $input = $input !== null && $msg !== null ? oavr_BufferedTokenStream_getText(var$3, oavrm_Interval_of($input.$getTokenIndex(), $msg.$getTokenIndex())) : $rt_s(4); - } - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append(var$3, $rt_s(6109)); - jl_AbstractStringBuilder_append(var$3, oavr_DefaultErrorStrategy_escapeWSAndQuote($this, $input)); - $msg = jl_AbstractStringBuilder_toString(var$3); - $recognizer.$notifyErrorListeners($e.$offendingToken, $msg, $e); -}, -oavr_DefaultErrorStrategy_reportInputMismatch = ($this, $recognizer, $e) => { - let var$3, $msg; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append(var$3, $rt_s(6110)); - jl_AbstractStringBuilder_append(var$3, oavr_DefaultErrorStrategy_getTokenErrorDisplay($this, $e.$offendingToken)); - jl_AbstractStringBuilder_append(var$3, $rt_s(6111)); - jl_AbstractStringBuilder_append(var$3, oavrm_IntervalSet_toString(oavr_RecognitionException_getExpectedTokens($e), $recognizer.$getVocabulary())); - $msg = jl_AbstractStringBuilder_toString(var$3); - $recognizer.$notifyErrorListeners($e.$offendingToken, $msg, $e); -}, -oavr_DefaultErrorStrategy_reportFailedPredicate = ($this, $recognizer, $e) => { - let $ruleName, $msg; - $ruleName = ($recognizer.$getRuleNames()).data[$recognizer.$_ctx.$getRuleIndex()]; - $msg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($msg); - jl_AbstractStringBuilder_append($msg, $rt_s(6112)); - jl_AbstractStringBuilder_append($msg, $ruleName); - jl_AbstractStringBuilder_append($msg, $rt_s(384)); - jl_AbstractStringBuilder_append($msg, $e.$getMessage()); - $msg = jl_AbstractStringBuilder_toString($msg); - $recognizer.$notifyErrorListeners($e.$getOffendingToken(), $msg, $e); -}, -oavr_DefaultErrorStrategy_reportUnwantedToken = ($this, $recognizer) => { - let $t, $tokenName, $expecting, $msg; - if ($this.$errorRecoveryMode) - return; - oavr_DefaultErrorStrategy_beginErrorCondition($this, $recognizer); - $t = oavr_Parser_getCurrentToken($recognizer); - $tokenName = oavr_DefaultErrorStrategy_getTokenErrorDisplay($this, $t); - $expecting = oavr_Parser_getExpectedTokens($recognizer); - $msg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($msg); - jl_AbstractStringBuilder_append($msg, $rt_s(6113)); - jl_AbstractStringBuilder_append($msg, $tokenName); - jl_AbstractStringBuilder_append($msg, $rt_s(6111)); - jl_AbstractStringBuilder_append($msg, oavrm_IntervalSet_toString($expecting, $recognizer.$getVocabulary())); - $recognizer.$notifyErrorListeners($t, jl_AbstractStringBuilder_toString($msg), null); -}, -oavr_DefaultErrorStrategy_reportMissingToken = ($this, $recognizer) => { - let $t, $expecting, $msg; - if ($this.$errorRecoveryMode) - return; - oavr_DefaultErrorStrategy_beginErrorCondition($this, $recognizer); - $t = oavr_Parser_getCurrentToken($recognizer); - $expecting = oavr_Parser_getExpectedTokens($recognizer); - $msg = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($msg); - jl_AbstractStringBuilder_append($msg, $rt_s(6114)); - jl_AbstractStringBuilder_append($msg, oavrm_IntervalSet_toString($expecting, $recognizer.$getVocabulary())); - jl_AbstractStringBuilder_append($msg, $rt_s(6074)); - jl_AbstractStringBuilder_append($msg, oavr_DefaultErrorStrategy_getTokenErrorDisplay($this, $t)); - $recognizer.$notifyErrorListeners($t, jl_AbstractStringBuilder_toString($msg), null); -}, -oavr_DefaultErrorStrategy_recoverInline = ($this, $recognizer) => { - let $matchedSymbol; - $matchedSymbol = oavr_DefaultErrorStrategy_singleTokenDeletion($this, $recognizer); - if ($matchedSymbol !== null) { - oavr_Parser_consume($recognizer); - return $matchedSymbol; - } - if (oavr_DefaultErrorStrategy_singleTokenInsertion($this, $recognizer)) - return oavr_DefaultErrorStrategy_getMissingSymbol($this, $recognizer); - $matchedSymbol = $this.$nextTokensContext; - $rt_throw($matchedSymbol !== null ? oavr_InputMismatchException__init_0($recognizer, $this.$nextTokensState, $matchedSymbol) : oavr_InputMismatchException__init_($recognizer)); -}, -oavr_DefaultErrorStrategy_singleTokenInsertion = ($this, $recognizer) => { - let $currentSymbolType, $next; - $currentSymbolType = oavr_BufferedTokenStream_LA($recognizer.$_input, 1); - $next = (oavra_ATNState_transition(ju_ArrayList_get($recognizer.$_interp.$atn.$states, $recognizer.$_stateNumber), 0)).$target; - if (!oavrm_IntervalSet_contains(oavra_ATN_nextTokens0($recognizer.$_interp.$atn, $next, $recognizer.$_ctx), $currentSymbolType)) - return 0; - oavr_DefaultErrorStrategy_reportMissingToken($this, $recognizer); - return 1; -}, -oavr_DefaultErrorStrategy_singleTokenDeletion = ($this, $recognizer) => { - let $nextTokenType, $matchedSymbol; - $nextTokenType = oavr_BufferedTokenStream_LA($recognizer.$_input, 2); - if (!oavrm_IntervalSet_contains(oavr_Parser_getExpectedTokens($recognizer), $nextTokenType)) - return null; - oavr_DefaultErrorStrategy_reportUnwantedToken($this, $recognizer); - oavr_Parser_consume($recognizer); - $matchedSymbol = oavr_Parser_getCurrentToken($recognizer); - oavr_DefaultErrorStrategy_endErrorCondition($this, $recognizer); - return $matchedSymbol; -}, -oavr_DefaultErrorStrategy_getMissingSymbol = ($this, $recognizer) => { - let $currentSymbol, $expecting, $expectedTokenType, $tokenText, $lookback; - $currentSymbol = oavr_Parser_getCurrentToken($recognizer); - $expecting = oavr_Parser_getExpectedTokens($recognizer); - $expectedTokenType = 0; - if (!oavrm_IntervalSet_isNil($expecting)) - $expectedTokenType = oavrm_IntervalSet_getMinElement($expecting); - if ($expectedTokenType == (-1)) - $tokenText = $rt_s(6115); - else { - $tokenText = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($tokenText); - jl_AbstractStringBuilder_append($tokenText, $rt_s(6116)); - jl_AbstractStringBuilder_append($tokenText, oavr_VocabularyImpl_getDisplayName($recognizer.$getVocabulary(), $expectedTokenType)); - jl_AbstractStringBuilder_append($tokenText, $rt_s(604)); - $tokenText = jl_AbstractStringBuilder_toString($tokenText); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $lookback = oavr_CommonTokenStream_LT($recognizer.$_input, (-1)); - if ($currentSymbol.$getType0() != (-1)) - $lookback = $currentSymbol; - else if ($lookback === null) - $lookback = $currentSymbol; - return (oavr_Parser_getTokenFactory($recognizer)).$create1(oavrm_Pair__init_($lookback.$getTokenSource(), ($lookback.$getTokenSource()).$_input0), $expectedTokenType, $tokenText, 0, (-1), (-1), $lookback.$getLine0(), $lookback.$getCharPositionInLine()); -}, -oavr_DefaultErrorStrategy_getExpectedTokens = ($this, $recognizer) => { - return oavr_Parser_getExpectedTokens($recognizer); + return $_localctx; }, -oavr_DefaultErrorStrategy_getTokenErrorDisplay = ($this, $t) => { - let $s; - if ($t === null) - return $rt_s(6117); - $s = $t.$getText(); - if ($s === null) { - if ($t.$getType0() == (-1)) - $s = $rt_s(4015); - else { - $s = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($s); - jl_AbstractStringBuilder_append($s, $rt_s(603)); - $t = jl_StringBuilder_append0($s, $t.$getType0()); - jl_AbstractStringBuilder_append($t, $rt_s(604)); - $s = jl_AbstractStringBuilder_toString($t); +oncipv_Cypher5Parser_mapProjection = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$MapProjectionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 244, 122); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1828); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 1829); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 1838); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221224448, 4294737919)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4291493887, 4022337519)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4294967265)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697087, 4286545919)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 1830); + oncipv_Cypher5Parser_mapProjectionElement($this); + oavr_Recognizer_setState($this, 1835); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 49) + break e; + oavr_Recognizer_setState($this, 1831); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1832); + oncipv_Cypher5Parser_mapProjectionElement($this); + oavr_Recognizer_setState($this, 1837); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1840); + oavr_Parser_match($this, 217); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return oavr_DefaultErrorStrategy_escapeWSAndQuote($this, $s); -}, -oavr_DefaultErrorStrategy_getSymbolText = ($this, $symbol) => { - return $symbol.$getText(); -}, -oavr_DefaultErrorStrategy_getSymbolType = ($this, $symbol) => { - return $symbol.$getType0(); -}, -oavr_DefaultErrorStrategy_escapeWSAndQuote = ($this, $s) => { - let var$2; - $s = jl_String_replace(jl_String_replace(jl_String_replace($s, $rt_s(93), $rt_s(4417)), $rt_s(4448), $rt_s(4419)), $rt_s(4449), $rt_s(4416)); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append(var$2, $rt_s(4445)); - jl_AbstractStringBuilder_append(var$2, $s); - jl_AbstractStringBuilder_append(var$2, $rt_s(4445)); - return jl_AbstractStringBuilder_toString(var$2); -}, -oavr_DefaultErrorStrategy_getErrorRecoverySet = ($this, $recognizer) => { - let $atn, $ctx, $recoverSet, var$5; - $atn = $recognizer.$_interp.$atn; - $ctx = $recognizer.$_ctx; - $recoverSet = oavrm_IntervalSet__init_($rt_createIntArray(0)); - while ($ctx !== null) { - var$5 = $ctx.$invokingState; - if (var$5 < 0) - break; - oavrm_IntervalSet_addAll($recoverSet, oavra_ATN_nextTokens($atn, (oavra_ATNState_transition(ju_ArrayList_get($atn.$states, var$5), 0)).$followState)); - $ctx = $ctx.$parent; - } - oavrm_IntervalSet_remove($recoverSet, (-2)); - return $recoverSet; + return $_localctx; }, -oavr_DefaultErrorStrategy_consumeUntil = ($this, $recognizer, $set) => { - let $ttype; - $ttype = oavr_BufferedTokenStream_LA($recognizer.$_input, 1); - while ($ttype != (-1) && !oavrm_IntervalSet_contains($set, $ttype)) { - oavr_Parser_consume($recognizer); - $ttype = oavr_BufferedTokenStream_LA($recognizer.$_input, 1); +oncipv_Cypher5Parser_mapProjectionElement = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$MapProjectionElementContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 246, 123); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 1850); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 180, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1842); + oncipv_Cypher5Parser_propertyKeyName($this); + oavr_Recognizer_setState($this, 1843); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 1844); + oncipv_Cypher5Parser_expression($this); + break e; + case 2: + break; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1847); + oncipv_Cypher5Parser_variable($this); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 1848); + oavr_Parser_match($this, 83); + oavr_Recognizer_setState($this, 1849); + oavr_Parser_match($this, 271); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1846); + oncipv_Cypher5Parser_property($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; }, -oavr_BailErrorStrategy = $rt_classWithoutFields(oavr_DefaultErrorStrategy), -oavr_BailErrorStrategy_recover = ($this, $recognizer, $e) => { - let $context; - $context = $recognizer.$_ctx; - while ($context !== null) { - $context.$exception = $e; - $context = $context.$parent; +oncipv_Cypher5Parser_countStar = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CountStarContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 248, 124); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1852); + oavr_Parser_match($this, 60); + oavr_Recognizer_setState($this, 1853); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1854); + oavr_Parser_match($this, 271); + oavr_Recognizer_setState($this, 1855); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $rt_throw(oavrm_ParseCancellationException__init_($e)); + return $_localctx; }, -oavr_BailErrorStrategy_recoverInline = ($this, $recognizer) => { - let $e, $context; - $e = oavr_InputMismatchException__init_($recognizer); - $context = $recognizer.$_ctx; - while ($context !== null) { - $context.$exception = $e; - $context = $context.$parent; +oncipv_Cypher5Parser_existsExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ExistsExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 250, 125); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1857); + oavr_Parser_match($this, 105); + oavr_Recognizer_setState($this, 1858); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 1867); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 183, $this.$_ctx)) { + case 1: + break; + case 2: + f: { + oavr_Recognizer_setState($this, 1861); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 181, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1860); + oncipv_Cypher5Parser_matchMode($this); + } + oavr_Recognizer_setState($this, 1863); + oncipv_Cypher5Parser_patternList($this); + oavr_Recognizer_setState($this, 1865); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 301) + break e; + oavr_Recognizer_setState($this, 1864); + oncipv_Cypher5Parser_whereClause($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 1859); + oncipv_Cypher5Parser_regularQuery($this); + } + oavr_Recognizer_setState($this, 1869); + oavr_Parser_match($this, 217); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $rt_throw(oavrm_ParseCancellationException__init_($e)); -}, -oavr_BailErrorStrategy_sync = ($this, $recognizer) => { - return; -}; -function oavr_Parser() { - let a = this; oavr_Recognizer.call(a); - a.$_errHandler = null; - a.$_input = null; - a.$_precedenceStack = null; - a.$_ctx = null; - a.$_buildParseTrees = 0; - a.$_tracer = null; - a.$_parseListeners = null; - a.$_syntaxErrors0 = 0; - a.$matchedEOF = 0; -} -let oavr_Parser__init_ = ($this, $input) => { - let var$2; - oavr_Recognizer__init_($this); - $this.$_errHandler = oavr_DefaultErrorStrategy__init_0(); - var$2 = oavrm_IntegerStack__init_(); - $this.$_precedenceStack = var$2; - oavrm_IntegerStack_push(var$2, 0); - $this.$_buildParseTrees = 1; - oavr_Parser_setTokenStream($this, $input); -}, -oavr_Parser_reset = $this => { - let $interpreter; - $interpreter = $this.$_input; - if ($interpreter !== null) - oavr_BufferedTokenStream_seek($interpreter, 0); - $this.$_errHandler.$reset2($this); - $this.$_ctx = null; - $this.$_syntaxErrors0 = 0; - $this.$matchedEOF = 0; - oavr_Parser_setTrace($this, 0); - $interpreter = $this.$_precedenceStack; - ju_Arrays_fill2($interpreter.$_data, 0, $interpreter.$_size, 0); - $interpreter.$_size = 0; - oavrm_IntegerStack_push($this.$_precedenceStack, 0); - $interpreter = $this.$_interp; - if ($interpreter !== null) - $interpreter.$reset0(); + return $_localctx; }, -oavr_Parser_match = ($this, $ttype) => { - let $t, var$3; - $t = oavr_Parser_getCurrentToken($this); - if ($t.$getType0() == $ttype) { - if ($ttype == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else { - $t = $this.$_errHandler.$recoverInline($this); - if ($this.$_buildParseTrees && $t.$getTokenIndex() == (-1)) { - var$3 = $this.$_ctx; - oavr_ParserRuleContext_addErrorNode(var$3, oavr_Parser_createErrorNode($this, var$3, $t)); +oncipv_Cypher5Parser_countExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CountExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 252, 126); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1871); + oavr_Parser_match($this, 60); + oavr_Recognizer_setState($this, 1872); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 1881); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 186, $this.$_ctx)) { + case 1: + break; + case 2: + f: { + oavr_Recognizer_setState($this, 1875); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 184, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 1874); + oncipv_Cypher5Parser_matchMode($this); + } + oavr_Recognizer_setState($this, 1877); + oncipv_Cypher5Parser_patternList($this); + oavr_Recognizer_setState($this, 1879); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 301) + break e; + oavr_Recognizer_setState($this, 1878); + oncipv_Cypher5Parser_whereClause($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 1873); + oncipv_Cypher5Parser_regularQuery($this); + } + oavr_Recognizer_setState($this, 1883); + oavr_Parser_match($this, 217); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $t; -}, -oavr_Parser_removeParseListener = ($this, $listener) => { - let var$2; - var$2 = $this.$_parseListeners; - if (var$2 !== null && var$2.$remove1($listener) && $this.$_parseListeners.$isEmpty()) - $this.$_parseListeners = null; + return $_localctx; }, -oavr_Parser_triggerEnterRuleEvent = $this => { - let var$1; - var$1 = $this.$_parseListeners.$iterator(); - while (var$1.$hasNext()) { - (var$1.$next()).$enterEveryRule($this.$_ctx); +oncipv_Cypher5Parser_collectExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CollectExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 254, 127); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1885); + oavr_Parser_match($this, 46); + oavr_Recognizer_setState($this, 1886); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 1887); + oncipv_Cypher5Parser_regularQuery($this); + oavr_Recognizer_setState($this, 1888); + oavr_Parser_match($this, 217); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; }, -oavr_Parser_triggerExitRuleEvent = $this => { - let $i; - $i = $this.$_parseListeners.$size() - 1 | 0; - while ($i >= 0) { - ($this.$_parseListeners.$get0($i)).$exitEveryRule($this.$_ctx); - $i = $i + (-1) | 0; +oncipv_Cypher5Parser_numberLiteral = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NumberLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 256, 128); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1891); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 161) { + oavr_Recognizer_setState($this, 1890); + oavr_Parser_match($this, 161); + } + oavr_Recognizer_setState($this, 1893); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(240)), Long_ZERO)) { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else + $this.$_errHandler.$recoverInline($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; }, -oavr_Parser_getTokenFactory = $this => { - return $this.$_input.$tokenSource.$_factory; -}, -oavr_Parser_getInputStream0 = $this => { - return $this.$_input; -}, -oavr_Parser_getTokenStream = $this => { - return $this.$_input; -}, -oavr_Parser_setTokenStream = ($this, $input) => { - $this.$_input = null; - $this.$reset0(); - $this.$_input = $input; -}, -oavr_Parser_getCurrentToken = $this => { - return oavr_CommonTokenStream_LT($this.$_input, 1); -}, -oavr_Parser_notifyErrorListeners = ($this, $offendingToken, $msg, $e) => { - let var$4, var$5; - $this.$_syntaxErrors0 = $this.$_syntaxErrors0 + 1 | 0; - var$4 = $offendingToken.$getLine0(); - var$5 = $offendingToken.$getCharPositionInLine(); - oavr_ProxyErrorListener_syntaxError(oavr_Recognizer_getErrorListenerDispatch($this), $this, $offendingToken, var$4, var$5, $msg, $e); +oncipv_Cypher5Parser_signedIntegerLiteral = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SignedIntegerLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 258, 129); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1896); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 161) { + oavr_Recognizer_setState($this, 1895); + oavr_Parser_match($this, 161); + } + oavr_Recognizer_setState($this, 1898); + oavr_Parser_match($this, 5); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oavr_Parser_consume = $this => { - let $o, $node, $hasListener, var$4; - $o = oavr_Parser_getCurrentToken($this); - if ($o.$getType0() != (-1)) - oavr_BufferedTokenStream_consume($this.$_input); - $node = $this.$_parseListeners; - $hasListener = $node !== null && !$node.$isEmpty() ? 1 : 0; +oncipv_Cypher5Parser_listLiteral = $this => { + let $_localctx, $_la, var$3, var$4, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ListLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 260, 130); a: { - if (!(!$this.$_buildParseTrees && !$hasListener)) { - if (!$this.$_errHandler.$inErrorRecoveryMode($this)) { - $node = $this.$_ctx; - $node = oavr_ParserRuleContext_addChild0($node, $this.$createTerminalNode($node, $o)); - var$4 = $this.$_parseListeners; - if (var$4 === null) + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1900); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 1909); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4291035135, 4022337519)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4025286655, 4294967267)), Long_ZERO))) { + var$4 = $_la - 192 | 0; + if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(3166697215, 4286545919)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 1901); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1906); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 49) + break e; + oavr_Recognizer_setState($this, 1902); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1903); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 1908); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1911); + oavr_Parser_match($this, 216); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; - var$4 = var$4.$iterator(); - while (true) { - if (!var$4.$hasNext()) - break a; - (var$4.$next()).$visitTerminal($node); + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } - b: { - $node = $this.$_ctx; - $node = oavr_ParserRuleContext_addErrorNode($node, oavr_Parser_createErrorNode($this, $node, $o)); - var$4 = $this.$_parseListeners; - if (var$4 !== null) { - var$4 = var$4.$iterator(); - while (true) { - if (!var$4.$hasNext()) - break b; - (var$4.$next()).$visitErrorNode($node); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher5Parser_propertyKeyName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PropertyKeyNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 262, 131); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1913); + oncipv_Cypher5Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $o; -}, -oavr_Parser_createTerminalNode = ($this, $parent, $t) => { - return oavrt_TerminalNodeImpl__init_0($t); -}, -oavr_Parser_createErrorNode = ($this, $parent, $t) => { - $parent = new oavrt_ErrorNodeImpl; - oavrt_TerminalNodeImpl__init_($parent, $t); - return $parent; -}, -oavr_Parser_addContextToParseTree = $this => { - let var$1, $parent; - var$1 = $this.$_ctx; - $parent = var$1.$parent; - if ($parent !== null) - oavr_ParserRuleContext_addChild($parent, var$1); -}, -oavr_Parser_enterRule = ($this, $localctx, $state, $ruleIndex) => { - $this.$_stateNumber = $state; - $this.$_ctx = $localctx; - $localctx.$start1 = oavr_CommonTokenStream_LT($this.$_input, 1); - if ($this.$_buildParseTrees) - oavr_Parser_addContextToParseTree($this); - if ($this.$_parseListeners !== null) - oavr_Parser_triggerEnterRuleEvent($this); + return $_localctx; }, -oavr_Parser_exitRule = $this => { - let var$1; - if (!$this.$matchedEOF) - $this.$_ctx.$stop = oavr_CommonTokenStream_LT($this.$_input, (-1)); - else - $this.$_ctx.$stop = oavr_CommonTokenStream_LT($this.$_input, 1); - if ($this.$_parseListeners !== null) - oavr_Parser_triggerExitRuleEvent($this); - var$1 = $this.$_ctx; - $this.$_stateNumber = var$1.$invokingState; - $this.$_ctx = var$1.$parent; +oncipv_Cypher5Parser_parameter = ($this, $paramType) => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ParameterContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + $_localctx.$paramType2 = $paramType; + oavr_Parser_enterRule($this, $_localctx, 264, 132); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1915); + oavr_Parser_match($this, 80); + oavr_Recognizer_setState($this, 1916); + oncipv_Cypher5Parser_parameterName($this, $paramType); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $paramType = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $paramType = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($paramType); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oavr_Parser_enterOuterAlt = ($this, $localctx, $altNum) => { - let $parent; - if ($this.$_buildParseTrees) { - $parent = $this.$_ctx; - if ($parent !== $localctx) { - $parent = $parent.$parent; - if ($parent !== null) { - oavr_ParserRuleContext_removeLastChild($parent); - oavr_ParserRuleContext_addChild($parent, $localctx); +oncipv_Cypher5Parser_parameterName = ($this, $paramType) => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ParameterNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + $_localctx.$paramType0 = $paramType; + oavr_Parser_enterRule($this, $_localctx, 266, 133); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1920); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 5: + oavr_Recognizer_setState($this, 1919); + oavr_Parser_match($this, 5); + break e; + case 6: + case 7: + case 8: + case 9: + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + break; + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 1918); + oncipv_Cypher5Parser_symbolicNameString($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $paramType = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $paramType = $$je; + + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($paramType); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $this.$_ctx = $localctx; -}, -oavr_Parser_getPrecedence = $this => { - if (oavrm_IntegerList_isEmpty($this.$_precedenceStack)) - return (-1); - return oavrm_IntegerStack_peek($this.$_precedenceStack); -}, -oavr_Parser_getContext = $this => { - return $this.$_ctx; -}, -oavr_Parser_precpred = ($this, $localctx, $precedence) => { - return $precedence < oavrm_IntegerStack_peek($this.$_precedenceStack) ? 0 : 1; -}, -oavr_Parser_isMatchedEOF = $this => { - return $this.$matchedEOF; -}, -oavr_Parser_getExpectedTokens = $this => { - return oavra_ATN_getExpectedTokens($this.$getATN(), $this.$_stateNumber, $this.$_ctx); -}, -oavr_Parser_getRuleInvocationStack = $this => { - return oavr_Parser_getRuleInvocationStack0($this, $this.$_ctx); -}, -oavr_Parser_getRuleInvocationStack0 = ($this, $p) => { - let $ruleNames, $stack, $ruleIndex; - $ruleNames = $this.$getRuleNames(); - $stack = ju_ArrayList__init_(); - while ($p !== null) { - $ruleIndex = $p.$getRuleIndex(); - if ($ruleIndex < 0) - ju_ArrayList_add($stack, $rt_s(6118)); - else - ju_ArrayList_add($stack, $ruleNames.data[$ruleIndex]); - $p = $p.$parent; - } - return $stack; -}, -oavr_Parser_setTrace = ($this, $trace) => { - let var$2; - if (!$trace) { - oavr_Parser_removeParseListener($this, $this.$_tracer); - $this.$_tracer = null; - } else { - var$2 = $this.$_tracer; - if (var$2 !== null) - oavr_Parser_removeParseListener($this, var$2); - else { - var$2 = new oavr_Parser$TraceListener; - var$2.$this$021 = $this; - $this.$_tracer = var$2; - } - $this.$addParseListener($this.$_tracer); - } -}, -oavr_Parser_getInputStream = $this => { - return $this.$_input; -}; -function oncip_CypherErrorStrategy() { - let a = this; jl_Object.call(a); - a.$conf0 = null; - a.$vocabulary1 = null; - a.$inErrorMode = 0; -} -let oncip_CypherErrorStrategy_vocabulary = $this => { - return $this.$vocabulary1; + return $_localctx; }, -oncip_CypherErrorStrategy_reportError = ($this, $parser, $e) => { - let var$3, var$4, var$5, var$6, var$7, var$8, $$je; - if ($this.$inErrorMode) - return; +oncipv_Cypher5Parser_functionInvocation = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$FunctionInvocationContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 268, 134); a: { b: { - $this.$inErrorMode = 1; - oncip_CypherErrorStrategy_populateException($this, $parser.$_ctx, $e); - var$3 = $e.$offendingToken; - var$4 = var$3.$getText(); - if (!(var$4 !== null && jl_String_equals(var$4, $rt_s(4445)))) { - var$5 = var$3.$getText(); - if (var$5 === null) - break b; - if (!jl_String_equals(var$5, $rt_s(481))) - break b; - } - var$6 = 1; - break a; - } - var$6 = 0; - } - if (var$6) - var$5 = oncip_CypherErrorStrategy$_quoteMismatchErrorMessage; - else { - c: { - d: { - var$7 = $e.$offendingToken; - var$4 = var$7.$getText(); - if (var$4 !== null && jl_String_equals(var$4, $rt_s(89))) { - var$5 = (oavr_CommonTokenStream_LT($parser.$_input, 2)).$getText(); - if (var$5 !== null && jl_String_equals(var$5, $rt_s(172))) - break d; - } - var$5 = var$7.$getText(); - if (var$5 !== null && jl_String_equals(var$5, $rt_s(172))) { - var$5 = (oavr_CommonTokenStream_LT($parser.$_input, (-1))).$getText(); - if (var$5 !== null && jl_String_equals(var$5, $rt_s(89))) - break d; + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1922); + oncipv_Cypher5Parser_functionName($this); + oavr_Recognizer_setState($this, 1923); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 1925); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 192, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 1924); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 81) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + f: { + oavr_Recognizer_setState($this, 1935); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4291035135, 4022337519)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4025286655, 4294967267)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697215, 4286545919)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break f; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break f; + } + } + } + } + oavr_Recognizer_setState($this, 1927); + oncipv_Cypher5Parser_functionArgument($this); + oavr_Recognizer_setState($this, 1932); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 49) + break f; + oavr_Recognizer_setState($this, 1928); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1929); + oncipv_Cypher5Parser_functionArgument($this); + oavr_Recognizer_setState($this, 1934); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 1937); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - var$6 = 0; - break c; - } - var$6 = 1; - } - if (var$6) - var$5 = oncip_CypherErrorStrategy$_commentMismatchErrorMessage; - else { - s_Option$_$callClinit(); - var$8 = s_Option_getOrElse(s_Option_map(s_Option_flatMap(s_Option_filter(s_Option$_apply(s_Option$_MODULE$, $e.$offendingToken), new oncip_CypherErrorStrategy$message$lambda$_7_0), new oncip_CypherErrorStrategy$message$lambda$_7_1), new oncip_CypherErrorStrategy$message$lambda$_7_2), new oncip_CypherErrorStrategy$message$lambda$_7_3); - e: { try { - var$7 = onciafnc_CodeCompletionCore__init_0($parser, scc_AsJavaExtensions$SetHasAsJava_asJava(sj_CollectionConverters$_SetHasAsJava(sj_CollectionConverters$_MODULE$, $this.$conf0.$preferredRules())), $this.$conf0.$ignoredTokens()); - var$6 = (oavr_RecognitionException_getOffendingToken($e)).$getTokenIndex(); - var$5 = oncip_CypherErrorVocabulary_expected(oncip_CypherErrorStrategy_vocabulary($this), onciafnc_CodeCompletionCore_collectCandidates(var$7, var$6, oavr_RecognitionException_getCtx($e))); - break e; + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; } catch ($$e) { $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - var$5 = $$je; - } else { - throw $$e; - } - } - if (var$5 !== null && !s_Option_isEmpty(suc_NonFatal$_unapply(suc_NonFatal$_MODULE$, var$5))) { - var$7 = $this.$vocabulary1; - var$5 = oavr_RecognitionException_getExpectedTokens($e); - var$5 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$5.$intervals)); - var$4 = new oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0; - var$4.$_088 = var$7; - var$5 = (sc_StrictOptimizedIterableOps_flatMap$(var$5, var$4)).$toSeq(); - sm_Ordering$String$_$callClinit(); - var$5 = var$5.$sorted(sm_Ordering$String$_MODULE$); - } else - $rt_throw(var$5); - } - f: { - if (var$5 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$5); - if (!var$5.$lengthCompare(1)) { - var$5 = var$5.$apply1(0); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6119)), var$5); - var$5 = jl_AbstractStringBuilder_toString(var$4); - break f; - } - } - if (!sc_IterableOnceOps_nonEmpty$(var$5)) - var$5 = $rt_s(4); - else { - var$7 = sc_IterableOnceOps_mkString$(var$5.$dropRight(1), $rt_s(6119), $rt_s(45), $rt_s(4)); - var$5 = var$5.$last(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$7), $rt_s(872)), var$5); - var$5 = jl_AbstractStringBuilder_toString(var$4); + $_localctx = $$je; + } } - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$7 = jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3971)), var$8); - jl_AbstractStringBuilder_append0(var$7, 39); - jl_StringBuilder_append(var$7, var$5); - var$5 = jl_AbstractStringBuilder_toString(var$4); + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $parser.$notifyErrorListeners(var$3, var$5, $e); -}, -oncip_CypherErrorStrategy_recoverInline = ($this, $parser) => { - let $e; - $e = oavr_InputMismatchException__init_0($parser, $parser.$_stateNumber, $parser.$_ctx); - oncip_CypherErrorStrategy_populateException($this, $parser.$_ctx, $e); - $rt_throw($e); -}, -oncip_CypherErrorStrategy_recover = ($this, $parser, $e) => { - if (!$this.$inErrorMode) - return; - oavr_Parser_consume($parser); -}, -oncip_CypherErrorStrategy_sync = ($this, $parser) => { - return; -}, -oncip_CypherErrorStrategy_inErrorRecoveryMode = ($this, $recognizer) => { - return $this.$inErrorMode; -}, -oncip_CypherErrorStrategy_reset = ($this, $recognizer) => { - $this.$inErrorMode = 0; -}, -oncip_CypherErrorStrategy_reportMatch = ($this, $recognizer) => { - return; -}, -oncip_CypherErrorStrategy_populateException = ($this, $ctx, $e) => { - while ($ctx !== null) { - $ctx.$exception = $e; - $ctx = $ctx.$parent; - } -}; -function oncias_SemanticCheck$$error$lambda$_2_0() { - jl_Object.call(this); - this.$_0423 = null; -} -let oncias_SemanticCheck$$error$lambda$_2_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0423; - oncias_SemanticCheck$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_error1(oncias_SemanticCheckResult$_MODULE$, var$1, var$2); -}, -oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - oncia_SingleQuery$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = oncia_SingleQuery$_extractGraphSelection(oncia_SingleQuery$_MODULE$, var$1); - var$4 = new oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0; - var$4.$_052 = var$2; - var$3 = s_Option_map(var$3, var$4); - var$4 = new oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1; - var$4.$_0838 = var$2; - var$4.$_1288 = var$1; - return s_Option_getOrElse(var$3, var$4); -}; -function oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0() { - jl_Object.call(this); - this.$_0315 = null; -} -let oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0315; - var$3 = new oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0; - var$3.$_030 = var$1; - return jl_Boolean_valueOf(sci_List_exists(var$2, var$3)); -}; -function oncias_SemanticCheck$$fromState$lambda$_8_0() { - jl_Object.call(this); - this.$_0118 = null; -} -let oncias_SemanticCheck$$fromState$lambda$_8_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0118; - oncias_SemanticCheck$_$callClinit(); - return var$2.$apply2(var$1.$state); -}, -oavr_IntStream = $rt_classWithoutFields(0), -oavr_TokenStream = $rt_classWithoutFields(0); -function oavr_BufferedTokenStream() { - let a = this; jl_Object.call(a); - a.$tokenSource = null; - a.$tokens = null; - a.$p = 0; - a.$fetchedEOF = 0; -} -let oavr_BufferedTokenStream_$assertionsDisabled = 0, -oavr_BufferedTokenStream_index = $this => { - return $this.$p; -}, -oavr_BufferedTokenStream_seek = ($this, $index) => { - oavr_BufferedTokenStream_lazyInit($this); - $this.$p = oavr_CommonTokenStream_adjustSeekIndex($this, $index); -}, -oavr_BufferedTokenStream_size = $this => { - return $this.$tokens.$size0; -}, -oavr_BufferedTokenStream_consume = $this => { - let var$1, $skipEofCheck, var$3; - var$1 = $this.$p; - $skipEofCheck = var$1 < 0 ? 0 : !$this.$fetchedEOF ? (var$1 >= $this.$tokens.$size0 ? 0 : 1) : var$1 >= ($this.$tokens.$size0 - 1 | 0) ? 0 : 1; - if (!$skipEofCheck && oavr_BufferedTokenStream_LA($this, 1) == (-1)) { - var$3 = new jl_IllegalStateException; - jl_Throwable__init_0(var$3, $rt_s(6120)); - $rt_throw(var$3); - } - if (oavr_BufferedTokenStream_sync($this, $this.$p + 1 | 0)) - $this.$p = oavr_CommonTokenStream_adjustSeekIndex($this, $this.$p + 1 | 0); + return $_localctx; }, -oavr_BufferedTokenStream_sync = ($this, $i) => { - let var$2, $n, $fetched; - if (!oavr_BufferedTokenStream_$assertionsDisabled && $i < 0) { - var$2 = new jl_AssertionError; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - $n = ($i - $this.$tokens.$size0 | 0) + 1 | 0; - if ($n <= 0) - return 1; +oncipv_Cypher5Parser_functionArgument = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$FunctionArgumentContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 270, 135); a: { - if ($this.$fetchedEOF) - $fetched = 0; - else { - $i = 0; - while ($i < $n) { - var$2 = oavr_Lexer_nextToken($this.$tokenSource); - if ($rt_isInstance(var$2, oavr_WritableToken)) - var$2.$index6 = $this.$tokens.$size0; - ju_ArrayList_add($this.$tokens, var$2); - if (var$2.$getType0() == (-1)) { - $this.$fetchedEOF = 1; - $fetched = $i + 1 | 0; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1939); + oncipv_Cypher5Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } - $i = $i + 1 | 0; + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } - $fetched = $n; + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $fetched < $n ? 0 : 1; -}, -oavr_BufferedTokenStream_LA = ($this, $i) => { - return (oavr_CommonTokenStream_LT($this, $i)).$getType0(); -}, -oavr_BufferedTokenStream_lazyInit = $this => { - if ($this.$p == (-1)) { - oavr_BufferedTokenStream_sync($this, 0); - $this.$p = oavr_CommonTokenStream_adjustSeekIndex($this, 0); - } -}, -oavr_BufferedTokenStream_nextTokenOnChannel = ($this, $i, $channel) => { - let $token; - oavr_BufferedTokenStream_sync($this, $i); - if ($i >= oavr_BufferedTokenStream_size($this)) - return oavr_BufferedTokenStream_size($this) - 1 | 0; - $token = ju_ArrayList_get($this.$tokens, $i); - while ($token.$getChannel() != $channel) { - if ($token.$getType0() == (-1)) - return $i; - $i = $i + 1 | 0; - oavr_BufferedTokenStream_sync($this, $i); - $token = ju_ArrayList_get($this.$tokens, $i); - } - return $i; + return $_localctx; }, -oavr_BufferedTokenStream_getText = ($this, $interval) => { - let $i, $stop, var$4, $buf, $t; - $i = $interval.$a0; - $stop = $interval.$b; - if ($i >= 0 && $stop >= 0) { - oavr_BufferedTokenStream_sync($this, $stop); - var$4 = $this.$tokens.$size0; - if ($stop >= var$4) - $stop = var$4 - 1 | 0; - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - a: { - while (true) { - if ($i > $stop) +oncipv_Cypher5Parser_functionName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$FunctionNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 272, 136); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1941); + oncipv_Cypher5Parser_namespace($this); + oavr_Recognizer_setState($this, 1942); + oncipv_Cypher5Parser_symbolicNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; - $t = ju_ArrayList_get($this.$tokens, $i); - if ($t.$getType0() == (-1)) - break; - jl_AbstractStringBuilder_append($buf, $t.$getText()); - $i = $i + 1 | 0; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - return jl_AbstractStringBuilder_toString($buf); - } - return $rt_s(4); -}, -oavr_BufferedTokenStream__clinit_ = () => { - oavr_BufferedTokenStream_$assertionsDisabled = 0; -}; -function oavr_CommonTokenStream() { - oavr_BufferedTokenStream.call(this); - this.$channel1 = 0; -} -let oavr_CommonTokenStream__init_ = ($this, $tokenSource) => { - $this.$tokens = ju_ArrayList__init_1(100); - $this.$p = (-1); - if ($tokenSource !== null) { - $this.$tokenSource = $tokenSource; - $this.$channel1 = 0; - return; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $tokenSource = new jl_NullPointerException; - jl_Throwable__init_0($tokenSource, $rt_s(6121)); - $rt_throw($tokenSource); -}, -oavr_CommonTokenStream__init_0 = var_0 => { - let var_1 = new oavr_CommonTokenStream(); - oavr_CommonTokenStream__init_(var_1, var_0); - return var_1; -}, -oavr_CommonTokenStream_adjustSeekIndex = ($this, $i) => { - return oavr_BufferedTokenStream_nextTokenOnChannel($this, $i, $this.$channel1); + return $_localctx; }, -oavr_CommonTokenStream_LT = ($this, $k) => { - let $i, $n, var$4, var$5, var$6; - oavr_BufferedTokenStream_lazyInit($this); - if (!$k) - return null; - if ($k >= 0) { - $i = $this.$p; - $n = 1; - while ($n < $k) { - var$4 = $i + 1 | 0; - if (oavr_BufferedTokenStream_sync($this, var$4)) - $i = oavr_BufferedTokenStream_nextTokenOnChannel($this, var$4, $this.$channel1); - $n = $n + 1 | 0; - } - return ju_ArrayList_get($this.$tokens, $i); - } +oncipv_Cypher5Parser_namespace = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NamespaceContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 274, 137); a: { - $k = -$k | 0; - if ($k) { - $i = $this.$p; - if (($i - $k | 0) >= 0) { - $n = 1; - while ($n <= $k && $i > 0) { - b: { - $i = $i - 1 | 0; - var$5 = $this.$channel1; - oavr_BufferedTokenStream_sync($this, $i); - if ($i >= oavr_BufferedTokenStream_size($this)) - $i = oavr_BufferedTokenStream_size($this) - 1 | 0; - else - c: { - while ($i >= 0) { - var$6 = ju_ArrayList_get($this.$tokens, $i); - if (var$6.$getType0() == (-1)) - break c; - if (var$6.$getChannel() == var$5) - break c; - $i = $i + (-1) | 0; - } - break b; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1949); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 195, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1944); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1945); + oavr_Parser_match($this, 83); } + oavr_Recognizer_setState($this, 1951); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 195, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } } - $n = $n + 1 | 0; - } - if ($i < 0) { - var$6 = null; + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } - var$6 = ju_ArrayList_get($this.$tokens, $i); - break a; - } - } - var$6 = null; - } - return var$6; -}; -function oncipl_UnicodeEscapeReplacementReader$InvalidUnicodeLiteral() { - let a = this; jl_RuntimeException.call(a); - a.$offset9 = 0; - a.$line10 = 0; - a.$column5 = 0; -} -let oncipa_AstBuildingAntlrParser = $rt_classWithoutFields(0), -oncipa_AstBuildingAntlrParser_exitRule$ = $$this => { - let var$2, var$3, $$je; - a: { - var$2 = $$this.$_ctx; - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule(); - if ($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors()) { - ($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker()).$exitEveryRule(var$2); - ($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder()).$exitEveryRule(var$2); - } else if (!$$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed()) { - if (!($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker()).$check2(var$2)) - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(1); - else try { - ($$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder()).$exitEveryRule(var$2); - break a; + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; } catch ($$e) { $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - var$3 = $$je; - if (var$3 !== null) { - var$2 = suc_NonFatal$_unapply(suc_NonFatal$_MODULE$, var$3); - if (!s_Option_isEmpty(var$2)) { - var$3 = var$2.$get1(); - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(1); - $rt_throw(var$3); - } - } - $rt_throw(var$3); - } else { - throw $$e; - } + $_localctx = $$je; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - if ($$this.$isSafeToFreeChildren(var$2)) - var$2.$children0 = null; -}, -oncipa_AstBuildingAntlrParser_createTerminalNode$ = ($$this, $parent, $t) => { - return !$rt_isInstance($t, oavrt_TerminalNode) ? $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode($parent, $t) : $t; -}, -oncipa_AstBuildingAntlrParser_reset$ = $$this => { - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset(); - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq($$this.$createAstBuilder()); - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq($$this.$createSyntaxChecker()); - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(0); -}, -oncipa_AstBuildingAntlrParser_addParseListener$ = ($$this, $listener) => { - $$this = new jl_UnsupportedOperationException; - jl_Throwable__init_($$this); - $rt_throw($$this); -}, -oncipa_AstBuildingAntlrParser_setErrorHandler$ = ($$this, $handler) => { - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler($handler); - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq($handler instanceof oavr_BailErrorStrategy); -}, -oncipa_AstBuildingAntlrParser_notifyErrorListeners$ = ($$this, $offendingToken, $msg, $e) => { - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(1); - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners($offendingToken, $msg, $e); -}, -oncipa_AstBuildingAntlrParser_$init$ = $$this => { - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq(0); - $$this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq(0); -}, -oavr_Vocabulary = $rt_classWithoutFields(0); -function oncip_CypherErrorVocabulary() { - jl_Object.call(this); - this.$conf = null; -} -let oncip_CypherErrorVocabulary_expected = ($this, $candidates) => { - let $tokenNames, $ruleNames, var$4, var$5; - $tokenNames = sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, ju_HashMap_entrySet($candidates.$rules)))); - $ruleNames = new oncip_CypherErrorVocabulary$expected$lambda$_0_0; - $ruleNames.$_0545 = $this; - $ruleNames = $tokenNames.$flatMap($ruleNames); - sm_Ordering$String$_$callClinit(); - $ruleNames = $ruleNames.$sorted(sm_Ordering$String$_MODULE$); - $tokenNames = (sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, ju_HashMap_entrySet($candidates.$tokens0))))).$map(new oncip_CypherErrorVocabulary$expected$lambda$_0_1); - var$4 = new oncip_CypherErrorVocabulary$expected$lambda$_0_2; - var$4.$_0505 = $this; - $candidates = sm_Ordering$String$_MODULE$; - var$5 = new sm_Ordering$IterableOrdering; - var$5.$ord0 = $candidates; - $tokenNames = sc_SeqOps_sortBy$($tokenNames, var$4, var$5); - $candidates = new oncip_CypherErrorVocabulary$expected$lambda$_0_3; - $candidates.$_0955 = $this; - return ($ruleNames.$concat($tokenNames.$map($candidates))).$distinct0(); -}, -oncip_CypherErrorVocabulary_getSymbolicName = ($this, $tokenType) => { - return oavr_VocabularyImpl_getSymbolicName($this.$conf.$vocabulary0(), $tokenType); -}, -oncip_CypherErrorVocabulary_getDisplayName = ($this, $tokenType) => { - let $name, $displayNames, var$4; - $name = ($this.$conf.$customTokenDisplayNames()).$get2(jl_Integer_valueOf($tokenType)); - if ($name instanceof s_Some) - return $name.$value5; - $displayNames = ($this.$conf.$vocabulary0()).$displayNames; - if ($tokenType > 0) { - $displayNames = $displayNames.data; - if ($tokenType < $displayNames.length && $displayNames[$tokenType] !== null) - return $displayNames[$tokenType]; - } - s_Option$_$callClinit(); - $name = s_Option$_apply(s_Option$_MODULE$, oavr_VocabularyImpl_getLiteralName($this.$conf.$vocabulary0(), $tokenType)); - var$4 = new oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0; - var$4.$_0475 = $this; - var$4.$_1165 = $tokenType; - $name = s_Option_orElse($name, var$4); - var$4 = new oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1; - var$4.$_0941 = $tokenType; - return s_Option_getOrElse($name, var$4); -}, -oncip_CypherErrorVocabulary_org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1 = ($this, $gs, $ruleCallStack$1) => { - let var$3; - var$3 = new oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0; - var$3.$_0831 = $this; - var$3.$_1283 = $ruleCallStack$1; - return sc_IterableOnceOps_forall$($gs, var$3); -}, -oavrt_Tree = $rt_classWithoutFields(0), -oavrt_SyntaxTree = $rt_classWithoutFields(0), -oavrt_ParseTree = $rt_classWithoutFields(0), -oavrt_RuleNode = $rt_classWithoutFields(0); -function oavr_RuleContext() { - let a = this; jl_Object.call(a); - a.$parent = null; - a.$invokingState = 0; -} -let oavr_RuleContext_isEmpty = $this => { - return $this.$invokingState != (-1) ? 0 : 1; -}, -oavr_RuleContext_getRuleContext = $this => { - return $this; -}, -oavr_RuleContext_getRuleIndex = $this => { - return (-1); -}, -oavr_RuleContext_setAltNumber = ($this, $altNumber) => { - return; -}, -oavr_RuleContext_toString0 = $this => { - return oavr_RuleContext_toString($this, null, null); -}, -oavr_RuleContext_toString = ($this, $ruleNames, $stop) => { - let $buf, $ruleIndex, $ruleName; - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - jl_AbstractStringBuilder_append($buf, $rt_s(426)); - while ($this !== null && $this !== $stop) { - if ($ruleNames !== null) { - $ruleIndex = $this.$getRuleIndex(); - jl_AbstractStringBuilder_append($buf, $ruleIndex >= 0 && $ruleIndex < $ruleNames.$size() ? $ruleNames.$get0($ruleIndex) : jl_Integer_toString($ruleIndex)); - } else if (!oavr_RuleContext_isEmpty($this)) - jl_StringBuilder_append0($buf, $this.$invokingState); - $ruleName = $this.$parent; - if ($ruleName !== null && !($ruleNames === null && oavr_RuleContext_isEmpty($ruleName))) - jl_AbstractStringBuilder_append($buf, $rt_s(384)); - $this = $this.$parent; - } - jl_AbstractStringBuilder_append($buf, $rt_s(427)); - return jl_AbstractStringBuilder_toString($buf); -}; -function oavr_ParserRuleContext() { - let a = this; oavr_RuleContext.call(a); - a.$children0 = null; - a.$start1 = null; - a.$stop = null; - a.$exception = null; -} -let oavr_ParserRuleContext_EMPTY = null, -oavr_ParserRuleContext__init_ = $this => { - $this.$invokingState = (-1); -}, -oavr_ParserRuleContext__init_0 = () => { - let var_0 = new oavr_ParserRuleContext(); - oavr_ParserRuleContext__init_(var_0); - return var_0; + return $_localctx; }, -oavr_ParserRuleContext_copyFrom = ($this, $ctx) => { - let $child; +oncipv_Cypher5Parser_variable = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$VariableContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 276, 138); a: { - $this.$parent = $ctx.$parent; - $this.$invokingState = $ctx.$invokingState; - $this.$start1 = $ctx.$start1; - $this.$stop = $ctx.$stop; - if ($ctx.$children0 !== null) { - $this.$children0 = ju_ArrayList__init_(); - $ctx = ju_AbstractList_iterator($ctx.$children0); - while (true) { - if (!ju_AbstractList$1_hasNext($ctx)) + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1952); + oncipv_Cypher5Parser_symbolicVariableNameString($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); break a; - $child = ju_AbstractList$1_next($ctx); - if ($rt_isInstance($child, oavrt_ErrorNode)) - oavr_ParserRuleContext_addChild0($this, $child); + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; }, -oavr_ParserRuleContext_enterRule = ($this, $listener) => { - return; -}, -oavr_ParserRuleContext_exitRule = ($this, $listener) => { - return; -}, -oavr_ParserRuleContext_addAnyChild = ($this, $t) => { - if ($this.$children0 === null) - $this.$children0 = ju_ArrayList__init_(); - ju_ArrayList_add($this.$children0, $t); - return $t; -}, -oavr_ParserRuleContext_addChild = ($this, $ruleInvocation) => { - return oavr_ParserRuleContext_addAnyChild($this, $ruleInvocation); -}, -oavr_ParserRuleContext_addChild0 = ($this, $t) => { - $t.$setParent($this); - return oavr_ParserRuleContext_addAnyChild($this, $t); -}, -oavr_ParserRuleContext_addErrorNode = ($this, $errorNode) => { - $errorNode.$parent3 = $this; - return oavr_ParserRuleContext_addAnyChild($this, $errorNode); -}, -oavr_ParserRuleContext_removeLastChild = $this => { - let var$1; - var$1 = $this.$children0; - if (var$1 !== null) - ju_ArrayList_remove(var$1, var$1.$size0 - 1 | 0); -}, -oavr_ParserRuleContext_getParent0 = $this => { - return $this.$parent; -}, -oavr_ParserRuleContext_getRuleContext = ($this, $ctxType, $i) => { - return oncip_AstRuleCtx_getChild0($this, $ctxType, $i); -}, -oavr_ParserRuleContext_getChildCount = $this => { - let var$1; - var$1 = $this.$children0; - return var$1 === null ? 0 : var$1.$size0; -}, -oavr_ParserRuleContext_getStart = $this => { - return $this.$start1; -}, -oavr_ParserRuleContext_getParent = $this => { - return $this.$parent; -}, -oavr_ParserRuleContext__clinit_ = () => { - oavr_ParserRuleContext_EMPTY = oavr_ParserRuleContext__init_0(); -}; -function oncip_AstRuleCtx() { - oavr_ParserRuleContext.call(this); - this.$ast0 = null; -} -let oncip_AstRuleCtx__init_ = ($this, $parent, $invokingStateNumber) => { - $this.$invokingState = (-1); - $this.$parent = $parent; - $this.$invokingState = $invokingStateNumber; - $this.$children0 = ju_ArrayList__init_1(1); -}, -oncip_AstRuleCtx__init_0 = (var_0, var_1) => { - let var_2 = new oncip_AstRuleCtx(); - oncip_AstRuleCtx__init_(var_2, var_0, var_1); - return var_2; -}, -oncip_AstRuleCtx_ast = $this => { - return $this.$ast0; -}, -oncip_AstRuleCtx_getText = $this => { - let $builder, $size, $i; +oncipv_Cypher5Parser_nonEmptyNameList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NonEmptyNameListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 278, 139); a: { - $builder = $this.$children0; - $size = $builder.$size0; - switch ($size) { - case 0: - break; - case 1: - $builder = (ju_ArrayList_get($builder, 0)).$getText(); - break a; - default: - $builder = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($builder); - $i = 0; - while ($i < $size) { - jl_AbstractStringBuilder_append($builder, (ju_ArrayList_get($this.$children0, $i)).$getText()); - $i = $i + 1 | 0; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1954); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1959); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 1955); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 1956); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 1961); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; } - $builder = jl_AbstractStringBuilder_toString($builder); - break a; - } - $builder = $rt_s(4); - } - return $builder; -}, -oncip_AstRuleCtx_getToken = ($this, $targetType, $targetIndex) => { - let $tokenIndex, $size, $i, $node; - $tokenIndex = (-1); - $size = $this.$children0.$size0; - $i = 0; - while (true) { - if ($i >= $size) - return null; - $node = ju_ArrayList_get($this.$children0, $i); - if ($rt_isInstance($node, oavrt_TerminalNode)) { - $node = $node; - if (($node.$getSymbol()).$getType0() == $targetType) { - $tokenIndex = $tokenIndex + 1 | 0; - if ($tokenIndex == $targetIndex) - break; - } - } - $i = $i + 1 | 0; - } - return $node; -}, -oncip_AstRuleCtx_getTokens = ($this, $targetType) => { - let $tokens, $size, $i, $node; - $tokens = null; - $size = $this.$children0.$size0; - $i = 0; - while ($i < $size) { - $node = ju_ArrayList_get($this.$children0, $i); - if ($rt_isInstance($node, oavrt_TerminalNode)) { - $node = $node; - if (($node.$getSymbol()).$getType0() == $targetType) { - if ($tokens === null) - $tokens = ju_ArrayList__init_(); - ju_ArrayList_add($tokens, $node); - } - } - $i = $i + 1 | 0; - } - if ($tokens === null) - $tokens = ju_Collections_EMPTY_LIST; - return $tokens; -}, -oncip_AstRuleCtx_getRuleContexts = ($this, $ctxType) => { - let $contexts, $size, $i, $o; - $contexts = null; - $size = $this.$children0.$size0; - $i = 0; - while ($i < $size) { - $o = ju_ArrayList_get($this.$children0, $i); - if (jl_Class_isInstance($ctxType, $o)) { - if ($contexts === null) - $contexts = ju_ArrayList__init_(); - ju_ArrayList_add($contexts, jl_Class_cast($ctxType, $o)); - } - $i = $i + 1 | 0; - } - if ($contexts === null) - $contexts = ju_Collections_EMPTY_LIST; - return $contexts; -}, -oncip_AstRuleCtx_getChild0 = ($this, $ctxType, $targetIndex) => { - let $childIndex, $size, $i, $o; - $childIndex = (-1); - $size = $this.$children0.$size0; - $i = 0; - while ($i < $size) { - $o = ju_ArrayList_get($this.$children0, $i); - if (jl_Class_isInstance($ctxType, $o)) { - $childIndex = $childIndex + 1 | 0; - if ($childIndex == $targetIndex) - return jl_Class_cast($ctxType, $o); + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - $i = $i + 1 | 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return null; -}, -oncip_AstRuleCtx_getChild = ($this, $i) => { - return ju_ArrayList_get($this.$children0, $i); -}, -oncipa_AntlrAstParser$doParse$lambda$_6_0 = $rt_classWithoutFields(), -oncipa_AntlrAstParser$doParse$lambda$_6_0_apply = (var$0, var$1, var$2) => { - return onih_Exceptions_chain(var$1, var$2); -}, -oncipa_AntlrAstParser$doParse$lambda$_6_1 = $rt_classWithoutFields(), -oncipa_AntlrAstParser$doParse$lambda$_6_1_apply = (var$0, var$1, var$2) => { - return onih_Exceptions_chain(var$1, var$2); -}, -oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), -oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticAnalysisTooling$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_newChildScope(var$1)); + return $_localctx; }, -oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1 = $rt_classWithoutFields(), -oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticAnalysisTooling$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_popScope(var$1)); -}; -function oncia_SingleQuery$$anonfun$extractImportingWith$1() { - sr_AbstractPartialFunction.call(this); - this.$clauses$5 = null; -} -let oncia_SingleQuery$$anonfun$extractImportingWith$1_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5, var$6, var$7, var$8; +oncipv_Cypher5Parser_type = $this => { + let $_localctx, $_alt, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$TypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 280, 140); a: { - $x = $x; - if ($x instanceof oncia_With) { - $default = $x; - var$3 = $default.$distinct2; - var$4 = $default.$returnItems4; - var$5 = $default.$orderBy4; - var$6 = $default.$skip5; - var$7 = $default.$limit5; - var$8 = $default.$where2; - if (0 == var$3 && jl_Object_equals(s_None$_MODULE$, var$5) && jl_Object_equals(s_None$_MODULE$, var$6) && jl_Object_equals(s_None$_MODULE$, var$7) && jl_Object_equals(s_None$_MODULE$, var$8) && var$4.$items0.$forall(new oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0)) { - $x = s_Tuple2__init_($default, $this.$clauses$5.$tail()); - break a; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1962); + oncipv_Cypher5Parser_typePart($this); + oavr_Recognizer_setState($this, 1967); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 197, $this.$_ctx); + while ($_alt != 2 && $_alt) { + if ($_alt == 1) { + oavr_Recognizer_setState($this, 1963); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 1964); + oncipv_Cypher5Parser_typePart($this); + } + oavr_Recognizer_setState($this, 1969); + $this.$_errHandler.$sync($this); + $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 197, $this.$_ctx); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - $x = s_PartialFunction$_fallback_fn; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $x; -}, -oavr_Token = $rt_classWithoutFields(0), -oncipl_CypherToken = $rt_classWithoutFields(0), -oncipl_CypherToken_factory = $fullTokens => { - return !$fullTokens ? oncipl_CypherTokenFactory$_MODULE$ : oncipl_FullCypherTokenFactory$_MODULE$; -}, -oncipl_CypherToken_position$ = $$this => { - return oncipl_CypherQueryAccess_inputPosition($$this.$getTokenSource(), $$this.$getStartIndex(), $$this.$getLine0(), $$this.$getCharPositionInLine()); -}, -oncipl_CypherToken_inputOffset$ = ($$this, $parserOffset) => { - return oncipl_CypherQueryAccess_inputOffset($$this.$getTokenSource(), $parserOffset); -}, -oncifp_ResolvedCall$ = $rt_classWithoutFields(), -oncifp_ResolvedCall$_MODULE$ = null, -oncifp_ResolvedCall$_$callClinit = () => { - oncifp_ResolvedCall$_$callClinit = $rt_eraseClinit(oncifp_ResolvedCall$); - oncifp_ResolvedCall$__clinit_(); -}, -oncifp_ResolvedCall$__clinit_ = () => { - let var$1; - var$1 = new oncifp_ResolvedCall$; - oncifp_ResolvedCall$_$callClinit(); - oncifp_ResolvedCall$_MODULE$ = var$1; -}; -function oncifp_RewriteProcedureCalls$resolveProcedure$lambda$_7_0() { - jl_Object.call(this); - this.$_01213 = null; -} -let js_PrivilegedAction = $rt_classWithoutFields(0); -function oavra_ParserATNSimulator$1() { - jl_Object.call(this); - this.$val$envName = null; -} -let oavra_ParserATNSimulator$1__init_0 = ($this, var$1) => { - $this.$val$envName = var$1; -}, -oavra_ParserATNSimulator$1__init_ = var_0 => { - let var_1 = new oavra_ParserATNSimulator$1(); - oavra_ParserATNSimulator$1__init_0(var_1, var_0); - return var_1; -}, -js_AccessController = $rt_classWithoutFields(), -js_AccessController_doPrivileged = $action => { - return null; -}, -s_Product4 = $rt_classWithoutFields(0); -function s_Tuple4() { - let a = this; jl_Object.call(a); - a.$_1399 = null; - a.$_2128 = null; - a.$_334 = null; - a.$_47 = null; -} -function oncifp_ResolvedCall$$apply$lambda$_5_0() { - let a = this; jl_Object.call(a); - a.$_0365 = null; - a.$_1134 = null; -} -let oncifp_ResolvedCall$$apply$lambda$_5_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0365; - var$2 = var$0.$_1134; - oncifp_ResolvedCall$_$callClinit(); - var$3 = var$1.$inputSignature0; - var$1 = new oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0; - var$1.$_06 = var$2; - return sci_ArraySeq_map(var$3, var$1); -}, -oncifp_ResolvedCall$$apply$lambda$_5_1 = $rt_classWithoutFields(), -oncifp_ResolvedCall$$apply$lambda$_5_1_apply = (var$0, var$1) => { - var$1 = var$1; - oncifp_ResolvedCall$_$callClinit(); - return jl_Boolean_valueOf(var$1.$sensitive); + return $_localctx; }, -oncifp_ResolvedCall$$apply$lambda$_5_2 = $rt_classWithoutFields(), -oncifp_ResolvedCall$$apply$lambda$_5_2_apply = (var$0, var$1) => { - let var$2, var$3; +oncipv_Cypher5Parser_typePart = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$TypePartContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 282, 141); a: { - var$1 = var$1; - oncifp_ResolvedCall$_$callClinit(); - if (var$1 !== null) { - var$2 = var$1.$_1(); - var$3 = var$1.$_2$mcZ$sp(); - if (var$2 !== null && 1 == var$3) { - oncifp_SensitiveParameterRewriter$_$callClinit(); - var$1 = oncifp_SensitiveParameterRewriter$_MODULE$.$apply2(var$2); - break a; + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1970); + oncipv_Cypher5Parser_typeName($this); + oavr_Recognizer_setState($this, 1972); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 145 && $_la != 179)) { + oavr_Recognizer_setState($this, 1971); + oncipv_Cypher5Parser_typeNullability($this); + } + oavr_Recognizer_setState($this, 1977); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (!($_la != 22 && $_la != 151)) { + oavr_Recognizer_setState($this, 1974); + oncipv_Cypher5Parser_typeListSuffix($this); + oavr_Recognizer_setState($this, 1979); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = var$1.$_1(); + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$1; -}, -oncifp_ResolvedCall$$apply$lambda$_5_3 = $rt_classWithoutFields(), -oncifp_ResolvedCall$$apply$lambda$_5_3_apply = (var$0, var$1) => { - var$1 = var$1; - oncifp_ResolvedCall$_$callClinit(); - return var$1.$items2; -}; -function oncifp_ResolvedCall$$apply$lambda$_5_4() { - let a = this; jl_Object.call(a); - a.$_01194 = null; - a.$_1245 = null; - a.$_278 = null; -} -let oncifp_ResolvedCall$$apply$lambda$_5_4_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_1245; - var$2 = var$0.$_278; - oncifp_ResolvedCall$_$callClinit(); - var$1 = s_Option_getOrElse(var$1.$outputSignature, new oncifp_ResolvedCall$$signatureResults$lambda$_10_0); - var$3 = new oncifp_ResolvedCall$$signatureResults$lambda$_10_1; - var$3.$_033 = var$2; - return (var$1.$map(var$3)).$toIndexedSeq(); -}, -oncifp_ResolvedCall$$apply$lambda$_5_5 = $rt_classWithoutFields(), -oncifp_ResolvedCall$$apply$lambda$_5_5_apply = (var$0, var$1) => { - var$1 = var$1; - oncifp_ResolvedCall$_$callClinit(); - return var$1.$where5; -}, -oncifp_ResolvedCall$_init_$lambda$_71_0 = $rt_classWithoutFields(), -oncifp_ResolvedCall$_init_$lambda$_71_0_apply = (var$0, var$1) => { - return sc_AbstractIterable_toMap(var$1.$map(new oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0), s_$less$colon$less$_singleton); -}, -oncifp_ResolvedCall$_init_$lambda$_71_1 = $rt_classWithoutFields(), -oncifp_ResolvedCall$_init_$lambda$_71_1_apply = var$0 => { - s_Predef$_$callClinit(); - return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); -}, -onciu_RewritableJavascript$PROXY$9_21 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_21_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_22 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_22_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_23 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_23_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_24 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_24_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_25 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_25_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_26 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_26_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_27 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_27_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_28 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_28_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_29 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_29_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_30 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_30_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_31 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_31_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_32 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_32_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_33 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_33_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_34 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_34_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_35 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_35_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_36 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_36_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_37 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_37_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_38 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_38_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_39 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_39_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_40 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_40_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_41 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_41_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_42 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$9_42_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_43 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_43_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_44 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_44_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_45 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_45_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_46 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_46_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_47 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_47_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_48 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_48_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_49 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_49_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_50 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_50_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_51 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_51_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_52 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_52_numParameters = var$1 => { - return (jl_Integer_valueOf(8)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_53 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_53_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_54 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_54_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_55 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_55_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_56 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_56_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_57 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_57_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_58 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_58_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_59 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_59_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_60 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_60_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_61 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_61_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_62 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_62_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_63 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_63_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_64 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_64_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_65 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_65_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_66 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_66_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_67 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$9_67_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_68 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_68_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_69 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_69_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_70 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_70_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_71 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_71_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_72 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_72_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_73 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_73_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_74 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_74_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_75 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_75_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_76 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_76_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_77 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_77_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_78 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_78_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_79 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_79_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_80 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_80_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_81 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_81_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_82 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_82_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_83 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_83_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_84 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_84_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_85 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_85_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_86 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_86_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_87 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_87_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_88 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_88_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_89 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_89_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_90 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_90_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_91 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_91_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_92 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$9_92_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_93 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_93_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_94 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_94_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_95 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_95_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_96 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_96_numParameters = var$1 => { - return (jl_Integer_valueOf(8)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_97 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_97_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_98 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_98_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_99 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_99_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_100 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_100_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_101 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_101_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_102 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_102_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_103 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_103_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_104 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_104_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_105 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_105_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_106 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_106_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_107 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_107_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_108 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_108_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_109 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_109_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_110 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_110_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_111 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_111_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_112 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_112_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_113 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_113_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_114 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_114_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_115 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_115_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_116 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_116_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_117 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$9_117_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_118 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_118_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_119 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_119_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; -}, -onciu_RewritableJavascript$PROXY$9_120 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_120_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}, -onciu_RewritableJavascript$PROXY$11_21 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_21_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_22 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_22_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_23 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_23_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_24 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_24_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_25 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_25_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_26 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_26_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_27 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_27_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_28 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_28_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_29 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_29_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_30 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_30_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_31 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_31_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_32 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_32_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_33 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_33_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_34 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_34_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_35 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_35_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_36 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_36_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_37 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_37_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_38 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_38_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_39 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_39_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_40 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_40_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_41 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_41_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_42 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$11_42_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_43 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_43_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_44 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_44_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_45 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_45_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_46 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_46_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_47 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_47_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_48 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_48_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_49 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_49_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_50 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_50_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_51 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_51_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_52 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_52_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_53 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_53_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_54 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_54_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_55 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_55_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_56 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_56_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_57 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_57_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_58 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_58_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_59 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_59_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_60 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_60_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_61 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_61_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_62 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_62_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_63 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_63_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_64 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_64_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}, -onciu_RewritableJavascript$PROXY$11_65 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_65_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_66 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_66_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_typeName = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = oncipv_Cypher5Parser$TypeNameContext__init_0($this.$_ctx, oavr_Recognizer_getState($this)); + oavr_Parser_enterRule($this, $_localctx, 284, 142); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2045); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 21: + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 26); + oavr_Recognizer_setState($this, 2027); + oavr_Parser_match($this, 21); + oavr_Recognizer_setState($this, 2043); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 204, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2029); + oavr_Parser_match($this, 298); + break f; + case 3: + oavr_Recognizer_setState($this, 2030); + oavr_Parser_match($this, 224); + break f; + case 4: + oavr_Recognizer_setState($this, 2031); + oavr_Parser_match($this, 92); + break f; + case 5: + oavr_Recognizer_setState($this, 2032); + oavr_Parser_match($this, 158); + break f; + case 6: + oavr_Recognizer_setState($this, 2033); + oavr_Parser_match($this, 211); + oavr_Recognizer_setState($this, 2034); + oavr_Parser_match($this, 294); + break f; + case 7: + oavr_Recognizer_setState($this, 2036); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { + oavr_Recognizer_setState($this, 2035); + oavr_Parser_match($this, 294); + } + oavr_Recognizer_setState($this, 2038); + oavr_Parser_match($this, 156); + oavr_Recognizer_setState($this, 2039); + oncipv_Cypher5Parser_type($this); + oavr_Recognizer_setState($this, 2040); + oavr_Parser_match($this, 124); + break f; + case 8: + oavr_Recognizer_setState($this, 2042); + oavr_Parser_match($this, 294); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2028); + oavr_Parser_match($this, 173); + } + break e; + case 22: + case 151: + oavr_Parser_enterOuterAlt($this, $_localctx, 22); + oavr_Recognizer_setState($this, 2018); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 22 && $_la != 151) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2019); + oavr_Parser_match($this, 156); + oavr_Recognizer_setState($this, 2020); + oncipv_Cypher5Parser_type($this); + oavr_Recognizer_setState($this, 2021); + oavr_Parser_match($this, 124); + break e; + case 32: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 1982); + oavr_Parser_match($this, 32); + break e; + case 33: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 1983); + oavr_Parser_match($this, 33); + break e; + case 67: + oavr_Parser_enterOuterAlt($this, $_localctx, 10); + oavr_Recognizer_setState($this, 1992); + oavr_Parser_match($this, 67); + break e; + case 90: + oavr_Parser_enterOuterAlt($this, $_localctx, 15); + oavr_Recognizer_setState($this, 2011); + oavr_Parser_match($this, 90); + break e; + case 92: + oavr_Parser_enterOuterAlt($this, $_localctx, 20); + oavr_Recognizer_setState($this, 2016); + oavr_Parser_match($this, 92); + break e; + case 111: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 1991); + oavr_Parser_match($this, 111); + break e; + case 137: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 1986); + oavr_Parser_match($this, 137); + break e; + case 138: + case 256: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 1988); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 256) { + oavr_Recognizer_setState($this, 1987); + oavr_Parser_match($this, 256); + } + oavr_Recognizer_setState($this, 1990); + oavr_Parser_match($this, 138); + break e; + case 153: + oavr_Parser_enterOuterAlt($this, $_localctx, 11); + oavr_Recognizer_setState($this, 1993); + oavr_Parser_match($this, 153); + oavr_Recognizer_setState($this, 1994); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 68 && $_la != 270) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + case 158: + oavr_Parser_enterOuterAlt($this, $_localctx, 21); + oavr_Recognizer_setState($this, 2017); + oavr_Parser_match($this, 158); + break e; + case 173: + oavr_Parser_enterOuterAlt($this, $_localctx, 17); + oavr_Recognizer_setState($this, 2013); + oavr_Parser_match($this, 173); + break e; + case 180: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 1980); + oavr_Parser_match($this, 180); + break e; + case 182: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 1981); + oavr_Parser_match($this, 182); + break e; + case 195: + oavr_Parser_enterOuterAlt($this, $_localctx, 23); + oavr_Recognizer_setState($this, 2023); + oavr_Parser_match($this, 195); + break e; + case 196: + oavr_Parser_enterOuterAlt($this, $_localctx, 24); + oavr_Recognizer_setState($this, 2024); + oavr_Parser_match($this, 196); + break e; + case 201: + oavr_Parser_enterOuterAlt($this, $_localctx, 16); + oavr_Recognizer_setState($this, 2012); + oavr_Parser_match($this, 201); + break e; + case 211: + oavr_Parser_enterOuterAlt($this, $_localctx, 25); + oavr_Recognizer_setState($this, 2025); + oavr_Parser_match($this, 211); + oavr_Recognizer_setState($this, 2026); + oavr_Parser_match($this, 294); + break e; + case 224: + oavr_Parser_enterOuterAlt($this, $_localctx, 19); + oavr_Recognizer_setState($this, 2015); + oavr_Parser_match($this, 224); + break e; + case 263: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 1985); + oavr_Parser_match($this, 263); + break e; + case 270: + oavr_Parser_enterOuterAlt($this, $_localctx, 13); + oavr_Recognizer_setState($this, 1997); + oavr_Parser_match($this, 270); + oavr_Recognizer_setState($this, 1998); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 302 && $_la != 303) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2002); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 270: + oavr_Recognizer_setState($this, 2000); + oavr_Parser_match($this, 270); + oavr_Recognizer_setState($this, 2001); + oavr_Parser_match($this, 307); + break e; + case 273: + oavr_Recognizer_setState($this, 1999); + oavr_Parser_match($this, 273); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 272: + oavr_Parser_enterOuterAlt($this, $_localctx, 14); + oavr_Recognizer_setState($this, 2004); + oavr_Parser_match($this, 272); + oavr_Recognizer_setState($this, 2005); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 302 && $_la != 303) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2009); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 270: + oavr_Recognizer_setState($this, 2007); + oavr_Parser_match($this, 270); + oavr_Recognizer_setState($this, 2008); + oavr_Parser_match($this, 307); + break e; + case 273: + oavr_Recognizer_setState($this, 2006); + oavr_Parser_match($this, 273); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 295: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 1984); + oavr_Parser_match($this, 295); + break e; + case 298: + oavr_Parser_enterOuterAlt($this, $_localctx, 18); + oavr_Recognizer_setState($this, 2014); + oavr_Parser_match($this, 298); + break e; + case 308: + oavr_Parser_enterOuterAlt($this, $_localctx, 12); + oavr_Recognizer_setState($this, 1995); + oavr_Parser_match($this, 308); + oavr_Recognizer_setState($this, 1996); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 68 && $_la != 270) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); + $rt_throw($_localctx); + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_67 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$11_67_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_typeNullability = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$TypeNullabilityContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 286, 143); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2050); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 145: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2049); + oavr_Parser_match($this, 145); + break e; + case 179: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2047); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2048); + oavr_Parser_match($this, 182); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_68 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_68_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_typeListSuffix = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$TypeListSuffixContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 288, 144); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2052); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 22 && $_la != 151) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2054); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 145 && $_la != 179)) { + oavr_Recognizer_setState($this, 2053); + oncipv_Cypher5Parser_typeNullability($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_69 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_69_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_command = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 290, 145); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2057); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 290) { + oavr_Recognizer_setState($this, 2056); + oncipv_Cypher5Parser_useClause($this); + } + e: { + oavr_Recognizer_setState($this, 2072); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 19: + oavr_Recognizer_setState($this, 2061); + oncipv_Cypher5Parser_alterCommand($this); + break e; + case 61: + oavr_Recognizer_setState($this, 2059); + oncipv_Cypher5Parser_createCommand($this); + break e; + case 70: + case 88: + case 219: + oavr_Recognizer_setState($this, 2069); + oncipv_Cypher5Parser_allocationCommand($this); + break e; + case 74: + oavr_Recognizer_setState($this, 2063); + oncipv_Cypher5Parser_denyCommand($this); + break e; + case 87: + oavr_Recognizer_setState($this, 2060); + oncipv_Cypher5Parser_dropCommand($this); + break e; + case 93: + oavr_Recognizer_setState($this, 2068); + oncipv_Cypher5Parser_enableServerCommand($this); + break e; + case 119: + oavr_Recognizer_setState($this, 2065); + oncipv_Cypher5Parser_grantCommand($this); + break e; + case 221: + oavr_Recognizer_setState($this, 2062); + oncipv_Cypher5Parser_renameCommand($this); + break e; + case 234: + oavr_Recognizer_setState($this, 2064); + oncipv_Cypher5Parser_revokeCommand($this); + break e; + case 255: + oavr_Recognizer_setState($this, 2070); + oncipv_Cypher5Parser_showCommand($this); + break e; + case 259: + oavr_Recognizer_setState($this, 2066); + oncipv_Cypher5Parser_startDatabase($this); + break e; + case 262: + oavr_Recognizer_setState($this, 2067); + oncipv_Cypher5Parser_stopDatabase($this); + break e; + case 267: + oavr_Recognizer_setState($this, 2071); + oncipv_Cypher5Parser_terminateCommand($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_70 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_70_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 292, 146); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2074); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 2077); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 190) { + oavr_Recognizer_setState($this, 2075); + oavr_Parser_match($this, 190); + oavr_Recognizer_setState($this, 2076); + oavr_Parser_match($this, 228); + } + e: { + oavr_Recognizer_setState($this, 2086); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 2079); + oncipv_Cypher5Parser_createAlias($this); + break e; + case 38: + case 115: + case 132: + case 154: + case 201: + case 215: + case 268: + case 296: + oavr_Recognizer_setState($this, 2083); + oncipv_Cypher5Parser_createIndex($this); + break e; + case 53: + oavr_Recognizer_setState($this, 2080); + oncipv_Cypher5Parser_createCompositeDatabase($this); + break e; + case 55: + oavr_Recognizer_setState($this, 2081); + oncipv_Cypher5Parser_createConstraint($this); + break e; + case 65: + oavr_Recognizer_setState($this, 2082); + oncipv_Cypher5Parser_createDatabase($this); + break e; + case 130: + case 235: + oavr_Recognizer_setState($this, 2084); + oncipv_Cypher5Parser_createRole($this); + break e; + case 291: + oavr_Recognizer_setState($this, 2085); + oncipv_Cypher5Parser_createUser($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_71 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_71_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_dropCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 294, 147); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2088); + oavr_Parser_match($this, 87); + oavr_Recognizer_setState($this, 2096); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 2089); + oncipv_Cypher5Parser_dropAlias($this); + break e; + case 53: + case 65: + oavr_Recognizer_setState($this, 2091); + oncipv_Cypher5Parser_dropDatabase($this); + break e; + case 55: + oavr_Recognizer_setState($this, 2090); + oncipv_Cypher5Parser_dropConstraint($this); + break e; + case 132: + oavr_Recognizer_setState($this, 2092); + oncipv_Cypher5Parser_dropIndex($this); + break e; + case 235: + oavr_Recognizer_setState($this, 2093); + oncipv_Cypher5Parser_dropRole($this); + break e; + case 248: + oavr_Recognizer_setState($this, 2094); + oncipv_Cypher5Parser_dropServer($this); + break e; + case 291: + oavr_Recognizer_setState($this, 2095); + oncipv_Cypher5Parser_dropUser($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_72 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_72_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 296, 148); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2098); + oavr_Parser_match($this, 255); + oavr_Recognizer_setState($this, 2115); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 213, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2100); + oncipv_Cypher5Parser_showConstraintCommand($this); + break e; + case 3: + oavr_Recognizer_setState($this, 2101); + oncipv_Cypher5Parser_showCurrentUser($this); + break e; + case 4: + oavr_Recognizer_setState($this, 2102); + oncipv_Cypher5Parser_showDatabase($this); + break e; + case 5: + oavr_Recognizer_setState($this, 2103); + oncipv_Cypher5Parser_showFunctions($this); + break e; + case 6: + oavr_Recognizer_setState($this, 2104); + oncipv_Cypher5Parser_showIndexCommand($this); + break e; + case 7: + oavr_Recognizer_setState($this, 2105); + oncipv_Cypher5Parser_showPrivileges($this); + break e; + case 8: + oavr_Recognizer_setState($this, 2106); + oncipv_Cypher5Parser_showProcedures($this); + break e; + case 9: + oavr_Recognizer_setState($this, 2107); + oncipv_Cypher5Parser_showRolePrivileges($this); + break e; + case 10: + oavr_Recognizer_setState($this, 2108); + oncipv_Cypher5Parser_showRoles($this); + break e; + case 11: + oavr_Recognizer_setState($this, 2109); + oncipv_Cypher5Parser_showServers($this); + break e; + case 12: + oavr_Recognizer_setState($this, 2110); + oncipv_Cypher5Parser_showSettings($this); + break e; + case 13: + oavr_Recognizer_setState($this, 2111); + oncipv_Cypher5Parser_showSupportedPrivileges($this); + break e; + case 14: + oavr_Recognizer_setState($this, 2112); + oncipv_Cypher5Parser_showTransactions($this); + break e; + case 15: + oavr_Recognizer_setState($this, 2113); + oncipv_Cypher5Parser_showUserPrivileges($this); + break e; + case 16: + oavr_Recognizer_setState($this, 2114); + oncipv_Cypher5Parser_showUsers($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2099); + oncipv_Cypher5Parser_showAliases($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_73 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_73_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showCommandYield = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowCommandYieldContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 298, 149); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2122); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 301: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2121); + oncipv_Cypher5Parser_whereClause($this); + break e; + case 306: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2117); + oncipv_Cypher5Parser_yieldClause($this); + oavr_Recognizer_setState($this, 2119); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 233) + break e; + oavr_Recognizer_setState($this, 2118); + oncipv_Cypher5Parser_returnClause($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_74 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_74_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_yieldItem = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$YieldItemContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 300, 150); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2124); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2127); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2125); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 2126); + oncipv_Cypher5Parser_variable($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_75 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_75_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncipv_Cypher5Parser_yieldSkip = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$YieldSkipContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 302, 151); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2129); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 184 && $_la != 258) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2130); + oncipv_Cypher5Parser_signedIntegerLiteral($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_76 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_76_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_yieldLimit = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$YieldLimitContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 304, 152); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2132); + oavr_Parser_match($this, 150); + oavr_Recognizer_setState($this, 2133); + oncipv_Cypher5Parser_signedIntegerLiteral($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_77 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_77_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_yieldClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$YieldClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 306, 153); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2135); + oavr_Parser_match($this, 306); + oavr_Recognizer_setState($this, 2145); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + break f; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Recognizer_setState($this, 2136); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 2137); + oncipv_Cypher5Parser_yieldItem($this); + oavr_Recognizer_setState($this, 2142); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 49) + break e; + oavr_Recognizer_setState($this, 2138); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 2139); + oncipv_Cypher5Parser_yieldItem($this); + oavr_Recognizer_setState($this, 2144); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 2148); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 191) { + oavr_Recognizer_setState($this, 2147); + oncipv_Cypher5Parser_orderBy($this); + } + oavr_Recognizer_setState($this, 2151); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 184 && $_la != 258)) { + oavr_Recognizer_setState($this, 2150); + oncipv_Cypher5Parser_yieldSkip($this); + } + oavr_Recognizer_setState($this, 2154); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 150) { + oavr_Recognizer_setState($this, 2153); + oncipv_Cypher5Parser_yieldLimit($this); + } + oavr_Recognizer_setState($this, 2157); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { + oavr_Recognizer_setState($this, 2156); + oncipv_Cypher5Parser_whereClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_78 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_78_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_commandOptions = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CommandOptionsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 308, 154); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2159); + oavr_Parser_match($this, 188); + oavr_Recognizer_setState($this, 2160); + oncipv_Cypher5Parser_mapOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_79 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_79_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncipv_Cypher5Parser_terminateCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$TerminateCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 310, 155); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2162); + oavr_Parser_match($this, 267); + oavr_Recognizer_setState($this, 2163); + oncipv_Cypher5Parser_terminateTransactions($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_80 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_80_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_composableCommandClauses = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ComposableCommandClausesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 312, 156); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2167); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 255: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2166); + oncipv_Cypher5Parser_composableShowCommandClauses($this); + break e; + case 267: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2165); + oncipv_Cypher5Parser_terminateCommand($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_81 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_81_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_composableShowCommandClauses = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ComposableShowCommandClausesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 314, 157); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2169); + oavr_Parser_match($this, 255); + oavr_Recognizer_setState($this, 2176); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 224, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2171); + oncipv_Cypher5Parser_showConstraintCommand($this); + break e; + case 3: + oavr_Recognizer_setState($this, 2172); + oncipv_Cypher5Parser_showFunctions($this); + break e; + case 4: + oavr_Recognizer_setState($this, 2173); + oncipv_Cypher5Parser_showProcedures($this); + break e; + case 5: + oavr_Recognizer_setState($this, 2174); + oncipv_Cypher5Parser_showSettings($this); + break e; + case 6: + oavr_Recognizer_setState($this, 2175); + oncipv_Cypher5Parser_showTransactions($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2170); + oncipv_Cypher5Parser_showIndexCommand($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_82 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_82_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showBriefAndYield = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowBriefAndYieldContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 316, 158); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Recognizer_setState($this, 2187); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 37: + case 297: + break f; + case 301: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2186); + oncipv_Cypher5Parser_whereClause($this); + break e; + case 306: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2182); + oncipv_Cypher5Parser_yieldClause($this); + oavr_Recognizer_setState($this, 2184); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 233) + break e; + oavr_Recognizer_setState($this, 2183); + oncipv_Cypher5Parser_returnClause($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2178); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 37 && $_la != 297) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2180); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 192) { + oavr_Recognizer_setState($this, 2179); + oavr_Parser_match($this, 192); + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_83 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_83_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showIndexCommand = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowIndexCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 318, 159); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2195); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 18: + case 38: + case 132: + case 133: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2192); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 38)) { + oavr_Recognizer_setState($this, 2191); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 38) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2194); + oncipv_Cypher5Parser_showIndexesAllowBrief($this); + break e; + case 115: + case 154: + case 201: + case 215: + case 268: + case 296: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2189); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 115 && $_la != 154 && $_la != 201 && $_la != 215 && $_la != 268 && $_la != 296) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2190); + oncipv_Cypher5Parser_showIndexesNoBrief($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_84 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_84_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showIndexesAllowBrief = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowIndexesAllowBriefContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 320, 160); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2197); + oncipv_Cypher5Parser_indexToken($this); + oavr_Recognizer_setState($this, 2199); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 37) { + $_la = $_la - 297 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(529)), Long_ZERO)) + break e; + } + oavr_Recognizer_setState($this, 2198); + oncipv_Cypher5Parser_showBriefAndYield($this); + } + oavr_Recognizer_setState($this, 2202); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2201); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_85 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_85_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showIndexesNoBrief = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowIndexesNoBriefContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 322, 161); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2204); + oncipv_Cypher5Parser_indexToken($this); + oavr_Recognizer_setState($this, 2206); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2205); + oncipv_Cypher5Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2209); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2208); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_86 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_86_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncipv_Cypher5Parser_showConstraintCommand = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowConstraintCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 324, 162); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 2237); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 238, $this.$_ctx)) { + case 1: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ShowConstraintMultiContext; + var$2 = $re; + oncipv_Cypher5Parser$ShowConstraintMultiContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 2212); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2211); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break f; + } + } + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + } + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2214); + oncipv_Cypher5Parser_constraintAllowYieldType($this); + oavr_Recognizer_setState($this, 2215); + oncipv_Cypher5Parser_showConstraintsAllowYield($this); + break e; + case 2: + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ShowConstraintUniqueContext; + var$2 = $re; + oncipv_Cypher5Parser$ShowConstraintUniqueContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 2217); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break g; + } + } + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2218); + oavr_Parser_match($this, 286); + oavr_Recognizer_setState($this, 2219); + oncipv_Cypher5Parser_showConstraintsAllowYield($this); + break e; + case 3: + h: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ShowConstraintKeyContext; + var$2 = $re; + oncipv_Cypher5Parser$ShowConstraintKeyContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 2221); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 223) { + var$2 = $re; + if ($_la != 224) + break h; + } + var$2 = $re; + oavr_Recognizer_setState($this, 2220); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 223) { + var$2 = $re; + if ($_la != 224) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break h; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2223); + oavr_Parser_match($this, 141); + oavr_Recognizer_setState($this, 2224); + oncipv_Cypher5Parser_showConstraintsAllowYield($this); + break e; + case 4: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ShowConstraintRelExistContext; + var$2 = $re; + oncipv_Cypher5Parser$ShowConstraintRelExistContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 2225); + oavr_Parser_match($this, 223); + oavr_Recognizer_setState($this, 2226); + oavr_Parser_match($this, 103); + oavr_Recognizer_setState($this, 2227); + oncipv_Cypher5Parser_showConstraintsAllowYield($this); + break e; + case 5: + i: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ShowConstraintOldExistsContext; + var$2 = $re; + oncipv_Cypher5Parser$ShowConstraintOldExistsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 2229); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 173) { + var$2 = $re; + if ($_la != 224) + break i; + } + var$2 = $re; + oavr_Recognizer_setState($this, 2228); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 173) { + var$2 = $re; + if ($_la != 224) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break i; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2231); + oavr_Parser_match($this, 105); + oavr_Recognizer_setState($this, 2232); + oncipv_Cypher5Parser_showConstraintsAllowBrief($this); + break e; + case 6: + j: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext; + var$2 = $re; + oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 6); + oavr_Recognizer_setState($this, 2234); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18) { + var$2 = $re; + if ($_la != 103) { + var$2 = $re; + if ($_la != 173) { + var$2 = $re; + if ($_la != 224) { + var$2 = $re; + if ($_la != 286) + break j; + } + } + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2233); + oncipv_Cypher5Parser_constraintBriefAndYieldType($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2236); + oncipv_Cypher5Parser_showConstraintsAllowBriefAndYield($this); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -onciu_RewritableJavascript$PROXY$11_87 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_87_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_constraintAllowYieldType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 326, 163); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2243); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 239, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2239); + oavr_Parser_match($this, 287); + break e; + case 2: + break; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2241); + oavr_Parser_match($this, 211); + oavr_Recognizer_setState($this, 2242); + oavr_Parser_match($this, 282); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2240); + oncipv_Cypher5Parser_constraintExistType($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_88 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_88_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_constraintExistType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ConstraintExistTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 328, 164); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2250); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 240, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2246); + oavr_Parser_match($this, 211); + oavr_Recognizer_setState($this, 2247); + oavr_Parser_match($this, 104); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2248); + oavr_Parser_match($this, 211); + oavr_Recognizer_setState($this, 2249); + oavr_Parser_match($this, 103); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2245); + oavr_Parser_match($this, 104); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_89 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_89_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_constraintBriefAndYieldType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 330, 165); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2261); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 241, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2253); + oavr_Parser_match($this, 286); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2254); + oavr_Parser_match($this, 103); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 2255); + oavr_Parser_match($this, 173); + oavr_Recognizer_setState($this, 2256); + oavr_Parser_match($this, 141); + break e; + case 5: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 2257); + oavr_Parser_match($this, 173); + oavr_Recognizer_setState($this, 2258); + oavr_Parser_match($this, 103); + break e; + case 6: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 2259); + oavr_Parser_match($this, 224); + oavr_Recognizer_setState($this, 2260); + oavr_Parser_match($this, 103); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2252); + oavr_Parser_match($this, 18); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_90 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_90_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showConstraintsAllowBriefAndYield = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 332, 166); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2263); + oncipv_Cypher5Parser_constraintToken($this); + oavr_Recognizer_setState($this, 2265); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 37) { + $_la = $_la - 297 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(529)), Long_ZERO)) + break e; + } + oavr_Recognizer_setState($this, 2264); + oncipv_Cypher5Parser_showBriefAndYield($this); + } + oavr_Recognizer_setState($this, 2268); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2267); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_91 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_91_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncipv_Cypher5Parser_showConstraintsAllowBrief = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 334, 167); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2270); + oncipv_Cypher5Parser_constraintToken($this); + oavr_Recognizer_setState($this, 2275); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 37 && $_la != 297)) { + oavr_Recognizer_setState($this, 2271); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 37 && $_la != 297) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2273); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 192) { + oavr_Recognizer_setState($this, 2272); + oavr_Parser_match($this, 192); + } + } + oavr_Recognizer_setState($this, 2278); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2277); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_92 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$11_92_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showConstraintsAllowYield = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 336, 168); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2280); + oncipv_Cypher5Parser_constraintToken($this); + oavr_Recognizer_setState($this, 2282); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2281); + oncipv_Cypher5Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2285); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2284); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_93 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_93_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showProcedures = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowProceduresContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 338, 169); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2287); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 208 && $_la != 209) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2289); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 101) { + oavr_Recognizer_setState($this, 2288); + oncipv_Cypher5Parser_executableBy($this); + } + oavr_Recognizer_setState($this, 2292); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2291); + oncipv_Cypher5Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2295); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2294); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_94 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_94_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showFunctions = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowFunctionsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 340, 170); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2298); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 39 && $_la != 291)) { + oavr_Recognizer_setState($this, 2297); + oncipv_Cypher5Parser_showFunctionsType($this); + } + oavr_Recognizer_setState($this, 2300); + oncipv_Cypher5Parser_functionToken($this); + oavr_Recognizer_setState($this, 2302); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 101) { + oavr_Recognizer_setState($this, 2301); + oncipv_Cypher5Parser_executableBy($this); + } + oavr_Recognizer_setState($this, 2305); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2304); + oncipv_Cypher5Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2308); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2307); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_95 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_95_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_functionToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$FunctionTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 342, 171); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2310); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 116 && $_la != 117) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_96 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_96_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_executableBy = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ExecutableByContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 344, 172); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2312); + oavr_Parser_match($this, 101); + oavr_Recognizer_setState($this, 2319); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 40) { + oavr_Recognizer_setState($this, 2313); + oavr_Parser_match($this, 40); + oavr_Recognizer_setState($this, 2317); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 256, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 2314); + oavr_Parser_match($this, 63); + oavr_Recognizer_setState($this, 2315); + oavr_Parser_match($this, 291); + break e; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2316); + oncipv_Cypher5Parser_symbolicNameString($this); + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_97 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_97_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showFunctionsType = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowFunctionsTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 346, 173); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2326); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 18: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2321); + oavr_Parser_match($this, 18); + break e; + case 39: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2322); + oavr_Parser_match($this, 39); + oavr_Recognizer_setState($this, 2323); + oavr_Parser_match($this, 131); + break e; + case 291: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2324); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 2325); + oavr_Parser_match($this, 72); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_98 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_98_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showTransactions = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowTransactionsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 348, 174); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2328); + oncipv_Cypher5Parser_transactionToken($this); + oavr_Recognizer_setState($this, 2329); + oncipv_Cypher5Parser_namesAndClauses($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_99 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_99_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_terminateTransactions = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$TerminateTransactionsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 350, 175); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2331); + oncipv_Cypher5Parser_transactionToken($this); + oavr_Recognizer_setState($this, 2332); + oncipv_Cypher5Parser_stringsOrExpression($this); + oavr_Recognizer_setState($this, 2334); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2333); + oncipv_Cypher5Parser_showCommandYield($this); + } + oavr_Recognizer_setState($this, 2337); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2336); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_100 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_100_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showSettings = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowSettingsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 352, 176); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2339); + oncipv_Cypher5Parser_settingToken($this); + oavr_Recognizer_setState($this, 2340); + oncipv_Cypher5Parser_namesAndClauses($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_101 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_101_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_settingToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SettingTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 354, 177); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2342); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 251 && $_la != 252) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_102 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_102_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_namesAndClauses = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NamesAndClausesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 356, 178); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2351); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 263, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2347); + oncipv_Cypher5Parser_stringsOrExpression($this); + oavr_Recognizer_setState($this, 2349); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 301 && $_la != 306) + break e; + oavr_Recognizer_setState($this, 2348); + oncipv_Cypher5Parser_showCommandYield($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2345); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2344); + oncipv_Cypher5Parser_showCommandYield($this); + } + } + oavr_Recognizer_setState($this, 2354); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 255 && $_la != 267)) { + oavr_Recognizer_setState($this, 2353); + oncipv_Cypher5Parser_composableCommandClauses($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_103 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_103_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_stringsOrExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$StringsOrExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 358, 179); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2358); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 265, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2357); + oncipv_Cypher5Parser_expression($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2356); + oncipv_Cypher5Parser_stringList($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_104 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_104_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_commandNodePattern = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CommandNodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 360, 180); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2360); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2361); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2362); + oncipv_Cypher5Parser_labelType($this); + oavr_Recognizer_setState($this, 2363); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher5Parser_commandRelPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CommandRelPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 362, 181); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2365); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2366); + oavr_Parser_match($this, 239); + oavr_Recognizer_setState($this, 2368); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 156 && $_la != 311)) { + oavr_Recognizer_setState($this, 2367); + oncipv_Cypher5Parser_leftArrow($this); + } + oavr_Recognizer_setState($this, 2370); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2371); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 2372); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2373); + oncipv_Cypher5Parser_relType($this); + oavr_Recognizer_setState($this, 2374); + oavr_Parser_match($this, 216); + oavr_Recognizer_setState($this, 2375); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2377); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 124 && $_la != 312)) { + oavr_Recognizer_setState($this, 2376); + oncipv_Cypher5Parser_rightArrow($this); + } + oavr_Recognizer_setState($this, 2379); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2380); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_105 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_105_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createConstraint = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateConstraintContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 364, 182); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2382); + oavr_Parser_match($this, 55); + oavr_Recognizer_setState($this, 2384); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 268, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2383); + oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); + } + oavr_Recognizer_setState($this, 2389); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2386); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2387); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2388); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 2391); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 112 && $_la != 185) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + f: { + oavr_Recognizer_setState($this, 2394); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 270, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2393); + oncipv_Cypher5Parser_commandRelPattern($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2392); + oncipv_Cypher5Parser_commandNodePattern($this); + } + oavr_Recognizer_setState($this, 2396); + oncipv_Cypher5Parser_constraintType($this); + oavr_Recognizer_setState($this, 2398); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { + oavr_Recognizer_setState($this, 2397); + oncipv_Cypher5Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_106 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_106_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_constraintType = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = oncipv_Cypher5Parser$ConstraintTypeContext__init_($this.$_ctx, oavr_Recognizer_getState($this)); + oavr_Parser_enterRule($this, $_localctx, 366, 183); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 2434); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 275, $this.$_ctx)) { + case 1: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ConstraintExistsContext; + var$2 = $re; + oncipv_Cypher5Parser$ConstraintExistsContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 2400); + oavr_Parser_match($this, 26); + oavr_Recognizer_setState($this, 2401); + oavr_Parser_match($this, 105); + oavr_Recognizer_setState($this, 2402); + oncipv_Cypher5Parser_propertyList($this); + break e; + case 2: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ConstraintTypedContext; + var$2 = $re; + oncipv_Cypher5Parser$ConstraintTypedContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 2403); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 26) { + var$2 = $re; + if ($_la != 230) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break f; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + g: { + var$2 = $re; + oavr_Recognizer_setState($this, 2404); + oncipv_Cypher5Parser_propertyList($this); + oavr_Recognizer_setState($this, 2408); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 48: + var$2 = $re; + oavr_Recognizer_setState($this, 2405); + oavr_Parser_match($this, 48); + break g; + case 139: + var$2 = $re; + oavr_Recognizer_setState($this, 2406); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 2407); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 48) { + var$2 = $re; + if ($_la != 283) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break g; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break g; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2410); + oncipv_Cypher5Parser_type($this); + break e; + case 3: + h: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ConstraintIsUniqueContext; + var$2 = $re; + oncipv_Cypher5Parser$ConstraintIsUniqueContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 2412); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 26) { + var$2 = $re; + if ($_la != 230) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break h; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + i: { + var$2 = $re; + oavr_Recognizer_setState($this, 2413); + oncipv_Cypher5Parser_propertyList($this); + oavr_Recognizer_setState($this, 2414); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 2416); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2415); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break i; + } + } + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + } + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2418); + oavr_Parser_match($this, 286); + break e; + case 4: + j: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ConstraintKeyContext; + var$2 = $re; + oncipv_Cypher5Parser$ConstraintKeyContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 2420); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 26) { + var$2 = $re; + if ($_la != 230) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break j; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + k: { + var$2 = $re; + oavr_Recognizer_setState($this, 2421); + oncipv_Cypher5Parser_propertyList($this); + oavr_Recognizer_setState($this, 2422); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 2424); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { + var$2 = $re; + oavr_Recognizer_setState($this, 2423); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; + if (!($_la & (-64))) { + var$2 = $re; + if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break k; + } + } + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + } + } + } + var$2 = $re; + oavr_Recognizer_setState($this, 2426); + oavr_Parser_match($this, 141); + break e; + case 5: + l: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$ConstraintIsNotNullContext; + var$2 = $re; + oncipv_Cypher5Parser$ConstraintIsNotNullContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 5); + oavr_Recognizer_setState($this, 2428); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 26) { + var$2 = $re; + if ($_la != 230) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break l; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 2429); + oncipv_Cypher5Parser_propertyList($this); + oavr_Recognizer_setState($this, 2430); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 2431); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2432); + oavr_Parser_match($this, 182); + break e; + default: + } + $re = $_localctx; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); + $rt_throw($_localctx); + } + oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); + $re = var$2; + } + return $re; }, -onciu_RewritableJavascript$PROXY$11_107 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_107_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_dropConstraint = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropConstraintContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 368, 184); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2436); + oavr_Parser_match($this, 55); + oavr_Recognizer_setState($this, 2461); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 280, $this.$_ctx)) { + case 1: + break f; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2456); + oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); + oavr_Recognizer_setState($this, 2459); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 128) + break e; + oavr_Recognizer_setState($this, 2457); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2458); + oavr_Parser_match($this, 105); + break e; + } + g: { + oavr_Recognizer_setState($this, 2437); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 2440); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 276, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2439); + oncipv_Cypher5Parser_commandRelPattern($this); + break g; + default: + break g; + } + oavr_Recognizer_setState($this, 2438); + oncipv_Cypher5Parser_commandNodePattern($this); + } + h: { + oavr_Recognizer_setState($this, 2442); + oavr_Parser_match($this, 26); + oavr_Recognizer_setState($this, 2454); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 278, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2445); + oncipv_Cypher5Parser_propertyList($this); + oavr_Recognizer_setState($this, 2446); + oavr_Parser_match($this, 139); + oavr_Recognizer_setState($this, 2452); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 173: + oavr_Recognizer_setState($this, 2448); + oavr_Parser_match($this, 173); + oavr_Recognizer_setState($this, 2449); + oavr_Parser_match($this, 141); + break h; + case 179: + oavr_Recognizer_setState($this, 2450); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2451); + oavr_Parser_match($this, 182); + break h; + case 286: + oavr_Recognizer_setState($this, 2447); + oavr_Parser_match($this, 286); + break h; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + break h; + } + oavr_Recognizer_setState($this, 2443); + oavr_Parser_match($this, 105); + oavr_Recognizer_setState($this, 2444); + oncipv_Cypher5Parser_propertyList($this); + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_108 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_108_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 370, 185); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2490); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 38: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2463); + oavr_Parser_match($this, 38); + oavr_Recognizer_setState($this, 2464); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2465); + oncipv_Cypher5Parser_createIndex_($this); + break e; + case 115: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 2481); + oavr_Parser_match($this, 115); + oavr_Recognizer_setState($this, 2482); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2483); + oncipv_Cypher5Parser_createFulltextIndex($this); + break e; + case 132: + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 2484); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2488); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 281, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 2485); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 2486); + oncipv_Cypher5Parser_oldCreateIndex($this); + break f; + case 2: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 2487); + oncipv_Cypher5Parser_createIndex_($this); + } + break e; + case 154: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 2478); + oavr_Parser_match($this, 154); + oavr_Recognizer_setState($this, 2479); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2480); + oncipv_Cypher5Parser_createLookupIndex($this); + break e; + case 201: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 2472); + oavr_Parser_match($this, 201); + oavr_Recognizer_setState($this, 2473); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2474); + oncipv_Cypher5Parser_createIndex_($this); + break e; + case 215: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2466); + oavr_Parser_match($this, 215); + oavr_Recognizer_setState($this, 2467); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2468); + oncipv_Cypher5Parser_createIndex_($this); + break e; + case 268: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2469); + oavr_Parser_match($this, 268); + oavr_Recognizer_setState($this, 2470); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2471); + oncipv_Cypher5Parser_createIndex_($this); + break e; + case 296: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 2475); + oavr_Parser_match($this, 296); + oavr_Recognizer_setState($this, 2476); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2477); + oncipv_Cypher5Parser_createIndex_($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_109 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_109_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_oldCreateIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$OldCreateIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 372, 186); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2492); + oncipv_Cypher5Parser_labelType($this); + oavr_Recognizer_setState($this, 2493); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2494); + oncipv_Cypher5Parser_nonEmptyNameList($this); + oavr_Recognizer_setState($this, 2495); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_110 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_110_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createIndex_ = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateIndex_Context; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 374, 187); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2498); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 283, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2497); + oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); + } + oavr_Recognizer_setState($this, 2503); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2500); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2501); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2502); + oavr_Parser_match($this, 105); + } + f: { + oavr_Recognizer_setState($this, 2505); + oavr_Parser_match($this, 112); + oavr_Recognizer_setState($this, 2508); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 285, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2507); + oncipv_Cypher5Parser_commandRelPattern($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2506); + oncipv_Cypher5Parser_commandNodePattern($this); + } + oavr_Recognizer_setState($this, 2510); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 2511); + oncipv_Cypher5Parser_propertyList($this); + oavr_Recognizer_setState($this, 2513); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { + oavr_Recognizer_setState($this, 2512); + oncipv_Cypher5Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_111 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_111_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createFulltextIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateFulltextIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 376, 188); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2516); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 287, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2515); + oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); + } + oavr_Recognizer_setState($this, 2521); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2518); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2519); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2520); + oavr_Parser_match($this, 105); + } + f: { + oavr_Recognizer_setState($this, 2523); + oavr_Parser_match($this, 112); + oavr_Recognizer_setState($this, 2526); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 289, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2525); + oncipv_Cypher5Parser_fulltextRelPattern($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2524); + oncipv_Cypher5Parser_fulltextNodePattern($this); + } + oavr_Recognizer_setState($this, 2528); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 2529); + oavr_Parser_match($this, 91); + oavr_Recognizer_setState($this, 2530); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 2531); + oncipv_Cypher5Parser_enclosedPropertyList($this); + oavr_Recognizer_setState($this, 2532); + oavr_Parser_match($this, 216); + oavr_Recognizer_setState($this, 2534); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { + oavr_Recognizer_setState($this, 2533); + oncipv_Cypher5Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_112 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_112_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_fulltextNodePattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$FulltextNodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 378, 189); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2536); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2537); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2538); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 2539); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2544); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 30) { + oavr_Recognizer_setState($this, 2540); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 2541); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2546); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 2547); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_113 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_113_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_fulltextRelPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$FulltextRelPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 380, 190); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2549); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2550); + oavr_Parser_match($this, 239); + oavr_Recognizer_setState($this, 2552); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 156 && $_la != 311)) { + oavr_Recognizer_setState($this, 2551); + oncipv_Cypher5Parser_leftArrow($this); + } + oavr_Recognizer_setState($this, 2554); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2555); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 2556); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2557); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 2558); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2563); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 30) { + oavr_Recognizer_setState($this, 2559); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 2560); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2565); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + oavr_Recognizer_setState($this, 2566); + oavr_Parser_match($this, 216); + oavr_Recognizer_setState($this, 2567); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2569); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 124 && $_la != 312)) { + oavr_Recognizer_setState($this, 2568); + oncipv_Cypher5Parser_rightArrow($this); + } + oavr_Recognizer_setState($this, 2571); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2572); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_114 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_114_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createLookupIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateLookupIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 382, 191); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2575); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 295, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2574); + oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); + } + oavr_Recognizer_setState($this, 2580); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2577); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2578); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2579); + oavr_Parser_match($this, 105); + } + f: { + oavr_Recognizer_setState($this, 2582); + oavr_Parser_match($this, 112); + oavr_Recognizer_setState($this, 2585); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 297, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2584); + oncipv_Cypher5Parser_lookupIndexRelPattern($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 2583); + oncipv_Cypher5Parser_lookupIndexNodePattern($this); + } + oavr_Recognizer_setState($this, 2587); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 2588); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2589); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2590); + oavr_Parser_match($this, 239); + oavr_Recognizer_setState($this, 2592); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { + oavr_Recognizer_setState($this, 2591); + oncipv_Cypher5Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_115 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_115_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_lookupIndexNodePattern = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LookupIndexNodePatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 384, 192); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2594); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2595); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2596); + oavr_Parser_match($this, 239); + oavr_Recognizer_setState($this, 2597); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 2598); + oavr_Parser_match($this, 91); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_116 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_116_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_lookupIndexRelPattern = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LookupIndexRelPatternContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 386, 193); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2600); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2601); + oavr_Parser_match($this, 239); + oavr_Recognizer_setState($this, 2603); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 156 && $_la != 311)) { + oavr_Recognizer_setState($this, 2602); + oncipv_Cypher5Parser_leftArrow($this); + } + oavr_Recognizer_setState($this, 2605); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2606); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 2607); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2608); + oavr_Parser_match($this, 216); + oavr_Recognizer_setState($this, 2609); + oncipv_Cypher5Parser_arrowLine($this); + oavr_Recognizer_setState($this, 2611); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 124 && $_la != 312)) { + oavr_Recognizer_setState($this, 2610); + oncipv_Cypher5Parser_rightArrow($this); + } + e: { + oavr_Recognizer_setState($this, 2613); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2614); + oavr_Parser_match($this, 239); + oavr_Recognizer_setState($this, 2615); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 2617); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 301, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2616); + oavr_Parser_match($this, 91); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_117 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$11_117_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_dropIndex = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropIndexContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 388, 194); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2619); + oavr_Parser_match($this, 132); + oavr_Recognizer_setState($this, 2631); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 303, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2626); + oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); + oavr_Recognizer_setState($this, 2629); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 128) + break e; + oavr_Recognizer_setState($this, 2627); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2628); + oavr_Parser_match($this, 105); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2620); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 2621); + oncipv_Cypher5Parser_labelType($this); + oavr_Recognizer_setState($this, 2622); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2623); + oncipv_Cypher5Parser_nonEmptyNameList($this); + oavr_Recognizer_setState($this, 2624); + oavr_Parser_match($this, 239); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_118 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_118_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_propertyList = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PropertyListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 390, 195); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2640); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2633); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2634); + oncipv_Cypher5Parser_property($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + break; + case 155: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2636); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 2637); + oncipv_Cypher5Parser_enclosedPropertyList($this); + oavr_Recognizer_setState($this, 2638); + oavr_Parser_match($this, 239); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_119 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_119_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_enclosedPropertyList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$EnclosedPropertyListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 392, 196); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2642); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2643); + oncipv_Cypher5Parser_property($this); + oavr_Recognizer_setState($this, 2650); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 2644); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 2645); + oncipv_Cypher5Parser_variable($this); + oavr_Recognizer_setState($this, 2646); + oncipv_Cypher5Parser_property($this); + oavr_Recognizer_setState($this, 2652); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_120 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_120_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_alterCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 394, 197); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2653); + oavr_Parser_match($this, 19); + oavr_Recognizer_setState($this, 2659); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 2654); + oncipv_Cypher5Parser_alterAlias($this); + break e; + case 63: + oavr_Recognizer_setState($this, 2655); + oncipv_Cypher5Parser_alterCurrentUser($this); + break e; + case 65: + oavr_Recognizer_setState($this, 2656); + oncipv_Cypher5Parser_alterDatabase($this); + break e; + case 248: + oavr_Recognizer_setState($this, 2658); + oncipv_Cypher5Parser_alterServer($this); + break e; + case 291: + oavr_Recognizer_setState($this, 2657); + oncipv_Cypher5Parser_alterUser($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_363 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_363_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_OnMatch_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_renameCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RenameCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 396, 198); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2661); + oavr_Parser_match($this, 221); + oavr_Recognizer_setState($this, 2665); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 235: + oavr_Recognizer_setState($this, 2662); + oncipv_Cypher5Parser_renameRole($this); + break e; + case 248: + oavr_Recognizer_setState($this, 2663); + oncipv_Cypher5Parser_renameServer($this); + break e; + case 291: + oavr_Recognizer_setState($this, 2664); + oncipv_Cypher5Parser_renameUser($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_364 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_364_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_LabelName__init_(var$3[0], var$3[1]); +oncipv_Cypher5Parser_grantCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GrantCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 398, 199); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2667); + oavr_Parser_match($this, 119); + oavr_Recognizer_setState($this, 2678); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 309, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 2669); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 130) { + oavr_Recognizer_setState($this, 2668); + oavr_Parser_match($this, 130); + } + oavr_Recognizer_setState($this, 2671); + oncipv_Cypher5Parser_privilege($this); + oavr_Recognizer_setState($this, 2672); + oavr_Parser_match($this, 274); + oavr_Recognizer_setState($this, 2673); + oncipv_Cypher5Parser_roleNames($this); + break e; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2675); + oncipv_Cypher5Parser_roleToken($this); + oavr_Recognizer_setState($this, 2676); + oncipv_Cypher5Parser_grantRole($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_366 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_366_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_RelTypeName__init_(var$3[0], var$3[1]); +oncipv_Cypher5Parser_denyCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DenyCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 400, 200); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2680); + oavr_Parser_match($this, 74); + oavr_Recognizer_setState($this, 2682); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 130) { + oavr_Recognizer_setState($this, 2681); + oavr_Parser_match($this, 130); + } + oavr_Recognizer_setState($this, 2684); + oncipv_Cypher5Parser_privilege($this); + oavr_Recognizer_setState($this, 2685); + oavr_Parser_match($this, 274); + oavr_Recognizer_setState($this, 2686); + oncipv_Cypher5Parser_roleNames($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_367 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_367_copyConstructor = (var$1, var$2, var$3) => { - return oncius_NullType_copy(var$2, var$3.data[0]); +oncipv_Cypher5Parser_revokeCommand = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RevokeCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 402, 201); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2688); + oavr_Parser_match($this, 234); + oavr_Recognizer_setState($this, 2702); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 313, $this.$_ctx)) { + case 1: + oavr_Recognizer_setState($this, 2690); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 74 && $_la != 119)) { + oavr_Recognizer_setState($this, 2689); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 74 && $_la != 119) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2693); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 130) { + oavr_Recognizer_setState($this, 2692); + oavr_Parser_match($this, 130); + } + oavr_Recognizer_setState($this, 2695); + oncipv_Cypher5Parser_privilege($this); + oavr_Recognizer_setState($this, 2696); + oavr_Parser_match($this, 114); + oavr_Recognizer_setState($this, 2697); + oncipv_Cypher5Parser_roleNames($this); + break e; + case 2: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2699); + oncipv_Cypher5Parser_roleToken($this); + oavr_Recognizer_setState($this, 2700); + oncipv_Cypher5Parser_revokeRole($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_369 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_369_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncius_PropertyValueType_copy(var$2, var$3[0].$value3, var$3[1]); +oncipv_Cypher5Parser_userNames = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$UserNamesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 404, 202); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2704); + oncipv_Cypher5Parser_symbolicNameOrStringParameterList($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_373 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_373_copyConstructor = (var$1, var$2, var$3) => { - return oncius_NothingType_copy(var$2, var$3.data[0]); +oncipv_Cypher5Parser_roleNames = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RoleNamesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 406, 203); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2706); + oncipv_Cypher5Parser_symbolicNameOrStringParameterList($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_374 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_374_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_SignedOctalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_roleToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RoleTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 408, 204); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2708); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 235 && $_la != 236) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_375 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_375_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ExternalAuth__init_(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_enableServerCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$EnableServerCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 410, 205); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2710); + oavr_Parser_match($this, 93); + oavr_Recognizer_setState($this, 2711); + oavr_Parser_match($this, 248); + oavr_Recognizer_setState($this, 2712); + oncipv_Cypher5Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2714); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { + oavr_Recognizer_setState($this, 2713); + oncipv_Cypher5Parser_commandOptions($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_378 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_378_copyConstructor = (var$1, var$2, var$3) => { - return oncie_False_copy(var$2, var$3.data[0]); +oncipv_Cypher5Parser_alterServer = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterServerContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 412, 206); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2716); + oavr_Parser_match($this, 248); + oavr_Recognizer_setState($this, 2717); + oncipv_Cypher5Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2718); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 2719); + oncipv_Cypher5Parser_commandOptions($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_379 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_379_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncifp_ResolvedFunctionInvocation_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +oncipv_Cypher5Parser_renameServer = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RenameServerContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 414, 207); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2721); + oavr_Parser_match($this, 248); + oavr_Recognizer_setState($this, 2722); + oncipv_Cypher5Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2723); + oavr_Parser_match($this, 274); + oavr_Recognizer_setState($this, 2724); + oncipv_Cypher5Parser_stringOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_380 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_380_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_StopDatabase__init_0(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_dropServer = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropServerContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 416, 208); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2726); + oavr_Parser_match($this, 248); + oavr_Recognizer_setState($this, 2727); + oncipv_Cypher5Parser_stringOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_381 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_381_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_StartDatabase__init_0(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_showServers = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowServersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 418, 209); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2729); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 248 && $_la != 249) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2731); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2730); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_383 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_383_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateLocalDatabaseAlias__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); +oncipv_Cypher5Parser_allocationCommand = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AllocationCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 420, 210); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2734); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 88) { + oavr_Recognizer_setState($this, 2733); + oavr_Parser_match($this, 88); + } + e: { + oavr_Recognizer_setState($this, 2738); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 70: + oavr_Recognizer_setState($this, 2736); + oncipv_Cypher5Parser_deallocateDatabaseFromServers($this); + break e; + case 219: + oavr_Recognizer_setState($this, 2737); + oncipv_Cypher5Parser_reallocateDatabases($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_385 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_385_copyConstructor = (var$1, var$2, var$3) => { - return oncie_Infinity_copy(var$2, var$3.data[0]); +oncipv_Cypher5Parser_deallocateDatabaseFromServers = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 422, 211); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2740); + oavr_Parser_match($this, 70); + oavr_Recognizer_setState($this, 2741); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 65 && $_la != 66) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2742); + oavr_Parser_match($this, 114); + oavr_Recognizer_setState($this, 2743); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 248 && $_la != 249) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2744); + oncipv_Cypher5Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2749); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 2745); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 2746); + oncipv_Cypher5Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 2751); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_386 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_386_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_OnCreate_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_reallocateDatabases = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ReallocateDatabasesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 424, 212); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2752); + oavr_Parser_match($this, 219); + oavr_Recognizer_setState($this, 2753); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 65 && $_la != 66) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_388 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_388_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateUser__init_(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); +oncipv_Cypher5Parser_createRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 426, 213); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2756); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 130) { + oavr_Recognizer_setState($this, 2755); + oavr_Parser_match($this, 130); + } + oavr_Recognizer_setState($this, 2758); + oavr_Parser_match($this, 235); + oavr_Recognizer_setState($this, 2759); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2763); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2760); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2761); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2762); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 2769); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2765); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 2766); + oavr_Parser_match($this, 58); + oavr_Recognizer_setState($this, 2767); + oavr_Parser_match($this, 183); + oavr_Recognizer_setState($this, 2768); + oncipv_Cypher5Parser_commandNameExpression($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_389 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_389_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_SignedDecimalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_dropRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 428, 214); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2771); + oavr_Parser_match($this, 235); + oavr_Recognizer_setState($this, 2772); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2775); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2773); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2774); + oavr_Parser_match($this, 105); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_390 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_390_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_AlterRemoteDatabaseAlias__init_(var$3[0], var$3[1], var$3[2].$value3, var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); +oncipv_Cypher5Parser_renameRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RenameRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 430, 215); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2777); + oavr_Parser_match($this, 235); + oavr_Recognizer_setState($this, 2778); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2781); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2779); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2780); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 2783); + oavr_Parser_match($this, 274); + oavr_Recognizer_setState($this, 2784); + oncipv_Cypher5Parser_commandNameExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_391 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_391_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateDatabase__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); +oncipv_Cypher5Parser_showRoles = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowRolesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 432, 216); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2787); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 18 && $_la != 202)) { + oavr_Recognizer_setState($this, 2786); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 18 && $_la != 202) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2789); + oncipv_Cypher5Parser_roleToken($this); + oavr_Recognizer_setState($this, 2792); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 302) { + oavr_Recognizer_setState($this, 2790); + oavr_Parser_match($this, 302); + oavr_Recognizer_setState($this, 2791); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 291 && $_la != 292) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2795); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2794); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_392 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_392_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_EnableServer__init_0(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_grantRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GrantRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 434, 217); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2797); + oncipv_Cypher5Parser_roleNames($this); + oavr_Recognizer_setState($this, 2798); + oavr_Parser_match($this, 274); + oavr_Recognizer_setState($this, 2799); + oncipv_Cypher5Parser_userNames($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_393 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_393_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateRole__init_0(var$3[0], var$3[1], var$3[2], var$3[3]); +oncipv_Cypher5Parser_revokeRole = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RevokeRoleContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 436, 218); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2801); + oncipv_Cypher5Parser_roleNames($this); + oavr_Recognizer_setState($this, 2802); + oavr_Parser_match($this, 114); + oavr_Recognizer_setState($this, 2803); + oncipv_Cypher5Parser_userNames($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_394 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$7_394_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_StringLiteral_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_createUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 438, 219); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2805); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 2806); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2810); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2807); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2808); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 2809); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 2821); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + e: { + oavr_Recognizer_setState($this, 2812); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 2819); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 328, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2814); + oavr_Parser_match($this, 193); + oavr_Recognizer_setState($this, 2815); + oncipv_Cypher5Parser_passwordChangeRequired($this); + break e; + case 3: + oavr_Recognizer_setState($this, 2816); + oncipv_Cypher5Parser_userStatus($this); + break e; + case 4: + oavr_Recognizer_setState($this, 2817); + oncipv_Cypher5Parser_homeDatabase($this); + break e; + case 5: + oavr_Recognizer_setState($this, 2818); + oncipv_Cypher5Parser_setAuthClause($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 2813); + oncipv_Cypher5Parser_password($this); + } + oavr_Recognizer_setState($this, 2823); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 250) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_395 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_395_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_AlterLocalDatabaseAlias__init_(var$3[0], var$3[1], var$3[2].$value3, var$3[3], var$3[4]); +oncipv_Cypher5Parser_dropUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 440, 220); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2825); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 2826); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2829); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2827); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2828); + oavr_Parser_match($this, 105); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_396 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_396_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_NativeAuth__init_(var$3[0], var$3[1]); +oncipv_Cypher5Parser_renameUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RenameUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 442, 221); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2831); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 2832); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2835); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2833); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2834); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 2837); + oavr_Parser_match($this, 274); + oavr_Recognizer_setState($this, 2838); + oncipv_Cypher5Parser_commandNameExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_397 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_397_copyConstructor = (var$1, var$2, var$3) => { - return oncie_True_copy(var$2, var$3.data[0]); +oncipv_Cypher5Parser_alterCurrentUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterCurrentUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 444, 222); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2840); + oavr_Parser_match($this, 63); + oavr_Recognizer_setState($this, 2841); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 2842); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 2843); + oavr_Parser_match($this, 193); + oavr_Recognizer_setState($this, 2844); + oavr_Parser_match($this, 114); + oavr_Recognizer_setState($this, 2845); + oncipv_Cypher5Parser_passwordExpression($this); + oavr_Recognizer_setState($this, 2846); + oavr_Parser_match($this, 274); + oavr_Recognizer_setState($this, 2847); + oncipv_Cypher5Parser_passwordExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_398 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_398_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateRemoteDatabaseAlias__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); +oncipv_Cypher5Parser_alterUser = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 446, 223); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2849); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 2850); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 2853); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 2851); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 2852); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 2868); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + e: { + f: while (true) { + if ($_la != 226) + break e; + g: { + oavr_Recognizer_setState($this, 2855); + oavr_Parser_match($this, 226); + oavr_Recognizer_setState($this, 2864); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 18: + oavr_Recognizer_setState($this, 2858); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 2859); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 2861); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 212 && $_la != 213) + break g; + oavr_Recognizer_setState($this, 2860); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 212 && $_la != 213) { + $this.$_errHandler.$recoverInline($this); + break g; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break g; + case 29: + break; + case 126: + oavr_Recognizer_setState($this, 2856); + oavr_Parser_match($this, 126); + oavr_Recognizer_setState($this, 2857); + oavr_Parser_match($this, 65); + break g; + default: + break f; + } + oavr_Recognizer_setState($this, 2863); + oncipv_Cypher5Parser_removeNamedProvider($this); + } + oavr_Recognizer_setState($this, 2870); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 2882); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 250) { + h: { + oavr_Recognizer_setState($this, 2871); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 2878); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 336, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 2873); + oavr_Parser_match($this, 193); + oavr_Recognizer_setState($this, 2874); + oncipv_Cypher5Parser_passwordChangeRequired($this); + break h; + case 3: + oavr_Recognizer_setState($this, 2875); + oncipv_Cypher5Parser_userStatus($this); + break h; + case 4: + oavr_Recognizer_setState($this, 2876); + oncipv_Cypher5Parser_homeDatabase($this); + break h; + case 5: + oavr_Recognizer_setState($this, 2877); + oncipv_Cypher5Parser_setAuthClause($this); + break h; + default: + break h; + } + oavr_Recognizer_setState($this, 2872); + oncipv_Cypher5Parser_password($this); + } + oavr_Recognizer_setState($this, 2884); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_399 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_399_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateCompositeDatabase__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); +oncipv_Cypher5Parser_removeNamedProvider = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RemoveNamedProviderContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 448, 224); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2885); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 2887); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 212 && $_la != 213)) { + oavr_Recognizer_setState($this, 2886); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 212 && $_la != 213) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + e: { + oavr_Recognizer_setState($this, 2892); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 8: + case 9: + oavr_Recognizer_setState($this, 2889); + oncipv_Cypher5Parser_stringLiteral($this); + break e; + case 80: + oavr_Recognizer_setState($this, 2891); + oncipv_Cypher5Parser_parameter($this, $rt_s(708)); + break e; + case 146: + oavr_Recognizer_setState($this, 2890); + oncipv_Cypher5Parser_stringListLiteral($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_400 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_400_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_DecimalDoubleLiteral_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_password = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PasswordContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 450, 225); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2895); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 97 && $_la != 198)) { + oavr_Recognizer_setState($this, 2894); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 97 && $_la != 198) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2897); + oavr_Parser_match($this, 193); + oavr_Recognizer_setState($this, 2898); + oncipv_Cypher5Parser_passwordExpression($this); + oavr_Recognizer_setState($this, 2900); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) { + oavr_Recognizer_setState($this, 2899); + oncipv_Cypher5Parser_passwordChangeRequired($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_401 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_401_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpression$Disjunctions_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); +oncipv_Cypher5Parser_passwordOnly = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PasswordOnlyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 452, 226); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2903); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 97 && $_la != 198)) { + oavr_Recognizer_setState($this, 2902); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 97 && $_la != 198) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 2905); + oavr_Parser_match($this, 193); + oavr_Recognizer_setState($this, 2906); + oncipv_Cypher5Parser_passwordExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_402 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_402_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_SignedHexIntegerLiteral_copy(var$2, var$3[0], var$3[1]); +oncipv_Cypher5Parser_passwordExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PasswordExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 454, 227); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2910); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 8: + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2908); + oncipv_Cypher5Parser_stringLiteral($this); + break e; + case 80: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2909); + oncipv_Cypher5Parser_parameter($this, $rt_s(714)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_404 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_404_copyConstructor = (var$1, var$2, var$3) => { - return oncie_NaN_copy(var$2, var$3.data[0]); +oncipv_Cypher5Parser_passwordChangeRequired = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PasswordChangeRequiredContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 456, 228); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2912); + oavr_Parser_match($this, 44); + oavr_Recognizer_setState($this, 2914); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { + oavr_Recognizer_setState($this, 2913); + oavr_Parser_match($this, 179); + } + oavr_Recognizer_setState($this, 2916); + oavr_Parser_match($this, 231); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_408 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_408_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ProcedureResult_copy(var$2, var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_userStatus = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$UserStatusContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 458, 229); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2918); + oavr_Parser_match($this, 261); + oavr_Recognizer_setState($this, 2919); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 12 && $_la != 265) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_409 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_409_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Limit__init_0(var$3[0], var$3[1]); +oncipv_Cypher5Parser_homeDatabase = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$HomeDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 460, 230); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2921); + oavr_Parser_match($this, 126); + oavr_Recognizer_setState($this, 2922); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 2923); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher5Parser_setAuthClause = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SetAuthClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 462, 231); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2925); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 2927); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 212) { + oavr_Recognizer_setState($this, 2926); + oavr_Parser_match($this, 212); + } + oavr_Recognizer_setState($this, 2929); + oncipv_Cypher5Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 2930); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 2933); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 2931); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 2932); + oncipv_Cypher5Parser_userAuthAttribute($this); + oavr_Recognizer_setState($this, 2935); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 250) + continue; + else + break; + } + oavr_Recognizer_setState($this, 2937); + oavr_Parser_match($this, 217); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_412 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_412_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_Skip__init_0(var$3[0], var$3[1]); +oncipv_Cypher5Parser_userAuthAttribute = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$UserAuthAttributeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 464, 232); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 2944); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 347, $this.$_ctx)) { + case 1: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2939); + oavr_Parser_match($this, 127); + oavr_Recognizer_setState($this, 2940); + oncipv_Cypher5Parser_stringOrParameterExpression($this); + break e; + case 2: + break; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 2942); + oavr_Parser_match($this, 193); + oavr_Recognizer_setState($this, 2943); + oncipv_Cypher5Parser_passwordChangeRequired($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 2941); + oncipv_Cypher5Parser_passwordOnly($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_413 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_413_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ParameterName__init_0(var$3[0], var$3[1]); +oncipv_Cypher5Parser_showUsers = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowUsersContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 466, 233); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2946); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 291 && $_la != 292) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2949); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 302) { + oavr_Recognizer_setState($this, 2947); + oavr_Parser_match($this, 302); + oavr_Recognizer_setState($this, 2948); + oavr_Parser_match($this, 29); + } + oavr_Recognizer_setState($this, 2952); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2951); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_121 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_121_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncipv_Cypher5Parser_showCurrentUser = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowCurrentUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 468, 234); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2954); + oavr_Parser_match($this, 63); + oavr_Recognizer_setState($this, 2955); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 2957); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2956); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_122 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_122_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncipv_Cypher5Parser_showSupportedPrivileges = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowSupportedPrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 470, 235); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2959); + oavr_Parser_match($this, 264); + oavr_Recognizer_setState($this, 2960); + oncipv_Cypher5Parser_privilegeToken($this); + oavr_Recognizer_setState($this, 2962); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2961); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_123 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_123_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncipv_Cypher5Parser_showPrivileges = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowPrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 472, 236); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2965); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 18) { + oavr_Recognizer_setState($this, 2964); + oavr_Parser_match($this, 18); + } + oavr_Recognizer_setState($this, 2967); + oncipv_Cypher5Parser_privilegeToken($this); + oavr_Recognizer_setState($this, 2969); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2968); + oncipv_Cypher5Parser_privilegeAsCommand($this); + } + oavr_Recognizer_setState($this, 2972); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2971); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_124 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_124_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncipv_Cypher5Parser_showRolePrivileges = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowRolePrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 474, 237); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2974); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 235 && $_la != 236) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 2975); + oncipv_Cypher5Parser_roleNames($this); + oavr_Recognizer_setState($this, 2976); + oncipv_Cypher5Parser_privilegeToken($this); + oavr_Recognizer_setState($this, 2978); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2977); + oncipv_Cypher5Parser_privilegeAsCommand($this); + } + oavr_Recognizer_setState($this, 2981); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2980); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_125 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_125_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncipv_Cypher5Parser_showUserPrivileges = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowUserPrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 476, 238); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2983); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 291 && $_la != 292) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + e: { + oavr_Recognizer_setState($this, 2985); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 357, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 2984); + oncipv_Cypher5Parser_userNames($this); + } + oavr_Recognizer_setState($this, 2987); + oncipv_Cypher5Parser_privilegeToken($this); + oavr_Recognizer_setState($this, 2989); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { + oavr_Recognizer_setState($this, 2988); + oncipv_Cypher5Parser_privilegeAsCommand($this); + } + oavr_Recognizer_setState($this, 2992); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 2991); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_126 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_126_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncipv_Cypher5Parser_privilegeAsCommand = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PrivilegeAsCommandContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 478, 239); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 2994); + oavr_Parser_match($this, 23); + oavr_Recognizer_setState($this, 2996); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 234) { + oavr_Recognizer_setState($this, 2995); + oavr_Parser_match($this, 234); + } + oavr_Recognizer_setState($this, 2998); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 50 && $_la != 51) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_127 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_127_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncipv_Cypher5Parser_privilegeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PrivilegeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 480, 240); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3000); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 206 && $_la != 207) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_128 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_128_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncipv_Cypher5Parser_privilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 482, 241); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3014); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + case 55: + case 56: + case 132: + case 133: + case 165: + case 259: + case 262: + case 267: + case 277: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3004); + oncipv_Cypher5Parser_databasePrivilege($this); + break e; + case 15: + case 19: + case 27: + case 53: + case 65: + case 102: + case 129: + case 206: + case 221: + case 235: + case 248: + case 291: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 3005); + oncipv_Cypher5Parser_dbmsPrivilege($this); + break e; + case 18: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3002); + oncipv_Cypher5Parser_allPrivilege($this); + break e; + case 61: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3003); + oncipv_Cypher5Parser_createPrivilege($this); + break e; + case 73: + case 160: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 3008); + oncipv_Cypher5Parser_qualifiedGraphPrivileges($this); + break e; + case 87: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 3006); + oncipv_Cypher5Parser_dropPrivilege($this); + break e; + case 152: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 3007); + oncipv_Cypher5Parser_loadPrivilege($this); + break e; + case 159: + case 218: + case 279: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 3009); + oncipv_Cypher5Parser_qualifiedGraphPrivilegesWithProperty($this); + break e; + case 226: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 3010); + oncipv_Cypher5Parser_removePrivilege($this); + break e; + case 250: + oavr_Parser_enterOuterAlt($this, $_localctx, 10); + oavr_Recognizer_setState($this, 3011); + oncipv_Cypher5Parser_setPrivilege($this); + break e; + case 255: + oavr_Parser_enterOuterAlt($this, $_localctx, 11); + oavr_Recognizer_setState($this, 3012); + oncipv_Cypher5Parser_showPrivilege($this); + break e; + case 304: + oavr_Parser_enterOuterAlt($this, $_localctx, 12); + oavr_Recognizer_setState($this, 3013); + oncipv_Cypher5Parser_writePrivilege($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_129 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_129_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncipv_Cypher5Parser_allPrivilege = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AllPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 484, 242); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3016); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 3018); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$3 = $_la - 65 | 0; + if (!(!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17, 8388608)), Long_ZERO)) && $_la != 207)) { + oavr_Recognizer_setState($this, 3017); + oncipv_Cypher5Parser_allPrivilegeType($this); + } + oavr_Recognizer_setState($this, 3020); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3021); + oncipv_Cypher5Parser_allPrivilegeTarget($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_130 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_130_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncipv_Cypher5Parser_allPrivilegeType = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AllPrivilegeTypeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 486, 243); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3024); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 65 | 0; + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(17, 8388608)), Long_ZERO)) { + oavr_Recognizer_setState($this, 3023); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 65 | 0; + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(17, 8388608)), Long_ZERO)) { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else + $this.$_errHandler.$recoverInline($this); + } + oavr_Recognizer_setState($this, 3026); + oavr_Parser_match($this, 207); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_121 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_121_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_allPrivilegeTarget = $this => { + let $_localctx, var$2, $re, $_la, $$je; + $_localctx = new oncipv_Cypher5Parser$AllPrivilegeTargetContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 488, 244); + a: { + b: { + c: { + d: { + try { + e: { + var$2 = $_localctx; + oavr_Recognizer_setState($this, 3041); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 65: + case 66: + f: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$DatabaseVariableTargetContext; + var$2 = $re; + oncipv_Cypher5Parser$DatabaseVariableTargetContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 2); + oavr_Recognizer_setState($this, 3030); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 65) { + var$2 = $re; + if ($_la != 66) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break f; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 3033); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 80: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + var$2 = $re; + oavr_Recognizer_setState($this, 3032); + oncipv_Cypher5Parser_symbolicAliasNameList($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + var$2 = $re; + oavr_Recognizer_setState($this, 3031); + oavr_Parser_match($this, 271); + break e; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + case 69: + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$DBMSTargetContext; + var$2 = $re; + oncipv_Cypher5Parser$DBMSTargetContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 4); + oavr_Recognizer_setState($this, 3040); + oavr_Parser_match($this, 69); + break e; + case 71: + case 126: + g: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$DefaultTargetContext; + var$2 = $re; + oncipv_Cypher5Parser$DefaultTargetContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 1); + oavr_Recognizer_setState($this, 3028); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 71) { + var$2 = $re; + if ($_la != 126) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break g; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 3029); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 65) { + var$2 = $re; + if ($_la != 120) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break e; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + case 120: + case 121: + h: { + var$2 = $_localctx; + $re = new oncipv_Cypher5Parser$GraphVariableTargetContext; + var$2 = $re; + oncipv_Cypher5Parser$GraphVariableTargetContext__init_($re, $_localctx); + oavr_Parser_enterOuterAlt($this, $re, 3); + oavr_Recognizer_setState($this, 3035); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 120) { + var$2 = $re; + if ($_la != 121) { + var$2 = $re; + $this.$_errHandler.$recoverInline($this); + break h; + } + } + var$2 = $re; + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { + var$2 = $re; + $this.$matchedEOF = 1; + } + var$2 = $re; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + var$2 = $re; + oavr_Recognizer_setState($this, 3038); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 80: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + var$2 = $re; + oavr_Recognizer_setState($this, 3037); + oncipv_Cypher5Parser_symbolicAliasNameList($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + var$2 = $re; + oavr_Recognizer_setState($this, 3036); + oavr_Parser_match($this, 271); + break e; + default: + } + var$2 = $re; + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + var$2 = $_localctx; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + var$2.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $re = var$2; + } + return $re; }, -onciu_RewritableJavascript$PROXY$11_122 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$11_122_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createPrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreatePrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 490, 245); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3043); + oavr_Parser_match($this, 61); + oavr_Recognizer_setState($this, 3056); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + case 53: + case 65: + case 235: + case 291: + oavr_Recognizer_setState($this, 3048); + oncipv_Cypher5Parser_actionForDBMS($this); + oavr_Recognizer_setState($this, 3049); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3050); + oavr_Parser_match($this, 69); + break e; + case 55: + case 56: + case 132: + case 133: + case 172: + oavr_Recognizer_setState($this, 3044); + oncipv_Cypher5Parser_createPrivilegeForDatabase($this); + oavr_Recognizer_setState($this, 3045); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3046); + oncipv_Cypher5Parser_databaseScope($this); + break e; + case 185: + oavr_Recognizer_setState($this, 3052); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3053); + oncipv_Cypher5Parser_graphScope($this); + oavr_Recognizer_setState($this, 3054); + oncipv_Cypher5Parser_graphQualifier($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_123 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_123_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createPrivilegeForDatabase = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 492, 246); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3063); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 368, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3059); + oncipv_Cypher5Parser_constraintToken($this); + break e; + case 3: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3060); + oncipv_Cypher5Parser_createNodePrivilegeToken($this); + break e; + case 4: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 3061); + oncipv_Cypher5Parser_createRelPrivilegeToken($this); + break e; + case 5: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 3062); + oncipv_Cypher5Parser_createPropertyPrivilegeToken($this); + break e; + default: + break e; + } + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3058); + oncipv_Cypher5Parser_indexToken($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_124 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_124_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createNodePrivilegeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 494, 247); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3065); + oavr_Parser_match($this, 172); + oavr_Recognizer_setState($this, 3067); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 173) { + oavr_Recognizer_setState($this, 3066); + oavr_Parser_match($this, 173); + } + oavr_Recognizer_setState($this, 3069); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 142 && $_la != 143) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_125 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_125_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncipv_Cypher5Parser_createRelPrivilegeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 496, 248); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3071); + oavr_Parser_match($this, 172); + oavr_Recognizer_setState($this, 3073); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 224) { + oavr_Recognizer_setState($this, 3072); + oavr_Parser_match($this, 224); + } + oavr_Recognizer_setState($this, 3075); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 282 && $_la != 284) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_126 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_126_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_createPropertyPrivilegeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 498, 249); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3077); + oavr_Parser_match($this, 172); + oavr_Recognizer_setState($this, 3079); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 211) { + oavr_Recognizer_setState($this, 3078); + oavr_Parser_match($this, 211); + } + oavr_Recognizer_setState($this, 3081); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 165 && $_la != 166) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_127 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_127_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_actionForDBMS = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ActionForDBMSContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 500, 250); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3090); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3083); + oavr_Parser_match($this, 15); + break e; + case 53: + case 65: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3085); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 53) { + oavr_Recognizer_setState($this, 3084); + oavr_Parser_match($this, 53); + } + oavr_Recognizer_setState($this, 3087); + oavr_Parser_match($this, 65); + break e; + case 235: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3088); + oavr_Parser_match($this, 235); + break e; + case 291: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 3089); + oavr_Parser_match($this, 291); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_128 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_128_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_dropPrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 502, 251); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3092); + oavr_Parser_match($this, 87); + oavr_Recognizer_setState($this, 3104); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + case 53: + case 65: + case 235: + case 291: + oavr_Recognizer_setState($this, 3100); + oncipv_Cypher5Parser_actionForDBMS($this); + oavr_Recognizer_setState($this, 3101); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3102); + oavr_Parser_match($this, 69); + break e; + case 55: + case 56: + case 132: + case 133: + f: { + oavr_Recognizer_setState($this, 3095); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 55: + case 56: + oavr_Recognizer_setState($this, 3094); + oncipv_Cypher5Parser_constraintToken($this); + break f; + case 132: + case 133: + oavr_Recognizer_setState($this, 3093); + oncipv_Cypher5Parser_indexToken($this); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3097); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3098); + oncipv_Cypher5Parser_databaseScope($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_129 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_129_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_loadPrivilege = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LoadPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 504, 252); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3106); + oavr_Parser_match($this, 152); + oavr_Recognizer_setState($this, 3107); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3112); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 18: + oavr_Recognizer_setState($this, 3110); + oavr_Parser_match($this, 18); + oavr_Recognizer_setState($this, 3111); + oavr_Parser_match($this, 64); + break e; + case 45: + case 289: + oavr_Recognizer_setState($this, 3108); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 45 && $_la != 289) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3109); + oncipv_Cypher5Parser_stringOrParameter($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_130 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_130_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_showPrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 506, 253); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3114); + oavr_Parser_match($this, 255); + oavr_Recognizer_setState($this, 3139); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + case 206: + case 235: + case 248: + case 249: + case 251: + case 252: + case 291: + f: { + oavr_Recognizer_setState($this, 3135); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 3126); + oavr_Parser_match($this, 15); + break f; + case 206: + oavr_Recognizer_setState($this, 3127); + oavr_Parser_match($this, 206); + break f; + case 235: + oavr_Recognizer_setState($this, 3128); + oavr_Parser_match($this, 235); + break f; + case 248: + oavr_Recognizer_setState($this, 3129); + oavr_Parser_match($this, 248); + break f; + case 249: + oavr_Recognizer_setState($this, 3130); + oavr_Parser_match($this, 249); + break f; + case 251: + case 252: + oavr_Recognizer_setState($this, 3131); + oncipv_Cypher5Parser_settingToken($this); + oavr_Recognizer_setState($this, 3132); + oncipv_Cypher5Parser_settingQualifier($this); + break f; + case 291: + oavr_Recognizer_setState($this, 3134); + oavr_Parser_match($this, 291); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3137); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3138); + oavr_Parser_match($this, 69); + break e; + case 55: + case 56: + case 132: + case 133: + case 277: + case 278: + g: { + oavr_Recognizer_setState($this, 3121); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 55: + case 56: + oavr_Recognizer_setState($this, 3116); + oncipv_Cypher5Parser_constraintToken($this); + break g; + case 132: + case 133: + oavr_Recognizer_setState($this, 3115); + oncipv_Cypher5Parser_indexToken($this); + break g; + case 277: + case 278: + oavr_Recognizer_setState($this, 3117); + oncipv_Cypher5Parser_transactionToken($this); + oavr_Recognizer_setState($this, 3119); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 155) + break g; + oavr_Recognizer_setState($this, 3118); + oncipv_Cypher5Parser_userQualifier($this); + break g; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3123); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3124); + oncipv_Cypher5Parser_databaseScope($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_415 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_415_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_NamespacedName__init_(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_setPrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SetPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 508, 254); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3141); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 3169); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 29: + oavr_Recognizer_setState($this, 3166); + oavr_Parser_match($this, 29); + oavr_Recognizer_setState($this, 3167); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3168); + oavr_Parser_match($this, 69); + break e; + case 65: + case 193: + case 194: + case 291: + f: { + oavr_Recognizer_setState($this, 3151); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 65: + oavr_Recognizer_setState($this, 3149); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3150); + oavr_Parser_match($this, 11); + break f; + case 193: + case 194: + oavr_Recognizer_setState($this, 3142); + oncipv_Cypher5Parser_passwordToken($this); + break f; + case 291: + oavr_Recognizer_setState($this, 3143); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 3147); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 126: + oavr_Recognizer_setState($this, 3145); + oavr_Parser_match($this, 126); + oavr_Recognizer_setState($this, 3146); + oavr_Parser_match($this, 65); + break f; + case 261: + oavr_Recognizer_setState($this, 3144); + oavr_Parser_match($this, 261); + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3153); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3154); + oavr_Parser_match($this, 69); + break e; + case 142: + oavr_Recognizer_setState($this, 3155); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 3156); + oncipv_Cypher5Parser_labelsResource($this); + oavr_Recognizer_setState($this, 3157); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3158); + oncipv_Cypher5Parser_graphScope($this); + break e; + case 211: + oavr_Recognizer_setState($this, 3160); + oavr_Parser_match($this, 211); + oavr_Recognizer_setState($this, 3161); + oncipv_Cypher5Parser_propertiesResource($this); + oavr_Recognizer_setState($this, 3162); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3163); + oncipv_Cypher5Parser_graphScope($this); + oavr_Recognizer_setState($this, 3164); + oncipv_Cypher5Parser_graphQualifier($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_416 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_416_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DropUser__init_0(var$3[0], var$3[1].$value3, var$3[2]); +oncipv_Cypher5Parser_passwordToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PasswordTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 510, 255); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3171); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 193 && $_la != 194) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_417 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_417_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_RenameUser__init_0(var$3[0], var$3[1], var$3[2].$value3, var$3[3]); +oncipv_Cypher5Parser_removePrivilege = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RemovePrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 512, 256); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3173); + oavr_Parser_match($this, 226); + oavr_Recognizer_setState($this, 3182); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 142: + oavr_Recognizer_setState($this, 3177); + oavr_Parser_match($this, 142); + oavr_Recognizer_setState($this, 3178); + oncipv_Cypher5Parser_labelsResource($this); + oavr_Recognizer_setState($this, 3179); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3180); + oncipv_Cypher5Parser_graphScope($this); + break e; + case 206: + case 235: + oavr_Recognizer_setState($this, 3174); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 206 && $_la != 235) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3175); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3176); + oavr_Parser_match($this, 69); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_418 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_418_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DropRole__init_0(var$3[0], var$3[1].$value3, var$3[2]); +oncipv_Cypher5Parser_writePrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$WritePrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 514, 257); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3184); + oavr_Parser_match($this, 304); + oavr_Recognizer_setState($this, 3185); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3186); + oncipv_Cypher5Parser_graphScope($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_419 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_419_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_RenameServer__init_0(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_databasePrivilege = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DatabasePrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 516, 258); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3210); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + oavr_Recognizer_setState($this, 3188); + oavr_Parser_match($this, 11); + break e; + case 55: + case 56: + case 132: + case 133: + case 165: + g: { + oavr_Recognizer_setState($this, 3194); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 55: + case 56: + oavr_Recognizer_setState($this, 3192); + oncipv_Cypher5Parser_constraintToken($this); + break g; + case 132: + case 133: + oavr_Recognizer_setState($this, 3191); + oncipv_Cypher5Parser_indexToken($this); + break g; + case 165: + oavr_Recognizer_setState($this, 3193); + oavr_Parser_match($this, 165); + break g; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3197); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 157) + break e; + oavr_Recognizer_setState($this, 3196); + oavr_Parser_match($this, 157); + break e; + case 259: + oavr_Recognizer_setState($this, 3189); + oavr_Parser_match($this, 259); + break e; + case 262: + oavr_Recognizer_setState($this, 3190); + oavr_Parser_match($this, 262); + break e; + case 267: + case 277: + break f; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + h: { + oavr_Recognizer_setState($this, 3205); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 267: + oavr_Recognizer_setState($this, 3203); + oavr_Parser_match($this, 267); + oavr_Recognizer_setState($this, 3204); + oncipv_Cypher5Parser_transactionToken($this); + break h; + case 277: + oavr_Recognizer_setState($this, 3199); + oavr_Parser_match($this, 277); + oavr_Recognizer_setState($this, 3201); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 157) + break h; + oavr_Recognizer_setState($this, 3200); + oavr_Parser_match($this, 157); + break h; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3208); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) { + oavr_Recognizer_setState($this, 3207); + oncipv_Cypher5Parser_userQualifier($this); + } + } + oavr_Recognizer_setState($this, 3212); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3213); + oncipv_Cypher5Parser_databaseScope($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_420 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_420_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DropDatabase__init_(var$3[0], var$3[1].$value3, var$3[2].$value3, var$3[3], var$3[4], var$3[5], var$3[6]); +oncipv_Cypher5Parser_dbmsPrivilege = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DbmsPrivilegeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 518, 259); + a: { + b: { + c: { + d: { + try { + e: { + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3238); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + case 53: + case 65: + case 206: + case 235: + case 248: + case 291: + g: { + oavr_Recognizer_setState($this, 3228); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 15: + oavr_Recognizer_setState($this, 3219); + oavr_Parser_match($this, 15); + break g; + case 53: + case 65: + oavr_Recognizer_setState($this, 3221); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 53) { + oavr_Recognizer_setState($this, 3220); + oavr_Parser_match($this, 53); + } + oavr_Recognizer_setState($this, 3223); + oavr_Parser_match($this, 65); + break g; + case 206: + oavr_Recognizer_setState($this, 3224); + oavr_Parser_match($this, 206); + break g; + case 235: + oavr_Recognizer_setState($this, 3225); + oavr_Parser_match($this, 235); + break g; + case 248: + oavr_Recognizer_setState($this, 3226); + oavr_Parser_match($this, 248); + break g; + case 291: + oavr_Recognizer_setState($this, 3227); + oavr_Parser_match($this, 291); + break g; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3230); + oavr_Parser_match($this, 157); + break e; + case 19: + oavr_Recognizer_setState($this, 3215); + oavr_Parser_match($this, 19); + oavr_Recognizer_setState($this, 3216); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 15 && $_la != 65 && $_la != 291) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + case 27: + break f; + case 102: + oavr_Recognizer_setState($this, 3231); + oncipv_Cypher5Parser_dbmsPrivilegeExecute($this); + break e; + case 129: + oavr_Recognizer_setState($this, 3234); + oavr_Parser_match($this, 129); + oavr_Recognizer_setState($this, 3236); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 155) + break e; + oavr_Recognizer_setState($this, 3235); + oncipv_Cypher5Parser_userQualifier($this); + break e; + case 221: + oavr_Recognizer_setState($this, 3232); + oavr_Parser_match($this, 221); + oavr_Recognizer_setState($this, 3233); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 235 && $_la != 291) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3217); + oavr_Parser_match($this, 27); + oavr_Recognizer_setState($this, 3218); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 206 && $_la != 235) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } + oavr_Recognizer_setState($this, 3240); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3241); + oavr_Parser_match($this, 69); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_421 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_421_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_RevokeRolesFromUsers__init_(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_dbmsPrivilegeExecute = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 520, 260); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3243); + oavr_Parser_match($this, 102); + oavr_Recognizer_setState($this, 3264); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 13: + case 14: + oavr_Recognizer_setState($this, 3244); + oncipv_Cypher5Parser_adminToken($this); + oavr_Recognizer_setState($this, 3245); + oavr_Parser_match($this, 209); + break e; + case 34: + case 116: + case 117: + case 208: + case 209: + case 291: + oavr_Recognizer_setState($this, 3248); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 34) { + oavr_Recognizer_setState($this, 3247); + oavr_Parser_match($this, 34); + } + oavr_Recognizer_setState($this, 3262); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 116: + case 117: + case 291: + oavr_Recognizer_setState($this, 3257); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 291) { + oavr_Recognizer_setState($this, 3253); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 3255); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 72) { + oavr_Recognizer_setState($this, 3254); + oavr_Parser_match($this, 72); + } + } + oavr_Recognizer_setState($this, 3259); + oncipv_Cypher5Parser_functionToken($this); + oavr_Recognizer_setState($this, 3260); + oncipv_Cypher5Parser_executeFunctionQualifier($this); + break e; + case 208: + case 209: + oavr_Recognizer_setState($this, 3250); + oncipv_Cypher5Parser_procedureToken($this); + oavr_Recognizer_setState($this, 3251); + oncipv_Cypher5Parser_executeProcedureQualifier($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_422 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_422_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DropServer__init_0(var$3[0], var$3[1]); +oncipv_Cypher5Parser_adminToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AdminTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 522, 261); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3266); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 13 && $_la != 14) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_423 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_423_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_AlterServer__init_0(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_procedureToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ProcedureTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 524, 262); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3268); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 208 && $_la != 209) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_424 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_424_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DropDatabaseAlias__init_0(var$3[0], var$3[1].$value3, var$3[2]); +oncipv_Cypher5Parser_indexToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$IndexTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 526, 263); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3270); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 132 && $_la != 133) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_425 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_425_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_SetOwnPassword__init_0(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_constraintToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ConstraintTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 528, 264); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3272); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 55 && $_la != 56) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_426 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_426_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_RenameRole__init_0(var$3[0], var$3[1], var$3[2].$value3, var$3[3]); +oncipv_Cypher5Parser_transactionToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$TransactionTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 530, 265); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3274); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 277 && $_la != 278) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_427 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_427_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_AlterDatabase__init_0(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7]); +oncipv_Cypher5Parser_userQualifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$UserQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 532, 266); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3276); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 3279); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 80: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 3278); + oncipv_Cypher5Parser_userNames($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Recognizer_setState($this, 3277); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3281); + oavr_Parser_match($this, 239); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_428 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_428_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DeallocateServers__init_0(var$3[0].$value3, var$3[1], var$3[2]); +oncipv_Cypher5Parser_executeFunctionQualifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ExecuteFunctionQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 534, 267); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3283); + oncipv_Cypher5Parser_globs($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_429 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_429_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_AlterUser__init_(var$3[0], var$3[1], var$3[2].$value3, var$3[3], var$3[4], var$3[5], var$3[6]); +oncipv_Cypher5Parser_executeProcedureQualifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ExecuteProcedureQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 536, 268); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3285); + oncipv_Cypher5Parser_globs($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_430 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_430_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ReallocateDatabases__init_0(var$3[0].$value3, var$3[1]); +oncipv_Cypher5Parser_settingQualifier = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SettingQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 538, 269); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3287); + oncipv_Cypher5Parser_globs($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_431 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$7_431_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_GrantRolesToUsers__init_(var$3[0], var$3[1], var$3[2]); +oncipv_Cypher5Parser_globs = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GlobsContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 540, 270); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3289); + oncipv_Cypher5Parser_glob($this); + oavr_Recognizer_setState($this, 3294); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 3290); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 3291); + oncipv_Cypher5Parser_glob($this); + oavr_Recognizer_setState($this, 3296); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_433 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_433_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_ReturnItems_copy(var$2, var$3[0].$value3, var$3[1], var$3[2], var$3[3]); +oncipv_Cypher5Parser_glob = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GlobContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 542, 271); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3302); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + f: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3297); + oncipv_Cypher5Parser_escapedSymbolicNameString($this); + oavr_Recognizer_setState($this, 3299); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 402, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 3298); + oncipv_Cypher5Parser_globRecursive($this); + } + break e; + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 83: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 214: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 271: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3301); + oncipv_Cypher5Parser_globRecursive($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$7_434 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_434_copyConstructor = (var$1, var$2, var$3) => { - return oncie_CaseExpression$Placeholder_copy(var$2, var$3.data[0]); +oncipv_Cypher5Parser_globRecursive = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GlobRecursiveContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 544, 272); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3304); + oncipv_Cypher5Parser_globPart($this); + oavr_Recognizer_setState($this, 3306); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 404, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 3305); + oncipv_Cypher5Parser_globRecursive($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$9_131 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_131_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncipv_Cypher5Parser_globPart = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GlobPartContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 546, 273); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3315); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 3314); + oncipv_Cypher5Parser_unescapedSymbolicNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 83: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3308); + oavr_Parser_match($this, 83); + oavr_Recognizer_setState($this, 3310); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 10) + break e; + oavr_Recognizer_setState($this, 3309); + oncipv_Cypher5Parser_escapedSymbolicNameString($this); + break e; + case 214: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3312); + oavr_Parser_match($this, 214); + break e; + case 271: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3313); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -onciu_RewritableJavascript$PROXY$11_131 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_131_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipv_Cypher5Parser_qualifiedGraphPrivilegesWithProperty = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 548, 274); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3320); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 159: + case 218: + oavr_Recognizer_setState($this, 3318); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 159 && $_la != 218) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3319); + oncipv_Cypher5Parser_propertiesResource($this); + break e; + case 279: + oavr_Recognizer_setState($this, 3317); + oavr_Parser_match($this, 279); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3322); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3323); + oncipv_Cypher5Parser_graphScope($this); + oavr_Recognizer_setState($this, 3324); + oncipv_Cypher5Parser_graphQualifier($this); + oavr_Recognizer_setState($this, 3328); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) { + oavr_Recognizer_setState($this, 3325); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 3326); + oavr_Parser_match($this, 271); + oavr_Recognizer_setState($this, 3327); + oavr_Parser_match($this, 239); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncie_QuantifiedPath$allVariables$lambda$_9_0 = $rt_classWithoutFields(), -oncie_QuantifiedPath$allVariables$lambda$_9_0_apply = (var$0, var$1) => { - return var$1.$group0; +oncipv_Cypher5Parser_qualifiedGraphPrivileges = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 550, 275); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3333); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 73: + oavr_Recognizer_setState($this, 3330); + oavr_Parser_match($this, 73); + break e; + case 160: + oavr_Recognizer_setState($this, 3331); + oavr_Parser_match($this, 160); + oavr_Recognizer_setState($this, 3332); + oncipv_Cypher5Parser_propertiesResource($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3335); + oavr_Parser_match($this, 185); + oavr_Recognizer_setState($this, 3336); + oncipv_Cypher5Parser_graphScope($this); + oavr_Recognizer_setState($this, 3337); + oncipv_Cypher5Parser_graphQualifier($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -oncie_PathConcatenation$allVariables$lambda$_4_0 = $rt_classWithoutFields(), -oncie_PathConcatenation$allVariables$lambda$_4_0_apply = (var$0, var$1) => { - return var$1.$allVariables(); +oncipv_Cypher5Parser_labelsResource = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$LabelsResourceContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 552, 276); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3341); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3340); + oncipv_Cypher5Parser_nonEmptyStringList($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3339); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_Map$Map4$$anon$8 = $rt_classWithoutFields(sci_Map$Map4$Map4Iterator), -sci_Map$Map4$$anon$8_nextResult = ($this, $k, $v) => { - return $k; +oncipv_Cypher5Parser_propertiesResource = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PropertiesResourceContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 554, 277); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3343); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 3346); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 3345); + oncipv_Cypher5Parser_nonEmptyStringList($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Recognizer_setState($this, 3344); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3348); + oavr_Parser_match($this, 217); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_Map$Map3$$anon$5 = $rt_classWithoutFields(sci_Map$Map3$Map3Iterator), -sci_Map$Map3$$anon$5_nextResult = ($this, $k, $v) => { - return $k; +oncipv_Cypher5Parser_nonEmptyStringList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NonEmptyStringListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 556, 278); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3350); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3355); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 3351); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 3352); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3357); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator = $rt_classWithoutFields(sci_ChampBaseIterator), -sci_MapKeyIterator_iterator = $this => { - return $this; +oncipv_Cypher5Parser_graphQualifier = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GraphQualifierContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 558, 279); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3391); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 94: + case 95: + case 173: + case 175: + case 224: + case 225: + oavr_Recognizer_setState($this, 3358); + oncipv_Cypher5Parser_graphQualifierToken($this); + oavr_Recognizer_setState($this, 3361); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 3360); + oncipv_Cypher5Parser_nonEmptyStringList($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Recognizer_setState($this, 3359); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 112: + f: { + oavr_Recognizer_setState($this, 3363); + oavr_Parser_match($this, 112); + oavr_Recognizer_setState($this, 3364); + oavr_Parser_match($this, 155); + oavr_Recognizer_setState($this, 3366); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 414, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 3365); + oncipv_Cypher5Parser_variable($this); + } + g: { + oavr_Recognizer_setState($this, 3377); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 47) { + oavr_Recognizer_setState($this, 3368); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 3369); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3374); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 30) + break g; + oavr_Recognizer_setState($this, 3370); + oavr_Parser_match($this, 30); + oavr_Recognizer_setState($this, 3371); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3376); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + } + oavr_Recognizer_setState($this, 3389); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 147: + case 301: + h: { + oavr_Recognizer_setState($this, 3385); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 147: + oavr_Recognizer_setState($this, 3384); + oncipv_Cypher5Parser_map($this); + break h; + case 301: + oavr_Recognizer_setState($this, 3382); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 3383); + oncipv_Cypher5Parser_expression($this); + break h; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3387); + oavr_Parser_match($this, 239); + break e; + case 239: + oavr_Recognizer_setState($this, 3379); + oavr_Parser_match($this, 239); + oavr_Recognizer_setState($this, 3380); + oavr_Parser_match($this, 301); + oavr_Recognizer_setState($this, 3381); + oncipv_Cypher5Parser_expression($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 114: + case 155: + case 274: + break; + default: + break e; + } + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_isEmpty = $this => { - return sc_Iterator_isEmpty$($this); +oncipv_Cypher5Parser_graphQualifierToken = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GraphQualifierTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 560, 280); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3396); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 94: + case 95: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3395); + oncipv_Cypher5Parser_elementToken($this); + break e; + case 173: + case 175: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3394); + oncipv_Cypher5Parser_nodeToken($this); + break e; + case 224: + case 225: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3393); + oncipv_Cypher5Parser_relToken($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}; +let oncipv_Cypher5Parser_relToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$RelTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 562, 281); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3398); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 224 && $_la != 225) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_filterImpl = ($this, $p, $isFlipped) => { - return sc_Iterator_filterImpl$($this, $p, $isFlipped); +oncipv_Cypher5Parser_elementToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ElementTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 564, 282); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3400); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 94 && $_la != 95) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_collect = ($this, $pf) => { - return sc_Iterator_collect$($this, $pf); +oncipv_Cypher5Parser_nodeToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$NodeTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 566, 283); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3402); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 173 && $_la != 175) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_map = ($this, $f) => { - return sc_Iterator_map$($this, $f); +oncipv_Cypher5Parser_databaseScope = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DatabaseScopeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 568, 284); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3411); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 65: + case 66: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3406); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 65 && $_la != 66) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3409); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 80: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 3408); + oncipv_Cypher5Parser_symbolicAliasNameList($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Recognizer_setState($this, 3407); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + case 71: + case 126: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3404); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 71 && $_la != 126) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3405); + oavr_Parser_match($this, 65); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_flatMap = ($this, $f) => { - return sc_Iterator_flatMap$($this, $f); +oncipv_Cypher5Parser_graphScope = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$GraphScopeContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 570, 285); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3420); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 71: + case 126: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3413); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 71 && $_la != 126) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3414); + oavr_Parser_match($this, 120); + break e; + case 120: + case 121: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3415); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 120 && $_la != 121) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3418); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 80: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Recognizer_setState($this, 3417); + oncipv_Cypher5Parser_symbolicAliasNameList($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + break; + case 271: + oavr_Recognizer_setState($this, 3416); + oavr_Parser_match($this, 271); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_concat = ($this, $xs) => { - return sc_Iterator_concat$($this, $xs); +oncipv_Cypher5Parser_createCompositeDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateCompositeDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 572, 286); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3422); + oavr_Parser_match($this, 53); + oavr_Recognizer_setState($this, 3423); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3424); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3428); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 3425); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 3426); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 3427); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 3431); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { + oavr_Recognizer_setState($this, 3430); + oncipv_Cypher5Parser_commandOptions($this); + } + oavr_Recognizer_setState($this, 3434); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 181 && $_la != 299)) { + oavr_Recognizer_setState($this, 3433); + oncipv_Cypher5Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_drop = ($this, $n) => { - return sc_Iterator_drop$($this, $n); +oncipv_Cypher5Parser_createDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 574, 287); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3436); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3437); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3441); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 3438); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 3439); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 3440); + oavr_Parser_match($this, 105); + } + e: { + oavr_Recognizer_setState($this, 3450); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 275) { + oavr_Recognizer_setState($this, 3443); + oavr_Parser_match($this, 275); + oavr_Recognizer_setState($this, 3446); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + f: { + oavr_Recognizer_setState($this, 3446); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 429, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 3445); + oncipv_Cypher5Parser_secondaryTopology($this); + break f; + default: + break f; + } + oavr_Recognizer_setState($this, 3444); + oncipv_Cypher5Parser_primaryTopology($this); + } + oavr_Recognizer_setState($this, 3448); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la == 5) + continue; + if ($_la == 80) + continue; + else + break e; + } + } + } + oavr_Recognizer_setState($this, 3453); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { + oavr_Recognizer_setState($this, 3452); + oncipv_Cypher5Parser_commandOptions($this); + } + oavr_Recognizer_setState($this, 3456); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 181 && $_la != 299)) { + oavr_Recognizer_setState($this, 3455); + oncipv_Cypher5Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_sliceIterator = ($this, $from, $until) => { - return sc_Iterator_sliceIterator$($this, $from, $until); +oncipv_Cypher5Parser_primaryTopology = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PrimaryTopologyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 576, 288); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3458); + oncipv_Cypher5Parser_uIntOrIntParameter($this); + oavr_Recognizer_setState($this, 3459); + oncipv_Cypher5Parser_primaryToken($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_toString = $this => { - return $rt_s(818); +oncipv_Cypher5Parser_primaryToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$PrimaryTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 578, 289); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3461); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 204 && $_la != 205) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_foreach = ($this, $f) => { - sc_IterableOnceOps_foreach$($this, $f); +oncipv_Cypher5Parser_secondaryTopology = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SecondaryTopologyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 580, 290); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3463); + oncipv_Cypher5Parser_uIntOrIntParameter($this); + oavr_Recognizer_setState($this, 3464); + oncipv_Cypher5Parser_secondaryToken($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_exists = ($this, $p) => { - return sc_IterableOnceOps_exists$($this, $p); +oncipv_Cypher5Parser_secondaryToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SecondaryTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 582, 291); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3466); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 243 && $_la != 244) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_find = ($this, $p) => { - return sc_IterableOnceOps_find$($this, $p); +oncipv_Cypher5Parser_dropDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 584, 292); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3469); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 53) { + oavr_Recognizer_setState($this, 3468); + oavr_Parser_match($this, 53); + } + oavr_Recognizer_setState($this, 3471); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3472); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3475); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 3473); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 3474); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 3478); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 42 && $_la != 232)) { + oavr_Recognizer_setState($this, 3477); + oncipv_Cypher5Parser_aliasAction($this); + } + oavr_Recognizer_setState($this, 3482); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 77 && $_la != 89)) { + oavr_Recognizer_setState($this, 3480); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 77 && $_la != 89) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3481); + oavr_Parser_match($this, 64); + } + oavr_Recognizer_setState($this, 3485); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 181 && $_la != 299)) { + oavr_Recognizer_setState($this, 3484); + oncipv_Cypher5Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_foldLeft = ($this, $z, $op) => { - return sc_IterableOnceOps_foldLeft$($this, $z, $op); +oncipv_Cypher5Parser_aliasAction = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AliasActionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 586, 293); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3490); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 42: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3488); + oavr_Parser_match($this, 42); + oavr_Recognizer_setState($this, 3489); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 15 && $_la != 16) { + $this.$_errHandler.$recoverInline($this); + break e; + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + break e; + case 232: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3487); + oavr_Parser_match($this, 232); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_nonEmpty = $this => { - return sc_IterableOnceOps_nonEmpty$($this); +oncipv_Cypher5Parser_alterDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 588, 294); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3492); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3493); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3496); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 3494); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 3495); + oavr_Parser_match($this, 105); + } + e: { + oavr_Recognizer_setState($this, 3515); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 226: + oavr_Recognizer_setState($this, 3511); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + oavr_Recognizer_setState($this, 3508); + oavr_Parser_match($this, 226); + oavr_Recognizer_setState($this, 3509); + oavr_Parser_match($this, 189); + oavr_Recognizer_setState($this, 3510); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3513); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 226) + continue; + else + break; + } + break e; + case 250: + oavr_Recognizer_setState($this, 3504); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + f: while (true) { + g: { + oavr_Recognizer_setState($this, 3498); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 3502); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + break; + case 189: + oavr_Recognizer_setState($this, 3501); + oncipv_Cypher5Parser_alterDatabaseOption($this); + break g; + case 275: + oavr_Recognizer_setState($this, 3500); + oncipv_Cypher5Parser_alterDatabaseTopology($this); + break g; + default: + break f; + } + oavr_Recognizer_setState($this, 3499); + oncipv_Cypher5Parser_alterDatabaseAccess($this); + } + oavr_Recognizer_setState($this, 3506); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 250) + continue; + else + break e; + } + $rt_throw(oavr_NoViableAltException__init_($this)); + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + oavr_Recognizer_setState($this, 3518); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 181 && $_la != 299)) { + oavr_Recognizer_setState($this, 3517); + oncipv_Cypher5Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_size = $this => { - return sc_IterableOnceOps_size$($this); +oncipv_Cypher5Parser_alterDatabaseAccess = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterDatabaseAccessContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 590, 295); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3520); + oavr_Parser_match($this, 11); + oavr_Recognizer_setState($this, 3521); + oavr_Parser_match($this, 218); + oavr_Recognizer_setState($this, 3522); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 186 && $_la != 304) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_copyToArray = ($this, $xs) => { - return sc_IterableOnceOps_copyToArray$($this, $xs); +oncipv_Cypher5Parser_alterDatabaseTopology = $this => { + let $_localctx, var$2, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterDatabaseTopologyContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 592, 296); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3524); + oavr_Parser_match($this, 275); + oavr_Recognizer_setState($this, 3527); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + e: { + oavr_Recognizer_setState($this, 3527); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 446, $this.$_ctx)) { + case 1: + break; + case 2: + oavr_Recognizer_setState($this, 3526); + oncipv_Cypher5Parser_secondaryTopology($this); + break e; + default: + break e; + } + oavr_Recognizer_setState($this, 3525); + oncipv_Cypher5Parser_primaryTopology($this); + } + oavr_Recognizer_setState($this, 3529); + $this.$_errHandler.$sync($this); + var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (var$2 == 5) + continue; + if (var$2 == 80) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_copyToArray0 = ($this, $xs, $start) => { - return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); +oncipv_Cypher5Parser_alterDatabaseOption = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterDatabaseOptionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 594, 297); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3531); + oavr_Parser_match($this, 189); + oavr_Recognizer_setState($this, 3532); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3533); + oncipv_Cypher5Parser_expression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_copyToArray1 = ($this, $xs, $start, $len) => { - return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); +oncipv_Cypher5Parser_startDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$StartDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 596, 298); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3535); + oavr_Parser_match($this, 259); + oavr_Recognizer_setState($this, 3536); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3537); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3539); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 181 && $_la != 299)) { + oavr_Recognizer_setState($this, 3538); + oncipv_Cypher5Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_to = ($this, $factory) => { - return $factory.$fromSpecific($this); +oncipv_Cypher5Parser_stopDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$StopDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 598, 299); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3541); + oavr_Parser_match($this, 262); + oavr_Recognizer_setState($this, 3542); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3543); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3545); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 181 && $_la != 299)) { + oavr_Recognizer_setState($this, 3544); + oncipv_Cypher5Parser_waitClause($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_toList = $this => { - return sc_IterableOnceOps_toList$($this); +oncipv_Cypher5Parser_waitClause = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$WaitClauseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 600, 300); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3555); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 181: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3554); + oavr_Parser_match($this, 181); + break e; + case 299: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3547); + oavr_Parser_match($this, 299); + oavr_Recognizer_setState($this, 3552); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 5) + break e; + oavr_Recognizer_setState($this, 3548); + oavr_Parser_match($this, 5); + oavr_Recognizer_setState($this, 3550); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 241 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(19)), Long_ZERO)) + break e; + oavr_Recognizer_setState($this, 3549); + oncipv_Cypher5Parser_secondsToken($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_toSeq = $this => { - return sc_IterableOnceOps_toSeq$($this); +oncipv_Cypher5Parser_secondsToken = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SecondsTokenContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 602, 301); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3557); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 241 | 0; + if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(19)), Long_ZERO)) { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } else + $this.$_errHandler.$recoverInline($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_toArray = ($this, $evidence$2) => { - return sc_IterableOnceOps_toArray$($this, $evidence$2); +oncipv_Cypher5Parser_showDatabase = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowDatabaseContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 604, 302); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3571); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 65: + case 66: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3564); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 65 && $_la != 66) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + f: { + oavr_Recognizer_setState($this, 3566); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 454, $this.$_ctx)) { + case 1: + break; + default: + break f; + } + oavr_Recognizer_setState($this, 3565); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + } + oavr_Recognizer_setState($this, 3569); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 301 && $_la != 306) + break e; + oavr_Recognizer_setState($this, 3568); + oncipv_Cypher5Parser_showCommandYield($this); + break e; + case 71: + case 126: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3559); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 71 && $_la != 126) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3560); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3562); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 301 && $_la != 306) + break e; + oavr_Recognizer_setState($this, 3561); + oncipv_Cypher5Parser_showCommandYield($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_knownSize = $this => { - return (-1); +oncipv_Cypher5Parser_aliasName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AliasNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 606, 303); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3573); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -sci_MapKeyIterator_next = $this => { - let $key; - if (!sci_ChampBaseIterator_hasNext($this)) { - $key = new ju_NoSuchElementException; - jl_Throwable__init_($key); - $rt_throw($key); +oncipv_Cypher5Parser_databaseName = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DatabaseNameContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 608, 304); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3575); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $key = $this.$currentValueNode.$getKey0($this.$currentValueCursor); - $this.$currentValueCursor = $this.$currentValueCursor + 1 | 0; - return $key; + return $_localctx; }, -sci_Map$Map2$$anon$2 = $rt_classWithoutFields(sci_Map$Map2$Map2Iterator), -sci_Map$Map2$$anon$2_nextResult = ($this, $k, $v) => { - return $k; -}; -function ju_LinkedHashMapIterator() { - let a = this; jl_Object.call(a); - a.$base0 = null; - a.$reversed2 = 0; - a.$expectedModCount0 = 0; - a.$futureEntry0 = null; - a.$currentEntry1 = null; -} -let ju_LinkedHashMapIterator__init_ = ($this, $base, $reversed) => { - $this.$base0 = $base; - $this.$reversed2 = $reversed; - $this.$expectedModCount0 = $base.$modCount0; - $this.$futureEntry0 = !$reversed ? $base.$head2 : $base.$tail3; +oncipv_Cypher5Parser_createAlias = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CreateAliasContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 610, 305); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3577); + oavr_Parser_match($this, 15); + oavr_Recognizer_setState($this, 3578); + oncipv_Cypher5Parser_aliasName($this); + oavr_Recognizer_setState($this, 3582); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 3579); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 3580); + oavr_Parser_match($this, 179); + oavr_Recognizer_setState($this, 3581); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 3584); + oavr_Parser_match($this, 112); + oavr_Recognizer_setState($this, 3585); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3586); + oncipv_Cypher5Parser_databaseName($this); + oavr_Recognizer_setState($this, 3597); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 28) { + oavr_Recognizer_setState($this, 3587); + oavr_Parser_match($this, 28); + oavr_Recognizer_setState($this, 3588); + oncipv_Cypher5Parser_stringOrParameter($this); + oavr_Recognizer_setState($this, 3589); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 3590); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 3591); + oavr_Parser_match($this, 193); + oavr_Recognizer_setState($this, 3592); + oncipv_Cypher5Parser_passwordExpression($this); + oavr_Recognizer_setState($this, 3595); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 86) { + oavr_Recognizer_setState($this, 3593); + oavr_Parser_match($this, 86); + oavr_Recognizer_setState($this, 3594); + oncipv_Cypher5Parser_mapOrParameter($this); + } + } + oavr_Recognizer_setState($this, 3601); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 210) { + oavr_Recognizer_setState($this, 3599); + oavr_Parser_match($this, 210); + oavr_Recognizer_setState($this, 3600); + oncipv_Cypher5Parser_mapOrParameter($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -ju_LinkedHashMapIterator__init_0 = (var_0, var_1) => { - let var_2 = new ju_LinkedHashMapIterator(); - ju_LinkedHashMapIterator__init_(var_2, var_0, var_1); - return var_2; +oncipv_Cypher5Parser_dropAlias = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$DropAliasContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 612, 306); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3603); + oavr_Parser_match($this, 15); + oavr_Recognizer_setState($this, 3604); + oncipv_Cypher5Parser_aliasName($this); + oavr_Recognizer_setState($this, 3607); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 3605); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 3606); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 3609); + oavr_Parser_match($this, 112); + oavr_Recognizer_setState($this, 3610); + oavr_Parser_match($this, 65); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -ju_LinkedHashMapIterator_hasNext = $this => { - return $this.$futureEntry0 === null ? 0 : 1; +oncipv_Cypher5Parser_alterAlias = $this => { + let $_localctx, $re, $_la, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterAliasContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 614, 307); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3612); + oavr_Parser_match($this, 15); + oavr_Recognizer_setState($this, 3613); + oncipv_Cypher5Parser_aliasName($this); + oavr_Recognizer_setState($this, 3616); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { + oavr_Recognizer_setState($this, 3614); + oavr_Parser_match($this, 128); + oavr_Recognizer_setState($this, 3615); + oavr_Parser_match($this, 105); + } + oavr_Recognizer_setState($this, 3618); + oavr_Parser_match($this, 250); + oavr_Recognizer_setState($this, 3619); + oavr_Parser_match($this, 65); + oavr_Recognizer_setState($this, 3625); + $this.$_errHandler.$sync($this); + oavr_BufferedTokenStream_LA($this.$_input, 1); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + e: { + try { + while (true) { + f: { + oavr_Recognizer_setState($this, 3625); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 86: + break; + case 193: + oavr_Recognizer_setState($this, 3622); + oncipv_Cypher5Parser_alterAliasPassword($this); + break f; + case 210: + oavr_Recognizer_setState($this, 3624); + oncipv_Cypher5Parser_alterAliasProperties($this); + break f; + case 266: + oavr_Recognizer_setState($this, 3620); + oncipv_Cypher5Parser_alterAliasTarget($this); + break f; + case 291: + oavr_Recognizer_setState($this, 3621); + oncipv_Cypher5Parser_alterAliasUser($this); + break f; + default: + break e; + } + oavr_Recognizer_setState($this, 3623); + oncipv_Cypher5Parser_alterAliasDriver($this); + } + oavr_Recognizer_setState($this, 3627); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la == 86) + continue; + if ($_la == 193) + continue; + if ($_la == 210) + continue; + if ($_la == 266) + continue; + if ($_la == 291) + continue; + else + break; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $rt_throw(oavr_NoViableAltException__init_($this)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + } else{ + $_localctx = $$je; + break c; + } + } + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -ju_LinkedHashMapIterator_checkConcurrentMod = $this => { - let var$1; - if ($this.$expectedModCount0 == $this.$base0.$modCount0) - return; - var$1 = new ju_ConcurrentModificationException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); +oncipv_Cypher5Parser_alterAliasTarget = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterAliasTargetContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 616, 308); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3629); + oavr_Parser_match($this, 266); + oavr_Recognizer_setState($this, 3630); + oncipv_Cypher5Parser_databaseName($this); + oavr_Recognizer_setState($this, 3633); + $this.$_errHandler.$sync($this); + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 28) { + oavr_Recognizer_setState($this, 3631); + oavr_Parser_match($this, 28); + oavr_Recognizer_setState($this, 3632); + oncipv_Cypher5Parser_stringOrParameter($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; }, -ju_LinkedHashMapIterator_makeNext = $this => { - let var$1; - ju_LinkedHashMapIterator_checkConcurrentMod($this); - if (!ju_LinkedHashMapIterator_hasNext($this)) { - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); +oncipv_Cypher5Parser_alterAliasUser = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterAliasUserContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 618, 309); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3635); + oavr_Parser_match($this, 291); + oavr_Recognizer_setState($this, 3636); + oncipv_Cypher5Parser_commandNameExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - var$1 = $this.$futureEntry0; - $this.$currentEntry1 = var$1; - $this.$futureEntry0 = !$this.$reversed2 ? var$1.$chainForward : var$1.$chainBackward; + return $_localctx; }, -ju_LinkedHashMapIterator_remove = $this => { - let var$1; - if ($this.$currentEntry1 === null) { - var$1 = new jl_IllegalStateException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); +oncipv_Cypher5Parser_alterAliasPassword = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterAliasPasswordContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 620, 310); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3638); + oavr_Parser_match($this, 193); + oavr_Recognizer_setState($this, 3639); + oncipv_Cypher5Parser_passwordExpression($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - ju_LinkedHashMapIterator_checkConcurrentMod($this); - ju_LinkedHashMap_removeLinkedEntry($this.$base0, $this.$currentEntry1); - $this.$currentEntry1 = null; - $this.$expectedModCount0 = $this.$expectedModCount0 + 1 | 0; + return $_localctx; }, -ju_LinkedHashMapIterator$KeyIterator = $rt_classWithoutFields(ju_LinkedHashMapIterator), -ju_LinkedHashMapIterator$KeyIterator_next = $this => { - ju_LinkedHashMapIterator_makeNext($this); - return $this.$currentEntry1.$key0; -}; -function ju_GenericEnumSet$1() { - let a = this; jl_Object.call(a); - a.$index4 = 0; - a.$indexToRemove = 0; - a.$this$01 = null; -} -let ju_GenericEnumSet$1_find = $this => { - let $overflow, var$2, $next; - $overflow = $this.$this$01.$bits0.data.length * 32 | 0; - while (true) { - var$2 = $this.$index4; - if (var$2 >= $overflow) - break; - $next = jl_Integer_numberOfTrailingZeros($this.$this$01.$bits0.data[var$2 / 32 | 0] >>> (var$2 % 32 | 0) | 0); - if ($next < 32) { - $next = $this.$index4 + $next | 0; - $this.$index4 = $next; - return $next; +oncipv_Cypher5Parser_alterAliasDriver = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterAliasDriverContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 622, 311); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3641); + oavr_Parser_match($this, 86); + oavr_Recognizer_setState($this, 3642); + oncipv_Cypher5Parser_mapOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - $this.$index4 = (($this.$index4 / 32 | 0) + 1 | 0) * 32 | 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return var$2; -}, -ju_GenericEnumSet$1_hasNext = $this => { - return $this.$index4 >= ($this.$this$01.$bits0.data.length * 32 | 0) ? 0 : 1; + return $_localctx; }, -ju_GenericEnumSet$1_next = $this => { - let var$1, var$2, var$3; - if (!ju_GenericEnumSet$1_hasNext($this)) { - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); +oncipv_Cypher5Parser_alterAliasProperties = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$AlterAliasPropertiesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 624, 312); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3644); + oavr_Parser_match($this, 210); + oavr_Recognizer_setState($this, 3645); + oncipv_Cypher5Parser_mapOrParameter($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - $this.$indexToRemove = $this.$index4; - var$2 = (ju_GenericEnumSet_getConstants($this.$this$01.$cls)).data; - var$3 = $this.$index4; - $this.$index4 = var$3 + 1 | 0; - var$1 = var$2[var$3]; - $this.$index4 = ju_GenericEnumSet$1_find($this); - return var$1; -}; -function onciu_ZippableUtil$Zippable$zipLeft$lambda$_0_0() { - jl_Object.call(this); - this.$_0552 = null; -} -let oavr_TokenSource = $rt_classWithoutFields(0); -function oavr_Lexer() { - let a = this; oavr_Recognizer.call(a); - a.$_input0 = null; - a.$_tokenFactorySourcePair = null; - a.$_factory = null; - a.$_token = null; - a.$_tokenStartCharIndex = 0; - a.$_tokenStartLine = 0; - a.$_tokenStartCharPositionInLine = 0; - a.$_hitEOF = 0; - a.$_channel = 0; - a.$_type = 0; - a.$_modeStack = null; - a.$_mode = 0; - a.$_text = null; -} -let oavr_Lexer__init_ = ($this, $input) => { - oavr_Recognizer__init_($this); - $this.$_factory = oavr_CommonTokenFactory_DEFAULT; - $this.$_tokenStartCharIndex = (-1); - $this.$_modeStack = oavrm_IntegerStack__init_(); - $this.$_mode = 0; - $this.$_input0 = $input; - $this.$_tokenFactorySourcePair = oavrm_Pair__init_($this, $input); + return $_localctx; }, -oavr_Lexer_nextToken = $this => { - let $e, $ttype, $$je; - if ($this.$_input0 === null) { - $e = new jl_IllegalStateException; - jl_Throwable__init_0($e, $rt_s(6122)); - $rt_throw($e); +oncipv_Cypher5Parser_showAliases = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$ShowAliasesContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 626, 313); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3647); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 15 && $_la != 16) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + e: { + oavr_Recognizer_setState($this, 3649); + $this.$_errHandler.$sync($this); + switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 466, $this.$_ctx)) { + case 1: + break; + default: + break e; + } + oavr_Recognizer_setState($this, 3648); + oncipv_Cypher5Parser_aliasName($this); + } + oavr_Recognizer_setState($this, 3651); + oavr_Parser_match($this, 112); + oavr_Recognizer_setState($this, 3652); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 65 && $_la != 66) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + oavr_Recognizer_setState($this, 3654); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 301 && $_la != 306)) { + oavr_Recognizer_setState($this, 3653); + oncipv_Cypher5Parser_showCommandYield($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); } + return $_localctx; +}, +oncipv_Cypher5Parser_symbolicNameOrStringParameter = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 628, 314); a: { b: { c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3658); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3656); + oncipv_Cypher5Parser_symbolicNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + break; + case 80: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3657); + oncipv_Cypher5Parser_parameter($this, $rt_s(714)); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } try { - while (!$this.$_hitEOF) { - $this.$_token = null; - $this.$_channel = 0; - $this.$_tokenStartCharIndex = oavr_CodePointCharStream_index($this.$_input0); - $this.$_tokenStartCharPositionInLine = oavra_LexerATNSimulator_getCharPositionInLine(oavr_Recognizer_getInterpreter($this)); - $this.$_tokenStartLine = oavra_LexerATNSimulator_getLine(oavr_Recognizer_getInterpreter($this)); - $this.$_text = null; - while (true) { - $this.$_type = 0; - d: { - e: { - try { - $ttype = oavra_LexerATNSimulator_match(oavr_Recognizer_getInterpreter($this), $this.$_input0, $this.$_mode); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_LexerNoViableAltException) { - $e = $$je; - break e; - } else { - throw $$e; - } - } - break d; - } - $this.$notifyListeners($e); - oavr_Lexer_recover($this, $e); - $ttype = (-3); + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_commandNameExpression = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$CommandNameExpressionContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 630, 315); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Recognizer_setState($this, 3662); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3660); + oncipv_Cypher5Parser_symbolicNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + break; + case 80: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3661); + oncipv_Cypher5Parser_parameter($this, $rt_s(714)); + break e; + default: } - if ($this.$_input0.$LA(1) == (-1)) - $this.$_hitEOF = 1; - if (!$this.$_type) - $this.$_type = $ttype; - $ttype = $this.$_type; - if ($ttype == (-3)) - break; - if ($ttype == (-2)) - continue; - else - break c; + $rt_throw(oavr_NoViableAltException__init_($this)); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } } - oavr_Lexer_emitEOF($this); - $e = $this.$_token; + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; } catch ($$e) { $$je = $rt_wrapException($$e); - $e = $$je; - break b; + $_localctx = $$je; } - return $e; } - f: { + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_symbolicNameOrStringParameterList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 632, 316); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3664); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 3669); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 3665); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 3666); + oncipv_Cypher5Parser_commandNameExpression($this); + oavr_Recognizer_setState($this, 3671); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } try { - if ($this.$_token !== null) - break f; - oavr_Lexer_emit($this); - break f; + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; } catch ($$e) { $$je = $rt_wrapException($$e); - $e = $$je; - break b; + $_localctx = $$je; } } - try { - $e = $this.$_token; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $e = $$je; - - } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } - $rt_throw($e); - } - return $e; -}, -oavr_Lexer_skip = $this => { - $this.$_type = (-3); -}, -oavr_Lexer_more = $this => { - $this.$_type = (-2); -}, -oavr_Lexer_mode = ($this, $m) => { - $this.$_mode = $m; -}, -oavr_Lexer_pushMode = ($this, $m) => { - oavrm_IntegerStack_push($this.$_modeStack, $this.$_mode); - $this.$_mode = $m; -}, -oavr_Lexer_popMode = $this => { - let var$1, var$2, var$3, var$4; - if (oavrm_IntegerList_isEmpty($this.$_modeStack)) { - var$1 = new ju_EmptyStackException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); - } - var$1 = $this.$_modeStack; - var$2 = var$1.$_size - 1 | 0; - var$3 = oavrm_IntegerList_get(var$1, var$2); - var$4 = var$1.$_data; - jl_System_fastArraycopy(var$4, var$2 + 1 | 0, var$4, var$2, (var$1.$_size - var$2 | 0) - 1 | 0); - var$4 = var$1.$_data.data; - var$2 = var$1.$_size - 1 | 0; - var$4[var$2] = 0; - var$1.$_size = var$2; - $this.$_mode = var$3; - return var$3; -}, -oavr_Lexer_getTokenFactory = $this => { - return $this.$_factory; -}, -oavr_Lexer_getInputStream0 = $this => { - return $this.$_input0; -}, -oavr_Lexer_emit0 = ($this, $token) => { - $this.$_token = $token; -}, -oavr_Lexer_emit = $this => { - let $t; - $t = $this.$_factory.$create1($this.$_tokenFactorySourcePair, $this.$_type, $this.$_text, $this.$_channel, $this.$_tokenStartCharIndex, oavr_Lexer_getCharIndex($this) - 1 | 0, $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine); - $this.$_token = $t; - return $t; -}, -oavr_Lexer_emitEOF = $this => { - let $cpos, $line, var$3, var$4, $eof, var$6; - $cpos = oavr_Lexer_getCharPositionInLine($this); - $line = oavr_Lexer_getLine($this); - var$3 = $this.$_factory; - var$4 = $this.$_tokenFactorySourcePair; - $eof = null; - var$6 = $this.$_input0.$position6; - $eof = var$3.$create1(var$4, (-1), $eof, 0, var$6, var$6 - 1 | 0, $line, $cpos); - $this.$_token = $eof; - return $eof; -}, -oavr_Lexer_getLine = $this => { - return $this.$_interp.$line0; -}, -oavr_Lexer_getCharPositionInLine = $this => { - return $this.$_interp.$charPositionInLine; -}, -oavr_Lexer_getCharIndex = $this => { - return $this.$_input0.$position6; -}, -oavr_Lexer_setType = ($this, $ttype) => { - $this.$_type = $ttype; -}, -oavr_Lexer_setChannel = ($this, $channel) => { - $this.$_channel = $channel; -}, -oavr_Lexer_recover = ($this, $e) => { - if ($this.$_input0.$LA(1) != (-1)) - oavra_LexerATNSimulator_consume($this.$_interp, $this.$_input0); -}, -oavr_Lexer_getErrorDisplay = ($this, $s) => { - let $buf, var$3, var$4, var$5; - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - var$3 = (jl_String_toCharArray($s)).data; - var$4 = var$3.length; - var$5 = 0; - while (var$5 < var$4) { - jl_AbstractStringBuilder_append($buf, oavr_Lexer_getErrorDisplay0($this, var$3[var$5])); - var$5 = var$5 + 1 | 0; + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return jl_AbstractStringBuilder_toString($buf); + return $_localctx; }, -oavr_Lexer_getErrorDisplay0 = ($this, $c) => { - let $s; +oncipv_Cypher5Parser_symbolicAliasNameList = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SymbolicAliasNameListContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 634, 317); a: { - $s = jl_String_valueOf1($c & 65535); - switch ($c) { - case -1: - $s = $rt_s(4015); - break a; - case 9: - $s = $rt_s(4416); - break a; - case 10: - $s = $rt_s(4417); - break a; - case 13: - $s = $rt_s(4419); - break a; - default: - } - } - return $s; -}, -oavr_Lexer_getInputStream = $this => { - return $this.$_input0; -}, -oncipv_Cypher25Lexer = $rt_classWithoutFields(oavr_Lexer), -oncipv_Cypher25Lexer__decisionToDFA = null, -oncipv_Cypher25Lexer__sharedContextCache = null, -oncipv_Cypher25Lexer_channelNames = null, -oncipv_Cypher25Lexer_modeNames = null, -oncipv_Cypher25Lexer_ruleNames = null, -oncipv_Cypher25Lexer__LITERAL_NAMES = null, -oncipv_Cypher25Lexer__SYMBOLIC_NAMES = null, -oncipv_Cypher25Lexer_VOCABULARY = null, -oncipv_Cypher25Lexer_tokenNames = null, -oncipv_Cypher25Lexer__serializedATN = null, -oncipv_Cypher25Lexer__ATN = null, -oncipv_Cypher25Lexer_$callClinit = () => { - oncipv_Cypher25Lexer_$callClinit = $rt_eraseClinit(oncipv_Cypher25Lexer); - oncipv_Cypher25Lexer__clinit_(); -}, -oncipv_Cypher25Lexer_makeRuleNames = () => { - oncipv_Cypher25Lexer_$callClinit(); - return $rt_wrapArray(jl_String, [$rt_s(6123), $rt_s(6124), $rt_s(6125), $rt_s(6126), $rt_s(6127), $rt_s(6128), $rt_s(6129), $rt_s(6130), $rt_s(6131), $rt_s(6132), $rt_s(6133), $rt_s(6134), $rt_s(6135), $rt_s(4550), $rt_s(513), $rt_s(6136), $rt_s(6137), $rt_s(6138), $rt_s(6139), $rt_s(6140), $rt_s(563), $rt_s(6141), $rt_s(5610), $rt_s(708), $rt_s(6142), $rt_s(6143), $rt_s(6144), $rt_s(6145), $rt_s(6146), $rt_s(6147), $rt_s(6148), $rt_s(6149), $rt_s(6150), $rt_s(6151), $rt_s(710), $rt_s(6152), $rt_s(4633), - $rt_s(6153), $rt_s(6154), $rt_s(6155), $rt_s(4659), $rt_s(6156), $rt_s(456), $rt_s(6157), $rt_s(6158), $rt_s(6159), $rt_s(6160), $rt_s(6161), $rt_s(6162), $rt_s(6163), $rt_s(6164), $rt_s(6165), $rt_s(3474), $rt_s(507), $rt_s(6166), $rt_s(6167), $rt_s(6168), $rt_s(6169), $rt_s(6170), $rt_s(5070), $rt_s(6171), $rt_s(6172), $rt_s(6173), $rt_s(4404), $rt_s(6174), $rt_s(743), $rt_s(6175), $rt_s(31), $rt_s(6176), $rt_s(588), $rt_s(6177), $rt_s(5083), $rt_s(4893), $rt_s(6178), $rt_s(6179), $rt_s(6180), $rt_s(6181), - $rt_s(6182), $rt_s(6183), $rt_s(6184), $rt_s(6185), $rt_s(6186), $rt_s(6187), $rt_s(6188), $rt_s(535), $rt_s(6189), $rt_s(6190), $rt_s(6191), $rt_s(752), $rt_s(6192), $rt_s(6193), $rt_s(6194), $rt_s(6195), $rt_s(6196), $rt_s(6197), $rt_s(6198), $rt_s(457), $rt_s(6199), $rt_s(6200), $rt_s(6201), $rt_s(6202), $rt_s(4499), $rt_s(6203), $rt_s(4482), $rt_s(6204), $rt_s(6205), $rt_s(6206), $rt_s(6207), $rt_s(610), $rt_s(719), $rt_s(6208), $rt_s(5124), $rt_s(526), $rt_s(3496), $rt_s(6209), $rt_s(6210), $rt_s(6211), - $rt_s(5310), $rt_s(761), $rt_s(6212), $rt_s(6213), $rt_s(6214), $rt_s(6215), $rt_s(6216), $rt_s(589), $rt_s(6217), $rt_s(6218), $rt_s(5211), $rt_s(6219), $rt_s(478), $rt_s(896), $rt_s(6220), $rt_s(6221), $rt_s(6222), $rt_s(5086), $rt_s(6223), $rt_s(722), $rt_s(6224), $rt_s(6225), $rt_s(4494), $rt_s(6226), $rt_s(6227), $rt_s(6228), $rt_s(6229), $rt_s(6230), $rt_s(6231), $rt_s(6232), $rt_s(4634), $rt_s(6233), $rt_s(6234), $rt_s(5356), $rt_s(6235), $rt_s(3497), $rt_s(6236), $rt_s(6237), $rt_s(6238), $rt_s(724), - $rt_s(5092), $rt_s(4382), $rt_s(6239), $rt_s(6240), $rt_s(6241), $rt_s(6242), $rt_s(6243), $rt_s(6244), $rt_s(6245), $rt_s(4629), $rt_s(4630), $rt_s(4631), $rt_s(4632), $rt_s(6246), $rt_s(727), $rt_s(6247), $rt_s(6248), $rt_s(3581), $rt_s(6249), $rt_s(6250), $rt_s(6251), $rt_s(4523), $rt_s(6252), $rt_s(4524), $rt_s(6253), $rt_s(6254), $rt_s(6255), $rt_s(6256), $rt_s(6257), $rt_s(6258), $rt_s(6259), $rt_s(6260), $rt_s(6261), $rt_s(558), $rt_s(6262), $rt_s(758), $rt_s(6263), $rt_s(6264), $rt_s(6265), $rt_s(6266), - $rt_s(734), $rt_s(6267), $rt_s(6268), $rt_s(6269), $rt_s(6270), $rt_s(6271), $rt_s(6272), $rt_s(6273), $rt_s(6274), $rt_s(532), $rt_s(6275), $rt_s(6276), $rt_s(6277), $rt_s(6278), $rt_s(1067), $rt_s(6279), $rt_s(6280), $rt_s(32), $rt_s(6281), $rt_s(6282), $rt_s(6283), $rt_s(6284), $rt_s(4396), $rt_s(730), $rt_s(6285), $rt_s(5088), $rt_s(6286), $rt_s(770), $rt_s(771), $rt_s(6287), $rt_s(6288), $rt_s(5297), $rt_s(641), $rt_s(5322), $rt_s(6289), $rt_s(6290), $rt_s(6291), $rt_s(6292), $rt_s(6293), $rt_s(6294), - $rt_s(6295), $rt_s(6296), $rt_s(6297), $rt_s(6298), $rt_s(6299), $rt_s(6300), $rt_s(6301), $rt_s(6302), $rt_s(6303), $rt_s(5090), $rt_s(6304), $rt_s(6305), $rt_s(6306), $rt_s(6307), $rt_s(6308), $rt_s(6309), $rt_s(6310), $rt_s(6311), $rt_s(5157), $rt_s(6312), $rt_s(6313), $rt_s(5159), $rt_s(714), $rt_s(6314), $rt_s(514), $rt_s(6315), $rt_s(6316), $rt_s(1066), $rt_s(6317), $rt_s(6318), $rt_s(6319), $rt_s(6320), $rt_s(6321), $rt_s(525), $rt_s(3517), $rt_s(4635), $rt_s(6322), $rt_s(6323), $rt_s(5288), $rt_s(6324), - $rt_s(6325), $rt_s(6326), $rt_s(6327), $rt_s(6328), $rt_s(608), $rt_s(4489), $rt_s(5563), $rt_s(5121), $rt_s(6329), $rt_s(6330), $rt_s(559), $rt_s(6331), $rt_s(6332), $rt_s(6333), $rt_s(6334), $rt_s(3498), $rt_s(6335), $rt_s(6336), $rt_s(6337), $rt_s(6338), $rt_s(642), $rt_s(6339), $rt_s(33), $rt_s(6340), $rt_s(4680), $rt_s(6341), $rt_s(6342), $rt_s(6343), $rt_s(6344), $rt_s(6345), $rt_s(6346), $rt_s(6347), $rt_s(6348), $rt_s(6349), $rt_s(6350), $rt_s(6351), $rt_s(6352), $rt_s(223), $rt_s(5700), $rt_s(6353), - $rt_s(6354), $rt_s(6355), $rt_s(6356), $rt_s(6357), $rt_s(6358), $rt_s(6359), $rt_s(6360), $rt_s(357), $rt_s(6361), $rt_s(6362), $rt_s(6363), $rt_s(6364), $rt_s(221), $rt_s(6365), $rt_s(6366), $rt_s(6367), $rt_s(219), $rt_s(6368), $rt_s(6369), $rt_s(6370), $rt_s(6371)]); -}, -oncipv_Cypher25Lexer_makeLiteralNames = () => { - let var$1, var$2; - oncipv_Cypher25Lexer_$callClinit(); - var$1 = $rt_createArray(jl_String, 266); - var$2 = var$1.data; - var$2[0] = null; - var$2[1] = null; - var$2[2] = null; - var$2[3] = null; - var$2[4] = null; - var$2[5] = null; - var$2[6] = null; - var$2[7] = null; - var$2[8] = null; - var$2[9] = null; - var$2[10] = null; - var$2[11] = null; - var$2[12] = null; - var$2[13] = null; - var$2[14] = null; - var$2[15] = null; - var$2[16] = null; - var$2[17] = null; - var$2[18] = null; - var$2[19] = null; - var$2[20] = null; - var$2[21] = null; - var$2[22] = null; - var$2[23] = null; - var$2[24] = null; - var$2[25] = null; - var$2[26] = null; - var$2[27] = null; - var$2[28] = null; - var$2[29] = $rt_s(6372); - var$2[30] = null; - var$2[31] = null; - var$2[32] = null; - var$2[33] = null; - var$2[34] = null; - var$2[35] = null; - var$2[36] = null; - var$2[37] = null; - var$2[38] = null; - var$2[39] = null; - var$2[40] = null; - var$2[41] = null; - var$2[42] = null; - var$2[43] = null; - var$2[44] = $rt_s(6373); - var$2[45] = $rt_s(6374); - var$2[46] = $rt_s(6375); - var$2[47] = null; - var$2[48] = null; - var$2[49] = null; - var$2[50] = null; - var$2[51] = null; - var$2[52] = null; - var$2[53] = null; - var$2[54] = null; - var$2[55] = null; - var$2[56] = null; - var$2[57] = null; - var$2[58] = null; - var$2[59] = null; - var$2[60] = null; - var$2[61] = null; - var$2[62] = null; - var$2[63] = null; - var$2[64] = null; - var$2[65] = null; - var$2[66] = null; - var$2[67] = null; - var$2[68] = null; - var$2[69] = null; - var$2[70] = null; - var$2[71] = null; - var$2[72] = null; - var$2[73] = null; - var$2[74] = null; - var$2[75] = null; - var$2[76] = $rt_s(6376); - var$2[77] = null; - var$2[78] = $rt_s(6377); - var$2[79] = $rt_s(6378); - var$2[80] = $rt_s(6379); - var$2[81] = $rt_s(6380); - var$2[82] = null; - var$2[83] = null; - var$2[84] = null; - var$2[85] = null; - var$2[86] = null; - var$2[87] = null; - var$2[88] = null; - var$2[89] = null; - var$2[90] = null; - var$2[91] = null; - var$2[92] = null; - var$2[93] = null; - var$2[94] = null; - var$2[95] = null; - var$2[96] = $rt_s(6381); - var$2[97] = null; - var$2[98] = null; - var$2[99] = null; - var$2[100] = null; - var$2[101] = null; - var$2[102] = null; - var$2[103] = null; - var$2[104] = null; - var$2[105] = null; - var$2[106] = null; - var$2[107] = null; - var$2[108] = null; - var$2[109] = null; - var$2[110] = null; - var$2[111] = null; - var$2[112] = null; - var$2[113] = null; - var$2[114] = $rt_s(6382); - var$2[115] = null; - var$2[116] = null; - var$2[117] = null; - var$2[118] = null; - var$2[119] = null; - var$2[120] = $rt_s(6383); - var$2[121] = null; - var$2[122] = null; - var$2[123] = null; - var$2[124] = null; - var$2[125] = null; - var$2[126] = null; - var$2[127] = null; - var$2[128] = null; - var$2[129] = null; - var$2[130] = null; - var$2[131] = null; - var$2[132] = null; - var$2[133] = null; - var$2[134] = null; - var$2[135] = null; - var$2[136] = null; - var$2[137] = null; - var$2[138] = null; - var$2[139] = null; - var$2[140] = $rt_s(6384); - var$2[141] = $rt_s(6385); - var$2[142] = $rt_s(6386); - var$2[143] = $rt_s(6387); - var$2[144] = $rt_s(6388); - var$2[145] = null; - var$2[146] = null; - var$2[147] = null; - var$2[148] = null; - var$2[149] = null; - var$2[150] = null; - var$2[151] = $rt_s(6389); - var$2[152] = $rt_s(6390); - var$2[153] = null; - var$2[154] = null; - var$2[155] = null; - var$2[156] = null; - var$2[157] = $rt_s(6391); - var$2[158] = $rt_s(6392); - var$2[159] = $rt_s(6393); - var$2[160] = $rt_s(6394); - var$2[161] = null; - var$2[162] = null; - var$2[163] = null; - var$2[164] = null; - var$2[165] = null; - var$2[166] = null; - var$2[167] = null; - var$2[168] = null; - var$2[169] = null; - var$2[170] = null; - var$2[171] = null; - var$2[172] = null; - var$2[173] = null; - var$2[174] = null; - var$2[175] = null; - var$2[176] = null; - var$2[177] = null; - var$2[178] = null; - var$2[179] = null; - var$2[180] = null; - var$2[181] = null; - var$2[182] = null; - var$2[183] = null; - var$2[184] = null; - var$2[185] = null; - var$2[186] = null; - var$2[187] = null; - var$2[188] = null; - var$2[189] = null; - var$2[190] = null; - var$2[191] = null; - var$2[192] = null; - var$2[193] = $rt_s(6395); - var$2[194] = $rt_s(6396); - var$2[195] = null; - var$2[196] = null; - var$2[197] = $rt_s(6397); - var$2[198] = null; - var$2[199] = null; - var$2[200] = null; - var$2[201] = null; - var$2[202] = null; - var$2[203] = null; - var$2[204] = null; - var$2[205] = null; - var$2[206] = null; - var$2[207] = null; - var$2[208] = $rt_s(6398); - var$2[209] = null; - var$2[210] = $rt_s(6399); - var$2[211] = $rt_s(6400); - var$2[212] = null; - var$2[213] = null; - var$2[214] = null; - var$2[215] = null; - var$2[216] = $rt_s(6401); - var$2[217] = null; - var$2[218] = null; - var$2[219] = null; - var$2[220] = null; - var$2[221] = null; - var$2[222] = null; - var$2[223] = null; - var$2[224] = null; - var$2[225] = null; - var$2[226] = null; - var$2[227] = null; - var$2[228] = null; - var$2[229] = null; - var$2[230] = null; - var$2[231] = null; - var$2[232] = null; - var$2[233] = $rt_s(6402); - var$2[234] = null; - var$2[235] = null; - var$2[236] = null; - var$2[237] = null; - var$2[238] = null; - var$2[239] = null; - var$2[240] = null; - var$2[241] = $rt_s(6403); - var$2[242] = null; - var$2[243] = null; - var$2[244] = null; - var$2[245] = null; - var$2[246] = null; - var$2[247] = null; - var$2[248] = null; - var$2[249] = null; - var$2[250] = null; - var$2[251] = null; - var$2[252] = null; - var$2[253] = null; - var$2[254] = null; - var$2[255] = null; - var$2[256] = null; - var$2[257] = null; - var$2[258] = null; - var$2[259] = null; - var$2[260] = null; - var$2[261] = null; - var$2[262] = null; - var$2[263] = null; - var$2[264] = null; - var$2[265] = $rt_s(6404); - return var$1; -}, -oncipv_Cypher25Lexer_makeSymbolicNames = () => { - let var$1, var$2; - oncipv_Cypher25Lexer_$callClinit(); - var$1 = $rt_createArray(jl_String, 308); - var$2 = var$1.data; - var$2[0] = null; - var$2[1] = $rt_s(6123); - var$2[2] = $rt_s(6124); - var$2[3] = $rt_s(6125); - var$2[4] = $rt_s(6126); - var$2[5] = $rt_s(6127); - var$2[6] = $rt_s(6130); - var$2[7] = $rt_s(6131); - var$2[8] = $rt_s(6132); - var$2[9] = $rt_s(6133); - var$2[10] = $rt_s(6135); - var$2[11] = $rt_s(4550); - var$2[12] = $rt_s(513); - var$2[13] = $rt_s(6136); - var$2[14] = $rt_s(6137); - var$2[15] = $rt_s(6138); - var$2[16] = $rt_s(6139); - var$2[17] = $rt_s(6140); - var$2[18] = $rt_s(563); - var$2[19] = $rt_s(6141); - var$2[20] = $rt_s(5610); - var$2[21] = $rt_s(708); - var$2[22] = $rt_s(6142); - var$2[23] = $rt_s(6143); - var$2[24] = $rt_s(6144); - var$2[25] = $rt_s(6145); - var$2[26] = $rt_s(6146); - var$2[27] = $rt_s(6147); - var$2[28] = $rt_s(6148); - var$2[29] = $rt_s(6149); - var$2[30] = $rt_s(6150); - var$2[31] = $rt_s(6151); - var$2[32] = $rt_s(710); - var$2[33] = $rt_s(6152); - var$2[34] = $rt_s(4633); - var$2[35] = $rt_s(6153); - var$2[36] = $rt_s(6154); - var$2[37] = $rt_s(6155); - var$2[38] = $rt_s(4659); - var$2[39] = $rt_s(6156); - var$2[40] = $rt_s(456); - var$2[41] = $rt_s(6157); - var$2[42] = $rt_s(6158); - var$2[43] = $rt_s(6159); - var$2[44] = $rt_s(6160); - var$2[45] = $rt_s(6161); - var$2[46] = $rt_s(6162); - var$2[47] = $rt_s(6163); - var$2[48] = $rt_s(6164); - var$2[49] = $rt_s(6165); - var$2[50] = $rt_s(3474); - var$2[51] = $rt_s(507); - var$2[52] = $rt_s(6166); - var$2[53] = $rt_s(6167); - var$2[54] = $rt_s(6168); - var$2[55] = $rt_s(6169); - var$2[56] = $rt_s(6170); - var$2[57] = $rt_s(5070); - var$2[58] = $rt_s(6171); - var$2[59] = $rt_s(6172); - var$2[60] = $rt_s(6173); - var$2[61] = $rt_s(4404); - var$2[62] = $rt_s(6174); - var$2[63] = $rt_s(743); - var$2[64] = $rt_s(6175); - var$2[65] = $rt_s(31); - var$2[66] = $rt_s(6176); - var$2[67] = $rt_s(588); - var$2[68] = $rt_s(6177); - var$2[69] = $rt_s(5083); - var$2[70] = $rt_s(4893); - var$2[71] = $rt_s(6178); - var$2[72] = $rt_s(6179); - var$2[73] = $rt_s(6180); - var$2[74] = $rt_s(6181); - var$2[75] = $rt_s(6182); - var$2[76] = $rt_s(6183); - var$2[77] = $rt_s(6184); - var$2[78] = $rt_s(6185); - var$2[79] = $rt_s(6186); - var$2[80] = $rt_s(6187); - var$2[81] = $rt_s(6188); - var$2[82] = $rt_s(535); - var$2[83] = $rt_s(6189); - var$2[84] = $rt_s(6190); - var$2[85] = $rt_s(6191); - var$2[86] = $rt_s(752); - var$2[87] = $rt_s(6192); - var$2[88] = $rt_s(6193); - var$2[89] = $rt_s(6194); - var$2[90] = $rt_s(6195); - var$2[91] = $rt_s(6196); - var$2[92] = $rt_s(6197); - var$2[93] = $rt_s(6198); - var$2[94] = $rt_s(457); - var$2[95] = $rt_s(6199); - var$2[96] = $rt_s(6200); - var$2[97] = $rt_s(6201); - var$2[98] = $rt_s(6202); - var$2[99] = $rt_s(4499); - var$2[100] = $rt_s(6203); - var$2[101] = $rt_s(4482); - var$2[102] = $rt_s(6204); - var$2[103] = $rt_s(6205); - var$2[104] = $rt_s(6206); - var$2[105] = $rt_s(6207); - var$2[106] = $rt_s(610); - var$2[107] = $rt_s(719); - var$2[108] = $rt_s(6208); - var$2[109] = $rt_s(5124); - var$2[110] = $rt_s(526); - var$2[111] = $rt_s(3496); - var$2[112] = $rt_s(6209); - var$2[113] = $rt_s(6210); - var$2[114] = $rt_s(6211); - var$2[115] = $rt_s(5310); - var$2[116] = $rt_s(761); - var$2[117] = $rt_s(6212); - var$2[118] = $rt_s(6213); - var$2[119] = $rt_s(6214); - var$2[120] = $rt_s(6215); - var$2[121] = $rt_s(6216); - var$2[122] = $rt_s(589); - var$2[123] = $rt_s(6217); - var$2[124] = $rt_s(6218); - var$2[125] = $rt_s(5211); - var$2[126] = $rt_s(6219); - var$2[127] = $rt_s(478); - var$2[128] = $rt_s(896); - var$2[129] = $rt_s(6220); - var$2[130] = $rt_s(6221); - var$2[131] = $rt_s(6222); - var$2[132] = $rt_s(5086); - var$2[133] = $rt_s(6223); - var$2[134] = $rt_s(722); - var$2[135] = $rt_s(6224); - var$2[136] = $rt_s(6225); - var$2[137] = $rt_s(4494); - var$2[138] = $rt_s(6226); - var$2[139] = $rt_s(6227); - var$2[140] = $rt_s(6228); - var$2[141] = $rt_s(6229); - var$2[142] = $rt_s(6230); - var$2[143] = $rt_s(6231); - var$2[144] = $rt_s(6232); - var$2[145] = $rt_s(4634); - var$2[146] = $rt_s(6233); - var$2[147] = $rt_s(6234); - var$2[148] = $rt_s(5356); - var$2[149] = $rt_s(6235); - var$2[150] = $rt_s(3497); - var$2[151] = $rt_s(6236); - var$2[152] = $rt_s(6237); - var$2[153] = $rt_s(6238); - var$2[154] = $rt_s(724); - var$2[155] = $rt_s(5092); - var$2[156] = $rt_s(4382); - var$2[157] = $rt_s(6239); - var$2[158] = $rt_s(6240); - var$2[159] = $rt_s(6241); - var$2[160] = $rt_s(6242); - var$2[161] = $rt_s(6243); - var$2[162] = $rt_s(6244); - var$2[163] = $rt_s(6245); - var$2[164] = $rt_s(4629); - var$2[165] = $rt_s(4630); - var$2[166] = $rt_s(4631); - var$2[167] = $rt_s(4632); - var$2[168] = $rt_s(6246); - var$2[169] = $rt_s(727); - var$2[170] = $rt_s(6247); - var$2[171] = $rt_s(6248); - var$2[172] = $rt_s(3581); - var$2[173] = $rt_s(6249); - var$2[174] = $rt_s(6250); - var$2[175] = $rt_s(6251); - var$2[176] = $rt_s(4523); - var$2[177] = $rt_s(6252); - var$2[178] = $rt_s(4524); - var$2[179] = $rt_s(6253); - var$2[180] = $rt_s(6254); - var$2[181] = $rt_s(6255); - var$2[182] = $rt_s(6256); - var$2[183] = $rt_s(6257); - var$2[184] = $rt_s(6258); - var$2[185] = $rt_s(6259); - var$2[186] = $rt_s(6260); - var$2[187] = $rt_s(6261); - var$2[188] = $rt_s(558); - var$2[189] = $rt_s(6262); - var$2[190] = $rt_s(758); - var$2[191] = $rt_s(6263); - var$2[192] = $rt_s(6264); - var$2[193] = $rt_s(6265); - var$2[194] = $rt_s(6266); - var$2[195] = $rt_s(734); - var$2[196] = $rt_s(6267); - var$2[197] = $rt_s(6268); - var$2[198] = $rt_s(6269); - var$2[199] = $rt_s(6270); - var$2[200] = $rt_s(6271); - var$2[201] = $rt_s(6272); - var$2[202] = $rt_s(6273); - var$2[203] = $rt_s(6274); - var$2[204] = $rt_s(532); - var$2[205] = $rt_s(6275); - var$2[206] = $rt_s(6276); - var$2[207] = $rt_s(6277); - var$2[208] = $rt_s(6278); - var$2[209] = $rt_s(1067); - var$2[210] = $rt_s(6279); - var$2[211] = $rt_s(6280); - var$2[212] = $rt_s(32); - var$2[213] = $rt_s(6281); - var$2[214] = $rt_s(6282); - var$2[215] = $rt_s(6283); - var$2[216] = $rt_s(6284); - var$2[217] = $rt_s(4396); - var$2[218] = $rt_s(730); - var$2[219] = $rt_s(6285); - var$2[220] = $rt_s(5088); - var$2[221] = $rt_s(6286); - var$2[222] = $rt_s(770); - var$2[223] = $rt_s(771); - var$2[224] = $rt_s(6287); - var$2[225] = $rt_s(6288); - var$2[226] = $rt_s(5297); - var$2[227] = $rt_s(641); - var$2[228] = $rt_s(5322); - var$2[229] = $rt_s(6289); - var$2[230] = $rt_s(6290); - var$2[231] = $rt_s(6291); - var$2[232] = $rt_s(6292); - var$2[233] = $rt_s(6293); - var$2[234] = $rt_s(6294); - var$2[235] = $rt_s(6295); - var$2[236] = $rt_s(6296); - var$2[237] = $rt_s(6297); - var$2[238] = $rt_s(6298); - var$2[239] = $rt_s(6299); - var$2[240] = $rt_s(6300); - var$2[241] = $rt_s(6301); - var$2[242] = $rt_s(6302); - var$2[243] = $rt_s(6303); - var$2[244] = $rt_s(5090); - var$2[245] = $rt_s(6304); - var$2[246] = $rt_s(6305); - var$2[247] = $rt_s(6306); - var$2[248] = $rt_s(6307); - var$2[249] = $rt_s(6308); - var$2[250] = $rt_s(6309); - var$2[251] = $rt_s(6310); - var$2[252] = $rt_s(6311); - var$2[253] = $rt_s(5157); - var$2[254] = $rt_s(6312); - var$2[255] = $rt_s(6313); - var$2[256] = $rt_s(5159); - var$2[257] = $rt_s(714); - var$2[258] = $rt_s(6314); - var$2[259] = $rt_s(514); - var$2[260] = $rt_s(6315); - var$2[261] = $rt_s(6316); - var$2[262] = $rt_s(1066); - var$2[263] = $rt_s(6317); - var$2[264] = $rt_s(6318); - var$2[265] = $rt_s(6319); - var$2[266] = $rt_s(6320); - var$2[267] = $rt_s(6321); - var$2[268] = $rt_s(525); - var$2[269] = $rt_s(3517); - var$2[270] = $rt_s(4635); - var$2[271] = $rt_s(6322); - var$2[272] = $rt_s(6323); - var$2[273] = $rt_s(5288); - var$2[274] = $rt_s(6324); - var$2[275] = $rt_s(6325); - var$2[276] = $rt_s(6326); - var$2[277] = $rt_s(6327); - var$2[278] = $rt_s(6328); - var$2[279] = $rt_s(608); - var$2[280] = $rt_s(4489); - var$2[281] = $rt_s(5563); - var$2[282] = $rt_s(5121); - var$2[283] = $rt_s(6329); - var$2[284] = $rt_s(6330); - var$2[285] = $rt_s(559); - var$2[286] = $rt_s(6331); - var$2[287] = $rt_s(6332); - var$2[288] = $rt_s(6333); - var$2[289] = $rt_s(6334); - var$2[290] = $rt_s(3498); - var$2[291] = $rt_s(6335); - var$2[292] = $rt_s(6336); - var$2[293] = $rt_s(6337); - var$2[294] = $rt_s(6338); - var$2[295] = $rt_s(642); - var$2[296] = $rt_s(6339); - var$2[297] = $rt_s(33); - var$2[298] = $rt_s(6340); - var$2[299] = $rt_s(4680); - var$2[300] = $rt_s(6341); - var$2[301] = $rt_s(6342); - var$2[302] = $rt_s(6343); - var$2[303] = $rt_s(6344); - var$2[304] = $rt_s(6345); - var$2[305] = $rt_s(6346); - var$2[306] = $rt_s(6347); - var$2[307] = $rt_s(6371); - return var$1; -}, -oncipv_Cypher25Lexer_getATN = $this => { - oncipv_Cypher25Lexer_$callClinit(); - return oncipv_Cypher25Lexer__ATN; -}, -oncipv_Cypher25Lexer__clinit_ = () => { - let var$1, $i, var$3; - oavr_RuntimeMetaData_checkVersion($rt_s(6405), $rt_s(6405)); - oncipv_Cypher25Lexer__sharedContextCache = oavra_PredictionContextCache__init_(); - oncipv_Cypher25Lexer_channelNames = $rt_wrapArray(jl_String, [$rt_s(6406), $rt_s(6407)]); - var$1 = $rt_createArray(jl_String, 1); - var$1.data[0] = $rt_s(6408); - oncipv_Cypher25Lexer_modeNames = var$1; - oncipv_Cypher25Lexer_ruleNames = oncipv_Cypher25Lexer_makeRuleNames(); - oncipv_Cypher25Lexer__LITERAL_NAMES = oncipv_Cypher25Lexer_makeLiteralNames(); - var$1 = oncipv_Cypher25Lexer_makeSymbolicNames(); - oncipv_Cypher25Lexer__SYMBOLIC_NAMES = var$1; - oncipv_Cypher25Lexer_VOCABULARY = oavr_VocabularyImpl__init_(oncipv_Cypher25Lexer__LITERAL_NAMES, var$1); - oncipv_Cypher25Lexer_tokenNames = $rt_createArray(jl_String, oncipv_Cypher25Lexer__SYMBOLIC_NAMES.data.length); - $i = 0; - while (true) { - var$1 = oncipv_Cypher25Lexer_tokenNames.data; - if ($i >= var$1.length) - break; - var$1[$i] = oavr_VocabularyImpl_getLiteralName(oncipv_Cypher25Lexer_VOCABULARY, $i); - var$1 = oncipv_Cypher25Lexer_tokenNames.data; - if (var$1[$i] === null) - var$1[$i] = oavr_VocabularyImpl_getSymbolicName(oncipv_Cypher25Lexer_VOCABULARY, $i); - var$1 = oncipv_Cypher25Lexer_tokenNames.data; - if (var$1[$i] === null) - var$1[$i] = $rt_s(6409); - $i = $i + 1 | 0; - } - oncipv_Cypher25Lexer__serializedATN = oavrm_Utils_join($rt_wrapArray(jl_String, [$rt_s(6410), $rt_s(6411)]), $rt_s(4)); - var$3 = oavra_ATNDeserializer_deserialize(oavra_ATNDeserializer__init_(), jl_String_toCharArray(oncipv_Cypher25Lexer__serializedATN)); - oncipv_Cypher25Lexer__ATN = var$3; - oncipv_Cypher25Lexer__decisionToDFA = $rt_createArray(oavrd_DFA, oavra_ATN_getNumberOfDecisions(var$3)); - $i = 0; - while ($i < oavra_ATN_getNumberOfDecisions(oncipv_Cypher25Lexer__ATN)) { - oncipv_Cypher25Lexer__decisionToDFA.data[$i] = oavrd_DFA__init_(oavra_ATN_getDecisionState(oncipv_Cypher25Lexer__ATN, $i), $i); - $i = $i + 1 | 0; - } -}, -oncipl_CypherQueryAccess = $rt_classWithoutFields(0), -oncipl_CypherQueryAccess_inputText = ($this, $start, $stop) => { - return jl_String_substring($this.$inputQuery(), oncipl_CypherQueryAccess_inputOffset($this, $start.$getStartIndex()), oncipl_CypherQueryAccess_inputOffset($this, $stop.$getStopIndex()) + 1 | 0); -}, -oncipl_CypherQueryAccess_inputOffset = ($this, $parserOffset) => { - let $offsetTable; - $offsetTable = $this.$offsetTable(); - if ($offsetTable !== null) { - $offsetTable = $offsetTable.data; - if ($parserOffset >= $offsetTable[0]) - return $offsetTable[($parserOffset - $offsetTable[0] | 0) * 3 | 0]; - } - return $parserOffset; -}, -oncipl_CypherQueryAccess_inputPosition = ($this, $parserIndex, $parserLine, $parserColumn) => { - let $offsetTable, $i; - $offsetTable = $this.$offsetTable(); - if ($offsetTable !== null) { - $offsetTable = $offsetTable.data; - if ($parserIndex >= $offsetTable[0]) { - $i = ($parserIndex - $offsetTable[0] | 0) * 3 | 0; - return onciu_InputPosition_apply($offsetTable[$i], $offsetTable[$i + 1 | 0], $offsetTable[$i + 2 | 0]); + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3672); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3677); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while ($_la == 49) { + oavr_Recognizer_setState($this, 3673); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 3674); + oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); + oavr_Recognizer_setState($this, 3679); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); } + oncipa_AstBuildingAntlrParser_exitRule$($this); } - return onciu_InputPosition_apply($parserIndex, $parserLine, $parserColumn + 1 | 0); -}; -function oncipvaf_Cypher25AstLexer() { - let a = this; oncipv_Cypher25Lexer.call(a); - a.$inputQuery0 = null; - a.$offsetTable2 = null; -} -let oncipvaf_Cypher25AstLexer_notifyListeners = ($this, $e) => { - let $text, $listener, $dummyToken, var$5; - $text = $this.$_input0; - $text = $text.$getText0(oavrm_Interval_of($this.$_tokenStartCharIndex, $text.$position6)); - $listener = oavr_Lexer_getErrorDisplay($this, $text); - $dummyToken = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($dummyToken); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($dummyToken, $rt_s(6412)), $listener), 39); - var$5 = jl_AbstractStringBuilder_toString($dummyToken); - oavr_ProxyErrorListener_syntaxError(oavr_Recognizer_getErrorListenerDispatch($this), $this, $this.$_factory.$create1($this.$_tokenFactorySourcePair, (-1), $text, $this.$_channel, $this.$_tokenStartCharIndex, $this.$_input0.$position6, $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine), $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine, var$5, $e); -}, -oncipvaf_Cypher25AstLexer_inputQuery = $this => { - return $this.$inputQuery0; -}, -oncipvaf_Cypher25AstLexer_offsetTable = $this => { - return $this.$offsetTable2; -}, -oncip_CypherErrorStrategy$Conf = $rt_classWithoutFields(0), -oncip_CypherErrorStrategy$Conf_preferredRules$ = $$this => { - let var$2, var$3, var$4, var$5, var$6; - s_Predef$_$callClinit(); - var$2 = s_Predef$_Set(s_Predef$_MODULE$); - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncip_CypherErrorStrategy$CypherRuleGroup, 8); - var$5 = var$4.data; - oncip_CypherErrorStrategy$ExpressionRule$_$callClinit(); - var$5[0] = oncip_CypherErrorStrategy$ExpressionRule$_MODULE$; - oncip_CypherErrorStrategy$StringLiteralRule$_$callClinit(); - var$5[1] = oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$; - oncip_CypherErrorStrategy$NumberLiteralRule$_$callClinit(); - var$5[2] = oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$; - oncip_CypherErrorStrategy$ParameterRule$_$callClinit(); - var$5[3] = oncip_CypherErrorStrategy$ParameterRule$_MODULE$; - oncip_CypherErrorStrategy$VariableRule$_$callClinit(); - var$5[4] = oncip_CypherErrorStrategy$VariableRule$_MODULE$; - oncip_CypherErrorStrategy$IdentifierRule$_$callClinit(); - var$5[5] = oncip_CypherErrorStrategy$IdentifierRule$_MODULE$; - oncip_CypherErrorStrategy$DatabaseNameRule$_$callClinit(); - var$5[6] = oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$; - oncip_CypherErrorStrategy$GraphPatternRule$_$callClinit(); - var$5[7] = oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$; - var$3 = var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); - $$this = sc_AbstractMap_view($$this.$ruleGroups()); - var$6 = new oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1; - var$6.$preferredGroups$1 = var$3; - return sc_AbstractIterable_toSet(sc_AbstractIterable_collect($$this, var$6)); -}, -oncipvaf_Cypher25ErrorStrategyConf = $rt_classWithoutFields(), -oncipvaf_Cypher25ErrorStrategyConf_preferredRules = $this => { - return oncip_CypherErrorStrategy$Conf_preferredRules$($this); -}, -oncipvaf_Cypher25ErrorStrategyConf_vocabulary = $this => { - oncipv_Cypher25Parser_$callClinit(); - return oncipv_Cypher25Parser_VOCABULARY; -}, -oncipvaf_Cypher25ErrorStrategyConf_ignoredTokens = $this => { - s_Predef$_$callClinit(); - return ju_Set_of(jl_Integer_valueOf((-2)), jl_Integer_valueOf(241)); -}, -oncipvaf_Cypher25ErrorStrategyConf_customTokenDisplayNames = $this => { - let var$1, var$2, var$3, var$4; - s_Predef$_$callClinit(); - var$1 = s_Predef$_Map(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(s_Tuple2, 20); - var$4 = var$3.data; - var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(1), $rt_s(6413)); - var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(2), $rt_s(6414)); - var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(4), $rt_s(6415)); - var$4[3] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(5), $rt_s(6416)); - var$4[4] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(6), $rt_s(6417)); - var$4[5] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(7), $rt_s(6418)); - var$4[6] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(303), $rt_s(4441)); - var$4[7] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(302), $rt_s(4441)); - var$4[8] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(304), $rt_s(6391)); - var$4[9] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(305), $rt_s(6390)); - var$4[10] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(306), $rt_s(6383)); - var$4[11] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(3), $rt_s(6419)); - var$4[12] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(8), $rt_s(6420)); - var$4[13] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(9), $rt_s(6420)); - var$4[14] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(10), $rt_s(4441)); - var$4[15] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(17), $rt_s(6421)); - var$4[16] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(247), $rt_s(6422)); - var$4[17] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(146), $rt_s(6423)); - var$4[18] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(252), $rt_s(6424)); - var$4[19] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf((-1)), $rt_s(4015)); - return sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncipvaf_Cypher25ErrorStrategyConf_ruleGroups = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6; - s_Predef$_$callClinit(); - var$1 = s_Predef$_Map(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(s_Tuple2, 27); - var$4 = var$3.data; - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(87); - oncip_CypherErrorStrategy$ExpressionRule$_$callClinit(); - var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(105), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(99), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[3] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(98), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[4] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(97), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[5] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(96), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[6] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(95), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[7] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(92), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[8] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(91), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[9] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(90), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[10] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(89), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[11] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(88), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(316); - oncip_CypherErrorStrategy$StringLiteralRule$_$callClinit(); - var$4[12] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(127); - oncip_CypherErrorStrategy$NumberLiteralRule$_$callClinit(); - var$4[13] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(131); - oncip_CypherErrorStrategy$ParameterRule$_$callClinit(); - var$4[14] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$ParameterRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(137); - oncip_CypherErrorStrategy$VariableRule$_$callClinit(); - var$4[15] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$VariableRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(313); - oncip_CypherErrorStrategy$DatabaseNameRule$_$callClinit(); - var$4[16] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(48); - oncip_CypherErrorStrategy$GraphPatternRule$_$callClinit(); - var$4[17] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(321); - oncip_CypherErrorStrategy$IdentifierRule$_$callClinit(); - var$4[18] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$4[19] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(322), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$4[20] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(323), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$4[21] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(324), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$4[22] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(325), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(76); - oncip_CypherErrorStrategy$LabelExpressionRule$_$callClinit(); - var$4[23] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(70); - oncip_CypherErrorStrategy$RelationshipPatternRule$_$callClinit(); - var$4[24] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(58); - oncip_CypherErrorStrategy$NodePatternRule$_$callClinit(); - var$4[25] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$NodePatternRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(83); - oncip_CypherErrorStrategy$LabelExpression1Rule$_$callClinit(); - var$4[26] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$); - return sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); -}, -oncipvaf_Cypher25ErrorStrategyConf_errorCharTokenType = $this => { - return 307; -}, -oncipv_Cypher25Parser = $rt_classWithoutFields(oavr_Parser), -oncipv_Cypher25Parser__decisionToDFA = null, -oncipv_Cypher25Parser__sharedContextCache = null, -oncipv_Cypher25Parser_ruleNames = null, -oncipv_Cypher25Parser__LITERAL_NAMES = null, -oncipv_Cypher25Parser__SYMBOLIC_NAMES = null, -oncipv_Cypher25Parser_VOCABULARY = null, -oncipv_Cypher25Parser_tokenNames = null, -oncipv_Cypher25Parser__serializedATN = null, -oncipv_Cypher25Parser__ATN = null, -oncipv_Cypher25Parser_$callClinit = () => { - oncipv_Cypher25Parser_$callClinit = $rt_eraseClinit(oncipv_Cypher25Parser); - oncipv_Cypher25Parser__clinit_(); -}, -oncipv_Cypher25Parser_makeRuleNames = () => { - oncipv_Cypher25Parser_$callClinit(); - return $rt_wrapArray(jl_String, [$rt_s(6425), $rt_s(6426), $rt_s(6427), $rt_s(6428), $rt_s(1108), $rt_s(6429), $rt_s(6430), $rt_s(6431), $rt_s(6432), $rt_s(6433), $rt_s(6434), $rt_s(6435), $rt_s(6436), $rt_s(6437), $rt_s(6438), $rt_s(6439), $rt_s(6440), $rt_s(6441), $rt_s(6442), $rt_s(6443), $rt_s(6444), $rt_s(6445), $rt_s(6446), $rt_s(6447), $rt_s(6448), $rt_s(6449), $rt_s(6450), $rt_s(6451), $rt_s(1149), $rt_s(1133), $rt_s(6452), $rt_s(6453), $rt_s(6454), $rt_s(6455), $rt_s(6456), $rt_s(6457), $rt_s(6458), - $rt_s(6459), $rt_s(6460), $rt_s(6461), $rt_s(6462), $rt_s(6463), $rt_s(6464), $rt_s(6465), $rt_s(6466), $rt_s(6467), $rt_s(6468), $rt_s(6469), $rt_s(6470), $rt_s(6471), $rt_s(6472), $rt_s(6473), $rt_s(6474), $rt_s(6475), $rt_s(1183), $rt_s(6476), $rt_s(6477), $rt_s(6478), $rt_s(6479), $rt_s(6480), $rt_s(6481), $rt_s(6482), $rt_s(6483), $rt_s(6484), $rt_s(6485), $rt_s(6486), $rt_s(6487), $rt_s(1177), $rt_s(6488), $rt_s(4907), $rt_s(6489), $rt_s(6490), $rt_s(6491), $rt_s(6492), $rt_s(6493), $rt_s(6494), $rt_s(6495), - $rt_s(6496), $rt_s(6497), $rt_s(6498), $rt_s(6499), $rt_s(6500), $rt_s(6501), $rt_s(6502), $rt_s(6503), $rt_s(6504), $rt_s(6505), $rt_s(943), $rt_s(6506), $rt_s(6507), $rt_s(6508), $rt_s(6509), $rt_s(6510), $rt_s(6511), $rt_s(5430), $rt_s(6512), $rt_s(6513), $rt_s(6514), $rt_s(6515), $rt_s(6516), $rt_s(6517), $rt_s(5113), $rt_s(6518), $rt_s(6519), $rt_s(6520), $rt_s(6521), $rt_s(6522), $rt_s(6523), $rt_s(6524), $rt_s(6525), $rt_s(6526), $rt_s(6527), $rt_s(6528), $rt_s(6529), $rt_s(6530), $rt_s(6531), $rt_s(6532), - $rt_s(6533), $rt_s(6534), $rt_s(6535), $rt_s(6536), $rt_s(6537), $rt_s(6538), $rt_s(6539), $rt_s(6540), $rt_s(6541), $rt_s(6542), $rt_s(6543), $rt_s(6544), $rt_s(6545), $rt_s(6546), $rt_s(6547), $rt_s(6548), $rt_s(6549), $rt_s(6550), $rt_s(6551), $rt_s(1152), $rt_s(1203), $rt_s(6552), $rt_s(4912), $rt_s(6553), $rt_s(6554), $rt_s(6555), $rt_s(6556), $rt_s(5010), $rt_s(6557), $rt_s(6558), $rt_s(6559), $rt_s(6560), $rt_s(6561), $rt_s(6562), $rt_s(6563), $rt_s(6564), $rt_s(6565), $rt_s(6566), $rt_s(6567), $rt_s(6568), - $rt_s(6569), $rt_s(6570), $rt_s(6571), $rt_s(6572), $rt_s(6573), $rt_s(6574), $rt_s(6575), $rt_s(6576), $rt_s(6577), $rt_s(6578), $rt_s(6579), $rt_s(6580), $rt_s(6581), $rt_s(6582), $rt_s(6583), $rt_s(6584), $rt_s(6585), $rt_s(6586), $rt_s(6587), $rt_s(6588), $rt_s(6589), $rt_s(6590), $rt_s(6591), $rt_s(6592), $rt_s(6593), $rt_s(6594), $rt_s(6595), $rt_s(6596), $rt_s(6597), $rt_s(6598), $rt_s(6599), $rt_s(6600), $rt_s(6601), $rt_s(6602), $rt_s(6603), $rt_s(6604), $rt_s(6605), $rt_s(6606), $rt_s(6607), $rt_s(6608), - $rt_s(6609), $rt_s(6610), $rt_s(6611), $rt_s(6612), $rt_s(6613), $rt_s(6614), $rt_s(6615), $rt_s(6616), $rt_s(6617), $rt_s(6618), $rt_s(6619), $rt_s(6620), $rt_s(6621), $rt_s(6622), $rt_s(6623), $rt_s(6624), $rt_s(6625), $rt_s(6626), $rt_s(6627), $rt_s(6628), $rt_s(6629), $rt_s(6630), $rt_s(6631), $rt_s(6632), $rt_s(6633), $rt_s(4976), $rt_s(6634), $rt_s(6635), $rt_s(6636), $rt_s(6637), $rt_s(6638), $rt_s(6639), $rt_s(6640), $rt_s(6641), $rt_s(6642), $rt_s(6643), $rt_s(6644), $rt_s(6645), $rt_s(6646), $rt_s(6647), - $rt_s(6648), $rt_s(6649), $rt_s(6650), $rt_s(6651), $rt_s(6652), $rt_s(6653), $rt_s(6654), $rt_s(6655), $rt_s(6656), $rt_s(6657), $rt_s(6658), $rt_s(6659), $rt_s(6660), $rt_s(6661), $rt_s(6662), $rt_s(6663), $rt_s(6664), $rt_s(6665), $rt_s(6666), $rt_s(6667), $rt_s(6668), $rt_s(6669), $rt_s(6670), $rt_s(6671), $rt_s(6672), $rt_s(6673), $rt_s(6674), $rt_s(6675), $rt_s(6676), $rt_s(6677), $rt_s(6678), $rt_s(6679), $rt_s(6680), $rt_s(6681), $rt_s(6682), $rt_s(6683), $rt_s(6684), $rt_s(6685), $rt_s(6686), $rt_s(6687), - $rt_s(6688), $rt_s(6689), $rt_s(6690), $rt_s(6691), $rt_s(6692), $rt_s(6693), $rt_s(6694), $rt_s(6695), $rt_s(6696), $rt_s(6697), $rt_s(6698), $rt_s(6699), $rt_s(6700), $rt_s(6701), $rt_s(6702), $rt_s(6703), $rt_s(6704), $rt_s(6705), $rt_s(6706), $rt_s(6707), $rt_s(6708), $rt_s(6709), $rt_s(6710), $rt_s(6711), $rt_s(6712), $rt_s(6713), $rt_s(6714), $rt_s(6715), $rt_s(6716), $rt_s(6717), $rt_s(6718), $rt_s(6719), $rt_s(6720), $rt_s(6721), $rt_s(6722), $rt_s(6723), $rt_s(6724), $rt_s(6725), $rt_s(6726), $rt_s(6727), - $rt_s(6728), $rt_s(6729), $rt_s(6730), $rt_s(6731), $rt_s(6732), $rt_s(6733), $rt_s(6734), $rt_s(6735), $rt_s(6736), $rt_s(6737), $rt_s(6738)]); -}, -oncipv_Cypher25Parser_makeLiteralNames = () => { - let var$1, var$2; - oncipv_Cypher25Parser_$callClinit(); - var$1 = $rt_createArray(jl_String, 266); - var$2 = var$1.data; - var$2[0] = null; - var$2[1] = null; - var$2[2] = null; - var$2[3] = null; - var$2[4] = null; - var$2[5] = null; - var$2[6] = null; - var$2[7] = null; - var$2[8] = null; - var$2[9] = null; - var$2[10] = null; - var$2[11] = null; - var$2[12] = null; - var$2[13] = null; - var$2[14] = null; - var$2[15] = null; - var$2[16] = null; - var$2[17] = null; - var$2[18] = null; - var$2[19] = null; - var$2[20] = null; - var$2[21] = null; - var$2[22] = null; - var$2[23] = null; - var$2[24] = null; - var$2[25] = null; - var$2[26] = null; - var$2[27] = null; - var$2[28] = null; - var$2[29] = $rt_s(6372); - var$2[30] = null; - var$2[31] = null; - var$2[32] = null; - var$2[33] = null; - var$2[34] = null; - var$2[35] = null; - var$2[36] = null; - var$2[37] = null; - var$2[38] = null; - var$2[39] = null; - var$2[40] = null; - var$2[41] = null; - var$2[42] = null; - var$2[43] = null; - var$2[44] = $rt_s(6373); - var$2[45] = $rt_s(6374); - var$2[46] = $rt_s(6375); - var$2[47] = null; - var$2[48] = null; - var$2[49] = null; - var$2[50] = null; - var$2[51] = null; - var$2[52] = null; - var$2[53] = null; - var$2[54] = null; - var$2[55] = null; - var$2[56] = null; - var$2[57] = null; - var$2[58] = null; - var$2[59] = null; - var$2[60] = null; - var$2[61] = null; - var$2[62] = null; - var$2[63] = null; - var$2[64] = null; - var$2[65] = null; - var$2[66] = null; - var$2[67] = null; - var$2[68] = null; - var$2[69] = null; - var$2[70] = null; - var$2[71] = null; - var$2[72] = null; - var$2[73] = null; - var$2[74] = null; - var$2[75] = null; - var$2[76] = $rt_s(6376); - var$2[77] = null; - var$2[78] = $rt_s(6377); - var$2[79] = $rt_s(6378); - var$2[80] = $rt_s(6379); - var$2[81] = $rt_s(6380); - var$2[82] = null; - var$2[83] = null; - var$2[84] = null; - var$2[85] = null; - var$2[86] = null; - var$2[87] = null; - var$2[88] = null; - var$2[89] = null; - var$2[90] = null; - var$2[91] = null; - var$2[92] = null; - var$2[93] = null; - var$2[94] = null; - var$2[95] = null; - var$2[96] = $rt_s(6381); - var$2[97] = null; - var$2[98] = null; - var$2[99] = null; - var$2[100] = null; - var$2[101] = null; - var$2[102] = null; - var$2[103] = null; - var$2[104] = null; - var$2[105] = null; - var$2[106] = null; - var$2[107] = null; - var$2[108] = null; - var$2[109] = null; - var$2[110] = null; - var$2[111] = null; - var$2[112] = null; - var$2[113] = null; - var$2[114] = $rt_s(6382); - var$2[115] = null; - var$2[116] = null; - var$2[117] = null; - var$2[118] = null; - var$2[119] = null; - var$2[120] = $rt_s(6383); - var$2[121] = null; - var$2[122] = null; - var$2[123] = null; - var$2[124] = null; - var$2[125] = null; - var$2[126] = null; - var$2[127] = null; - var$2[128] = null; - var$2[129] = null; - var$2[130] = null; - var$2[131] = null; - var$2[132] = null; - var$2[133] = null; - var$2[134] = null; - var$2[135] = null; - var$2[136] = null; - var$2[137] = null; - var$2[138] = null; - var$2[139] = null; - var$2[140] = $rt_s(6384); - var$2[141] = $rt_s(6385); - var$2[142] = $rt_s(6386); - var$2[143] = $rt_s(6387); - var$2[144] = $rt_s(6388); - var$2[145] = null; - var$2[146] = null; - var$2[147] = null; - var$2[148] = null; - var$2[149] = null; - var$2[150] = null; - var$2[151] = $rt_s(6389); - var$2[152] = $rt_s(6390); - var$2[153] = null; - var$2[154] = null; - var$2[155] = null; - var$2[156] = null; - var$2[157] = $rt_s(6391); - var$2[158] = $rt_s(6392); - var$2[159] = $rt_s(6393); - var$2[160] = $rt_s(6394); - var$2[161] = null; - var$2[162] = null; - var$2[163] = null; - var$2[164] = null; - var$2[165] = null; - var$2[166] = null; - var$2[167] = null; - var$2[168] = null; - var$2[169] = null; - var$2[170] = null; - var$2[171] = null; - var$2[172] = null; - var$2[173] = null; - var$2[174] = null; - var$2[175] = null; - var$2[176] = null; - var$2[177] = null; - var$2[178] = null; - var$2[179] = null; - var$2[180] = null; - var$2[181] = null; - var$2[182] = null; - var$2[183] = null; - var$2[184] = null; - var$2[185] = null; - var$2[186] = null; - var$2[187] = null; - var$2[188] = null; - var$2[189] = null; - var$2[190] = null; - var$2[191] = null; - var$2[192] = null; - var$2[193] = $rt_s(6395); - var$2[194] = $rt_s(6396); - var$2[195] = null; - var$2[196] = null; - var$2[197] = $rt_s(6397); - var$2[198] = null; - var$2[199] = null; - var$2[200] = null; - var$2[201] = null; - var$2[202] = null; - var$2[203] = null; - var$2[204] = null; - var$2[205] = null; - var$2[206] = null; - var$2[207] = null; - var$2[208] = $rt_s(6398); - var$2[209] = null; - var$2[210] = $rt_s(6399); - var$2[211] = $rt_s(6400); - var$2[212] = null; - var$2[213] = null; - var$2[214] = null; - var$2[215] = null; - var$2[216] = $rt_s(6401); - var$2[217] = null; - var$2[218] = null; - var$2[219] = null; - var$2[220] = null; - var$2[221] = null; - var$2[222] = null; - var$2[223] = null; - var$2[224] = null; - var$2[225] = null; - var$2[226] = null; - var$2[227] = null; - var$2[228] = null; - var$2[229] = null; - var$2[230] = null; - var$2[231] = null; - var$2[232] = null; - var$2[233] = $rt_s(6402); - var$2[234] = null; - var$2[235] = null; - var$2[236] = null; - var$2[237] = null; - var$2[238] = null; - var$2[239] = null; - var$2[240] = null; - var$2[241] = $rt_s(6403); - var$2[242] = null; - var$2[243] = null; - var$2[244] = null; - var$2[245] = null; - var$2[246] = null; - var$2[247] = null; - var$2[248] = null; - var$2[249] = null; - var$2[250] = null; - var$2[251] = null; - var$2[252] = null; - var$2[253] = null; - var$2[254] = null; - var$2[255] = null; - var$2[256] = null; - var$2[257] = null; - var$2[258] = null; - var$2[259] = null; - var$2[260] = null; - var$2[261] = null; - var$2[262] = null; - var$2[263] = null; - var$2[264] = null; - var$2[265] = $rt_s(6404); - return var$1; -}, -oncipv_Cypher25Parser_makeSymbolicNames = () => { - let var$1, var$2; - oncipv_Cypher25Parser_$callClinit(); - var$1 = $rt_createArray(jl_String, 308); - var$2 = var$1.data; - var$2[0] = null; - var$2[1] = $rt_s(6123); - var$2[2] = $rt_s(6124); - var$2[3] = $rt_s(6125); - var$2[4] = $rt_s(6126); - var$2[5] = $rt_s(6127); - var$2[6] = $rt_s(6130); - var$2[7] = $rt_s(6131); - var$2[8] = $rt_s(6132); - var$2[9] = $rt_s(6133); - var$2[10] = $rt_s(6135); - var$2[11] = $rt_s(4550); - var$2[12] = $rt_s(513); - var$2[13] = $rt_s(6136); - var$2[14] = $rt_s(6137); - var$2[15] = $rt_s(6138); - var$2[16] = $rt_s(6139); - var$2[17] = $rt_s(6140); - var$2[18] = $rt_s(563); - var$2[19] = $rt_s(6141); - var$2[20] = $rt_s(5610); - var$2[21] = $rt_s(708); - var$2[22] = $rt_s(6142); - var$2[23] = $rt_s(6143); - var$2[24] = $rt_s(6144); - var$2[25] = $rt_s(6145); - var$2[26] = $rt_s(6146); - var$2[27] = $rt_s(6147); - var$2[28] = $rt_s(6148); - var$2[29] = $rt_s(6149); - var$2[30] = $rt_s(6150); - var$2[31] = $rt_s(6151); - var$2[32] = $rt_s(710); - var$2[33] = $rt_s(6152); - var$2[34] = $rt_s(4633); - var$2[35] = $rt_s(6153); - var$2[36] = $rt_s(6154); - var$2[37] = $rt_s(6155); - var$2[38] = $rt_s(4659); - var$2[39] = $rt_s(6156); - var$2[40] = $rt_s(456); - var$2[41] = $rt_s(6157); - var$2[42] = $rt_s(6158); - var$2[43] = $rt_s(6159); - var$2[44] = $rt_s(6160); - var$2[45] = $rt_s(6161); - var$2[46] = $rt_s(6162); - var$2[47] = $rt_s(6163); - var$2[48] = $rt_s(6164); - var$2[49] = $rt_s(6165); - var$2[50] = $rt_s(3474); - var$2[51] = $rt_s(507); - var$2[52] = $rt_s(6166); - var$2[53] = $rt_s(6167); - var$2[54] = $rt_s(6168); - var$2[55] = $rt_s(6169); - var$2[56] = $rt_s(6170); - var$2[57] = $rt_s(5070); - var$2[58] = $rt_s(6171); - var$2[59] = $rt_s(6172); - var$2[60] = $rt_s(6173); - var$2[61] = $rt_s(4404); - var$2[62] = $rt_s(6174); - var$2[63] = $rt_s(743); - var$2[64] = $rt_s(6175); - var$2[65] = $rt_s(31); - var$2[66] = $rt_s(6176); - var$2[67] = $rt_s(588); - var$2[68] = $rt_s(6177); - var$2[69] = $rt_s(5083); - var$2[70] = $rt_s(4893); - var$2[71] = $rt_s(6178); - var$2[72] = $rt_s(6179); - var$2[73] = $rt_s(6180); - var$2[74] = $rt_s(6181); - var$2[75] = $rt_s(6182); - var$2[76] = $rt_s(6183); - var$2[77] = $rt_s(6184); - var$2[78] = $rt_s(6185); - var$2[79] = $rt_s(6186); - var$2[80] = $rt_s(6187); - var$2[81] = $rt_s(6188); - var$2[82] = $rt_s(535); - var$2[83] = $rt_s(6189); - var$2[84] = $rt_s(6190); - var$2[85] = $rt_s(6191); - var$2[86] = $rt_s(752); - var$2[87] = $rt_s(6192); - var$2[88] = $rt_s(6193); - var$2[89] = $rt_s(6194); - var$2[90] = $rt_s(6195); - var$2[91] = $rt_s(6196); - var$2[92] = $rt_s(6197); - var$2[93] = $rt_s(6198); - var$2[94] = $rt_s(457); - var$2[95] = $rt_s(6199); - var$2[96] = $rt_s(6200); - var$2[97] = $rt_s(6201); - var$2[98] = $rt_s(6202); - var$2[99] = $rt_s(4499); - var$2[100] = $rt_s(6203); - var$2[101] = $rt_s(4482); - var$2[102] = $rt_s(6204); - var$2[103] = $rt_s(6205); - var$2[104] = $rt_s(6206); - var$2[105] = $rt_s(6207); - var$2[106] = $rt_s(610); - var$2[107] = $rt_s(719); - var$2[108] = $rt_s(6208); - var$2[109] = $rt_s(5124); - var$2[110] = $rt_s(526); - var$2[111] = $rt_s(3496); - var$2[112] = $rt_s(6209); - var$2[113] = $rt_s(6210); - var$2[114] = $rt_s(6211); - var$2[115] = $rt_s(5310); - var$2[116] = $rt_s(761); - var$2[117] = $rt_s(6212); - var$2[118] = $rt_s(6213); - var$2[119] = $rt_s(6214); - var$2[120] = $rt_s(6215); - var$2[121] = $rt_s(6216); - var$2[122] = $rt_s(589); - var$2[123] = $rt_s(6217); - var$2[124] = $rt_s(6218); - var$2[125] = $rt_s(5211); - var$2[126] = $rt_s(6219); - var$2[127] = $rt_s(478); - var$2[128] = $rt_s(896); - var$2[129] = $rt_s(6220); - var$2[130] = $rt_s(6221); - var$2[131] = $rt_s(6222); - var$2[132] = $rt_s(5086); - var$2[133] = $rt_s(6223); - var$2[134] = $rt_s(722); - var$2[135] = $rt_s(6224); - var$2[136] = $rt_s(6225); - var$2[137] = $rt_s(4494); - var$2[138] = $rt_s(6226); - var$2[139] = $rt_s(6227); - var$2[140] = $rt_s(6228); - var$2[141] = $rt_s(6229); - var$2[142] = $rt_s(6230); - var$2[143] = $rt_s(6231); - var$2[144] = $rt_s(6232); - var$2[145] = $rt_s(4634); - var$2[146] = $rt_s(6233); - var$2[147] = $rt_s(6234); - var$2[148] = $rt_s(5356); - var$2[149] = $rt_s(6235); - var$2[150] = $rt_s(3497); - var$2[151] = $rt_s(6236); - var$2[152] = $rt_s(6237); - var$2[153] = $rt_s(6238); - var$2[154] = $rt_s(724); - var$2[155] = $rt_s(5092); - var$2[156] = $rt_s(4382); - var$2[157] = $rt_s(6239); - var$2[158] = $rt_s(6240); - var$2[159] = $rt_s(6241); - var$2[160] = $rt_s(6242); - var$2[161] = $rt_s(6243); - var$2[162] = $rt_s(6244); - var$2[163] = $rt_s(6245); - var$2[164] = $rt_s(4629); - var$2[165] = $rt_s(4630); - var$2[166] = $rt_s(4631); - var$2[167] = $rt_s(4632); - var$2[168] = $rt_s(6246); - var$2[169] = $rt_s(727); - var$2[170] = $rt_s(6247); - var$2[171] = $rt_s(6248); - var$2[172] = $rt_s(3581); - var$2[173] = $rt_s(6249); - var$2[174] = $rt_s(6250); - var$2[175] = $rt_s(6251); - var$2[176] = $rt_s(4523); - var$2[177] = $rt_s(6252); - var$2[178] = $rt_s(4524); - var$2[179] = $rt_s(6253); - var$2[180] = $rt_s(6254); - var$2[181] = $rt_s(6255); - var$2[182] = $rt_s(6256); - var$2[183] = $rt_s(6257); - var$2[184] = $rt_s(6258); - var$2[185] = $rt_s(6259); - var$2[186] = $rt_s(6260); - var$2[187] = $rt_s(6261); - var$2[188] = $rt_s(558); - var$2[189] = $rt_s(6262); - var$2[190] = $rt_s(758); - var$2[191] = $rt_s(6263); - var$2[192] = $rt_s(6264); - var$2[193] = $rt_s(6265); - var$2[194] = $rt_s(6266); - var$2[195] = $rt_s(734); - var$2[196] = $rt_s(6267); - var$2[197] = $rt_s(6268); - var$2[198] = $rt_s(6269); - var$2[199] = $rt_s(6270); - var$2[200] = $rt_s(6271); - var$2[201] = $rt_s(6272); - var$2[202] = $rt_s(6273); - var$2[203] = $rt_s(6274); - var$2[204] = $rt_s(532); - var$2[205] = $rt_s(6275); - var$2[206] = $rt_s(6276); - var$2[207] = $rt_s(6277); - var$2[208] = $rt_s(6278); - var$2[209] = $rt_s(1067); - var$2[210] = $rt_s(6279); - var$2[211] = $rt_s(6280); - var$2[212] = $rt_s(32); - var$2[213] = $rt_s(6281); - var$2[214] = $rt_s(6282); - var$2[215] = $rt_s(6283); - var$2[216] = $rt_s(6284); - var$2[217] = $rt_s(4396); - var$2[218] = $rt_s(730); - var$2[219] = $rt_s(6285); - var$2[220] = $rt_s(5088); - var$2[221] = $rt_s(6286); - var$2[222] = $rt_s(770); - var$2[223] = $rt_s(771); - var$2[224] = $rt_s(6287); - var$2[225] = $rt_s(6288); - var$2[226] = $rt_s(5297); - var$2[227] = $rt_s(641); - var$2[228] = $rt_s(5322); - var$2[229] = $rt_s(6289); - var$2[230] = $rt_s(6290); - var$2[231] = $rt_s(6291); - var$2[232] = $rt_s(6292); - var$2[233] = $rt_s(6293); - var$2[234] = $rt_s(6294); - var$2[235] = $rt_s(6295); - var$2[236] = $rt_s(6296); - var$2[237] = $rt_s(6297); - var$2[238] = $rt_s(6298); - var$2[239] = $rt_s(6299); - var$2[240] = $rt_s(6300); - var$2[241] = $rt_s(6301); - var$2[242] = $rt_s(6302); - var$2[243] = $rt_s(6303); - var$2[244] = $rt_s(5090); - var$2[245] = $rt_s(6304); - var$2[246] = $rt_s(6305); - var$2[247] = $rt_s(6306); - var$2[248] = $rt_s(6307); - var$2[249] = $rt_s(6308); - var$2[250] = $rt_s(6309); - var$2[251] = $rt_s(6310); - var$2[252] = $rt_s(6311); - var$2[253] = $rt_s(5157); - var$2[254] = $rt_s(6312); - var$2[255] = $rt_s(6313); - var$2[256] = $rt_s(5159); - var$2[257] = $rt_s(714); - var$2[258] = $rt_s(6314); - var$2[259] = $rt_s(514); - var$2[260] = $rt_s(6315); - var$2[261] = $rt_s(6316); - var$2[262] = $rt_s(1066); - var$2[263] = $rt_s(6317); - var$2[264] = $rt_s(6318); - var$2[265] = $rt_s(6319); - var$2[266] = $rt_s(6320); - var$2[267] = $rt_s(6321); - var$2[268] = $rt_s(525); - var$2[269] = $rt_s(3517); - var$2[270] = $rt_s(4635); - var$2[271] = $rt_s(6322); - var$2[272] = $rt_s(6323); - var$2[273] = $rt_s(5288); - var$2[274] = $rt_s(6324); - var$2[275] = $rt_s(6325); - var$2[276] = $rt_s(6326); - var$2[277] = $rt_s(6327); - var$2[278] = $rt_s(6328); - var$2[279] = $rt_s(608); - var$2[280] = $rt_s(4489); - var$2[281] = $rt_s(5563); - var$2[282] = $rt_s(5121); - var$2[283] = $rt_s(6329); - var$2[284] = $rt_s(6330); - var$2[285] = $rt_s(559); - var$2[286] = $rt_s(6331); - var$2[287] = $rt_s(6332); - var$2[288] = $rt_s(6333); - var$2[289] = $rt_s(6334); - var$2[290] = $rt_s(3498); - var$2[291] = $rt_s(6335); - var$2[292] = $rt_s(6336); - var$2[293] = $rt_s(6337); - var$2[294] = $rt_s(6338); - var$2[295] = $rt_s(642); - var$2[296] = $rt_s(6339); - var$2[297] = $rt_s(33); - var$2[298] = $rt_s(6340); - var$2[299] = $rt_s(4680); - var$2[300] = $rt_s(6341); - var$2[301] = $rt_s(6342); - var$2[302] = $rt_s(6343); - var$2[303] = $rt_s(6344); - var$2[304] = $rt_s(6345); - var$2[305] = $rt_s(6346); - var$2[306] = $rt_s(6347); - var$2[307] = $rt_s(6371); - return var$1; -}, -oncipv_Cypher25Parser_getVocabulary = $this => { - oncipv_Cypher25Parser_$callClinit(); - return oncipv_Cypher25Parser_VOCABULARY; -}, -oncipv_Cypher25Parser_getRuleNames = $this => { - oncipv_Cypher25Parser_$callClinit(); - return oncipv_Cypher25Parser_ruleNames; -}, -oncipv_Cypher25Parser_getATN = $this => { - oncipv_Cypher25Parser_$callClinit(); - return oncipv_Cypher25Parser__ATN; + return $_localctx; }, -oncipv_Cypher25Parser_statement = $this => { +oncipv_Cypher5Parser_symbolicAliasNameOrParameter = $this => { let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StatementContext; + $_localctx = new oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 2, 1); + oavr_Parser_enterRule($this, $_localctx, 636, 318); a: { b: { c: { d: { try { e: { - oavr_Recognizer_setState($this, 671); + oavr_Recognizer_setState($this, 3682); $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 2, $this.$_ctx)) { - case 1: + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3680); + oncipv_Cypher5Parser_symbolicAliasName($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: break; - case 2: + case 80: oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 670); - oncipv_Cypher25Parser_regularQuery($this); + oavr_Recognizer_setState($this, 3681); + oncipv_Cypher5Parser_parameter($this, $rt_s(714)); break e; default: - break e; } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 669); - oncipv_Cypher25Parser_command($this); + $rt_throw(oavr_NoViableAltException__init_($this)); } } catch ($$e) { $$je = $rt_wrapException($$e); @@ -231971,46 +169193,100 @@ oncipv_Cypher25Parser_statement = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_regularQuery = $this => { +oncipv_Cypher5Parser_symbolicAliasName = $this => { let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RegularQueryContext; + $_localctx = new oncipv_Cypher5Parser$SymbolicAliasNameContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 4, 2); + oavr_Parser_enterRule($this, $_localctx, 638, 319); a: { b: { c: { d: { try { oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 673); - oncipv_Cypher25Parser_singleQuery($this); - oavr_Recognizer_setState($this, 681); + oavr_Recognizer_setState($this, 3684); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3689); $this.$_errHandler.$sync($this); $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 279) { - oavr_Recognizer_setState($this, 674); - oavr_Parser_match($this, 279); - oavr_Recognizer_setState($this, 676); + while ($_la == 83) { + oavr_Recognizer_setState($this, 3685); + oavr_Parser_match($this, 83); + oavr_Recognizer_setState($this, 3686); + oncipv_Cypher5Parser_symbolicNameString($this); + oavr_Recognizer_setState($this, 3691); $this.$_errHandler.$sync($this); $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 77)) { - oavr_Recognizer_setState($this, 675); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_stringListLiteral = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$StringListLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 640, 320); + a: { + b: { + c: { + d: { + try { + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3692); + oavr_Parser_match($this, 146); + oavr_Recognizer_setState($this, 3701); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!($_la != 8 && $_la != 9)) { + oavr_Recognizer_setState($this, 3693); + oncipv_Cypher5Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 3698); + $this.$_errHandler.$sync($this); $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 77) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); + while (true) { + if ($_la != 49) + break e; + oavr_Recognizer_setState($this, 3694); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 3695); + oncipv_Cypher5Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 3700); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); } } - oavr_Recognizer_setState($this, 678); - oncipv_Cypher25Parser_singleQuery($this); - oavr_Recognizer_setState($this, 683); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); } + oavr_Recognizer_setState($this, 3703); + oavr_Parser_match($this, 216); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -232042,39 +169318,30 @@ oncipv_Cypher25Parser_regularQuery = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_singleQuery = $this => { - let $_localctx, var$2, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SingleQueryContext; +oncipv_Cypher5Parser_stringList = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$StringListContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 6, 3); + oavr_Parser_enterRule($this, $_localctx, 642, 321); a: { b: { c: { d: { try { oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 685); + oavr_Recognizer_setState($this, 3705); + oncipv_Cypher5Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 3708); $this.$_errHandler.$sync($this); oavr_BufferedTokenStream_LA($this.$_input, 1); while (true) { - oavr_Recognizer_setState($this, 684); - oncipv_Cypher25Parser_clause($this); - oavr_Recognizer_setState($this, 687); + oavr_Recognizer_setState($this, 3706); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 3707); + oncipv_Cypher5Parser_stringLiteral($this); + oavr_Recognizer_setState($this, 3710); $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$3 = var$2 - 38 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(2148007937, 16)), Long_ZERO)) - continue; - var$3 = var$2 - 106 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(67108873, 394496)), Long_ZERO)) - continue; - var$3 = var$2 - 170 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(140289, 33816576)), Long_ZERO)) - continue; - var$2 = var$2 - 244 | 0; - if (var$2 & (-64)) - break; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$2), Long_create(257, 524608)), Long_ZERO)) + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) continue; else break; @@ -232110,108 +169377,86 @@ oncipv_Cypher25Parser_singleQuery = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_clause = $this => { +oncipv_Cypher5Parser_stringLiteral = $this => { + let $_localctx, $_la, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$StringLiteralContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 644, 322); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3712); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($_la != 8 && $_la != 9) + $this.$_errHandler.$recoverInline($this); + else { + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_stringOrParameterExpression = $this => { let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ClauseContext; + $_localctx = new oncipv_Cypher5Parser$StringOrParameterExpressionContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 8, 4); + oavr_Parser_enterRule($this, $_localctx, 646, 323); a: { b: { c: { d: { try { e: { - oavr_Recognizer_setState($this, 706); + oavr_Recognizer_setState($this, 3716); $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 6, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 690); - oncipv_Cypher25Parser_finishClause($this); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 691); - oncipv_Cypher25Parser_returnClause($this); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 692); - oncipv_Cypher25Parser_createClause($this); - break e; - case 5: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 693); - oncipv_Cypher25Parser_insertClause($this); - break e; - case 6: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 694); - oncipv_Cypher25Parser_deleteClause($this); - break e; - case 7: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 695); - oncipv_Cypher25Parser_setClause($this); - break e; + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { case 8: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 696); - oncipv_Cypher25Parser_removeClause($this); - break e; case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 697); - oncipv_Cypher25Parser_matchClause($this); - break e; - case 10: - oavr_Parser_enterOuterAlt($this, $_localctx, 10); - oavr_Recognizer_setState($this, 698); - oncipv_Cypher25Parser_mergeClause($this); - break e; - case 11: - oavr_Parser_enterOuterAlt($this, $_localctx, 11); - oavr_Recognizer_setState($this, 699); - oncipv_Cypher25Parser_withClause($this); - break e; - case 12: - oavr_Parser_enterOuterAlt($this, $_localctx, 12); - oavr_Recognizer_setState($this, 700); - oncipv_Cypher25Parser_unwindClause($this); - break e; - case 13: - oavr_Parser_enterOuterAlt($this, $_localctx, 13); - oavr_Recognizer_setState($this, 701); - oncipv_Cypher25Parser_callClause($this); - break e; - case 14: - oavr_Parser_enterOuterAlt($this, $_localctx, 14); - oavr_Recognizer_setState($this, 702); - oncipv_Cypher25Parser_subqueryClause($this); - break e; - case 15: - oavr_Parser_enterOuterAlt($this, $_localctx, 15); - oavr_Recognizer_setState($this, 703); - oncipv_Cypher25Parser_loadCSVClause($this); - break e; - case 16: - oavr_Parser_enterOuterAlt($this, $_localctx, 16); - oavr_Recognizer_setState($this, 704); - oncipv_Cypher25Parser_foreachClause($this); + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3714); + oncipv_Cypher5Parser_stringLiteral($this); break e; - case 17: - oavr_Parser_enterOuterAlt($this, $_localctx, 17); - oavr_Recognizer_setState($this, 705); - oncipv_Cypher25Parser_orderBySkipLimitClause($this); + case 80: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3715); + oncipv_Cypher5Parser_parameter($this, $rt_s(714)); break e; default: - break e; } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 689); - oncipv_Cypher25Parser_useClause($this); + $rt_throw(oavr_NoViableAltException__init_($this)); } } catch ($$e) { $$je = $rt_wrapException($$e); @@ -232244,33 +169489,35 @@ oncipv_Cypher25Parser_clause = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_useClause = $this => { +oncipv_Cypher5Parser_stringOrParameter = $this => { let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UseClauseContext; + $_localctx = new oncipv_Cypher5Parser$StringOrParameterContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 10, 5); + oavr_Parser_enterRule($this, $_localctx, 648, 324); a: { b: { c: { d: { try { e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 708); - oavr_Parser_match($this, 284); - oavr_Recognizer_setState($this, 710); + oavr_Recognizer_setState($this, 3720); $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 7, $this.$_ctx)) { - case 1: - break; - default: + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 8: + case 9: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3718); + oncipv_Cypher5Parser_stringLiteral($this); + break e; + case 80: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3719); + oncipv_Cypher5Parser_parameter($this, $rt_s(714)); break e; + default: } - oavr_Recognizer_setState($this, 709); - oavr_Parser_match($this, 116); + $rt_throw(oavr_NoViableAltException__init_($this)); } - oavr_Recognizer_setState($this, 712); - oncipv_Cypher25Parser_graphReference($this); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -232302,42 +169549,33 @@ oncipv_Cypher25Parser_useClause = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_graphReference = $this => { +oncipv_Cypher5Parser_uIntOrIntParameter = $this => { let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GraphReferenceContext; + $_localctx = new oncipv_Cypher5Parser$UIntOrIntParameterContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 12, 6); + oavr_Parser_enterRule($this, $_localctx, 650, 325); a: { b: { c: { d: { try { e: { - oavr_Recognizer_setState($this, 720); + oavr_Recognizer_setState($this, 3724); $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 8, $this.$_ctx)) { - case 1: + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 5: oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 714); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 715); - oncipv_Cypher25Parser_graphReference($this); - oavr_Recognizer_setState($this, 716); - oavr_Parser_match($this, 233); + oavr_Recognizer_setState($this, 3722); + oavr_Parser_match($this, 5); break e; - case 2: - break; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 719); - oncipv_Cypher25Parser_symbolicAliasName($this); + case 80: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3723); + oncipv_Cypher5Parser_parameter($this, $rt_s(722)); break e; default: - break e; } - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 718); - oncipv_Cypher25Parser_functionInvocation($this); + $rt_throw(oavr_NoViableAltException__init_($this)); } } catch ($$e) { $$je = $rt_wrapException($$e); @@ -232370,19 +169608,34 @@ oncipv_Cypher25Parser_graphReference = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_finishClause = $this => { +oncipv_Cypher5Parser_mapOrParameter = $this => { let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$FinishClauseContext; + $_localctx = new oncipv_Cypher5Parser$MapOrParameterContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 14, 7); + oavr_Parser_enterRule($this, $_localctx, 652, 326); a: { b: { c: { d: { try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 722); - oavr_Parser_match($this, 106); + e: { + oavr_Recognizer_setState($this, 3728); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 80: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3727); + oncipv_Cypher5Parser_parameter($this, $rt_s(724)); + break e; + case 147: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3726); + oncipv_Cypher5Parser_map($this); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); + } } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -232414,21 +169667,66 @@ oncipv_Cypher25Parser_finishClause = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_returnClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ReturnClauseContext; +oncipv_Cypher5Parser_map = $this => { + let $_localctx, $_la, var$3, var$4, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$MapContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 16, 8); + oavr_Parser_enterRule($this, $_localctx, 654, 327); a: { b: { c: { d: { try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 724); - oavr_Parser_match($this, 227); - oavr_Recognizer_setState($this, 725); - oncipv_Cypher25Parser_returnBody($this); + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3730); + oavr_Parser_match($this, 147); + oavr_Recognizer_setState($this, 3744); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221224448, 4294737919)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4290969599, 4022337519)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4294967265)), Long_ZERO))) { + var$4 = $_la - 192 | 0; + if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(3166697087, 4286545919)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if ($_la & (-64)) + break e; + if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) + break e; + } + } + } + } + oavr_Recognizer_setState($this, 3731); + oncipv_Cypher5Parser_propertyKeyName($this); + oavr_Recognizer_setState($this, 3732); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 3733); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 3741); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + while (true) { + if ($_la != 49) + break e; + oavr_Recognizer_setState($this, 3734); + oavr_Parser_match($this, 49); + oavr_Recognizer_setState($this, 3735); + oncipv_Cypher5Parser_propertyKeyName($this); + oavr_Recognizer_setState($this, 3736); + oavr_Parser_match($this, 47); + oavr_Recognizer_setState($this, 3737); + oncipv_Cypher5Parser_expression($this); + oavr_Recognizer_setState($this, 3743); + $this.$_errHandler.$sync($this); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + } + } + oavr_Recognizer_setState($this, 3746); + oavr_Parser_match($this, 217); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -232460,67 +169758,377 @@ oncipv_Cypher25Parser_returnClause = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_returnBody = $this => { +oncipv_Cypher5Parser_symbolicVariableNameString = $this => { let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ReturnBodyContext; + $_localctx = new oncipv_Cypher5Parser$SymbolicVariableNameStringContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 18, 9); + oavr_Parser_enterRule($this, $_localctx, 656, 328); a: { b: { c: { d: { try { e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 728); + oavr_Recognizer_setState($this, 3750); $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 9, $this.$_ctx)) { - case 1: - break; - default: + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3748); + oncipv_Cypher5Parser_escapedSymbolicVariableNameString($this); break e; - } - oavr_Recognizer_setState($this, 727); - oavr_Parser_match($this, 77); - } - f: { - oavr_Recognizer_setState($this, 730); - oncipv_Cypher25Parser_returnItems($this); - oavr_Recognizer_setState($this, 732); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 10, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 731); - oncipv_Cypher25Parser_orderBy($this); - } - g: { - oavr_Recognizer_setState($this, 735); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 11, $this.$_ctx)) { - case 1: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 168: + case 169: + case 170: + case 171: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 178: + case 179: + case 180: + case 181: + case 182: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 283: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3749); + oncipv_Cypher5Parser_unescapedSymbolicVariableNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: break; default: - break g; } - oavr_Recognizer_setState($this, 734); - oncipv_Cypher25Parser_skip($this); + $rt_throw(oavr_NoViableAltException__init_($this)); } - h: { - oavr_Recognizer_setState($this, 738); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 12, $this.$_ctx)) { - case 1: - break; - default: - break h; - } - oavr_Recognizer_setState($this, 737); - oncipv_Cypher25Parser_limit($this); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof oavr_RecognitionException) { + $re = $$je; + break d; + } else{ + $_localctx = $$je; + break c; } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + break a; + } + try { + $_localctx.$exception = $re; + $this.$_errHandler.$reportError($this, $re); + $this.$_errHandler.$recover($this, $re); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $_localctx = $$je; + + } + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($_localctx); + } + oncipa_AstBuildingAntlrParser_exitRule$($this); + } + return $_localctx; +}, +oncipv_Cypher5Parser_escapedSymbolicVariableNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$EscapedSymbolicVariableNameStringContext; + oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); + oavr_Parser_enterRule($this, $_localctx, 658, 329); + a: { + b: { + c: { + d: { + try { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3752); + oncipv_Cypher5Parser_escapedSymbolicNameString($this); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -232552,27 +170160,19 @@ oncipv_Cypher25Parser_returnBody = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_returnItem = $this => { +oncipv_Cypher5Parser_unescapedSymbolicVariableNameString = $this => { let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ReturnItemContext; + $_localctx = new oncipv_Cypher5Parser$UnescapedSymbolicVariableNameStringContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 20, 10); + oavr_Parser_enterRule($this, $_localctx, 660, 330); a: { b: { c: { d: { try { oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 740); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 743); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 741); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 742); - oncipv_Cypher25Parser_variable($this); - } + oavr_Recognizer_setState($this, 3754); + oncipv_Cypher5Parser_unescapedSymbolicNameString($this); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -232603,29 +170203,26 @@ oncipv_Cypher25Parser_returnItem = $this => { oncipa_AstBuildingAntlrParser_exitRule$($this); } return $_localctx; -}, -oncipv_Cypher25Parser_returnItems = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ReturnItemsContext; +}; +let oncipv_Cypher5Parser_symbolicNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SymbolicNameStringContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 22, 11); + oavr_Parser_enterRule($this, $_localctx, 662, 331); a: { b: { c: { d: { try { e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 747); + oavr_Recognizer_setState($this, 3758); $this.$_errHandler.$sync($this); switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3756); + oncipv_Cypher5Parser_escapedSymbolicNameString($this); + break e; case 11: case 12: case 13: @@ -232644,7 +170241,7 @@ oncipv_Cypher25Parser_returnItems = $this => { case 26: case 27: case 28: - case 30: + case 29: case 31: case 32: case 33: @@ -232658,9 +170255,9 @@ oncipv_Cypher25Parser_returnItems = $this => { case 41: case 42: case 43: - case 47: - case 48: - case 49: + case 44: + case 45: + case 46: case 50: case 51: case 52: @@ -232689,10 +170286,9 @@ oncipv_Cypher25Parser_returnItems = $this => { case 75: case 76: case 77: - case 82: - case 83: - case 84: - case 85: + case 78: + case 79: + case 81: case 86: case 87: case 88: @@ -232703,10 +170299,10 @@ oncipv_Cypher25Parser_returnItems = $this => { case 93: case 94: case 95: + case 96: case 97: case 98: case 99: - case 100: case 101: case 102: case 103: @@ -232720,15 +170316,15 @@ oncipv_Cypher25Parser_returnItems = $this => { case 111: case 112: case 113: + case 114: case 115: case 116: case 117: - case 118: case 119: + case 120: case 121: case 122: case 123: - case 124: case 125: case 126: case 127: @@ -232744,24 +170340,20 @@ oncipv_Cypher25Parser_returnItems = $this => { case 137: case 138: case 139: + case 140: + case 141: case 142: case 143: - case 145: - case 146: - case 147: - case 148: case 149: case 150: case 151: + case 152: case 153: case 154: - case 155: - case 156: case 157: - case 161: - case 162: - case 163: - case 164: + case 158: + case 159: + case 160: case 165: case 166: case 167: @@ -232791,29 +170383,28 @@ oncipv_Cypher25Parser_returnItems = $this => { case 191: case 192: case 193: + case 194: case 195: case 196: + case 197: case 198: - case 199: - case 200: case 201: case 202: - case 203: case 204: case 205: case 206: case 207: + case 208: case 209: + case 210: + case 211: case 212: case 213: - case 214: case 215: - case 217: case 218: case 219: case 220: case 221: - case 222: case 223: case 224: case 225: @@ -232824,19 +170415,19 @@ oncipv_Cypher25Parser_returnItems = $this => { case 230: case 231: case 232: + case 233: case 234: case 235: case 236: case 237: case 238: - case 239: case 240: + case 241: case 242: case 243: case 244: case 245: case 246: - case 247: case 248: case 249: case 250: @@ -232854,12 +170445,12 @@ oncipv_Cypher25Parser_returnItems = $this => { case 262: case 263: case 264: + case 265: case 266: case 267: case 268: case 269: case 270: - case 271: case 272: case 273: case 274: @@ -232891,149 +170482,54 @@ oncipv_Cypher25Parser_returnItems = $this => { case 300: case 301: case 302: - oavr_Recognizer_setState($this, 746); - oncipv_Cypher25Parser_returnItem($this); + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3757); + oncipv_Cypher5Parser_unescapedSymbolicNameString($this); break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: + case 30: + case 47: + case 48: + case 49: case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: case 144: - case 152: - case 158: - case 159: - case 160: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Recognizer_setState($this, 745); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 753); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 749); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 750); - oncipv_Cypher25Parser_returnItem($this); - oavr_Recognizer_setState($this, 755); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher25Parser_orderItem = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$OrderItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 24, 12); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 756); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 759); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case -1: - case 38: - case 46: - case 57: - case 69: - case 74: - case 106: - case 109: - case 132: + case 145: case 146: + case 147: case 148: case 155: case 156: - case 170: - case 180: - case 183: - case 187: - case 211: - case 220: - case 227: - case 233: - case 241: - case 244: - case 249: - case 252: - case 261: - case 279: - case 282: - case 284: - case 294: - case 295: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: break; - case 24: - case 25: - oavr_Recognizer_setState($this, 757); - oncipv_Cypher25Parser_ascToken($this); - break e; - case 71: - case 72: - oavr_Recognizer_setState($this, 758); - oncipv_Cypher25Parser_descToken($this); - break e; default: - break e; } + $rt_throw(oavr_NoViableAltException__init_($this)); } } catch ($$e) { $$je = $rt_wrapException($$e); @@ -233066,79 +170562,19 @@ oncipv_Cypher25Parser_orderItem = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_ascToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AscTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 26, 13); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 761); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 24 && $_la != 25) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher25Parser_descToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DescTokenContext; +oncipv_Cypher5Parser_escapedSymbolicNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$EscapedSymbolicNameStringContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 28, 14); + oavr_Parser_enterRule($this, $_localctx, 664, 332); a: { b: { c: { d: { try { oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 763); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 71 && $_la != 72) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } + oavr_Recognizer_setState($this, 3760); + oavr_Parser_match($this, 10); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -233170,34 +170606,359 @@ oncipv_Cypher25Parser_descToken = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_orderBy = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$OrderByContext; +oncipv_Cypher5Parser_unescapedSymbolicNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 30, 15); + oavr_Parser_enterRule($this, $_localctx, 666, 333); a: { b: { c: { d: { try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 765); - oavr_Parser_match($this, 187); - oavr_Recognizer_setState($this, 766); - oavr_Parser_match($this, 37); - oavr_Recognizer_setState($this, 767); - oncipv_Cypher25Parser_orderItem($this); - oavr_Recognizer_setState($this, 772); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 768); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 769); - oncipv_Cypher25Parser_orderItem($this); - oavr_Recognizer_setState($this, 774); + e: { + oavr_Recognizer_setState($this, 3771); $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 180: + case 181: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3762); + oncipv_Cypher5Parser_unescapedLabelSymbolicNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + break; + case 168: + oavr_Parser_enterOuterAlt($this, $_localctx, 6); + oavr_Recognizer_setState($this, 3767); + oavr_Parser_match($this, 168); + break e; + case 169: + oavr_Parser_enterOuterAlt($this, $_localctx, 7); + oavr_Recognizer_setState($this, 3768); + oavr_Parser_match($this, 169); + break e; + case 170: + oavr_Parser_enterOuterAlt($this, $_localctx, 8); + oavr_Recognizer_setState($this, 3769); + oavr_Parser_match($this, 170); + break e; + case 171: + oavr_Parser_enterOuterAlt($this, $_localctx, 9); + oavr_Recognizer_setState($this, 3770); + oavr_Parser_match($this, 171); + break e; + case 178: + oavr_Parser_enterOuterAlt($this, $_localctx, 5); + oavr_Recognizer_setState($this, 3766); + oavr_Parser_match($this, 178); + break e; + case 179: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3763); + oavr_Parser_match($this, 179); + break e; + case 182: + oavr_Parser_enterOuterAlt($this, $_localctx, 3); + oavr_Recognizer_setState($this, 3764); + oavr_Parser_match($this, 182); + break e; + case 283: + oavr_Parser_enterOuterAlt($this, $_localctx, 4); + oavr_Recognizer_setState($this, 3765); + oavr_Parser_match($this, 283); + break e; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); } } catch ($$e) { $$je = $rt_wrapException($$e); @@ -233230,29 +170991,333 @@ oncipv_Cypher25Parser_orderBy = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_skip = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SkipContext; +oncipv_Cypher5Parser_symbolicLabelNameString = $this => { + let $_localctx, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$SymbolicLabelNameStringContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 32, 16); + oavr_Parser_enterRule($this, $_localctx, 668, 334); a: { b: { c: { d: { try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 775); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 180 && $_la != 252) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); + e: { + oavr_Recognizer_setState($this, 3775); + $this.$_errHandler.$sync($this); + switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { + case 10: + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3773); + oncipv_Cypher5Parser_escapedSymbolicNameString($this); + break e; + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: + case 18: + case 19: + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + case 27: + case 28: + case 29: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 38: + case 39: + case 40: + case 41: + case 42: + case 43: + case 44: + case 45: + case 46: + case 50: + case 51: + case 52: + case 53: + case 54: + case 55: + case 56: + case 57: + case 58: + case 59: + case 60: + case 61: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 81: + case 86: + case 87: + case 88: + case 89: + case 90: + case 91: + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + case 98: + case 99: + case 101: + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + case 108: + case 109: + case 110: + case 111: + case 112: + case 113: + case 114: + case 115: + case 116: + case 117: + case 119: + case 120: + case 121: + case 122: + case 123: + case 125: + case 126: + case 127: + case 128: + case 129: + case 130: + case 131: + case 132: + case 133: + case 134: + case 135: + case 136: + case 137: + case 138: + case 139: + case 140: + case 141: + case 142: + case 143: + case 149: + case 150: + case 151: + case 152: + case 153: + case 154: + case 157: + case 158: + case 159: + case 160: + case 165: + case 166: + case 167: + case 172: + case 173: + case 174: + case 175: + case 176: + case 177: + case 180: + case 181: + case 183: + case 184: + case 185: + case 186: + case 187: + case 188: + case 189: + case 190: + case 191: + case 192: + case 193: + case 194: + case 195: + case 196: + case 197: + case 198: + case 201: + case 202: + case 204: + case 205: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 212: + case 213: + case 215: + case 218: + case 219: + case 220: + case 221: + case 223: + case 224: + case 225: + case 226: + case 227: + case 228: + case 229: + case 230: + case 231: + case 232: + case 233: + case 234: + case 235: + case 236: + case 237: + case 238: + case 240: + case 241: + case 242: + case 243: + case 244: + case 245: + case 246: + case 248: + case 249: + case 250: + case 251: + case 252: + case 253: + case 254: + case 255: + case 256: + case 257: + case 258: + case 259: + case 260: + case 261: + case 262: + case 263: + case 264: + case 265: + case 266: + case 267: + case 268: + case 269: + case 270: + case 272: + case 273: + case 274: + case 275: + case 276: + case 277: + case 278: + case 279: + case 280: + case 281: + case 282: + case 284: + case 285: + case 286: + case 287: + case 288: + case 289: + case 290: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 305: + case 306: + case 307: + case 308: + case 309: + oavr_Parser_enterOuterAlt($this, $_localctx, 2); + oavr_Recognizer_setState($this, 3774); + oncipv_Cypher5Parser_unescapedLabelSymbolicNameString($this); + break e; + case 30: + case 47: + case 48: + case 49: + case 80: + case 82: + case 83: + case 84: + case 85: + case 100: + case 118: + case 124: + case 144: + case 145: + case 146: + case 147: + case 148: + case 155: + case 156: + case 161: + case 162: + case 163: + case 164: + case 168: + case 169: + case 170: + case 171: + case 178: + case 179: + case 182: + case 199: + case 200: + case 203: + case 214: + case 216: + case 217: + case 222: + case 239: + case 247: + case 271: + case 283: + break; + default: + } + $rt_throw(oavr_NoViableAltException__init_($this)); } - oavr_Recognizer_setState($this, 776); - oncipv_Cypher25Parser_expression($this); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -233284,21 +171349,19 @@ oncipv_Cypher25Parser_skip = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_limit = $this => { +oncipv_Cypher5Parser_unescapedLabelSymbolicNameString = $this => { let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LimitContext; + $_localctx = new oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 34, 17); + oavr_Parser_enterRule($this, $_localctx, 670, 335); a: { b: { c: { d: { try { oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 778); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 779); - oncipv_Cypher25Parser_expression($this); + oavr_Recognizer_setState($this, 3777); + oncipv_Cypher5Parser_unescapedLabelSymbolicNameString_($this); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -233330,21 +171393,41 @@ oncipv_Cypher25Parser_limit = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_whereClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$WhereClauseContext; +oncipv_Cypher5Parser_unescapedLabelSymbolicNameString_ = $this => { + let $_localctx, $_la, var$3, $re, $$je; + $_localctx = new oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context; oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 36, 18); + oavr_Parser_enterRule($this, $_localctx, 672, 336); a: { b: { c: { d: { try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 781); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 782); - oncipv_Cypher25Parser_expression($this); + e: { + oavr_Parser_enterOuterAlt($this, $_localctx, 1); + oavr_Recognizer_setState($this, 3779); + $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221223424, 4294737919)), Long_ZERO))) { + var$3 = $_la - 64 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4290969599, 4022337519)), Long_ZERO))) { + var$3 = $_la - 128 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4289982689)), Long_ZERO))) { + var$3 = $_la - 192 | 0; + if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697087, 4286545919)), Long_ZERO))) { + $_la = $_la - 256 | 0; + if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4160716799, 4194303)), Long_ZERO))) { + $this.$_errHandler.$recoverInline($this); + break e; + } + } + } + } + } + if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) + $this.$matchedEOF = 1; + $this.$_errHandler.$reportMatch($this); + oavr_Parser_consume($this); + } } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof oavr_RecognitionException) { @@ -233376,29305 +171459,13545 @@ oncipv_Cypher25Parser_whereClause = $this => { } return $_localctx; }, -oncipv_Cypher25Parser_withClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$WithClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 38, 19); +oncipv_Cypher5Parser__clinit_ = () => { + let var$1, $i, var$3, var$4; + oavr_RuntimeMetaData_checkVersion($rt_s(4577), $rt_s(4577)); + oncipv_Cypher5Parser__sharedContextCache = oavra_PredictionContextCache__init_(); + oncipv_Cypher5Parser_ruleNames = oncipv_Cypher5Parser_makeRuleNames(); + oncipv_Cypher5Parser__LITERAL_NAMES = oncipv_Cypher5Parser_makeLiteralNames(); + var$1 = oncipv_Cypher5Parser_makeSymbolicNames(); + oncipv_Cypher5Parser__SYMBOLIC_NAMES = var$1; + oncipv_Cypher5Parser_VOCABULARY = oavr_VocabularyImpl__init_(oncipv_Cypher5Parser__LITERAL_NAMES, var$1); + oncipv_Cypher5Parser_tokenNames = $rt_createArray(jl_String, oncipv_Cypher5Parser__SYMBOLIC_NAMES.data.length); + $i = 0; + while (true) { + var$3 = oncipv_Cypher5Parser_tokenNames.data; + if ($i >= var$3.length) + break; + var$3[$i] = oavr_VocabularyImpl_getLiteralName(oncipv_Cypher5Parser_VOCABULARY, $i); + var$3 = oncipv_Cypher5Parser_tokenNames.data; + if (var$3[$i] === null) + var$3[$i] = oavr_VocabularyImpl_getSymbolicName(oncipv_Cypher5Parser_VOCABULARY, $i); + var$3 = oncipv_Cypher5Parser_tokenNames.data; + if (var$3[$i] === null) + var$3[$i] = $rt_s(4581); + $i = $i + 1 | 0; + } + oncipv_Cypher5Parser__serializedATN = oavrm_Utils_join($rt_wrapArray(jl_String, [$rt_s(4958), $rt_s(4959)]), $rt_s(4)); + var$4 = oavra_ATNDeserializer_deserialize(oavra_ATNDeserializer__init_(), jl_String_toCharArray(oncipv_Cypher5Parser__serializedATN)); + oncipv_Cypher5Parser__ATN = var$4; + oncipv_Cypher5Parser__decisionToDFA = $rt_createArray(oavrd_DFA, oavra_ATN_getNumberOfDecisions(var$4)); + $i = 0; + while ($i < oavra_ATN_getNumberOfDecisions(oncipv_Cypher5Parser__ATN)) { + oncipv_Cypher5Parser__decisionToDFA.data[$i] = oavrd_DFA__init_(oavra_ATN_getDecisionState(oncipv_Cypher5Parser__ATN, $i), $i); + $i = $i + 1 | 0; + } +}; +function oncipvaf_CypherAstBuildingAntlrParser() { + let a = this; oncipv_Cypher5Parser.call(a); + a.$exceptionFactory6 = null; + a.$notificationLogger = null; + a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0 = null; + a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0 = null; + a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0 = 0; + a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0 = 0; +} +let oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule0 = $this => { + oavr_Parser_exitRule($this); +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode0 = ($this, $x$1, $x$2) => { + return oavr_Parser_createTerminalNode($this, $x$1, $x$2); +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset0 = $this => { + oavr_Parser_reset($this); +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler0 = ($this, $x$1) => { + $this.$_errHandler = $x$1; +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners0 = ($this, $x$1, $x$2, $x$3) => { + oavr_Parser_notifyErrorListeners($this, $x$1, $x$2, $x$3); +}, +oncipvaf_CypherAstBuildingAntlrParser_exitRule = $this => { + oncipa_AstBuildingAntlrParser_exitRule$($this); +}, +oncipvaf_CypherAstBuildingAntlrParser_createTerminalNode0 = ($this, $parent, $t) => { + return oncipa_AstBuildingAntlrParser_createTerminalNode$($this, $parent, $t); +}, +oncipvaf_CypherAstBuildingAntlrParser_reset0 = $this => { + oncipa_AstBuildingAntlrParser_reset$($this); +}, +oncipvaf_CypherAstBuildingAntlrParser_addParseListener = ($this, $listener) => { + oncipa_AstBuildingAntlrParser_addParseListener$($this, $listener); +}, +oncipvaf_CypherAstBuildingAntlrParser_setErrorHandler = ($this, $handler) => { + oncipa_AstBuildingAntlrParser_setErrorHandler$($this, $handler); +}, +oncipvaf_CypherAstBuildingAntlrParser_notifyErrorListeners0 = ($this, $offendingToken, $msg, $e) => { + oncipa_AstBuildingAntlrParser_notifyErrorListeners$($this, $offendingToken, $msg, $e); +}, +oncipvaf_CypherAstBuildingAntlrParser_syntaxChecker0 = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker(); +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0 = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0; +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq0 = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0 = $x$1; +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0; +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq0 = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0 = $x$1; +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0; +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0 = $x$1; +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0 = $this => { + return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0; +}, +oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq0 = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0 = $x$1; +}, +oncipvaf_CypherAstBuildingAntlrParser_createSyntaxChecker = $this => { + let var$1; + var$1 = new oncipvaf_Cypher5SyntaxChecker; + var$1.$exceptionFactory0 = $this.$exceptionFactory6; + s_package$_$callClinit(); + var$1.$_errors = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + return var$1; +}, +oncipvaf_CypherAstBuildingAntlrParser_createAstBuilder0 = $this => { + let var$1, var$2, var$3; + var$1 = new oncipvaf_Cypher5AstBuilder; + var$2 = $this.$notificationLogger; + var$3 = $this.$exceptionFactory6; + var$1.$notificationLogger2 = var$2; + var$1.$exceptionFactory2 = var$3; + return var$1; +}, +oncipvaf_CypherAstBuildingAntlrParser_isSafeToFreeChildren = ($this, $ctx) => { + switch ($ctx.$getRuleIndex()) { + case 35: + break; + case 36: + return 0; + case 94: + return 0; + case 101: + return 0; + case 111: + return 0; + case 112: + return 0; + case 135: + return 0; + case 136: + return 0; + case 139: + return 0; + case 164: + return 0; + case 183: + return 0; + case 185: + return 0; + case 193: + return 0; + case 195: + return 0; + case 202: + return 0; + case 203: + return 0; + case 225: + return 0; + case 243: + return 0; + case 244: + return 0; + case 273: + return 0; + case 295: + return 0; + case 296: + return 0; + case 303: + return 0; + case 304: + return 0; + case 308: + return 0; + case 309: + return 0; + case 310: + return 0; + case 311: + return 0; + case 312: + return 0; + case 318: + return 0; + case 319: + return 0; + case 331: + return 0; + case 333: + return 0; + case 335: + return 0; + case 336: + return 0; + default: + return 1; + } + return 0; +}, +oncie_UnsignedDecimalIntegerLiteral$$anon$2 = $rt_classWithoutFields(oncie_UnsignedDecimalIntegerLiteral), +oncie_UnsignedDecimalIntegerLiteral$$anon$2_literalLength = $this => { + return $this.$stringVal0.$nativeString.length; +}; +function oncias_Symbol() { + let a = this; jl_Object.call(a); + a.$name12 = null; + a.$types2 = null; + a.$definition = null; + a.$uses = null; + a.$unionSymbol = 0; +} +let oncias_Symbol_references = $this => { + return $this.$uses.$incl($this.$definition); +}, +oncias_Symbol_toString = $this => { + let var$1, var$2, var$3, var$4; + var$1 = oncias_SymbolUse_uniqueName($this.$definition); + var$2 = sc_AbstractIterable_mkString($this.$uses.$map(new oncias_Symbol$toString$lambda$_14_0), $rt_s(41)); + var$3 = oncius_TypeSpec_toShortString($this.$types2); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$1 = jl_StringBuilder_append(var$4, var$1); + jl_AbstractStringBuilder_append0(var$1, 40); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, var$2), $rt_s(4960)), var$3); + return jl_AbstractStringBuilder_toString(var$4); +}, +oncias_Symbol_productArity = $this => { + return 5; +}, +oncias_Symbol_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name12; + case 1: + return $this.$types2; + case 2: + return $this.$definition; + case 3: + return $this.$uses; + case 4: + return jl_Boolean_valueOf($this.$unionSymbol); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_Symbol_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_Symbol_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4961))), sr_Statics_anyHash($this.$name12)), sr_Statics_anyHash($this.$types2)), sr_Statics_anyHash($this.$definition)), sr_Statics_anyHash($this.$uses)), !$this.$unionSymbol ? 1237 : 1231), 5); +}, +oncias_Symbol_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 784); - oavr_Parser_match($this, 295); - oavr_Recognizer_setState($this, 785); - oncipv_Cypher25Parser_returnBody($this); - oavr_Recognizer_setState($this, 787); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 786); - oncipv_Cypher25Parser_whereClause($this); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_Symbol) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$unionSymbol != $x$1.$unionSymbol) + break b; + d: { + var$2 = $this.$name12; + var$3 = $x$1.$name12; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$types2; + var$3 = $x$1.$types2; + if (var$2 !== null) { + if (!oncius_TypeSpec_equals(var$2, var$3)) + break b; + else + break e; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher25Parser_createClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 40, 20); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 789); - oavr_Parser_match($this, 57); - oavr_Recognizer_setState($this, 790); - oncipv_Cypher25Parser_patternList($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + f: { + var$2 = $this.$definition; + var$3 = $x$1.$definition; + if (var$2 !== null) { + if (!oncias_SymbolUse_equals(var$2, var$3)) + break b; + else + break f; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher25Parser_insertClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$InsertClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 42, 21); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 792); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 793); - oncipv_Cypher25Parser_insertPatternList($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + var$3 = $this.$uses; + $x$1 = $x$1.$uses; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }; -let oncipv_Cypher25Parser_setClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SetClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 44, 22); +function oncipl_UnicodeEscapeReplacementReader() { + let a = this; ji_Reader.call(a); + a.$cypher = null; + a.$srcPos = 0; + a.$offsetTable0 = null; + a.$escaped0 = 0; +} +let oncipl_UnicodeEscapeReplacementReader_DEFAULT_BUFFER_SIZE = 0, +oncipl_UnicodeEscapeReplacementReader_read = ($cypher, $maxBuffer) => { + let var$3, $antlrBuffer, $cb, $reader, $charStream, $$je; + var$3 = $cypher.$nativeString.length; + $antlrBuffer = new oavr_CodePointBuffer$Builder; + $antlrBuffer.$type2 = oavr_CodePointBuffer$Type_BYTE; + $antlrBuffer.$byteBuffer = jn_ByteBuffer_allocate(var$3); + $antlrBuffer.$charBuffer = null; + $antlrBuffer.$intBuffer = null; + $antlrBuffer.$prevHighSurrogate = (-1); + $cb = jn_CharBuffer_allocate(jl_Math_min($maxBuffer, $cypher.$nativeString.length)); + $reader = new oncipl_UnicodeEscapeReplacementReader; + ji_Reader__init_($reader); + $reader.$offsetTable0 = null; + $reader.$escaped0 = 0; + $reader.$cypher = $cypher; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 795); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 796); - oncipv_Cypher25Parser_setItem($this); - oavr_Recognizer_setState($this, 801); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 797); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 798); - oncipv_Cypher25Parser_setItem($this); - oavr_Recognizer_setState($this, 803); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + try { + while (ji_Reader_read($reader, jn_CharBuffer_clear($cb)) != (-1)) { + oavr_CodePointBuffer$Builder_append($antlrBuffer, jn_CharBuffer_flip($cb)); + } + $charStream = oavr_CodePointCharStream_fromBuffer(oavr_CodePointBuffer$Builder_build($antlrBuffer), $rt_s(561)); + $cypher = oncipl_UnicodeEscapeReplacementReader$Result__init_0($charStream, oncipl_UnicodeEscapeReplacementReader_offsetTable($reader)); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $cypher = $$je; + break a; + } else { + throw $$e; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + return $cypher; } - return $_localctx; -}, -oncipv_Cypher25Parser_setItem = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SetItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 46, 23); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 826); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 20, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$SetPropContext; - var$2 = $re; - oncipv_Cypher25Parser$SetPropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 804); - oncipv_Cypher25Parser_propertyExpression($this); - oavr_Recognizer_setState($this, 805); - oavr_Parser_match($this, 96); - oavr_Recognizer_setState($this, 806); - oncipv_Cypher25Parser_expression($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$SetDynamicPropContext; - var$2 = $re; - oncipv_Cypher25Parser$SetDynamicPropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 808); - oncipv_Cypher25Parser_dynamicPropertyExpression($this); - oavr_Recognizer_setState($this, 809); - oavr_Parser_match($this, 96); - oavr_Recognizer_setState($this, 810); - oncipv_Cypher25Parser_expression($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$SetPropsContext; - var$2 = $re; - oncipv_Cypher25Parser$SetPropsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 812); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 813); - oavr_Parser_match($this, 96); - oavr_Recognizer_setState($this, 814); - oncipv_Cypher25Parser_expression($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$AddPropContext; - var$2 = $re; - oncipv_Cypher25Parser$AddPropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 816); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 817); - oavr_Parser_match($this, 194); - oavr_Recognizer_setState($this, 818); - oncipv_Cypher25Parser_expression($this); - break e; - case 5: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$SetLabelsContext; - var$2 = $re; - oncipv_Cypher25Parser$SetLabelsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 820); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 821); - oncipv_Cypher25Parser_nodeLabels($this); - break e; - case 6: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$SetLabelsIsContext; - var$2 = $re; - oncipv_Cypher25Parser$SetLabelsIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 823); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 824); - oncipv_Cypher25Parser_nodeLabelsIs($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + b: { + try { + oncipl_UnicodeEscapeReplacementReader_close($reader); + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $cb = $$je; + } else { + throw $$e; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + jl_Throwable_addSuppressed($cypher, $cb); } - return $re; + $rt_throw($cypher); }, -oncipv_Cypher25Parser_removeClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RemoveClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 48, 24); +oncipl_UnicodeEscapeReplacementReader_read0 = ($this, $cbuf, $off, $len) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, $$je; + if ($this.$srcPos >= $this.$cypher.$nativeString.length) + return (-1); + var$4 = $this.$cypher; + var$5 = $this.$srcPos; + var$6 = var$4.$nativeString.length; + var$7 = $off + $len | 0; + var$8 = $this.$escaped0; + var$9 = $this.$offsetTable0; + var$10 = $rt_compare($len, 1); + var$11 = $off; a: { - b: { - c: { - d: { + while (true) { + if (var$5 >= var$6) + break a; + if (var$11 >= var$7) + break a; + var$12 = jl_String_charAt(var$4, var$5); + var$13 = !var$8 && var$12 == 92 && oncipl_UnicodeEscapeReplacementReader_peek($this, var$5 + 1 | 0) == 117 ? 1 : 0; + b: { + if (var$13) { + var$14 = $this.$cypher; + $len = var$5 + 2 | 0; + var$14 = jl_String_substring(var$14, jl_Math_min($len, var$14.$nativeString.length), jl_Math_min(var$5 + 6 | 0, $this.$cypher.$nativeString.length)); try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 828); - oavr_Parser_match($this, 220); - oavr_Recognizer_setState($this, 829); - oncipv_Cypher25Parser_removeItem($this); - oavr_Recognizer_setState($this, 834); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 830); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 831); - oncipv_Cypher25Parser_removeItem($this); - oavr_Recognizer_setState($this, 836); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } + var$12 = jl_Integer_parseInt(var$14, 16) & 65535; + break b; } catch ($$e) { $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if ($$je instanceof jl_Exception) { + var$15 = oncipl_UnicodeEscapeReplacementReader_inputPositionAt($this, $len); + var$9 = new oncipl_UnicodeEscapeReplacementReader$InvalidUnicodeLiteral; + $cbuf = $rt_createArray(jl_Object, 1); + $cbuf.data[0] = var$14; + var$14 = jl_String_format($rt_s(4962), $cbuf); + $len = var$15.$line1; + $off = var$15.$column0; + jl_Throwable__init_(var$9, var$14); + var$9.$offset6 = var$5; + var$9.$line8 = $len; + var$9.$column4 = $off; + $rt_throw(var$9); + } else { + throw $$e; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher25Parser_removeItem = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RemoveItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 50, 25); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 845); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 22, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$RemovePropContext; - var$2 = $re; - oncipv_Cypher25Parser$RemovePropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 837); - oncipv_Cypher25Parser_propertyExpression($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$RemoveDynamicPropContext; - var$2 = $re; - oncipv_Cypher25Parser$RemoveDynamicPropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 838); - oncipv_Cypher25Parser_dynamicPropertyExpression($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$RemoveLabelsContext; - var$2 = $re; - oncipv_Cypher25Parser$RemoveLabelsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 839); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 840); - oncipv_Cypher25Parser_nodeLabels($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$RemoveLabelsIsContext; - var$2 = $re; - oncipv_Cypher25Parser$RemoveLabelsIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 842); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 843); - oncipv_Cypher25Parser_nodeLabelsIs($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + var$16 = jl_Character_isHighSurrogate(var$12); + if (var$16 && (var$11 + 1 | 0) == var$7 && (var$5 + 1 | 0) < var$6 && var$10 > 0) + break a; + if (!(var$9 === null && !var$13 && !var$16)) { + var$14 = $this.$offsetTable0; + if (var$14 === null) { + var$14 = new oncipl_UnicodeEscapeReplacementReader$OffsetTableBuilder; + var$15 = oncipl_UnicodeEscapeReplacementReader_inputPositionAt($this, var$5); + var$17 = jl_String_charAt($this.$cypher, var$5); + var$9 = new oecilmp_IntArrayList; + var$9.$items3 = oecilmp_IntArrayList_DEFAULT_SIZED_EMPTY_ARRAY; + var$14.$offsets = var$9; + oecilmp_IntArrayList_addAll(var$9, $rt_createIntArrayFromData([var$15.$offset0, var$15.$line1, var$15.$column0])); + var$14.$lastSrcChar = var$17; + var$14.$lastDestChar = var$12; + $this.$offsetTable0 = var$14; + } else { + $len = jl_String_charAt($this.$cypher, var$5); + var$15 = var$14.$offsets; + var$18 = oecilmp_IntArrayList_get(var$15, var$15.$size7 - 2 | 0); + var$15 = var$14.$offsets; + var$19 = var$15.$size7; + if (var$19 ? 0 : 1) + break; + c: { + var$16 = (var$15.$items3.data[var$19 - 1 | 0] + var$5 | 0) - oecilmp_IntArrayList_get(var$15, var$19 - 3 | 0) | 0; + var$17 = var$14.$lastSrcChar; + if (var$17 != 10) { + if (var$17 != 13) + break c; + if ($len == 10) + break c; } + var$18 = var$18 + 1 | 0; + var$16 = 1; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (!(jl_Character_isHighSurrogate(var$14.$lastDestChar) && jl_Character_isLowSurrogate(var$12))) + oecilmp_IntArrayList_addAll(var$14.$offsets, $rt_createIntArrayFromData([var$5, var$18, var$16])); + var$14.$lastSrcChar = $len; + var$14.$lastDestChar = var$12; } + var$9 = $this.$offsetTable0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$8 = !var$8 && !var$13 && var$12 == 92 ? 1 : 0; + var$20 = $cbuf.data; + $len = var$11 + 1 | 0; + var$20[var$11] = var$12; + var$5 = var$5 + (!var$13 ? 1 : 6) | 0; + var$11 = $len; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + $rt_throw(oecilmp_IntArrayList_newIndexOutOfBoundsException(var$15, 0)); } - return $re; + $this.$srcPos = var$5; + $this.$escaped0 = var$8; + return var$11 - $off | 0; }, -oncipv_Cypher25Parser_deleteClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DeleteClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 52, 26); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 848); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 74 && $_la != 170)) { - oavr_Recognizer_setState($this, 847); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 74 && $_la != 170) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 850); - oavr_Parser_match($this, 69); - oavr_Recognizer_setState($this, 851); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 856); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 852); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 853); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 858); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipl_UnicodeEscapeReplacementReader_peek = ($this, $pos) => { + return $pos >= $this.$cypher.$nativeString.length ? 0 : jl_String_charAt($this.$cypher, $pos); +}, +oncipl_UnicodeEscapeReplacementReader_inputPositionAt = ($this, $pos) => { + let $line, $col, $i, $c; + $line = 1; + $col = 1; + $i = 0; + while ($i < $pos && $i < $this.$cypher.$nativeString.length) { + a: { + $c = jl_String_charAt($this.$cypher, $i); + if ($c != 10) { + if ($c != 13) + break a; + if (oncipl_UnicodeEscapeReplacementReader_peek($this, $i + 1 | 0) == 10) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $line = $line + 1 | 0; + $col = 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $col = $col + 1 | 0; + $i = $i + 1 | 0; + } + return onciu_InputPosition_apply($pos, $line, $col); +}, +oncipl_UnicodeEscapeReplacementReader_offsetTable = $this => { + let var$1, var$2, var$3; + var$1 = $this.$offsetTable0; + if (var$1 === null) + var$2 = null; + else { + var$1 = var$1.$offsets; + var$3 = var$1.$size7; + var$2 = $rt_createIntArray(var$3); + jl_System_fastArraycopy(var$1.$items3, 0, var$2, 0, var$3); + } + return var$2; +}, +oncipl_UnicodeEscapeReplacementReader_close = $this => { + return; +}, +oncipl_UnicodeEscapeReplacementReader__clinit_ = () => { + oncipl_UnicodeEscapeReplacementReader_DEFAULT_BUFFER_SIZE = 4096; +}; +function oncia_AliasedReturnItem() { + let a = this; jl_Object.call(a); + a.$expression29 = null; + a.$variable14 = null; + a.$position177 = null; + a.$alias1 = null; + a.$name51 = null; +} +let oncia_AliasedReturnItem_isPassThrough = $this => { + return oncia_ReturnItem_isPassThrough$($this); +}, +oncia_AliasedReturnItem_semanticCheck = $this => { + return oncia_ReturnItem_semanticCheck$($this); +}, +oncia_AliasedReturnItem_expression = $this => { + return $this.$expression29; +}, +oncia_AliasedReturnItem_position = $this => { + return $this.$position177; +}, +oncia_AliasedReturnItem_alias = $this => { + return $this.$alias1; +}, +oncia_AliasedReturnItem_name = $this => { + return $this.$name51; +}, +oncia_AliasedReturnItem_copy = ($this, $expression, $variable, $position) => { + return oncia_AliasedReturnItem__init_($expression, $variable, $position); +}, +oncia_AliasedReturnItem_productPrefix = $this => { + return $rt_s(4963); +}, +oncia_AliasedReturnItem_productArity = $this => { + return 2; +}, +oncia_AliasedReturnItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression29; + case 1: + return $this.$variable14; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser_matchClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$MatchClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 54, 27); +oncia_AliasedReturnItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AliasedReturnItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AliasedReturnItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AliasedReturnItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_AliasedReturnItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expression29; + var$3 = $x$1.$expression29; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 860); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 183) { - oavr_Recognizer_setState($this, 859); - oavr_Parser_match($this, 183); - } - e: { - oavr_Recognizer_setState($this, 862); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 864); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 26, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 863); - oncipv_Cypher25Parser_matchMode($this); - } - oavr_Recognizer_setState($this, 866); - oncipv_Cypher25Parser_patternList($this); - oavr_Recognizer_setState($this, 870); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 287) { - oavr_Recognizer_setState($this, 867); - oncipv_Cypher25Parser_hint($this); - oavr_Recognizer_setState($this, 872); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 874); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 873); - oncipv_Cypher25Parser_whereClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$variable14; + $x$1 = $x$1.$variable14; + if (var$3 !== null) { + if (!oncie_Variable_equals(var$3, $x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_AliasedReturnItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher25Parser_matchMode = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$MatchModeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 56, 28); +oncia_AliasedReturnItem_dup = ($this, $children) => { + return oncia_AliasedReturnItem_copy($this, $children.$head(), $children.$apply1(1), $this.$position177); +}, +oncia_AliasedReturnItem__init_0 = ($this, $expression, $variable, $position) => { + $this.$expression29 = $expression; + $this.$variable14 = $variable; + $this.$position177 = $position; + $this.$alias1 = s_Some__init_($variable); + $this.$name51 = $variable.$name4; +}, +oncia_AliasedReturnItem__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_AliasedReturnItem(); + oncia_AliasedReturnItem__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0() { + jl_Object.call(this); + this.$_060 = null; +} +let onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0_apply = var$0 => { + return var$0.$_060; +}; +function onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1() { + jl_Object.call(this); + this.$_0611 = null; +} +let onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1_apply = (var$0, var$1) => { + return var$1.$apply2(var$0.$_0611); +}; +function oncia_SingleQuery$semanticCheckAbstract$lambda$_73_0() { + let a = this; jl_Object.call(a); + a.$_0892 = null; + a.$_1304 = null; +} +let oncia_SingleQuery$semanticCheckAbstract$lambda$_73_0_apply = var$0 => { + return var$0.$_0892.$apply2(var$0.$_1304); +}, +oncias_package$ = $rt_classWithoutFields(), +oncias_package$_MODULE$ = null, +oncias_package$__clinit_ = () => { + oncias_package$_MODULE$ = new oncias_package$; +}, +oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck = ($this, $f) => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_fromFunction(oncias_SemanticCheck$_MODULE$, $f); +}, +oncias_package$_liftSemanticEitherFunc = ($this, $func) => { + let var$2; + var$2 = new oncias_package$$liftSemanticEitherFunc$lambda$_2_0; + var$2.$_0505 = $func; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($this, var$2); +}, +oncias_package$_liftSemanticErrorDefsFunc = ($this, $func) => { + let var$2; + var$2 = new oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0; + var$2.$_0190 = $func; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($this, var$2); +}, +oncias_package$_liftSemanticErrorDefs = ($this, $errors) => { + let var$2; + var$2 = new oncias_package$$liftSemanticErrorDefs$lambda$_5_0; + var$2.$_0777 = $errors; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($this, var$2); +}, +oncias_package$_liftSemanticErrorDef = ($this, $error) => { + let var$2, var$3; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncias_package$$liftSemanticErrorDef$lambda$_6_0; + var$3.$_0381 = $error; + return oncias_SemanticCheck$_fromFunction(var$2, var$3); +}, +oncias_package$_liftSemanticErrorDefOption = ($this, $error) => { + let var$2, var$3; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncias_package$$liftSemanticErrorDefOption$lambda$_7_0; + var$3.$_0753 = $error; + return oncias_SemanticCheck$_fromFunction(var$2, var$3); +}, +oncias_package$_optionSemanticChecking = ($this, $option) => { + return $option; +}; +function oncias_SemanticState$$recordCurrentScope$lambda$_9_0() { + jl_Object.call(this); + this.$_0824 = null; +} +let oncias_SemanticState$$recordCurrentScope$lambda$_9_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0824; + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_recordCurrentScope(var$1, var$2)); +}; +function oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0() { + jl_Object.call(this); + this.$_0268 = null; +} +let oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0268; + if (var$1 instanceof oncia_Return) + var$1 = oncirr_normalizeWithAndReturnClauses_addAliasesToReturn(var$2, var$1); + return var$1; +}, +su_Try = $rt_classWithoutFields(); +function su_Success() { + su_Try.call(this); + this.$value36 = null; +} +let su_Success_getOrElse = ($this, $default) => { + return $this.$value36; +}, +su_Success__init_0 = ($this, $value) => { + $this.$value36 = $value; +}, +su_Success__init_ = var_0 => { + let var_1 = new su_Success(); + su_Success__init_0(var_1, var_0); + return var_1; +}; +function su_Failure() { + su_Try.call(this); + this.$exception0 = null; +} +let su_Failure_getOrElse = ($this, $default) => { + return $default.$_0335; +}, +scm_SortedSetOps = $rt_classWithoutFields(0), +scm_SortedSet = $rt_classWithoutFields(0), +sc_StrictOptimizedSortedSetOps = $rt_classWithoutFields(0); +function scm_TreeSet() { + let a = this; scm_AbstractSet.call(a); + a.$scala$collection$mutable$TreeSet$$tree = null; + a.$ordering = null; +} +let scm_TreeSet_concat = ($this, $that) => { + let var$2; + var$2 = scm_TreeSet_newSpecificBuilder($this); + if (var$2 === null) + $rt_throw(null); + scm_Growable_addAll$(var$2, $this); + scm_Growable_addAll$(var$2, $that); + return scm_TreeSet$$anon$1_result(var$2); +}, +scm_TreeSet_map = ($this, $f) => { + return sc_StrictOptimizedIterableOps_map$($this, $f); +}, +scm_TreeSet_flatMap = ($this, $f) => { + return sc_StrictOptimizedIterableOps_flatMap$($this, $f); +}, +scm_TreeSet_filterNot = ($this, $pred) => { + return sc_StrictOptimizedIterableOps_filterNot$($this, $pred); +}, +scm_TreeSet_filterImpl = ($this, $pred, $isFlipped) => { + return sc_StrictOptimizedIterableOps_filterImpl$($this, $pred, $isFlipped); +}, +scm_TreeSet_stringPrefix = $this => { + return $rt_s(4964); +}, +scm_TreeSet_equals = ($this, $that) => { + let var$2, var$3, var$4, var$5; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 892); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 75: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 884); - oavr_Parser_match($this, 75); - oavr_Recognizer_setState($this, 890); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 218: - f: { - oavr_Recognizer_setState($this, 885); - oavr_Parser_match($this, 218); - oavr_Recognizer_setState($this, 887); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 31, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 886); - oavr_Parser_match($this, 30); - } - break e; - case 219: - oavr_Recognizer_setState($this, 889); - oavr_Parser_match($this, 219); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 221: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 876); - oavr_Parser_match($this, 221); - oavr_Recognizer_setState($this, 882); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 90: - g: { - oavr_Recognizer_setState($this, 877); - oavr_Parser_match($this, 90); - oavr_Recognizer_setState($this, 879); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 29, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 878); - oavr_Parser_match($this, 30); - } - break e; - case 91: - oavr_Recognizer_setState($this, 881); - oavr_Parser_match($this, 91); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if ($this === $that) + var$2 = 1; + else { + b: { + c: { + if ($rt_isInstance($that, sc_SortedSet)) { + var$3 = $that; + var$4 = var$3.$ordering; + var$5 = $this.$ordering; + if (var$4 !== null) { + if (!jl_Object_equals(var$4, var$5)) + break c; + else + break b; } + if (var$5 === null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$2 = sc_Set_equals$($this, $that); + break a; + } + if (scm_TreeSet_size($this) == scm_TreeSet_size(var$3)) { + $that = scm_TreeSet_iterator($this); + var$3 = scm_TreeSet_iterator(var$3); + var$2 = 1; + while (var$2 && scm_RedBlackTree$TreeIterator_hasNext($that)) { + var$2 = onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($this.$ordering, scm_RedBlackTree$TreeIterator_next($that), scm_RedBlackTree$TreeIterator_next(var$3)) ? 0 : 1; + } + if (var$2) { + var$2 = 1; + break a; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$2 = 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + return var$2; }, -oncipv_Cypher25Parser_hint = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$HintContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 58, 29); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 894); - oavr_Parser_match($this, 287); - oavr_Recognizer_setState($this, 920); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 128: - case 195: - case 209: - case 262: - f: { - oavr_Recognizer_setState($this, 902); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 128: - oavr_Recognizer_setState($this, 895); - oavr_Parser_match($this, 128); - break f; - case 195: - oavr_Recognizer_setState($this, 900); - oavr_Parser_match($this, 195); - oavr_Recognizer_setState($this, 901); - oavr_Parser_match($this, 128); - break f; - case 209: - oavr_Recognizer_setState($this, 898); - oavr_Parser_match($this, 209); - oavr_Recognizer_setState($this, 899); - oavr_Parser_match($this, 128); - break f; - case 262: - oavr_Recognizer_setState($this, 896); - oavr_Parser_match($this, 262); - oavr_Recognizer_setState($this, 897); - oavr_Parser_match($this, 128); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - g: { - oavr_Recognizer_setState($this, 905); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 35, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 904); - oavr_Parser_match($this, 240); - } - oavr_Recognizer_setState($this, 907); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 908); - oncipv_Cypher25Parser_labelOrRelType($this); - oavr_Recognizer_setState($this, 909); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 910); - oncipv_Cypher25Parser_nonEmptyNameList($this); - oavr_Recognizer_setState($this, 911); - oavr_Parser_match($this, 233); - break e; - case 136: - oavr_Recognizer_setState($this, 913); - oavr_Parser_match($this, 136); - oavr_Recognizer_setState($this, 914); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 915); - oncipv_Cypher25Parser_nonEmptyNameList($this); - break e; - case 234: - oavr_Recognizer_setState($this, 916); - oavr_Parser_match($this, 234); - oavr_Recognizer_setState($this, 917); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 918); - oncipv_Cypher25Parser_labelOrRelType($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +scm_TreeSet_fromSpecific = ($this, $coll) => { + return scm_TreeSet$_from(scm_TreeSet$_MODULE$, $coll, $this.$ordering); +}, +scm_TreeSet_newSpecificBuilder = $this => { + let var$1, var$2; + var$1 = $this.$ordering; + var$2 = new scm_TreeSet$$anon$1; + var$2.$ordering$1 = var$1; + var$2.$tree = scm_RedBlackTree$Tree$_empty(scm_RedBlackTree$Tree$_MODULE$); + return var$2; +}, +scm_TreeSet_iterator = $this => { + let $keysIterator_tree, $keysIterator_end, $keysIterator_evidence$4, var$4, var$5, var$6, var$7, var$8; + $keysIterator_tree = $this.$scala$collection$mutable$TreeSet$$tree; + $keysIterator_end = s_None$_MODULE$; + $keysIterator_evidence$4 = $this.$ordering; + var$4 = new scm_RedBlackTree$KeysIterator; + var$4.$end4 = $keysIterator_end; + var$4.$ord1 = $keysIterator_evidence$4; + if (jl_Object_equals($keysIterator_end, $keysIterator_end)) + var$5 = scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$minNode(scm_RedBlackTree$_MODULE$, $keysIterator_tree.$root0); + else { + if (!($keysIterator_end instanceof s_Some)) + $rt_throw(s_MatchError__init_($keysIterator_end)); + var$6 = $keysIterator_end.$value5; + $keysIterator_end = scm_RedBlackTree$_MODULE$; + $keysIterator_tree = $keysIterator_tree.$root0; + if ($keysIterator_tree === null) + var$5 = null; + else { + var$5 = null; + var$7 = 1; + while ($keysIterator_tree !== null && var$7) { + var$7 = onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($keysIterator_evidence$4, var$6, $keysIterator_tree.$key2); + var$8 = var$7 >= 0 ? $keysIterator_tree.$right : $keysIterator_tree.$left0; + var$5 = $keysIterator_tree; + $keysIterator_tree = var$8; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (var$7 > 0) + var$5 = scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$successor($keysIterator_end, var$5); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + var$4.$nextNode = var$5; + scm_RedBlackTree$TreeIterator_setNullIfAfterEnd(var$4); + return var$4; }, -oncipv_Cypher25Parser_mergeClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$MergeClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 60, 30); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 922); - oavr_Parser_match($this, 156); - oavr_Recognizer_setState($this, 923); - oncipv_Cypher25Parser_pattern($this); - oavr_Recognizer_setState($this, 927); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 181) { - oavr_Recognizer_setState($this, 924); - oncipv_Cypher25Parser_mergeAction($this); - oavr_Recognizer_setState($this, 929); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); +scm_TreeSet_contains = ($this, $elem) => { + let var$2, var$3, var$4; + var$2 = scm_RedBlackTree$_MODULE$; + var$3 = $this.$scala$collection$mutable$TreeSet$$tree; + var$4 = $this.$ordering; + return scm_RedBlackTree$_getNode(var$2, var$3.$root0, $elem, var$4) === null ? 0 : 1; +}, +scm_TreeSet_className = $this => { + return $rt_s(4965); +}, +scm_TreeSet_size = $this => { + return $this.$scala$collection$mutable$TreeSet$$tree.$size8; +}, +scm_TreeSet_knownSize = $this => { + return scm_TreeSet_size($this); +}, +scm_TreeSet_isEmpty = $this => { + return $this.$scala$collection$mutable$TreeSet$$tree.$root0 !== null ? 0 : 1; +}, +scm_TreeSet_head = $this => { + let var$1; + var$1 = scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$minNode(scm_RedBlackTree$_MODULE$, $this.$scala$collection$mutable$TreeSet$$tree.$root0); + return (var$1 === null ? s_None$_MODULE$ : s_Some__init_(var$1.$key2)).$get1(); +}, +scm_TreeSet_foreach = ($this, $f) => { + let var$2, var$3, var$4; + var$2 = scm_RedBlackTree$_MODULE$; + var$3 = $this.$scala$collection$mutable$TreeSet$$tree.$root0; + if (var$3 !== null) + while (true) { + var$4 = var$3.$left0; + if (var$4 !== null) + scm_RedBlackTree$_g$1(var$2, var$4, $f); + $f.$apply2(var$3.$key2); + var$3 = var$3.$right; + if (var$3 === null) + break; + } +}, +scm_TreeSet_fromSpecific1 = ($this, $coll) => { + return scm_TreeSet_fromSpecific($this, $coll); +}, +scm_TreeSet_fromSpecific0 = ($this, $coll) => { + return scm_TreeSet_fromSpecific($this, $coll); +}, +scm_TreeSet_subtractOne = ($this, $elem) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = scm_RedBlackTree$_MODULE$; + var$3 = $this.$scala$collection$mutable$TreeSet$$tree; + var$4 = $this.$ordering; + $elem = scm_RedBlackTree$_getNode(var$2, var$3.$root0, $elem, var$4); + if ($elem !== null) { + var$5 = $elem.$red; + var$6 = $elem.$left0; + if (var$6 === null) { + var$6 = $elem.$right; + scm_RedBlackTree$_transplant(var$2, var$3, $elem, var$6); + var$4 = $elem.$parent0; + } else { + var$7 = $elem.$right; + if (var$7 === null) { + scm_RedBlackTree$_transplant(var$2, var$3, $elem, var$6); + var$4 = $elem.$parent0; + } else { + var$7 = scm_RedBlackTree$_minNodeNonNull(var$2, var$7); + var$5 = var$7.$red; + var$6 = var$7.$right; + var$4 = var$7.$parent0; + if (var$4 === $elem) + var$4 = var$7; + else { + scm_RedBlackTree$_transplant(var$2, var$3, var$7, var$6); + var$8 = $elem.$right; + var$7.$right = var$8; + var$8.$parent0 = var$7; + } + scm_RedBlackTree$_transplant(var$2, var$3, $elem, var$7); + var$8 = $elem.$left0; + var$7.$left0 = var$8; + var$8.$parent0 = var$7; + var$7.$red = $elem.$red; + } + } + if (!var$5) { + while (var$6 !== var$3.$root0 && scm_RedBlackTree$_isBlack(var$2, var$6)) { + $elem = var$4.$left0; + if (var$6 !== $elem) { + if ($elem.$red) { + $elem.$red = 0; + var$4.$red = 1; + scm_RedBlackTree$_rotateRight(var$2, var$3, var$4); + $elem = var$4.$left0; + } + if (scm_RedBlackTree$_isBlack(var$2, $elem.$right) && scm_RedBlackTree$_isBlack(var$2, $elem.$left0)) + $elem.$red = 1; + else { + if (scm_RedBlackTree$_isBlack(var$2, $elem.$left0)) { + $elem.$right.$red = 0; + $elem.$red = 1; + scm_RedBlackTree$_rotateLeft(var$2, var$3, $elem); + $elem = var$4.$left0; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + $elem.$red = var$4.$red; + var$4.$red = 0; + $elem.$left0.$red = 0; + scm_RedBlackTree$_rotateRight(var$2, var$3, var$4); + var$4 = var$3.$root0; + } + } else { + $elem = var$4.$right; + if ($elem.$red) { + $elem.$red = 0; + var$4.$red = 1; + scm_RedBlackTree$_rotateLeft(var$2, var$3, var$4); + $elem = var$4.$right; + } + if (scm_RedBlackTree$_isBlack(var$2, $elem.$left0) && scm_RedBlackTree$_isBlack(var$2, $elem.$right)) + $elem.$red = 1; + else { + if (scm_RedBlackTree$_isBlack(var$2, $elem.$right)) { + $elem.$left0.$red = 0; + $elem.$red = 1; + scm_RedBlackTree$_rotateRight(var$2, var$3, $elem); + $elem = var$4.$right; } + $elem.$red = var$4.$red; + var$4.$red = 0; + $elem.$right.$red = 0; + scm_RedBlackTree$_rotateLeft(var$2, var$3, var$4); + var$4 = var$3.$root0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } + $elem = var$4.$parent0; + var$6 = var$4; + var$4 = $elem; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (var$6 !== null) + var$6.$red = 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3.$size8 = var$3.$size8 - 1 | 0; } - return $_localctx; + return $this; }, -oncipv_Cypher25Parser_mergeAction = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$MergeActionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 62, 31); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 930); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 931); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 57 && $_la != 155) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 932); - oncipv_Cypher25Parser_setClause($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +scm_TreeSet_addOne = ($this, $elem) => { + scm_RedBlackTree$_insert(scm_RedBlackTree$_MODULE$, $this.$scala$collection$mutable$TreeSet$$tree, $elem, null, $this.$ordering); + return $this; +}, +scm_TreeSet__init_0 = ($this, $tree, $ordering) => { + $this.$scala$collection$mutable$TreeSet$$tree = $tree; + $this.$ordering = $ordering; + if ($ordering !== null) + return; + $ordering = new jl_NullPointerException; + jl_Throwable__init_($ordering, $rt_s(4966)); + $rt_throw($ordering); +}, +scm_TreeSet__init_ = (var_0, var_1) => { + let var_2 = new scm_TreeSet(); + scm_TreeSet__init_0(var_2, var_0, var_1); + return var_2; +}; +function scm_RedBlackTree$Tree() { + let a = this; jl_Object.call(a); + a.$root0 = null; + a.$size8 = 0; +} +let scm_RedBlackTree$Tree__init_0 = ($this, $root, $size) => { + $this.$root0 = $root; + $this.$size8 = $size; +}, +scm_RedBlackTree$Tree__init_ = (var_0, var_1) => { + let var_2 = new scm_RedBlackTree$Tree(); + scm_RedBlackTree$Tree__init_0(var_2, var_0, var_1); + return var_2; +}, +scm_RedBlackTree$ = $rt_classWithoutFields(), +scm_RedBlackTree$_MODULE$ = null, +scm_RedBlackTree$__clinit_ = () => { + scm_RedBlackTree$_MODULE$ = new scm_RedBlackTree$; +}, +scm_RedBlackTree$_isRed = ($this, $node) => { + if ($node !== null && $node.$red) + return 1; + return 0; +}, +scm_RedBlackTree$_isBlack = ($this, $node) => { + if ($node !== null && $node.$red) + return 0; + return 1; +}, +scm_RedBlackTree$_getNode = ($this, $node, $key, $ord) => { + let $cmp; + while (true) { + if ($node === null) + return null; + $cmp = $rt_compare(onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($ord, $key, $node.$key2), 0); + if ($cmp < 0) { + $node = $node.$left0; + continue; + } + if ($cmp <= 0) + break; + $node = $node.$right; + } + return $node; +}, +scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$minNode = ($this, $node) => { + if ($node !== null) + return scm_RedBlackTree$_minNodeNonNull($this, $node); + return null; +}, +scm_RedBlackTree$_minNodeNonNull = ($this, $node) => { + let $node_0; + while (true) { + $node_0 = $node.$left0; + if ($node_0 === null) + break; + $node = $node_0; + } + return $node; +}, +scm_RedBlackTree$_insert = ($this, $tree, $key, $value, $ord) => { + let $y, $x, $cmp, $z, var$9; + $y = null; + $x = $tree.$root0; + $cmp = 1; + while ($x !== null && $cmp) { + $cmp = onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($ord, $key, $x.$key2); + $z = $cmp >= 0 ? $x.$right : $x.$left0; + $y = $x; + $x = $z; + } + var$9 = $rt_compare($cmp, 0); + if (!var$9) { + $y.$value30 = $value; + return; + } + $z = scm_RedBlackTree$Node__init_($key, $value, 1, null, null, $y); + if ($y === null) + $tree.$root0 = $z; + else if (var$9 >= 0) + $y.$right = $z; + else + $y.$left0 = $z; + while (scm_RedBlackTree$_isRed($this, $z.$parent0)) { + $ord = $z.$parent0; + $value = $ord.$parent0; + $key = $value.$left0; + if ($ord !== $key) { + if (scm_RedBlackTree$_isRed($this, $key)) { + $value = $z.$parent0; + $value.$red = 0; + $key.$red = 0; + $z = $value.$parent0; + $z.$red = 1; + continue; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $value = $z.$parent0; + if ($z === $value.$left0) { + scm_RedBlackTree$_rotateRight($this, $tree, $value); + $z = $value; + } + $key = $z.$parent0; + $key.$red = 0; + $key = $key.$parent0; + $key.$red = 1; + scm_RedBlackTree$_rotateLeft($this, $tree, $key); + continue; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $key = $value.$right; + if (scm_RedBlackTree$_isRed($this, $key)) { + $value = $z.$parent0; + $value.$red = 0; + $key.$red = 0; + $z = $value.$parent0; + $z.$red = 1; + continue; + } + $value = $z.$parent0; + if ($z === $value.$right) { + scm_RedBlackTree$_rotateLeft($this, $tree, $value); + $z = $value; + } + $key = $z.$parent0; + $key.$red = 0; + $key = $key.$parent0; + $key.$red = 1; + scm_RedBlackTree$_rotateRight($this, $tree, $key); } - return $_localctx; + $tree.$root0.$red = 0; + $tree.$size8 = $tree.$size8 + 1 | 0; +}, +scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$successor = ($this, $node) => { + let $y, $y_0; + $y = $node.$right; + if ($y !== null) + return scm_RedBlackTree$_minNodeNonNull($this, $y); + $y = $node.$parent0; + while ($y !== null && $node === $y.$right) { + $y_0 = $y.$parent0; + $node = $y; + $y = $y_0; + } + return $y; +}, +scm_RedBlackTree$_rotateLeft = ($this, $tree, $x) => { + let $y, var$4; + if ($x === null) + return; + $y = $x.$right; + var$4 = $y.$left0; + $x.$right = var$4; + if (var$4 !== null) + var$4.$parent0 = $x; + $y.$parent0 = $x.$parent0; + var$4 = $x.$parent0; + if (var$4 === null) + $tree.$root0 = $y; + else if ($x !== var$4.$left0) + var$4.$right = $y; + else + var$4.$left0 = $y; + $y.$left0 = $x; + $x.$parent0 = $y; +}, +scm_RedBlackTree$_rotateRight = ($this, $tree, $x) => { + let $y, var$4; + if ($x === null) + return; + $y = $x.$left0; + var$4 = $y.$right; + $x.$left0 = var$4; + if (var$4 !== null) + var$4.$parent0 = $x; + $y.$parent0 = $x.$parent0; + var$4 = $x.$parent0; + if (var$4 === null) + $tree.$root0 = $y; + else if ($x !== var$4.$right) + var$4.$left0 = $y; + else + var$4.$right = $y; + $y.$right = $x; + $x.$parent0 = $y; +}, +scm_RedBlackTree$_transplant = ($this, $tree, $to, $from) => { + let var$4; + var$4 = $to.$parent0; + if (var$4 === null) + $tree.$root0 = $from; + else if ($to !== var$4.$left0) + var$4.$right = $from; + else + var$4.$left0 = $from; + if ($from === null) + return; + $from.$parent0 = var$4; +}, +scm_RedBlackTree$_fromOrderedKeys = ($this, $xs, $size) => { + let $maxUsedDepth; + $maxUsedDepth = 32 - jl_Integer_numberOfLeadingZeros($size) | 0; + return scm_RedBlackTree$Tree__init_(scm_RedBlackTree$_f$3(1, $size, $xs, $maxUsedDepth), $size); +}, +scm_RedBlackTree$_copyTree = ($this, $n) => { + let $c; + if ($n === null) + return null; + $c = scm_RedBlackTree$Node__init_($n.$key2, $n.$value30, $n.$red, scm_RedBlackTree$_copyTree($this, $n.$left0), scm_RedBlackTree$_copyTree($this, $n.$right), null); + $n = $c.$left0; + if ($n !== null) + $n.$parent0 = $c; + $n = $c.$right; + if ($n !== null) + $n.$parent0 = $c; + return $c; +}, +scm_RedBlackTree$_g$1 = ($this, $node, $f$1) => { + let $l; + while (true) { + $l = $node.$left0; + if ($l !== null) + scm_RedBlackTree$_g$1($this, $l, $f$1); + $f$1.$apply2($node.$key2); + $node = $node.$right; + if ($node === null) + break; + } +}, +scm_RedBlackTree$_f$3 = ($level, $size, $xs$1, $maxUsedDepth$1) => { + let $leftSize, $left, $x, $right, $n; + switch ($size) { + case 0: + break; + case 1: + return scm_RedBlackTree$Node__init_($xs$1.$next(), null, $level == $maxUsedDepth$1 && $level != 1 ? 1 : 0, null, null, null); + default: + $size = $size - 1 | 0; + $leftSize = $size / 2 | 0; + $level = $level + 1 | 0; + $left = scm_RedBlackTree$_f$3($level, $leftSize, $xs$1, $maxUsedDepth$1); + $x = $xs$1.$next(); + $right = scm_RedBlackTree$_f$3($level, $size - $leftSize | 0, $xs$1, $maxUsedDepth$1); + $n = scm_RedBlackTree$Node__init_($x, null, 0, $left, $right, null); + if ($left !== null) + $left.$parent0 = $n; + $right.$parent0 = $n; + return $n; + } + return null; +}, +scm_RedBlackTree$Tree$ = $rt_classWithoutFields(), +scm_RedBlackTree$Tree$_MODULE$ = null, +scm_RedBlackTree$Tree$__clinit_ = () => { + scm_RedBlackTree$Tree$_MODULE$ = new scm_RedBlackTree$Tree$; +}, +scm_RedBlackTree$Tree$_empty = $this => { + return scm_RedBlackTree$Tree__init_(null, 0); +}; +function ju_AbstractMap$SimpleImmutableEntry() { + let a = this; jl_Object.call(a); + a.$key12 = null; + a.$value40 = null; +} +function ju_Collections$7() { + ju_AbstractMap.call(this); + this.$val$entries = null; +} +function ju_Collections$9() { + ju_AbstractList.call(this); + this.$val$list = null; +} +let ju_Collections$9_get = ($this, $index) => { + return ju_Arrays$ArrayAsList_get($this.$val$list, $index); +}, +ju_Collections$9_size = $this => { + return ju_Arrays$ArrayAsList_size($this.$val$list); +}; +function sc_SeqView$Id() { + sc_AbstractSeqView.call(this); + this.$underlying9 = null; +} +let sc_SeqView$Id_apply = ($this, $idx) => { + return $this.$underlying9.$apply1($idx); +}, +sc_SeqView$Id_length = $this => { + return $this.$underlying9.$length(); +}, +sc_SeqView$Id_iterator = $this => { + return $this.$underlying9.$iterator0(); +}, +sc_SeqView$Id_knownSize = $this => { + return $this.$underlying9.$knownSize(); +}, +sc_SeqView$Id_isEmpty = $this => { + return $this.$underlying9.$isEmpty(); +}, +sc_SeqView$Id__init_ = ($this, $underlying) => { + $this.$underlying9 = $underlying; +}, +sc_SeqView$Id__init_0 = var_0 => { + let var_1 = new sc_SeqView$Id(); + sc_SeqView$Id__init_(var_1, var_0); + return var_1; +}, +sc_IndexedSeqView$Id = $rt_classWithoutFields(sc_SeqView$Id), +sc_IndexedSeqView$Id_iterator = $this => { + return sc_IndexedSeqView_iterator$($this); +}, +sc_IndexedSeqView$Id_reverseIterator = $this => { + return sc_IndexedSeqView_reverseIterator$($this); +}, +sc_IndexedSeqView$Id_reverse = $this => { + return sc_IndexedSeqView$Reverse__init_($this); +}, +sc_IndexedSeqView$Id_lengthCompare = ($this, $len) => { + return sc_IndexedSeqOps_lengthCompare$($this, $len); +}, +sc_IndexedSeqView$Id_knownSize = $this => { + return $this.$length(); +}, +sc_WithFilter = $rt_classWithoutFields(); +function sc_IterableOps$WithFilter() { + let a = this; sc_WithFilter.call(a); + a.$self1 = null; + a.$p3 = null; +} +let sc_IterableOps$WithFilter_filtered = $this => { + return sc_View$Filter__init_($this.$self1, $this.$p3, 0); +}, +sc_IterableOps$WithFilter_flatMap = ($this, $f) => { + return ($this.$self1.$iterableFactory()).$from0(sc_View$FlatMap__init_(sc_IterableOps$WithFilter_filtered($this), $f)); +}; +function oncipl_UnicodeEscapeReplacementReader$Result() { + let a = this; jl_Record.call(a); + a.$charStream = null; + a.$offsetTable1 = null; +} +let oncipl_UnicodeEscapeReplacementReader$Result__init_ = ($this, $charStream, $offsetTable) => { + $this.$charStream = $charStream; + $this.$offsetTable1 = $offsetTable; +}, +oncipl_UnicodeEscapeReplacementReader$Result__init_0 = (var_0, var_1) => { + let var_2 = new oncipl_UnicodeEscapeReplacementReader$Result(); + oncipl_UnicodeEscapeReplacementReader$Result__init_(var_2, var_0, var_1); + return var_2; +}; +function oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0() { + jl_Object.call(this); + this.$_0582 = null; +} +let oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0582; + oncirr_expandShowWhere$_$callClinit(); + return var$1; +}; +function oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0() { + jl_Object.call(this); + this.$_095 = null; +} +let oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_095; + var$2 = new oncie_Variable; + var$3 = var$1.$name46; + var$4 = var$1.$expression19.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$2, var$3, var$4, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + return var$2; }, -oncipv_Cypher25Parser_unwindClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UnwindClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 64, 32); +oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0 = $rt_classWithoutFields(), +oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf((var$1.$sortItems.$map(new oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0)).$exists(oncie_containsAggregate$_MODULE$)); +}, +oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0 = $rt_classWithoutFields(), +oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncirr_rewriteShowQuery$_$callClinit(); + return var$1.$name18; +}; +function scc_JavaCollectionWrappers$JIteratorWrapper() { + sc_AbstractIterator.call(this); + this.$underlying24 = null; +} +let scc_JavaCollectionWrappers$JIteratorWrapper_hasNext = $this => { + return $this.$underlying24.$hasNext(); +}, +scc_JavaCollectionWrappers$JIteratorWrapper_next = $this => { + return $this.$underlying24.$next(); +}; +function oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0() { + jl_Object.call(this); + this.$_0320 = null; +} +let oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 934); - oavr_Parser_match($this, 282); - oavr_Recognizer_setState($this, 935); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 936); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 937); - oncipv_Cypher25Parser_variable($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$1 = var$1; + var$2 = var$0.$_0320; + var$3 = var$1.$name4; + var$1 = var$2.$name4; + if (var$3 !== null) { + if (!jl_String_equals(var$3, var$1)) + break b; + else + break c; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (var$1 !== null) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return jl_Boolean_valueOf(var$4); +}; +function oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1() { + let a = this; jl_Object.call(a); + a.$_01139 = null; + a.$_1388 = null; +} +let oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_01139; + var$3 = var$0.$_1388; + var$4 = new oncia_Union$UnionMapping; + var$5 = new oncie_Variable; + var$6 = var$3.$name4; + var$7 = var$2.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$5, var$6, var$7, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + var$4.$unionVariable = var$5; + var$4.$variableInLhs = var$3; + var$4.$variableInRhs = var$1; + return var$4; }, -oncipv_Cypher25Parser_callClause = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CallClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 66, 33); +ong_GqlHelper = $rt_classWithoutFields(), +ong_GqlHelper_getGql22003 = ($value, $offset, $line, $column) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22003), ong_GqlParams$StringParam_value, $value), $offset, $line, $column)); +}, +ong_GqlHelper_getGql22N81 = ($exprType, $context, $offset, $line, $column) => { + let $builder; + ong_GqlStatusInfoCodes_$callClinit(); + $builder = ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N81), ong_GqlParams$StringParam_exprType, $exprType), ong_GqlParams$StringParam_context, $context); + if ($offset >= 0) + ong_ErrorGqlStatusObjectImplementation$Builder_atPosition($builder, $offset, $line, $column); + return ong_ErrorGqlStatusObjectImplementation$Builder_build($builder); +}, +ong_GqlHelper_getGql22NA0_22NA4 = $predicate => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA0), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA4), ong_GqlParams$StringParam_pred, $predicate)))); +}, +ong_GqlHelper_getGql22NA0_22NA5 = $predicate => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA0), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA5), ong_GqlParams$StringParam_pred, $predicate)))); +}, +ong_GqlHelper_getGql22NA0_22NA6 = $predicate => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA0), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA6), ong_GqlParams$StringParam_pred, $predicate)))); +}, +ong_GqlHelper_getGql42001_22N04 = ($input, $context, $validTypes, $offset, $line, $column) => { + let $main, $cause; + ong_GqlStatusInfoCodes_$callClinit(); + $main = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $offset, $line, $column); + $input = ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N04), $offset, $line, $column), ong_GqlParams$StringParam_input, $input), ong_GqlParams$StringParam_context, $context); + ong_GqlParams$ListParam_$callClinit(); + $cause = ong_ErrorGqlStatusObjectImplementation$Builder_withParam1($input, ong_GqlParams$ListParam_inputList, $validTypes); + if ($offset >= 0) { + ong_ErrorGqlStatusObjectImplementation$Builder_atPosition($main, $offset, $line, $column); + ong_ErrorGqlStatusObjectImplementation$Builder_atPosition($cause, $offset, $line, $column); + } + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause($main, ong_ErrorGqlStatusObjectImplementation$Builder_build($cause))); +}, +ong_GqlHelper_getGql42001_42I20 = ($input, $labelExpr, $offset, $line, $column) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $offset, $line, $column), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I20), + ong_GqlParams$StringParam_input, $input), ong_GqlParams$StringParam_labelExpr, $labelExpr), $offset, $line, $column)))); +}, +ong_GqlHelper_getGql42001_42I29 = ($input, $replacement, $offset, $line, $column) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $offset, $line, $column), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I29), + $offset, $line, $column), ong_GqlParams$StringParam_input, $input), ong_GqlParams$StringParam_replacement, $replacement)))); +}, +ong_GqlHelper_getGql42001_42N07 = ($variable, $offset, $line, $column) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $offset, $line, $column), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N07), + $offset, $line, $column), ong_GqlParams$StringParam_variable, $variable)))); +}, +ong_GqlHelper_getGql42001_42N14 = ($clause, $cmd, $offset, $line, $column) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $offset, $line, $column), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N14), + $offset, $line, $column), ong_GqlParams$StringParam_clause, $clause), ong_GqlParams$StringParam_cmd, $cmd)))); +}, +ong_GqlHelper_getGql42001_42N24 = ($input1, $input2, $offset, $line, $column) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $offset, $line, $column), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N24), + $offset, $line, $column), ong_GqlParams$StringParam_input1, $input1), ong_GqlParams$StringParam_input2, $input2)))); +}, +ong_GqlHelper_getGql42001_42N57 = ($expr, $offset, $line, $column) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $offset, $line, $column), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N57), + $offset, $line, $column), ong_GqlParams$StringParam_expr, $expr)))); +}, +ong_GqlHelper_getGql42001_42N71 = ($offset, $line, $column) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $offset, $line, $column), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N71), $offset, $line, $column)))); +}, +ong_GqlHelper_getErrorObjectWithRewrittenCause = ($gqlStatusObject, $exceptionCause) => { + let $gsoImplementation, $currentCause, $newCause; + $gsoImplementation = $gqlStatusObject.$gqlStatusObject(); + if (!($gsoImplementation instanceof ong_ErrorGqlStatusObjectImplementation)) + return $gqlStatusObject; + $gsoImplementation = $gsoImplementation; + if (ju_Optional_isPresent($gqlStatusObject.$cause0())) { + $currentCause = ju_Optional_get($gqlStatusObject.$cause0()); + if ($currentCause.$equals($exceptionCause)) + return $gqlStatusObject; + $newCause = ong_GqlHelper_getErrorObjectWithRewrittenCause($currentCause, $exceptionCause); + } else if ($exceptionCause.$gqlStatusObject() !== null) + $newCause = $exceptionCause.$gqlStatusObject(); + else { + ong_GqlStatusInfoCodes_$callClinit(); + $newCause = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_50N42)); + } + $gsoImplementation.$cause1 = $newCause; + return $gsoImplementation; +}, +oncias_SemanticCheck$ = $rt_classWithoutFields(), +oncias_SemanticCheck$_MODULE$ = null, +oncias_SemanticCheck$_success0 = null, +oncias_SemanticCheck$_DEBUG_ENABLED = 0, +oncias_SemanticCheck$_$callClinit = () => { + oncias_SemanticCheck$_$callClinit = $rt_eraseClinit(oncias_SemanticCheck$); + oncias_SemanticCheck$__clinit_(); +}, +oncias_SemanticCheck$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticCheck$; + oncias_SemanticCheck$_$callClinit(); + oncias_SemanticCheck$_MODULE$ = var$1; + oncias_SemanticCheck$_success0 = oncias_SemanticCheck$_fromFunction(var$1, new oncias_SemanticCheck$$_clinit_$lambda$_0_0); + oncias_SemanticCheck$_DEBUG_ENABLED = 0; +}, +oncias_SemanticCheck$_success = $this => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success0; +}, +oncias_SemanticCheck$_error = ($this, $errors) => { + let var$2; + var$2 = new oncias_SemanticCheck$$error$lambda$_2_0; + var$2.$_0412 = $errors; + return oncias_SemanticCheck$_fromFunction($this, var$2); +}, +oncias_SemanticCheck$_fromFunction = ($this, $f) => { + let var$2; + var$2 = new oncias_SemanticCheck$Leaf; + var$2.$f2 = $f; + return var$2; +}, +oncias_SemanticCheck$_setState = ($this, $s) => { + let var$2; + var$2 = new oncias_SemanticCheck$$setState$lambda$_7_0; + var$2.$_0695 = $s; + return oncias_SemanticCheck$_fromFunction($this, var$2); +}, +oncias_SemanticCheck$_fromState = ($this, $f) => { + let var$2, var$3; + var$2 = oncias_SemanticCheck$_success($this); + var$3 = new oncias_SemanticCheck$$fromState$lambda$_8_0; + var$3.$_0109 = $f; + return oncias_SemanticCheck_flatMap$(var$2, var$3); +}, +oncias_SemanticCheck$_fromFunctionWithContext = ($this, $f) => { + let var$2; + var$2 = new oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0; + var$2.$_0646 = $f; + $f = new oncias_SemanticCheck$CheckFromContext; + $f.$f4 = var$2; + return $f; +}, +oncias_SemanticCheck$_nestedCheck = ($this, $check) => { + let var$2, var$3; + var$2 = oncias_SemanticCheck$_success($this); + var$3 = new oncias_SemanticCheck$$nestedCheck$lambda$_11_0; + var$3.$_0733 = $check; + return oncias_SemanticCheck_flatMap$(var$2, var$3); +}, +oncias_SemanticCheck$_when = ($this, $condition, $check) => { + if (!$condition) + return oncias_SemanticCheck$_success($this); + return $check.$apply4(); +}, +oncia_SingleQuery$checkStandaloneCall$lambda$_83_0 = $rt_classWithoutFields(), +oncia_SingleQuery$checkStandaloneCall$lambda$_83_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncia_UnresolvedCall); +}, +oncia_SingleQuery$checkStandaloneCall$lambda$_83_1 = $rt_classWithoutFields(), +oncia_SingleQuery$checkStandaloneCall$lambda$_83_1_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(!(var$1 instanceof oncia_UnresolvedCall) ? 0 : var$1.$yieldAll2); +}; +function oncia_SingleQuery$checkStandaloneCall$lambda$_83_2() { + jl_Object.call(this); + this.$_097 = null; +} +let oncia_SingleQuery$checkStandaloneCall$lambda$_83_2_apply = (var$0, var$1) => { + var$1 = var$1; + return oncias_SemanticAnalysisTooling_error$(var$0.$_097, $rt_s(4967), var$1.$position()); +}, +oncia_SingleQuery$checkStandaloneCall$lambda$_83_3 = $rt_classWithoutFields(), +oncia_SingleQuery$checkStandaloneCall$lambda$_83_3_apply = var$0 => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}, +oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_0 = $rt_classWithoutFields(), +oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_CommandClause)); +}, +oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_1 = $rt_classWithoutFields(), +oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_TransactionsCommandClause) ? 0 : 1); +}; +function oncia_SingleQuery$checkOrder$lambda$_85_0() { + let a = this; jl_Object.call(a); + a.$_0967 = null; + a.$_1329 = null; + a.$_2114 = 0; +} +let oncia_SingleQuery$checkOrder$lambda$_85_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncia_SingleQuery_$anonfun$checkOrder$1(var$0.$_0967, var$0.$_1329, var$0.$_2114, var$1); +}; +function oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_86_0() { + let a = this; jl_Object.call(a); + a.$_01131 = null; + a.$_1385 = null; +} +let oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_86_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 940); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 183) { - oavr_Recognizer_setState($this, 939); - oavr_Parser_match($this, 183); - } - oavr_Recognizer_setState($this, 942); - oavr_Parser_match($this, 38); - oavr_Recognizer_setState($this, 943); - oncipv_Cypher25Parser_procedureName($this); - oavr_Recognizer_setState($this, 956); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) { - e: { - oavr_Recognizer_setState($this, 944); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 953); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294721535, 4277927934)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1056886783, 4294967294)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338075, 4294835711)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 945); - oncipv_Cypher25Parser_procedureArgument($this); - oavr_Recognizer_setState($this, 950); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 46) - break e; - oavr_Recognizer_setState($this, 946); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 947); - oncipv_Cypher25Parser_procedureArgument($this); - oavr_Recognizer_setState($this, 952); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 955); - oavr_Parser_match($this, 233); - } - f: { - oavr_Recognizer_setState($this, 973); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 299) { - oavr_Recognizer_setState($this, 958); - oavr_Parser_match($this, 299); - oavr_Recognizer_setState($this, 971); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Recognizer_setState($this, 960); - oncipv_Cypher25Parser_procedureResultItem($this); - oavr_Recognizer_setState($this, 965); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 961); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 962); - oncipv_Cypher25Parser_procedureResultItem($this); - oavr_Recognizer_setState($this, 967); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 969); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 294) - break f; - oavr_Recognizer_setState($this, 968); - oncipv_Cypher25Parser_whereClause($this); - break f; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Recognizer_setState($this, 959); - oavr_Parser_match($this, 265); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + var$1 = var$1; + var$2 = var$2; + var$3 = var$0.$_01131; + var$4 = var$0.$_1385; + var$5 = s_Tuple2__init_(var$1, var$2); + var$1 = var$5.$_10; + var$2 = var$5.$_20; + if (var$1 !== null) { + var$6 = var$1.$precedingWrite; + var$7 = var$1.$errors1; + if ($rt_isInstance(var$2, oncia_SubqueryCall)) { + var$1 = var$2; + if (oncia_SubqueryCall$_isTransactionalSubquery(oncia_SubqueryCall$_MODULE$, var$1)) { + if (!var$6) { + var$1 = oncia_SingleQuery$Acc$2$_apply(oncia_SingleQuery_Acc$3(var$3, var$4), var$6, var$7); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncia_SingleQuery_Acc$3(var$3, var$4); + oncias_SemanticError$_$callClinit(); + var$1 = var$1.$position(); + var$8 = var$1.$offset(); + var$9 = var$1.$line(); + var$10 = var$1.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + var$1 = oncia_SingleQuery$Acc$2$_apply(var$2, var$6, var$7.$appended(oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$8, var$9, var$10), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I25), + var$8, var$9, var$10)))), $rt_s(4968), var$1))); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$1 = var$5.$_10; + var$2 = var$5.$_20; + var$1 = oncia_SingleQuery$Acc$2$_apply(oncia_SingleQuery_Acc$3(var$3, var$4), !var$1.$precedingWrite && !onciu_Foldable$Folder_treeExists(var$2.$folder(), new oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1) ? 0 : 1, var$1.$errors1); } - return $_localctx; + return var$1; +}; +function oncia_SingleQuery$Acc$1() { + let a = this; jl_Object.call(a); + a.$precedingWrite = 0; + a.$errors1 = null; + a.$$outer58 = null; +} +let oncia_SingleQuery$Acc$1_productPrefix = $this => { + return $rt_s(4969); }, -oncipv_Cypher25Parser_procedureName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ProcedureNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 68, 34); +oncia_SingleQuery$Acc$1_productArity = $this => { + return 2; +}, +oncia_SingleQuery$Acc$1_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$precedingWrite); + case 1: + return $this.$errors1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SingleQuery$Acc$1_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SingleQuery$Acc$1_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4969))), !$this.$precedingWrite ? 1237 : 1231), sr_Statics_anyHash($this.$errors1)), 2); +}, +oncia_SingleQuery$Acc$1_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SingleQuery$Acc$1_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 975); - oncipv_Cypher25Parser_namespace($this); - oavr_Recognizer_setState($this, 976); - oncipv_Cypher25Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SingleQuery$Acc$1) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$precedingWrite != $x$1.$precedingWrite) + break b; + c: { + var$2 = $this.$errors1; + $x$1 = $x$1.$errors1; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_SingleQuery$Acc$1)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; + } + return var$3; +}, +oncia_SingleQuery$checkInputDataStream$lambda$_89_0 = $rt_classWithoutFields(), +oncia_SingleQuery$checkInputDataStream$lambda$_89_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncia_InputDataStream); +}, +oncia_InputDataStream = $rt_classWithoutFields(), +oncias_IterableOnceSemanticChecking$ = $rt_classWithoutFields(), +oncias_IterableOnceSemanticChecking$_MODULE$ = null, +oncias_IterableOnceSemanticChecking$__clinit_ = () => { + oncias_IterableOnceSemanticChecking$_MODULE$ = new oncias_IterableOnceSemanticChecking$; +}, +oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension = ($this, $$this, $check) => { + let var$3, var$4; + var$3 = $$this.$iterator0(); + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + var$4 = new oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0; + var$4.$_0651 = $check; + return var$3.$foldLeft($$this, var$4); +}, +oncia_SingleQuery$$anonfun$checkUsePosition$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_SingleQuery$$anonfun$checkUsePosition$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !($x instanceof oncia_UseGraph) ? $default.$apply2($x) : $x; +}; +function oncia_SingleQuery$checkUsePosition$lambda$_91_0() { + let a = this; jl_Object.call(a); + a.$_0393 = null; + a.$_1139 = null; +} +let oncia_SingleQuery$checkUsePosition$lambda$_91_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncias_SemanticAnalysisTooling_error$(var$0.$_0393, var$0.$_1139, var$1.$position26); +}; +function oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0() { + jl_Object.call(this); + this.$_0426 = null; +} +let oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0426; + var$3 = new oncie_Variable; + var$4 = var$2.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$3, var$1, var$4, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + return var$3; +}; +function oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0() { + jl_Object.call(this); + this.$_0791 = null; +} +let oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$0.$_0791; + var$2 = oncias_SemanticCheck_chain$(var$1.$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck(), oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0)); + var$3 = var$1.$defaultColumnSet(); + var$4 = new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1; + var$4.$_0542 = var$1; + var$5 = oncias_SemanticCheck_chain$(var$2, var$1.$semanticCheckFold(var$3, var$4)); + var$4 = var$1.$folder(); + var$3 = new oncia_ReadAdministrationCommand$$anonfun$1; + sr_ClassTag$_$callClinit(); + var$6 = oncias_SemanticCheck_chain$(var$5, s_Option_getOrElse(s_Option_map(onciu_Foldable$Folder_treeFind(var$4, var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), new oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0), new oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1)); + var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$7 = sci_$colon$colon__init_(var$1.$yields(), sci_$colon$colon__init_(var$1.$returns(), sci_Nil$_MODULE$)); + var$3 = new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2; + var$3.$_01095 = var$1; + return oncias_SemanticCheck_chain$(var$6, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$7, var$3)); +}, +oncia_Union$semanticCheck$lambda$_15_0 = $rt_classWithoutFields(), +oncia_Union$semanticCheck$lambda$_15_0_apply = (var$0, var$1) => { + return var$1.$semanticCheck(); +}, +oncifp_ResolvedFunctionInvocation$ = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$_MODULE$ = null, +oncifp_ResolvedFunctionInvocation$_$callClinit = () => { + oncifp_ResolvedFunctionInvocation$_$callClinit = $rt_eraseClinit(oncifp_ResolvedFunctionInvocation$); + oncifp_ResolvedFunctionInvocation$__clinit_(); +}, +oncifp_ResolvedFunctionInvocation$__clinit_ = () => { + let var$1; + var$1 = new oncifp_ResolvedFunctionInvocation$; + oncifp_ResolvedFunctionInvocation$_$callClinit(); + oncifp_ResolvedFunctionInvocation$_MODULE$ = var$1; +}; +function oncifp_RewriteProcedureCalls$resolveFunction$lambda$_9_0() { + jl_Object.call(this); + this.$_01196 = null; +} +function sci_RangeIterator() { + let a = this; sc_AbstractIterator.call(a); + a.$step5 = 0; + a.$lastElement0 = 0; + a.$_hasNext0 = 0; + a.$_next1 = 0; +} +let sci_RangeIterator_hasNext = $this => { + return $this.$_hasNext0; +}, +sci_RangeIterator_next = $this => { + let var$1; + if (!$this.$_hasNext0) + sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + var$1 = $this.$_next1; + $this.$_hasNext0 = var$1 == $this.$lastElement0 ? 0 : 1; + $this.$_next1 = var$1 + $this.$step5 | 0; + return jl_Integer_valueOf(var$1); +}; +function scm_RedBlackTree$Node() { + let a = this; jl_Object.call(a); + a.$key2 = null; + a.$value30 = null; + a.$red = 0; + a.$left0 = null; + a.$right = null; + a.$parent0 = null; +} +let scm_RedBlackTree$Node__init_0 = ($this, $key, $value, $red, $left, $right, $parent) => { + $this.$key2 = $key; + $this.$value30 = $value; + $this.$red = $red; + $this.$left0 = $left; + $this.$right = $right; + $this.$parent0 = $parent; +}, +scm_RedBlackTree$Node__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new scm_RedBlackTree$Node(); + scm_RedBlackTree$Node__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}; +function ju_TemplateCollections$SingleElementSet() { + ju_TemplateCollections$AbstractImmutableSet.call(this); + this.$element6 = null; +} +function oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1() { + sr_AbstractPartialFunction.call(this); + this.$merge$1 = null; +} +let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1_applyOrElse = ($this, $x1, $default) => { + let $exprs, $a; + if ($x1 instanceof oncie_In) { + $exprs = $x1; + $a = $exprs.$lhs6; + $exprs = $exprs.$rhs8; + if ($exprs instanceof oncie_ListLiteral) { + $exprs = $exprs.$expressions0; + $x1 = new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0; + $x1.$_0906 = $this; + $x1.$_1311 = $a; + $x1.$_2104 = $exprs; + return $x1; + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}; +function oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0() { + let a = this; jl_Object.call(a); + a.$_0884 = null; + a.$_1298 = null; + a.$_296 = null; +} +let oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0884; + var$3 = var$0.$_1298; + var$4 = var$0.$_296; + oncirr_mergeInPredicates$_$callClinit(); + var$5 = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + return s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$1, sc_SeqOps_distinct$(var$2.$apply3(var$3.$apply2(var$1), var$4.$apply2(var$1)))); +}, +oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0 = $rt_classWithoutFields(), +oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$1.$contains(oncias_SymbolUse_name(var$2))) + var$1 = var$1.$updated0(oncias_SymbolUse_name(var$2), (var$1.$apply2(oncias_SymbolUse_name(var$2))).$incl(var$2)); + else { + var$1 = var$3.$_10; + var$2 = var$3.$_20; + var$3 = oncias_SymbolUse_name(var$2); + s_Predef$_$callClinit(); + var$4 = s_Predef$_Set(s_Predef$_MODULE$); + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SymbolUse, 1); + var$6.data[0] = var$2; + var$1 = var$1.$updated0(var$3, var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6))); + } + return var$1; +}; +function sc_MapOps$$anon$1() { + sc_AbstractIterable.call(this); + this.$$outer18 = null; +} +let sc_MapOps$$anon$1_knownSize = $this => { + return $this.$$outer18.$knownSize(); +}, +sc_MapOps$$anon$1_iterator = $this => { + return $this.$$outer18.$valuesIterator(); +}; +function sc_SeqView$Reverse() { + sc_AbstractSeqView.call(this); + this.$underlying18 = null; +} +let sc_SeqView$Reverse_apply = ($this, $i) => { + return $this.$underlying18.$apply1((sc_SeqView$Reverse_length($this) - 1 | 0) - $i | 0); +}, +sc_SeqView$Reverse_length = $this => { + let var$1; + var$1 = $this.$underlying18; + if (var$1 !== null) + return var$1.$length(); + $rt_throw(null); +}, +sc_SeqView$Reverse_isEmpty = $this => { + return $this.$underlying18.$isEmpty(); +}; +function sc_IndexedSeqView$Reverse() { + sc_SeqView$Reverse.call(this); + this.$underlying38 = null; +} +let sc_IndexedSeqView$Reverse_iterator = $this => { + return sc_IndexedSeqView_iterator$($this); +}, +sc_IndexedSeqView$Reverse_reverseIterator = $this => { + return sc_IndexedSeqView_reverseIterator$($this); +}, +sc_IndexedSeqView$Reverse_stringPrefix = $this => { + return $rt_s(4970); +}, +sc_IndexedSeqView$Reverse_head = $this => { + return sc_IndexedSeqOps_head$($this); +}, +sc_IndexedSeqView$Reverse_headOption = $this => { + return sc_IndexedSeqOps_headOption$($this); +}, +sc_IndexedSeqView$Reverse_lengthCompare = ($this, $len) => { + return sc_IndexedSeqOps_lengthCompare$($this, $len); +}, +sc_IndexedSeqView$Reverse_knownSize = $this => { + return $this.$length(); +}, +sc_IndexedSeqView$Reverse_map = ($this, $f) => { + return sc_IndexedSeqView_map$($this, $f); +}, +sc_IndexedSeqView$Reverse_map0 = ($this, $f) => { + return sc_IndexedSeqView_map$($this, $f); +}, +sc_IndexedSeqView$Reverse_drop = ($this, $n) => { + return sc_IndexedSeqView_drop$($this, $n); +}, +sc_IndexedSeqView$Reverse_drop0 = ($this, $n) => { + return sc_IndexedSeqView_drop$($this, $n); +}, +sc_IndexedSeqView$Reverse_prepended0 = ($this, $elem) => { + return sc_IndexedSeqView_prepended$($this, $elem); +}, +sc_IndexedSeqView$Reverse_prepended = ($this, $elem) => { + return sc_IndexedSeqView_prepended$($this, $elem); +}, +sc_IndexedSeqView$Reverse_appended = ($this, $elem) => { + return sc_IndexedSeqView_appended$($this, $elem); +}, +sc_IndexedSeqView$Reverse_appended0 = ($this, $elem) => { + return sc_IndexedSeqView_appended$($this, $elem); +}, +sc_IndexedSeqView$Reverse__init_0 = ($this, $underlying) => { + $this.$underlying38 = $underlying; + $this.$underlying18 = $underlying; +}, +sc_IndexedSeqView$Reverse__init_ = var_0 => { + let var_1 = new sc_IndexedSeqView$Reverse(); + sc_IndexedSeqView$Reverse__init_0(var_1, var_0); + return var_1; +}; +function oncifp_BaseState$semanticTable$lambda$_18_0() { + jl_Object.call(this); + this.$_0721 = null; +} +let oncifp_BaseState$semanticTable$lambda$_18_0_apply = var$0 => { + return oncifp_InitialState_fail(var$0.$_0721, $rt_s(4971)); +}; +function oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0() { + jl_Object.call(this); + this.$_0428 = null; +} +let oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isSubtypeOf(var$0.$_0428)); +}, +s_Proxy = $rt_classWithoutFields(0), +s_Proxy$Typed = $rt_classWithoutFields(0), +sr_OrderedProxy = $rt_classWithoutFields(0), +sr_OrderedProxy_compare$ = ($$this, $y) => { + return ($$this.$ord()).$compare2($$this.$self(), $y); +}; +function sr_RichBoolean() { + jl_Object.call(this); + this.$self4 = 0; +} +let sr_RichBoolean_ord = $this => { + return sm_Ordering$Boolean$_MODULE$; +}, +sr_RichBoolean_self = $this => { + return jl_Boolean_valueOf($this.$self4); +}, +sr_RichBoolean__init_ = ($this, $self) => { + $this.$self4 = $self; +}, +sr_RichBoolean__init_0 = var_0 => { + let var_1 = new sr_RichBoolean(); + sr_RichBoolean__init_(var_1, var_0); + return var_1; +}, +sr_ScalaNumberProxy = $rt_classWithoutFields(0), +sr_RangedProxy = $rt_classWithoutFields(0); +function sr_RichInt() { + jl_Object.call(this); + this.$self6 = 0; +} +let sr_RichInt_ord = $this => { + sm_Ordering$Int$_$callClinit(); + return sm_Ordering$Int$_MODULE$; +}, +sr_RichInt_self = $this => { + return jl_Integer_valueOf($this.$self6); +}, +sr_RichInt__init_ = ($this, $self) => { + $this.$self6 = $self; +}, +sr_RichInt__init_0 = var_0 => { + let var_1 = new sr_RichInt(); + sr_RichInt__init_(var_1, var_0); + return var_1; +}; +function oavr_CodePointBuffer() { + let a = this; jl_Object.call(a); + a.$type1 = null; + a.$byteBuffer0 = null; + a.$charBuffer0 = null; + a.$intBuffer0 = null; +} +let oavr_CodePointBuffer_$assertionsDisabled = 0, +oavr_CodePointBuffer_position = $this => { + let var$1; + oavr_CodePointBuffer$1_$callClinit(); + switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type1.$ordinal]) { + case 1: + break; + case 2: + return $this.$charBuffer0.$position3; + case 3: + return $this.$intBuffer0.$position3; + default: + var$1 = new jl_UnsupportedOperationException; + jl_Throwable__init_(var$1, $rt_s(4972)); + $rt_throw(var$1); } - return $_localctx; + return $this.$byteBuffer0.$position3; }, -oncipv_Cypher25Parser_procedureArgument = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ProcedureArgumentContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 70, 35); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 978); - oncipv_Cypher25Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavr_CodePointBuffer_remaining = $this => { + let var$1; + oavr_CodePointBuffer$1_$callClinit(); + switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type1.$ordinal]) { + case 1: + break; + case 2: + return jn_Buffer_remaining($this.$charBuffer0); + case 3: + return jn_Buffer_remaining($this.$intBuffer0); + default: + var$1 = new jl_UnsupportedOperationException; + jl_Throwable__init_(var$1, $rt_s(4972)); + $rt_throw(var$1); } - return $_localctx; + return jn_Buffer_remaining($this.$byteBuffer0); }, -oncipv_Cypher25Parser_procedureResultItem = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ProcedureResultItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 72, 36); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 980); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 983); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 981); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 982); - oncipv_Cypher25Parser_variable($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavr_CodePointBuffer_arrayOffset = $this => { + let var$1; + oavr_CodePointBuffer$1_$callClinit(); + switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type1.$ordinal]) { + case 1: + break; + case 2: + return $this.$charBuffer0.$start2; + case 3: + return $this.$intBuffer0.$start5; + default: + var$1 = new jl_UnsupportedOperationException; + jl_Throwable__init_(var$1, $rt_s(4972)); + $rt_throw(var$1); } - return $_localctx; + return $this.$byteBuffer0.$start3; }, -oncipv_Cypher25Parser_loadCSVClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LoadCSVClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 74, 37); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 985); - oavr_Parser_match($this, 148); - oavr_Recognizer_setState($this, 986); - oavr_Parser_match($this, 58); - oavr_Recognizer_setState($this, 989); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 295) { - oavr_Recognizer_setState($this, 987); - oavr_Parser_match($this, 295); - oavr_Recognizer_setState($this, 988); - oavr_Parser_match($this, 121); - } - oavr_Recognizer_setState($this, 991); - oavr_Parser_match($this, 110); - oavr_Recognizer_setState($this, 992); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 993); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 994); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 997); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 105) { - oavr_Recognizer_setState($this, 995); - oavr_Parser_match($this, 105); - oavr_Recognizer_setState($this, 996); - oncipv_Cypher25Parser_stringLiteral($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oavr_CodePointBuffer__clinit_ = () => { + oavr_CodePointBuffer_$assertionsDisabled = 0; +}, +oavr_CharStream = $rt_classWithoutFields(0); +function oavr_CodePointCharStream() { + let a = this; jl_Object.call(a); + a.$size4 = 0; + a.$name63 = null; + a.$position6 = 0; +} +let oavr_CodePointCharStream_$assertionsDisabled = 0, +oavr_CodePointCharStream_fromBuffer = ($codePointBuffer, $name) => { + let var$3, var$4, var$5, var$6, var$7; + oavr_CodePointCharStream$1_$callClinit(); + switch (oavr_CodePointCharStream$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$codePointBuffer.$type1.$ordinal]) { + case 1: + var$3 = new oavr_CodePointCharStream$CodePoint8BitCharStream; + var$4 = oavr_CodePointBuffer_position($codePointBuffer); + var$5 = oavr_CodePointBuffer_remaining($codePointBuffer); + if (!oavr_CodePointBuffer_$assertionsDisabled && $codePointBuffer.$type1 !== oavr_CodePointBuffer$Type_BYTE) { + $codePointBuffer = new jl_AssertionError; + jl_Throwable__init_0($codePointBuffer); + $rt_throw($codePointBuffer); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = $codePointBuffer.$byteBuffer0.$array6; + var$7 = oavr_CodePointBuffer_arrayOffset($codePointBuffer); + oavr_CodePointCharStream__init_(var$3, var$4, var$5, $name, null); + if (!oavr_CodePointCharStream$CodePoint8BitCharStream_$assertionsDisabled && var$7) { + $codePointBuffer = new jl_AssertionError; + jl_Throwable__init_0($codePointBuffer); + $rt_throw($codePointBuffer); + } + var$3.$byteArray = var$6; + return var$3; + case 2: + var$3 = new oavr_CodePointCharStream$CodePoint16BitCharStream; + var$4 = oavr_CodePointBuffer_position($codePointBuffer); + var$5 = oavr_CodePointBuffer_remaining($codePointBuffer); + if (!oavr_CodePointBuffer_$assertionsDisabled && $codePointBuffer.$type1 !== oavr_CodePointBuffer$Type_CHAR) { + $codePointBuffer = new jl_AssertionError; + jl_Throwable__init_0($codePointBuffer); + $rt_throw($codePointBuffer); + } + var$6 = $codePointBuffer.$charBuffer0.$array4; + var$7 = oavr_CodePointBuffer_arrayOffset($codePointBuffer); + oavr_CodePointCharStream__init_(var$3, var$4, var$5, $name, null); + var$3.$charArray = var$6; + if (!oavr_CodePointCharStream$CodePoint16BitCharStream_$assertionsDisabled && var$7) { + $codePointBuffer = new jl_AssertionError; + jl_Throwable__init_0($codePointBuffer); + $rt_throw($codePointBuffer); + } + return var$3; + case 3: + var$3 = new oavr_CodePointCharStream$CodePoint32BitCharStream; + var$4 = oavr_CodePointBuffer_position($codePointBuffer); + var$5 = oavr_CodePointBuffer_remaining($codePointBuffer); + if (!oavr_CodePointBuffer_$assertionsDisabled && $codePointBuffer.$type1 !== oavr_CodePointBuffer$Type_INT) { + $codePointBuffer = new jl_AssertionError; + jl_Throwable__init_0($codePointBuffer); + $rt_throw($codePointBuffer); + } + var$6 = $codePointBuffer.$intBuffer0.$array16; + var$7 = oavr_CodePointBuffer_arrayOffset($codePointBuffer); + oavr_CodePointCharStream__init_(var$3, var$4, var$5, $name, null); + var$3.$intArray = var$6; + if (!oavr_CodePointCharStream$CodePoint32BitCharStream_$assertionsDisabled && var$7) { + $codePointBuffer = new jl_AssertionError; + jl_Throwable__init_0($codePointBuffer); + $rt_throw($codePointBuffer); + } + return var$3; + default: } - return $_localctx; + $codePointBuffer = new jl_UnsupportedOperationException; + jl_Throwable__init_($codePointBuffer, $rt_s(4972)); + $rt_throw($codePointBuffer); }, -oncipv_Cypher25Parser_foreachClause = $this => { - let $_localctx, var$2, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ForeachClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 76, 38); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 999); - oavr_Parser_match($this, 109); - oavr_Recognizer_setState($this, 1000); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1001); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1002); - oavr_Parser_match($this, 127); - oavr_Recognizer_setState($this, 1003); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1004); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 1006); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 1005); - oncipv_Cypher25Parser_clause($this); - oavr_Recognizer_setState($this, 1008); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$3 = var$2 - 38 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(2148007937, 16)), Long_ZERO)) - continue; - var$3 = var$2 - 106 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(67108873, 394496)), Long_ZERO)) - continue; - var$3 = var$2 - 170 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(140289, 33816576)), Long_ZERO)) - continue; - var$2 = var$2 - 244 | 0; - if (var$2 & (-64)) - break; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$2), Long_create(257, 524608)), Long_ZERO)) - continue; - else - break; - } - oavr_Recognizer_setState($this, 1010); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavr_CodePointCharStream_consume = $this => { + let var$1, var$2, var$3; + var$1 = $this.$size4; + var$2 = $this.$position6; + if (var$1 - var$2 | 0) { + $this.$position6 = var$2 + 1 | 0; + return; } - return $_localctx; + if (!oavr_CodePointCharStream_$assertionsDisabled && $this.$LA(1) != (-1)) { + var$3 = new jl_AssertionError; + jl_Throwable__init_0(var$3); + $rt_throw(var$3); + } + var$3 = new jl_IllegalStateException; + jl_Throwable__init_(var$3, $rt_s(4255)); + $rt_throw(var$3); }, -oncipv_Cypher25Parser_subqueryClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SubqueryClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 78, 39); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1013); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 183) { - oavr_Recognizer_setState($this, 1012); - oavr_Parser_match($this, 183); - } - oavr_Recognizer_setState($this, 1015); - oavr_Parser_match($this, 38); - oavr_Recognizer_setState($this, 1017); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) { - oavr_Recognizer_setState($this, 1016); - oncipv_Cypher25Parser_subqueryScope($this); - } - oavr_Recognizer_setState($this, 1019); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 1020); - oncipv_Cypher25Parser_regularQuery($this); - oavr_Recognizer_setState($this, 1021); - oavr_Parser_match($this, 211); - oavr_Recognizer_setState($this, 1023); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 127) { - oavr_Recognizer_setState($this, 1022); - oncipv_Cypher25Parser_subqueryInTransactionsParameters($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavr_CodePointCharStream_index = $this => { + return $this.$position6; +}, +oavr_CodePointCharStream_size = $this => { + return $this.$size4; +}, +oavr_CodePointCharStream_mark = $this => { + return (-1); +}, +oavr_CodePointCharStream_release = ($this, $marker) => { + return; +}, +oavr_CodePointCharStream_seek = ($this, $index) => { + $this.$position6 = $index; +}, +oavr_CodePointCharStream_toString = $this => { + return $this.$getText0(oavrm_Interval_of(0, $this.$size4 - 1 | 0)); +}, +oavr_CodePointCharStream__init_ = ($this, $x0, $x1, $x2, $x3) => { + if (!oavr_CodePointCharStream_$assertionsDisabled && $x0) { + $x2 = new jl_AssertionError; + jl_Throwable__init_0($x2); + $rt_throw($x2); } - return $_localctx; + $this.$size4 = $x1; + $this.$name63 = $x2; + $this.$position6 = 0; }, -oncipv_Cypher25Parser_subqueryScope = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SubqueryScopeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 80, 40); - a: { - b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1025); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1035); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - break f; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 241: - break e; - case 233: - break; - case 265: - oavr_Recognizer_setState($this, 1026); - oavr_Parser_match($this, 265); - break e; - default: - break e; - } - break e; - } - oavr_Recognizer_setState($this, 1027); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1032); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 46) - break e; - oavr_Recognizer_setState($this, 1028); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1029); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1034); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1037); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavr_CodePointCharStream__clinit_ = () => { + oavr_CodePointCharStream_$assertionsDisabled = 0; +}, +oncipl_CypherToken$ = $rt_classWithoutFields(), +oncipl_CypherToken$_MODULE$ = null, +oncipl_CypherToken$__clinit_ = () => { + oncipl_CypherToken$_MODULE$ = new oncipl_CypherToken$; +}, +oncipv_Cypher25Parser$StatementsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StatementsContext_getRuleIndex = $this => { + return 0; +}; +function oavr_RecognitionException() { + let a = this; jl_RuntimeException.call(a); + a.$recognizer = null; + a.$ctx = null; + a.$input = null; + a.$offendingToken = null; + a.$offendingState = 0; +} +let oavr_RecognitionException__init_ = ($this, $recognizer, $input, $ctx) => { + jl_Throwable__init_0($this); + $this.$offendingState = (-1); + $this.$recognizer = $recognizer; + $this.$input = $input; + $this.$ctx = $ctx; + if ($recognizer !== null) + $this.$offendingState = $recognizer.$_stateNumber; +}, +oavr_RecognitionException__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oavr_RecognitionException(); + oavr_RecognitionException__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oavr_RecognitionException_getExpectedTokens = $this => { + let var$1; + var$1 = $this.$recognizer; + if (var$1 === null) + return null; + return oavra_ATN_getExpectedTokens(var$1.$getATN(), $this.$offendingState, $this.$ctx); +}, +oavr_RecognitionException_getCtx = $this => { + return $this.$ctx; +}, +oavr_RecognitionException_getOffendingToken = $this => { + return $this.$offendingToken; +}, +oncia_ReturnItems$containsAggregate$lambda$_71_0 = $rt_classWithoutFields(), +oncia_ReturnItems$containsAggregate$lambda$_71_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncie_Expression_containsAggregate(var$1.$expression0())); +}; +function ong_ErrorGqlStatusObjectImplementation() { + let a = this; ong_CommonGqlStatusObjectImplementation.call(a); + a.$isCause = 0; + a.$cause1 = null; + a.$paramMap0 = null; + a.$gqlStatusInfoCode = null; +} +let ong_ErrorGqlStatusObjectImplementation_equals = ($this, $obj) => { + let $gql; + if ($obj instanceof ong_ErrorGqlStatusObjectImplementation) { + $gql = $obj; + if (ju_Objects_equals($this.$gqlStatusInfoCode, $gql.$gqlStatusInfoCode) && ju_Objects_equals($this.$diagnosticRecord, $gql.$diagnosticRecord) && ju_Objects_equals($this.$cause1, $gql.$cause1) && ju_Objects_equals($this.$paramMap0, $gql.$paramMap0)) + return 1; } - return $_localctx; + return 0; }, -oncipv_Cypher25Parser_subqueryInTransactionsParameters = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 82, 41); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1039); - oavr_Parser_match($this, 127); - oavr_Recognizer_setState($this, 1044); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 56, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - f: { - oavr_Recognizer_setState($this, 1041); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 55, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1040); - oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1043); - oavr_Parser_match($this, 50); - } - oavr_Recognizer_setState($this, 1046); - oavr_Parser_match($this, 272); - oavr_Recognizer_setState($this, 1052); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - g: { - try { - while (true) { - $_la = $_la - 179 | 0; - if ($_la & (-64)) - break; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(5, 4096)), Long_ZERO)) - break; - h: { - oavr_Recognizer_setState($this, 1050); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 179: - break; - case 181: - oavr_Recognizer_setState($this, 1048); - oncipv_Cypher25Parser_subqueryInTransactionsErrorParameters($this); - break h; - case 223: - oavr_Recognizer_setState($this, 1049); - oncipv_Cypher25Parser_subqueryInTransactionsReportParameters($this); - break h; - default: - break g; - } - oavr_Recognizer_setState($this, 1047); - oncipv_Cypher25Parser_subqueryInTransactionsBatchParameters($this); - } - oavr_Recognizer_setState($this, 1054); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $rt_throw(oavr_NoViableAltException__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - } else{ - $_localctx = $$je; - break c; - } - } - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +ong_ErrorGqlStatusObjectImplementation_from = $gqlStatusInfo => { + let var$2, var$3, var$4; + var$2 = new ong_ErrorGqlStatusObjectImplementation$Builder; + var$2.$cause3 = null; + var$2.$paramMap = ju_HashMap__init_(); + ong_DiagnosticRecord_$callClinit(); + var$3 = new ong_DiagnosticRecord$Builder; + var$4 = ju_HashMap__init_(); + var$3.$innerDiagnosticRecord0 = var$4; + ju_HashMap_put(var$4, $rt_s(3524), $rt_s(90)); + ju_HashMap_put(var$3.$innerDiagnosticRecord0, $rt_s(3525), $rt_s(4)); + ju_HashMap_put(var$3.$innerDiagnosticRecord0, $rt_s(3526), $rt_s(21)); + var$2.$diagnosticRecordBuilder = var$3; + var$2.$gqlStatusInfoCode0 = $gqlStatusInfo; + return var$2; +}, +ong_ErrorGqlStatusObjectImplementation_cause = $this => { + return ju_Optional_ofNullable($this.$cause1); +}, +ong_ErrorGqlStatusObjectImplementation_gqlStatusObject = $this => { + return $this; +}, +ong_ErrorGqlStatusObjectImplementation_adjustPosition = ($this, $oldOffset, $oldLine, $oldColumn, $newOffset, $newLine, $newCol) => { + let var$7, var$8; + if (ju_HashMap_containsKey($this.$diagnosticRecord.$innerDiagnosticRecord, $rt_s(3528))) { + var$7 = ju_HashMap_get($this.$diagnosticRecord.$innerDiagnosticRecord, $rt_s(3528)); + if ((var$7.$get6($rt_s(3529))).$value4 == $oldOffset && (var$7.$get6($rt_s(3530))).$value4 == $oldLine && (var$7.$get6($rt_s(3531))).$value4 == $oldColumn) + ju_HashMap_put($this.$diagnosticRecord.$innerDiagnosticRecord, $rt_s(3528), ju_Map_of0($rt_s(3529), jl_Integer_valueOf($newOffset), $rt_s(3530), jl_Integer_valueOf($newLine), $rt_s(3531), jl_Integer_valueOf($newCol))); + } + var$8 = ong_ErrorGqlStatusObjectImplementation_cause($this); + var$7 = new ong_ErrorGqlStatusObjectImplementation$adjustPosition$lambda$_8_0; + var$7.$_0401 = $oldOffset; + var$7.$_1143 = $oldLine; + var$7.$_251 = $oldColumn; + var$7.$_317 = $newOffset; + var$7.$_46 = $newLine; + var$7.$_53 = $newCol; + ju_Optional_ifPresent(var$8, var$7); +}, +ong_ErrorGqlStatusObjectImplementation_toString = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append(var$1, $rt_s(94)); + jl_AbstractStringBuilder_append(var$1, $rt_s(4973)); + jl_AbstractStringBuilder_append(var$1, jl_String_trim(ong_GqlStatusInfoCodes_getStatusString($this.$gqlStatusInfoCode))); + jl_AbstractStringBuilder_append(var$1, $rt_s(94)); + jl_AbstractStringBuilder_append(var$1, $rt_s(4974)); + jl_AbstractStringBuilder_append(var$1, jl_String_trim(ong_CommonGqlStatusObjectImplementation_insertMessageParameters($this, $this.$paramMap0))); + jl_AbstractStringBuilder_append(var$1, $rt_s(94)); + jl_AbstractStringBuilder_append(var$1, $rt_s(4975)); + jl_AbstractStringBuilder_append(var$1, jl_String_trim($this.$gqlStatusInfoCode.$subCondition)); + if ($this.$cause1 === null) + var$1 = jl_AbstractStringBuilder_toString(var$1); + else { + jl_AbstractStringBuilder_append(var$1, $rt_s(94)); + jl_AbstractStringBuilder_append(var$1, $rt_s(4976)); + var$2 = $this.$cause1.$toString(); + var$3 = jl_String_repeat($rt_s(370), 4); + var$4 = (jl_String_split(var$2, $rt_s(94))).data; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + var$5 = var$4.length; + var$6 = 0; + while (var$6 < var$5) { + var$7 = var$4[var$6]; + jl_AbstractStringBuilder_append(var$2, var$3); + jl_AbstractStringBuilder_append(var$2, var$7); + jl_AbstractStringBuilder_append(var$2, $rt_s(94)); + var$6 = var$6 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$2.$length1; + if (var$6 > 0) + var$2.$length1 = var$6 - 1 | 0; + jl_AbstractStringBuilder_append(var$1, jl_AbstractStringBuilder_toString(var$2)); + var$1 = jl_AbstractStringBuilder_toString(var$1); + } + return var$1; +}; +function oncia_SingleQuery$Acc$2$() { + sr_AbstractFunction2.call(this); + this.$$outer55 = null; +} +let oncia_SingleQuery$Acc$2$_apply = ($this, $precedingWrite, $errors) => { + let var$3, var$4; + var$3 = new oncia_SingleQuery$Acc$1; + var$4 = $this.$$outer55; + var$3.$precedingWrite = $precedingWrite; + var$3.$errors1 = $errors; + if (var$4 === null) + $rt_throw(null); + var$3.$$outer58 = var$4; + return var$3; +}, +oncia_SingleQuery$Acc$2$__init_0 = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer55 = $$outer; +}, +oncia_SingleQuery$Acc$2$__init_ = var_0 => { + let var_1 = new oncia_SingleQuery$Acc$2$(); + oncia_SingleQuery$Acc$2$__init_0(var_1, var_0); + return var_1; +}; +function oncias_package$$liftSemanticErrorDefs$lambda$_5_0() { + jl_Object.call(this); + this.$_0777 = null; +} +let oncias_package$$liftSemanticErrorDefs$lambda$_5_0_apply = (var$0, var$1) => { + return oncias_SemanticCheckResult__init_(var$1, var$0.$_0777); +}; +function oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0() { + jl_Object.call(this); + this.$_0651 = null; +} +let oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0_apply = (var$0, var$1, var$2) => { + return var$1.$chain(var$0.$_0651.$apply2(var$2)); +}; +function oncias_SemanticCheck$$nestedCheck$lambda$_11_0() { + jl_Object.call(this); + this.$_0733 = null; +} +let oncias_SemanticCheck$$nestedCheck$lambda$_11_0_apply = (var$0, var$1) => { + var$1 = var$0.$_0733; + oncias_SemanticCheck$_$callClinit(); + return var$1.$apply4(); +}; +function oncias_SemanticCheck$Leaf() { + jl_Object.call(this); + this.$f2 = null; +} +let oncias_SemanticCheck$Leaf_run = ($this, $state, $context) => { + return oncias_SemanticCheck_run$($this, $state, $context); +}, +oncias_SemanticCheck$Leaf_chain = ($this, $next) => { + return oncias_SemanticCheck_chain$($this, $next); +}, +oncias_SemanticCheck$Leaf_ifOkChain = ($this, $next) => { + return oncias_SemanticCheck_ifOkChain$($this, $next); +}, +oncias_SemanticCheck$Leaf_map = ($this, $f) => { + return oncias_SemanticCheck_map$($this, $f); +}, +oncias_SemanticCheck$Leaf_flatMap = ($this, $f) => { + return oncias_SemanticCheck_flatMap$($this, $f); +}, +oncias_SemanticCheck$Leaf_productPrefix = $this => { + return $rt_s(4977); +}, +oncias_SemanticCheck$Leaf_productArity = $this => { + return 1; +}, +oncias_SemanticCheck$Leaf_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$f2; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser_subqueryInTransactionsBatchParameters = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 84, 42); +oncias_SemanticCheck$Leaf_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$Leaf_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$Leaf_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$Leaf_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1055); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 1056); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1057); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 231 && $_la != 232) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticCheck$Leaf) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$f2; + $x$1 = $x$1.$f2; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}; +function oncia_Union$checkRecursively$lambda$_13_0() { + let a = this; jl_Object.call(a); + a.$_0443 = null; + a.$_1153 = null; +} +let oncia_Union$checkRecursively$lambda$_13_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = var$0.$_0443; + var$3 = var$0.$_1153; + var$4 = s_Tuple2__init_(var$2.$lhs(), var$2); + var$5 = var$4.$_10; + if (var$5 instanceof oncia_SingleQuery) + var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + else if (var$5 instanceof oncia_UnionAll && var$4.$_20 instanceof oncia_UnionAll) + var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + else if (var$5 instanceof oncia_UnionDistinct && var$4.$_20 instanceof oncia_UnionDistinct) + var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + else if (var$5 instanceof oncia_ProjectingUnionAll && var$4.$_20 instanceof oncia_ProjectingUnionAll) + var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + else if (var$5 instanceof oncia_ProjectingUnionDistinct && var$4.$_20 instanceof oncia_ProjectingUnionDistinct) + var$6 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + else { + var$7 = oncias_package$_MODULE$; + var$8 = new s_Some; + oncias_SemanticError$_$callClinit(); + var$9 = var$2.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + s_Some__init_0(var$8, oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$9.$offset(), var$9.$line(), var$9.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I40), + var$9.$offset(), var$9.$line(), var$9.$column())))), $rt_s(4978), var$9)); + var$6 = oncias_package$_liftSemanticErrorDefOption(var$7, var$8); + } + var$5 = var$2.$lhs(); + if ($rt_isInstance(var$5, oncia_UnionArgument)) + var$5 = oncia_Union_checkSingleQuery$1(var$2, var$5, var$3); + else { + if (!$rt_isInstance(var$5, oncia_Union)) + $rt_throw(s_MatchError__init_(var$5)); + var$5 = var$5; + var$4 = new oncia_Union$checkNestedQuery$1$lambda$_42_0; + var$4.$_0731 = var$5; + var$4.$_1245 = var$3; + var$5 = var$2.$withScopedState(var$4); + } + var$4 = oncias_SemanticCheck_chain$(var$6, var$5); + oncias_SemanticCheck$_$callClinit(); + var$6 = oncias_SemanticCheck$_MODULE$; + var$5 = new oncia_Union$$anonfun$checkRecursively$4$lambda$_44_0; + var$5.$_0602 = var$1; + var$6 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$4, oncias_SemanticCheck$_fromState(var$6, var$5)), oncia_Union_checkSingleQuery$1(var$2, var$2.$rhs0(), var$3)), var$2.$checkColumnNamesAgree()); + var$1 = oncias_package$_MODULE$; + var$3 = new oncia_Union$defineUnionVariables$lambda$_30_0; + var$3.$_01124 = var$2; + var$3 = oncias_SemanticCheck_chain$(var$6, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$1, var$3)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$2)); }, -oncipv_Cypher25Parser_subqueryInTransactionsErrorParameters = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 86, 43); +oncifp_QualifiedName$ = $rt_classWithoutFields(), +oncifp_QualifiedName$_MODULE$ = null, +oncifp_QualifiedName$__clinit_ = () => { + oncifp_QualifiedName$_MODULE$ = new oncifp_QualifiedName$; +}; +function oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0() { + jl_Object.call(this); + this.$_044 = null; +} +let oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_044; + oncifp_ResolvedFunctionInvocation$_$callClinit(); + var$3 = var$2.$args0; + return (onciu_ZippableUtil$Zippable_zipLeft(onciu_ZippableUtil$_Zippable(onciu_ZippableUtil$_MODULE$, var$3), var$1.$inputSignature, null, sc_BuildFrom$_buildFromIterableOps(sc_BuildFrom$_MODULE$))).$map(new oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0); +}; +function oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1() { + jl_Object.call(this); + this.$_01130 = null; +} +let oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1_apply = var$0 => { + let var$1; + var$1 = var$0.$_01130; + oncifp_ResolvedFunctionInvocation$_$callClinit(); + return var$1.$args0; +}, +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1_applyOrElse = ($this, $x1, $default) => { + if ($x1 instanceof oncie_Or) + return jl_Boolean_valueOf(1); + if (!$rt_isInstance($x1, oncie_ScopeExpression)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return jl_Boolean_valueOf(1); +}, +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1_applyOrElse = ($this, $x1, $default) => { + if (!($x1 instanceof oncie_In)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return jl_Boolean_valueOf(1); +}, +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1_applyOrElse = ($this, $x1, $default) => { + if (!($x1 instanceof oncie_Not)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return jl_Boolean_valueOf(1); +}, +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1_applyOrElse = ($this, $x1, $default) => { + if (!($x1 instanceof oncie_Not)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return jl_Boolean_valueOf(1); +}, +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1_applyOrElse = ($this, $x1, $default) => { + if (!($x1 instanceof oncie_And)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return jl_Boolean_valueOf(1); +}, +oncias_SemanticError$ = $rt_classWithoutFields(), +oncias_SemanticError$_MODULE$ = null, +oncias_SemanticError$_existsErrorMessage = null, +oncias_SemanticError$_countErrorMessage = null, +oncias_SemanticError$_collectErrorMessage = null, +oncias_SemanticError$_genericErrorMessage = null, +oncias_SemanticError$_validLastClauses = null, +oncias_SemanticError$_$callClinit = () => { + oncias_SemanticError$_$callClinit = $rt_eraseClinit(oncias_SemanticError$); + oncias_SemanticError$__clinit_(); +}, +oncias_SemanticError$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticError$; + oncias_SemanticError$_$callClinit(); + oncias_SemanticError$_MODULE$ = var$1; + oncias_SemanticError$_existsErrorMessage = $rt_s(4979); + oncias_SemanticError$_countErrorMessage = $rt_s(4980); + oncias_SemanticError$_collectErrorMessage = $rt_s(4981); + oncias_SemanticError$_genericErrorMessage = $rt_s(4982); + oncias_SemanticError$_validLastClauses = $rt_s(4983); +}, +oncias_SemanticError$_apply = ($this, $msg, $position) => { + return oncias_SemanticError__init_0(null, $msg, $position); +}, +oncias_SemanticError$_invalidUseOfGraphFunction = ($this, $graphFunction, $pos) => { + let $gql, var$4, var$5; + ong_GqlStatusInfoCodes_$callClinit(); + $gql = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $pos.$offset(), $pos.$line(), $pos.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N75), + $pos.$offset(), $pos.$line(), $pos.$column()), ong_GqlParams$StringParam_fun, $graphFunction)))); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_AbstractStringBuilder_append0(var$5, 96); + jl_StringBuilder_append(jl_StringBuilder_append(var$5, $graphFunction), $rt_s(4984)); + oncias_SemanticError__init_(var$4, $gql, jl_AbstractStringBuilder_toString(var$5), $pos); + return var$4; +}, +oncias_SemanticError$_existsInDriverSettings = ($this, $position) => { + let $gql, var$3; + $gql = ong_GqlHelper_getGql22N81(ong_GqlParams$StringParam_process(ong_GqlParams$StringParam_cmd, $rt_s(4349)), $rt_s(4985), $position.$offset(), $position.$line(), $position.$column()); + var$3 = new oncias_SemanticError; + oncias_SemanticError$_$callClinit(); + oncias_SemanticError__init_(var$3, $gql, oncias_SemanticError$_existsErrorMessage, $position); + return var$3; +}, +oncias_SemanticError$_countInDriverSettings = ($this, $position) => { + let $gql, var$3; + $gql = ong_GqlHelper_getGql22N81(ong_GqlParams$StringParam_process(ong_GqlParams$StringParam_cmd, $rt_s(4310)), $rt_s(4985), $position.$offset(), $position.$line(), $position.$column()); + var$3 = new oncias_SemanticError; + oncias_SemanticError$_$callClinit(); + oncias_SemanticError__init_(var$3, $gql, oncias_SemanticError$_countErrorMessage, $position); + return var$3; +}, +oncias_SemanticError$_collectInDriverSettings = ($this, $position) => { + let $gql, var$3; + $gql = ong_GqlHelper_getGql22N81(ong_GqlParams$StringParam_process(ong_GqlParams$StringParam_cmd, $rt_s(4299)), $rt_s(4985), $position.$offset(), $position.$line(), $position.$column()); + var$3 = new oncias_SemanticError; + oncias_SemanticError$_$callClinit(); + oncias_SemanticError__init_(var$3, $gql, oncias_SemanticError$_collectErrorMessage, $position); + return var$3; +}, +oncias_SemanticError$_genericDriverSettingsFail = ($this, $position) => { + let $gql, var$3; + $gql = ong_GqlHelper_getGql22N81(ong_GqlParams$StringParam_process(ong_GqlParams$StringParam_cmd, $rt_s(4349)), $rt_s(4985), $position.$offset(), $position.$line(), $position.$column()); + var$3 = new oncias_SemanticError; + oncias_SemanticError$_$callClinit(); + oncias_SemanticError__init_(var$3, $gql, oncias_SemanticError$_genericErrorMessage, $position); + return var$3; +}, +oncias_SemanticError$_legacyDisjunction = ($this, $sanitizedLabelExpression, $containsIs, $isNode, $position) => { + let $isOrColon, $msg, $gql; + $isOrColon = !$containsIs ? $rt_s(92) : $rt_s(441); + if (!$isNode) { + $msg = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $gql = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($gql); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($gql, $rt_s(4986)), $isOrColon), $sanitizedLabelExpression), $rt_s(1004)); + $msg = sc_StringOps$_stripMargin$extension($msg, jl_AbstractStringBuilder_toString($gql)); + } else { + $msg = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $gql = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($gql); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($gql, $rt_s(4987)), $isOrColon), $sanitizedLabelExpression), $rt_s(4988)); + $msg = sc_StringOps$_stripMargin$extension($msg, jl_AbstractStringBuilder_toString($gql)); + } + return oncias_SemanticError__init_0(ong_GqlHelper_getGql42001_42I20($rt_s(484), $rt_s(449), $position.$offset(), $position.$line(), $position.$column()), $msg, $position); +}, +oncias_SemanticError$_invalidDisjunction = ($this, $isNode, $position) => { + return oncias_SemanticError__init_0(ong_GqlHelper_getGql42001_42I20(!$isNode ? $rt_s(92) : $rt_s(484), $rt_s(449), $position.$offset(), $position.$line(), $position.$column()), !$isNode ? $rt_s(4989) : $rt_s(4990), $position); +}, +oncias_SemanticError$_subPathAssignmentNotSupported = ($this, $position) => { + let var$2, var$3, var$4; + var$2 = $position.$offset(); + var$3 = $position.$line(); + var$4 = $position.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + return oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$2, var$3, var$4), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N42), var$2, var$3, + var$4)))), $rt_s(4991), $position); +}, +oncias_SemanticError$_invalidEntityType = ($this, $invalidInput, $variable, $expectedValueList, $legacyMessage, $pos) => { + let $gql, var$7, var$8, var$9; + $gql = scc_AsJavaExtensions$SeqHasAsJava_asJava(sj_CollectionConverters$_SeqHasAsJava(sj_CollectionConverters$_MODULE$, $expectedValueList)); + var$7 = $pos.$offset(); + var$8 = $pos.$line(); + var$9 = $pos.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + $expectedValueList = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22G03), var$7, var$8, var$9); + $invalidInput = ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N27), ong_GqlParams$StringParam_input, $invalidInput), ong_GqlParams$StringParam_context, $variable); + ong_GqlParams$ListParam_$callClinit(); + return oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause($expectedValueList, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withParam1($invalidInput, ong_GqlParams$ListParam_valueTypeList, $gql), var$7, var$8, var$9)))), $legacyMessage, $pos); +}, +oncias_SemanticError$_missingHintPredicate = ($this, $legacyMessage, $hint, $entity, $variable, $position) => { + let var$6; + ong_GqlStatusInfoCodes_$callClinit(); + var$6 = ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N76); + ong_GqlParams$ListParam_$callClinit(); + return oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withParam1(var$6, ong_GqlParams$ListParam_hintList, scc_AsJavaExtensions$SeqHasAsJava_asJava(sj_CollectionConverters$_SeqHasAsJava(sj_CollectionConverters$_MODULE$, sci_$colon$colon__init_($hint, sci_Nil$_MODULE$)))), $position.$offset(), $position.$line(), + $position.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N77), ong_GqlParams$StringParam_hint, $hint), ong_GqlParams$StringParam_entityType, $entity), ong_GqlParams$StringParam_variable, + $variable), $position.$offset(), $position.$line(), $position.$column())))), $legacyMessage, $position); +}, +oncias_SemanticError$_aExpressionCannotContainUpdates = ($this, $expr, $position) => { + let $gql, var$4, var$5; + $gql = ong_GqlHelper_getGql42001_42N57($expr, $position.$offset(), $position.$line(), $position.$column()); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(4992)), $expr), $rt_s(4993)); + oncias_SemanticError__init_(var$4, $gql, jl_AbstractStringBuilder_toString(var$5), $position); + return var$4; +}, +oncias_SemanticError$_invalidUseOfReturn = ($this, $name, $position) => { + let $gql, var$4, var$5; + ong_GqlStatusInfoCodes_$callClinit(); + $gql = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $position.$offset(), $position.$line(), $position.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I38), + $position.$offset(), $position.$line(), $position.$column())))); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(var$5, $name), $rt_s(4047)); + oncias_SemanticError__init_(var$4, $gql, jl_AbstractStringBuilder_toString(var$5), $position); + return var$4; +}, +oncias_SemanticError$_invalidUseOfMatch = ($this, $position) => { + ong_GqlStatusInfoCodes_$callClinit(); + return oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $position.$offset(), $position.$line(), $position.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I31), + $position.$offset(), $position.$line(), $position.$column())))), $rt_s(4994), $position); +}, +oncias_SemanticError$_numberTooLarge = ($this, $numberType, $value, $position) => { + let $gql, var$5; + $gql = ong_GqlHelper_getGql22003($value, $position.$offset(), $position.$line(), $position.$column()); + $value = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(var$5, $numberType), $rt_s(4995)); + oncias_SemanticError__init_($value, $gql, jl_AbstractStringBuilder_toString(var$5), $position); + return $value; +}, +oncias_SemanticError$_integerOperationCannotBeRepresented = ($this, $operation, $position) => { + let $gql, var$4, var$5; + $gql = ong_GqlHelper_getGql22003($operation, $position.$offset(), $position.$line(), $position.$column()); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(4996)), $operation), $rt_s(4997)); + oncias_SemanticError__init_(var$4, $gql, jl_AbstractStringBuilder_toString(var$5), $position); + return var$4; +}, +oncias_SemanticError$_bothOrReplaceAndIfNotExists = ($this, $entity, $userAsString, $position) => { + let $gql, var$5, var$6; + $gql = ong_GqlHelper_getGql42001_42N14($rt_s(4998), $rt_s(4999), $position.$offset(), $position.$line(), $position.$column()); + var$5 = new oncias_SemanticError; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(5000)), $entity), $rt_s(5001)), $userAsString), $rt_s(5002)); + oncias_SemanticError__init_(var$5, $gql, jl_AbstractStringBuilder_toString(var$6), $position); + return var$5; +}, +oncias_SemanticError$_badCommandWithOrReplace = ($this, $cmd, $cypherCmd, $position) => { + let $gql, var$5; + $gql = ong_GqlHelper_getGql42001_42N14($rt_s(4998), $cypherCmd, $position.$offset(), $position.$line(), $position.$column()); + $cypherCmd = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5003)), $cmd), $rt_s(5004)); + oncias_SemanticError__init_($cypherCmd, $gql, jl_AbstractStringBuilder_toString(var$5), $position); + return $cypherCmd; +}, +oncias_SemanticError$_denyMergeUnsupported = ($this, $position) => { + return oncias_SemanticError__init_0(ong_GqlHelper_getGql42001_42N14($rt_s(4321), $rt_s(4393), $position.$offset(), $position.$line(), $position.$column()), $rt_s(5005), $position); +}, +oncias_SemanticError$_invalidNumberOfProcedureOrFunctionArguments = ($this, $expectedNumberOfArgs, $obtainedNumberOfArgs, $procedureFunction, $signature, $legacyMessage, $position) => { + let $gql, var$8, var$9; + ong_GqlStatusInfoCodes_$callClinit(); + $gql = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $position.$offset(), $position.$line(), $position.$column()); + var$8 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I13), $position.$offset(), $position.$line(), $position.$column()); + var$9 = ong_GqlParams$NumberParam_count1; + s_Predef$_$callClinit(); + return oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause($gql, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(var$8, var$9, jl_Integer_valueOf($expectedNumberOfArgs)), ong_GqlParams$NumberParam_count2, + jl_Integer_valueOf($obtainedNumberOfArgs)), ong_GqlParams$StringParam_procFun, $procedureFunction), ong_GqlParams$StringParam_sig, $signature)))), $legacyMessage, $position); +}, +oncias_SemanticError$_missingReturn = ($this, $position) => { + ong_GqlStatusInfoCodes_$callClinit(); + return oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N92)), $rt_s(5006), $position); +}, +oncias_SemanticError$_queryCannotConcludeWithClause = ($this, $clause, $position) => { + let $gql, var$4, var$5, var$6; + $gql = ong_GqlHelper_getGql42001_42N71($position.$offset(), $position.$line(), $position.$column()); + var$4 = new oncias_SemanticError; + var$5 = oncias_SemanticError$_validLastClauses0($this); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(4052)), $clause), $rt_s(5007)), var$5), $rt_s(5008)); + oncias_SemanticError__init_(var$4, $gql, jl_AbstractStringBuilder_toString(var$6), $position); + return var$4; +}, +oncias_SemanticError$_validLastClauses0 = $this => { + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_validLastClauses; +}, +oncias_SemanticError$_withIsRequiredBetween = ($this, $clause1, $clause2, $position) => { + let $gql, var$5, var$6; + $gql = ong_GqlHelper_getGql42001_42N24($clause1, $clause2, $position.$offset(), $position.$line(), $position.$column()); + var$5 = new oncias_SemanticError; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(5009)), $clause1), $rt_s(120)), $clause2); + oncias_SemanticError__init_(var$5, $gql, jl_AbstractStringBuilder_toString(var$6), $position); + return var$5; +}, +oncipv_Cypher5Parser$StatementsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StatementsContext_getRuleIndex = $this => { + return 0; +}; +function oavr_CodePointBuffer$Builder() { + let a = this; jl_Object.call(a); + a.$type2 = null; + a.$byteBuffer = null; + a.$charBuffer = null; + a.$intBuffer = null; + a.$prevHighSurrogate = 0; +} +let oavr_CodePointBuffer$Builder_$assertionsDisabled = 0, +oavr_CodePointBuffer$Builder_build = $this => { + let var$1, var$2, var$3, var$4, var$5; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1059); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 1060); - oavr_Parser_match($this, 102); - oavr_Recognizer_setState($this, 1061); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 35 && $_la != 55 && $_la != 103) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oavr_CodePointBuffer$1_$callClinit(); + switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type2.$ordinal]) { + case 1: + break; + case 2: + jn_Buffer_flip($this.$charBuffer); + break a; + case 3: + jn_Buffer_flip($this.$intBuffer); + break a; + default: + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jn_Buffer_flip($this.$byteBuffer); } - return $_localctx; + var$1 = new oavr_CodePointBuffer; + var$2 = $this.$type2; + var$3 = $this.$byteBuffer; + var$4 = $this.$charBuffer; + var$5 = $this.$intBuffer; + var$1.$type1 = var$2; + var$1.$byteBuffer0 = var$3; + var$1.$charBuffer0 = var$4; + var$1.$intBuffer0 = var$5; + return var$1; }, -oncipv_Cypher25Parser_subqueryInTransactionsReportParameters = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 88, 44); +oavr_CodePointBuffer$Builder_roundUpToNextPowerOfTwo = $i => { + return jl_Math_powImpl(2.0, 32 - jl_Integer_numberOfLeadingZeros($i - 1 | 0) | 0) | 0; +}, +oavr_CodePointBuffer$Builder_append = ($this, $utf16In) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1063); - oavr_Parser_match($this, 223); - oavr_Recognizer_setState($this, 1064); - oavr_Parser_match($this, 255); - oavr_Recognizer_setState($this, 1065); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 1066); - oncipv_Cypher25Parser_variable($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$2 = jn_Buffer_remaining($utf16In); + oavr_CodePointBuffer$1_$callClinit(); + switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type2.$ordinal]) { + case 1: + break; + case 2: + break c; + case 3: + break b; + default: + break a; } + if (jn_Buffer_remaining($this.$byteBuffer) >= var$2) + break a; + var$3 = jn_ByteBuffer_allocate(oavr_CodePointBuffer$Builder_roundUpToNextPowerOfTwo($this.$byteBuffer.$capacity0 + var$2 | 0)); + jn_Buffer_flip($this.$byteBuffer); + var$4 = $this.$byteBuffer; + jn_ByteBuffer_put(var$3, var$4.$array6, var$4.$start3 + var$4.$position3 | 0, jn_Buffer_remaining(var$4)); + $this.$byteBuffer = var$3; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (jn_Buffer_remaining($this.$charBuffer) >= var$2) + break a; + var$3 = jn_CharBuffer_allocate(oavr_CodePointBuffer$Builder_roundUpToNextPowerOfTwo($this.$charBuffer.$capacity0 + var$2 | 0)); + jn_Buffer_flip($this.$charBuffer); + var$4 = $this.$charBuffer; + if (var$3.$readOnly) { + $utf16In = new jn_ReadOnlyBufferException; + jl_Throwable__init_0($utf16In); + $rt_throw($utf16In); + } + if (jn_Buffer_remaining(var$3) < jn_Buffer_remaining(var$4)) { + $utf16In = new jn_BufferOverflowException; + jl_Throwable__init_0($utf16In); + $rt_throw($utf16In); + } + var$5 = jn_Buffer_remaining(var$4); + var$6 = var$3.$position3; + var$7 = var$4.$position3; + var$8 = 0; + while (var$8 < var$5) { + var$9 = var$6 + 1 | 0; + var$2 = var$7 + 1 | 0; + jn_CharBufferOverArray_putChar(var$3, var$6, jn_CharBufferOverArray_getChar(var$4, var$7)); + var$8 = var$8 + 1 | 0; + var$6 = var$9; + var$7 = var$2; + } + var$3.$position3 = var$3.$position3 + var$5 | 0; + $this.$charBuffer = var$3; + break a; + } + if (jn_Buffer_remaining($this.$intBuffer) < var$2) { + var$3 = jn_IntBuffer_allocate(oavr_CodePointBuffer$Builder_roundUpToNextPowerOfTwo($this.$intBuffer.$capacity0 + var$2 | 0)); + jn_Buffer_flip($this.$intBuffer); + var$4 = $this.$intBuffer; + if (var$3.$readOnly0) { + $utf16In = new jn_ReadOnlyBufferException; + jl_Throwable__init_0($utf16In); + $rt_throw($utf16In); + } + if (jn_Buffer_remaining(var$3) < jn_Buffer_remaining(var$4)) { + $utf16In = new jn_BufferOverflowException; + jl_Throwable__init_0($utf16In); + $rt_throw($utf16In); + } + var$5 = jn_Buffer_remaining(var$4); + var$6 = var$3.$position3; + var$7 = var$4.$position3; + var$8 = 0; + while (var$8 < var$5) { + var$9 = var$6 + 1 | 0; + var$2 = var$7 + 1 | 0; + jn_IntBufferOverArray_putElement(var$3, var$6, var$4.$array16.data[var$7 + var$4.$start5 | 0]); + var$8 = var$8 + 1 | 0; + var$6 = var$9; + var$7 = var$2; + } + var$3.$position3 = var$3.$position3 + var$5 | 0; + $this.$intBuffer = var$3; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher25Parser_orderBySkipLimitClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$OrderBySkipLimitClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 90, 45); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1080); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 146: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1079); - oncipv_Cypher25Parser_limit($this); - break e; - case 180: - case 252: - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1075); - oncipv_Cypher25Parser_skip($this); - oavr_Recognizer_setState($this, 1077); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 61, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1076); - oncipv_Cypher25Parser_limit($this); - } - break e; - case 187: - g: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1068); - oncipv_Cypher25Parser_orderBy($this); - oavr_Recognizer_setState($this, 1070); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 59, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 1069); - oncipv_Cypher25Parser_skip($this); - } - h: { - oavr_Recognizer_setState($this, 1073); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 60, $this.$_ctx)) { - case 1: - break; - default: - break h; - } - oavr_Recognizer_setState($this, 1072); - oncipv_Cypher25Parser_limit($this); - } - break e; - default: + var$2 = oavr_CodePointBuffer$Builder_$assertionsDisabled; + d: { + switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type2.$ordinal]) { + case 1: + if (!var$2 && $this.$prevHighSurrogate != (-1)) { + $utf16In = new jl_AssertionError; + jl_Throwable__init_0($utf16In); + $rt_throw($utf16In); + } + var$10 = $utf16In.$array4; + var$9 = $utf16In.$start2; + var$5 = var$9 + $utf16In.$position3 | 0; + var$6 = var$9 + $utf16In.$limit2 | 0; + var$3 = $this.$byteBuffer; + var$11 = var$3.$array6; + var$7 = var$3.$start3 + var$3.$position3 | 0; + e: { + while (var$5 < var$6) { + var$8 = var$10.data[var$5]; + if (var$8 > 255) { + jn_Buffer_position($utf16In, var$5 - var$9 | 0); + var$3 = $this.$byteBuffer; + jn_Buffer_position(var$3, var$7 - var$3.$start3 | 0); + if (jl_Character_isHighSurrogate(var$8)) { + oavr_CodePointBuffer$Builder_byteToIntBuffer($this, jn_Buffer_remaining($utf16In)); + oavr_CodePointBuffer$Builder_appendArrayInt($this, $utf16In); + break e; } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + oavr_CodePointBuffer$Builder_byteToCharBuffer($this, jn_Buffer_remaining($utf16In)); + oavr_CodePointBuffer$Builder_appendArrayChar($this, $utf16In); + break e; } + var$11.data[var$7] = (var$8 & 255) << 24 >> 24; + var$5 = var$5 + 1 | 0; + var$7 = var$7 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + jn_Buffer_position($utf16In, var$5 - var$9 | 0); + $utf16In = $this.$byteBuffer; + jn_Buffer_position($utf16In, var$7 - $utf16In.$start3 | 0); } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + break d; + case 2: + break; + case 3: + oavr_CodePointBuffer$Builder_appendArrayInt($this, $utf16In); + break d; + default: + break d; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oavr_CodePointBuffer$Builder_appendArrayChar($this, $utf16In); } - return $_localctx; }, -oncipv_Cypher25Parser_patternList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PatternListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 92, 46); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1082); - oncipv_Cypher25Parser_pattern($this); - oavr_Recognizer_setState($this, 1087); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 1083); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1084); - oncipv_Cypher25Parser_pattern($this); - oavr_Recognizer_setState($this, 1089); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - +oavr_CodePointBuffer$Builder_appendArrayChar = ($this, $utf16In) => { + let var$2, $outOffset, $inOffset, $inLimit, var$6, var$7, $c, var$9; + if (!oavr_CodePointBuffer$Builder_$assertionsDisabled && $this.$prevHighSurrogate != (-1)) { + $utf16In = new jl_AssertionError; + jl_Throwable__init_0($utf16In); + $rt_throw($utf16In); + } + var$2 = $utf16In.$array4; + $outOffset = $utf16In.$start2; + $inOffset = $outOffset + $utf16In.$position3 | 0; + $inLimit = $outOffset + $utf16In.$limit2 | 0; + var$6 = $this.$charBuffer; + var$7 = var$6.$array4; + $outOffset = var$6.$start2 + var$6.$position3 | 0; + while ($inOffset < $inLimit) { + $c = var$2.data[$inOffset]; + if (jl_Character_isHighSurrogate($c)) { + jn_Buffer_position($utf16In, $inOffset - $utf16In.$start2 | 0); + var$6 = $this.$charBuffer; + jn_Buffer_position(var$6, $outOffset - var$6.$start2 | 0); + $inOffset = jn_Buffer_remaining($utf16In); + jn_Buffer_flip($this.$charBuffer); + var$6 = jn_IntBuffer_allocate(jl_Math_max(jn_Buffer_remaining($this.$charBuffer) + $inOffset | 0, $this.$charBuffer.$capacity0 / 2 | 0)); + while (true) { + if (!jn_Buffer_hasRemaining($this.$charBuffer)) { + $this.$type2 = oavr_CodePointBuffer$Type_INT; + $this.$charBuffer = null; + $this.$intBuffer = var$6; + oavr_CodePointBuffer$Builder_appendArrayInt($this, $utf16In); + return; } + var$9 = $this.$charBuffer; + $inLimit = var$9.$position3; + if ($inLimit >= var$9.$limit2) + break; + var$9.$position3 = $inLimit + 1 | 0; + jn_IntBufferImpl_put(var$6, jn_CharBufferOverArray_getChar(var$9, $inLimit) & 65535); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $utf16In = new jn_BufferUnderflowException; + jl_Throwable__init_0($utf16In); + $rt_throw($utf16In); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$7.data[$outOffset] = $c; + $inOffset = $inOffset + 1 | 0; + $outOffset = $outOffset + 1 | 0; } - return $_localctx; + jn_Buffer_position($utf16In, $inOffset - $utf16In.$start2 | 0); + $utf16In = $this.$charBuffer; + jn_Buffer_position($utf16In, $outOffset - $utf16In.$start2 | 0); }, -oncipv_Cypher25Parser_insertPatternList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$InsertPatternListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 94, 47); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1090); - oncipv_Cypher25Parser_insertPattern($this); - oavr_Recognizer_setState($this, 1095); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 1091); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1092); - oncipv_Cypher25Parser_insertPattern($this); - oavr_Recognizer_setState($this, 1097); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oavr_CodePointBuffer$Builder_appendArrayInt = ($this, $utf16In) => { + let var$2, var$3, $inOffset, $inLimit, var$6, var$7, $outOffset, $c, var$10; + var$2 = $utf16In.$array4; + var$3 = $utf16In.$start2; + $inOffset = var$3 + $utf16In.$position3 | 0; + $inLimit = var$3 + $utf16In.$limit2 | 0; + var$6 = $this.$intBuffer; + var$7 = var$6.$array16; + $outOffset = var$6.$start5 + var$6.$position3 | 0; + while ($inOffset < $inLimit) { + $c = var$2.data[$inOffset]; + $inOffset = $inOffset + 1 | 0; + if ($this.$prevHighSurrogate == (-1)) { + if (jl_Character_isHighSurrogate($c)) + $this.$prevHighSurrogate = $c & 65535; + else { + var$7.data[$outOffset] = $c & 65535; + $outOffset = $outOffset + 1 | 0; + } + } else if (jl_Character_isLowSurrogate($c)) { + var$7.data[$outOffset] = jl_Character_toCodePoint($this.$prevHighSurrogate & 65535, $c); + $outOffset = $outOffset + 1 | 0; + $this.$prevHighSurrogate = (-1); + } else { + var$10 = var$7.data; + var$10[$outOffset] = $this.$prevHighSurrogate; + $outOffset = $outOffset + 1 | 0; + if (jl_Character_isHighSurrogate($c)) + $this.$prevHighSurrogate = $c & 65535; + else { + var$10[$outOffset] = $c & 65535; + $outOffset = $outOffset + 1 | 0; + $this.$prevHighSurrogate = (-1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + var$3 = $this.$prevHighSurrogate; + if (var$3 != (-1)) { + var$7.data[$outOffset] = var$3 & 65535; + $outOffset = $outOffset + 1 | 0; + } + jn_Buffer_position($utf16In, $inOffset - $utf16In.$start2 | 0); + $utf16In = $this.$intBuffer; + jn_Buffer_position($utf16In, $outOffset - $utf16In.$start5 | 0); }, -oncipv_Cypher25Parser_pattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 96, 48); +oavr_CodePointBuffer$Builder_byteToCharBuffer = ($this, $toAppend) => { + let $newBuffer, var$3; + jn_Buffer_flip($this.$byteBuffer); + $newBuffer = jn_CharBuffer_allocate(jl_Math_max(jn_Buffer_remaining($this.$byteBuffer) + $toAppend | 0, $this.$byteBuffer.$capacity0 / 2 | 0)); + while (jn_Buffer_hasRemaining($this.$byteBuffer)) { + $toAppend = jn_ByteBufferImpl_get($this.$byteBuffer) & 255 & 65535; + if ($newBuffer.$readOnly) { + $newBuffer = new jn_ReadOnlyBufferException; + jl_Throwable__init_0($newBuffer); + $rt_throw($newBuffer); + } + var$3 = $newBuffer.$position3; + if (var$3 >= $newBuffer.$limit2) { + $newBuffer = new jn_BufferOverflowException; + jl_Throwable__init_0($newBuffer); + $rt_throw($newBuffer); + } + $newBuffer.$position3 = var$3 + 1 | 0; + jn_CharBufferOverArray_putChar($newBuffer, var$3, $toAppend); + } + $this.$type2 = oavr_CodePointBuffer$Type_CHAR; + $this.$byteBuffer = null; + $this.$charBuffer = $newBuffer; +}, +oavr_CodePointBuffer$Builder_byteToIntBuffer = ($this, $toAppend) => { + let $newBuffer; + jn_Buffer_flip($this.$byteBuffer); + $newBuffer = jn_IntBuffer_allocate(jl_Math_max(jn_Buffer_remaining($this.$byteBuffer) + $toAppend | 0, $this.$byteBuffer.$capacity0 / 4 | 0)); + while (jn_Buffer_hasRemaining($this.$byteBuffer)) { + jn_IntBufferImpl_put($newBuffer, jn_ByteBufferImpl_get($this.$byteBuffer) & 255); + } + $this.$type2 = oavr_CodePointBuffer$Type_INT; + $this.$byteBuffer = null; + $this.$intBuffer = $newBuffer; +}, +oavr_CodePointBuffer$Builder__clinit_ = () => { + oavr_CodePointBuffer$Builder_$assertionsDisabled = 0; +}, +oavr_CodePointCharStream$1 = $rt_classWithoutFields(), +oavr_CodePointCharStream$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type = null, +oavr_CodePointCharStream$1_$callClinit = () => { + oavr_CodePointCharStream$1_$callClinit = $rt_eraseClinit(oavr_CodePointCharStream$1); + oavr_CodePointCharStream$1__clinit_(); +}, +oavr_CodePointCharStream$1__clinit_ = () => { + let var$1, var$2; + var$1 = $rt_createIntArray((oavr_CodePointBuffer$Type_values()).data.length); + var$2 = var$1.data; + oavr_CodePointCharStream$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type = var$1; + var$2[oavr_CodePointBuffer$Type_BYTE.$ordinal] = 1; + var$2[oavr_CodePointBuffer$Type_CHAR.$ordinal] = 2; + var$2[oavr_CodePointBuffer$Type_INT.$ordinal] = 3; +}; +function oavr_CodePointCharStream$CodePoint8BitCharStream() { + oavr_CodePointCharStream.call(this); + this.$byteArray = null; +} +let oavr_CodePointCharStream$CodePoint8BitCharStream_$assertionsDisabled = 0, +oavr_CodePointCharStream$CodePoint8BitCharStream_getText = ($this, $interval) => { + let $startIdx, $len, var$4, var$5, var$6, $$je; + $startIdx = jl_Math_min($interval.$a0, $this.$size4); + $len = jl_Math_min(($interval.$b - $interval.$a0 | 0) + 1 | 0, $this.$size4 - $startIdx | 0); + $interval = new jl_String; + var$4 = $this.$byteArray; + jnc_StandardCharsets_$callClinit(); + var$5 = jnc_StandardCharsets_ISO_8859_1; + var$6 = jn_ByteBuffer_wrap(var$4, $startIdx, $len); a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1101); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 65, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1098); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1099); - oavr_Parser_match($this, 96); - } - oavr_Recognizer_setState($this, 1104); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 21 && $_la != 248)) { - oavr_Recognizer_setState($this, 1103); - oncipv_Cypher25Parser_selector($this); - } - oavr_Recognizer_setState($this, 1106); - oncipv_Cypher25Parser_anonymousPattern($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + try { + var$5 = jnc_CharsetDecoder_decode0(jnc_CharsetDecoder_onUnmappableCharacter(jnc_CharsetDecoder_onMalformedInput(jnci_Iso8859Charset_newDecoder(var$5), jnc_CodingErrorAction_REPLACE), jnc_CodingErrorAction_REPLACE), var$6); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jnc_CharacterCodingException) { + var$5 = $$je; + } else { + throw $$e; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = new jl_AssertionError; + jl_Throwable__init_1(var$6, $rt_s(11), var$5); + $rt_throw(var$6); + } + if (!var$5.$position3 && var$5.$limit2 == var$5.$capacity0) + var$4 = var$5.$array4; + else { + var$4 = $rt_createCharArray(jn_Buffer_remaining(var$5)); + jn_CharBuffer_get(var$5, var$4, 0, var$4.data.length); + } + $interval.$nativeString = $rt_fullArrayToString(var$4.data); + return $interval; +}, +oavr_CodePointCharStream$CodePoint8BitCharStream_LA = ($this, $i) => { + let $offset, var$3; + switch (jl_Integer_signum($i)) { + case -1: + $offset = $this.$position6 + $i | 0; + if ($offset < 0) + return (-1); + return $this.$byteArray.data[$offset] & 255; + case 0: + break; + case 1: + $offset = ($this.$position6 + $i | 0) - 1 | 0; + if ($offset >= $this.$size4) + return (-1); + return $this.$byteArray.data[$offset] & 255; + default: + var$3 = new jl_UnsupportedOperationException; + jl_Throwable__init_(var$3, $rt_s(4972)); + $rt_throw(var$3); + } + return 0; +}, +oavr_CodePointCharStream$CodePoint8BitCharStream__clinit_ = () => { + oavr_CodePointCharStream$CodePoint8BitCharStream_$assertionsDisabled = 0; +}; +function oavr_CodePointCharStream$CodePoint16BitCharStream() { + oavr_CodePointCharStream.call(this); + this.$charArray = null; +} +let oavr_CodePointCharStream$CodePoint16BitCharStream_$assertionsDisabled = 0, +oavr_CodePointCharStream$CodePoint16BitCharStream_getText = ($this, $interval) => { + let $startIdx, $len; + $startIdx = jl_Math_min($interval.$a0, $this.$size4); + $len = jl_Math_min(($interval.$b - $interval.$a0 | 0) + 1 | 0, $this.$size4 - $startIdx | 0); + return jl_String__init_1($this.$charArray, $startIdx, $len); +}, +oavr_CodePointCharStream$CodePoint16BitCharStream_LA = ($this, $i) => { + let $offset, var$3; + switch (jl_Integer_signum($i)) { + case -1: + $offset = $this.$position6 + $i | 0; + if ($offset < 0) + return (-1); + return $this.$charArray.data[$offset] & 65535; + case 0: + break; + case 1: + $offset = ($this.$position6 + $i | 0) - 1 | 0; + if ($offset >= $this.$size4) + return (-1); + return $this.$charArray.data[$offset] & 65535; + default: + var$3 = new jl_UnsupportedOperationException; + jl_Throwable__init_(var$3, $rt_s(4972)); + $rt_throw(var$3); + } + return 0; +}, +oavr_CodePointCharStream$CodePoint16BitCharStream__clinit_ = () => { + oavr_CodePointCharStream$CodePoint16BitCharStream_$assertionsDisabled = 0; +}; +function oavr_CodePointCharStream$CodePoint32BitCharStream() { + oavr_CodePointCharStream.call(this); + this.$intArray = null; +} +let oavr_CodePointCharStream$CodePoint32BitCharStream_$assertionsDisabled = 0, +oavr_CodePointCharStream$CodePoint32BitCharStream_getText = ($this, $interval) => { + let $startIdx, $len, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; + $startIdx = jl_Math_min($interval.$a0, $this.$size4); + $len = jl_Math_min(($interval.$b - $interval.$a0 | 0) + 1 | 0, $this.$size4 - $startIdx | 0); + $interval = new jl_String; + var$4 = $this.$intArray; + var$5 = $rt_createCharArray($len * 2 | 0); + var$6 = var$5.data; + var$7 = 0; + var$8 = 0; + while (var$8 < $len) { + var$9 = var$4.data; + var$10 = $startIdx + 1 | 0; + var$11 = var$9[$startIdx]; + if (var$11 < 65536) { + var$12 = var$7 + 1 | 0; + var$6[var$7] = var$11 & 65535; + } else { + $startIdx = var$7 + 1 | 0; + var$6[var$7] = jl_Character_highSurrogate(var$11); + var$12 = $startIdx + 1 | 0; + var$6[$startIdx] = jl_Character_lowSurrogate(var$11); + } + var$8 = var$8 + 1 | 0; + $startIdx = var$10; + var$7 = var$12; } - return $_localctx; + if (var$7 < var$6.length) + var$5 = ju_Arrays_copyOf1(var$5, var$7); + $interval.$nativeString = $rt_fullArrayToString(var$5.data); + return $interval; }, -oncipv_Cypher25Parser_insertPattern = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$InsertPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 98, 49); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1111); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758095360, 4294938623)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294717439, 4277927934)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294967294)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338073, 4294835711)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 1108); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1109); - oavr_Parser_match($this, 96); - } - oavr_Recognizer_setState($this, 1113); - oncipv_Cypher25Parser_insertNodePattern($this); - oavr_Recognizer_setState($this, 1119); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 152 && $_la != 157 && $_la != 304 && $_la != 305)) { - oavr_Recognizer_setState($this, 1114); - oncipv_Cypher25Parser_insertRelationshipPattern($this); - oavr_Recognizer_setState($this, 1115); - oncipv_Cypher25Parser_insertNodePattern($this); - oavr_Recognizer_setState($this, 1121); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavr_CodePointCharStream$CodePoint32BitCharStream_LA = ($this, $i) => { + let $offset, var$3; + switch (jl_Integer_signum($i)) { + case -1: + $offset = $this.$position6 + $i | 0; + if ($offset < 0) + return (-1); + return $this.$intArray.data[$offset]; + case 0: + break; + case 1: + $offset = ($this.$position6 + $i | 0) - 1 | 0; + if ($offset >= $this.$size4) + return (-1); + return $this.$intArray.data[$offset]; + default: + var$3 = new jl_UnsupportedOperationException; + jl_Throwable__init_(var$3, $rt_s(4972)); + $rt_throw(var$3); } - return $_localctx; + return 0; }, -oncipv_Cypher25Parser_quantifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$QuantifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 100, 50); +oavr_CodePointCharStream$CodePoint32BitCharStream__clinit_ = () => { + oavr_CodePointCharStream$CodePoint32BitCharStream_$assertionsDisabled = 0; +}; +function oavra_LexerATNSimulator() { + let a = this; oavra_ATNSimulator.call(a); + a.$recog = null; + a.$startIndex0 = 0; + a.$line0 = 0; + a.$charPositionInLine = 0; + a.$decisionToDFA = null; + a.$mode4 = 0; + a.$prevAccept = null; +} +let oavra_LexerATNSimulator_$assertionsDisabled = 0, +oavra_LexerATNSimulator__init_0 = ($this, $recog, $atn, $decisionToDFA, $sharedContextCache) => { + oavra_ATNSimulator__init_($this, $atn, $sharedContextCache); + $this.$startIndex0 = (-1); + $this.$line0 = 1; + $this.$charPositionInLine = 0; + $this.$mode4 = 0; + $atn = new oavra_LexerATNSimulator$SimState; + $atn.$index7 = (-1); + $atn.$line6 = 0; + $atn.$charPos = (-1); + $this.$prevAccept = $atn; + $this.$decisionToDFA = $decisionToDFA; + $this.$recog = $recog; +}, +oavra_LexerATNSimulator__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oavra_LexerATNSimulator(); + oavra_LexerATNSimulator__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oavra_LexerATNSimulator_match = ($this, $input, $mode) => { + let $dfa, $$je; + $this.$mode4 = $mode; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1136); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 71, $this.$_ctx)) { - case 1: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1122); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 1123); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 1124); - oavr_Parser_match($this, 211); - break e; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1125); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 1127); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - oavr_Recognizer_setState($this, 1126); - $_localctx.$from20 = oavr_Parser_match($this, 5); - } - oavr_Recognizer_setState($this, 1129); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1131); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - oavr_Recognizer_setState($this, 1130); - $_localctx.$to3 = oavr_Parser_match($this, 5); - } - oavr_Recognizer_setState($this, 1133); - oavr_Parser_match($this, 211); - break e; - case 3: - break; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 1135); - oavr_Parser_match($this, 265); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1134); - oavr_Parser_match($this, 193); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; + $this.$startIndex0 = oavr_CodePointCharStream_index($input); + oavra_LexerATNSimulator$SimState_reset($this.$prevAccept); + $dfa = $this.$decisionToDFA.data[$mode]; + if ($dfa.$s0 !== null) + break c; + $mode = oavra_LexerATNSimulator_matchATN($this, $input); } catch ($$e) { $$je = $rt_wrapException($$e); - $_localctx = $$je; + $input = $$je; + break b; } + return $mode; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher25Parser_anonymousPattern = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AnonymousPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 102, 51); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1140); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 17: - case 247: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1138); - oncipv_Cypher25Parser_shortestPathPattern($this); - break e; - case 151: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1139); - oncipv_Cypher25Parser_patternElement($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + try { + $mode = oavra_LexerATNSimulator_execATN($this, $input, $dfa.$s0); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $input = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw($input); } - return $_localctx; + return $mode; }, -oncipv_Cypher25Parser_shortestPathPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShortestPathPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 104, 52); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1142); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 17 && $_la != 247) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1143); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1144); - oncipv_Cypher25Parser_patternElement($this); - oavr_Recognizer_setState($this, 1145); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavra_LexerATNSimulator_reset = $this => { + oavra_LexerATNSimulator$SimState_reset($this.$prevAccept); + $this.$startIndex0 = (-1); + $this.$line0 = 1; + $this.$charPositionInLine = 0; + $this.$mode4 = 0; +}, +oavra_LexerATNSimulator_matchATN = ($this, $input) => { + let $startState, var$3, $s0_closure, var$5, var$6, $next, $suppressEdge; + $startState = ju_ArrayList_get($this.$atn.$modeToStartState, $this.$mode4); + oavra_EmptyPredictionContext_$callClinit(); + var$3 = oavra_EmptyPredictionContext_Instance; + $s0_closure = oavra_OrderedATNConfigSet__init_(); + var$5 = 0; + while (var$5 < oavra_ATNState_getNumberOfTransitions($startState)) { + var$6 = (oavra_ATNState_transition($startState, var$5)).$target; + $next = new oavra_LexerATNConfig; + var$5 = var$5 + 1 | 0; + oavra_ATNConfig__init_1($next, var$6, var$5, var$3, oavra_SemanticContext$Empty_Instance); + $next.$passedThroughNonGreedyDecision = 0; + $next.$lexerActionExecutor = null; + oavra_LexerATNSimulator_closure($this, $input, $next, $s0_closure, 0, 0, 0); } - return $_localctx; + $suppressEdge = $s0_closure.$hasSemanticContext; + $s0_closure.$hasSemanticContext = 0; + $next = oavra_LexerATNSimulator_addDFAState($this, $s0_closure); + if (!$suppressEdge) + $this.$decisionToDFA.data[$this.$mode4].$s0 = $next; + return oavra_LexerATNSimulator_execATN($this, $input, $next); }, -oncipv_Cypher25Parser_patternElement = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PatternElementContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 106, 53); +oavra_LexerATNSimulator_execATN = ($this, $input, $s) => { + let $t, var$4, $target, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $$je; + if ($s.$isAcceptState) + oavra_LexerATNSimulator_captureSimState($this, $this.$prevAccept, $input, $s); + $t = $input.$LA(1); a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1160); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - e: { - f: { - oavr_Recognizer_setState($this, 1160); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 75, $this.$_ctx)) { - case 1: - break f; - case 2: + while (true) { + var$4 = $s.$edges; + $target = var$4 !== null && $t >= 0 && $t <= 127 ? var$4.data[$t - 0 | 0] : null; + if ($target === null) { + var$6 = oavra_OrderedATNConfigSet__init_(); + $target = $s.$configs; + var$7 = 0; + var$8 = oavra_ATNConfigSet_iterator($target); + while (ju_AbstractList$1_hasNext(var$8)) { + var$9 = ju_AbstractList$1_next(var$8); + var$10 = var$9.$alt0 != var$7 ? 0 : 1; + if (var$10 && var$9.$passedThroughNonGreedyDecision) + continue; + var$11 = oavra_ATNState_getNumberOfTransitions(var$9.$state0); + var$12 = 0; + var$13 = var$9; + b: { + while (var$12 < var$11) { + $target = oavra_ATNState_transition(var$9.$state0, var$12); + $target = !$target.$matches3($t, 0, 1114111) ? null : $target.$target; + if ($target !== null) { + var$14 = var$13.$lexerActionExecutor; + if (var$14 !== null) { + var$15 = $input.$position6 - $this.$startIndex0 | 0; + var$16 = null; + var$17 = 0; + while (true) { + var$4 = var$14.$lexerActions.data; + if (var$17 >= var$4.length) break; - default: - break e; + if (var$4[var$17].$isPositionDependent()) { + var$4 = var$14.$lexerActions; + var$18 = var$4.data; + if (!(var$18[var$17] instanceof oavra_LexerIndexedCustomAction)) { + if (var$16 === null) + var$16 = var$4.$clone0(); + var$4 = var$16.data; + var$19 = new oavra_LexerIndexedCustomAction; + var$20 = var$18[var$17]; + var$19.$offset3 = var$15; + var$19.$action3 = var$20; + var$4[var$17] = var$19; + } + } + var$17 = var$17 + 1 | 0; } - oavr_Recognizer_setState($this, 1159); - oncipv_Cypher25Parser_parenthesizedPath($this); - break e; + if (var$16 !== null) + var$14 = oavra_LexerActionExecutor__init_0(var$16); } - oavr_Recognizer_setState($this, 1147); - oncipv_Cypher25Parser_nodePattern($this); - oavr_Recognizer_setState($this, 1156); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if (var$2 != 152 && var$2 != 157 && var$2 != 304 && var$2 != 305) - break e; - oavr_Recognizer_setState($this, 1148); - oncipv_Cypher25Parser_relationshipPattern($this); - oavr_Recognizer_setState($this, 1150); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(var$2 != 143 && var$2 != 193 && var$2 != 265)) { - oavr_Recognizer_setState($this, 1149); - oncipv_Cypher25Parser_quantifier($this); - } - oavr_Recognizer_setState($this, 1152); - oncipv_Cypher25Parser_nodePattern($this); - oavr_Recognizer_setState($this, 1158); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); + var$21 = $t != (-1) ? 0 : 1; + if (oavra_LexerATNSimulator_closure($this, $input, oavra_LexerATNConfig__init_0(var$13, $target, var$14), var$6, var$10, 1, var$21)) { + var$7 = var$9.$alt0; + break b; } } - oavr_Recognizer_setState($this, 1162); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + var$12 = var$12 + 1 | 0; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (oavra_ATNConfigSet_isEmpty(var$6)) { + if (!var$6.$hasSemanticContext) { + oavra_ATNSimulator_$callClinit(); + oavra_LexerATNSimulator_addDFAEdge($this, $s, $t, oavra_ATNSimulator_ERROR); + } + oavra_ATNSimulator_$callClinit(); + $target = oavra_ATNSimulator_ERROR; + } else { + var$11 = var$6.$hasSemanticContext; + var$6.$hasSemanticContext = 0; + $target = oavra_LexerATNSimulator_addDFAState($this, var$6); + if (!var$11) + oavra_LexerATNSimulator_addDFAEdge($this, $s, $t, $target); } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oavra_ATNSimulator_$callClinit(); + if ($target === oavra_ATNSimulator_ERROR) + break a; + var$10 = $rt_compare($t, (-1)); + if (var$10) + oavra_LexerATNSimulator_consume($this, $input); + if ($target.$isAcceptState) { + oavra_LexerATNSimulator_captureSimState($this, $this.$prevAccept, $input, $target); + if (!var$10) + break; + } + $t = $input.$LA(1); + $s = $target; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher25Parser_selector = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher25Parser$SelectorContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 108, 54); - a: { - b: { - c: { + c: { + $target = $this.$prevAccept; + $s = $s.$configs; + var$6 = $target.$dfaState; + if (var$6 === null) { + if ($t == (-1) && $input.$position6 == $this.$startIndex0) { + var$10 = (-1); + break c; + } + $target = new oavr_LexerNoViableAltException; + var$6 = $this.$recog; + var$10 = $this.$startIndex0; + oavr_RecognitionException__init_($target, var$6, $input, null); + $target.$startIndex1 = var$10; + $target.$deadEndConfigs = $s; + $rt_throw($target); + } + $s = var$6.$lexerActionExecutor0; + var$10 = $this.$startIndex0; + var$11 = $target.$index7; + var$12 = $target.$line6; + var$21 = $target.$charPos; + $input.$position6 = var$11; + $this.$line0 = var$12; + $this.$charPositionInLine = var$21; + if ($s !== null) { + var$6 = $this.$recog; + if (var$6 !== null) { + var$12 = 0; d: { try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1198); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 85, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$AnyShortestPathContext; - var$2 = $re; - oncipv_Cypher25Parser$AnyShortestPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1164); - oavr_Parser_match($this, 21); - oavr_Recognizer_setState($this, 1165); - oavr_Parser_match($this, 248); - oavr_Recognizer_setState($this, 1167); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 190) { - var$2 = $re; - if ($_la != 191) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1166); - oncipv_Cypher25Parser_pathToken($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$AllShortestPathContext; - var$2 = $re; - oncipv_Cypher25Parser$AllShortestPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1169); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 1170); - oavr_Parser_match($this, 248); - oavr_Recognizer_setState($this, 1172); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 190) { - var$2 = $re; - if ($_la != 191) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1171); - oncipv_Cypher25Parser_pathToken($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$AnyPathContext; - var$2 = $re; - oncipv_Cypher25Parser$AnyPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1174); - oavr_Parser_match($this, 21); - oavr_Recognizer_setState($this, 1176); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - var$2 = $re; - oavr_Recognizer_setState($this, 1175); - oavr_Parser_match($this, 5); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1179); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 190) { - var$2 = $re; - if ($_la != 191) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1178); - oncipv_Cypher25Parser_pathToken($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$AllPathContext; - var$2 = $re; - oncipv_Cypher25Parser$AllPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1181); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 1183); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 190) { - var$2 = $re; - if ($_la != 191) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1182); - oncipv_Cypher25Parser_pathToken($this); - break e; - case 5: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ShortestGroupContext; - var$2 = $re; - oncipv_Cypher25Parser$ShortestGroupContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 1185); - oavr_Parser_match($this, 248); - oavr_Recognizer_setState($this, 1187); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - var$2 = $re; - oavr_Recognizer_setState($this, 1186); - oavr_Parser_match($this, 5); - } - f: { - var$2 = $re; - oavr_Recognizer_setState($this, 1190); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 190) { - var$2 = $re; - if ($_la != 191) - break f; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1189); - oncipv_Cypher25Parser_pathToken($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1192); - oncipv_Cypher25Parser_groupToken($this); - break e; - case 6: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$AnyShortestPathContext; - var$2 = $re; - oncipv_Cypher25Parser$AnyShortestPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 1193); - oavr_Parser_match($this, 248); - oavr_Recognizer_setState($this, 1194); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 1196); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 190) { - var$2 = $re; - if ($_la != 191) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1195); - oncipv_Cypher25Parser_pathToken($this); - break e; - default: + var$21 = var$12; + var$4 = $s.$lexerActions.data; + $t = var$4.length; + var$7 = 0; + while (true) { + var$21 = var$12; + if (var$7 >= $t) + break d; + var$21 = var$12; + $s = var$4[var$7]; + if (!($s instanceof oavra_LexerIndexedCustomAction)) { + var$21 = var$12; + if (!$s.$isPositionDependent()) + var$15 = var$12; + else { + var$21 = var$12; + oavr_CodePointCharStream_seek($input, var$11); + var$15 = 0; + var$21 = var$15; + } + } else { + var$21 = var$12; + $s = $s; + var$15 = var$10 + oavra_LexerIndexedCustomAction_getOffset($s) | 0; + oavr_CodePointCharStream_seek($input, var$15); + $s = oavra_LexerIndexedCustomAction_getAction($s); + if (var$15 == var$11) { + var$21 = var$12; + var$15 = 0; + } else { + var$21 = var$12; + var$15 = 1; + } + var$21 = var$12; + var$21 = var$15; } - $re = $_localctx; + var$21 = var$15; + $s.$execute(var$6); + var$7 = var$7 + 1 | 0; + var$12 = var$15; } } catch ($$e) { $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $s = $$je; + } + if (var$21) + $input.$position6 = var$11; + $rt_throw($s); } + if (var$12) + $input.$position6 = var$11; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + var$10 = $target.$dfaState.$prediction; } - return $re; + return var$10; }, -oncipv_Cypher25Parser_groupToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GroupTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 110, 55); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1200); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 118 && $_la != 119) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oavra_LexerATNSimulator_closure = ($this, $input, $config, $configs, $currentAltReachedAcceptState, $speculative, $treatEofAsEpsilon) => { + let $newContext, $returnState, $i, $p, $i_0, $t, $c, var$14, var$15, var$16, var$17, var$18, var$19, $$je; + $newContext = $config.$state0; + if ($newContext instanceof oavra_RuleStopState) { + $newContext = $config.$context; + if (!($newContext !== null && !oavra_PredictionContext_hasEmptyPath($newContext))) { + $newContext = $config.$context; + if ($newContext !== null && !$newContext.$isEmpty()) { + $newContext = new oavra_LexerATNConfig; + $returnState = $config.$state0; + oavra_EmptyPredictionContext_$callClinit(); + oavra_LexerATNConfig__init_1($newContext, $config, $returnState, oavra_EmptyPredictionContext_Instance); + oavra_ATNConfigSet_add0($configs, $newContext); + $currentAltReachedAcceptState = 1; + } else { + oavra_ATNConfigSet_add0($configs, $config); + return 1; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher25Parser_pathToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PathTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 112, 56); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1202); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 190 && $_la != 191) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + $newContext = $config.$context; + if ($newContext !== null && !$newContext.$isEmpty()) { + $i = 0; + while ($i < $config.$context.$size()) { + if ($config.$context.$getReturnState($i) != 2147483647) { + $newContext = $config.$context.$getParent($i); + $currentAltReachedAcceptState = oavra_LexerATNSimulator_closure($this, $input, oavra_LexerATNConfig__init_2($config, ju_ArrayList_get($this.$atn.$states, $config.$context.$getReturnState($i)), $newContext), $configs, $currentAltReachedAcceptState, $speculative, $treatEofAsEpsilon); } + $i = $i + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + return $currentAltReachedAcceptState; } - return $_localctx; -}, -oncipv_Cypher25Parser_pathPatternNonEmpty = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PathPatternNonEmptyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 114, 57); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1204); - oncipv_Cypher25Parser_nodePattern($this); - oavr_Recognizer_setState($this, 1208); - $this.$_errHandler.$sync($this); - $_alt = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - e: { + if (!$newContext.$epsilonOnlyTransitions && !($currentAltReachedAcceptState && $config.$passedThroughNonGreedyDecision)) + oavra_ATNConfigSet_add0($configs, $config); + $p = $config.$state0; + $i_0 = 0; + while ($i_0 < oavra_ATNState_getNumberOfTransitions($p)) { + a: { + $t = oavra_ATNState_transition($p, $i_0); + $c = null; + switch ($t.$getSerializationType()) { + case 1: + $c = oavra_LexerATNConfig__init_($config, $t.$target); + break a; + case 2: + case 5: + case 7: + if (!$treatEofAsEpsilon) + break a; + if (!$t.$matches3((-1), 0, 1114111)) + break a; + $c = oavra_LexerATNConfig__init_($config, $t.$target); + break a; + case 3: + $newContext = $t; + $newContext = oavra_SingletonPredictionContext_create($config.$context, $newContext.$followState.$stateNumber); + $c = oavra_LexerATNConfig__init_2($config, $t.$target, $newContext); + break a; + case 4: + $newContext = $t; + $configs.$hasSemanticContext = 1; + $i = $newContext.$ruleIndex1; + var$14 = $newContext.$predIndex; + if ($this.$recog === null) + $i = 1; + else if (!$speculative) + $i = 1; + else { + var$15 = $this.$charPositionInLine; + var$16 = $this.$line0; + var$17 = $input.$position6; try { - while (true) { - switch ($_alt) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1205); - oncipv_Cypher25Parser_relationshipPattern($this); - oavr_Recognizer_setState($this, 1206); - oncipv_Cypher25Parser_nodePattern($this); - oavr_Recognizer_setState($this, 1210); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 86, $this.$_ctx); - if ($_alt == 2) - break; - if (!$_alt) - break; - } + oavra_LexerATNSimulator_consume($this, $input); + $i = oavr_Recognizer_sempred($this.$recog, null, $i, var$14); } catch ($$e) { $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + $config = $$je; + $this.$charPositionInLine = var$15; + $this.$line0 = var$16; + $input.$position6 = var$17; + $rt_throw($config); + } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $this.$charPositionInLine = var$15; + $this.$line0 = var$16; + $input.$position6 = var$17; + } + if (!$i) + break a; + $c = oavra_LexerATNConfig__init_($config, $t.$target); + break a; + case 6: + $newContext = $config.$context; + if ($newContext !== null && !oavra_PredictionContext_hasEmptyPath($newContext)) { + $c = oavra_LexerATNConfig__init_($config, $t.$target); break a; } - try { - $rt_throw(oavr_NoViableAltException__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - } else{ - $_localctx = $$je; - break c; - } + $c = $config.$lexerActionExecutor; + $returnState = $this.$atn.$lexerActions0.data[$t.$actionIndex0]; + if ($c === null) { + $newContext = new oavra_LexerActionExecutor; + var$18 = $rt_createArray(oavra_LexerAction, 1); + var$18.data[0] = $returnState; + oavra_LexerActionExecutor__init_($newContext, var$18); + } else { + var$18 = $c.$lexerActions; + var$18 = ju_Arrays_copyOf(var$18, var$18.data.length + 1 | 0); + var$19 = var$18.data; + var$19[var$19.length - 1 | 0] = $returnState; + $newContext = oavra_LexerActionExecutor__init_0(var$18); } - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + $c = oavra_LexerATNConfig__init_0($config, $t.$target, $newContext); + break a; + case 10: + $input = new jl_UnsupportedOperationException; + jl_Throwable__init_($input, $rt_s(5010)); + $rt_throw($input); + case 8: + case 9: + break; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if ($c !== null) + $currentAltReachedAcceptState = oavra_LexerATNSimulator_closure($this, $input, $c, $configs, $currentAltReachedAcceptState, $speculative, $treatEofAsEpsilon); + $i_0 = $i_0 + 1 | 0; } - return $_localctx; + return $currentAltReachedAcceptState; }, -oncipv_Cypher25Parser_nodePattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 116, 58); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1212); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1214); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 87, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1213); - oncipv_Cypher25Parser_variable($this); - } - oavr_Recognizer_setState($this, 1217); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 44 && $_la != 135)) { - oavr_Recognizer_setState($this, 1216); - oncipv_Cypher25Parser_labelExpression($this); - } - oavr_Recognizer_setState($this, 1220); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 76 && $_la != 143)) { - oavr_Recognizer_setState($this, 1219); - oncipv_Cypher25Parser_properties($this); - } - oavr_Recognizer_setState($this, 1224); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 1222); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 1223); - oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1226); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; +oavra_LexerATNSimulator_captureSimState = ($this, $settings, $input, $dfaState) => { + $settings.$index7 = $input.$position6; + $settings.$line6 = $this.$line0; + $settings.$charPos = $this.$charPositionInLine; + $settings.$dfaState = $dfaState; +}, +oavra_LexerATNSimulator_addDFAEdge = ($this, $p, $t, $q) => { + let $$je; + if ($t >= 0 && $t <= 127) { + jl_Object_monitorEnterSync($p); + a: { + try { + if ($p.$edges === null) + $p.$edges = $rt_createArray(oavrd_DFAState, 128); + $p.$edges.data[$t - 0 | 0] = $q; + jl_Object_monitorExitSync($p); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $q = $$je; + break a; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + return; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($p); + $rt_throw($q); } - return $_localctx; }, -oncipv_Cypher25Parser_insertNodePattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$InsertNodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 118, 59); +oavra_LexerATNSimulator_addDFAState = ($this, $configs) => { + let $proposed, $firstConfigWithRuleStopState, $existing, $c, $dfa, $$je; + if (!oavra_LexerATNSimulator_$assertionsDisabled && $configs.$hasSemanticContext) { + $configs = new jl_AssertionError; + jl_Throwable__init_0($configs); + $rt_throw($configs); + } + $proposed = oavrd_DFAState__init_($configs); + $firstConfigWithRuleStopState = null; + $existing = oavra_ATNConfigSet_iterator($configs); a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1228); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1230); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 91, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1229); - oncipv_Cypher25Parser_variable($this); - } - oavr_Recognizer_setState($this, 1233); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 44 && $_la != 135)) { - oavr_Recognizer_setState($this, 1232); - oncipv_Cypher25Parser_insertNodeLabelExpression($this); - } - oavr_Recognizer_setState($this, 1236); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 143) { - oavr_Recognizer_setState($this, 1235); - oncipv_Cypher25Parser_map($this); - } - oavr_Recognizer_setState($this, 1238); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + while (true) { + if (!ju_AbstractList$1_hasNext($existing)) { + $c = $firstConfigWithRuleStopState; + break a; + } + $c = ju_AbstractList$1_next($existing); + if ($c.$state0 instanceof oavra_RuleStopState) + break; + } + } + if ($c !== null) { + $proposed.$isAcceptState = 1; + $proposed.$lexerActionExecutor0 = $c.$lexerActionExecutor; + $proposed.$prediction = $this.$atn.$ruleToTokenType.data[$c.$state0.$ruleIndex]; + } + $dfa = $this.$decisionToDFA.data[$this.$mode4]; + $c = $dfa.$states0; + jl_Object_monitorEnterSync($c); + b: { + c: { + try { + $existing = ju_HashMap_get($c, $proposed); + if ($existing === null) + break c; + jl_Object_monitorExitSync($c); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $configs = $$je; + break b; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + return $existing; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + try { + $proposed.$stateNumber0 = ju_HashMap_size($dfa.$states0); + oavra_ATNConfigSet_setReadonly($configs, 1); + $proposed.$configs = $configs; + ju_HashMap_put($dfa.$states0, $proposed, $proposed); + jl_Object_monitorExitSync($c); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $configs = $$je; + break b; + + } + return $proposed; } - return $_localctx; + jl_Object_monitorExitSync($c); + $rt_throw($configs); }, -oncipv_Cypher25Parser_parenthesizedPath = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ParenthesizedPathContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 120, 60); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1240); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1241); - oncipv_Cypher25Parser_pattern($this); - oavr_Recognizer_setState($this, 1244); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 1242); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 1243); - oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1246); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 1248); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 143 && $_la != 193 && $_la != 265)) { - oavr_Recognizer_setState($this, 1247); - oncipv_Cypher25Parser_quantifier($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oavra_LexerATNSimulator_getLine = $this => { + return $this.$line0; +}, +oavra_LexerATNSimulator_getCharPositionInLine = $this => { + return $this.$charPositionInLine; +}, +oavra_LexerATNSimulator_consume = ($this, $input) => { + if ($input.$LA(1) != 10) + $this.$charPositionInLine = $this.$charPositionInLine + 1 | 0; + else { + $this.$line0 = $this.$line0 + 1 | 0; + $this.$charPositionInLine = 0; + } + oavr_CodePointCharStream_consume($input); +}, +oavra_LexerATNSimulator__clinit_ = () => { + oavra_LexerATNSimulator_$assertionsDisabled = 0; +}, +oavr_TokenFactory = $rt_classWithoutFields(0), +oncipl_CypherTokenFactory$ = $rt_classWithoutFields(), +oncipl_CypherTokenFactory$_MODULE$ = null, +oncipl_CypherTokenFactory$__clinit_ = () => { + oncipl_CypherTokenFactory$_MODULE$ = new oncipl_CypherTokenFactory$; +}, +oncipl_CypherTokenFactory$_create = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8) => { + $x$3 = new oncipl_ThinCypherToken; + $x$3.$source0 = $x$1; + $x$3.$getType1 = $x$2; + $x$3.$getChannel0 = $x$4; + $x$3.$getStartIndex0 = $x$5; + $x$3.$getStopIndex0 = $x$6; + $x$3.$getLine0 = $x$7; + $x$3.$getCharPositionInLine0 = $x$8; + return $x$3; +}, +oncipl_FullCypherTokenFactory$ = $rt_classWithoutFields(), +oncipl_FullCypherTokenFactory$_MODULE$ = null, +oncipl_FullCypherTokenFactory$__clinit_ = () => { + oncipl_FullCypherTokenFactory$_MODULE$ = new oncipl_FullCypherTokenFactory$; +}, +oncipl_FullCypherTokenFactory$_create = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8) => { + let var$9; + var$9 = new oncipl_FullCypherToken; + oavr_CommonToken__init_(var$9, $x$1, $x$2, $x$4, $x$5, $x$6); + var$9.$line4 = $x$7; + var$9.$charPositionInLine0 = $x$8; + if ($x$3 !== null) + var$9.$text0 = $x$3; + return var$9; +}; +function oavrm_IntegerList() { + let a = this; jl_Object.call(a); + a.$_data = null; + a.$_size = 0; +} +let oavrm_IntegerList_EMPTY_DATA = null, +oavrm_IntegerList_get = ($this, $index) => { + let var$2; + if ($index >= 0 && $index < $this.$_size) + return $this.$_data.data[$index]; + var$2 = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); +}, +oavrm_IntegerList_isEmpty = $this => { + return $this.$_size ? 0 : 1; +}, +oavrm_IntegerList__clinit_ = () => { + oavrm_IntegerList_EMPTY_DATA = $rt_createIntArray(0); +}, +oavrm_IntegerStack = $rt_classWithoutFields(oavrm_IntegerList), +oavrm_IntegerStack__init_0 = $this => { + $this.$_data = oavrm_IntegerList_EMPTY_DATA; +}, +oavrm_IntegerStack__init_ = () => { + let var_0 = new oavrm_IntegerStack(); + oavrm_IntegerStack__init_0(var_0); + return var_0; +}, +oavrm_IntegerStack_push = ($this, $value) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $this.$_data; + var$3 = var$2.data.length; + var$4 = $this.$_size; + if (var$3 == var$4) { + var$5 = var$4 + 1 | 0; + if (var$5 >= 0 && var$5 <= 2147483639) { + if (!var$3) + var$3 = 4; + while (var$3 < var$5) { + var$3 = var$3 * 2 | 0; + if (var$3 >= 0 && var$3 <= 2147483639) + continue; + var$3 = 2147483639; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $this.$_data = ju_Arrays_copyOf0(var$2, var$3); + } else { + var$6 = new jl_OutOfMemoryError; + jl_Throwable__init_0(var$6); + $rt_throw(var$6); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + var$2 = $this.$_data.data; + var$4 = $this.$_size; + var$2[var$4] = $value; + $this.$_size = var$4 + 1 | 0; }, -oncipv_Cypher25Parser_nodeLabels = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NodeLabelsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 122, 61); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1252); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - e: { - oavr_Recognizer_setState($this, 1252); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 96, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 1251); - oncipv_Cypher25Parser_dynamicLabelType($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 1250); - oncipv_Cypher25Parser_labelType($this); - } - oavr_Recognizer_setState($this, 1254); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oavrm_IntegerStack_peek = $this => { + return oavrm_IntegerList_get($this, $this.$_size - 1 | 0); +}, +oavr_RuntimeMetaData = $rt_classWithoutFields(), +oavr_RuntimeMetaData_checkVersion = ($generatingToolVersion, $compileTimeVersion) => { + let $runtimeConflictsWithGeneratingTool, var$4; + $runtimeConflictsWithGeneratingTool = 0; + if ($generatingToolVersion !== null) + $runtimeConflictsWithGeneratingTool = !jl_String_equals($rt_s(4577), $generatingToolVersion) && !jl_String_equals(oavr_RuntimeMetaData_getMajorMinorVersion($rt_s(4577)), oavr_RuntimeMetaData_getMajorMinorVersion($generatingToolVersion)) ? 1 : 0; + var$4 = !jl_String_equals($rt_s(4577), $compileTimeVersion) && !jl_String_equals(oavr_RuntimeMetaData_getMajorMinorVersion($rt_s(4577)), oavr_RuntimeMetaData_getMajorMinorVersion($compileTimeVersion)) ? 1 : 0; + if ($runtimeConflictsWithGeneratingTool) + ji_PrintStream_printf(jl_System_err(), $rt_s(5011), $rt_wrapArray(jl_Object, [$generatingToolVersion, $rt_s(4577)])); + if (var$4) + ji_PrintStream_printf(jl_System_err(), $rt_s(5012), $rt_wrapArray(jl_Object, [$compileTimeVersion, $rt_s(4577)])); +}, +oavr_RuntimeMetaData_getMajorMinorVersion = $version => { + let $firstDot, $secondDot, $firstDash, $referenceLength; + $firstDot = jl_String_indexOf($version, 46); + $secondDot = $firstDot < 0 ? (-1) : jl_String_indexOf0($version, 46, $firstDot + 1 | 0); + $firstDash = jl_String_indexOf($version, 45); + $referenceLength = $version.$nativeString.length; + if ($secondDot >= 0) + $referenceLength = jl_Math_min($referenceLength, $secondDot); + if ($firstDash >= 0) + $referenceLength = jl_Math_min($referenceLength, $firstDash); + return jl_String_substring($version, 0, $referenceLength); +}; +function oavra_PredictionContextCache() { + jl_Object.call(this); + this.$cache = null; +} +let oavra_PredictionContextCache__init_0 = $this => { + $this.$cache = ju_HashMap__init_(); +}, +oavra_PredictionContextCache__init_ = () => { + let var_0 = new oavra_PredictionContextCache(); + oavra_PredictionContextCache__init_0(var_0); + return var_0; +}, +oavra_PredictionContextCache_add = ($this, $ctx) => { + let $existing; + oavra_EmptyPredictionContext_$callClinit(); + $existing = oavra_EmptyPredictionContext_Instance; + if ($ctx === $existing) + return $existing; + $existing = ju_HashMap_get($this.$cache, $ctx); + if ($existing !== null) + return $existing; + ju_HashMap_put($this.$cache, $ctx, $ctx); + return $ctx; +}; +function oavr_VocabularyImpl() { + let a = this; jl_Object.call(a); + a.$literalNames = null; + a.$symbolicNames = null; + a.$displayNames = null; + a.$maxTokenType0 = 0; +} +let oavr_VocabularyImpl_EMPTY_NAMES = null, +oavr_VocabularyImpl_EMPTY_VOCABULARY = null, +oavr_VocabularyImpl__init_1 = ($this, $literalNames, $symbolicNames) => { + oavr_VocabularyImpl__init_0($this, $literalNames, $symbolicNames, null); +}, +oavr_VocabularyImpl__init_ = (var_0, var_1) => { + let var_2 = new oavr_VocabularyImpl(); + oavr_VocabularyImpl__init_1(var_2, var_0, var_1); + return var_2; +}, +oavr_VocabularyImpl__init_0 = ($this, $literalNames, $symbolicNames, $displayNames) => { + let var$4; + if ($literalNames === null) + $literalNames = oavr_VocabularyImpl_EMPTY_NAMES; + $this.$literalNames = $literalNames; + if ($symbolicNames === null) + $symbolicNames = oavr_VocabularyImpl_EMPTY_NAMES; + $this.$symbolicNames = $symbolicNames; + if ($displayNames === null) + $displayNames = oavr_VocabularyImpl_EMPTY_NAMES; + var$4 = $symbolicNames.data; + $symbolicNames = $literalNames.data; + $literalNames = $displayNames.data; + $this.$displayNames = $displayNames; + $this.$maxTokenType0 = jl_Math_max($literalNames.length, jl_Math_max($symbolicNames.length, var$4.length)) - 1 | 0; +}, +oavr_VocabularyImpl__init_2 = (var_0, var_1, var_2) => { + let var_3 = new oavr_VocabularyImpl(); + oavr_VocabularyImpl__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oavr_VocabularyImpl_getLiteralName = ($this, $tokenType) => { + let var$2; + if ($tokenType >= 0) { + var$2 = $this.$literalNames.data; + if ($tokenType < var$2.length) + return var$2[$tokenType]; + } + return null; +}, +oavr_VocabularyImpl_getSymbolicName = ($this, $tokenType) => { + let var$2; + if ($tokenType >= 0) { + var$2 = $this.$symbolicNames.data; + if ($tokenType < var$2.length) + return var$2[$tokenType]; + } + if ($tokenType != (-1)) + return null; + return $rt_s(4219); +}, +oavr_VocabularyImpl_getDisplayName = ($this, $tokenType) => { + let var$2, $displayName, $literalName, $symbolicName; + if ($tokenType >= 0) { + var$2 = $this.$displayNames.data; + if ($tokenType < var$2.length) { + $displayName = var$2[$tokenType]; + if ($displayName !== null) + return $displayName; + } + } + $literalName = oavr_VocabularyImpl_getLiteralName($this, $tokenType); + if ($literalName !== null) + return $literalName; + $symbolicName = oavr_VocabularyImpl_getSymbolicName($this, $tokenType); + if ($symbolicName !== null) + return $symbolicName; + return jl_Integer_toString($tokenType); +}, +oavr_VocabularyImpl__clinit_ = () => { + let var$1; + var$1 = $rt_createArray(jl_String, 0); + oavr_VocabularyImpl_EMPTY_NAMES = var$1; + oavr_VocabularyImpl_EMPTY_VOCABULARY = oavr_VocabularyImpl__init_2(var$1, var$1, var$1); +}, +oavrm_Utils = $rt_classWithoutFields(), +oavrm_Utils_join0 = ($iter, $separator) => { + let $buf; + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + while (ju_AbstractList$1_hasNext($iter)) { + jl_StringBuilder_append($buf, ju_AbstractList$1_next($iter)); + if (!ju_AbstractList$1_hasNext($iter)) + continue; + jl_AbstractStringBuilder_append($buf, $separator); + } + return jl_AbstractStringBuilder_toString($buf); +}, +oavrm_Utils_join = ($array, $separator) => { + let $builder, $i, var$5, var$6; + $builder = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($builder); + $i = 0; + while (true) { + var$5 = $array.data; + var$6 = var$5.length; + if ($i >= var$6) + break; + jl_StringBuilder_append($builder, var$5[$i]); + if ($i < (var$6 - 1 | 0)) + jl_AbstractStringBuilder_append($builder, $separator); + $i = $i + 1 | 0; + } + return jl_AbstractStringBuilder_toString($builder); +}; +function oavra_ATNDeserializer() { + jl_Object.call(this); + this.$deserializationOptions = null; +} +let oavra_ATNDeserializer_SERIALIZED_VERSION = 0, +oavra_ATNDeserializer__init_0 = $this => { + let var$1; + var$1 = oavra_ATNDeserializationOptions_defaultOptions; + $this.$deserializationOptions = var$1; +}, +oavra_ATNDeserializer__init_ = () => { + let var_0 = new oavra_ATNDeserializer(); + oavra_ATNDeserializer__init_0(var_0); + return var_0; +}, +oavra_ATNDeserializer_deserialize = ($this, $data) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + $data = $data.data; + var$2 = $data.length; + var$3 = $rt_createIntArray(var$2); + var$4 = var$3.data; + var$5 = 0; + var$6 = 0; + while (var$5 < var$2) { + var$7 = var$5 + 1 | 0; + var$5 = $data[var$5]; + if (!(var$5 & 32768)) { + var$8 = var$6 + 1 | 0; + var$4[var$6] = var$5; + } else { + var$9 = var$7 + 1 | 0; + var$7 = $data[var$7]; + if (var$5 == 65535 && var$7 == 65535) { + var$8 = var$6 + 1 | 0; + var$4[var$6] = (-1); + var$7 = var$9; + } else { + var$8 = var$6 + 1 | 0; + var$4[var$6] = (var$5 & 32767) << 16 | var$7 & 65535; + var$7 = var$9; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$5 = var$7; + var$6 = var$8; } - return $_localctx; + return oavra_ATNDeserializer_deserialize0($this, var$3); }, -oncipv_Cypher25Parser_nodeLabelsIs = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NodeLabelsIsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 124, 62); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1256); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 1259); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Recognizer_setState($this, 1257); - oncipv_Cypher25Parser_symbolicNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - case 76: - oavr_Recognizer_setState($this, 1258); - oncipv_Cypher25Parser_dynamicExpression($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 1265); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 44) { - f: { - oavr_Recognizer_setState($this, 1263); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 99, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 1262); - oncipv_Cypher25Parser_dynamicLabelType($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 1261); - oncipv_Cypher25Parser_labelType($this); - } - oavr_Recognizer_setState($this, 1267); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oavra_ATNDeserializer_deserialize0 = ($this, $data) => { + let var$2, $version, $reason, $grammarType, $maxTokenType, $atn, $loopBackStateNumbers, $endStateNumbers, $endStateNumber, $nstates, $i, $stype, $s, $loopBackStateNumber, $pair, $p, $numNonGreedyStates, $stateNumber, $numPrecedenceStates, $nrules, $s_0, $state, $stopState, var$25, $nmodes, $sets, $nedges, $src, $trg, $trans, $t, $ruleTransition, $returnTransition, $ndecisions, $decState, $actionType, $data1, $bypassStart, $bypassStop, $excludeTransition, $endState, $endState_0, $maybeLoopEndState, $transition, + $matchState, $loopbackState, $target; + var$2 = $data.data; + $version = var$2[0]; + if ($version != oavra_ATNDeserializer_SERIALIZED_VERSION) { + $reason = jl_String_format0(ju_Locale_getDefault(), $rt_s(5013), $rt_wrapArray(jl_Object, [jl_Integer_valueOf($version), jl_Integer_valueOf(oavra_ATNDeserializer_SERIALIZED_VERSION)])); + $rt_throw(jl_UnsupportedOperationException__init_1(ji_InvalidClassException__init_(jl_Class_getName($rt_cls(oavra_ATN)), $reason))); + } + $grammarType = (oavra_ATNType_values()).data[var$2[1]]; + $maxTokenType = var$2[2]; + $atn = oavra_ATN__init_($grammarType, $maxTokenType); + $loopBackStateNumbers = ju_ArrayList__init_(); + $endStateNumbers = ju_ArrayList__init_(); + $endStateNumber = 4; + $nstates = var$2[3]; + $i = 0; + while ($i < $nstates) { + $maxTokenType = $endStateNumber + 1 | 0; + $stype = var$2[$endStateNumber]; + if (!$stype) + oavra_ATN_addState($atn, null); + else { + $endStateNumber = $maxTokenType + 1 | 0; + $s = oavra_ATNDeserializer_stateFactory($this, $stype, var$2[$maxTokenType]); + if ($stype == 12) { + $maxTokenType = $endStateNumber + 1 | 0; + $loopBackStateNumber = var$2[$endStateNumber]; + ju_ArrayList_add($loopBackStateNumbers, oavrm_Pair__init_($s, jl_Integer_valueOf($loopBackStateNumber))); + } else if (!($s instanceof oavra_BlockStartState)) + $maxTokenType = $endStateNumber; + else { + $maxTokenType = $endStateNumber + 1 | 0; + $endStateNumber = var$2[$endStateNumber]; + ju_ArrayList_add($endStateNumbers, oavrm_Pair__init_($s, jl_Integer_valueOf($endStateNumber))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oavra_ATN_addState($atn, $s); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $i = $i + 1 | 0; + $endStateNumber = $maxTokenType; } - return $_localctx; -}, -oncipv_Cypher25Parser_dynamicExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DynamicExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 126, 63); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1268); - oavr_Parser_match($this, 76); - oavr_Recognizer_setState($this, 1269); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1270); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1271); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + $grammarType = ju_AbstractList_iterator($loopBackStateNumbers); + while (ju_AbstractList$1_hasNext($grammarType)) { + $pair = ju_AbstractList$1_next($grammarType); + $pair.$a7.$loopBackState1 = ju_ArrayList_get($atn.$states, jl_Integer_intValue($pair.$b0)); + } + $grammarType = ju_AbstractList_iterator($endStateNumbers); + while (ju_AbstractList$1_hasNext($grammarType)) { + $pair = ju_AbstractList$1_next($grammarType); + $pair.$a7.$endState = ju_ArrayList_get($atn.$states, jl_Integer_intValue($pair.$b0)); + } + $p = $endStateNumber + 1 | 0; + $numNonGreedyStates = var$2[$endStateNumber]; + $i = 0; + while ($i < $numNonGreedyStates) { + $endStateNumber = $p + 1 | 0; + $stateNumber = var$2[$p]; + (ju_ArrayList_get($atn.$states, $stateNumber)).$nonGreedy = 1; + $i = $i + 1 | 0; + $p = $endStateNumber; + } + $endStateNumber = $p + 1 | 0; + $numPrecedenceStates = var$2[$p]; + $i = 0; + while ($i < $numPrecedenceStates) { + $p = $endStateNumber + 1 | 0; + $stateNumber = var$2[$endStateNumber]; + (ju_ArrayList_get($atn.$states, $stateNumber)).$isLeftRecursiveRule = 1; + $i = $i + 1 | 0; + $endStateNumber = $p; + } + $p = $endStateNumber + 1 | 0; + $nrules = var$2[$endStateNumber]; + if ($atn.$grammarType === oavra_ATNType_LEXER) + $atn.$ruleToTokenType = $rt_createIntArray($nrules); + $atn.$ruleToStartState = $rt_createArray(oavra_RuleStartState, $nrules); + $i = 0; + while ($i < $nrules) { + $endStateNumber = $p + 1 | 0; + $s_0 = var$2[$p]; + $atn.$ruleToStartState.data[$i] = ju_ArrayList_get($atn.$states, $s_0); + if ($atn.$grammarType !== oavra_ATNType_LEXER) + $p = $endStateNumber; + else { + $p = $endStateNumber + 1 | 0; + $atn.$ruleToTokenType.data[$i] = var$2[$endStateNumber]; + } + $i = $i + 1 | 0; + } + $atn.$ruleToStopState = $rt_createArray(oavra_RuleStopState, $nrules); + $grammarType = ju_AbstractList_iterator($atn.$states); + while (ju_AbstractList$1_hasNext($grammarType)) { + $state = ju_AbstractList$1_next($grammarType); + if (!($state instanceof oavra_RuleStopState)) + continue; + $stopState = $state; + var$25 = $atn.$ruleToStopState.data; + $endStateNumber = $state.$ruleIndex; + var$25[$endStateNumber] = $stopState; + $atn.$ruleToStartState.data[$endStateNumber].$stopState = $stopState; + } + $endStateNumber = $p + 1 | 0; + $nmodes = var$2[$p]; + $i = 0; + while ($i < $nmodes) { + $p = $endStateNumber + 1 | 0; + $s_0 = var$2[$endStateNumber]; + ju_ArrayList_add($atn.$modeToStartState, ju_ArrayList_get($atn.$states, $s_0)); + $i = $i + 1 | 0; + $endStateNumber = $p; + } + $sets = ju_ArrayList__init_(); + $p = oavra_ATNDeserializer_deserializeSets($this, $data, $endStateNumber, $sets); + $endStateNumber = $p + 1 | 0; + $nedges = var$2[$p]; + $i = 0; + while ($i < $nedges) { + $src = var$2[$endStateNumber]; + $trg = var$2[$endStateNumber + 1 | 0]; + $trans = oavra_ATNDeserializer_edgeFactory($this, $atn, var$2[$endStateNumber + 2 | 0], $src, $trg, var$2[$endStateNumber + 3 | 0], var$2[$endStateNumber + 4 | 0], var$2[$endStateNumber + 5 | 0], $sets); + oavra_ATNState_addTransition(ju_ArrayList_get($atn.$states, $src), $trans); + $endStateNumber = $endStateNumber + 6 | 0; + $i = $i + 1 | 0; + } + $grammarType = ju_AbstractList_iterator($atn.$states); + while (ju_AbstractList$1_hasNext($grammarType)) { + $state = ju_AbstractList$1_next($grammarType); + $i = 0; + while ($i < oavra_ATNState_getNumberOfTransitions($state)) { + $t = oavra_ATNState_transition($state, $i); + if ($t instanceof oavra_RuleTransition) { + $ruleTransition = $t; + $data = $atn.$ruleToStartState.data; + $p = $ruleTransition.$target.$ruleIndex; + if (!$data[$p].$isLeftRecursiveRule) + $p = (-1); + else if ($ruleTransition.$precedence1) + $p = (-1); + $returnTransition = oavra_EpsilonTransition__init_1($ruleTransition.$followState, $p); + oavra_ATNState_addTransition($atn.$ruleToStopState.data[$ruleTransition.$target.$ruleIndex], $returnTransition); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $i = $i + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher25Parser_dynamicAnyAllExpression = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DynamicAnyAllExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 128, 64); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1273); - oavr_Parser_match($this, 76); - oavr_Recognizer_setState($this, 1275); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 21)) { - oavr_Recognizer_setState($this, 1274); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 21) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); + $grammarType = ju_AbstractList_iterator($atn.$states); + while (true) { + if (!ju_AbstractList$1_hasNext($grammarType)) { + $p = $endStateNumber + 1 | 0; + $ndecisions = var$2[$endStateNumber]; + $i = 1; + while ($i <= $ndecisions) { + $endStateNumber = $p + 1 | 0; + $s_0 = var$2[$p]; + $decState = ju_ArrayList_get($atn.$states, $s_0); + ju_ArrayList_add($atn.$decisionToState, $decState); + $decState.$decision0 = $i - 1 | 0; + $i = $i + 1 | 0; + $p = $endStateNumber; + } + a: { + if ($atn.$grammarType === oavra_ATNType_LEXER) { + $endStateNumber = $p + 1 | 0; + $atn.$lexerActions0 = $rt_createArray(oavra_LexerAction, var$2[$p]); + $i = 0; + while (true) { + if ($i >= $atn.$lexerActions0.data.length) + break a; + $data = (oavra_LexerActionType_values()).data; + $p = $endStateNumber + 1 | 0; + $actionType = $data[var$2[$endStateNumber]]; + $loopBackStateNumber = $p + 1 | 0; + $data1 = var$2[$p]; + $endStateNumber = $loopBackStateNumber + 1 | 0; + $atn.$lexerActions0.data[$i] = oavra_ATNDeserializer_lexerActionFactory($this, $actionType, $data1, var$2[$loopBackStateNumber]); + $i = $i + 1 | 0; + } + } + } + oavra_ATNDeserializer_markPrecedenceDecisions($this, $atn); + if (oavra_ATNDeserializationOptions_isVerifyATN($this.$deserializationOptions)) + oavra_ATNDeserializer_verifyATN($this, $atn); + b: { + if (oavra_ATNDeserializationOptions_isGenerateRuleBypassTransitions($this.$deserializationOptions) && $atn.$grammarType === oavra_ATNType_PARSER) { + $p = $atn.$ruleToStartState.data.length; + $data = $rt_createIntArray($p); + var$2 = $data.data; + $atn.$ruleToTokenType = $data; + $i = 0; + while ($i < $p) { + var$2[$i] = ($atn.$maxTokenType + $i | 0) + 1 | 0; + $i = $i + 1 | 0; + } + $i = 0; + while (true) { + if ($i >= $atn.$ruleToStartState.data.length) { + if (!oavra_ATNDeserializationOptions_isVerifyATN($this.$deserializationOptions)) + break b; + oavra_ATNDeserializer_verifyATN($this, $atn); + break b; + } + $bypassStart = oavra_BasicBlockStartState__init_0(); + $bypassStart.$ruleIndex = $i; + oavra_ATN_addState($atn, $bypassStart); + $bypassStop = oavra_BlockEndState__init_0(); + $bypassStop.$ruleIndex = $i; + oavra_ATN_addState($atn, $bypassStop); + $bypassStart.$endState = $bypassStop; + oavra_ATN_defineDecisionState($atn, $bypassStart); + $bypassStop.$startState = $bypassStart; + $excludeTransition = null; + if (!$atn.$ruleToStartState.data[$i].$isLeftRecursiveRule) + $endState = $atn.$ruleToStopState.data[$i]; + else { + $endState_0 = null; + $grammarType = ju_AbstractList_iterator($atn.$states); + c: { + while (true) { + if (!ju_AbstractList$1_hasNext($grammarType)) { + $endState = $endState_0; + break c; + } + $endState = ju_AbstractList$1_next($grammarType); + if ($endState.$ruleIndex != $i) + continue; + if (!($endState instanceof oavra_StarLoopEntryState)) + continue; + $maybeLoopEndState = (oavra_ATNState_transition($endState, oavra_ATNState_getNumberOfTransitions($endState) - 1 | 0)).$target; + if (!($maybeLoopEndState instanceof oavra_LoopEndState)) + continue; + if ($maybeLoopEndState.$epsilonOnlyTransitions && (oavra_ATNState_transition($maybeLoopEndState, 0)).$target instanceof oavra_RuleStopState) + break; + } } + if ($endState === null) + break; + $excludeTransition = oavra_ATNState_transition($endState.$loopBackState, 0); } - oavr_Recognizer_setState($this, 1277); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1278); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1279); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + $grammarType = ju_AbstractList_iterator($atn.$states); + while (ju_AbstractList$1_hasNext($grammarType)) { + $sets = ju_AbstractList_iterator((ju_AbstractList$1_next($grammarType)).$transitions); + while (ju_AbstractList$1_hasNext($sets)) { + $transition = ju_AbstractList$1_next($sets); + if ($transition === $excludeTransition) + continue; + if ($transition.$target === $endState) + $transition.$target = $bypassStop; + } + } + while (oavra_ATNState_getNumberOfTransitions($atn.$ruleToStartState.data[$i]) > 0) { + $data = $atn.$ruleToStartState.data; + oavra_ATNState_addTransition($bypassStart, oavra_ATNState_removeTransition($data[$i], oavra_ATNState_getNumberOfTransitions($data[$i]) - 1 | 0)); } + oavra_ATNState_addTransition($atn.$ruleToStartState.data[$i], oavra_EpsilonTransition__init_($bypassStart)); + oavra_ATNState_addTransition($bypassStop, oavra_EpsilonTransition__init_($endState)); + $matchState = oavra_BasicState__init_(); + oavra_ATN_addState($atn, $matchState); + oavra_ATNState_addTransition($matchState, oavra_AtomTransition__init_($bypassStop, $atn.$ruleToTokenType.data[$i])); + oavra_ATNState_addTransition($bypassStart, oavra_EpsilonTransition__init_($matchState)); + $i = $i + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5014))); } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + return $atn; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher25Parser_dynamicLabelType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DynamicLabelTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 130, 65); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1281); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 1282); - oncipv_Cypher25Parser_dynamicExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + $state = ju_AbstractList$1_next($grammarType); + if ($state instanceof oavra_BlockStartState) { + $sets = $state; + $loopbackState = $sets.$endState; + if ($loopbackState === null) + $rt_throw(jl_IllegalStateException__init_0()); + if ($loopbackState.$startState !== null) + break; + $loopbackState.$startState = $sets; + } + d: { + if ($state instanceof oavra_PlusLoopbackState) { + $loopbackState = $state; + $i = 0; + while ($i < oavra_ATNState_getNumberOfTransitions($loopbackState)) { + $target = (oavra_ATNState_transition($loopbackState, $i)).$target; + if ($target instanceof oavra_PlusBlockStartState) + $target.$loopBackState0 = $loopbackState; + $i = $i + 1 | 0; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } else if ($state instanceof oavra_StarLoopbackState) { + $loopbackState = $state; + $i = 0; + while (true) { + if ($i >= oavra_ATNState_getNumberOfTransitions($loopbackState)) + break d; + $target = (oavra_ATNState_transition($loopbackState, $i)).$target; + if ($target instanceof oavra_StarLoopEntryState) + $target.$loopBackState = $loopbackState; + $i = $i + 1 | 0; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $rt_throw(jl_IllegalStateException__init_0()); }, -oncipv_Cypher25Parser_labelType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 132, 66); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1284); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 1285); - oncipv_Cypher25Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oavra_ATNDeserializer_deserializeSets = ($this, $data, $p, $sets) => { + let var$4, $nsets, $i, $nintervals, $set, $j, $a; + $data = $data.data; + var$4 = $p + 1 | 0; + $nsets = $data[$p]; + $i = 0; + while ($i < $nsets) { + $nintervals = $data[var$4]; + $p = var$4 + 1 | 0; + $set = oavrm_IntervalSet__init_($rt_createIntArray(0)); + ju_ArrayList_add($sets, $set); + var$4 = $p + 1 | 0; + if (!$data[$p] ? 0 : 1) + oavrm_IntervalSet_add($set, (-1)); + $j = 0; + while ($j < $nintervals) { + $p = var$4 + 1 | 0; + $a = $data[var$4]; + var$4 = $p + 1 | 0; + oavrm_IntervalSet_add0($set, $a, $data[$p]); + $j = $j + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $i = $i + 1 | 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher25Parser_relType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RelTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 134, 67); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1287); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 1288); - oncipv_Cypher25Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oavra_ATNDeserializer_markPrecedenceDecisions = ($this, $atn) => { + let var$2, $state, $maybeLoopEndState; + var$2 = ju_AbstractList_iterator($atn.$states); + while (ju_AbstractList$1_hasNext(var$2)) { + $state = ju_AbstractList$1_next(var$2); + if (!($state instanceof oavra_StarLoopEntryState)) + continue; + if ($atn.$ruleToStartState.data[$state.$ruleIndex].$isLeftRecursiveRule) { + $maybeLoopEndState = (oavra_ATNState_transition($state, oavra_ATNState_getNumberOfTransitions($state) - 1 | 0)).$target; + if ($maybeLoopEndState instanceof oavra_LoopEndState && $maybeLoopEndState.$epsilonOnlyTransitions && (oavra_ATNState_transition($maybeLoopEndState, 0)).$target instanceof oavra_RuleStopState) + $state.$isPrecedenceDecision = 1; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; }, -oncipv_Cypher25Parser_labelOrRelType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelOrRelTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 136, 68); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1290); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 1291); - oncipv_Cypher25Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - +oavra_ATNDeserializer_verifyATN = ($this, $atn) => { + let $state, $starLoopEntryState, $decisionState; + $atn = ju_AbstractList_iterator($atn.$states); + while (ju_AbstractList$1_hasNext($atn)) { + $state = ju_AbstractList$1_next($atn); + if ($state === null) + continue; + oavra_ATNDeserializer_checkCondition($this, !$state.$epsilonOnlyTransitions && oavra_ATNState_getNumberOfTransitions($state) > 1 ? 0 : 1); + if ($state instanceof oavra_PlusBlockStartState) + oavra_ATNDeserializer_checkCondition($this, $state.$loopBackState0 === null ? 0 : 1); + if ($state instanceof oavra_StarLoopEntryState) { + $starLoopEntryState = $state; + oavra_ATNDeserializer_checkCondition($this, $starLoopEntryState.$loopBackState === null ? 0 : 1); + oavra_ATNDeserializer_checkCondition($this, oavra_ATNState_getNumberOfTransitions($starLoopEntryState) != 2 ? 0 : 1); + if (!((oavra_ATNState_transition($starLoopEntryState, 0)).$target instanceof oavra_StarBlockStartState)) { + if (!((oavra_ATNState_transition($starLoopEntryState, 0)).$target instanceof oavra_LoopEndState)) { + $atn = new jl_IllegalStateException; + jl_Throwable__init_0($atn); + $rt_throw($atn); } + oavra_ATNDeserializer_checkCondition($this, (oavra_ATNState_transition($starLoopEntryState, 1)).$target instanceof oavra_StarBlockStartState); + oavra_ATNDeserializer_checkCondition($this, $starLoopEntryState.$nonGreedy); + } else { + oavra_ATNDeserializer_checkCondition($this, (oavra_ATNState_transition($starLoopEntryState, 1)).$target instanceof oavra_LoopEndState); + oavra_ATNDeserializer_checkCondition($this, $starLoopEntryState.$nonGreedy ? 0 : 1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if ($state instanceof oavra_StarLoopbackState) { + oavra_ATNDeserializer_checkCondition($this, oavra_ATNState_getNumberOfTransitions($state) != 1 ? 0 : 1); + oavra_ATNDeserializer_checkCondition($this, (oavra_ATNState_transition($state, 0)).$target instanceof oavra_StarLoopEntryState); + } + if ($state instanceof oavra_LoopEndState) + oavra_ATNDeserializer_checkCondition($this, $state.$loopBackState1 === null ? 0 : 1); + if ($state instanceof oavra_RuleStartState) + oavra_ATNDeserializer_checkCondition($this, $state.$stopState === null ? 0 : 1); + if ($state instanceof oavra_BlockStartState) + oavra_ATNDeserializer_checkCondition($this, $state.$endState === null ? 0 : 1); + if ($state instanceof oavra_BlockEndState) + oavra_ATNDeserializer_checkCondition($this, $state.$startState === null ? 0 : 1); + if (!($state instanceof oavra_DecisionState)) + oavra_ATNDeserializer_checkCondition($this, oavra_ATNState_getNumberOfTransitions($state) > 1 && !($state instanceof oavra_RuleStopState) ? 0 : 1); + else { + $decisionState = $state; + oavra_ATNDeserializer_checkCondition($this, oavra_ATNState_getNumberOfTransitions($decisionState) > 1 && $decisionState.$decision0 < 0 ? 0 : 1); + } } - return $_localctx; }, -oncipv_Cypher25Parser_properties = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PropertiesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 138, 69); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1295); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 76: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1294); - oncipv_Cypher25Parser_parameter($this, $rt_s(708)); - break e; - case 143: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1293); - oncipv_Cypher25Parser_map($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavra_ATNDeserializer_checkCondition = ($this, $condition) => { + let var$2, var$3; + var$2 = null; + if ($condition) + return; + var$3 = new jl_IllegalStateException; + jl_Throwable__init_(var$3, var$2); + $rt_throw(var$3); +}, +oavra_ATNDeserializer_edgeFactory = ($this, $atn, $type, $src, $trg, $arg1, $arg2, $arg3, $sets) => { + let $target, $rt, $pt, $a; + $target = ju_ArrayList_get($atn.$states, $trg); + switch ($type) { + case 1: + break; + case 2: + if (!$arg3) + return oavra_RangeTransition__init_($target, $arg1, $arg2); + return oavra_RangeTransition__init_($target, (-1), $arg2); + case 3: + $rt = new oavra_RuleTransition; + oavra_Transition__init_($rt, ju_ArrayList_get($atn.$states, $arg1)); + $rt.$ruleIndex5 = $arg2; + $rt.$precedence1 = $arg3; + $rt.$followState = $target; + return $rt; + case 4: + $pt = new oavra_PredicateTransition; + $type = !$arg3 ? 0 : 1; + oavra_Transition__init_($pt, $target); + $pt.$ruleIndex1 = $arg1; + $pt.$predIndex = $arg2; + $pt.$isCtxDependent = $type; + return $pt; + case 5: + if (!$arg3) + return oavra_AtomTransition__init_($target, $arg1); + return oavra_AtomTransition__init_($target, (-1)); + case 6: + $a = new oavra_ActionTransition; + $type = !$arg3 ? 0 : 1; + oavra_Transition__init_($a, $target); + $a.$ruleIndex4 = $arg1; + $a.$actionIndex0 = $arg2; + $a.$isCtxDependent1 = $type; + return $a; + case 7: + return oavra_SetTransition__init_0($target, ju_ArrayList_get($sets, $arg1)); + case 8: + $atn = new oavra_NotSetTransition; + oavra_SetTransition__init_($atn, $target, ju_ArrayList_get($sets, $arg1)); + return $atn; + case 9: + $atn = new oavra_WildcardTransition; + oavra_Transition__init_($atn, $target); + return $atn; + case 10: + $atn = new oavra_PrecedencePredicateTransition; + oavra_Transition__init_($atn, $target); + $atn.$precedence0 = $arg1; + return $atn; + default: + $atn = new jl_IllegalArgumentException; + jl_Throwable__init_($atn, $rt_s(5015)); + $rt_throw($atn); } - return $_localctx; + return oavra_EpsilonTransition__init_($target); }, -oncipv_Cypher25Parser_relationshipPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RelationshipPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 140, 70); +oavra_ATNDeserializer_stateFactory = ($this, $type, $ruleIndex) => { + let $s, var$4, $message; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1298); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 152 && $_la != 305)) { - oavr_Recognizer_setState($this, 1297); - oncipv_Cypher25Parser_leftArrow($this); - } - oavr_Recognizer_setState($this, 1300); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 1319); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 142) { - e: { - oavr_Recognizer_setState($this, 1301); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 1303); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 104, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1302); - oncipv_Cypher25Parser_variable($this); - } - oavr_Recognizer_setState($this, 1306); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 44 && $_la != 135)) { - oavr_Recognizer_setState($this, 1305); - oncipv_Cypher25Parser_labelExpression($this); - } - oavr_Recognizer_setState($this, 1309); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 265) { - oavr_Recognizer_setState($this, 1308); - oncipv_Cypher25Parser_pathLength($this); - } - oavr_Recognizer_setState($this, 1312); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 76 && $_la != 143)) { - oavr_Recognizer_setState($this, 1311); - oncipv_Cypher25Parser_properties($this); - } - oavr_Recognizer_setState($this, 1316); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 1314); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 1315); - oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1318); - oavr_Parser_match($this, 210); - } - oavr_Recognizer_setState($this, 1321); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 1323); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 120 && $_la != 306)) { - oavr_Recognizer_setState($this, 1322); - oncipv_Cypher25Parser_rightArrow($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + switch ($type) { + case 0: + break; + case 1: + $s = new oavra_BasicState; + oavra_ATNState__init_($s); + break a; + case 2: + $s = new oavra_RuleStartState; + oavra_ATNState__init_($s); + break a; + case 3: + $s = new oavra_BasicBlockStartState; + oavra_DecisionState__init_($s); + break a; + case 4: + $s = new oavra_PlusBlockStartState; + oavra_DecisionState__init_($s); + break a; + case 5: + $s = new oavra_StarBlockStartState; + oavra_DecisionState__init_($s); + break a; + case 6: + $s = new oavra_TokensStartState; + oavra_DecisionState__init_($s); + break a; + case 7: + $s = new oavra_RuleStopState; + oavra_ATNState__init_($s); + break a; + case 8: + $s = new oavra_BlockEndState; + oavra_ATNState__init_($s); + break a; + case 9: + $s = new oavra_StarLoopbackState; + oavra_ATNState__init_($s); + break a; + case 10: + $s = new oavra_StarLoopEntryState; + oavra_DecisionState__init_($s); + break a; + case 11: + $s = new oavra_PlusLoopbackState; + oavra_DecisionState__init_($s); + break a; + case 12: + $s = new oavra_LoopEndState; + oavra_ATNState__init_($s); + break a; + default: + $s = ju_Locale_getDefault(); + var$4 = $rt_createArray(jl_Object, 1); + var$4.data[0] = jl_Integer_valueOf($type); + $message = jl_String_format0($s, $rt_s(5016), var$4); + $s = new jl_IllegalArgumentException; + jl_Throwable__init_($s, $message); + $rt_throw($s); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + return null; } - return $_localctx; + $s.$ruleIndex = $ruleIndex; + return $s; }, -oncipv_Cypher25Parser_insertRelationshipPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$InsertRelationshipPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 142, 71); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1326); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 152 && $_la != 305)) { - oavr_Recognizer_setState($this, 1325); - oncipv_Cypher25Parser_leftArrow($this); - } - e: { - oavr_Recognizer_setState($this, 1328); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 1329); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 1331); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 112, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1330); - oncipv_Cypher25Parser_variable($this); - } - oavr_Recognizer_setState($this, 1333); - oncipv_Cypher25Parser_insertRelationshipLabelExpression($this); - oavr_Recognizer_setState($this, 1335); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 143) { - oavr_Recognizer_setState($this, 1334); - oncipv_Cypher25Parser_map($this); - } - oavr_Recognizer_setState($this, 1337); - oavr_Parser_match($this, 210); - oavr_Recognizer_setState($this, 1338); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 1340); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 120 && $_la != 306)) { - oavr_Recognizer_setState($this, 1339); - oncipv_Cypher25Parser_rightArrow($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavra_ATNDeserializer_lexerActionFactory = ($this, $type, $data1, $data2) => { + let var$4, var$5, var$6; + oavra_ATNDeserializer$1_$callClinit(); + switch (oavra_ATNDeserializer$1_$SwitchMap$org$antlr$v4$runtime$atn$LexerActionType.data[$type.$ordinal]) { + case 1: + $type = new oavra_LexerChannelAction; + $type.$channel = $data1; + return $type; + case 2: + $type = new oavra_LexerCustomAction; + $type.$ruleIndex3 = $data1; + $type.$actionIndex = $data2; + return $type; + case 3: + $type = new oavra_LexerModeAction; + $type.$mode3 = $data1; + return $type; + case 4: + break; + case 5: + return oavra_LexerPopModeAction_INSTANCE; + case 6: + $type = new oavra_LexerPushModeAction; + $type.$mode2 = $data1; + return $type; + case 7: + return oavra_LexerSkipAction_INSTANCE; + case 8: + $type = new oavra_LexerTypeAction; + $type.$type3 = $data1; + return $type; + default: + var$4 = new jl_IllegalArgumentException; + var$5 = ju_Locale_getDefault(); + var$6 = $rt_createArray(jl_Object, 1); + var$6.data[0] = $type; + jl_Throwable__init_(var$4, jl_String_format0(var$5, $rt_s(5017), var$6)); + $rt_throw(var$4); + } + return oavra_LexerMoreAction_INSTANCE; +}, +oavra_ATNDeserializer__clinit_ = () => { + oavra_ATNDeserializer_SERIALIZED_VERSION = 4; +}; +function oavrd_DFA() { + let a = this; jl_Object.call(a); + a.$states0 = null; + a.$s0 = null; + a.$decision = 0; + a.$atnStartState = null; + a.$precedenceDfa = 0; +} +let oavrd_DFA__init_0 = ($this, $atnStartState, $decision) => { + let $precedenceDfa, $precedenceState; + $this.$states0 = ju_HashMap__init_(); + $this.$atnStartState = $atnStartState; + $this.$decision = $decision; + $precedenceDfa = 0; + if ($atnStartState instanceof oavra_StarLoopEntryState && $atnStartState.$isPrecedenceDecision) { + $precedenceDfa = 1; + $precedenceState = oavrd_DFAState__init_(oavra_ATNConfigSet__init_0()); + $precedenceState.$edges = $rt_createArray(oavrd_DFAState, 0); + $precedenceState.$isAcceptState = 0; + $precedenceState.$requiresFullContext = 0; + $this.$s0 = $precedenceState; } - return $_localctx; -}; -let oncipv_Cypher25Parser_leftArrow = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LeftArrowContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 144, 72); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1342); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 152 && $_la != 305) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $this.$precedenceDfa = $precedenceDfa; +}, +oavrd_DFA__init_ = (var_0, var_1) => { + let var_2 = new oavrd_DFA(); + oavrd_DFA__init_0(var_2, var_0, var_1); + return var_2; +}, +oavrd_DFA_isPrecedenceDfa = $this => { + return $this.$precedenceDfa; +}, +oavrd_DFA_getPrecedenceStartState = ($this, $precedence) => { + let var$2; + if (!$this.$precedenceDfa) { + var$2 = new jl_IllegalStateException; + jl_Throwable__init_(var$2, $rt_s(5018)); + $rt_throw(var$2); } - return $_localctx; + if ($precedence >= 0 && $precedence < $this.$s0.$edges.data.length) + return $this.$s0.$edges.data[$precedence]; + return null; }, -oncipv_Cypher25Parser_arrowLine = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ArrowLineContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 146, 73); +oavrd_DFA_setPrecedenceStartState = ($this, $precedence, $startState) => { + let var$3, $$je; + if (!$this.$precedenceDfa) { + $startState = new jl_IllegalStateException; + jl_Throwable__init_($startState, $rt_s(5018)); + $rt_throw($startState); + } + if ($precedence < 0) + return; + var$3 = $this.$s0; + jl_Object_monitorEnterSync(var$3); a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1344); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 157 && $_la != 304) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + try { + if ($precedence >= $this.$s0.$edges.data.length) + $this.$s0.$edges = ju_Arrays_copyOf($this.$s0.$edges, $precedence + 1 | 0); + $this.$s0.$edges.data[$precedence] = $startState; + jl_Object_monitorExitSync(var$3); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $startState = $$je; + break a; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + return; } - return $_localctx; + jl_Object_monitorExitSync(var$3); + $rt_throw($startState); }, -oncipv_Cypher25Parser_rightArrow = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RightArrowContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 148, 74); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1346); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 120 && $_la != 306) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - +oavrd_DFA_toString = ($this, $vocabulary) => { + let $serializer, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; + if ($this.$s0 === null) + return $rt_s(4); + $serializer = new oavrd_DFASerializer; + $serializer.$dfa = $this; + $serializer.$vocabulary2 = $vocabulary; + if ($this.$s0 === null) + $vocabulary = null; + else { + $vocabulary = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($vocabulary); + var$3 = $serializer.$dfa; + var$4 = new ju_ArrayList; + var$5 = ju_HashMap_keySet(var$3.$states0); + ju_ArrayList__init_1(var$4, var$5.$size()); + var$5 = var$5.$iterator(); + var$6 = 0; + while (true) { + var$7 = var$4.$array1.data; + var$8 = var$7.length; + if (var$6 >= var$8) + break; + var$7[var$6] = var$5.$next(); + var$6 = var$6 + 1 | 0; + } + var$4.$size0 = var$8; + var$5 = new oavrd_DFA$1; + var$5.$this$019 = var$3; + var$7 = $rt_createArray(jl_Object, var$8); + var$9 = var$7.data; + ju_AbstractCollection_toArray(var$4, var$7); + ju_Arrays_sort(var$7, var$5); + var$10 = 0; + var$6 = var$9.length; + while (var$10 < var$6) { + ju_ArrayList_set(var$4, var$10, var$9[var$10]); + var$10 = var$10 + 1 | 0; + } + var$3 = ju_AbstractList_iterator(var$4); + while (ju_AbstractList$1_hasNext(var$3)) { + var$11 = ju_AbstractList$1_next(var$3); + var$8 = 0; + var$7 = var$11.$edges; + if (var$7 !== null) + var$8 = var$7.data.length; + var$12 = 0; + while (var$12 < var$8) { + var$4 = var$11.$edges.data[var$12]; + if (var$4 !== null && var$4.$stateNumber0 != 2147483647) { + jl_AbstractStringBuilder_append($vocabulary, oavrd_DFASerializer_getStateString($serializer, var$11)); + var$13 = oavr_VocabularyImpl_getDisplayName($serializer.$vocabulary2, var$12 - 1 | 0); + jl_AbstractStringBuilder_append($vocabulary, $rt_s(3665)); + jl_AbstractStringBuilder_append($vocabulary, var$13); + jl_AbstractStringBuilder_append($vocabulary, $rt_s(598)); + jl_AbstractStringBuilder_append($vocabulary, oavrd_DFASerializer_getStateString($serializer, var$4)); + jl_AbstractStringBuilder_append0($vocabulary, 10); } + var$12 = var$12 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $vocabulary = jl_AbstractStringBuilder_toString($vocabulary); + if (!$vocabulary.$nativeString.length) + $vocabulary = null; } - return $_localctx; + return $vocabulary; }, -oncipv_Cypher25Parser_pathLength = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PathLengthContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 150, 75); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1348); - oavr_Parser_match($this, 265); - oavr_Recognizer_setState($this, 1357); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 117, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 1350); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - oavr_Recognizer_setState($this, 1349); - $_localctx.$from22 = oavr_Parser_match($this, 5); - } - oavr_Recognizer_setState($this, 1352); - oavr_Parser_match($this, 80); - oavr_Recognizer_setState($this, 1354); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 5) - break e; - oavr_Recognizer_setState($this, 1353); - $_localctx.$to6 = oavr_Parser_match($this, 5); - break e; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1356); - $_localctx.$single1 = oavr_Parser_match($this, 5); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipv_Cypher25Parser$StatementContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StatementContext_getRuleIndex = $this => { + return 1; +}; +function ong_ErrorGqlStatusObjectImplementation$Builder() { + let a = this; jl_Object.call(a); + a.$cause3 = null; + a.$paramMap = null; + a.$gqlStatusInfoCode0 = null; + a.$diagnosticRecordBuilder = null; +} +let ong_ErrorGqlStatusObjectImplementation$Builder_$assertionsDisabled = 0, +ong_ErrorGqlStatusObjectImplementation$Builder_withParam = ($this, $param, $value) => { + ju_HashMap_put($this.$paramMap, $param, $value); + return $this; +}, +ong_ErrorGqlStatusObjectImplementation$Builder_withParam0 = ($this, $param, $value) => { + ju_HashMap_put($this.$paramMap, $param, $value); + return $this; +}, +ong_ErrorGqlStatusObjectImplementation$Builder_withParam1 = ($this, $param, $value) => { + ju_HashMap_put($this.$paramMap, $param, $value); + return $this; +}, +ong_ErrorGqlStatusObjectImplementation$Builder_withCause = ($this, $c) => { + if ($c instanceof ong_ErrorGqlStatusObjectImplementation) + $c.$isCause = 1; + $this.$cause3 = $c; + return $this; +}, +ong_ErrorGqlStatusObjectImplementation$Builder_atPosition = ($this, $offset, $line, $col) => { + let var$4, var$5; + if (!ong_ErrorGqlStatusObjectImplementation$Builder_$assertionsDisabled) { + var$4 = $rt_compare($line, 1); + if (var$4 >= 0 && !(!var$4 && $col == ($offset + 1 | 0)) && !(var$4 > 0 && $offset > $col)) { + var$5 = new jl_AssertionError; + jl_Throwable__init_0(var$5); + $rt_throw(var$5); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + ju_HashMap_put($this.$diagnosticRecordBuilder.$innerDiagnosticRecord0, $rt_s(3528), ju_Map_of0($rt_s(3529), jl_Integer_valueOf($offset), $rt_s(3530), jl_Integer_valueOf($line), $rt_s(3531), jl_Integer_valueOf($col))); + return $this; }, -oncipv_Cypher25Parser_labelExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 152, 76); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1363); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 44: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1359); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 1360); - oncipv_Cypher25Parser_labelExpression4($this); - break e; - case 135: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1361); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 1362); - oncipv_Cypher25Parser_labelExpression4Is($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +ong_ErrorGqlStatusObjectImplementation$Builder_build = $this => { + let var$1, $diagnosticRecord, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = $this.$diagnosticRecordBuilder; + ong_DiagnosticRecord_addClassificationToMap($this.$gqlStatusInfoCode0.$classification0, var$1.$innerDiagnosticRecord0); + var$1 = $this.$diagnosticRecordBuilder; + $diagnosticRecord = new ong_DiagnosticRecord; + var$1 = var$1.$innerDiagnosticRecord0; + $diagnosticRecord.$innerDiagnosticRecord = ju_HashMap__init_(); + var$3 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3524))); + var$4 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3525))); + var$5 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3526))); + var$6 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3527))); + var$7 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(4022))); + var$8 = ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(3528))); + ju_Optional_ofNullable(ju_HashMap_get(var$1, $rt_s(5019))); + ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3524), ju_Optional_orElse(var$3, $rt_s(90))); + ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3525), ju_Optional_orElse(var$4, $rt_s(4))); + ju_HashMap_put($diagnosticRecord.$innerDiagnosticRecord, $rt_s(3526), ju_Optional_orElse(var$5, $rt_s(21))); + var$1 = new ong_DiagnosticRecord$_init_$lambda$_4_0; + var$1.$_0962 = $diagnosticRecord; + ju_Optional_ifPresent(var$6, var$1); + var$1 = new ong_DiagnosticRecord$_init_$lambda$_4_1; + var$1.$_0423 = $diagnosticRecord; + ju_Optional_ifPresent(var$7, var$1); + var$1 = new ong_DiagnosticRecord$_init_$lambda$_4_2; + var$1.$_01071 = $diagnosticRecord; + ju_Optional_ifPresent(var$8, var$1); + var$1 = new ong_ErrorGqlStatusObjectImplementation; + var$6 = $this.$gqlStatusInfoCode0; + var$7 = $this.$paramMap; + var$8 = $this.$cause3; + var$1.$gqlStatusInfo = var$6; + var$1.$diagnosticRecord = $diagnosticRecord; + var$1.$messageWithParameters = ong_CommonGqlStatusObjectImplementation_insertMessageParameters(var$1, var$7); + var$1.$isCause = 0; + var$1.$gqlStatusInfoCode = var$6; + var$1.$cause1 = var$8; + if (var$7 instanceof ju_TemplateCollections$NEtriesMap) + var$6 = var$7; + else { + var$6 = new ju_TemplateCollections$NEtriesMap; + var$6.$data0 = ju_TemplateCollections$NEtriesMap_toEntryArray(var$6, ju_AbstractCollection_toArray(ju_HashMap_entrySet(var$7), $rt_createArray(ju_Map$Entry, 0))); } - return $_localctx; + var$1.$paramMap0 = var$6; + return var$1; }, -oncipv_Cypher25Parser_labelExpression4 = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpression4Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 154, 77); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1365); - oncipv_Cypher25Parser_labelExpression3($this); - oavr_Recognizer_setState($this, 1373); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 120, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1366); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 1368); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) { - oavr_Recognizer_setState($this, 1367); - oavr_Parser_match($this, 44); - } - oavr_Recognizer_setState($this, 1370); - oncipv_Cypher25Parser_labelExpression3($this); - } - oavr_Recognizer_setState($this, 1375); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 120, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +ong_ErrorGqlStatusObjectImplementation$Builder__clinit_ = () => { + ong_ErrorGqlStatusObjectImplementation$Builder_$assertionsDisabled = 0; +}, +oncias_SemanticCheck$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), +oncias_SemanticCheck$$_clinit_$lambda$_0_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); +}; +function oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0() { + jl_Object.call(this); + this.$_0306 = null; +} +let oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$2 = var$0.$_0306; + var$3 = new oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0; + var$3.$_028 = var$1; + return jl_Boolean_valueOf(sci_List_exists(var$2, var$3)); +}; +function oncias_SemanticCheck$$fromState$lambda$_8_0() { + jl_Object.call(this); + this.$_0109 = null; +} +let oncias_SemanticCheck$$fromState$lambda$_8_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0109; + oncias_SemanticCheck$_$callClinit(); + return var$2.$apply2(var$1.$state); +}, +oncipv_Cypher5Parser$StatementContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StatementContext_getRuleIndex = $this => { + return 1; +}; +function oavr_CommonTokenFactory() { + jl_Object.call(this); + this.$copyText = 0; +} +let oavr_CommonTokenFactory_DEFAULT = null, +oavr_CommonTokenFactory_create = ($this, var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8) => { + let var$9; + var$9 = oavr_CommonToken__init_0(var$1, var$2, var$4, var$5, var$6); + var$9.$line4 = var$7; + var$9.$charPositionInLine0 = var$8; + if (var$3 !== null) + var$9.$text0 = var$3; + else if ($this.$copyText) { + var$1 = var$1.$b0; + if (var$1 !== null) + var$9.$text0 = var$1.$getText0(oavrm_Interval_of(var$5, var$6)); } - return $_localctx; + return var$9; }, -oncipv_Cypher25Parser_labelExpression4Is = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpression4IsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 156, 78); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1376); - oncipv_Cypher25Parser_labelExpression3Is($this); - oavr_Recognizer_setState($this, 1384); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 122, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1377); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 1379); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) { - oavr_Recognizer_setState($this, 1378); - oavr_Parser_match($this, 44); - } - oavr_Recognizer_setState($this, 1381); - oncipv_Cypher25Parser_labelExpression3Is($this); - } - oavr_Recognizer_setState($this, 1386); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 122, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavr_CommonTokenFactory__clinit_ = () => { + let var$1; + var$1 = new oavr_CommonTokenFactory; + var$1.$copyText = 0; + oavr_CommonTokenFactory_DEFAULT = var$1; +}; +function oavrm_Pair() { + let a = this; jl_Object.call(a); + a.$a7 = null; + a.$b0 = null; +} +let oavrm_Pair__init_0 = ($this, $a, $b) => { + $this.$a7 = $a; + $this.$b0 = $b; +}, +oavrm_Pair__init_ = (var_0, var_1) => { + let var_2 = new oavrm_Pair(); + oavrm_Pair__init_0(var_2, var_0, var_1); + return var_2; +}, +oavrm_Pair_equals = ($this, $obj) => { + let $other; + if ($obj === $this) + return 1; + if (!($obj instanceof oavrm_Pair)) + return 0; + $other = $obj; + oavrm_ObjectEqualityComparator_$callClinit(); + return oavrm_ObjectEqualityComparator_equals(oavrm_ObjectEqualityComparator_INSTANCE, $this.$a7, $other.$a7) && oavrm_ObjectEqualityComparator_equals(oavrm_ObjectEqualityComparator_INSTANCE, $this.$b0, $other.$b0) ? 1 : 0; +}, +oavrm_Pair_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update0(oavrm_MurmurHash_initialize(), $this.$a7), $this.$b0), 2); +}, +oavrm_Pair_toString = $this => { + let var$1, var$2; + var$1 = $rt_createArray(jl_Object, 2); + var$2 = var$1.data; + var$2[0] = $this.$a7; + var$2[1] = $this.$b0; + return jl_String_format($rt_s(5020), var$1); +}; +function oavra_LexerATNSimulator$SimState() { + let a = this; jl_Object.call(a); + a.$index7 = 0; + a.$line6 = 0; + a.$charPos = 0; + a.$dfaState = null; +} +let oavra_LexerATNSimulator$SimState_reset = $this => { + $this.$index7 = (-1); + $this.$line6 = 0; + $this.$charPos = (-1); + $this.$dfaState = null; +}; +function juc_CopyOnWriteArrayList() { + jl_Object.call(this); + this.$array10 = null; +} +let juc_CopyOnWriteArrayList_add = ($this, $e) => { + let $copy; + $copy = ju_Arrays_copyOf($this.$array10, $this.$array10.data.length + 1 | 0); + $copy.data[$this.$array10.data.length] = $e; + $this.$array10 = $copy; + return 1; +}, +juc_CopyOnWriteArrayList_iterator = $this => { + let var$1, var$2, var$3; + var$1 = new juc_CopyOnWriteArrayList$ListIteratorImpl; + var$2 = $this.$array10; + var$3 = var$2.data; + var$1.$current3 = 0; + var$1.$arr = var$2; + var$1.$size10 = var$3.length; + return var$1; +}; +function oavr_Recognizer$1() { + juc_CopyOnWriteArrayList.call(this); + this.$this$025 = null; +} +function oavra_ATNDeserializationOptions() { + let a = this; jl_Object.call(a); + a.$readOnly2 = 0; + a.$verifyATN0 = 0; + a.$generateRuleBypassTransitions = 0; +} +let oavra_ATNDeserializationOptions_defaultOptions = null, +oavra_ATNDeserializationOptions_isVerifyATN = $this => { + return $this.$verifyATN0; +}, +oavra_ATNDeserializationOptions_isGenerateRuleBypassTransitions = $this => { + return $this.$generateRuleBypassTransitions; +}, +oavra_ATNDeserializationOptions__clinit_ = () => { + let var$1; + var$1 = new oavra_ATNDeserializationOptions; + var$1.$verifyATN0 = 1; + var$1.$generateRuleBypassTransitions = 0; + oavra_ATNDeserializationOptions_defaultOptions = var$1; + var$1.$readOnly2 = 1; +}; +function oavra_ATN() { + let a = this; jl_Object.call(a); + a.$states = null; + a.$decisionToState = null; + a.$ruleToStartState = null; + a.$ruleToStopState = null; + a.$modeNameToStartState = null; + a.$grammarType = null; + a.$maxTokenType = 0; + a.$ruleToTokenType = null; + a.$lexerActions0 = null; + a.$modeToStartState = null; +} +let oavra_ATN__init_0 = ($this, $grammarType, $maxTokenType) => { + $this.$states = ju_ArrayList__init_(); + $this.$decisionToState = ju_ArrayList__init_(); + $this.$modeNameToStartState = ju_LinkedHashMap__init_(); + $this.$modeToStartState = ju_ArrayList__init_(); + $this.$grammarType = $grammarType; + $this.$maxTokenType = $maxTokenType; +}, +oavra_ATN__init_ = (var_0, var_1) => { + let var_2 = new oavra_ATN(); + oavra_ATN__init_0(var_2, var_0, var_1); + return var_2; +}, +oavra_ATN_nextTokens0 = ($this, $s, $ctx) => { + let $anal, var$4, var$5; + $anal = new oavra_LL1Analyzer; + $anal.$atn1 = $this; + var$4 = null; + var$5 = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavra_LL1Analyzer__LOOK($anal, $s, var$4, $ctx === null ? null : oavra_PredictionContext_fromRuleContext($s.$atn2, $ctx), var$5, ju_HashSet__init_(), ju_BitSet__init_(), 1, 1); + return var$5; +}, +oavra_ATN_nextTokens = ($this, $s) => { + let var$2; + var$2 = $s.$nextTokenWithinRule; + if (var$2 !== null) + return var$2; + var$2 = oavra_ATN_nextTokens0($this, $s, null); + $s.$nextTokenWithinRule = var$2; + oavrm_IntervalSet_setReadonly(var$2, 1); + return $s.$nextTokenWithinRule; +}, +oavra_ATN_addState = ($this, $state) => { + if ($state !== null) { + $state.$atn2 = $this; + $state.$stateNumber = $this.$states.$size0; } - return $_localctx; + ju_ArrayList_add($this.$states, $state); }, -oncipv_Cypher25Parser_labelExpression3 = $this => { - let $_localctx, $_alt, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpression3Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 158, 79); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1387); - oncipv_Cypher25Parser_labelExpression2($this); - oavr_Recognizer_setState($this, 1392); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 123, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1388); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 44 && $_la != 140) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1389); - oncipv_Cypher25Parser_labelExpression2($this); - } - oavr_Recognizer_setState($this, 1394); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 123, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oavra_ATN_defineDecisionState = ($this, $s) => { + let var$2; + ju_ArrayList_add($this.$decisionToState, $s); + var$2 = $this.$decisionToState.$size0 - 1 | 0; + $s.$decision0 = var$2; + return var$2; +}, +oavra_ATN_getDecisionState = ($this, $decision) => { + if (ju_AbstractCollection_isEmpty($this.$decisionToState)) + return null; + return ju_ArrayList_get($this.$decisionToState, $decision); +}, +oavra_ATN_getNumberOfDecisions = $this => { + return $this.$decisionToState.$size0; +}, +oavra_ATN_getExpectedTokens = ($this, $stateNumber, $context) => { + let $s, $following, $expected; + if ($stateNumber >= 0) { + $s = $this.$states; + if ($stateNumber < $s.$size0) { + $following = oavra_ATN_nextTokens($this, ju_ArrayList_get($s, $stateNumber)); + if (!oavrm_IntervalSet_contains($following, (-2))) + return $following; + $expected = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavrm_IntervalSet_addAll($expected, $following); + oavrm_IntervalSet_remove($expected, (-2)); + while ($context !== null && $context.$invokingState >= 0 && oavrm_IntervalSet_contains($following, (-2))) { + $following = oavra_ATN_nextTokens($this, (oavra_ATNState_transition(ju_ArrayList_get($this.$states, $context.$invokingState), 0)).$followState); + oavrm_IntervalSet_addAll($expected, $following); + oavrm_IntervalSet_remove($expected, (-2)); + $context = $context.$parent; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (oavrm_IntervalSet_contains($following, (-2))) + oavrm_IntervalSet_add($expected, (-1)); + return $expected; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $s = new jl_IllegalArgumentException; + jl_Throwable__init_($s, $rt_s(5021)); + $rt_throw($s); +}; +function oavra_ATNState() { + let a = this; jl_Object.call(a); + a.$atn2 = null; + a.$stateNumber = 0; + a.$ruleIndex = 0; + a.$epsilonOnlyTransitions = 0; + a.$transitions = null; + a.$nextTokenWithinRule = null; +} +let oavra_ATNState_serializationNames = null, +oavra_ATNState_$callClinit = () => { + oavra_ATNState_$callClinit = $rt_eraseClinit(oavra_ATNState); + oavra_ATNState__clinit_(); }, -oncipv_Cypher25Parser_labelExpression3Is = $this => { - let $_localctx, $_alt, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpression3IsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 160, 80); +oavra_ATNState__init_ = $this => { + oavra_ATNState_$callClinit(); + $this.$atn2 = null; + $this.$stateNumber = (-1); + $this.$epsilonOnlyTransitions = 0; + $this.$transitions = ju_ArrayList__init_0(4); +}, +oavra_ATNState_hashCode = $this => { + return $this.$stateNumber; +}, +oavra_ATNState_equals = ($this, $o) => { + if (!($o instanceof oavra_ATNState)) + return 0; + return $this.$stateNumber != $o.$stateNumber ? 0 : 1; +}, +oavra_ATNState_toString = $this => { + return jl_String_valueOf0($this.$stateNumber); +}, +oavra_ATNState_getTransitions = $this => { + return ju_AbstractCollection_toArray($this.$transitions, $rt_createArray(oavra_Transition, 0)); +}, +oavra_ATNState_getNumberOfTransitions = $this => { + return $this.$transitions.$size0; +}, +oavra_ATNState_addTransition = ($this, $e) => { + oavra_ATNState_addTransition0($this, $this.$transitions.$size0, $e); +}, +oavra_ATNState_addTransition0 = ($this, $index, $e) => { + let var$3, var$4, var$5, $alreadyPresent, $t; + if (ju_AbstractCollection_isEmpty($this.$transitions)) + $this.$epsilonOnlyTransitions = $e.$isEpsilon(); + else if ($this.$epsilonOnlyTransitions != $e.$isEpsilon()) { + var$3 = jl_System_err(); + var$4 = ju_Locale_getDefault(); + var$5 = $rt_createArray(jl_Object, 1); + var$5.data[0] = jl_Integer_valueOf($this.$stateNumber); + ji_PrintStream_format(var$3, var$4, $rt_s(5022), var$5); + $this.$epsilonOnlyTransitions = 0; + } + $alreadyPresent = 0; + var$3 = ju_AbstractList_iterator($this.$transitions); a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1395); - oncipv_Cypher25Parser_labelExpression2Is($this); - oavr_Recognizer_setState($this, 1400); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 124, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1396); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 44 && $_la != 140) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1397); - oncipv_Cypher25Parser_labelExpression2Is($this); - } - oavr_Recognizer_setState($this, 1402); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 124, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + while (ju_AbstractList$1_hasNext(var$3)) { + $t = ju_AbstractList$1_next(var$3); + if ($t.$target.$stateNumber == $e.$target.$stateNumber) { + if ($t.$label0() !== null && $e.$label0() !== null && oavrm_IntervalSet_equals($t.$label0(), $e.$label0())) { + $alreadyPresent = 1; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($t.$isEpsilon() && $e.$isEpsilon()) { + $alreadyPresent = 1; + break a; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if (!$alreadyPresent) + ju_ArrayList_add0($this.$transitions, $index, $e); +}, +oavra_ATNState_transition = ($this, $i) => { + return ju_ArrayList_get($this.$transitions, $i); +}, +oavra_ATNState_removeTransition = ($this, $index) => { + return ju_ArrayList_remove($this.$transitions, $index); +}, +oavra_ATNState__clinit_ = () => { + oavra_ATNState_serializationNames = ju_Collections_unmodifiableList(ju_Arrays_asList($rt_wrapArray(jl_String, [$rt_s(5023), $rt_s(5024), $rt_s(5025), $rt_s(5026), $rt_s(5027), $rt_s(5028), $rt_s(5029), $rt_s(5030), $rt_s(5031), $rt_s(5032), $rt_s(5033), $rt_s(5034), $rt_s(5035)]))); +}; +function oavra_DecisionState() { + let a = this; oavra_ATNState.call(a); + a.$decision0 = 0; + a.$nonGreedy = 0; +} +let oavra_DecisionState__init_ = $this => { + oavra_ATNState__init_($this); + $this.$decision0 = (-1); +}; +function oavra_StarLoopEntryState() { + let a = this; oavra_DecisionState.call(a); + a.$loopBackState = null; + a.$isPrecedenceDecision = 0; +} +let oavra_StarLoopEntryState_getStateType = $this => { + return 10; +}; +function oavrd_DFAState() { + let a = this; jl_Object.call(a); + a.$stateNumber0 = 0; + a.$configs = null; + a.$edges = null; + a.$isAcceptState = 0; + a.$prediction = 0; + a.$lexerActionExecutor0 = null; + a.$requiresFullContext = 0; + a.$predicates = null; +} +let oavrd_DFAState__init_0 = ($this, $configs) => { + $this.$stateNumber0 = (-1); + $this.$configs = oavra_ATNConfigSet__init_0(); + $this.$isAcceptState = 0; + $this.$configs = $configs; +}, +oavrd_DFAState__init_ = var_0 => { + let var_1 = new oavrd_DFAState(); + oavrd_DFAState__init_0(var_1, var_0); + return var_1; +}, +oavrd_DFAState_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(7, oavra_ATNConfigSet_hashCode($this.$configs)), 1); +}, +oavrd_DFAState_equals = ($this, $o) => { + let $other; + if ($this === $o) + return 1; + if (!($o instanceof oavrd_DFAState)) + return 0; + $other = $o; + return oavra_ATNConfigSet_equals($this.$configs, $other.$configs); +}, +oavrd_DFAState_toString = $this => { + let $buf, var$2, var$3; + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + var$2 = jl_StringBuilder_append0($buf, $this.$stateNumber0); + jl_AbstractStringBuilder_append(var$2, $rt_s(92)); + jl_StringBuilder_append(var$2, $this.$configs); + if ($this.$isAcceptState) { + jl_AbstractStringBuilder_append($buf, $rt_s(5036)); + var$3 = $this.$predicates; + if (var$3 === null) + jl_StringBuilder_append0($buf, $this.$prediction); + else + jl_AbstractStringBuilder_append($buf, ju_Arrays_toString(var$3)); + } + return jl_AbstractStringBuilder_toString($buf); +}; +function oavra_ATNConfigSet() { + let a = this; jl_Object.call(a); + a.$readonly = 0; + a.$configLookup = null; + a.$configs0 = null; + a.$uniqueAlt = 0; + a.$conflictingAlts = null; + a.$hasSemanticContext = 0; + a.$dipsIntoOuterContext = 0; + a.$fullCtx = 0; + a.$cachedHashCode = 0; +} +let oavra_ATNConfigSet__init_2 = ($this, $fullCtx) => { + let var$2; + $this.$readonly = 0; + $this.$configs0 = ju_ArrayList__init_0(7); + $this.$cachedHashCode = (-1); + var$2 = new oavra_ATNConfigSet$ConfigHashSet; + oavra_ATNConfigSet$AbstractConfigHashSet__init_(var$2, oavra_ATNConfigSet$ConfigEqualityComparator_INSTANCE); + $this.$configLookup = var$2; + $this.$fullCtx = $fullCtx; +}, +oavra_ATNConfigSet__init_ = var_0 => { + let var_1 = new oavra_ATNConfigSet(); + oavra_ATNConfigSet__init_2(var_1, var_0); + return var_1; +}, +oavra_ATNConfigSet__init_1 = $this => { + oavra_ATNConfigSet__init_2($this, 1); +}, +oavra_ATNConfigSet__init_0 = () => { + let var_0 = new oavra_ATNConfigSet(); + oavra_ATNConfigSet__init_1(var_0); + return var_0; +}, +oavra_ATNConfigSet_add0 = ($this, $config) => { + return oavra_ATNConfigSet_add($this, $config, null); +}, +oavra_ATNConfigSet_add = ($this, $config, $mergeCache) => { + let $existing, $rootIsWildcard, $merged; + if ($this.$readonly) { + $config = new jl_IllegalStateException; + jl_Throwable__init_($config, $rt_s(5037)); + $rt_throw($config); + } + if ($config.$semanticContext !== oavra_SemanticContext$Empty_Instance) + $this.$hasSemanticContext = 1; + if (oavra_ATNConfig_getOuterContextDepth($config) > 0) + $this.$dipsIntoOuterContext = 1; + $existing = $this.$configLookup; + if ($existing.$n > $existing.$threshold2) + oavrm_Array2DHashSet_expand($existing); + $existing = oavrm_Array2DHashSet_getOrAddImpl($existing, $config); + if ($existing === $config) { + $this.$cachedHashCode = (-1); + ju_ArrayList_add($this.$configs0, $config); + return 1; + } + $rootIsWildcard = $this.$fullCtx ? 0 : 1; + $merged = oavra_PredictionContext_merge($existing.$context, $config.$context, $rootIsWildcard, $mergeCache); + $existing.$reachesIntoOuterContext = jl_Math_max($existing.$reachesIntoOuterContext, $config.$reachesIntoOuterContext); + if (oavra_ATNConfig_isPrecedenceFilterSuppressed($config)) + oavra_ATNConfig_setPrecedenceFilterSuppressed($existing, 1); + $existing.$context = $merged; + return 1; }, -oncipv_Cypher25Parser_labelExpression2 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpression2Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 162, 81); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1406); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 141) { - oavr_Recognizer_setState($this, 1403); - oavr_Parser_match($this, 141); - oavr_Recognizer_setState($this, 1408); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 1409); - oncipv_Cypher25Parser_labelExpression1($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oavra_ATNConfigSet_elements = $this => { + return $this.$configs0; }, -oncipv_Cypher25Parser_labelExpression2Is = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpression2IsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 164, 82); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1414); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 141) { - oavr_Recognizer_setState($this, 1411); - oavr_Parser_match($this, 141); - oavr_Recognizer_setState($this, 1416); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 1417); - oncipv_Cypher25Parser_labelExpression1Is($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } +oavra_ATNConfigSet_optimizeConfigs = ($this, $interpreter) => { + let var$2, $config, var$4, var$5, var$6, $$je; + if ($this.$readonly) { + $interpreter = new jl_IllegalStateException; + jl_Throwable__init_($interpreter, $rt_s(5037)); + $rt_throw($interpreter); + } + if ($this.$configLookup.$n ? 0 : 1) + return; + var$2 = ju_AbstractList_iterator($this.$configs0); + while (ju_AbstractList$1_hasNext(var$2)) { + a: { + $config = ju_AbstractList$1_next(var$2); + var$4 = $config.$context; + var$5 = $interpreter.$sharedContextCache; + if (var$5 !== null) { + jl_Object_monitorEnterSync(var$5); try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; + var$6 = ju_IdentityHashMap__init_0(); + var$4 = oavra_PredictionContext_getCachedContext(var$4, $interpreter.$sharedContextCache, var$6); + jl_Object_monitorExitSync(var$5); + break a; } catch ($$e) { $$je = $rt_wrapException($$e); - $_localctx = $$je; + $interpreter = $$je; + jl_Object_monitorExitSync(var$5); + $rt_throw($interpreter); } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $config.$context = var$4; } - return $_localctx; }, -oncipv_Cypher25Parser_labelExpression1 = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpression1Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 166, 83); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1426); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$LabelNameContext; - var$2 = $re; - oncipv_Cypher25Parser$LabelNameContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1425); - oncipv_Cypher25Parser_symbolicNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 152: - case 157: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - case 76: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$DynamicLabelContext; - var$2 = $re; - oncipv_Cypher25Parser$DynamicLabelContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1424); - oncipv_Cypher25Parser_dynamicAnyAllExpression($this); - break e; - case 151: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext; - var$2 = $re; - oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1419); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1420); - oncipv_Cypher25Parser_labelExpression4($this); - oavr_Recognizer_setState($this, 1421); - oavr_Parser_match($this, 233); - break e; - case 158: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$AnyLabelContext; - var$2 = $re; - oncipv_Cypher25Parser$AnyLabelContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1423); - oavr_Parser_match($this, 158); - break e; - default: - } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; +oavra_ATNConfigSet_equals = ($this, $o) => { + let $other; + if ($o === $this) + return 1; + if (!($o instanceof oavra_ATNConfigSet)) + return 0; + $other = $o; + $o = $this.$configs0; + return $o !== null && ju_AbstractList_equals($o, $other.$configs0) && $this.$fullCtx == $other.$fullCtx && $this.$uniqueAlt == $other.$uniqueAlt && $this.$conflictingAlts === $other.$conflictingAlts && $this.$hasSemanticContext == $other.$hasSemanticContext && $this.$dipsIntoOuterContext == $other.$dipsIntoOuterContext ? 1 : 0; +}, +oavra_ATNConfigSet_hashCode = $this => { + if (!$this.$readonly) + return ju_ArrayList_hashCode($this.$configs0); + if ($this.$cachedHashCode == (-1)) + $this.$cachedHashCode = ju_ArrayList_hashCode($this.$configs0); + return $this.$cachedHashCode; +}, +oavra_ATNConfigSet_size = $this => { + return $this.$configs0.$size0; +}, +oavra_ATNConfigSet_isEmpty = $this => { + return ju_AbstractCollection_isEmpty($this.$configs0); +}, +oavra_ATNConfigSet_iterator = $this => { + return ju_AbstractList_iterator($this.$configs0); +}, +oavra_ATNConfigSet_isReadonly = $this => { + return $this.$readonly; +}, +oavra_ATNConfigSet_setReadonly = ($this, $readonly) => { + $this.$readonly = $readonly; + $this.$configLookup = null; +}, +oavra_ATNConfigSet_toString = $this => { + let $buf; + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + jl_AbstractStringBuilder_append($buf, ju_ArrayList_toString($this.$configs0)); + if ($this.$hasSemanticContext) { + jl_AbstractStringBuilder_append($buf, $rt_s(5038)); + jl_StringBuilder_append3($buf, $this.$hasSemanticContext); } - return $re; + if ($this.$uniqueAlt) { + jl_AbstractStringBuilder_append($buf, $rt_s(5039)); + jl_StringBuilder_append0($buf, $this.$uniqueAlt); + } + if ($this.$conflictingAlts !== null) { + jl_AbstractStringBuilder_append($buf, $rt_s(5040)); + jl_StringBuilder_append($buf, $this.$conflictingAlts); + } + if ($this.$dipsIntoOuterContext) + jl_AbstractStringBuilder_append($buf, $rt_s(5041)); + return jl_AbstractStringBuilder_toString($buf); }, -oncipv_Cypher25Parser_labelExpression1Is = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelExpression1IsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 168, 84); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1435); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 176: - case 177: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$LabelNameIsContext; - var$2 = $re; - oncipv_Cypher25Parser$LabelNameIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1434); - oncipv_Cypher25Parser_symbolicLabelNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 152: - case 157: - case 159: - case 160: - case 164: - case 165: - case 166: - case 167: - case 174: - case 175: - case 178: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - case 277: - break; - case 76: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$DynamicLabelIsContext; - var$2 = $re; - oncipv_Cypher25Parser$DynamicLabelIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1433); - oncipv_Cypher25Parser_dynamicAnyAllExpression($this); - break e; - case 151: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext; - var$2 = $re; - oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1428); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1429); - oncipv_Cypher25Parser_labelExpression4Is($this); - oavr_Recognizer_setState($this, 1430); - oavr_Parser_match($this, 233); - break e; - case 158: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$AnyLabelIsContext; - var$2 = $re; - oncipv_Cypher25Parser$AnyLabelIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1432); - oavr_Parser_match($this, 158); - break e; - default: - } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; +oncipv_Cypher25Parser$CommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CommandContext_getRuleIndex = $this => { + return 144; +}; +function oavr_NoViableAltException() { + let a = this; oavr_RecognitionException.call(a); + a.$deadEndConfigs0 = null; + a.$startToken = null; +} +let oavr_NoViableAltException__init_1 = ($this, $recognizer) => { + oavr_NoViableAltException__init_0($this, $recognizer, $recognizer.$_input, oavr_Parser_getCurrentToken($recognizer), oavr_Parser_getCurrentToken($recognizer), null, $recognizer.$_ctx); +}, +oavr_NoViableAltException__init_ = var_0 => { + let var_1 = new oavr_NoViableAltException(); + oavr_NoViableAltException__init_1(var_1, var_0); + return var_1; +}, +oavr_NoViableAltException__init_0 = ($this, $recognizer, $input, $startToken, $offendingToken, $deadEndConfigs, $ctx) => { + oavr_RecognitionException__init_($this, $recognizer, $input, $ctx); + $this.$deadEndConfigs0 = $deadEndConfigs; + $this.$startToken = $startToken; + $this.$offendingToken = $offendingToken; +}, +oavr_NoViableAltException__init_2 = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oavr_NoViableAltException(); + oavr_NoViableAltException__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}, +oncipv_Cypher25Parser$RegularQueryContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RegularQueryContext_getRuleIndex = $this => { + return 2; +}, +oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext_getRuleIndex = $this => { + return 2; +}, +oncipv_Cypher5Parser$CommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CommandContext_getRuleIndex = $this => { + return 145; +}, +oncipv_Cypher5Parser$RegularQueryContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RegularQueryContext_getRuleIndex = $this => { + return 3; +}, +oavr_CodePointBuffer$Type = $rt_classWithoutFields(jl_Enum), +oavr_CodePointBuffer$Type_BYTE = null, +oavr_CodePointBuffer$Type_CHAR = null, +oavr_CodePointBuffer$Type_INT = null, +oavr_CodePointBuffer$Type_$VALUES = null, +oavr_CodePointBuffer$Type_values = () => { + return oavr_CodePointBuffer$Type_$VALUES.$clone0(); +}, +oavr_CodePointBuffer$Type__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new oavr_CodePointBuffer$Type; + jl_Enum__init_(var$1, $rt_s(5042), 0); + oavr_CodePointBuffer$Type_BYTE = var$1; + var$1 = new oavr_CodePointBuffer$Type; + jl_Enum__init_(var$1, $rt_s(5043), 1); + oavr_CodePointBuffer$Type_CHAR = var$1; + var$1 = new oavr_CodePointBuffer$Type; + jl_Enum__init_(var$1, $rt_s(4373), 2); + oavr_CodePointBuffer$Type_INT = var$1; + var$2 = $rt_createArray(oavr_CodePointBuffer$Type, 3); + var$3 = var$2.data; + var$3[0] = oavr_CodePointBuffer$Type_BYTE; + var$3[1] = oavr_CodePointBuffer$Type_CHAR; + var$3[2] = var$1; + oavr_CodePointBuffer$Type_$VALUES = var$2; +}, +oavr_ConsoleErrorListener = $rt_classWithoutFields(oavr_BaseErrorListener), +oavr_ConsoleErrorListener_INSTANCE = null, +oavr_ConsoleErrorListener_syntaxError = ($this, $recognizer, $offendingSymbol, $line, $charPositionInLine, $msg, $e) => { + $recognizer = jl_System_err(); + $offendingSymbol = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($offendingSymbol); + jl_AbstractStringBuilder_append($offendingSymbol, $rt_s(794)); + $offendingSymbol = jl_StringBuilder_append0($offendingSymbol, $line); + jl_AbstractStringBuilder_append($offendingSymbol, $rt_s(92)); + $offendingSymbol = jl_StringBuilder_append0($offendingSymbol, $charPositionInLine); + jl_AbstractStringBuilder_append($offendingSymbol, $rt_s(370)); + jl_AbstractStringBuilder_append($offendingSymbol, $msg); + otcic_JsConsolePrintStream_println($recognizer, jl_AbstractStringBuilder_toString($offendingSymbol)); +}, +oavr_ConsoleErrorListener__clinit_ = () => { + oavr_ConsoleErrorListener_INSTANCE = new oavr_ConsoleErrorListener; +}, +oncipv_Cypher25Parser$UseClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UseClauseContext_getRuleIndex = $this => { + return 5; +}, +oncipv_Cypher25Parser$AlterCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterCommandContext_getRuleIndex = $this => { + return 191; +}, +oncipv_Cypher25Parser$CreateCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateCommandContext_REPLACE = $this => { + return oncip_AstRuleCtx_getToken($this, 222, 0); +}, +oncipv_Cypher25Parser$CreateCommandContext_getRuleIndex = $this => { + return 145; +}, +oncipv_Cypher25Parser$AllocationCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AllocationCommandContext_deallocateDatabaseFromServers = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext), 0); +}, +oncipv_Cypher25Parser$AllocationCommandContext_reallocateDatabases = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ReallocateDatabasesContext), 0); +}, +oncipv_Cypher25Parser$AllocationCommandContext_getRuleIndex = $this => { + return 204; +}, +oncipv_Cypher25Parser$DenyCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DenyCommandContext_getRuleIndex = $this => { + return 194; +}, +oncipv_Cypher25Parser$DropCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropCommandContext_getRuleIndex = $this => { + return 146; +}, +oncipv_Cypher25Parser$EnableServerCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$EnableServerCommandContext_getRuleIndex = $this => { + return 199; +}, +oncipv_Cypher25Parser$GrantCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GrantCommandContext_privilege = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PrivilegeContext), 0); +}, +oncipv_Cypher25Parser$GrantCommandContext_getRuleIndex = $this => { + return 193; +}, +oncipv_Cypher25Parser$RenameCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RenameCommandContext_getRuleIndex = $this => { + return 192; +}, +oncipv_Cypher25Parser$RevokeCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RevokeCommandContext_privilege = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PrivilegeContext), 0); +}, +oncipv_Cypher25Parser$RevokeCommandContext_DENY = $this => { + return oncip_AstRuleCtx_getToken($this, 70, 0); +}, +oncipv_Cypher25Parser$RevokeCommandContext_GRANT = $this => { + return oncip_AstRuleCtx_getToken($this, 115, 0); +}, +oncipv_Cypher25Parser$RevokeCommandContext_getRuleIndex = $this => { + return 195; +}; +let oncipv_Cypher25Parser$ShowCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowCommandContext_getRuleIndex = $this => { + return 147; +}, +oncipv_Cypher25Parser$StartDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StartDatabaseContext_getRuleIndex = $this => { + return 292; +}, +oncipv_Cypher25Parser$StopDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StopDatabaseContext_getRuleIndex = $this => { + return 293; +}, +oncipv_Cypher25Parser$TerminateCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$TerminateCommandContext_getRuleIndex = $this => { + return 154; +}, +oncipv_Cypher25Parser$SingleQueryContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SingleQueryContext_regularQuery = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0); +}, +oncipv_Cypher25Parser$SingleQueryContext_getRuleIndex = $this => { + return 3; +}; +function ong_DiagnosticRecord$Builder() { + jl_Object.call(this); + this.$innerDiagnosticRecord0 = null; +} +let oncipv_Cypher5Parser$UseClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UseClauseContext_getRuleIndex = $this => { + return 6; +}, +oncipv_Cypher5Parser$AlterCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterCommandContext_getRuleIndex = $this => { + return 197; +}, +oncipv_Cypher5Parser$CreateCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateCommandContext_REPLACE = $this => { + return oncip_AstRuleCtx_getToken($this, 228, 0); +}, +oncipv_Cypher5Parser$CreateCommandContext_getRuleIndex = $this => { + return 146; +}, +oncipv_Cypher5Parser$AllocationCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AllocationCommandContext_deallocateDatabaseFromServers = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext), 0); +}, +oncipv_Cypher5Parser$AllocationCommandContext_reallocateDatabases = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ReallocateDatabasesContext), 0); +}, +oncipv_Cypher5Parser$AllocationCommandContext_getRuleIndex = $this => { + return 210; +}, +oncipv_Cypher5Parser$DenyCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DenyCommandContext_getRuleIndex = $this => { + return 200; +}, +oncipv_Cypher5Parser$DropCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DropCommandContext_getRuleIndex = $this => { + return 147; +}, +oncipv_Cypher5Parser$EnableServerCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$EnableServerCommandContext_getRuleIndex = $this => { + return 205; +}, +oncipv_Cypher5Parser$GrantCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GrantCommandContext_privilege = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PrivilegeContext), 0); +}, +oncipv_Cypher5Parser$GrantCommandContext_getRuleIndex = $this => { + return 199; +}, +oncipv_Cypher5Parser$RenameCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RenameCommandContext_getRuleIndex = $this => { + return 198; +}, +oncipv_Cypher5Parser$RevokeCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RevokeCommandContext_privilege = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PrivilegeContext), 0); +}, +oncipv_Cypher5Parser$RevokeCommandContext_DENY = $this => { + return oncip_AstRuleCtx_getToken($this, 74, 0); +}, +oncipv_Cypher5Parser$RevokeCommandContext_GRANT = $this => { + return oncip_AstRuleCtx_getToken($this, 119, 0); +}, +oncipv_Cypher5Parser$RevokeCommandContext_getRuleIndex = $this => { + return 201; +}, +oncipv_Cypher5Parser$ShowCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowCommandContext_getRuleIndex = $this => { + return 148; +}, +oncipv_Cypher5Parser$StartDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StartDatabaseContext_getRuleIndex = $this => { + return 298; +}, +oncipv_Cypher5Parser$StopDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StopDatabaseContext_getRuleIndex = $this => { + return 299; +}, +oncipv_Cypher5Parser$TerminateCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$TerminateCommandContext_getRuleIndex = $this => { + return 155; +}, +oncipv_Cypher5Parser$SingleQueryContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SingleQueryContext_getRuleIndex = $this => { + return 4; +}, +jl_OutOfMemoryError = $rt_classWithoutFields(jl_VirtualMachineError); +function oavrm_Array2DHashSet() { + let a = this; jl_Object.call(a); + a.$comparator0 = null; + a.$buckets0 = null; + a.$n = 0; + a.$currentPrime0 = 0; + a.$threshold2 = 0; + a.$initialCapacity = 0; + a.$initialBucketCapacity = 0; +} +let oavrm_Array2DHashSet_$assertionsDisabled = 0, +oavrm_Array2DHashSet_getOrAddImpl = ($this, $o) => { + let $b, var$3, $bucket, $i, var$6, var$7, $existing; + $b = oavrm_Array2DHashSet_getBucket($this, $o); + var$3 = $this.$buckets0.data; + $bucket = var$3[$b]; + if ($bucket === null) { + $bucket = $rt_createArray(oavra_ATNConfig, $this.$initialBucketCapacity); + $bucket.data[0] = $o; + var$3[$b] = $bucket; + $this.$n = $this.$n + 1 | 0; + return $o; + } + $i = 0; + while (true) { + var$6 = $bucket.data; + var$7 = var$6.length; + if ($i >= var$7) { + var$6 = ju_Arrays_copyOf($bucket, var$7 * 2 | 0); + var$3 = var$6.data; + $this.$buckets0.data[$b] = var$6; + var$3[var$7] = $o; + $this.$n = $this.$n + 1 | 0; + return $o; + } + $existing = var$6[$i]; + if ($existing === null) { + var$6[$i] = $o; + $this.$n = $this.$n + 1 | 0; + return $o; + } + if ($this.$comparator0.$equals0($existing, $o)) + break; + $i = $i + 1 | 0; + } + return $existing; +}, +oavrm_Array2DHashSet_getBucket = ($this, $o) => { + return $this.$comparator0.$hashCode2($o) & ($this.$buckets0.data.length - 1 | 0); +}, +oavrm_Array2DHashSet_expand = $this => { + let var$1, var$2, $newCapacity, $bucket, $old, $newBucketLengths, $oldSize, var$8, var$9, $o, $b, $bucketLength, $newBucket, var$14; + var$1 = $this.$buckets0.data; + $this.$currentPrime0 = $this.$currentPrime0 + 4 | 0; + var$2 = var$1.length; + $newCapacity = var$2 * 2 | 0; + $bucket = $rt_createArray($rt_arraycls(oavra_ATNConfig), $newCapacity); + $old = $bucket.data; + $newBucketLengths = $rt_createIntArray($old.length).data; + $this.$buckets0 = $bucket; + $this.$threshold2 = $newCapacity * 0.75 | 0; + $oldSize = $this.$n; + var$8 = 0; + while (var$8 < var$2) { + a: { + $bucket = var$1[var$8]; + if ($bucket !== null) { + $bucket = $bucket.data; + $newCapacity = $bucket.length; + var$9 = 0; + while (true) { + if (var$9 >= $newCapacity) + break a; + $o = $bucket[var$9]; + if ($o === null) + break; + $b = oavrm_Array2DHashSet_getBucket($this, $o); + $bucketLength = $newBucketLengths[$b]; + if (!$bucketLength) { + $newBucket = $rt_createArray(oavra_ATNConfig, $this.$initialBucketCapacity); + $old[$b] = $newBucket; + } else { + $newBucket = $old[$b]; + var$14 = $newBucket.data.length; + if ($bucketLength == var$14) { + $newBucket = ju_Arrays_copyOf($newBucket, var$14 * 2 | 0); + $old[$b] = $newBucket; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + $newBucket.data[$bucketLength] = $o; + $newBucketLengths[$b] = $newBucketLengths[$b] + 1 | 0; + var$9 = var$9 + 1 | 0; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + var$8 = var$8 + 1 | 0; } - return $re; + if (!oavrm_Array2DHashSet_$assertionsDisabled && $this.$n != $oldSize) { + $o = new jl_AssertionError; + jl_Throwable__init_0($o); + $rt_throw($o); + } +}, +oavrm_Array2DHashSet__clinit_ = () => { + oavrm_Array2DHashSet_$assertionsDisabled = 0; +}, +oavra_ATNConfigSet$AbstractConfigHashSet = $rt_classWithoutFields(oavrm_Array2DHashSet), +oavra_ATNConfigSet$AbstractConfigHashSet__init_ = ($this, $comparator) => { + $this.$n = 0; + $this.$currentPrime0 = 1; + if ($comparator === null) { + oavrm_ObjectEqualityComparator_$callClinit(); + $comparator = oavrm_ObjectEqualityComparator_INSTANCE; + } + $this.$comparator0 = $comparator; + $this.$initialCapacity = 16; + $this.$initialBucketCapacity = 2; + $this.$buckets0 = $rt_createArray($rt_arraycls(oavra_ATNConfig), 16); + $this.$threshold2 = jl_Math_floor(12.0) | 0; +}, +oavra_ATNConfigSet$AbstractConfigHashSet_createBucket = ($this, var$1) => { + return $rt_createArray(oavra_ATNConfig, var$1); +}, +oavra_ATNConfigSet$AbstractConfigHashSet_createBuckets = ($this, var$1) => { + return $rt_createArray($rt_arraycls(oavra_ATNConfig), var$1); +}, +oavra_ATNConfigSet$ConfigHashSet = $rt_classWithoutFields(oavra_ATNConfigSet$AbstractConfigHashSet), +oncipv_Cypher25Parser$GraphReferenceContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GraphReferenceContext_graphReference = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$GraphReferenceContext), 0); +}, +oncipv_Cypher25Parser$GraphReferenceContext_functionInvocation = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$FunctionInvocationContext), 0); +}, +oncipv_Cypher25Parser$GraphReferenceContext_getRuleIndex = $this => { + return 6; +}, +oncipv_Cypher25Parser$AlterAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterAliasContext_aliasName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$AliasNameContext), 0); +}, +oncipv_Cypher25Parser$AlterAliasContext_EXISTS = $this => { + return oncip_AstRuleCtx_getToken($this, 101, 0); +}, +oncipv_Cypher25Parser$AlterAliasContext_alterAliasTarget = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasTargetContext)); +}, +oncipv_Cypher25Parser$AlterAliasContext_alterAliasUser = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasUserContext)); +}, +oncipv_Cypher25Parser$AlterAliasContext_alterAliasPassword = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasPasswordContext)); +}, +oncipv_Cypher25Parser$AlterAliasContext_alterAliasDriver = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasDriverContext)); +}, +oncipv_Cypher25Parser$AlterAliasContext_alterAliasProperties = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasPropertiesContext)); +}, +oncipv_Cypher25Parser$AlterAliasContext_getRuleIndex = $this => { + return 302; +}, +oncipv_Cypher25Parser$AlterCurrentUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterCurrentUserContext_passwordExpression = ($this, $i) => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PasswordExpressionContext), $i); +}, +oncipv_Cypher25Parser$AlterCurrentUserContext_getRuleIndex = $this => { + return 216; +}, +oncipv_Cypher25Parser$AlterDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterDatabaseContext_EXISTS = $this => { + return oncip_AstRuleCtx_getToken($this, 101, 0); +}, +oncipv_Cypher25Parser$AlterDatabaseContext_REMOVE = $this => { + return oncip_AstRuleCtx_getTokens($this, 220); +}, +oncipv_Cypher25Parser$AlterDatabaseContext_symbolicNameString = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); +}, +oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseAccess = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterDatabaseAccessContext)); +}, +oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterDatabaseTopologyContext)); +}, +oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterDatabaseOptionContext)); +}, +oncipv_Cypher25Parser$AlterDatabaseContext_getRuleIndex = $this => { + return 288; +}, +oncipv_Cypher25Parser$AlterServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterServerContext_getRuleIndex = $this => { + return 200; +}, +oncipv_Cypher25Parser$AlterUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterUserContext_userStatus = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$UserStatusContext)); +}, +oncipv_Cypher25Parser$AlterUserContext_homeDatabase = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$HomeDatabaseContext)); +}, +oncipv_Cypher25Parser$AlterUserContext_getRuleIndex = $this => { + return 217; +}, +oncipv_Cypher25Parser$CreateAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateAliasContext_aliasName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$AliasNameContext), 0); +}, +oncipv_Cypher25Parser$CreateAliasContext_aliasTargetName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$AliasTargetNameContext), 0); +}, +oncipv_Cypher25Parser$CreateAliasContext_AT = $this => { + return oncip_AstRuleCtx_getToken($this, 27, 0); +}, +oncipv_Cypher25Parser$CreateAliasContext_stringOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0); +}, +oncipv_Cypher25Parser$CreateAliasContext_mapOrParameter = ($this, $i) => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$MapOrParameterContext), $i); +}, +oncipv_Cypher25Parser$CreateAliasContext_DRIVER = $this => { + return oncip_AstRuleCtx_getToken($this, 82, 0); +}, +oncipv_Cypher25Parser$CreateAliasContext_getRuleIndex = $this => { + return 300; +}, +oncipv_Cypher25Parser$CreateCompositeDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateCompositeDatabaseContext_getRuleIndex = $this => { + return 280; +}; +let oncipv_Cypher25Parser$CreateConstraintContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateConstraintContext_constraintType = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ConstraintTypeContext), 0); +}, +oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$CommandNodePatternContext), 0); +}, +oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$CommandRelPatternContext), 0); +}, +oncipv_Cypher25Parser$CreateConstraintContext_getRuleIndex = $this => { + return 177; +}, +oncipv_Cypher25Parser$CreateDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateDatabaseContext_primaryTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$PrimaryTopologyContext)); +}, +oncipv_Cypher25Parser$CreateDatabaseContext_secondaryTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SecondaryTopologyContext)); +}, +oncipv_Cypher25Parser$CreateDatabaseContext_getRuleIndex = $this => { + return 281; +}, +oncipv_Cypher25Parser$CreateIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateIndexContext_getRuleIndex = $this => { + return 180; +}, +oncipv_Cypher25Parser$CreateRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateRoleContext_getRuleIndex = $this => { + return 207; +}, +oncipv_Cypher25Parser$CreateUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateUserContext_userStatus = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$UserStatusContext)); +}, +oncipv_Cypher25Parser$CreateUserContext_homeDatabase = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$HomeDatabaseContext)); +}, +oncipv_Cypher25Parser$CreateUserContext_getRuleIndex = $this => { + return 213; +}, +oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext_getRuleIndex = $this => { + return 205; +}, +oncipv_Cypher25Parser$ReallocateDatabasesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ReallocateDatabasesContext_getRuleIndex = $this => { + return 206; +}, +oncipv_Cypher25Parser$PrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PrivilegeContext_getRuleIndex = $this => { + return 235; +}, +oncipv_Cypher25Parser$RoleNamesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RoleNamesContext_symbolicNameOrStringParameterList = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext), 0); +}, +oncipv_Cypher25Parser$RoleNamesContext_getRuleIndex = $this => { + return 197; +}, +oncipv_Cypher25Parser$DropAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropAliasContext_getRuleIndex = $this => { + return 301; +}, +oncipv_Cypher25Parser$DropDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropDatabaseContext_getRuleIndex = $this => { + return 286; +}, +oncipv_Cypher25Parser$DropConstraintContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropConstraintContext_EXISTS = $this => { + return oncip_AstRuleCtx_getToken($this, 101, 0); +}, +oncipv_Cypher25Parser$DropConstraintContext_getRuleIndex = $this => { + return 179; +}, +oncipv_Cypher25Parser$DropIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropIndexContext_getRuleIndex = $this => { + return 188; +}, +oncipv_Cypher25Parser$DropRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropRoleContext_getRuleIndex = $this => { + return 208; +}, +oncipv_Cypher25Parser$DropServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropServerContext_getRuleIndex = $this => { + return 202; +}, +oncipv_Cypher25Parser$DropUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropUserContext_getRuleIndex = $this => { + return 214; +}, +oncipv_Cypher25Parser$CommandOptionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CommandOptionsContext_getRuleIndex = $this => { + return 153; +}, +oncipv_Cypher25Parser$StringOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StringOrParameterContext_stringLiteral = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0); +}, +oncipv_Cypher25Parser$StringOrParameterContext_getRuleIndex = $this => { + return 319; +}, +oncipv_Cypher25Parser$RoleTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RoleTokenContext_getRuleIndex = $this => { + return 198; +}, +oncipv_Cypher25Parser$GrantRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GrantRoleContext_getRuleIndex = $this => { + return 211; +}; +let oncipv_Cypher25Parser$RenameRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RenameRoleContext_getRuleIndex = $this => { + return 209; +}, +oncipv_Cypher25Parser$RenameServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RenameServerContext_getRuleIndex = $this => { + return 201; +}, +oncipv_Cypher25Parser$RenameUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RenameUserContext_getRuleIndex = $this => { + return 215; +}, +oncipv_Cypher25Parser$RevokeRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RevokeRoleContext_getRuleIndex = $this => { + return 212; +}, +oncipv_Cypher25Parser$ShowAliasesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowAliasesContext_getRuleIndex = $this => { + return 308; +}, +oncipv_Cypher25Parser$ShowConstraintCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowConstraintCommandContext_getRuleIndex = $this => { + return 160; +}, +oncipv_Cypher25Parser$ShowConstraintAllContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), +oncipv_Cypher25Parser$ShowConstraintAllContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ShowConstraintAllContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ShowConstraintAllContext(); + oncipv_Cypher25Parser$ShowConstraintAllContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ShowConstraintExistContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), +oncipv_Cypher25Parser$ShowConstraintExistContext_showConstraintEntity = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ShowConstraintEntityContext), 0); +}, +oncipv_Cypher25Parser$ShowConstraintExistContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ShowConstraintExistContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ShowConstraintExistContext(); + oncipv_Cypher25Parser$ShowConstraintExistContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ShowConstraintKeyContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), +oncipv_Cypher25Parser$ShowConstraintKeyContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ShowConstraintKeyContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ShowConstraintKeyContext(); + oncipv_Cypher25Parser$ShowConstraintKeyContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ShowConstraintPropTypeContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), +oncipv_Cypher25Parser$ShowConstraintPropTypeContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ShowConstraintPropTypeContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ShowConstraintPropTypeContext(); + oncipv_Cypher25Parser$ShowConstraintPropTypeContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ShowConstraintUniqueContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), +oncipv_Cypher25Parser$ShowConstraintUniqueContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ShowConstraintUniqueContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ShowConstraintUniqueContext(); + oncipv_Cypher25Parser$ShowConstraintUniqueContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ShowCurrentUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowCurrentUserContext_getRuleIndex = $this => { + return 228; +}, +oncipv_Cypher25Parser$ShowDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowDatabaseContext_getRuleIndex = $this => { + return 296; +}, +oncipv_Cypher25Parser$ShowFunctionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowFunctionsContext_getRuleIndex = $this => { + return 165; +}, +oncipv_Cypher25Parser$ShowIndexCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowIndexCommandContext_getRuleIndex = $this => { + return 157; +}, +oncipv_Cypher25Parser$ShowPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowPrivilegesContext_getRuleIndex = $this => { + return 230; +}, +oncipv_Cypher25Parser$ShowProceduresContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowProceduresContext_getRuleIndex = $this => { + return 164; +}, +oncipv_Cypher25Parser$ShowRolePrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowRolePrivilegesContext_getRuleIndex = $this => { + return 231; +}, +oncipv_Cypher25Parser$ShowRolesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowRolesContext_getRuleIndex = $this => { + return 210; +}, +oncipv_Cypher25Parser$ShowServersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowServersContext_getRuleIndex = $this => { + return 203; +}, +oncipv_Cypher25Parser$ShowSettingsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowSettingsContext_getRuleIndex = $this => { + return 171; +}, +oncipv_Cypher25Parser$ShowSupportedPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowSupportedPrivilegesContext_getRuleIndex = $this => { + return 229; +}; +let oncipv_Cypher25Parser$ShowTransactionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowTransactionsContext_getRuleIndex = $this => { + return 169; +}, +oncipv_Cypher25Parser$ShowUserPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowUserPrivilegesContext_getRuleIndex = $this => { + return 232; +}, +oncipv_Cypher25Parser$ShowUsersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowUsersContext_getRuleIndex = $this => { + return 227; +}, +oncipv_Cypher25Parser$WaitClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$WaitClauseContext_getRuleIndex = $this => { + return 294; +}, +oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameContext), 0); +}, +oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_getRuleIndex = $this => { + return 313; +}, +oncipv_Cypher25Parser$TerminateTransactionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$TerminateTransactionsContext_getRuleIndex = $this => { + return 170; +}, +oncipv_Cypher25Parser$ClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ClauseContext_getRuleIndex = $this => { + return 4; +}, +oncipv_Cypher5Parser$GraphReferenceContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GraphReferenceContext_graphReference = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$GraphReferenceContext), 0); +}, +oncipv_Cypher5Parser$GraphReferenceContext_functionInvocation = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$FunctionInvocationContext), 0); +}, +oncipv_Cypher5Parser$GraphReferenceContext_getRuleIndex = $this => { + return 7; +}, +oncipv_Cypher5Parser$AlterAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterAliasContext_aliasName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$AliasNameContext), 0); +}, +oncipv_Cypher5Parser$AlterAliasContext_EXISTS = $this => { + return oncip_AstRuleCtx_getToken($this, 105, 0); +}, +oncipv_Cypher5Parser$AlterAliasContext_alterAliasTarget = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasTargetContext)); +}, +oncipv_Cypher5Parser$AlterAliasContext_alterAliasUser = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasUserContext)); +}, +oncipv_Cypher5Parser$AlterAliasContext_alterAliasPassword = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasPasswordContext)); +}, +oncipv_Cypher5Parser$AlterAliasContext_alterAliasDriver = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasDriverContext)); +}, +oncipv_Cypher5Parser$AlterAliasContext_alterAliasProperties = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasPropertiesContext)); +}, +oncipv_Cypher5Parser$AlterAliasContext_getRuleIndex = $this => { + return 307; +}, +oncipv_Cypher5Parser$AlterCurrentUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterCurrentUserContext_passwordExpression = ($this, $i) => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PasswordExpressionContext), $i); +}, +oncipv_Cypher5Parser$AlterCurrentUserContext_getRuleIndex = $this => { + return 222; +}, +oncipv_Cypher5Parser$AlterDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterDatabaseContext_EXISTS = $this => { + return oncip_AstRuleCtx_getToken($this, 105, 0); +}, +oncipv_Cypher5Parser$AlterDatabaseContext_REMOVE = $this => { + return oncip_AstRuleCtx_getTokens($this, 226); +}, +oncipv_Cypher5Parser$AlterDatabaseContext_symbolicNameString = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); +}, +oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseAccess = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterDatabaseAccessContext)); +}, +oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterDatabaseTopologyContext)); +}, +oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterDatabaseOptionContext)); +}, +oncipv_Cypher5Parser$AlterDatabaseContext_getRuleIndex = $this => { + return 294; +}, +oncipv_Cypher5Parser$AlterServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterServerContext_getRuleIndex = $this => { + return 206; +}, +oncipv_Cypher5Parser$AlterUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterUserContext_userStatus = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$UserStatusContext)); +}, +oncipv_Cypher5Parser$AlterUserContext_homeDatabase = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$HomeDatabaseContext)); +}, +oncipv_Cypher5Parser$AlterUserContext_getRuleIndex = $this => { + return 223; +}, +oncipv_Cypher5Parser$CreateAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateAliasContext_aliasName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$AliasNameContext), 0); +}, +oncipv_Cypher5Parser$CreateAliasContext_databaseName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseNameContext), 0); +}, +oncipv_Cypher5Parser$CreateAliasContext_AT = $this => { + return oncip_AstRuleCtx_getToken($this, 28, 0); +}, +oncipv_Cypher5Parser$CreateAliasContext_stringOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0); +}; +let oncipv_Cypher5Parser$CreateAliasContext_mapOrParameter = ($this, $i) => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$MapOrParameterContext), $i); +}, +oncipv_Cypher5Parser$CreateAliasContext_DRIVER = $this => { + return oncip_AstRuleCtx_getToken($this, 86, 0); +}, +oncipv_Cypher5Parser$CreateAliasContext_getRuleIndex = $this => { + return 305; +}, +oncipv_Cypher5Parser$CreateIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateIndexContext_BTREE = $this => { + return oncip_AstRuleCtx_getToken($this, 38, 0); +}, +oncipv_Cypher5Parser$CreateIndexContext_getRuleIndex = $this => { + return 185; +}, +oncipv_Cypher5Parser$CreateCompositeDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateCompositeDatabaseContext_getRuleIndex = $this => { + return 286; +}, +oncipv_Cypher5Parser$CreateConstraintContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateConstraintContext_constraintType = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ConstraintTypeContext), 0); +}, +oncipv_Cypher5Parser$CreateConstraintContext_ON = $this => { + return oncip_AstRuleCtx_getToken($this, 185, 0); +}, +oncipv_Cypher5Parser$CreateConstraintContext_FOR = $this => { + return oncip_AstRuleCtx_getToken($this, 112, 0); +}, +oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$CommandNodePatternContext), 0); +}, +oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$CommandRelPatternContext), 0); +}, +oncipv_Cypher5Parser$CreateConstraintContext_getRuleIndex = $this => { + return 182; +}, +oncipv_Cypher5Parser$CreateDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateDatabaseContext_primaryTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$PrimaryTopologyContext)); +}, +oncipv_Cypher5Parser$CreateDatabaseContext_secondaryTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SecondaryTopologyContext)); +}, +oncipv_Cypher5Parser$CreateDatabaseContext_getRuleIndex = $this => { + return 287; +}, +oncipv_Cypher5Parser$CreateRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateRoleContext_getRuleIndex = $this => { + return 213; +}, +oncipv_Cypher5Parser$CreateUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateUserContext_userStatus = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$UserStatusContext)); +}, +oncipv_Cypher5Parser$CreateUserContext_homeDatabase = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$HomeDatabaseContext)); +}, +oncipv_Cypher5Parser$CreateUserContext_getRuleIndex = $this => { + return 219; +}, +oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext_getRuleIndex = $this => { + return 211; +}, +oncipv_Cypher5Parser$ReallocateDatabasesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ReallocateDatabasesContext_getRuleIndex = $this => { + return 212; +}, +oncipv_Cypher5Parser$PrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PrivilegeContext_getRuleIndex = $this => { + return 241; +}, +oncipv_Cypher5Parser$RoleNamesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RoleNamesContext_symbolicNameOrStringParameterList = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext), 0); +}, +oncipv_Cypher5Parser$RoleNamesContext_getRuleIndex = $this => { + return 203; +}, +oncipv_Cypher5Parser$DropAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DropAliasContext_getRuleIndex = $this => { + return 306; +}, +oncipv_Cypher5Parser$DropDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DropDatabaseContext_getRuleIndex = $this => { + return 292; +}, +oncipv_Cypher5Parser$DropConstraintContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DropConstraintContext_symbolicNameOrStringParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0); +}, +oncipv_Cypher5Parser$DropConstraintContext_EXISTS = $this => { + return oncip_AstRuleCtx_getToken($this, 105, 0); +}, +oncipv_Cypher5Parser$DropConstraintContext_UNIQUE = $this => { + return oncip_AstRuleCtx_getToken($this, 286, 0); +}, +oncipv_Cypher5Parser$DropConstraintContext_KEY = $this => { + return oncip_AstRuleCtx_getToken($this, 141, 0); +}, +oncipv_Cypher5Parser$DropConstraintContext_getRuleIndex = $this => { + return 184; +}, +oncipv_Cypher5Parser$DropIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DropIndexContext_symbolicNameOrStringParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0); +}, +oncipv_Cypher5Parser$DropIndexContext_getRuleIndex = $this => { + return 194; +}, +oncipv_Cypher5Parser$DropRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DropRoleContext_getRuleIndex = $this => { + return 214; +}, +oncipv_Cypher5Parser$DropServerContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$DropServerContext_getRuleIndex = $this => { + return 208; +}, +oncipv_Cypher5Parser$DropUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DropUserContext_getRuleIndex = $this => { + return 220; +}, +oncipv_Cypher5Parser$CommandOptionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CommandOptionsContext_getRuleIndex = $this => { + return 154; +}, +oncipv_Cypher5Parser$StringOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StringOrParameterContext_stringLiteral = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0); +}, +oncipv_Cypher5Parser$StringOrParameterContext_getRuleIndex = $this => { + return 324; +}, +oncipv_Cypher5Parser$RoleTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RoleTokenContext_getRuleIndex = $this => { + return 204; +}, +oncipv_Cypher5Parser$GrantRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GrantRoleContext_getRuleIndex = $this => { + return 217; +}, +oncipv_Cypher5Parser$RenameRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RenameRoleContext_getRuleIndex = $this => { + return 215; +}, +oncipv_Cypher5Parser$RenameServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RenameServerContext_getRuleIndex = $this => { + return 207; +}, +oncipv_Cypher5Parser$RenameUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RenameUserContext_getRuleIndex = $this => { + return 221; +}, +oncipv_Cypher5Parser$RevokeRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RevokeRoleContext_getRuleIndex = $this => { + return 218; +}, +oncipv_Cypher5Parser$ShowAliasesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowAliasesContext_getRuleIndex = $this => { + return 313; +}, +oncipv_Cypher5Parser$ShowConstraintCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowConstraintCommandContext_getRuleIndex = $this => { + return 162; +}, +oncipv_Cypher5Parser$ShowConstraintMultiContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), +oncipv_Cypher5Parser$ShowConstraintMultiContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ShowConstraintMultiContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ShowConstraintMultiContext(); + oncipv_Cypher5Parser$ShowConstraintMultiContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ShowConstraintUniqueContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), +oncipv_Cypher5Parser$ShowConstraintUniqueContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ShowConstraintUniqueContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ShowConstraintUniqueContext(); + oncipv_Cypher5Parser$ShowConstraintUniqueContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ShowConstraintKeyContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), +oncipv_Cypher5Parser$ShowConstraintKeyContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ShowConstraintKeyContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ShowConstraintKeyContext(); + oncipv_Cypher5Parser$ShowConstraintKeyContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ShowConstraintRelExistContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), +oncipv_Cypher5Parser$ShowConstraintRelExistContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ShowConstraintRelExistContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ShowConstraintRelExistContext(); + oncipv_Cypher5Parser$ShowConstraintRelExistContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ShowConstraintOldExistsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), +oncipv_Cypher5Parser$ShowConstraintOldExistsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ShowConstraintOldExistsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ShowConstraintOldExistsContext(); + oncipv_Cypher5Parser$ShowConstraintOldExistsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), +oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext(); + oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ShowCurrentUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowCurrentUserContext_getRuleIndex = $this => { + return 234; +}, +oncipv_Cypher5Parser$ShowDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowDatabaseContext_getRuleIndex = $this => { + return 302; +}, +oncipv_Cypher5Parser$ShowFunctionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowFunctionsContext_getRuleIndex = $this => { + return 170; +}, +oncipv_Cypher5Parser$ShowIndexCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowIndexCommandContext_showIndexesNoBrief = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ShowIndexesNoBriefContext), 0); +}; +let oncipv_Cypher5Parser$ShowIndexCommandContext_BTREE = $this => { + return oncip_AstRuleCtx_getToken($this, 38, 0); +}, +oncipv_Cypher5Parser$ShowIndexCommandContext_getRuleIndex = $this => { + return 159; +}, +oncipv_Cypher5Parser$ShowPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowPrivilegesContext_getRuleIndex = $this => { + return 236; +}, +oncipv_Cypher5Parser$ShowProceduresContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowProceduresContext_getRuleIndex = $this => { + return 169; +}, +oncipv_Cypher5Parser$ShowRolePrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowRolePrivilegesContext_getRuleIndex = $this => { + return 237; +}, +oncipv_Cypher5Parser$ShowRolesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowRolesContext_getRuleIndex = $this => { + return 216; +}, +oncipv_Cypher5Parser$ShowServersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowServersContext_getRuleIndex = $this => { + return 209; +}, +oncipv_Cypher5Parser$ShowSettingsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowSettingsContext_getRuleIndex = $this => { + return 176; +}, +oncipv_Cypher5Parser$ShowSupportedPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowSupportedPrivilegesContext_getRuleIndex = $this => { + return 235; +}, +oncipv_Cypher5Parser$ShowTransactionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowTransactionsContext_getRuleIndex = $this => { + return 174; +}, +oncipv_Cypher5Parser$ShowUserPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowUserPrivilegesContext_getRuleIndex = $this => { + return 238; +}, +oncipv_Cypher5Parser$ShowUsersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowUsersContext_getRuleIndex = $this => { + return 233; +}, +oncipv_Cypher5Parser$WaitClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$WaitClauseContext_getRuleIndex = $this => { + return 300; +}, +oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameContext), 0); +}, +oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_getRuleIndex = $this => { + return 318; +}, +oncipv_Cypher5Parser$TerminateTransactionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$TerminateTransactionsContext_getRuleIndex = $this => { + return 175; +}, +oncipv_Cypher5Parser$ClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ClauseContext_getRuleIndex = $this => { + return 5; +}, +oavrm_EqualityComparator = $rt_classWithoutFields(0), +oavrm_AbstractEqualityComparator = $rt_classWithoutFields(), +oavra_ATNConfigSet$ConfigEqualityComparator = $rt_classWithoutFields(oavrm_AbstractEqualityComparator), +oavra_ATNConfigSet$ConfigEqualityComparator_INSTANCE = null, +oavra_ATNConfigSet$ConfigEqualityComparator_equals = ($this, var$1, var$2) => { + var$1 = var$1; + return var$1 === var$2 ? 1 : var$1 !== null && var$2 !== null ? (var$1.$state0.$stateNumber == var$2.$state0.$stateNumber && var$1.$alt0 == var$2.$alt0 && var$1.$semanticContext.$equals(var$2.$semanticContext) ? 1 : 0) : 0; }, -oncipv_Cypher25Parser_insertNodeLabelExpression = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$InsertNodeLabelExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 170, 85); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1437); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 44 && $_la != 135) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1438); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1443); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 44 && $_la != 140)) { - oavr_Recognizer_setState($this, 1439); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 44 && $_la != 140) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1440); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1445); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oavra_ATNConfigSet$ConfigEqualityComparator_hashCode = ($this, var$1) => { + var$1 = var$1; + return (31 * ((31 * (217 + var$1.$state0.$stateNumber | 0) | 0) + var$1.$alt0 | 0) | 0) + var$1.$semanticContext.$hashCode() | 0; }, -oncipv_Cypher25Parser_insertRelationshipLabelExpression = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 172, 86); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1446); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 44 && $_la != 135) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1447); - oncipv_Cypher25Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oavra_ATNConfigSet$ConfigEqualityComparator__clinit_ = () => { + oavra_ATNConfigSet$ConfigEqualityComparator_INSTANCE = new oavra_ATNConfigSet$ConfigEqualityComparator; }, -oncipv_Cypher25Parser_expression = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 174, 87); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1449); - oncipv_Cypher25Parser_expression11($this); - oavr_Recognizer_setState($this, 1454); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 186) { - oavr_Recognizer_setState($this, 1450); - oavr_Parser_match($this, 186); - oavr_Recognizer_setState($this, 1451); - oncipv_Cypher25Parser_expression11($this); - oavr_Recognizer_setState($this, 1456); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$FunctionInvocationContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$FunctionInvocationContext_functionName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$FunctionNameContext), 0); }, -oncipv_Cypher25Parser_expression11 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression11Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 176, 88); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1457); - oncipv_Cypher25Parser_expression10($this); - oavr_Recognizer_setState($this, 1462); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 298) { - oavr_Recognizer_setState($this, 1458); - oavr_Parser_match($this, 298); - oavr_Recognizer_setState($this, 1459); - oncipv_Cypher25Parser_expression10($this); - oavr_Recognizer_setState($this, 1464); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$FunctionInvocationContext_functionArgument = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$FunctionArgumentContext)); }, -oncipv_Cypher25Parser_expression10 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression10Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 178, 89); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1465); - oncipv_Cypher25Parser_expression9($this); - oavr_Recognizer_setState($this, 1470); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 20) { - oavr_Recognizer_setState($this, 1466); - oavr_Parser_match($this, 20); - oavr_Recognizer_setState($this, 1467); - oncipv_Cypher25Parser_expression9($this); - oavr_Recognizer_setState($this, 1472); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$FunctionInvocationContext_getRuleIndex = $this => { + return 133; }, -oncipv_Cypher25Parser_expression9 = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression9Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 180, 90); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1476); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 133, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1473); - oavr_Parser_match($this, 175); - } - oavr_Recognizer_setState($this, 1478); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 133, $this.$_ctx); - } - oavr_Recognizer_setState($this, 1479); - oncipv_Cypher25Parser_expression8($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SymbolicAliasNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); }, -oncipv_Cypher25Parser_expression8 = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression8Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 182, 91); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1481); - oncipv_Cypher25Parser_expression7($this); - oavr_Recognizer_setState($this, 1486); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - var$3 = $_la - 96 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17039361, 2164326400)), Long_ZERO)) && $_la != 160) - break; - oavr_Recognizer_setState($this, 1482); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$3 = $_la - 96 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17039361, 2164326400)), Long_ZERO)) && $_la != 160) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1483); - oncipv_Cypher25Parser_expression7($this); - oavr_Recognizer_setState($this, 1488); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SymbolicAliasNameContext_getRuleIndex = $this => { + return 314; }, -oncipv_Cypher25Parser_expression7 = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression7Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 184, 92); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1489); - oncipv_Cypher25Parser_expression6($this); - oavr_Recognizer_setState($this, 1491); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 45 && $_la != 53) { - var$3 = $_la - 95 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1, 257)), Long_ZERO)) && $_la != 216 && $_la != 254) - break e; - } - oavr_Recognizer_setState($this, 1490); - oncipv_Cypher25Parser_comparisonExpression6($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AlterAliasDriverContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterAliasDriverContext_getRuleIndex = $this => { + return 306; }, -oncipv_Cypher25Parser_comparisonExpression6 = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher25Parser$ComparisonExpression6Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 186, 93); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1525); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 142, $this.$_ctx)) { - case 1: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$StringAndListComparisonContext; - var$2 = $re; - oncipv_Cypher25Parser$StringAndListComparisonContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1500); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 53: - var$2 = $re; - oavr_Recognizer_setState($this, 1498); - oavr_Parser_match($this, 53); - break f; - case 95: - var$2 = $re; - oavr_Recognizer_setState($this, 1496); - oavr_Parser_match($this, 95); - oavr_Recognizer_setState($this, 1497); - oavr_Parser_match($this, 295); - break f; - case 127: - var$2 = $re; - oavr_Recognizer_setState($this, 1499); - oavr_Parser_match($this, 127); - break f; - case 216: - var$2 = $re; - oavr_Recognizer_setState($this, 1493); - oavr_Parser_match($this, 216); - break f; - case 254: - var$2 = $re; - oavr_Recognizer_setState($this, 1494); - oavr_Parser_match($this, 254); - oavr_Recognizer_setState($this, 1495); - oavr_Parser_match($this, 295); - break f; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1502); - oncipv_Cypher25Parser_expression6($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$NullComparisonContext; - var$2 = $re; - oncipv_Cypher25Parser$NullComparisonContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1503); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 1505); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { - var$2 = $re; - oavr_Recognizer_setState($this, 1504); - oavr_Parser_match($this, 175); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1507); - oavr_Parser_match($this, 178); - break e; - case 3: - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$TypeComparisonContext; - var$2 = $re; - oncipv_Cypher25Parser$TypeComparisonContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1514); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 45: - var$2 = $re; - oavr_Recognizer_setState($this, 1513); - oavr_Parser_match($this, 45); - break g; - case 135: - var$2 = $re; - oavr_Recognizer_setState($this, 1508); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 1510); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { - var$2 = $re; - oavr_Recognizer_setState($this, 1509); - oavr_Parser_match($this, 175); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1512); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 45) { - var$2 = $re; - if ($_la != 277) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break g; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break g; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1516); - oncipv_Cypher25Parser_type($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$NormalFormComparisonContext; - var$2 = $re; - oncipv_Cypher25Parser$NormalFormComparisonContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1517); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 1519); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { - var$2 = $re; - oavr_Recognizer_setState($this, 1518); - oavr_Parser_match($this, 175); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1522); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 164 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 1521); - oncipv_Cypher25Parser_normalForm($this); - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 1524); - oavr_Parser_match($this, 174); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; +oncipv_Cypher25Parser$AlterAliasPasswordContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterAliasPasswordContext_getRuleIndex = $this => { + return 305; }, -oncipv_Cypher25Parser_normalForm = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NormalFormContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 188, 94); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1527); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 164 | 0; - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else - $this.$_errHandler.$recoverInline($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AlterAliasPropertiesContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher25Parser$AlterAliasPropertiesContext_getRuleIndex = $this => { + return 307; }, -oncipv_Cypher25Parser_expression6 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression6Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 190, 95); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1529); - oncipv_Cypher25Parser_expression5($this); - oavr_Recognizer_setState($this, 1534); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 81 && $_la != 157 && $_la != 193)) { - oavr_Recognizer_setState($this, 1530); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 81 && $_la != 157 && $_la != 193) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1531); - oncipv_Cypher25Parser_expression5($this); - oavr_Recognizer_setState($this, 1536); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AlterAliasTargetContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterAliasTargetContext_aliasTargetName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$AliasTargetNameContext), 0); }, -oncipv_Cypher25Parser_expression5 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression5Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 192, 96); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1537); - oncipv_Cypher25Parser_expression4($this); - oavr_Recognizer_setState($this, 1542); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 78 && $_la != 158 && $_la != 265)) { - oavr_Recognizer_setState($this, 1538); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 78 && $_la != 158 && $_la != 265) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1539); - oncipv_Cypher25Parser_expression4($this); - oavr_Recognizer_setState($this, 1544); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AlterAliasTargetContext_stringOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0); }, -oncipv_Cypher25Parser_expression4 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression4Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 194, 97); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1545); - oncipv_Cypher25Parser_expression3($this); - oavr_Recognizer_setState($this, 1550); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 197) { - oavr_Recognizer_setState($this, 1546); - oavr_Parser_match($this, 197); - oavr_Recognizer_setState($this, 1547); - oncipv_Cypher25Parser_expression3($this); - oavr_Recognizer_setState($this, 1552); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AlterAliasTargetContext_getRuleIndex = $this => { + return 303; +}, +oncipv_Cypher25Parser$AlterAliasUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterAliasUserContext_getRuleIndex = $this => { + return 304; +}, +oncipv_Cypher25Parser$AliasNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0); +}, +oncipv_Cypher25Parser$AliasNameContext_getRuleIndex = $this => { + return 297; +}, +oncipv_Cypher25Parser$PasswordExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PasswordExpressionContext_getRuleIndex = $this => { + return 221; +}, +oncipv_Cypher25Parser$AlterDatabaseAccessContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterDatabaseAccessContext_getRuleIndex = $this => { + return 289; +}, +oncipv_Cypher25Parser$AlterDatabaseOptionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterDatabaseOptionContext_getRuleIndex = $this => { + return 291; +}, +oncipv_Cypher25Parser$AlterDatabaseTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AlterDatabaseTopologyContext_primaryTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$PrimaryTopologyContext)); +}, +oncipv_Cypher25Parser$AlterDatabaseTopologyContext_secondaryTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SecondaryTopologyContext)); +}, +oncipv_Cypher25Parser$AlterDatabaseTopologyContext_getRuleIndex = $this => { + return 290; +}, +oncipv_Cypher25Parser$SymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$EscapedSymbolicNameStringContext), 0); +}, +oncipv_Cypher25Parser$SymbolicNameStringContext_unescapedSymbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext), 0); +}, +oncipv_Cypher25Parser$SymbolicNameStringContext_getRuleIndex = $this => { + return 323; +}, +oncipv_Cypher25Parser$RemoveNamedProviderContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RemoveNamedProviderContext_stringLiteral = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0); +}, +oncipv_Cypher25Parser$RemoveNamedProviderContext_stringListLiteral = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringListLiteralContext), 0); +}, +oncipv_Cypher25Parser$RemoveNamedProviderContext_getRuleIndex = $this => { + return 218; +}, +oncipv_Cypher25Parser$PasswordContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PasswordContext_passwordChangeRequired = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PasswordChangeRequiredContext), 0); +}, +oncipv_Cypher25Parser$PasswordContext_getRuleIndex = $this => { + return 219; +}, +oncipv_Cypher25Parser$PasswordChangeRequiredContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PasswordChangeRequiredContext_getRuleIndex = $this => { + return 222; +}, +oncipv_Cypher25Parser$UserStatusContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UserStatusContext_getRuleIndex = $this => { + return 223; +}, +oncipv_Cypher25Parser$HomeDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$HomeDatabaseContext_getRuleIndex = $this => { + return 224; +}, +oncipv_Cypher25Parser$SetAuthClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SetAuthClauseContext_getRuleIndex = $this => { + return 225; +}, +oncipv_Cypher25Parser$CommandNameExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CommandNameExpressionContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); +}, +oncipv_Cypher25Parser$CommandNameExpressionContext_getRuleIndex = $this => { + return 310; +}, +oncipv_Cypher25Parser$AliasTargetNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AliasTargetNameContext_symbolicAliasNameOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0); +}, +oncipv_Cypher25Parser$AliasTargetNameContext_getRuleIndex = $this => { + return 298; +}, +oncipv_Cypher25Parser$MapOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$MapOrParameterContext_getRuleIndex = $this => { + return 321; +}, +oncipv_Cypher25Parser$DatabaseNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DatabaseNameContext_getRuleIndex = $this => { + return 299; +}, +oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); +}, +oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_getRuleIndex = $this => { + return 309; +}, +oncipv_Cypher25Parser$CommandNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CommandNodePatternContext_getRuleIndex = $this => { + return 175; +}, +oncipv_Cypher25Parser$CommandRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CommandRelPatternContext_getRuleIndex = $this => { + return 176; +}, +oncipv_Cypher25Parser$ConstraintTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ConstraintTypeContext_getRuleIndex = $this => { + return 178; +}, +oncipv_Cypher25Parser$ConstraintTypedContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ConstraintTypeContext), +oncipv_Cypher25Parser$ConstraintTypedContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ConstraintTypedContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ConstraintTypedContext(); + oncipv_Cypher25Parser$ConstraintTypedContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ConstraintIsUniqueContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ConstraintTypeContext), +oncipv_Cypher25Parser$ConstraintIsUniqueContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ConstraintIsUniqueContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ConstraintIsUniqueContext(); + oncipv_Cypher25Parser$ConstraintIsUniqueContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ConstraintKeyContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ConstraintTypeContext), +oncipv_Cypher25Parser$ConstraintKeyContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ConstraintKeyContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ConstraintKeyContext(); + oncipv_Cypher25Parser$ConstraintKeyContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ConstraintIsNotNullContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ConstraintTypeContext), +oncipv_Cypher25Parser$ConstraintIsNotNullContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ConstraintIsNotNullContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ConstraintIsNotNullContext(); + oncipv_Cypher25Parser$ConstraintIsNotNullContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_expression3 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression3Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 196, 98); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1556); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 146, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1554); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 157 && $_la != 193) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1555); - oncipv_Cypher25Parser_expression2($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1553); - oncipv_Cypher25Parser_expression2($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$PrimaryTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PrimaryTopologyContext_getRuleIndex = $this => { + return 282; }, -oncipv_Cypher25Parser_expression2 = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression2Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 198, 99); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1558); - oncipv_Cypher25Parser_expression1($this); - oavr_Recognizer_setState($this, 1562); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 147, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1559); - oncipv_Cypher25Parser_postFix($this); - } - oavr_Recognizer_setState($this, 1564); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 147, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SecondaryTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SecondaryTopologyContext_getRuleIndex = $this => { + return 284; }, -oncipv_Cypher25Parser_postFix = $this => { - let $_localctx, var$2, $re, $_la, var$5, $$je; - $_localctx = new oncipv_Cypher25Parser$PostFixContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 200, 100); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1580); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 150, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$PropertyPostfixContext; - var$2 = $re; - oncipv_Cypher25Parser$PropertyPostfixContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1565); - oncipv_Cypher25Parser_property($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$LabelPostfixContext; - var$2 = $re; - oncipv_Cypher25Parser$LabelPostfixContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1566); - oncipv_Cypher25Parser_labelExpression($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$IndexPostfixContext; - var$2 = $re; - oncipv_Cypher25Parser$IndexPostfixContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1567); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 1568); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1569); - oavr_Parser_match($this, 210); - break e; - case 4: - f: { - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$RangePostfixContext; - var$2 = $re; - oncipv_Cypher25Parser$RangePostfixContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1571); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 1573); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO)) - break g; - } - var$2 = $re; - var$5 = $_la - 64 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4294721535, 4277927934)), Long_ZERO)) - break g; - } - var$2 = $re; - var$5 = $_la - 128 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(1056886783, 4294967294)), Long_ZERO)) - break g; - } - var$2 = $re; - var$5 = $_la - 192 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4277338075, 4294835711)), Long_ZERO)) - break g; - } - var$2 = $re; - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break f; - var$2 = $re; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break f; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1572); - $re.$fromExp = oncipv_Cypher25Parser_expression($this); - } - h: { - i: { - var$2 = $re; - oavr_Recognizer_setState($this, 1575); - oavr_Parser_match($this, 80); - oavr_Recognizer_setState($this, 1577); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO)) - break i; - } - var$2 = $re; - var$5 = $_la - 64 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4294721535, 4277927934)), Long_ZERO)) - break i; - } - var$2 = $re; - var$5 = $_la - 128 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(1056886783, 4294967294)), Long_ZERO)) - break i; - } - var$2 = $re; - var$5 = $_la - 192 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4277338075, 4294835711)), Long_ZERO)) - break i; - } - var$2 = $re; - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break h; - var$2 = $re; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break h; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1576); - $re.$toExp = oncipv_Cypher25Parser_expression($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1579); - oavr_Parser_match($this, 210); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; +oncipv_Cypher25Parser$CreateFulltextIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateFulltextIndexContext_getRuleIndex = $this => { + return 182; }, -oncipv_Cypher25Parser_property = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PropertyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 202, 101); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1582); - oavr_Parser_match($this, 79); - oavr_Recognizer_setState($this, 1583); - oncipv_Cypher25Parser_propertyKeyName($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CreateIndex_Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateIndex_Context_getRuleIndex = $this => { + return 181; }, -oncipv_Cypher25Parser_dynamicProperty = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DynamicPropertyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 204, 102); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1585); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 1586); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1587); - oavr_Parser_match($this, 210); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CreateLookupIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateLookupIndexContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); }, -oncipv_Cypher25Parser_propertyExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PropertyExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 206, 103); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1589); - oncipv_Cypher25Parser_expression1($this); - oavr_Recognizer_setState($this, 1591); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 1590); - oncipv_Cypher25Parser_property($this); - oavr_Recognizer_setState($this, 1593); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 79) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CreateLookupIndexContext_lookupIndexRelPattern = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$LookupIndexRelPatternContext), 0); }, -oncipv_Cypher25Parser_dynamicPropertyExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DynamicPropertyExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 208, 104); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1595); - oncipv_Cypher25Parser_expression1($this); - oavr_Recognizer_setState($this, 1596); - oncipv_Cypher25Parser_dynamicProperty($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CreateLookupIndexContext_getRuleIndex = $this => { + return 185; }, -oncipv_Cypher25Parser_expression1 = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$Expression1Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 210, 105); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1619); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 152, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1599); - oncipv_Cypher25Parser_parameter($this, $rt_s(708)); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1600); - oncipv_Cypher25Parser_caseExpression($this); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 1601); - oncipv_Cypher25Parser_extendedCaseExpression($this); - break e; - case 5: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 1602); - oncipv_Cypher25Parser_countStar($this); - break e; - case 6: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 1603); - oncipv_Cypher25Parser_existsExpression($this); - break e; - case 7: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 1604); - oncipv_Cypher25Parser_countExpression($this); - break e; - case 8: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 1605); - oncipv_Cypher25Parser_collectExpression($this); - break e; - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 1606); - oncipv_Cypher25Parser_mapProjection($this); - break e; - case 10: - oavr_Parser_enterOuterAlt($this, $_localctx, 10); - oavr_Recognizer_setState($this, 1607); - oncipv_Cypher25Parser_listComprehension($this); - break e; - case 11: - oavr_Parser_enterOuterAlt($this, $_localctx, 11); - oavr_Recognizer_setState($this, 1608); - oncipv_Cypher25Parser_listLiteral($this); - break e; - case 12: - oavr_Parser_enterOuterAlt($this, $_localctx, 12); - oavr_Recognizer_setState($this, 1609); - oncipv_Cypher25Parser_patternComprehension($this); - break e; - case 13: - oavr_Parser_enterOuterAlt($this, $_localctx, 13); - oavr_Recognizer_setState($this, 1610); - oncipv_Cypher25Parser_reduceExpression($this); - break e; - case 14: - oavr_Parser_enterOuterAlt($this, $_localctx, 14); - oavr_Recognizer_setState($this, 1611); - oncipv_Cypher25Parser_listItemsPredicate($this); - break e; - case 15: - oavr_Parser_enterOuterAlt($this, $_localctx, 15); - oavr_Recognizer_setState($this, 1612); - oncipv_Cypher25Parser_normalizeFunction($this); - break e; - case 16: - oavr_Parser_enterOuterAlt($this, $_localctx, 16); - oavr_Recognizer_setState($this, 1613); - oncipv_Cypher25Parser_trimFunction($this); - break e; - case 17: - oavr_Parser_enterOuterAlt($this, $_localctx, 17); - oavr_Recognizer_setState($this, 1614); - oncipv_Cypher25Parser_patternExpression($this); - break e; - case 18: - oavr_Parser_enterOuterAlt($this, $_localctx, 18); - oavr_Recognizer_setState($this, 1615); - oncipv_Cypher25Parser_shortestPathExpression($this); - break e; - case 19: - oavr_Parser_enterOuterAlt($this, $_localctx, 19); - oavr_Recognizer_setState($this, 1616); - oncipv_Cypher25Parser_parenthesizedExpression($this); - break e; - case 20: - oavr_Parser_enterOuterAlt($this, $_localctx, 20); - oavr_Recognizer_setState($this, 1617); - oncipv_Cypher25Parser_functionInvocation($this); - break e; - case 21: - oavr_Parser_enterOuterAlt($this, $_localctx, 21); - oavr_Recognizer_setState($this, 1618); - oncipv_Cypher25Parser_variable($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1598); - oncipv_Cypher25Parser_literal($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DatabasePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DatabasePrivilegeContext_userQualifier = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$UserQualifierContext), 0); }, -oncipv_Cypher25Parser_literal = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 212, 106); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1630); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 4: - case 5: - case 6: - case 7: - case 157: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$NummericLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$NummericLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1621); - oncipv_Cypher25Parser_numberLiteral($this); - break e; - case 8: - case 9: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$StringsLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$StringsLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1622); - oncipv_Cypher25Parser_stringLiteral($this); - break e; - case 104: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$BooleanLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$BooleanLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 1625); - oavr_Parser_match($this, 104); - break e; - case 130: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$KeywordLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$KeywordLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 1626); - oavr_Parser_match($this, 130); - break e; - case 131: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$KeywordLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$KeywordLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 7); - oavr_Recognizer_setState($this, 1627); - oavr_Parser_match($this, 131); - break e; - case 143: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$OtherLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$OtherLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1623); - oncipv_Cypher25Parser_map($this); - break e; - case 163: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$KeywordLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$KeywordLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 8); - oavr_Recognizer_setState($this, 1628); - oavr_Parser_match($this, 163); - break e; - case 178: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$KeywordLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$KeywordLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 9); - oavr_Recognizer_setState($this, 1629); - oavr_Parser_match($this, 178); - break e; - case 275: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$BooleanLiteralContext; - var$2 = $re; - oncipv_Cypher25Parser$BooleanLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1624); - oavr_Parser_match($this, 275); - break e; - default: - } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; +oncipv_Cypher25Parser$DatabasePrivilegeContext_getRuleIndex = $this => { + return 252; }, -oncipv_Cypher25Parser_caseExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CaseExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 214, 107); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1632); - oavr_Parser_match($this, 40); - oavr_Recognizer_setState($this, 1634); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 1633); - oncipv_Cypher25Parser_caseAlternative($this); - oavr_Recognizer_setState($this, 1636); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 293) - continue; - else - break; - } - oavr_Recognizer_setState($this, 1640); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 92) { - oavr_Recognizer_setState($this, 1638); - oavr_Parser_match($this, 92); - oavr_Recognizer_setState($this, 1639); - oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1642); - oavr_Parser_match($this, 94); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DbmsPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DbmsPrivilegeContext_getRuleIndex = $this => { + return 253; }, -oncipv_Cypher25Parser_caseAlternative = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CaseAlternativeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 216, 108); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1644); - oavr_Parser_match($this, 293); - oavr_Recognizer_setState($this, 1645); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1646); - oavr_Parser_match($this, 263); - oavr_Recognizer_setState($this, 1647); - oncipv_Cypher25Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AllPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AllPrivilegeContext_allPrivilegeTarget = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$AllPrivilegeTargetContext), 0); }, -oncipv_Cypher25Parser_extendedCaseExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ExtendedCaseExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 218, 109); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1649); - oavr_Parser_match($this, 40); - oavr_Recognizer_setState($this, 1650); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1652); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 1651); - oncipv_Cypher25Parser_extendedCaseAlternative($this); - oavr_Recognizer_setState($this, 1654); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 293) - continue; - else - break; - } - oavr_Recognizer_setState($this, 1658); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 92) { - oavr_Recognizer_setState($this, 1656); - oavr_Parser_match($this, 92); - oavr_Recognizer_setState($this, 1657); - $_localctx.$elseExp0 = oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1660); - oavr_Parser_match($this, 94); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AllPrivilegeContext_getRuleIndex = $this => { + return 236; }, -oncipv_Cypher25Parser_extendedCaseAlternative = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ExtendedCaseAlternativeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 220, 110); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1662); - oavr_Parser_match($this, 293); - oavr_Recognizer_setState($this, 1663); - oncipv_Cypher25Parser_extendedWhen($this); - oavr_Recognizer_setState($this, 1668); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 1664); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1665); - oncipv_Cypher25Parser_extendedWhen($this); - oavr_Recognizer_setState($this, 1670); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 1671); - oavr_Parser_match($this, 263); - oavr_Recognizer_setState($this, 1672); - oncipv_Cypher25Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CreatePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreatePrivilegeContext_databaseScope = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DatabaseScopeContext), 0); +}, +oncipv_Cypher25Parser$CreatePrivilegeContext_actionForDBMS = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ActionForDBMSContext), 0); +}, +oncipv_Cypher25Parser$CreatePrivilegeContext_getRuleIndex = $this => { + return 239; +}, +oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext_getRuleIndex = $this => { + return 269; +}, +oncipv_Cypher25Parser$DropPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DropPrivilegeContext_databaseScope = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DatabaseScopeContext), 0); }, -oncipv_Cypher25Parser_extendedWhen = $this => { - let $_localctx, var$2, $re, $_la, var$5, $$je; - $_localctx = new oncipv_Cypher25Parser$ExtendedWhenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 222, 111); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1707); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 165, $this.$_ctx)) { - case 1: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$WhenStringOrListContext; - var$2 = $re; - oncipv_Cypher25Parser$WhenStringOrListContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1679); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 95: - var$2 = $re; - oavr_Recognizer_setState($this, 1677); - oavr_Parser_match($this, 95); - oavr_Recognizer_setState($this, 1678); - oavr_Parser_match($this, 295); - break f; - case 216: - var$2 = $re; - oavr_Recognizer_setState($this, 1674); - oavr_Parser_match($this, 216); - break f; - case 254: - var$2 = $re; - oavr_Recognizer_setState($this, 1675); - oavr_Parser_match($this, 254); - oavr_Recognizer_setState($this, 1676); - oavr_Parser_match($this, 295); - break f; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1681); - oncipv_Cypher25Parser_expression6($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$WhenNullContext; - var$2 = $re; - oncipv_Cypher25Parser$WhenNullContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1682); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 1684); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { - var$2 = $re; - oavr_Recognizer_setState($this, 1683); - oavr_Parser_match($this, 175); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1686); - oavr_Parser_match($this, 178); - break e; - case 3: - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$WhenTypeContext; - var$2 = $re; - oncipv_Cypher25Parser$WhenTypeContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1693); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 45: - var$2 = $re; - oavr_Recognizer_setState($this, 1692); - oavr_Parser_match($this, 45); - break g; - case 135: - var$2 = $re; - oavr_Recognizer_setState($this, 1687); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 1689); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { - var$2 = $re; - oavr_Recognizer_setState($this, 1688); - oavr_Parser_match($this, 175); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1691); - oavr_Parser_match($this, 277); - break g; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1695); - oncipv_Cypher25Parser_type($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$WhenFormContext; - var$2 = $re; - oncipv_Cypher25Parser$WhenFormContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1696); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 1698); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { - var$2 = $re; - oavr_Recognizer_setState($this, 1697); - oavr_Parser_match($this, 175); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1701); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 164 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 1700); - oncipv_Cypher25Parser_normalForm($this); - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 1703); - oavr_Parser_match($this, 174); - break e; - case 5: - h: { - i: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$WhenComparatorContext; - var$2 = $re; - oncipv_Cypher25Parser$WhenComparatorContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 1704); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$5 = $_la - 96 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(17039361, 2164326400)), Long_ZERO)) - break i; - } - var$2 = $re; - if ($_la != 160) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break h; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1705); - oncipv_Cypher25Parser_expression7($this); - break e; - case 6: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$WhenEqualsContext; - var$2 = $re; - oncipv_Cypher25Parser$WhenEqualsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 1706); - oncipv_Cypher25Parser_expression($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; +oncipv_Cypher25Parser$DropPrivilegeContext_getRuleIndex = $this => { + return 245; }, -oncipv_Cypher25Parser_listComprehension = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ListComprehensionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 224, 112); - a: { - b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1709); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 1710); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1711); - oavr_Parser_match($this, 127); - oavr_Recognizer_setState($this, 1712); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1723); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 168, $this.$_ctx)) { - case 1: - break f; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1721); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 294) - break e; - oavr_Recognizer_setState($this, 1719); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 1720); - $_localctx.$whereExp = oncipv_Cypher25Parser_expression($this); - break e; - } - oavr_Recognizer_setState($this, 1715); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 1713); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 1714); - $_localctx.$whereExp = oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1717); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 1718); - $_localctx.$barExp = oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1725); - oavr_Parser_match($this, 210); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LoadPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher25Parser$LoadPrivilegeContext_stringOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0); }, -oncipv_Cypher25Parser_patternComprehension = $this => { - let $_localctx, $_la, var$3, var$4, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PatternComprehensionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 226, 113); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1727); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 1731); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758095360, 4294938623)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294717439, 4277927934)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294967294)), Long_ZERO))) { - var$4 = $_la - 192 | 0; - if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(4277338073, 4294835711)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 1728); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1729); - oavr_Parser_match($this, 96); - } - oavr_Recognizer_setState($this, 1733); - oncipv_Cypher25Parser_pathPatternNonEmpty($this); - oavr_Recognizer_setState($this, 1736); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 1734); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 1735); - $_localctx.$whereExp1 = oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1738); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 1739); - $_localctx.$barExp0 = oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1740); - oavr_Parser_match($this, 210); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LoadPrivilegeContext_getRuleIndex = $this => { + return 246; }, -oncipv_Cypher25Parser_reduceExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ReduceExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 228, 114); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1742); - oavr_Parser_match($this, 214); - oavr_Recognizer_setState($this, 1743); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1744); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1745); - oavr_Parser_match($this, 96); - oavr_Recognizer_setState($this, 1746); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1747); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1748); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1749); - oavr_Parser_match($this, 127); - oavr_Recognizer_setState($this, 1750); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1751); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 1752); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1753); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext_getRuleIndex = $this => { + return 268; }, -oncipv_Cypher25Parser_listItemsPredicate = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ListItemsPredicateContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 230, 115); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1755); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 21 && $_la != 172 && $_la != 251) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1756); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1757); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1758); - oavr_Parser_match($this, 127); - oavr_Recognizer_setState($this, 1759); - $_localctx.$inExp0 = oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1762); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 1760); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 1761); - $_localctx.$whereExp4 = oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1764); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$RemovePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RemovePrivilegeContext_getRuleIndex = $this => { + return 250; }, -oncipv_Cypher25Parser_normalizeFunction = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NormalizeFunctionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 232, 116); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1766); - oavr_Parser_match($this, 173); - oavr_Recognizer_setState($this, 1767); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1768); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1771); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 46) { - oavr_Recognizer_setState($this, 1769); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1770); - oncipv_Cypher25Parser_normalForm($this); - } - oavr_Recognizer_setState($this, 1773); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SetPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SetPrivilegeContext_getRuleIndex = $this => { + return 248; }, -oncipv_Cypher25Parser_trimFunction = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$TrimFunctionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 234, 117); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1775); - oavr_Parser_match($this, 274); - oavr_Recognizer_setState($this, 1776); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1784); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 175, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - f: { - oavr_Recognizer_setState($this, 1778); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 173, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1777); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 34 && $_la != 145 && $_la != 270) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - g: { - oavr_Recognizer_setState($this, 1781); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 174, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 1780); - $_localctx.$trimCharacterString = oncipv_Cypher25Parser_expression($this); - } - oavr_Recognizer_setState($this, 1783); - oavr_Parser_match($this, 110); - } - oavr_Recognizer_setState($this, 1786); - $_localctx.$trimSource0 = oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1787); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ShowPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowPrivilegeContext_databaseScope = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DatabaseScopeContext), 0); }, -oncipv_Cypher25Parser_patternExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PatternExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 236, 118); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1789); - oncipv_Cypher25Parser_pathPatternNonEmpty($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ShowPrivilegeContext_getRuleIndex = $this => { + return 247; }, -oncipv_Cypher25Parser_shortestPathExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShortestPathExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 238, 119); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1791); - oncipv_Cypher25Parser_shortestPathPattern($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$WritePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$WritePrivilegeContext_getRuleIndex = $this => { + return 251; }, -oncipv_Cypher25Parser_parenthesizedExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ParenthesizedExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 240, 120); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1793); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1794); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1795); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext_getRuleIndex = $this => { + return 311; }, -oncipv_Cypher25Parser_mapProjection = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$MapProjectionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 242, 121); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1797); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 1798); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 1807); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758095360, 4294938623)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294750207, 4277927934)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294967294)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338073, 4294835711)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 1799); - oncipv_Cypher25Parser_mapProjectionElement($this); - oavr_Recognizer_setState($this, 1804); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 46) - break e; - oavr_Recognizer_setState($this, 1800); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1801); - oncipv_Cypher25Parser_mapProjectionElement($this); - oavr_Recognizer_setState($this, 1806); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1809); - oavr_Parser_match($this, 211); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AliasActionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AliasActionContext_getRuleIndex = $this => { + return 287; +}, +oncipv_Cypher25Parser$StringLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StringLiteralContext_getRuleIndex = $this => { + return 317; }; -let oncipv_Cypher25Parser_mapProjectionElement = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$MapProjectionElementContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 244, 122); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1819); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 178, $this.$_ctx)) { - case 1: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1811); - oncipv_Cypher25Parser_propertyKeyName($this); - oavr_Recognizer_setState($this, 1812); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 1813); - oncipv_Cypher25Parser_expression($this); - break e; - case 2: - break; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1816); - oncipv_Cypher25Parser_variable($this); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 1817); - oavr_Parser_match($this, 79); - oavr_Recognizer_setState($this, 1818); - oavr_Parser_match($this, 265); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1815); - oncipv_Cypher25Parser_property($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +function oncipv_Cypher25Parser$ParameterContext() { + oncip_AstRuleCtx.call(this); + this.$paramType1 = null; +} +let oncipv_Cypher25Parser$ParameterContext_getRuleIndex = $this => { + return 131; +}, +oncipv_Cypher25Parser$UserNamesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UserNamesContext_getRuleIndex = $this => { + return 196; +}, +oncipv_Cypher25Parser$ShowCommandYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowCommandYieldContext_getRuleIndex = $this => { + return 148; +}, +oncipv_Cypher25Parser$ShowConstraintEntityContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowConstraintEntityContext_getRuleIndex = $this => { + return 161; +}, +oncipv_Cypher25Parser$NodeEntityContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintEntityContext), +oncipv_Cypher25Parser$NodeEntityContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$NodeEntityContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$NodeEntityContext(); + oncipv_Cypher25Parser$NodeEntityContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$RelEntityContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintEntityContext), +oncipv_Cypher25Parser$RelEntityContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$RelEntityContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$RelEntityContext(); + oncipv_Cypher25Parser$RelEntityContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ShowConstraintsEndContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowConstraintsEndContext_getRuleIndex = $this => { + return 163; +}, +oncipv_Cypher25Parser$ConstraintExistTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ConstraintExistTypeContext_getRuleIndex = $this => { + return 162; +}, +oncipv_Cypher25Parser$ShowFunctionsTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowFunctionsTypeContext_getRuleIndex = $this => { + return 168; +}, +oncipv_Cypher25Parser$FunctionTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$FunctionTokenContext_getRuleIndex = $this => { + return 166; +}, +oncipv_Cypher25Parser$ExecutableByContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ExecutableByContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); +}, +oncipv_Cypher25Parser$ExecutableByContext_getRuleIndex = $this => { + return 167; +}, +oncipv_Cypher25Parser$ComposableCommandClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ComposableCommandClausesContext_getRuleIndex = $this => { + return 155; +}, +oncipv_Cypher25Parser$ShowIndexTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowIndexTypeContext_getRuleIndex = $this => { + return 158; +}, +oncipv_Cypher25Parser$ShowIndexesEndContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShowIndexesEndContext_getRuleIndex = $this => { + return 159; +}, +oncipv_Cypher25Parser$PrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PrivilegeTokenContext_getRuleIndex = $this => { + return 234; +}, +oncipv_Cypher25Parser$PrivilegeAsCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PrivilegeAsCommandContext_getRuleIndex = $this => { + return 233; +}, +oncipv_Cypher25Parser$SettingTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SettingTokenContext_getRuleIndex = $this => { + return 172; +}, +oncipv_Cypher25Parser$NamesAndClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NamesAndClausesContext_getRuleIndex = $this => { + return 173; +}, +oncipv_Cypher25Parser$TransactionTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$TransactionTokenContext_getRuleIndex = $this => { + return 259; +}, +oncipv_Cypher25Parser$SecondsTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SecondsTokenContext_getRuleIndex = $this => { + return 295; +}, +oncipv_Cypher25Parser$StringsOrExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StringsOrExpressionContext_getRuleIndex = $this => { + return 174; +}, +oncipv_Cypher25Parser$FinishClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$FinishClauseContext_getRuleIndex = $this => { + return 7; +}, +oncipv_Cypher25Parser$ReturnClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ReturnClauseContext_getRuleIndex = $this => { + return 8; +}, +oncipv_Cypher25Parser$CreateClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateClauseContext_getRuleIndex = $this => { + return 20; +}; +let oncipv_Cypher25Parser$InsertClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$InsertClauseContext_getRuleIndex = $this => { + return 21; }, -oncipv_Cypher25Parser_countStar = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CountStarContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 246, 123); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1821); - oavr_Parser_match($this, 56); - oavr_Recognizer_setState($this, 1822); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1823); - oavr_Parser_match($this, 265); - oavr_Recognizer_setState($this, 1824); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DeleteClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DeleteClauseContext_getRuleIndex = $this => { + return 26; }, -oncipv_Cypher25Parser_existsExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ExistsExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 248, 124); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1826); - oavr_Parser_match($this, 101); - oavr_Recognizer_setState($this, 1827); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 1836); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 181, $this.$_ctx)) { - case 1: - break; - case 2: - f: { - oavr_Recognizer_setState($this, 1830); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 179, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1829); - oncipv_Cypher25Parser_matchMode($this); - } - oavr_Recognizer_setState($this, 1832); - oncipv_Cypher25Parser_patternList($this); - oavr_Recognizer_setState($this, 1834); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 294) - break e; - oavr_Recognizer_setState($this, 1833); - oncipv_Cypher25Parser_whereClause($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 1828); - oncipv_Cypher25Parser_regularQuery($this); - } - oavr_Recognizer_setState($this, 1838); - oavr_Parser_match($this, 211); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SetClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SetClauseContext_getRuleIndex = $this => { + return 22; }, -oncipv_Cypher25Parser_countExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CountExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 250, 125); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1840); - oavr_Parser_match($this, 56); - oavr_Recognizer_setState($this, 1841); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 1850); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 184, $this.$_ctx)) { - case 1: - break; - case 2: - f: { - oavr_Recognizer_setState($this, 1844); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 182, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1843); - oncipv_Cypher25Parser_matchMode($this); - } - oavr_Recognizer_setState($this, 1846); - oncipv_Cypher25Parser_patternList($this); - oavr_Recognizer_setState($this, 1848); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 294) - break e; - oavr_Recognizer_setState($this, 1847); - oncipv_Cypher25Parser_whereClause($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 1842); - oncipv_Cypher25Parser_regularQuery($this); - } - oavr_Recognizer_setState($this, 1852); - oavr_Parser_match($this, 211); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$RemoveClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RemoveClauseContext_getRuleIndex = $this => { + return 24; }, -oncipv_Cypher25Parser_collectExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CollectExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 252, 126); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1854); - oavr_Parser_match($this, 43); - oavr_Recognizer_setState($this, 1855); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 1856); - oncipv_Cypher25Parser_regularQuery($this); - oavr_Recognizer_setState($this, 1857); - oavr_Parser_match($this, 211); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$MatchClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$MatchClauseContext_getRuleIndex = $this => { + return 27; }, -oncipv_Cypher25Parser_numberLiteral = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NumberLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 254, 127); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1860); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 157) { - oavr_Recognizer_setState($this, 1859); - oavr_Parser_match($this, 157); - } - oavr_Recognizer_setState($this, 1862); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(240)), Long_ZERO)) { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else - $this.$_errHandler.$recoverInline($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$MergeClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$MergeClauseContext_getRuleIndex = $this => { + return 30; }, -oncipv_Cypher25Parser_signedIntegerLiteral = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SignedIntegerLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 256, 128); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1865); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 157) { - oavr_Recognizer_setState($this, 1864); - oavr_Parser_match($this, 157); - } - oavr_Recognizer_setState($this, 1867); - oavr_Parser_match($this, 5); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$WithClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$WithClauseContext_getRuleIndex = $this => { + return 19; }, -oncipv_Cypher25Parser_listLiteral = $this => { - let $_localctx, $_la, var$3, var$4, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ListLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 258, 129); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1869); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 1878); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294721535, 4277927934)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1056886783, 4294967294)), Long_ZERO))) { - var$4 = $_la - 192 | 0; - if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(4277338075, 4294835711)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 1870); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1875); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 46) - break e; - oavr_Recognizer_setState($this, 1871); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1872); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 1877); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1880); - oavr_Parser_match($this, 210); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$UnwindClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UnwindClauseContext_getRuleIndex = $this => { + return 32; }, -oncipv_Cypher25Parser_propertyKeyName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PropertyKeyNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 260, 130); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1882); - oncipv_Cypher25Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CallClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CallClauseContext_YIELD = $this => { + return oncip_AstRuleCtx_getToken($this, 299, 0); }, -oncipv_Cypher25Parser_parameter = ($this, $paramType) => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - $_localctx.$paramType1 = $paramType; - oavr_Parser_enterRule($this, $_localctx, 262, 131); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1884); - oavr_Parser_match($this, 76); - oavr_Recognizer_setState($this, 1885); - oncipv_Cypher25Parser_parameterName($this, $paramType); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $paramType = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $paramType = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($paramType); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CallClauseContext_getRuleIndex = $this => { + return 33; }, -oncipv_Cypher25Parser_parameterName = ($this, $paramType) => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ParameterNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - $_localctx.$paramType = $paramType; - oavr_Parser_enterRule($this, $_localctx, 264, 132); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1891); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 5: - oavr_Recognizer_setState($this, 1888); - oavr_Parser_match($this, 5); - break e; - case 6: - case 8: - case 9: - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - case 7: - oavr_Recognizer_setState($this, 1889); - oavr_Parser_match($this, 7); - break e; - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Recognizer_setState($this, 1887); - oncipv_Cypher25Parser_symbolicNameString($this); - break e; - case 303: - oavr_Recognizer_setState($this, 1890); - oavr_Parser_match($this, 303); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $paramType = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $paramType = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($paramType); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SubqueryClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SubqueryClauseContext_regularQuery = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0); +}, +oncipv_Cypher25Parser$SubqueryClauseContext_OPTIONAL = $this => { + return oncip_AstRuleCtx_getToken($this, 183, 0); +}, +oncipv_Cypher25Parser$SubqueryClauseContext_subqueryInTransactionsParameters = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext), 0); +}, +oncipv_Cypher25Parser$SubqueryClauseContext_getRuleIndex = $this => { + return 39; +}, +oncipv_Cypher25Parser$LoadCSVClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LoadCSVClauseContext_getRuleIndex = $this => { + return 37; +}, +oncipv_Cypher25Parser$ForeachClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ForeachClauseContext_getRuleIndex = $this => { + return 38; +}, +oncipv_Cypher25Parser$OrderBySkipLimitClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$OrderBySkipLimitClauseContext_getRuleIndex = $this => { + return 45; +}, +oncipv_Cypher5Parser$FunctionInvocationContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$FunctionInvocationContext_functionName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$FunctionNameContext), 0); +}, +oncipv_Cypher5Parser$FunctionInvocationContext_functionArgument = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$FunctionArgumentContext)); +}, +oncipv_Cypher5Parser$FunctionInvocationContext_getRuleIndex = $this => { + return 134; +}, +oncipv_Cypher5Parser$SymbolicAliasNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); +}, +oncipv_Cypher5Parser$SymbolicAliasNameContext_getRuleIndex = $this => { + return 319; +}, +oncipv_Cypher5Parser$AlterAliasDriverContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterAliasDriverContext_getRuleIndex = $this => { + return 311; +}, +oncipv_Cypher5Parser$AlterAliasPasswordContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterAliasPasswordContext_getRuleIndex = $this => { + return 310; +}, +oncipv_Cypher5Parser$AlterAliasPropertiesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterAliasPropertiesContext_getRuleIndex = $this => { + return 312; +}, +oncipv_Cypher5Parser$AlterAliasTargetContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterAliasTargetContext_databaseName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseNameContext), 0); +}, +oncipv_Cypher5Parser$AlterAliasTargetContext_stringOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0); +}, +oncipv_Cypher5Parser$AlterAliasTargetContext_getRuleIndex = $this => { + return 308; +}, +oncipv_Cypher5Parser$AlterAliasUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterAliasUserContext_getRuleIndex = $this => { + return 309; +}, +oncipv_Cypher5Parser$AliasNameContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$AliasNameContext_symbolicAliasNameOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0); +}, +oncipv_Cypher5Parser$AliasNameContext_getRuleIndex = $this => { + return 303; +}, +oncipv_Cypher5Parser$PasswordExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PasswordExpressionContext_getRuleIndex = $this => { + return 227; +}, +oncipv_Cypher5Parser$AlterDatabaseAccessContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterDatabaseAccessContext_getRuleIndex = $this => { + return 295; +}, +oncipv_Cypher5Parser$AlterDatabaseOptionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterDatabaseOptionContext_getRuleIndex = $this => { + return 297; +}, +oncipv_Cypher5Parser$AlterDatabaseTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AlterDatabaseTopologyContext_primaryTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$PrimaryTopologyContext)); +}, +oncipv_Cypher5Parser$AlterDatabaseTopologyContext_secondaryTopology = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SecondaryTopologyContext)); +}, +oncipv_Cypher5Parser$AlterDatabaseTopologyContext_getRuleIndex = $this => { + return 296; +}, +oncipv_Cypher5Parser$SymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$EscapedSymbolicNameStringContext), 0); +}, +oncipv_Cypher5Parser$SymbolicNameStringContext_unescapedSymbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext), 0); +}, +oncipv_Cypher5Parser$SymbolicNameStringContext_getRuleIndex = $this => { + return 331; +}, +oncipv_Cypher5Parser$RemoveNamedProviderContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RemoveNamedProviderContext_stringLiteral = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0); +}, +oncipv_Cypher5Parser$RemoveNamedProviderContext_stringListLiteral = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringListLiteralContext), 0); +}, +oncipv_Cypher5Parser$RemoveNamedProviderContext_getRuleIndex = $this => { + return 224; +}, +oncipv_Cypher5Parser$PasswordContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PasswordContext_passwordChangeRequired = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PasswordChangeRequiredContext), 0); +}, +oncipv_Cypher5Parser$PasswordContext_getRuleIndex = $this => { + return 225; +}, +oncipv_Cypher5Parser$PasswordChangeRequiredContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PasswordChangeRequiredContext_getRuleIndex = $this => { + return 228; +}, +oncipv_Cypher5Parser$UserStatusContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UserStatusContext_getRuleIndex = $this => { + return 229; +}, +oncipv_Cypher5Parser$HomeDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$HomeDatabaseContext_getRuleIndex = $this => { + return 230; }, -oncipv_Cypher25Parser_functionInvocation = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$FunctionInvocationContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 266, 133); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1893); - oncipv_Cypher25Parser_functionName($this); - oavr_Recognizer_setState($this, 1894); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 1896); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 190, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1895); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 77) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - f: { - oavr_Recognizer_setState($this, 1906); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758096368, 4294938623)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294721535, 4277927934)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1056886783, 4294967294)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338075, 4294835711)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break f; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break f; - } - } - } - } - oavr_Recognizer_setState($this, 1898); - oncipv_Cypher25Parser_functionArgument($this); - oavr_Recognizer_setState($this, 1903); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 46) - break f; - oavr_Recognizer_setState($this, 1899); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1900); - oncipv_Cypher25Parser_functionArgument($this); - oavr_Recognizer_setState($this, 1905); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1908); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$SetAuthClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SetAuthClauseContext_getRuleIndex = $this => { + return 231; }, -oncipv_Cypher25Parser_functionArgument = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$FunctionArgumentContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 268, 134); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1910); - oncipv_Cypher25Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$CommandNameExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CommandNameExpressionContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); }, -oncipv_Cypher25Parser_functionName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$FunctionNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 270, 135); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1912); - oncipv_Cypher25Parser_namespace($this); - oavr_Recognizer_setState($this, 1913); - oncipv_Cypher25Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$CommandNameExpressionContext_getRuleIndex = $this => { + return 315; }, -oncipv_Cypher25Parser_namespace = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NamespaceContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 272, 136); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1920); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 193, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1915); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1916); - oavr_Parser_match($this, 79); - } - oavr_Recognizer_setState($this, 1922); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 193, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$DatabaseNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DatabaseNameContext_symbolicAliasNameOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0); }, -oncipv_Cypher25Parser_variable = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$VariableContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 274, 137); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1923); - oncipv_Cypher25Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$DatabaseNameContext_getRuleIndex = $this => { + return 304; }, -oncipv_Cypher25Parser_nonEmptyNameList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NonEmptyNameListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 276, 138); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1925); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1930); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 1926); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1927); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1932); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$MapOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$MapOrParameterContext_getRuleIndex = $this => { + return 326; }, -oncipv_Cypher25Parser_type = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$TypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 278, 139); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1933); - oncipv_Cypher25Parser_typePart($this); - oavr_Recognizer_setState($this, 1938); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 195, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1934); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 1935); - oncipv_Cypher25Parser_typePart($this); - } - oavr_Recognizer_setState($this, 1940); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 195, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$CreateIndex_Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateIndex_Context_getRuleIndex = $this => { + return 187; }, -oncipv_Cypher25Parser_typePart = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$TypePartContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 280, 140); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1941); - oncipv_Cypher25Parser_typeName($this); - oavr_Recognizer_setState($this, 1943); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 141 && $_la != 175)) { - oavr_Recognizer_setState($this, 1942); - oncipv_Cypher25Parser_typeNullability($this); - } - oavr_Recognizer_setState($this, 1948); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 22 && $_la != 147)) { - oavr_Recognizer_setState($this, 1945); - oncipv_Cypher25Parser_typeListSuffix($this); - oavr_Recognizer_setState($this, 1950); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$CreateFulltextIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateFulltextIndexContext_getRuleIndex = $this => { + return 188; }, -oncipv_Cypher25Parser_typeName = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = oncipv_Cypher25Parser$TypeNameContext__init_($this.$_ctx, oavr_Recognizer_getState($this)); - oavr_Parser_enterRule($this, $_localctx, 282, 141); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2016); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 21: - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 26); - oavr_Recognizer_setState($this, 1998); - oavr_Parser_match($this, 21); - oavr_Recognizer_setState($this, 2014); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 202, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2000); - oavr_Parser_match($this, 291); - break f; - case 3: - oavr_Recognizer_setState($this, 2001); - oavr_Parser_match($this, 218); - break f; - case 4: - oavr_Recognizer_setState($this, 2002); - oavr_Parser_match($this, 88); - break f; - case 5: - oavr_Recognizer_setState($this, 2003); - oavr_Parser_match($this, 154); - break f; - case 6: - oavr_Recognizer_setState($this, 2004); - oavr_Parser_match($this, 205); - oavr_Recognizer_setState($this, 2005); - oavr_Parser_match($this, 288); - break f; - case 7: - oavr_Recognizer_setState($this, 2007); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 288) { - oavr_Recognizer_setState($this, 2006); - oavr_Parser_match($this, 288); - } - oavr_Recognizer_setState($this, 2009); - oavr_Parser_match($this, 152); - oavr_Recognizer_setState($this, 2010); - oncipv_Cypher25Parser_type($this); - oavr_Recognizer_setState($this, 2011); - oavr_Parser_match($this, 120); - break f; - case 8: - oavr_Recognizer_setState($this, 2013); - oavr_Parser_match($this, 288); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 1999); - oavr_Parser_match($this, 169); - } - break e; - case 22: - case 147: - oavr_Parser_enterOuterAlt($this, $_localctx, 22); - oavr_Recognizer_setState($this, 1989); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 22 && $_la != 147) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1990); - oavr_Parser_match($this, 152); - oavr_Recognizer_setState($this, 1991); - oncipv_Cypher25Parser_type($this); - oavr_Recognizer_setState($this, 1992); - oavr_Parser_match($this, 120); - break e; - case 31: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1953); - oavr_Parser_match($this, 31); - break e; - case 32: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 1954); - oavr_Parser_match($this, 32); - break e; - case 63: - oavr_Parser_enterOuterAlt($this, $_localctx, 10); - oavr_Recognizer_setState($this, 1963); - oavr_Parser_match($this, 63); - break e; - case 86: - oavr_Parser_enterOuterAlt($this, $_localctx, 15); - oavr_Recognizer_setState($this, 1982); - oavr_Parser_match($this, 86); - break e; - case 88: - oavr_Parser_enterOuterAlt($this, $_localctx, 20); - oavr_Recognizer_setState($this, 1987); - oavr_Parser_match($this, 88); - break e; - case 107: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 1962); - oavr_Parser_match($this, 107); - break e; - case 133: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 1957); - oavr_Parser_match($this, 133); - break e; - case 134: - case 250: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 1959); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 250) { - oavr_Recognizer_setState($this, 1958); - oavr_Parser_match($this, 250); - } - oavr_Recognizer_setState($this, 1961); - oavr_Parser_match($this, 134); - break e; - case 149: - oavr_Parser_enterOuterAlt($this, $_localctx, 11); - oavr_Recognizer_setState($this, 1964); - oavr_Parser_match($this, 149); - oavr_Recognizer_setState($this, 1965); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 64 && $_la != 264) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - case 154: - oavr_Parser_enterOuterAlt($this, $_localctx, 21); - oavr_Recognizer_setState($this, 1988); - oavr_Parser_match($this, 154); - break e; - case 169: - oavr_Parser_enterOuterAlt($this, $_localctx, 17); - oavr_Recognizer_setState($this, 1984); - oavr_Parser_match($this, 169); - break e; - case 176: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1951); - oavr_Parser_match($this, 176); - break e; - case 178: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1952); - oavr_Parser_match($this, 178); - break e; - case 190: - oavr_Parser_enterOuterAlt($this, $_localctx, 23); - oavr_Recognizer_setState($this, 1994); - oavr_Parser_match($this, 190); - break e; - case 191: - oavr_Parser_enterOuterAlt($this, $_localctx, 24); - oavr_Recognizer_setState($this, 1995); - oavr_Parser_match($this, 191); - break e; - case 195: - oavr_Parser_enterOuterAlt($this, $_localctx, 16); - oavr_Recognizer_setState($this, 1983); - oavr_Parser_match($this, 195); - break e; - case 205: - oavr_Parser_enterOuterAlt($this, $_localctx, 25); - oavr_Recognizer_setState($this, 1996); - oavr_Parser_match($this, 205); - oavr_Recognizer_setState($this, 1997); - oavr_Parser_match($this, 288); - break e; - case 218: - oavr_Parser_enterOuterAlt($this, $_localctx, 19); - oavr_Recognizer_setState($this, 1986); - oavr_Parser_match($this, 218); - break e; - case 257: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 1956); - oavr_Parser_match($this, 257); - break e; - case 264: - oavr_Parser_enterOuterAlt($this, $_localctx, 13); - oavr_Recognizer_setState($this, 1968); - oavr_Parser_match($this, 264); - oavr_Recognizer_setState($this, 1969); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 295 && $_la != 296) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1973); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 264: - oavr_Recognizer_setState($this, 1971); - oavr_Parser_match($this, 264); - oavr_Recognizer_setState($this, 1972); - oavr_Parser_match($this, 300); - break e; - case 267: - oavr_Recognizer_setState($this, 1970); - oavr_Parser_match($this, 267); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 266: - oavr_Parser_enterOuterAlt($this, $_localctx, 14); - oavr_Recognizer_setState($this, 1975); - oavr_Parser_match($this, 266); - oavr_Recognizer_setState($this, 1976); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 295 && $_la != 296) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1980); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 264: - oavr_Recognizer_setState($this, 1978); - oavr_Parser_match($this, 264); - oavr_Recognizer_setState($this, 1979); - oavr_Parser_match($this, 300); - break e; - case 267: - oavr_Recognizer_setState($this, 1977); - oavr_Parser_match($this, 267); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 289: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 1955); - oavr_Parser_match($this, 289); - break e; - case 291: - oavr_Parser_enterOuterAlt($this, $_localctx, 18); - oavr_Recognizer_setState($this, 1985); - oavr_Parser_match($this, 291); - break e; - case 301: - oavr_Parser_enterOuterAlt($this, $_localctx, 12); - oavr_Recognizer_setState($this, 1966); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 1967); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 64 && $_la != 264) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipvaf_CypherAstBuildingAntlrParser_exitRule0($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipvaf_CypherAstBuildingAntlrParser_exitRule0($this); - $rt_throw($_localctx); - } - oncipvaf_CypherAstBuildingAntlrParser_exitRule0($this); - } - return $_localctx; +oncipv_Cypher5Parser$CreateLookupIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateLookupIndexContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); }, -oncipv_Cypher25Parser_typeNullability = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$TypeNullabilityContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 284, 142); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2021); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 141: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2020); - oavr_Parser_match($this, 141); - break e; - case 175: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2018); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 2019); - oavr_Parser_match($this, 178); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$CreateLookupIndexContext_lookupIndexRelPattern = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$LookupIndexRelPatternContext), 0); }, -oncipv_Cypher25Parser_typeListSuffix = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$TypeListSuffixContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 286, 143); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2023); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 22 && $_la != 147) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2025); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 141 && $_la != 175)) { - oavr_Recognizer_setState($this, 2024); - oncipv_Cypher25Parser_typeNullability($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$CreateLookupIndexContext_getRuleIndex = $this => { + return 191; +}, +oncipv_Cypher5Parser$OldCreateIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$OldCreateIndexContext_getRuleIndex = $this => { + return 186; +}, +oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +}, +oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_getRuleIndex = $this => { + return 314; +}, +oncipv_Cypher5Parser$CommandNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CommandNodePatternContext_getRuleIndex = $this => { + return 180; +}, +oncipv_Cypher5Parser$CommandRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CommandRelPatternContext_getRuleIndex = $this => { + return 181; +}, +oncipv_Cypher5Parser$ConstraintTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ConstraintTypeContext__init_0 = ($this, $parent, $invokingState) => { + oncip_AstRuleCtx__init_($this, $parent, $invokingState); +}, +oncipv_Cypher5Parser$ConstraintTypeContext__init_ = (var_0, var_1) => { + let var_2 = new oncipv_Cypher5Parser$ConstraintTypeContext(); + oncipv_Cypher5Parser$ConstraintTypeContext__init_0(var_2, var_0, var_1); + return var_2; +}, +oncipv_Cypher5Parser$ConstraintTypeContext_getRuleIndex = $this => { + return 183; +}, +oncipv_Cypher5Parser$ConstraintExistsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), +oncipv_Cypher5Parser$ConstraintExistsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ConstraintExistsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ConstraintExistsContext(); + oncipv_Cypher5Parser$ConstraintExistsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ConstraintTypedContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), +oncipv_Cypher5Parser$ConstraintTypedContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ConstraintTypedContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ConstraintTypedContext(); + oncipv_Cypher5Parser$ConstraintTypedContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ConstraintIsUniqueContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), +oncipv_Cypher5Parser$ConstraintIsUniqueContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ConstraintIsUniqueContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ConstraintIsUniqueContext(); + oncipv_Cypher5Parser$ConstraintIsUniqueContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ConstraintKeyContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), +oncipv_Cypher5Parser$ConstraintKeyContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ConstraintKeyContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ConstraintKeyContext(); + oncipv_Cypher5Parser$ConstraintKeyContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ConstraintIsNotNullContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), +oncipv_Cypher5Parser$ConstraintIsNotNullContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ConstraintIsNotNullContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ConstraintIsNotNullContext(); + oncipv_Cypher5Parser$ConstraintIsNotNullContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$PrimaryTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PrimaryTopologyContext_getRuleIndex = $this => { + return 288; +}, +oncipv_Cypher5Parser$SecondaryTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SecondaryTopologyContext_getRuleIndex = $this => { + return 290; +}, +oncipv_Cypher5Parser$DatabasePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DatabasePrivilegeContext_userQualifier = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$UserQualifierContext), 0); +}, +oncipv_Cypher5Parser$DatabasePrivilegeContext_getRuleIndex = $this => { + return 258; +}, +oncipv_Cypher5Parser$DbmsPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DbmsPrivilegeContext_getRuleIndex = $this => { + return 259; +}, +oncipv_Cypher5Parser$AllPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AllPrivilegeContext_allPrivilegeTarget = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$AllPrivilegeTargetContext), 0); +}, +oncipv_Cypher5Parser$AllPrivilegeContext_getRuleIndex = $this => { + return 242; +}, +oncipv_Cypher5Parser$CreatePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreatePrivilegeContext_databaseScope = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseScopeContext), 0); +}, +oncipv_Cypher5Parser$CreatePrivilegeContext_actionForDBMS = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ActionForDBMSContext), 0); +}, +oncipv_Cypher5Parser$CreatePrivilegeContext_getRuleIndex = $this => { + return 245; +}, +oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext_getRuleIndex = $this => { + return 275; +}, +oncipv_Cypher5Parser$DropPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DropPrivilegeContext_databaseScope = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseScopeContext), 0); +}, +oncipv_Cypher5Parser$DropPrivilegeContext_getRuleIndex = $this => { + return 251; +}, +oncipv_Cypher5Parser$LoadPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LoadPrivilegeContext_stringOrParameter = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0); +}, +oncipv_Cypher5Parser$LoadPrivilegeContext_getRuleIndex = $this => { + return 252; +}, +oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext_getRuleIndex = $this => { + return 274; +}, +oncipv_Cypher5Parser$RemovePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RemovePrivilegeContext_getRuleIndex = $this => { + return 256; +}, +oncipv_Cypher5Parser$SetPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SetPrivilegeContext_getRuleIndex = $this => { + return 254; +}, +oncipv_Cypher5Parser$ShowPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowPrivilegeContext_databaseScope = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseScopeContext), 0); +}, +oncipv_Cypher5Parser$ShowPrivilegeContext_getRuleIndex = $this => { + return 253; +}, +oncipv_Cypher5Parser$WritePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$WritePrivilegeContext_getRuleIndex = $this => { + return 257; +}, +oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext_getRuleIndex = $this => { + return 316; }, -oncipv_Cypher25Parser_command = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 288, 144); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2028); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 284) { - oavr_Recognizer_setState($this, 2027); - oncipv_Cypher25Parser_useClause($this); - } - e: { - oavr_Recognizer_setState($this, 2043); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 19: - oavr_Recognizer_setState($this, 2032); - oncipv_Cypher25Parser_alterCommand($this); - break e; - case 57: - oavr_Recognizer_setState($this, 2030); - oncipv_Cypher25Parser_createCommand($this); - break e; - case 66: - case 84: - case 213: - oavr_Recognizer_setState($this, 2040); - oncipv_Cypher25Parser_allocationCommand($this); - break e; - case 70: - oavr_Recognizer_setState($this, 2034); - oncipv_Cypher25Parser_denyCommand($this); - break e; - case 83: - oavr_Recognizer_setState($this, 2031); - oncipv_Cypher25Parser_dropCommand($this); - break e; - case 89: - oavr_Recognizer_setState($this, 2039); - oncipv_Cypher25Parser_enableServerCommand($this); - break e; - case 115: - oavr_Recognizer_setState($this, 2036); - oncipv_Cypher25Parser_grantCommand($this); - break e; - case 215: - oavr_Recognizer_setState($this, 2033); - oncipv_Cypher25Parser_renameCommand($this); - break e; - case 228: - oavr_Recognizer_setState($this, 2035); - oncipv_Cypher25Parser_revokeCommand($this); - break e; - case 249: - oavr_Recognizer_setState($this, 2041); - oncipv_Cypher25Parser_showCommand($this); - break e; - case 253: - oavr_Recognizer_setState($this, 2037); - oncipv_Cypher25Parser_startDatabase($this); - break e; - case 256: - oavr_Recognizer_setState($this, 2038); - oncipv_Cypher25Parser_stopDatabase($this); - break e; - case 261: - oavr_Recognizer_setState($this, 2042); - oncipv_Cypher25Parser_terminateCommand($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$AliasActionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AliasActionContext_getRuleIndex = $this => { + return 293; }, -oncipv_Cypher25Parser_createCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 290, 145); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2045); - oavr_Parser_match($this, 57); - oavr_Recognizer_setState($this, 2048); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 186) { - oavr_Recognizer_setState($this, 2046); - oavr_Parser_match($this, 186); - oavr_Recognizer_setState($this, 2047); - oavr_Parser_match($this, 222); - } - e: { - oavr_Recognizer_setState($this, 2057); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 2050); - oncipv_Cypher25Parser_createAlias($this); - break e; - case 49: - oavr_Recognizer_setState($this, 2051); - oncipv_Cypher25Parser_createCompositeDatabase($this); - break e; - case 51: - oavr_Recognizer_setState($this, 2052); - oncipv_Cypher25Parser_createConstraint($this); - break e; - case 61: - oavr_Recognizer_setState($this, 2053); - oncipv_Cypher25Parser_createDatabase($this); - break e; - case 111: - case 128: - case 150: - case 195: - case 209: - case 262: - case 290: - oavr_Recognizer_setState($this, 2054); - oncipv_Cypher25Parser_createIndex($this); - break e; - case 229: - oavr_Recognizer_setState($this, 2055); - oncipv_Cypher25Parser_createRole($this); - break e; - case 285: - oavr_Recognizer_setState($this, 2056); - oncipv_Cypher25Parser_createUser($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$PropertyListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PropertyListContext_getRuleIndex = $this => { + return 195; }, -oncipv_Cypher25Parser_dropCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 292, 146); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2059); - oavr_Parser_match($this, 83); - oavr_Recognizer_setState($this, 2067); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 2060); - oncipv_Cypher25Parser_dropAlias($this); - break e; - case 49: - case 61: - oavr_Recognizer_setState($this, 2062); - oncipv_Cypher25Parser_dropDatabase($this); - break e; - case 51: - oavr_Recognizer_setState($this, 2061); - oncipv_Cypher25Parser_dropConstraint($this); - break e; - case 128: - oavr_Recognizer_setState($this, 2063); - oncipv_Cypher25Parser_dropIndex($this); - break e; - case 229: - oavr_Recognizer_setState($this, 2064); - oncipv_Cypher25Parser_dropRole($this); - break e; - case 242: - oavr_Recognizer_setState($this, 2065); - oncipv_Cypher25Parser_dropServer($this); - break e; - case 285: - oavr_Recognizer_setState($this, 2066); - oncipv_Cypher25Parser_dropUser($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$LabelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelTypeContext_getRuleIndex = $this => { + return 67; }, -oncipv_Cypher25Parser_showCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 294, 147); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2069); - oavr_Parser_match($this, 249); - oavr_Recognizer_setState($this, 2086); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 211, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2071); - oncipv_Cypher25Parser_showConstraintCommand($this); - break e; - case 3: - oavr_Recognizer_setState($this, 2072); - oncipv_Cypher25Parser_showCurrentUser($this); - break e; - case 4: - oavr_Recognizer_setState($this, 2073); - oncipv_Cypher25Parser_showDatabase($this); - break e; - case 5: - oavr_Recognizer_setState($this, 2074); - oncipv_Cypher25Parser_showFunctions($this); - break e; - case 6: - oavr_Recognizer_setState($this, 2075); - oncipv_Cypher25Parser_showIndexCommand($this); - break e; - case 7: - oavr_Recognizer_setState($this, 2076); - oncipv_Cypher25Parser_showPrivileges($this); - break e; - case 8: - oavr_Recognizer_setState($this, 2077); - oncipv_Cypher25Parser_showProcedures($this); - break e; - case 9: - oavr_Recognizer_setState($this, 2078); - oncipv_Cypher25Parser_showRolePrivileges($this); - break e; - case 10: - oavr_Recognizer_setState($this, 2079); - oncipv_Cypher25Parser_showRoles($this); - break e; - case 11: - oavr_Recognizer_setState($this, 2080); - oncipv_Cypher25Parser_showServers($this); - break e; - case 12: - oavr_Recognizer_setState($this, 2081); - oncipv_Cypher25Parser_showSettings($this); - break e; - case 13: - oavr_Recognizer_setState($this, 2082); - oncipv_Cypher25Parser_showSupportedPrivileges($this); - break e; - case 14: - oavr_Recognizer_setState($this, 2083); - oncipv_Cypher25Parser_showTransactions($this); - break e; - case 15: - oavr_Recognizer_setState($this, 2084); - oncipv_Cypher25Parser_showUserPrivileges($this); - break e; - case 16: - oavr_Recognizer_setState($this, 2085); - oncipv_Cypher25Parser_showUsers($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2070); - oncipv_Cypher25Parser_showAliases($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$NonEmptyNameListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NonEmptyNameListContext_symbolicNameString = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); }, -oncipv_Cypher25Parser_showCommandYield = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowCommandYieldContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 296, 148); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2093); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 294: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2092); - oncipv_Cypher25Parser_whereClause($this); - break e; - case 299: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2088); - oncipv_Cypher25Parser_yieldClause($this); - oavr_Recognizer_setState($this, 2090); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 227) - break e; - oavr_Recognizer_setState($this, 2089); - oncipv_Cypher25Parser_returnClause($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$NonEmptyNameListContext_getRuleIndex = $this => { + return 139; }, -oncipv_Cypher25Parser_yieldItem = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$YieldItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 298, 149); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2095); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2098); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2096); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 2097); - oncipv_Cypher25Parser_variable($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$StringLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StringLiteralContext_getRuleIndex = $this => { + return 322; +}; +function oncipv_Cypher5Parser$ParameterContext() { + oncip_AstRuleCtx.call(this); + this.$paramType2 = null; +} +let oncipv_Cypher5Parser$ParameterContext_getRuleIndex = $this => { + return 132; }, -oncipv_Cypher25Parser_yieldSkip = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$YieldSkipContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 300, 150); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2100); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 180 && $_la != 252) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2101); - oncipv_Cypher25Parser_signedIntegerLiteral($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$UserNamesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UserNamesContext_getRuleIndex = $this => { + return 202; }, -oncipv_Cypher25Parser_yieldLimit = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$YieldLimitContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 302, 151); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2103); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 2104); - oncipv_Cypher25Parser_signedIntegerLiteral($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShowCommandYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowCommandYieldContext_getRuleIndex = $this => { + return 149; }, -oncipv_Cypher25Parser_yieldClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$YieldClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 304, 152); - a: { - b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2106); - oavr_Parser_match($this, 299); - oavr_Recognizer_setState($this, 2116); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - break f; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Recognizer_setState($this, 2107); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 2108); - oncipv_Cypher25Parser_yieldItem($this); - oavr_Recognizer_setState($this, 2113); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 46) - break e; - oavr_Recognizer_setState($this, 2109); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 2110); - oncipv_Cypher25Parser_yieldItem($this); - oavr_Recognizer_setState($this, 2115); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 2119); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 187) { - oavr_Recognizer_setState($this, 2118); - oncipv_Cypher25Parser_orderBy($this); - } - oavr_Recognizer_setState($this, 2122); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 180 && $_la != 252)) { - oavr_Recognizer_setState($this, 2121); - oncipv_Cypher25Parser_yieldSkip($this); - } - oavr_Recognizer_setState($this, 2125); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 146) { - oavr_Recognizer_setState($this, 2124); - oncipv_Cypher25Parser_yieldLimit($this); - } - oavr_Recognizer_setState($this, 2128); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 2127); - oncipv_Cypher25Parser_whereClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext_getRuleIndex = $this => { + return 168; +}, +oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext_getRuleIndex = $this => { + return 165; +}, +oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext_getRuleIndex = $this => { + return 166; +}, +oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext_getRuleIndex = $this => { + return 167; +}, +oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext_constraintExistType = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ConstraintExistTypeContext), 0); +}, +oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext_getRuleIndex = $this => { + return 163; +}, +oncipv_Cypher5Parser$ShowFunctionsTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowFunctionsTypeContext_getRuleIndex = $this => { + return 173; +}, +oncipv_Cypher5Parser$FunctionTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$FunctionTokenContext_getRuleIndex = $this => { + return 171; +}, +oncipv_Cypher5Parser$ExecutableByContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ExecutableByContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +}, +oncipv_Cypher5Parser$ExecutableByContext_getRuleIndex = $this => { + return 172; +}, +oncipv_Cypher5Parser$ComposableCommandClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ComposableCommandClausesContext_getRuleIndex = $this => { + return 156; }, -oncipv_Cypher25Parser_commandOptions = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CommandOptionsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 306, 153); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2130); - oavr_Parser_match($this, 184); - oavr_Recognizer_setState($this, 2131); - oncipv_Cypher25Parser_mapOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShowIndexesNoBriefContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowIndexesNoBriefContext_getRuleIndex = $this => { + return 161; }, -oncipv_Cypher25Parser_terminateCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$TerminateCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 308, 154); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2133); - oavr_Parser_match($this, 261); - oavr_Recognizer_setState($this, 2134); - oncipv_Cypher25Parser_terminateTransactions($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShowIndexesAllowBriefContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowIndexesAllowBriefContext_getRuleIndex = $this => { + return 160; }, -oncipv_Cypher25Parser_composableCommandClauses = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ComposableCommandClausesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 310, 155); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2138); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 249: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2137); - oncipv_Cypher25Parser_composableShowCommandClauses($this); - break e; - case 261: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2136); - oncipv_Cypher25Parser_terminateCommand($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$PrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PrivilegeTokenContext_getRuleIndex = $this => { + return 240; }, -oncipv_Cypher25Parser_composableShowCommandClauses = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ComposableShowCommandClausesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 312, 156); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2140); - oavr_Parser_match($this, 249); - oavr_Recognizer_setState($this, 2147); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 222, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2142); - oncipv_Cypher25Parser_showConstraintCommand($this); - break e; - case 3: - oavr_Recognizer_setState($this, 2143); - oncipv_Cypher25Parser_showFunctions($this); - break e; - case 4: - oavr_Recognizer_setState($this, 2144); - oncipv_Cypher25Parser_showProcedures($this); - break e; - case 5: - oavr_Recognizer_setState($this, 2145); - oncipv_Cypher25Parser_showSettings($this); - break e; - case 6: - oavr_Recognizer_setState($this, 2146); - oncipv_Cypher25Parser_showTransactions($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2141); - oncipv_Cypher25Parser_showIndexCommand($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$PrivilegeAsCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PrivilegeAsCommandContext_getRuleIndex = $this => { + return 239; }, -oncipv_Cypher25Parser_showIndexCommand = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowIndexCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 314, 157); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2150); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 111 && $_la != 150 && $_la != 195 && $_la != 209 && $_la != 262 && $_la != 290)) { - oavr_Recognizer_setState($this, 2149); - oncipv_Cypher25Parser_showIndexType($this); - } - oavr_Recognizer_setState($this, 2152); - oncipv_Cypher25Parser_showIndexesEnd($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$SettingTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SettingTokenContext_getRuleIndex = $this => { + return 177; }, -oncipv_Cypher25Parser_showIndexType = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowIndexTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 316, 158); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2154); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 111 && $_la != 150 && $_la != 195 && $_la != 209 && $_la != 262 && $_la != 290) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$NamesAndClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NamesAndClausesContext_getRuleIndex = $this => { + return 178; }, -oncipv_Cypher25Parser_showIndexesEnd = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowIndexesEndContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 318, 159); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2156); - oncipv_Cypher25Parser_indexToken($this); - oavr_Recognizer_setState($this, 2158); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2157); - oncipv_Cypher25Parser_showCommandYield($this); - } - oavr_Recognizer_setState($this, 2161); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 249 && $_la != 261)) { - oavr_Recognizer_setState($this, 2160); - oncipv_Cypher25Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$TransactionTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$TransactionTokenContext_getRuleIndex = $this => { + return 265; }, -oncipv_Cypher25Parser_showConstraintCommand = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowConstraintCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 320, 160); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 2192); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 232, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ShowConstraintAllContext; - var$2 = $re; - oncipv_Cypher25Parser$ShowConstraintAllContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 2164); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 18) { - var$2 = $re; - oavr_Recognizer_setState($this, 2163); - oavr_Parser_match($this, 18); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2166); - oncipv_Cypher25Parser_showConstraintsEnd($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ShowConstraintExistContext; - var$2 = $re; - oncipv_Cypher25Parser$ShowConstraintExistContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 2168); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2167); - oncipv_Cypher25Parser_showConstraintEntity($this); - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2170); - oncipv_Cypher25Parser_constraintExistType($this); - oavr_Recognizer_setState($this, 2171); - oncipv_Cypher25Parser_showConstraintsEnd($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ShowConstraintKeyContext; - var$2 = $re; - oncipv_Cypher25Parser$ShowConstraintKeyContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 2174); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2173); - oncipv_Cypher25Parser_showConstraintEntity($this); - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2176); - oavr_Parser_match($this, 137); - oavr_Recognizer_setState($this, 2177); - oncipv_Cypher25Parser_showConstraintsEnd($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ShowConstraintPropTypeContext; - var$2 = $re; - oncipv_Cypher25Parser$ShowConstraintPropTypeContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 2179); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2178); - oncipv_Cypher25Parser_showConstraintEntity($this); - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2181); - oavr_Parser_match($this, 205); - oavr_Recognizer_setState($this, 2182); - oavr_Parser_match($this, 276); - oavr_Recognizer_setState($this, 2183); - oncipv_Cypher25Parser_showConstraintsEnd($this); - break e; - case 5: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ShowConstraintUniqueContext; - var$2 = $re; - oncipv_Cypher25Parser$ShowConstraintUniqueContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 2185); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2184); - oncipv_Cypher25Parser_showConstraintEntity($this); - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2188); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 205) { - var$2 = $re; - oavr_Recognizer_setState($this, 2187); - oavr_Parser_match($this, 205); - } - f: { - var$2 = $re; - oavr_Recognizer_setState($this, 2190); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 280) { - var$2 = $re; - if ($_la != 281) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break f; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2191); - oncipv_Cypher25Parser_showConstraintsEnd($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; +oncipv_Cypher5Parser$SecondsTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SecondsTokenContext_getRuleIndex = $this => { + return 301; }, -oncipv_Cypher25Parser_showConstraintEntity = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowConstraintEntityContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 322, 161); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 2196); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 169: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$NodeEntityContext; - var$2 = $re; - oncipv_Cypher25Parser$NodeEntityContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 2194); - oavr_Parser_match($this, 169); - break e; - case 217: - case 218: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$RelEntityContext; - var$2 = $re; - oncipv_Cypher25Parser$RelEntityContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 2195); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 217) { - var$2 = $re; - if ($_la != 218) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break e; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - default: - } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; +oncipv_Cypher5Parser$StringsOrExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StringsOrExpressionContext_getRuleIndex = $this => { + return 179; }, -oncipv_Cypher25Parser_constraintExistType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ConstraintExistTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 324, 162); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2204); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 234, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2199); - oavr_Parser_match($this, 99); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2200); - oavr_Parser_match($this, 205); - oavr_Recognizer_setState($this, 2201); - oavr_Parser_match($this, 100); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 2202); - oavr_Parser_match($this, 205); - oavr_Recognizer_setState($this, 2203); - oavr_Parser_match($this, 99); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2198); - oavr_Parser_match($this, 100); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$FinishClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$FinishClauseContext_getRuleIndex = $this => { + return 8; }, -oncipv_Cypher25Parser_showConstraintsEnd = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowConstraintsEndContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 326, 163); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2206); - oncipv_Cypher25Parser_constraintToken($this); - oavr_Recognizer_setState($this, 2208); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2207); - oncipv_Cypher25Parser_showCommandYield($this); - } - oavr_Recognizer_setState($this, 2211); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 249 && $_la != 261)) { - oavr_Recognizer_setState($this, 2210); - oncipv_Cypher25Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ReturnClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ReturnClauseContext_getRuleIndex = $this => { + return 9; }, -oncipv_Cypher25Parser_showProcedures = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowProceduresContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 328, 164); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2213); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 202 && $_la != 203) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2215); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 97) { - oavr_Recognizer_setState($this, 2214); - oncipv_Cypher25Parser_executableBy($this); - } - oavr_Recognizer_setState($this, 2218); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2217); - oncipv_Cypher25Parser_showCommandYield($this); - } - oavr_Recognizer_setState($this, 2221); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 249 && $_la != 261)) { - oavr_Recognizer_setState($this, 2220); - oncipv_Cypher25Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$CreateClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateClauseContext_getRuleIndex = $this => { + return 21; }, -oncipv_Cypher25Parser_showFunctions = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowFunctionsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 330, 165); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2224); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 36 && $_la != 285)) { - oavr_Recognizer_setState($this, 2223); - oncipv_Cypher25Parser_showFunctionsType($this); - } - oavr_Recognizer_setState($this, 2226); - oncipv_Cypher25Parser_functionToken($this); - oavr_Recognizer_setState($this, 2228); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 97) { - oavr_Recognizer_setState($this, 2227); - oncipv_Cypher25Parser_executableBy($this); - } - oavr_Recognizer_setState($this, 2231); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2230); - oncipv_Cypher25Parser_showCommandYield($this); - } - oavr_Recognizer_setState($this, 2234); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 249 && $_la != 261)) { - oavr_Recognizer_setState($this, 2233); - oncipv_Cypher25Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$InsertClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$InsertClauseContext_getRuleIndex = $this => { + return 22; }, -oncipv_Cypher25Parser_functionToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$FunctionTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 332, 166); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2236); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 112 && $_la != 113) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$DeleteClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DeleteClauseContext_getRuleIndex = $this => { + return 27; +}, +oncipv_Cypher5Parser$SetClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SetClauseContext_getRuleIndex = $this => { + return 23; +}, +oncipv_Cypher5Parser$RemoveClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RemoveClauseContext_getRuleIndex = $this => { + return 25; +}, +oncipv_Cypher5Parser$MatchClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$MatchClauseContext_getRuleIndex = $this => { + return 28; +}, +oncipv_Cypher5Parser$MergeClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$MergeClauseContext_getRuleIndex = $this => { + return 31; +}, +oncipv_Cypher5Parser$WithClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$WithClauseContext_getRuleIndex = $this => { + return 20; +}, +oncipv_Cypher5Parser$UnwindClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UnwindClauseContext_getRuleIndex = $this => { + return 33; +}, +oncipv_Cypher5Parser$CallClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CallClauseContext_YIELD = $this => { + return oncip_AstRuleCtx_getToken($this, 306, 0); +}, +oncipv_Cypher5Parser$CallClauseContext_getRuleIndex = $this => { + return 34; +}, +oncipv_Cypher5Parser$SubqueryClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SubqueryClauseContext_regularQuery = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$RegularQueryContext), 0); +}, +oncipv_Cypher5Parser$SubqueryClauseContext_OPTIONAL = $this => { + return oncip_AstRuleCtx_getToken($this, 187, 0); +}, +oncipv_Cypher5Parser$SubqueryClauseContext_subqueryInTransactionsParameters = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext), 0); +}, +oncipv_Cypher5Parser$SubqueryClauseContext_getRuleIndex = $this => { + return 40; +}, +oncipv_Cypher5Parser$LoadCSVClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LoadCSVClauseContext_getRuleIndex = $this => { + return 38; +}, +oncipv_Cypher5Parser$ForeachClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ForeachClauseContext_getRuleIndex = $this => { + return 39; +}, +oncipv_Cypher5Parser$OrderBySkipLimitClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$OrderBySkipLimitClauseContext_getRuleIndex = $this => { + return 46; +}, +oncipv_Cypher25Parser$FunctionArgumentContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$FunctionArgumentContext_expression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); }, -oncipv_Cypher25Parser_executableBy = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ExecutableByContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 334, 167); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2238); - oavr_Parser_match($this, 97); - oavr_Recognizer_setState($this, 2245); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 37) { - oavr_Recognizer_setState($this, 2239); - oavr_Parser_match($this, 37); - oavr_Recognizer_setState($this, 2243); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 244, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 2240); - oavr_Parser_match($this, 59); - oavr_Recognizer_setState($this, 2241); - oavr_Parser_match($this, 285); - break e; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2242); - oncipv_Cypher25Parser_symbolicNameString($this); - } - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$FunctionArgumentContext_getRuleIndex = $this => { + return 134; }, -oncipv_Cypher25Parser_showFunctionsType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowFunctionsTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 336, 168); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2252); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 18: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2247); - oavr_Parser_match($this, 18); - break e; - case 36: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2248); - oavr_Parser_match($this, 36); - oavr_Recognizer_setState($this, 2249); - oavr_Parser_match($this, 127); - break e; - case 285: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2250); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 2251); - oavr_Parser_match($this, 68); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$FunctionNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$FunctionNameContext_getRuleIndex = $this => { + return 135; }, -oncipv_Cypher25Parser_showTransactions = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowTransactionsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 338, 169); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2254); - oncipv_Cypher25Parser_transactionToken($this); - oavr_Recognizer_setState($this, 2255); - oncipv_Cypher25Parser_namesAndClauses($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ExpressionContext_getRuleIndex = $this => { + return 87; }, -oncipv_Cypher25Parser_terminateTransactions = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$TerminateTransactionsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 340, 170); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2257); - oncipv_Cypher25Parser_transactionToken($this); - oavr_Recognizer_setState($this, 2258); - oncipv_Cypher25Parser_namesAndClauses($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$EscapedSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$EscapedSymbolicNameStringContext_getRuleIndex = $this => { + return 324; }, -oncipv_Cypher25Parser_showSettings = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowSettingsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 342, 171); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2260); - oncipv_Cypher25Parser_settingToken($this); - oavr_Recognizer_setState($this, 2261); - oncipv_Cypher25Parser_namesAndClauses($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}; -let oncipv_Cypher25Parser_settingToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SettingTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 344, 172); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2263); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 245 && $_la != 246) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext_getRuleIndex = $this => { + return 325; }, -oncipv_Cypher25Parser_namesAndClauses = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NamesAndClausesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 346, 173); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2272); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 249, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2268); - oncipv_Cypher25Parser_stringsOrExpression($this); - oavr_Recognizer_setState($this, 2270); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 294 && $_la != 299) - break e; - oavr_Recognizer_setState($this, 2269); - oncipv_Cypher25Parser_showCommandYield($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2266); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2265); - oncipv_Cypher25Parser_showCommandYield($this); - } - } - oavr_Recognizer_setState($this, 2275); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 249 && $_la != 261)) { - oavr_Recognizer_setState($this, 2274); - oncipv_Cypher25Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$StringListLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StringListLiteralContext_getRuleIndex = $this => { + return 315; }, -oncipv_Cypher25Parser_stringsOrExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StringsOrExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 348, 174); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2279); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 251, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2278); - oncipv_Cypher25Parser_expression($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2277); - oncipv_Cypher25Parser_stringList($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$UserAuthAttributeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UserAuthAttributeContext_ID = $this => { + return oncip_AstRuleCtx_getToken($this, 123, 0); }, -oncipv_Cypher25Parser_commandNodePattern = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CommandNodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 350, 175); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2281); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2282); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2283); - oncipv_Cypher25Parser_labelType($this); - oavr_Recognizer_setState($this, 2284); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$UserAuthAttributeContext_passwordOnly = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PasswordOnlyContext), 0); }, -oncipv_Cypher25Parser_commandRelPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CommandRelPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 352, 176); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2286); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2287); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 2289); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 152 && $_la != 305)) { - oavr_Recognizer_setState($this, 2288); - oncipv_Cypher25Parser_leftArrow($this); - } - oavr_Recognizer_setState($this, 2291); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2292); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 2293); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2294); - oncipv_Cypher25Parser_relType($this); - oavr_Recognizer_setState($this, 2295); - oavr_Parser_match($this, 210); - oavr_Recognizer_setState($this, 2296); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2298); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 120 && $_la != 306)) { - oavr_Recognizer_setState($this, 2297); - oncipv_Cypher25Parser_rightArrow($this); - } - oavr_Recognizer_setState($this, 2300); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2301); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$UserAuthAttributeContext_passwordChangeRequired = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PasswordChangeRequiredContext), 0); }, -oncipv_Cypher25Parser_createConstraint = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateConstraintContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 354, 177); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2303); - oavr_Parser_match($this, 51); - oavr_Recognizer_setState($this, 2305); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 254, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2304); - oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); - } - oavr_Recognizer_setState($this, 2310); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2307); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2308); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 2309); - oavr_Parser_match($this, 101); - } - f: { - oavr_Recognizer_setState($this, 2312); - oavr_Parser_match($this, 108); - oavr_Recognizer_setState($this, 2315); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 256, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2314); - oncipv_Cypher25Parser_commandRelPattern($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2313); - oncipv_Cypher25Parser_commandNodePattern($this); - } - oavr_Recognizer_setState($this, 2317); - oncipv_Cypher25Parser_constraintType($this); - oavr_Recognizer_setState($this, 2319); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { - oavr_Recognizer_setState($this, 2318); - oncipv_Cypher25Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$UserAuthAttributeContext_getRuleIndex = $this => { + return 226; }, -oncipv_Cypher25Parser_constraintType = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher25Parser$ConstraintTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 356, 178); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 2352); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 261, $this.$_ctx)) { - case 1: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ConstraintTypedContext; - var$2 = $re; - oncipv_Cypher25Parser$ConstraintTypedContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 2321); - oavr_Parser_match($this, 224); - oavr_Recognizer_setState($this, 2322); - oncipv_Cypher25Parser_propertyList($this); - oavr_Recognizer_setState($this, 2326); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 45: - var$2 = $re; - oavr_Recognizer_setState($this, 2323); - oavr_Parser_match($this, 45); - break f; - case 135: - var$2 = $re; - oavr_Recognizer_setState($this, 2324); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 2325); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 45) { - var$2 = $re; - if ($_la != 277) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break f; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break f; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2328); - oncipv_Cypher25Parser_type($this); - break e; - case 2: - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ConstraintIsUniqueContext; - var$2 = $re; - oncipv_Cypher25Parser$ConstraintIsUniqueContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 2330); - oavr_Parser_match($this, 224); - oavr_Recognizer_setState($this, 2331); - oncipv_Cypher25Parser_propertyList($this); - oavr_Recognizer_setState($this, 2332); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 2334); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2333); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break g; - } - } - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - } - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2336); - oavr_Parser_match($this, 280); - break e; - case 3: - h: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ConstraintKeyContext; - var$2 = $re; - oncipv_Cypher25Parser$ConstraintKeyContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 2338); - oavr_Parser_match($this, 224); - oavr_Recognizer_setState($this, 2339); - oncipv_Cypher25Parser_propertyList($this); - oavr_Recognizer_setState($this, 2340); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 2342); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2341); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 169 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 196608)), Long_ZERO)) { - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break h; - } - } - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - } - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2344); - oavr_Parser_match($this, 137); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$ConstraintIsNotNullContext; - var$2 = $re; - oncipv_Cypher25Parser$ConstraintIsNotNullContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 2346); - oavr_Parser_match($this, 224); - oavr_Recognizer_setState($this, 2347); - oncipv_Cypher25Parser_propertyList($this); - oavr_Recognizer_setState($this, 2348); - oavr_Parser_match($this, 135); - oavr_Recognizer_setState($this, 2349); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 2350); - oavr_Parser_match($this, 178); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; +oncipv_Cypher25Parser$MapContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$MapContext_getRuleIndex = $this => { + return 322; }, -oncipv_Cypher25Parser_dropConstraint = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropConstraintContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 358, 179); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2354); - oavr_Parser_match($this, 51); - oavr_Recognizer_setState($this, 2355); - oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); - oavr_Recognizer_setState($this, 2358); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2356); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2357); - oavr_Parser_match($this, 101); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$VariableContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher25Parser$VariableContext_getRuleIndex = $this => { + return 137; }, -oncipv_Cypher25Parser_createIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 360, 180); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2380); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 111: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 2375); - oavr_Parser_match($this, 111); - oavr_Recognizer_setState($this, 2376); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2377); - oncipv_Cypher25Parser_createFulltextIndex($this); - break e; - case 128: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 2378); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2379); - oncipv_Cypher25Parser_createIndex_($this); - break e; - case 150: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 2372); - oavr_Parser_match($this, 150); - oavr_Recognizer_setState($this, 2373); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2374); - oncipv_Cypher25Parser_createLookupIndex($this); - break e; - case 195: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2366); - oavr_Parser_match($this, 195); - oavr_Recognizer_setState($this, 2367); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2368); - oncipv_Cypher25Parser_createIndex_($this); - break e; - case 209: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2360); - oavr_Parser_match($this, 209); - oavr_Recognizer_setState($this, 2361); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2362); - oncipv_Cypher25Parser_createIndex_($this); - break e; - case 262: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2363); - oavr_Parser_match($this, 262); - oavr_Recognizer_setState($this, 2364); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2365); - oncipv_Cypher25Parser_createIndex_($this); - break e; - case 290: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 2369); - oavr_Parser_match($this, 290); - oavr_Recognizer_setState($this, 2370); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2371); - oncipv_Cypher25Parser_createIndex_($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelTypeContext_getRuleIndex = $this => { + return 66; +}, +oncipv_Cypher25Parser$LeftArrowContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LeftArrowContext_getRuleIndex = $this => { + return 72; +}, +oncipv_Cypher25Parser$ArrowLineContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ArrowLineContext_getRuleIndex = $this => { + return 73; +}, +oncipv_Cypher25Parser$RelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RelTypeContext_getRuleIndex = $this => { + return 67; +}, +oncipv_Cypher25Parser$RightArrowContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RightArrowContext_getRuleIndex = $this => { + return 74; +}, +oncipv_Cypher25Parser$PropertyListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PropertyListContext_getRuleIndex = $this => { + return 189; +}, +oncipv_Cypher25Parser$TypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$TypeContext_getRuleIndex = $this => { + return 139; +}, +oncipv_Cypher25Parser$UIntOrIntParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UIntOrIntParameterContext_UNSIGNED_DECIMAL_INTEGER = $this => { + return oncip_AstRuleCtx_getToken($this, 5, 0); +}, +oncipv_Cypher25Parser$UIntOrIntParameterContext_getRuleIndex = $this => { + return 320; }, -oncipv_Cypher25Parser_createIndex_ = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateIndex_Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 362, 181); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2383); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 264, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2382); - oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); - } - oavr_Recognizer_setState($this, 2388); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2385); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2386); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 2387); - oavr_Parser_match($this, 101); - } - f: { - oavr_Recognizer_setState($this, 2390); - oavr_Parser_match($this, 108); - oavr_Recognizer_setState($this, 2393); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 266, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2392); - oncipv_Cypher25Parser_commandRelPattern($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2391); - oncipv_Cypher25Parser_commandNodePattern($this); - } - oavr_Recognizer_setState($this, 2395); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2396); - oncipv_Cypher25Parser_propertyList($this); - oavr_Recognizer_setState($this, 2398); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { - oavr_Recognizer_setState($this, 2397); - oncipv_Cypher25Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$PrimaryTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PrimaryTokenContext_getRuleIndex = $this => { + return 283; }, -oncipv_Cypher25Parser_createFulltextIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateFulltextIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 364, 182); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2401); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 268, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2400); - oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); - } - oavr_Recognizer_setState($this, 2406); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2403); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2404); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 2405); - oavr_Parser_match($this, 101); - } - f: { - oavr_Recognizer_setState($this, 2408); - oavr_Parser_match($this, 108); - oavr_Recognizer_setState($this, 2411); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 270, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2410); - oncipv_Cypher25Parser_fulltextRelPattern($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2409); - oncipv_Cypher25Parser_fulltextNodePattern($this); - } - oavr_Recognizer_setState($this, 2413); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2414); - oavr_Parser_match($this, 87); - oavr_Recognizer_setState($this, 2415); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 2416); - oncipv_Cypher25Parser_enclosedPropertyList($this); - oavr_Recognizer_setState($this, 2417); - oavr_Parser_match($this, 210); - oavr_Recognizer_setState($this, 2419); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { - oavr_Recognizer_setState($this, 2418); - oncipv_Cypher25Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SecondaryTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SecondaryTokenContext_getRuleIndex = $this => { + return 285; }, -oncipv_Cypher25Parser_fulltextNodePattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$FulltextNodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 366, 183); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2421); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2422); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2423); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 2424); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2429); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 29) { - oavr_Recognizer_setState($this, 2425); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 2426); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2431); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 2432); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$FulltextNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$FulltextNodePatternContext_getRuleIndex = $this => { + return 183; }, -oncipv_Cypher25Parser_fulltextRelPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$FulltextRelPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 368, 184); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2434); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2435); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 2437); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 152 && $_la != 305)) { - oavr_Recognizer_setState($this, 2436); - oncipv_Cypher25Parser_leftArrow($this); - } - oavr_Recognizer_setState($this, 2439); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2440); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 2441); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2442); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 2443); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2448); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 29) { - oavr_Recognizer_setState($this, 2444); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 2445); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2450); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 2451); - oavr_Parser_match($this, 210); - oavr_Recognizer_setState($this, 2452); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2454); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 120 && $_la != 306)) { - oavr_Recognizer_setState($this, 2453); - oncipv_Cypher25Parser_rightArrow($this); - } - oavr_Recognizer_setState($this, 2456); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2457); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$FulltextRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$FulltextRelPatternContext_getRuleIndex = $this => { + return 184; }, -oncipv_Cypher25Parser_createLookupIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateLookupIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 370, 185); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2460); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 276, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2459); - oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); - } - oavr_Recognizer_setState($this, 2465); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2462); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2463); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 2464); - oavr_Parser_match($this, 101); - } - f: { - oavr_Recognizer_setState($this, 2467); - oavr_Parser_match($this, 108); - oavr_Recognizer_setState($this, 2470); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 278, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2469); - oncipv_Cypher25Parser_lookupIndexRelPattern($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2468); - oncipv_Cypher25Parser_lookupIndexNodePattern($this); - } - oavr_Recognizer_setState($this, 2472); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2473); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2474); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2475); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 2477); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { - oavr_Recognizer_setState($this, 2476); - oncipv_Cypher25Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$EnclosedPropertyListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$EnclosedPropertyListContext_property = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$PropertyContext)); }, -oncipv_Cypher25Parser_lookupIndexNodePattern = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LookupIndexNodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 372, 186); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2479); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2480); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2481); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 2482); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2483); - oavr_Parser_match($this, 87); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$EnclosedPropertyListContext_getRuleIndex = $this => { + return 190; }, -oncipv_Cypher25Parser_lookupIndexRelPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LookupIndexRelPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 374, 187); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2485); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2486); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 2488); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 152 && $_la != 305)) { - oavr_Recognizer_setState($this, 2487); - oncipv_Cypher25Parser_leftArrow($this); - } - oavr_Recognizer_setState($this, 2490); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2491); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 2492); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2493); - oavr_Parser_match($this, 210); - oavr_Recognizer_setState($this, 2494); - oncipv_Cypher25Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2496); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 120 && $_la != 306)) { - oavr_Recognizer_setState($this, 2495); - oncipv_Cypher25Parser_rightArrow($this); - } - e: { - oavr_Recognizer_setState($this, 2498); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2499); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 2500); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2502); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 282, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2501); - oavr_Parser_match($this, 87); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LookupIndexNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LookupIndexNodePatternContext_getRuleIndex = $this => { + return 186; }, -oncipv_Cypher25Parser_dropIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 376, 188); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2504); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2505); - oncipv_Cypher25Parser_symbolicNameOrStringParameter($this); - oavr_Recognizer_setState($this, 2508); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2506); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2507); - oavr_Parser_match($this, 101); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LookupIndexRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LookupIndexRelPatternContext_getRuleIndex = $this => { + return 187; }, -oncipv_Cypher25Parser_propertyList = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PropertyListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 378, 189); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2517); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2510); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2511); - oncipv_Cypher25Parser_property($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - case 151: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2513); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 2514); - oncipv_Cypher25Parser_enclosedPropertyList($this); - oavr_Recognizer_setState($this, 2515); - oavr_Parser_match($this, 233); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DatabaseScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DatabaseScopeContext_getRuleIndex = $this => { + return 278; +}, +oncipv_Cypher25Parser$UserQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UserQualifierContext_userNames = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$UserNamesContext), 0); +}, +oncipv_Cypher25Parser$UserQualifierContext_getRuleIndex = $this => { + return 260; +}, +oncipv_Cypher25Parser$ConstraintTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ConstraintTokenContext_getRuleIndex = $this => { + return 258; +}, +oncipv_Cypher25Parser$IndexTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$IndexTokenContext_getRuleIndex = $this => { + return 257; +}, +oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_BOOSTED = $this => { + return oncip_AstRuleCtx_getToken($this, 33, 0); +}, +oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_getRuleIndex = $this => { + return 254; +}, +oncipv_Cypher25Parser$AllPrivilegeTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AllPrivilegeTypeContext_getRuleIndex = $this => { + return 237; +}, +oncipv_Cypher25Parser$AllPrivilegeTargetContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AllPrivilegeTargetContext_getRuleIndex = $this => { + return 238; +}, +oncipv_Cypher25Parser$DatabaseVariableTargetContext = $rt_classWithoutFields(oncipv_Cypher25Parser$AllPrivilegeTargetContext); +let oncipv_Cypher25Parser$DatabaseVariableTargetContext_DATABASE = $this => { + return oncip_AstRuleCtx_getToken($this, 61, 0); +}, +oncipv_Cypher25Parser$DatabaseVariableTargetContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$DatabaseVariableTargetContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$DatabaseVariableTargetContext(); + oncipv_Cypher25Parser$DatabaseVariableTargetContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$DBMSTargetContext = $rt_classWithoutFields(oncipv_Cypher25Parser$AllPrivilegeTargetContext), +oncipv_Cypher25Parser$DBMSTargetContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$DBMSTargetContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$DBMSTargetContext(); + oncipv_Cypher25Parser$DBMSTargetContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$GraphVariableTargetContext = $rt_classWithoutFields(oncipv_Cypher25Parser$AllPrivilegeTargetContext), +oncipv_Cypher25Parser$GraphVariableTargetContext_GRAPH = $this => { + return oncip_AstRuleCtx_getToken($this, 116, 0); +}, +oncipv_Cypher25Parser$GraphVariableTargetContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$GraphVariableTargetContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$GraphVariableTargetContext(); + oncipv_Cypher25Parser$GraphVariableTargetContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$DefaultTargetContext = $rt_classWithoutFields(oncipv_Cypher25Parser$AllPrivilegeTargetContext), +oncipv_Cypher25Parser$DefaultTargetContext_DATABASE = $this => { + return oncip_AstRuleCtx_getToken($this, 61, 0); +}, +oncipv_Cypher25Parser$DefaultTargetContext_GRAPH = $this => { + return oncip_AstRuleCtx_getToken($this, 116, 0); }, -oncipv_Cypher25Parser_enclosedPropertyList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$EnclosedPropertyListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 380, 190); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2519); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2520); - oncipv_Cypher25Parser_property($this); - oavr_Recognizer_setState($this, 2527); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 2521); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 2522); - oncipv_Cypher25Parser_variable($this); - oavr_Recognizer_setState($this, 2523); - oncipv_Cypher25Parser_property($this); - oavr_Recognizer_setState($this, 2529); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DefaultTargetContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_alterCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 382, 191); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2530); - oavr_Parser_match($this, 19); - oavr_Recognizer_setState($this, 2536); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 2531); - oncipv_Cypher25Parser_alterAlias($this); - break e; - case 59: - oavr_Recognizer_setState($this, 2532); - oncipv_Cypher25Parser_alterCurrentUser($this); - break e; - case 61: - oavr_Recognizer_setState($this, 2533); - oncipv_Cypher25Parser_alterDatabase($this); - break e; - case 242: - oavr_Recognizer_setState($this, 2535); - oncipv_Cypher25Parser_alterServer($this); - break e; - case 285: - oavr_Recognizer_setState($this, 2534); - oncipv_Cypher25Parser_alterUser($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DefaultTargetContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$DefaultTargetContext(); + oncipv_Cypher25Parser$DefaultTargetContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_renameCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RenameCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 384, 192); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2538); - oavr_Parser_match($this, 215); - oavr_Recognizer_setState($this, 2542); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 229: - oavr_Recognizer_setState($this, 2539); - oncipv_Cypher25Parser_renameRole($this); - break e; - case 242: - oavr_Recognizer_setState($this, 2540); - oncipv_Cypher25Parser_renameServer($this); - break e; - case 285: - oavr_Recognizer_setState($this, 2541); - oncipv_Cypher25Parser_renameUser($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ActionForDBMSContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ActionForDBMSContext_getRuleIndex = $this => { + return 244; }, -oncipv_Cypher25Parser_grantCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GrantCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 386, 193); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2544); - oavr_Parser_match($this, 115); - oavr_Recognizer_setState($this, 2555); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 289, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 2546); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 126) { - oavr_Recognizer_setState($this, 2545); - oavr_Parser_match($this, 126); - } - oavr_Recognizer_setState($this, 2548); - oncipv_Cypher25Parser_privilege($this); - oavr_Recognizer_setState($this, 2549); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 2550); - oncipv_Cypher25Parser_roleNames($this); - break e; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2552); - oncipv_Cypher25Parser_roleToken($this); - oavr_Recognizer_setState($this, 2553); - oncipv_Cypher25Parser_grantRole($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext_getRuleIndex = $this => { + return 240; }, -oncipv_Cypher25Parser_denyCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DenyCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 388, 194); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2557); - oavr_Parser_match($this, 70); - oavr_Recognizer_setState($this, 2559); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 126) { - oavr_Recognizer_setState($this, 2558); - oavr_Parser_match($this, 126); - } - oavr_Recognizer_setState($this, 2561); - oncipv_Cypher25Parser_privilege($this); - oavr_Recognizer_setState($this, 2562); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 2563); - oncipv_Cypher25Parser_roleNames($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$GraphScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GraphScopeContext_getRuleIndex = $this => { + return 279; }, -oncipv_Cypher25Parser_revokeCommand = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RevokeCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 390, 195); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2565); - oavr_Parser_match($this, 228); - oavr_Recognizer_setState($this, 2579); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 293, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 2567); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 70 && $_la != 115)) { - oavr_Recognizer_setState($this, 2566); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 70 && $_la != 115) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2570); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 126) { - oavr_Recognizer_setState($this, 2569); - oavr_Parser_match($this, 126); - } - oavr_Recognizer_setState($this, 2572); - oncipv_Cypher25Parser_privilege($this); - oavr_Recognizer_setState($this, 2573); - oavr_Parser_match($this, 110); - oavr_Recognizer_setState($this, 2574); - oncipv_Cypher25Parser_roleNames($this); - break e; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2576); - oncipv_Cypher25Parser_roleToken($this); - oavr_Recognizer_setState($this, 2577); - oncipv_Cypher25Parser_revokeRole($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$GraphQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GraphQualifierContext_symbolicNameString = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); }, -oncipv_Cypher25Parser_userNames = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UserNamesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 392, 196); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2581); - oncipv_Cypher25Parser_symbolicNameOrStringParameterList($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$GraphQualifierContext_getRuleIndex = $this => { + return 273; }, -oncipv_Cypher25Parser_roleNames = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RoleNamesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 394, 197); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2583); - oncipv_Cypher25Parser_symbolicNameOrStringParameterList($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$PropertiesResourceContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PropertiesResourceContext_getRuleIndex = $this => { + return 271; }, -oncipv_Cypher25Parser_roleToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RoleTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 396, 198); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2585); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 229 && $_la != 230) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelsResourceContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelsResourceContext_getRuleIndex = $this => { + return 270; }, -oncipv_Cypher25Parser_enableServerCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$EnableServerCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 398, 199); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2587); - oavr_Parser_match($this, 89); - oavr_Recognizer_setState($this, 2588); - oavr_Parser_match($this, 242); - oavr_Recognizer_setState($this, 2589); - oncipv_Cypher25Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2591); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { - oavr_Recognizer_setState($this, 2590); - oncipv_Cypher25Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$PasswordTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PasswordTokenContext_getRuleIndex = $this => { + return 249; }, -oncipv_Cypher25Parser_alterServer = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterServerContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 400, 200); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2593); - oavr_Parser_match($this, 242); - oavr_Recognizer_setState($this, 2594); - oncipv_Cypher25Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2595); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 2596); - oncipv_Cypher25Parser_commandOptions($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SettingQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SettingQualifierContext_getRuleIndex = $this => { + return 263; +}; +function oncipv_Cypher25Parser$ParameterNameContext() { + oncip_AstRuleCtx.call(this); + this.$paramType = null; +} +let oncipv_Cypher25Parser$ParameterNameContext_getRuleIndex = $this => { + return 132; }, -oncipv_Cypher25Parser_renameServer = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RenameServerContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 402, 201); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2598); - oavr_Parser_match($this, 242); - oavr_Recognizer_setState($this, 2599); - oncipv_Cypher25Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2600); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 2601); - oncipv_Cypher25Parser_stringOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$WhereClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$WhereClauseContext_getRuleIndex = $this => { + return 18; }, -oncipv_Cypher25Parser_dropServer = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropServerContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 404, 202); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2603); - oavr_Parser_match($this, 242); - oavr_Recognizer_setState($this, 2604); - oncipv_Cypher25Parser_stringOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$YieldClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$YieldClauseContext_yieldItem = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$YieldItemContext)); }, -oncipv_Cypher25Parser_showServers = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowServersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 406, 203); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2606); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 242 && $_la != 243) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2608); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2607); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$YieldClauseContext_getRuleIndex = $this => { + return 152; }, -oncipv_Cypher25Parser_allocationCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AllocationCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 408, 204); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2611); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 84) { - oavr_Recognizer_setState($this, 2610); - oavr_Parser_match($this, 84); - } - e: { - oavr_Recognizer_setState($this, 2615); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 66: - oavr_Recognizer_setState($this, 2613); - oncipv_Cypher25Parser_deallocateDatabaseFromServers($this); - break e; - case 213: - oavr_Recognizer_setState($this, 2614); - oncipv_Cypher25Parser_reallocateDatabases($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ComposableShowCommandClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ComposableShowCommandClausesContext_getRuleIndex = $this => { + return 156; +}, +oncipv_Cypher25Parser$StringListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StringListContext_getRuleIndex = $this => { + return 316; +}, +oncipv_Cypher25Parser$ReturnBodyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ReturnBodyContext_getRuleIndex = $this => { + return 9; +}, +oncipv_Cypher25Parser$PatternListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PatternListContext_getRuleIndex = $this => { + return 46; +}, +oncipv_Cypher25Parser$InsertPatternListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$InsertPatternListContext_getRuleIndex = $this => { + return 47; +}, +oncipv_Cypher25Parser$SetItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SetItemContext_getRuleIndex = $this => { + return 23; +}, +oncipv_Cypher25Parser$SetPropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), +oncipv_Cypher25Parser$SetPropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$SetPropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$SetPropContext(); + oncipv_Cypher25Parser$SetPropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$SetDynamicPropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), +oncipv_Cypher25Parser$SetDynamicPropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$SetDynamicPropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$SetDynamicPropContext(); + oncipv_Cypher25Parser$SetDynamicPropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$SetPropsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), +oncipv_Cypher25Parser$SetPropsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$SetPropsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$SetPropsContext(); + oncipv_Cypher25Parser$SetPropsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$AddPropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), +oncipv_Cypher25Parser$AddPropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$AddPropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$AddPropContext(); + oncipv_Cypher25Parser$AddPropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$SetLabelsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), +oncipv_Cypher25Parser$SetLabelsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$SetLabelsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$SetLabelsContext(); + oncipv_Cypher25Parser$SetLabelsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$SetLabelsIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), +oncipv_Cypher25Parser$SetLabelsIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$SetLabelsIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$SetLabelsIsContext(); + oncipv_Cypher25Parser$SetLabelsIsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$RemoveItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RemoveItemContext_getRuleIndex = $this => { + return 25; +}, +oncipv_Cypher25Parser$RemovePropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$RemoveItemContext), +oncipv_Cypher25Parser$RemovePropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$RemovePropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$RemovePropContext(); + oncipv_Cypher25Parser$RemovePropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$RemoveDynamicPropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$RemoveItemContext), +oncipv_Cypher25Parser$RemoveDynamicPropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$RemoveDynamicPropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$RemoveDynamicPropContext(); + oncipv_Cypher25Parser$RemoveDynamicPropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$RemoveLabelsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$RemoveItemContext), +oncipv_Cypher25Parser$RemoveLabelsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$RemoveLabelsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$RemoveLabelsContext(); + oncipv_Cypher25Parser$RemoveLabelsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$RemoveLabelsIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$RemoveItemContext), +oncipv_Cypher25Parser$RemoveLabelsIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$RemoveLabelsIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$RemoveLabelsIsContext(); + oncipv_Cypher25Parser$RemoveLabelsIsContext__init_(var_1, var_0); + return var_1; +}; +let oncipv_Cypher25Parser$MatchModeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$MatchModeContext_getRuleIndex = $this => { + return 28; +}, +oncipv_Cypher25Parser$HintContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$HintContext_nonEmptyNameList = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$NonEmptyNameListContext), 0); +}, +oncipv_Cypher25Parser$HintContext_variable = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); +}, +oncipv_Cypher25Parser$HintContext_labelOrRelType = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$LabelOrRelTypeContext), 0); +}, +oncipv_Cypher25Parser$HintContext_LPAREN = $this => { + return oncip_AstRuleCtx_getToken($this, 151, 0); +}, +oncipv_Cypher25Parser$HintContext_getRuleIndex = $this => { + return 29; +}, +oncipv_Cypher25Parser$MergeActionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$MergeActionContext_getRuleIndex = $this => { + return 31; +}, +oncipv_Cypher25Parser$PatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PatternContext_getRuleIndex = $this => { + return 48; +}, +oncipv_Cypher25Parser$ProcedureNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ProcedureNameContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); }, -oncipv_Cypher25Parser_deallocateDatabaseFromServers = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 410, 205); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2617); - oavr_Parser_match($this, 66); - oavr_Recognizer_setState($this, 2618); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 61 && $_la != 62) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2619); - oavr_Parser_match($this, 110); - oavr_Recognizer_setState($this, 2620); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 242 && $_la != 243) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2621); - oncipv_Cypher25Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2626); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 2622); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 2623); - oncipv_Cypher25Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2628); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ProcedureNameContext_getRuleIndex = $this => { + return 34; }, -oncipv_Cypher25Parser_reallocateDatabases = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ReallocateDatabasesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 412, 206); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2629); - oavr_Parser_match($this, 213); - oavr_Recognizer_setState($this, 2630); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 61 && $_la != 62) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ProcedureArgumentContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ProcedureArgumentContext_expression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); }, -oncipv_Cypher25Parser_createRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 414, 207); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2632); - oavr_Parser_match($this, 229); - oavr_Recognizer_setState($this, 2633); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2637); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2634); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2635); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 2636); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 2643); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2639); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 2640); - oavr_Parser_match($this, 54); - oavr_Recognizer_setState($this, 2641); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2642); - oncipv_Cypher25Parser_commandNameExpression($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ProcedureArgumentContext_getRuleIndex = $this => { + return 35; }, -oncipv_Cypher25Parser_dropRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 416, 208); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2645); - oavr_Parser_match($this, 229); - oavr_Recognizer_setState($this, 2646); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2649); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2647); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2648); - oavr_Parser_match($this, 101); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ProcedureResultItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ProcedureResultItemContext_variable = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); }, -oncipv_Cypher25Parser_renameRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RenameRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 418, 209); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2651); - oavr_Parser_match($this, 229); - oavr_Recognizer_setState($this, 2652); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2655); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2653); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2654); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 2657); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 2658); - oncipv_Cypher25Parser_commandNameExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ProcedureResultItemContext_getRuleIndex = $this => { + return 36; }, -oncipv_Cypher25Parser_showRoles = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowRolesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 420, 210); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2661); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 196)) { - oavr_Recognizer_setState($this, 2660); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 196) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2663); - oncipv_Cypher25Parser_roleToken($this); - oavr_Recognizer_setState($this, 2666); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 295) { - oavr_Recognizer_setState($this, 2664); - oavr_Parser_match($this, 295); - oavr_Recognizer_setState($this, 2665); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 285 && $_la != 286) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2669); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2668); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SubqueryScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SubqueryScopeContext_getRuleIndex = $this => { + return 40; }, -oncipv_Cypher25Parser_grantRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GrantRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 422, 211); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2671); - oncipv_Cypher25Parser_roleNames($this); - oavr_Recognizer_setState($this, 2672); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 2673); - oncipv_Cypher25Parser_userNames($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext)); }, -oncipv_Cypher25Parser_revokeRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RevokeRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 424, 212); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2675); - oncipv_Cypher25Parser_roleNames($this); - oavr_Recognizer_setState($this, 2676); - oavr_Parser_match($this, 110); - oavr_Recognizer_setState($this, 2677); - oncipv_Cypher25Parser_userNames($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext)); }, -oncipv_Cypher25Parser_createUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 426, 213); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2679); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 2680); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2684); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2681); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2682); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 2683); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 2695); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - e: { - oavr_Recognizer_setState($this, 2686); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 2693); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 307, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2688); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 2689); - oncipv_Cypher25Parser_passwordChangeRequired($this); - break e; - case 3: - oavr_Recognizer_setState($this, 2690); - oncipv_Cypher25Parser_userStatus($this); - break e; - case 4: - oavr_Recognizer_setState($this, 2691); - oncipv_Cypher25Parser_homeDatabase($this); - break e; - case 5: - oavr_Recognizer_setState($this, 2692); - oncipv_Cypher25Parser_setAuthClause($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2687); - oncipv_Cypher25Parser_password($this); - } - oavr_Recognizer_setState($this, 2697); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 244) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext)); }, -oncipv_Cypher25Parser_dropUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 428, 214); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2699); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 2700); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2703); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2701); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2702); - oavr_Parser_match($this, 101); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_getRuleIndex = $this => { + return 41; }, -oncipv_Cypher25Parser_renameUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RenameUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 430, 215); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2705); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 2706); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2709); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2707); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2708); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 2711); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 2712); - oncipv_Cypher25Parser_commandNameExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LimitContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LimitContext_getRuleIndex = $this => { + return 17; }, -oncipv_Cypher25Parser_alterCurrentUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterCurrentUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 432, 216); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2714); - oavr_Parser_match($this, 59); - oavr_Recognizer_setState($this, 2715); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 2716); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 2717); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 2718); - oavr_Parser_match($this, 110); - oavr_Recognizer_setState($this, 2719); - oncipv_Cypher25Parser_passwordExpression($this); - oavr_Recognizer_setState($this, 2720); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 2721); - oncipv_Cypher25Parser_passwordExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SkipContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SkipContext_getRuleIndex = $this => { + return 16; }, -oncipv_Cypher25Parser_alterUser = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 434, 217); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2723); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 2724); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2727); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 2725); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 2726); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 2742); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - e: { - f: while (true) { - if ($_la != 220) - break e; - g: { - oavr_Recognizer_setState($this, 2729); - oavr_Parser_match($this, 220); - oavr_Recognizer_setState($this, 2738); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 18: - oavr_Recognizer_setState($this, 2732); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 2733); - oavr_Parser_match($this, 28); - oavr_Recognizer_setState($this, 2735); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 206 && $_la != 207) - break g; - oavr_Recognizer_setState($this, 2734); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 206 && $_la != 207) { - $this.$_errHandler.$recoverInline($this); - break g; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break g; - case 28: - break; - case 122: - oavr_Recognizer_setState($this, 2730); - oavr_Parser_match($this, 122); - oavr_Recognizer_setState($this, 2731); - oavr_Parser_match($this, 61); - break g; - default: - break f; - } - oavr_Recognizer_setState($this, 2737); - oncipv_Cypher25Parser_removeNamedProvider($this); - } - oavr_Recognizer_setState($this, 2744); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 2756); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 244) { - h: { - oavr_Recognizer_setState($this, 2745); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 2752); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 315, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2747); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 2748); - oncipv_Cypher25Parser_passwordChangeRequired($this); - break h; - case 3: - oavr_Recognizer_setState($this, 2749); - oncipv_Cypher25Parser_userStatus($this); - break h; - case 4: - oavr_Recognizer_setState($this, 2750); - oncipv_Cypher25Parser_homeDatabase($this); - break h; - case 5: - oavr_Recognizer_setState($this, 2751); - oncipv_Cypher25Parser_setAuthClause($this); - break h; - default: - break h; - } - oavr_Recognizer_setState($this, 2746); - oncipv_Cypher25Parser_password($this); - } - oavr_Recognizer_setState($this, 2758); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$OrderByContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$OrderByContext_getRuleIndex = $this => { + return 15; }, -oncipv_Cypher25Parser_removeNamedProvider = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RemoveNamedProviderContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 436, 218); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2759); - oavr_Parser_match($this, 28); - oavr_Recognizer_setState($this, 2761); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 206 && $_la != 207)) { - oavr_Recognizer_setState($this, 2760); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 206 && $_la != 207) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - e: { - oavr_Recognizer_setState($this, 2766); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 8: - case 9: - oavr_Recognizer_setState($this, 2763); - oncipv_Cypher25Parser_stringLiteral($this); - break e; - case 76: - oavr_Recognizer_setState($this, 2765); - oncipv_Cypher25Parser_parameter($this, $rt_s(708)); - break e; - case 142: - oavr_Recognizer_setState($this, 2764); - oncipv_Cypher25Parser_stringListLiteral($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$FunctionArgumentContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$FunctionArgumentContext_expression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); }, -oncipv_Cypher25Parser_password = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PasswordContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 438, 219); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2769); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 93 && $_la != 192)) { - oavr_Recognizer_setState($this, 2768); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 93 && $_la != 192) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2771); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 2772); - oncipv_Cypher25Parser_passwordExpression($this); - oavr_Recognizer_setState($this, 2774); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 41) { - oavr_Recognizer_setState($this, 2773); - oncipv_Cypher25Parser_passwordChangeRequired($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$FunctionArgumentContext_getRuleIndex = $this => { + return 135; +}, +oncipv_Cypher5Parser$FunctionNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$FunctionNameContext_getRuleIndex = $this => { + return 136; +}, +oncipv_Cypher5Parser$ExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ExpressionContext_getRuleIndex = $this => { + return 88; +}, +oncipv_Cypher5Parser$EscapedSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$EscapedSymbolicNameStringContext_getRuleIndex = $this => { + return 332; }, -oncipv_Cypher25Parser_passwordOnly = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PasswordOnlyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 440, 220); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2777); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 93 && $_la != 192)) { - oavr_Recognizer_setState($this, 2776); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 93 && $_la != 192) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2779); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 2780); - oncipv_Cypher25Parser_passwordExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext_getRuleIndex = $this => { + return 333; }, -oncipv_Cypher25Parser_passwordExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PasswordExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 442, 221); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2784); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 8: - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2782); - oncipv_Cypher25Parser_stringLiteral($this); - break e; - case 76: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2783); - oncipv_Cypher25Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$StringListLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StringListLiteralContext_getRuleIndex = $this => { + return 320; +}, +oncipv_Cypher5Parser$UserAuthAttributeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UserAuthAttributeContext_ID = $this => { + return oncip_AstRuleCtx_getToken($this, 127, 0); +}, +oncipv_Cypher5Parser$UserAuthAttributeContext_passwordOnly = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PasswordOnlyContext), 0); }; -let oncipv_Cypher25Parser_passwordChangeRequired = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PasswordChangeRequiredContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 444, 222); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2786); - oavr_Parser_match($this, 41); - oavr_Recognizer_setState($this, 2788); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 175) { - oavr_Recognizer_setState($this, 2787); - oavr_Parser_match($this, 175); - } - oavr_Recognizer_setState($this, 2790); - oavr_Parser_match($this, 225); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +let oncipv_Cypher5Parser$UserAuthAttributeContext_passwordChangeRequired = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PasswordChangeRequiredContext), 0); }, -oncipv_Cypher25Parser_userStatus = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UserStatusContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 446, 223); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2792); - oavr_Parser_match($this, 255); - oavr_Recognizer_setState($this, 2793); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 12 && $_la != 259) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$UserAuthAttributeContext_getRuleIndex = $this => { + return 232; }, -oncipv_Cypher25Parser_homeDatabase = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$HomeDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 448, 224); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2795); - oavr_Parser_match($this, 122); - oavr_Recognizer_setState($this, 2796); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 2797); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$MapContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$MapContext_getRuleIndex = $this => { + return 327; }, -oncipv_Cypher25Parser_setAuthClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SetAuthClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 450, 225); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2799); - oavr_Parser_match($this, 28); - oavr_Recognizer_setState($this, 2801); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 206) { - oavr_Recognizer_setState($this, 2800); - oavr_Parser_match($this, 206); - } - oavr_Recognizer_setState($this, 2803); - oncipv_Cypher25Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 2804); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 2807); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 2805); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 2806); - oncipv_Cypher25Parser_userAuthAttribute($this); - oavr_Recognizer_setState($this, 2809); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 244) - continue; - else - break; - } - oavr_Recognizer_setState($this, 2811); - oavr_Parser_match($this, 211); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$FulltextNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$FulltextNodePatternContext_getRuleIndex = $this => { + return 189; }, -oncipv_Cypher25Parser_userAuthAttribute = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UserAuthAttributeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 452, 226); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2818); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 326, $this.$_ctx)) { - case 1: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2813); - oavr_Parser_match($this, 123); - oavr_Recognizer_setState($this, 2814); - oncipv_Cypher25Parser_stringOrParameterExpression($this); - break e; - case 2: - break; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2816); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 2817); - oncipv_Cypher25Parser_passwordChangeRequired($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2815); - oncipv_Cypher25Parser_passwordOnly($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$FulltextRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$FulltextRelPatternContext_getRuleIndex = $this => { + return 190; }, -oncipv_Cypher25Parser_showUsers = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowUsersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 454, 227); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2820); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 285 && $_la != 286) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2823); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 295) { - oavr_Recognizer_setState($this, 2821); - oavr_Parser_match($this, 295); - oavr_Recognizer_setState($this, 2822); - oavr_Parser_match($this, 28); - } - oavr_Recognizer_setState($this, 2826); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2825); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$EnclosedPropertyListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$EnclosedPropertyListContext_property = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$PropertyContext)); }, -oncipv_Cypher25Parser_showCurrentUser = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowCurrentUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 456, 228); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2828); - oavr_Parser_match($this, 59); - oavr_Recognizer_setState($this, 2829); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 2831); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2830); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$EnclosedPropertyListContext_getRuleIndex = $this => { + return 196; }, -oncipv_Cypher25Parser_showSupportedPrivileges = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowSupportedPrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 458, 229); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2833); - oavr_Parser_match($this, 258); - oavr_Recognizer_setState($this, 2834); - oncipv_Cypher25Parser_privilegeToken($this); - oavr_Recognizer_setState($this, 2836); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2835); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$LookupIndexNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LookupIndexNodePatternContext_getRuleIndex = $this => { + return 192; }, -oncipv_Cypher25Parser_showPrivileges = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowPrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 460, 230); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2839); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 18) { - oavr_Recognizer_setState($this, 2838); - oavr_Parser_match($this, 18); - } - oavr_Recognizer_setState($this, 2841); - oncipv_Cypher25Parser_privilegeToken($this); - oavr_Recognizer_setState($this, 2843); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2842); - oncipv_Cypher25Parser_privilegeAsCommand($this); - } - oavr_Recognizer_setState($this, 2846); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2845); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$LookupIndexRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LookupIndexRelPatternContext_getRuleIndex = $this => { + return 193; }, -oncipv_Cypher25Parser_showRolePrivileges = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowRolePrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 462, 231); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2848); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 229 && $_la != 230) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2849); - oncipv_Cypher25Parser_roleNames($this); - oavr_Recognizer_setState($this, 2850); - oncipv_Cypher25Parser_privilegeToken($this); - oavr_Recognizer_setState($this, 2852); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2851); - oncipv_Cypher25Parser_privilegeAsCommand($this); - } - oavr_Recognizer_setState($this, 2855); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2854); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$VariableContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$VariableContext_getRuleIndex = $this => { + return 138; }, -oncipv_Cypher25Parser_showUserPrivileges = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowUserPrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 464, 232); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2857); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 285 && $_la != 286) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - e: { - oavr_Recognizer_setState($this, 2859); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 336, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2858); - oncipv_Cypher25Parser_userNames($this); - } - oavr_Recognizer_setState($this, 2861); - oncipv_Cypher25Parser_privilegeToken($this); - oavr_Recognizer_setState($this, 2863); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2862); - oncipv_Cypher25Parser_privilegeAsCommand($this); - } - oavr_Recognizer_setState($this, 2866); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 2865); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$LeftArrowContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LeftArrowContext_getRuleIndex = $this => { + return 73; }, -oncipv_Cypher25Parser_privilegeAsCommand = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PrivilegeAsCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 466, 233); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2868); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 2870); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 228) { - oavr_Recognizer_setState($this, 2869); - oavr_Parser_match($this, 228); - } - oavr_Recognizer_setState($this, 2872); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 47 && $_la != 48) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ArrowLineContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ArrowLineContext_getRuleIndex = $this => { + return 74; }, -oncipv_Cypher25Parser_privilegeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PrivilegeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 468, 234); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2874); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 200 && $_la != 201) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$RelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RelTypeContext_getRuleIndex = $this => { + return 68; +}, +oncipv_Cypher5Parser$RightArrowContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RightArrowContext_getRuleIndex = $this => { + return 75; +}, +oncipv_Cypher5Parser$TypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$TypeContext_getRuleIndex = $this => { + return 140; +}, +oncipv_Cypher5Parser$UIntOrIntParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UIntOrIntParameterContext_UNSIGNED_DECIMAL_INTEGER = $this => { + return oncip_AstRuleCtx_getToken($this, 5, 0); +}, +oncipv_Cypher5Parser$UIntOrIntParameterContext_getRuleIndex = $this => { + return 325; +}, +oncipv_Cypher5Parser$PrimaryTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PrimaryTokenContext_getRuleIndex = $this => { + return 289; +}, +oncipv_Cypher5Parser$SecondaryTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SecondaryTokenContext_getRuleIndex = $this => { + return 291; +}, +oncipv_Cypher5Parser$DatabaseScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DatabaseScopeContext_DEFAULT = $this => { + return oncip_AstRuleCtx_getToken($this, 71, 0); +}, +oncipv_Cypher5Parser$DatabaseScopeContext_getRuleIndex = $this => { + return 284; +}, +oncipv_Cypher5Parser$UserQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UserQualifierContext_userNames = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$UserNamesContext), 0); +}, +oncipv_Cypher5Parser$UserQualifierContext_getRuleIndex = $this => { + return 266; +}, +oncipv_Cypher5Parser$ConstraintTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ConstraintTokenContext_getRuleIndex = $this => { + return 264; +}, +oncipv_Cypher5Parser$IndexTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$IndexTokenContext_getRuleIndex = $this => { + return 263; +}, +oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_BOOSTED = $this => { + return oncip_AstRuleCtx_getToken($this, 34, 0); +}, +oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_getRuleIndex = $this => { + return 260; +}, +oncipv_Cypher5Parser$AllPrivilegeTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AllPrivilegeTypeContext_getRuleIndex = $this => { + return 243; +}, +oncipv_Cypher5Parser$AllPrivilegeTargetContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$AllPrivilegeTargetContext_getRuleIndex = $this => { + return 244; +}, +oncipv_Cypher5Parser$DatabaseVariableTargetContext = $rt_classWithoutFields(oncipv_Cypher5Parser$AllPrivilegeTargetContext), +oncipv_Cypher5Parser$DatabaseVariableTargetContext_DATABASE = $this => { + return oncip_AstRuleCtx_getToken($this, 65, 0); +}, +oncipv_Cypher5Parser$DatabaseVariableTargetContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$DatabaseVariableTargetContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$DatabaseVariableTargetContext(); + oncipv_Cypher5Parser$DatabaseVariableTargetContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$DBMSTargetContext = $rt_classWithoutFields(oncipv_Cypher5Parser$AllPrivilegeTargetContext), +oncipv_Cypher5Parser$DBMSTargetContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$DBMSTargetContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$DBMSTargetContext(); + oncipv_Cypher5Parser$DBMSTargetContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$DefaultTargetContext = $rt_classWithoutFields(oncipv_Cypher5Parser$AllPrivilegeTargetContext), +oncipv_Cypher5Parser$DefaultTargetContext_DEFAULT = $this => { + return oncip_AstRuleCtx_getToken($this, 71, 0); +}, +oncipv_Cypher5Parser$DefaultTargetContext_HOME = $this => { + return oncip_AstRuleCtx_getToken($this, 126, 0); +}, +oncipv_Cypher5Parser$DefaultTargetContext_DATABASE = $this => { + return oncip_AstRuleCtx_getToken($this, 65, 0); +}, +oncipv_Cypher5Parser$DefaultTargetContext_GRAPH = $this => { + return oncip_AstRuleCtx_getToken($this, 120, 0); +}, +oncipv_Cypher5Parser$DefaultTargetContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$DefaultTargetContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$DefaultTargetContext(); + oncipv_Cypher5Parser$DefaultTargetContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$GraphVariableTargetContext = $rt_classWithoutFields(oncipv_Cypher5Parser$AllPrivilegeTargetContext), +oncipv_Cypher5Parser$GraphVariableTargetContext_GRAPH = $this => { + return oncip_AstRuleCtx_getToken($this, 120, 0); +}, +oncipv_Cypher5Parser$GraphVariableTargetContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$GraphVariableTargetContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$GraphVariableTargetContext(); + oncipv_Cypher5Parser$GraphVariableTargetContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ActionForDBMSContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ActionForDBMSContext_getRuleIndex = $this => { + return 250; +}, +oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext_getRuleIndex = $this => { + return 246; +}, +oncipv_Cypher5Parser$GraphScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GraphScopeContext_DEFAULT = $this => { + return oncip_AstRuleCtx_getToken($this, 71, 0); }, -oncipv_Cypher25Parser_privilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 470, 235); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2888); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - case 51: - case 52: - case 128: - case 129: - case 161: - case 253: - case 256: - case 261: - case 271: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2878); - oncipv_Cypher25Parser_databasePrivilege($this); - break e; - case 15: - case 19: - case 26: - case 49: - case 61: - case 98: - case 125: - case 200: - case 215: - case 229: - case 242: - case 285: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 2879); - oncipv_Cypher25Parser_dbmsPrivilege($this); - break e; - case 18: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2876); - oncipv_Cypher25Parser_allPrivilege($this); - break e; - case 57: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2877); - oncipv_Cypher25Parser_createPrivilege($this); - break e; - case 69: - case 156: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 2882); - oncipv_Cypher25Parser_qualifiedGraphPrivileges($this); - break e; - case 83: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 2880); - oncipv_Cypher25Parser_dropPrivilege($this); - break e; - case 148: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 2881); - oncipv_Cypher25Parser_loadPrivilege($this); - break e; - case 155: - case 212: - case 273: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 2883); - oncipv_Cypher25Parser_qualifiedGraphPrivilegesWithProperty($this); - break e; - case 220: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 2884); - oncipv_Cypher25Parser_removePrivilege($this); - break e; - case 244: - oavr_Parser_enterOuterAlt($this, $_localctx, 10); - oavr_Recognizer_setState($this, 2885); - oncipv_Cypher25Parser_setPrivilege($this); - break e; - case 249: - oavr_Parser_enterOuterAlt($this, $_localctx, 11); - oavr_Recognizer_setState($this, 2886); - oncipv_Cypher25Parser_showPrivilege($this); - break e; - case 297: - oavr_Parser_enterOuterAlt($this, $_localctx, 12); - oavr_Recognizer_setState($this, 2887); - oncipv_Cypher25Parser_writePrivilege($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$GraphScopeContext_getRuleIndex = $this => { + return 285; }, -oncipv_Cypher25Parser_allPrivilege = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AllPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 472, 236); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2890); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 2892); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$3 = $_la - 61 | 0; - if (!(!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17, 8388608)), Long_ZERO)) && $_la != 201)) { - oavr_Recognizer_setState($this, 2891); - oncipv_Cypher25Parser_allPrivilegeType($this); - } - oavr_Recognizer_setState($this, 2894); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2895); - oncipv_Cypher25Parser_allPrivilegeTarget($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$GraphQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GraphQualifierContext_symbolicNameString = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); }, -oncipv_Cypher25Parser_allPrivilegeType = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AllPrivilegeTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 474, 237); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2898); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 61 | 0; - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(17, 8388608)), Long_ZERO)) { - oavr_Recognizer_setState($this, 2897); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 61 | 0; - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(17, 8388608)), Long_ZERO)) { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else - $this.$_errHandler.$recoverInline($this); - } - oavr_Recognizer_setState($this, 2900); - oavr_Parser_match($this, 201); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$GraphQualifierContext_getRuleIndex = $this => { + return 279; }, -oncipv_Cypher25Parser_allPrivilegeTarget = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher25Parser$AllPrivilegeTargetContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 476, 238); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 2915); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 61: - case 62: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$DatabaseVariableTargetContext; - var$2 = $re; - oncipv_Cypher25Parser$DatabaseVariableTargetContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 2904); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 61) { - var$2 = $re; - if ($_la != 62) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break f; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2907); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - var$2 = $re; - oavr_Recognizer_setState($this, 2906); - oncipv_Cypher25Parser_symbolicAliasNameList($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - var$2 = $re; - oavr_Recognizer_setState($this, 2905); - oavr_Parser_match($this, 265); - break e; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - case 65: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$DBMSTargetContext; - var$2 = $re; - oncipv_Cypher25Parser$DBMSTargetContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 2914); - oavr_Parser_match($this, 65); - break e; - case 116: - case 117: - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$GraphVariableTargetContext; - var$2 = $re; - oncipv_Cypher25Parser$GraphVariableTargetContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 2909); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 116) { - var$2 = $re; - if ($_la != 117) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break g; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2912); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - var$2 = $re; - oavr_Recognizer_setState($this, 2911); - oncipv_Cypher25Parser_symbolicAliasNameList($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - var$2 = $re; - oavr_Recognizer_setState($this, 2910); - oavr_Parser_match($this, 265); - break e; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - case 122: - var$2 = $_localctx; - $re = new oncipv_Cypher25Parser$DefaultTargetContext; - var$2 = $re; - oncipv_Cypher25Parser$DefaultTargetContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 2902); - oavr_Parser_match($this, 122); - oavr_Recognizer_setState($this, 2903); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 61) { - var$2 = $re; - if ($_la != 116) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break e; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - default: - } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; +oncipv_Cypher5Parser$PropertiesResourceContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PropertiesResourceContext_getRuleIndex = $this => { + return 277; +}, +oncipv_Cypher5Parser$LabelsResourceContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelsResourceContext_getRuleIndex = $this => { + return 276; +}, +oncipv_Cypher5Parser$PasswordTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PasswordTokenContext_getRuleIndex = $this => { + return 255; +}, +oncipv_Cypher5Parser$SettingQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SettingQualifierContext_getRuleIndex = $this => { + return 269; +}, +oncipv_Cypher5Parser$PropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PropertyContext_getRuleIndex = $this => { + return 102; +}; +function oncipv_Cypher5Parser$ParameterNameContext() { + oncip_AstRuleCtx.call(this); + this.$paramType0 = null; +} +let oncipv_Cypher5Parser$ParameterNameContext_getRuleIndex = $this => { + return 133; +}, +oncipv_Cypher5Parser$WhereClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$WhereClauseContext_getRuleIndex = $this => { + return 19; +}, +oncipv_Cypher5Parser$YieldClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$YieldClauseContext_yieldItem = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$YieldItemContext)); +}, +oncipv_Cypher5Parser$YieldClauseContext_getRuleIndex = $this => { + return 153; }, -oncipv_Cypher25Parser_createPrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreatePrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 478, 239); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2917); - oavr_Parser_match($this, 57); - oavr_Recognizer_setState($this, 2930); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - case 49: - case 61: - case 229: - case 285: - oavr_Recognizer_setState($this, 2922); - oncipv_Cypher25Parser_actionForDBMS($this); - oavr_Recognizer_setState($this, 2923); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2924); - oavr_Parser_match($this, 65); - break e; - case 51: - case 52: - case 128: - case 129: - case 168: - oavr_Recognizer_setState($this, 2918); - oncipv_Cypher25Parser_createPrivilegeForDatabase($this); - oavr_Recognizer_setState($this, 2919); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2920); - oncipv_Cypher25Parser_databaseScope($this); - break e; - case 181: - oavr_Recognizer_setState($this, 2926); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2927); - oncipv_Cypher25Parser_graphScope($this); - oavr_Recognizer_setState($this, 2928); - oncipv_Cypher25Parser_graphQualifier($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShowBriefAndYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShowBriefAndYieldContext_BRIEF = $this => { + return oncip_AstRuleCtx_getToken($this, 37, 0); }, -oncipv_Cypher25Parser_createPrivilegeForDatabase = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 480, 240); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2937); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 347, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2933); - oncipv_Cypher25Parser_constraintToken($this); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2934); - oncipv_Cypher25Parser_createNodePrivilegeToken($this); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 2935); - oncipv_Cypher25Parser_createRelPrivilegeToken($this); - break e; - case 5: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 2936); - oncipv_Cypher25Parser_createPropertyPrivilegeToken($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2932); - oncipv_Cypher25Parser_indexToken($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShowBriefAndYieldContext_VERBOSE = $this => { + return oncip_AstRuleCtx_getToken($this, 297, 0); }, -oncipv_Cypher25Parser_createNodePrivilegeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 482, 241); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2939); - oavr_Parser_match($this, 168); - oavr_Recognizer_setState($this, 2941); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 169) { - oavr_Recognizer_setState($this, 2940); - oavr_Parser_match($this, 169); - } - oavr_Recognizer_setState($this, 2943); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 138 && $_la != 139) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShowBriefAndYieldContext_getRuleIndex = $this => { + return 158; }, -oncipv_Cypher25Parser_createRelPrivilegeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 484, 242); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2945); - oavr_Parser_match($this, 168); - oavr_Recognizer_setState($this, 2947); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 218) { - oavr_Recognizer_setState($this, 2946); - oavr_Parser_match($this, 218); - } - oavr_Recognizer_setState($this, 2949); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 276 && $_la != 278) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ConstraintExistTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ConstraintExistTypeContext_getRuleIndex = $this => { + return 164; }, -oncipv_Cypher25Parser_createPropertyPrivilegeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 486, 243); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2951); - oavr_Parser_match($this, 168); - oavr_Recognizer_setState($this, 2953); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 205) { - oavr_Recognizer_setState($this, 2952); - oavr_Parser_match($this, 205); - } - oavr_Recognizer_setState($this, 2955); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 161 && $_la != 162) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ComposableShowCommandClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ComposableShowCommandClausesContext_getRuleIndex = $this => { + return 157; }, -oncipv_Cypher25Parser_actionForDBMS = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ActionForDBMSContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 488, 244); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2964); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2957); - oavr_Parser_match($this, 15); - break e; - case 49: - case 61: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2959); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) { - oavr_Recognizer_setState($this, 2958); - oavr_Parser_match($this, 49); - } - oavr_Recognizer_setState($this, 2961); - oavr_Parser_match($this, 61); - break e; - case 229: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2962); - oavr_Parser_match($this, 229); - break e; - case 285: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 2963); - oavr_Parser_match($this, 285); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$StringListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StringListContext_getRuleIndex = $this => { + return 321; }, -oncipv_Cypher25Parser_dropPrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 490, 245); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2966); - oavr_Parser_match($this, 83); - oavr_Recognizer_setState($this, 2978); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - case 49: - case 61: - case 229: - case 285: - oavr_Recognizer_setState($this, 2974); - oncipv_Cypher25Parser_actionForDBMS($this); - oavr_Recognizer_setState($this, 2975); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2976); - oavr_Parser_match($this, 65); - break e; - case 51: - case 52: - case 128: - case 129: - f: { - oavr_Recognizer_setState($this, 2969); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 51: - case 52: - oavr_Recognizer_setState($this, 2968); - oncipv_Cypher25Parser_constraintToken($this); - break f; - case 128: - case 129: - oavr_Recognizer_setState($this, 2967); - oncipv_Cypher25Parser_indexToken($this); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 2971); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2972); - oncipv_Cypher25Parser_databaseScope($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ReturnBodyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ReturnBodyContext_getRuleIndex = $this => { + return 10; +}, +oncipv_Cypher5Parser$PatternListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PatternListContext_getRuleIndex = $this => { + return 47; +}, +oncipv_Cypher5Parser$InsertPatternListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$InsertPatternListContext_getRuleIndex = $this => { + return 48; +}, +oncipv_Cypher5Parser$SetItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SetItemContext_getRuleIndex = $this => { + return 24; +}, +oncipv_Cypher5Parser$SetPropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), +oncipv_Cypher5Parser$SetPropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$SetPropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$SetPropContext(); + oncipv_Cypher5Parser$SetPropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$SetDynamicPropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), +oncipv_Cypher5Parser$SetDynamicPropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$SetDynamicPropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$SetDynamicPropContext(); + oncipv_Cypher5Parser$SetDynamicPropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$SetPropsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), +oncipv_Cypher5Parser$SetPropsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$SetPropsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$SetPropsContext(); + oncipv_Cypher5Parser$SetPropsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$AddPropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), +oncipv_Cypher5Parser$AddPropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$AddPropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$AddPropContext(); + oncipv_Cypher5Parser$AddPropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$SetLabelsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), +oncipv_Cypher5Parser$SetLabelsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$SetLabelsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$SetLabelsContext(); + oncipv_Cypher5Parser$SetLabelsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$SetLabelsIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), +oncipv_Cypher5Parser$SetLabelsIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$SetLabelsIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$SetLabelsIsContext(); + oncipv_Cypher5Parser$SetLabelsIsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$RemoveItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RemoveItemContext_getRuleIndex = $this => { + return 26; +}, +oncipv_Cypher5Parser$RemovePropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$RemoveItemContext), +oncipv_Cypher5Parser$RemovePropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$RemovePropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$RemovePropContext(); + oncipv_Cypher5Parser$RemovePropContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$RemoveDynamicPropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$RemoveItemContext), +oncipv_Cypher5Parser$RemoveDynamicPropContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$RemoveDynamicPropContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$RemoveDynamicPropContext(); + oncipv_Cypher5Parser$RemoveDynamicPropContext__init_(var_1, var_0); + return var_1; +}; +let oncipv_Cypher5Parser$RemoveLabelsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$RemoveItemContext), +oncipv_Cypher5Parser$RemoveLabelsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$RemoveLabelsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$RemoveLabelsContext(); + oncipv_Cypher5Parser$RemoveLabelsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$RemoveLabelsIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$RemoveItemContext), +oncipv_Cypher5Parser$RemoveLabelsIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$RemoveLabelsIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$RemoveLabelsIsContext(); + oncipv_Cypher5Parser$RemoveLabelsIsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$MatchModeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$MatchModeContext_getRuleIndex = $this => { + return 29; +}, +oncipv_Cypher5Parser$HintContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$HintContext_nonEmptyNameList = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$NonEmptyNameListContext), 0); +}, +oncipv_Cypher5Parser$HintContext_variable = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); +}, +oncipv_Cypher5Parser$HintContext_labelOrRelType = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$LabelOrRelTypeContext), 0); +}, +oncipv_Cypher5Parser$HintContext_LPAREN = $this => { + return oncip_AstRuleCtx_getToken($this, 155, 0); +}, +oncipv_Cypher5Parser$HintContext_getRuleIndex = $this => { + return 30; +}, +oncipv_Cypher5Parser$MergeActionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$MergeActionContext_getRuleIndex = $this => { + return 32; +}, +oncipv_Cypher5Parser$PatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PatternContext_getRuleIndex = $this => { + return 49; +}, +oncipv_Cypher5Parser$ProcedureNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ProcedureNameContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +}, +oncipv_Cypher5Parser$ProcedureNameContext_getRuleIndex = $this => { + return 35; +}, +oncipv_Cypher5Parser$ProcedureArgumentContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ProcedureArgumentContext_expression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); +}, +oncipv_Cypher5Parser$ProcedureArgumentContext_getRuleIndex = $this => { + return 36; +}, +oncipv_Cypher5Parser$ProcedureResultItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ProcedureResultItemContext_variable = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); +}, +oncipv_Cypher5Parser$ProcedureResultItemContext_getRuleIndex = $this => { + return 37; +}, +oncipv_Cypher5Parser$SubqueryScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SubqueryScopeContext_getRuleIndex = $this => { + return 41; +}, +oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext)); +}, +oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext)); +}, +oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext)); +}, +oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_getRuleIndex = $this => { + return 42; +}, +oncipv_Cypher5Parser$LimitContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LimitContext_getRuleIndex = $this => { + return 18; +}, +oncipv_Cypher5Parser$SkipContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SkipContext_getRuleIndex = $this => { + return 17; +}, +oncipv_Cypher5Parser$OrderByContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$OrderByContext_getRuleIndex = $this => { + return 16; +}, +oncipv_Cypher25Parser$NamespaceContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NamespaceContext_getRuleIndex = $this => { + return 136; +}, +oncipv_Cypher25Parser$Expression11Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression11Context_getRuleIndex = $this => { + return 88; +}, +oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext_getRuleIndex = $this => { + return 327; +}, +oncipv_Cypher25Parser$StringOrParameterExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$StringOrParameterExpressionContext_stringLiteral = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0); +}, +oncipv_Cypher25Parser$StringOrParameterExpressionContext_getRuleIndex = $this => { + return 318; +}, +oncipv_Cypher25Parser$PasswordOnlyContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher25Parser$PasswordOnlyContext_getRuleIndex = $this => { + return 220; +}, +oncipv_Cypher25Parser$PropertyKeyNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PropertyKeyNameContext_getRuleIndex = $this => { + return 130; +}, +oncipv_Cypher25Parser$PropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PropertyContext_getRuleIndex = $this => { + return 101; +}, +oncipv_Cypher25Parser$TypePartContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$TypePartContext_typeName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$TypeNameContext), 0); +}, +oncipv_Cypher25Parser$TypePartContext_typeNullability = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$TypeNullabilityContext), 0); +}, +oncipv_Cypher25Parser$TypePartContext_getRuleIndex = $this => { + return 140; +}, +oncipv_Cypher25Parser$SymbolicAliasNameListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SymbolicAliasNameListContext_getRuleIndex = $this => { + return 312; +}, +oncipv_Cypher25Parser$AdminTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AdminTokenContext_getRuleIndex = $this => { + return 255; +}, +oncipv_Cypher25Parser$ProcedureTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ProcedureTokenContext_getRuleIndex = $this => { + return 256; +}, +oncipv_Cypher25Parser$ExecuteProcedureQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ExecuteProcedureQualifierContext_getRuleIndex = $this => { + return 262; +}, +oncipv_Cypher25Parser$ExecuteFunctionQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ExecuteFunctionQualifierContext_getRuleIndex = $this => { + return 261; +}, +oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext_getRuleIndex = $this => { + return 241; +}, +oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext_getRuleIndex = $this => { + return 242; +}, +oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext_getRuleIndex = $this => { + return 243; +}, +oncipv_Cypher25Parser$GraphQualifierTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GraphQualifierTokenContext_getRuleIndex = $this => { + return 274; +}, +oncipv_Cypher25Parser$NonEmptyStringListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NonEmptyStringListContext_getRuleIndex = $this => { + return 272; +}, +oncipv_Cypher25Parser$GlobsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GlobsContext_getRuleIndex = $this => { + return 264; +}, +oncipv_Cypher25Parser$YieldItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$YieldItemContext_getRuleIndex = $this => { + return 149; +}, +oncipv_Cypher25Parser$YieldSkipContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$YieldSkipContext_getRuleIndex = $this => { + return 150; +}, +oncipv_Cypher25Parser$YieldLimitContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$YieldLimitContext_getRuleIndex = $this => { + return 151; +}, +oncipv_Cypher25Parser$ReturnItemsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ReturnItemsContext_getRuleIndex = $this => { + return 11; +}, +oncipv_Cypher25Parser$InsertPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$InsertPatternContext_EQ = $this => { + return oncip_AstRuleCtx_getToken($this, 96, 0); +}, +oncipv_Cypher25Parser$InsertPatternContext_getRuleIndex = $this => { + return 49; +}, +oncipv_Cypher25Parser$PropertyExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PropertyExpressionContext_getRuleIndex = $this => { + return 103; +}, +oncipv_Cypher25Parser$DynamicPropertyExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DynamicPropertyExpressionContext_getRuleIndex = $this => { + return 104; +}, +oncipv_Cypher25Parser$NodeLabelsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NodeLabelsContext_getRuleIndex = $this => { + return 61; +}, +oncipv_Cypher25Parser$NodeLabelsIsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NodeLabelsIsContext_getRuleIndex = $this => { + return 62; +}; +let oncipv_Cypher25Parser$NonEmptyNameListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NonEmptyNameListContext_symbolicNameString = $this => { + return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); +}, +oncipv_Cypher25Parser$NonEmptyNameListContext_getRuleIndex = $this => { + return 138; +}, +oncipv_Cypher25Parser$LabelOrRelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelOrRelTypeContext_getRuleIndex = $this => { + return 68; +}, +oncipv_Cypher25Parser$SelectorContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SelectorContext_getRuleIndex = $this => { + return 54; +}, +oncipv_Cypher25Parser$AnyShortestPathContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), +oncipv_Cypher25Parser$AnyShortestPathContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$AnyShortestPathContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$AnyShortestPathContext(); + oncipv_Cypher25Parser$AnyShortestPathContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$AllShortestPathContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), +oncipv_Cypher25Parser$AllShortestPathContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$AllShortestPathContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$AllShortestPathContext(); + oncipv_Cypher25Parser$AllShortestPathContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$AnyPathContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), +oncipv_Cypher25Parser$AnyPathContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$AnyPathContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$AnyPathContext(); + oncipv_Cypher25Parser$AnyPathContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$AllPathContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), +oncipv_Cypher25Parser$AllPathContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$AllPathContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$AllPathContext(); + oncipv_Cypher25Parser$AllPathContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$ShortestGroupContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), +oncipv_Cypher25Parser$ShortestGroupContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$ShortestGroupContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ShortestGroupContext(); + oncipv_Cypher25Parser$ShortestGroupContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$AnonymousPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AnonymousPatternContext_getRuleIndex = $this => { + return 51; +}, +oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext_getRuleIndex = $this => { + return 42; +}, +oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext_getRuleIndex = $this => { + return 43; +}, +oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext_getRuleIndex = $this => { + return 44; +}, +oncipv_Cypher25Parser$OrderItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$OrderItemContext_getRuleIndex = $this => { + return 12; +}, +oncipv_Cypher5Parser$NamespaceContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NamespaceContext_getRuleIndex = $this => { + return 137; +}, +oncipv_Cypher5Parser$Expression11Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression11Context_getRuleIndex = $this => { + return 89; +}, +oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext_getRuleIndex = $this => { + return 335; +}, +oncipv_Cypher5Parser$StringOrParameterExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$StringOrParameterExpressionContext_stringLiteral = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0); +}, +oncipv_Cypher5Parser$StringOrParameterExpressionContext_getRuleIndex = $this => { + return 323; +}, +oncipv_Cypher5Parser$PasswordOnlyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PasswordOnlyContext_getRuleIndex = $this => { + return 226; +}, +oncipv_Cypher5Parser$PropertyKeyNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PropertyKeyNameContext_getRuleIndex = $this => { + return 131; +}, +oncipv_Cypher5Parser$SymbolicVariableNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SymbolicVariableNameStringContext_getRuleIndex = $this => { + return 328; +}, +oncipv_Cypher5Parser$TypePartContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$TypePartContext_typeName = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$TypeNameContext), 0); +}, +oncipv_Cypher5Parser$TypePartContext_typeNullability = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$TypeNullabilityContext), 0); +}; +let oncipv_Cypher5Parser$TypePartContext_getRuleIndex = $this => { + return 141; +}, +oncipv_Cypher5Parser$SymbolicAliasNameListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SymbolicAliasNameListContext_getRuleIndex = $this => { + return 317; +}, +oncipv_Cypher5Parser$AdminTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AdminTokenContext_getRuleIndex = $this => { + return 261; +}, +oncipv_Cypher5Parser$ProcedureTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ProcedureTokenContext_getRuleIndex = $this => { + return 262; +}, +oncipv_Cypher5Parser$ExecuteProcedureQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ExecuteProcedureQualifierContext_getRuleIndex = $this => { + return 268; +}, +oncipv_Cypher5Parser$ExecuteFunctionQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ExecuteFunctionQualifierContext_getRuleIndex = $this => { + return 267; +}, +oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext_getRuleIndex = $this => { + return 247; +}, +oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext_getRuleIndex = $this => { + return 248; +}, +oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext_getRuleIndex = $this => { + return 249; +}, +oncipv_Cypher5Parser$GraphQualifierTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GraphQualifierTokenContext_getRuleIndex = $this => { + return 280; +}, +oncipv_Cypher5Parser$NonEmptyStringListContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NonEmptyStringListContext_getRuleIndex = $this => { + return 278; +}, +oncipv_Cypher5Parser$GlobsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GlobsContext_getRuleIndex = $this => { + return 270; +}, +oncipv_Cypher5Parser$YieldItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$YieldItemContext_getRuleIndex = $this => { + return 150; +}, +oncipv_Cypher5Parser$YieldSkipContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$YieldSkipContext_getRuleIndex = $this => { + return 151; +}, +oncipv_Cypher5Parser$YieldLimitContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$YieldLimitContext_getRuleIndex = $this => { + return 152; +}, +oncipv_Cypher5Parser$ReturnItemsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ReturnItemsContext_getRuleIndex = $this => { + return 12; +}, +oncipv_Cypher5Parser$InsertPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$InsertPatternContext_EQ = $this => { + return oncip_AstRuleCtx_getToken($this, 100, 0); +}, +oncipv_Cypher5Parser$InsertPatternContext_getRuleIndex = $this => { + return 50; +}, +oncipv_Cypher5Parser$PropertyExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PropertyExpressionContext_getRuleIndex = $this => { + return 104; +}, +oncipv_Cypher5Parser$DynamicPropertyExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DynamicPropertyExpressionContext_getRuleIndex = $this => { + return 105; +}, +oncipv_Cypher5Parser$NodeLabelsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NodeLabelsContext_getRuleIndex = $this => { + return 62; +}, +oncipv_Cypher5Parser$NodeLabelsIsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NodeLabelsIsContext_getRuleIndex = $this => { + return 63; +}, +oncipv_Cypher5Parser$LabelOrRelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelOrRelTypeContext_getRuleIndex = $this => { + return 69; +}, +oncipv_Cypher5Parser$SelectorContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SelectorContext_getRuleIndex = $this => { + return 55; +}, +oncipv_Cypher5Parser$AnyShortestPathContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), +oncipv_Cypher5Parser$AnyShortestPathContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$AnyShortestPathContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$AnyShortestPathContext(); + oncipv_Cypher5Parser$AnyShortestPathContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$AllShortestPathContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext); +let oncipv_Cypher5Parser$AllShortestPathContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$AllShortestPathContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$AllShortestPathContext(); + oncipv_Cypher5Parser$AllShortestPathContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_loadPrivilege = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LoadPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 492, 246); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2980); - oavr_Parser_match($this, 148); - oavr_Recognizer_setState($this, 2981); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2986); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 18: - oavr_Recognizer_setState($this, 2984); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 2985); - oavr_Parser_match($this, 60); - break e; - case 42: - case 283: - oavr_Recognizer_setState($this, 2982); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 42 && $_la != 283) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2983); - oncipv_Cypher25Parser_stringOrParameter($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$AnyPathContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), +oncipv_Cypher5Parser$AnyPathContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_showPrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 494, 247); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2988); - oavr_Parser_match($this, 249); - oavr_Recognizer_setState($this, 3013); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - case 200: - case 229: - case 242: - case 243: - case 245: - case 246: - case 285: - f: { - oavr_Recognizer_setState($this, 3009); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 3000); - oavr_Parser_match($this, 15); - break f; - case 200: - oavr_Recognizer_setState($this, 3001); - oavr_Parser_match($this, 200); - break f; - case 229: - oavr_Recognizer_setState($this, 3002); - oavr_Parser_match($this, 229); - break f; - case 242: - oavr_Recognizer_setState($this, 3003); - oavr_Parser_match($this, 242); - break f; - case 243: - oavr_Recognizer_setState($this, 3004); - oavr_Parser_match($this, 243); - break f; - case 245: - case 246: - oavr_Recognizer_setState($this, 3005); - oncipv_Cypher25Parser_settingToken($this); - oavr_Recognizer_setState($this, 3006); - oncipv_Cypher25Parser_settingQualifier($this); - break f; - case 285: - oavr_Recognizer_setState($this, 3008); - oavr_Parser_match($this, 285); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3011); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3012); - oavr_Parser_match($this, 65); - break e; - case 51: - case 52: - case 128: - case 129: - case 271: - case 272: - g: { - oavr_Recognizer_setState($this, 2995); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 51: - case 52: - oavr_Recognizer_setState($this, 2990); - oncipv_Cypher25Parser_constraintToken($this); - break g; - case 128: - case 129: - oavr_Recognizer_setState($this, 2989); - oncipv_Cypher25Parser_indexToken($this); - break g; - case 271: - case 272: - oavr_Recognizer_setState($this, 2991); - oncipv_Cypher25Parser_transactionToken($this); - oavr_Recognizer_setState($this, 2993); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 151) - break g; - oavr_Recognizer_setState($this, 2992); - oncipv_Cypher25Parser_userQualifier($this); - break g; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 2997); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 2998); - oncipv_Cypher25Parser_databaseScope($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$AnyPathContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$AnyPathContext(); + oncipv_Cypher5Parser$AnyPathContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_setPrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SetPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 496, 248); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3015); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 3043); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 28: - oavr_Recognizer_setState($this, 3040); - oavr_Parser_match($this, 28); - oavr_Recognizer_setState($this, 3041); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3042); - oavr_Parser_match($this, 65); - break e; - case 61: - case 188: - case 189: - case 285: - f: { - oavr_Recognizer_setState($this, 3025); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 61: - oavr_Recognizer_setState($this, 3023); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3024); - oavr_Parser_match($this, 11); - break f; - case 188: - case 189: - oavr_Recognizer_setState($this, 3016); - oncipv_Cypher25Parser_passwordToken($this); - break f; - case 285: - oavr_Recognizer_setState($this, 3017); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 3021); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 122: - oavr_Recognizer_setState($this, 3019); - oavr_Parser_match($this, 122); - oavr_Recognizer_setState($this, 3020); - oavr_Parser_match($this, 61); - break f; - case 255: - oavr_Recognizer_setState($this, 3018); - oavr_Parser_match($this, 255); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3027); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3028); - oavr_Parser_match($this, 65); - break e; - case 138: - oavr_Recognizer_setState($this, 3029); - oavr_Parser_match($this, 138); - oavr_Recognizer_setState($this, 3030); - oncipv_Cypher25Parser_labelsResource($this); - oavr_Recognizer_setState($this, 3031); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3032); - oncipv_Cypher25Parser_graphScope($this); - break e; - case 205: - oavr_Recognizer_setState($this, 3034); - oavr_Parser_match($this, 205); - oavr_Recognizer_setState($this, 3035); - oncipv_Cypher25Parser_propertiesResource($this); - oavr_Recognizer_setState($this, 3036); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3037); - oncipv_Cypher25Parser_graphScope($this); - oavr_Recognizer_setState($this, 3038); - oncipv_Cypher25Parser_graphQualifier($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$AllPathContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), +oncipv_Cypher5Parser$AllPathContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_passwordToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PasswordTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 498, 249); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3045); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 188 && $_la != 189) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$AllPathContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$AllPathContext(); + oncipv_Cypher5Parser$AllPathContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_removePrivilege = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RemovePrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 500, 250); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3047); - oavr_Parser_match($this, 220); - oavr_Recognizer_setState($this, 3056); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 138: - oavr_Recognizer_setState($this, 3051); - oavr_Parser_match($this, 138); - oavr_Recognizer_setState($this, 3052); - oncipv_Cypher25Parser_labelsResource($this); - oavr_Recognizer_setState($this, 3053); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3054); - oncipv_Cypher25Parser_graphScope($this); - break e; - case 200: - case 229: - oavr_Recognizer_setState($this, 3048); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 200 && $_la != 229) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3049); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3050); - oavr_Parser_match($this, 65); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShortestGroupContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), +oncipv_Cypher5Parser$ShortestGroupContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_writePrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$WritePrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 502, 251); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3058); - oavr_Parser_match($this, 297); - oavr_Recognizer_setState($this, 3059); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3060); - oncipv_Cypher25Parser_graphScope($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ShortestGroupContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ShortestGroupContext(); + oncipv_Cypher5Parser$ShortestGroupContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_databasePrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DatabasePrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 504, 252); - a: { - b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3084); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - oavr_Recognizer_setState($this, 3062); - oavr_Parser_match($this, 11); - break e; - case 51: - case 52: - case 128: - case 129: - case 161: - g: { - oavr_Recognizer_setState($this, 3068); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 51: - case 52: - oavr_Recognizer_setState($this, 3066); - oncipv_Cypher25Parser_constraintToken($this); - break g; - case 128: - case 129: - oavr_Recognizer_setState($this, 3065); - oncipv_Cypher25Parser_indexToken($this); - break g; - case 161: - oavr_Recognizer_setState($this, 3067); - oavr_Parser_match($this, 161); - break g; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3071); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 153) - break e; - oavr_Recognizer_setState($this, 3070); - oavr_Parser_match($this, 153); - break e; - case 253: - oavr_Recognizer_setState($this, 3063); - oavr_Parser_match($this, 253); - break e; - case 256: - oavr_Recognizer_setState($this, 3064); - oavr_Parser_match($this, 256); - break e; - case 261: - case 271: - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - h: { - oavr_Recognizer_setState($this, 3079); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 261: - oavr_Recognizer_setState($this, 3077); - oavr_Parser_match($this, 261); - oavr_Recognizer_setState($this, 3078); - oncipv_Cypher25Parser_transactionToken($this); - break h; - case 271: - oavr_Recognizer_setState($this, 3073); - oavr_Parser_match($this, 271); - oavr_Recognizer_setState($this, 3075); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 153) - break h; - oavr_Recognizer_setState($this, 3074); - oavr_Parser_match($this, 153); - break h; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3082); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) { - oavr_Recognizer_setState($this, 3081); - oncipv_Cypher25Parser_userQualifier($this); - } - } - oavr_Recognizer_setState($this, 3086); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3087); - oncipv_Cypher25Parser_databaseScope($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$AnonymousPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AnonymousPatternContext_getRuleIndex = $this => { + return 52; }, -oncipv_Cypher25Parser_dbmsPrivilege = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DbmsPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 506, 253); - a: { - b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3112); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - case 49: - case 61: - case 200: - case 229: - case 242: - case 285: - g: { - oavr_Recognizer_setState($this, 3102); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 3093); - oavr_Parser_match($this, 15); - break g; - case 49: - case 61: - oavr_Recognizer_setState($this, 3095); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) { - oavr_Recognizer_setState($this, 3094); - oavr_Parser_match($this, 49); - } - oavr_Recognizer_setState($this, 3097); - oavr_Parser_match($this, 61); - break g; - case 200: - oavr_Recognizer_setState($this, 3098); - oavr_Parser_match($this, 200); - break g; - case 229: - oavr_Recognizer_setState($this, 3099); - oavr_Parser_match($this, 229); - break g; - case 242: - oavr_Recognizer_setState($this, 3100); - oavr_Parser_match($this, 242); - break g; - case 285: - oavr_Recognizer_setState($this, 3101); - oavr_Parser_match($this, 285); - break g; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3104); - oavr_Parser_match($this, 153); - break e; - case 19: - oavr_Recognizer_setState($this, 3089); - oavr_Parser_match($this, 19); - oavr_Recognizer_setState($this, 3090); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 15 && $_la != 61 && $_la != 285) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - case 26: - break f; - case 98: - oavr_Recognizer_setState($this, 3105); - oncipv_Cypher25Parser_dbmsPrivilegeExecute($this); - break e; - case 125: - oavr_Recognizer_setState($this, 3108); - oavr_Parser_match($this, 125); - oavr_Recognizer_setState($this, 3110); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 151) - break e; - oavr_Recognizer_setState($this, 3109); - oncipv_Cypher25Parser_userQualifier($this); - break e; - case 215: - oavr_Recognizer_setState($this, 3106); - oavr_Parser_match($this, 215); - oavr_Recognizer_setState($this, 3107); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 229 && $_la != 285) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3091); - oavr_Parser_match($this, 26); - oavr_Recognizer_setState($this, 3092); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 200 && $_la != 229) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 3114); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3115); - oavr_Parser_match($this, 65); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext_getRuleIndex = $this => { + return 43; }, -oncipv_Cypher25Parser_dbmsPrivilegeExecute = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 508, 254); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3117); - oavr_Parser_match($this, 98); - oavr_Recognizer_setState($this, 3138); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 13: - case 14: - oavr_Recognizer_setState($this, 3118); - oncipv_Cypher25Parser_adminToken($this); - oavr_Recognizer_setState($this, 3119); - oavr_Parser_match($this, 203); - break e; - case 33: - case 112: - case 113: - case 202: - case 203: - case 285: - oavr_Recognizer_setState($this, 3122); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 33) { - oavr_Recognizer_setState($this, 3121); - oavr_Parser_match($this, 33); - } - oavr_Recognizer_setState($this, 3136); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 112: - case 113: - case 285: - oavr_Recognizer_setState($this, 3131); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 285) { - oavr_Recognizer_setState($this, 3127); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 3129); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 68) { - oavr_Recognizer_setState($this, 3128); - oavr_Parser_match($this, 68); - } - } - oavr_Recognizer_setState($this, 3133); - oncipv_Cypher25Parser_functionToken($this); - oavr_Recognizer_setState($this, 3134); - oncipv_Cypher25Parser_executeFunctionQualifier($this); - break e; - case 202: - case 203: - oavr_Recognizer_setState($this, 3124); - oncipv_Cypher25Parser_procedureToken($this); - oavr_Recognizer_setState($this, 3125); - oncipv_Cypher25Parser_executeProcedureQualifier($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext_getRuleIndex = $this => { + return 44; }, -oncipv_Cypher25Parser_adminToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AdminTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 510, 255); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3140); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 13 && $_la != 14) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext_getRuleIndex = $this => { + return 45; }, -oncipv_Cypher25Parser_procedureToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ProcedureTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 512, 256); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3142); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 202 && $_la != 203) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$OrderItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$OrderItemContext_getRuleIndex = $this => { + return 13; }, -oncipv_Cypher25Parser_indexToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$IndexTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 514, 257); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3144); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 128 && $_la != 129) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oavrm_ObjectEqualityComparator = $rt_classWithoutFields(oavrm_AbstractEqualityComparator), +oavrm_ObjectEqualityComparator_INSTANCE = null, +oavrm_ObjectEqualityComparator_$callClinit = () => { + oavrm_ObjectEqualityComparator_$callClinit = $rt_eraseClinit(oavrm_ObjectEqualityComparator); + oavrm_ObjectEqualityComparator__clinit_(); +}, +oavrm_ObjectEqualityComparator_hashCode = ($this, $obj) => { + if ($obj !== null) + return $obj.$hashCode(); + return 0; }, -oncipv_Cypher25Parser_constraintToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ConstraintTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 516, 258); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3146); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 51 && $_la != 52) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oavrm_ObjectEqualityComparator_equals = ($this, $a, $b) => { + if ($a !== null) + return $a.$equals($b); + return $b !== null ? 0 : 1; }, -oncipv_Cypher25Parser_transactionToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$TransactionTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 518, 259); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3148); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 271 && $_la != 272) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oavrm_ObjectEqualityComparator__clinit_ = () => { + let var$1; + var$1 = new oavrm_ObjectEqualityComparator; + oavrm_ObjectEqualityComparator_$callClinit(); + oavrm_ObjectEqualityComparator_INSTANCE = var$1; }, -oncipv_Cypher25Parser_userQualifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UserQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 520, 260); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3150); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 3153); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Recognizer_setState($this, 3152); - oncipv_Cypher25Parser_userNames($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Recognizer_setState($this, 3151); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3155); - oavr_Parser_match($this, 233); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$Expression10Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression10Context_getRuleIndex = $this => { + return 89; }, -oncipv_Cypher25Parser_executeFunctionQualifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ExecuteFunctionQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 522, 261); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3157); - oncipv_Cypher25Parser_globs($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context_getRuleIndex = $this => { + return 328; }, -oncipv_Cypher25Parser_executeProcedureQualifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ExecuteProcedureQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 524, 262); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3159); - oncipv_Cypher25Parser_globs($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$TypeNullabilityContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$TypeNullabilityContext_getRuleIndex = $this => { + return 142; }, -oncipv_Cypher25Parser_settingQualifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SettingQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 526, 263); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3161); - oncipv_Cypher25Parser_globs($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$TypeListSuffixContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$TypeListSuffixContext_getRuleIndex = $this => { + return 143; }, -oncipv_Cypher25Parser_globs = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GlobsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 528, 264); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3163); - oncipv_Cypher25Parser_glob($this); - oavr_Recognizer_setState($this, 3168); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 3164); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 3165); - oncipv_Cypher25Parser_glob($this); - oavr_Recognizer_setState($this, 3170); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$TypeNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$TypeNameContext_LT = $this => { + return oncip_AstRuleCtx_getToken($this, 152, 0); }, -oncipv_Cypher25Parser_glob = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GlobContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 530, 265); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3176); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3171); - oncipv_Cypher25Parser_escapedSymbolicNameString($this); - oavr_Recognizer_setState($this, 3173); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 381, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 3172); - oncipv_Cypher25Parser_globRecursive($this); - } - break e; - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 79: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3175); - oncipv_Cypher25Parser_globRecursive($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$TypeNameContext_type = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$TypeContext), 0); +}, +oncipv_Cypher25Parser$TypeNameContext_GT = $this => { + return oncip_AstRuleCtx_getToken($this, 120, 0); +}, +oncipv_Cypher25Parser$TypeNameContext__init_0 = ($this, $parent, $invokingState) => { + oncip_AstRuleCtx__init_($this, $parent, $invokingState); +}, +oncipv_Cypher25Parser$TypeNameContext__init_ = (var_0, var_1) => { + let var_2 = new oncipv_Cypher25Parser$TypeNameContext(); + oncipv_Cypher25Parser$TypeNameContext__init_0(var_2, var_0, var_1); + return var_2; +}, +oncipv_Cypher25Parser$TypeNameContext_getRuleIndex = $this => { + return 141; +}, +oncipv_Cypher25Parser$ElementTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ElementTokenContext_getRuleIndex = $this => { + return 276; }, -oncipv_Cypher25Parser_globRecursive = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GlobRecursiveContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 532, 266); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3178); - oncipv_Cypher25Parser_globPart($this); - oavr_Recognizer_setState($this, 3180); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 383, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 3179); - oncipv_Cypher25Parser_globRecursive($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$NodeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NodeTokenContext_getRuleIndex = $this => { + return 277; }, -oncipv_Cypher25Parser_globPart = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GlobPartContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 534, 267); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3189); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 3188); - oncipv_Cypher25Parser_unescapedSymbolicNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 79: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3182); - oavr_Parser_match($this, 79); - oavr_Recognizer_setState($this, 3184); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 10) - break e; - oavr_Recognizer_setState($this, 3183); - oncipv_Cypher25Parser_escapedSymbolicNameString($this); - break e; - case 208: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3186); - oavr_Parser_match($this, 208); - break e; - case 265: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 3187); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$RelTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RelTokenContext_getRuleIndex = $this => { + return 275; }, -oncipv_Cypher25Parser_qualifiedGraphPrivilegesWithProperty = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 536, 268); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3194); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 155: - case 212: - oavr_Recognizer_setState($this, 3192); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 155 && $_la != 212) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3193); - oncipv_Cypher25Parser_propertiesResource($this); - break e; - case 273: - oavr_Recognizer_setState($this, 3191); - oavr_Parser_match($this, 273); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3196); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3197); - oncipv_Cypher25Parser_graphScope($this); - oavr_Recognizer_setState($this, 3198); - oncipv_Cypher25Parser_graphQualifier($this); - oavr_Recognizer_setState($this, 3202); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 151) { - oavr_Recognizer_setState($this, 3199); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 3200); - oavr_Parser_match($this, 265); - oavr_Recognizer_setState($this, 3201); - oavr_Parser_match($this, 233); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$GlobContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GlobContext_escapedSymbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$EscapedSymbolicNameStringContext), 0); +}; +let oncipv_Cypher25Parser$GlobContext_getRuleIndex = $this => { + return 265; }, -oncipv_Cypher25Parser_qualifiedGraphPrivileges = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 538, 269); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3207); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 69: - oavr_Recognizer_setState($this, 3204); - oavr_Parser_match($this, 69); - break e; - case 156: - oavr_Recognizer_setState($this, 3205); - oavr_Parser_match($this, 156); - oavr_Recognizer_setState($this, 3206); - oncipv_Cypher25Parser_propertiesResource($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3209); - oavr_Parser_match($this, 181); - oavr_Recognizer_setState($this, 3210); - oncipv_Cypher25Parser_graphScope($this); - oavr_Recognizer_setState($this, 3211); - oncipv_Cypher25Parser_graphQualifier($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SignedIntegerLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER = $this => { + return oncip_AstRuleCtx_getToken($this, 5, 0); }, -oncipv_Cypher25Parser_labelsResource = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$LabelsResourceContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 540, 270); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3215); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3214); - oncipv_Cypher25Parser_nonEmptyStringList($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3213); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$SignedIntegerLiteralContext_getRuleIndex = $this => { + return 128; +}, +oncipv_Cypher25Parser$ReturnItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ReturnItemContext_getRuleIndex = $this => { + return 10; +}, +oncipv_Cypher25Parser$InsertNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$InsertNodePatternContext_getRuleIndex = $this => { + return 59; +}, +oncipv_Cypher25Parser$InsertRelationshipPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$InsertRelationshipPatternContext_getRuleIndex = $this => { + return 71; +}, +oncipv_Cypher25Parser$Expression1Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression1Context_getRuleIndex = $this => { + return 105; +}, +oncipv_Cypher25Parser$DynamicPropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DynamicPropertyContext_getRuleIndex = $this => { + return 102; +}, +oncipv_Cypher25Parser$DynamicLabelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DynamicLabelTypeContext_getRuleIndex = $this => { + return 65; +}, +oncipv_Cypher25Parser$DynamicExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DynamicExpressionContext_getRuleIndex = $this => { + return 63; +}, +oncipv_Cypher25Parser$PathTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PathTokenContext_getRuleIndex = $this => { + return 56; +}, +oncipv_Cypher25Parser$GroupTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GroupTokenContext_getRuleIndex = $this => { + return 55; +}, +oncipv_Cypher25Parser$ShortestPathPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShortestPathPatternContext_getRuleIndex = $this => { + return 52; +}, +oncipv_Cypher25Parser$PatternElementContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PatternElementContext_getRuleIndex = $this => { + return 53; +}, +oncipv_Cypher25Parser$AscTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$AscTokenContext_getRuleIndex = $this => { + return 13; +}, +oncipv_Cypher25Parser$DescTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DescTokenContext_getRuleIndex = $this => { + return 14; +}, +oncipv_Cypher5Parser$Expression10Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression10Context_getRuleIndex = $this => { + return 90; +}, +oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context_getRuleIndex = $this => { + return 336; +}, +oncipv_Cypher5Parser$EscapedSymbolicVariableNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$EscapedSymbolicVariableNameStringContext_getRuleIndex = $this => { + return 329; +}, +oncipv_Cypher5Parser$UnescapedSymbolicVariableNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$UnescapedSymbolicVariableNameStringContext_getRuleIndex = $this => { + return 330; +}, +oncipv_Cypher5Parser$TypeNullabilityContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$TypeNullabilityContext_getRuleIndex = $this => { + return 143; +}, +oncipv_Cypher5Parser$TypeListSuffixContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$TypeListSuffixContext_getRuleIndex = $this => { + return 144; +}, +oncipv_Cypher5Parser$TypeNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$TypeNameContext_LT = $this => { + return oncip_AstRuleCtx_getToken($this, 156, 0); +}, +oncipv_Cypher5Parser$TypeNameContext_type = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$TypeContext), 0); +}, +oncipv_Cypher5Parser$TypeNameContext_GT = $this => { + return oncip_AstRuleCtx_getToken($this, 124, 0); +}, +oncipv_Cypher5Parser$TypeNameContext__init_ = ($this, $parent, $invokingState) => { + oncip_AstRuleCtx__init_($this, $parent, $invokingState); +}, +oncipv_Cypher5Parser$TypeNameContext__init_0 = (var_0, var_1) => { + let var_2 = new oncipv_Cypher5Parser$TypeNameContext(); + oncipv_Cypher5Parser$TypeNameContext__init_(var_2, var_0, var_1); + return var_2; +}, +oncipv_Cypher5Parser$TypeNameContext_getRuleIndex = $this => { + return 142; +}, +oncipv_Cypher5Parser$ElementTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$ElementTokenContext_getRuleIndex = $this => { + return 282; +}, +oncipv_Cypher5Parser$NodeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NodeTokenContext_getRuleIndex = $this => { + return 283; +}, +oncipv_Cypher5Parser$RelTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RelTokenContext_getRuleIndex = $this => { + return 281; +}, +oncipv_Cypher5Parser$GlobContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GlobContext_escapedSymbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$EscapedSymbolicNameStringContext), 0); +}, +oncipv_Cypher5Parser$GlobContext_getRuleIndex = $this => { + return 271; +}, +oncipv_Cypher5Parser$SignedIntegerLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER = $this => { + return oncip_AstRuleCtx_getToken($this, 5, 0); +}, +oncipv_Cypher5Parser$SignedIntegerLiteralContext_getRuleIndex = $this => { + return 129; }, -oncipv_Cypher25Parser_propertiesResource = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PropertiesResourceContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 542, 271); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3217); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 3220); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Recognizer_setState($this, 3219); - oncipv_Cypher25Parser_nonEmptyStringList($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Recognizer_setState($this, 3218); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3222); - oavr_Parser_match($this, 211); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$ReturnItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ReturnItemContext_getRuleIndex = $this => { + return 11; +}, +oncipv_Cypher5Parser$InsertNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$InsertNodePatternContext_getRuleIndex = $this => { + return 60; +}, +oncipv_Cypher5Parser$InsertRelationshipPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$InsertRelationshipPatternContext_getRuleIndex = $this => { + return 72; +}, +oncipv_Cypher5Parser$Expression1Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression1Context_getRuleIndex = $this => { + return 106; +}, +oncipv_Cypher5Parser$DynamicPropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DynamicPropertyContext_getRuleIndex = $this => { + return 103; +}, +oncipv_Cypher5Parser$DynamicLabelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DynamicLabelTypeContext_getRuleIndex = $this => { + return 66; +}, +oncipv_Cypher5Parser$DynamicExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DynamicExpressionContext_getRuleIndex = $this => { + return 64; +}, +oncipv_Cypher5Parser$PathTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PathTokenContext_getRuleIndex = $this => { + return 57; +}, +oncipv_Cypher5Parser$GroupTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GroupTokenContext_getRuleIndex = $this => { + return 56; +}, +oncipv_Cypher5Parser$ShortestPathPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShortestPathPatternContext_getRuleIndex = $this => { + return 53; +}, +oncipv_Cypher5Parser$PatternElementContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PatternElementContext_getRuleIndex = $this => { + return 54; +}, +oncipv_Cypher5Parser$AscTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$AscTokenContext_getRuleIndex = $this => { + return 14; +}, +oncipv_Cypher5Parser$DescTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DescTokenContext_getRuleIndex = $this => { + return 15; +}, +oncipv_Cypher25Parser$Expression9Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression9Context_getRuleIndex = $this => { + return 90; +}, +oncipv_Cypher25Parser$GlobRecursiveContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GlobRecursiveContext_globPart = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$GlobPartContext), 0); +}, +oncipv_Cypher25Parser$GlobRecursiveContext_getRuleIndex = $this => { + return 266; +}, +oncipv_Cypher25Parser$InsertNodeLabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_IS = $this => { + return oncip_AstRuleCtx_getToken($this, 135, 0); +}, +oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_getRuleIndex = $this => { + return 85; +}, +oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext_getRuleIndex = $this => { + return 86; +}, +oncipv_Cypher25Parser$LiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LiteralContext_getRuleIndex = $this => { + return 106; +}, +oncipv_Cypher25Parser$NummericLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext); +let oncipv_Cypher25Parser$NummericLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$NummericLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$NummericLiteralContext(); + oncipv_Cypher25Parser$NummericLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$StringsLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext), +oncipv_Cypher25Parser$StringsLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$StringsLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$StringsLiteralContext(); + oncipv_Cypher25Parser$StringsLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$BooleanLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext), +oncipv_Cypher25Parser$BooleanLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$BooleanLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$BooleanLiteralContext(); + oncipv_Cypher25Parser$BooleanLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$KeywordLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext), +oncipv_Cypher25Parser$KeywordLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$KeywordLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$KeywordLiteralContext(); + oncipv_Cypher25Parser$KeywordLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$OtherLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext), +oncipv_Cypher25Parser$OtherLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$OtherLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$OtherLiteralContext(); + oncipv_Cypher25Parser$OtherLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$CaseExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CaseExpressionContext_getRuleIndex = $this => { + return 107; }; -let oncipv_Cypher25Parser_nonEmptyStringList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NonEmptyStringListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 544, 272); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3224); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3229); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 3225); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 3226); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3231); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +function oncipv_Cypher25Parser$ExtendedCaseExpressionContext() { + oncip_AstRuleCtx.call(this); + this.$elseExp0 = null; +} +let oncipv_Cypher25Parser$ExtendedCaseExpressionContext_getRuleIndex = $this => { + return 109; }, -oncipv_Cypher25Parser_graphQualifier = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GraphQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 546, 273); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3265); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 90: - case 91: - case 169: - case 171: - case 218: - case 219: - oavr_Recognizer_setState($this, 3232); - oncipv_Cypher25Parser_graphQualifierToken($this); - oavr_Recognizer_setState($this, 3235); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Recognizer_setState($this, 3234); - oncipv_Cypher25Parser_nonEmptyStringList($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Recognizer_setState($this, 3233); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 108: - f: { - oavr_Recognizer_setState($this, 3237); - oavr_Parser_match($this, 108); - oavr_Recognizer_setState($this, 3238); - oavr_Parser_match($this, 151); - oavr_Recognizer_setState($this, 3240); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 393, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 3239); - oncipv_Cypher25Parser_variable($this); - } - g: { - oavr_Recognizer_setState($this, 3251); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) { - oavr_Recognizer_setState($this, 3242); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 3243); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3248); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 29) - break g; - oavr_Recognizer_setState($this, 3244); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 3245); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3250); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - } - oavr_Recognizer_setState($this, 3263); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 143: - case 294: - h: { - oavr_Recognizer_setState($this, 3259); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 143: - oavr_Recognizer_setState($this, 3258); - oncipv_Cypher25Parser_map($this); - break h; - case 294: - oavr_Recognizer_setState($this, 3256); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 3257); - oncipv_Cypher25Parser_expression($this); - break h; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3261); - oavr_Parser_match($this, 233); - break e; - case 233: - oavr_Recognizer_setState($this, 3253); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 3254); - oavr_Parser_match($this, 294); - oavr_Recognizer_setState($this, 3255); - oncipv_Cypher25Parser_expression($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 110: - case 151: - case 268: - break; - default: - break e; - } - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$CountStarContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CountStarContext_getRuleIndex = $this => { + return 123; +}, +oncipv_Cypher25Parser$ExistsExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ExistsExpressionContext_getRuleIndex = $this => { + return 124; +}, +oncipv_Cypher25Parser$CountExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CountExpressionContext_getRuleIndex = $this => { + return 125; +}, +oncipv_Cypher25Parser$CollectExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CollectExpressionContext_getRuleIndex = $this => { + return 126; +}, +oncipv_Cypher25Parser$MapProjectionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$MapProjectionContext_getRuleIndex = $this => { + return 121; +}; +function oncipv_Cypher25Parser$ListComprehensionContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$whereExp = null; + a.$barExp = null; +} +let oncipv_Cypher25Parser$ListComprehensionContext_getRuleIndex = $this => { + return 112; +}, +oncipv_Cypher25Parser$ListLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ListLiteralContext_getRuleIndex = $this => { + return 129; +}; +function oncipv_Cypher25Parser$PatternComprehensionContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$whereExp1 = null; + a.$barExp0 = null; +} +let oncipv_Cypher25Parser$PatternComprehensionContext_variable = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); +}, +oncipv_Cypher25Parser$PatternComprehensionContext_getRuleIndex = $this => { + return 113; +}, +oncipv_Cypher25Parser$ReduceExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ReduceExpressionContext_getRuleIndex = $this => { + return 114; +}; +function oncipv_Cypher25Parser$ListItemsPredicateContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$inExp0 = null; + a.$whereExp4 = null; +} +let oncipv_Cypher25Parser$ListItemsPredicateContext_getRuleIndex = $this => { + return 115; +}, +oncipv_Cypher25Parser$NormalizeFunctionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NormalizeFunctionContext_getRuleIndex = $this => { + return 116; +}; +function oncipv_Cypher25Parser$TrimFunctionContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$trimCharacterString = null; + a.$trimSource0 = null; +} +let oncipv_Cypher25Parser$TrimFunctionContext_getRuleIndex = $this => { + return 117; +}, +oncipv_Cypher25Parser$PatternExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PatternExpressionContext_getRuleIndex = $this => { + return 118; }, -oncipv_Cypher25Parser_graphQualifierToken = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GraphQualifierTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 548, 274); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3270); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 90: - case 91: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 3269); - oncipv_Cypher25Parser_elementToken($this); - break e; - case 169: - case 171: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3268); - oncipv_Cypher25Parser_nodeToken($this); - break e; - case 218: - case 219: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3267); - oncipv_Cypher25Parser_relToken($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ShortestPathExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ShortestPathExpressionContext_getRuleIndex = $this => { + return 119; }, -oncipv_Cypher25Parser_relToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$RelTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 550, 275); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3272); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 218 && $_la != 219) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ParenthesizedExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ParenthesizedExpressionContext_getRuleIndex = $this => { + return 120; }, -oncipv_Cypher25Parser_elementToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ElementTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 552, 276); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3274); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 90 && $_la != 91) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$NodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NodePatternContext_getRuleIndex = $this => { + return 58; }, -oncipv_Cypher25Parser_nodeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$NodeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 554, 277); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3276); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 169 && $_la != 171) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ParenthesizedPathContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ParenthesizedPathContext_expression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); }, -oncipv_Cypher25Parser_databaseScope = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DatabaseScopeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 556, 278); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3285); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 61: - case 62: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3280); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 61 && $_la != 62) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3283); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Recognizer_setState($this, 3282); - oncipv_Cypher25Parser_symbolicAliasNameList($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Recognizer_setState($this, 3281); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 122: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3278); - oavr_Parser_match($this, 122); - oavr_Recognizer_setState($this, 3279); - oavr_Parser_match($this, 61); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ParenthesizedPathContext_quantifier = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$QuantifierContext), 0); +}, +oncipv_Cypher25Parser$ParenthesizedPathContext_getRuleIndex = $this => { + return 60; +}, +oncipv_Cypher25Parser$RelationshipPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$RelationshipPatternContext_getRuleIndex = $this => { + return 70; +}; +function oncipv_Cypher25Parser$QuantifierContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$from20 = null; + a.$to3 = null; +} +let oncipv_Cypher25Parser$QuantifierContext_getRuleIndex = $this => { + return 50; +}, +oncipv_Cypher5Parser$Expression9Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression9Context_getRuleIndex = $this => { + return 91; +}, +oncipv_Cypher5Parser$GlobRecursiveContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GlobRecursiveContext_globPart = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$GlobPartContext), 0); +}, +oncipv_Cypher5Parser$GlobRecursiveContext_getRuleIndex = $this => { + return 272; +}, +oncipv_Cypher5Parser$InsertNodeLabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_IS = $this => { + return oncip_AstRuleCtx_getToken($this, 139, 0); +}, +oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_getRuleIndex = $this => { + return 86; +}, +oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext_getRuleIndex = $this => { + return 87; +}, +oncipv_Cypher5Parser$LiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LiteralContext_getRuleIndex = $this => { + return 107; +}, +oncipv_Cypher5Parser$NummericLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), +oncipv_Cypher5Parser$NummericLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$NummericLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$NummericLiteralContext(); + oncipv_Cypher5Parser$NummericLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$StringsLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), +oncipv_Cypher5Parser$StringsLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$StringsLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$StringsLiteralContext(); + oncipv_Cypher5Parser$StringsLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$BooleanLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), +oncipv_Cypher5Parser$BooleanLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$BooleanLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$BooleanLiteralContext(); + oncipv_Cypher5Parser$BooleanLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$KeywordLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), +oncipv_Cypher5Parser$KeywordLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$KeywordLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$KeywordLiteralContext(); + oncipv_Cypher5Parser$KeywordLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$OtherLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), +oncipv_Cypher5Parser$OtherLiteralContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$OtherLiteralContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$OtherLiteralContext(); + oncipv_Cypher5Parser$OtherLiteralContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$CaseExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CaseExpressionContext_getRuleIndex = $this => { + return 108; +}; +function oncipv_Cypher5Parser$ExtendedCaseExpressionContext() { + oncip_AstRuleCtx.call(this); + this.$elseExp = null; +} +let oncipv_Cypher5Parser$ExtendedCaseExpressionContext_getRuleIndex = $this => { + return 110; +}, +oncipv_Cypher5Parser$CountStarContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CountStarContext_getRuleIndex = $this => { + return 124; +}, +oncipv_Cypher5Parser$ExistsExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ExistsExpressionContext_getRuleIndex = $this => { + return 125; +}, +oncipv_Cypher5Parser$CountExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CountExpressionContext_getRuleIndex = $this => { + return 126; +}, +oncipv_Cypher5Parser$CollectExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CollectExpressionContext_getRuleIndex = $this => { + return 127; +}, +oncipv_Cypher5Parser$MapProjectionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$MapProjectionContext_getRuleIndex = $this => { + return 122; +}; +function oncipv_Cypher5Parser$ListComprehensionContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$whereExp0 = null; + a.$barExp2 = null; +} +let oncipv_Cypher5Parser$ListComprehensionContext_getRuleIndex = $this => { + return 113; +}, +oncipv_Cypher5Parser$ListLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ListLiteralContext_getRuleIndex = $this => { + return 130; +}; +function oncipv_Cypher5Parser$PatternComprehensionContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$whereExp2 = null; + a.$barExp1 = null; +} +let oncipv_Cypher5Parser$PatternComprehensionContext_variable = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); +}, +oncipv_Cypher5Parser$PatternComprehensionContext_getRuleIndex = $this => { + return 114; +}, +oncipv_Cypher5Parser$ReduceExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ReduceExpressionContext_getRuleIndex = $this => { + return 115; +}; +function oncipv_Cypher5Parser$ListItemsPredicateContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$inExp = null; + a.$whereExp3 = null; +} +let oncipv_Cypher5Parser$ListItemsPredicateContext_getRuleIndex = $this => { + return 116; +}, +oncipv_Cypher5Parser$NormalizeFunctionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NormalizeFunctionContext_getRuleIndex = $this => { + return 117; +}; +function oncipv_Cypher5Parser$TrimFunctionContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$trimCharacterString0 = null; + a.$trimSource = null; +} +let oncipv_Cypher5Parser$TrimFunctionContext_getRuleIndex = $this => { + return 118; +}, +oncipv_Cypher5Parser$PatternExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PatternExpressionContext_getRuleIndex = $this => { + return 119; +}, +oncipv_Cypher5Parser$ShortestPathExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ShortestPathExpressionContext_getRuleIndex = $this => { + return 120; +}, +oncipv_Cypher5Parser$ParenthesizedExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ParenthesizedExpressionContext_getRuleIndex = $this => { + return 121; +}, +oncipv_Cypher5Parser$NodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NodePatternContext_getRuleIndex = $this => { + return 59; +}, +oncipv_Cypher5Parser$ParenthesizedPathContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ParenthesizedPathContext_expression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); +}, +oncipv_Cypher5Parser$ParenthesizedPathContext_quantifier = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$QuantifierContext), 0); +}, +oncipv_Cypher5Parser$ParenthesizedPathContext_getRuleIndex = $this => { + return 61; +}, +oncipv_Cypher5Parser$RelationshipPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$RelationshipPatternContext_getRuleIndex = $this => { + return 71; +}; +function oncipv_Cypher5Parser$QuantifierContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$from21 = null; + a.$to4 = null; +} +let oncipv_Cypher5Parser$QuantifierContext_getRuleIndex = $this => { + return 51; +}, +oncipv_Cypher25Parser$Expression8Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression8Context_getRuleIndex = $this => { + return 91; +}, +oncipv_Cypher25Parser$GlobPartContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$GlobPartContext_DOT = $this => { + return oncip_AstRuleCtx_getToken($this, 79, 0); +}, +oncipv_Cypher25Parser$GlobPartContext_escapedSymbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$EscapedSymbolicNameStringContext), 0); +}, +oncipv_Cypher25Parser$GlobPartContext_getRuleIndex = $this => { + return 267; +}, +oncipv_Cypher25Parser$NumberLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NumberLiteralContext_getRuleIndex = $this => { + return 127; +}, +oncipv_Cypher25Parser$CaseAlternativeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$CaseAlternativeContext_getRuleIndex = $this => { + return 108; +}, +oncipv_Cypher25Parser$ExtendedCaseAlternativeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ExtendedCaseAlternativeContext_getRuleIndex = $this => { + return 110; +}, +oncipv_Cypher25Parser$MapProjectionElementContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$MapProjectionElementContext_getRuleIndex = $this => { + return 122; +}, +oncipv_Cypher25Parser$PathPatternNonEmptyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PathPatternNonEmptyContext_getRuleIndex = $this => { + return 57; +}, +oncipv_Cypher25Parser$NormalFormContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$NormalFormContext_getRuleIndex = $this => { + return 94; +}, +oncipv_Cypher25Parser$LabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpressionContext_getRuleIndex = $this => { + return 76; +}, +oncipv_Cypher25Parser$PropertiesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PropertiesContext_getRuleIndex = $this => { + return 69; +}; +function oncipv_Cypher25Parser$PathLengthContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$from22 = null; + a.$to6 = null; + a.$single1 = null; +} +let oncipv_Cypher25Parser$PathLengthContext_getRuleIndex = $this => { + return 75; +}, +oncipv_Cypher5Parser$Expression8Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression8Context_getRuleIndex = $this => { + return 92; +}, +oncipv_Cypher5Parser$GlobPartContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$GlobPartContext_DOT = $this => { + return oncip_AstRuleCtx_getToken($this, 83, 0); +}, +oncipv_Cypher5Parser$GlobPartContext_escapedSymbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$EscapedSymbolicNameStringContext), 0); +}, +oncipv_Cypher5Parser$GlobPartContext_getRuleIndex = $this => { + return 273; +}, +oncipv_Cypher5Parser$NumberLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NumberLiteralContext_getRuleIndex = $this => { + return 128; +}, +oncipv_Cypher5Parser$CaseAlternativeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$CaseAlternativeContext_getRuleIndex = $this => { + return 109; +}, +oncipv_Cypher5Parser$ExtendedCaseAlternativeContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ExtendedCaseAlternativeContext_getRuleIndex = $this => { + return 111; +}, +oncipv_Cypher5Parser$MapProjectionElementContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$MapProjectionElementContext_getRuleIndex = $this => { + return 123; +}, +oncipv_Cypher5Parser$PathPatternNonEmptyContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PathPatternNonEmptyContext_getRuleIndex = $this => { + return 58; +}, +oncipv_Cypher5Parser$NormalFormContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$NormalFormContext_getRuleIndex = $this => { + return 95; +}, +oncipv_Cypher5Parser$LabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelExpressionContext_getRuleIndex = $this => { + return 77; +}, +oncipv_Cypher5Parser$PropertiesContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PropertiesContext_getRuleIndex = $this => { + return 70; +}; +function oncipv_Cypher5Parser$PathLengthContext() { + let a = this; oncip_AstRuleCtx.call(a); + a.$from23 = null; + a.$to5 = null; + a.$single2 = null; +} +let oncipv_Cypher5Parser$PathLengthContext_getRuleIndex = $this => { + return 76; +}, +oncipv_Cypher25Parser$Expression7Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression7Context_getRuleIndex = $this => { + return 92; +}, +oncipv_Cypher25Parser$ExtendedWhenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ExtendedWhenContext_getRuleIndex = $this => { + return 111; +}, +oncipv_Cypher25Parser$WhenStringOrListContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), +oncipv_Cypher25Parser$WhenStringOrListContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$WhenStringOrListContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$WhenStringOrListContext(); + oncipv_Cypher25Parser$WhenStringOrListContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$WhenNullContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), +oncipv_Cypher25Parser$WhenNullContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$WhenNullContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$WhenNullContext(); + oncipv_Cypher25Parser$WhenNullContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$WhenTypeContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), +oncipv_Cypher25Parser$WhenTypeContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$WhenTypeContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$WhenTypeContext(); + oncipv_Cypher25Parser$WhenTypeContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$WhenFormContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), +oncipv_Cypher25Parser$WhenFormContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$WhenFormContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$WhenFormContext(); + oncipv_Cypher25Parser$WhenFormContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$WhenComparatorContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), +oncipv_Cypher25Parser$WhenComparatorContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$WhenComparatorContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$WhenComparatorContext(); + oncipv_Cypher25Parser$WhenComparatorContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$WhenEqualsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), +oncipv_Cypher25Parser$WhenEqualsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$WhenEqualsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$WhenEqualsContext(); + oncipv_Cypher25Parser$WhenEqualsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$LabelExpression4Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpression4Context_getRuleIndex = $this => { + return 77; +}, +oncipv_Cypher25Parser$LabelExpression4IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpression4IsContext_getRuleIndex = $this => { + return 78; +}, +oncipv_Cypher5Parser$Expression7Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression7Context_getRuleIndex = $this => { + return 93; +}, +oncipv_Cypher5Parser$ExtendedWhenContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ExtendedWhenContext_getRuleIndex = $this => { + return 112; +}, +oncipv_Cypher5Parser$WhenStringOrListContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), +oncipv_Cypher5Parser$WhenStringOrListContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$WhenStringOrListContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$WhenStringOrListContext(); + oncipv_Cypher5Parser$WhenStringOrListContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$WhenNullContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), +oncipv_Cypher5Parser$WhenNullContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$WhenNullContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$WhenNullContext(); + oncipv_Cypher5Parser$WhenNullContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$WhenTypeContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), +oncipv_Cypher5Parser$WhenTypeContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_graphScope = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$GraphScopeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 558, 279); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3294); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 116: - case 117: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3289); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 116 && $_la != 117) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3292); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Recognizer_setState($this, 3291); - oncipv_Cypher25Parser_symbolicAliasNameList($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - break; - case 265: - oavr_Recognizer_setState($this, 3290); - oavr_Parser_match($this, 265); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 122: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3287); - oavr_Parser_match($this, 122); - oavr_Recognizer_setState($this, 3288); - oavr_Parser_match($this, 116); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$WhenTypeContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$WhenTypeContext(); + oncipv_Cypher5Parser$WhenTypeContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_createCompositeDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateCompositeDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 560, 280); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3296); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 3297); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3298); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3302); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 3299); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 3300); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 3301); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 3305); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { - oavr_Recognizer_setState($this, 3304); - oncipv_Cypher25Parser_commandOptions($this); - } - oavr_Recognizer_setState($this, 3308); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 177 && $_la != 292)) { - oavr_Recognizer_setState($this, 3307); - oncipv_Cypher25Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$WhenFormContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), +oncipv_Cypher5Parser$WhenFormContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_createDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 562, 281); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3310); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3311); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3315); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 3312); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 3313); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 3314); - oavr_Parser_match($this, 101); - } - e: { - oavr_Recognizer_setState($this, 3324); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 269) { - oavr_Recognizer_setState($this, 3317); - oavr_Parser_match($this, 269); - oavr_Recognizer_setState($this, 3320); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - f: { - oavr_Recognizer_setState($this, 3320); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 408, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 3319); - oncipv_Cypher25Parser_secondaryTopology($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 3318); - oncipv_Cypher25Parser_primaryTopology($this); - } - oavr_Recognizer_setState($this, 3322); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) - continue; - else - break e; - } - } - } - oavr_Recognizer_setState($this, 3327); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 184) { - oavr_Recognizer_setState($this, 3326); - oncipv_Cypher25Parser_commandOptions($this); - } - oavr_Recognizer_setState($this, 3330); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 177 && $_la != 292)) { - oavr_Recognizer_setState($this, 3329); - oncipv_Cypher25Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$WhenFormContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$WhenFormContext(); + oncipv_Cypher5Parser$WhenFormContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_primaryTopology = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PrimaryTopologyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 564, 282); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3332); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 3333); - oncipv_Cypher25Parser_primaryToken($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$WhenComparatorContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), +oncipv_Cypher5Parser$WhenComparatorContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_primaryToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$PrimaryTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 566, 283); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3335); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 198 && $_la != 199) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$WhenComparatorContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$WhenComparatorContext(); + oncipv_Cypher5Parser$WhenComparatorContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_secondaryTopology = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SecondaryTopologyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 568, 284); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3337); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 3338); - oncipv_Cypher25Parser_secondaryToken($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$WhenEqualsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), +oncipv_Cypher5Parser$WhenEqualsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_secondaryToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SecondaryTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 570, 285); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3340); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 237 && $_la != 238) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$WhenEqualsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$WhenEqualsContext(); + oncipv_Cypher5Parser$WhenEqualsContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_dropDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 572, 286); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3343); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) { - oavr_Recognizer_setState($this, 3342); - oavr_Parser_match($this, 49); - } - oavr_Recognizer_setState($this, 3345); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3346); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3349); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 3347); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 3348); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 3352); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 39 && $_la != 226)) { - oavr_Recognizer_setState($this, 3351); - oncipv_Cypher25Parser_aliasAction($this); - } - oavr_Recognizer_setState($this, 3356); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 73 && $_la != 85)) { - oavr_Recognizer_setState($this, 3354); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 73 && $_la != 85) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3355); - oavr_Parser_match($this, 60); - } - oavr_Recognizer_setState($this, 3359); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 177 && $_la != 292)) { - oavr_Recognizer_setState($this, 3358); - oncipv_Cypher25Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$LabelExpression4Context = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$LabelExpression4Context_getRuleIndex = $this => { + return 78; }, -oncipv_Cypher25Parser_aliasAction = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AliasActionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 574, 287); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3364); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 39: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3362); - oavr_Parser_match($this, 39); - oavr_Recognizer_setState($this, 3363); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 15 && $_la != 16) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - case 226: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3361); - oavr_Parser_match($this, 226); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher5Parser$LabelExpression4IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelExpression4IsContext_getRuleIndex = $this => { + return 79; +}, +oncipv_Cypher25Parser$ComparisonExpression6Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$ComparisonExpression6Context_getRuleIndex = $this => { + return 93; +}, +oncipv_Cypher25Parser$StringAndListComparisonContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ComparisonExpression6Context), +oncipv_Cypher25Parser$StringAndListComparisonContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$StringAndListComparisonContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$StringAndListComparisonContext(); + oncipv_Cypher25Parser$StringAndListComparisonContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$NullComparisonContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ComparisonExpression6Context), +oncipv_Cypher25Parser$NullComparisonContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$NullComparisonContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$NullComparisonContext(); + oncipv_Cypher25Parser$NullComparisonContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$TypeComparisonContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ComparisonExpression6Context), +oncipv_Cypher25Parser$TypeComparisonContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$TypeComparisonContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$TypeComparisonContext(); + oncipv_Cypher25Parser$TypeComparisonContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$NormalFormComparisonContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ComparisonExpression6Context), +oncipv_Cypher25Parser$NormalFormComparisonContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$NormalFormComparisonContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$NormalFormComparisonContext(); + oncipv_Cypher25Parser$NormalFormComparisonContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$Expression6Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression6Context_getRuleIndex = $this => { + return 95; +}, +oncipv_Cypher25Parser$LabelExpression3Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpression3Context_getRuleIndex = $this => { + return 79; +}, +oncipv_Cypher25Parser$LabelExpression3IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpression3IsContext_getRuleIndex = $this => { + return 80; +}, +oncipv_Cypher5Parser$ComparisonExpression6Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$ComparisonExpression6Context_getRuleIndex = $this => { + return 94; +}, +oncipv_Cypher5Parser$StringAndListComparisonContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ComparisonExpression6Context), +oncipv_Cypher5Parser$StringAndListComparisonContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$StringAndListComparisonContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$StringAndListComparisonContext(); + oncipv_Cypher5Parser$StringAndListComparisonContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$NullComparisonContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ComparisonExpression6Context), +oncipv_Cypher5Parser$NullComparisonContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$NullComparisonContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$NullComparisonContext(); + oncipv_Cypher5Parser$NullComparisonContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$TypeComparisonContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ComparisonExpression6Context), +oncipv_Cypher5Parser$TypeComparisonContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$TypeComparisonContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$TypeComparisonContext(); + oncipv_Cypher5Parser$TypeComparisonContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$NormalFormComparisonContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ComparisonExpression6Context), +oncipv_Cypher5Parser$NormalFormComparisonContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$NormalFormComparisonContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$NormalFormComparisonContext(); + oncipv_Cypher5Parser$NormalFormComparisonContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$Expression6Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression6Context_getRuleIndex = $this => { + return 96; +}, +oncipv_Cypher5Parser$LabelExpression3Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelExpression3Context_getRuleIndex = $this => { + return 80; +}, +oncipv_Cypher5Parser$LabelExpression3IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelExpression3IsContext_getRuleIndex = $this => { + return 81; +}, +oncipv_Cypher25Parser$Expression5Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression5Context_getRuleIndex = $this => { + return 96; +}, +oncipv_Cypher25Parser$LabelExpression2Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpression2Context_getRuleIndex = $this => { + return 81; +}, +oncipv_Cypher25Parser$LabelExpression2IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpression2IsContext_getRuleIndex = $this => { + return 82; +}, +oncipv_Cypher5Parser$Expression5Context = $rt_classWithoutFields(oncip_AstRuleCtx); +let oncipv_Cypher5Parser$Expression5Context_getRuleIndex = $this => { + return 97; +}, +oncipv_Cypher5Parser$LabelExpression2Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelExpression2Context_getRuleIndex = $this => { + return 82; +}, +oncipv_Cypher5Parser$LabelExpression2IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelExpression2IsContext_getRuleIndex = $this => { + return 83; +}, +oncipv_Cypher25Parser$Expression4Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression4Context_getRuleIndex = $this => { + return 97; +}, +oncipv_Cypher25Parser$LabelExpression1Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpression1Context_getRuleIndex = $this => { + return 83; }, -oncipv_Cypher25Parser_alterDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 576, 288); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3366); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3367); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3370); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 3368); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 3369); - oavr_Parser_match($this, 101); - } - e: { - oavr_Recognizer_setState($this, 3389); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 220: - oavr_Recognizer_setState($this, 3385); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 3382); - oavr_Parser_match($this, 220); - oavr_Recognizer_setState($this, 3383); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3384); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3387); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 220) - continue; - else - break; - } - break e; - case 244: - oavr_Recognizer_setState($this, 3378); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - f: while (true) { - g: { - oavr_Recognizer_setState($this, 3372); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 3376); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - break; - case 185: - oavr_Recognizer_setState($this, 3375); - oncipv_Cypher25Parser_alterDatabaseOption($this); - break g; - case 269: - oavr_Recognizer_setState($this, 3374); - oncipv_Cypher25Parser_alterDatabaseTopology($this); - break g; - default: - break f; - } - oavr_Recognizer_setState($this, 3373); - oncipv_Cypher25Parser_alterDatabaseAccess($this); - } - oavr_Recognizer_setState($this, 3380); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 244) - continue; - else - break e; - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3392); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 177 && $_la != 292)) { - oavr_Recognizer_setState($this, 3391); - oncipv_Cypher25Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelNameContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1Context), +oncipv_Cypher25Parser$LabelNameContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); }, -oncipv_Cypher25Parser_alterDatabaseAccess = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterDatabaseAccessContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 578, 289); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3394); - oavr_Parser_match($this, 11); - oavr_Recognizer_setState($this, 3395); - oavr_Parser_match($this, 212); - oavr_Recognizer_setState($this, 3396); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 182 && $_la != 297) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelNameContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_alterDatabaseTopology = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterDatabaseTopologyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 580, 290); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3398); - oavr_Parser_match($this, 269); - oavr_Recognizer_setState($this, 3401); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - e: { - oavr_Recognizer_setState($this, 3401); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 425, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 3400); - oncipv_Cypher25Parser_secondaryTopology($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 3399); - oncipv_Cypher25Parser_primaryTopology($this); - } - oavr_Recognizer_setState($this, 3403); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelNameContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$LabelNameContext(); + oncipv_Cypher25Parser$LabelNameContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_alterDatabaseOption = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterDatabaseOptionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 582, 291); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3405); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3406); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3407); - oncipv_Cypher25Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DynamicLabelContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1Context), +oncipv_Cypher25Parser$DynamicLabelContext_dynamicAnyAllExpression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DynamicAnyAllExpressionContext), 0); }, -oncipv_Cypher25Parser_startDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StartDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 584, 292); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3409); - oavr_Parser_match($this, 253); - oavr_Recognizer_setState($this, 3410); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3411); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3413); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 177 && $_la != 292)) { - oavr_Recognizer_setState($this, 3412); - oncipv_Cypher25Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DynamicLabelContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_stopDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StopDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 586, 293); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3415); - oavr_Parser_match($this, 256); - oavr_Recognizer_setState($this, 3416); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3417); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3419); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 177 && $_la != 292)) { - oavr_Recognizer_setState($this, 3418); - oncipv_Cypher25Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DynamicLabelContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$DynamicLabelContext(); + oncipv_Cypher25Parser$DynamicLabelContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_waitClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$WaitClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 588, 294); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3429); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 177: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3428); - oavr_Parser_match($this, 177); - break e; - case 292: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3421); - oavr_Parser_match($this, 292); - oavr_Recognizer_setState($this, 3426); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 5) - break e; - oavr_Recognizer_setState($this, 3422); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 3424); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 235 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(19)), Long_ZERO)) - break e; - oavr_Recognizer_setState($this, 3423); - oncipv_Cypher25Parser_secondsToken($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1Context), +oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_secondsToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SecondsTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 590, 295); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3431); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 235 | 0; - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(19)), Long_ZERO)) { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else - $this.$_errHandler.$recoverInline($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext(); + oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_showDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 592, 296); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3445); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 61: - case 62: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3438); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 61 && $_la != 62) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - f: { - oavr_Recognizer_setState($this, 3440); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 433, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 3439); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - } - oavr_Recognizer_setState($this, 3443); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 294 && $_la != 299) - break e; - oavr_Recognizer_setState($this, 3442); - oncipv_Cypher25Parser_showCommandYield($this); - break e; - case 67: - case 122: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3433); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 67 && $_la != 122) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3434); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3436); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 294 && $_la != 299) - break e; - oavr_Recognizer_setState($this, 3435); - oncipv_Cypher25Parser_showCommandYield($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AnyLabelContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1Context), +oncipv_Cypher25Parser$AnyLabelContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_aliasName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AliasNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 594, 297); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3447); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AnyLabelContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$AnyLabelContext(); + oncipv_Cypher25Parser$AnyLabelContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_databaseName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DatabaseNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 596, 298); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3449); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelExpression1IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$LabelExpression1IsContext_getRuleIndex = $this => { + return 84; }, -oncipv_Cypher25Parser_createAlias = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CreateAliasContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 598, 299); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3451); - oavr_Parser_match($this, 15); - oavr_Recognizer_setState($this, 3452); - oncipv_Cypher25Parser_aliasName($this); - oavr_Recognizer_setState($this, 3456); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 3453); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 3454); - oavr_Parser_match($this, 175); - oavr_Recognizer_setState($this, 3455); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 3458); - oavr_Parser_match($this, 108); - oavr_Recognizer_setState($this, 3459); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3460); - oncipv_Cypher25Parser_databaseName($this); - oavr_Recognizer_setState($this, 3471); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 27) { - oavr_Recognizer_setState($this, 3461); - oavr_Parser_match($this, 27); - oavr_Recognizer_setState($this, 3462); - oncipv_Cypher25Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 3463); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 3464); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 3465); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 3466); - oncipv_Cypher25Parser_passwordExpression($this); - oavr_Recognizer_setState($this, 3469); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 82) { - oavr_Recognizer_setState($this, 3467); - oavr_Parser_match($this, 82); - oavr_Recognizer_setState($this, 3468); - oncipv_Cypher25Parser_mapOrParameter($this); - } - } - oavr_Recognizer_setState($this, 3475); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 204) { - oavr_Recognizer_setState($this, 3473); - oavr_Parser_match($this, 204); - oavr_Recognizer_setState($this, 3474); - oncipv_Cypher25Parser_mapOrParameter($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelNameIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1IsContext), +oncipv_Cypher25Parser$LabelNameIsContext_symbolicLabelNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicLabelNameStringContext), 0); }, -oncipv_Cypher25Parser_dropAlias = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$DropAliasContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 600, 300); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3477); - oavr_Parser_match($this, 15); - oavr_Recognizer_setState($this, 3478); - oncipv_Cypher25Parser_aliasName($this); - oavr_Recognizer_setState($this, 3481); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 3479); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 3480); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 3483); - oavr_Parser_match($this, 108); - oavr_Recognizer_setState($this, 3484); - oavr_Parser_match($this, 61); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelNameIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_alterAlias = $this => { - let $_localctx, $re, $_la, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterAliasContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 602, 301); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3486); - oavr_Parser_match($this, 15); - oavr_Recognizer_setState($this, 3487); - oncipv_Cypher25Parser_aliasName($this); - oavr_Recognizer_setState($this, 3490); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 124) { - oavr_Recognizer_setState($this, 3488); - oavr_Parser_match($this, 124); - oavr_Recognizer_setState($this, 3489); - oavr_Parser_match($this, 101); - } - oavr_Recognizer_setState($this, 3492); - oavr_Parser_match($this, 244); - oavr_Recognizer_setState($this, 3493); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3499); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - e: { - try { - while (true) { - f: { - oavr_Recognizer_setState($this, 3499); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 82: - break; - case 188: - oavr_Recognizer_setState($this, 3496); - oncipv_Cypher25Parser_alterAliasPassword($this); - break f; - case 204: - oavr_Recognizer_setState($this, 3498); - oncipv_Cypher25Parser_alterAliasProperties($this); - break f; - case 260: - oavr_Recognizer_setState($this, 3494); - oncipv_Cypher25Parser_alterAliasTarget($this); - break f; - case 285: - oavr_Recognizer_setState($this, 3495); - oncipv_Cypher25Parser_alterAliasUser($this); - break f; - default: - break e; - } - oavr_Recognizer_setState($this, 3497); - oncipv_Cypher25Parser_alterAliasDriver($this); - } - oavr_Recognizer_setState($this, 3501); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la == 82) - continue; - if ($_la == 188) - continue; - if ($_la == 204) - continue; - if ($_la == 260) - continue; - if ($_la == 285) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $rt_throw(oavr_NoViableAltException__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - } else{ - $_localctx = $$je; - break c; - } - } - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$LabelNameIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$LabelNameIsContext(); + oncipv_Cypher25Parser$LabelNameIsContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_alterAliasTarget = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterAliasTargetContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 604, 302); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3503); - oavr_Parser_match($this, 260); - oavr_Recognizer_setState($this, 3504); - oncipv_Cypher25Parser_databaseName($this); - oavr_Recognizer_setState($this, 3507); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 27) { - oavr_Recognizer_setState($this, 3505); - oavr_Parser_match($this, 27); - oavr_Recognizer_setState($this, 3506); - oncipv_Cypher25Parser_stringOrParameter($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DynamicLabelIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1IsContext), +oncipv_Cypher25Parser$DynamicLabelIsContext_dynamicAnyAllExpression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DynamicAnyAllExpressionContext), 0); }, -oncipv_Cypher25Parser_alterAliasUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterAliasUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 606, 303); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3509); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 3510); - oncipv_Cypher25Parser_commandNameExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DynamicLabelIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_alterAliasPassword = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterAliasPasswordContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 608, 304); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3512); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 3513); - oncipv_Cypher25Parser_passwordExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$DynamicLabelIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$DynamicLabelIsContext(); + oncipv_Cypher25Parser$DynamicLabelIsContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_alterAliasDriver = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterAliasDriverContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 610, 305); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3515); - oavr_Parser_match($this, 82); - oavr_Recognizer_setState($this, 3516); - oncipv_Cypher25Parser_mapOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1IsContext), +oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_alterAliasProperties = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$AlterAliasPropertiesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 612, 306); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3518); - oavr_Parser_match($this, 204); - oavr_Recognizer_setState($this, 3519); - oncipv_Cypher25Parser_mapOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext(); + oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_showAliases = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$ShowAliasesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 614, 307); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3521); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 15 && $_la != 16) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - e: { - oavr_Recognizer_setState($this, 3523); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 445, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 3522); - oncipv_Cypher25Parser_aliasName($this); - } - oavr_Recognizer_setState($this, 3525); - oavr_Parser_match($this, 108); - oavr_Recognizer_setState($this, 3526); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 61 && $_la != 62) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3528); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 294 && $_la != 299)) { - oavr_Recognizer_setState($this, 3527); - oncipv_Cypher25Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AnyLabelIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1IsContext), +oncipv_Cypher25Parser$AnyLabelIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); }, -oncipv_Cypher25Parser_symbolicNameOrStringParameter = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 616, 308); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3532); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3530); - oncipv_Cypher25Parser_symbolicNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - case 76: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3531); - oncipv_Cypher25Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipv_Cypher25Parser$AnyLabelIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$AnyLabelIsContext(); + oncipv_Cypher25Parser$AnyLabelIsContext__init_(var_1, var_0); + return var_1; }, -oncipv_Cypher25Parser_commandNameExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$CommandNameExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 618, 309); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3536); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3534); - oncipv_Cypher25Parser_symbolicNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - case 76: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3535); - oncipv_Cypher25Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipv_Cypher5Parser$Expression4Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression4Context_getRuleIndex = $this => { + return 98; +}, +oncipv_Cypher5Parser$LabelExpression1Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelExpression1Context_getRuleIndex = $this => { + return 84; +}, +oncipv_Cypher5Parser$LabelNameContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1Context), +oncipv_Cypher5Parser$LabelNameContext_symbolicNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +}, +oncipv_Cypher5Parser$LabelNameContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$LabelNameContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$LabelNameContext(); + oncipv_Cypher5Parser$LabelNameContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$DynamicLabelContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1Context), +oncipv_Cypher5Parser$DynamicLabelContext_dynamicAnyAllExpression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DynamicAnyAllExpressionContext), 0); +}, +oncipv_Cypher5Parser$DynamicLabelContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}; +let oncipv_Cypher5Parser$DynamicLabelContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$DynamicLabelContext(); + oncipv_Cypher5Parser$DynamicLabelContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1Context), +oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext(); + oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$AnyLabelContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1Context), +oncipv_Cypher5Parser$AnyLabelContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$AnyLabelContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$AnyLabelContext(); + oncipv_Cypher5Parser$AnyLabelContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$LabelExpression1IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$LabelExpression1IsContext_getRuleIndex = $this => { + return 85; +}, +oncipv_Cypher5Parser$LabelNameIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1IsContext), +oncipv_Cypher5Parser$LabelNameIsContext_symbolicLabelNameString = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicLabelNameStringContext), 0); +}, +oncipv_Cypher5Parser$LabelNameIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$LabelNameIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$LabelNameIsContext(); + oncipv_Cypher5Parser$LabelNameIsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$DynamicLabelIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1IsContext), +oncipv_Cypher5Parser$DynamicLabelIsContext_dynamicAnyAllExpression = $this => { + return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DynamicAnyAllExpressionContext), 0); +}, +oncipv_Cypher5Parser$DynamicLabelIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$DynamicLabelIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$DynamicLabelIsContext(); + oncipv_Cypher5Parser$DynamicLabelIsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1IsContext), +oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext(); + oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$AnyLabelIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1IsContext), +oncipv_Cypher5Parser$AnyLabelIsContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$AnyLabelIsContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$AnyLabelIsContext(); + oncipv_Cypher5Parser$AnyLabelIsContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$Expression3Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression3Context_getRuleIndex = $this => { + return 98; +}, +oncipv_Cypher25Parser$DynamicAnyAllExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$DynamicAnyAllExpressionContext_getRuleIndex = $this => { + return 64; +}, +oncipv_Cypher25Parser$SymbolicLabelNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$SymbolicLabelNameStringContext_getRuleIndex = $this => { + return 326; +}, +oncipv_Cypher5Parser$Expression3Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression3Context_getRuleIndex = $this => { + return 99; +}, +oncipv_Cypher5Parser$DynamicAnyAllExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$DynamicAnyAllExpressionContext_getRuleIndex = $this => { + return 65; +}, +oncipv_Cypher5Parser$SymbolicLabelNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$SymbolicLabelNameStringContext_getRuleIndex = $this => { + return 334; +}, +oncipv_Cypher25Parser$Expression2Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$Expression2Context_getRuleIndex = $this => { + return 99; +}, +oncipv_Cypher5Parser$Expression2Context = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$Expression2Context_getRuleIndex = $this => { + return 100; +}, +oncipv_Cypher25Parser$PostFixContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher25Parser$PostFixContext_getRuleIndex = $this => { + return 100; +}, +oncipv_Cypher25Parser$PropertyPostfixContext = $rt_classWithoutFields(oncipv_Cypher25Parser$PostFixContext), +oncipv_Cypher25Parser$PropertyPostfixContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$PropertyPostfixContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$PropertyPostfixContext(); + oncipv_Cypher25Parser$PropertyPostfixContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$LabelPostfixContext = $rt_classWithoutFields(oncipv_Cypher25Parser$PostFixContext), +oncipv_Cypher25Parser$LabelPostfixContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$LabelPostfixContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$LabelPostfixContext(); + oncipv_Cypher25Parser$LabelPostfixContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher25Parser$IndexPostfixContext = $rt_classWithoutFields(oncipv_Cypher25Parser$PostFixContext), +oncipv_Cypher25Parser$IndexPostfixContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$IndexPostfixContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$IndexPostfixContext(); + oncipv_Cypher25Parser$IndexPostfixContext__init_(var_1, var_0); + return var_1; +}; +function oncipv_Cypher25Parser$RangePostfixContext() { + let a = this; oncipv_Cypher25Parser$PostFixContext.call(a); + a.$fromExp = null; + a.$toExp = null; +} +let oncipv_Cypher25Parser$RangePostfixContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher25Parser$RangePostfixContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher25Parser$RangePostfixContext(); + oncipv_Cypher25Parser$RangePostfixContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$PostFixContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipv_Cypher5Parser$PostFixContext_getRuleIndex = $this => { + return 101; +}, +oncipv_Cypher5Parser$PropertyPostfixContext = $rt_classWithoutFields(oncipv_Cypher5Parser$PostFixContext), +oncipv_Cypher5Parser$PropertyPostfixContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$PropertyPostfixContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$PropertyPostfixContext(); + oncipv_Cypher5Parser$PropertyPostfixContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$LabelPostfixContext = $rt_classWithoutFields(oncipv_Cypher5Parser$PostFixContext), +oncipv_Cypher5Parser$LabelPostfixContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$LabelPostfixContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$LabelPostfixContext(); + oncipv_Cypher5Parser$LabelPostfixContext__init_(var_1, var_0); + return var_1; +}, +oncipv_Cypher5Parser$IndexPostfixContext = $rt_classWithoutFields(oncipv_Cypher5Parser$PostFixContext), +oncipv_Cypher5Parser$IndexPostfixContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$IndexPostfixContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$IndexPostfixContext(); + oncipv_Cypher5Parser$IndexPostfixContext__init_(var_1, var_0); + return var_1; +}; +function oncipv_Cypher5Parser$RangePostfixContext() { + let a = this; oncipv_Cypher5Parser$PostFixContext.call(a); + a.$fromExp0 = null; + a.$toExp0 = null; +} +let oncipv_Cypher5Parser$RangePostfixContext__init_ = ($this, $ctx) => { + oavr_ParserRuleContext__init_($this); + oavr_ParserRuleContext_copyFrom($this, $ctx); +}, +oncipv_Cypher5Parser$RangePostfixContext__init_0 = var_0 => { + let var_1 = new oncipv_Cypher5Parser$RangePostfixContext(); + oncipv_Cypher5Parser$RangePostfixContext__init_(var_1, var_0); + return var_1; +}, +onciu_RewritableJavascript$PROXY$9_17 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_17_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_17 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_17_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$9_18 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_18_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_18 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_18_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$9_19 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_19_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_19 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_19_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$7_106 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_106_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_AliasedReturnItem_copy(var$2, var$3[0], var$3[1], var$3[2]); +}, +onciu_RewritableJavascript$PROXY$7_107 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_107_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_UnsignedDecimalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_108 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_108_copyConstructor = (var$1, var$2, var$3) => { + return oncie_False_copy(var$2, var$3.data[0]); +}, +onciu_RewritableJavascript$PROXY$7_109 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_109_copyConstructor = (var$1, var$2, var$3) => { + return oncie_Null_copy(var$2, var$3.data[0]); +}; +function oncir_Deprecation() { + let a = this; jl_Object.call(a); + a.$replacement1 = null; + a.$notification0 = null; +} +let oncir_Deprecation_productPrefix = $this => { + return $rt_s(5044); +}, +oncir_Deprecation_productArity = $this => { + return 2; +}, +oncir_Deprecation_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$replacement1; + case 1: + return $this.$notification0; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser_symbolicNameOrStringParameterList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 620, 310); +oncir_Deprecation_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncir_Deprecation_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncir_Deprecation_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncir_Deprecation_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncir_Deprecation) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$replacement1; + var$3 = $x$1.$replacement1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3538); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 3543); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 3539); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 3540); - oncipv_Cypher25Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 3545); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$notification0; + $x$1 = $x$1.$notification0; + if (var$3 !== null) { + if (!s_Some_equals(var$3, $x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncir_Deprecation)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher25Parser_symbolicAliasNameList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SymbolicAliasNameListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 622, 311); +oncir_Deprecation__init_ = ($this, $replacement, $notification) => { + $this.$replacement1 = $replacement; + $this.$notification0 = $notification; +}, +oncir_Deprecation__init_0 = (var_0, var_1) => { + let var_2 = new oncir_Deprecation(); + oncir_Deprecation__init_(var_2, var_0, var_1); + return var_2; +}, +scm_IndexedSeq$ = $rt_classWithoutFields(sc_SeqFactory$Delegate), +scm_IndexedSeq$_MODULE$ = null, +scm_IndexedSeq$_$callClinit = () => { + scm_IndexedSeq$_$callClinit = $rt_eraseClinit(scm_IndexedSeq$); + scm_IndexedSeq$__clinit_(); +}, +scm_IndexedSeq$__clinit_ = () => { + let var$1; + var$1 = new scm_IndexedSeq$; + scm_IndexedSeq$_$callClinit(); + sc_SeqFactory$Delegate__init_(var$1, scm_ArrayBuffer$_MODULE$); + scm_IndexedSeq$_MODULE$ = var$1; +}, +oavrt_ParseTreeListener = $rt_classWithoutFields(0), +juf_IntFunction = $rt_classWithoutFields(0), +jusi_SimpleStreamImpl$toArray$lambda$_20_0 = $rt_classWithoutFields(); +function onciuh_TreeZipper$TreeContext() { + let a = this; jl_Object.call(a); + a.$left1 = null; + a.$parent2 = null; + a.$right0 = null; + a.$$outer22 = null; +} +let onciuh_TreeZipper$TreeContext_productPrefix = $this => { + return $rt_s(5045); +}, +onciuh_TreeZipper$TreeContext_productArity = $this => { + return 3; +}, +onciuh_TreeZipper$TreeContext_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$left1; + case 1: + return $this.$parent2; + case 2: + return $this.$right0; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciuh_TreeZipper$TreeContext_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciuh_TreeZipper$TreeContext_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +onciuh_TreeZipper$TreeContext_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciuh_TreeZipper$TreeContext_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!($x$1 instanceof onciuh_TreeZipper$TreeContext && $x$1.$$outer22 === $this.$$outer22 ? 1 : 0)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$left1; + var$3 = $x$1.$left1; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3546); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3551); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 46) { - oavr_Recognizer_setState($this, 3547); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 3548); - oncipv_Cypher25Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3553); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$parent2; + var$3 = $x$1.$parent2; + if (var$2 !== null) { + if (!onciuh_TreeZipper$Location_equals(var$2, var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$3 = $this.$right0; + $x$1 = $x$1.$right0; + if (var$3 !== null) { + if (!sci_List_equals(var$3, $x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof onciuh_TreeZipper$TreeContext)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher25Parser_symbolicAliasNameOrParameter = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 624, 312); +onciuh_TreeZipper$TreeContext__init_ = ($this, $$outer, $left, $parent, $right) => { + $this.$left1 = $left; + $this.$parent2 = $parent; + $this.$right0 = $right; + if ($$outer === null) + $rt_throw(null); + $this.$$outer22 = $$outer; +}, +onciuh_TreeZipper$TreeContext__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new onciuh_TreeZipper$TreeContext(); + onciuh_TreeZipper$TreeContext__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0_apply = (var$0, var$1) => { + return s_Some__init_(var$1); +}, +onciu_ZippableUtil$ = $rt_classWithoutFields(), +onciu_ZippableUtil$_MODULE$ = null, +onciu_ZippableUtil$__clinit_ = () => { + onciu_ZippableUtil$_MODULE$ = new onciu_ZippableUtil$; +}, +onciu_ZippableUtil$_Zippable = ($this, $left) => { + let var$2; + var$2 = new onciu_ZippableUtil$Zippable; + var$2.$left2 = $left; + return var$2; +}, +oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = new oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0; + var$3.$_0680 = var$2; + var$1 = s_Option_map(var$1, var$3); + var$3 = new oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1; + var$3.$_0119 = var$2; + return s_Option_getOrElse(var$1, var$3); +}, +oavr_CodePointBuffer$1 = $rt_classWithoutFields(), +oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type = null, +oavr_CodePointBuffer$1_$callClinit = () => { + oavr_CodePointBuffer$1_$callClinit = $rt_eraseClinit(oavr_CodePointBuffer$1); + oavr_CodePointBuffer$1__clinit_(); +}, +oavr_CodePointBuffer$1__clinit_ = () => { + let var$1, var$2; + var$1 = $rt_createIntArray((oavr_CodePointBuffer$Type_values()).data.length); + var$2 = var$1.data; + oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type = var$1; + var$2[oavr_CodePointBuffer$Type_BYTE.$ordinal] = 1; + var$2[oavr_CodePointBuffer$Type_CHAR.$ordinal] = 2; + var$2[oavr_CodePointBuffer$Type_INT.$ordinal] = 3; +}, +oavr_InputMismatchException = $rt_classWithoutFields(oavr_RecognitionException), +oavr_InputMismatchException__init_1 = ($this, $recognizer) => { + oavr_RecognitionException__init_($this, $recognizer, $recognizer.$_input, $recognizer.$_ctx); + $this.$offendingToken = oavr_Parser_getCurrentToken($recognizer); +}, +oavr_InputMismatchException__init_ = var_0 => { + let var_1 = new oavr_InputMismatchException(); + oavr_InputMismatchException__init_1(var_1, var_0); + return var_1; +}, +oavr_InputMismatchException__init_2 = ($this, $recognizer, $state, $ctx) => { + oavr_RecognitionException__init_($this, $recognizer, $recognizer.$_input, $ctx); + $this.$offendingState = $state; + $this.$offendingToken = oavr_Parser_getCurrentToken($recognizer); +}, +oavr_InputMismatchException__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oavr_InputMismatchException(); + oavr_InputMismatchException__init_2(var_3, var_0, var_1, var_2); + return var_3; +}, +oavr_FailedPredicateException = $rt_classWithoutFields(oavr_RecognitionException), +oavrm_IntSet = $rt_classWithoutFields(0); +function oavrm_IntervalSet() { + let a = this; jl_Object.call(a); + a.$intervals = null; + a.$readonly0 = 0; +} +let oavrm_IntervalSet_COMPLETE_CHAR_SET = null, +oavrm_IntervalSet_EMPTY_SET = null, +oavrm_IntervalSet_$callClinit = () => { + oavrm_IntervalSet_$callClinit = $rt_eraseClinit(oavrm_IntervalSet); + oavrm_IntervalSet__clinit_(); +}, +oavrm_IntervalSet__init_2 = ($this, $set) => { + oavrm_IntervalSet_$callClinit(); + oavrm_IntervalSet__init_0($this, $rt_createIntArray(0)); + oavrm_IntervalSet_addAll($this, $set); +}, +oavrm_IntervalSet__init_1 = var_0 => { + let var_1 = new oavrm_IntervalSet(); + oavrm_IntervalSet__init_2(var_1, var_0); + return var_1; +}, +oavrm_IntervalSet__init_0 = ($this, $els) => { + let var$2, var$3, var$4; + oavrm_IntervalSet_$callClinit(); a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3556); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3554); - oncipv_Cypher25Parser_symbolicAliasName($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - case 76: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3555); - oncipv_Cypher25Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if ($els === null) + $this.$intervals = ju_ArrayList__init_0(2); + else { + $els = $els.data; + var$2 = new ju_ArrayList; + var$3 = $els.length; + ju_ArrayList__init_1(var$2, var$3); + $this.$intervals = var$2; + var$4 = 0; + while (true) { + if (var$4 >= var$3) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + oavrm_IntervalSet_add($this, $els[var$4]); + var$4 = var$4 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; }, -oncipv_Cypher25Parser_symbolicAliasName = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SymbolicAliasNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 626, 313); +oavrm_IntervalSet__init_ = var_0 => { + let var_1 = new oavrm_IntervalSet(); + oavrm_IntervalSet__init_0(var_1, var_0); + return var_1; +}, +oavrm_IntervalSet_of0 = $a => { + let $s; + oavrm_IntervalSet_$callClinit(); + $s = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavrm_IntervalSet_add($s, $a); + return $s; +}, +oavrm_IntervalSet_of = ($a, $b) => { + let $s; + oavrm_IntervalSet_$callClinit(); + $s = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavrm_IntervalSet_add0($s, $a, $b); + return $s; +}, +oavrm_IntervalSet_add = ($this, $el) => { + let var$2; + if (!$this.$readonly0) { + oavrm_IntervalSet_add0($this, $el, $el); + return; + } + var$2 = new jl_IllegalStateException; + jl_Throwable__init_(var$2, $rt_s(5046)); + $rt_throw(var$2); +}, +oavrm_IntervalSet_add0 = ($this, $a, $b) => { + let var$3, var$4, var$5; + var$3 = oavrm_Interval_of($a, $b); + if ($this.$readonly0) { + var$3 = new jl_IllegalStateException; + jl_Throwable__init_(var$3, $rt_s(5046)); + $rt_throw(var$3); + } a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3558); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3563); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 79) { - oavr_Recognizer_setState($this, 3559); - oavr_Parser_match($this, 79); - oavr_Recognizer_setState($this, 3560); - oncipv_Cypher25Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3565); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + if (var$3.$b >= var$3.$a0) { + var$4 = ju_AbstractList_listIterator($this.$intervals, 0); + b: { + while (true) { + if (!ju_AbstractList$TListIteratorImpl_hasNext(var$4)) { + ju_ArrayList_add($this.$intervals, var$3); + break a; + } + var$5 = ju_AbstractList$TListIteratorImpl_next(var$4); + if (oavrm_Interval_equals(var$3, var$5)) + break; + if (oavrm_Interval_adjacent(var$3, var$5)) + break b; + if (!oavrm_Interval_disjoint(var$3, var$5)) + break b; + if (oavrm_Interval_startsBeforeDisjoint(var$3, var$5)) { + ju_AbstractList$TListIteratorImpl_previous(var$4); + var$5 = var$4.$this$0; + $b = var$4.$i0; + var$4.$i0 = $b + 1 | 0; + var$5.$add3($b, var$3); + var$4.$lastModCount = var$4.$this$0.$modCount; + var$4.$j = (-1); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + break a; + } + var$3 = oavrm_Interval_union(var$3, var$5); + ju_AbstractList$TListIteratorImpl_set(var$4, var$3); + c: { + while (true) { + if (!ju_AbstractList$TListIteratorImpl_hasNext(var$4)) + break c; + var$5 = ju_AbstractList$TListIteratorImpl_next(var$4); + if (!oavrm_Interval_adjacent(var$3, var$5) && oavrm_Interval_disjoint(var$3, var$5)) + break; + if (var$4.$j == (-1)) { + var$3 = new jl_IllegalStateException; + jl_Throwable__init_0(var$3); + $rt_throw(var$3); + } + ju_AbstractList$TListIteratorImpl_checkConcurrentModification(var$4); + var$4.$this$0.$remove(var$4.$j); + $a = var$4.$j; + $b = var$4.$i0; + if ($a < $b) + var$4.$i0 = $b - 1 | 0; + var$4.$sz = var$4.$sz - 1 | 0; + var$4.$lastModCount = var$4.$this$0.$modCount; + ju_AbstractList$TListIteratorImpl_previous(var$4); + ju_AbstractList$TListIteratorImpl_set(var$4, oavrm_Interval_union(var$3, var$5)); + ju_AbstractList$TListIteratorImpl_next(var$4); } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; }, -oncipv_Cypher25Parser_stringListLiteral = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StringListLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 628, 314); +oavrm_IntervalSet_addAll = ($this, $other) => { + let $n, $i, $I; + if ($other === null) + return $this; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3566); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 3575); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 8 && $_la != 9)) { - oavr_Recognizer_setState($this, 3567); - oncipv_Cypher25Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 3572); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 46) - break e; - oavr_Recognizer_setState($this, 3568); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 3569); - oncipv_Cypher25Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 3574); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - } - oavr_Recognizer_setState($this, 3577); - oavr_Parser_match($this, 210); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if (!($other instanceof oavrm_IntervalSet)) { + $other = ju_AbstractList_iterator(oavrm_IntervalSet_toList($other)); + while (true) { + if (!ju_AbstractList$1_hasNext($other)) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + oavrm_IntervalSet_add($this, (ju_AbstractList$1_next($other)).$value4); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $n = $other.$intervals.$size0; + $i = 0; + while ($i < $n) { + $I = ju_ArrayList_get($other.$intervals, $i); + oavrm_IntervalSet_add0($this, $I.$a0, $I.$b); + $i = $i + 1 | 0; + } } - return $_localctx; + return $this; }, -oncipv_Cypher25Parser_stringList = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StringListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 630, 315); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3579); - oncipv_Cypher25Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 3582); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 3580); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 3581); - oncipv_Cypher25Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 3584); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 46) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oavrm_IntervalSet_complement = ($this, $vocabularyIS) => { + let $vocabularyIS_0; + if ($vocabularyIS !== null && !oavrm_IntervalSet_isNil($vocabularyIS)) { + if ($vocabularyIS instanceof oavrm_IntervalSet) + $vocabularyIS_0 = $vocabularyIS; + else { + $vocabularyIS_0 = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavrm_IntervalSet_addAll($vocabularyIS_0, $vocabularyIS); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if (oavrm_IntervalSet_isNil($this)) + $vocabularyIS = oavrm_IntervalSet__init_1($vocabularyIS_0); + else if ($this instanceof oavrm_IntervalSet) + $vocabularyIS = oavrm_IntervalSet_subtract($vocabularyIS_0, $this); + else { + $vocabularyIS = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavrm_IntervalSet_addAll($vocabularyIS, $this); + $vocabularyIS = oavrm_IntervalSet_subtract($vocabularyIS_0, $vocabularyIS); + } + return $vocabularyIS; } - return $_localctx; + return null; }, -oncipv_Cypher25Parser_stringLiteral = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StringLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 632, 316); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3586); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 8 && $_la != 9) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +oavrm_IntervalSet_subtract = ($left, $right) => { + let $result, $resultI, $rightI, $resultInterval, $rightInterval, var$8, var$9, var$10, $beforeCurrent, $afterCurrent; + oavrm_IntervalSet_$callClinit(); + if ($left !== null && !oavrm_IntervalSet_isNil($left)) { + $result = oavrm_IntervalSet__init_1($left); + if ($right !== null && !oavrm_IntervalSet_isNil($right)) { + $resultI = 0; + $rightI = 0; + while (true) { + $left = $result.$intervals; + if ($resultI >= $left.$size0) + break; + if ($rightI >= $right.$intervals.$size0) + break; + $resultInterval = ju_ArrayList_get($left, $resultI); + $rightInterval = ju_ArrayList_get($right.$intervals, $rightI); + var$8 = $rightInterval.$b; + var$9 = $resultInterval.$a0; + if (var$8 < var$9) { + $rightI = $rightI + 1 | 0; + continue; + } + var$10 = $rightInterval.$a0; + if (var$10 > $resultInterval.$b) { + $resultI = $resultI + 1 | 0; + continue; + } + $beforeCurrent = null; + $afterCurrent = null; + if (var$10 > var$9) + $beforeCurrent = oavrm_Interval__init_(var$9, var$10 - 1 | 0); + var$9 = $rightInterval.$b; + var$10 = $resultInterval.$b; + if (var$9 < var$10) + $afterCurrent = oavrm_Interval__init_(var$9 + 1 | 0, var$10); + if ($beforeCurrent === null) { + if ($afterCurrent === null) { + ju_ArrayList_remove($result.$intervals, $resultI); + continue; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + ju_ArrayList_set($result.$intervals, $resultI, $afterCurrent); + $rightI = $rightI + 1 | 0; + continue; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($afterCurrent === null) { + ju_ArrayList_set($result.$intervals, $resultI, $beforeCurrent); + $resultI = $resultI + 1 | 0; + continue; } + ju_ArrayList_set($result.$intervals, $resultI, $beforeCurrent); + $left = $result.$intervals; + $resultI = $resultI + 1 | 0; + ju_ArrayList_add0($left, $resultI, $afterCurrent); + $rightI = $rightI + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + return $result; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + return $result; } - return $_localctx; + return oavrm_IntervalSet__init_($rt_createIntArray(0)); }, -oncipv_Cypher25Parser_stringOrParameterExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StringOrParameterExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 634, 317); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3590); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 8: - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3588); - oncipv_Cypher25Parser_stringLiteral($this); - break e; - case 76: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3589); - oncipv_Cypher25Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oavrm_IntervalSet_contains = ($this, $el) => { + let $n, $l, $r, $m, $I, $a; + $n = $this.$intervals.$size0; + $l = 0; + $r = $n - 1 | 0; + while ($l <= $r) { + $m = ($l + $r | 0) / 2 | 0; + $I = ju_ArrayList_get($this.$intervals, $m); + $a = $I.$a0; + if ($I.$b < $el) + $l = $m + 1 | 0; + else { + if ($a <= $el) + return 1; + $r = $m - 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + return 0; }, -oncipv_Cypher25Parser_stringOrParameter = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$StringOrParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 636, 318); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3594); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 8: - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3592); - oncipv_Cypher25Parser_stringLiteral($this); - break e; - case 76: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3593); - oncipv_Cypher25Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +oavrm_IntervalSet_isNil = $this => { + let var$1; + var$1 = $this.$intervals; + return var$1 !== null && !ju_AbstractCollection_isEmpty(var$1) ? 0 : 1; +}, +oavrm_IntervalSet_getMinElement = $this => { + let var$1; + if (!oavrm_IntervalSet_isNil($this)) + return (ju_ArrayList_get($this.$intervals, 0)).$a0; + var$1 = new jl_RuntimeException; + jl_Throwable__init_(var$1, $rt_s(5047)); + $rt_throw(var$1); +}, +oavrm_IntervalSet_hashCode = $this => { + let $hash, var$2, $I; + $hash = oavrm_MurmurHash_initialize(); + var$2 = ju_AbstractList_iterator($this.$intervals); + while (ju_AbstractList$1_hasNext(var$2)) { + $I = ju_AbstractList$1_next(var$2); + $hash = oavrm_MurmurHash_update(oavrm_MurmurHash_update($hash, $I.$a0), $I.$b); + } + return oavrm_MurmurHash_finish($hash, $this.$intervals.$size0 * 2 | 0); +}, +oavrm_IntervalSet_equals = ($this, $obj) => { + let $other; + if ($obj !== null && $obj instanceof oavrm_IntervalSet) { + $other = $obj; + return ju_AbstractList_equals($this.$intervals, $other.$intervals); + } + return 0; +}, +oavrm_IntervalSet_toString0 = $this => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + var$2 = $this.$intervals; + if (var$2 !== null && !ju_AbstractCollection_isEmpty(var$2)) { + if (oavrm_IntervalSet_size($this) > 1) + jl_AbstractStringBuilder_append(var$1, $rt_s(430)); + var$2 = ju_AbstractList_iterator($this.$intervals); + while (ju_AbstractList$1_hasNext(var$2)) { + var$3 = ju_AbstractList$1_next(var$2); + var$4 = var$3.$a0; + var$5 = var$3.$b; + if (var$4 != var$5) { + var$3 = jl_StringBuilder_append0(var$1, var$4); + jl_AbstractStringBuilder_append(var$3, $rt_s(444)); + jl_StringBuilder_append0(var$3, var$5); + } else if (var$4 != (-1)) + jl_StringBuilder_append0(var$1, var$4); + else + jl_AbstractStringBuilder_append(var$1, $rt_s(4236)); + if (ju_AbstractList$1_hasNext(var$2)) + jl_AbstractStringBuilder_append(var$1, $rt_s(45)); + } + if (oavrm_IntervalSet_size($this) > 1) + jl_AbstractStringBuilder_append(var$1, $rt_s(431)); + var$1 = jl_AbstractStringBuilder_toString(var$1); + } else + var$1 = $rt_s(5048); + return var$1; +}, +oavrm_IntervalSet_toString = ($this, $vocabulary) => { + let $buf, $I, $iter, $a, $b, $i; + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + $I = $this.$intervals; + if ($I !== null && !ju_AbstractCollection_isEmpty($I)) { + if (oavrm_IntervalSet_size($this) > 1) + jl_AbstractStringBuilder_append($buf, $rt_s(430)); + $iter = ju_AbstractList_iterator($this.$intervals); + while (ju_AbstractList$1_hasNext($iter)) { + a: { + $I = ju_AbstractList$1_next($iter); + $a = $I.$a0; + $b = $I.$b; + if ($a == $b) + jl_AbstractStringBuilder_append($buf, oavrm_IntervalSet_elementName($this, $vocabulary, $a)); + else { + $i = $a; + while (true) { + if ($i > $b) + break a; + if ($i > $a) + jl_AbstractStringBuilder_append($buf, $rt_s(45)); + jl_AbstractStringBuilder_append($buf, oavrm_IntervalSet_elementName($this, $vocabulary, $i)); + $i = $i + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (ju_AbstractList$1_hasNext($iter)) + jl_AbstractStringBuilder_append($buf, $rt_s(45)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if (oavrm_IntervalSet_size($this) > 1) + jl_AbstractStringBuilder_append($buf, $rt_s(431)); + return jl_AbstractStringBuilder_toString($buf); } - return $_localctx; + return $rt_s(5048); }, -oncipv_Cypher25Parser_mapOrParameter = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$MapOrParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 638, 319); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3598); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 76: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3597); - oncipv_Cypher25Parser_parameter($this, $rt_s(724)); - break e; - case 143: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3596); - oncipv_Cypher25Parser_map($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oavrm_IntervalSet_elementName = ($this, $vocabulary, $a) => { + if ($a == (-1)) + return $rt_s(4236); + if ($a != (-2)) + return oavr_VocabularyImpl_getDisplayName($vocabulary, $a); + return $rt_s(5049); +}, +oavrm_IntervalSet_size = $this => { + let $n, $I, $numIntervals, $firstInterval, $i; + $n = 0; + $I = $this.$intervals; + $numIntervals = $I.$size0; + if ($numIntervals == 1) { + $firstInterval = ju_ArrayList_get($I, 0); + return ($firstInterval.$b - $firstInterval.$a0 | 0) + 1 | 0; + } + $i = 0; + while ($i < $numIntervals) { + $I = ju_ArrayList_get($this.$intervals, $i); + $n = $n + (($I.$b - $I.$a0 | 0) + 1 | 0) | 0; + $i = $i + 1 | 0; + } + return $n; +}, +oavrm_IntervalSet_toList = $this => { + let $values, $n, $i, $I, $v, $b; + $values = ju_ArrayList__init_(); + $n = $this.$intervals.$size0; + $i = 0; + while ($i < $n) { + $I = ju_ArrayList_get($this.$intervals, $i); + $v = $I.$a0; + $b = $I.$b; + while ($v <= $b) { + ju_ArrayList_add($values, jl_Integer_valueOf($v)); + $v = $v + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $i = $i + 1 | 0; } - return $_localctx; + return $values; }, -oncipv_Cypher25Parser_map = $this => { - let $_localctx, $_la, var$3, var$4, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$MapContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 640, 320); +oavrm_IntervalSet_remove = ($this, $el) => { + let $I, $n, $i, var$5, var$6, $a, $oldb, var$9; + if ($this.$readonly0) { + $I = new jl_IllegalStateException; + jl_Throwable__init_($I, $rt_s(5046)); + $rt_throw($I); + } + $n = $this.$intervals.$size0; + $i = 0; + var$5 = $el - 1 | 0; + var$6 = $el + 1 | 0; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3600); - oavr_Parser_match($this, 143); - oavr_Recognizer_setState($this, 3614); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758095360, 4294938623)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294717439, 4277927934)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294967294)), Long_ZERO))) { - var$4 = $_la - 192 | 0; - if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(4277338073, 4294835711)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294966783, 32767)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 3601); - oncipv_Cypher25Parser_propertyKeyName($this); - oavr_Recognizer_setState($this, 3602); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 3603); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 3611); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 46) - break e; - oavr_Recognizer_setState($this, 3604); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 3605); - oncipv_Cypher25Parser_propertyKeyName($this); - oavr_Recognizer_setState($this, 3606); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 3607); - oncipv_Cypher25Parser_expression($this); - oavr_Recognizer_setState($this, 3613); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 3616); - oavr_Parser_match($this, 211); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + while (true) { + if ($i >= $n) + break a; + $I = ju_ArrayList_get($this.$intervals, $i); + $a = $I.$a0; + $oldb = $I.$b; + var$9 = $rt_compare($el, $a); + if (var$9 < 0) + break; + if (!var$9 && $el == $oldb) { + ju_ArrayList_remove($this.$intervals, $i); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (!var$9) { + $I.$a0 = $a + 1 | 0; + break a; + } + $a = $rt_compare($el, $oldb); + if (!$a) { + $I.$b = $oldb - 1 | 0; + break a; + } + if (var$9 > 0 && $a < 0) { + $I.$b = var$5; + oavrm_IntervalSet_add0($this, var$6, $oldb); + } + $i = $i + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; }, -oncipv_Cypher25Parser_symbolicNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SymbolicNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 642, 321); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3620); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3618); - oncipv_Cypher25Parser_escapedSymbolicNameString($this); - break e; - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3619); - oncipv_Cypher25Parser_unescapedSymbolicNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +oavrm_IntervalSet_setReadonly = ($this, $readonly) => { + let var$2; + if ($this.$readonly0 && !$readonly) { + var$2 = new jl_IllegalStateException; + jl_Throwable__init_(var$2, $rt_s(5046)); + $rt_throw(var$2); + } + $this.$readonly0 = $readonly; +}, +oavrm_IntervalSet__clinit_ = () => { + let var$1; + var$1 = oavrm_IntervalSet_of(0, 1114111); + oavrm_IntervalSet_COMPLETE_CHAR_SET = var$1; + oavrm_IntervalSet_setReadonly(var$1, 1); + var$1 = oavrm_IntervalSet__init_($rt_createIntArray(0)); + oavrm_IntervalSet_EMPTY_SET = var$1; + oavrm_IntervalSet_setReadonly(var$1, 1); +}, +oncie_False$$anon$11 = $rt_classWithoutFields(oncie_False), +oncie_False$$anon$11_literalLength = $this => { + return 5; +}; +function scm_RedBlackTree$TreeIterator() { + let a = this; sc_AbstractIterator.call(a); + a.$end4 = null; + a.$ord1 = null; + a.$nextNode = null; +} +let scm_RedBlackTree$TreeIterator_hasNext = $this => { + if ($this.$nextNode === null) + return 0; + return 1; +}, +scm_RedBlackTree$TreeIterator_next = $this => { + let var$1, var$2; + var$1 = $this.$nextNode; + if (var$1 === null) { + var$2 = new ju_NoSuchElementException; + jl_Throwable__init_(var$2, $rt_s(821)); + $rt_throw(var$2); + } + $this.$nextNode = scm_RedBlackTree$_scala$collection$mutable$RedBlackTree$$successor(scm_RedBlackTree$_MODULE$, var$1); + scm_RedBlackTree$TreeIterator_setNullIfAfterEnd($this); + return var$1.$key2; +}, +scm_RedBlackTree$TreeIterator_setNullIfAfterEnd = $this => { + let var$1; + if (s_Option_isDefined($this.$end4)) { + var$1 = $this.$nextNode; + if (var$1 !== null && onciu_StepSequencer$$anonfun$heuristicStepOrdering$3_compare($this.$ord1, var$1.$key2, s_None$_get($this.$end4)) >= 0) { + $this.$nextNode = null; + return; + } + } +}, +scm_RedBlackTree$KeysIterator = $rt_classWithoutFields(scm_RedBlackTree$TreeIterator); +function ju_HashMap$1() { + ju_AbstractSet.call(this); + this.$this$05 = null; +} +let ju_HashMap$1_size = $this => { + return $this.$this$05.$elementCount; +}, +ju_HashMap$1_iterator = $this => { + let var$1; + var$1 = new ju_HashMap$KeyIterator; + ju_HashMap$AbstractMapIterator__init_(var$1, $this.$this$05); + return var$1; +}; +function onciu_CypherException() { + jl_RuntimeException.call(this); + this.$message2 = null; +} +function onciu_OpenCypherExceptionFactory$SyntaxException() { + let a = this; onciu_CypherException.call(a); + a.$message1 = null; + a.$pos6 = null; +} +let onciu_OpenCypherExceptionFactory$SyntaxException_getMessage = $this => { + let var$1, var$2, var$3; + var$1 = $this.$message1; + var$2 = $this.$pos6; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(64)), var$2), 41); + return jl_AbstractStringBuilder_toString(var$3); +}, +onciu_OpenCypherExceptionFactory$SyntaxException__init_0 = ($this, $gqlStatusObject, $message, $pos) => { + $this.$message1 = $message; + $this.$pos6 = $pos; + $gqlStatusObject = null; + $this.$message2 = $message; + jl_Throwable__init_1($this, $message, $gqlStatusObject); +}, +onciu_OpenCypherExceptionFactory$SyntaxException__init_ = (var_0, var_1, var_2) => { + let var_3 = new onciu_OpenCypherExceptionFactory$SyntaxException(); + onciu_OpenCypherExceptionFactory$SyntaxException__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function ju_HashMap$HashMapEntrySet() { + ju_AbstractSet.call(this); + this.$associatedMap0 = null; +} +let ju_HashMap$HashMapEntrySet_size = $this => { + return $this.$associatedMap0.$elementCount; +}, +ju_HashMap$HashMapEntrySet_iterator = $this => { + let var$1; + var$1 = new ju_HashMap$EntryIterator; + ju_HashMap$AbstractMapIterator__init_(var$1, $this.$associatedMap0); + return var$1; +}; +function oncia_SubqueryCall$InTransactionsParameters() { + let a = this; jl_Object.call(a); + a.$batchParams = null; + a.$concurrencyParams = null; + a.$errorParams = null; + a.$reportParams0 = null; + a.$position227 = null; +} +let oncia_SubqueryCall$InTransactionsParameters_position = $this => { + return $this.$position227; +}, +oncia_SubqueryCall$InTransactionsParameters_semanticCheck = $this => { + let $checkBatchParams, $checkConcurrencyParams, $checkReportParams, var$4, $checkErrorReportCombination, $reportParams; + a: { + oncias_OptionSemanticChecking$_$callClinit(); + $checkBatchParams = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, $this.$batchParams, new oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_0); + $checkConcurrencyParams = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, $this.$concurrencyParams, new oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_1); + $checkReportParams = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, $this.$reportParams0, new oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_2); + var$4 = s_Tuple2__init_($this.$errorParams, $this.$reportParams0); + $checkErrorReportCombination = var$4.$_10; + $reportParams = var$4.$_20; + if (jl_Object_equals(s_None$_MODULE$, $checkErrorReportCombination) && $reportParams instanceof s_Some) { + $reportParams = $reportParams.$value5; + oncias_SemanticPatternCheck$_$callClinit(); + $checkErrorReportCombination = oncias_SemanticAnalysisTooling_error$(oncias_SemanticPatternCheck$_MODULE$, $rt_s(5050), $reportParams.$position122); + } else { + $reportParams = var$4.$_10; + $checkErrorReportCombination = var$4.$_20; + if ($reportParams instanceof s_Some) { + $reportParams = $reportParams.$value5; + if ($reportParams !== null) { + var$4 = $reportParams.$behaviour; + if (jl_Object_equals(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$, var$4) && $checkErrorReportCombination instanceof s_Some) { + $reportParams = $checkErrorReportCombination.$value5; + oncias_SemanticPatternCheck$_$callClinit(); + $checkErrorReportCombination = oncias_SemanticAnalysisTooling_error$(oncias_SemanticPatternCheck$_MODULE$, $rt_s(5050), $reportParams.$position122); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncias_SemanticCheck$_$callClinit(); + $checkErrorReportCombination = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}; -let oncipv_Cypher25Parser_escapedSymbolicNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$EscapedSymbolicNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 644, 322); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$($checkBatchParams.$chain($checkConcurrencyParams), $checkReportParams), $checkErrorReportCombination); +}, +oncia_SubqueryCall$InTransactionsParameters_productPrefix = $this => { + return $rt_s(5051); +}, +oncia_SubqueryCall$InTransactionsParameters_productArity = $this => { + return 4; +}, +oncia_SubqueryCall$InTransactionsParameters_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$batchParams; + case 1: + return $this.$concurrencyParams; + case 2: + return $this.$errorParams; + case 3: + return $this.$reportParams0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SubqueryCall$InTransactionsParameters_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsParameters_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsParameters_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsParameters_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3622); - oavr_Parser_match($this, 10); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsParameters) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$batchParams; + var$3 = $x$1.$batchParams; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + e: { + var$2 = $this.$concurrencyParams; + var$3 = $x$1.$concurrencyParams; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$errorParams; + var$3 = $x$1.$errorParams; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$reportParams0; + $x$1 = $x$1.$reportParams0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_SubqueryCall$InTransactionsParameters_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SubqueryCall$InTransactionsParameters__init_ = ($this, $batchParams, $concurrencyParams, $errorParams, $reportParams, $position) => { + $this.$batchParams = $batchParams; + $this.$concurrencyParams = $concurrencyParams; + $this.$errorParams = $errorParams; + $this.$reportParams0 = $reportParams; + $this.$position227 = $position; +}, +oncia_SubqueryCall$InTransactionsParameters__init_0 = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_SubqueryCall$InTransactionsParameters(); + oncia_SubqueryCall$InTransactionsParameters__init_(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; +}; +function oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0() { + let a = this; jl_Object.call(a); + a.$_0747 = null; + a.$_1251 = null; +} +let oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0747; + var$3 = var$0.$_1251; + if (var$1 instanceof oncia_AscSortItem) { + var$4 = var$1.$expression23; + var$5 = oncia_AscSortItem__init_(oncirr_normalizeWithAndReturnClauses_aliasExpression(var$2, var$3, var$4), var$1.$position()); + } else { + if (!(var$1 instanceof oncia_DescSortItem)) + $rt_throw(s_MatchError__init_(var$1)); + var$4 = var$1.$expression26; + var$5 = oncia_DescSortItem__init_0(oncirr_normalizeWithAndReturnClauses_aliasExpression(var$2, var$3, var$4), var$1.$position()); + } + return var$5; +}, +oncius_CypherTypeOrder$ = $rt_classWithoutFields(s_Enumeration), +oncius_CypherTypeOrder$_MODULE$ = null, +oncius_CypherTypeOrder$_NOTHING = null, +oncius_CypherTypeOrder$_NULL = null, +oncius_CypherTypeOrder$_BOOLEAN = null, +oncius_CypherTypeOrder$_STRING = null, +oncius_CypherTypeOrder$_INTEGER = null, +oncius_CypherTypeOrder$_FLOAT = null, +oncius_CypherTypeOrder$_DATE = null, +oncius_CypherTypeOrder$_LOCAL_TIME = null, +oncius_CypherTypeOrder$_ZONED_TIME = null, +oncius_CypherTypeOrder$_LOCAL_DATETIME = null, +oncius_CypherTypeOrder$_ZONED_DATETIME = null, +oncius_CypherTypeOrder$_DURATION = null, +oncius_CypherTypeOrder$_POINT0 = null, +oncius_CypherTypeOrder$_NODE = null, +oncius_CypherTypeOrder$_RELATIONSHIP = null, +oncius_CypherTypeOrder$_MAP = null, +oncius_CypherTypeOrder$_LIST = null, +oncius_CypherTypeOrder$_PATH = null, +oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION0 = null, +oncius_CypherTypeOrder$_ANY = null, +oncius_CypherTypeOrder$_$callClinit = () => { + oncius_CypherTypeOrder$_$callClinit = $rt_eraseClinit(oncius_CypherTypeOrder$); + oncius_CypherTypeOrder$__clinit_(); +}, +oncius_CypherTypeOrder$__clinit_ = () => { + let var$1; + var$1 = new oncius_CypherTypeOrder$; + oncius_CypherTypeOrder$_$callClinit(); + s_Enumeration__init_(var$1); + oncius_CypherTypeOrder$_MODULE$ = var$1; + oncius_CypherTypeOrder$_NOTHING = s_Enumeration_Value(var$1); + oncius_CypherTypeOrder$_NULL = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_BOOLEAN = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_STRING = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_INTEGER = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_FLOAT = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_DATE = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_LOCAL_TIME = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_ZONED_TIME = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_LOCAL_DATETIME = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_ZONED_DATETIME = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_DURATION = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_POINT0 = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_NODE = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_RELATIONSHIP = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_MAP = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_LIST = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_PATH = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION0 = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); + oncius_CypherTypeOrder$_ANY = s_Enumeration_Value(oncius_CypherTypeOrder$_MODULE$); +}, +oncius_CypherTypeOrder$_POINT = $this => { + oncius_CypherTypeOrder$_$callClinit(); + return oncius_CypherTypeOrder$_POINT0; +}, +oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION = $this => { + oncius_CypherTypeOrder$_$callClinit(); + return oncius_CypherTypeOrder$_CLOSED_DYNAMIC_UNION0; +}; +function oncipl_UnicodeEscapeReplacementReader$OffsetTableBuilder() { + let a = this; jl_Object.call(a); + a.$offsets = null; + a.$lastSrcChar = 0; + a.$lastDestChar = 0; +} +let jn_ReadOnlyBufferException = $rt_classWithoutFields(jl_UnsupportedOperationException), +sm_Ordering$BooleanOrdering = $rt_classWithoutFields(0), +sm_Ordering$Boolean$ = $rt_classWithoutFields(), +sm_Ordering$Boolean$_MODULE$ = null, +sm_Ordering$Boolean$__clinit_ = () => { + sm_Ordering$Boolean$_MODULE$ = new sm_Ordering$Boolean$; +}, +sm_Ordering$Boolean$_compare = ($this, $x, $y) => { + return jl_Boolean_compare(sr_BoxesRunTime_unboxToBoolean($x), sr_BoxesRunTime_unboxToBoolean($y)); +}, +oncia_SingleQuery$ = $rt_classWithoutFields(), +oncia_SingleQuery$_MODULE$ = null, +oncia_SingleQuery$_$callClinit = () => { + oncia_SingleQuery$_$callClinit = $rt_eraseClinit(oncia_SingleQuery$); + oncia_SingleQuery$__clinit_(); +}, +oncia_SingleQuery$__clinit_ = () => { + let var$1; + var$1 = new oncia_SingleQuery$; + oncia_SingleQuery$_$callClinit(); + oncia_SingleQuery$_MODULE$ = var$1; +}, +oncia_SingleQuery$_org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses = ($this, $clauses) => { + let var$2, var$3; + var$2 = s_Option_map(oncia_SingleQuery$_extractImportingWith($this, $clauses), new oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0); + var$3 = new oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0; + var$3.$_0545 = $clauses; + var$3 = s_Option_orElse(var$2, var$3); + var$2 = new oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1; + var$2.$_01070 = $clauses; + return s_Option_getOrElse(var$3, var$2); +}, +oncia_SingleQuery$_extractImportingWith = ($this, $clauses) => { + let var$2, var$3; + var$2 = $clauses.$headOption(); + var$3 = new oncia_SingleQuery$$anonfun$extractImportingWith$1; + var$3.$clauses$5 = $clauses; + return s_Option_collect(var$2, var$3); +}, +oncia_SingleQuery$_extractGraphSelection = ($this, $clauses) => { + let var$2, var$3; + var$2 = $clauses.$headOption(); + var$3 = new oncia_SingleQuery$$anonfun$extractGraphSelection$1; + var$3.$clauses$6 = $clauses; + return s_Option_collect(var$2, var$3); +}; +function onciu_ZippableUtil$Zippable() { + jl_Object.call(this); + this.$left2 = null; +} +let onciu_ZippableUtil$Zippable_zipLeft = ($this, $right, $fill, $bf) => { + let var$4, $zipped; + s_package$_$callClinit(); + $bf = s_package$_Seq(s_package$_MODULE$); + var$4 = $this.$left2.$length() - $right.$length() | 0; + $zipped = new onciu_ZippableUtil$Zippable$zipLeft$lambda$_0_0; + $zipped.$_0535 = $fill; + $fill = new sc_View$Fill; + $fill.$n2 = var$4; + $fill.$elem7 = $zipped; + $fill = $right.$concat(sci_Seq$_from($bf, $fill)); + $zipped = $this.$left2.$zip1($fill); + return ($this.$left2.$iterableFactory()).$from0($zipped); +}, +jn_IntBuffer = $rt_classWithoutFields(jn_Buffer), +jn_IntBuffer_allocate = $capacity => { + let var$2, var$3, var$4; + if ($capacity < 0) { + var$2 = new jl_IllegalArgumentException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append0(jl_StringBuilder_append(var$3, $rt_s(782)), $capacity); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); + } + var$2 = new jn_IntBufferOverArray; + var$4 = $rt_createIntArray($capacity); + jn_Buffer__init_(var$2, $capacity); + var$2.$position3 = 0; + var$2.$limit2 = $capacity; + var$2.$start5 = 0; + var$2.$readOnly0 = 0; + var$2.$array16 = var$4; + return var$2; +}; +function oncirr_normalizeWithAndReturnClauses$$anonfun$3() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer69 = null; + a.$existingAliases$3 = null; +} +let oncirr_normalizeWithAndReturnClauses$$anonfun$3_applyOrElse = ($this, $x1, $default) => { + let $subAlias, var$4, var$5; + if (!($x1 instanceof oncie_Expression)) + return $default.$apply2($x1); + $x1 = $x1; + $default = $this.$existingAliases$3.$get2($x1); + if ($default instanceof s_Some) { + a: { + $subAlias = $default.$value5; + $default = $this.$existingAliases$3; + if (!($default.$valuesIterator()).$contains($x1)) { + $default = ($default.$filter1(new oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0)).$valuesIterator(); + var$4 = new oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1; + var$4.$_0254 = $x1; + if (!$default.$exists(var$4)) { + var$5 = 0; + break a; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$5 = 1; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if (!var$5) + return oncie_Variable_withPosition(oncie_Variable_copyId($subAlias), $x1.$position()); } - return $_localctx; + return $x1; }, -oncipv_Cypher25Parser_unescapedSymbolicNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 646, 323); +oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0 = $rt_classWithoutFields(), +oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0_shouldStop = (var$0, var$1) => { + return $rt_isInstance(var$1, oncie_ScopeExpression); +}, +oeca_PrimitiveIterable = $rt_classWithoutFields(0), +oeca_IntIterable = $rt_classWithoutFields(0), +oecip_AbstractIntIterable = $rt_classWithoutFields(), +oecacp_MutableIntCollection = $rt_classWithoutFields(0), +oecaop_OrderedIntIterable = $rt_classWithoutFields(0), +oecaop_ReversibleIntIterable = $rt_classWithoutFields(0), +oecalp_IntList = $rt_classWithoutFields(0), +oecalp_MutableIntList = $rt_classWithoutFields(0), +ji_Externalizable = $rt_classWithoutFields(0); +function oecilmp_IntArrayList() { + let a = this; oecip_AbstractIntIterable.call(a); + a.$size7 = 0; + a.$items3 = null; +} +let oecilmp_IntArrayList_DEFAULT_SIZED_EMPTY_ARRAY = null, +oecilmp_IntArrayList_ZERO_SIZED_ARRAY = null, +oecilmp_IntArrayList_get = ($this, $index) => { + if ($index >= $this.$size7) + $rt_throw(oecilmp_IntArrayList_newIndexOutOfBoundsException($this, $index)); + return $this.$items3.data[$index]; +}, +oecilmp_IntArrayList_newIndexOutOfBoundsException = ($this, $index) => { + let var$2, var$3; + var$2 = new jl_IndexOutOfBoundsException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append(var$3, $rt_s(5052)); + var$3 = jl_StringBuilder_append0(var$3, $index); + jl_AbstractStringBuilder_append(var$3, $rt_s(5053)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$3, $this.$size7))); + return var$2; +}, +oecilmp_IntArrayList_addAll = ($this, $source) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $source.data.length; + if (var$2 < 1) + return 0; + var$3 = $this.$size7 + var$2 | 0; + var$4 = $this.$items3.data.length; + if (var$3 > var$4) { + var$5 = (var$4 + (var$4 >> 1) | 0) + 1 | 0; + if (var$5 < var$4) + var$5 = 2147483639; + var$5 = jl_Math_max(var$5, var$3); + var$6 = $rt_createIntArray(var$5); + jl_System_fastArraycopy($this.$items3, 0, var$6, 0, jl_Math_min($this.$size7, var$5)); + $this.$items3 = var$6; + } + jl_System_fastArraycopy($source, 0, $this.$items3, $this.$size7, var$2); + $this.$size7 = var$3; + return 1; +}, +oecilmp_IntArrayList__clinit_ = () => { + oecilmp_IntArrayList_DEFAULT_SIZED_EMPTY_ARRAY = $rt_createIntArray(0); + oecilmp_IntArrayList_ZERO_SIZED_ARRAY = $rt_createIntArray(0); +}, +oavrt_TerminalNode = $rt_classWithoutFields(0), +oavrt_ErrorNode = $rt_classWithoutFields(0); +function oavra_ATNConfig() { + let a = this; jl_Object.call(a); + a.$state0 = null; + a.$alt0 = 0; + a.$context = null; + a.$reachesIntoOuterContext = 0; + a.$semanticContext = null; +} +let oavra_ATNConfig__init_3 = ($this, $state, $alt, $context) => { + oavra_ATNConfig__init_1($this, $state, $alt, $context, oavra_SemanticContext$Empty_Instance); +}, +oavra_ATNConfig__init_6 = (var_0, var_1, var_2) => { + let var_3 = new oavra_ATNConfig(); + oavra_ATNConfig__init_3(var_3, var_0, var_1, var_2); + return var_3; +}, +oavra_ATNConfig__init_1 = ($this, $state, $alt, $context, $semanticContext) => { + $this.$state0 = $state; + $this.$alt0 = $alt; + $this.$context = $context; + $this.$semanticContext = $semanticContext; +}, +oavra_ATNConfig__init_7 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oavra_ATNConfig(); + oavra_ATNConfig__init_1(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oavra_ATNConfig__init_9 = ($this, $c, $state) => { + oavra_ATNConfig__init_0($this, $c, $state, $c.$context, $c.$semanticContext); +}, +oavra_ATNConfig__init_ = (var_0, var_1) => { + let var_2 = new oavra_ATNConfig(); + oavra_ATNConfig__init_9(var_2, var_0, var_1); + return var_2; +}, +oavra_ATNConfig__init_8 = ($this, $c, $state, $semanticContext) => { + oavra_ATNConfig__init_0($this, $c, $state, $c.$context, $semanticContext); +}, +oavra_ATNConfig__init_4 = (var_0, var_1, var_2) => { + let var_3 = new oavra_ATNConfig(); + oavra_ATNConfig__init_8(var_3, var_0, var_1, var_2); + return var_3; +}, +oavra_ATNConfig__init_10 = ($this, $c, $semanticContext) => { + oavra_ATNConfig__init_0($this, $c, $c.$state0, $c.$context, $semanticContext); +}, +oavra_ATNConfig__init_5 = (var_0, var_1) => { + let var_2 = new oavra_ATNConfig(); + oavra_ATNConfig__init_10(var_2, var_0, var_1); + return var_2; +}, +oavra_ATNConfig__init_2 = ($this, $c, $state, $context) => { + oavra_ATNConfig__init_0($this, $c, $state, $context, $c.$semanticContext); +}, +oavra_ATNConfig__init_11 = (var_0, var_1, var_2) => { + let var_3 = new oavra_ATNConfig(); + oavra_ATNConfig__init_2(var_3, var_0, var_1, var_2); + return var_3; +}, +oavra_ATNConfig__init_0 = ($this, $c, $state, $context, $semanticContext) => { + $this.$state0 = $state; + $this.$alt0 = $c.$alt0; + $this.$context = $context; + $this.$semanticContext = $semanticContext; + $this.$reachesIntoOuterContext = $c.$reachesIntoOuterContext; +}, +oavra_ATNConfig__init_12 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oavra_ATNConfig(); + oavra_ATNConfig__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oavra_ATNConfig_getOuterContextDepth = $this => { + return $this.$reachesIntoOuterContext & (-1073741825); +}, +oavra_ATNConfig_isPrecedenceFilterSuppressed = $this => { + return !($this.$reachesIntoOuterContext & 1073741824) ? 0 : 1; +}, +oavra_ATNConfig_setPrecedenceFilterSuppressed = ($this, $value) => { + if (!$value) + $this.$reachesIntoOuterContext = $this.$reachesIntoOuterContext & (-1073741825); + else + $this.$reachesIntoOuterContext = $this.$reachesIntoOuterContext | 1073741824; +}, +oavra_ATNConfig_equals0 = ($this, $o) => { + if (!($o instanceof oavra_ATNConfig)) + return 0; + return $this.$equals10($o); +}, +oavra_ATNConfig_equals = ($this, $other) => { + if ($this === $other) + return 1; + if ($other === null) + return 0; + return $this.$state0.$stateNumber == $other.$state0.$stateNumber && $this.$alt0 == $other.$alt0 && ju_Objects_equals($this.$context, $other.$context) && $this.$semanticContext.$equals($other.$semanticContext) && oavra_ATNConfig_isPrecedenceFilterSuppressed($this) == oavra_ATNConfig_isPrecedenceFilterSuppressed($other) ? 1 : 0; +}, +oavra_ATNConfig_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(oavrm_MurmurHash_update(7, $this.$state0.$stateNumber), $this.$alt0), $this.$context), $this.$semanticContext), 4); +}, +oavra_ATNConfig_toString = $this => { + return oavra_ATNConfig_toString0($this, null, 1); +}, +oavra_ATNConfig_toString0 = ($this, $recog, $showAlt) => { + let $buf; + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + jl_AbstractStringBuilder_append0($buf, 40); + jl_StringBuilder_append($buf, $this.$state0); + if ($showAlt) { + jl_AbstractStringBuilder_append($buf, $rt_s(41)); + jl_StringBuilder_append0($buf, $this.$alt0); + } + if ($this.$context !== null) { + jl_AbstractStringBuilder_append($buf, $rt_s(5054)); + jl_AbstractStringBuilder_append($buf, $this.$context.$toString()); + jl_AbstractStringBuilder_append($buf, $rt_s(425)); + } + $recog = $this.$semanticContext; + if ($recog !== null && $recog !== oavra_SemanticContext$Empty_Instance) { + jl_AbstractStringBuilder_append($buf, $rt_s(41)); + jl_StringBuilder_append($buf, $this.$semanticContext); + } + if (oavra_ATNConfig_getOuterContextDepth($this) > 0) { + jl_AbstractStringBuilder_append($buf, $rt_s(5055)); + jl_StringBuilder_append0($buf, oavra_ATNConfig_getOuterContextDepth($this)); + } + jl_AbstractStringBuilder_append0($buf, 41); + return jl_AbstractStringBuilder_toString($buf); +}; +function sci_HashMap$HashKeySet$filterNot$lambda$_5_0() { + jl_Object.call(this); + this.$_0113 = null; +} +let sci_HashMap$HashKeySet$filterNot$lambda$_5_0__init_ = (var$0, var$1) => { + var$0.$_0113 = var$1; +}, +sci_HashMap$HashKeySet$filterNot$lambda$_5_0__init_0 = var_0 => { + let var_1 = new sci_HashMap$HashKeySet$filterNot$lambda$_5_0(); + sci_HashMap$HashKeySet$filterNot$lambda$_5_0__init_(var_1, var_0); + return var_1; +}, +sci_HashMap$HashKeySet$filterNot$lambda$_5_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0113.$apply2(var$1.$_1()))); +}; +function oncia_ProcedureResult() { + let a = this; jl_Object.call(a); + a.$items2 = null; + a.$where10 = null; + a.$position162 = null; +} +let oncia_ProcedureResult_position = $this => { + return $this.$position162; +}, +oncia_ProcedureResult_copy = ($this, $items, $where, $position) => { + return oncia_ProcedureResult__init_($items, $where, $position); +}, +oncia_ProcedureResult_productPrefix = $this => { + return $rt_s(5056); +}, +oncia_ProcedureResult_productArity = $this => { + return 2; +}, +oncia_ProcedureResult_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$items2; + case 1: + return $this.$where10; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_ProcedureResult_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ProcedureResult_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ProcedureResult_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ProcedureResult_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3633); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 176: - case 177: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3624); - oncipv_Cypher25Parser_unescapedLabelSymbolicNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - break; - case 164: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 3629); - oavr_Parser_match($this, 164); - break e; - case 165: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 3630); - oavr_Parser_match($this, 165); - break e; - case 166: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 3631); - oavr_Parser_match($this, 166); - break e; - case 167: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 3632); - oavr_Parser_match($this, 167); - break e; - case 174: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 3628); - oavr_Parser_match($this, 174); - break e; - case 175: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3625); - oavr_Parser_match($this, 175); - break e; - case 178: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 3626); - oavr_Parser_match($this, 178); - break e; - case 277: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 3627); - oavr_Parser_match($this, 277); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ProcedureResult) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$items2; + var$3 = $x$1.$items2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + d: { + var$3 = $this.$where10; + $x$1 = $x$1.$where10; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_ProcedureResult)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher25Parser_symbolicLabelNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$SymbolicLabelNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 648, 324); +oncia_ProcedureResult_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ProcedureResult__init_0 = ($this, $items, $where, $position) => { + $this.$items2 = $items; + $this.$where10 = $where; + $this.$position162 = $position; +}, +oncia_ProcedureResult__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_ProcedureResult(); + oncia_ProcedureResult__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncia_With$ = $rt_classWithoutFields(), +oncia_With$_MODULE$ = null, +oncia_With$__clinit_ = () => { + oncia_With$_MODULE$ = new oncia_With$; +}, +oncia_Union$returnVariables$lambda$_6_0 = $rt_classWithoutFields(), +oncia_Union$returnVariables$lambda$_6_0_apply = (var$0, var$1) => { + return var$1.$unionVariable; +}, +oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0_apply = (var$0, var$1) => { + return ((var$1.$alias()).$get1()).$name4; +}, +oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1_apply = (var$0, var$1) => { + return ((var$1.$alias()).$get1()).$name4; +}; +function oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0() { + jl_Object.call(this); + this.$_0545 = null; +} +let oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0545; + oncia_SingleQuery$_$callClinit(); + return s_Option_map(oncia_SingleQuery$_extractGraphSelection(oncia_SingleQuery$_MODULE$, var$1), new oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0); +}; +function oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1() { + jl_Object.call(this); + this.$_01070 = null; +} +let oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_01070; + oncia_SingleQuery$_$callClinit(); + var$2 = new oncia_SingleQuery$PartitionedClauses; + var$3 = s_None$_MODULE$; + oncia_SingleQuery$PartitionedClauses__init_0(var$2, var$3, var$3, var$3, var$1); + return var$2; +}; +function sc_Iterator$GroupedIterator() { + let a = this; sc_AbstractIterator.call(a); + a.$self0 = null; + a.$size6 = 0; + a.$step3 = 0; + a.$buffer0 = null; + a.$prev = null; + a.$first2 = 0; + a.$filled = 0; + a.$partial = 0; + a.$padding = null; + a.$$outer71 = null; +} +let sc_Iterator$GroupedIterator_newBuilder = $this => { + let $make_evidence$1, var$2, $b, $k; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3637); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3635); - oncipv_Cypher25Parser_escapedSymbolicNameString($this); - break e; - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 30: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 47: - case 48: - case 49: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 77: - case 82: - case 83: - case 84: - case 85: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 97: - case 98: - case 99: - case 100: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 115: - case 116: - case 117: - case 118: - case 119: - case 121: - case 122: - case 123: - case 124: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 153: - case 154: - case 155: - case 156: - case 161: - case 162: - case 163: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 176: - case 177: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 195: - case 196: - case 198: - case 199: - case 200: - case 201: - case 202: - case 203: - case 204: - case 205: - case 206: - case 207: - case 209: - case 212: - case 213: - case 214: - case 215: - case 217: - case 218: - case 219: - case 220: - case 221: - case 222: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 234: - case 235: - case 236: - case 237: - case 238: - case 239: - case 240: - case 242: - case 243: - case 244: - case 245: - case 246: - case 247: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3636); - oncipv_Cypher25Parser_unescapedLabelSymbolicNameString($this); - break e; - case 29: - case 44: - case 45: - case 46: - case 76: - case 78: - case 79: - case 80: - case 81: - case 96: - case 114: - case 120: - case 140: - case 141: - case 142: - case 143: - case 144: - case 151: - case 152: - case 157: - case 158: - case 159: - case 160: - case 164: - case 165: - case 166: - case 167: - case 174: - case 175: - case 178: - case 193: - case 194: - case 197: - case 208: - case 210: - case 211: - case 216: - case 233: - case 241: - case 265: - case 277: - break; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); + sr_ClassTag$_$callClinit(); + $make_evidence$1 = sr_ClassTag$_Any(sr_ClassTag$_MODULE$); + var$2 = $make_evidence$1.$runtimeClass1; + if (jl_Object_equals($rt_cls($rt_bytecls), var$2)) { + $b = new scm_ArrayBuilder$ofByte; + scm_ArrayBuilder__init_($b); + break a; + } + if (jl_Object_equals($rt_cls($rt_shortcls), var$2)) { + $b = new scm_ArrayBuilder$ofShort; + scm_ArrayBuilder__init_($b); + break a; + } + if (jl_Object_equals($rt_cls($rt_charcls), var$2)) { + $b = new scm_ArrayBuilder$ofChar; + scm_ArrayBuilder__init_($b); + break a; + } + if (jl_Object_equals($rt_cls($rt_intcls), var$2)) { + $b = new scm_ArrayBuilder$ofInt; + scm_ArrayBuilder__init_($b); + break a; + } + if (jl_Object_equals($rt_cls($rt_longcls), var$2)) { + $b = new scm_ArrayBuilder$ofLong; + scm_ArrayBuilder__init_($b); + break a; + } + if (jl_Object_equals($rt_cls($rt_floatcls), var$2)) { + $b = new scm_ArrayBuilder$ofFloat; + scm_ArrayBuilder__init_($b); + break a; + } + if (jl_Object_equals($rt_cls($rt_doublecls), var$2)) { + $b = new scm_ArrayBuilder$ofDouble; + scm_ArrayBuilder__init_($b); + break a; + } + if (jl_Object_equals($rt_cls($rt_booleancls), var$2)) { + $b = new scm_ArrayBuilder$ofBoolean; + scm_ArrayBuilder__init_($b); + break a; + } + if (!jl_Object_equals($rt_cls($rt_voidcls), var$2)) { + $b = scm_ArrayBuilder$ofRef__init_($make_evidence$1); + break a; + } + $b = new scm_ArrayBuilder$ofUnit; + scm_ArrayBuilder__init_($b); + } + $k = $this.$self0.$knownSize(); + if ($k > 0) + scm_ArrayBuilder_sizeHint($b, jl_Math_min($k, $this.$size6)); + return $b; +}, +sc_Iterator$GroupedIterator_fill = $this => { + let var$1, var$2, var$3, var$4, var$5; + if (!$this.$filled) { + a: { + if ($this.$self0.$hasNext()) { + var$1 = sc_Iterator$GroupedIterator_newBuilder($this); + var$2 = 0; + var$3 = $this.$prev; + if (var$3 !== null) + scm_ArrayBuilder_addAll(var$1, var$3); + if (!$this.$first2) { + var$4 = $this.$step3; + var$5 = $this.$size6; + if (var$4 > var$5) { + var$2 = var$4 - var$5 | 0; + while (true) { + var$4 = $rt_compare(var$2, 0); + if (var$4 <= 0) + break; + if (!$this.$self0.$hasNext()) + break; + $this.$self0.$next(); + var$2 = var$2 + (-1) | 0; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + var$2 = var$4 <= 0 ? 0 : 1; + } + } + var$4 = var$1.$size1; + if (!var$2) { + while (var$4 < $this.$size6 && $this.$self0.$hasNext()) { + var$1.$addOne($this.$self0.$next()); + var$4 = var$4 + 1 | 0; + } + var$2 = $this.$size6; + if (var$4 < var$2 && ($this.$padding === null ? 0 : 1)) { + scm_ArrayBuilder_sizeHint(var$1, var$2); + while (var$4 < $this.$size6) { + var$1.$addOne($this.$padding.$apply4()); + var$4 = var$4 + 1 | 0; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); + } + b: { + c: { + if (var$4 > 0) { + if ($this.$partial) + break c; + if (var$4 == $this.$size6) + break c; + } + var$2 = 0; + break b; + } + var$2 = 1; + } + if (!var$2) + $this.$prev = null; + else + $this.$buffer0 = var$1.$result(); + if (var$2) { + var$2 = 1; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + var$2 = 0; + } + $this.$filled = var$2; + if (!var$2) + return 0; + } + return 1; +}, +sc_Iterator$GroupedIterator_hasNext = $this => { + return sc_Iterator$GroupedIterator_fill($this); +}, +sc_Iterator$GroupedIterator_next = $this => { + let var$1, var$2, var$3, var$4, var$5; + if (!sc_Iterator$GroupedIterator_fill($this)) + var$1 = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + else { + $this.$filled = 0; + var$2 = $this.$step3; + if (var$2 < $this.$size6) { + if ($this.$first2) + $this.$prev = sc_ArrayOps$_drop$extension(sc_ArrayOps$_MODULE$, $this.$buffer0, var$2); + else { + var$2 = jlr_Array_getLength($this.$buffer0); + var$3 = $this.$size6; + if (var$2 != var$3) + $this.$prev = null; + else { + var$1 = s_Array$_MODULE$; + var$4 = $this.$buffer0; + var$5 = $this.$step3; + s_Array$_copy(var$1, var$4, var$5, $this.$prev, 0, var$3 - var$5 | 0); } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$1 = sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, $this.$buffer0); + $this.$buffer0 = null; + $this.$first2 = 0; } - return $_localctx; + return var$1; }, -oncipv_Cypher25Parser_unescapedLabelSymbolicNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 650, 325); +sc_Iterator$GroupedIterator__init_0 = ($this, $$outer, $self, $size, $step) => { + let var$5, var$6, var$7, var$8; + $this.$self0 = $self; + $this.$size6 = $size; + $this.$step3 = $step; + if ($$outer === null) + $rt_throw(null); + $this.$$outer71 = $$outer; + if ($size >= 1 && $step >= 1 ? 1 : 0) { + $this.$buffer0 = null; + $this.$prev = null; + $this.$first2 = 1; + $this.$filled = 0; + $this.$partial = 1; + $this.$padding = null; + return; + } + $self = new jl_IllegalArgumentException; + $$outer = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0($$outer, 20); + jl_AbstractStringBuilder_append($$outer, $rt_s(824)); + var$5 = sc_StringOps$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(jl_Object, 2); + var$8 = var$7.data; + var$8[0] = jl_Integer_valueOf($this.$size6); + var$8[1] = jl_Integer_valueOf($this.$step3); + jl_Throwable__init_($self, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($$outer, sc_StringOps$_format$extension(var$5, $rt_s(5057), sr_ScalaRunTime$_genericWrapArray(var$6, var$7))))); + $rt_throw($self); +}, +sc_Iterator$GroupedIterator__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new sc_Iterator$GroupedIterator(); + sc_Iterator$GroupedIterator__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0() { + jl_Object.call(this); + this.$_0972 = null; +} +let oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0972; + return oncia_AliasedReturnItem__init_(oncie_Variable_copyId(var$1.$variable8), oncie_Variable_copyId(var$1.$variable8), var$2.$position9); +}; +function oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0() { + jl_Object.call(this); + this.$_0965 = null; +} +let oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(var$0.$_0965.$contains(var$1)); +}; +function sc_View$Filter() { + let a = this; sc_AbstractView.call(a); + a.$underlying32 = null; + a.$p2 = null; + a.$isFlipped = 0; +} +let sc_View$Filter_iterator = $this => { + return ($this.$underlying32.$iterator0()).$filterImpl0($this.$p2, $this.$isFlipped); +}, +sc_View$Filter_knownSize = $this => { + if ($this.$underlying32.$knownSize()) + return (-1); + return 0; +}, +sc_View$Filter_isEmpty = $this => { + return sc_Iterator_isEmpty$(sc_View$Filter_iterator($this)); +}, +sc_View$Filter__init_0 = ($this, $underlying, $p, $isFlipped) => { + $this.$underlying32 = $underlying; + $this.$p2 = $p; + $this.$isFlipped = $isFlipped; +}, +sc_View$Filter__init_ = (var_0, var_1, var_2) => { + let var_3 = new sc_View$Filter(); + sc_View$Filter__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_Union$UnionMapping() { + let a = this; jl_Object.call(a); + a.$unionVariable = null; + a.$variableInLhs = null; + a.$variableInRhs = null; +} +let oncia_Union$UnionMapping_productPrefix = $this => { + return $rt_s(5058); +}, +oncia_Union$UnionMapping_productArity = $this => { + return 3; +}, +oncia_Union$UnionMapping_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$unionVariable; + case 1: + return $this.$variableInLhs; + case 2: + return $this.$variableInRhs; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Union$UnionMapping_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Union$UnionMapping_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Union$UnionMapping_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Union$UnionMapping_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Union$UnionMapping) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$unionVariable; + var$3 = $x$1.$unionVariable; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3639); - oncipv_Cypher25Parser_unescapedLabelSymbolicNameString_($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$variableInLhs; + var$3 = $x$1.$variableInLhs; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$3 = $this.$variableInRhs; + $x$1 = $x$1.$variableInRhs; + if (var$3 !== null) { + if (!oncie_Variable_equals(var$3, $x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_Union$UnionMapping)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; +}; +function sc_StrictOptimizedIterableOps$partition$lambda$_1_0() { + let a = this; jl_Object.call(a); + a.$_0350 = null; + a.$_1124 = null; + a.$_245 = null; +} +let sc_StrictOptimizedIterableOps$partition$lambda$_1_0_apply = (var$0, var$1) => { + return sc_StrictOptimizedIterableOps_$anonfun$partition$1(var$0.$_0350, var$0.$_1124, var$0.$_245, var$1); +}; +function oncias_SemanticCheck$chain$lambda$_15_0() { + jl_Object.call(this); + this.$_048 = null; +} +let oncias_SemanticCheck$chain$lambda$_15_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_048; + var$3 = new oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0; + var$3.$_068 = var$1; + return var$2.$map11(var$3); +}; +function oncias_SemanticCheck$FlatMap() { + let a = this; jl_Object.call(a); + a.$check8 = null; + a.$f6 = null; +} +let oncias_SemanticCheck$FlatMap_run = ($this, $state, $context) => { + return oncias_SemanticCheck_run$($this, $state, $context); }, -oncipv_Cypher25Parser_unescapedLabelSymbolicNameString_ = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 652, 326); +oncias_SemanticCheck$FlatMap_chain = ($this, $next) => { + return oncias_SemanticCheck_chain$($this, $next); +}, +oncias_SemanticCheck$FlatMap_ifOkChain = ($this, $next) => { + return oncias_SemanticCheck_ifOkChain$($this, $next); +}, +oncias_SemanticCheck$FlatMap_map = ($this, $f) => { + return oncias_SemanticCheck_map$($this, $f); +}, +oncias_SemanticCheck$FlatMap_flatMap = ($this, $f) => { + return oncias_SemanticCheck_flatMap$($this, $f); +}, +oncias_SemanticCheck$FlatMap_productPrefix = $this => { + return $rt_s(5059); +}, +oncias_SemanticCheck$FlatMap_productArity = $this => { + return 2; +}, +oncias_SemanticCheck$FlatMap_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$check8; + case 1: + return $this.$f6; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheck$FlatMap_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$FlatMap_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$FlatMap_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$FlatMap_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3641); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3758094336, 4294938623)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4294717439, 4277927934)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(511578111, 4294655758)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4277338073, 4294835711)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4292869631, 32767)), Long_ZERO))) { - $this.$_errHandler.$recoverInline($this); - break e; - } - } - } - } - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticCheck$FlatMap) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$check8; + var$3 = $x$1.$check8; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$f6; + $x$1 = $x$1.$f6; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher25Parser__clinit_ = () => { - let var$1, $i, var$3, var$4; - oavr_RuntimeMetaData_checkVersion($rt_s(6405), $rt_s(6405)); - oncipv_Cypher25Parser__sharedContextCache = oavra_PredictionContextCache__init_(); - oncipv_Cypher25Parser_ruleNames = oncipv_Cypher25Parser_makeRuleNames(); - oncipv_Cypher25Parser__LITERAL_NAMES = oncipv_Cypher25Parser_makeLiteralNames(); - var$1 = oncipv_Cypher25Parser_makeSymbolicNames(); - oncipv_Cypher25Parser__SYMBOLIC_NAMES = var$1; - oncipv_Cypher25Parser_VOCABULARY = oavr_VocabularyImpl__init_(oncipv_Cypher25Parser__LITERAL_NAMES, var$1); - oncipv_Cypher25Parser_tokenNames = $rt_createArray(jl_String, oncipv_Cypher25Parser__SYMBOLIC_NAMES.data.length); - $i = 0; - while (true) { - var$3 = oncipv_Cypher25Parser_tokenNames.data; - if ($i >= var$3.length) - break; - var$3[$i] = oavr_VocabularyImpl_getLiteralName(oncipv_Cypher25Parser_VOCABULARY, $i); - var$3 = oncipv_Cypher25Parser_tokenNames.data; - if (var$3[$i] === null) - var$3[$i] = oavr_VocabularyImpl_getSymbolicName(oncipv_Cypher25Parser_VOCABULARY, $i); - var$3 = oncipv_Cypher25Parser_tokenNames.data; - if (var$3[$i] === null) - var$3[$i] = $rt_s(6409); - $i = $i + 1 | 0; - } - oncipv_Cypher25Parser__serializedATN = oavrm_Utils_join($rt_wrapArray(jl_String, [$rt_s(6739), $rt_s(6740)]), $rt_s(4)); - var$4 = oavra_ATNDeserializer_deserialize(oavra_ATNDeserializer__init_(), jl_String_toCharArray(oncipv_Cypher25Parser__serializedATN)); - oncipv_Cypher25Parser__ATN = var$4; - oncipv_Cypher25Parser__decisionToDFA = $rt_createArray(oavrd_DFA, oavra_ATN_getNumberOfDecisions(var$4)); - $i = 0; - while ($i < oavra_ATN_getNumberOfDecisions(oncipv_Cypher25Parser__ATN)) { - oncipv_Cypher25Parser__decisionToDFA.data[$i] = oavrd_DFA__init_(oavra_ATN_getDecisionState(oncipv_Cypher25Parser__ATN, $i), $i); - $i = $i + 1 | 0; - } +oncia_SubqueryCall$ = $rt_classWithoutFields(), +oncia_SubqueryCall$_MODULE$ = null, +oncia_SubqueryCall$__clinit_ = () => { + oncia_SubqueryCall$_MODULE$ = new oncia_SubqueryCall$; +}, +oncia_SubqueryCall$_isTransactionalSubquery = ($this, $clause) => { + return s_Option_isDefined($clause.$inTransactionsParameters()); +}, +oncia_SubqueryCall$_findTransactionalSubquery = ($this, $node) => { + let var$2; + var$2 = $node.$folder(); + $node = new oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1; + sr_ClassTag$_$callClinit(); + return onciu_Foldable$Folder_treeFind(var$2, $node, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SubqueryCall))); +}, +oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1_applyOrElse = ($this, $x1, $default) => { + if (!$rt_isInstance($x1, oncia_UpdateClause)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return jl_Boolean_valueOf(1); +}, +oncias_SemanticAnalysisTooling$ = $rt_classWithoutFields(), +oncias_SemanticAnalysisTooling$_MODULE$ = null, +oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScope = null, +oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope = null, +oncias_SemanticAnalysisTooling$_$callClinit = () => { + oncias_SemanticAnalysisTooling$_$callClinit = $rt_eraseClinit(oncias_SemanticAnalysisTooling$); + oncias_SemanticAnalysisTooling$__clinit_(); +}, +oncias_SemanticAnalysisTooling$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticAnalysisTooling$; + oncias_SemanticAnalysisTooling$_$callClinit(); + oncias_SemanticAnalysisTooling$_MODULE$ = var$1; + oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScope = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0); + oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1); +}, +oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope0 = $this => { + oncias_SemanticAnalysisTooling$_$callClinit(); + return oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope; }; -function oncipvaf_CypherAstBuildingAntlrParser0() { - let a = this; oncipv_Cypher25Parser.call(a); - a.$exceptionFactory9 = null; - a.$notificationLogger3 = null; - a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder1 = null; - a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker1 = null; - a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed1 = 0; - a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors1 = 0; +function oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_73_0() { + jl_Object.call(this); + this.$_0766 = null; } -let oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule = $this => { - oavr_Parser_exitRule($this); +let oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_73_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0766; + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_recordCurrentScope(var$1, var$2)); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode = ($this, $x$1, $x$2) => { - return oavr_Parser_createTerminalNode($this, $x$1, $x$2); +oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0 = $rt_classWithoutFields(), +oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0_apply = (var$0, var$1) => { + return var$1.$reportAs.$name4; +}; +function oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_79_0() { + let a = this; jl_Object.call(a); + a.$_0902 = null; + a.$_1307 = null; + a.$_2100 = null; +} +let oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_79_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0902; + var$3 = var$0.$_1307; + var$4 = var$0.$_2100; + if (var$1.$features.$contains(var$2)) + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + else { + var$5 = oncias_SemanticCheckResult$_MODULE$; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$3), $rt_s(5060)), var$2), 46); + var$1 = oncias_SemanticCheckResult$_error(var$5, var$1, oncias_FeatureError__init_(null, jl_AbstractStringBuilder_toString(var$6), var$2, var$4)); + } + return var$1; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset = $this => { - oavr_Parser_reset($this); +oncia_DefaultWith$ = $rt_classWithoutFields(), +oncia_DefaultWith$_MODULE$ = null, +oncia_DefaultWith$__clinit_ = () => { + oncia_DefaultWith$_MODULE$ = new oncia_DefaultWith$; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler = ($this, $x$1) => { - $this.$_errHandler = $x$1; +oncia_DefaultWith$_productArity = $this => { + return 0; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners = ($this, $x$1, $x$2, $x$3) => { - oavr_Parser_notifyErrorListeners($this, $x$1, $x$2, $x$3); +oncia_DefaultWith$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_CypherAstBuildingAntlrParser_exitRule0 = $this => { - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_DefaultWith$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_CypherAstBuildingAntlrParser_createTerminalNode = ($this, $parent, $t) => { - return oncipa_AstBuildingAntlrParser_createTerminalNode$($this, $parent, $t); +oncia_DefaultWith$_hashCode = $this => { + return 1231002247; }, -oncipvaf_CypherAstBuildingAntlrParser_reset = $this => { - oncipa_AstBuildingAntlrParser_reset$($this); +oncia_DefaultWith$_toString = $this => { + return $rt_s(5061); }, -oncipvaf_CypherAstBuildingAntlrParser_addParseListener0 = ($this, $listener) => { - oncipa_AstBuildingAntlrParser_addParseListener$($this, $listener); +oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + oncia_SingleQuery$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = oncia_SingleQuery$_extractGraphSelection(oncia_SingleQuery$_MODULE$, var$1); + var$4 = new oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0; + var$4.$_054 = var$2; + var$3 = s_Option_map(var$3, var$4); + var$4 = new oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1; + var$4.$_0812 = var$2; + var$4.$_1272 = var$1; + return s_Option_getOrElse(var$3, var$4); }, -oncipvaf_CypherAstBuildingAntlrParser_setErrorHandler0 = ($this, $handler) => { - oncipa_AstBuildingAntlrParser_setErrorHandler$($this, $handler); +oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0 = $rt_classWithoutFields(), +oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0_apply = (var$0, var$1) => { + return var$1.$expression0(); }, -oncipvaf_CypherAstBuildingAntlrParser_notifyErrorListeners = ($this, $offendingToken, $msg, $e) => { - oncipa_AstBuildingAntlrParser_notifyErrorListeners$($this, $offendingToken, $msg, $e); +oncie_containsAggregate$ = $rt_classWithoutFields(), +oncie_containsAggregate$_MODULE$ = null, +oncie_containsAggregate$__clinit_ = () => { + oncie_containsAggregate$_MODULE$ = new oncie_containsAggregate$; }, -oncipvaf_CypherAstBuildingAntlrParser_syntaxChecker = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker(); +oncie_containsAggregate$_apply = ($this, $v1) => { + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(onciu_Foldable$Folder_treeFold(onciu_Foldable_folder$($v1), jl_Boolean_valueOf(0), new oncie_containsAggregate$$anonfun$apply$1))); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder1; +oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + var$1 = var$1; + oncifp_ResolvedFunctionInvocation$_$callClinit(); + if (var$1 !== null) { + var$2 = var$1.$_1(); + var$3 = var$1.$_2(); + if (var$2 !== null && var$3 !== null && var$3.$sensitive) { + oncifp_SensitiveParameterRewriter$_$callClinit(); + var$1 = oncifp_SensitiveParameterRewriter$_MODULE$.$apply2(var$2); + break a; + } + } + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = var$1.$_1(); + } + return var$1; +}; +function oncias_SemanticCheck$$error$lambda$_2_0() { + jl_Object.call(this); + this.$_0412 = null; +} +let oncias_SemanticCheck$$error$lambda$_2_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0412; + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheckResult$_error1(oncias_SemanticCheckResult$_MODULE$, var$1, var$2); +}; +function oncia_SingleQuery$$anonfun$extractImportingWith$1() { + sr_AbstractPartialFunction.call(this); + this.$clauses$5 = null; +} +let oncia_SingleQuery$$anonfun$extractImportingWith$1_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9; + a: { + $x = $x; + if ($x instanceof oncia_With) { + var$3 = $x; + var$4 = var$3.$distinct2; + var$5 = var$3.$returnItems3; + var$6 = var$3.$orderBy4; + var$7 = var$3.$skip5; + var$8 = var$3.$limit5; + var$9 = var$3.$where2; + if (0 == var$4 && jl_Object_equals(s_None$_MODULE$, var$6) && jl_Object_equals(s_None$_MODULE$, var$7) && jl_Object_equals(s_None$_MODULE$, var$8) && jl_Object_equals(s_None$_MODULE$, var$9) && var$5.$items0.$forall(new oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0)) { + $x = s_Tuple2__init_(var$3, $this.$clauses$5.$tail()); + break a; + } + } + $x = s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x); + } + return $x; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder1 = $x$1; +jn_IntBufferImpl = $rt_classWithoutFields(jn_IntBuffer), +jn_IntBufferImpl_put = ($this, $b) => { + let var$2, var$3; + if ($this.$readOnly0) { + var$2 = new jn_ReadOnlyBufferException; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); + } + var$3 = $this.$position3; + if (var$3 < $this.$limit2) { + $this.$position3 = var$3 + 1 | 0; + jn_IntBufferOverArray_putElement($this, var$3, $b); + return $this; + } + var$2 = new jn_BufferOverflowException; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); +}; +function jn_IntBufferOverArray() { + let a = this; jn_IntBufferImpl.call(a); + a.$readOnly0 = 0; + a.$start5 = 0; + a.$array16 = null; +} +let jn_IntBufferOverArray_putElement = ($this, $index, $value) => { + $this.$array16.data[$index + $this.$start5 | 0] = $value; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0 = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker1; +oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), +oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticAnalysisTooling$_$callClinit(); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_newChildScope(var$1)); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker1 = $x$1; +oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1 = $rt_classWithoutFields(), +oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticAnalysisTooling$_$callClinit(); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_popScope(var$1)); +}; +function s_Enumeration$Value() { + let a = this; jl_Object.call(a); + a.$scala$Enumeration$$outerEnum0 = null; + a.$$outer36 = null; +} +let s_Enumeration$Value_compareTo = ($this, $that) => { + let var$2; + $that = $that; + var$2 = $rt_compare($this.$i, $that.$i); + return var$2 < 0 ? (-1) : var$2 ? 1 : 0; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0 = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed1; +s_Enumeration$Value_equals = ($this, $other) => { + if (!($other instanceof s_Enumeration$Value)) + return 0; + $other = $other; + if ($this.$scala$Enumeration$$outerEnum0 === $other.$scala$Enumeration$$outerEnum0 && $this.$i == $other.$i) + return 1; + return 0; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq0 = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed1 = $x$1; +s_Enumeration$Value_hashCode = $this => { + return $this.$i; +}; +function s_Enumeration$Val() { + let a = this; s_Enumeration$Value.call(a); + a.$i = 0; + a.$name57 = null; +} +let s_Enumeration$Val_toString = $this => { + let var$1, $$je; + var$1 = $this.$name57; + if (var$1 !== null) + return var$1; + a: { + try { + var$1 = s_Enumeration_scala$Enumeration$$nameOf(s_Enumeration$Val_scala$Enumeration$Val$$$outer($this), $this.$i); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof ju_NoSuchElementException) { + break a; + } else { + throw $$e; + } + } + return var$1; + } + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$1, 30); + jl_AbstractStringBuilder_append(var$1, $rt_s(5062)); + var$1 = jl_StringBuilder_append0(var$1, $this.$i); + jl_AbstractStringBuilder_append(var$1, $rt_s(604)); + return jl_AbstractStringBuilder_toString(var$1); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors1; +s_Enumeration$Val_scala$Enumeration$Val$$$outer = $this => { + return $this.$$outer36; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors1 = $x$1; +oncifp_ResolvedCall$ = $rt_classWithoutFields(), +oncifp_ResolvedCall$_MODULE$ = null, +oncifp_ResolvedCall$_$callClinit = () => { + oncifp_ResolvedCall$_$callClinit = $rt_eraseClinit(oncifp_ResolvedCall$); + oncifp_ResolvedCall$__clinit_(); }, -oncipvaf_CypherAstBuildingAntlrParser_createSyntaxChecker0 = $this => { +oncifp_ResolvedCall$__clinit_ = () => { let var$1; - var$1 = new oncipvaf_Cypher25SyntaxChecker; - var$1.$exceptionFactory2 = $this.$exceptionFactory9; - s_package$_$callClinit(); - var$1.$_errors0 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - return var$1; -}, -oncipvaf_CypherAstBuildingAntlrParser_createAstBuilder = $this => { + var$1 = new oncifp_ResolvedCall$; + oncifp_ResolvedCall$_$callClinit(); + oncifp_ResolvedCall$_MODULE$ = var$1; +}; +function oncifp_RewriteProcedureCalls$resolveProcedure$lambda$_7_0() { + jl_Object.call(this); + this.$_01197 = null; +} +let s_Product4 = $rt_classWithoutFields(0); +function s_Tuple4() { + let a = this; jl_Object.call(a); + a.$_1400 = null; + a.$_2131 = null; + a.$_337 = null; + a.$_410 = null; +} +function oncifp_ResolvedCall$$apply$lambda$_5_0() { + let a = this; jl_Object.call(a); + a.$_0351 = null; + a.$_1125 = null; +} +let oncifp_ResolvedCall$$apply$lambda$_5_0_apply = var$0 => { let var$1, var$2, var$3; - var$1 = new oncipvaf_Cypher25AstBuilder; - var$2 = $this.$notificationLogger3; - var$3 = $this.$exceptionFactory9; - var$1.$notificationLogger4 = var$2; - var$1.$exceptionFactory5 = var$3; - return var$1; + var$1 = var$0.$_0351; + var$2 = var$0.$_1125; + oncifp_ResolvedCall$_$callClinit(); + var$3 = var$1.$inputSignature0; + var$1 = new oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0; + var$1.$_03 = var$2; + return sci_ArraySeq_map(var$3, var$1); }, -oncipvaf_CypherAstBuildingAntlrParser_isSafeToFreeChildren0 = ($this, $ctx) => { - switch ($ctx.$getRuleIndex()) { - case 34: - break; - case 35: - return 0; - case 93: - return 0; - case 100: - return 0; - case 110: - return 0; - case 111: - return 0; - case 134: - return 0; - case 135: - return 0; - case 138: - return 0; - case 178: - return 0; - case 180: - return 0; - case 187: - return 0; - case 189: - return 0; - case 196: - return 0; - case 197: - return 0; - case 219: - return 0; - case 237: - return 0; - case 238: - return 0; - case 267: - return 0; - case 289: - return 0; - case 290: - return 0; - case 297: - return 0; - case 298: - return 0; - case 302: - return 0; - case 303: - return 0; - case 304: - return 0; - case 305: - return 0; - case 306: - return 0; - case 312: - return 0; - case 313: - return 0; - case 321: - return 0; - case 323: - return 0; - case 325: - return 0; - case 326: - return 0; - default: - return 1; +oncifp_ResolvedCall$$apply$lambda$_5_1 = $rt_classWithoutFields(), +oncifp_ResolvedCall$$apply$lambda$_5_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncifp_ResolvedCall$_$callClinit(); + return jl_Boolean_valueOf(var$1.$sensitive); +}, +oncifp_ResolvedCall$$apply$lambda$_5_2 = $rt_classWithoutFields(), +oncifp_ResolvedCall$$apply$lambda$_5_2_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + var$1 = var$1; + oncifp_ResolvedCall$_$callClinit(); + if (var$1 !== null) { + var$2 = var$1.$_1(); + var$3 = var$1.$_2$mcZ$sp(); + if (var$2 !== null && 1 == var$3) { + oncifp_SensitiveParameterRewriter$_$callClinit(); + var$1 = oncifp_SensitiveParameterRewriter$_MODULE$.$apply2(var$2); + break a; + } + } + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = var$1.$_1(); } - return 0; + return var$1; }, -scm_CheckedIndexedSeqView = $rt_classWithoutFields(0); -function scm_CheckedIndexedSeqView$Reverse() { - let a = this; sc_IndexedSeqView$Reverse.call(a); - a.$underlying43 = null; - a.$mutationCount3 = null; +oncifp_ResolvedCall$$apply$lambda$_5_3 = $rt_classWithoutFields(), +oncifp_ResolvedCall$$apply$lambda$_5_3_apply = (var$0, var$1) => { + var$1 = var$1; + oncifp_ResolvedCall$_$callClinit(); + return var$1.$items2; +}; +function oncifp_ResolvedCall$$apply$lambda$_5_4() { + let a = this; jl_Object.call(a); + a.$_01177 = null; + a.$_1239 = null; + a.$_278 = null; } -let scm_CheckedIndexedSeqView$Reverse_iterator = $this => { - return scm_CheckedIndexedSeqView$CheckedIterator__init_($this, $this.$mutationCount3); +let oncifp_ResolvedCall$$apply$lambda$_5_4_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_1239; + var$2 = var$0.$_278; + oncifp_ResolvedCall$_$callClinit(); + var$1 = s_Option_getOrElse(var$1.$outputSignature, new oncifp_ResolvedCall$$signatureResults$lambda$_10_0); + var$3 = new oncifp_ResolvedCall$$signatureResults$lambda$_10_1; + var$3.$_034 = var$2; + return (var$1.$map(var$3)).$toIndexedSeq(); +}, +oncifp_ResolvedCall$$apply$lambda$_5_5 = $rt_classWithoutFields(), +oncifp_ResolvedCall$$apply$lambda$_5_5_apply = (var$0, var$1) => { + var$1 = var$1; + oncifp_ResolvedCall$_$callClinit(); + return var$1.$where10; +}, +oncifp_ResolvedCall$_init_$lambda$_71_0 = $rt_classWithoutFields(), +oncifp_ResolvedCall$_init_$lambda$_71_0_apply = (var$0, var$1) => { + return sc_AbstractIterable_toMap(var$1.$map(new oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0), s_$less$colon$less$_singleton); +}, +oncifp_ResolvedCall$_init_$lambda$_71_1 = $rt_classWithoutFields(), +oncifp_ResolvedCall$_init_$lambda$_71_1_apply = var$0 => { + s_Predef$_$callClinit(); + return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); }; -function oncia_Union$UnionMapping() { +function oncie_ProcedureName() { let a = this; jl_Object.call(a); - a.$unionVariable = null; - a.$variableInLhs = null; - a.$variableInRhs = null; + a.$name24 = null; + a.$position209 = null; } -let oncia_Union$UnionMapping_productPrefix = $this => { - return $rt_s(6741); +let oncie_ProcedureName_name = $this => { + return $this.$name24; }, -oncia_Union$UnionMapping_productArity = $this => { - return 3; +oncie_ProcedureName_position = $this => { + return $this.$position209; }, -oncia_Union$UnionMapping_productElement = ($this, $x$1) => { +oncie_ProcedureName_productPrefix = $this => { + return $rt_s(5063); +}, +oncie_ProcedureName_productArity = $this => { + return 1; +}, +oncie_ProcedureName_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$unionVariable; - case 1: - return $this.$variableInLhs; - case 2: - return $this.$variableInRhs; + return $this.$name24; default: } return sr_Statics_ioobe($x$1); }, -oncia_Union$UnionMapping_productIterator = $this => { +oncie_ProcedureName_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_Union$UnionMapping_hashCode = $this => { +oncie_ProcedureName_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_Union$UnionMapping_toString = $this => { +oncie_ProcedureName_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_Union$UnionMapping_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncie_ProcedureName_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Union$UnionMapping) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_ProcedureName) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$unionVariable; - var$3 = $x$1.$unionVariable; + var$2 = $this.$name24; + $x$1 = $x$1.$name24; if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) + if (!jl_String_equals(var$2, $x$1)) break b; else break c; } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$variableInLhs; - var$3 = $x$1.$variableInLhs; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$3 = $this.$variableInRhs; - $x$1 = $x$1.$variableInRhs; - if (var$3 !== null) { - if (!oncie_Variable_equals(var$3, $x$1)) - break b; - else - break e; - } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_Union$UnionMapping)) + if (!($this instanceof oncie_ProcedureName)) break b; } - var$4 = 1; + var$3 = 1; break a; } - var$4 = 0; + var$3 = 0; } - return var$4; + return var$3; }, -jn_ReadOnlyBufferException = $rt_classWithoutFields(jl_UnsupportedOperationException), -jn_BufferOverflowException = $rt_classWithoutFields(jl_RuntimeException), -jnc_BufferUnderflowException = $rt_classWithoutFields(jl_RuntimeException), -jnc_BufferOverflowException = $rt_classWithoutFields(jl_RuntimeException); -function jnc_MalformedInputException() { - jnc_CharacterCodingException.call(this); - this.$length7 = 0; +oncie_ProcedureName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_ProcedureName__init_ = ($this, $name, $position) => { + $this.$name24 = $name; + $this.$position209 = $position; +}, +oncie_ProcedureName__init_0 = (var_0, var_1) => { + let var_2 = new oncie_ProcedureName(); + oncie_ProcedureName__init_(var_2, var_0, var_1); + return var_2; +}, +ong_GqlParams = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_20 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_20_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_21 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_21_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_22 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_22_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_23 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_23_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_24 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_24_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_25 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_25_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_26 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_26_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_27 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_27_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_28 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_28_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_29 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_29_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_30 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_30_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_31 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_31_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_32 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_32_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_33 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_33_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_34 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_34_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_35 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_35_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_36 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_36_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_37 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_37_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_38 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$9_38_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_39 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_39_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_40 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_40_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_41 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_41_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_42 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_42_numParameters = var$1 => { + return (jl_Integer_valueOf(9)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_43 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_43_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_44 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_44_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_45 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_45_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_46 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_46_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_20 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_20_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_21 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_21_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_22 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_22_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_23 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_23_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_24 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_24_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_25 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_25_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_26 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_26_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_27 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_27_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_28 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_28_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_29 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_29_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_30 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_30_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_31 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_31_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_32 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_32_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_33 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_33_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_34 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_34_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_35 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_35_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_36 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$11_36_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_37 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_37_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_38 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_38_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_39 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_39_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_40 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_40_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_41 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_41_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_42 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_42_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_43 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_43_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_44 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_44_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_45 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_45_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_46 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_46_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onc_SettingsDeclaration = $rt_classWithoutFields(0), +onc_GraphDatabaseInternalSettings = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_117 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_117_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Variable_copy(var$2, var$3[0], var$3[1], var$3[2].$value3); +}, +onciu_RewritableJavascript$PROXY$7_121 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_121_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncifp_ResolvedFunctionInvocation_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +}, +onciu_RewritableJavascript$PROXY$7_122 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_122_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_OrderBy_copy(var$2, var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_124 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_124_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Where_copy(var$2, var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_125 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_125_copyConstructor = (var$1, var$2, var$3) => { + return oncie_False_copy(var$2, var$3.data[0]); +}, +onciu_RewritableJavascript$PROXY$9_47 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_47_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_47 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_47_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$9_48 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_48_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_49 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_49_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_48 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_48_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_49 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_49_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$7_127 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_127_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ReturnItems_copy(var$2, var$3[0].$value3, var$3[1], var$3[2], var$3[3]); +}, +onciu_RewritableJavascript$PROXY$7_133 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_133_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PropertyKeyName__init_0(var$3[0], var$3[1]); +}; +function oavrm_Interval() { + let a = this; jl_Object.call(a); + a.$a0 = 0; + a.$b = 0; } -let jnc_MalformedInputException_getMessage = $this => { - let var$1, var$2; - var$1 = $this.$length7; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(6742)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +let oavrm_Interval_INVALID = null, +oavrm_Interval_cache = null, +oavrm_Interval_$callClinit = () => { + oavrm_Interval_$callClinit = $rt_eraseClinit(oavrm_Interval); + oavrm_Interval__clinit_(); +}, +oavrm_Interval__init_0 = ($this, $a, $b) => { + oavrm_Interval_$callClinit(); + $this.$a0 = $a; + $this.$b = $b; +}, +oavrm_Interval__init_ = (var_0, var_1) => { + let var_2 = new oavrm_Interval(); + oavrm_Interval__init_0(var_2, var_0, var_1); + return var_2; +}, +oavrm_Interval_of = ($a, $b) => { + let var$3; + oavrm_Interval_$callClinit(); + if ($a == $b && $a >= 0 && $a <= 1000) { + var$3 = oavrm_Interval_cache.data; + if (var$3[$a] === null) + var$3[$a] = oavrm_Interval__init_($a, $a); + return oavrm_Interval_cache.data[$a]; + } + return oavrm_Interval__init_($a, $b); +}, +oavrm_Interval_equals = ($this, $o) => { + let $other; + if ($o !== null && $o instanceof oavrm_Interval) { + $other = $o; + return $this.$a0 == $other.$a0 && $this.$b == $other.$b ? 1 : 0; + } + return 0; +}, +oavrm_Interval_hashCode = $this => { + return ((713 + $this.$a0 | 0) * 31 | 0) + $this.$b | 0; +}, +oavrm_Interval_startsBeforeDisjoint = ($this, $other) => { + let var$2, var$3; + var$2 = $this.$a0; + var$3 = $other.$a0; + return var$2 < var$3 && $this.$b < var$3 ? 1 : 0; +}, +oavrm_Interval_disjoint = ($this, $other) => { + return !oavrm_Interval_startsBeforeDisjoint($this, $other) && !($this.$a0 <= $other.$b ? 0 : 1) ? 0 : 1; +}, +oavrm_Interval_adjacent = ($this, $other) => { + return $this.$a0 != ($other.$b + 1 | 0) && $this.$b != ($other.$a0 - 1 | 0) ? 0 : 1; +}, +oavrm_Interval_union = ($this, $other) => { + return oavrm_Interval_of(jl_Math_min($this.$a0, $other.$a0), jl_Math_max($this.$b, $other.$b)); +}, +oavrm_Interval_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + var$1 = jl_StringBuilder_append0(var$1, $this.$a0); + jl_AbstractStringBuilder_append(var$1, $rt_s(444)); + return jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$1, $this.$b)); +}, +oavrm_Interval__clinit_ = () => { + oavrm_Interval_INVALID = oavrm_Interval__init_((-1), (-2)); + oavrm_Interval_cache = $rt_createArray(oavrm_Interval, 1001); +}, +sci_MapKeyIterator = $rt_classWithoutFields(sci_ChampBaseIterator), +sci_MapKeyIterator_iterator = $this => { + return $this; +}, +sci_MapKeyIterator_isEmpty = $this => { + return sc_Iterator_isEmpty$($this); +}, +sci_MapKeyIterator_filterImpl = ($this, $p, $isFlipped) => { + return sc_Iterator_filterImpl$($this, $p, $isFlipped); +}, +sci_MapKeyIterator_collect = ($this, $pf) => { + return sc_Iterator_collect$($this, $pf); +}, +sci_MapKeyIterator_map = ($this, $f) => { + return sc_Iterator_map$($this, $f); +}, +sci_MapKeyIterator_flatMap = ($this, $f) => { + return sc_Iterator_flatMap$($this, $f); +}, +sci_MapKeyIterator_concat = ($this, $xs) => { + return sc_Iterator_concat$($this, $xs); +}, +sci_MapKeyIterator_drop = ($this, $n) => { + return sc_Iterator_drop$($this, $n); +}, +sci_MapKeyIterator_sliceIterator = ($this, $from, $until) => { + return sc_Iterator_sliceIterator$($this, $from, $until); +}, +sci_MapKeyIterator_toString = $this => { + return $rt_s(818); +}, +sci_MapKeyIterator_foreach = ($this, $f) => { + sc_IterableOnceOps_foreach$($this, $f); +}, +sci_MapKeyIterator_exists = ($this, $p) => { + return sc_IterableOnceOps_exists$($this, $p); +}, +sci_MapKeyIterator_find = ($this, $p) => { + return sc_IterableOnceOps_find$($this, $p); +}, +sci_MapKeyIterator_foldLeft = ($this, $z, $op) => { + return sc_IterableOnceOps_foldLeft$($this, $z, $op); +}, +sci_MapKeyIterator_nonEmpty = $this => { + return sc_IterableOnceOps_nonEmpty$($this); +}, +sci_MapKeyIterator_size = $this => { + return sc_IterableOnceOps_size$($this); +}, +sci_MapKeyIterator_copyToArray = ($this, $xs) => { + return sc_IterableOnceOps_copyToArray$($this, $xs); +}, +sci_MapKeyIterator_copyToArray0 = ($this, $xs, $start) => { + return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); +}, +sci_MapKeyIterator_copyToArray1 = ($this, $xs, $start, $len) => { + return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); +}, +sci_MapKeyIterator_to = ($this, $factory) => { + return $factory.$fromSpecific($this); +}, +sci_MapKeyIterator_toList = $this => { + return sc_IterableOnceOps_toList$($this); +}, +sci_MapKeyIterator_toSeq = $this => { + return sc_IterableOnceOps_toSeq$($this); +}, +sci_MapKeyIterator_toArray = ($this, $evidence$2) => { + return sc_IterableOnceOps_toArray$($this, $evidence$2); +}, +sci_MapKeyIterator_knownSize = $this => { + return (-1); +}, +sci_MapKeyIterator_next = $this => { + let $key; + if (!sci_ChampBaseIterator_hasNext($this)) { + $key = new ju_NoSuchElementException; + jl_Throwable__init_0($key); + $rt_throw($key); + } + $key = $this.$currentValueNode.$getKey0($this.$currentValueCursor); + $this.$currentValueCursor = $this.$currentValueCursor + 1 | 0; + return $key; +}, +sci_Map$Map2$$anon$2 = $rt_classWithoutFields(sci_Map$Map2$Map2Iterator), +sci_Map$Map2$$anon$2_nextResult = ($this, $k, $v) => { + return $k; +}, +sci_Map$Map3$$anon$5 = $rt_classWithoutFields(sci_Map$Map3$Map3Iterator), +sci_Map$Map3$$anon$5_nextResult = ($this, $k, $v) => { + return $k; +}, +sci_Map$Map4$$anon$8 = $rt_classWithoutFields(sci_Map$Map4$Map4Iterator), +sci_Map$Map4$$anon$8_nextResult = ($this, $k, $v) => { + return $k; }; -function jnc_UnmappableCharacterException() { - jnc_CharacterCodingException.call(this); - this.$length8 = 0; +function ju_HashMap$AbstractMapIterator() { + let a = this; jl_Object.call(a); + a.$position106 = 0; + a.$expectedModCount = 0; + a.$futureEntry = null; + a.$currentEntry = null; + a.$prevEntry0 = null; + a.$associatedMap = null; } -let jnc_UnmappableCharacterException_getMessage = $this => { +let ju_HashMap$AbstractMapIterator__init_ = ($this, $hm) => { + $this.$associatedMap = $hm; + $this.$expectedModCount = $hm.$modCount0; + $this.$futureEntry = null; +}, +ju_HashMap$AbstractMapIterator__init_0 = var_0 => { + let var_1 = new ju_HashMap$AbstractMapIterator(); + ju_HashMap$AbstractMapIterator__init_(var_1, var_0); + return var_1; +}, +ju_HashMap$AbstractMapIterator_hasNext = $this => { let var$1, var$2; - var$1 = $this.$length8; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(6743)), var$1); - return jl_AbstractStringBuilder_toString(var$2); + if ($this.$futureEntry !== null) + return 1; + while (true) { + var$1 = $this.$position106; + var$2 = $this.$associatedMap.$elementData.data; + if (var$1 >= var$2.length) + break; + if (var$2[var$1] !== null) + return 1; + $this.$position106 = var$1 + 1 | 0; + } + return 0; +}, +ju_HashMap$AbstractMapIterator_checkConcurrentMod = $this => { + let var$1; + if ($this.$expectedModCount == $this.$associatedMap.$modCount0) + return; + var$1 = new ju_ConcurrentModificationException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); +}, +ju_HashMap$AbstractMapIterator_makeNext = $this => { + let var$1, var$2, var$3, var$4; + ju_HashMap$AbstractMapIterator_checkConcurrentMod($this); + if (!ju_HashMap$AbstractMapIterator_hasNext($this)) { + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + } + var$1 = $this.$futureEntry; + if (var$1 !== null) { + var$2 = $this.$currentEntry; + if (var$2 !== null) + $this.$prevEntry0 = var$2; + $this.$currentEntry = var$1; + $this.$futureEntry = var$1.$next6; + } else { + var$3 = $this.$associatedMap.$elementData.data; + var$4 = $this.$position106; + $this.$position106 = var$4 + 1 | 0; + var$1 = var$3[var$4]; + $this.$currentEntry = var$1; + $this.$futureEntry = var$1.$next6; + $this.$prevEntry0 = null; + } +}, +ju_HashMap$AbstractMapIterator_remove = $this => { + let var$1, var$2, var$3, var$4, $index; + ju_HashMap$AbstractMapIterator_checkConcurrentMod($this); + var$1 = $this.$currentEntry; + if (var$1 === null) { + var$1 = new jl_IllegalStateException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + } + var$2 = $this.$prevEntry0; + if (var$2 !== null) + var$2.$next6 = var$1.$next6; + else { + var$3 = var$1.$origKeyHash; + var$4 = $this.$associatedMap.$elementData.data; + $index = var$3 & (var$4.length - 1 | 0); + var$4[$index] = var$4[$index].$next6; + } + $this.$currentEntry = null; + $this.$expectedModCount = $this.$expectedModCount + 1 | 0; + var$1 = $this.$associatedMap; + var$1.$modCount0 = var$1.$modCount0 + 1 | 0; + var$1.$elementCount = var$1.$elementCount - 1 | 0; +}, +ju_HashMap$KeyIterator = $rt_classWithoutFields(ju_HashMap$AbstractMapIterator), +ju_HashMap$KeyIterator_next = $this => { + ju_HashMap$AbstractMapIterator_makeNext($this); + return $this.$currentEntry.$key0; +}, +ju_HashMap$EntryIterator = $rt_classWithoutFields(ju_HashMap$AbstractMapIterator), +ju_HashMap$EntryIterator_next = $this => { + ju_HashMap$AbstractMapIterator_makeNext($this); + return $this.$currentEntry; }; -function jusi_LimitingIntStreamImpl() { - let a = this; jusi_SimpleIntStreamImpl.call(a); - a.$sourceStream1 = null; - a.$limit6 = 0; - a.$remaining0 = 0; +function onciu_ZippableUtil$Zippable$zipLeft$lambda$_0_0() { + jl_Object.call(this); + this.$_0535 = null; } -let jusi_LimitingIntStreamImpl_next = ($this, $consumer) => { - let var$2, var$3; - if (!$this.$remaining0) - return 0; - var$2 = $this.$sourceStream1; - var$3 = new jusi_LimitingIntStreamImpl$next$lambda$_1_0; - var$3.$_01099 = $this; - var$3.$_1369 = $consumer; - if (!jusi_MappingToIntStreamImpl_next(var$2, var$3)) - $this.$remaining0 = 0; - return $this.$remaining0 <= 0 ? 0 : 1; +let scm_CheckedIndexedSeqView = $rt_classWithoutFields(0); +function scm_CheckedIndexedSeqView$Reverse() { + let a = this; sc_IndexedSeqView$Reverse.call(a); + a.$underlying41 = null; + a.$mutationCount3 = null; +} +let scm_CheckedIndexedSeqView$Reverse_iterator = $this => { + return scm_CheckedIndexedSeqView$CheckedIterator__init_($this, $this.$mutationCount3); }; -function jusi_SkippingIntStreamImpl() { - let a = this; jusi_SimpleIntStreamImpl.call(a); - a.$sourceStream = null; - a.$skip6 = 0; - a.$remaining1 = 0; +function oncia_SubqueryCall$InTransactionsReportParameters() { + let a = this; jl_Object.call(a); + a.$reportAs = null; + a.$position122 = null; } -let jusi_SkippingIntStreamImpl_next = ($this, $consumer) => { +let oncia_SubqueryCall$InTransactionsReportParameters_position = $this => { + return $this.$position122; +}, +oncia_SubqueryCall$InTransactionsReportParameters_semanticCheck = $this => { + let var$1, var$2; + var$1 = oncias_package$_MODULE$; + var$2 = $this.$reportAs; + oncius_package$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(var$1, oncias_SemanticAnalysisTooling_declareVariable$($this, var$2, (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant())), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$($this, new oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_56_0, $this.$reportAs))); +}, +oncia_SubqueryCall$InTransactionsReportParameters_productPrefix = $this => { + return $rt_s(5064); +}, +oncia_SubqueryCall$InTransactionsReportParameters_productArity = $this => { + return 1; +}, +oncia_SubqueryCall$InTransactionsReportParameters_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$reportAs; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SubqueryCall$InTransactionsReportParameters_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsReportParameters_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsReportParameters_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsReportParameters_equals = ($this, $x$1) => { let var$2, var$3; - while (true) { - if ($this.$remaining1 <= 0) - return jusi_MappingToIntStreamImpl_next($this.$sourceStream, $consumer); - var$2 = $this.$sourceStream; - var$3 = new jusi_SkippingIntStreamImpl$next$lambda$_1_0; - var$3.$_01046 = $this; - if (jusi_MappingToIntStreamImpl_next(var$2, var$3)) - continue; - else - break; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsReportParameters) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$reportAs; + $x$1 = $x$1.$reportAs; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$3 = 1; + break a; + } + var$3 = 0; } - return 0; + return var$3; }, -scm_ArrayBuffer$$anon$1 = $rt_classWithoutFields(scm_GrowableBuilder), -scm_ArrayBuffer$$anon$1_sizeHint = ($this, $size) => { - let var$2; - var$2 = $this.$elems2; - var$2.$array2 = scm_ArrayBuffer$_scala$collection$mutable$ArrayBuffer$$ensureSize(scm_ArrayBuffer$_MODULE$, var$2.$array2, var$2.$size00, Long_fromInt($size)); +oncia_SubqueryCall$InTransactionsReportParameters_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -scm_ArrayBuffer$$anon$1__init_0 = $this => { - scm_GrowableBuilder__init_($this, scm_ArrayBuffer__init_()); +oncia_SubqueryCall$InTransactionsReportParameters__init_ = ($this, $reportAs, $position) => { + $this.$reportAs = $reportAs; + $this.$position122 = $position; }, -scm_ArrayBuffer$$anon$1__init_ = () => { - let var_0 = new scm_ArrayBuffer$$anon$1(); - scm_ArrayBuffer$$anon$1__init_0(var_0); - return var_0; +oncia_SubqueryCall$InTransactionsReportParameters__init_0 = (var_0, var_1) => { + let var_2 = new oncia_SubqueryCall$InTransactionsReportParameters(); + oncia_SubqueryCall$InTransactionsReportParameters__init_(var_2, var_0, var_1); + return var_2; }, +jn_BufferOverflowException = $rt_classWithoutFields(jl_RuntimeException), oncifp_ResolvedCall$coerceArguments$lambda$_22_0 = $rt_classWithoutFields(), oncifp_ResolvedCall$coerceArguments$lambda$_22_0_apply = (var$0, var$1) => { return s_Some__init_(var$1); @@ -262688,123 +185011,70 @@ oncifp_ResolvedCall$coerceArguments$lambda$_22_1_apply = (var$0, var$1) => { var$2 = var$1.$_1(); var$1 = var$1.$_2(); var$3 = new oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0; - var$3.$_0384 = var$2; + var$3.$_0371 = var$2; var$1 = s_Option_map(var$1, var$3); var$3 = new oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1; - var$3.$_01000 = var$2; + var$3.$_0990 = var$2; return s_Option_getOrElse(var$1, var$3); +}; +function oavrt_TerminalNodeImpl() { + let a = this; jl_Object.call(a); + a.$symbol0 = null; + a.$parent3 = null; +} +let oavrt_TerminalNodeImpl__init_ = ($this, $symbol) => { + $this.$symbol0 = $symbol; }, -oncia_CreateRole$semanticCheck$lambda$_66_0 = $rt_classWithoutFields(), -oncia_CreateRole$semanticCheck$lambda$_66_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5314), var$1); -}, -oncia_AliasDriverSettingsCheck$ = $rt_classWithoutFields(), -oncia_AliasDriverSettingsCheck$_MODULE$ = null, -oncia_AliasDriverSettingsCheck$_existsErrorMessage = null, -oncia_AliasDriverSettingsCheck$_countErrorMessage = null, -oncia_AliasDriverSettingsCheck$_collectErrorMessage = null, -oncia_AliasDriverSettingsCheck$_genericErrorMessage = null, -oncia_AliasDriverSettingsCheck$__clinit_ = () => { - oncia_AliasDriverSettingsCheck$_MODULE$ = new oncia_AliasDriverSettingsCheck$; - oncia_AliasDriverSettingsCheck$_existsErrorMessage = $rt_s(6744); - oncia_AliasDriverSettingsCheck$_countErrorMessage = $rt_s(6745); - oncia_AliasDriverSettingsCheck$_collectErrorMessage = $rt_s(6746); - oncia_AliasDriverSettingsCheck$_genericErrorMessage = $rt_s(6747); -}, -oncia_AliasDriverSettingsCheck$_findInvalidDriverSettings = ($this, $driverSettings) => { - if ($driverSettings instanceof s_Some) { - $driverSettings = $driverSettings.$value5; - if ($driverSettings instanceof su_Left) - return (sc_AbstractIterable_flatMap(sc_AbstractMap_values($driverSettings.$value6), new oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0)).$headOption(); - } - return s_None$_MODULE$; -}, -oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_85_0 = $rt_classWithoutFields(), -oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_85_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4811), var$1); -}, -s_DummyImplicit$ = $rt_classWithoutFields(), -s_DummyImplicit$_MODULE$ = null, -s_DummyImplicit$_dummyImplicit0 = null, -s_DummyImplicit$_$callClinit = () => { - s_DummyImplicit$_$callClinit = $rt_eraseClinit(s_DummyImplicit$); - s_DummyImplicit$__clinit_(); -}, -s_DummyImplicit$__clinit_ = () => { - let var$1; - var$1 = new s_DummyImplicit$; - s_DummyImplicit$_$callClinit(); - s_DummyImplicit$_MODULE$ = var$1; - s_DummyImplicit$_dummyImplicit0 = new s_DummyImplicit; -}, -s_DummyImplicit$_dummyImplicit = $this => { - s_DummyImplicit$_$callClinit(); - return s_DummyImplicit$_dummyImplicit0; -}, -oncia_CreateUser$semanticCheck$lambda$_83_0 = $rt_classWithoutFields(), -oncia_CreateUser$semanticCheck$lambda$_83_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$((var$1.$checkDuplicates()).$chain(var$1.$checkRequiredAttributes()), var$1.$checkNoUnsupportedAttributes()), var$1.$checkProviderName()); -}, -oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_0 = $rt_classWithoutFields(), -oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4841), var$1); +oavrt_TerminalNodeImpl__init_0 = var_0 => { + let var_1 = new oavrt_TerminalNodeImpl(); + oavrt_TerminalNodeImpl__init_(var_1, var_0); + return var_1; }, -oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_1 = $rt_classWithoutFields(), -oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_1_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4811), var$1); +oavrt_TerminalNodeImpl_getSymbol = $this => { + return $this.$symbol0; }, -oncia_GrantRolesToUsers$semanticCheck$lambda$_65_0 = $rt_classWithoutFields(), -oncia_GrantRolesToUsers$semanticCheck$lambda$_65_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4841), var$1); +oavrt_TerminalNodeImpl_setParent = ($this, $parent) => { + $this.$parent3 = $parent; }, -oncia_GrantRolesToUsers$semanticCheck$lambda$_65_1 = $rt_classWithoutFields(), -oncia_GrantRolesToUsers$semanticCheck$lambda$_65_1_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4811), var$1); +oavrt_TerminalNodeImpl_getText = $this => { + return $this.$symbol0.$getText(); }, -oncia_AlterUser$semanticCheck$lambda$_85_0 = $rt_classWithoutFields(), -oncia_AlterUser$semanticCheck$lambda$_85_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncias_SemanticCheck_chain$((var$1.$checkDuplicates()).$chain(var$1.$checkNoUnsupportedAttributes()), var$1.$checkProviderName()); +oavrt_TerminalNodeImpl_toString = $this => { + if ($this.$symbol0.$getType0() == (-1)) + return $rt_s(4236); + return $this.$symbol0.$getText(); }, -oncia_AlterUser$semanticCheck$lambda$_85_1 = $rt_classWithoutFields(), -oncia_AlterUser$semanticCheck$lambda$_85_1_apply = (var$0, var$1) => { - return oncia_ExternalAuth_checkIdIsStringLiteralOrParameter(var$1); -}; -function jusi_SimpleStreamImpl$forEachOrdered$lambda$_19_0() { - jl_Object.call(this); - this.$_01166 = null; -} -let oncia_CatalogName$qualifiedNameString$lambda$_11_0 = $rt_classWithoutFields(), -oncia_CatalogName$qualifiedNameString$lambda$_11_0_apply = (var$0, var$1) => { +oavrt_ErrorNodeImpl = $rt_classWithoutFields(oavrt_TerminalNodeImpl), +oncia_CatalogName$qualifiedNameString$lambda$_10_0 = $rt_classWithoutFields(), +oncia_CatalogName$qualifiedNameString$lambda$_10_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; var$2 = sc_StringOps$_MODULE$; s_Predef$_$callClinit(); - if (sc_StringOps$_contains$extension(var$2, var$1, oncia_CatalogName$_separatorChar)) + oncia_CatalogName$_$callClinit(); + if (sc_StringOps$_contains$extension(var$2, var$1, oncia_CatalogName$_separatorChar0(oncia_CatalogName$_MODULE$))) var$1 = oncia_CatalogName$_quote(oncia_CatalogName$_MODULE$, var$1); return var$1; -}, -oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_0 = $rt_classWithoutFields(), -oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncil_LabelExpression$Conjunctions); -}, -oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_1 = $rt_classWithoutFields(), -oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_1_apply = (var$0, var$1) => { - var$1 = var$1; - return !(var$1 instanceof oncil_LabelExpression$Conjunctions) ? sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$) : var$1.$children4; +}; +function jusi_SimpleStreamImpl$ArrayFillingConsumer() { + let a = this; jl_Object.call(a); + a.$array19 = null; + a.$index10 = 0; +} +let jusi_SimpleStreamImpl$ArrayFillingConsumer_test = ($this, $t) => { + let var$2, var$3; + var$2 = $this.$array19.data; + var$3 = $this.$index10; + $this.$index10 = var$3 + 1 | 0; + var$2[var$3] = $t; + return 1; +}; +function jusi_SimpleStreamImpl$toArray$lambda$_21_0() { + jl_Object.call(this); + this.$_0919 = null; +} +let jusi_SimpleStreamImpl$toArray$lambda$_21_0_test = (var$0, var$1) => { + return ju_ArrayList_add(var$0.$_0919, var$1); }, sci_MapValueIterator = $rt_classWithoutFields(sci_ChampBaseIterator), sci_MapValueIterator_iterator = $this => { @@ -262871,7 +185141,7 @@ sci_MapValueIterator_next = $this => { let $value; if (!sci_ChampBaseIterator_hasNext($this)) { $value = new ju_NoSuchElementException; - jl_Throwable__init_($value); + jl_Throwable__init_0($value); $rt_throw($value); } $value = $this.$currentValueNode.$getValue1($this.$currentValueCursor); @@ -262890,36929 +185160,43900 @@ sci_Map$Map3$$anon$6 = $rt_classWithoutFields(sci_Map$Map3$Map3Iterator), sci_Map$Map3$$anon$6_nextResult = ($this, $k, $v) => { return $v; }; +function oavra_Transition() { + jl_Object.call(this); + this.$target = null; +} +let oavra_Transition_serializationNames = null, +oavra_Transition_serializationTypes = null, +oavra_Transition_$callClinit = () => { + oavra_Transition_$callClinit = $rt_eraseClinit(oavra_Transition); + oavra_Transition__clinit_(); +}, +oavra_Transition__init_ = ($this, $target) => { + let var$2; + oavra_Transition_$callClinit(); + if ($target !== null) { + $this.$target = $target; + return; + } + var$2 = new jl_NullPointerException; + jl_Throwable__init_(var$2, $rt_s(5065)); + $rt_throw(var$2); +}, +oavra_Transition_isEpsilon = $this => { + return 0; +}, +oavra_Transition_label = $this => { + return null; +}, +oavra_Transition__clinit_ = () => { + let var$1; + oavra_Transition_serializationNames = ju_Collections_unmodifiableList(ju_Arrays_asList($rt_wrapArray(jl_String, [$rt_s(5023), $rt_s(5066), $rt_s(1097), $rt_s(5067), $rt_s(5068), $rt_s(5069), $rt_s(5070), $rt_s(4468), $rt_s(5071), $rt_s(5072), $rt_s(5073)]))); + var$1 = new oavra_Transition$1; + ju_HashMap__init_1(var$1); + ju_HashMap_put(var$1, $rt_cls(oavra_EpsilonTransition), jl_Integer_valueOf(1)); + ju_HashMap_put(var$1, $rt_cls(oavra_RangeTransition), jl_Integer_valueOf(2)); + ju_HashMap_put(var$1, $rt_cls(oavra_RuleTransition), jl_Integer_valueOf(3)); + ju_HashMap_put(var$1, $rt_cls(oavra_PredicateTransition), jl_Integer_valueOf(4)); + ju_HashMap_put(var$1, $rt_cls(oavra_AtomTransition), jl_Integer_valueOf(5)); + ju_HashMap_put(var$1, $rt_cls(oavra_ActionTransition), jl_Integer_valueOf(6)); + ju_HashMap_put(var$1, $rt_cls(oavra_SetTransition), jl_Integer_valueOf(7)); + ju_HashMap_put(var$1, $rt_cls(oavra_NotSetTransition), jl_Integer_valueOf(8)); + ju_HashMap_put(var$1, $rt_cls(oavra_WildcardTransition), jl_Integer_valueOf(9)); + ju_HashMap_put(var$1, $rt_cls(oavra_PrecedencePredicateTransition), jl_Integer_valueOf(10)); + oavra_Transition_serializationTypes = ju_Collections_unmodifiableMap(var$1); +}; +function oavra_RuleTransition() { + let a = this; oavra_Transition.call(a); + a.$ruleIndex5 = 0; + a.$precedence1 = 0; + a.$followState = null; +} +let oavra_RuleTransition_getSerializationType = $this => { + return 3; +}, +oavra_RuleTransition_isEpsilon = $this => { + return 1; +}, +oavra_RuleTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return 0; +}; function onciuci_ListSet$removedAll$lambda$_51_0() { jl_Object.call(this); - this.$_0367 = null; + this.$_0354 = null; } let onciuci_ListSet$removedAll$lambda$_51_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(ju_HashSet_remove(var$0.$_0367, var$1)); + return jl_Boolean_valueOf(ju_HashSet_remove(var$0.$_0354, var$1)); }; -function jnci_BufferedEncoder() { - let a = this; jnc_CharsetEncoder.call(a); - a.$inArray0 = null; - a.$outArray0 = null; +function ju_LinkedHashMapKeySet() { + let a = this; ju_AbstractSet.call(a); + a.$base1 = null; + a.$reversed0 = 0; } -let jnci_BufferedEncoder_encodeLoop = ($this, $in, $out) => { - let $inArray, $inPos, $inSize, $outArray, $i, var$8, $outSize, $result, $controller; - $inArray = $this.$inArray0; - $inPos = 0; - $inSize = 0; - $outArray = $this.$outArray0; +let ju_LinkedHashMapKeySet_size = $this => { + return $this.$base1.$elementCount; +}, +ju_LinkedHashMapKeySet_iterator = $this => { + let var$1; + var$1 = new ju_LinkedHashMapIterator$KeyIterator; + ju_LinkedHashMapIterator__init_(var$1, $this.$base1, $this.$reversed0); + return var$1; +}, +oavra_ATNType = $rt_classWithoutFields(jl_Enum), +oavra_ATNType_LEXER = null, +oavra_ATNType_PARSER = null, +oavra_ATNType_$VALUES = null, +oavra_ATNType_values = () => { + return oavra_ATNType_$VALUES.$clone0(); +}, +oavra_ATNType__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new oavra_ATNType; + jl_Enum__init_(var$1, $rt_s(5074), 0); + oavra_ATNType_LEXER = var$1; + var$1 = new oavra_ATNType; + jl_Enum__init_(var$1, $rt_s(5075), 1); + oavra_ATNType_PARSER = var$1; + var$2 = $rt_createArray(oavra_ATNType, 2); + var$3 = var$2.data; + var$3[0] = oavra_ATNType_LEXER; + var$3[1] = var$1; + oavra_ATNType_$VALUES = var$2; +}, +ji_ObjectStreamException = $rt_classWithoutFields(ji_IOException); +function ji_InvalidClassException() { + ji_ObjectStreamException.call(this); + this.$classname = null; +} +let ji_InvalidClassException__init_0 = ($this, $classname, $message) => { + jl_Throwable__init_($this, $message); + $this.$classname = $classname; +}, +ji_InvalidClassException__init_ = (var_0, var_1) => { + let var_2 = new ji_InvalidClassException(); + ji_InvalidClassException__init_0(var_2, var_0, var_1); + return var_2; +}; +function oavra_BlockStartState() { + oavra_DecisionState.call(this); + this.$endState = null; +} +function oavra_LoopEndState() { + oavra_ATNState.call(this); + this.$loopBackState1 = null; +} +let oavra_LoopEndState_getStateType = $this => { + return 12; +}; +function oavra_BlockEndState() { + oavra_ATNState.call(this); + this.$startState = null; +} +let oavra_BlockEndState__init_ = $this => { + oavra_ATNState__init_($this); +}, +oavra_BlockEndState__init_0 = () => { + let var_0 = new oavra_BlockEndState(); + oavra_BlockEndState__init_(var_0); + return var_0; +}, +oavra_BlockEndState_getStateType = $this => { + return 8; +}; +function oavra_RuleStartState() { + let a = this; oavra_ATNState.call(a); + a.$stopState = null; + a.$isLeftRecursiveRule = 0; +} +let oavra_RuleStartState_getStateType = $this => { + return 2; +}, +oavra_RuleStopState = $rt_classWithoutFields(oavra_ATNState), +oavra_RuleStopState_getStateType = $this => { + return 7; +}, +oavra_TokensStartState = $rt_classWithoutFields(oavra_DecisionState), +oavra_TokensStartState_getStateType = $this => { + return 6; +}; +function oavra_EpsilonTransition() { + oavra_Transition.call(this); + this.$outermostPrecedenceReturn = 0; +} +let oavra_EpsilonTransition__init_2 = ($this, $target) => { + oavra_EpsilonTransition__init_0($this, $target, (-1)); +}, +oavra_EpsilonTransition__init_ = var_0 => { + let var_1 = new oavra_EpsilonTransition(); + oavra_EpsilonTransition__init_2(var_1, var_0); + return var_1; +}, +oavra_EpsilonTransition__init_0 = ($this, $target, $outermostPrecedenceReturn) => { + oavra_Transition__init_($this, $target); + $this.$outermostPrecedenceReturn = $outermostPrecedenceReturn; +}, +oavra_EpsilonTransition__init_1 = (var_0, var_1) => { + let var_2 = new oavra_EpsilonTransition(); + oavra_EpsilonTransition__init_0(var_2, var_0, var_1); + return var_2; +}, +oavra_EpsilonTransition_getSerializationType = $this => { + return 1; +}, +oavra_EpsilonTransition_isEpsilon = $this => { + return 1; +}, +oavra_EpsilonTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return 0; +}, +oavra_EpsilonTransition_toString = $this => { + return $rt_s(5076); +}, +oavra_PlusLoopbackState = $rt_classWithoutFields(oavra_DecisionState), +oavra_PlusLoopbackState_getStateType = $this => { + return 11; +}, +oavra_StarLoopbackState = $rt_classWithoutFields(oavra_ATNState), +oavra_StarLoopbackState_getStateType = $this => { + return 9; +}; +function oavra_PlusBlockStartState() { + oavra_BlockStartState.call(this); + this.$loopBackState0 = null; +} +let oavra_PlusBlockStartState_getStateType = $this => { + return 4; +}, +oavra_LexerAction = $rt_classWithoutFields(0), +oavra_LexerActionType = $rt_classWithoutFields(jl_Enum), +oavra_LexerActionType_CHANNEL = null, +oavra_LexerActionType_CUSTOM = null, +oavra_LexerActionType_MODE = null, +oavra_LexerActionType_MORE = null, +oavra_LexerActionType_POP_MODE = null, +oavra_LexerActionType_PUSH_MODE = null, +oavra_LexerActionType_SKIP = null, +oavra_LexerActionType_TYPE = null, +oavra_LexerActionType_$VALUES = null, +oavra_LexerActionType_values = () => { + return oavra_LexerActionType_$VALUES.$clone0(); +}, +oavra_LexerActionType__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new oavra_LexerActionType; + jl_Enum__init_(var$1, $rt_s(5077), 0); + oavra_LexerActionType_CHANNEL = var$1; + var$1 = new oavra_LexerActionType; + jl_Enum__init_(var$1, $rt_s(5078), 1); + oavra_LexerActionType_CUSTOM = var$1; + var$1 = new oavra_LexerActionType; + jl_Enum__init_(var$1, $rt_s(5079), 2); + oavra_LexerActionType_MODE = var$1; + var$1 = new oavra_LexerActionType; + jl_Enum__init_(var$1, $rt_s(5080), 3); + oavra_LexerActionType_MORE = var$1; + var$1 = new oavra_LexerActionType; + jl_Enum__init_(var$1, $rt_s(5081), 4); + oavra_LexerActionType_POP_MODE = var$1; + var$1 = new oavra_LexerActionType; + jl_Enum__init_(var$1, $rt_s(5082), 5); + oavra_LexerActionType_PUSH_MODE = var$1; + var$1 = new oavra_LexerActionType; + jl_Enum__init_(var$1, $rt_s(5083), 6); + oavra_LexerActionType_SKIP = var$1; + var$1 = new oavra_LexerActionType; + jl_Enum__init_(var$1, $rt_s(4495), 7); + oavra_LexerActionType_TYPE = var$1; + var$2 = $rt_createArray(oavra_LexerActionType, 8); + var$3 = var$2.data; + var$3[0] = oavra_LexerActionType_CHANNEL; + var$3[1] = oavra_LexerActionType_CUSTOM; + var$3[2] = oavra_LexerActionType_MODE; + var$3[3] = oavra_LexerActionType_MORE; + var$3[4] = oavra_LexerActionType_POP_MODE; + var$3[5] = oavra_LexerActionType_PUSH_MODE; + var$3[6] = oavra_LexerActionType_SKIP; + var$3[7] = var$1; + oavra_LexerActionType_$VALUES = var$2; +}, +oavra_BasicBlockStartState = $rt_classWithoutFields(oavra_BlockStartState), +oavra_BasicBlockStartState__init_ = $this => { + oavra_DecisionState__init_($this); +}, +oavra_BasicBlockStartState__init_0 = () => { + let var_0 = new oavra_BasicBlockStartState(); + oavra_BasicBlockStartState__init_(var_0); + return var_0; +}, +oavra_BasicBlockStartState_getStateType = $this => { + return 3; +}, +oavra_BasicState = $rt_classWithoutFields(oavra_ATNState), +oavra_BasicState__init_0 = $this => { + oavra_ATNState__init_($this); +}, +oavra_BasicState__init_ = () => { + let var_0 = new oavra_BasicState(); + oavra_BasicState__init_0(var_0); + return var_0; +}, +oavra_BasicState_getStateType = $this => { + return 1; +}; +function oavra_AtomTransition() { + oavra_Transition.call(this); + this.$label2 = 0; +} +let oavra_AtomTransition__init_0 = ($this, $target, $label) => { + oavra_Transition__init_($this, $target); + $this.$label2 = $label; +}, +oavra_AtomTransition__init_ = (var_0, var_1) => { + let var_2 = new oavra_AtomTransition(); + oavra_AtomTransition__init_0(var_2, var_0, var_1); + return var_2; +}, +oavra_AtomTransition_getSerializationType = $this => { + return 5; +}, +oavra_AtomTransition_label = $this => { + return oavrm_IntervalSet_of0($this.$label2); +}, +oavra_AtomTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return $this.$label2 != $symbol ? 0 : 1; +}, +oavra_AtomTransition_toString = $this => { + return jl_String_valueOf0($this.$label2); +}; +function oncia_ProcedureResultItem() { + let a = this; jl_Object.call(a); + a.$output = null; + a.$variable8 = null; + a.$position119 = null; + a.$outputName = null; +} +let oncia_ProcedureResultItem_position = $this => { + return $this.$position119; +}, +oncia_ProcedureResultItem_productPrefix = $this => { + return $rt_s(5084); +}, +oncia_ProcedureResultItem_productArity = $this => { + return 2; +}, +oncia_ProcedureResultItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$output; + case 1: + return $this.$variable8; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_ProcedureResultItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ProcedureResultItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ProcedureResultItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ProcedureResultItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - while (true) { - if (($inPos + 32 | 0) > $inSize && jn_Buffer_hasRemaining($in)) { - $i = $inPos; - while ($i < $inSize) { - var$8 = $inArray.data; - var$8[$i - $inPos | 0] = var$8[$i]; - $i = $i + 1 | 0; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ProcedureResultItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$output; + var$3 = $x$1.$output; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; } - var$8 = $inArray.data; - $outSize = $inSize - $inPos | 0; - $inSize = jl_Math_min(jn_Buffer_remaining($in) + $outSize | 0, var$8.length); - jn_CharBuffer_get($in, $inArray, $outSize, $inSize - $outSize | 0); - $inPos = 0; + d: { + var$3 = $this.$variable8; + $x$1 = $x$1.$variable8; + if (var$3 !== null) { + if (!oncie_Variable_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ProcedureResultItem)) + break b; } - if (!jn_Buffer_hasRemaining($out)) { - $result = !jn_Buffer_hasRemaining($in) && $inPos >= $inSize ? jnc_CoderResult_UNDERFLOW : jnc_CoderResult_OVERFLOW; - break a; + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_ProcedureResultItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ProcedureResultItem__init_0 = ($this, $output, $variable, $position) => { + $this.$output = $output; + $this.$variable8 = $variable; + $this.$position119 = $position; + $output = s_Option_map($output, new oncia_ProcedureResultItem$_init_$lambda$_81_0); + $variable = new oncia_ProcedureResultItem$_init_$lambda$_81_1; + $variable.$_0417 = $this; + $this.$outputName = s_Option_getOrElse($output, $variable); +}, +oncia_ProcedureResultItem__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_ProcedureResultItem(); + oncia_ProcedureResultItem__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +jn_BufferUnderflowException = $rt_classWithoutFields(jl_RuntimeException), +oncie_Expression$$anonfun$containsAggregate$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncie_Expression$$anonfun$containsAggregate$1_applyOrElse = ($this, $x1, $default) => { + if ($x1 !== null) { + oncie_IsAggregate$_$callClinit(); + if (!s_Option_isEmpty(oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x1))) + return jl_Boolean_valueOf(1); + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}; +function sci_HashCollisionMapNode$removed$lambda$_13_0() { + jl_Object.call(this); + this.$_0960 = null; +} +let sci_HashCollisionMapNode$removed$lambda$_13_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0960; + return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$1.$_1(), var$2) ? 0 : 1); +}, +oncia_ReturnItems$returnVariables$lambda$_70_0 = $rt_classWithoutFields(), +oncia_ReturnItems$returnVariables$lambda$_70_0_apply = (var$0, var$1) => { + return var$1.$alias(); +}; +function sci_HashMap$HashKeySet$filter$lambda$_4_0() { + jl_Object.call(this); + this.$_0495 = null; +} +let sci_HashMap$HashKeySet$filter$lambda$_4_0__init_0 = (var$0, var$1) => { + var$0.$_0495 = var$1; +}, +sci_HashMap$HashKeySet$filter$lambda$_4_0__init_ = var_0 => { + let var_1 = new sci_HashMap$HashKeySet$filter$lambda$_4_0(); + sci_HashMap$HashKeySet$filter$lambda$_4_0__init_0(var_1, var_0); + return var_1; +}, +sci_HashMap$HashKeySet$filter$lambda$_4_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0495.$apply2(var$1.$_1()))); +}; +function sci_HashMap$accum$1() { + let a = this; sr_AbstractFunction2.call(a); + a.$changed = 0; + a.$shallowlyMutableNodeMap = 0; + a.$current2 = null; + a.$$outer32 = null; +} +let sci_HashMap$accum$1_apply = ($this, $key, $value) => { + let $originalHash, $improved; + $originalHash = sr_Statics_anyHash($key); + $improved = sc_Hashing$_improve(sc_Hashing$_MODULE$, $originalHash); + if ($this.$changed) { + $this.$shallowlyMutableNodeMap = sci_BitmapIndexedMapNode_updateWithShallowMutations($this.$current2, $key, $value, $originalHash, $improved, 0, $this.$shallowlyMutableNodeMap); + return; + } + $key = sci_BitmapIndexedMapNode_updated($this.$current2, $key, $value, $originalHash, $improved, 0, 1); + $this.$current2 = $key; + if ($key === $this.$$outer32.$rootNode0) + return; + $this.$changed = 1; + $this.$shallowlyMutableNodeMap = 1 << (($improved >>> 0 | 0) & 31); +}, +sci_HashMap$accum$1_apply0 = ($this, $v1, $v2) => { + sci_HashMap$accum$1_apply($this, $v1, $v2); + return sr_BoxedUnit_UNIT; +}, +sci_HashMap$accum$1_apply1 = ($this, $v1) => { + $v1 = $v1; + sci_HashMap$accum$1_apply($this, $v1.$_1(), $v1.$_2()); + return sr_BoxedUnit_UNIT; +}, +sci_HashMap$accum$1__init_0 = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer32 = $$outer; + $this.$changed = 0; + $this.$shallowlyMutableNodeMap = 0; + $this.$current2 = $$outer.$rootNode0; +}, +sci_HashMap$accum$1__init_ = var_0 => { + let var_1 = new sci_HashMap$accum$1(); + sci_HashMap$accum$1__init_0(var_1, var_0); + return var_1; +}, +sci_MapNodeRemoveAllSetNodeIterator = $rt_classWithoutFields(sci_ChampBaseIterator), +sm_Ordering$LongOrdering = $rt_classWithoutFields(0), +sm_Ordering$Long$ = $rt_classWithoutFields(), +sm_Ordering$Long$_MODULE$ = null, +sm_Ordering$Long$__clinit_ = () => { + sm_Ordering$Long$_MODULE$ = new sm_Ordering$Long$; +}, +sm_Ordering$ByteOrdering = $rt_classWithoutFields(0), +sm_Ordering$Byte$ = $rt_classWithoutFields(), +sm_Ordering$Byte$_MODULE$ = null, +sm_Ordering$Byte$__clinit_ = () => { + sm_Ordering$Byte$_MODULE$ = new sm_Ordering$Byte$; +}, +sm_Ordering$ShortOrdering = $rt_classWithoutFields(0), +sm_Ordering$Short$ = $rt_classWithoutFields(), +sm_Ordering$Short$_MODULE$ = null, +sm_Ordering$Short$__clinit_ = () => { + sm_Ordering$Short$_MODULE$ = new sm_Ordering$Short$; +}, +sm_Ordering$CharOrdering = $rt_classWithoutFields(0), +sm_Ordering$Char$ = $rt_classWithoutFields(), +sm_Ordering$Char$_MODULE$ = null, +sm_Ordering$Char$__clinit_ = () => { + sm_Ordering$Char$_MODULE$ = new sm_Ordering$Char$; +}, +su_Sorting$ = $rt_classWithoutFields(), +su_Sorting$_MODULE$ = null, +su_Sorting$__clinit_ = () => { + su_Sorting$_MODULE$ = new su_Sorting$; +}, +su_Sorting$_scala$util$Sorting$$insertionSort = ($this, $a, $i0, $iN, $ord) => { + let $n, $temp, var$7, $m, $i, $next, $iB, var$12, $iB_0, $ix; + $n = $iN - $i0 | 0; + if ($n < 2) + return; + $temp = sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $i0); + var$7 = sr_ScalaRunTime$_MODULE$; + $iN = $i0 + 1 | 0; + if ($ord.$compare2($temp, sr_ScalaRunTime$_array_apply(var$7, $a, $iN)) > 0) { + $temp = sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $i0); + var$7 = sr_ScalaRunTime$_MODULE$; + sr_ScalaRunTime$_array_update(var$7, $a, $i0, sr_ScalaRunTime$_array_apply(var$7, $a, $iN)); + sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, $a, $iN, $temp); + } + $m = 2; + while ($m < $n) { + $temp = sr_ScalaRunTime$_MODULE$; + $i = $i0 + $m | 0; + $next = sr_ScalaRunTime$_array_apply($temp, $a, $i); + $temp = sr_ScalaRunTime$_MODULE$; + $iB = $i - 1 | 0; + if ($ord.$compare2($next, sr_ScalaRunTime$_array_apply($temp, $a, $iB)) < 0) { + var$12 = $i0; + while (($iB - var$12 | 0) > 1) { + $iB_0 = (var$12 + $iB | 0) >>> 1 | 0; + if ($ord.$compare2($next, sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $iB_0)) >= 0) { + var$12 = $iB_0; + continue; + } + $iB = $iB_0; } - var$8 = $outArray.data; - $outSize = jl_Math_min(jn_Buffer_remaining($out), var$8.length); - $controller = new jnci_BufferedEncoder$Controller; - $controller.$in0 = $in; - $controller.$out3 = $out; - $result = jnci_UTF8Encoder_arrayEncode($this, $inArray, $inPos, $inSize, $outArray, 0, $outSize, $controller); - $inPos = $controller.$inPosition0; - $outSize = $controller.$outPosition0; - if ($result === null) { - if (!jn_Buffer_hasRemaining($in) && $inPos >= $inSize) - $result = jnc_CoderResult_UNDERFLOW; - else if (!jn_Buffer_hasRemaining($out) && $inPos >= $inSize) - $result = jnc_CoderResult_OVERFLOW; + $ix = var$12 + ($ord.$compare2($next, sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, var$12)) >= 0 ? 1 : 0) | 0; + while ($i > $ix) { + $temp = sr_ScalaRunTime$_MODULE$; + sr_ScalaRunTime$_array_update($temp, $a, $i, sr_ScalaRunTime$_array_apply($temp, $a, $i - 1 | 0)); + $i = $i + (-1) | 0; } - jn_ByteBuffer_put($out, $outArray, 0, $outSize); - if ($result !== null) - break; + sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, $a, $ix, $next); } + $m = $m + 1 | 0; } - jn_Buffer_position($in, $in.$position3 - ($inSize - $inPos | 0) | 0); - return $result; }, -jnci_UTF8Encoder = $rt_classWithoutFields(jnci_BufferedEncoder), -jnci_UTF8Encoder_arrayEncode = ($this, $inArray, $inPos, $inSize, $outArray, $outPos, $outSize, $controller) => { - let $result, var$9, var$10, $ch, $low, var$13, $codePoint; - $result = null; +su_Sorting$_scala$util$Sorting$$mergeSort = ($this, $a, $i0, $iN, $ord, $sc, $evidence$2) => { + let $iK; + if (($iN - $i0 | 0) < 32) { + su_Sorting$_scala$util$Sorting$$insertionSort($this, $a, $i0, $iN, $ord); + return; + } + $iK = ($i0 + $iN | 0) >>> 1 | 0; + if ($sc === null) + $sc = $evidence$2.$newArray($iK - $i0 | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $i0, $iK, $ord, $sc, $evidence$2); + su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $iK, $iN, $ord, $sc, $evidence$2); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, $a, $i0, $iK, $iN, $ord, $sc); +}, +su_Sorting$_scala$util$Sorting$$mergeSorted = ($this, $a, $i0, $iK, $iN, $ord, $scratch) => { + let $jN, $j, var$9, var$10, var$11, var$12; + if ($ord.$compare2(sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $iK - 1 | 0), sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $iK)) <= 0) + return; + $jN = $iK - $i0 | 0; + $j = 0; + var$9 = $i0; + while (var$9 < $iK) { + var$10 = sr_ScalaRunTime$_MODULE$; + sr_ScalaRunTime$_array_update(var$10, $scratch, $j, sr_ScalaRunTime$_array_apply(var$10, $a, var$9)); + var$9 = var$9 + 1 | 0; + $j = $j + 1 | 0; + } + var$11 = 0; a: { - while ($inPos < $inSize) { - if ($outPos >= $outSize) { - var$9 = $inPos; + while (var$9 < $iN) { + if (var$11 >= $jN) break a; - } - var$10 = $inArray.data; - var$9 = $inPos + 1 | 0; - $ch = var$10[$inPos]; - if ($ch < 128) { - var$10 = $outArray.data; - $low = $outPos + 1 | 0; - var$10[$outPos] = $ch << 24 >> 24; - } else if ($ch < 2048) { - if (($outPos + 2 | 0) > $outSize) { - var$9 = var$9 + (-1) | 0; - if (jnci_BufferedEncoder$Controller_hasMoreOutput($controller, 2)) - break a; - $result = jnc_CoderResult_OVERFLOW; - break a; - } - var$10 = $outArray.data; - $inPos = $outPos + 1 | 0; - var$10[$outPos] = (192 | $ch >> 6) << 24 >> 24; - $low = $inPos + 1 | 0; - var$10[$inPos] = (128 | $ch & 63) << 24 >> 24; - } else if (!jl_Character_isSurrogate($ch)) { - if (($outPos + 3 | 0) > $outSize) { - var$9 = var$9 + (-1) | 0; - if (jnci_BufferedEncoder$Controller_hasMoreOutput($controller, 3)) - break a; - $result = jnc_CoderResult_OVERFLOW; - break a; - } - var$10 = $outArray.data; - var$13 = $outPos + 1 | 0; - var$10[$outPos] = (224 | $ch >> 12) << 24 >> 24; - $inPos = var$13 + 1 | 0; - var$10[var$13] = (128 | $ch >> 6 & 63) << 24 >> 24; - $low = $inPos + 1 | 0; - var$10[$inPos] = (128 | $ch & 63) << 24 >> 24; + if ($ord.$compare2(sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, var$9), sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $scratch, var$11)) >= 0) { + var$12 = sr_ScalaRunTime$_MODULE$; + sr_ScalaRunTime$_array_update(var$12, $a, $i0, sr_ScalaRunTime$_array_apply(var$12, $scratch, var$11)); + var$11 = var$11 + 1 | 0; } else { - if (!jl_Character_isHighSurrogate($ch)) { - $result = jnc_CoderResult_malformedForLength(1); - break a; - } - if (var$9 >= $inSize) { - if (jn_Buffer_hasRemaining($controller.$in0)) - break a; - $result = jnc_CoderResult_UNDERFLOW; - break a; - } - $inPos = var$9 + 1 | 0; - $low = var$10[var$9]; - if (!jl_Character_isLowSurrogate($low)) { - var$9 = $inPos + (-2) | 0; - $result = jnc_CoderResult_malformedForLength(1); - break a; - } - if (($outPos + 4 | 0) > $outSize) { - var$9 = $inPos + (-2) | 0; - if (jnci_BufferedEncoder$Controller_hasMoreOutput($controller, 4)) - break a; - $result = jnc_CoderResult_OVERFLOW; - break a; - } - var$10 = $outArray.data; - $codePoint = jl_Character_toCodePoint($ch, $low); - $low = $outPos + 1 | 0; - var$10[$outPos] = (240 | $codePoint >> 18) << 24 >> 24; - var$13 = $low + 1 | 0; - var$10[$low] = (128 | $codePoint >> 12 & 63) << 24 >> 24; - $outPos = var$13 + 1 | 0; - var$10[var$13] = (128 | $codePoint >> 6 & 63) << 24 >> 24; - $low = $outPos + 1 | 0; - var$10[$outPos] = (128 | $codePoint & 63) << 24 >> 24; - var$9 = $inPos; + var$10 = sr_ScalaRunTime$_MODULE$; + sr_ScalaRunTime$_array_update(var$10, $a, $i0, sr_ScalaRunTime$_array_apply(var$10, $a, var$9)); + var$9 = var$9 + 1 | 0; } - $inPos = var$9; - $outPos = $low; + $i0 = $i0 + 1 | 0; } - var$9 = $inPos; } - $controller.$inPosition0 = var$9; - $controller.$outPosition0 = $outPos; - return $result; -}; -function jl_Iterable$1() { - let a = this; jl_Object.call(a); - a.$val$iterator = null; - a.$this$023 = null; -} -let jl_Iterable$1_tryAdvance = ($this, $action) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = $this.$val$iterator; - if (!(var$2.$codePointIndex >= var$2.$numCodePoints ? 0 : 1)) - return 0; - var$3 = jl_String_codePointAt(var$2.$s, var$2.$charIndex); - var$4 = var$2.$s; - var$5 = var$2.$charIndex; + while (var$11 < $jN) { + $ord = sr_ScalaRunTime$_MODULE$; + sr_ScalaRunTime$_array_update($ord, $a, $i0, sr_ScalaRunTime$_array_apply($ord, $scratch, var$11)); + var$11 = var$11 + 1 | 0; + $i0 = $i0 + 1 | 0; + } +}, +su_Sorting$_scala$util$Sorting$$booleanSort = ($this, $a, $from, $until) => { + let $n, var$5, var$6, var$7; + $n = 0; + var$5 = $from; + while (var$5 < $until) { + if (!$a.data[var$5]) + $n = $n + 1 | 0; + var$5 = var$5 + 1 | 0; + } var$6 = 0; + while (var$6 < $n) { + $a.data[$from + var$6 | 0] = 0; + var$6 = var$6 + 1 | 0; + } while (true) { - var$7 = $rt_compare(var$6, 1); - if (var$7 >= 0) - break; - if (var$5 >= var$4.$nativeString.length) + var$7 = $from + var$6 | 0; + if (var$7 >= $until) break; - var$5 = var$5 < (var$4.$nativeString.length - 1 | 0) && jl_Character_isHighSurrogate(jl_String_charAt(var$4, var$5)) && jl_Character_isLowSurrogate(jl_String_charAt(var$4, var$5 + 1 | 0)) ? var$5 + 2 | 0 : var$5 + 1 | 0; + $a.data[var$7] = 1; var$6 = var$6 + 1 | 0; } - if (var$7 < 0) { - $action = new jl_IndexOutOfBoundsException; - jl_Throwable__init_($action); - $rt_throw($action); +}, +su_Sorting$_stableSort = ($this, $a, $from, $until, $evidence$4) => { + let var$5, var$6, var$7, var$8, var$9; + if ($rt_isInstance($a, $rt_arraycls(jl_Object))) { + if (jlr_Array_getLength($a) > 1 && $evidence$4 === null) { + $a = new jl_NullPointerException; + jl_Throwable__init_($a, $rt_s(5085)); + $rt_throw($a); + } + var$5 = $a; + if ($from > $until) { + $a = new jl_IllegalArgumentException; + jl_Throwable__init_0($a); + $rt_throw($a); + } + if ($evidence$4 === null) + $evidence$4 = ju_Comparator$NaturalOrder_INSTANCE; + var$6 = $rt_createArray(jl_Object, $until - $from | 0); + var$7 = var$6.data; + var$8 = $from; + while (var$8 < $until) { + var$7[var$8 - $from | 0] = var$5.data[var$8]; + var$8 = var$8 + 1 | 0; + } + ju_Arrays_sort(var$6, $evidence$4); + var$8 = $from; + while (var$8 < $until) { + var$5.data[var$8] = var$7[var$8 - $from | 0]; + var$8 = var$8 + 1 | 0; + } + return; + } + if ($rt_isInstance($a, $rt_arraycls($rt_intcls))) { + var$5 = $a; + sm_Ordering$Int$_$callClinit(); + if ($evidence$4 !== sm_Ordering$Int$_MODULE$) { + sr_ClassTag$_$callClinit(); + $a = sr_ClassTag$_Int(sr_ClassTag$_MODULE$); + if (($until - $from | 0) < 32) + su_Sorting$_scala$util$Sorting$$insertionSort($this, var$5, $from, $until, $evidence$4); + else { + var$8 = ($from + $until | 0) >>> 1 | 0; + var$6 = $rt_createIntArray(var$8 - $from | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$5, $from, var$8, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$5, var$8, $until, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$5, $from, var$8, $until, $evidence$4, var$6); + } + return; + } + if ($from > $until) { + $a = new jl_IllegalArgumentException; + jl_Throwable__init_0($a); + $rt_throw($a); + } + var$6 = $rt_createIntArray($until - $from | 0); + var$7 = var$6.data; + var$8 = $from; + while (var$8 < $until) { + var$7[var$8 - $from | 0] = var$5.data[var$8]; + var$8 = var$8 + 1 | 0; + } + ju_Arrays_sort2(var$6); + var$8 = $from; + while (var$8 < $until) { + var$5.data[var$8] = var$7[var$8 - $from | 0]; + var$8 = var$8 + 1 | 0; + } + return; + } + if ($rt_isInstance($a, $rt_arraycls($rt_doublecls))) { + var$9 = $a; + sr_ClassTag$_$callClinit(); + $a = sr_ClassTag$_Double(sr_ClassTag$_MODULE$); + if (($until - $from | 0) < 32) + su_Sorting$_scala$util$Sorting$$insertionSort($this, var$9, $from, $until, $evidence$4); + else { + var$8 = ($from + $until | 0) >>> 1 | 0; + var$6 = $rt_createDoubleArray(var$8 - $from | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, $from, var$8, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, var$8, $until, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$9, $from, var$8, $until, $evidence$4, var$6); + } + return; + } + if ($rt_isInstance($a, $rt_arraycls($rt_longcls))) { + var$5 = $a; + if ($evidence$4 !== sm_Ordering$Long$_MODULE$) { + sr_ClassTag$_$callClinit(); + $a = sr_ClassTag$_Long(sr_ClassTag$_MODULE$); + if (($until - $from | 0) < 32) + su_Sorting$_scala$util$Sorting$$insertionSort($this, var$5, $from, $until, $evidence$4); + else { + var$8 = ($from + $until | 0) >>> 1 | 0; + var$6 = $rt_createLongArray(var$8 - $from | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$5, $from, var$8, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$5, var$8, $until, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$5, $from, var$8, $until, $evidence$4, var$6); + } + return; + } + if ($from > $until) { + $a = new jl_IllegalArgumentException; + jl_Throwable__init_0($a); + $rt_throw($a); + } + var$6 = $rt_createLongArray($until - $from | 0); + var$7 = var$6.data; + var$8 = $from; + while (var$8 < $until) { + var$7[var$8 - $from | 0] = var$5.data[var$8]; + var$8 = var$8 + 1 | 0; + } + ju_Arrays_sort3(var$6); + var$8 = $from; + while (var$8 < $until) { + var$5.data[var$8] = var$7[var$8 - $from | 0]; + var$8 = var$8 + 1 | 0; + } + return; + } + if ($rt_isInstance($a, $rt_arraycls($rt_floatcls))) { + var$9 = $a; + sr_ClassTag$_$callClinit(); + $a = sr_ClassTag$_Float(sr_ClassTag$_MODULE$); + if (($until - $from | 0) < 32) + su_Sorting$_scala$util$Sorting$$insertionSort($this, var$9, $from, $until, $evidence$4); + else { + var$8 = ($from + $until | 0) >>> 1 | 0; + var$6 = $rt_createFloatArray(var$8 - $from | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, $from, var$8, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, var$8, $until, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$9, $from, var$8, $until, $evidence$4, var$6); + } + return; + } + if ($rt_isInstance($a, $rt_arraycls($rt_charcls))) { + var$9 = $a; + if ($evidence$4 === sm_Ordering$Char$_MODULE$) { + ju_Arrays_sort7(var$9, $from, $until); + return; + } + sr_ClassTag$_$callClinit(); + $a = sr_ClassTag$_Char(sr_ClassTag$_MODULE$); + if (($until - $from | 0) < 32) + su_Sorting$_scala$util$Sorting$$insertionSort($this, var$9, $from, $until, $evidence$4); + else { + var$8 = ($from + $until | 0) >>> 1 | 0; + var$6 = $rt_createCharArray(var$8 - $from | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, $from, var$8, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, var$8, $until, $evidence$4, var$6, $a); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$9, $from, var$8, $until, $evidence$4, var$6); + } + return; + } + if ($rt_isInstance($a, $rt_arraycls($rt_bytecls))) { + var$6 = $a; + if ($evidence$4 === sm_Ordering$Byte$_MODULE$) { + ju_Arrays_sort6(var$6, $from, $until); + return; + } + $a = null; + sr_ClassTag$_$callClinit(); + su_Sorting$_scala$util$Sorting$$mergeSort$mBc$sp($this, var$6, $from, $until, $evidence$4, $a, sr_ClassTag$_Byte(sr_ClassTag$_MODULE$)); + return; + } + if ($rt_isInstance($a, $rt_arraycls($rt_shortcls))) { + var$6 = $a; + if ($evidence$4 === sm_Ordering$Short$_MODULE$) { + ju_Arrays_sort5(var$6, $from, $until); + return; + } + $a = null; + sr_ClassTag$_$callClinit(); + su_Sorting$_scala$util$Sorting$$mergeSort$mSc$sp($this, var$6, $from, $until, $evidence$4, $a, sr_ClassTag$_Short(sr_ClassTag$_MODULE$)); + return; } - var$2.$charIndex = var$5; - var$2.$codePointIndex = var$2.$codePointIndex + 1 | 0; - jusi_StreamOverSpliterator$AdapterAction_accept($action, jl_Integer_valueOf(var$3)); - return 1; -}, -jl_Iterable$1_estimateSize = $this => { - return Long_fromInt(-1); -}, -oncie_Expression$$anonfun$containsAggregate$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncie_Expression$$anonfun$containsAggregate$1_applyOrElse = ($this, $x1, $default) => { - if ($x1 !== null) { - oncie_IsAggregate$_$callClinit(); - if (!s_Option_isEmpty(oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x1))) - return jl_Boolean_valueOf(1); + if (!$rt_isInstance($a, $rt_arraycls($rt_booleancls))) { + if ($a !== null) + $rt_throw(s_MatchError__init_($a)); + $a = new jl_NullPointerException; + jl_Throwable__init_0($a); + $rt_throw($a); } - return s_PartialFunction$_fallback_fn; -}, -oncipvaf_Cypher5ErrorStrategyConf = $rt_classWithoutFields(), -oncipvaf_Cypher5ErrorStrategyConf_preferredRules = $this => { - return oncip_CypherErrorStrategy$Conf_preferredRules$($this); + var$6 = $a; + if ($evidence$4 === sm_Ordering$Boolean$_MODULE$) { + su_Sorting$_scala$util$Sorting$$booleanSort($this, var$6, $from, $until); + return; + } + $a = null; + sr_ClassTag$_$callClinit(); + su_Sorting$_scala$util$Sorting$$mergeSort$mZc$sp($this, var$6, $from, $until, $evidence$4, $a, sr_ClassTag$_Boolean(sr_ClassTag$_MODULE$)); }, -oncipvaf_Cypher5ErrorStrategyConf_vocabulary = $this => { - oncipv_Cypher5Parser_$callClinit(); - return oncipv_Cypher5Parser_VOCABULARY; +su_Sorting$_scala$util$Sorting$$mergeSort$mZc$sp = ($this, $a, $i0, $iN, $ord, $sc, $evidence$2) => { + let $iK; + if (($iN - $i0 | 0) < 32) { + su_Sorting$_scala$util$Sorting$$insertionSort($this, $a, $i0, $iN, $ord); + return; + } + $iK = ($i0 + $iN | 0) >>> 1 | 0; + if ($sc === null) + $sc = $rt_createBooleanArray($iK - $i0 | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $i0, $iK, $ord, $sc, $evidence$2); + su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $iK, $iN, $ord, $sc, $evidence$2); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, $a, $i0, $iK, $iN, $ord, $sc); }, -oncipvaf_Cypher5ErrorStrategyConf_ignoredTokens = $this => { - s_Predef$_$callClinit(); - return ju_Set_of(jl_Integer_valueOf((-2)), jl_Integer_valueOf(247)); +su_Sorting$_scala$util$Sorting$$mergeSort$mBc$sp = ($this, $a, $i0, $iN, $ord, $sc, $evidence$2) => { + let $iK; + if (($iN - $i0 | 0) < 32) { + su_Sorting$_scala$util$Sorting$$insertionSort($this, $a, $i0, $iN, $ord); + return; + } + $iK = ($i0 + $iN | 0) >>> 1 | 0; + if ($sc === null) + $sc = $rt_createByteArray($iK - $i0 | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $i0, $iK, $ord, $sc, $evidence$2); + su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $iK, $iN, $ord, $sc, $evidence$2); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, $a, $i0, $iK, $iN, $ord, $sc); }, -oncipvaf_Cypher5ErrorStrategyConf_customTokenDisplayNames = $this => { - let var$1, var$2, var$3, var$4; - s_Predef$_$callClinit(); - var$1 = s_Predef$_Map(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(s_Tuple2, 19); - var$4 = var$3.data; - var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(1), $rt_s(6413)); - var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(2), $rt_s(6414)); - var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(4), $rt_s(6415)); - var$4[3] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(5), $rt_s(6416)); - var$4[4] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(6), $rt_s(6417)); - var$4[5] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(7), $rt_s(6418)); - var$4[6] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(309), $rt_s(4441)); - var$4[7] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(310), $rt_s(6391)); - var$4[8] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(311), $rt_s(6390)); - var$4[9] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(312), $rt_s(6383)); - var$4[10] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(3), $rt_s(6419)); - var$4[11] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(8), $rt_s(6420)); - var$4[12] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(9), $rt_s(6420)); - var$4[13] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(10), $rt_s(4441)); - var$4[14] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(17), $rt_s(6421)); - var$4[15] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(253), $rt_s(6422)); - var$4[16] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(150), $rt_s(6423)); - var$4[17] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(258), $rt_s(6424)); - var$4[18] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf((-1)), $rt_s(4015)); - return sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +su_Sorting$_scala$util$Sorting$$mergeSort$mSc$sp = ($this, $a, $i0, $iN, $ord, $sc, $evidence$2) => { + let $iK; + if (($iN - $i0 | 0) < 32) { + su_Sorting$_scala$util$Sorting$$insertionSort($this, $a, $i0, $iN, $ord); + return; + } + $iK = ($i0 + $iN | 0) >>> 1 | 0; + if ($sc === null) + $sc = $rt_createShortArray($iK - $i0 | 0); + su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $i0, $iK, $ord, $sc, $evidence$2); + su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $iK, $iN, $ord, $sc, $evidence$2); + su_Sorting$_scala$util$Sorting$$mergeSorted($this, $a, $i0, $iK, $iN, $ord, $sc); }, -oncipvaf_Cypher5ErrorStrategyConf_ruleGroups = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6; - s_Predef$_$callClinit(); - var$1 = s_Predef$_Map(s_Predef$_MODULE$); - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(s_Tuple2, 27); - var$4 = var$3.data; - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(88); - oncip_CypherErrorStrategy$ExpressionRule$_$callClinit(); - var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(106), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(100), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[3] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(99), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[4] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(98), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[5] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(97), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[6] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(96), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[7] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(93), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[8] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(92), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[9] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(91), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[10] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(90), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$4[11] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(89), oncip_CypherErrorStrategy$ExpressionRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(322); - oncip_CypherErrorStrategy$StringLiteralRule$_$callClinit(); - var$4[12] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(128); - oncip_CypherErrorStrategy$NumberLiteralRule$_$callClinit(); - var$4[13] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(132); - oncip_CypherErrorStrategy$ParameterRule$_$callClinit(); - var$4[14] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$ParameterRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(138); - oncip_CypherErrorStrategy$VariableRule$_$callClinit(); - var$4[15] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$VariableRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(319); - oncip_CypherErrorStrategy$DatabaseNameRule$_$callClinit(); - var$4[16] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(49); - oncip_CypherErrorStrategy$GraphPatternRule$_$callClinit(); - var$4[17] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(327); - oncip_CypherErrorStrategy$IdentifierRule$_$callClinit(); - var$4[18] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$4[19] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(328), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$4[20] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(329), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$4[21] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(330), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$4[22] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, jl_Integer_valueOf(331), oncip_CypherErrorStrategy$IdentifierRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(77); - oncip_CypherErrorStrategy$LabelExpressionRule$_$callClinit(); - var$4[23] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(71); - oncip_CypherErrorStrategy$RelationshipPatternRule$_$callClinit(); - var$4[24] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(59); - oncip_CypherErrorStrategy$NodePatternRule$_$callClinit(); - var$4[25] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$NodePatternRule$_MODULE$); - var$5 = s_Predef$ArrowAssoc$_MODULE$; - var$6 = jl_Integer_valueOf(84); - oncip_CypherErrorStrategy$LabelExpression1Rule$_$callClinit(); - var$4[26] = s_Predef$ArrowAssoc$_$minus$greater$extension(var$5, var$6, oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$); - return sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +oncia_UpdateClause = $rt_classWithoutFields(0), +oncia_UpdateClause_returnVariables$ = $$this => { + return oncia_ReturnItems$ReturnVariables$_empty(oncia_ReturnItems$ReturnVariables$_MODULE$); }, -oncipvaf_Cypher5ErrorStrategyConf_errorCharTokenType = $this => { - return 313; +oncia_UpdateClause_mixingIsWithMultipleLabelsMessage$ = ($$this, $statement, $replacement) => { + $$this = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($$this); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($$this, $rt_s(5086)), $statement), $rt_s(5087)), $replacement), $rt_s(901)); + return jl_AbstractStringBuilder_toString($$this); }; -function sci_HashCollisionMapNode$removed$lambda$_13_0() { - jl_Object.call(this); - this.$_0966 = null; +function oncia_SetClause() { + let a = this; jl_Object.call(a); + a.$items5 = null; + a.$position36 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier5 = null; + a.$SetExtractor$module1 = null; } -let sci_HashCollisionMapNode$removed$lambda$_13_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0966; - return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$1.$_1(), var$2) ? 0 : 1); +let oncia_SetClause_returnVariables = $this => { + return oncia_UpdateClause_returnVariables$($this); }, -oncipv_Cypher5Lexer = $rt_classWithoutFields(oavr_Lexer), -oncipv_Cypher5Lexer__decisionToDFA = null, -oncipv_Cypher5Lexer__sharedContextCache = null, -oncipv_Cypher5Lexer_channelNames = null, -oncipv_Cypher5Lexer_modeNames = null, -oncipv_Cypher5Lexer_ruleNames = null, -oncipv_Cypher5Lexer__LITERAL_NAMES = null, -oncipv_Cypher5Lexer__SYMBOLIC_NAMES = null, -oncipv_Cypher5Lexer_VOCABULARY = null, -oncipv_Cypher5Lexer_tokenNames = null, -oncipv_Cypher5Lexer__serializedATN = null, -oncipv_Cypher5Lexer__ATN = null, -oncipv_Cypher5Lexer_$callClinit = () => { - oncipv_Cypher5Lexer_$callClinit = $rt_eraseClinit(oncipv_Cypher5Lexer); - oncipv_Cypher5Lexer__clinit_(); +oncia_SetClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncipv_Cypher5Lexer_makeRuleNames = () => { - oncipv_Cypher5Lexer_$callClinit(); - return $rt_wrapArray(jl_String, [$rt_s(6123), $rt_s(6124), $rt_s(6125), $rt_s(6126), $rt_s(6127), $rt_s(6128), $rt_s(6129), $rt_s(6130), $rt_s(6131), $rt_s(6132), $rt_s(6133), $rt_s(6134), $rt_s(6135), $rt_s(4550), $rt_s(513), $rt_s(6136), $rt_s(6137), $rt_s(6138), $rt_s(6139), $rt_s(6140), $rt_s(563), $rt_s(6141), $rt_s(5610), $rt_s(708), $rt_s(6142), $rt_s(6143), $rt_s(6144), $rt_s(6145), $rt_s(6748), $rt_s(6146), $rt_s(6147), $rt_s(6148), $rt_s(6149), $rt_s(6150), $rt_s(6151), $rt_s(710), $rt_s(6152), - $rt_s(4633), $rt_s(6153), $rt_s(6749), $rt_s(1065), $rt_s(6154), $rt_s(6155), $rt_s(4659), $rt_s(6156), $rt_s(456), $rt_s(6157), $rt_s(6158), $rt_s(6159), $rt_s(6160), $rt_s(6161), $rt_s(6162), $rt_s(6163), $rt_s(6164), $rt_s(6750), $rt_s(6165), $rt_s(3474), $rt_s(507), $rt_s(6166), $rt_s(6167), $rt_s(6168), $rt_s(6169), $rt_s(6170), $rt_s(5070), $rt_s(6171), $rt_s(6172), $rt_s(6173), $rt_s(4404), $rt_s(6174), $rt_s(743), $rt_s(6175), $rt_s(31), $rt_s(6176), $rt_s(588), $rt_s(6177), $rt_s(5083), $rt_s(4893), - $rt_s(6178), $rt_s(6179), $rt_s(6180), $rt_s(6181), $rt_s(6182), $rt_s(6183), $rt_s(6184), $rt_s(6185), $rt_s(6186), $rt_s(6187), $rt_s(6188), $rt_s(535), $rt_s(6189), $rt_s(6190), $rt_s(6191), $rt_s(752), $rt_s(6192), $rt_s(6193), $rt_s(6194), $rt_s(6195), $rt_s(6196), $rt_s(6197), $rt_s(6198), $rt_s(457), $rt_s(6199), $rt_s(6200), $rt_s(6201), $rt_s(6202), $rt_s(4499), $rt_s(6203), $rt_s(4482), $rt_s(6204), $rt_s(6205), $rt_s(6206), $rt_s(6207), $rt_s(610), $rt_s(719), $rt_s(6208), $rt_s(5124), $rt_s(526), - $rt_s(3496), $rt_s(6209), $rt_s(6210), $rt_s(6211), $rt_s(5310), $rt_s(761), $rt_s(6212), $rt_s(6213), $rt_s(6214), $rt_s(6215), $rt_s(6216), $rt_s(589), $rt_s(6217), $rt_s(6218), $rt_s(5211), $rt_s(6219), $rt_s(478), $rt_s(896), $rt_s(6220), $rt_s(6221), $rt_s(6222), $rt_s(5086), $rt_s(6223), $rt_s(722), $rt_s(6224), $rt_s(6225), $rt_s(4494), $rt_s(6226), $rt_s(6227), $rt_s(6228), $rt_s(6229), $rt_s(6230), $rt_s(6231), $rt_s(6232), $rt_s(4634), $rt_s(6233), $rt_s(6234), $rt_s(5356), $rt_s(6235), $rt_s(3497), - $rt_s(6236), $rt_s(6237), $rt_s(6238), $rt_s(724), $rt_s(5092), $rt_s(4382), $rt_s(6239), $rt_s(6240), $rt_s(6241), $rt_s(6242), $rt_s(6243), $rt_s(6244), $rt_s(6245), $rt_s(4629), $rt_s(4630), $rt_s(4631), $rt_s(4632), $rt_s(6246), $rt_s(727), $rt_s(6247), $rt_s(6248), $rt_s(3581), $rt_s(6249), $rt_s(6250), $rt_s(6251), $rt_s(4523), $rt_s(6252), $rt_s(4524), $rt_s(6253), $rt_s(6254), $rt_s(6255), $rt_s(6256), $rt_s(6257), $rt_s(6258), $rt_s(6259), $rt_s(6260), $rt_s(6261), $rt_s(6751), $rt_s(558), $rt_s(6262), - $rt_s(758), $rt_s(6263), $rt_s(6752), $rt_s(6264), $rt_s(6265), $rt_s(6266), $rt_s(734), $rt_s(6267), $rt_s(6268), $rt_s(6269), $rt_s(6270), $rt_s(6271), $rt_s(6272), $rt_s(6273), $rt_s(6274), $rt_s(532), $rt_s(6275), $rt_s(6276), $rt_s(6277), $rt_s(6278), $rt_s(1067), $rt_s(6279), $rt_s(6280), $rt_s(32), $rt_s(6281), $rt_s(6282), $rt_s(6283), $rt_s(6284), $rt_s(4396), $rt_s(730), $rt_s(6285), $rt_s(5088), $rt_s(6286), $rt_s(770), $rt_s(771), $rt_s(6287), $rt_s(6288), $rt_s(5297), $rt_s(641), $rt_s(5322), - $rt_s(6289), $rt_s(6290), $rt_s(6291), $rt_s(6292), $rt_s(6293), $rt_s(6294), $rt_s(6295), $rt_s(6296), $rt_s(6297), $rt_s(6298), $rt_s(6299), $rt_s(6300), $rt_s(6301), $rt_s(6302), $rt_s(6303), $rt_s(5090), $rt_s(6304), $rt_s(6305), $rt_s(6306), $rt_s(6307), $rt_s(6308), $rt_s(6309), $rt_s(6310), $rt_s(6311), $rt_s(5157), $rt_s(6312), $rt_s(6313), $rt_s(5159), $rt_s(714), $rt_s(6314), $rt_s(514), $rt_s(6315), $rt_s(6316), $rt_s(1066), $rt_s(6317), $rt_s(6318), $rt_s(6319), $rt_s(6320), $rt_s(6321), $rt_s(525), - $rt_s(3517), $rt_s(4635), $rt_s(6322), $rt_s(6323), $rt_s(5288), $rt_s(6324), $rt_s(6325), $rt_s(6326), $rt_s(6327), $rt_s(6328), $rt_s(608), $rt_s(4489), $rt_s(5563), $rt_s(5121), $rt_s(6329), $rt_s(6330), $rt_s(559), $rt_s(6331), $rt_s(6332), $rt_s(6333), $rt_s(6334), $rt_s(3498), $rt_s(6753), $rt_s(6335), $rt_s(6336), $rt_s(6337), $rt_s(6338), $rt_s(642), $rt_s(6339), $rt_s(33), $rt_s(6340), $rt_s(4680), $rt_s(6341), $rt_s(6342), $rt_s(6343), $rt_s(6345), $rt_s(6346), $rt_s(6347), $rt_s(6348), $rt_s(6349), - $rt_s(6350), $rt_s(6351), $rt_s(6352), $rt_s(223), $rt_s(5700), $rt_s(6353), $rt_s(6354), $rt_s(6355), $rt_s(6356), $rt_s(6357), $rt_s(6358), $rt_s(6359), $rt_s(6360), $rt_s(357), $rt_s(6361), $rt_s(6362), $rt_s(6363), $rt_s(6364), $rt_s(221), $rt_s(6365), $rt_s(6366), $rt_s(6367), $rt_s(219), $rt_s(6368), $rt_s(6369), $rt_s(6370), $rt_s(6371)]); +oncia_SetClause_shouldRunQPPChecks = $this => { + return 1; }, -oncipv_Cypher5Lexer_makeLiteralNames = () => { - let var$1, var$2; - oncipv_Cypher5Lexer_$callClinit(); - var$1 = $rt_createArray(jl_String, 272); - var$2 = var$1.data; - var$2[0] = null; - var$2[1] = null; - var$2[2] = null; - var$2[3] = null; - var$2[4] = null; - var$2[5] = null; - var$2[6] = null; - var$2[7] = null; - var$2[8] = null; - var$2[9] = null; - var$2[10] = null; - var$2[11] = null; - var$2[12] = null; - var$2[13] = null; - var$2[14] = null; - var$2[15] = null; - var$2[16] = null; - var$2[17] = null; - var$2[18] = null; - var$2[19] = null; - var$2[20] = null; - var$2[21] = null; - var$2[22] = null; - var$2[23] = null; - var$2[24] = null; - var$2[25] = null; - var$2[26] = null; - var$2[27] = null; - var$2[28] = null; - var$2[29] = null; - var$2[30] = $rt_s(6372); - var$2[31] = null; - var$2[32] = null; - var$2[33] = null; - var$2[34] = null; - var$2[35] = null; - var$2[36] = null; - var$2[37] = null; - var$2[38] = null; - var$2[39] = null; - var$2[40] = null; - var$2[41] = null; - var$2[42] = null; - var$2[43] = null; - var$2[44] = null; - var$2[45] = null; - var$2[46] = null; - var$2[47] = $rt_s(6373); - var$2[48] = $rt_s(6374); - var$2[49] = $rt_s(6375); - var$2[50] = null; - var$2[51] = null; - var$2[52] = null; - var$2[53] = null; - var$2[54] = null; - var$2[55] = null; - var$2[56] = null; - var$2[57] = null; - var$2[58] = null; - var$2[59] = null; - var$2[60] = null; - var$2[61] = null; - var$2[62] = null; - var$2[63] = null; - var$2[64] = null; - var$2[65] = null; - var$2[66] = null; - var$2[67] = null; - var$2[68] = null; - var$2[69] = null; - var$2[70] = null; - var$2[71] = null; - var$2[72] = null; - var$2[73] = null; - var$2[74] = null; - var$2[75] = null; - var$2[76] = null; - var$2[77] = null; - var$2[78] = null; - var$2[79] = null; - var$2[80] = $rt_s(6376); - var$2[81] = null; - var$2[82] = $rt_s(6377); - var$2[83] = $rt_s(6378); - var$2[84] = $rt_s(6379); - var$2[85] = $rt_s(6380); - var$2[86] = null; - var$2[87] = null; - var$2[88] = null; - var$2[89] = null; - var$2[90] = null; - var$2[91] = null; - var$2[92] = null; - var$2[93] = null; - var$2[94] = null; - var$2[95] = null; - var$2[96] = null; - var$2[97] = null; - var$2[98] = null; - var$2[99] = null; - var$2[100] = $rt_s(6381); - var$2[101] = null; - var$2[102] = null; - var$2[103] = null; - var$2[104] = null; - var$2[105] = null; - var$2[106] = null; - var$2[107] = null; - var$2[108] = null; - var$2[109] = null; - var$2[110] = null; - var$2[111] = null; - var$2[112] = null; - var$2[113] = null; - var$2[114] = null; - var$2[115] = null; - var$2[116] = null; - var$2[117] = null; - var$2[118] = $rt_s(6382); - var$2[119] = null; - var$2[120] = null; - var$2[121] = null; - var$2[122] = null; - var$2[123] = null; - var$2[124] = $rt_s(6383); - var$2[125] = null; - var$2[126] = null; - var$2[127] = null; - var$2[128] = null; - var$2[129] = null; - var$2[130] = null; - var$2[131] = null; - var$2[132] = null; - var$2[133] = null; - var$2[134] = null; - var$2[135] = null; - var$2[136] = null; - var$2[137] = null; - var$2[138] = null; - var$2[139] = null; - var$2[140] = null; - var$2[141] = null; - var$2[142] = null; - var$2[143] = null; - var$2[144] = $rt_s(6384); - var$2[145] = $rt_s(6385); - var$2[146] = $rt_s(6386); - var$2[147] = $rt_s(6387); - var$2[148] = $rt_s(6388); - var$2[149] = null; - var$2[150] = null; - var$2[151] = null; - var$2[152] = null; - var$2[153] = null; - var$2[154] = null; - var$2[155] = $rt_s(6389); - var$2[156] = $rt_s(6390); - var$2[157] = null; - var$2[158] = null; - var$2[159] = null; - var$2[160] = null; - var$2[161] = $rt_s(6391); - var$2[162] = $rt_s(6392); - var$2[163] = $rt_s(6393); - var$2[164] = $rt_s(6394); - var$2[165] = null; - var$2[166] = null; - var$2[167] = null; - var$2[168] = null; - var$2[169] = null; - var$2[170] = null; - var$2[171] = null; - var$2[172] = null; - var$2[173] = null; - var$2[174] = null; - var$2[175] = null; - var$2[176] = null; - var$2[177] = null; - var$2[178] = null; - var$2[179] = null; - var$2[180] = null; - var$2[181] = null; - var$2[182] = null; - var$2[183] = null; - var$2[184] = null; - var$2[185] = null; - var$2[186] = null; - var$2[187] = null; - var$2[188] = null; - var$2[189] = null; - var$2[190] = null; - var$2[191] = null; - var$2[192] = null; - var$2[193] = null; - var$2[194] = null; - var$2[195] = null; - var$2[196] = null; - var$2[197] = null; - var$2[198] = null; - var$2[199] = $rt_s(6395); - var$2[200] = $rt_s(6396); - var$2[201] = null; - var$2[202] = null; - var$2[203] = $rt_s(6397); - var$2[204] = null; - var$2[205] = null; - var$2[206] = null; - var$2[207] = null; - var$2[208] = null; - var$2[209] = null; - var$2[210] = null; - var$2[211] = null; - var$2[212] = null; - var$2[213] = null; - var$2[214] = $rt_s(6398); - var$2[215] = null; - var$2[216] = $rt_s(6399); - var$2[217] = $rt_s(6400); - var$2[218] = null; - var$2[219] = null; - var$2[220] = null; - var$2[221] = null; - var$2[222] = $rt_s(6401); - var$2[223] = null; - var$2[224] = null; - var$2[225] = null; - var$2[226] = null; - var$2[227] = null; - var$2[228] = null; - var$2[229] = null; - var$2[230] = null; - var$2[231] = null; - var$2[232] = null; - var$2[233] = null; - var$2[234] = null; - var$2[235] = null; - var$2[236] = null; - var$2[237] = null; - var$2[238] = null; - var$2[239] = $rt_s(6402); - var$2[240] = null; - var$2[241] = null; - var$2[242] = null; - var$2[243] = null; - var$2[244] = null; - var$2[245] = null; - var$2[246] = null; - var$2[247] = $rt_s(6403); - var$2[248] = null; - var$2[249] = null; - var$2[250] = null; - var$2[251] = null; - var$2[252] = null; - var$2[253] = null; - var$2[254] = null; - var$2[255] = null; - var$2[256] = null; - var$2[257] = null; - var$2[258] = null; - var$2[259] = null; - var$2[260] = null; - var$2[261] = null; - var$2[262] = null; - var$2[263] = null; - var$2[264] = null; - var$2[265] = null; - var$2[266] = null; - var$2[267] = null; - var$2[268] = null; - var$2[269] = null; - var$2[270] = null; - var$2[271] = $rt_s(6404); - return var$1; +oncia_SetClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher5Lexer_makeSymbolicNames = () => { - let var$1, var$2; - oncipv_Cypher5Lexer_$callClinit(); - var$1 = $rt_createArray(jl_String, 314); - var$2 = var$1.data; - var$2[0] = null; - var$2[1] = $rt_s(6123); - var$2[2] = $rt_s(6124); - var$2[3] = $rt_s(6125); - var$2[4] = $rt_s(6126); - var$2[5] = $rt_s(6127); - var$2[6] = $rt_s(6130); - var$2[7] = $rt_s(6131); - var$2[8] = $rt_s(6132); - var$2[9] = $rt_s(6133); - var$2[10] = $rt_s(6135); - var$2[11] = $rt_s(4550); - var$2[12] = $rt_s(513); - var$2[13] = $rt_s(6136); - var$2[14] = $rt_s(6137); - var$2[15] = $rt_s(6138); - var$2[16] = $rt_s(6139); - var$2[17] = $rt_s(6140); - var$2[18] = $rt_s(563); - var$2[19] = $rt_s(6141); - var$2[20] = $rt_s(5610); - var$2[21] = $rt_s(708); - var$2[22] = $rt_s(6142); - var$2[23] = $rt_s(6143); - var$2[24] = $rt_s(6144); - var$2[25] = $rt_s(6145); - var$2[26] = $rt_s(6748); - var$2[27] = $rt_s(6146); - var$2[28] = $rt_s(6147); - var$2[29] = $rt_s(6148); - var$2[30] = $rt_s(6149); - var$2[31] = $rt_s(6150); - var$2[32] = $rt_s(6151); - var$2[33] = $rt_s(710); - var$2[34] = $rt_s(6152); - var$2[35] = $rt_s(4633); - var$2[36] = $rt_s(6153); - var$2[37] = $rt_s(6749); - var$2[38] = $rt_s(1065); - var$2[39] = $rt_s(6154); - var$2[40] = $rt_s(6155); - var$2[41] = $rt_s(4659); - var$2[42] = $rt_s(6156); - var$2[43] = $rt_s(456); - var$2[44] = $rt_s(6157); - var$2[45] = $rt_s(6158); - var$2[46] = $rt_s(6159); - var$2[47] = $rt_s(6160); - var$2[48] = $rt_s(6161); - var$2[49] = $rt_s(6162); - var$2[50] = $rt_s(6163); - var$2[51] = $rt_s(6164); - var$2[52] = $rt_s(6750); - var$2[53] = $rt_s(6165); - var$2[54] = $rt_s(3474); - var$2[55] = $rt_s(507); - var$2[56] = $rt_s(6166); - var$2[57] = $rt_s(6167); - var$2[58] = $rt_s(6168); - var$2[59] = $rt_s(6169); - var$2[60] = $rt_s(6170); - var$2[61] = $rt_s(5070); - var$2[62] = $rt_s(6171); - var$2[63] = $rt_s(6172); - var$2[64] = $rt_s(6173); - var$2[65] = $rt_s(4404); - var$2[66] = $rt_s(6174); - var$2[67] = $rt_s(743); - var$2[68] = $rt_s(6175); - var$2[69] = $rt_s(31); - var$2[70] = $rt_s(6176); - var$2[71] = $rt_s(588); - var$2[72] = $rt_s(6177); - var$2[73] = $rt_s(5083); - var$2[74] = $rt_s(4893); - var$2[75] = $rt_s(6178); - var$2[76] = $rt_s(6179); - var$2[77] = $rt_s(6180); - var$2[78] = $rt_s(6181); - var$2[79] = $rt_s(6182); - var$2[80] = $rt_s(6183); - var$2[81] = $rt_s(6184); - var$2[82] = $rt_s(6185); - var$2[83] = $rt_s(6186); - var$2[84] = $rt_s(6187); - var$2[85] = $rt_s(6188); - var$2[86] = $rt_s(535); - var$2[87] = $rt_s(6189); - var$2[88] = $rt_s(6190); - var$2[89] = $rt_s(6191); - var$2[90] = $rt_s(752); - var$2[91] = $rt_s(6192); - var$2[92] = $rt_s(6193); - var$2[93] = $rt_s(6194); - var$2[94] = $rt_s(6195); - var$2[95] = $rt_s(6196); - var$2[96] = $rt_s(6197); - var$2[97] = $rt_s(6198); - var$2[98] = $rt_s(457); - var$2[99] = $rt_s(6199); - var$2[100] = $rt_s(6200); - var$2[101] = $rt_s(6201); - var$2[102] = $rt_s(6202); - var$2[103] = $rt_s(4499); - var$2[104] = $rt_s(6203); - var$2[105] = $rt_s(4482); - var$2[106] = $rt_s(6204); - var$2[107] = $rt_s(6205); - var$2[108] = $rt_s(6206); - var$2[109] = $rt_s(6207); - var$2[110] = $rt_s(610); - var$2[111] = $rt_s(719); - var$2[112] = $rt_s(6208); - var$2[113] = $rt_s(5124); - var$2[114] = $rt_s(526); - var$2[115] = $rt_s(3496); - var$2[116] = $rt_s(6209); - var$2[117] = $rt_s(6210); - var$2[118] = $rt_s(6211); - var$2[119] = $rt_s(5310); - var$2[120] = $rt_s(761); - var$2[121] = $rt_s(6212); - var$2[122] = $rt_s(6213); - var$2[123] = $rt_s(6214); - var$2[124] = $rt_s(6215); - var$2[125] = $rt_s(6216); - var$2[126] = $rt_s(589); - var$2[127] = $rt_s(6217); - var$2[128] = $rt_s(6218); - var$2[129] = $rt_s(5211); - var$2[130] = $rt_s(6219); - var$2[131] = $rt_s(478); - var$2[132] = $rt_s(896); - var$2[133] = $rt_s(6220); - var$2[134] = $rt_s(6221); - var$2[135] = $rt_s(6222); - var$2[136] = $rt_s(5086); - var$2[137] = $rt_s(6223); - var$2[138] = $rt_s(722); - var$2[139] = $rt_s(6224); - var$2[140] = $rt_s(6225); - var$2[141] = $rt_s(4494); - var$2[142] = $rt_s(6226); - var$2[143] = $rt_s(6227); - var$2[144] = $rt_s(6228); - var$2[145] = $rt_s(6229); - var$2[146] = $rt_s(6230); - var$2[147] = $rt_s(6231); - var$2[148] = $rt_s(6232); - var$2[149] = $rt_s(4634); - var$2[150] = $rt_s(6233); - var$2[151] = $rt_s(6234); - var$2[152] = $rt_s(5356); - var$2[153] = $rt_s(6235); - var$2[154] = $rt_s(3497); - var$2[155] = $rt_s(6236); - var$2[156] = $rt_s(6237); - var$2[157] = $rt_s(6238); - var$2[158] = $rt_s(724); - var$2[159] = $rt_s(5092); - var$2[160] = $rt_s(4382); - var$2[161] = $rt_s(6239); - var$2[162] = $rt_s(6240); - var$2[163] = $rt_s(6241); - var$2[164] = $rt_s(6242); - var$2[165] = $rt_s(6243); - var$2[166] = $rt_s(6244); - var$2[167] = $rt_s(6245); - var$2[168] = $rt_s(4629); - var$2[169] = $rt_s(4630); - var$2[170] = $rt_s(4631); - var$2[171] = $rt_s(4632); - var$2[172] = $rt_s(6246); - var$2[173] = $rt_s(727); - var$2[174] = $rt_s(6247); - var$2[175] = $rt_s(6248); - var$2[176] = $rt_s(3581); - var$2[177] = $rt_s(6249); - var$2[178] = $rt_s(6250); - var$2[179] = $rt_s(6251); - var$2[180] = $rt_s(4523); - var$2[181] = $rt_s(6252); - var$2[182] = $rt_s(4524); - var$2[183] = $rt_s(6253); - var$2[184] = $rt_s(6254); - var$2[185] = $rt_s(6255); - var$2[186] = $rt_s(6256); - var$2[187] = $rt_s(6257); - var$2[188] = $rt_s(6258); - var$2[189] = $rt_s(6259); - var$2[190] = $rt_s(6260); - var$2[191] = $rt_s(6261); - var$2[192] = $rt_s(6751); - var$2[193] = $rt_s(558); - var$2[194] = $rt_s(6262); - var$2[195] = $rt_s(758); - var$2[196] = $rt_s(6263); - var$2[197] = $rt_s(6752); - var$2[198] = $rt_s(6264); - var$2[199] = $rt_s(6265); - var$2[200] = $rt_s(6266); - var$2[201] = $rt_s(734); - var$2[202] = $rt_s(6267); - var$2[203] = $rt_s(6268); - var$2[204] = $rt_s(6269); - var$2[205] = $rt_s(6270); - var$2[206] = $rt_s(6271); - var$2[207] = $rt_s(6272); - var$2[208] = $rt_s(6273); - var$2[209] = $rt_s(6274); - var$2[210] = $rt_s(532); - var$2[211] = $rt_s(6275); - var$2[212] = $rt_s(6276); - var$2[213] = $rt_s(6277); - var$2[214] = $rt_s(6278); - var$2[215] = $rt_s(1067); - var$2[216] = $rt_s(6279); - var$2[217] = $rt_s(6280); - var$2[218] = $rt_s(32); - var$2[219] = $rt_s(6281); - var$2[220] = $rt_s(6282); - var$2[221] = $rt_s(6283); - var$2[222] = $rt_s(6284); - var$2[223] = $rt_s(4396); - var$2[224] = $rt_s(730); - var$2[225] = $rt_s(6285); - var$2[226] = $rt_s(5088); - var$2[227] = $rt_s(6286); - var$2[228] = $rt_s(770); - var$2[229] = $rt_s(771); - var$2[230] = $rt_s(6287); - var$2[231] = $rt_s(6288); - var$2[232] = $rt_s(5297); - var$2[233] = $rt_s(641); - var$2[234] = $rt_s(5322); - var$2[235] = $rt_s(6289); - var$2[236] = $rt_s(6290); - var$2[237] = $rt_s(6291); - var$2[238] = $rt_s(6292); - var$2[239] = $rt_s(6293); - var$2[240] = $rt_s(6294); - var$2[241] = $rt_s(6295); - var$2[242] = $rt_s(6296); - var$2[243] = $rt_s(6297); - var$2[244] = $rt_s(6298); - var$2[245] = $rt_s(6299); - var$2[246] = $rt_s(6300); - var$2[247] = $rt_s(6301); - var$2[248] = $rt_s(6302); - var$2[249] = $rt_s(6303); - var$2[250] = $rt_s(5090); - var$2[251] = $rt_s(6304); - var$2[252] = $rt_s(6305); - var$2[253] = $rt_s(6306); - var$2[254] = $rt_s(6307); - var$2[255] = $rt_s(6308); - var$2[256] = $rt_s(6309); - var$2[257] = $rt_s(6310); - var$2[258] = $rt_s(6311); - var$2[259] = $rt_s(5157); - var$2[260] = $rt_s(6312); - var$2[261] = $rt_s(6313); - var$2[262] = $rt_s(5159); - var$2[263] = $rt_s(714); - var$2[264] = $rt_s(6314); - var$2[265] = $rt_s(514); - var$2[266] = $rt_s(6315); - var$2[267] = $rt_s(6316); - var$2[268] = $rt_s(1066); - var$2[269] = $rt_s(6317); - var$2[270] = $rt_s(6318); - var$2[271] = $rt_s(6319); - var$2[272] = $rt_s(6320); - var$2[273] = $rt_s(6321); - var$2[274] = $rt_s(525); - var$2[275] = $rt_s(3517); - var$2[276] = $rt_s(4635); - var$2[277] = $rt_s(6322); - var$2[278] = $rt_s(6323); - var$2[279] = $rt_s(5288); - var$2[280] = $rt_s(6324); - var$2[281] = $rt_s(6325); - var$2[282] = $rt_s(6326); - var$2[283] = $rt_s(6327); - var$2[284] = $rt_s(6328); - var$2[285] = $rt_s(608); - var$2[286] = $rt_s(4489); - var$2[287] = $rt_s(5563); - var$2[288] = $rt_s(5121); - var$2[289] = $rt_s(6329); - var$2[290] = $rt_s(6330); - var$2[291] = $rt_s(559); - var$2[292] = $rt_s(6331); - var$2[293] = $rt_s(6332); - var$2[294] = $rt_s(6333); - var$2[295] = $rt_s(6334); - var$2[296] = $rt_s(3498); - var$2[297] = $rt_s(6753); - var$2[298] = $rt_s(6335); - var$2[299] = $rt_s(6336); - var$2[300] = $rt_s(6337); - var$2[301] = $rt_s(6338); - var$2[302] = $rt_s(642); - var$2[303] = $rt_s(6339); - var$2[304] = $rt_s(33); - var$2[305] = $rt_s(6340); - var$2[306] = $rt_s(4680); - var$2[307] = $rt_s(6341); - var$2[308] = $rt_s(6342); - var$2[309] = $rt_s(6343); - var$2[310] = $rt_s(6345); - var$2[311] = $rt_s(6346); - var$2[312] = $rt_s(6347); - var$2[313] = $rt_s(6371); - return var$1; +oncia_SetClause_asCanonicalStringVal = $this => { + return $this.$toString(); }, -oncipv_Cypher5Lexer_getATN = $this => { - oncipv_Cypher5Lexer_$callClinit(); - return oncipv_Cypher5Lexer__ATN; +oncia_SetClause_foldedOver = $this => { + return $this; }, -oncipv_Cypher5Lexer__clinit_ = () => { - let var$1, $i, var$3; - oavr_RuntimeMetaData_checkVersion($rt_s(6405), $rt_s(6405)); - oncipv_Cypher5Lexer__sharedContextCache = oavra_PredictionContextCache__init_(); - oncipv_Cypher5Lexer_channelNames = $rt_wrapArray(jl_String, [$rt_s(6406), $rt_s(6407)]); - var$1 = $rt_createArray(jl_String, 1); - var$1.data[0] = $rt_s(6408); - oncipv_Cypher5Lexer_modeNames = var$1; - oncipv_Cypher5Lexer_ruleNames = oncipv_Cypher5Lexer_makeRuleNames(); - oncipv_Cypher5Lexer__LITERAL_NAMES = oncipv_Cypher5Lexer_makeLiteralNames(); - var$1 = oncipv_Cypher5Lexer_makeSymbolicNames(); - oncipv_Cypher5Lexer__SYMBOLIC_NAMES = var$1; - oncipv_Cypher5Lexer_VOCABULARY = oavr_VocabularyImpl__init_(oncipv_Cypher5Lexer__LITERAL_NAMES, var$1); - oncipv_Cypher5Lexer_tokenNames = $rt_createArray(jl_String, oncipv_Cypher5Lexer__SYMBOLIC_NAMES.data.length); - $i = 0; - while (true) { - var$1 = oncipv_Cypher5Lexer_tokenNames.data; - if ($i >= var$1.length) - break; - var$1[$i] = oavr_VocabularyImpl_getLiteralName(oncipv_Cypher5Lexer_VOCABULARY, $i); - var$1 = oncipv_Cypher5Lexer_tokenNames.data; - if (var$1[$i] === null) - var$1[$i] = oavr_VocabularyImpl_getSymbolicName(oncipv_Cypher5Lexer_VOCABULARY, $i); - var$1 = oncipv_Cypher5Lexer_tokenNames.data; - if (var$1[$i] === null) - var$1[$i] = $rt_s(6409); - $i = $i + 1 | 0; - } - oncipv_Cypher5Lexer__serializedATN = oavrm_Utils_join($rt_wrapArray(jl_String, [$rt_s(6754), $rt_s(6755)]), $rt_s(4)); - var$3 = oavra_ATNDeserializer_deserialize(oavra_ATNDeserializer__init_(), jl_String_toCharArray(oncipv_Cypher5Lexer__serializedATN)); - oncipv_Cypher5Lexer__ATN = var$3; - oncipv_Cypher5Lexer__decisionToDFA = $rt_createArray(oavrd_DFA, oavra_ATN_getNumberOfDecisions(var$3)); - $i = 0; - while ($i < oavra_ATN_getNumberOfDecisions(oncipv_Cypher5Lexer__ATN)) { - oncipv_Cypher5Lexer__decisionToDFA.data[$i] = oavrd_DFA__init_(oavra_ATN_getDecisionState(oncipv_Cypher5Lexer__ATN, $i), $i); - $i = $i + 1 | 0; +oncia_SetClause_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_SetClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier5; +}, +oncia_SetClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module1 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module1 !== null) + break a; + $this.$SetExtractor$module1 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); } -}; -function oncipvaf_Cypher5AstLexer() { - let a = this; oncipv_Cypher5Lexer.call(a); - a.$inputQuery1 = null; - a.$offsetTable3 = null; -} -let oncipvaf_Cypher5AstLexer_notifyListeners = ($this, $e) => { - let $text, $listener, $dummyToken, var$5; - $text = $this.$_input0; - $text = $text.$getText0(oavrm_Interval_of($this.$_tokenStartCharIndex, $text.$position6)); - $listener = oavr_Lexer_getErrorDisplay($this, $text); - $dummyToken = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($dummyToken); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($dummyToken, $rt_s(6412)), $listener), 39); - var$5 = jl_AbstractStringBuilder_toString($dummyToken); - oavr_ProxyErrorListener_syntaxError(oavr_Recognizer_getErrorListenerDispatch($this), $this, $this.$_factory.$create1($this.$_tokenFactorySourcePair, (-1), $text, $this.$_channel, $this.$_tokenStartCharIndex, $this.$_input0.$position6, $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine), $this.$_tokenStartLine, $this.$_tokenStartCharPositionInLine, var$5, $e); + return $this.$SetExtractor$module1; }, -oncipvaf_Cypher5AstLexer_inputQuery = $this => { - return $this.$inputQuery1; +oncia_SetClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier5 = $x$1; }, -oncipvaf_Cypher5AstLexer_offsetTable = $this => { - return $this.$offsetTable3; +oncia_SetClause_position = $this => { + return $this.$position36; }, -oncipv_Cypher5Parser = $rt_classWithoutFields(oavr_Parser), -oncipv_Cypher5Parser__decisionToDFA = null, -oncipv_Cypher5Parser__sharedContextCache = null, -oncipv_Cypher5Parser_ruleNames = null, -oncipv_Cypher5Parser__LITERAL_NAMES = null, -oncipv_Cypher5Parser__SYMBOLIC_NAMES = null, -oncipv_Cypher5Parser_VOCABULARY = null, -oncipv_Cypher5Parser_tokenNames = null, -oncipv_Cypher5Parser__serializedATN = null, -oncipv_Cypher5Parser__ATN = null, -oncipv_Cypher5Parser_$callClinit = () => { - oncipv_Cypher5Parser_$callClinit = $rt_eraseClinit(oncipv_Cypher5Parser); - oncipv_Cypher5Parser__clinit_(); +oncia_SetClause_name = $this => { + return $rt_s(4468); }, -oncipv_Cypher5Parser_makeRuleNames = () => { - oncipv_Cypher5Parser_$callClinit(); - return $rt_wrapArray(jl_String, [$rt_s(6425), $rt_s(6426), $rt_s(6756), $rt_s(6427), $rt_s(6428), $rt_s(1108), $rt_s(6429), $rt_s(6430), $rt_s(6431), $rt_s(6432), $rt_s(6433), $rt_s(6434), $rt_s(6435), $rt_s(6436), $rt_s(6437), $rt_s(6438), $rt_s(6439), $rt_s(6440), $rt_s(6441), $rt_s(6442), $rt_s(6443), $rt_s(6444), $rt_s(6445), $rt_s(6446), $rt_s(6447), $rt_s(6448), $rt_s(6449), $rt_s(6450), $rt_s(6451), $rt_s(1149), $rt_s(1133), $rt_s(6452), $rt_s(6453), $rt_s(6454), $rt_s(6455), $rt_s(6456), $rt_s(6457), - $rt_s(6458), $rt_s(6459), $rt_s(6460), $rt_s(6461), $rt_s(6462), $rt_s(6463), $rt_s(6464), $rt_s(6465), $rt_s(6466), $rt_s(6467), $rt_s(6468), $rt_s(6469), $rt_s(6470), $rt_s(6471), $rt_s(6472), $rt_s(6473), $rt_s(6474), $rt_s(6475), $rt_s(1183), $rt_s(6476), $rt_s(6477), $rt_s(6478), $rt_s(6479), $rt_s(6480), $rt_s(6481), $rt_s(6482), $rt_s(6483), $rt_s(6484), $rt_s(6485), $rt_s(6486), $rt_s(6487), $rt_s(1177), $rt_s(6488), $rt_s(4907), $rt_s(6489), $rt_s(6490), $rt_s(6491), $rt_s(6492), $rt_s(6493), $rt_s(6494), - $rt_s(6495), $rt_s(6496), $rt_s(6497), $rt_s(6498), $rt_s(6499), $rt_s(6500), $rt_s(6501), $rt_s(6502), $rt_s(6503), $rt_s(6504), $rt_s(6505), $rt_s(943), $rt_s(6506), $rt_s(6507), $rt_s(6508), $rt_s(6509), $rt_s(6510), $rt_s(6511), $rt_s(5430), $rt_s(6512), $rt_s(6513), $rt_s(6514), $rt_s(6515), $rt_s(6516), $rt_s(6517), $rt_s(5113), $rt_s(6518), $rt_s(6519), $rt_s(6520), $rt_s(6521), $rt_s(6522), $rt_s(6523), $rt_s(6524), $rt_s(6525), $rt_s(6526), $rt_s(6527), $rt_s(6528), $rt_s(6529), $rt_s(6530), $rt_s(6531), - $rt_s(6532), $rt_s(6533), $rt_s(6534), $rt_s(6535), $rt_s(6536), $rt_s(6537), $rt_s(6538), $rt_s(6539), $rt_s(6540), $rt_s(6541), $rt_s(6542), $rt_s(6543), $rt_s(6544), $rt_s(6545), $rt_s(6546), $rt_s(6547), $rt_s(6548), $rt_s(6549), $rt_s(6550), $rt_s(6551), $rt_s(1152), $rt_s(1203), $rt_s(6552), $rt_s(4912), $rt_s(6553), $rt_s(6554), $rt_s(6555), $rt_s(6556), $rt_s(5010), $rt_s(6557), $rt_s(6558), $rt_s(6559), $rt_s(6560), $rt_s(6561), $rt_s(6562), $rt_s(6563), $rt_s(6564), $rt_s(6565), $rt_s(6566), $rt_s(6567), - $rt_s(6568), $rt_s(6757), $rt_s(6569), $rt_s(6758), $rt_s(6759), $rt_s(6572), $rt_s(6760), $rt_s(6574), $rt_s(6761), $rt_s(6762), $rt_s(6763), $rt_s(6764), $rt_s(6576), $rt_s(6577), $rt_s(6578), $rt_s(6579), $rt_s(6580), $rt_s(6581), $rt_s(6582), $rt_s(6583), $rt_s(6584), $rt_s(6585), $rt_s(6586), $rt_s(6587), $rt_s(6588), $rt_s(6589), $rt_s(6590), $rt_s(6591), $rt_s(6592), $rt_s(6765), $rt_s(6593), $rt_s(6594), $rt_s(6595), $rt_s(6596), $rt_s(6597), $rt_s(6598), $rt_s(6599), $rt_s(6600), $rt_s(6601), $rt_s(6602), - $rt_s(6603), $rt_s(6604), $rt_s(6605), $rt_s(6606), $rt_s(6607), $rt_s(6608), $rt_s(6609), $rt_s(6610), $rt_s(6611), $rt_s(6612), $rt_s(6613), $rt_s(6614), $rt_s(6615), $rt_s(6616), $rt_s(6617), $rt_s(6618), $rt_s(6619), $rt_s(6620), $rt_s(6621), $rt_s(6622), $rt_s(6623), $rt_s(6624), $rt_s(6625), $rt_s(6626), $rt_s(6627), $rt_s(6628), $rt_s(6629), $rt_s(6630), $rt_s(6631), $rt_s(6632), $rt_s(6633), $rt_s(4976), $rt_s(6634), $rt_s(6635), $rt_s(6636), $rt_s(6637), $rt_s(6638), $rt_s(6639), $rt_s(6640), $rt_s(6641), - $rt_s(6642), $rt_s(6643), $rt_s(6644), $rt_s(6645), $rt_s(6646), $rt_s(6647), $rt_s(6648), $rt_s(6649), $rt_s(6650), $rt_s(6651), $rt_s(6652), $rt_s(6653), $rt_s(6654), $rt_s(6655), $rt_s(6656), $rt_s(6657), $rt_s(6658), $rt_s(6659), $rt_s(6660), $rt_s(6661), $rt_s(6662), $rt_s(6663), $rt_s(6664), $rt_s(6665), $rt_s(6666), $rt_s(6667), $rt_s(6668), $rt_s(6669), $rt_s(6670), $rt_s(6671), $rt_s(6672), $rt_s(6673), $rt_s(6674), $rt_s(6675), $rt_s(6676), $rt_s(6677), $rt_s(6678), $rt_s(6679), $rt_s(6680), $rt_s(6681), - $rt_s(6682), $rt_s(6683), $rt_s(6684), $rt_s(6685), $rt_s(6686), $rt_s(6687), $rt_s(6688), $rt_s(6689), $rt_s(6690), $rt_s(6691), $rt_s(6692), $rt_s(6693), $rt_s(6694), $rt_s(6695), $rt_s(6696), $rt_s(6697), $rt_s(6698), $rt_s(6699), $rt_s(6700), $rt_s(6701), $rt_s(6702), $rt_s(6703), $rt_s(6704), $rt_s(6705), $rt_s(6706), $rt_s(6707), $rt_s(6708), $rt_s(6709), $rt_s(6710), $rt_s(6711), $rt_s(6712), $rt_s(6713), $rt_s(6714), $rt_s(6715), $rt_s(6716), $rt_s(6717), $rt_s(6718), $rt_s(6719), $rt_s(6720), $rt_s(6721), - $rt_s(6722), $rt_s(6723), $rt_s(6724), $rt_s(6725), $rt_s(6726), $rt_s(6727), $rt_s(6728), $rt_s(6729), $rt_s(6730), $rt_s(6731), $rt_s(6732), $rt_s(6733), $rt_s(6734), $rt_s(6735), $rt_s(6736), $rt_s(6737), $rt_s(6738)]); +oncia_SetClause_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3; + var$1 = oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(oncias_SemanticCheckableIterableOnce$_MODULE$, $this.$items5); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_SetClause$clauseSpecificSemanticCheck$lambda$_67_0; + var$3.$_0128 = $this; + return var$1.$chain(oncias_SemanticCheck$_fromState(var$2, var$3)); }, -oncipv_Cypher5Parser_makeLiteralNames = () => { - let var$1, var$2; - oncipv_Cypher5Parser_$callClinit(); - var$1 = $rt_createArray(jl_String, 272); - var$2 = var$1.data; - var$2[0] = null; - var$2[1] = null; - var$2[2] = null; - var$2[3] = null; - var$2[4] = null; - var$2[5] = null; - var$2[6] = null; - var$2[7] = null; - var$2[8] = null; - var$2[9] = null; - var$2[10] = null; - var$2[11] = null; - var$2[12] = null; - var$2[13] = null; - var$2[14] = null; - var$2[15] = null; - var$2[16] = null; - var$2[17] = null; - var$2[18] = null; - var$2[19] = null; - var$2[20] = null; - var$2[21] = null; - var$2[22] = null; - var$2[23] = null; - var$2[24] = null; - var$2[25] = null; - var$2[26] = null; - var$2[27] = null; - var$2[28] = null; - var$2[29] = null; - var$2[30] = $rt_s(6372); - var$2[31] = null; - var$2[32] = null; - var$2[33] = null; - var$2[34] = null; - var$2[35] = null; - var$2[36] = null; - var$2[37] = null; - var$2[38] = null; - var$2[39] = null; - var$2[40] = null; - var$2[41] = null; - var$2[42] = null; - var$2[43] = null; - var$2[44] = null; - var$2[45] = null; - var$2[46] = null; - var$2[47] = $rt_s(6373); - var$2[48] = $rt_s(6374); - var$2[49] = $rt_s(6375); - var$2[50] = null; - var$2[51] = null; - var$2[52] = null; - var$2[53] = null; - var$2[54] = null; - var$2[55] = null; - var$2[56] = null; - var$2[57] = null; - var$2[58] = null; - var$2[59] = null; - var$2[60] = null; - var$2[61] = null; - var$2[62] = null; - var$2[63] = null; - var$2[64] = null; - var$2[65] = null; - var$2[66] = null; - var$2[67] = null; - var$2[68] = null; - var$2[69] = null; - var$2[70] = null; - var$2[71] = null; - var$2[72] = null; - var$2[73] = null; - var$2[74] = null; - var$2[75] = null; - var$2[76] = null; - var$2[77] = null; - var$2[78] = null; - var$2[79] = null; - var$2[80] = $rt_s(6376); - var$2[81] = null; - var$2[82] = $rt_s(6377); - var$2[83] = $rt_s(6378); - var$2[84] = $rt_s(6379); - var$2[85] = $rt_s(6380); - var$2[86] = null; - var$2[87] = null; - var$2[88] = null; - var$2[89] = null; - var$2[90] = null; - var$2[91] = null; - var$2[92] = null; - var$2[93] = null; - var$2[94] = null; - var$2[95] = null; - var$2[96] = null; - var$2[97] = null; - var$2[98] = null; - var$2[99] = null; - var$2[100] = $rt_s(6381); - var$2[101] = null; - var$2[102] = null; - var$2[103] = null; - var$2[104] = null; - var$2[105] = null; - var$2[106] = null; - var$2[107] = null; - var$2[108] = null; - var$2[109] = null; - var$2[110] = null; - var$2[111] = null; - var$2[112] = null; - var$2[113] = null; - var$2[114] = null; - var$2[115] = null; - var$2[116] = null; - var$2[117] = null; - var$2[118] = $rt_s(6382); - var$2[119] = null; - var$2[120] = null; - var$2[121] = null; - var$2[122] = null; - var$2[123] = null; - var$2[124] = $rt_s(6383); - var$2[125] = null; - var$2[126] = null; - var$2[127] = null; - var$2[128] = null; - var$2[129] = null; - var$2[130] = null; - var$2[131] = null; - var$2[132] = null; - var$2[133] = null; - var$2[134] = null; - var$2[135] = null; - var$2[136] = null; - var$2[137] = null; - var$2[138] = null; - var$2[139] = null; - var$2[140] = null; - var$2[141] = null; - var$2[142] = null; - var$2[143] = null; - var$2[144] = $rt_s(6384); - var$2[145] = $rt_s(6385); - var$2[146] = $rt_s(6386); - var$2[147] = $rt_s(6387); - var$2[148] = $rt_s(6388); - var$2[149] = null; - var$2[150] = null; - var$2[151] = null; - var$2[152] = null; - var$2[153] = null; - var$2[154] = null; - var$2[155] = $rt_s(6389); - var$2[156] = $rt_s(6390); - var$2[157] = null; - var$2[158] = null; - var$2[159] = null; - var$2[160] = null; - var$2[161] = $rt_s(6391); - var$2[162] = $rt_s(6392); - var$2[163] = $rt_s(6393); - var$2[164] = $rt_s(6394); - var$2[165] = null; - var$2[166] = null; - var$2[167] = null; - var$2[168] = null; - var$2[169] = null; - var$2[170] = null; - var$2[171] = null; - var$2[172] = null; - var$2[173] = null; - var$2[174] = null; - var$2[175] = null; - var$2[176] = null; - var$2[177] = null; - var$2[178] = null; - var$2[179] = null; - var$2[180] = null; - var$2[181] = null; - var$2[182] = null; - var$2[183] = null; - var$2[184] = null; - var$2[185] = null; - var$2[186] = null; - var$2[187] = null; - var$2[188] = null; - var$2[189] = null; - var$2[190] = null; - var$2[191] = null; - var$2[192] = null; - var$2[193] = null; - var$2[194] = null; - var$2[195] = null; - var$2[196] = null; - var$2[197] = null; - var$2[198] = null; - var$2[199] = $rt_s(6395); - var$2[200] = $rt_s(6396); - var$2[201] = null; - var$2[202] = null; - var$2[203] = $rt_s(6397); - var$2[204] = null; - var$2[205] = null; - var$2[206] = null; - var$2[207] = null; - var$2[208] = null; - var$2[209] = null; - var$2[210] = null; - var$2[211] = null; - var$2[212] = null; - var$2[213] = null; - var$2[214] = $rt_s(6398); - var$2[215] = null; - var$2[216] = $rt_s(6399); - var$2[217] = $rt_s(6400); - var$2[218] = null; - var$2[219] = null; - var$2[220] = null; - var$2[221] = null; - var$2[222] = $rt_s(6401); - var$2[223] = null; - var$2[224] = null; - var$2[225] = null; - var$2[226] = null; - var$2[227] = null; - var$2[228] = null; - var$2[229] = null; - var$2[230] = null; - var$2[231] = null; - var$2[232] = null; - var$2[233] = null; - var$2[234] = null; - var$2[235] = null; - var$2[236] = null; - var$2[237] = null; - var$2[238] = null; - var$2[239] = $rt_s(6402); - var$2[240] = null; - var$2[241] = null; - var$2[242] = null; - var$2[243] = null; - var$2[244] = null; - var$2[245] = null; - var$2[246] = null; - var$2[247] = $rt_s(6403); - var$2[248] = null; - var$2[249] = null; - var$2[250] = null; - var$2[251] = null; - var$2[252] = null; - var$2[253] = null; - var$2[254] = null; - var$2[255] = null; - var$2[256] = null; - var$2[257] = null; - var$2[258] = null; - var$2[259] = null; - var$2[260] = null; - var$2[261] = null; - var$2[262] = null; - var$2[263] = null; - var$2[264] = null; - var$2[265] = null; - var$2[266] = null; - var$2[267] = null; - var$2[268] = null; - var$2[269] = null; - var$2[270] = null; - var$2[271] = $rt_s(6404); - return var$1; +oncia_SetClause_mapExpressions = ($this, $f) => { + let var$2, var$3; + var$2 = $this.$items5; + var$3 = new oncia_SetClause$mapExpressions$lambda$_68_0; + var$3.$_0746 = $f; + return oncia_SetClause_copy($this, var$2.$map(var$3), $this.$position36); }, -oncipv_Cypher5Parser_makeSymbolicNames = () => { - let var$1, var$2; - oncipv_Cypher5Parser_$callClinit(); - var$1 = $rt_createArray(jl_String, 314); - var$2 = var$1.data; - var$2[0] = null; - var$2[1] = $rt_s(6123); - var$2[2] = $rt_s(6124); - var$2[3] = $rt_s(6125); - var$2[4] = $rt_s(6126); - var$2[5] = $rt_s(6127); - var$2[6] = $rt_s(6130); - var$2[7] = $rt_s(6131); - var$2[8] = $rt_s(6132); - var$2[9] = $rt_s(6133); - var$2[10] = $rt_s(6135); - var$2[11] = $rt_s(4550); - var$2[12] = $rt_s(513); - var$2[13] = $rt_s(6136); - var$2[14] = $rt_s(6137); - var$2[15] = $rt_s(6138); - var$2[16] = $rt_s(6139); - var$2[17] = $rt_s(6140); - var$2[18] = $rt_s(563); - var$2[19] = $rt_s(6141); - var$2[20] = $rt_s(5610); - var$2[21] = $rt_s(708); - var$2[22] = $rt_s(6142); - var$2[23] = $rt_s(6143); - var$2[24] = $rt_s(6144); - var$2[25] = $rt_s(6145); - var$2[26] = $rt_s(6748); - var$2[27] = $rt_s(6146); - var$2[28] = $rt_s(6147); - var$2[29] = $rt_s(6148); - var$2[30] = $rt_s(6149); - var$2[31] = $rt_s(6150); - var$2[32] = $rt_s(6151); - var$2[33] = $rt_s(710); - var$2[34] = $rt_s(6152); - var$2[35] = $rt_s(4633); - var$2[36] = $rt_s(6153); - var$2[37] = $rt_s(6749); - var$2[38] = $rt_s(1065); - var$2[39] = $rt_s(6154); - var$2[40] = $rt_s(6155); - var$2[41] = $rt_s(4659); - var$2[42] = $rt_s(6156); - var$2[43] = $rt_s(456); - var$2[44] = $rt_s(6157); - var$2[45] = $rt_s(6158); - var$2[46] = $rt_s(6159); - var$2[47] = $rt_s(6160); - var$2[48] = $rt_s(6161); - var$2[49] = $rt_s(6162); - var$2[50] = $rt_s(6163); - var$2[51] = $rt_s(6164); - var$2[52] = $rt_s(6750); - var$2[53] = $rt_s(6165); - var$2[54] = $rt_s(3474); - var$2[55] = $rt_s(507); - var$2[56] = $rt_s(6166); - var$2[57] = $rt_s(6167); - var$2[58] = $rt_s(6168); - var$2[59] = $rt_s(6169); - var$2[60] = $rt_s(6170); - var$2[61] = $rt_s(5070); - var$2[62] = $rt_s(6171); - var$2[63] = $rt_s(6172); - var$2[64] = $rt_s(6173); - var$2[65] = $rt_s(4404); - var$2[66] = $rt_s(6174); - var$2[67] = $rt_s(743); - var$2[68] = $rt_s(6175); - var$2[69] = $rt_s(31); - var$2[70] = $rt_s(6176); - var$2[71] = $rt_s(588); - var$2[72] = $rt_s(6177); - var$2[73] = $rt_s(5083); - var$2[74] = $rt_s(4893); - var$2[75] = $rt_s(6178); - var$2[76] = $rt_s(6179); - var$2[77] = $rt_s(6180); - var$2[78] = $rt_s(6181); - var$2[79] = $rt_s(6182); - var$2[80] = $rt_s(6183); - var$2[81] = $rt_s(6184); - var$2[82] = $rt_s(6185); - var$2[83] = $rt_s(6186); - var$2[84] = $rt_s(6187); - var$2[85] = $rt_s(6188); - var$2[86] = $rt_s(535); - var$2[87] = $rt_s(6189); - var$2[88] = $rt_s(6190); - var$2[89] = $rt_s(6191); - var$2[90] = $rt_s(752); - var$2[91] = $rt_s(6192); - var$2[92] = $rt_s(6193); - var$2[93] = $rt_s(6194); - var$2[94] = $rt_s(6195); - var$2[95] = $rt_s(6196); - var$2[96] = $rt_s(6197); - var$2[97] = $rt_s(6198); - var$2[98] = $rt_s(457); - var$2[99] = $rt_s(6199); - var$2[100] = $rt_s(6200); - var$2[101] = $rt_s(6201); - var$2[102] = $rt_s(6202); - var$2[103] = $rt_s(4499); - var$2[104] = $rt_s(6203); - var$2[105] = $rt_s(4482); - var$2[106] = $rt_s(6204); - var$2[107] = $rt_s(6205); - var$2[108] = $rt_s(6206); - var$2[109] = $rt_s(6207); - var$2[110] = $rt_s(610); - var$2[111] = $rt_s(719); - var$2[112] = $rt_s(6208); - var$2[113] = $rt_s(5124); - var$2[114] = $rt_s(526); - var$2[115] = $rt_s(3496); - var$2[116] = $rt_s(6209); - var$2[117] = $rt_s(6210); - var$2[118] = $rt_s(6211); - var$2[119] = $rt_s(5310); - var$2[120] = $rt_s(761); - var$2[121] = $rt_s(6212); - var$2[122] = $rt_s(6213); - var$2[123] = $rt_s(6214); - var$2[124] = $rt_s(6215); - var$2[125] = $rt_s(6216); - var$2[126] = $rt_s(589); - var$2[127] = $rt_s(6217); - var$2[128] = $rt_s(6218); - var$2[129] = $rt_s(5211); - var$2[130] = $rt_s(6219); - var$2[131] = $rt_s(478); - var$2[132] = $rt_s(896); - var$2[133] = $rt_s(6220); - var$2[134] = $rt_s(6221); - var$2[135] = $rt_s(6222); - var$2[136] = $rt_s(5086); - var$2[137] = $rt_s(6223); - var$2[138] = $rt_s(722); - var$2[139] = $rt_s(6224); - var$2[140] = $rt_s(6225); - var$2[141] = $rt_s(4494); - var$2[142] = $rt_s(6226); - var$2[143] = $rt_s(6227); - var$2[144] = $rt_s(6228); - var$2[145] = $rt_s(6229); - var$2[146] = $rt_s(6230); - var$2[147] = $rt_s(6231); - var$2[148] = $rt_s(6232); - var$2[149] = $rt_s(4634); - var$2[150] = $rt_s(6233); - var$2[151] = $rt_s(6234); - var$2[152] = $rt_s(5356); - var$2[153] = $rt_s(6235); - var$2[154] = $rt_s(3497); - var$2[155] = $rt_s(6236); - var$2[156] = $rt_s(6237); - var$2[157] = $rt_s(6238); - var$2[158] = $rt_s(724); - var$2[159] = $rt_s(5092); - var$2[160] = $rt_s(4382); - var$2[161] = $rt_s(6239); - var$2[162] = $rt_s(6240); - var$2[163] = $rt_s(6241); - var$2[164] = $rt_s(6242); - var$2[165] = $rt_s(6243); - var$2[166] = $rt_s(6244); - var$2[167] = $rt_s(6245); - var$2[168] = $rt_s(4629); - var$2[169] = $rt_s(4630); - var$2[170] = $rt_s(4631); - var$2[171] = $rt_s(4632); - var$2[172] = $rt_s(6246); - var$2[173] = $rt_s(727); - var$2[174] = $rt_s(6247); - var$2[175] = $rt_s(6248); - var$2[176] = $rt_s(3581); - var$2[177] = $rt_s(6249); - var$2[178] = $rt_s(6250); - var$2[179] = $rt_s(6251); - var$2[180] = $rt_s(4523); - var$2[181] = $rt_s(6252); - var$2[182] = $rt_s(4524); - var$2[183] = $rt_s(6253); - var$2[184] = $rt_s(6254); - var$2[185] = $rt_s(6255); - var$2[186] = $rt_s(6256); - var$2[187] = $rt_s(6257); - var$2[188] = $rt_s(6258); - var$2[189] = $rt_s(6259); - var$2[190] = $rt_s(6260); - var$2[191] = $rt_s(6261); - var$2[192] = $rt_s(6751); - var$2[193] = $rt_s(558); - var$2[194] = $rt_s(6262); - var$2[195] = $rt_s(758); - var$2[196] = $rt_s(6263); - var$2[197] = $rt_s(6752); - var$2[198] = $rt_s(6264); - var$2[199] = $rt_s(6265); - var$2[200] = $rt_s(6266); - var$2[201] = $rt_s(734); - var$2[202] = $rt_s(6267); - var$2[203] = $rt_s(6268); - var$2[204] = $rt_s(6269); - var$2[205] = $rt_s(6270); - var$2[206] = $rt_s(6271); - var$2[207] = $rt_s(6272); - var$2[208] = $rt_s(6273); - var$2[209] = $rt_s(6274); - var$2[210] = $rt_s(532); - var$2[211] = $rt_s(6275); - var$2[212] = $rt_s(6276); - var$2[213] = $rt_s(6277); - var$2[214] = $rt_s(6278); - var$2[215] = $rt_s(1067); - var$2[216] = $rt_s(6279); - var$2[217] = $rt_s(6280); - var$2[218] = $rt_s(32); - var$2[219] = $rt_s(6281); - var$2[220] = $rt_s(6282); - var$2[221] = $rt_s(6283); - var$2[222] = $rt_s(6284); - var$2[223] = $rt_s(4396); - var$2[224] = $rt_s(730); - var$2[225] = $rt_s(6285); - var$2[226] = $rt_s(5088); - var$2[227] = $rt_s(6286); - var$2[228] = $rt_s(770); - var$2[229] = $rt_s(771); - var$2[230] = $rt_s(6287); - var$2[231] = $rt_s(6288); - var$2[232] = $rt_s(5297); - var$2[233] = $rt_s(641); - var$2[234] = $rt_s(5322); - var$2[235] = $rt_s(6289); - var$2[236] = $rt_s(6290); - var$2[237] = $rt_s(6291); - var$2[238] = $rt_s(6292); - var$2[239] = $rt_s(6293); - var$2[240] = $rt_s(6294); - var$2[241] = $rt_s(6295); - var$2[242] = $rt_s(6296); - var$2[243] = $rt_s(6297); - var$2[244] = $rt_s(6298); - var$2[245] = $rt_s(6299); - var$2[246] = $rt_s(6300); - var$2[247] = $rt_s(6301); - var$2[248] = $rt_s(6302); - var$2[249] = $rt_s(6303); - var$2[250] = $rt_s(5090); - var$2[251] = $rt_s(6304); - var$2[252] = $rt_s(6305); - var$2[253] = $rt_s(6306); - var$2[254] = $rt_s(6307); - var$2[255] = $rt_s(6308); - var$2[256] = $rt_s(6309); - var$2[257] = $rt_s(6310); - var$2[258] = $rt_s(6311); - var$2[259] = $rt_s(5157); - var$2[260] = $rt_s(6312); - var$2[261] = $rt_s(6313); - var$2[262] = $rt_s(5159); - var$2[263] = $rt_s(714); - var$2[264] = $rt_s(6314); - var$2[265] = $rt_s(514); - var$2[266] = $rt_s(6315); - var$2[267] = $rt_s(6316); - var$2[268] = $rt_s(1066); - var$2[269] = $rt_s(6317); - var$2[270] = $rt_s(6318); - var$2[271] = $rt_s(6319); - var$2[272] = $rt_s(6320); - var$2[273] = $rt_s(6321); - var$2[274] = $rt_s(525); - var$2[275] = $rt_s(3517); - var$2[276] = $rt_s(4635); - var$2[277] = $rt_s(6322); - var$2[278] = $rt_s(6323); - var$2[279] = $rt_s(5288); - var$2[280] = $rt_s(6324); - var$2[281] = $rt_s(6325); - var$2[282] = $rt_s(6326); - var$2[283] = $rt_s(6327); - var$2[284] = $rt_s(6328); - var$2[285] = $rt_s(608); - var$2[286] = $rt_s(4489); - var$2[287] = $rt_s(5563); - var$2[288] = $rt_s(5121); - var$2[289] = $rt_s(6329); - var$2[290] = $rt_s(6330); - var$2[291] = $rt_s(559); - var$2[292] = $rt_s(6331); - var$2[293] = $rt_s(6332); - var$2[294] = $rt_s(6333); - var$2[295] = $rt_s(6334); - var$2[296] = $rt_s(3498); - var$2[297] = $rt_s(6753); - var$2[298] = $rt_s(6335); - var$2[299] = $rt_s(6336); - var$2[300] = $rt_s(6337); - var$2[301] = $rt_s(6338); - var$2[302] = $rt_s(642); - var$2[303] = $rt_s(6339); - var$2[304] = $rt_s(33); - var$2[305] = $rt_s(6340); - var$2[306] = $rt_s(4680); - var$2[307] = $rt_s(6341); - var$2[308] = $rt_s(6342); - var$2[309] = $rt_s(6343); - var$2[310] = $rt_s(6345); - var$2[311] = $rt_s(6346); - var$2[312] = $rt_s(6347); - var$2[313] = $rt_s(6371); - return var$1; +oncia_SetClause_copy = ($this, $items, $position) => { + return oncia_SetClause__init_0($items, $position); }, -oncipv_Cypher5Parser_getVocabulary = $this => { - oncipv_Cypher5Parser_$callClinit(); - return oncipv_Cypher5Parser_VOCABULARY; +oncia_SetClause_productPrefix = $this => { + return $rt_s(5088); }, -oncipv_Cypher5Parser_getRuleNames = $this => { - oncipv_Cypher5Parser_$callClinit(); - return oncipv_Cypher5Parser_ruleNames; +oncia_SetClause_productArity = $this => { + return 1; }, -oncipv_Cypher5Parser_getATN = $this => { - oncipv_Cypher5Parser_$callClinit(); - return oncipv_Cypher5Parser__ATN; +oncia_SetClause_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$items5; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_statement = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StatementContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 2, 1); +oncia_SetClause_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetClause_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetClause_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetClause_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 682); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 293) { - oavr_Recognizer_setState($this, 681); - oncipv_Cypher5Parser_periodicCommitQueryHintFailure($this); - } - e: { - oavr_Recognizer_setState($this, 686); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 3, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 685); - oncipv_Cypher5Parser_regularQuery($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 684); - oncipv_Cypher5Parser_command($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SetClause) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$items5; + $x$1 = $x$1.$items5; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_SetClause)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_periodicCommitQueryHintFailure = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 4, 2); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 688); - oavr_Parser_match($this, 293); - oavr_Recognizer_setState($this, 689); - oavr_Parser_match($this, 197); - oavr_Recognizer_setState($this, 690); - oavr_Parser_match($this, 52); - oavr_Recognizer_setState($this, 692); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - oavr_Recognizer_setState($this, 691); - oavr_Parser_match($this, 5); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +oncia_SetClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SetClause_mapExpressions0 = ($this, $f) => { + return oncia_SetClause_mapExpressions($this, $f); +}, +oncia_SetClause__init_ = ($this, $items, $position) => { + $this.$items5 = $items; + $this.$position36 = $position; + oncia_Clause_$init$($this); +}, +oncia_SetClause__init_0 = (var_0, var_1) => { + let var_2 = new oncia_SetClause(); + oncia_SetClause__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_SingleRelTypeCheck = $rt_classWithoutFields(0), +oncia_SingleRelTypeCheck_checkRelTypes$ = ($$this, $patternPart) => { + if (!($patternPart instanceof oncie_PathPatternPart)) { + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else + $$this = oncia_SingleRelTypeCheck_checkRelTypes($$this, $patternPart.$element4); + return $$this; +}, +oncia_SingleRelTypeCheck_checkRelTypes = ($this, $patternElement) => { + let $element; + if (!($patternElement instanceof oncie_RelationshipChain)) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + $patternElement = $patternElement; + $element = $patternElement.$element3; + return oncias_SemanticCheck_chain$(oncia_SingleRelTypeCheck_checkRelTypes0($this, $patternElement.$relationship1), oncia_SingleRelTypeCheck_checkRelTypes($this, $element)); +}, +oncia_SingleRelTypeCheck_exactlyOneRelErrorMessage = ($this, $relName) => { + let var$2; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5089)), $relName), $rt_s(5090)); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncia_SingleRelTypeCheck_tooManyTypesRelErrorMessage = ($this, $maybePlain, $exampleString, $relName) => { + let var$4; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5091)), $maybePlain), $rt_s(5092)), $exampleString), $rt_s(5093)), $relName); + return jl_AbstractStringBuilder_toString(var$4); +}, +oncia_SingleRelTypeCheck_checkRelTypes0 = ($this, $rel) => { + let var$2, $other, $maybePlain, $types, $expr, $exampleString; + var$2 = 0; + $other = null; + $maybePlain = $rel.$labelExpression6; + if (jl_Object_equals(s_None$_MODULE$, $maybePlain)) { + $other = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef($other, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_SingleRelTypeCheck_exactlyOneRelErrorMessage($this, $this.$name()), $rel.$position8)); + } + if ($maybePlain instanceof s_Some) { + var$2 = 1; + $other = $maybePlain; + $types = $other.$value5; + if ($types instanceof oncil_LabelExpression$Leaf && $types.$name15 instanceof oncie_RelTypeName) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + } + if (var$2) { + $types = $other.$value5; + if ($types instanceof oncil_LabelExpression$DynamicLeaf) { + $types = $types.$expr4; + if ($types instanceof oncie_DynamicRelTypeExpression) { + $expr = $types.$expression25; + var$2 = 0; + $other = null; + if ($expr instanceof oncie_ListLiteral) { + var$2 = 1; + $other = $expr; + if ($other.$expressions0.$isEmpty()) { + $other = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef($other, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_SingleRelTypeCheck_exactlyOneRelErrorMessage($this, $this.$name()), $rel.$position8)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$2 && $other.$expressions0.$length() != 1) { + $types = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef($types, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_SingleRelTypeCheck_tooManyTypesRelErrorMessage($this, $rt_s(4), $rt_s(4), $this.$name()), $rel.$position8)); } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if (!var$2) + $rt_throw(s_MatchError__init_($maybePlain)); + $types = sc_SeqOps_distinct$($other.$value5.$flatten0()); + if ($types.$length() != 1) + $other = s_Tuple2__init_($rt_s(4), $rt_s(4)); + else { + $other = new s_Tuple2; + $types = ($types.$head()).$name(); + $exampleString = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($exampleString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($exampleString, $rt_s(5094)), $types), $rt_s(5095)); + s_Tuple2__init_0($other, $rt_s(5096), jl_AbstractStringBuilder_toString($exampleString)); + } + $maybePlain = $other.$_10; + $exampleString = $other.$_20; + $other = s_Tuple2__init_($maybePlain, $exampleString); + $maybePlain = $other.$_10; + $exampleString = $other.$_20; + $other = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef($other, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_SingleRelTypeCheck_tooManyTypesRelErrorMessage($this, $maybePlain, $exampleString, $this.$name()), $rel.$position8)); +}; +function oncia_Merge() { + let a = this; jl_Object.call(a); + a.$pattern8 = null; + a.$actions = null; + a.$where12 = null; + a.$position152 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier11 = null; + a.$SetExtractor$module21 = null; +} +let oncia_Merge_returnVariables = $this => { + return oncia_UpdateClause_returnVariables$($this); }, -oncipv_Cypher5Parser_regularQuery = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RegularQueryContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 6, 3); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 694); - oncipv_Cypher5Parser_singleQuery($this); - oavr_Recognizer_setState($this, 702); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 285) { - oavr_Recognizer_setState($this, 695); - oavr_Parser_match($this, 285); - oavr_Recognizer_setState($this, 697); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 81)) { - oavr_Recognizer_setState($this, 696); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 81) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 699); - oncipv_Cypher5Parser_singleQuery($this); - oavr_Recognizer_setState($this, 704); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_Merge_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Merge_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Merge_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Merge_foldedOver = $this => { + return $this; +}, +oncia_Merge_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Merge_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier11; +}, +oncia_Merge_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module21 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module21 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$SetExtractor$module21 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module21; }, -oncipv_Cypher5Parser_singleQuery = $this => { - let $_localctx, var$2, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SingleQueryContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 8, 4); +oncia_Merge_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier11 = $x$1; +}, +oncia_Merge_position = $this => { + return $this.$position152; +}, +oncia_Merge_name = $this => { + return $rt_s(4393); +}, +oncia_Merge_shouldRunQPPChecks = $this => { + return 0; +}, +oncia_Merge_clauseSpecificSemanticCheck = $this => { + let $updatePattern, var$2, var$3, var$4; + $updatePattern = oncie_Pattern$ForUpdate__init_0(sci_$colon$colon__init_($this.$pattern8, sci_Nil$_MODULE$), $this.$pattern8.$position()); + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticPatternCheck$_check1(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Merge$_MODULE$, $updatePattern), oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(oncias_SemanticCheckableIterableOnce$_MODULE$, $this.$actions)), oncia_SingleRelTypeCheck_checkRelTypes$($this, $this.$pattern8)); + oncias_SemanticCheckableOption$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, $this.$where12)); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncia_Merge$clauseSpecificSemanticCheck$lambda$_75_0; + var$4.$_0469 = $this; + var$4 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_fromState(var$3, var$4)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$4, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $updatePattern)); +}, +oncia_Merge_copy = ($this, $pattern, $actions, $where, $position) => { + return oncia_Merge__init_0($pattern, $actions, $where, $position); +}, +oncia_Merge_productPrefix = $this => { + return $rt_s(5097); +}, +oncia_Merge_productArity = $this => { + return 3; +}, +oncia_Merge_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$pattern8; + case 1: + return $this.$actions; + case 2: + return $this.$where12; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Merge_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Merge_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Merge_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Merge_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 706); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 705); - oncipv_Cypher5Parser_clause($this); - oavr_Recognizer_setState($this, 708); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$3 = var$2 - 41 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1048577, 33)), Long_ZERO)) - continue; - var$3 = var$2 - 110 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(67108873, 394496)), Long_ZERO)) - continue; - var$3 = var$2 - 174 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(140289, 135266304)), Long_ZERO)) - continue; - var$2 = var$2 - 250 | 0; - if (var$2 & (-64)) - break; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$2), Long_create(257, 1048896)), Long_ZERO)) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Merge) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$pattern8; + var$3 = $x$1.$pattern8; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$3 !== null) + break b; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_clause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 10, 5); - a: { - b: { - c: { d: { - try { - e: { - oavr_Recognizer_setState($this, 727); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 8, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 711); - oncipv_Cypher5Parser_finishClause($this); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 712); - oncipv_Cypher5Parser_returnClause($this); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 713); - oncipv_Cypher5Parser_createClause($this); - break e; - case 5: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 714); - oncipv_Cypher5Parser_insertClause($this); - break e; - case 6: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 715); - oncipv_Cypher5Parser_deleteClause($this); - break e; - case 7: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 716); - oncipv_Cypher5Parser_setClause($this); - break e; - case 8: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 717); - oncipv_Cypher5Parser_removeClause($this); - break e; - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 718); - oncipv_Cypher5Parser_matchClause($this); - break e; - case 10: - oavr_Parser_enterOuterAlt($this, $_localctx, 10); - oavr_Recognizer_setState($this, 719); - oncipv_Cypher5Parser_mergeClause($this); - break e; - case 11: - oavr_Parser_enterOuterAlt($this, $_localctx, 11); - oavr_Recognizer_setState($this, 720); - oncipv_Cypher5Parser_withClause($this); - break e; - case 12: - oavr_Parser_enterOuterAlt($this, $_localctx, 12); - oavr_Recognizer_setState($this, 721); - oncipv_Cypher5Parser_unwindClause($this); - break e; - case 13: - oavr_Parser_enterOuterAlt($this, $_localctx, 13); - oavr_Recognizer_setState($this, 722); - oncipv_Cypher5Parser_callClause($this); - break e; - case 14: - oavr_Parser_enterOuterAlt($this, $_localctx, 14); - oavr_Recognizer_setState($this, 723); - oncipv_Cypher5Parser_subqueryClause($this); - break e; - case 15: - oavr_Parser_enterOuterAlt($this, $_localctx, 15); - oavr_Recognizer_setState($this, 724); - oncipv_Cypher5Parser_loadCSVClause($this); - break e; - case 16: - oavr_Parser_enterOuterAlt($this, $_localctx, 16); - oavr_Recognizer_setState($this, 725); - oncipv_Cypher5Parser_foreachClause($this); - break e; - case 17: - oavr_Parser_enterOuterAlt($this, $_localctx, 17); - oavr_Recognizer_setState($this, 726); - oncipv_Cypher5Parser_orderBySkipLimitClause($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 710); - oncipv_Cypher5Parser_useClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$actions; + var$3 = $x$1.$actions; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$3 = $this.$where12; + $x$1 = $x$1.$where12; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_Merge)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_useClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UseClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 12, 6); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 729); - oavr_Parser_match($this, 290); - oavr_Recognizer_setState($this, 731); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 9, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 730); - oavr_Parser_match($this, 120); - } - oavr_Recognizer_setState($this, 733); - oncipv_Cypher5Parser_graphReference($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_Merge_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Merge_mapExpressions = ($this, $f) => { + let var$2, var$3, var$4, var$5; + var$2 = $this.$pattern8.$mapExpressions($f); + var$3 = $this.$actions; + var$4 = new oncia_Merge$mapExpressions$lambda$_73_0; + var$4.$_0288 = $f; + var$3 = var$3.$map(var$4); + var$5 = $this.$where12; + var$4 = new oncia_Merge$mapExpressions$lambda$_73_1; + var$4.$_0729 = $f; + return oncia_Merge_copy($this, var$2, var$3, s_Option_map(var$5, var$4), $this.$position152); +}, +oncia_Merge__init_ = ($this, $pattern, $actions, $where, $position) => { + $this.$pattern8 = $pattern; + $this.$actions = $actions; + $this.$where12 = $where; + $this.$position152 = $position; + oncia_Clause_$init$($this); +}, +oncia_Merge__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_Merge(); + oncia_Merge__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncia_Foreach() { + let a = this; jl_Object.call(a); + a.$variable16 = null; + a.$expression22 = null; + a.$updates = null; + a.$position155 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier9 = null; + a.$SetExtractor$module8 = null; +} +let oncia_Foreach_returnVariables = $this => { + return oncia_UpdateClause_returnVariables$($this); +}, +oncia_Foreach_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Foreach_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_Foreach_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncia_Foreach_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncia_Foreach_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Foreach_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Foreach_foldedOver = $this => { + return $this; +}, +oncia_Foreach_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Foreach_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier9; +}, +oncia_Foreach_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module8 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module8 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$SetExtractor$module8 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module8; }, -oncipv_Cypher5Parser_graphReference = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GraphReferenceContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 14, 7); +oncia_Foreach_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier9 = $x$1; +}, +oncia_Foreach_position = $this => { + return $this.$position155; +}, +oncia_Foreach_name = $this => { + return $rt_s(4355); +}, +oncia_Foreach_clauseSpecificSemanticCheck = $this => { + let var$1, var$2; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression22), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_0, $this.$expression22)), oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, ($this.$updates.$filter1(new oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_1)).$map(new oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_2))); + var$2 = new oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_3; + var$2.$_0142 = $this; + return oncias_SemanticCheck_ifOkChain$(var$1, var$2); +}, +oncia_Foreach_copy = ($this, $variable, $expression, $updates, $position) => { + return oncia_Foreach__init_0($variable, $expression, $updates, $position); +}, +oncia_Foreach_productPrefix = $this => { + return $rt_s(5098); +}, +oncia_Foreach_productArity = $this => { + return 3; +}, +oncia_Foreach_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable16; + case 1: + return $this.$expression22; + case 2: + return $this.$updates; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Foreach_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Foreach_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Foreach_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Foreach_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Foreach) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable16; + var$3 = $x$1.$variable16; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - oavr_Recognizer_setState($this, 741); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 10, $this.$_ctx)) { - case 1: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 735); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 736); - oncipv_Cypher5Parser_graphReference($this); - oavr_Recognizer_setState($this, 737); - oavr_Parser_match($this, 239); - break e; - case 2: - break; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 740); - oncipv_Cypher5Parser_symbolicAliasName($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 739); - oncipv_Cypher5Parser_functionInvocation($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$expression22; + var$3 = $x$1.$expression22; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$3 = $this.$updates; + $x$1 = $x$1.$updates; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_Foreach)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_finishClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$FinishClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 16, 8); +oncia_Foreach_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Foreach_mapExpressions = ($this, $f) => { + let var$2, var$3; + var$2 = $this.$updates; + var$3 = new oncia_Foreach$mapExpressions$lambda$_69_0; + var$3.$_0406 = $f; + var$3 = var$2.$map(var$3); + return oncia_Foreach_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable16), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression22), var$3, $this.$position155); +}, +oncia_Foreach__init_ = ($this, $variable, $expression, $updates, $position) => { + $this.$variable16 = $variable; + $this.$expression22 = $expression; + $this.$updates = $updates; + $this.$position155 = $position; + oncia_Clause_$init$($this); +}, +oncia_Foreach__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_Foreach(); + oncia_Foreach__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0() { + let a = this; jl_Object.call(a); + a.$_0342 = null; + a.$_1121 = 0; +} +let oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0342; + var$2 = var$0.$_1121; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + return var$1.$apply1(var$2 - 1 | 0); +}; +function oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1() { + let a = this; jl_Object.call(a); + a.$_01185 = null; + a.$_1299 = null; + a.$_297 = null; + a.$_330 = null; + a.$_48 = null; + a.$_54 = null; + a.$_62 = null; +} +let oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $$je; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 743); - oavr_Parser_match($this, 110); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$1 = var$1; + var$2 = var$0.$_1299; + var$3 = var$0.$_297; + var$4 = var$0.$_330; + var$5 = var$0.$_48; + var$6 = var$0.$_54; + var$7 = var$0.$_62; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + var$8 = onciu_Foldable_folder$(var$1); + var$9 = oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_MODULE$; + var$10 = new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1; + var$10.$semanticTable$11 = var$2; + var$10.$x8$1 = var$3; + var$10.$previousClause$1 = var$4; + var$2 = onciu_Foldable$Folder_treeFold(var$8, var$9, var$10); + var$3 = oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break c; + else + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (var$3 === null) break b; + } + break a; + } + var$2 = onciu_AnonymousVariableNameGenerator_nextName(var$5); + var$3 = var$6.$elem; + if (!var$7.$_initialized) { + jl_Object_monitorEnterSync(var$7); + d: { + try { + if (sr_LazyRef_initialized(var$7)) + sr_LazyRef_value(var$7); + else + sr_LazyRef_initialize(var$7, oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$__init_0()); + break d; } catch ($$e) { $$je = $rt_wrapException($$e); - $_localctx = $$je; + var$1 = $$je; } + jl_Object_monitorExitSync(var$7); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync(var$7); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = new oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1; + var$4.$introducedVariable = var$2; + var$4.$replacedExpression = var$1; + var$6.$elem = var$3.$appended(var$4); + var$3 = new oncie_Variable; + var$1 = var$1.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$3, var$2, var$1, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + var$1 = var$3; } - return $_localctx; + return var$1; +}; +function oncia_Unwind() { + let a = this; jl_Object.call(a); + a.$expression17 = null; + a.$variable25 = null; + a.$position288 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier20 = null; + a.$SetExtractor$module12 = null; +} +let oncia_Unwind_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -oncipv_Cypher5Parser_returnClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ReturnClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 18, 9); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 745); - oavr_Parser_match($this, 233); - oavr_Recognizer_setState($this, 746); - oncipv_Cypher5Parser_returnBody($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_Unwind_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Unwind_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_Unwind_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncia_Unwind_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncia_Unwind_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Unwind_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Unwind_foldedOver = $this => { + return $this; +}, +oncia_Unwind_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Unwind_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier20; +}, +oncia_Unwind_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module12 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module12 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$SetExtractor$module12 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module12; }, -oncipv_Cypher5Parser_returnBody = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ReturnBodyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 20, 10); +oncia_Unwind_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier20 = $x$1; +}, +oncia_Unwind_position = $this => { + return $this.$position288; +}, +oncia_Unwind_name = $this => { + return $rt_s(4500); +}, +oncia_Unwind_clauseSpecificSemanticCheck = $this => { + let $possibleInnerTypes, var$2, var$3; + oncias_SemanticExpressionCheck$_$callClinit(); + $possibleInnerTypes = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Results$_MODULE$, $this.$expression17), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_0, $this.$expression17)); + var$2 = new oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_1; + var$2.$_0979 = $this; + var$3 = oncias_SemanticCheck_ifOkChain$($possibleInnerTypes, var$2); + $possibleInnerTypes = new oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_2; + $possibleInnerTypes.$_0399 = $this; + return oncias_SemanticCheck_chain$(var$3, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0($this, $this.$variable25, $possibleInnerTypes, s_None$_MODULE$, 0))); +}, +oncia_Unwind_productPrefix = $this => { + return $rt_s(5099); +}, +oncia_Unwind_productArity = $this => { + return 2; +}, +oncia_Unwind_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression17; + case 1: + return $this.$variable25; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Unwind_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Unwind_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Unwind_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Unwind_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Unwind) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expression17; + var$3 = $x$1.$expression17; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 749); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 11, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 748); - oavr_Parser_match($this, 81); - } - f: { - oavr_Recognizer_setState($this, 751); - oncipv_Cypher5Parser_returnItems($this); - oavr_Recognizer_setState($this, 753); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 12, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 752); - oncipv_Cypher5Parser_orderBy($this); - } - g: { - oavr_Recognizer_setState($this, 756); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 13, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 755); - oncipv_Cypher5Parser_skip($this); - } - h: { - oavr_Recognizer_setState($this, 759); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 14, $this.$_ctx)) { - case 1: - break; - default: - break h; - } - oavr_Recognizer_setState($this, 758); - oncipv_Cypher5Parser_limit($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$variable25; + $x$1 = $x$1.$variable25; + if (var$3 !== null) { + if (!oncie_Variable_equals(var$3, $x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_Unwind)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_returnItem = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ReturnItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 22, 11); +oncia_Unwind_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Unwind__init_ = ($this, $expression, $variable, $position) => { + $this.$expression17 = $expression; + $this.$variable25 = $variable; + $this.$position288 = $position; + oncia_Clause_$init$($this); +}, +oncia_Unwind__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_Unwind(); + oncia_Unwind__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2 = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$introducedVariable; + var$3 = var$1.$replacedExpression; + var$4 = new oncia_AliasedReturnItem; + var$1 = new oncie_Variable; + var$5 = var$3.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$1, var$2, var$5, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + oncia_AliasedReturnItem__init_0(var$4, var$3, var$1, var$3.$position()); + return var$4; +}, +oncia_ReadAdministrationCommand$yields$lambda$_11_0 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$yields$lambda$_11_0_apply = (var$0, var$1) => { + return s_Option_map(su_Either$LeftProjection_toOption(su_Either_left(var$1)), new oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0); +}, +oncia_ReadAdministrationCommand$returns$lambda$_13_0 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$returns$lambda$_13_0_apply = (var$0, var$1) => { + return s_Option_flatMap(su_Either$LeftProjection_toOption(su_Either_left(var$1)), new oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0); +}, +oncias_SemanticCheckInterpreter$ = $rt_classWithoutFields(), +oncias_SemanticCheckInterpreter$_MODULE$ = null, +oncias_SemanticCheckInterpreter$__clinit_ = () => { + oncias_SemanticCheckInterpreter$_MODULE$ = new oncias_SemanticCheckInterpreter$; +}, +oncias_SemanticCheckInterpreter$_run = ($this, $result, $checkStack, $context, $debugAnnotations) => { + let var$5, $check, $f, $checkStack_0, $func, $annotation, $checkStackTail; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 761); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 764); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 762); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 763); - oncipv_Cypher5Parser_variable($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + while (true) { + var$5 = 0; + $check = null; + if (sci_List_equals(sci_Nil$_MODULE$, $checkStack)) + break; + if ($checkStack instanceof sci_$colon$colon) { + var$5 = 1; + $check = $checkStack; + $f = $check.$head1; + $checkStack_0 = $check.$next5; + if ($f instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper) { + $check = $f.$check9; + if ($check instanceof oncias_SemanticCheck$Leaf) { + $result = $check.$f2.$apply2($result.$state); + $checkStack = $checkStack_0; + continue; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($check instanceof oncias_SemanticCheck$Map) { + $checkStack = $check; + $check = $checkStack.$check10; + $func = $checkStack.$f3; + $checkStack = oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $check); + $f = new oncias_SemanticCheckInterpreter$ExecutableCheck$Map; + $f.$f1 = $func; + $checkStack = sci_List_$colon$colon(sci_List_$colon$colon($checkStack_0, $f), $checkStack); + continue; + } + if ($check instanceof oncias_SemanticCheck$FlatMap) { + $checkStack = $check; + $check = $checkStack.$check8; + $func = $checkStack.$f6; + $checkStack = oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $check); + $f = new oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap; + $f.$f5 = $func; + $checkStack = sci_List_$colon$colon(sci_List_$colon$colon($checkStack_0, $f), $checkStack); + continue; + } + if ($check instanceof oncias_SemanticCheck$CheckFromContext) { + $f = $check.$f4; + $checkStack = sci_List_$colon$colon($checkStack_0, oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0_apply($f, $context))); + continue; + } + if (!($check instanceof oncias_SemanticCheck$Annotated)) + $rt_throw(s_MatchError__init_($check)); + $checkStack = $check; + $check = $checkStack.$check11; + $annotation = $checkStack.$annotation; + $checkStack = oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$; + $f = oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $check); + $check = oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_MODULE$; + $checkStack = sci_List_$colon$colon(sci_List_$colon$colon(sci_List_$colon$colon(sci_List_$colon$colon($checkStack_0, oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$), $check), $f), $checkStack); + $debugAnnotations = $debugAnnotations.$appended($annotation); + continue; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + if (var$5) { + $f = $check.$head1; + $checkStack_0 = $check.$next5; + if ($f instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$Map) { + $result = $f.$f1.$apply2($result); + $checkStack = $checkStack_0; + continue; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (var$5) { + $f = $check.$head1; + $checkStackTail = $check.$next5; + if ($f instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap) { + $func = $f.$f5; + $checkStack = sci_List_$colon$colon($checkStackTail, oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $func.$apply2($result))); + continue; + } + } + if (var$5) { + $f = $check.$head1; + $checkStack_0 = $check.$next5; + if (jl_Object_equals(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_MODULE$, $f)) { + $debugAnnotations = $debugAnnotations.$init1(); + $checkStack = $checkStack_0; + continue; + } + } + if (!var$5) + break a; + $f = $check.$head1; + $checkStack_0 = $check.$next5; + if (!jl_Object_equals(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$, $f)) + break a; + s_Predef$_$callClinit(); + s_Predef$_println(s_Predef$_MODULE$, $rt_s(5100)); + sc_IterableOnceOps_foreach$((sc_StrictOptimizedIterableOps_zipWithIndex$($debugAnnotations)).$reverseIterator(), new oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0); + s_Console$_$callClinit(); + otcic_JsConsolePrintStream_println1(s_Console$_out(s_Console$_MODULE$)); + $checkStack = $checkStack_0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + return $result; } - return $_localctx; + $rt_throw(s_MatchError__init_($checkStack)); +}; +function oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0() { + jl_Object.call(this); + this.$_054 = null; +} +let oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_054; + oncia_SingleQuery$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$4 = var$1.$_2(); + return oncia_SingleQuery$PartitionedClauses__init_(s_None$_MODULE$, s_Some__init_(var$2), s_Some__init_(var$3), var$4); +}; +function oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1() { + let a = this; jl_Object.call(a); + a.$_0812 = null; + a.$_1272 = null; +} +let oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0812; + var$2 = var$0.$_1272; + oncia_SingleQuery$_$callClinit(); + return oncia_SingleQuery$PartitionedClauses__init_(s_None$_MODULE$, s_Some__init_(var$1), s_None$_MODULE$, var$2); }, -oncipv_Cypher5Parser_returnItems = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ReturnItemsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 24, 12); +oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0 = $rt_classWithoutFields(), +oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + return s_Predef$ArrowAssoc$_$minus$greater$extension(var$2, var$1.$name9, var$1.$typ); +}; +function oncias_Scope$dumpTree$lambda$_24_0() { + let a = this; jl_Object.call(a); + a.$_0115 = null; + a.$_139 = null; + a.$_220 = null; +} +let oncias_Scope$dumpTree$lambda$_24_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_0115; + var$3 = var$0.$_139; + var$4 = var$0.$_220; + var$5 = sc_IterableOnceOps_toSeq$((oncias_Symbol_references(var$2.$symbolTable.$apply2(var$1))).$map(new oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0)); + var$6 = sm_Ordering$_MODULE$; + sm_Ordering$Int$_$callClinit(); + var$2 = sm_Ordering$Int$_MODULE$; + sm_Ordering$String$_$callClinit(); + var$2 = sc_AbstractIterable_mkString((var$5.$sorted(sm_Ordering$_Tuple2(var$6, var$2, sm_Ordering$String$_MODULE$))).$map(new oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0), $rt_s(370)); + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, var$4), var$1), $rt_s(9)), var$2), $rt_s(94)); + return scm_StringBuilder_append(var$3, jl_AbstractStringBuilder_toString(var$7)); +}; +function oncias_Scope$dumpTree$lambda$_24_1() { + let a = this; jl_Object.call(a); + a.$_0641 = null; + a.$_1216 = null; +} +let oncias_Scope$dumpTree$lambda$_24_1_apply = (var$0, var$1) => { + oncias_Scope_dumpSingle(var$1, var$0.$_0641, var$0.$_1216); + return sr_BoxedUnit_UNIT; +}, +oncia_ReturnItems$ReturnVariables$ = $rt_classWithoutFields(), +oncia_ReturnItems$ReturnVariables$_MODULE$ = null, +oncia_ReturnItems$ReturnVariables$__clinit_ = () => { + oncia_ReturnItems$ReturnVariables$_MODULE$ = new oncia_ReturnItems$ReturnVariables$; +}, +oncia_ReturnItems$ReturnVariables$_empty = $this => { + let var$1; + var$1 = new oncia_ReturnItems$ReturnVariables; + s_package$_$callClinit(); + oncia_ReturnItems$ReturnVariables__init_0(var$1, 0, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + return var$1; +}; +function sc_IterableOps$sliding$lambda$_64_0() { + jl_Object.call(this); + this.$_0688 = null; +} +let sc_IterableOps$sliding$lambda$_64_0_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_0688.$fromSpecific(var$1); +}, +onih_Exceptions = $rt_classWithoutFields(), +onih_Exceptions_SILENT_UNCAUGHT_EXCEPTION_HANDLER = null, +onih_Exceptions_chain = ($initial, $current) => { + if ($initial === null) + return $current; + if ($current !== null && $initial !== $current) + jl_Throwable_addSuppressed($initial, $current); + return $initial; +}, +onih_Exceptions__clinit_ = () => { + onih_Exceptions_SILENT_UNCAUGHT_EXCEPTION_HANDLER = new onih_Exceptions$_clinit_$lambda$_17_0; +}, +scm_Iterable$ = $rt_classWithoutFields(sc_IterableFactory$Delegate), +scm_Iterable$_MODULE$ = null, +scm_Iterable$_$callClinit = () => { + scm_Iterable$_$callClinit = $rt_eraseClinit(scm_Iterable$); + scm_Iterable$__clinit_(); +}, +scm_Iterable$__clinit_ = () => { + let var$1; + var$1 = new scm_Iterable$; + scm_Iterable$_$callClinit(); + sc_IterableFactory$Delegate__init_(var$1, scm_ArrayBuffer$_MODULE$); + scm_Iterable$_MODULE$ = var$1; +}, +onciu_StepSequencer$$anonfun$orderSteps$16$lambda$_34_0 = $rt_classWithoutFields(), +onciu_StepSequencer$$anonfun$orderSteps$16$lambda$_34_0_apply = (var$0, var$1) => { + return var$1.$_2(); +}, +onciu_StepSequencer$$anonfun$orderSteps$8$lambda$_26_0 = $rt_classWithoutFields(), +onciu_StepSequencer$$anonfun$orderSteps$8$lambda$_26_0_apply = (var$0, var$1) => { + return (su_Either_toOption(var$1.$_2())).$get1(); +}; +function sc_MapOps$concat$lambda$_45_0() { + jl_Object.call(this); + this.$_0524 = null; +} +let sc_MapOps$concat$lambda$_45_0_apply = var$0 => { + return var$0.$_0524.$iterator0(); +}, +sci_MapOps$removedAll$lambda$_7_0 = $rt_classWithoutFields(), +sci_MapOps$removedAll$lambda$_7_0_apply = (var$0, var$1, var$2) => { + return var$1.$removed(var$2); +}; +function sm_Ordering$$anon$1() { + let a = this; jl_Object.call(a); + a.$$outer28 = null; + a.$f$10 = null; +} +let sm_Ordering$$anon$1_compare = ($this, $x, $y) => { + return $this.$$outer28.$compare2($this.$f$10.$apply2($x), $this.$f$10.$apply2($y)); +}; +function sc_View$ZipAll() { + let a = this; sc_AbstractView.call(a); + a.$underlying26 = null; + a.$other = null; + a.$thisElem = null; + a.$thatElem = null; +} +let sc_View$ZipAll_iterator = $this => { + return ($this.$underlying26.$iterator0()).$zipAll0($this.$other, $this.$thisElem, $this.$thatElem); +}, +sc_View$ZipAll_knownSize = $this => { + let $s1, var$2; + $s1 = $this.$underlying26.$knownSize(); + if ($s1 == (-1)) + return (-1); + var$2 = $this.$other.$length(); + if (var$2 != (-1)) + return jl_Math_max($s1, var$2); + return (-1); +}, +oncia_CommandClauseWithNames = $rt_classWithoutFields(0), +oncia_CommandClauseWithNames_clauseSpecificSemanticCheck$ = $$this => { + let var$2; + var$2 = $$this.$names(); + if (!(var$2 instanceof su_Right)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$2 = var$2.$value7; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, var$2); + } + return var$2.$chain($$this.$org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck()); +}, +oncia_CommandClauseAllowedOnSystem = $rt_classWithoutFields(0), +oncia_TransactionsCommandClause = $rt_classWithoutFields(0), +oncias_SemanticCheckResult$ = $rt_classWithoutFields(), +oncias_SemanticCheckResult$_MODULE$ = null, +oncias_SemanticCheckResult$__clinit_ = () => { + oncias_SemanticCheckResult$_MODULE$ = new oncias_SemanticCheckResult$; +}, +oncias_SemanticCheckResult$_success = ($this, $s) => { + let var$2; + var$2 = new oncias_SemanticCheckResult; + s_package$_$callClinit(); + oncias_SemanticCheckResult__init_0(var$2, $s, sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$))); + return var$2; +}, +oncias_SemanticCheckResult$_error = ($this, $state, $error) => { + let var$3, var$4, var$5, var$6; + var$3 = new oncias_SemanticCheckResult; + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$6.data[0] = $error; + oncias_SemanticCheckResult__init_0(var$3, $state, var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6))); + return var$3; +}, +oncias_SemanticCheckResult$_error0 = ($this, $state, $msg, $position) => { + oncias_SemanticError$_$callClinit(); + return oncias_SemanticCheckResult$_error($this, $state, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $msg, $position)); +}, +oncias_SemanticCheckResult$_error1 = ($this, $state, $error) => { + return oncias_SemanticCheckResult__init_($state, ($error.$iterator0()).$toSeq()); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$ = $rt_classWithoutFields(), +oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$ = null, +oncias_SemanticCheckInterpreter$ExecutableCheck$__clinit_ = () => { + oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$ = new oncias_SemanticCheckInterpreter$ExecutableCheck$; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$_apply = ($this, $check) => { + let var$2; + var$2 = new oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper; + var$2.$check9 = $check; + return var$2; +}; +function oncia_SingleQuery$$anonfun$extractGraphSelection$1() { + sr_AbstractPartialFunction.call(this); + this.$clauses$6 = null; +} +let oncia_SingleQuery$$anonfun$extractGraphSelection$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !($x instanceof oncia_UseGraph) ? s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x) : s_Tuple2__init_($x, $this.$clauses$6.$tail()); +}; +function oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0() { + jl_Object.call(this); + this.$_03 = null; +} +let oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_03; + oncifp_ResolvedCall$_$callClinit(); + var$3 = var$1.$default2; + var$4 = new oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0; + var$4.$_0880 = var$1; + var$4 = s_Option_map(var$3, var$4); + var$3 = new oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1; + var$3.$_0375 = var$1; + var$3.$_1133 = var$2; + return s_Option_getOrElse(var$4, var$3); +}, +oavra_Transition$1 = $rt_classWithoutFields(ju_HashMap), +oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + oncia_SingleQuery$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = oncia_SingleQuery$_extractImportingWith(oncia_SingleQuery$_MODULE$, var$1); + var$4 = new oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0; + var$4.$_0384 = var$2; + var$3 = s_Option_map(var$3, var$4); + var$4 = new oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1; + var$4.$_01035 = var$2; + var$4.$_1353 = var$1; + return s_Option_getOrElse(var$3, var$4); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck = $rt_classWithoutFields(0); +function oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper() { + jl_Object.call(this); + this.$check9 = null; +} +let oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productPrefix = $this => { + return $rt_s(5101); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productArity = $this => { + return 1; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$check9; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 768); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 146: - case 147: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 155: - case 157: - case 158: - case 159: - case 160: - case 161: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 199: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 767); - oncipv_Cypher5Parser_returnItem($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 148: - case 156: - case 162: - case 163: - case 164: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Recognizer_setState($this, 766); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 774); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 770); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 771); - oncipv_Cypher5Parser_returnItem($this); - oavr_Recognizer_setState($this, 776); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$check9; + $x$1 = $x$1.$check9; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}; +function oncias_SemanticCheck$Map() { + let a = this; jl_Object.call(a); + a.$check10 = null; + a.$f3 = null; +} +let oncias_SemanticCheck$Map_chain = ($this, $next) => { + return oncias_SemanticCheck_chain$($this, $next); }, -oncipv_Cypher5Parser_orderItem = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$OrderItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 26, 13); +oncias_SemanticCheck$Map_ifOkChain = ($this, $next) => { + return oncias_SemanticCheck_ifOkChain$($this, $next); +}, +oncias_SemanticCheck$Map_map = ($this, $f) => { + return oncias_SemanticCheck_map$($this, $f); +}, +oncias_SemanticCheck$Map_flatMap = ($this, $f) => { + return oncias_SemanticCheck_flatMap$($this, $f); +}, +oncias_SemanticCheck$Map_productPrefix = $this => { + return $rt_s(683); +}, +oncias_SemanticCheck$Map_productArity = $this => { + return 2; +}, +oncias_SemanticCheck$Map_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$check10; + case 1: + return $this.$f3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheck$Map_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$Map_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$Map_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$Map_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 777); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 780); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case -1: - case 41: - case 49: - case 61: - case 73: - case 78: - case 110: - case 113: - case 136: - case 150: - case 152: - case 159: - case 160: - case 174: - case 184: - case 187: - case 191: - case 217: - case 226: - case 233: - case 239: - case 247: - case 250: - case 255: - case 258: - case 267: - case 285: - case 288: - case 290: - case 301: - case 302: - break; - case 24: - case 25: - oavr_Recognizer_setState($this, 778); - oncipv_Cypher5Parser_ascToken($this); - break e; - case 75: - case 76: - oavr_Recognizer_setState($this, 779); - oncipv_Cypher5Parser_descToken($this); - break e; - default: - break e; - } + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticCheck$Map) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$check10; + var$3 = $x$1.$check10; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$f3; + $x$1 = $x$1.$f3; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; +}; +function oncias_SemanticCheckInterpreter$ExecutableCheck$Map() { + jl_Object.call(this); + this.$f1 = null; +} +let oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productPrefix = $this => { + return $rt_s(683); }, -oncipv_Cypher5Parser_ascToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AscTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 28, 14); +oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productArity = $this => { + return 1; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$f1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Map_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Map_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$Map_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 782); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 24 && $_la != 25) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$Map) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$f1; + $x$1 = $x$1.$f1; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}; +function oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap() { + jl_Object.call(this); + this.$f5 = null; +} +let oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productPrefix = $this => { + return $rt_s(5059); }, -oncipv_Cypher5Parser_descToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DescTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 30, 15); +oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productArity = $this => { + return 1; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$f5; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 784); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 75 && $_la != 76) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$f5; + $x$1 = $x$1.$f5; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}; +function oncias_SemanticCheck$CheckFromContext() { + jl_Object.call(this); + this.$f4 = null; +} +let oncias_SemanticCheck$CheckFromContext_chain = ($this, $next) => { + return oncias_SemanticCheck_chain$($this, $next); }, -oncipv_Cypher5Parser_orderBy = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$OrderByContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 32, 16); +oncias_SemanticCheck$CheckFromContext_ifOkChain = ($this, $next) => { + return oncias_SemanticCheck_ifOkChain$($this, $next); +}, +oncias_SemanticCheck$CheckFromContext_map = ($this, $f) => { + return oncias_SemanticCheck_map$($this, $f); +}, +oncias_SemanticCheck$CheckFromContext_flatMap = ($this, $f) => { + return oncias_SemanticCheck_flatMap$($this, $f); +}, +oncias_SemanticCheck$CheckFromContext_productPrefix = $this => { + return $rt_s(5102); +}, +oncias_SemanticCheck$CheckFromContext_productArity = $this => { + return 1; +}, +oncias_SemanticCheck$CheckFromContext_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$f4; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheck$CheckFromContext_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$CheckFromContext_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$CheckFromContext_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheck$CheckFromContext_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 786); - oavr_Parser_match($this, 191); - oavr_Recognizer_setState($this, 787); - oavr_Parser_match($this, 40); - oavr_Recognizer_setState($this, 788); - oncipv_Cypher5Parser_orderItem($this); - oavr_Recognizer_setState($this, 793); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 789); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 790); - oncipv_Cypher5Parser_orderItem($this); - oavr_Recognizer_setState($this, 795); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticCheck$CheckFromContext) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$f4; + $x$1 = $x$1.$f4; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}; +function oncias_SemanticCheck$Annotated() { + let a = this; jl_Object.call(a); + a.$check11 = null; + a.$annotation = null; +} +let oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$ = $rt_classWithoutFields(), +oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_MODULE$ = null, +oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$__clinit_ = () => { + oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_MODULE$ = new oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productArity = $this => { + return 0; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_hashCode = $this => { + return 489207872; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_toString = $this => { + return $rt_s(5103); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$ = $rt_classWithoutFields(), +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$ = null, +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$__clinit_ = () => { + oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$ = new oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productArity = $this => { + return 0; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_hashCode = $this => { + return 1210398295; +}, +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_toString = $this => { + return $rt_s(5104); +}, +oncifp_ResolvedCall$$signatureResults$lambda$_10_0 = $rt_classWithoutFields(), +oncifp_ResolvedCall$$signatureResults$lambda$_10_0_apply = var$0 => { + oncifp_ResolvedCall$_$callClinit(); + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +}; +function oncifp_ResolvedCall$$signatureResults$lambda$_10_1() { + jl_Object.call(this); + this.$_034 = null; +} +let oncifp_ResolvedCall$$signatureResults$lambda$_10_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_034; + oncifp_ResolvedCall$_$callClinit(); + var$3 = oncia_ProcedureResultItem$_MODULE$; + var$4 = new oncie_Variable; + var$5 = var$1.$name9; + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$4, var$5, var$2, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + return oncia_ProcedureResultItem$_apply(var$3, var$4, var$2); +}; +function oavra_RangeTransition() { + let a = this; oavra_Transition.call(a); + a.$from19 = 0; + a.$to2 = 0; +} +let oavra_RangeTransition__init_0 = ($this, $target, $from, $to) => { + oavra_Transition__init_($this, $target); + $this.$from19 = $from; + $this.$to2 = $to; +}, +oavra_RangeTransition__init_ = (var_0, var_1, var_2) => { + let var_3 = new oavra_RangeTransition(); + oavra_RangeTransition__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oavra_RangeTransition_getSerializationType = $this => { + return 2; +}, +oavra_RangeTransition_label = $this => { + return oavrm_IntervalSet_of($this.$from19, $this.$to2); +}, +oavra_RangeTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return $symbol >= $this.$from19 && $symbol <= $this.$to2 ? 1 : 0; +}, +oavra_RangeTransition_toString = $this => { + let var$1; + var$1 = jl_StringBuilder_appendCodePoint(jl_StringBuilder__init_0($rt_s(4251)), $this.$from19); + jl_AbstractStringBuilder_append(var$1, $rt_s(4551)); + var$1 = jl_StringBuilder_appendCodePoint(var$1, $this.$to2); + jl_AbstractStringBuilder_append(var$1, $rt_s(4251)); + return jl_AbstractStringBuilder_toString(var$1); +}, +oavra_AbstractPredicateTransition = $rt_classWithoutFields(oavra_Transition); +function oavra_PredicateTransition() { + let a = this; oavra_AbstractPredicateTransition.call(a); + a.$ruleIndex1 = 0; + a.$predIndex = 0; + a.$isCtxDependent = 0; +} +let oavra_PredicateTransition_getSerializationType = $this => { + return 4; +}, +oavra_PredicateTransition_isEpsilon = $this => { + return 1; +}, +oavra_PredicateTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return 0; +}, +oavra_PredicateTransition_getPredicate = $this => { + let var$1, var$2, var$3, var$4; + var$1 = new oavra_SemanticContext$Predicate; + var$2 = $this.$ruleIndex1; + var$3 = $this.$predIndex; + var$4 = $this.$isCtxDependent; + var$1.$ruleIndex2 = var$2; + var$1.$predIndex0 = var$3; + var$1.$isCtxDependent0 = var$4; + return var$1; +}, +oavra_PredicateTransition_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append(var$1, $rt_s(5105)); + var$1 = jl_StringBuilder_append0(var$1, $this.$ruleIndex1); + jl_AbstractStringBuilder_append(var$1, $rt_s(92)); + return jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$1, $this.$predIndex)); +}; +function oavra_ActionTransition() { + let a = this; oavra_Transition.call(a); + a.$ruleIndex4 = 0; + a.$actionIndex0 = 0; + a.$isCtxDependent1 = 0; +} +let oavra_ActionTransition_getSerializationType = $this => { + return 6; +}, +oavra_ActionTransition_isEpsilon = $this => { + return 1; +}, +oavra_ActionTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return 0; +}, +oavra_ActionTransition_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append(var$1, $rt_s(5106)); + var$1 = jl_StringBuilder_append0(var$1, $this.$ruleIndex4); + jl_AbstractStringBuilder_append(var$1, $rt_s(92)); + return jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$1, $this.$actionIndex0)); +}; +function oavra_SetTransition() { + oavra_Transition.call(this); + this.$set3 = null; +} +let oavra_SetTransition__init_ = ($this, $target, $set) => { + oavra_Transition__init_($this, $target); + if ($set === null) + $set = oavrm_IntervalSet_of0(0); + $this.$set3 = $set; +}, +oavra_SetTransition__init_0 = (var_0, var_1) => { + let var_2 = new oavra_SetTransition(); + oavra_SetTransition__init_(var_2, var_0, var_1); + return var_2; +}, +oavra_SetTransition_getSerializationType = $this => { + return 7; +}, +oavra_SetTransition_label = $this => { + return $this.$set3; +}, +oavra_SetTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return oavrm_IntervalSet_contains($this.$set3, $symbol); +}, +oavra_SetTransition_toString = $this => { + return oavrm_IntervalSet_toString0($this.$set3); +}, +oavra_NotSetTransition = $rt_classWithoutFields(oavra_SetTransition), +oavra_NotSetTransition_getSerializationType = $this => { + return 8; +}, +oavra_NotSetTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return $symbol >= $minVocabSymbol && $symbol <= $maxVocabSymbol && !oavra_SetTransition_matches($this, $symbol, $minVocabSymbol, $maxVocabSymbol) ? 1 : 0; +}, +oavra_NotSetTransition_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append0(var$1, 126); + jl_AbstractStringBuilder_append(var$1, oavra_SetTransition_toString($this)); + return jl_AbstractStringBuilder_toString(var$1); +}, +oavra_WildcardTransition = $rt_classWithoutFields(oavra_Transition), +oavra_WildcardTransition_getSerializationType = $this => { + return 9; +}, +oavra_WildcardTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return $symbol >= $minVocabSymbol && $symbol <= $maxVocabSymbol ? 1 : 0; +}, +oavra_WildcardTransition_toString = $this => { + return $rt_s(389); +}; +function oavra_PrecedencePredicateTransition() { + oavra_AbstractPredicateTransition.call(this); + this.$precedence0 = 0; +} +let oavra_PrecedencePredicateTransition_getSerializationType = $this => { + return 10; +}, +oavra_PrecedencePredicateTransition_isEpsilon = $this => { + return 1; +}, +oavra_PrecedencePredicateTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { + return 0; +}, +oavra_PrecedencePredicateTransition_getPredicate = $this => { + let var$1; + var$1 = new oavra_SemanticContext$PrecedencePredicate; + var$1.$precedence = $this.$precedence0; + return var$1; +}, +oavra_PrecedencePredicateTransition_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + var$1 = jl_StringBuilder_append0(var$1, $this.$precedence0); + jl_AbstractStringBuilder_append(var$1, $rt_s(5107)); + return jl_AbstractStringBuilder_toString(var$1); +}, +onih_Exceptions$_clinit_$lambda$_17_0 = $rt_classWithoutFields(), +oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0 = $rt_classWithoutFields(), +oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$3 = s_Tuple2__2$mcI$sp(var$1); + s_Predef$_$callClinit(); + var$1 = s_Predef$_MODULE$; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(var$4, 91); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(var$4, var$3), $rt_s(5108)), var$2); + s_Predef$_println(var$1, jl_AbstractStringBuilder_toString(var$4)); + return sr_BoxedUnit_UNIT; +}, +onciu_RewritableJavascript$PROXY$9_50 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_50_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_50 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_50_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$7_135 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_135_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Unwind__init_0(var$3[0], var$3[1], var$3[2]); +}, +scm_ArrayBuffer$$anon$1 = $rt_classWithoutFields(scm_GrowableBuilder), +scm_ArrayBuffer$$anon$1_sizeHint = ($this, $size) => { + let var$2; + var$2 = $this.$elems2; + var$2.$array2 = scm_ArrayBuffer$_scala$collection$mutable$ArrayBuffer$$ensureSize(scm_ArrayBuffer$_MODULE$, var$2.$array2, var$2.$size00, Long_fromInt($size)); +}, +scm_ArrayBuffer$$anon$1__init_0 = $this => { + scm_GrowableBuilder__init_($this, scm_ArrayBuffer__init_()); +}, +scm_ArrayBuffer$$anon$1__init_ = () => { + let var_0 = new scm_ArrayBuffer$$anon$1(); + scm_ArrayBuffer$$anon$1__init_0(var_0); + return var_0; +}, +oncipv_Cypher5ParserListener = $rt_classWithoutFields(0), +oncipv_AbstractCypher5AstBuilder = $rt_classWithoutFields(), +oncipv_AbstractCypher5AstBuilder_exitEveryRule = ($this, $ctx) => { + let var$2, var$3; + a: { + switch ($ctx.$getRuleIndex()) { + case 0: + break; + case 1: + oncipvaf_Cypher5AstBuilder_exitStatement($this, $ctx); + break a; + case 2: + oncipvaf_Cypher5AstBuilder_exitPeriodicCommitQueryHintFailure($this, $ctx); + break a; + case 3: + oncipvaf_Cypher5AstBuilder_exitRegularQuery($this, $ctx); + break a; + case 4: + oncipvaf_Cypher5AstBuilder_exitSingleQuery($this, $ctx); + break a; + case 5: + oncipvaf_Cypher5AstBuilder_exitClause($this, $ctx); + break a; + case 6: + oncipvaf_Cypher5AstBuilder_exitUseClause($this, $ctx); + break a; + case 7: + oncipvaf_Cypher5AstBuilder_exitGraphReference($this, $ctx); + break a; + case 8: + oncipvaf_Cypher5AstBuilder_exitFinishClause($this, $ctx); + break a; + case 9: + oncipvaf_Cypher5AstBuilder_exitReturnClause($this, $ctx); + break a; + case 10: + oncipvaf_Cypher5AstBuilder_exitReturnBody($this, $ctx); + break a; + case 11: + oncipvaf_Cypher5AstBuilder_exitReturnItem($this, $ctx); + break a; + case 12: + oncipvaf_Cypher5AstBuilder_exitReturnItems($this, $ctx); + break a; + case 13: + oncipvaf_Cypher5AstBuilder_exitOrderItem($this, $ctx); + break a; + case 14: + oncipvaf_Cypher5AstBuilder_exitAscToken($this, $ctx); + break a; + case 15: + oncipvaf_Cypher5AstBuilder_exitDescToken($this, $ctx); + break a; + case 16: + oncipvaf_Cypher5AstBuilder_exitOrderBy($this, $ctx); + break a; + case 17: + oncipvaf_Cypher5AstBuilder_exitSkip($this, $ctx); + break a; + case 18: + oncipvaf_Cypher5AstBuilder_exitLimit($this, $ctx); + break a; + case 19: + oncipvaf_Cypher5AstBuilder_exitWhereClause($this, $ctx); + break a; + case 20: + oncipvaf_Cypher5AstBuilder_exitWithClause($this, $ctx); + break a; + case 21: + oncipvaf_Cypher5AstBuilder_exitCreateClause($this, $ctx); + break a; + case 22: + oncipvaf_Cypher5AstBuilder_exitInsertClause($this, $ctx); + break a; + case 23: + oncipvaf_Cypher5AstBuilder_exitSetClause($this, $ctx); + break a; + case 24: + oncipvaf_Cypher5AstBuilder_exitSetItem($this, $ctx); + break a; + case 25: + oncipvaf_Cypher5AstBuilder_exitRemoveClause($this, $ctx); + break a; + case 26: + oncipvaf_Cypher5AstBuilder_exitRemoveItem($this, $ctx); + break a; + case 27: + oncipvaf_Cypher5AstBuilder_exitDeleteClause($this, $ctx); + break a; + case 28: + oncipvaf_Cypher5AstBuilder_exitMatchClause($this, $ctx); + break a; + case 29: + oncipvaf_Cypher5AstBuilder_exitMatchMode($this, $ctx); + break a; + case 30: + oncipvaf_Cypher5AstBuilder_exitHint($this, $ctx); + break a; + case 31: + oncipvaf_Cypher5AstBuilder_exitMergeClause($this, $ctx); + break a; + case 32: + oncipvaf_Cypher5AstBuilder_exitMergeAction($this, $ctx); + break a; + case 33: + oncipvaf_Cypher5AstBuilder_exitUnwindClause($this, $ctx); + break a; + case 34: + oncipvaf_Cypher5AstBuilder_exitCallClause($this, $ctx); + break a; + case 35: + oncipvaf_Cypher5AstBuilder_exitProcedureName($this, $ctx); + break a; + case 36: + oncipvaf_Cypher5AstBuilder_exitProcedureArgument($this, $ctx); + break a; + case 37: + oncipvaf_Cypher5AstBuilder_exitProcedureResultItem($this, $ctx); + break a; + case 38: + oncipvaf_Cypher5AstBuilder_exitLoadCSVClause($this, $ctx); + break a; + case 39: + oncipvaf_Cypher5AstBuilder_exitForeachClause($this, $ctx); + break a; + case 40: + oncipvaf_Cypher5AstBuilder_exitSubqueryClause($this, $ctx); + break a; + case 41: + oncipvaf_Cypher5AstBuilder_exitSubqueryScope($this, $ctx); + break a; + case 42: + oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsParameters($this, $ctx); + break a; + case 43: + oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsBatchParameters($this, $ctx); + break a; + case 44: + oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsErrorParameters($this, $ctx); + break a; + case 45: + oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsReportParameters($this, $ctx); + break a; + case 46: + oncipvaf_Cypher5AstBuilder_exitOrderBySkipLimitClause($this, $ctx); + break a; + case 47: + oncipvaf_Cypher5AstBuilder_exitPatternList($this, $ctx); + break a; + case 48: + oncipvaf_Cypher5AstBuilder_exitInsertPatternList($this, $ctx); + break a; + case 49: + oncipvaf_Cypher5AstBuilder_exitPattern($this, $ctx); + break a; + case 50: + oncipvaf_Cypher5AstBuilder_exitInsertPattern($this, $ctx); + break a; + case 51: + oncipvaf_Cypher5AstBuilder_exitQuantifier($this, $ctx); + break a; + case 52: + oncipvaf_Cypher5AstBuilder_exitAnonymousPattern($this, $ctx); + break a; + case 53: + oncipvaf_Cypher5AstBuilder_exitShortestPathPattern($this, $ctx); + break a; + case 54: + oncipvaf_Cypher5AstBuilder_exitPatternElement($this, $ctx); + break a; + case 55: + oncipvaf_Cypher5AstBuilder_exitSelector($this, $ctx); + break a; + case 56: + oncipvaf_Cypher5AstBuilder_exitGroupToken($this, $ctx); + break a; + case 57: + oncipvaf_Cypher5AstBuilder_exitPathToken($this, $ctx); + break a; + case 58: + oncipvaf_Cypher5AstBuilder_exitPathPatternNonEmpty($this, $ctx); + break a; + case 59: + oncipvaf_Cypher5AstBuilder_exitNodePattern($this, $ctx); + break a; + case 60: + oncipvaf_Cypher5AstBuilder_exitInsertNodePattern($this, $ctx); + break a; + case 61: + oncipvaf_Cypher5AstBuilder_exitParenthesizedPath($this, $ctx); + break a; + case 62: + oncipvaf_Cypher5AstBuilder_exitNodeLabels($this, $ctx); + break a; + case 63: + oncipvaf_Cypher5AstBuilder_exitNodeLabelsIs($this, $ctx); + break a; + case 64: + oncipvaf_Cypher5AstBuilder_exitDynamicExpression($this, $ctx); + break a; + case 65: + oncipvaf_Cypher5AstBuilder_exitDynamicAnyAllExpression($this, $ctx); + break a; + case 66: + oncipvaf_Cypher5AstBuilder_exitDynamicLabelType($this, $ctx); + break a; + case 67: + oncipvaf_Cypher5AstBuilder_exitLabelType($this, $ctx); + break a; + case 68: + oncipvaf_Cypher5AstBuilder_exitRelType($this, $ctx); + break a; + case 69: + oncipvaf_Cypher5AstBuilder_exitLabelOrRelType($this, $ctx); + break a; + case 70: + oncipvaf_Cypher5AstBuilder_exitProperties($this, $ctx); + break a; + case 71: + oncipvaf_Cypher5AstBuilder_exitRelationshipPattern($this, $ctx); + break a; + case 72: + oncipvaf_Cypher5AstBuilder_exitInsertRelationshipPattern($this, $ctx); + break a; + case 73: + oncipvaf_Cypher5AstBuilder_exitLeftArrow($this, $ctx); + break a; + case 74: + oncipvaf_Cypher5AstBuilder_exitArrowLine($this, $ctx); + break a; + case 75: + oncipvaf_Cypher5AstBuilder_exitRightArrow($this, $ctx); + break a; + case 76: + oncipvaf_Cypher5AstBuilder_exitPathLength($this, $ctx); + break a; + case 77: + oncipvaf_Cypher5AstBuilder_exitLabelExpression($this, $ctx); + break a; + case 78: + oncipvaf_Cypher5AstBuilder_exitLabelExpression4($this, $ctx); + break a; + case 79: + oncipvaf_Cypher5AstBuilder_exitLabelExpression4Is($this, $ctx); + break a; + case 80: + oncipvaf_Cypher5AstBuilder_exitLabelExpression3($this, $ctx); + break a; + case 81: + oncipvaf_Cypher5AstBuilder_exitLabelExpression3Is($this, $ctx); + break a; + case 82: + oncipvaf_Cypher5AstBuilder_exitLabelExpression2($this, $ctx); + break a; + case 83: + oncipvaf_Cypher5AstBuilder_exitLabelExpression2Is($this, $ctx); + break a; + case 84: + oncipvaf_Cypher5AstBuilder_exitLabelExpression1($this, $ctx); + break a; + case 85: + oncipvaf_Cypher5AstBuilder_exitLabelExpression1Is($this, $ctx); + break a; + case 86: + oncipvaf_Cypher5AstBuilder_exitInsertNodeLabelExpression($this, $ctx); + break a; + case 87: + oncipvaf_Cypher5AstBuilder_exitInsertRelationshipLabelExpression($this, $ctx); + break a; + case 88: + oncipvaf_Cypher5AstBuilder_exitExpression($this, $ctx); + break a; + case 89: + oncipvaf_Cypher5AstBuilder_exitExpression11($this, $ctx); + break a; + case 90: + oncipvaf_Cypher5AstBuilder_exitExpression10($this, $ctx); + break a; + case 91: + oncipvaf_Cypher5AstBuilder_exitExpression9($this, $ctx); + break a; + case 92: + oncipvaf_Cypher5AstBuilder_exitExpression8($this, $ctx); + break a; + case 93: + oncipvaf_Cypher5AstBuilder_exitExpression7($this, $ctx); + break a; + case 94: + oncipvaf_Cypher5AstBuilder_exitComparisonExpression6($this, $ctx); + break a; + case 95: + oncipvaf_Cypher5AstBuilder_exitNormalForm($this, $ctx); + break a; + case 96: + oncipvaf_Cypher5AstBuilder_exitExpression6($this, $ctx); + break a; + case 97: + oncipvaf_Cypher5AstBuilder_exitExpression5($this, $ctx); + break a; + case 98: + oncipvaf_Cypher5AstBuilder_exitExpression4($this, $ctx); + break a; + case 99: + oncipvaf_Cypher5AstBuilder_exitExpression3($this, $ctx); + break a; + case 100: + oncipvaf_Cypher5AstBuilder_exitExpression2($this, $ctx); + break a; + case 101: + oncipvaf_Cypher5AstBuilder_exitPostFix($this, $ctx); + break a; + case 102: + oncipvaf_Cypher5AstBuilder_exitProperty($this, $ctx); + break a; + case 103: + oncipvaf_Cypher5AstBuilder_exitDynamicProperty($this, $ctx); + break a; + case 104: + oncipvaf_Cypher5AstBuilder_exitPropertyExpression($this, $ctx); + break a; + case 105: + oncipvaf_Cypher5AstBuilder_exitDynamicPropertyExpression($this, $ctx); + break a; + case 106: + oncipvaf_Cypher5AstBuilder_exitExpression1($this, $ctx); + break a; + case 107: + oncipvaf_Cypher5AstBuilder_exitLiteral($this, $ctx); + break a; + case 108: + oncipvaf_Cypher5AstBuilder_exitCaseExpression($this, $ctx); + break a; + case 109: + oncipvaf_Cypher5AstBuilder_exitCaseAlternative($this, $ctx); + break a; + case 110: + oncipvaf_Cypher5AstBuilder_exitExtendedCaseExpression($this, $ctx); + break a; + case 111: + oncipvaf_Cypher5AstBuilder_exitExtendedCaseAlternative($this, $ctx); + break a; + case 112: + oncipvaf_Cypher5AstBuilder_exitExtendedWhen($this, $ctx); + break a; + case 113: + oncipvaf_Cypher5AstBuilder_exitListComprehension($this, $ctx); + break a; + case 114: + oncipvaf_Cypher5AstBuilder_exitPatternComprehension($this, $ctx); + break a; + case 115: + oncipvaf_Cypher5AstBuilder_exitReduceExpression($this, $ctx); + break a; + case 116: + oncipvaf_Cypher5AstBuilder_exitListItemsPredicate($this, $ctx); + break a; + case 117: + oncipvaf_Cypher5AstBuilder_exitNormalizeFunction($this, $ctx); + break a; + case 118: + oncipvaf_Cypher5AstBuilder_exitTrimFunction($this, $ctx); + break a; + case 119: + oncipvaf_Cypher5AstBuilder_exitPatternExpression($this, $ctx); + break a; + case 120: + oncipvaf_Cypher5AstBuilder_exitShortestPathExpression($this, $ctx); + break a; + case 121: + oncipvaf_Cypher5AstBuilder_exitParenthesizedExpression($this, $ctx); + break a; + case 122: + oncipvaf_Cypher5AstBuilder_exitMapProjection($this, $ctx); + break a; + case 123: + oncipvaf_Cypher5AstBuilder_exitMapProjectionElement($this, $ctx); + break a; + case 124: + oncipvaf_Cypher5AstBuilder_exitCountStar($this, $ctx); + break a; + case 125: + oncipvaf_Cypher5AstBuilder_exitExistsExpression($this, $ctx); + break a; + case 126: + oncipvaf_Cypher5AstBuilder_exitCountExpression($this, $ctx); + break a; + case 127: + oncipvaf_Cypher5AstBuilder_exitCollectExpression($this, $ctx); + break a; + case 128: + oncipvaf_Cypher5AstBuilder_exitNumberLiteral($this, $ctx); + break a; + case 129: + oncipvaf_Cypher5AstBuilder_exitSignedIntegerLiteral($this, $ctx); + break a; + case 130: + oncipvaf_Cypher5AstBuilder_exitListLiteral($this, $ctx); + break a; + case 131: + oncipvaf_Cypher5AstBuilder_exitPropertyKeyName($this, $ctx); + break a; + case 132: + oncipvaf_Cypher5AstBuilder_exitParameter($this, $ctx); + break a; + case 133: + oncipvaf_Cypher5AstBuilder_exitParameterName($this, $ctx); + break a; + case 134: + oncipvaf_Cypher5AstBuilder_exitFunctionInvocation($this, $ctx); + break a; + case 135: + oncipvaf_Cypher5AstBuilder_exitFunctionArgument($this, $ctx); + break a; + case 136: + oncipvaf_Cypher5AstBuilder_exitFunctionName($this, $ctx); + break a; + case 137: + oncipvaf_Cypher5AstBuilder_exitNamespace($this, $ctx); + break a; + case 138: + oncipvaf_Cypher5AstBuilder_exitVariable($this, $ctx); + break a; + case 139: + oncipvaf_Cypher5AstBuilder_exitNonEmptyNameList($this, $ctx); + break a; + case 140: + oncipvaf_Cypher5AstBuilder_exitType($this, $ctx); + break a; + case 141: + oncipvaf_Cypher5AstBuilder_exitTypePart($this, $ctx); + break a; + case 142: + oncipvaf_Cypher5AstBuilder_exitTypeName($this, $ctx); + break a; + case 143: + oncipvaf_Cypher5AstBuilder_exitTypeNullability($this, $ctx); + break a; + case 144: + oncipvaf_Cypher5AstBuilder_exitTypeListSuffix($this, $ctx); + break a; + case 145: + oncipvaf_Cypher5AstBuilder_exitCommand($this, $ctx); + break a; + case 146: + oncipvaf_Cypher5AstBuilder_exitCreateCommand($this, $ctx); + break a; + case 147: + oncipvaf_Cypher5AstBuilder_exitDropCommand($this, $ctx); + break a; + case 148: + oncipvaf_Cypher5AstBuilder_exitShowCommand($this, $ctx); + break a; + case 149: + oncipvaf_Cypher5AstBuilder_exitShowCommandYield($this, $ctx); + break a; + case 150: + oncipvaf_Cypher5AstBuilder_exitYieldItem($this, $ctx); + break a; + case 151: + oncipvaf_Cypher5AstBuilder_exitYieldSkip($this, $ctx); + break a; + case 152: + oncipvaf_Cypher5AstBuilder_exitYieldLimit($this, $ctx); + break a; + case 153: + oncipvaf_Cypher5AstBuilder_exitYieldClause($this, $ctx); + break a; + case 154: + oncipvaf_Cypher5AstBuilder_exitCommandOptions($this, $ctx); + break a; + case 155: + oncipvaf_Cypher5AstBuilder_exitTerminateCommand($this, $ctx); + break a; + case 156: + oncipvaf_Cypher5AstBuilder_exitComposableCommandClauses($this, $ctx); + break a; + case 157: + oncipvaf_Cypher5AstBuilder_exitComposableShowCommandClauses($this, $ctx); + break a; + case 158: + oncipvaf_Cypher5AstBuilder_exitShowBriefAndYield($this, $ctx); + break a; + case 159: + oncipvaf_Cypher5AstBuilder_exitShowIndexCommand($this, $ctx); + break a; + case 160: + oncipvaf_Cypher5AstBuilder_exitShowIndexesAllowBrief($this, $ctx); + break a; + case 161: + oncipvaf_Cypher5AstBuilder_exitShowIndexesNoBrief($this, $ctx); + break a; + case 162: + oncipvaf_Cypher5AstBuilder_exitShowConstraintCommand($this, $ctx); + break a; + case 163: + oncipvaf_Cypher5AstBuilder_exitConstraintAllowYieldType($this, $ctx); + break a; + case 164: + oncipvaf_Cypher5AstBuilder_exitConstraintExistType($this, $ctx); + break a; + case 165: + oncipvaf_Cypher5AstBuilder_exitConstraintBriefAndYieldType($this, $ctx); + break a; + case 166: + oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowBriefAndYield($this, $ctx); + break a; + case 167: + oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowBrief($this, $ctx); + break a; + case 168: + oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowYield($this, $ctx); + break a; + case 169: + oncipvaf_Cypher5AstBuilder_exitShowProcedures($this, $ctx); + break a; + case 170: + oncipvaf_Cypher5AstBuilder_exitShowFunctions($this, $ctx); + break a; + case 171: + oncipvaf_Cypher5AstBuilder_exitFunctionToken($this, $ctx); + break a; + case 172: + oncipvaf_Cypher5AstBuilder_exitExecutableBy($this, $ctx); + break a; + case 173: + oncipvaf_Cypher5AstBuilder_exitShowFunctionsType($this, $ctx); + break a; + case 174: + oncipvaf_Cypher5AstBuilder_exitShowTransactions($this, $ctx); + break a; + case 175: + oncipvaf_Cypher5AstBuilder_exitTerminateTransactions($this, $ctx); + break a; + case 176: + oncipvaf_Cypher5AstBuilder_exitShowSettings($this, $ctx); + break a; + case 177: + oncipvaf_Cypher5AstBuilder_exitSettingToken($this, $ctx); + break a; + case 178: + oncipvaf_Cypher5AstBuilder_exitNamesAndClauses($this, $ctx); + break a; + case 179: + oncipvaf_Cypher5AstBuilder_exitStringsOrExpression($this, $ctx); + break a; + case 180: + oncipvaf_Cypher5AstBuilder_exitCommandNodePattern($this, $ctx); + break a; + case 181: + oncipvaf_Cypher5AstBuilder_exitCommandRelPattern($this, $ctx); + break a; + case 182: + oncipvaf_Cypher5AstBuilder_exitCreateConstraint($this, $ctx); + break a; + case 183: + oncipvaf_Cypher5AstBuilder_exitConstraintType($this, $ctx); + break a; + case 184: + oncipvaf_Cypher5AstBuilder_exitDropConstraint($this, $ctx); + break a; + case 185: + oncipvaf_Cypher5AstBuilder_exitCreateIndex($this, $ctx); + break a; + case 186: + oncipvaf_Cypher5AstBuilder_exitOldCreateIndex($this, $ctx); + break a; + case 187: + oncipvaf_Cypher5AstBuilder_exitCreateIndex_($this, $ctx); + break a; + case 188: + oncipvaf_Cypher5AstBuilder_exitCreateFulltextIndex($this, $ctx); + break a; + case 189: + oncipvaf_Cypher5AstBuilder_exitFulltextNodePattern($this, $ctx); + break a; + case 190: + oncipvaf_Cypher5AstBuilder_exitFulltextRelPattern($this, $ctx); + break a; + case 191: + oncipvaf_Cypher5AstBuilder_exitCreateLookupIndex($this, $ctx); + break a; + case 192: + oncipvaf_Cypher5AstBuilder_exitLookupIndexNodePattern($this, $ctx); + break a; + case 193: + oncipvaf_Cypher5AstBuilder_exitLookupIndexRelPattern($this, $ctx); + break a; + case 194: + oncipvaf_Cypher5AstBuilder_exitDropIndex($this, $ctx); + break a; + case 195: + oncipvaf_Cypher5AstBuilder_exitPropertyList($this, $ctx); + break a; + case 196: + oncipvaf_Cypher5AstBuilder_exitEnclosedPropertyList($this, $ctx); + break a; + case 197: + oncipvaf_Cypher5AstBuilder_exitAlterCommand($this, $ctx); + break a; + case 198: + oncipvaf_Cypher5AstBuilder_exitRenameCommand($this, $ctx); + break a; + case 199: + oncipvaf_Cypher5AstBuilder_exitGrantCommand($this, $ctx); + break a; + case 200: + oncipvaf_Cypher5AstBuilder_exitDenyCommand($this, $ctx); + break a; + case 201: + oncipvaf_Cypher5AstBuilder_exitRevokeCommand($this, $ctx); + break a; + case 202: + oncipvaf_Cypher5AstBuilder_exitUserNames($this, $ctx); + break a; + case 203: + oncipvaf_Cypher5AstBuilder_exitRoleNames($this, $ctx); + break a; + case 204: + oncipvaf_Cypher5AstBuilder_exitRoleToken($this, $ctx); + break a; + case 205: + oncipvaf_Cypher5AstBuilder_exitEnableServerCommand($this, $ctx); + break a; + case 206: + oncipvaf_Cypher5AstBuilder_exitAlterServer($this, $ctx); + break a; + case 207: + oncipvaf_Cypher5AstBuilder_exitRenameServer($this, $ctx); + break a; + case 208: + oncipvaf_Cypher5AstBuilder_exitDropServer($this, $ctx); + break a; + case 209: + oncipvaf_Cypher5AstBuilder_exitShowServers($this, $ctx); + break a; + case 210: + oncipvaf_Cypher5AstBuilder_exitAllocationCommand($this, $ctx); + break a; + case 211: + oncipvaf_Cypher5AstBuilder_exitDeallocateDatabaseFromServers($this, $ctx); + break a; + case 212: + oncipvaf_Cypher5AstBuilder_exitReallocateDatabases($this, $ctx); + break a; + case 213: + oncipvaf_Cypher5AstBuilder_exitCreateRole($this, $ctx); + break a; + case 214: + oncipvaf_Cypher5AstBuilder_exitDropRole($this, $ctx); + break a; + case 215: + oncipvaf_Cypher5AstBuilder_exitRenameRole($this, $ctx); + break a; + case 216: + oncipvaf_Cypher5AstBuilder_exitShowRoles($this, $ctx); + break a; + case 217: + oncipvaf_Cypher5AstBuilder_exitGrantRole($this, $ctx); + break a; + case 218: + oncipvaf_Cypher5AstBuilder_exitRevokeRole($this, $ctx); + break a; + case 219: + oncipvaf_Cypher5AstBuilder_exitCreateUser($this, $ctx); + break a; + case 220: + oncipvaf_Cypher5AstBuilder_exitDropUser($this, $ctx); + break a; + case 221: + oncipvaf_Cypher5AstBuilder_exitRenameUser($this, $ctx); + break a; + case 222: + oncipvaf_Cypher5AstBuilder_exitAlterCurrentUser($this, $ctx); + break a; + case 223: + oncipvaf_Cypher5AstBuilder_exitAlterUser($this, $ctx); + break a; + case 224: + oncipvaf_Cypher5AstBuilder_exitRemoveNamedProvider($this, $ctx); + break a; + case 225: + oncipvaf_Cypher5AstBuilder_exitPassword($this, $ctx); + break a; + case 226: + oncipvaf_Cypher5AstBuilder_exitPasswordOnly($this, $ctx); + break a; + case 227: + oncipvaf_Cypher5AstBuilder_exitPasswordExpression($this, $ctx); + break a; + case 228: + oncipvaf_Cypher5AstBuilder_exitPasswordChangeRequired($this, $ctx); + break a; + case 229: + oncipvaf_Cypher5AstBuilder_exitUserStatus($this, $ctx); + break a; + case 230: + oncipvaf_Cypher5AstBuilder_exitHomeDatabase($this, $ctx); + break a; + case 231: + oncipvaf_Cypher5AstBuilder_exitSetAuthClause($this, $ctx); + break a; + case 232: + oncipvaf_Cypher5AstBuilder_exitUserAuthAttribute($this, $ctx); + break a; + case 233: + oncipvaf_Cypher5AstBuilder_exitShowUsers($this, $ctx); + break a; + case 234: + oncipvaf_Cypher5AstBuilder_exitShowCurrentUser($this, $ctx); + break a; + case 235: + oncipvaf_Cypher5AstBuilder_exitShowSupportedPrivileges($this, $ctx); + break a; + case 236: + oncipvaf_Cypher5AstBuilder_exitShowPrivileges($this, $ctx); + break a; + case 237: + oncipvaf_Cypher5AstBuilder_exitShowRolePrivileges($this, $ctx); + break a; + case 238: + oncipvaf_Cypher5AstBuilder_exitShowUserPrivileges($this, $ctx); + break a; + case 239: + oncipvaf_Cypher5AstBuilder_exitPrivilegeAsCommand($this, $ctx); + break a; + case 240: + oncipvaf_Cypher5AstBuilder_exitPrivilegeToken($this, $ctx); + break a; + case 241: + oncipvaf_Cypher5AstBuilder_exitPrivilege($this, $ctx); + break a; + case 242: + oncipvaf_Cypher5AstBuilder_exitAllPrivilege($this, $ctx); + break a; + case 243: + oncipvaf_Cypher5AstBuilder_exitAllPrivilegeType($this, $ctx); + break a; + case 244: + oncipvaf_Cypher5AstBuilder_exitAllPrivilegeTarget($this, $ctx); + break a; + case 245: + oncipvaf_Cypher5AstBuilder_exitCreatePrivilege($this, $ctx); + break a; + case 246: + oncipvaf_Cypher5AstBuilder_exitCreatePrivilegeForDatabase($this, $ctx); + break a; + case 247: + oncipvaf_Cypher5AstBuilder_exitCreateNodePrivilegeToken($this, $ctx); + break a; + case 248: + oncipvaf_Cypher5AstBuilder_exitCreateRelPrivilegeToken($this, $ctx); + break a; + case 249: + oncipvaf_Cypher5AstBuilder_exitCreatePropertyPrivilegeToken($this, $ctx); + break a; + case 250: + oncipvaf_Cypher5AstBuilder_exitActionForDBMS($this, $ctx); + break a; + case 251: + oncipvaf_Cypher5AstBuilder_exitDropPrivilege($this, $ctx); + break a; + case 252: + oncipvaf_Cypher5AstBuilder_exitLoadPrivilege($this, $ctx); + break a; + case 253: + oncipvaf_Cypher5AstBuilder_exitShowPrivilege($this, $ctx); + break a; + case 254: + oncipvaf_Cypher5AstBuilder_exitSetPrivilege($this, $ctx); + break a; + case 255: + oncipvaf_Cypher5AstBuilder_exitPasswordToken($this, $ctx); + break a; + case 256: + oncipvaf_Cypher5AstBuilder_exitRemovePrivilege($this, $ctx); + break a; + case 257: + oncipvaf_Cypher5AstBuilder_exitWritePrivilege($this, $ctx); + break a; + case 258: + oncipvaf_Cypher5AstBuilder_exitDatabasePrivilege($this, $ctx); + break a; + case 259: + oncipvaf_Cypher5AstBuilder_exitDbmsPrivilege($this, $ctx); + break a; + case 260: + oncipvaf_Cypher5AstBuilder_exitDbmsPrivilegeExecute($this, $ctx); + break a; + case 261: + oncipvaf_Cypher5AstBuilder_exitAdminToken($this, $ctx); + break a; + case 262: + oncipvaf_Cypher5AstBuilder_exitProcedureToken($this, $ctx); + break a; + case 263: + oncipvaf_Cypher5AstBuilder_exitIndexToken($this, $ctx); + break a; + case 264: + oncipvaf_Cypher5AstBuilder_exitConstraintToken($this, $ctx); + break a; + case 265: + oncipvaf_Cypher5AstBuilder_exitTransactionToken($this, $ctx); + break a; + case 266: + oncipvaf_Cypher5AstBuilder_exitUserQualifier($this, $ctx); + break a; + case 267: + oncipvaf_Cypher5AstBuilder_exitExecuteFunctionQualifier($this, $ctx); + break a; + case 268: + oncipvaf_Cypher5AstBuilder_exitExecuteProcedureQualifier($this, $ctx); + break a; + case 269: + oncipvaf_Cypher5AstBuilder_exitSettingQualifier($this, $ctx); + break a; + case 270: + oncipvaf_Cypher5AstBuilder_exitGlobs($this, $ctx); + break a; + case 271: + oncipvaf_Cypher5AstBuilder_exitGlob($this, $ctx); + break a; + case 272: + oncipvaf_Cypher5AstBuilder_exitGlobRecursive($this, $ctx); + break a; + case 273: + oncipvaf_Cypher5AstBuilder_exitGlobPart($this, $ctx); + break a; + case 274: + oncipvaf_Cypher5AstBuilder_exitQualifiedGraphPrivilegesWithProperty($this, $ctx); + break a; + case 275: + oncipvaf_Cypher5AstBuilder_exitQualifiedGraphPrivileges($this, $ctx); + break a; + case 276: + oncipvaf_Cypher5AstBuilder_exitLabelsResource($this, $ctx); + break a; + case 277: + oncipvaf_Cypher5AstBuilder_exitPropertiesResource($this, $ctx); + break a; + case 278: + oncipvaf_Cypher5AstBuilder_exitNonEmptyStringList($this, $ctx); + break a; + case 279: + oncipvaf_Cypher5AstBuilder_exitGraphQualifier($this, $ctx); + break a; + case 280: + oncipvaf_Cypher5AstBuilder_exitGraphQualifierToken($this, $ctx); + break a; + case 281: + oncipvaf_Cypher5AstBuilder_exitRelToken($this, $ctx); + break a; + case 282: + oncipvaf_Cypher5AstBuilder_exitElementToken($this, $ctx); + break a; + case 283: + oncipvaf_Cypher5AstBuilder_exitNodeToken($this, $ctx); + break a; + case 284: + oncipvaf_Cypher5AstBuilder_exitDatabaseScope($this, $ctx); + break a; + case 285: + oncipvaf_Cypher5AstBuilder_exitGraphScope($this, $ctx); + break a; + case 286: + oncipvaf_Cypher5AstBuilder_exitCreateCompositeDatabase($this, $ctx); + break a; + case 287: + oncipvaf_Cypher5AstBuilder_exitCreateDatabase($this, $ctx); + break a; + case 288: + oncipvaf_Cypher5AstBuilder_exitPrimaryTopology($this, $ctx); + break a; + case 289: + oncipvaf_Cypher5AstBuilder_exitPrimaryToken($this, $ctx); + break a; + case 290: + oncipvaf_Cypher5AstBuilder_exitSecondaryTopology($this, $ctx); + break a; + case 291: + oncipvaf_Cypher5AstBuilder_exitSecondaryToken($this, $ctx); + break a; + case 292: + oncipvaf_Cypher5AstBuilder_exitDropDatabase($this, $ctx); + break a; + case 293: + oncipvaf_Cypher5AstBuilder_exitAliasAction($this, $ctx); + break a; + case 294: + oncipvaf_Cypher5AstBuilder_exitAlterDatabase($this, $ctx); + break a; + case 295: + oncipvaf_Cypher5AstBuilder_exitAlterDatabaseAccess($this, $ctx); + break a; + case 296: + oncipvaf_Cypher5AstBuilder_exitAlterDatabaseTopology($this, $ctx); + break a; + case 297: + oncipvaf_Cypher5AstBuilder_exitAlterDatabaseOption($this, $ctx); + break a; + case 298: + oncipvaf_Cypher5AstBuilder_exitStartDatabase($this, $ctx); + break a; + case 299: + oncipvaf_Cypher5AstBuilder_exitStopDatabase($this, $ctx); + break a; + case 300: + oncipvaf_Cypher5AstBuilder_exitWaitClause($this, $ctx); + break a; + case 301: + oncipvaf_Cypher5AstBuilder_exitSecondsToken($this, $ctx); + break a; + case 302: + oncipvaf_Cypher5AstBuilder_exitShowDatabase($this, $ctx); + break a; + case 303: + oncipvaf_Cypher5AstBuilder_exitAliasName($this, $ctx); + break a; + case 304: + oncipvaf_Cypher5AstBuilder_exitDatabaseName($this, $ctx); + break a; + case 305: + oncipvaf_Cypher5AstBuilder_exitCreateAlias($this, $ctx); + break a; + case 306: + oncipvaf_Cypher5AstBuilder_exitDropAlias($this, $ctx); + break a; + case 307: + oncipvaf_Cypher5AstBuilder_exitAlterAlias($this, $ctx); + break a; + case 308: + oncipvaf_Cypher5AstBuilder_exitAlterAliasTarget($this, $ctx); + break a; + case 309: + oncipvaf_Cypher5AstBuilder_exitAlterAliasUser($this, $ctx); + break a; + case 310: + oncipvaf_Cypher5AstBuilder_exitAlterAliasPassword($this, $ctx); + break a; + case 311: + oncipvaf_Cypher5AstBuilder_exitAlterAliasDriver($this, $ctx); + break a; + case 312: + oncipvaf_Cypher5AstBuilder_exitAlterAliasProperties($this, $ctx); + break a; + case 313: + oncipvaf_Cypher5AstBuilder_exitShowAliases($this, $ctx); + break a; + case 314: + oncipvaf_Cypher5AstBuilder_exitSymbolicNameOrStringParameter($this, $ctx); + break a; + case 315: + oncipvaf_Cypher5AstBuilder_exitCommandNameExpression($this, $ctx); + break a; + case 316: + oncipvaf_Cypher5AstBuilder_exitSymbolicNameOrStringParameterList($this, $ctx); + break a; + case 317: + oncipvaf_Cypher5AstBuilder_exitSymbolicAliasNameList($this, $ctx); + break a; + case 318: + oncipvaf_Cypher5AstBuilder_exitSymbolicAliasNameOrParameter($this, $ctx); + break a; + case 319: + oncipvaf_Cypher5AstBuilder_exitSymbolicAliasName($this, $ctx); + break a; + case 320: + oncipvaf_Cypher5AstBuilder_exitStringListLiteral($this, $ctx); + break a; + case 321: + oncipvaf_Cypher5AstBuilder_exitStringList($this, $ctx); + break a; + case 322: + oncipvaf_Cypher5AstBuilder_exitStringLiteral($this, $ctx); + break a; + case 323: + oncipvaf_Cypher5AstBuilder_exitStringOrParameterExpression($this, $ctx); + break a; + case 324: + oncipvaf_Cypher5AstBuilder_exitStringOrParameter($this, $ctx); + break a; + case 325: + oncipvaf_Cypher5AstBuilder_exitUIntOrIntParameter($this, $ctx); + break a; + case 326: + oncipvaf_Cypher5AstBuilder_exitMapOrParameter($this, $ctx); + break a; + case 327: + oncipvaf_Cypher5AstBuilder_exitMap($this, $ctx); + break a; + case 328: + oncipvaf_Cypher5AstBuilder_exitSymbolicVariableNameString($this, $ctx); + break a; + case 329: + oncipvaf_Cypher5AstBuilder_exitEscapedSymbolicVariableNameString($this, $ctx); + break a; + case 330: + oncipvaf_Cypher5AstBuilder_exitUnescapedSymbolicVariableNameString($this, $ctx); + break a; + case 331: + oncipvaf_Cypher5AstBuilder_exitSymbolicNameString($this, $ctx); + break a; + case 332: + oncipvaf_Cypher5AstBuilder_exitEscapedSymbolicNameString($this, $ctx); + break a; + case 333: + oncipvaf_Cypher5AstBuilder_exitUnescapedSymbolicNameString($this, $ctx); + break a; + case 334: + oncipvaf_Cypher5AstBuilder_exitSymbolicLabelNameString($this, $ctx); + break a; + case 335: + oncipvaf_Cypher5AstBuilder_exitUnescapedLabelSymbolicNameString($this, $ctx); + break a; + case 336: + oncipvaf_Cypher5AstBuilder_exitUnescapedLabelSymbolicNameString_($this, $ctx); + break a; + case 337: + oncipvaf_Cypher5AstBuilder_exitEndOfFile($this, $ctx); + break a; + default: + var$2 = new jl_IllegalStateException; + var$3 = $ctx.$getRuleIndex(); + $ctx = jl_StringBuilder__init_(); + jl_StringBuilder_append0(jl_StringBuilder_append($ctx, $rt_s(5109)), var$3); + jl_IllegalStateException__init_(var$2, jl_StringBuilder_toString($ctx)); + $rt_throw(var$2); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipvaf_Cypher5AstBuilder_exitStatements($this, $ctx); } - return $_localctx; }, -oncipv_Cypher5Parser_skip = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SkipContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 34, 17); +oncipvaf_LiteralBuilder0 = $rt_classWithoutFields(0), +oncipvaf_LabelExpressionBuilder = $rt_classWithoutFields(0), +oncipvaf_LabelExpressionBuilder_exitLabelExpression10 = ($this, $ctx) => { + let $parent, $parent_0, $isLabel, var$5, $isLabel_0, var$7, var$8; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 796); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 184 && $_la != 258) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 797); - oncipv_Cypher5Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($ctx instanceof oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext) + $parent = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelExpression4Context), 0)).$ast0; + else if ($ctx instanceof oncipv_Cypher5Parser$AnyLabelContext) { + $parent_0 = $ctx; + $parent = new oncil_LabelExpression$Wildcard; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Wildcard__init_($parent, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent_0)); + } else { + if (!($ctx instanceof oncipv_Cypher5Parser$LabelNameContext)) { + if (!($ctx instanceof oncipv_Cypher5Parser$DynamicLabelContext)) { + $parent_0 = new jl_IllegalStateException; + jl_Throwable__init_($parent_0, $rt_s(5110)); + $rt_throw($parent_0); } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_limit = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LimitContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 36, 18); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 799); - oavr_Parser_match($this, 150); - oavr_Recognizer_setState($this, 800); - oncipv_Cypher5Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + $parent_0 = $ctx; + $parent = $parent_0.$parent; + $isLabel = 0; + while (!$isLabel) { + if ($parent !== null && $parent.$getRuleIndex() != 101) { + if ($parent.$getRuleIndex() == 59) + $isLabel = 1; + else if ($parent.$getRuleIndex() == 71) + $isLabel = 2; + else + $parent = $parent.$parent; + } else + $isLabel = 3; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + switch ($isLabel) { + case 1: + $parent = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression((oncipv_Cypher5Parser$DynamicLabelContext_dynamicAnyAllExpression($parent_0)).$ast0), 0); + break a; + case 2: + $parent = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression((oncipv_Cypher5Parser$DynamicLabelContext_dynamicAnyAllExpression($parent_0)).$ast0), 0); + break a; + case 3: + $parent = oncil_LabelExpression$DynamicLeaf__init_((oncipv_Cypher5Parser$DynamicLabelContext_dynamicAnyAllExpression($parent_0)).$ast0, 0); + break a; + default: } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_whereClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$WhereClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 38, 19); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 802); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 803); - oncipv_Cypher5Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + var$5 = $ctx; + $parent_0 = var$5.$parent; + $isLabel_0 = 0; + while (!$isLabel_0) { + if ($parent_0 !== null && $parent_0.$getRuleIndex() != 101) { + if ($parent_0.$getRuleIndex() == 59) + $isLabel_0 = 1; + else if ($parent_0.$getRuleIndex() == 71) + $isLabel_0 = 2; + else + $parent_0 = $parent_0.$parent; + } else + $isLabel_0 = 3; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_withClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$WithClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 40, 20); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 805); - oavr_Parser_match($this, 302); - oavr_Recognizer_setState($this, 806); - oncipv_Cypher5Parser_returnBody($this); - oavr_Recognizer_setState($this, 808); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 807); - oncipv_Cypher5Parser_whereClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($isLabel_0) { + case 1: + $parent = new oncil_LabelExpression$Leaf; + var$7 = new oncie_LabelName; + var$8 = (oncipv_Cypher5Parser$LabelNameContext_symbolicNameString(var$5)).$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelName__init_0(var$7, var$8, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); + oncil_LabelExpression$Leaf__init_($parent, var$7, 0); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_createClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 42, 21); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 810); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 811); - oncipv_Cypher5Parser_patternList($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + case 2: + $parent = new oncil_LabelExpression$Leaf; + $parent_0 = new oncie_RelTypeName; + var$7 = (oncipv_Cypher5Parser$LabelNameContext_symbolicNameString(var$5)).$ast0; + oncipau_Util$_$callClinit(); + oncie_RelTypeName__init_($parent_0, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); + oncil_LabelExpression$Leaf__init_($parent, $parent_0, 0); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_insertClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$InsertClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 44, 22); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 813); - oavr_Parser_match($this, 136); - oavr_Recognizer_setState($this, 814); - oncipv_Cypher5Parser_insertPatternList($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + case 3: + $parent = new oncil_LabelExpression$Leaf; + $parent_0 = new oncie_LabelOrRelTypeName; + var$7 = (oncipv_Cypher5Parser$LabelNameContext_symbolicNameString(var$5)).$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelOrRelTypeName__init_($parent_0, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); + oncil_LabelExpression$Leaf__init_($parent, $parent_0, 0); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel_0))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = $parent; }, -oncipv_Cypher5Parser_setClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SetClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 46, 23); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 816); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 817); - oncipv_Cypher5Parser_setItem($this); - oavr_Recognizer_setState($this, 822); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 818); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 819); - oncipv_Cypher5Parser_setItem($this); - oavr_Recognizer_setState($this, 824); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_DdlBuilder0 = $rt_classWithoutFields(0), +oncipvaf_DdlBuilder_exitAlterUser0 = ($this, $ctx) => { + let $username, $nativePassAttributes, $suspended, $nativeAuthAttr, $removeHome, $homeDatabaseAction, $userOptions, $nativeAuth, $removeAuth, $setAuth; + $username = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0; + $nativePassAttributes = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_00); + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + $nativePassAttributes = sci_List_foldLeft($nativePassAttributes, sci_Nil$_MODULE$, new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_10); + $nativePassAttributes = sci_List_foldLeft(sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordChangeRequiredContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_20), $nativePassAttributes, new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_30); + $suspended = new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_40; + onciu_InputPosition$_$callClinit(); + $nativeAuthAttr = $nativePassAttributes.$sortBy($suspended, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); + oncipau_Util$_$callClinit(); + $suspended = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterUserContext_userStatus($ctx), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_50); + $removeHome = (oncip_AstRuleCtx_getTokens($ctx, 126)).$isEmpty() ? s_None$_MODULE$ : s_Some__init_(oncia_RemoveHomeDatabaseAction$_MODULE$); + $nativePassAttributes = oncipau_Util$_MODULE$; + $homeDatabaseAction = oncipv_Cypher5Parser$AlterUserContext_homeDatabase($ctx); + $userOptions = new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_60; + $userOptions.$_057 = $removeHome; + $userOptions = oncia_UserOptions__init_($suspended, oncipau_Util$_astOptFromList($nativePassAttributes, $homeDatabaseAction, $userOptions)); + if (!sc_IterableOnceOps_nonEmpty$($nativeAuthAttr)) + $nativeAuth = s_None$_MODULE$; + else { + $nativeAuth = new s_Some; + $suspended = new oncia_Auth; + oncia_AdministrationCommand$_$callClinit(); + oncia_Auth__init_($suspended, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), $nativeAuthAttr, ($nativeAuthAttr.$head()).$position()); + s_Some__init_0($nativeAuth, $suspended); } - return $_localctx; + $removeAuth = oncia_RemoveAuth__init_((oncip_AstRuleCtx_getTokens($ctx, 18)).$isEmpty() ? 0 : 1, sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$RemoveNamedProviderContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_70)); + $setAuth = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SetAuthClauseContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_80); + $ctx.$ast0 = oncia_AlterUser__init_($username, $userOptions, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1, $setAuth, $nativeAuth, $removeAuth, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); }, -oncipv_Cypher5Parser_setItem = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SetItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 48, 24); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 847); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 22, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$SetPropContext; - var$2 = $re; - oncipv_Cypher5Parser$SetPropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 825); - oncipv_Cypher5Parser_propertyExpression($this); - oavr_Recognizer_setState($this, 826); - oavr_Parser_match($this, 100); - oavr_Recognizer_setState($this, 827); - oncipv_Cypher5Parser_expression($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$SetDynamicPropContext; - var$2 = $re; - oncipv_Cypher5Parser$SetDynamicPropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 829); - oncipv_Cypher5Parser_dynamicPropertyExpression($this); - oavr_Recognizer_setState($this, 830); - oavr_Parser_match($this, 100); - oavr_Recognizer_setState($this, 831); - oncipv_Cypher5Parser_expression($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$SetPropsContext; - var$2 = $re; - oncipv_Cypher5Parser$SetPropsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 833); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 834); - oavr_Parser_match($this, 100); - oavr_Recognizer_setState($this, 835); - oncipv_Cypher5Parser_expression($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$AddPropContext; - var$2 = $re; - oncipv_Cypher5Parser$AddPropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 837); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 838); - oavr_Parser_match($this, 200); - oavr_Recognizer_setState($this, 839); - oncipv_Cypher5Parser_expression($this); - break e; - case 5: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$SetLabelsContext; - var$2 = $re; - oncipv_Cypher5Parser$SetLabelsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 841); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 842); - oncipv_Cypher5Parser_nodeLabels($this); - break e; - case 6: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$SetLabelsIsContext; - var$2 = $re; - oncipv_Cypher5Parser$SetLabelsIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 844); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 845); - oncipv_Cypher5Parser_nodeLabelsIs($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_DdlCreateBuilder0 = $rt_classWithoutFields(0), +oncipvaf_DdlCreateBuilder_exitCreateConstraint0 = ($this, $ctx) => { + let $parent, $nodePattern, $isNode, $constraintName, $existsDo, $options, $cT, $propertyType, $variable, $properties, $label, $variable_0, $relType; + $parent = $ctx.$parent; + $nodePattern = oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx); + $isNode = $nodePattern === null ? 0 : 1; + oncipau_Util$_$callClinit(); + $constraintName = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0)); + $existsDo = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE($parent) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1); + $options = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0); + $cT = oncipv_Cypher5Parser$CreateConstraintContext_constraintType($ctx); + $propertyType = $cT.$ast0; + if ($propertyType === null) + $rt_throw(s_MatchError__init_($propertyType)); + $variable = s_Tuple2__init_($propertyType.$_1(), $propertyType.$_2()); + $properties = $variable.$_10; + $propertyType = $variable.$_20; + if ($isNode) { + $nodePattern = $nodePattern.$ast0; + if ($nodePattern === null) + $rt_throw(s_MatchError__init_($nodePattern)); + $label = s_Tuple2__init_($nodePattern.$_1(), $nodePattern.$_2()); + $variable_0 = $label.$_10; + $label = $label.$_20; + if ($cT instanceof oncipv_Cypher5Parser$ConstraintExistsContext ? 1 : !($cT instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) ? 0 : 1) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createNodePropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties.$apply1(0), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else if ($cT instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createNodePropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties.$apply1(0), $propertyType.$get1(), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else if ($cT instanceof oncipv_Cypher5Parser$ConstraintIsUniqueContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createNodePropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties, $constraintName, $existsDo, $options, 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else { + if (!($cT instanceof oncipv_Cypher5Parser$ConstraintKeyContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5111)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createNodeKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties, $constraintName, $existsDo, $options, 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } + } else { + $nodePattern = (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx)).$ast0; + if ($nodePattern === null) + $rt_throw(s_MatchError__init_($nodePattern)); + $variable = s_Tuple2__init_($nodePattern.$_1(), $nodePattern.$_2()); + $variable_0 = $variable.$_10; + $relType = $variable.$_20; + if ($cT instanceof oncipv_Cypher5Parser$ConstraintExistsContext ? 1 : !($cT instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) ? 0 : 1) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $relType, $properties.$apply1(0), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else if ($cT instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $relType, $properties.$apply1(0), $propertyType.$get1(), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else if ($cT instanceof oncipv_Cypher5Parser$ConstraintIsUniqueContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $relType, $properties, $constraintName, $existsDo, $options, 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else { + if (!($cT instanceof oncipv_Cypher5Parser$ConstraintKeyContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5112)); + $rt_throw($ctx); + } + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createRelationshipKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $relType, $properties, $constraintName, $existsDo, $options, 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; } - return $re; + $ctx.$ast0 = $nodePattern; }, -oncipv_Cypher5Parser_removeClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RemoveClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 50, 25); +oncipvaf_DdlCreateBuilder_exitCreateIndex_0 = ($this, $ctx) => { + let $indexName, $grandparent, $parent, $existsDo, $options, $nodePattern, $relPattern, $isNode, $propertyList, $labelOrRelType, $relType, $variable, $token, $label; + $indexName = $ctx.$parent; + $grandparent = $indexName.$parent; + $parent = $indexName; + oncipau_Util$_$callClinit(); + $existsDo = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE($grandparent) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1); + $options = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0); + $indexName = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0)); + $nodePattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNodePatternContext), 0); + $relPattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandRelPatternContext), 0); + $isNode = $nodePattern === null ? 0 : 1; + $propertyList = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0.$toList(); + $labelOrRelType = !$isNode ? $relPattern.$ast0 : $nodePattern.$ast0; + if ($labelOrRelType === null) + $rt_throw(s_MatchError__init_($labelOrRelType)); a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 849); - oavr_Parser_match($this, 226); - oavr_Recognizer_setState($this, 850); - oncipv_Cypher5Parser_removeItem($this); - oavr_Recognizer_setState($this, 855); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 851); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 852); - oncipv_Cypher5Parser_removeItem($this); - oavr_Recognizer_setState($this, 857); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $relType = s_Tuple2__init_($labelOrRelType.$_1(), $labelOrRelType.$_2()); + $variable = $relType.$_10; + $labelOrRelType = $relType.$_20; + $token = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $parent, 0)).$getSymbol()).$getType0(); + switch ($token) { + case 38: + break; + case 132: + case 215: + if (!$isNode) { + $relType = $labelOrRelType; + $parent = oncia_CreateIndex$_createRangeRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, $token != 132 ? 0 : 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + $label = $labelOrRelType; + $parent = oncia_CreateIndex$_createRangeNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, $token != 132 ? 0 : 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; + case 201: + if (!$isNode) { + $relType = $labelOrRelType; + $parent = oncia_CreateIndex$_createPointRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_removeItem = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RemoveItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 52, 26); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 866); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 24, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$RemovePropContext; - var$2 = $re; - oncipv_Cypher5Parser$RemovePropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 858); - oncipv_Cypher5Parser_propertyExpression($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$RemoveDynamicPropContext; - var$2 = $re; - oncipv_Cypher5Parser$RemoveDynamicPropContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 859); - oncipv_Cypher5Parser_dynamicPropertyExpression($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$RemoveLabelsContext; - var$2 = $re; - oncipv_Cypher5Parser$RemoveLabelsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 860); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 861); - oncipv_Cypher5Parser_nodeLabels($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$RemoveLabelsIsContext; - var$2 = $re; - oncipv_Cypher5Parser$RemoveLabelsIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 863); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 864); - oncipv_Cypher5Parser_nodeLabelsIs($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $label = $labelOrRelType; + $parent = oncia_CreateIndex$_createPointNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; + case 268: + if (!$isNode) { + $relType = $labelOrRelType; + $parent = oncia_CreateIndex$_createTextRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); break a; } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + $label = $labelOrRelType; + $parent = oncia_CreateIndex$_createTextNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; + case 296: + if (!$isNode) { + $relType = $labelOrRelType; + $parent = oncia_CreateIndex$_createVectorRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $label = $labelOrRelType; + $parent = oncia_CreateIndex$_createVectorNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($token))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + $parent = null; } - return $re; + $ctx.$ast0 = $parent; }, -oncipv_Cypher5Parser_deleteClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DeleteClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 54, 27); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 869); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 78 && $_la != 174)) { - oavr_Recognizer_setState($this, 868); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 78 && $_la != 174) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 871); - oavr_Parser_match($this, 73); - oavr_Recognizer_setState($this, 872); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 877); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 873); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 874); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 879); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_DdlShowBuilder = $rt_classWithoutFields(0), +oncipvaf_DdlShowBuilder_decomposeYield = ($this, $yieldOrWhere) => { + let $optR, $y, $yieldedItems, $optY, $yieldAll, $x$5, $where; + if (!s_Option_isDefined($yieldOrWhere)) { + $optR = new oncipvaf_DdlShowBuilder$ShowWrapper; + $y = s_None$_MODULE$; + $yieldedItems = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$); + $optY = s_None$_MODULE$; + oncipvaf_DdlShowBuilder$ShowWrapper__init_($optR, $y, $yieldedItems, 0, $optY, $optY, $optY, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); + return $optR; + } + $yieldOrWhere = $yieldOrWhere.$get1(); + if ($yieldOrWhere instanceof su_Left) { + $optR = $yieldOrWhere.$value6; + if ($optR !== null) { + $y = $optR.$_1(); + $optR = $optR.$_2(); + $yieldOrWhere = oncipvaf_DdlShowBuilder_getYieldAllAndYieldItems($this, $y); + if ($yieldOrWhere === null) + $rt_throw(s_MatchError__init_($yieldOrWhere)); + $yieldAll = sr_BoxesRunTime_unboxToBoolean($yieldOrWhere.$_11); + $yieldedItems = $yieldOrWhere.$_21; + $optY = $yieldOrWhere.$_30; + $yieldOrWhere = s_Tuple3__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems, $optY); + $yieldAll = sr_BoxesRunTime_unboxToBoolean($yieldOrWhere.$_11); + $yieldedItems = $yieldOrWhere.$_21; + $optY = $yieldOrWhere.$_30; + $x$5 = s_None$_MODULE$; + return oncipvaf_DdlShowBuilder$ShowWrapper__init_2($x$5, $yieldedItems, $yieldAll, $optY, $optR, $x$5, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); + } + } + if (!($yieldOrWhere instanceof su_Right)) + $rt_throw(s_MatchError__init_($yieldOrWhere)); + $where = $yieldOrWhere.$value7; + $yieldOrWhere = new oncipvaf_DdlShowBuilder$ShowWrapper; + $optR = s_Some__init_($where); + $y = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$); + $optY = s_None$_MODULE$; + oncipvaf_DdlShowBuilder$ShowWrapper__init_($yieldOrWhere, $optR, $y, 0, $optY, $optY, $optY, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); + return $yieldOrWhere; +}, +oncipvaf_DdlShowBuilder_getYieldAllAndYieldItems = ($this, $yieldClause) => { + let $yieldAll, $yieldedItems; + s_Option$_$callClinit(); + $yieldAll = s_Option_exists(s_Option$_apply(s_Option$_MODULE$, $yieldClause), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_00); + $yieldedItems = s_Option_getOrElse(s_Option_map(s_Option$_apply(s_Option$_MODULE$, $yieldClause), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_10), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_20); + return s_Tuple3__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems, s_Some__init_($yieldClause)); +}, +oncipvaf_DdlShowBuilder_exitShowConstraintCommand = ($this, $ctx) => { + let $parentPos, var$3, $constraintType, $entityType; + oncipau_Util$_$callClinit(); + $parentPos = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + if ($ctx instanceof oncipv_Cypher5Parser$ShowConstraintMultiContext) { + var$3 = $ctx; + $constraintType = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext), 0)).$ast0; + $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext), 0)).$ast0, $constraintType, $parentPos); + } else if ($ctx instanceof oncipv_Cypher5Parser$ShowConstraintUniqueContext) { + var$3 = $ctx; + $entityType = oncip_AstRuleCtx_getToken(var$3, 173, 0) === null ? oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this) : oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this); + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), $entityType)) + $constraintType = oncia_NodeUniqueConstraintsCypher5$_MODULE$; + else { + if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), $entityType)) { + if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), $entityType)) + $rt_throw(s_MatchError__init_($entityType)); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5113)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $constraintType = oncia_RelUniqueConstraintsCypher5$_MODULE$; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext), 0)).$ast0, $constraintType, $parentPos); + } else if (!($ctx instanceof oncipv_Cypher5Parser$ShowConstraintKeyContext)) { + if ($ctx instanceof oncipv_Cypher5Parser$ShowConstraintRelExistContext) { + var$3 = $ctx; + $constraintType = oncia_RelAllExistsConstraints$_MODULE$; + $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext), 0)).$ast0, $constraintType, $parentPos); + } else if ($ctx instanceof oncipv_Cypher5Parser$ShowConstraintOldExistsContext) + $parentPos = null; + else { + if (!($ctx instanceof oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext)) { + $parentPos = new jl_IllegalStateException; + jl_Throwable__init_($parentPos, $rt_s(5113)); + $rt_throw($parentPos); + } + var$3 = $ctx; + $constraintType = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext), 0), new oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0); + $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext), 0)).$ast0, $constraintType, $parentPos); + } + } else { + var$3 = $ctx; + $entityType = oncip_AstRuleCtx_getToken(var$3, 224, 0) === null && oncip_AstRuleCtx_getToken(var$3, 223, 0) === null ? oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this) : oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this); + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), $entityType)) + $constraintType = oncia_RelKeyConstraints$_MODULE$; + else { + if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), $entityType)) { + if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), $entityType)) + $rt_throw(s_MatchError__init_($entityType)); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5113)); + $rt_throw($ctx); + } + $constraintType = oncia_KeyConstraints$_MODULE$; + } + $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext), 0)).$ast0, $constraintType, $parentPos); } - return $_localctx; + $ctx.$ast0 = $parentPos; }, -oncipv_Cypher5Parser_matchClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$MatchClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 56, 28); +oncipvaf_DdlShowBuilder_exitConstraintAllowYieldType = ($this, $ctx) => { + let $parent, $entityType, $propExists, var$5, var$6, var$7; + $parent = $ctx.$parent; + $entityType = oncip_AstRuleCtx_getToken($parent, 173, 0) !== null ? oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this) : oncip_AstRuleCtx_getToken($parent, 224, 0) === null && oncip_AstRuleCtx_getToken($parent, 223, 0) === null ? oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this) : oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this); + $propExists = oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext_constraintExistType($ctx) !== null && oncip_AstRuleCtx_getToken(oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext_constraintExistType($ctx), 211, 0) !== null ? 1 : 0; + $parent = new s_Tuple3; + var$5 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 211, 0) === null ? 0 : 1); + var$6 = oncip_AstRuleCtx_getToken($ctx, 287, 0) === null ? 0 : 1; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 881); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 187) { - oavr_Recognizer_setState($this, 880); - oavr_Parser_match($this, 187); - } - e: { - oavr_Recognizer_setState($this, 883); - oavr_Parser_match($this, 159); - oavr_Recognizer_setState($this, 885); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 28, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 884); - oncipv_Cypher5Parser_matchMode($this); - } - oavr_Recognizer_setState($this, 887); - oncipv_Cypher5Parser_patternList($this); - oavr_Recognizer_setState($this, 891); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 293) { - oavr_Recognizer_setState($this, 888); - oncipv_Cypher5Parser_hint($this); - oavr_Recognizer_setState($this, 893); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 895); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 894); - oncipv_Cypher5Parser_whereClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + s_Tuple3__init_0($parent, $entityType, var$5, jl_Boolean_valueOf(var$6)); + var$5 = $parent.$_11; + var$6 = sr_BoxesRunTime_unboxToBoolean($parent.$_21); + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), var$5) && 1 == var$6) { + $parent = oncia_NodePropTypeConstraints$_MODULE$; + break a; + } + var$7 = $parent.$_11; + var$6 = sr_BoxesRunTime_unboxToBoolean($parent.$_21); + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), var$7) && 1 == var$6) { + $parent = oncia_RelPropTypeConstraints$_MODULE$; + break a; + } + var$7 = $parent.$_11; + var$6 = sr_BoxesRunTime_unboxToBoolean($parent.$_21); + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), var$7) && 1 == var$6) { + $parent = oncia_PropTypeConstraints$_MODULE$; + break a; + } + var$7 = $parent.$_11; + var$6 = sr_BoxesRunTime_unboxToBoolean($parent.$_30); + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), var$7) && 1 == var$6) { + $parent = oncia_NodeUniqueConstraintsCypher5$_MODULE$; + break a; + } + var$7 = $parent.$_11; + var$6 = sr_BoxesRunTime_unboxToBoolean($parent.$_30); + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), var$7) && 1 == var$6) { + $parent = oncia_RelUniqueConstraintsCypher5$_MODULE$; + break a; + } + var$7 = $parent.$_11; + var$6 = sr_BoxesRunTime_unboxToBoolean($parent.$_30); + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), var$7) && 1 == var$6) { + $parent = oncia_UniqueConstraintsCypher5$_MODULE$; + break a; + } + var$7 = $parent.$_11; + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), var$7)) { + if (!$propExists) { + $parent = oncia_NodeAllExistsConstraints$_MODULE$; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncia_NodePropExistsConstraintsCypher5$_$callClinit(); + $parent = oncia_NodePropExistsConstraintsCypher5$_MODULE$; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$7 = $parent.$_11; + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), var$7)) { + if (!$propExists) { + $parent = oncia_RelAllExistsConstraints$_MODULE$; + break a; + } + oncia_RelPropExistsConstraintsCypher5$_$callClinit(); + $parent = oncia_RelPropExistsConstraintsCypher5$_MODULE$; + break a; + } + var$7 = $parent.$_11; + if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), var$7)) + $rt_throw(s_MatchError__init_($parent)); + if (!$propExists) { + $parent = oncia_AllExistsConstraints$_MODULE$; + break a; + } + oncia_PropExistsConstraintsCypher5$_$callClinit(); + $parent = oncia_PropExistsConstraintsCypher5$_MODULE$; } - return $_localctx; + $ctx.$ast0 = $parent; }, -oncipv_Cypher5Parser_matchMode = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$MatchModeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 58, 29); +oncipvaf_DdlPrivilegeBuilder0 = $rt_classWithoutFields(0), +oncipvaf_DdlPrivilegeBuilder_exitAllPrivilege0 = ($this, $ctx) => { + let var$2, $scope, var$4, var$5; + var$2 = oncipv_Cypher5Parser$AllPrivilegeContext_allPrivilegeTarget($ctx); + if (var$2 instanceof oncipv_Cypher5Parser$DefaultTargetContext) { + if (oncipv_Cypher5Parser$DefaultTargetContext_DATABASE(var$2) === null) { + var$2 = new oncia_GraphPrivilege; + $scope = oncia_AllGraphAction$_MODULE$; + var$4 = new oncia_HomeGraphScope; + oncipau_Util$_$callClinit(); + oncia_HomeGraphScope__init_(var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + oncia_GraphPrivilege__init_(var$2, $scope, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$2, s_None$_MODULE$); + } else { + var$2 = new oncia_DatabasePrivilege; + $scope = oncia_AllDatabaseAction$_MODULE$; + var$4 = new oncia_HomeDatabaseScope; + oncipau_Util$_$callClinit(); + oncia_HomeDatabaseScope__init_(var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + oncia_DatabasePrivilege__init_(var$2, $scope, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier0($this, var$2, s_None$_MODULE$); + } + } else if (var$2 instanceof oncipv_Cypher5Parser$DatabaseVariableTargetContext) { + var$2 = var$2; + if (oncip_AstRuleCtx_getToken(var$2, 271, 0) !== null) { + $scope = new oncia_AllDatabasesScope; + oncipau_Util$_$callClinit(); + oncia_AllDatabasesScope__init_($scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + $scope = new oncia_NamedDatabasesScope; + var$2 = (oavr_ParserRuleContext_getRuleContext(var$2, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_NamedDatabasesScope__init_($scope, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + var$2 = new oncia_DatabasePrivilege; + var$4 = oncia_AllDatabaseAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_DatabasePrivilege__init_(var$2, var$4, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier0($this, var$2, s_None$_MODULE$); + } else if (!(var$2 instanceof oncipv_Cypher5Parser$GraphVariableTargetContext)) { + if (!(var$2 instanceof oncipv_Cypher5Parser$DBMSTargetContext)) { + var$2 = new jl_IllegalStateException; + jl_Throwable__init_(var$2, $rt_s(5114)); + $rt_throw(var$2); + } + var$4 = new oncia_DbmsPrivilege; + var$2 = oncia_AllDbmsAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_DbmsPrivilege__init_0(var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$4, s_None$_MODULE$); + } else { + var$2 = var$2; + if (oncip_AstRuleCtx_getToken(var$2, 271, 0) !== null) { + $scope = new oncia_AllGraphsScope; + oncipau_Util$_$callClinit(); + oncia_AllGraphsScope__init_($scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + $scope = new oncia_NamedGraphsScope; + var$2 = (oavr_ParserRuleContext_getRuleContext(var$2, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_NamedGraphsScope__init_($scope, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + var$5 = new oncia_GraphPrivilege; + var$2 = oncia_AllGraphAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$5, var$2, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$5, s_None$_MODULE$); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_DdlPrivilegeBuilder_exitDbmsPrivilege0 = ($this, $ctx) => { + let $action, $qualifier, var$4, $action_0; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 913); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 79: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 905); - oavr_Parser_match($this, 79); - oavr_Recognizer_setState($this, 911); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 224: - f: { - oavr_Recognizer_setState($this, 906); - oavr_Parser_match($this, 224); - oavr_Recognizer_setState($this, 908); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 33, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 907); - oavr_Parser_match($this, 31); - } - break e; - case 225: - oavr_Recognizer_setState($this, 910); - oavr_Parser_match($this, 225); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 227: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 897); - oavr_Parser_match($this, 227); - oavr_Recognizer_setState($this, 903); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 94: - g: { - oavr_Recognizer_setState($this, 898); - oavr_Parser_match($this, 94); - oavr_Recognizer_setState($this, 900); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 31, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 899); - oavr_Parser_match($this, 31); - } - break e; - case 95: - oavr_Recognizer_setState($this, 902); - oavr_Parser_match($this, 95); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + oncipau_Util$_$callClinit(); + $action = oncip_AstRuleCtx_getChild($ctx, 0); + if ($action instanceof oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext) + $qualifier = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext), 0)).$ast0; + else { + if (!$rt_isInstance($action, oavrt_TerminalNode)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + } + switch (($action.$getSymbol()).$getType0()) { + case 15: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllAliasManagementActions$_MODULE$); + break a; + case 19: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 15: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AlterAliasAction$_MODULE$); + break a; + case 65: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AlterDatabaseAction$_MODULE$); + break a; + case 291: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AlterUserAction$_MODULE$); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + case 27: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 206: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AssignPrivilegeAction$_MODULE$); + break a; + case 235: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AssignRoleAction$_MODULE$); + break a; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + case 53: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_CompositeDatabaseManagementActions$_MODULE$); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case 65: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllDatabaseManagementActions$_MODULE$); + break a; + case 129: + $qualifier = s_Tuple2__init_(oncia_ImpersonateUserAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserQualifierContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_00)); + break a; + case 206: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllPrivilegeActions$_MODULE$); + break a; + case 221: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 235: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_RenameRoleAction$_MODULE$); + break a; + case 291: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_RenameUserAction$_MODULE$); + break a; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + case 235: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllRoleActions$_MODULE$); + break a; + case 248: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ServerManagementAction$_MODULE$); + break a; + case 291: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllUserActions$_MODULE$); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if ($qualifier === null) + $rt_throw(s_MatchError__init_($qualifier)); + $action = $qualifier.$_1(); + $qualifier = $qualifier.$_2(); + var$4 = s_Tuple2__init_($action, $qualifier); + $action_0 = var$4.$_10; + $qualifier = var$4.$_20; + $ctx.$ast0 = s_Tuple3__init_(oncia_DbmsPrivilege__init_($action_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$, $qualifier); }, -oncipv_Cypher5Parser_hint = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$HintContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 60, 30); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 915); - oavr_Parser_match($this, 293); - oavr_Recognizer_setState($this, 943); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 38: - case 132: - case 201: - case 215: - case 268: - f: { - oavr_Recognizer_setState($this, 925); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 38: - oavr_Recognizer_setState($this, 917); - oavr_Parser_match($this, 38); - oavr_Recognizer_setState($this, 918); - oavr_Parser_match($this, 132); - break f; - case 132: - oavr_Recognizer_setState($this, 916); - oavr_Parser_match($this, 132); - break f; - case 201: - oavr_Recognizer_setState($this, 923); - oavr_Parser_match($this, 201); - oavr_Recognizer_setState($this, 924); - oavr_Parser_match($this, 132); - break f; - case 215: - oavr_Recognizer_setState($this, 921); - oavr_Parser_match($this, 215); - oavr_Recognizer_setState($this, 922); - oavr_Parser_match($this, 132); - break f; - case 268: - oavr_Recognizer_setState($this, 919); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 920); - oavr_Parser_match($this, 132); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - g: { - oavr_Recognizer_setState($this, 928); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 37, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 927); - oavr_Parser_match($this, 246); - } - oavr_Recognizer_setState($this, 930); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 931); - oncipv_Cypher5Parser_labelOrRelType($this); - oavr_Recognizer_setState($this, 932); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 933); - oncipv_Cypher5Parser_nonEmptyNameList($this); - oavr_Recognizer_setState($this, 934); - oavr_Parser_match($this, 239); - break e; - case 140: - oavr_Recognizer_setState($this, 936); - oavr_Parser_match($this, 140); - oavr_Recognizer_setState($this, 937); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 938); - oncipv_Cypher5Parser_nonEmptyNameList($this); - break e; - case 240: - oavr_Recognizer_setState($this, 939); - oavr_Parser_match($this, 240); - oavr_Recognizer_setState($this, 940); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 941); - oncipv_Cypher5Parser_labelOrRelType($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_DdlPrivilegeBuilder_exitShowPrivilege0 = ($this, $ctx) => { + let $p, $action, $action_0, $qualifier, $scope, $action_1; + oncipau_Util$_$callClinit(); + $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncipv_Cypher5Parser$ShowPrivilegeContext_databaseScope($ctx) !== null) { + $action = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + if ($action instanceof oncipv_Cypher5Parser$ConstraintTokenContext) + $action = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_ShowConstraintAction$_MODULE$); + else if ($action instanceof oncipv_Cypher5Parser$IndexTokenContext) + $action = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_ShowIndexAction$_MODULE$); + else { + if (!($action instanceof oncipv_Cypher5Parser$TransactionTokenContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + } + $action = s_Tuple2__init_(oncia_ShowTransactionAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserQualifierContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_00)); + } + if ($action === null) + $rt_throw(s_MatchError__init_($action)); + $action = s_Tuple2__init_($action.$_10, $action.$_20); + $action_0 = $action.$_10; + $qualifier = $action.$_20; + $scope = (oncipv_Cypher5Parser$ShowPrivilegeContext_databaseScope($ctx)).$ast0; + $action_1 = s_Tuple3__init_(oncia_DatabasePrivilege__init_0($action_0, $scope, $p), s_None$_MODULE$, $qualifier); + } else { + a: { + $action = oncip_AstRuleCtx_getChild($ctx, 1); + if (!$rt_isInstance($action, oavrt_TerminalNode)) { + if ($rt_isInstance($action, oavrt_RuleNode) && $action.$getRuleIndex() == 177) { + $qualifier = s_Tuple2__init_(oncia_ShowSettingAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SettingQualifierContext), 0)).$ast0); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + switch (($action.$getSymbol()).$getType0()) { + case 15: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowAliasAction$_MODULE$); + break a; + case 206: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowPrivilegeAction$_MODULE$); + break a; + case 235: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowRoleAction$_MODULE$); + break a; + case 248: + case 249: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowServerAction$_MODULE$); + break a; + case 291: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowUserAction$_MODULE$); + break a; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if ($qualifier === null) + $rt_throw(s_MatchError__init_($qualifier)); + $action_1 = s_Tuple2__init_($qualifier.$_10, $qualifier.$_20); + $action = $action_1.$_10; + $qualifier = $action_1.$_20; + $action_1 = s_Tuple3__init_(oncia_DbmsPrivilege__init_($action, $p), s_None$_MODULE$, $qualifier); } - return $_localctx; -}; -let oncipv_Cypher5Parser_mergeClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$MergeClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 62, 31); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 945); - oavr_Parser_match($this, 160); - oavr_Recognizer_setState($this, 946); - oncipv_Cypher5Parser_pattern($this); - oavr_Recognizer_setState($this, 950); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 185) { - oavr_Recognizer_setState($this, 947); - oncipv_Cypher5Parser_mergeAction($this); - oavr_Recognizer_setState($this, 952); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + $ctx.$ast0 = $action_1; +}, +oncipvaf_DdlPrivilegeBuilder_exitGraphQualifier = ($this, $ctx) => { + let $token, $strings, $graphToken, $variable, $qualifiers, var$7, var$8, $isAll; + $token = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierTokenContext), 0); + if ($token === null) { + if (oncip_AstRuleCtx_getToken($ctx, 112, 0) === null) { + $strings = new sci_$colon$colon; + $graphToken = new oncia_ElementsAllQualifier; + oncipau_Util$_$callClinit(); + oncia_ElementsAllQualifier__init_($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); + } else { + oncipau_Util$_$callClinit(); + $variable = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)); + if ((oncipv_Cypher5Parser$GraphQualifierContext_symbolicNameString($ctx)).$isEmpty()) + $qualifiers = sci_$colon$colon__init_(oncia_LabelAllQualifier__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$); + else { + $graphToken = oncipau_Util$_MODULE$; + $token = oncipv_Cypher5Parser$GraphQualifierContext_symbolicNameString($ctx); + sr_ClassTag$_$callClinit(); + $token = oncipau_Util$_astSeq($graphToken, $token, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); + $graphToken = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3; + $graphToken.$_0924 = $ctx; + $qualifiers = sc_IterableOnceOps_toList$(sci_ArraySeq_map($token, $graphToken)); + } + $strings = new sci_$colon$colon; + var$7 = new oncia_PatternQualifier; + $graphToken = oncipau_Util$_MODULE$; + var$8 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); + $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4; + $token.$_0383 = $ctx; + oncia_PatternQualifier__init_(var$7, $qualifiers, $variable, oncipau_Util$_astOpt0($graphToken, var$8, $token)); + sci_$colon$colon__init_0($strings, var$7, sci_Nil$_MODULE$); + } + } else { + $isAll = oncip_AstRuleCtx_getToken($ctx, 271, 0) === null ? 0 : 1; + $strings = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NonEmptyStringListContext), 0); + $graphToken = $token.$ast0; + if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$RelGraphToken($this), $graphToken)) { + if (!$isAll) { + $graphToken = $strings.$ast0; + $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0; + $token.$_0736 = $ctx; + $strings = ($graphToken.$map($token)).$toList(); + } else { + $strings = new sci_$colon$colon; + $token = new oncia_RelationshipAllQualifier; + oncipau_Util$_$callClinit(); + oncia_RelationshipAllQualifier__init_($token, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + sci_$colon$colon__init_0($strings, $token, sci_Nil$_MODULE$); + } + } else if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken($this), $graphToken)) { + if (!$isAll) { + $graphToken = $strings.$ast0; + $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1; + $token.$_0252 = $ctx; + $strings = ($graphToken.$map($token)).$toList(); + } else { + $strings = new sci_$colon$colon; + $graphToken = new oncia_LabelAllQualifier; + oncipau_Util$_$callClinit(); + oncia_LabelAllQualifier__init_0($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); + } + } else { + if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken($this), $graphToken)) + $rt_throw(s_MatchError__init_($graphToken)); + if (!$isAll) { + $graphToken = $strings.$ast0; + $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2; + $token.$_0837 = $ctx; + $strings = ($graphToken.$map($token)).$toList(); + } else { + $strings = new sci_$colon$colon; + $graphToken = new oncia_ElementsAllQualifier; + oncipau_Util$_$callClinit(); + oncia_ElementsAllQualifier__init_($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = $strings; }, -oncipv_Cypher5Parser_mergeAction = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$MergeActionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 64, 32); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 953); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 954); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 61 && $_la != 159) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 955); - oncipv_Cypher5Parser_setClause($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_DdlPrivilegeBuilder_withQualifier1 = ($this, $action) => { + let var$2, var$3, var$4; + var$2 = new s_Tuple2; + var$3 = new sci_$colon$colon; + var$4 = new oncia_AllDatabasesQualifier; + onciu_InputPosition$_$callClinit(); + oncia_AllDatabasesQualifier__init_(var$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$3, var$4, sci_Nil$_MODULE$); + s_Tuple2__init_0(var$2, $action, var$3); + return var$2; +}, +oncipvaf_DdlPrivilegeBuilder_withQualifier0 = ($this, $action) => { + let var$2, var$3, var$4; + var$2 = new s_Tuple2; + var$3 = new sci_$colon$colon; + var$4 = new oncia_AllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_AllQualifier__init_(var$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$3, var$4, sci_Nil$_MODULE$); + s_Tuple2__init_0(var$2, $action, var$3); + return var$2; +}, +oncipvaf_DdlPrivilegeBuilder_allDbQualifier0 = ($this, $privilege, $resource) => { + let var$3, var$4, var$5; + var$3 = new s_Tuple3; + var$4 = new sci_$colon$colon; + var$5 = new oncia_AllDatabasesQualifier; + onciu_InputPosition$_$callClinit(); + oncia_AllDatabasesQualifier__init_(var$5, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$4, var$5, sci_Nil$_MODULE$); + s_Tuple3__init_0(var$3, $privilege, $resource, var$4); + return var$3; +}, +oncipvaf_DdlPrivilegeBuilder_allQualifier0 = ($this, $privilege, $resource) => { + let var$3, var$4, var$5; + var$3 = new s_Tuple3; + var$4 = new sci_$colon$colon; + var$5 = new oncia_AllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_AllQualifier__init_(var$5, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$4, var$5, sci_Nil$_MODULE$); + s_Tuple3__init_0(var$3, $privilege, $resource, var$4); + return var$3; +}, +oncipvaf_DdlPrivilegeBuilder_labelAllQualifier0 = ($this, $privilege, $resource, $pos) => { + return s_Tuple3__init_($privilege, $resource, sci_$colon$colon__init_(oncia_LabelAllQualifier__init_($pos), sci_Nil$_MODULE$)); +}, +oncipvaf_ExpressionBuilder0 = $rt_classWithoutFields(0), +oncipvaf_ExpressionBuilder_exitPatternElement = ($this, $ctx) => { + let $size, $p, $parts, $relPattern, $i, $part, var$8, $nodePattern, $lhs, $emptyNodePattern; + $size = $ctx.$children0.$size0; + if ($size == 1) { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + return; + } + oncipau_Util$_$callClinit(); + $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + $parts = scm_ArrayDeque__init_0(1); + $relPattern = null; + $i = 0; + while (true) { + if ($i >= $size) { + if ($parts.$length() == 1) + $part = sc_IndexedSeqOps_head$($parts); + else { + $part = new oncie_PathConcatenation; + $p = sci_ArraySeq$_MODULE$; + sr_ClassTag$_$callClinit(); + oncie_PathConcatenation__init_($part, sci_ArraySeq$_unsafeWrapArray($p, scm_ArrayDeque_toArray($parts, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PathFactor)))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $ctx.$ast0 = $part; + return; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_unwindClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UnwindClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 66, 33); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 957); - oavr_Parser_match($this, 288); - oavr_Recognizer_setState($this, 958); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 959); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 960); - oncipv_Cypher5Parser_variable($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + var$8 = ju_ArrayList_get($ctx.$children0, $i); + if (var$8 instanceof oncipv_Cypher5Parser$NodePatternContext) { + $nodePattern = var$8.$ast0; + if ($relPattern === null) + scm_ArrayDeque_addOne($parts, $nodePattern); + else { + scm_ArrayDeque_addOne($parts, oncie_RelationshipChain__init_(scm_ArrayDeque_removeLast($parts, 0), $relPattern, $nodePattern, $p)); + $relPattern = null; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + } else if (var$8 instanceof oncipv_Cypher5Parser$RelationshipPatternContext) + $relPattern = var$8.$ast0; + else if (!(var$8 instanceof oncipv_Cypher5Parser$QuantifierContext)) { + if (!(var$8 instanceof oncipv_Cypher5Parser$ParenthesizedPathContext)) + break; + scm_ArrayDeque_addOne($parts, var$8.$ast0); + } else { + $lhs = var$8; + $emptyNodePattern = new oncie_NodePattern; + $part = s_None$_MODULE$; + oncie_NodePattern__init_($emptyNodePattern, $part, $part, $part, $part, $relPattern.$position8); + $part = oncie_PathPatternPart__init_(oncie_RelationshipChain__init_($emptyNodePattern, $relPattern, $emptyNodePattern, $relPattern.$position8)); + scm_ArrayDeque_addOne($parts, oncie_QuantifiedPath$_apply(oncie_QuantifiedPath$_MODULE$, $part, $lhs.$ast0, s_None$_MODULE$, $relPattern.$position8)); + $relPattern = null; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $i = $i + 1 | 0; } - return $_localctx; + $ctx = new jl_IllegalStateException; + $p = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($p); + jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(5115)), var$8); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString($p)); + $rt_throw($ctx); }, -oncipv_Cypher5Parser_callClause = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CallClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 68, 34); +oncipvaf_ExpressionBuilder_selectorCount0 = ($this, $node, $p) => { + let var$3, var$4; + if ($node === null) + return oncie_UnsignedDecimalIntegerLiteral__init_0($rt_s(161), $p); + var$3 = new oncie_UnsignedDecimalIntegerLiteral; + var$4 = $node.$getText(); + oncipau_Util$_$callClinit(); + oncie_UnsignedDecimalIntegerLiteral__init_(var$3, var$4, oncipau_Util$_pos1(oncipau_Util$_MODULE$, $node)); + return var$3; +}, +oncipvaf_ExpressionBuilder_binaryPredicate0 = ($this, $lhs, $token, $rhs) => { + let var$4, var$5, var$6; + var$4 = ($token.$getSymbol()).$getType0(); + switch (var$4) { + case 100: + var$5 = new oncie_Equals; + var$6 = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_Equals__init_(var$5, $lhs, var$6, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 118: + var$5 = new oncie_GreaterThanOrEqual; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_GreaterThanOrEqual__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 124: + var$5 = new oncie_GreaterThan; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_GreaterThan__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 148: + var$5 = new oncie_LessThanOrEqual; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_LessThanOrEqual__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 156: + var$5 = new oncie_LessThan; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_LessThan__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 163: + var$5 = new oncie_InvalidNotEquals; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_InvalidNotEquals__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 164: + var$5 = new oncie_NotEquals; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_NotEquals__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); +}, +oncipvaf_ExpressionBuilder_stringAndListComparisonExpression = ($this, $lhs, $ctx) => { + let $token, $rhs, var$5; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher5Parser$StringAndListComparisonContext) && !($ctx instanceof oncipv_Cypher5Parser$WhenStringOrListContext)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $token = (oncip_AstRuleCtx_getChild($ctx, 0)).$getSymbol(); + $rhs = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; + var$5 = $token.$getType0(); + switch (var$5) { + case 57: + break; + case 99: + return oncie_EndsWith__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); + case 131: + return oncie_In__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); + case 222: + return oncie_RegexMatch__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); + case 260: + return oncie_StartsWith__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$5))); + } + return oncie_Contains__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); +}, +oncipvaf_ExpressionBuilder_nullComparisonExpression = ($this, $lhs, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher5Parser$NullComparisonContext) && !($ctx instanceof oncipv_Cypher5Parser$WhenNullContext)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + if (oncipau_Util$_nodeChildType(oncipau_Util$_MODULE$, $ctx, 1) == 179) + return oncie_IsNotNull__init_($lhs, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + return oncie_IsNull__init_($lhs, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}; +let oncipvaf_ExpressionBuilder_typeComparisonExpression = ($this, $lhs, $ctx) => { + let $cypherType, var$4; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher5Parser$TypeComparisonContext) && !($ctx instanceof oncipv_Cypher5Parser$WhenTypeContext)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $cypherType = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; + var$4 = oncip_AstRuleCtx_getChild($ctx, 1); + if (!$rt_isInstance(var$4, oavrt_TerminalNode) ? 0 : (var$4.$getSymbol()).$getType0() != 179 ? 0 : 1) + return oncia_IsNotTyped__init_($lhs, $cypherType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + return oncia_IsTyped__init_($lhs, $cypherType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), $ctx.$children0.$size0 != 2 ? 0 : 1); +}, +oncipvaf_ExpressionBuilder_normalFormComparisonExpression0 = ($this, $lhs, $nfCtx, $not, $p) => { + let $nf; + oncipau_Util$_$callClinit(); + $nf = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, $nfCtx, new oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0); + if (!$not) + return oncia_IsNormalized__init_($lhs, $nf, $p); + return oncia_IsNotNormalized__init_($lhs, $nf, $p); +}, +oncipvaf_ExpressionBuilder_subqueryBuilder = ($this, $regQuery, $matchMode, $whereClause, $patternList) => { + let $patternParts, $patternPos, $where, $finalMatchMode, var$9, var$10, var$11; + if ($regQuery !== null) + return $regQuery.$ast0; + $patternParts = sci_ArraySeq_map($patternList.$ast0, new oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0); + $patternPos = oncie_PatternPartWithSelector_position(sc_IndexedSeqOps_head$($patternParts)); + oncipau_Util$_$callClinit(); + $where = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $whereClause); + $regQuery = oncipau_Util$_MODULE$; + $whereClause = new oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1; + $whereClause.$_0165 = $patternPos; + $finalMatchMode = oncipau_Util$_astOpt0($regQuery, $matchMode, $whereClause); + $whereClause = new oncia_SingleQuery; + $patternList = sci_ArraySeq$_MODULE$; + $regQuery = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncia_Match, 1); + var$10 = var$9.data; + var$11 = new oncia_Match; + $matchMode = oncie_Pattern$ForMatch__init_($patternParts, $patternPos); + s_package$_$callClinit(); + oncia_Match__init_(var$11, 0, $finalMatchMode, $matchMode, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), $where, $patternPos); + var$10[0] = var$11; + $regQuery = sr_ScalaRunTime$_wrapRefArray($regQuery, var$9); + sr_ClassTag$_$callClinit(); + oncia_SingleQuery__init_($whereClause, sci_ArraySeq$_from($patternList, $regQuery, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Match))), $patternPos); + return $whereClause; +}, +oncipvaf_ExpressionBuilder_exitTypeName0 = ($this, $ctx) => { + let $size, $p, $firstToken, var$5, var$6, var$7, var$8; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 963); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 187) { - oavr_Recognizer_setState($this, 962); - oavr_Parser_match($this, 187); - } - oavr_Recognizer_setState($this, 965); - oavr_Parser_match($this, 41); - oavr_Recognizer_setState($this, 966); - oncipv_Cypher5Parser_procedureName($this); - oavr_Recognizer_setState($this, 979); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) { - e: { - oavr_Recognizer_setState($this, 967); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 976); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4291035135, 4022337519)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4025286655, 4294967267)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697215, 4286545919)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 968); - oncipv_Cypher5Parser_procedureArgument($this); - oavr_Recognizer_setState($this, 973); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 49) - break e; - oavr_Recognizer_setState($this, 969); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 970); - oncipv_Cypher5Parser_procedureArgument($this); - oavr_Recognizer_setState($this, 975); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 978); - oavr_Parser_match($this, 239); + $size = ju_ArrayList_size($ctx.$children0); + oncipau_Util$_$callClinit(); + $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + $firstToken = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); + switch ($size) { + case 1: + switch ($firstToken) { + case 21: + var$5 = oncius_AnyType__init_(1, $p); + break a; + case 32: + case 33: + var$5 = oncius_BooleanType__init_(1, $p); + break a; + case 67: + var$5 = oncius_DateType__init_(1, $p); + break a; + case 90: + var$5 = oncius_DurationType__init_(1, $p); + break a; + case 92: + case 224: + var$5 = oncius_RelationshipType__init_(1, $p); + break a; + case 111: + var$5 = oncius_FloatType__init_(1, $p); + break a; + case 137: + case 138: + var$5 = oncius_IntegerType__init_(1, $p); + break a; + case 158: + var$5 = oncius_MapType__init_(1, $p); + break a; + case 173: + case 298: + var$5 = oncius_NodeType__init_(1, $p); + break a; + case 180: + break; + case 182: + var$5 = oncius_NullType__init_($p); + break a; + case 195: + case 196: + var$5 = oncius_PathType__init_(1, $p); + break a; + case 201: + var$5 = oncius_PointType__init_(1, $p); + break a; + case 263: + case 295: + var$5 = oncius_StringType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_NothingType__init_($p); + break a; + case 2: + switch ($firstToken) { + case 21: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 92: + case 224: + break; + case 158: + var$5 = oncius_MapType__init_(1, $p); + break a; + case 173: + case 298: + var$5 = oncius_NodeType__init_(1, $p); + break a; + case 294: + var$5 = oncius_AnyType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - f: { - oavr_Recognizer_setState($this, 996); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 306) { - oavr_Recognizer_setState($this, 981); - oavr_Parser_match($this, 306); - oavr_Recognizer_setState($this, 994); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 983); - oncipv_Cypher5Parser_procedureResultItem($this); - oavr_Recognizer_setState($this, 988); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 984); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 985); - oncipv_Cypher5Parser_procedureResultItem($this); - oavr_Recognizer_setState($this, 990); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 992); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 301) - break f; - oavr_Recognizer_setState($this, 991); - oncipv_Cypher5Parser_whereClause($this); - break f; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Recognizer_setState($this, 982); - oavr_Parser_match($this, 271); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } + var$5 = oncius_RelationshipType__init_(1, $p); + break a; + case 153: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 68: + break; + case 270: + var$5 = oncius_LocalTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + var$5 = oncius_LocalDateTimeType__init_(1, $p); + break a; + case 211: + break; + case 256: + var$5 = oncius_IntegerType__init_(1, $p); + break a; + case 308: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 68: + break; + case 270: + var$5 = oncius_ZonedTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$5 = oncius_ZonedDateTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$5 = oncius_PropertyValueType__init_(1, $p); + break a; + case 3: + switch ($firstToken) { + case 21: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 211: + break; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_PropertyValueType__init_(1, $p); + break a; + case 270: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 302: + break; + case 303: + var$5 = oncius_LocalTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_ZonedTimeType__init_(1, $p); + break a; + case 272: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 302: + break; + case 303: + var$5 = oncius_LocalDateTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_ZonedDateTimeType__init_(1, $p); + break a; + default: } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_procedureName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ProcedureNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 70, 35); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 998); - oncipv_Cypher5Parser_namespace($this); - oavr_Recognizer_setState($this, 999); - oncipv_Cypher5Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + case 4: + switch ($firstToken) { + case 21: + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncipv_Cypher5Parser$TypeNameContext_LT($ctx) !== null && oncipv_Cypher5Parser$TypeNameContext_GT($ctx) !== null)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + $p = oncip_AstRuleCtx_ast(oncipv_Cypher5Parser$TypeNameContext_type($ctx)); + if ($p instanceof oncius_ClosedDynamicUnionType) { + var$5 = $p; + break a; + } + var$5 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + var$6 = s_Predef$_Set(s_Predef$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 1); + var$8.data[0] = $p; + oncius_ClosedDynamicUnionType__init_(var$5, sci_Set$_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)), $p.$position()); + break a; + case 22: + case 151: + break; + case 270: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 302: + break; + case 303: + var$5 = oncius_LocalTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$5 = oncius_ZonedTimeType__init_(1, $p); + break a; + case 272: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 302: + break; + case 303: + var$5 = oncius_LocalDateTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_ZonedDateTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$5 = oncius_ListType__init_(oncip_AstRuleCtx_ast(oncipv_Cypher5Parser$TypeNameContext_type($ctx)), 1, $p); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_procedureArgument = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ProcedureArgumentContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 72, 36); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1001); - oncipv_Cypher5Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($firstToken) { + case 21: + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncipv_Cypher5Parser$TypeNameContext_LT($ctx) !== null && oncipv_Cypher5Parser$TypeNameContext_GT($ctx) !== null)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + $p = oncip_AstRuleCtx_ast(oncipv_Cypher5Parser$TypeNameContext_type($ctx)); + if ($p instanceof oncius_ClosedDynamicUnionType) { + var$5 = $p; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$5 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + var$6 = s_Predef$_Set(s_Predef$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 1); + var$8.data[0] = $p; + oncius_ClosedDynamicUnionType__init_(var$5, sci_Set$_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)), $p.$position()); + break a; + case 22: + case 151: + break; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$5 = oncius_ListType__init_(oncip_AstRuleCtx_ast(oncipv_Cypher5Parser$TypeNameContext_type($ctx)), 1, $p); } - return $_localctx; + $ctx.$ast0 = var$5; }, -oncipv_Cypher5Parser_procedureResultItem = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ProcedureResultItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 74, 37); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1003); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1006); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 1004); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 1005); - oncipv_Cypher5Parser_variable($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_ExpressionBuilder_exitTrimFunction0 = ($this, $ctx) => { + let $trimSource, $trimCharacterString, $trimSpecification, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + $trimSource = $ctx.$trimSource.$ast0; + oncipau_Util$_$callClinit(); + $trimCharacterString = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$trimCharacterString0); + $trimSpecification = oncipcaf_ParserTrimSpecification_BOTH.$description1; + if (oncip_AstRuleCtx_getToken($ctx, 149, 0) !== null) + $trimSpecification = oncipcaf_ParserTrimSpecification_LEADING.$description1; + if (oncip_AstRuleCtx_getToken($ctx, 276, 0) !== null) + $trimSpecification = oncipcaf_ParserTrimSpecification_TRAILING.$description1; + if (s_Option_isEmpty($trimCharacterString)) { + var$5 = new oncie_FunctionInvocation; + var$6 = oncie_FunctionName$_MODULE$; + oncief_Trim$_$callClinit(); + var$7 = oncie_FunctionName$_apply(var$6, $rt_s(5118), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_package$_$callClinit(); + var$8 = s_package$_IndexedSeq(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($trimSpecification, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)), $trimSource]); + var$8 = sc_SeqFactory$Delegate_apply(var$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$9)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$5, var$7, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$5 = new oncie_FunctionInvocation; + var$8 = oncie_FunctionName$_MODULE$; + oncief_Trim$_$callClinit(); + var$10 = oncie_FunctionName$_apply(var$8, $rt_s(5118), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_package$_$callClinit(); + var$11 = s_package$_IndexedSeq(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($trimSpecification, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)), $trimCharacterString.$get1(), $trimSource]); + var$8 = sc_SeqFactory$Delegate_apply(var$11, sr_ScalaRunTime$_wrapRefArray(var$7, var$9)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$5, var$10, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + $ctx.$ast0 = var$5; }, -oncipv_Cypher5Parser_loadCSVClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LoadCSVClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 76, 38); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1008); - oavr_Parser_match($this, 152); - oavr_Recognizer_setState($this, 1009); - oavr_Parser_match($this, 62); - oavr_Recognizer_setState($this, 1012); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 302) { - oavr_Recognizer_setState($this, 1010); - oavr_Parser_match($this, 302); - oavr_Recognizer_setState($this, 1011); - oavr_Parser_match($this, 125); - } - oavr_Recognizer_setState($this, 1014); - oavr_Parser_match($this, 114); - oavr_Recognizer_setState($this, 1015); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1016); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 1017); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1020); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 109) { - oavr_Recognizer_setState($this, 1018); - oavr_Parser_match($this, 109); - oavr_Recognizer_setState($this, 1019); - oncipv_Cypher5Parser_stringLiteral($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_StatementBuilder = $rt_classWithoutFields(0), +oncipvaf_StatementBuilder_exitSetItem0 = ($this, $ctx) => { + let var$2, $dynamicProp, $dynamicLabels, $dynamicLabels_0, $labels; + if ($ctx instanceof oncipv_Cypher5Parser$SetPropContext) { + var$2 = new oncia_SetPropertyItem; + oncipau_Util$_$callClinit(); + oncia_SetPropertyItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if ($ctx instanceof oncipv_Cypher5Parser$SetDynamicPropContext) { + oncipau_Util$_$callClinit(); + $dynamicProp = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$2 = oncia_SetDynamicPropertyItem__init_($dynamicProp, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, $dynamicProp.$position48); + } else if ($ctx instanceof oncipv_Cypher5Parser$SetPropsContext) { + var$2 = new oncia_SetExactPropertiesFromMapItem; + oncipau_Util$_$callClinit(); + oncia_SetExactPropertiesFromMapItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if ($ctx instanceof oncipv_Cypher5Parser$AddPropContext) { + var$2 = new oncia_SetIncludingPropertiesFromMapItem; + oncipau_Util$_$callClinit(); + oncia_SetIncludingPropertiesFromMapItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if ($ctx instanceof oncipv_Cypher5Parser$SetLabelsContext) { + oncipau_Util$_$callClinit(); + $dynamicLabels = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if ($dynamicLabels === null) + $rt_throw(s_MatchError__init_($dynamicLabels)); + $dynamicLabels_0 = s_Tuple2__init_($dynamicLabels.$_1(), $dynamicLabels.$_2()); + $labels = $dynamicLabels_0.$_10; + $dynamicLabels = $dynamicLabels_0.$_20; + var$2 = oncia_SetLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, $labels, $dynamicLabels, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + if (!($ctx instanceof oncipv_Cypher5Parser$SetLabelsIsContext)) { + $dynamicLabels = new jl_IllegalStateException; + $labels = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($labels); + jl_StringBuilder_append(jl_StringBuilder_append($labels, $rt_s(5116)), $ctx); + jl_Throwable__init_($dynamicLabels, jl_AbstractStringBuilder_toString($labels)); + $rt_throw($dynamicLabels); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + $dynamicLabels = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if ($dynamicLabels === null) + $rt_throw(s_MatchError__init_($dynamicLabels)); + $dynamicLabels_0 = s_Tuple2__init_($dynamicLabels.$_1(), $dynamicLabels.$_2()); + $labels = $dynamicLabels_0.$_10; + $dynamicLabels_0 = $dynamicLabels_0.$_20; + var$2 = oncia_SetLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, $labels, $dynamicLabels_0, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_foreachClause = $this => { - let $_localctx, var$2, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ForeachClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 78, 39); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1022); - oavr_Parser_match($this, 113); - oavr_Recognizer_setState($this, 1023); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1024); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1025); - oavr_Parser_match($this, 131); - oavr_Recognizer_setState($this, 1026); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1027); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 1029); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 1028); - oncipv_Cypher5Parser_clause($this); - oavr_Recognizer_setState($this, 1031); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$3 = var$2 - 41 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1048577, 33)), Long_ZERO)) - continue; - var$3 = var$2 - 110 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(67108873, 394496)), Long_ZERO)) - continue; - var$3 = var$2 - 174 | 0; - if (!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(140289, 135266304)), Long_ZERO)) - continue; - var$2 = var$2 - 250 | 0; - if (var$2 & (-64)) - break; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$2), Long_create(257, 1048896)), Long_ZERO)) - continue; - else - break; - } - oavr_Recognizer_setState($this, 1033); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +oncipvaf_StatementBuilder_indexHint = ($this, $ctx, $hintType) => { + let $spec, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncip_AstRuleCtx_getToken($ctx, 132, 0) !== null && oncipv_Cypher5Parser$HintContext_LPAREN($ctx) !== null && oncipv_Cypher5Parser$HintContext_LPAREN($ctx) !== null && oavr_ParserRuleContext_getChildCount($ctx) <= 9)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + $spec = oncip_AstRuleCtx_getToken($ctx, 246, 0) === null ? oncia_UsingIndexHint$SeekOrScan$_MODULE$ : oncia_UsingIndexHint$SeekOnly$_MODULE$; + var$4 = new oncia_UsingIndexHint; + var$5 = (oncipv_Cypher5Parser$HintContext_variable($ctx)).$ast0; + var$6 = (oncipv_Cypher5Parser$HintContext_labelOrRelType($ctx)).$ast0; + var$7 = oncipv_Cypher5Parser$HintContext_nonEmptyNameList($ctx); + var$8 = sci_ArraySeq$_MODULE$; + var$9 = sc_StrictOptimizedIterableOps_collect$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher5Parser$NonEmptyNameListContext_symbolicNameString(var$7))), new oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1); + sr_ClassTag$_$callClinit(); + var$10 = sci_ArraySeq$_from(var$8, var$9, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PropertyKeyName))); + oncipau_Util$_$callClinit(); + oncia_UsingIndexHint__init_(var$4, var$5, var$6, var$10, $spec, $hintType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + return var$4; +}; +function oncipvaf_Cypher5AstBuilder() { + let a = this; oncipv_AbstractCypher5AstBuilder.call(a); + a.$notificationLogger2 = null; + a.$exceptionFactory2 = null; + a.$RelGraphToken$module = null; + a.$NodeGraphToken$module = null; + a.$ElementGraphToken$module0 = null; + a.$Node$module = null; + a.$Rel$module0 = null; + a.$NoEntity$module = null; +} +let oncipvaf_Cypher5AstBuilder_exitStatements = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Statements; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StatementContext)); + sr_ClassTag$_$callClinit(); + oncia_Statements__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitStatement = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitRegularQuery = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$3 = $ctx.$children0.$size0; + if (var$3 != 1) { + var$4 = 1; + var$5 = 0; + var$6 = null; + while (var$4 < var$3) { + a: { + var$7 = ju_ArrayList_get($ctx.$children0, var$4); + if (var$7 instanceof oncipv_Cypher5Parser$SingleQueryContext) { + var$8 = var$7.$ast0; + var$7 = !var$5 ? oncia_UnionDistinct__init_(var$2, var$8, var$6) : oncia_UnionAll__init_(var$2, var$8, var$6); + var$5 = 0; + } else { + if (!$rt_isInstance(var$7, oavrt_TerminalNode)) { + var$2 = new jl_IllegalStateException; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(5119)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$7)); + $rt_throw(var$2); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$7 = var$7; + switch ((var$7.$getSymbol()).$getType0()) { + case 18: + break; + case 81: + var$5 = 0; + var$7 = var$2; + break a; + case 285: + var$6 = oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$7); + var$7 = var$2; + break a; + default: + $ctx = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5120)), var$7); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw($ctx); + } + var$5 = 1; + var$7 = var$2; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = var$4 + 1 | 0; + var$2 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_subqueryClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SubqueryClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 80, 40); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1036); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 187) { - oavr_Recognizer_setState($this, 1035); - oavr_Parser_match($this, 187); - } - oavr_Recognizer_setState($this, 1038); - oavr_Parser_match($this, 41); - oavr_Recognizer_setState($this, 1040); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) { - oavr_Recognizer_setState($this, 1039); - oncipv_Cypher5Parser_subqueryScope($this); - } - oavr_Recognizer_setState($this, 1042); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 1043); - oncipv_Cypher5Parser_regularQuery($this); - oavr_Recognizer_setState($this, 1044); - oavr_Parser_match($this, 217); - oavr_Recognizer_setState($this, 1046); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 131) { - oavr_Recognizer_setState($this, 1045); - oncipv_Cypher5Parser_subqueryInTransactionsParameters($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher5AstBuilder_exitSingleQuery = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_SingleQuery; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = $ctx.$children0; + sr_ClassTag$_$callClinit(); + oncia_SingleQuery__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Clause))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitClause = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitUseClause = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_UseGraph; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphReferenceContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_UseGraph__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitGraphReference = ($this, $ctx) => { + let var$2, var$3; + if (oncipv_Cypher5Parser$GraphReferenceContext_graphReference($ctx) !== null) + var$2 = (oncipv_Cypher5Parser$GraphReferenceContext_graphReference($ctx)).$ast0; + else if (oncipv_Cypher5Parser$GraphReferenceContext_functionInvocation($ctx) !== null) { + var$2 = new oncia_GraphFunctionReference; + var$3 = (oncipv_Cypher5Parser$GraphReferenceContext_functionInvocation($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_GraphFunctionReference__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_GraphDirectReference; + oncia_CatalogName$_$callClinit(); + var$3 = oncia_CatalogName$_apply(oncia_CatalogName$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameContext), 0)).$ast0); + oncipau_Util$_$callClinit(); + oncia_GraphDirectReference__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_subqueryScope = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SubqueryScopeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 82, 41); - a: { - b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1048); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1058); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - break f; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 247: - break e; - case 239: - break; - case 271: - oavr_Recognizer_setState($this, 1049); - oavr_Parser_match($this, 271); - break e; - default: - break e; - } - break e; - } - oavr_Recognizer_setState($this, 1050); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1055); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 49) - break e; - oavr_Recognizer_setState($this, 1051); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1052); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1057); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1060); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher5AstBuilder_exitSymbolicAliasName = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString($ctx); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +}, +oncipvaf_Cypher5AstBuilder_exitReturnClause = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + $ctx.$ast0 = oncia_Return_copy(var$2, var$2.$distinct1, var$2.$returnItems2, var$2.$orderBy2, var$2.$skip3, var$2.$limit3, var$2.$excludedNames, var$2.$addedInRewrite, var$2.$inTopLevelBraces, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitFinishClause = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Finish; + oncipau_Util$_$callClinit(); + oncia_Finish__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitReturnBody = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Return; + var$3 = oncip_AstRuleCtx_getToken($ctx, 81, 0) === null ? 0 : 1; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnItemsContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_Return__init_(var$2, var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$OrderByContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SkipContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LimitContext), 0)), oncia_Return$_apply$default$6(oncia_Return$_MODULE$), 0, + 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitReturnItems = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_ReturnItems; + var$3 = oncip_AstRuleCtx_getToken($ctx, 271, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnItemContext)); + sr_ClassTag$_$callClinit(); + var$4 = oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_(var$2, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitReturnItem = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); + var$4 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); + $ctx.$ast0 = var$4 === null ? oncia_UnaliasedReturnItem__init_(var$3.$ast0, oncipau_Util$_inputText(oncipau_Util$_MODULE$, var$3), var$2) : oncia_AliasedReturnItem__init_(var$3.$ast0, var$4.$ast0, var$2); +}, +oncipvaf_Cypher5AstBuilder_exitOrderItem = ($this, $ctx) => { + let var$2; + if ($ctx.$children0.$size0 != 1 && oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AscTokenContext), 0) === null) { + var$2 = new oncia_DescSortItem; + oncipau_Util$_$callClinit(); + oncia_DescSortItem__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_AscSortItem; + oncipau_Util$_$callClinit(); + oncia_AscSortItem__init_0(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitSkip = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Skip; + oncipau_Util$_$callClinit(); + oncia_Skip__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitLimit = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Limit; + oncipau_Util$_$callClinit(); + oncia_Limit__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitWhereClause = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Where; + oncipau_Util$_$callClinit(); + oncia_Where__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitWithClause = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnBodyContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)); + $ctx.$ast0 = oncia_With__init_0(var$2.$distinct1, var$2.$returnItems2, var$2.$orderBy2, var$2.$skip3, var$2.$limit3, var$3, oncia_DefaultWith$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitCreateClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternListContext), 0); + var$3 = var$2.$ast0; + var$4 = new oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_00; + var$4.$_01081 = $this; + var$4.$_1367 = var$2; + var$5 = sci_ArraySeq_map(var$3, var$4); + var$6 = new oncia_Create; + var$3 = new oncie_Pattern$ForUpdate; + oncipau_Util$_$callClinit(); + oncie_Pattern$ForUpdate__init_(var$3, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + oncia_Create__init_(var$6, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$6; +}, +oncipvaf_Cypher5AstBuilder_exitInsertClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$InsertPatternListContext), 0); + var$3 = new oncia_Insert; + var$4 = new oncie_Pattern$ForUpdate; + var$5 = var$2.$ast0; + oncipau_Util$_$callClinit(); + oncie_Pattern$ForUpdate__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + oncia_Insert__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitSetClause = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_SetClause; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = $ctx.$children0; + sr_ClassTag$_$callClinit(); + oncia_SetClause__init_(var$2, oncipau_Util$_astSeq0(var$3, var$4, 1, 2, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitSetItem = ($this, $ctx) => { + oncipvaf_StatementBuilder_exitSetItem0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitRemoveClause = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Remove; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$RemoveItemContext)); + sr_ClassTag$_$callClinit(); + oncia_Remove__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitRemoveItem = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + if ($ctx instanceof oncipv_Cypher5Parser$RemovePropContext) { + var$2 = $ctx; + var$3 = new oncia_RemovePropertyItem; + oncipau_Util$_$callClinit(); + oncia_RemovePropertyItem__init_(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0); + } else if ($ctx instanceof oncipv_Cypher5Parser$RemoveDynamicPropContext) { + var$2 = $ctx; + var$3 = new oncia_RemoveDynamicPropertyItem; + oncipau_Util$_$callClinit(); + oncia_RemoveDynamicPropertyItem__init_(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0); + } else if ($ctx instanceof oncipv_Cypher5Parser$RemoveLabelsContext) { + var$2 = $ctx; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if (var$4 === null) + $rt_throw(s_MatchError__init_(var$4)); + var$3 = s_Tuple2__init_(var$4.$_1(), var$4.$_2()); + var$4 = var$3.$_10; + var$5 = var$3.$_20; + var$3 = oncia_RemoveLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$4, var$5, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + if (!($ctx instanceof oncipv_Cypher5Parser$RemoveLabelsIsContext)) { + var$2 = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5116)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw(var$2); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = $ctx; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if (var$4 === null) + $rt_throw(s_MatchError__init_(var$4)); + var$3 = s_Tuple2__init_(var$4.$_1(), var$4.$_2()); + var$4 = var$3.$_10; + var$5 = var$3.$_20; + var$3 = oncia_RemoveLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$4, var$5, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_subqueryInTransactionsParameters = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 84, 42); +oncipvaf_Cypher5AstBuilder_exitDeleteClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oncip_AstRuleCtx_getToken($ctx, 78, 0) === null ? 0 : 1; + var$3 = new oncia_Delete; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext)); + sr_ClassTag$_$callClinit(); + oncia_Delete__init_(var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitMatchClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = sci_ArraySeq_map((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternListContext), 0)).$ast0, new oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$4 = oncip_AstRuleCtx_getToken($ctx, 187, 0) === null ? oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1) : oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2); + var$5 = new oncia_Match; + var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0() != 187 ? 0 : 1; + var$7 = oncipau_Util$_MODULE$; + var$8 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MatchModeContext), 0); + var$9 = new oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1; + var$9.$_010 = var$3; + var$7 = oncipau_Util$_astOpt0(var$7, var$8, var$9); + var$10 = oncie_Pattern$ForMatch__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$4)); + var$8 = oncipau_Util$_MODULE$; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$HintContext)); + sr_ClassTag$_$callClinit(); + oncia_Match__init_(var$5, var$6, var$7, var$10, sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$8, var$2, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)), var$3); + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher5AstBuilder_exitMatchMode = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1062); - oavr_Parser_match($this, 131); - oavr_Recognizer_setState($this, 1067); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 58, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - f: { - oavr_Recognizer_setState($this, 1064); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 57, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1063); - oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1066); - oavr_Parser_match($this, 54); - } - oavr_Recognizer_setState($this, 1069); - oavr_Parser_match($this, 278); - oavr_Recognizer_setState($this, 1075); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - g: { - try { - while (true) { - $_la = $_la - 183 | 0; - if ($_la & (-64)) - break; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(5, 16384)), Long_ZERO)) - break; - h: { - oavr_Recognizer_setState($this, 1073); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 183: - break; - case 185: - oavr_Recognizer_setState($this, 1071); - oncipv_Cypher5Parser_subqueryInTransactionsErrorParameters($this); - break h; - case 229: - oavr_Recognizer_setState($this, 1072); - oncipv_Cypher5Parser_subqueryInTransactionsReportParameters($this); - break h; - default: - break g; - } - oavr_Recognizer_setState($this, 1070); - oncipv_Cypher5Parser_subqueryInTransactionsBatchParameters($this); - } - oavr_Recognizer_setState($this, 1077); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $rt_throw(oavr_NoViableAltException__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - } else{ - $_localctx = $$je; - break c; - } - } - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); + switch (var$2.$getType0()) { + case 79: + var$3 = oncie_MatchMode$DifferentRelationships__init_(0, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); + break a; + case 227: + break; + default: + var$4 = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5116)), $ctx), $rt_s(5121)), var$2), 41); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$4); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = oncie_MatchMode$RepeatableElements__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_subqueryInTransactionsBatchParameters = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 86, 43); +oncipvaf_Cypher5AstBuilder_exitHint = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1078); - oavr_Parser_match($this, 183); - oavr_Recognizer_setState($this, 1079); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1080); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 237 && $_la != 238) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol(); + switch (var$2.$getType0()) { + case 38: + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, oncipcaf_ASTExceptionFactory_invalidHintIndexType(oncipcaf_HintIndexType_BTREE), oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2))); + case 132: + break; + case 140: + var$2 = new oncia_UsingJoinHint; + var$3 = oncipv_Cypher5Parser$HintContext_nonEmptyNameList($ctx); + onciu_NonEmptyList$_$callClinit(); + oncia_UsingJoinHint__init_(var$2, onciu_NonEmptyList$_from(onciu_NonEmptyList$_MODULE$, sc_StrictOptimizedIterableOps_collect$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, var$3.$children0)), new oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 201: + var$2 = oncipvaf_StatementBuilder_indexHint($this, $ctx, oncia_UsingIndexHint$UsingPointIndexType$_MODULE$); + break a; + case 215: + var$2 = oncipvaf_StatementBuilder_indexHint($this, $ctx, oncia_UsingIndexHint$UsingRangeIndexType$_MODULE$); + break a; + case 240: + var$2 = oncia_UsingScanHint__init_((oncipv_Cypher5Parser$HintContext_variable($ctx)).$ast0, (oncipv_Cypher5Parser$HintContext_labelOrRelType($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 268: + var$2 = oncipvaf_StatementBuilder_indexHint($this, $ctx, oncia_UsingIndexHint$UsingTextIndexType$_MODULE$); + break a; + default: + $ctx = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5120)), var$2); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncipvaf_StatementBuilder_indexHint($this, $ctx, oncia_UsingIndexHint$UsingAnyIndexType$_MODULE$); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_subqueryInTransactionsErrorParameters = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 88, 44); +oncipvaf_Cypher5AstBuilder_exitNonEmptyNameList = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncipv_Cypher5Parser$NonEmptyNameListContext_symbolicNameString($ctx); + var$4 = new oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_00; + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeqPositioned(var$2, var$3, var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PropertyKeyName))); +}, +oncipvaf_Cypher5AstBuilder_exitMergeClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + var$3 = var$2.$ast0; + if ($rt_isInstance(var$3, oncie_NonPrefixedPatternPart)) { + var$4 = var$3; + var$5 = new oncia_Merge; + var$2 = oncipau_Util$_MODULE$; + var$6 = $ctx.$children0; + sr_ClassTag$_$callClinit(); + oncia_Merge__init_(var$5, var$4, oncipau_Util$_astSeq(var$2, var$6, 2, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$5; + return; + } + if (!(var$3 instanceof oncie_PatternPartWithSelector)) + $rt_throw(s_MatchError__init_(var$3)); + $ctx = var$3; + var$5 = $this.$exceptionFactory2; + $ctx = $ctx.$selector1.$prettified(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5122)), $ctx), $rt_s(5123)); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$3), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2))); +}, +oncipvaf_Cypher5AstBuilder_exitMergeAction = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1082); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 1083); - oavr_Parser_match($this, 106); - oavr_Recognizer_setState($this, 1084); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 36 && $_la != 59 && $_la != 107) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0(); + switch (var$2) { + case 61: + var$3 = oncia_OnCreate__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 159: + var$3 = oncia_OnMatch__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_subqueryInTransactionsReportParameters = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 90, 45); +oncipvaf_Cypher5AstBuilder_exitUnwindClause = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Unwind; + oncipau_Util$_$callClinit(); + oncia_Unwind__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitCallClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ProcedureNameContext), 0)).$ast0; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$3 = s_Tuple2__init_(var$2.$_1(), var$2.$_2()); + var$4 = var$3.$_10; + var$3 = var$3.$_20; + if (oncip_AstRuleCtx_getToken($ctx, 239, 0) === null) + var$5 = s_None$_MODULE$; + else { + var$5 = new s_Some; + oncipau_Util$_$callClinit(); + var$6 = oncipau_Util$_MODULE$; + var$7 = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ProcedureArgumentContext))), new oncipvaf_StatementBuilder$exitCallClause$lambda$_68_00), jus_Collectors_toList()); + sr_ClassTag$_$callClinit(); + s_Some__init_0(var$5, oncipau_Util$_astSeq(var$6, var$7, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression)))); + } + var$8 = oncip_AstRuleCtx_getToken($ctx, 271, 0) === null ? 0 : 1; + if (oncipv_Cypher5Parser$CallClauseContext_YIELD($ctx) !== null && !var$8) { + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ProcedureResultItemContext)); + sr_ClassTag$_$callClinit(); + var$2 = oncipau_Util$_astSeq(var$2, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_ProcedureResultItem))); + var$9 = s_Some__init_(oncia_ProcedureResult__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncipv_Cypher5Parser$CallClauseContext_YIELD($ctx)).$getSymbol()))); + } else + var$9 = s_None$_MODULE$; + var$7 = new oncia_UnresolvedCall; + var$10 = oncip_AstRuleCtx_getToken($ctx, 187, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_UnresolvedCall__init_(var$7, var$4, var$3, var$5, var$9, var$8, var$10, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher5AstBuilder_exitProcedureName = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamespaceContext), 0)).$ast0; + var$3 = new oncie_ProcedureName; + var$4 = (oncipv_Cypher5Parser$ProcedureNameContext_symbolicNameString($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncie_ProcedureName__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$ProcedureNameContext_symbolicNameString($ctx))); + $ctx.$ast0 = s_Tuple2__init_(var$2, var$3); +}, +oncipvaf_Cypher5AstBuilder_exitProcedureArgument = ($this, $ctx) => { + $ctx.$ast0 = oncipv_Cypher5Parser$ProcedureArgumentContext_expression($ctx); +}, +oncipvaf_Cypher5AstBuilder_exitProcedureResultItem = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0)).$ast0; + if (oncipv_Cypher5Parser$ProcedureResultItemContext_variable($ctx) === null) { + var$3 = oncia_ProcedureResultItem$_MODULE$; + var$4 = new oncie_Variable; + oncipau_Util$_$callClinit(); + var$5 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$4, var$2, var$5, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + var$3 = oncia_ProcedureResultItem$_apply(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$4 = (oncipv_Cypher5Parser$ProcedureResultItemContext_variable($ctx)).$ast0; + var$5 = oncia_ProcedureResultItem$_MODULE$; + var$3 = oncie_ProcedureOutput__init_(var$2, var$4.$position4); + oncipau_Util$_$callClinit(); + var$3 = oncia_ProcedureResultItem$_apply0(var$5, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitLoadCSVClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oncip_AstRuleCtx_getToken($ctx, 125, 0) === null ? 0 : 1; + oncia_LoadCSV$_$callClinit(); + var$3 = oncia_LoadCSV$_MODULE$; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0; + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_LoadCSV$_fromUrl(var$3, var$2, var$4, var$5, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitForeachClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = new oncia_Foreach; + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; + var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 4)).$ast0; + var$5 = oncipau_Util$_MODULE$; + var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ClauseContext)); + sr_ClassTag$_$callClinit(); + oncia_Foreach__init_(var$2, var$3, var$4, oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitSubqueryClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SubqueryScopeContext), 0); + if (var$2 === null) { + var$3 = new oncia_ImportingWithSubqueryCall; + var$4 = (oncipv_Cypher5Parser$SubqueryClauseContext_regularQuery($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_ImportingWithSubqueryCall__init_(var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$SubqueryClauseContext_subqueryInTransactionsParameters($ctx)), oncipv_Cypher5Parser$SubqueryClauseContext_OPTIONAL($ctx) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = var$2.$ast0; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$5 = var$2.$_1$mcZ$sp(); + var$2 = var$2.$_2(); + var$3 = s_Tuple2__init_(jl_Boolean_valueOf(var$5), var$2); + var$5 = s_Tuple2__1$mcZ$sp(var$3); + var$4 = var$3.$_20; + var$3 = new oncia_ScopeClauseSubqueryCall; + var$6 = (oncipv_Cypher5Parser$SubqueryClauseContext_regularQuery($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_ScopeClauseSubqueryCall__init_(var$3, var$6, var$5, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$SubqueryClauseContext_subqueryInTransactionsParameters($ctx)), oncipv_Cypher5Parser$SubqueryClauseContext_OPTIONAL($ctx) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitSubqueryScope = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new s_Tuple2; + var$3 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 271, 0) === null ? 0 : 1); + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext)); + sr_ClassTag$_$callClinit(); + s_Tuple2__init_0(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Variable)))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsParameters = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$2 = oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters($ctx); + var$3 = oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters($ctx); + var$4 = oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters($ctx); + var$5 = var$2.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$2.$get0(0)).$ast0); + if (oncip_AstRuleCtx_getToken($ctx, 54, 0) === null) + var$6 = s_None$_MODULE$; + else { + var$6 = new s_Some; + var$7 = new oncia_SubqueryCall$InTransactionsConcurrencyParameters; + oncipau_Util$_$callClinit(); + oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_(var$7, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 131, 0)).$getSymbol())); + s_Some__init_0(var$6, var$7); + } + var$7 = var$3.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$3.$get0(0)).$ast0); + var$3 = var$4.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$4.$get0(0)).$ast0); + var$4 = new oncia_SubqueryCall$InTransactionsParameters; + oncipau_Util$_$callClinit(); + oncia_SubqueryCall$InTransactionsParameters__init_(var$4, var$5, var$6, var$7, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 278, 0)).$getSymbol())); + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsBatchParameters = ($this, $ctx) => { + let var$2; + var$2 = new oncia_SubqueryCall$InTransactionsBatchParameters; + oncipau_Util$_$callClinit(); + oncia_SubqueryCall$InTransactionsBatchParameters__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsErrorParameters = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1086); - oavr_Parser_match($this, 229); - oavr_Recognizer_setState($this, 1087); - oavr_Parser_match($this, 261); - oavr_Recognizer_setState($this, 1088); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 1089); - oncipv_Cypher5Parser_variable($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 2)).$getSymbol()).$getType0(); + switch (var$2) { + case 36: + var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$; + break a; + case 59: + var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$; + break a; + case 107: + var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$; + break a; + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); + } + $ctx.$ast0 = oncia_SubqueryCall$InTransactionsErrorParameters__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsReportParameters = ($this, $ctx) => { + let var$2; + var$2 = new oncia_SubqueryCall$InTransactionsReportParameters; + oncipau_Util$_$callClinit(); + oncia_SubqueryCall$InTransactionsReportParameters__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitOrderBySkipLimitClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_With; + var$3 = new oncia_ReturnItems; + s_package$_$callClinit(); + var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + var$5 = s_None$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_ReturnItems__init_(var$3, 1, var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + oncia_With__init_(var$2, 0, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$OrderByContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SkipContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LimitContext), 0)), s_None$_MODULE$, oncia_DefaultWith$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, + $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitPeriodicCommitQueryHintFailure = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitPatternList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PatternContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PatternPart))); +}, +oncipvaf_Cypher5AstBuilder_exitPattern = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SelectorContext), 0); + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AnonymousPatternContext), 0)).$ast0; + if (var$2 === null) + var$2 = var$4; + else { + var$5 = var$2.$ast0; + var$2 = oncie_NamedPatternPart__init_(var$5, var$4, var$5.$position4); + } + $ctx.$ast0 = var$3 === null ? var$2 : oncie_PatternPartWithSelector__init_(var$3.$ast0, var$2); +}, +oncipvaf_Cypher5AstBuilder_exitInsertPatternList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$InsertPatternContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PathPatternPart))); +}, +oncipvaf_Cypher5AstBuilder_exitInsertPattern = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + if (oncipv_Cypher5Parser$InsertPatternContext_EQ($ctx) !== null) + $ctx.$ast0 = null; + else { + var$2 = $ctx.$children0.$size0; + if (var$2 == 1) { + var$3 = new oncie_PathPatternPart; + oncipau_Util$_$callClinit(); + oncie_PathPatternPart__init_0(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0); + $ctx.$ast0 = var$3; + } else { + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$4 = null; + var$5 = null; + var$6 = 0; + while (var$6 < var$2) { + var$7 = ju_ArrayList_get($ctx.$children0, var$6); + if (var$7 instanceof oncipv_Cypher5Parser$InsertNodePatternContext) { + var$7 = var$7.$ast0; + if (var$5 !== null) { + var$8 = oncie_RelationshipChain__init_(var$4, var$5, var$7, var$3); + var$5 = null; + var$7 = var$8; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } else { + if (!(var$7 instanceof oncipv_Cypher5Parser$InsertRelationshipPatternContext)) { + $ctx = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5115)), var$7); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($ctx); + } + var$5 = var$7.$ast0; + var$7 = var$4; } + var$6 = var$6 + 1 | 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $ctx.$ast0 = oncie_PathPatternPart__init_(var$4); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher5Parser_orderBySkipLimitClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$OrderBySkipLimitClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 92, 46); +}; +let oncipvaf_Cypher5AstBuilder_exitQuantifier = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1103); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 150: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1102); - oncipv_Cypher5Parser_limit($this); - break e; - case 184: - case 258: - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1098); - oncipv_Cypher5Parser_skip($this); - oavr_Recognizer_setState($this, 1100); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 63, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1099); - oncipv_Cypher5Parser_limit($this); - } - break e; - case 191: - g: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1091); - oncipv_Cypher5Parser_orderBy($this); - oavr_Recognizer_setState($this, 1093); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 61, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 1092); - oncipv_Cypher5Parser_skip($this); - } - h: { - oavr_Recognizer_setState($this, 1096); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 62, $this.$_ctx)) { - case 1: - break; - default: - break h; - } - oavr_Recognizer_setState($this, 1095); - oncipv_Cypher5Parser_limit($this); - } - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); + var$3 = var$2.$getType0(); + switch (var$3) { + case 147: + if ($ctx.$from21 === null && $ctx.$to4 === null && oncip_AstRuleCtx_getToken($ctx, 49, 0) === null) { + var$4 = new oncie_FixedQuantifier; + var$5 = oncipau_Util$_MODULE$; + oncie_FixedQuantifier__init_(var$4, oncipau_Util$_unsignedDecimalInt(var$5, (oncipau_Util$_nodeChild(var$5, $ctx, 1)).$getSymbol()), oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = oncie_IntervalQuantifier__init_(oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$from21), oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$to4), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 199: + var$4 = oncie_PlusQuantifier__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); + break a; + case 271: + var$4 = oncie_StarQuantifier__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$3))); } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_patternList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PatternListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 94, 47); +oncipvaf_Cypher5AstBuilder_exitAnonymousPattern = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0); + if (var$2 instanceof oncipv_Cypher5Parser$PatternElementContext) { + var$3 = var$2; + var$2 = oncie_PathPatternPart__init_(var$3.$ast0); + } else { + if (!(var$2 instanceof oncipv_Cypher5Parser$ShortestPathPatternContext)) { + var$2 = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5116)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); + } + var$2 = var$2.$ast0; + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitShortestPathPattern = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); + $ctx.$ast0 = oncie_ShortestPathsPatternPart__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternElementContext), 0)).$ast0, var$2.$getType0() == 17 ? 0 : 1, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher5AstBuilder_exitPatternElement = ($this, $ctx) => { + oncipvaf_ExpressionBuilder_exitPatternElement($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitSelector = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if ($ctx instanceof oncipv_Cypher5Parser$AnyShortestPathContext) { + var$3 = $ctx; + var$4 = oncie_PatternPart$AnyShortestPath__init_(oncipvaf_ExpressionBuilder_selectorCount0($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); + } else if ($ctx instanceof oncipv_Cypher5Parser$AllShortestPathContext) { + var$2 = $ctx; + var$4 = oncie_PatternPart$AllShortestPaths__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } else if ($ctx instanceof oncipv_Cypher5Parser$AnyPathContext) { + var$3 = $ctx; + var$4 = oncie_PatternPart$AnyPath__init_(oncipvaf_ExpressionBuilder_selectorCount0($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); + } else if ($ctx instanceof oncipv_Cypher5Parser$ShortestGroupContext) { + var$3 = $ctx; + var$4 = oncie_PatternPart$ShortestGroups__init_(oncipvaf_ExpressionBuilder_selectorCount0($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); + } else { + if (!($ctx instanceof oncipv_Cypher5Parser$AllPathContext)) { + var$2 = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5116)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); + } + var$4 = oncie_PatternPart$AllPaths__init_(var$2); + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher5AstBuilder_exitParenthesizedPath = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$3 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if ($rt_isInstance(var$3, oncie_NonPrefixedPatternPart)) { + var$4 = var$3; + var$3 = oncipv_Cypher5Parser$ParenthesizedPathContext_quantifier($ctx); + $ctx.$ast0 = var$3 === null ? oncie_ParenthesizedPath__init_(var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$ParenthesizedPathContext_expression($ctx)), var$2) : oncie_QuantifiedPath$_apply(oncie_QuantifiedPath$_MODULE$, var$4, var$3.$ast0, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$ParenthesizedPathContext_expression($ctx)), var$2); + return; + } + if (!(var$3 instanceof oncie_PatternPartWithSelector)) + $rt_throw(s_MatchError__init_(var$3)); + var$2 = var$3; + $ctx = oncipv_Cypher5Parser$ParenthesizedPathContext_quantifier($ctx) !== null ? $rt_s(5124) : $rt_s(5125); + var$5 = $this.$exceptionFactory2; + var$3 = var$2.$selector1.$prettified(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5122)), var$3), $rt_s(5126)), $ctx), $rt_s(5127)); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$4), oncie_PatternPartWithSelector_position(var$2))); +}, +oncipvaf_Cypher5AstBuilder_exitProperties = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitPathLength = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + if (oncip_AstRuleCtx_getToken($ctx, 84, 0) !== null) { + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$from23); + var$3 = oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$to5); + var$4 = new s_Some; + var$5 = new oncie_Range; + var$6 = s_Option_map(var$2, new oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_00); + var$7 = new oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_10; + var$7.$_01010 = $ctx; + oncie_Range__init_0(var$5, var$2, var$3, s_Option_getOrElse(var$6, var$7)); + s_Some__init_0(var$4, var$5); + } else { + var$2 = $ctx.$single2; + if (var$2 === null) + var$4 = s_None$_MODULE$; + else { + var$3 = new s_Some; + var$4 = new oncie_UnsignedDecimalIntegerLiteral; + var$7 = var$2.$getText(); + oncipau_Util$_$callClinit(); + oncie_UnsignedDecimalIntegerLiteral__init_(var$4, var$7, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $ctx.$single2)); + s_Some__init_0(var$3, var$4); + var$4 = s_Some__init_(oncie_Range__init_(var$3, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))); + } + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher5AstBuilder_exitExpression = ($this, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_00); +}, +oncipvaf_Cypher5AstBuilder_exitExpression11 = ($this, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_00); +}, +oncipvaf_Cypher5AstBuilder_exitExpression10 = ($this, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_00); +}, +oncipvaf_Cypher5AstBuilder_exitExpression9 = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1105); - oncipv_Cypher5Parser_pattern($this); - oavr_Recognizer_setState($this, 1110); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 1106); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1107); - oncipv_Cypher5Parser_pattern($this); - oavr_Recognizer_setState($this, 1112); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED) { + b: { + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$Expression8Context), 0); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx); + if (var$2 !== null) { + if (jl_Object_equals(var$2, var$3)) + break a; + else + break b; } + if (var$3 === null) + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(jl_AssertionError__init_($rt_s(35))); + } + } + c: { + switch ($ctx.$children0.$size0) { + case 1: + break; + case 2: + var$3 = new oncie_Not; + oncipau_Util$_$callClinit(); + oncie_Not__init_(var$3, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break c; + default: + var$3 = scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 179))); + oncipau_Util$_$callClinit(); + var$3 = sc_AbstractIterable_foldRight(var$3, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_00); + break c; + } + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitExpression8 = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + a: { + var$2 = $ctx.$children0; + switch (var$2.$size0) { + case 1: + break; + case 3: + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_ExpressionBuilder_binaryPredicate0($this, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, oncip_AstRuleCtx_getChild($ctx, 1), oncip_AstRuleCtx_getChild($ctx, 2)); + break a; + default: + var$3 = oncie_Ands$_MODULE$; + var$2 = (sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, var$2)))).$sliding(3, 2); + var$4 = new oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0; + var$4.$_0999 = $this; + var$4.$_1341 = $ctx; + var$5 = sc_Iterator_map$(var$2, var$4); + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$2 = oncie_Ands$_apply(var$3, var$5, oncipau_Util$_pos1(var$2, oncipau_Util$_nodeChild(var$2, $ctx, 1))); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_insertPatternList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$InsertPatternListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 96, 48); +oncipvaf_Cypher5AstBuilder_exitExpression7 = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1113); - oncipv_Cypher5Parser_insertPattern($this); - oavr_Recognizer_setState($this, 1118); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 1114); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1115); - oncipv_Cypher5Parser_insertPattern($this); - oavr_Recognizer_setState($this, 1120); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($ctx.$children0.$size0) { + case 1: + break; + default: + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$3 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + if (var$3 instanceof oncipv_Cypher5Parser$StringAndListComparisonContext) { + var$3 = oncipvaf_ExpressionBuilder_stringAndListComparisonExpression($this, var$2, var$3); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$3 instanceof oncipv_Cypher5Parser$NullComparisonContext) { + var$3 = oncipvaf_ExpressionBuilder_nullComparisonExpression($this, var$2, var$3); + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_pattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 98, 49); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1124); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 67, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1121); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1122); - oavr_Parser_match($this, 100); - } - oavr_Recognizer_setState($this, 1127); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 21 && $_la != 254)) { - oavr_Recognizer_setState($this, 1126); - oncipv_Cypher5Parser_selector($this); - } - oavr_Recognizer_setState($this, 1129); - oncipv_Cypher5Parser_anonymousPattern($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if (var$3 instanceof oncipv_Cypher5Parser$TypeComparisonContext) { + var$3 = oncipvaf_ExpressionBuilder_typeComparisonExpression($this, var$2, var$3); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (!(var$3 instanceof oncipv_Cypher5Parser$NormalFormComparisonContext)) { + var$3 = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5128)), $ctx); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$3); } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = var$3; + var$3 = oncipvaf_ExpressionBuilder_normalFormComparisonExpression0($this, var$2, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher5Parser$NormalFormContext), 0), oncip_AstRuleCtx_getToken(var$4, 179, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$4)); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_insertPattern = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$InsertPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 100, 50); +oncipvaf_Cypher5AstBuilder_exitComparisonExpression6 = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitNormalForm = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1134); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221224448, 4294737919)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4290969599, 4022337519)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4294967265)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697087, 4286545919)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 1131); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1132); - oavr_Parser_match($this, 100); - } - oavr_Recognizer_setState($this, 1136); - oncipv_Cypher5Parser_insertNodePattern($this); - oavr_Recognizer_setState($this, 1142); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 156 && $_la != 161 && $_la != 310 && $_la != 311)) { - oavr_Recognizer_setState($this, 1137); - oncipv_Cypher5Parser_insertRelationshipPattern($this); - oavr_Recognizer_setState($this, 1138); - oncipv_Cypher5Parser_insertNodePattern($this); - oavr_Recognizer_setState($this, 1144); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = ((oncip_AstRuleCtx_getChild($ctx, 0)).$getSymbol()).$getType0(); + switch (var$2) { + case 168: + break; + case 169: + oncie_NFDNormalForm$_$callClinit(); + var$3 = oncie_NFDNormalForm$_MODULE$; + break a; + case 170: + oncie_NFKCNormalForm$_$callClinit(); + var$3 = oncie_NFKCNormalForm$_MODULE$; + break a; + case 171: + oncie_NFKDNormalForm$_$callClinit(); + var$3 = oncie_NFKDNormalForm$_MODULE$; + break a; + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncie_NFCNormalForm$_$callClinit(); + var$3 = oncie_NFCNormalForm$_MODULE$; } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_quantifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$QuantifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 102, 51); +oncipvaf_Cypher5AstBuilder_exitExpression6 = ($this, $ctx) => { + let var$2, var$3; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = new oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_00; + var$3.$_01160 = $this; + $ctx.$ast0 = oncipau_Util$_astBinaryFold(var$2, $ctx, var$3); +}, +oncipvaf_Cypher5AstBuilder_exitExpression5 = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = new oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0; + var$3.$_01187 = $this; + $ctx.$ast0 = oncipau_Util$_astBinaryFold(var$2, $ctx, var$3); +}, +oncipvaf_Cypher5AstBuilder_exitExpression4 = ($this, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0); +}, +oncipvaf_Cypher5AstBuilder_exitExpression3 = ($this, $ctx) => { + let var$2; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1159); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 73, $this.$_ctx)) { - case 1: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1145); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 1146); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 1147); - oavr_Parser_match($this, 217); - break e; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1148); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 1150); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - oavr_Recognizer_setState($this, 1149); - $_localctx.$from21 = oavr_Parser_match($this, 5); - } - oavr_Recognizer_setState($this, 1152); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1154); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - oavr_Recognizer_setState($this, 1153); - $_localctx.$to4 = oavr_Parser_match($this, 5); - } - oavr_Recognizer_setState($this, 1156); - oavr_Parser_match($this, 217); - break e; - case 3: - break; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 1158); - oavr_Parser_match($this, 271); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1157); - oavr_Parser_match($this, 199); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($ctx.$children0.$size0) { + case 1: + break; + default: + if (oncip_AstRuleCtx_getToken($ctx, 199, 0) === null) { + var$2 = new oncie_UnarySubtract; + oncipau_Util$_$callClinit(); + oncie_UnarySubtract__init_(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$2 = new oncie_UnaryAdd; + oncipau_Util$_$callClinit(); + oncie_UnaryAdd__init_(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_anonymousPattern = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AnonymousPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 104, 52); +oncipvaf_Cypher5AstBuilder_exitExpression2 = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1163); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 17: - case 253: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1161); - oncipv_Cypher5Parser_shortestPathPattern($this); - break e; - case 155: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1162); - oncipv_Cypher5Parser_patternElement($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + switch ($ctx.$children0.$size0) { + case 1: + break; + default: + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = new oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0; + var$3.$_01179 = $this; + var$2 = oncipau_Util$_astCtxReduce(var$2, $ctx, var$3); + break a; + } + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitPostFix = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitProperty = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitDynamicProperty = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitPropertyExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = new oncie_Property; + oncipau_Util$_$callClinit(); + oncie_Property__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$3 = $ctx.$children0.$size0; + var$4 = 2; + while (var$4 < var$3) { + var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, var$4)).$ast0; + var$6 = oncie_Property__init_(var$2, var$5, var$5.$position30); + var$4 = var$4 + 1 | 0; + var$2 = var$6; + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitDynamicPropertyExpression = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + $ctx.$ast0 = oncie_ContainerIndex__init_0((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, var$2, var$2.$position()); +}, +oncipvaf_Cypher5AstBuilder_exitExpression1 = ($this, $ctx) => { + switch ($ctx.$children0.$size0) { + case 1: + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + return; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5129)); + $rt_throw($ctx); +}, +oncipvaf_Cypher5AstBuilder_exitCaseExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncie_CaseExpression; + var$3 = s_None$_MODULE$; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CaseAlternativeContext)); + sr_ClassTag$_$callClinit(); + oncie_CaseExpression__init_(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitCaseAlternative = ($this, $ctx) => { + let var$2; + var$2 = new s_Tuple2; + oncipau_Util$_$callClinit(); + s_Tuple2__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitExtendedCaseExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + var$3 = new oncie_CaseExpression; + var$4 = s_Some__init_(var$2); + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ExtendedCaseAlternativeContext)); + var$6 = var$5.$size(); + var$7 = scm_ArrayBuffer__init_0(var$6); + var$8 = 0; + a: while (true) { + if (var$8 >= var$6) { + var$9 = sci_ArraySeq$_MODULE$; + sr_ClassTag$_$callClinit(); + oncie_CaseExpression__init_(var$3, var$4, sci_ArraySeq$_unsafeWrapArray(var$9, sc_IterableOnceOps_toArray$(var$7, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(s_Tuple2)))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$elseExp), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$3; + return; + } + var$9 = var$5.$get0(var$8); + var$10 = var$9.$children0.$size0; + var$11 = 1; + var$12 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, var$9)).$ast0; + while (var$11 < var$10) { + var$13 = ju_ArrayList_get(var$9.$children0, var$11); + if (var$13 instanceof oncipv_Cypher5Parser$ExtendedWhenContext) { + var$13 = var$13; + if (var$13 instanceof oncipv_Cypher5Parser$WhenEqualsContext) { + var$14 = new oncie_Equals; + var$15 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, var$13, 0); + var$13 = oncipau_Util$_MODULE$; + oncie_Equals__init_(var$14, var$2, var$15, oncipau_Util$_pos1(var$13, oncipau_Util$_nodeChild(var$13, var$9, var$11 - 1 | 0))); + } else if (var$13 instanceof oncipv_Cypher5Parser$WhenComparatorContext) + var$14 = oncipvaf_ExpressionBuilder_binaryPredicate0($this, var$2, oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, var$13, 0), oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$13, 1)); + else if (var$13 instanceof oncipv_Cypher5Parser$WhenStringOrListContext) + var$14 = oncipvaf_ExpressionBuilder_stringAndListComparisonExpression($this, var$2, var$13); + else if (var$13 instanceof oncipv_Cypher5Parser$WhenNullContext) + var$14 = oncipvaf_ExpressionBuilder_nullComparisonExpression($this, var$2, var$13); + else if (var$13 instanceof oncipv_Cypher5Parser$WhenTypeContext) + var$14 = oncipvaf_ExpressionBuilder_typeComparisonExpression($this, var$2, var$13); + else { + if (!(var$13 instanceof oncipv_Cypher5Parser$WhenFormContext)) + break a; + var$14 = var$13; + var$14 = oncipvaf_ExpressionBuilder_normalFormComparisonExpression0($this, var$2, oavr_ParserRuleContext_getRuleContext(var$14, $rt_cls(oncipv_Cypher5Parser$NormalFormContext), 0), oncip_AstRuleCtx_getToken(var$14, 179, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$14)); } + var$13 = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + scm_ArrayBuffer_addOne(var$7, s_Predef$ArrowAssoc$_$minus$greater$extension(var$13, var$14, var$12)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$11 = var$11 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$8 = var$8 + 1 | 0; } - return $_localctx; + $ctx = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5116)), var$13); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw($ctx); }, -oncipv_Cypher5Parser_shortestPathPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShortestPathPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 106, 53); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1165); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 17 && $_la != 253) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1166); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1167); - oncipv_Cypher5Parser_patternElement($this); - oavr_Recognizer_setState($this, 1168); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_Cypher5AstBuilder_exitExtendedCaseAlternative = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitExtendedWhen = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitListComprehension = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oncie_ListComprehension$_MODULE$; + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0; + var$5 = $ctx.$whereExp0; + var$6 = var$5 === null ? s_None$_MODULE$ : s_Some__init_(var$5.$ast0); + var$5 = $ctx.$barExp2; + $ctx.$ast0 = oncie_ListComprehension$_apply(var$2, var$3, var$4, var$6, var$5 === null ? s_None$_MODULE$ : s_Some__init_(var$5.$ast0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitPatternComprehension = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = oncipv_Cypher5Parser$PatternComprehensionContext_variable($ctx) === null ? s_None$_MODULE$ : s_Some__init_((oncipv_Cypher5Parser$PatternComprehensionContext_variable($ctx)).$ast0); + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PathPatternNonEmptyContext), 0)).$ast0; + var$4 = $ctx.$whereExp2; + var$5 = var$4 === null ? s_None$_MODULE$ : s_Some__init_(var$4.$ast0); + var$6 = $ctx.$barExp1.$ast0; + var$7 = new oncie_PatternComprehension; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$8 = s_None$_MODULE$; + oncie_PatternComprehension__init_(var$7, var$2, var$3, var$5, var$6, var$4, var$8, var$8); + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher5AstBuilder_exitPathPatternNonEmpty = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$3 = $ctx.$children0.$size0; + var$4 = 1; + var$5 = null; + while (var$4 < var$3) { + var$6 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, var$4); + if (var$6 instanceof oncipv_Cypher5Parser$RelationshipPatternContext) + var$5 = var$6.$ast0; + else { + if (!(var$6 instanceof oncipv_Cypher5Parser$NodePatternContext)) { + $ctx = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5115)), var$6); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$6 = var$6; + var$2 = oncie_RelationshipChain__init_(var$2, var$5, var$6.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$6)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = var$4 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = oncie_RelationshipsPattern__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); }, -oncipv_Cypher5Parser_patternElement = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PatternElementContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 108, 54); +oncipvaf_Cypher5AstBuilder_exitPatternExpression = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_PatternExpression; + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$4 = s_None$_MODULE$; + oncie_PatternExpression__init_(var$2, var$3, var$4, var$4); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitReduceExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 6)).$ast0; + var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 10)).$ast0; + var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 4)).$ast0; + var$6 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 8)).$ast0; + $ctx.$ast0 = oncie_ReduceExpression__init_(oncie_ReduceScope__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitListItemsPredicate = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1183); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - e: { - f: { - oavr_Recognizer_setState($this, 1183); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 77, $this.$_ctx)) { - case 1: - break f; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1182); - oncipv_Cypher5Parser_parenthesizedPath($this); - break e; - } - oavr_Recognizer_setState($this, 1170); - oncipv_Cypher5Parser_nodePattern($this); - oavr_Recognizer_setState($this, 1179); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if (var$2 != 156 && var$2 != 161 && var$2 != 310 && var$2 != 311) - break e; - oavr_Recognizer_setState($this, 1171); - oncipv_Cypher5Parser_relationshipPattern($this); - oavr_Recognizer_setState($this, 1173); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(var$2 != 147 && var$2 != 199 && var$2 != 271)) { - oavr_Recognizer_setState($this, 1172); - oncipv_Cypher5Parser_quantifier($this); - } - oavr_Recognizer_setState($this, 1175); - oncipv_Cypher5Parser_nodePattern($this); - oavr_Recognizer_setState($this, 1181); - $this.$_errHandler.$sync($this); - var$2 = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1185); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; + var$4 = $ctx.$inExp.$ast0; + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$whereExp3); + var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); + switch (var$6) { + case 18: + oncie_AllIterablePredicate$_$callClinit(); + var$2 = oncie_AllIterablePredicate$_apply(oncie_AllIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); + break a; + case 21: + oncie_AnyIterablePredicate$_$callClinit(); + var$2 = oncie_AnyIterablePredicate$_apply(oncie_AnyIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); + break a; + case 176: + oncie_NoneIterablePredicate$_$callClinit(); + var$2 = oncie_NoneIterablePredicate$_apply(oncie_NoneIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); + break a; + case 257: + oncie_SingleIterablePredicate$_$callClinit(); + var$2 = oncie_SingleIterablePredicate$_apply(oncie_SingleIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$6))); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_selector = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher5Parser$SelectorContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 110, 55); +oncipvaf_Cypher5AstBuilder_exitShortestPathExpression = ($this, $ctx) => { + let var$2; + var$2 = new oncie_ShortestPathExpression; + oncipau_Util$_$callClinit(); + oncie_ShortestPathExpression__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitParenthesizedExpression = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + if (var$2 instanceof oncil_LabelExpressionPredicate) { + var$2 = var$2; + var$2 = oncil_LabelExpressionPredicate_copy(var$2, var$2.$entity0, var$2.$labelExpression8, var$2.$position49, 1); + } else if (var$2 instanceof oncie_Variable) { + var$3 = var$2; + if (!var$3.$isIsolated0) + var$2 = oncie_Variable_copy(var$3, var$3.$name4, var$3.$position4, 1); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitMapProjection = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncie_MapProjection; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$MapProjectionElementContext)); + sr_ClassTag$_$callClinit(); + oncie_MapProjection__init_(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getToken($ctx, 147, 0))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitMapProjectionElement = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oncip_AstRuleCtx_getToken($ctx, 47, 0); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); + var$4 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyKeyNameContext), 0); + var$5 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyContext), 0); + if (var$2 !== null) { + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0; + var$2 = oncie_LiteralEntry__init_(var$4.$ast0, var$5, var$5.$position()); + } else if (var$3 !== null) { + var$2 = new oncie_VariableSelector; + var$5 = var$3.$ast0; + oncipau_Util$_$callClinit(); + oncie_VariableSelector__init_(var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (var$5 !== null) { + var$5 = var$5.$ast0; + var$2 = oncie_PropertySelector__init_(var$5, var$5.$position30); + } else { + var$2 = new oncie_AllPropertiesSelector; + oncipau_Util$_$callClinit(); + oncie_AllPropertiesSelector__init_(var$2, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 271, 0)).$getSymbol())); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitCountStar = ($this, $ctx) => { + let var$2; + var$2 = new oncie_CountStar; + oncipau_Util$_$callClinit(); + oncie_CountStar__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitExistsExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_ExistsExpression; + var$3 = oncipvaf_ExpressionBuilder_subqueryBuilder($this, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RegularQueryContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MatchModeContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternListContext), 0)); + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$5 = s_None$_MODULE$; + oncia_ExistsExpression__init_(var$2, var$3, var$4, var$5, var$5); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitCountExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_CountExpression; + var$3 = oncipvaf_ExpressionBuilder_subqueryBuilder($this, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RegularQueryContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MatchModeContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternListContext), 0)); + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$5 = s_None$_MODULE$; + oncia_CountExpression__init_0(var$2, var$3, var$4, var$5, var$5); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitCollectExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_CollectExpression; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RegularQueryContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$5 = s_None$_MODULE$; + oncia_CollectExpression__init_0(var$2, var$3, var$4, var$5, var$5); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitPropertyKeyName = ($this, $ctx) => { + let var$2; + var$2 = new oncie_PropertyKeyName; + oncipau_Util$_$callClinit(); + oncie_PropertyKeyName__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitParameter = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterNameContext), 0)).$ast0; + var$3 = var$2.$name17; + var$4 = var$2.$parameterType0; + var$5 = var$2.$sizeHint2; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncie_ExplicitParameter_copy(var$2, var$3, var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitParameterName = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $ctx.$paramType0; + var$3 = var$2 !== null ? jl_String_hashCode(var$2) : 0; a: { b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1221); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 87, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$AnyShortestPathContext; - var$2 = $re; - oncipv_Cypher5Parser$AnyShortestPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1187); - oavr_Parser_match($this, 21); - oavr_Recognizer_setState($this, 1188); - oavr_Parser_match($this, 254); - oavr_Recognizer_setState($this, 1190); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 195) { - var$2 = $re; - if ($_la != 196) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1189); - oncipv_Cypher5Parser_pathToken($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$AllShortestPathContext; - var$2 = $re; - oncipv_Cypher5Parser$AllShortestPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1192); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 1193); - oavr_Parser_match($this, 254); - oavr_Recognizer_setState($this, 1195); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 195) { - var$2 = $re; - if ($_la != 196) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1194); - oncipv_Cypher5Parser_pathToken($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$AnyPathContext; - var$2 = $re; - oncipv_Cypher5Parser$AnyPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1197); - oavr_Parser_match($this, 21); - oavr_Recognizer_setState($this, 1199); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - var$2 = $re; - oavr_Recognizer_setState($this, 1198); - oavr_Parser_match($this, 5); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1202); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 195) { - var$2 = $re; - if ($_la != 196) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1201); - oncipv_Cypher5Parser_pathToken($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$AllPathContext; - var$2 = $re; - oncipv_Cypher5Parser$AllPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1204); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 1206); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 195) { - var$2 = $re; - if ($_la != 196) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1205); - oncipv_Cypher5Parser_pathToken($this); - break e; - case 5: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ShortestGroupContext; - var$2 = $re; - oncipv_Cypher5Parser$ShortestGroupContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 1208); - oavr_Parser_match($this, 254); - oavr_Recognizer_setState($this, 1210); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - var$2 = $re; - oavr_Recognizer_setState($this, 1209); - oavr_Parser_match($this, 5); - } - f: { - var$2 = $re; - oavr_Recognizer_setState($this, 1213); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 195) { - var$2 = $re; - if ($_la != 196) - break f; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1212); - oncipv_Cypher5Parser_pathToken($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1215); - oncipv_Cypher5Parser_groupToken($this); - break e; - case 6: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$AnyShortestPathContext; - var$2 = $re; - oncipv_Cypher5Parser$AnyShortestPathContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 1216); - oavr_Parser_match($this, 254); - oavr_Recognizer_setState($this, 1217); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 1219); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 195) { - var$2 = $re; - if ($_la != 196) - break e; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1218); - oncipv_Cypher5Parser_pathToken($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + switch (var$3) { + case -1838656495: + if (jl_String_equals($rt_s(714), var$2)) { + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTString(oncius_package$_MODULE$); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case -1618932450: + if (jl_String_equals($rt_s(722), var$2)) { + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + break a; + } + break b; + case 76092: + if (jl_String_equals($rt_s(724), var$2)) { + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTMap(oncius_package$_MODULE$); + break a; + } + break b; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTAny(oncius_package$_MODULE$); } - return $re; + oncipau_Util$_$callClinit(); + var$2 = oncip_AstRuleCtx_getChild($ctx, 0); + if (var$2 instanceof oncipv_Cypher5Parser$SymbolicNameStringContext) + var$5 = var$2.$ast0; + else { + if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { + var$2 = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5119)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw(var$2); + } + var$5 = var$2.$getText(); + } + var$6 = new oncie_ExplicitParameter; + oncie_ExplicitParameter$_$callClinit(); + oncie_ExplicitParameter__init_(var$6, var$5, var$4, oncie_ExplicitParameter$_apply$default$3(oncie_ExplicitParameter$_MODULE$), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$6; }, -oncipv_Cypher5Parser_groupToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GroupTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 112, 56); +oncipvaf_Cypher5AstBuilder_exitFunctionInvocation = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oncipv_Cypher5Parser$FunctionInvocationContext_functionName($ctx)).$ast0; + var$3 = oncip_AstRuleCtx_getToken($ctx, 81, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncipv_Cypher5Parser$FunctionInvocationContext_functionArgument($ctx)), new oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0), jus_Collectors_toList()); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncie_FunctionInvocation__init_0(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, $ctx.$parent instanceof oncipv_Cypher5Parser$GraphReferenceContext, var$2.$namespace3.$position110); +}; +let oncipvaf_Cypher5AstBuilder_exitFunctionName = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamespaceContext), 0)).$ast0; + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); + var$4 = var$3.$ast0; + var$5 = new oncie_FunctionName; + oncipau_Util$_$callClinit(); + oncie_FunctionName__init_0(var$5, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher5AstBuilder_exitFunctionArgument = ($this, $ctx) => { + $ctx.$ast0 = (oncipv_Cypher5Parser$FunctionArgumentContext_expression($ctx)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitNamespace = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_Namespace; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); + sr_ClassTag$_$callClinit(); + oncie_Namespace__init_0(var$2, sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitVariable = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitType = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1223); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 122 && $_la != 123) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($ctx.$children0.$size0) { + case 1: + break; + default: + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$TypePartContext)); + sr_ClassTag$_$callClinit(); + var$4 = sc_AbstractIterable_toSet(oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncius_CypherType)))); + if (var$4.$size() == 1) { + var$5 = var$4.$head(); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$5 = oncius_ClosedDynamicUnionType__init_0(var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$5.$simplify(); }, -oncipv_Cypher5Parser_pathToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PathTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 114, 57); +oncipvaf_Cypher5AstBuilder_exitTypePart = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = sr_ObjectRef_create((oncipv_Cypher5Parser$TypePartContext_typeName($ctx)).$ast0); + if (oncipv_Cypher5Parser$TypePartContext_typeNullability($ctx) !== null) + var$2.$elem = var$2.$elem.$withIsNullable1(0); + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$TypeListSuffixContext)); + var$4 = new oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0; + var$4.$_0532 = var$2; + var$4.$_1176 = $ctx; + var$3.$forEach(var$4); + $ctx.$ast0 = var$2.$elem; +}, +oncipvaf_Cypher5AstBuilder_exitTypeName = ($this, $ctx) => { + oncipvaf_ExpressionBuilder_exitTypeName0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitTypeNullability = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitTypeListSuffix = ($this, $ctx) => { + $ctx.$ast0 = jl_Boolean_valueOf(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$TypeNullabilityContext), 0) !== null ? 0 : 1); +}, +oncipvaf_Cypher5AstBuilder_exitMap = ($this, $ctx) => { + let var$2; + var$2 = new oncie_MapExpression; + oncipau_Util$_$callClinit(); + oncie_MapExpression__init_(var$2, oncipau_Util$_astPairs(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyKeyNameContext)), oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitSymbolicVariableNameString = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitEscapedSymbolicVariableNameString = ($this, $ctx) => { + let var$2; + var$2 = new oncie_Variable; + oncipau_Util$_$callClinit(); + oncie_Variable__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 1); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitUnescapedSymbolicVariableNameString = ($this, $ctx) => { + let var$2; + var$2 = new oncie_Variable; + oncipau_Util$_$callClinit(); + oncie_Variable__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitSymbolicNameString = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitEscapedSymbolicNameString = ($this, $ctx) => { + $ctx.$ast0 = jl_String_replace(($ctx.$start1.$getInputStream0()).$getText0(oavrm_Interval__init_($ctx.$start1.$getStartIndex() + 1 | 0, $ctx.$stop.$getStopIndex() - 1 | 0)), $rt_s(1136), $rt_s(1135)); +}, +oncipvaf_Cypher5AstBuilder_exitUnescapedSymbolicNameString = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$2 = oncip_AstRuleCtx_getText($ctx); + var$3 = var$2.$nativeString.length; + var$4 = 0; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1225); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 195 && $_la != 196) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + while (var$4 < var$3) { + b: { + var$5 = jl_String_codePointAt(var$2, var$4); + if (var$5 >= 37 && var$5 <= 126) + var$6 = 0; + else { + var$7 = oncipcd_DeprecatedChars_DEPRECATED_CHARS.data; + var$6 = var$7.length; + var$8 = 0; + while (var$8 < var$6) { + if (var$7[var$8] == var$5) { + var$6 = 1; + break b; } + var$8 = var$8 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$6 = 0; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (var$6) { + var$6 = 1; + break a; + } + var$4 = var$4 + (var$5 < 65536 ? 1 : 2) | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = 0; } - return $_localctx; + if (var$6) { + oncipau_Util$_$callClinit(); + var$9 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$10 = $this.$notificationLogger2; + var$11 = new oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_144_0; + var$11.$_01126 = var$2; + var$11.$_1384 = var$9; + s_Option_foreach(var$10, var$11); + } + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_pathPatternNonEmpty = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PathPatternNonEmptyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 116, 58); +oncipvaf_Cypher5AstBuilder_exitSymbolicLabelNameString = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitUnescapedLabelSymbolicNameString = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitUnescapedLabelSymbolicNameString_ = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getText($ctx); +}, +oncipvaf_Cypher5AstBuilder_exitNormalizeFunction = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0; + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NormalFormContext), 0); + oncipau_Util$_$callClinit(); + var$4 = (oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, var$3, new oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_154_0)).$formName(); + var$5 = new oncie_FunctionInvocation; + var$3 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, $rt_s(426), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_package$_$callClinit(); + var$6 = s_package$_IndexedSeq(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncie_Expression, 2); + var$9 = var$8.data; + var$9[0] = var$2; + var$9[1] = oncie_StringLiteral__init_(var$4, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)); + var$10 = sc_SeqFactory$Delegate_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$5, var$3, 0, var$10, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher5AstBuilder_exitTrimFunction = ($this, $ctx) => { + oncipvaf_ExpressionBuilder_exitTrimFunction0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitGrantCommand = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncipv_Cypher5Parser$GrantCommandContext_privilege($ctx) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GrantRoleContext), 0)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$4 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); + var$4 = oncia_GrantRolesToUsers__init_(var$4.$_10, var$4.$_20, var$2); + } else { + var$3 = (oncipv_Cypher5Parser$GrantCommandContext_privilege($ctx)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$5 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); + var$3 = var$5.$_11; + var$6 = var$5.$_21; + var$5 = var$5.$_30; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0; + var$4 = oncia_GrantPrivilege__init_(var$3, oncip_AstRuleCtx_getToken($ctx, 130, 0) === null ? 0 : 1, var$6, var$5, var$7, var$2); + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher5AstBuilder_exitDenyCommand = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PrivilegeContext), 0)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$4 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); + var$5 = var$4.$_11; + var$3 = var$4.$_21; + var$6 = var$4.$_30; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0; + $ctx.$ast0 = oncia_DenyPrivilege__init_(var$5, oncip_AstRuleCtx_getToken($ctx, 130, 0) === null ? 0 : 1, var$3, var$6, var$4, var$2); +}, +oncipvaf_Cypher5AstBuilder_exitRevokeCommand = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncipv_Cypher5Parser$RevokeCommandContext_privilege($ctx) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RevokeRoleContext), 0)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$4 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); + var$4 = oncia_RevokeRolesFromUsers__init_(var$4.$_10, var$4.$_20, var$2); + } else { + var$3 = (oncipv_Cypher5Parser$RevokeCommandContext_privilege($ctx)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$5 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); + var$3 = var$5.$_11; + var$6 = var$5.$_21; + var$5 = var$5.$_30; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0; + var$8 = oncipv_Cypher5Parser$RevokeCommandContext_DENY($ctx) !== null ? oncia_RevokeDenyType__init_(oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$RevokeCommandContext_DENY($ctx))) : oncipv_Cypher5Parser$RevokeCommandContext_GRANT($ctx) === null ? oncia_RevokeBothType__init_(var$2) : oncia_RevokeGrantType__init_(oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$RevokeCommandContext_GRANT($ctx))); + var$4 = oncia_RevokePrivilege__init_(var$3, oncip_AstRuleCtx_getToken($ctx, 130, 0) === null ? 0 : 1, var$6, var$5, var$7, var$8, var$2); + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher5AstBuilder_exitGrantRole = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserNamesContext), 0)).$ast0); +}, +oncipvaf_Cypher5AstBuilder_exitRevokeRole = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserNamesContext), 0)).$ast0); +}, +oncipvaf_Cypher5AstBuilder_exitPrivilege = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitAllPrivilege = ($this, $ctx) => { + oncipvaf_DdlPrivilegeBuilder_exitAllPrivilege0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitAllPrivilegeTarget = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitAllPrivilegeType = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitCreatePrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + if (oncipv_Cypher5Parser$CreatePrivilegeContext_databaseScope($ctx) !== null) { + var$2 = (oncipv_Cypher5Parser$CreatePrivilegeContext_databaseScope($ctx)).$ast0; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext), 0)).$ast0; + var$4 = new oncia_DatabasePrivilege; + oncipau_Util$_$callClinit(); + oncia_DatabasePrivilege__init_(var$4, var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$5 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier0($this, var$4, s_None$_MODULE$); + } else if (oncipv_Cypher5Parser$CreatePrivilegeContext_actionForDBMS($ctx) !== null) { + var$2 = (oncipv_Cypher5Parser$CreatePrivilegeContext_actionForDBMS($ctx)).$ast0; + var$3 = new oncia_DbmsPrivilege; + oncipau_Util$_$callClinit(); + oncia_DbmsPrivilege__init_0(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$5 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$3, s_None$_MODULE$); + } else { + var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierContext), 0)).$ast0; + var$5 = new s_Tuple3; + var$2 = new oncia_GraphPrivilege; + var$3 = oncia_CreateElementAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$2, var$3, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$5, var$2, s_None$_MODULE$, var$7); + } + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher5AstBuilder_exitCreatePrivilegeForDatabase = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitActionForDBMS = ($this, $ctx) => { + let var$2, var$3; + var$2 = $ctx.$parent.$getRuleIndex() != 245 ? 0 : 1; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1227); - oncipv_Cypher5Parser_nodePattern($this); - oavr_Recognizer_setState($this, 1231); - $this.$_errHandler.$sync($this); - $_alt = 1; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - e: { - try { - while (true) { - switch ($_alt) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1228); - oncipv_Cypher5Parser_relationshipPattern($this); - oavr_Recognizer_setState($this, 1229); - oncipv_Cypher5Parser_nodePattern($this); - oavr_Recognizer_setState($this, 1233); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 88, $this.$_ctx); - if ($_alt == 2) - break; - if (!$_alt) - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $rt_throw(oavr_NoViableAltException__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - } else{ - $_localctx = $$je; - break c; - } - } + oncipau_Util$_$callClinit(); + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0()) { + case 15: + if (!var$2) { + var$3 = oncia_DropAliasAction$_MODULE$; + break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$3 = oncia_CreateAliasAction$_MODULE$; + break a; + case 53: + if (!var$2) { + var$3 = oncia_DropCompositeDatabaseAction$_MODULE$; + break a; + } + var$3 = oncia_CreateCompositeDatabaseAction$_MODULE$; + break a; + case 65: + if (!var$2) { + var$3 = oncia_DropDatabaseAction$_MODULE$; + break a; } + var$3 = oncia_CreateDatabaseAction$_MODULE$; + break a; + case 235: + if (!var$2) { + var$3 = oncia_DropRoleAction$_MODULE$; + break a; + } + var$3 = oncia_CreateRoleAction$_MODULE$; + break a; + case 291: + if (!var$2) { + var$3 = oncia_DropUserAction$_MODULE$; + break a; + } + var$3 = oncia_CreateUserAction$_MODULE$; + break a; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5130)); + $rt_throw($ctx); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitDatabasePrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + a: { + oncipau_Util$_$callClinit(); + var$2 = oncip_AstRuleCtx_getChild($ctx, 0); + if (var$2 instanceof oncipv_Cypher5Parser$ConstraintTokenContext) + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_AllConstraintActions$_MODULE$); + else if (var$2 instanceof oncipv_Cypher5Parser$IndexTokenContext) + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_AllIndexActions$_MODULE$); + else { + if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5131)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + switch ((var$2.$getSymbol()).$getType0()) { + case 11: + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_AccessDatabaseAction$_MODULE$); + break a; + case 165: + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_AllTokenActions$_MODULE$); + break a; + case 259: + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_StartDatabaseAction$_MODULE$); + break a; + case 262: + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_StopDatabaseAction$_MODULE$); + break a; + case 267: + var$3 = s_Tuple2__init_(oncia_TerminateTransactionAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$DatabasePrivilegeContext_userQualifier($ctx), new oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0)); + break a; + case 277: + var$3 = s_Tuple2__init_(oncia_AllTransactionActions$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$DatabasePrivilegeContext_userQualifier($ctx), new oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1)); + break a; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$2 = var$3.$_10; + var$3 = var$3.$_20; + var$4 = s_Tuple2__init_(var$2, var$3); + var$3 = var$4.$_10; + var$4 = var$4.$_20; + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$DatabaseScopeContext), 0)).$ast0; + $ctx.$ast0 = s_Tuple3__init_(oncia_DatabasePrivilege__init_0(var$3, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$, var$4); +}, +oncipvaf_Cypher5AstBuilder_exitDbmsPrivilege = ($this, $ctx) => { + oncipvaf_DdlPrivilegeBuilder_exitDbmsPrivilege0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitDbmsPrivilegeExecute = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AdminTokenContext), 0) !== null) + var$2 = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ExecuteAdminProcedureAction$_MODULE$); + else if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ProcedureTokenContext), 0) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExecuteFunctionQualifierContext), 0)).$ast0; + var$2 = oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_BOOSTED($ctx) === null ? s_Tuple2__init_(oncia_ExecuteFunctionAction$_MODULE$, var$3) : s_Tuple2__init_(oncia_ExecuteBoostedFunctionAction$_MODULE$, var$3); + } else { + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExecuteProcedureQualifierContext), 0)).$ast0; + var$2 = oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_BOOSTED($ctx) === null ? s_Tuple2__init_(oncia_ExecuteProcedureAction$_MODULE$, var$4) : s_Tuple2__init_(oncia_ExecuteBoostedProcedureAction$_MODULE$, var$4); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitDropPrivilege = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncipv_Cypher5Parser$DropPrivilegeContext_databaseScope($ctx) === null) { + var$2 = new oncia_DbmsPrivilege; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ActionForDBMSContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_DbmsPrivilege__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$2, s_None$_MODULE$); + } else { + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$IndexTokenContext), 0) === null ? oncia_DropConstraintAction$_MODULE$ : oncia_DropIndexAction$_MODULE$; + var$4 = (oncipv_Cypher5Parser$DropPrivilegeContext_databaseScope($ctx)).$ast0; + var$3 = new oncia_DatabasePrivilege; + oncipau_Util$_$callClinit(); + oncia_DatabasePrivilege__init_(var$3, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier0($this, var$3, s_None$_MODULE$); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitLoadPrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + if (oncip_AstRuleCtx_getToken($ctx, 18, 0) !== null) { + var$2 = new s_Tuple3; + var$3 = new oncia_LoadPrivilege; + oncia_LoadAllDataAction$_$callClinit(); + var$4 = oncia_LoadAllDataAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_LoadPrivilege__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$2, var$3, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadAllQualifier__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); + } else if (oncip_AstRuleCtx_getToken($ctx, 289, 0) === null) { + var$2 = new s_Tuple3; + var$4 = new oncia_LoadPrivilege; + oncia_LoadCidrAction$_$callClinit(); + var$5 = oncia_LoadCidrAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_LoadPrivilege__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$2, var$4, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadCidrQualifier__init_((oncipv_Cypher5Parser$LoadPrivilegeContext_stringOrParameter($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); + } else { + var$2 = new s_Tuple3; + var$5 = new oncia_LoadPrivilege; + oncia_LoadUrlAction$_$callClinit(); + var$4 = oncia_LoadUrlAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_LoadPrivilege__init_(var$5, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$2, var$5, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadUrlQualifier__init_((oncipv_Cypher5Parser$LoadPrivilegeContext_stringOrParameter($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitQualifiedGraphPrivileges = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = oncip_AstRuleCtx_getToken($ctx, 73, 0) !== null ? s_Tuple2__init_(oncia_DeleteElementAction$_MODULE$, s_None$_MODULE$) : s_Tuple2__init_(oncia_MergeAdminAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesResourceContext), 0)).$ast0); + var$3 = var$2.$_10; + var$2 = var$2.$_20; + var$4 = s_Tuple2__init_(var$3, var$2); + var$2 = var$4.$_10; + var$4 = var$4.$_20; + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; + var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierContext), 0)).$ast0; + var$7 = new s_Tuple3; + var$8 = new oncia_GraphPrivilege; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$8, var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$7, var$8, var$4, var$6); + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher5AstBuilder_exitQualifiedGraphPrivilegesWithProperty = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = oncip_AstRuleCtx_getToken($ctx, 279, 0) !== null ? s_Tuple2__init_(oncia_TraverseAction$_MODULE$, s_None$_MODULE$) : s_Tuple2__init_(oncip_AstRuleCtx_getToken($ctx, 218, 0) === null ? oncia_MatchAction$_MODULE$ : oncia_ReadAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesResourceContext), 0)).$ast0); + var$3 = var$2.$_10; + var$2 = var$2.$_20; + var$4 = s_Tuple2__init_(var$3, var$2); + var$2 = var$4.$_10; + var$4 = var$4.$_20; + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; + var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierContext), 0)).$ast0; + var$7 = new s_Tuple3; + var$8 = new oncia_GraphPrivilege; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$8, var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$7, var$8, var$4, var$6); + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher5AstBuilder_exitShowPrivilege = ($this, $ctx) => { + oncipvaf_DdlPrivilegeBuilder_exitShowPrivilege0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitSetPrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncip_AstRuleCtx_getToken($ctx, 69, 0) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; + if (oncip_AstRuleCtx_getToken($ctx, 142, 0) !== null) { + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelsResourceContext), 0)).$ast0; + var$5 = oncipvaf_DdlPrivilegeBuilder_labelAllQualifier0($this, oncia_GraphPrivilege__init_0(oncia_SetLabelAction$_MODULE$, var$3, var$2), var$4, var$2); + } else { + var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesResourceContext), 0)).$ast0; + var$5 = s_Tuple3__init_(oncia_GraphPrivilege__init_0(oncia_SetPropertyAction$_MODULE$, var$3, var$2), var$6, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierContext), 0)).$ast0); + } + } else + var$5 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, oncia_DbmsPrivilege__init_(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordTokenContext), 0) !== null ? oncia_SetPasswordsAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 261, 0) !== null ? oncia_SetUserStatusAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 126, 0) !== null ? oncia_SetUserHomeDatabaseAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 29, 0) === null ? oncia_SetDatabaseAccessAction$_MODULE$ : oncia_SetAuthAction$_MODULE$, + var$2), s_None$_MODULE$); + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher5AstBuilder_exitRemovePrivilege = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncip_AstRuleCtx_getToken($ctx, 69, 0) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; + var$4 = oncipvaf_DdlPrivilegeBuilder_labelAllQualifier0($this, oncia_GraphPrivilege__init_0(oncia_RemoveLabelAction$_MODULE$, var$3, var$2), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelsResourceContext), 0)).$ast0, var$2); + } else + var$4 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, oncia_DbmsPrivilege__init_(oncip_AstRuleCtx_getToken($ctx, 206, 0) === null ? oncia_RemoveRoleAction$_MODULE$ : oncia_RemovePrivilegeAction$_MODULE$, var$2), s_None$_MODULE$); + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher5AstBuilder_exitWritePrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; + var$3 = new s_Tuple3; + var$4 = new oncia_GraphPrivilege; + var$5 = oncia_WriteAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$4, var$5, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$3, var$4, s_None$_MODULE$, sci_$colon$colon__init_(oncia_ElementsAllQualifier__init_0(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitNonEmptyStringList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +}, +oncipvaf_Cypher5AstBuilder_exitLabelsResource = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { + var$2 = new s_Some; + var$3 = new oncia_AllLabelResource; + oncipau_Util$_$callClinit(); + oncia_AllLabelResource__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Some__init_0(var$2, var$3); + } else { + var$2 = new s_Some; + var$3 = new oncia_LabelsResource; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NonEmptyStringListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_LabelsResource__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Some__init_0(var$2, var$3); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitPropertiesResource = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { + var$2 = new s_Some; + var$3 = new oncia_AllPropertyResource; + oncipau_Util$_$callClinit(); + oncia_AllPropertyResource__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Some__init_0(var$2, var$3); + } else { + var$2 = new s_Some; + var$3 = new oncia_PropertiesResource; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NonEmptyStringListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_PropertiesResource__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Some__init_0(var$2, var$3); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitExecuteFunctionQualifier = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobsContext), 0)).$ast0; + var$3 = new oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0; + var$3.$_0541 = $ctx; + $ctx.$ast0 = (var$2.$map(var$3)).$toList(); +}, +oncipvaf_Cypher5AstBuilder_exitExecuteProcedureQualifier = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobsContext), 0)).$ast0; + var$3 = new oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0; + var$3.$_0621 = $ctx; + $ctx.$ast0 = (var$2.$map(var$3)).$toList(); +}, +oncipvaf_Cypher5AstBuilder_exitGlobs = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$GlobContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +}; +let oncipvaf_Cypher5AstBuilder_exitGlob = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$GlobContext_escapedSymbolicNameString($ctx), new oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_00); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobRecursiveContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_10); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), var$3); + $ctx.$ast0 = jl_AbstractStringBuilder_toString(var$4); +}, +oncipvaf_Cypher5AstBuilder_exitGlobRecursive = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = (oncipv_Cypher5Parser$GlobRecursiveContext_globPart($ctx)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobRecursiveContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_00); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), var$3); + $ctx.$ast0 = jl_AbstractStringBuilder_toString(var$4); +}, +oncipvaf_Cypher5AstBuilder_exitGlobPart = ($this, $ctx) => { + let var$2, var$3; + if (oncipv_Cypher5Parser$GlobPartContext_DOT($ctx) !== null) { + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$GlobPartContext_escapedSymbolicNameString($ctx), new oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_00); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(var$3, 46); + jl_StringBuilder_append(var$3, var$2); + var$2 = jl_AbstractStringBuilder_toString(var$3); + } else + var$2 = oncip_AstRuleCtx_getToken($ctx, 214, 0) !== null ? $rt_s(5132) : oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null ? $rt_s(171) : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext), 0)).$ast0; + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitGraphQualifier = ($this, $ctx) => { + oncipvaf_DdlPrivilegeBuilder_exitGraphQualifier($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitGraphQualifierToken = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0); + if (var$2 instanceof oncipv_Cypher5Parser$RelTokenContext) + var$2 = oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$RelGraphToken($this); + else if (var$2 instanceof oncipv_Cypher5Parser$NodeTokenContext) + var$2 = oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken($this); + else { + if (!(var$2 instanceof oncipv_Cypher5Parser$ElementTokenContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5133)); + $rt_throw($ctx); + } + var$2 = oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken($this); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitSettingQualifier = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobsContext), 0)).$ast0; + var$3 = new oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_00; + var$3.$_01114 = $ctx; + $ctx.$ast0 = sc_IterableOnceOps_toList$(sci_ArraySeq_map(var$2, var$3)); +}, +oncipvaf_Cypher5AstBuilder_exitUserQualifier = ($this, $ctx) => { + let var$2, var$3; + if (oncipv_Cypher5Parser$UserQualifierContext_userNames($ctx) === null) { + var$2 = new sci_$colon$colon; + var$3 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$3, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$2, var$3, sci_Nil$_MODULE$); + } else + var$2 = sc_IterableOnceOps_toList$(sci_ArraySeq_map((oncipv_Cypher5Parser$UserQualifierContext_userNames($ctx)).$ast0, new oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_00)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitRoleNames = ($this, $ctx) => { + $ctx.$ast0 = (oncipv_Cypher5Parser$RoleNamesContext_symbolicNameOrStringParameterList($ctx)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitUserNames = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext), 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitDatabaseScope = ($this, $ctx) => { + let var$2, var$3; + if (oncip_AstRuleCtx_getToken($ctx, 126, 0) !== null) { + var$2 = new oncia_HomeDatabaseScope; + oncipau_Util$_$callClinit(); + oncia_HomeDatabaseScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { + var$2 = new oncia_AllDatabasesScope; + oncipau_Util$_$callClinit(); + oncia_AllDatabasesScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_NamedDatabasesScope; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_NamedDatabasesScope__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitGraphScope = ($this, $ctx) => { + let var$2, var$3; + if (oncip_AstRuleCtx_getToken($ctx, 126, 0) !== null) { + var$2 = new oncia_HomeGraphScope; + oncipau_Util$_$callClinit(); + oncia_HomeGraphScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { + var$2 = new oncia_AllGraphsScope; + oncipau_Util$_$callClinit(); + oncia_AllGraphsScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_NamedGraphsScope; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_NamedGraphsScope__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitAdminToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitConstraintToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreateConstraintAction$_MODULE$; +}, +oncipvaf_Cypher5AstBuilder_exitCreateNodePrivilegeToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreateNodeLabelAction$_MODULE$; +}, +oncipvaf_Cypher5AstBuilder_exitCreatePropertyPrivilegeToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreatePropertyKeyAction$_MODULE$; +}, +oncipvaf_Cypher5AstBuilder_exitCreateRelPrivilegeToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreateRelationshipTypeAction$_MODULE$; +}, +oncipvaf_Cypher5AstBuilder_exitElementToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitIndexToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreateIndexAction$_MODULE$; +}, +oncipvaf_Cypher5AstBuilder_exitNodeToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitPasswordToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitPrivilegeToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitProcedureToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitRelToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitRoleToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitTransactionToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitFunctionToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitAscToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitDescToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitSettingToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitPrimaryToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitSecondaryToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitSecondsToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitGroupToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitPathToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitShowCommand = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + if ($rt_isInstance(var$2, sci_Seq)) + var$2 = oncia_SingleQuery__init_0(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitTerminateCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitYieldItem = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext)); + var$3 = (var$2.$get0(0)).$ast0; + if (var$2.$size() == 1) { + var$4 = new oncia_UnaliasedReturnItem; + oncipau_Util$_$callClinit(); + oncia_UnaliasedReturnItem__init_0(var$4, var$3, oncipau_Util$_inputText(oncipau_Util$_MODULE$, var$2.$get0(0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$4 = new oncia_AliasedReturnItem; + var$2 = (var$2.$get0(1)).$ast0; + oncipau_Util$_$callClinit(); + oncia_AliasedReturnItem__init_0(var$4, var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher5AstBuilder_exitYieldSkip = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_Skip; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SignedIntegerLiteralContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_Skip__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitYieldLimit = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_Limit; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SignedIntegerLiteralContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_Limit__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitOrderBy = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_OrderBy; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$OrderItemContext)); + sr_ClassTag$_$callClinit(); + oncia_OrderBy__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SortItem))), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 191, 0)).$getSymbol())); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitYieldClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { + var$2 = new oncia_ReturnItems; + s_package$_$callClinit(); + var$3 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + var$4 = s_None$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_ReturnItems__init_(var$2, 1, var$3, var$4, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 306, 0)).$getSymbol())); + } else { + var$2 = new oncia_ReturnItems; + oncipau_Util$_$callClinit(); + var$5 = oncipau_Util$_MODULE$; + var$6 = oncipv_Cypher5Parser$YieldClauseContext_yieldItem($ctx); + sr_ClassTag$_$callClinit(); + var$4 = oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_ReturnItem))); + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_(var$2, 0, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, (oncipv_Cypher5Parser$YieldClauseContext_yieldItem($ctx)).$get0(0))); + } + var$4 = new oncia_Yield; + oncipau_Util$_$callClinit(); + oncia_Yield__init_(var$4, var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$OrderByContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$YieldSkipContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$YieldLimitContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, + $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_nodePattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 118, 59); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1235); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1237); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 89, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1236); - oncipv_Cypher5Parser_variable($this); - } - oavr_Recognizer_setState($this, 1240); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 47 && $_la != 139)) { - oavr_Recognizer_setState($this, 1239); - oncipv_Cypher5Parser_labelExpression($this); - } - oavr_Recognizer_setState($this, 1243); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 80 && $_la != 147)) { - oavr_Recognizer_setState($this, 1242); - oncipv_Cypher5Parser_properties($this); - } - oavr_Recognizer_setState($this, 1247); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 1245); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 1246); - oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1249); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher5AstBuilder_exitShowBriefAndYield = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$YieldClauseContext), 0); + var$3 = var$2 !== null ? oncipvaf_DdlShowBuilder_getYieldAllAndYieldItems($this, var$2.$ast0) : s_Tuple3__init_(jl_Boolean_valueOf(0), sci_Nil$_MODULE$, s_None$_MODULE$); + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$4 = sr_BoxesRunTime_unboxToBoolean(var$3.$_11); + var$2 = var$3.$_21; + var$5 = var$3.$_30; + var$3 = s_Tuple3__init_(jl_Boolean_valueOf(var$4), var$2, var$5); + var$4 = sr_BoxesRunTime_unboxToBoolean(var$3.$_11); + var$5 = var$3.$_21; + var$3 = var$3.$_30; + var$6 = new oncipvaf_DdlShowBuilder$ShowWrapper; + oncipau_Util$_$callClinit(); + oncipvaf_DdlShowBuilder$ShowWrapper__init_(var$6, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)), var$5, var$4, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnClauseContext), 0)), s_None$_MODULE$, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); + $ctx.$ast0 = var$6; +}, +oncipvaf_Cypher5AstBuilder_exitShowCommandYield = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$YieldClauseContext), 0); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0); + if (var$2 === null) { + s_package$_$callClinit(); + var$4 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), var$3.$ast0); + } else { + s_package$_$callClinit(); + var$3 = s_package$_Left(s_package$_MODULE$); + var$5 = new s_Tuple2; + var$6 = var$2.$ast0; + oncipau_Util$_$callClinit(); + s_Tuple2__init_0(var$5, var$6, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnClauseContext), 0))); + var$4 = su_Left$_apply(var$3, var$5); } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_insertNodePattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$InsertNodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 120, 60); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1251); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1253); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 93, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1252); - oncipv_Cypher5Parser_variable($this); - } - oavr_Recognizer_setState($this, 1256); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 47 && $_la != 139)) { - oavr_Recognizer_setState($this, 1255); - oncipv_Cypher5Parser_insertNodeLabelExpression($this); - } - oavr_Recognizer_setState($this, 1259); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 147) { - oavr_Recognizer_setState($this, 1258); - oncipv_Cypher5Parser_map($this); - } - oavr_Recognizer_setState($this, 1261); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher5AstBuilder_exitComposableCommandClauses = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitComposableShowCommandClauses = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitShowIndexCommand = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncipv_Cypher5Parser$ShowIndexCommandContext_showIndexesNoBrief($ctx); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + if (var$2 === null) { + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowIndexesAllowBriefContext), 0)).$ast0; + oncia_AllIndexes$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildIndexClauses(var$4, oncia_AllIndexes$_MODULE$, var$3); + } else { + a: { + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0()) { + case 115: + var$2 = oncia_FulltextIndexes$_MODULE$; break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case 154: + var$2 = oncia_LookupIndexes$_MODULE$; + break a; + case 201: + var$2 = oncia_PointIndexes$_MODULE$; + break a; + case 215: + var$2 = oncia_RangeIndexes$_MODULE$; + break a; + case 268: + var$2 = oncia_TextIndexes$_MODULE$; + break a; + case 296: + var$2 = oncia_VectorIndexes$_MODULE$; + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5134)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildIndexClauses((oncipv_Cypher5Parser$ShowIndexCommandContext_showIndexesNoBrief($ctx)).$ast0, var$2, var$3); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_parenthesizedPath = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ParenthesizedPathContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 122, 61); +oncipvaf_Cypher5AstBuilder_exitShowIndexesAllowBrief = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowBriefAndYieldContext), 0), new oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names0); +}, +oncipvaf_Cypher5AstBuilder_exitShowIndexesNoBrief = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names0); +}, +oncipvaf_Cypher5AstBuilder_exitShowConstraintCommand = ($this, $ctx) => { + oncipvaf_DdlShowBuilder_exitShowConstraintCommand($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitConstraintAllowYieldType = ($this, $ctx) => { + oncipvaf_DdlShowBuilder_exitConstraintAllowYieldType($this, $ctx); +}; +let oncipvaf_Cypher5AstBuilder_exitConstraintExistType = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitConstraintBriefAndYieldType = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1263); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1264); - oncipv_Cypher5Parser_pattern($this); - oavr_Recognizer_setState($this, 1267); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 1265); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 1266); - oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1269); - oavr_Parser_match($this, 239); - oavr_Recognizer_setState($this, 1271); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 147 && $_la != 199 && $_la != 271)) { - oavr_Recognizer_setState($this, 1270); - oncipv_Cypher5Parser_quantifier($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); + switch (var$2) { + case 18: + break; + case 103: + var$3 = oncia_AllExistsConstraints$_MODULE$; + break a; + case 173: + if (oncip_AstRuleCtx_getToken($ctx, 103, 0) === null) { + var$3 = oncia_NodeKeyConstraints$_MODULE$; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = oncia_NodeAllExistsConstraints$_MODULE$; + break a; + case 224: + var$3 = oncia_RelAllExistsConstraints$_MODULE$; + break a; + case 286: + var$3 = oncia_UniqueConstraintsCypher5$_MODULE$; + break a; + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = oncia_AllConstraints$_MODULE$; } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_nodeLabels = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NodeLabelsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 124, 62); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1275); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - e: { - oavr_Recognizer_setState($this, 1275); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 98, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 1274); - oncipv_Cypher5Parser_dynamicLabelType($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 1273); - oncipv_Cypher5Parser_labelType($this); - } - oavr_Recognizer_setState($this, 1277); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 47) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowBriefAndYield = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowBriefAndYieldContext), 0), new oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names0); +}, +oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowBrief = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowYield = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names0); +}, +oncipvaf_Cypher5AstBuilder_exitShowProcedures = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names0); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExecutableByContext), 0)); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$5 = oncia_ShowProceduresClause$_MODULE$; + var$6 = var$2.$where0; + var$7 = var$2.$yieldedItems; + var$8 = var$2.$yieldAll0; + var$9 = var$2.$yieldClause1; + var$10 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_00; + var$10.$_0874 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_ShowProceduresClause$_apply(var$5, var$3, var$6, var$7, var$8, s_Option_map(var$9, var$10), var$4)); +}, +oncipvaf_Cypher5AstBuilder_exitShowFunctions = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names0); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowFunctionsTypeContext), 0), new oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0); + var$4 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExecutableByContext), 0)); + var$5 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$6 = oncia_ShowFunctionsClause$_MODULE$; + var$7 = var$2.$where0; + var$8 = var$2.$yieldedItems; + var$9 = var$2.$yieldAll0; + var$10 = var$2.$yieldClause1; + var$11 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_0; + var$11.$_0850 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_ShowFunctionsClause$_apply(var$6, var$3, var$4, var$7, var$8, var$9, s_Option_map(var$10, var$11), var$5)); +}, +oncipvaf_Cypher5AstBuilder_exitShowFunctionsType = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 39, 0) !== null ? oncia_BuiltInFunctions$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 291, 0) === null ? oncia_AllFunctions$_MODULE$ : oncia_UserDefinedFunctions$_MODULE$; +}, +oncipvaf_Cypher5AstBuilder_exitExecutableBy = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher5Parser$ExecutableByContext_symbolicNameString($ctx) === null) { + oncia_CurrentUser$_$callClinit(); + var$2 = oncia_CurrentUser$_MODULE$; + } else + var$2 = oncia_User__init_((oncipv_Cypher5Parser$ExecutableByContext_symbolicNameString($ctx)).$ast0); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitShowTransactions = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamesAndClausesContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + oncia_ShowTransactionsClause$_$callClinit(); + var$4 = oncia_ShowTransactionsClause$_MODULE$; + var$5 = var$2.$names0; + var$6 = var$2.$where0; + var$7 = var$2.$yieldedItems; + var$8 = var$2.$yieldAll0; + var$9 = var$2.$yieldClause1; + var$10 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_00; + var$10.$_0553 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_ShowTransactionsClause$_apply(var$4, var$5, var$6, var$7, var$8, s_Option_map(var$9, var$10), 1, var$3)); +}, +oncipvaf_Cypher5AstBuilder_exitTerminateTransactions = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringsOrExpressionContext), 0)).$ast0; + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$4); + var$5 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$6 = oncia_TerminateTransactionsClause$_MODULE$; + var$7 = var$2.$names0; + var$4 = var$2.$yieldedItems; + var$8 = var$2.$yieldAll0; + var$3 = var$2.$yieldClause1; + var$9 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0; + var$9.$_040 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_TerminateTransactionsClause$_apply(var$6, var$7, var$4, var$8, s_Option_map(var$3, var$9), s_Option_map(var$2.$where0, new oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_1), var$5)); +}, +oncipvaf_Cypher5AstBuilder_exitShowSettings = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamesAndClausesContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$4 = oncia_ShowSettingsClause$_MODULE$; + var$5 = var$2.$names0; + var$6 = var$2.$where0; + var$7 = var$2.$yieldedItems; + var$8 = var$2.$yieldAll0; + var$9 = var$2.$yieldClause1; + var$10 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_00; + var$10.$_0698 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_ShowSettingsClause$_apply(var$4, var$5, var$6, var$7, var$8, s_Option_map(var$9, var$10), var$3)); +}, +oncipvaf_Cypher5AstBuilder_exitNamesAndClauses = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); + var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringsOrExpressionContext), 0), new oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0); + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$4); +}, +oncipvaf_Cypher5AstBuilder_exitStringsOrExpression = ($this, $ctx) => { + let var$2, var$3; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringListContext), 0); + if (var$2 === null) { + s_package$_$callClinit(); + var$3 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0); + } else { + s_package$_$callClinit(); + var$3 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (var$2.$ast0.$map(new oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0)).$toList()); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_nodeLabelsIs = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NodeLabelsIsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 126, 63); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1279); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 1282); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 1280); - oncipv_Cypher5Parser_symbolicNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - case 80: - oavr_Recognizer_setState($this, 1281); - oncipv_Cypher5Parser_dynamicExpression($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 1288); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 47) { - f: { - oavr_Recognizer_setState($this, 1286); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 101, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 1285); - oncipv_Cypher5Parser_dynamicLabelType($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 1284); - oncipv_Cypher5Parser_labelType($this); - } - oavr_Recognizer_setState($this, 1290); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher5AstBuilder_exitStringList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_StringLiteral))); +}, +oncipvaf_Cypher5AstBuilder_exitShowServers = ($this, $ctx) => { + let var$2; + oncia_ShowServers$_$callClinit(); + var$2 = oncia_ShowServers$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowServers$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitShowRoles = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncia_ShowRoles$_MODULE$; + var$3 = oncip_AstRuleCtx_getToken($ctx, 302, 0) === null ? 0 : 1; + var$4 = oncip_AstRuleCtx_getToken($ctx, 202, 0) !== null ? 0 : 1; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowRoles$_apply(var$2, var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitShowUsers = ($this, $ctx) => { + let var$2; + var$2 = oncia_ShowUsers$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowUsers$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncip_AstRuleCtx_getToken($ctx, 29, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitShowCurrentUser = ($this, $ctx) => { + let var$2; + var$2 = oncia_ShowCurrentUser$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowCurrentUser$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitShowSupportedPrivileges = ($this, $ctx) => { + let var$2; + var$2 = oncia_ShowSupportedPrivilegeCommand$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowSupportedPrivilegeCommand$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitShowPrivileges = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0); + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); + var$3 = var$2.$_1$mcZ$sp0; + var$4 = var$2.$_2$mcZ$sp0; + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)); + $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, oncia_ShowAllPrivileges__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, oncia_ShowAllPrivileges__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitShowRolePrivileges = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0); + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); + var$3 = var$2.$_1$mcZ$sp0; + var$4 = var$2.$_2$mcZ$sp0; + var$2 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)); + var$5 = oncia_ShowRolesPrivileges__init_((oncipv_Cypher5Parser$RoleNamesContext_symbolicNameOrStringParameterList(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0))).$ast0.$toList(), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, var$5, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, var$5, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitShowUserPrivileges = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0); + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); + var$3 = var$2.$_1$mcZ$sp0; + var$4 = var$2.$_2$mcZ$sp0; + var$5 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserNamesContext), 0); + var$2 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)); + var$6 = var$5 === null ? oncia_ShowUserPrivileges__init_(s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowUsersPrivileges__init_(var$5.$ast0.$toList(), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, var$6, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, var$6, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitPrivilegeAsCommand = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2$mcZZ$sp__init_(oncip_AstRuleCtx_getToken($ctx, 23, 0) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 234, 0) === null ? 0 : 1); +}, +oncipvaf_Cypher5AstBuilder_exitShowDatabase = ($this, $ctx) => { + let var$2, var$3; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0); + if (var$2 !== null) { + var$3 = new oncia_SingleNamedDatabaseScope; + var$2 = var$2.$ast0; + oncipau_Util$_$callClinit(); + oncia_SingleNamedDatabaseScope__init_(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (oncip_AstRuleCtx_getToken($ctx, 126, 0) !== null) { + var$3 = new oncia_HomeDatabaseScope; + oncipau_Util$_$callClinit(); + oncia_HomeDatabaseScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (oncip_AstRuleCtx_getToken($ctx, 71, 0) === null) { + var$3 = new oncia_AllDatabasesScope; + oncipau_Util$_$callClinit(); + oncia_AllDatabasesScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$3 = new oncia_DefaultDatabaseScope; + oncipau_Util$_$callClinit(); + oncia_DefaultDatabaseScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + var$2 = oncia_ShowDatabase$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowDatabase$_apply(var$2, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); +}, +oncipvaf_Cypher5AstBuilder_exitShowAliases = ($this, $ctx) => { + let var$2; + var$2 = oncia_ShowAliases$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowAliases$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AliasNameContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitCreateCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitCreateConstraint = ($this, $ctx) => { + oncipvaf_DdlCreateBuilder_exitCreateConstraint0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitConstraintType = ($this, $ctx) => { + let var$2, var$3, var$4; + if ($ctx instanceof oncipv_Cypher5Parser$ConstraintExistsContext) + var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); + else if ($ctx instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) + var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); + else if ($ctx instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { + var$3 = $ctx; + var$4 = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0; + var$3 = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$TypeContext), 0)).$ast0; + var$2 = s_Tuple2__init_(var$4, s_Some__init_(var$3)); + } else if ($ctx instanceof oncipv_Cypher5Parser$ConstraintIsUniqueContext) + var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); + else { + if (!($ctx instanceof oncipv_Cypher5Parser$ConstraintKeyContext)) { + var$3 = new jl_IllegalStateException; + jl_Throwable__init_(var$3, $rt_s(5111)); + $rt_throw(var$3); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitCreateIndex = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitOldCreateIndex = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitCreateIndex_ = ($this, $ctx) => { + oncipvaf_DdlCreateBuilder_exitCreateIndex_0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitCreateFulltextIndex = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = $ctx.$parent.$parent; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1); + var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0); + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0)); + var$6 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$FulltextNodePatternContext), 0); + var$7 = var$6 === null ? 0 : 1; + var$8 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$EnclosedPropertyListContext), 0)).$ast0.$toList(); + if (var$7) { + var$9 = var$6.$ast0; + if (var$9 === null) + $rt_throw(s_MatchError__init_(var$9)); + var$10 = s_Tuple2__init_(var$9.$_1(), var$9.$_2()); + var$9 = var$10.$_10; + var$6 = var$10.$_20; + var$9 = oncia_CreateIndex$_createFulltextNodeIndex(oncia_CreateIndex$_MODULE$, var$9, var$6, var$8, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } else { + var$9 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$FulltextRelPatternContext), 0)).$ast0; + if (var$9 === null) + $rt_throw(s_MatchError__init_(var$9)); + var$10 = s_Tuple2__init_(var$9.$_1(), var$9.$_2()); + var$6 = var$10.$_10; + var$10 = var$10.$_20; + var$9 = oncia_CreateIndex$_createFulltextRelationshipIndex(oncia_CreateIndex$_MODULE$, var$6, var$10, var$8, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } + $ctx.$ast0 = var$9; +}, +oncipvaf_Cypher5AstBuilder_exitFulltextNodePattern = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = new s_Tuple2; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); + var$6 = new oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0; + sr_ClassTag$_$callClinit(); + s_Tuple2__init_0(var$2, var$3, sc_IterableOnceOps_toList$(oncipau_Util$_astSeqPositioned(var$4, var$5, var$6, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitFulltextRelPattern = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = new s_Tuple2; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); + var$6 = new oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0; + sr_ClassTag$_$callClinit(); + s_Tuple2__init_0(var$2, var$3, sc_IterableOnceOps_toList$(oncipau_Util$_astSeqPositioned(var$4, var$5, var$6, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_RelTypeName))))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitLookupIndexNodePattern = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitLookupIndexRelPattern = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitCreateLookupIndex = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; + var$2 = $ctx.$parent.$parent; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1); + var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0); + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0)); + var$6 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LookupIndexNodePatternContext), 0); + var$7 = var$6 === null ? 0 : 1; + var$8 = oncipv_Cypher5Parser$CreateLookupIndexContext_symbolicNameString($ctx); + var$9 = oncipau_Util$_pos(oncipau_Util$_MODULE$, var$8); + var$10 = new oncie_FunctionInvocation; + var$11 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, var$8.$ast0, var$9); + s_package$_$callClinit(); + var$12 = s_package$_IndexedSeq(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$13 = $rt_createArray(oncie_Variable, 1); + var$13.data[0] = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; + var$8 = sc_SeqFactory$Delegate_apply(var$12, sr_ScalaRunTime$_wrapRefArray(var$8, var$13)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$10, var$11, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, var$9); + var$8 = var$7 ? var$6.$ast0 : (oncipv_Cypher5Parser$CreateLookupIndexContext_lookupIndexRelPattern($ctx)).$ast0; + $ctx.$ast0 = oncia_CreateIndex$_createLookupIndex(oncia_CreateIndex$_MODULE$, var$8, var$7, var$10, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher5AstBuilder_exitCreateRole = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$2 = $ctx.$parent; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext)); + if (var$3.$size() <= 1) + var$4 = s_None$_MODULE$; + else { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && var$3.$size() != 2) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + var$4 = s_Some__init_((var$3.$get0(1)).$ast0); } - return $_localctx; + var$5 = new oncia_CreateRole; + var$6 = (var$3.$get0(0)).$ast0; + var$7 = oncip_AstRuleCtx_getToken($ctx, 130, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_CreateRole__init_(var$5, var$6, var$7, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + $ctx.$ast0 = var$5; }, -oncipv_Cypher5Parser_dynamicExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DynamicExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 128, 64); +oncipvaf_Cypher5AstBuilder_exitCreateUser = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $ctx.$parent; + var$3 = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0); + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + var$3 = sci_List_foldLeft(var$3, sci_Nil$_MODULE$, new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1); + var$3 = sci_List_foldLeft(sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordChangeRequiredContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2), var$3, new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3); + var$4 = new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4; + onciu_InputPosition$_$callClinit(); + var$5 = var$3.$sortBy(var$4, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); + if (!sc_IterableOnceOps_nonEmpty$(var$5)) + var$4 = s_None$_MODULE$; + else { + var$4 = new s_Some; + var$6 = new oncia_Auth; + oncia_AdministrationCommand$_$callClinit(); + oncia_Auth__init_(var$6, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), var$5, (var$5.$head()).$position()); + s_Some__init_0(var$4, var$6); + } + var$5 = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SetAuthClauseContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateUserContext_userStatus($ctx), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6); + var$6 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateUserContext_homeDatabase($ctx), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7); + $ctx.$ast0 = oncia_CreateUser__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0, oncia_UserOptions__init_(var$3, var$6), oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1), var$5, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher5AstBuilder_exitCreateCompositeDatabase = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = $ctx.$parent; + var$3 = new oncia_CreateCompositeDatabase; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_CreateCompositeDatabase__init_(var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, + $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitCreateDatabase = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$2 = $ctx.$parent; + if (oncip_AstRuleCtx_getToken($ctx, 275, 0) === null) + var$3 = s_None$_MODULE$; + else { + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateDatabaseContext_primaryTopology($ctx), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0); + var$5 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateDatabaseContext_secondaryTopology($ctx), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1); + var$3 = s_Some__init_(oncia_Topology__init_(var$4, var$5)); + } + var$6 = new oncia_CreateDatabase; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_CreateDatabase__init_(var$6, var$7, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, + $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3), var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + $ctx.$ast0 = var$6; +}, +oncipvaf_Cypher5AstBuilder_exitCreateAlias = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = $ctx.$parent; + var$3 = (oncipv_Cypher5Parser$CreateAliasContext_aliasName($ctx)).$ast0; + var$4 = (oncipv_Cypher5Parser$CreateAliasContext_databaseName($ctx)).$ast0; + var$5 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; + var$6 = oncip_AstRuleCtx_getToken($ctx, 210, 0) === null ? s_None$_MODULE$ : oncipv_Cypher5Parser$CreateAliasContext_DRIVER($ctx) === null ? s_Some__init_((oncipv_Cypher5Parser$CreateAliasContext_mapOrParameter($ctx, 0)).$ast0) : s_Some__init_((oncipv_Cypher5Parser$CreateAliasContext_mapOrParameter($ctx, 1)).$ast0); + if (oncipv_Cypher5Parser$CreateAliasContext_AT($ctx) === null) { + var$7 = new oncia_CreateLocalDatabaseAlias; + oncipau_Util$_$callClinit(); + oncia_CreateLocalDatabaseAlias__init_(var$7, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, var$5), var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } else { + var$8 = oncipv_Cypher5Parser$CreateAliasContext_DRIVER($ctx) === null ? s_None$_MODULE$ : s_Some__init_((oncipv_Cypher5Parser$CreateAliasContext_mapOrParameter($ctx, 0)).$ast0); + var$7 = new oncia_CreateRemoteDatabaseAlias; + oncipau_Util$_$callClinit(); + oncia_CreateRemoteDatabaseAlias__init_(var$7, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, var$5), (oncipv_Cypher5Parser$CreateAliasContext_stringOrParameter($ctx)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordExpressionContext), 0)).$ast0, var$8, var$6, + oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher5AstBuilder_exitCommandOptions = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MapOrParameterContext), 0)).$ast0; + if (var$2 instanceof su_Left) + var$3 = oncia_OptionsMap__init_0(var$2.$value6); + else { + if (!(var$2 instanceof su_Right)) + $rt_throw(s_MatchError__init_(var$2)); + var$3 = oncia_OptionsParam__init_(var$2.$value7); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitMapOrParameter = ($this, $ctx) => { + let var$2, var$3; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MapContext), 0); + if (var$2 === null) { + s_package$_$callClinit(); + var$3 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0); + } else { + s_package$_$callClinit(); + var$3 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), sc_AbstractIterable_toMap(var$2.$ast0.$items1.$map(new oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0), s_$less$colon$less$_singleton)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitCommand = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1291); - oavr_Parser_match($this, 80); - oavr_Recognizer_setState($this, 1292); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1293); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1294); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UseClauseContext), 0); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx); + if (!(var$3 instanceof oncipv_Cypher5Parser$ShowCommandContext)) { + if (!(var$3 instanceof oncipv_Cypher5Parser$TerminateCommandContext)) + var$4 = var$3.$ast0.$withGraph0(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$2)); + else { + var$3 = var$3; + if (var$2 === null) + var$4 = oncia_SingleQuery__init_0(var$3.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + else { + var$4 = new oncia_SingleQuery; + var$2 = var$2.$ast0; + oncia_SingleQuery__init_(var$4, var$3.$ast0.$$plus$colon(var$2), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + } else { + var$4 = var$3.$ast0; + if (var$4 instanceof oncia_SingleQuery) { + var$3 = var$4; + if (var$2 !== null) { + var$4 = new oncia_SingleQuery; + var$2 = var$2.$ast0; + oncia_SingleQuery__init_(var$4, var$3.$clauses0.$prepended(var$2), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if ($rt_isInstance(var$4, oncia_StatementWithGraph)) { + var$3 = var$4; + if (var$2 !== null) + var$4 = var$3.$withGraph0(s_Some__init_(var$2.$ast0)); + } } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_dynamicAnyAllExpression = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DynamicAnyAllExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 130, 65); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1296); - oavr_Parser_match($this, 80); - oavr_Recognizer_setState($this, 1298); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 21)) { - oavr_Recognizer_setState($this, 1297); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 21) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 1300); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1301); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1302); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher5AstBuilder_exitDropCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitCommandNodePattern = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelTypeContext), 0)).$ast0); +}, +oncipvaf_Cypher5AstBuilder_exitCommandRelPattern = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RelTypeContext), 0)).$ast0); +}, +oncipvaf_Cypher5AstBuilder_exitDropConstraint = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$3 = oncipv_Cypher5Parser$DropConstraintContext_symbolicNameOrStringParameter($ctx); + if (var$3 !== null) + $ctx.$ast0 = oncia_DropConstraintOnName__init_(var$3.$ast0, oncipv_Cypher5Parser$DropConstraintContext_EXISTS($ctx) === null ? 0 : 1, s_None$_MODULE$, var$2); +}; +let oncipvaf_Cypher5AstBuilder_exitDropIndex = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oncipv_Cypher5Parser$DropIndexContext_symbolicNameOrStringParameter($ctx); + if (var$2 !== null) { + var$3 = new oncia_DropIndexOnName; + var$4 = var$2.$ast0; + var$5 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; + var$6 = s_None$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_DropIndexOnName__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$3; + } +}, +oncipvaf_Cypher5AstBuilder_exitPropertyList = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$EnclosedPropertyListContext), 0); + if (var$2 !== null) + var$2 = var$2.$ast0; + else { + var$3 = sci_ArraySeq$_MODULE$; + var$2 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_Property, 1); + var$5 = var$4.data; + var$6 = new oncie_Property; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; + var$8 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncie_Property__init_0(var$6, var$7, var$8, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$5[0] = var$6; + var$2 = sr_ScalaRunTime$_wrapRefArray(var$2, var$4); + sr_ClassTag$_$callClinit(); + var$2 = sci_ArraySeq$_from(var$3, var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property))); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitEnclosedPropertyList = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = sci_ArraySeq_map(oncipau_Util$_astPairs(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext)), oncipv_Cypher5Parser$EnclosedPropertyListContext_property($ctx)), new oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0); +}, +oncipvaf_Cypher5AstBuilder_exitAlterCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitRenameCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitEnableServerCommand = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_EnableServer; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_EnableServer__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_00), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitAlterServer = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_AlterServer; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0)).$ast0; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_AlterServer__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitRenameServer = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext)); + var$3 = new oncia_RenameServer; + var$4 = (var$2.$get0(0)).$ast0; + var$2 = (var$2.$get0(1)).$ast0; + oncipau_Util$_$callClinit(); + oncia_RenameServer__init_(var$3, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitDropServer = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_DropServer; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_DropServer__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitAllocationCommand = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncip_AstRuleCtx_getToken($ctx, 88, 0) === null ? 0 : 1; + if (oncipv_Cypher5Parser$AllocationCommandContext_reallocateDatabases($ctx) !== null) { + var$3 = new oncia_ReallocateDatabases; + oncipau_Util$_$callClinit(); + oncia_ReallocateDatabases__init_(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AllocationCommandContext_reallocateDatabases($ctx))); + } else { + var$3 = new oncia_DeallocateServers; + var$4 = (oncipv_Cypher5Parser$AllocationCommandContext_deallocateDatabaseFromServers($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_DeallocateServers__init_(var$3, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AllocationCommandContext_deallocateDatabaseFromServers($ctx))); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitDeallocateDatabaseFromServers = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(su_Either))); +}, +oncipvaf_Cypher5AstBuilder_exitReallocateDatabases = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitDropRole = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_DropRole; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_DropRole__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitRenameRole = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext)); + var$3 = new oncia_RenameRole; + var$4 = (var$2.$get0(0)).$ast0; + var$5 = (var$2.$get0(1)).$ast0; + var$6 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_RenameRole__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitDropUser = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_DropUser; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_DropUser__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitRenameUser = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext)); + var$3 = new oncia_RenameUser; + var$4 = (var$2.$get0(0)).$ast0; + var$5 = (var$2.$get0(1)).$ast0; + var$6 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_RenameUser__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitAlterCurrentUser = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_SetOwnPassword; + var$3 = (oncipv_Cypher5Parser$AlterCurrentUserContext_passwordExpression($ctx, 1)).$ast0; + var$4 = (oncipv_Cypher5Parser$AlterCurrentUserContext_passwordExpression($ctx, 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_SetOwnPassword__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitAlterUser = ($this, $ctx) => { + oncipvaf_DdlBuilder_exitAlterUser0($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitRemoveNamedProvider = ($this, $ctx) => { + $ctx.$ast0 = oncipv_Cypher5Parser$RemoveNamedProviderContext_stringLiteral($ctx) !== null ? (oncipv_Cypher5Parser$RemoveNamedProviderContext_stringLiteral($ctx)).$ast0 : oncipv_Cypher5Parser$RemoveNamedProviderContext_stringListLiteral($ctx) !== null ? (oncipv_Cypher5Parser$RemoveNamedProviderContext_stringListLiteral($ctx)).$ast0 : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitSetAuthClause = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$UserAuthAttributeContext)); + sr_ClassTag$_$callClinit(); + var$3 = sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_AuthAttribute)))); + $ctx.$ast0 = oncia_Auth__init_0(var$2.$value8, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitUserAuthAttribute = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncipv_Cypher5Parser$UserAuthAttributeContext_ID($ctx) !== null) { + var$2 = new oncia_AuthId; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterExpressionContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_AuthId__init_(var$2, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$UserAuthAttributeContext_ID($ctx))); + } else if (oncipv_Cypher5Parser$UserAuthAttributeContext_passwordOnly($ctx) !== null) + var$2 = (oncipv_Cypher5Parser$UserAuthAttributeContext_passwordOnly($ctx)).$ast0; + else { + var$2 = new oncia_PasswordChange; + var$4 = sr_BoxesRunTime_unboxToBoolean((oncipv_Cypher5Parser$UserAuthAttributeContext_passwordChangeRequired($ctx)).$ast0); + oncipau_Util$_$callClinit(); + oncia_PasswordChange__init_(var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$UserAuthAttributeContext_passwordChangeRequired($ctx))); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitPasswordOnly = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Password; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 97, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_Password__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitPassword = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Password; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 97, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_Password__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = s_Tuple2__init_(var$2, oncipv_Cypher5Parser$PasswordContext_passwordChangeRequired($ctx) === null ? s_None$_MODULE$ : s_Some__init_(oncia_PasswordChange__init_0(sr_BoxesRunTime_unboxToBoolean((oncipv_Cypher5Parser$PasswordContext_passwordChangeRequired($ctx)).$ast0), oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$PasswordContext_passwordChangeRequired($ctx))))); +}, +oncipvaf_Cypher5AstBuilder_exitPasswordExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0); + if (var$2 !== null) { + var$2 = var$2.$ast0; + var$3 = new oncie_SensitiveStringLiteral; + var$4 = var$2.$value8; + jnc_StandardCharsets_$callClinit(); + oncie_SensitiveStringLiteral__init_(var$3, jl_String_getBytes(var$4, jnc_StandardCharsets_UTF_8), var$2.$position18); + } else { + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; + var$3 = new oncipvaf_DdlBuilder$$anon$1; + var$4 = var$2.$name(); + oncius_package$_$callClinit(); + var$5 = oncius_package$_CTString(oncius_package$_MODULE$); + oncie_ExplicitParameter$_$callClinit(); + oncie_ExplicitParameter__init_(var$3, var$4, var$5, oncie_ExplicitParameter$_$lessinit$greater$default$3(oncie_ExplicitParameter$_MODULE$), var$2.$position()); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitPasswordChangeRequired = ($this, $ctx) => { + $ctx.$ast0 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 179, 0) !== null ? 0 : 1); +}, +oncipvaf_Cypher5AstBuilder_exitUserStatus = ($this, $ctx) => { + $ctx.$ast0 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1); +}, +oncipvaf_Cypher5AstBuilder_exitHomeDatabase = ($this, $ctx) => { + $ctx.$ast0 = oncia_SetHomeDatabaseAction__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0); +}, +oncipvaf_Cypher5AstBuilder_exitDropDatabase = ($this, $ctx) => { + let var$2, var$3; + var$2 = oncip_AstRuleCtx_getToken($ctx, 89, 0) === null ? oncia_DestroyData$_MODULE$ : oncia_DumpData$_MODULE$; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AliasActionContext), 0), new oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0); + $ctx.$ast0 = oncia_DropDatabase__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 53, 0) === null ? 0 : 1, var$3, var$2, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1), oncipau_Util$_pos(oncipau_Util$_MODULE$, + $ctx.$parent)); +}, +oncipvaf_Cypher5AstBuilder_exitAliasAction = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 42, 0) === null ? oncia_Restrict$_MODULE$ : oncia_CascadeAliases$_MODULE$; +}, +oncipvaf_Cypher5AstBuilder_exitAlterDatabase = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_00); + if (!(oncipv_Cypher5Parser$AlterDatabaseContext_REMOVE($ctx)).$isEmpty()) { + s_Predef$_$callClinit(); + var$4 = s_Predef$_Set(s_Predef$_MODULE$); + var$5 = oncipau_Util$_MODULE$; + var$6 = oncipv_Cypher5Parser$AlterDatabaseContext_symbolicNameString($ctx); + sr_ClassTag$_$callClinit(); + var$5 = sci_Set$_from(var$4, oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))); + var$7 = new oncia_AlterDatabase; + var$8 = oncipv_Cypher5Parser$AlterDatabaseContext_EXISTS($ctx) === null ? 0 : 1; + var$6 = s_None$_MODULE$; + oncia_NoOptions$_$callClinit(); + oncia_AlterDatabase__init_(var$7, var$2, var$8, var$6, var$6, oncia_NoOptions$_MODULE$, var$5, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + } else { + var$9 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseAccess($ctx), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_10); + var$10 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_20); + if ((oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption($ctx)).$isEmpty()) { + oncia_NoOptions$_$callClinit(); + var$11 = oncia_NoOptions$_MODULE$; + } else { + var$11 = new oncia_OptionsMap; + var$6 = oncipau_Util$_MODULE$; + var$7 = oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption($ctx); + sr_ClassTag$_$callClinit(); + oncia_OptionsMap__init_(var$11, (oncipau_Util$_astSeq(var$6, var$7, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(sci_Map)))).$reduceLeft(new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_30)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$7 = new oncia_AlterDatabase; + var$8 = oncipv_Cypher5Parser$AlterDatabaseContext_EXISTS($ctx) === null ? 0 : 1; + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + oncia_AlterDatabase__init_(var$7, var$2, var$8, var$9, var$10, var$11, sci_Set$EmptySet$_MODULE$, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); } - return $_localctx; + $ctx.$ast0 = var$7; }, -oncipv_Cypher5Parser_dynamicLabelType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DynamicLabelTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 132, 66); +oncipvaf_Cypher5AstBuilder_exitAlterDatabaseAccess = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 186, 0) === null ? oncia_ReadWriteAccess$_MODULE$ : oncia_ReadOnlyAccess$_MODULE$; +}, +oncipvaf_Cypher5AstBuilder_exitAlterDatabaseTopology = ($this, $ctx) => { + let var$2; + if (oncip_AstRuleCtx_getToken($ctx, 275, 0) === null) + var$2 = s_None$_MODULE$; + else { + oncipau_Util$_$callClinit(); + var$2 = oncia_Topology__init_(oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterDatabaseTopologyContext_primaryTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0), oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterDatabaseTopologyContext_secondaryTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitPrimaryTopology = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UIntOrIntParameterContext), 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitSecondaryTopology = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UIntOrIntParameterContext), 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitAlterDatabaseOption = ($this, $ctx) => { + let var$2, var$3, var$4; + s_Predef$_$callClinit(); + var$2 = s_Predef$_Map(s_Predef$_MODULE$); + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(s_Tuple2, 1); + var$4.data[0] = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0); + $ctx.$ast0 = sci_Map$_from(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); +}, +oncipvaf_Cypher5AstBuilder_exitStartDatabase = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_StartDatabase; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_StartDatabase__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitStopDatabase = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_StopDatabase; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_StopDatabase__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_00), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitWaitClause = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1304); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 1305); - oncipv_Cypher5Parser_dynamicExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); + switch (var$2) { + case 181: + break; + case 299: + var$3 = oncip_AstRuleCtx_getToken($ctx, 5, 0); + if (var$3 === null) { + oncia_IndefiniteWait$_$callClinit(); + var$4 = oncia_IndefiniteWait$_MODULE$; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + var$4 = new oncia_TimeoutAfter; + s_Predef$_$callClinit(); + oncia_TimeoutAfter__init_(var$4, jl_Long_parseLong(var$3.$getText())); + break a; + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); + } + oncia_NoWait$_$callClinit(); + var$4 = oncia_NoWait$_MODULE$; + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher5AstBuilder_exitDropAlias = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_DropDatabaseAlias; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AliasNameContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_DropDatabaseAlias__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitAlterAlias = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = (oncipv_Cypher5Parser$AlterAliasContext_aliasName($ctx)).$ast0; + var$3 = oncipv_Cypher5Parser$AlterAliasContext_alterAliasTarget($ctx); + if (var$3.$isEmpty()) { + var$4 = new s_Tuple2; + var$5 = s_None$_MODULE$; + s_Tuple2__init_0(var$4, var$5, var$5); + } else { + var$4 = new s_Tuple2; + var$5 = s_Some__init_((oncipv_Cypher5Parser$AlterAliasTargetContext_databaseName(var$3.$get0(0))).$ast0); + oncipau_Util$_$callClinit(); + s_Tuple2__init_0(var$4, var$5, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasTargetContext_stringOrParameter(var$3.$get0(0)))); + } + var$4 = s_Tuple2__init_(var$4.$_10, var$4.$_20); + var$3 = var$4.$_10; + var$6 = var$4.$_20; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasContext_alterAliasUser($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_00); + var$8 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasContext_alterAliasPassword($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_10); + var$9 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasContext_alterAliasDriver($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_20); + var$4 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasContext_alterAliasProperties($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_30); + $ctx.$ast0 = s_Option_isEmpty(var$6) && s_Option_isEmpty(var$7) && s_Option_isEmpty(var$8) && s_Option_isEmpty(var$9) ? oncia_AlterLocalDatabaseAlias__init_(var$2, var$3, oncipv_Cypher5Parser$AlterAliasContext_EXISTS($ctx) === null ? 0 : 1, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)) : oncia_AlterRemoteDatabaseAlias__init_(var$2, var$3, oncipv_Cypher5Parser$AlterAliasContext_EXISTS($ctx) === null ? 0 : 1, var$6, var$7, var$8, var$9, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); +}, +oncipvaf_Cypher5AstBuilder_exitAlterAliasTarget = ($this, $ctx) => { + let var$2; + var$2 = (oncipv_Cypher5Parser$AlterAliasTargetContext_databaseName($ctx)).$ast0; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = s_Tuple2__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasTargetContext_stringOrParameter($ctx))); +}, +oncipvaf_Cypher5AstBuilder_exitAlterAliasUser = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitAlterAliasPassword = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitAlterAliasDriver = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitAlterAliasProperties = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitSymbolicNameOrStringParameter = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_symbolicNameString($ctx) !== null) { + s_package$_$callClinit(); + var$2 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_symbolicNameString($ctx)).$ast0); + } else { + s_package$_$callClinit(); + var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitCommandNameExpression = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncipv_Cypher5Parser$CommandNameExpressionContext_symbolicNameString($ctx); + if (var$2 === null) + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; + else { + var$3 = new oncie_StringLiteral; + var$4 = (oncipv_Cypher5Parser$CommandNameExpressionContext_symbolicNameString($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncie_StringLiteral__init_0(var$3, var$4, oncipau_Util$_rangePos(oncipau_Util$_MODULE$, var$2)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitSymbolicNameOrStringParameterList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); +}, +oncipvaf_Cypher5AstBuilder_exitSymbolicAliasNameList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_DatabaseName))); +}, +oncipvaf_Cypher5AstBuilder_exitSymbolicAliasNameOrParameter = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($ctx); + if (var$2 !== null) { + var$2 = var$2.$ast0.$toList(); + var$3 = oncia_NamespacedName$_MODULE$; + oncipau_Util$_$callClinit(); + var$3 = oncia_NamespacedName$_apply(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$3 = new oncia_ParameterName; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_ParameterName__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$3; +}; +let oncipvaf_Cypher5AstBuilder_exitAliasName = ($this, $ctx) => { + $ctx.$ast0 = (oncipv_Cypher5Parser$AliasNameContext_symbolicAliasNameOrParameter($ctx)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitDatabaseName = ($this, $ctx) => { + $ctx.$ast0 = (oncipv_Cypher5Parser$DatabaseNameContext_symbolicAliasNameOrParameter($ctx)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitStringOrParameterExpression = ($this, $ctx) => { + $ctx.$ast0 = oncipv_Cypher5Parser$StringOrParameterExpressionContext_stringLiteral($ctx) !== null ? (oncipv_Cypher5Parser$StringOrParameterExpressionContext_stringLiteral($ctx)).$ast0 : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitStringOrParameter = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher5Parser$StringOrParameterContext_stringLiteral($ctx) !== null) { + s_package$_$callClinit(); + var$2 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (oncipv_Cypher5Parser$StringOrParameterContext_stringLiteral($ctx)).$ast0.$value8); + } else { + s_package$_$callClinit(); + var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitUIntOrIntParameter = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher5Parser$UIntOrIntParameterContext_UNSIGNED_DECIMAL_INTEGER($ctx) === null) { + s_package$_$callClinit(); + var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0); + } else { + s_package$_$callClinit(); + var$2 = s_package$_Left(s_package$_MODULE$); + s_Predef$_$callClinit(); + var$2 = su_Left$_apply(var$2, jl_Integer_valueOf(jl_Integer_parseInt0((oncipv_Cypher5Parser$UIntOrIntParameterContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText()))); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitNodePattern = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncie_NodePattern__init_0(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, + oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher5AstBuilder_exitRelationshipPattern = ($this, $ctx) => { + let var$2; + var$2 = new oncie_RelationshipPattern; + oncipau_Util$_$callClinit(); + oncie_RelationshipPattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PathLengthContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, + oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)), oncipau_Util$_semanticDirection(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RightArrowContext), 0) === null ? 0 : 1, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LeftArrowContext), 0) === null + ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitNodeLabels = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new s_Tuple2; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$LabelTypeContext)); + sr_ClassTag$_$callClinit(); + s_Tuple2__init_0(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))), oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$DynamicLabelTypeContext)), 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression)))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitNodeLabelsIs = ($this, $ctx) => { + let var$2, var$3; + var$2 = sci_ArraySeq$_MODULE$; + sr_ClassTag$_$callClinit(); + var$2 = sci_ArraySeq$_newBuilder(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))); + s_Option$_$callClinit(); + var$3 = scm_Builder$$anon$1_addAll(var$2, s_Option_map(s_Option$_apply(s_Option$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0)), new oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_00)); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = s_Tuple2__init_(scm_Builder$$anon$1_result(scm_Builder$$anon$1_addAll(var$3, oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$LabelTypeContext)), 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)))), scm_Builder$$anon$1_result(scm_Builder$$anon$1_addAll(scm_Builder$$anon$1_addAll(sci_ArraySeq$_newBuilder(sci_ArraySeq$_MODULE$, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, + oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$DynamicExpressionContext), 0))), oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$DynamicLabelTypeContext)), 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))))); +}, +oncipvaf_Cypher5AstBuilder_exitDynamicExpression = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitDynamicAnyAllExpression = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_DynamicLabelOrRelTypeExpression; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 21, 0) !== null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncie_DynamicLabelOrRelTypeExpression__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitDynamicLabelType = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitLabelType = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + $ctx.$ast0 = oncie_LabelName__init_(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher5AstBuilder_exitRelType = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + $ctx.$ast0 = oncie_RelTypeName__init_0(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher5AstBuilder_exitLabelOrRelType = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + $ctx.$ast0 = oncie_LabelOrRelTypeName__init_0(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher5AstBuilder_exitLabelExpression = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher5AstBuilder_exitLabelExpression4 = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = $ctx.$children0; + var$3 = var$2.$size0; + var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; + var$5 = 0; + var$6 = 1; + while (var$6 < var$3) { + var$7 = ju_ArrayList_get(var$2, var$6); + if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 47) + var$5 = 1; + else if (var$7 instanceof oncipv_Cypher5Parser$LabelExpression3Context) { + var$8 = var$7.$ast0; + if (!var$5) { + var$9 = oncil_LabelExpression$Disjunctions$_MODULE$; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_MODULE$; + var$4 = oncil_LabelExpression$Disjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 0); + } else { + var$7 = new oncil_LabelExpression$ColonDisjunction; + oncipau_Util$_$callClinit(); + var$9 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonDisjunction__init_(var$7, var$4, var$8, 0, oncipau_Util$_pos1(var$9, oncipau_Util$_nodeChild(var$9, $ctx, var$6 - 2 | 0))); + var$5 = 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$6 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_labelType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 134, 67); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1307); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 1308); - oncipv_Cypher5Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_Cypher5AstBuilder_exitLabelExpression4Is = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = $ctx.$children0; + var$3 = var$2.$size0; + var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; + var$5 = 0; + var$6 = 1; + while (var$6 < var$3) { + var$7 = ju_ArrayList_get(var$2, var$6); + if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 47) + var$5 = 1; + else if (var$7 instanceof oncipv_Cypher5Parser$LabelExpression3IsContext) { + var$8 = var$7.$ast0; + if (!var$5) { + var$9 = oncil_LabelExpression$Disjunctions$_MODULE$; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_MODULE$; + var$4 = oncil_LabelExpression$Disjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 1); + } else { + var$7 = new oncil_LabelExpression$ColonDisjunction; + oncipau_Util$_$callClinit(); + var$10 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonDisjunction__init_(var$7, var$4, var$8, 1, oncipau_Util$_pos1(var$10, oncipau_Util$_nodeChild(var$10, $ctx, var$6 - 2 | 0))); + var$5 = 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$6 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_relType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RelTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 136, 68); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1310); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 1311); - oncipv_Cypher5Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_Cypher5AstBuilder_exitLabelExpression3 = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = $ctx.$children0; + var$3 = var$2.$size0; + var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; + var$5 = 0; + var$6 = 1; + while (var$6 < var$3) { + var$7 = ju_ArrayList_get(var$2, var$6); + if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 47) + var$5 = 1; + else if (var$7 instanceof oncipv_Cypher5Parser$LabelExpression2Context) { + var$8 = var$7.$ast0; + if (!var$5) { + var$9 = oncil_LabelExpression$Conjunctions$_MODULE$; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_MODULE$; + var$4 = oncil_LabelExpression$Conjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 0); + } else { + var$7 = new oncil_LabelExpression$ColonConjunction; + oncipau_Util$_$callClinit(); + var$9 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonConjunction__init_(var$7, var$4, var$8, 0, oncipau_Util$_pos1(var$9, oncipau_Util$_nodeChild(var$9, $ctx, var$6 - 1 | 0))); + var$5 = 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$6 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_labelOrRelType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelOrRelTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 138, 69); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1313); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 1314); - oncipv_Cypher5Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_Cypher5AstBuilder_exitLabelExpression3Is = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = $ctx.$children0; + var$3 = var$2.$size0; + var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; + var$5 = 0; + var$6 = 1; + while (var$6 < var$3) { + var$7 = ju_ArrayList_get(var$2, var$6); + if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 47) + var$5 = 1; + else if (var$7 instanceof oncipv_Cypher5Parser$LabelExpression2IsContext) { + var$8 = var$7.$ast0; + if (!var$5) { + var$9 = oncil_LabelExpression$Conjunctions$_MODULE$; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_MODULE$; + var$4 = oncil_LabelExpression$Conjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 1); + } else { + var$7 = new oncil_LabelExpression$ColonConjunction; + oncipau_Util$_$callClinit(); + var$10 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonConjunction__init_(var$7, var$4, var$8, 1, oncipau_Util$_pos1(var$10, oncipau_Util$_nodeChild(var$10, $ctx, var$6 - 1 | 0))); + var$5 = 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$6 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_properties = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PropertiesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 140, 70); +oncipvaf_Cypher5AstBuilder_exitLabelExpression2 = ($this, $ctx) => { + let var$2; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1318); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 80: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1317); - oncipv_Cypher5Parser_parameter($this, $rt_s(708)); - break e; - case 147: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1316); - oncipv_Cypher5Parser_map($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + switch ($ctx.$children0.$size0) { + case 1: + break; + case 2: + var$2 = new oncil_LabelExpression$Negation; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Negation__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: + var$2 = scc_AsScalaExtensions$CollectionHasAsScala_asScala(sj_CollectionConverters$_CollectionHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 145))); + oncipau_Util$_$callClinit(); + var$2 = sc_AbstractIterable_foldRight(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_00); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_relationshipPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RelationshipPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 142, 71); +oncipvaf_Cypher5AstBuilder_exitLabelExpression2Is = ($this, $ctx) => { + let var$2; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1321); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 156 && $_la != 311)) { - oavr_Recognizer_setState($this, 1320); - oncipv_Cypher5Parser_leftArrow($this); - } - oavr_Recognizer_setState($this, 1323); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 1342); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 146) { - e: { - oavr_Recognizer_setState($this, 1324); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 1326); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 106, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1325); - oncipv_Cypher5Parser_variable($this); - } - oavr_Recognizer_setState($this, 1329); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 47 && $_la != 139)) { - oavr_Recognizer_setState($this, 1328); - oncipv_Cypher5Parser_labelExpression($this); - } - oavr_Recognizer_setState($this, 1332); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 271) { - oavr_Recognizer_setState($this, 1331); - oncipv_Cypher5Parser_pathLength($this); - } - oavr_Recognizer_setState($this, 1335); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 80 && $_la != 147)) { - oavr_Recognizer_setState($this, 1334); - oncipv_Cypher5Parser_properties($this); - } - oavr_Recognizer_setState($this, 1339); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 1337); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 1338); - oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1341); - oavr_Parser_match($this, 216); - } - oavr_Recognizer_setState($this, 1344); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 1346); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 124 && $_la != 312)) { - oavr_Recognizer_setState($this, 1345); - oncipv_Cypher5Parser_rightArrow($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + switch ($ctx.$children0.$size0) { + case 1: + break; + case 2: + var$2 = new oncil_LabelExpression$Negation; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Negation__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: + var$2 = scc_AsScalaExtensions$CollectionHasAsScala_asScala(sj_CollectionConverters$_CollectionHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 145))); + oncipau_Util$_$callClinit(); + var$2 = sc_AbstractIterable_foldRight(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_00); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_insertRelationshipPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$InsertRelationshipPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 144, 72); +oncipvaf_Cypher5AstBuilder_exitLabelExpression1 = ($this, $ctx) => { + oncipvaf_LabelExpressionBuilder_exitLabelExpression10($this, $ctx); +}, +oncipvaf_Cypher5AstBuilder_exitLabelExpression1Is = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1349); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 156 && $_la != 311)) { - oavr_Recognizer_setState($this, 1348); - oncipv_Cypher5Parser_leftArrow($this); - } - e: { - oavr_Recognizer_setState($this, 1351); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 1352); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 1354); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 114, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1353); - oncipv_Cypher5Parser_variable($this); - } - oavr_Recognizer_setState($this, 1356); - oncipv_Cypher5Parser_insertRelationshipLabelExpression($this); - oavr_Recognizer_setState($this, 1358); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 147) { - oavr_Recognizer_setState($this, 1357); - oncipv_Cypher5Parser_map($this); - } - oavr_Recognizer_setState($this, 1360); - oavr_Parser_match($this, 216); - oavr_Recognizer_setState($this, 1361); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 1363); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 124 && $_la != 312)) { - oavr_Recognizer_setState($this, 1362); - oncipv_Cypher5Parser_rightArrow($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($ctx instanceof oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext) + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelExpression4IsContext), 0)).$ast0; + else if ($ctx instanceof oncipv_Cypher5Parser$AnyLabelIsContext) { + var$3 = $ctx; + var$2 = new oncil_LabelExpression$Wildcard; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Wildcard__init_(var$2, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + } else { + if (!($ctx instanceof oncipv_Cypher5Parser$LabelNameIsContext)) { + if (!($ctx instanceof oncipv_Cypher5Parser$DynamicLabelIsContext)) { + var$3 = new jl_IllegalStateException; + jl_Throwable__init_(var$3, $rt_s(5135)); + $rt_throw(var$3); } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$3 = $ctx; + var$4 = oncipvaf_Cypher5AstBuilder_getIsLabel($this, var$3); + switch (var$4) { + case 1: + var$2 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression((oncipv_Cypher5Parser$DynamicLabelIsContext_dynamicAnyAllExpression(var$3)).$ast0), 1); + break a; + case 2: + var$2 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression((oncipv_Cypher5Parser$DynamicLabelIsContext_dynamicAnyAllExpression(var$3)).$ast0), 1); + break a; + case 3: + var$2 = oncil_LabelExpression$DynamicLeaf__init_((oncipv_Cypher5Parser$DynamicLabelIsContext_dynamicAnyAllExpression(var$3)).$ast0, 1); + break a; + default: } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_leftArrow = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LeftArrowContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 146, 73); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1365); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 156 && $_la != 311) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = $ctx; + var$4 = oncipvaf_Cypher5AstBuilder_getIsLabel($this, var$3); + switch (var$4) { + case 1: + var$2 = new oncil_LabelExpression$Leaf; + var$5 = new oncie_LabelName; + var$6 = (oncipv_Cypher5Parser$LabelNameIsContext_symbolicLabelNameString(var$3)).$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelName__init_0(var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + oncil_LabelExpression$Leaf__init_(var$2, var$5, 1); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case 2: + var$2 = new oncil_LabelExpression$Leaf; + var$7 = new oncie_RelTypeName; + var$5 = (oncipv_Cypher5Parser$LabelNameIsContext_symbolicLabelNameString(var$3)).$ast0; + oncipau_Util$_$callClinit(); + oncie_RelTypeName__init_(var$7, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + oncil_LabelExpression$Leaf__init_(var$2, var$7, 1); + break a; + case 3: + var$2 = new oncil_LabelExpression$Leaf; + var$7 = new oncie_LabelOrRelTypeName; + var$5 = (oncipv_Cypher5Parser$LabelNameIsContext_symbolicLabelNameString(var$3)).$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelOrRelTypeName__init_(var$7, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + oncil_LabelExpression$Leaf__init_(var$2, var$7, 1); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_arrowLine = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ArrowLineContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 148, 74); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1367); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 161 && $_la != 310) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - +oncipvaf_Cypher5AstBuilder_getIsLabel = ($this, $ctx) => { + let var$2; + $ctx = $ctx.$parent; + var$2 = 0; + while (!var$2) { + if ($ctx !== null && $ctx.$getRuleIndex() != 101) { + if ($ctx.$getRuleIndex() == 59) + var$2 = 1; + else if ($ctx.$getRuleIndex() == 71) + var$2 = 2; + else + $ctx = $ctx.$parent; + } else + var$2 = 3; + } + return var$2; +}, +oncipvaf_Cypher5AstBuilder_exitInsertNodePattern = ($this, $ctx) => { + let var$2; + var$2 = new oncie_NodePattern; + oncipau_Util$_$callClinit(); + oncie_NodePattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$InsertNodeLabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MapContext), 0)), s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, + $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitInsertNodeLabelExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$2 = oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_IS($ctx) === null ? 0 : 1; + var$3 = $ctx.$children0; + var$4 = var$3.$size0; + oncipau_Util$_$callClinit(); + var$5 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + var$6 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_(var$5.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)), var$2); + if (var$4 > 2) { + var$7 = 0; + var$8 = 2; + while (var$8 < var$4) { + var$5 = ju_ArrayList_get(var$3, var$8); + if ($rt_isInstance(var$5, oavrt_TerminalNode) && (var$5.$getSymbol()).$getType0() == 47) + var$7 = 1; + else if (var$5 instanceof oncipv_Cypher5Parser$SymbolicNameStringContext) { + var$5 = var$5; + var$9 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_(var$5.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)), oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_IS($ctx) === null ? 0 : 1); + if (!var$7) { + var$10 = oncil_LabelExpression$Conjunctions$_MODULE$; + var$11 = oncipau_Util$_MODULE$; + var$6 = oncil_LabelExpression$Conjunctions$_flat(var$10, var$6, var$9, oncipau_Util$_pos1(var$11, oncipau_Util$_nodeChild(var$11, $ctx, var$8 - 1 | 0)), var$2); + } else { + var$11 = new oncil_LabelExpression$ColonConjunction; + var$5 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonConjunction__init_(var$11, var$6, var$9, var$2, oncipau_Util$_pos1(var$5, oncipau_Util$_nodeChild(var$5, $ctx, var$8 - 1 | 0))); + var$7 = 0; + var$6 = var$11; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$8 = var$8 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$6; }, -oncipv_Cypher5Parser_rightArrow = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RightArrowContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 150, 75); +oncipvaf_Cypher5AstBuilder_exitInsertRelationshipPattern = ($this, $ctx) => { + let var$2; + var$2 = new oncie_RelationshipPattern; + oncipau_Util$_$callClinit(); + oncie_RelationshipPattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext), 0)), s_None$_MODULE$, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MapContext), 0)), s_None$_MODULE$, + oncipau_Util$_semanticDirection(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RightArrowContext), 0) === null ? 0 : 1, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LeftArrowContext), 0) === null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitInsertRelationshipLabelExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); + var$3 = new oncil_LabelExpression$Leaf; + var$4 = new oncie_RelTypeName; + var$5 = var$2.$ast0; + oncipau_Util$_$callClinit(); + oncie_RelTypeName__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + oncil_LabelExpression$Leaf__init_(var$3, var$4, oncip_AstRuleCtx_getToken($ctx, 139, 0) === null ? 0 : 1); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher5AstBuilder_exitLeftArrow = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitArrowLine = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitRightArrow = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher5AstBuilder_exitLiteral = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1369); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 124 && $_la != 312) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = ju_ArrayList_get($ctx.$children0, 0); + if (var$2 instanceof oncip_AstRuleCtx) + var$2 = var$2.$ast0; + else { + if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { + $ctx = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5115)), var$2); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($ctx); + } + var$4 = (var$2.$getSymbol()).$getType0(); + switch (var$4) { + case 108: + var$2 = new oncie_False; + oncipau_Util$_$callClinit(); + oncie_False__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case 134: + case 135: + var$2 = new oncie_Infinity; + oncipau_Util$_$callClinit(); + oncie_Infinity__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 167: + var$2 = new oncie_NaN; + oncipau_Util$_$callClinit(); + oncie_NaN__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 182: + var$2 = new oncie_Null; + oncipau_Util$_$callClinit(); + oncie_Null__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 281: + var$2 = new oncie_True; + oncipau_Util$_$callClinit(); + oncie_True__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_pathLength = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PathLengthContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 152, 76); +oncipvaf_Cypher5AstBuilder_exitNumberLiteral = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1371); - oavr_Parser_match($this, 271); - oavr_Recognizer_setState($this, 1380); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 119, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 1373); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) { - oavr_Recognizer_setState($this, 1372); - $_localctx.$from23 = oavr_Parser_match($this, 5); - } - oavr_Recognizer_setState($this, 1375); - oavr_Parser_match($this, 84); - oavr_Recognizer_setState($this, 1377); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 5) - break e; - oavr_Recognizer_setState($this, 1376); - $_localctx.$to5 = oavr_Parser_match($this, 5); - break e; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1379); - $_localctx.$single2 = oavr_Parser_match($this, 5); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$getSymbol()).$getType0(); + switch (var$2) { + case 4: + var$3 = oncie_DecimalDoubleLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 5: + var$3 = oncie_SignedDecimalIntegerLiteral__init_0(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 6: + var$3 = oncie_SignedHexIntegerLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 7: + var$3 = oncie_SignedOctalIntegerLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_labelExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 154, 77); +oncipvaf_Cypher5AstBuilder_exitSignedIntegerLiteral = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncip_AstRuleCtx_getToken($ctx, 161, 0) === null) { + var$2 = new oncie_SignedDecimalIntegerLiteral; + var$3 = (oncipv_Cypher5Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText(); + oncipau_Util$_$callClinit(); + oncie_SignedDecimalIntegerLiteral__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncie_SignedDecimalIntegerLiteral; + var$4 = (oncipv_Cypher5Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(var$3, 45); + jl_StringBuilder_append(var$3, var$4); + var$3 = jl_AbstractStringBuilder_toString(var$3); + oncipau_Util$_$callClinit(); + oncie_SignedDecimalIntegerLiteral__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitStringListLiteral = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_ListLiteral; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext)); + sr_ClassTag$_$callClinit(); + oncie_ListLiteral__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_StringLiteral))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitListLiteral = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_ListLiteral; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext)); + sr_ClassTag$_$callClinit(); + oncie_ListLiteral__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher5AstBuilder_exitStringLiteral = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1386); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 47: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1382); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 1383); - oncipv_Cypher5Parser_labelExpression4($this); - break e; - case 139: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1384); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 1385); - oncipv_Cypher5Parser_labelExpression4Is($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + var$2 = ($ctx.$start1.$getInputStream0()).$getText0(oavrm_Interval__init_($ctx.$start1.$getStartIndex() + 1 | 0, $ctx.$stop.$getStopIndex() - 1 | 0)); + var$3 = new oncie_StringLiteral; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$5 = $this.$exceptionFactory2; + var$6 = jl_String_indexOf(var$2, 92); + if (var$6 != (-1)) { + var$7 = 0; + var$8 = var$2.$nativeString.length; + var$9 = null; + var$10 = var$8 - 1 | 0; + while (true) { + if (var$6 == (-1)) { + if (var$9 !== null && !jl_StringBuilder_isEmpty(var$9)) { + if (var$7 >= var$2.$nativeString.length) { + var$2 = jl_AbstractStringBuilder_toString(var$9); + break a; } + jl_AbstractStringBuilder_append1(var$9, var$2, var$7, var$2.$nativeString.length); + var$2 = jl_AbstractStringBuilder_toString(var$9); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$6 == var$10) + break; + b: { + switch (jl_String_charAt(var$2, var$6 + 1 | 0)) { + case 34: + break; + case 39: + var$11 = 39; + break b; + case 92: + var$11 = 92; + break b; + case 98: + var$11 = 8; + break b; + case 102: + var$11 = 12; + break b; + case 110: + var$11 = 10; + break b; + case 114: + var$11 = 13; + break b; + case 116: + var$11 = 9; + break b; + default: + var$11 = 0; + break b; + } + var$11 = 34; + } + if (var$11) { + if (var$9 === null) { + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$9, var$2.$nativeString.length); + } + jl_AbstractStringBuilder_append1(var$9, var$2, var$7, var$6); + jl_AbstractStringBuilder_append0(var$9, var$11); + var$7 = var$6 + 2 | 0; } + var$6 = jl_String_indexOf0(var$2, 92, var$6 + 2 | 0); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, oncip_CypherErrorStrategy$_quoteMismatchErrorMessage, var$4)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + oncie_StringLiteral__init_0(var$3, var$2, oncipau_Util$_rangePos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_labelExpression4 = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpression4Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 156, 78); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1388); - oncipv_Cypher5Parser_labelExpression3($this); - oavr_Recognizer_setState($this, 1396); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 122, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1389); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 1391); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 47) { - oavr_Recognizer_setState($this, 1390); - oavr_Parser_match($this, 47); - } - oavr_Recognizer_setState($this, 1393); - oncipv_Cypher5Parser_labelExpression3($this); - } - oavr_Recognizer_setState($this, 1398); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 122, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$RelGraphToken = $this => { + let var$1, $$je; + if ($this.$RelGraphToken$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$RelGraphToken$module !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$RelGraphToken$module = oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_1($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$RelGraphToken$module; }, -oncipv_Cypher5Parser_labelExpression4Is = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpression4IsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 158, 79); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1399); - oncipv_Cypher5Parser_labelExpression3Is($this); - oavr_Recognizer_setState($this, 1407); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 124, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1400); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 1402); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 47) { - oavr_Recognizer_setState($this, 1401); - oavr_Parser_match($this, 47); - } - oavr_Recognizer_setState($this, 1404); - oncipv_Cypher5Parser_labelExpression3Is($this); - } - oavr_Recognizer_setState($this, 1409); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 124, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; +oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken = $this => { + let var$1, $$je; + if ($this.$NodeGraphToken$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$NodeGraphToken$module !== null) + break a; + $this.$NodeGraphToken$module = oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_0($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$NodeGraphToken$module; }, -oncipv_Cypher5Parser_labelExpression3 = $this => { - let $_localctx, $_alt, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpression3Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 160, 80); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1410); - oncipv_Cypher5Parser_labelExpression2($this); - oavr_Recognizer_setState($this, 1415); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 125, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1411); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 47 && $_la != 144) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1412); - oncipv_Cypher5Parser_labelExpression2($this); - } - oavr_Recognizer_setState($this, 1417); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 125, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken = $this => { + let var$1, $$je; + if ($this.$ElementGraphToken$module0 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$ElementGraphToken$module0 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$ElementGraphToken$module0 = oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_2($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; -}; -let oncipv_Cypher5Parser_labelExpression3Is = $this => { - let $_localctx, $_alt, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpression3IsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 162, 81); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1418); - oncipv_Cypher5Parser_labelExpression2Is($this); - oavr_Recognizer_setState($this, 1423); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 126, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1419); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 47 && $_la != 144) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1420); - oncipv_Cypher5Parser_labelExpression2Is($this); - } - oavr_Recognizer_setState($this, 1425); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 126, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + return $this.$ElementGraphToken$module0; +}, +oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node = $this => { + let var$1, $$je; + if ($this.$Node$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$Node$module !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$Node$module = oncipvaf_DdlShowBuilder$Node$__init_2($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$Node$module; }, -oncipv_Cypher5Parser_labelExpression2 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpression2Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 164, 82); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1429); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 145) { - oavr_Recognizer_setState($this, 1426); - oavr_Parser_match($this, 145); - oavr_Recognizer_setState($this, 1431); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 1432); - oncipv_Cypher5Parser_labelExpression1($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel = $this => { + let var$1, $$je; + if ($this.$Rel$module0 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$Rel$module0 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$Rel$module0 = oncipvaf_DdlShowBuilder$Rel$__init_1($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$Rel$module0; }, -oncipv_Cypher5Parser_labelExpression2Is = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpression2IsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 166, 83); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1437); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 145) { - oavr_Recognizer_setState($this, 1434); - oavr_Parser_match($this, 145); - oavr_Recognizer_setState($this, 1439); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 1440); - oncipv_Cypher5Parser_labelExpression1Is($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity = $this => { + let var$1, $$je; + if ($this.$NoEntity$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$NoEntity$module !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$NoEntity$module = oncipvaf_DdlShowBuilder$NoEntity$__init_0($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + } + return $this.$NoEntity$module; +}, +oncipvaf_Cypher5AstBuilder_exitEndOfFile = ($this, $ctx) => { + return; +}, +oncipa_SyntaxChecker = $rt_classWithoutFields(0); +function oncipvaf_Cypher5SyntaxChecker() { + let a = this; jl_Object.call(a); + a.$exceptionFactory0 = null; + a.$_errors = null; +} +let oncipvaf_Cypher5SyntaxChecker_errors = $this => { + return $this.$_errors; +}, +oncipvaf_Cypher5SyntaxChecker_exitEveryRule = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + switch ($ctx.$getRuleIndex()) { + case 2: + oncipau_Util$_$callClinit(); + var$2 = (oncip_AstRuleCtx_getToken($ctx, 197, 0)).$getSymbol(); + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5136), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, var$2))); + return; + case 30: + a: { + oncipau_Util$_$callClinit(); + $ctx = $ctx; + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 38: + var$3 = $this.$_errors; + var$4 = $this.$exceptionFactory0; + var$5 = oncipcaf_ASTExceptionFactory_invalidHintIndexType(oncipcaf_HintIndexType_BTREE); + var$2 = oncipau_Util$_MODULE$; + $this.$_errors = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$4, var$5, oncipau_Util$_pos1(var$2, oncipau_Util$_nodeChild(var$2, $ctx, 1)))); + break a; + default: + } + } + return; + case 42: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters($ctx), $rt_s(5137), 1); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters($ctx), $rt_s(5138), 1); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters($ctx), $rt_s(5139), 1); + return; + case 50: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + if (oncipv_Cypher5Parser$InsertPatternContext_EQ($ctx) !== null) { + var$4 = $this.$_errors; + var$5 = $this.$exceptionFactory0; + var$3 = oncipau_Util$_MODULE$; + $this.$_errors = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, $rt_s(5140), oncipau_Util$_pos(var$3, oncipau_Util$_ctxChild(var$3, $ctx, 0)))); + } + return; + case 86: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + var$4 = oncip_AstRuleCtx_getTokens($ctx, 47); + var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0() != 47 ? 0 : 1; + if (var$6 && var$4.$size() > 1) + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5141), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (var$4.$get0(1)).$getSymbol()))); + else if (!var$6 && var$4.$size() > 0) + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5141), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (var$4.$get0(0)).$getSymbol()))); + return; + case 134: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkFunctionInvocation($this, $ctx); + return; + case 141: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + if ((oncipv_Cypher5Parser$TypePartContext_typeName($ctx)).$ast0 instanceof oncius_ClosedDynamicUnionType && oncipv_Cypher5Parser$TypePartContext_typeNullability($ctx) !== null) + $this.$_errors = sc_SeqOps_$colon$plus$($this.$_errors, onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5142), oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$TypePartContext_typeNullability($ctx)))); + return; + case 146: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkCreateCommand($this, $ctx); + return; + case 158: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkBriefAndVerbose($this, $ctx); + return; + case 159: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkShowIndex($this, $ctx); + return; + case 162: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkShowConstraint($this, $ctx); + return; + case 182: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkCreateConstraint($this, $ctx); + return; + case 184: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkDropConstraint($this, $ctx); + return; + case 185: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkCreateIndex($this, $ctx); + return; + case 191: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkCreateLookupIndex($this, $ctx); + return; + case 194: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkDropIndex($this, $ctx); + return; + case 196: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkEnclosedPropertyList($this, $ctx); + return; + case 219: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkCreateUser($this, $ctx); + return; + case 223: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkAlterUser($this, $ctx); + return; + case 242: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkAllPrivilege($this, $ctx); + return; + case 273: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkGlobPart($this, $ctx); + return; + case 284: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkDatabaseScope($this, $ctx); + return; + case 285: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkGraphScope($this, $ctx); + return; + case 287: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkCreateDatabase($this, $ctx); + return; + case 294: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkAlterDatabase($this, $ctx); + return; + case 296: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkAlterDatabaseTopology($this, $ctx); + return; + case 305: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkCreateAlias($this, $ctx); + return; + case 307: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkAlterAlias($this, $ctx); + return; + case 318: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_checkSymbolicAliasNameOrParameter($this, $ctx); + return; + default: + } +}, +oncipvaf_Cypher5SyntaxChecker_check = ($this, $ctx) => { + oncipvaf_Cypher5SyntaxChecker_exitEveryRule($this, $ctx); + return $this.$_errors.$isEmpty(); +}, +oncipvaf_Cypher5SyntaxChecker_inputPosition = ($this, $symbol) => { + onciu_InputPosition$_$callClinit(); + return onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $symbol.$getStartIndex(), $symbol.$getLine(), $symbol.$getCharPositionInLine() + 1 | 0); +}, +oncipvaf_Cypher5SyntaxChecker_errorOnDuplicate = ($this, $token, $description, $isParam) => { + let var$4, var$5, var$6; + if (!$isParam) { + var$4 = $this.$_errors; + var$5 = $this.$exceptionFactory0; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(5143)), $description), $rt_s(5144)); + $this.$_errors = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $token))); + return; + } + var$4 = $this.$_errors; + var$5 = $this.$exceptionFactory0; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(5145)), $description), $rt_s(5146)); + $this.$_errors = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $token))); +}, +oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx = ($this, $ctx, $description, $isParam) => { + if ($ctx.$size() <= 1) + return; + oncipau_Util$_$callClinit(); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicate($this, (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx.$get0(1), 0)).$getSymbol(), $description, $isParam); +}, +oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule = ($this, $params, $description, $isParam) => { + if ($params.$size() <= 1) + return; + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicate($this, ($params.$get0(1)).$start1, $description, $isParam); +}, +oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingDots = ($this, $aliasesNames) => { + let $aliasName, $start, var$4, var$5; + if ($aliasesNames.$size() <= 0) + return; + $aliasName = $aliasesNames.$get0(0); + if (oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName) !== null && (oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName))).$size() > oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS) { + $start = ((oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName))).$get0(0)).$start1; + $aliasesNames = $this.$_errors; + var$4 = $this.$exceptionFactory0; + $aliasName = oncip_AstRuleCtx_getText($aliasName); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5147)), $aliasName), $rt_s(5148)); + $this.$_errors = $aliasesNames.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$4, jl_AbstractStringBuilder_toString(var$5), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $start))); + return; + } +}, +oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingTooManyComponents = ($this, $aliasesNames, $maxComponents, $errorTemplate) => { + let var$4; + if (!sc_IterableOnceOps_nonEmpty$($aliasesNames)) + return; + var$4 = sci_List_filter($aliasesNames, new oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0); + $aliasesNames = new oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1; + $aliasesNames.$_0720 = $this; + $aliasesNames.$_1243 = $maxComponents; + $aliasesNames.$_280 = $errorTemplate; + sci_List_foreach(var$4, $aliasesNames); +}, +oncipvaf_Cypher5SyntaxChecker_checkCreateAlias = ($this, $ctx) => { + if (oncipv_Cypher5Parser$CreateAliasContext_stringOrParameter($ctx) === null) + return; + if (oncipv_Cypher5Parser$CreateAliasContext_AT($ctx) === null && oncip_AstRuleCtx_getToken($ctx, 291, 0) === null && oncip_AstRuleCtx_getToken($ctx, 193, 0) === null && oncipv_Cypher5Parser$CreateAliasContext_DRIVER($ctx) === null) + return; + oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingDots($this, ju_List_of0(oncipv_Cypher5Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher5Parser$CreateAliasContext_aliasName($ctx)), oncipv_Cypher5Parser$DatabaseNameContext_symbolicAliasNameOrParameter(oncipv_Cypher5Parser$CreateAliasContext_databaseName($ctx)))); +}, +oncipvaf_Cypher5SyntaxChecker_checkAlterAlias = ($this, $ctx) => { + let $aliasTargets, $hasUrl, $usernames, $passwords, $driverSettings; + $aliasTargets = oncipv_Cypher5Parser$AlterAliasContext_alterAliasTarget($ctx); + $hasUrl = !$aliasTargets.$isEmpty() && oncip_AstRuleCtx_getToken($aliasTargets.$get0(0), 28, 0) !== null ? 1 : 0; + $usernames = oncipv_Cypher5Parser$AlterAliasContext_alterAliasUser($ctx); + $passwords = oncipv_Cypher5Parser$AlterAliasContext_alterAliasPassword($ctx); + $driverSettings = oncipv_Cypher5Parser$AlterAliasContext_alterAliasDriver($ctx); + if (!(!$hasUrl && $usernames.$isEmpty() && $passwords.$isEmpty() && $driverSettings.$isEmpty())) + oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingDots($this, ju_List_of(oncipv_Cypher5Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher5Parser$AlterAliasContext_aliasName($ctx)))); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, $driverSettings, $rt_s(534), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, $usernames, $rt_s(558), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, $passwords, $rt_s(557), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher5Parser$AlterAliasContext_alterAliasProperties($ctx), $rt_s(531), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, $aliasTargets, $rt_s(4482), 0); +}, +oncipvaf_Cypher5SyntaxChecker_checkSymbolicAliasNameOrParameter = ($this, $ctx) => { + switch ($ctx.$parent.$getRuleIndex()) { + case 286: + break; + case 287: + oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingTooManyComponents($this, sci_$colon$colon__init_($ctx, sci_Nil$_MODULE$), oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS, $rt_s(5149)); + return; + default: + oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingTooManyComponents($this, sci_$colon$colon__init_($ctx, sci_Nil$_MODULE$), oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS, $rt_s(5150)); + return; + } +}, +oncipvaf_Cypher5SyntaxChecker_checkCreateUser = ($this, $ctx) => { + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$CreateUserContext_userStatus($ctx), $rt_s(5151), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$CreateUserContext_homeDatabase($ctx), $rt_s(5152), 0); +}, +oncipvaf_Cypher5SyntaxChecker_checkAlterUser = ($this, $ctx) => { + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$AlterUserContext_userStatus($ctx), $rt_s(5151), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$AlterUserContext_homeDatabase($ctx), $rt_s(5152), 0); +}, +oncipvaf_Cypher5SyntaxChecker_checkGraphScope = ($this, $ctx) => { + if (oncipv_Cypher5Parser$GraphScopeContext_DEFAULT($ctx) === null) + return; + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5153), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$GraphScopeContext_DEFAULT($ctx)).$getSymbol()))); +}, +oncipvaf_Cypher5SyntaxChecker_checkDatabaseScope = ($this, $ctx) => { + if (oncipv_Cypher5Parser$DatabaseScopeContext_DEFAULT($ctx) === null) + return; + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5154), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$DatabaseScopeContext_DEFAULT($ctx)).$getSymbol()))); +}, +oncipvaf_Cypher5SyntaxChecker_checkAllPrivilege = ($this, $ctx) => { + let $privilegeType, $privilegeTarget, $privilege, $target, $symbol, var$7; + $privilegeType = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AllPrivilegeTypeContext), 0); + $privilegeTarget = oncipv_Cypher5Parser$AllPrivilegeContext_allPrivilegeTarget($ctx); + if ($privilegeType !== null) { + $privilege = oncip_AstRuleCtx_getToken($privilegeType, 120, 0) !== null ? s_Some__init_($rt_s(761)) : oncip_AstRuleCtx_getToken($privilegeType, 69, 0) !== null ? s_Some__init_($rt_s(31)) : oncip_AstRuleCtx_getToken($privilegeType, 65, 0) === null ? s_None$_MODULE$ : s_Some__init_($rt_s(4315)); + if (!($privilegeTarget instanceof oncipv_Cypher5Parser$DefaultTargetContext)) { + if ($privilegeTarget instanceof oncipv_Cypher5Parser$DatabaseVariableTargetContext) { + $ctx = $privilegeTarget; + $target = oncipv_Cypher5Parser$DatabaseVariableTargetContext_DATABASE($ctx) !== null ? s_Tuple2__init_($rt_s(4315), (oncipv_Cypher5Parser$DatabaseVariableTargetContext_DATABASE($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(4316), (oncip_AstRuleCtx_getToken($ctx, 66, 0)).$getSymbol()); + } else if (!($privilegeTarget instanceof oncipv_Cypher5Parser$GraphVariableTargetContext)) { + if (!($privilegeTarget instanceof oncipv_Cypher5Parser$DBMSTargetContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5114)); + $rt_throw($ctx); + } + $ctx = $privilegeTarget; + $target = s_Tuple2__init_($rt_s(31), (oncip_AstRuleCtx_getToken($ctx, 69, 0)).$getSymbol()); + } else { + $ctx = $privilegeTarget; + $target = oncipv_Cypher5Parser$GraphVariableTargetContext_GRAPH($ctx) !== null ? s_Tuple2__init_($rt_s(761), (oncipv_Cypher5Parser$GraphVariableTargetContext_GRAPH($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(4360), (oncip_AstRuleCtx_getToken($ctx, 121, 0)).$getSymbol()); + } + } else { + $ctx = $privilegeTarget; + $target = $privilege instanceof s_Some && jl_String_equals($rt_s(31), $privilege.$value5) ? (oncipv_Cypher5Parser$DefaultTargetContext_HOME($ctx) === null ? s_Tuple2__init_($rt_s(587), (oncipv_Cypher5Parser$DefaultTargetContext_DEFAULT($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(588), (oncipv_Cypher5Parser$DefaultTargetContext_HOME($ctx)).$getSymbol())) : oncipv_Cypher5Parser$DefaultTargetContext_GRAPH($ctx) === null ? s_Tuple2__init_($rt_s(4315), (oncipv_Cypher5Parser$DefaultTargetContext_DATABASE($ctx)).$getSymbol()) + : s_Tuple2__init_($rt_s(761), (oncipv_Cypher5Parser$DefaultTargetContext_GRAPH($ctx)).$getSymbol()); + } + $ctx = s_Tuple2__init_($privilege, $target); + $target = $ctx.$_10; + $ctx = $ctx.$_20; + if ($target instanceof s_Some) { + $privilege = $target.$value5; + if ($ctx !== null) { + $target = $ctx.$_1(); + $symbol = $ctx.$_2(); + if (!jl_String_startsWith($target, $privilege)) { + $ctx = $this.$_errors; + $privilegeType = $this.$exceptionFactory0; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(3713)), $target), $rt_s(5155)), $privilege), 34); + $this.$_errors = $ctx.$appended(onciu_OpenCypherExceptionFactory_syntaxException($privilegeType, jl_AbstractStringBuilder_toString(var$7), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $symbol))); } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if ($privilegeTarget instanceof oncipv_Cypher5Parser$DefaultTargetContext) { + $ctx = $privilegeTarget; + if (oncipv_Cypher5Parser$DefaultTargetContext_DEFAULT($ctx) !== null) { + $target = oncipv_Cypher5Parser$DefaultTargetContext_GRAPH($ctx) === null ? $rt_s(4315) : $rt_s(761); + $ctx = $this.$_errors; + $privilege = $this.$exceptionFactory0; + $symbol = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($symbol); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($symbol, $rt_s(5156)), $target), $rt_s(5157)), $target), $rt_s(1004)); + $this.$_errors = $ctx.$appended(onciu_OpenCypherExceptionFactory_syntaxException($privilege, jl_AbstractStringBuilder_toString($symbol), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $privilegeTarget.$start1))); + return; + } + } }, -oncipv_Cypher5Parser_labelExpression1 = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpression1Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 168, 84); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1449); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$LabelNameContext; - var$2 = $re; - oncipv_Cypher5Parser$LabelNameContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1448); - oncipv_Cypher5Parser_symbolicNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 156: - case 161: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - case 80: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$DynamicLabelContext; - var$2 = $re; - oncipv_Cypher5Parser$DynamicLabelContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1447); - oncipv_Cypher5Parser_dynamicAnyAllExpression($this); - break e; - case 155: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext; - var$2 = $re; - oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1442); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1443); - oncipv_Cypher5Parser_labelExpression4($this); - oavr_Recognizer_setState($this, 1444); - oavr_Parser_match($this, 239); - break e; - case 162: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$AnyLabelContext; - var$2 = $re; - oncipv_Cypher5Parser$AnyLabelContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1446); - oavr_Parser_match($this, 162); - break e; - default: - } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } +oncipvaf_Cypher5SyntaxChecker_checkGlobPart = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher5Parser$GlobPartContext_DOT($ctx) !== null) + return; + var$2 = $ctx.$parent.$parent; + if (var$2 instanceof oncipv_Cypher5Parser$GlobRecursiveContext && oncipv_Cypher5Parser$GlobPartContext_escapedSymbolicNameString(oncipv_Cypher5Parser$GlobRecursiveContext_globPart(var$2)) !== null) + oncipvaf_Cypher5SyntaxChecker_addError$1($this, $ctx); + else if (var$2 instanceof oncipv_Cypher5Parser$GlobContext && oncipv_Cypher5Parser$GlobContext_escapedSymbolicNameString(var$2) !== null) + oncipvaf_Cypher5SyntaxChecker_addError$1($this, $ctx); +}, +oncipvaf_Cypher5SyntaxChecker_checkCreateConstraint = ($this, $ctx) => { + let var$2, $errorMessageForAssertExists, $errorMessageOnAssertExists, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = oncipv_Cypher5Parser$CreateConstraintContext_constraintType($ctx); + if (var$2 instanceof oncipv_Cypher5Parser$ConstraintIsUniqueContext) { + $errorMessageForAssertExists = var$2; + if (oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx) !== null && !(oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 224, 0) === null && oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 223, 0) === null)) { + $errorMessageOnAssertExists = $this.$_errors; + var$2 = $this.$exceptionFactory0; + var$5 = oncipcaf_ConstraintType_REL_UNIQUE.$description0; + var$6 = sci_$colon$colon__init_($rt_s(5158), sci_Nil$_MODULE$); + var$7 = oncipcaf_ConstraintType_REL_UNIQUE.$description0; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_AbstractStringBuilder_append0(var$8, 39); + jl_StringBuilder_append(jl_StringBuilder_append(var$8, var$7), $rt_s(5159)); + $this.$_errors = $errorMessageOnAssertExists.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$2, $rt_s(5160), var$5, var$6, jl_AbstractStringBuilder_toString(var$8), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx)).$start1))); + } + if (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx) !== null && oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 173, 0) !== null) { + $errorMessageOnAssertExists = $this.$_errors; + var$2 = $this.$exceptionFactory0; + var$6 = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; + var$7 = sci_$colon$colon__init_($rt_s(5161), sci_Nil$_MODULE$); + var$9 = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; + var$10 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$10); + jl_AbstractStringBuilder_append0(var$10, 39); + jl_StringBuilder_append(jl_StringBuilder_append(var$10, var$9), $rt_s(5162)); + $this.$_errors = $errorMessageOnAssertExists.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$2, $rt_s(5163), var$6, var$7, jl_AbstractStringBuilder_toString(var$10), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx)).$start1))); + } + oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1($this, oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 26, 0), oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 230, 0), $ctx, $rt_s(5164), $rt_s(5165), $rt_s(5166)); + return; + } + if (!(var$2 instanceof oncipv_Cypher5Parser$ConstraintKeyContext)) { + if (var$2 instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { + $errorMessageForAssertExists = var$2; + oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1($this, oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 26, 0), oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 230, 0), $ctx, $rt_s(5164), $rt_s(5165), $rt_s(5166)); + return; + } + if (var$2 instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) { + $errorMessageForAssertExists = var$2; + oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1($this, oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 26, 0), oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 230, 0), $ctx, $rt_s(5164), $rt_s(5165), $rt_s(5166)); + return; + } + if (var$2 instanceof oncipv_Cypher5Parser$ConstraintExistsContext) { + oncipvaf_Cypher5SyntaxChecker_checkForInvalidExistence$1($this, oncip_AstRuleCtx_getToken(var$2, 26, 0), $ctx, $rt_s(5167), $rt_s(5168)); + return; + } + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5169), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_constraintType($ctx)).$start1))); + return; + } + $errorMessageForAssertExists = var$2; + if (oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx) !== null && !(oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 224, 0) === null && oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 223, 0) === null)) { + $errorMessageOnAssertExists = $this.$_errors; + var$2 = $this.$exceptionFactory0; + var$5 = oncipcaf_ConstraintType_REL_KEY.$description0; + var$6 = sci_$colon$colon__init_($rt_s(5158), sci_Nil$_MODULE$); + var$7 = oncipcaf_ConstraintType_REL_KEY.$description0; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_AbstractStringBuilder_append0(var$8, 39); + jl_StringBuilder_append(jl_StringBuilder_append(var$8, var$7), $rt_s(5159)); + $this.$_errors = $errorMessageOnAssertExists.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$2, $rt_s(5160), var$5, var$6, jl_AbstractStringBuilder_toString(var$8), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx)).$start1))); + } + if (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx) !== null && oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 173, 0) !== null) { + $errorMessageOnAssertExists = $this.$_errors; + var$2 = $this.$exceptionFactory0; + var$5 = oncipcaf_ConstraintType_NODE_KEY.$description0; + var$6 = sci_$colon$colon__init_($rt_s(5161), sci_Nil$_MODULE$); + var$7 = oncipcaf_ConstraintType_NODE_KEY.$description0; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_AbstractStringBuilder_append0(var$8, 39); + jl_StringBuilder_append(jl_StringBuilder_append(var$8, var$7), $rt_s(5162)); + $this.$_errors = $errorMessageOnAssertExists.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$2, $rt_s(5163), var$5, var$6, jl_AbstractStringBuilder_toString(var$8), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx)).$start1))); + } + oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1($this, oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 26, 0), oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 230, 0), $ctx, $rt_s(5164), $rt_s(5165), $rt_s(5166)); +}, +oncipvaf_Cypher5SyntaxChecker_checkEnclosedPropertyList = ($this, $ctx) => { + let $secondProperty; + if ((oncipv_Cypher5Parser$EnclosedPropertyListContext_property($ctx)).$size() > 1 && $ctx.$parent !== null) { + $secondProperty = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyContext), 1)).$start1; + $ctx = $ctx.$parent.$parent; + if ($ctx instanceof oncipv_Cypher5Parser$ConstraintExistsContext) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5170), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $secondProperty))); + return; + } + if ($ctx instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5171), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $secondProperty))); + return; + } + if ($ctx instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5172), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $secondProperty))); + return; + } + if ($ctx instanceof oncipv_Cypher5Parser$DropConstraintContext && oncipv_Cypher5Parser$DropConstraintContext_EXISTS($ctx) !== null) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5170), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $secondProperty))); + return; + } + return; + } +}, +oncipvaf_Cypher5SyntaxChecker_checkDropConstraint = ($this, $ctx) => { + let $relPattern, $alwaysInvalidDropCommand, $constraintName, var$5, var$6, var$7, var$8, var$9; + $relPattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandRelPatternContext), 0); + if ($relPattern !== null) { + if (oncipv_Cypher5Parser$DropConstraintContext_KEY($ctx) !== null) { + $alwaysInvalidDropCommand = $this.$_errors; + $constraintName = $this.$exceptionFactory0; + var$5 = oncipcaf_ConstraintType_NODE_KEY.$description0; + var$6 = sci_$colon$colon__init_($rt_s(5161), sci_Nil$_MODULE$); + var$7 = oncipcaf_ConstraintType_NODE_KEY.$description0; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_AbstractStringBuilder_append0(var$8, 39); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$8, var$7), $rt_s(5173)), $rt_s(5174)); + $this.$_errors = $alwaysInvalidDropCommand.$appended(onciu_OpenCypherExceptionFactory_invalidInputException($constraintName, $rt_s(5163), var$5, var$6, jl_AbstractStringBuilder_toString(var$8), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $relPattern.$start1))); + } else if (oncipv_Cypher5Parser$DropConstraintContext_UNIQUE($ctx) !== null) { + var$9 = $this.$_errors; + var$6 = $this.$exceptionFactory0; + var$5 = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; + var$7 = sci_$colon$colon__init_($rt_s(5161), sci_Nil$_MODULE$); + $constraintName = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; + $alwaysInvalidDropCommand = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($alwaysInvalidDropCommand); + jl_AbstractStringBuilder_append0($alwaysInvalidDropCommand, 39); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($alwaysInvalidDropCommand, $constraintName), $rt_s(5173)), $rt_s(5174)); + $this.$_errors = var$9.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$6, $rt_s(5163), var$5, var$7, jl_AbstractStringBuilder_toString($alwaysInvalidDropCommand), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $relPattern.$start1))); + } + } + if (oncip_AstRuleCtx_getToken($ctx, 182, 0) !== null) + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5175), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); + if (oncipv_Cypher5Parser$DropConstraintContext_symbolicNameOrStringParameter($ctx) !== null) + return; + if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNodePatternContext), 0) === null) { + if (oncipv_Cypher5Parser$DropConstraintContext_EXISTS($ctx) === null) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5175), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); + return; + } + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1($rt_s(5176)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); + return; + } + if (oncipv_Cypher5Parser$DropConstraintContext_EXISTS($ctx) !== null) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1($rt_s(5177)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); + return; + } + if (oncipv_Cypher5Parser$DropConstraintContext_UNIQUE($ctx) !== null) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1($rt_s(5178)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); + return; + } + if (oncipv_Cypher5Parser$DropConstraintContext_KEY($ctx) === null) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5175), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); + return; + } + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1($rt_s(5179)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); +}, +oncipvaf_Cypher5SyntaxChecker_checkShowConstraint = ($this, $ctx) => { + let var$2; + if (!($ctx instanceof oncipv_Cypher5Parser$ShowConstraintOldExistsContext)) + return; + var$2 = $ctx; + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5180), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken(var$2, 105, 0)).$getSymbol()))); +}, +oncipvaf_Cypher5SyntaxChecker_checkShowIndex = ($this, $ctx) => { + if (oncipv_Cypher5Parser$ShowIndexCommandContext_BTREE($ctx) === null) + return; + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5181), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$ShowIndexCommandContext_BTREE($ctx)).$getSymbol()))); +}, +oncipvaf_Cypher5SyntaxChecker_checkBriefAndVerbose = ($this, $ctx) => { + let $posSymbol, $command, var$4, var$5, var$6; + if (oncipv_Cypher5Parser$ShowBriefAndYieldContext_BRIEF($ctx) === null && oncipv_Cypher5Parser$ShowBriefAndYieldContext_VERBOSE($ctx) === null) + return; + $posSymbol = oncipv_Cypher5Parser$ShowBriefAndYieldContext_BRIEF($ctx) === null ? (oncipv_Cypher5Parser$ShowBriefAndYieldContext_VERBOSE($ctx)).$getSymbol() : (oncipv_Cypher5Parser$ShowBriefAndYieldContext_BRIEF($ctx)).$getSymbol(); + $ctx = $ctx.$parent; + $command = $ctx instanceof oncipv_Cypher5Parser$ShowIndexesAllowBriefContext ? $rt_s(5182) : !($ctx instanceof oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext) ? $rt_s(4) : $rt_s(5183); + var$4 = $this.$_errors; + var$5 = $this.$exceptionFactory0; + $ctx = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_AbstractStringBuilder_append0(var$6, 96); + jl_StringBuilder_append(jl_StringBuilder_append(var$6, $command), $rt_s(5184)); + $this.$_errors = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, sc_StringOps$_stripMargin$extension($ctx, jl_AbstractStringBuilder_toString(var$6)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $posSymbol))); +}, +oncipvaf_Cypher5SyntaxChecker_checkCreateDatabase = ($this, $ctx) => { + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$CreateDatabaseContext_primaryTopology($ctx), $rt_s(4429), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$CreateDatabaseContext_secondaryTopology($ctx), $rt_s(4461), 0); +}, +oncipvaf_Cypher5SyntaxChecker_checkAlterDatabase = ($this, $ctx) => { + let $topology, $optionCtxs, $keyNames, $keySet, $i; + if (!(oncipv_Cypher5Parser$AlterDatabaseContext_REMOVE($ctx)).$isEmpty()) { + oncipau_Util$_$callClinit(); + $topology = oncipau_Util$_MODULE$; + $optionCtxs = oncipv_Cypher5Parser$AlterDatabaseContext_symbolicNameString($ctx); + sr_ClassTag$_$callClinit(); + $keyNames = oncipau_Util$_astSeq($topology, $optionCtxs, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); + scm_Set$_$callClinit(); + $keySet = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); + $i = sr_IntRef_create(0); + $topology = new oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0; + $topology.$_088 = $this; + $topology.$_133 = $keySet; + $topology.$_216 = $ctx; + $topology.$_39 = $i; + sc_IterableOnceOps_foreach$($keyNames, $topology); + } + if (!(oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption($ctx)).$isEmpty()) { + oncipau_Util$_$callClinit(); + $optionCtxs = oncipau_Util$_MODULE$; + $keyNames = oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption($ctx); + sr_ClassTag$_$callClinit(); + $keyNames = sc_StrictOptimizedIterableOps_flatMap$(oncipau_Util$_astSeq($optionCtxs, $keyNames, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(sci_Map))), new oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1); + scm_Set$_$callClinit(); + $keySet = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); + $i = sr_IntRef_create(0); + $topology = new oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2; + $topology.$_017 = $this; + $topology.$_111 = $keySet; + $topology.$_29 = $ctx; + $topology.$_34 = $i; + sc_IterableOnceOps_foreach$($keyNames, $topology); + } + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseAccess($ctx), $rt_s(4273), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseTopology($ctx), $rt_s(3586), 0); +}, +oncipvaf_Cypher5SyntaxChecker_checkAlterDatabaseTopology = ($this, $ctx) => { + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$AlterDatabaseTopologyContext_primaryTopology($ctx), $rt_s(4429), 0); + oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$AlterDatabaseTopologyContext_secondaryTopology($ctx), $rt_s(4461), 0); +}, +oncipvaf_Cypher5SyntaxChecker_checkCreateCommand = ($this, $ctx) => { + let $createIndex, $replace, $oldIndex, $position; + $createIndex = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CreateIndexContext), 0); + if ($createIndex === null) + return; + $replace = oncipv_Cypher5Parser$CreateCommandContext_REPLACE($ctx); + $oldIndex = oavr_ParserRuleContext_getRuleContext($createIndex, $rt_cls(oncipv_Cypher5Parser$OldCreateIndexContext), 0); + if ($replace !== null && $oldIndex !== null) { + $position = oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $replace.$getSymbol()); + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException0($this.$exceptionFactory0, ong_GqlHelper_getGql42001_42N14($rt_s(4998), $rt_s(5185), $position.$offset0, $position.$line1, $position.$column0), $rt_s(5186), $position)); + } + if ($oldIndex === null) + return; + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5187), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken($createIndex, 185, 0)).$getSymbol()))); +}, +oncipvaf_Cypher5SyntaxChecker_checkCreateLookupIndex = ($this, $ctx) => { + let $functionName, $relPattern, var$4; + $functionName = oncipv_Cypher5Parser$CreateLookupIndexContext_symbolicNameString($ctx); + $relPattern = oncipv_Cypher5Parser$CreateLookupIndexContext_lookupIndexRelPattern($ctx); + var$4 = jl_String_toUpperCase0(oncip_AstRuleCtx_getText($functionName)); + if (var$4 !== null && jl_String_equals(var$4, $rt_s(4336)) && $relPattern !== null && oncip_AstRuleCtx_getToken($relPattern, 91, 0) === null) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5188), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken($ctx, 155, 0)).$getSymbol()))); + return; + } +}, +oncipvaf_Cypher5SyntaxChecker_checkCreateIndex = ($this, $ctx) => { + if (oncipv_Cypher5Parser$CreateIndexContext_BTREE($ctx) === null) + return; + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5189), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateIndexContext_BTREE($ctx)).$getSymbol()))); +}, +oncipvaf_Cypher5SyntaxChecker_checkDropIndex = ($this, $ctx) => { + if (oncipv_Cypher5Parser$DropIndexContext_symbolicNameOrStringParameter($ctx) !== null) + return; + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5190), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken($ctx, 185, 0)).$getSymbol()))); +}, +oncipvaf_Cypher5SyntaxChecker_checkFunctionInvocation = ($this, $ctx) => { + let $functionName, var$3; + $functionName = (oncipv_Cypher5Parser$FunctionInvocationContext_functionName($ctx)).$ast0; + var$3 = $functionName.$name6; + if (var$3 !== null && jl_String_equals(var$3, $rt_s(426)) && sci_List_isEmpty($functionName.$namespace3.$parts0) && (oncipv_Cypher5Parser$FunctionInvocationContext_functionArgument($ctx)).$size() == 2) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5191), (oncipv_Cypher5Parser$FunctionArgumentContext_expression(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$FunctionArgumentContext), 1))).$ast0.$position())); + return; + } +}, +oncipvaf_Cypher5SyntaxChecker_addError$1 = ($this, $ctx$1) => { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(5192), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx$1.$start1))); +}, +oncipvaf_Cypher5SyntaxChecker_checkForInvalidExistence$1 = ($this, $assert, $ctx$2, $errorMessageForAssertExists$1, $errorMessageOnAssertExists$1) => { + let $containsOn, $containsFor, $containsAssert; + $containsOn = oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx$2) === null ? 0 : 1; + $containsFor = oncipv_Cypher5Parser$CreateConstraintContext_FOR($ctx$2) === null ? 0 : 1; + $containsAssert = $assert === null ? 0 : 1; + if ($containsFor && $containsAssert) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $errorMessageForAssertExists$1, oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $assert.$getSymbol()))); + return; + } + if ($containsOn && $containsAssert) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $errorMessageOnAssertExists$1, oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx$2)).$getSymbol()))); + return; + } +}, +oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1 = ($this, $assert, $require, $ctx$2, $errorMessageOnRequire$1, $errorMessageForAssert$1, $errorMessageOnAssert$1) => { + let $containsOn, $containsFor, $containsAssert, $containsRequire; + $containsOn = oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx$2) === null ? 0 : 1; + $containsFor = oncipv_Cypher5Parser$CreateConstraintContext_FOR($ctx$2) === null ? 0 : 1; + $containsAssert = $assert === null ? 0 : 1; + $containsRequire = $require === null ? 0 : 1; + if ($containsOn && $containsRequire) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $errorMessageOnRequire$1, oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx$2)).$getSymbol()))); + return; + } + if ($containsFor && $containsAssert) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $errorMessageForAssert$1, oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $assert.$getSymbol()))); + return; + } + if ($containsOn && $containsAssert) { + $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $errorMessageOnAssert$1, oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx$2)).$getSymbol()))); + return; + } +}, +oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1 = $constraintType => { + let var$2; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $constraintType), $rt_s(5193)); + return jl_AbstractStringBuilder_toString(var$2); +}; +function ju_LinkedHashMapIterator() { + let a = this; jl_Object.call(a); + a.$base0 = null; + a.$reversed2 = 0; + a.$expectedModCount0 = 0; + a.$futureEntry0 = null; + a.$currentEntry1 = null; +} +let ju_LinkedHashMapIterator__init_ = ($this, $base, $reversed) => { + $this.$base0 = $base; + $this.$reversed2 = $reversed; + $this.$expectedModCount0 = $base.$modCount0; + $this.$futureEntry0 = !$reversed ? $base.$head2 : $base.$tail3; +}, +ju_LinkedHashMapIterator__init_0 = (var_0, var_1) => { + let var_2 = new ju_LinkedHashMapIterator(); + ju_LinkedHashMapIterator__init_(var_2, var_0, var_1); + return var_2; +}, +ju_LinkedHashMapIterator_hasNext = $this => { + return $this.$futureEntry0 === null ? 0 : 1; +}, +ju_LinkedHashMapIterator_checkConcurrentMod = $this => { + let var$1; + if ($this.$expectedModCount0 == $this.$base0.$modCount0) + return; + var$1 = new ju_ConcurrentModificationException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); +}, +ju_LinkedHashMapIterator_makeNext = $this => { + let var$1; + ju_LinkedHashMapIterator_checkConcurrentMod($this); + if (!ju_LinkedHashMapIterator_hasNext($this)) { + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + } + var$1 = $this.$futureEntry0; + $this.$currentEntry1 = var$1; + $this.$futureEntry0 = !$this.$reversed2 ? var$1.$chainForward : var$1.$chainBackward; +}, +ju_LinkedHashMapIterator_remove = $this => { + let var$1; + if ($this.$currentEntry1 === null) { + var$1 = new jl_IllegalStateException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + } + ju_LinkedHashMapIterator_checkConcurrentMod($this); + ju_LinkedHashMap_removeLinkedEntry($this.$base0, $this.$currentEntry1); + $this.$currentEntry1 = null; + $this.$expectedModCount0 = $this.$expectedModCount0 + 1 | 0; +}, +ju_LinkedHashMapIterator$KeyIterator = $rt_classWithoutFields(ju_LinkedHashMapIterator), +ju_LinkedHashMapIterator$KeyIterator_next = $this => { + ju_LinkedHashMapIterator_makeNext($this); + return $this.$currentEntry1.$key0; +}; +function oavra_LL1Analyzer() { + jl_Object.call(this); + this.$atn1 = null; +} +let oavra_LL1Analyzer__LOOK = ($this, $s, $stopState, $ctx, $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF) => { + let $removed, $i, $n, $i_0, $t, $returnState, $newContext, $set, $$je; + if (!ju_HashSet_add($lookBusy, oavra_ATNConfig__init_6($s, 0, $ctx))) + return; + if ($s === $stopState) { + if ($ctx === null) { + oavrm_IntervalSet_add($look, (-2)); + return; + } + if ($ctx.$isEmpty() && $addEOF) { + oavrm_IntervalSet_add($look, (-1)); + return; + } + } + if ($s instanceof oavra_RuleStopState) { + if ($ctx === null) { + oavrm_IntervalSet_add($look, (-2)); + return; + } + if ($ctx.$isEmpty() && $addEOF) { + oavrm_IntervalSet_add($look, (-1)); + return; + } + oavra_EmptyPredictionContext_$callClinit(); + if ($ctx !== oavra_EmptyPredictionContext_Instance) { + $removed = ju_BitSet_get($calledRuleStack, $s.$ruleIndex); + a: { + try { + ju_BitSet_clear($calledRuleStack, $s.$ruleIndex); + $i = 0; + while ($i < $ctx.$size()) { + oavra_LL1Analyzer__LOOK($this, ju_ArrayList_get($this.$atn1.$states, $ctx.$getReturnState($i)), $stopState, $ctx.$getParent($i), $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF); + $i = $i + 1 | 0; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + $stopState = $$je; + break a; + + } + b: { + try { + if (!$removed) + break b; } catch ($$e) { $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + $stopState = $$je; + break a; + } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + ju_BitSet_set($calledRuleStack, $s.$ruleIndex); } + return; + } + if ($removed) + ju_BitSet_set($calledRuleStack, $s.$ruleIndex); + $rt_throw($stopState); + } + } + $n = oavra_ATNState_getNumberOfTransitions($s); + $i_0 = 0; + while ($i_0 < $n) { + $t = oavra_ATNState_transition($s, $i_0); + if (jl_Object_getClass($t) === $rt_cls(oavra_RuleTransition)) { + $returnState = $t; + if (!ju_BitSet_get($calledRuleStack, $returnState.$target.$ruleIndex)) { + $newContext = oavra_SingletonPredictionContext_create($ctx, $returnState.$followState.$stateNumber); try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; + ju_BitSet_set($calledRuleStack, $returnState.$target.$ruleIndex); + oavra_LL1Analyzer__LOOK($this, $t.$target, $stopState, $newContext, $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF); } catch ($$e) { $$je = $rt_wrapException($$e); - $_localctx = $$je; + $s = $$je; + ju_BitSet_clear($calledRuleStack, $returnState.$target.$ruleIndex); + $rt_throw($s); } + ju_BitSet_clear($calledRuleStack, $returnState.$target.$ruleIndex); + } + } else if ($t instanceof oavra_AbstractPredicateTransition) { + if (!$seeThruPreds) + oavrm_IntervalSet_add($look, 0); + else + oavra_LL1Analyzer__LOOK($this, $t.$target, $stopState, $ctx, $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF); + } else if ($t.$isEpsilon()) + oavra_LL1Analyzer__LOOK($this, $t.$target, $stopState, $ctx, $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF); + else if (jl_Object_getClass($t) === $rt_cls(oavra_WildcardTransition)) + oavrm_IntervalSet_addAll($look, oavrm_IntervalSet_of(1, $this.$atn1.$maxTokenType)); + else { + $set = $t.$label0(); + if ($set !== null) { + if ($t instanceof oavra_NotSetTransition) + $set = oavrm_IntervalSet_complement($set, oavrm_IntervalSet_of(1, $this.$atn1.$maxTokenType)); + oavrm_IntervalSet_addAll($look, $set); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + $i_0 = $i_0 + 1 | 0; } - return $re; }, -oncipv_Cypher5Parser_labelExpression1Is = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelExpression1IsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 170, 85); +juc_CancellationException = $rt_classWithoutFields(jl_IllegalStateException), +oavrm_ParseCancellationException = $rt_classWithoutFields(juc_CancellationException), +oavrm_ParseCancellationException__init_0 = ($this, $cause) => { + let var$2; + jl_Throwable__init_0($this); + var$2 = $this.$cause2; + if (var$2 !== $this && var$2 !== null) { + $cause = new jl_IllegalStateException; + jl_Throwable__init_($cause, $rt_s(5194)); + $rt_throw($cause); + } + if ($cause !== $this) { + $this.$cause2 = $cause; + return; + } + var$2 = new jl_IllegalArgumentException; + jl_Throwable__init_(var$2, $rt_s(5195)); + $rt_throw(var$2); +}, +oavrm_ParseCancellationException__init_ = var_0 => { + let var_1 = new oavrm_ParseCancellationException(); + oavrm_ParseCancellationException__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticState$scope$lambda$_52_0 = $rt_classWithoutFields(), +oncias_SemanticState$scope$lambda$_52_0_apply = (var$0, var$1) => { + var$1 = var$1.$location; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return var$1.$elem0; +}; +function oavra_PredictionContext() { + let a = this; jl_Object.call(a); + a.$id5 = 0; + a.$cachedHashCode0 = 0; +} +let oavra_PredictionContext_globalNodeCount = null, +oavra_PredictionContext_$assertionsDisabled = 0, +oavra_PredictionContext_$callClinit = () => { + oavra_PredictionContext_$callClinit = $rt_eraseClinit(oavra_PredictionContext); + oavra_PredictionContext__clinit_(); +}, +oavra_PredictionContext__init_ = ($this, $cachedHashCode) => { + let var$2, var$3; + oavra_PredictionContext_$callClinit(); + var$2 = oavra_PredictionContext_globalNodeCount; + var$2.$version1 = var$2.$version1 + 1 | 0; + var$3 = var$2.$value34; + var$2.$value34 = var$3 + 1 | 0; + $this.$id5 = var$3; + $this.$cachedHashCode0 = $cachedHashCode; +}, +oavra_PredictionContext_fromRuleContext = ($atn, $outerContext) => { + let $state; + oavra_PredictionContext_$callClinit(); + if ($outerContext === null) + $outerContext = oavr_ParserRuleContext_EMPTY; + $state = $outerContext.$parent; + if ($state !== null && $outerContext !== oavr_ParserRuleContext_EMPTY) + return oavra_SingletonPredictionContext_create(oavra_PredictionContext_fromRuleContext($atn, $state), (oavra_ATNState_transition(ju_ArrayList_get($atn.$states, $outerContext.$invokingState), 0)).$followState.$stateNumber); + oavra_EmptyPredictionContext_$callClinit(); + return oavra_EmptyPredictionContext_Instance; +}, +oavra_PredictionContext_isEmpty = $this => { + oavra_EmptyPredictionContext_$callClinit(); + return $this !== oavra_EmptyPredictionContext_Instance ? 0 : 1; +}, +oavra_PredictionContext_hasEmptyPath = $this => { + return $this.$getReturnState($this.$size() - 1 | 0) != 2147483647 ? 0 : 1; +}, +oavra_PredictionContext_hashCode = $this => { + return $this.$cachedHashCode0; +}, +oavra_PredictionContext_merge = ($a, $b, $rootIsWildcard, $mergeCache) => { + let var$5, var$6, var$7; + oavra_PredictionContext_$callClinit(); + if (!oavra_PredictionContext_$assertionsDisabled && !($a !== null && $b !== null)) { + $a = new jl_AssertionError; + jl_Throwable__init_0($a); + $rt_throw($a); + } + if ($a !== $b && !$a.$equals($b)) { + var$5 = $a instanceof oavra_SingletonPredictionContext; + if (var$5 && $b instanceof oavra_SingletonPredictionContext) + return oavra_PredictionContext_mergeSingletons($a, $b, $rootIsWildcard, $mergeCache); + if ($rootIsWildcard) { + if ($a instanceof oavra_EmptyPredictionContext) + return $a; + if ($b instanceof oavra_EmptyPredictionContext) + return $b; + } + var$6 = !var$5 ? $a : oavra_ArrayPredictionContext__init_0($a); + var$7 = !($b instanceof oavra_SingletonPredictionContext) ? $b : oavra_ArrayPredictionContext__init_0($b); + return oavra_PredictionContext_mergeArrays(var$6, var$7, $rootIsWildcard, $mergeCache); + } + return $a; +}, +oavra_PredictionContext_mergeSingletons = ($a, $b, $rootIsWildcard, $mergeCache) => { + let $previous, $rootMerge, $payloads, $parent, $a_, $singleParent, $parents, var$12, var$13, $parents_0, var$15; + oavra_PredictionContext_$callClinit(); + if ($mergeCache !== null) { + $previous = oavrm_DoubleKeyMap_get($mergeCache, $a, $b); + if ($previous !== null) + return $previous; + $previous = oavrm_DoubleKeyMap_get($mergeCache, $b, $a); + if ($previous !== null) + return $previous; + } a: { b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1458); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$LabelNameIsContext; - var$2 = $re; - oncipv_Cypher5Parser$LabelNameIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1457); - oncipv_Cypher5Parser_symbolicLabelNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 156: - case 161: - case 163: - case 164: - case 168: - case 169: - case 170: - case 171: - case 178: - case 179: - case 182: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - case 283: - break; - case 80: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$DynamicLabelIsContext; - var$2 = $re; - oncipv_Cypher5Parser$DynamicLabelIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1456); - oncipv_Cypher5Parser_dynamicAnyAllExpression($this); - break e; - case 155: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext; - var$2 = $re; - oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1451); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1452); - oncipv_Cypher5Parser_labelExpression4Is($this); - oavr_Recognizer_setState($this, 1453); - oavr_Parser_match($this, 239); - break e; - case 162: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$AnyLabelIsContext; - var$2 = $re; - oncipv_Cypher5Parser$AnyLabelIsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1455); - oavr_Parser_match($this, 162); - break e; - default: + if ($rootIsWildcard) { + oavra_EmptyPredictionContext_$callClinit(); + $rootMerge = oavra_EmptyPredictionContext_Instance; + if ($a === $rootMerge) + break a; + if ($b !== $rootMerge) + break b; + break a; + } + oavra_EmptyPredictionContext_$callClinit(); + $rootMerge = oavra_EmptyPredictionContext_Instance; + if ($a === $rootMerge && $b === $rootMerge) + break a; + if ($a === $rootMerge) { + $payloads = $rt_createIntArrayFromData([$b.$returnState, 2147483647]); + $rootMerge = oavra_ArrayPredictionContext__init_($rt_wrapArray(oavra_PredictionContext, [$b.$parent1, null]), $payloads); + break a; + } + if ($b === $rootMerge) { + $payloads = $rt_createIntArrayFromData([$a.$returnState, 2147483647]); + $rootMerge = oavra_ArrayPredictionContext__init_($rt_wrapArray(oavra_PredictionContext, [$a.$parent1, null]), $payloads); + break a; + } + } + $rootMerge = null; + } + if ($rootMerge !== null) { + if ($mergeCache !== null) + oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $rootMerge); + return $rootMerge; + } + if ($a.$returnState == $b.$returnState) { + $parent = oavra_PredictionContext_merge($a.$parent1, $b.$parent1, $rootIsWildcard, $mergeCache); + if ($parent === $a.$parent1) + return $a; + if ($parent === $b.$parent1) + return $b; + $a_ = oavra_SingletonPredictionContext_create($parent, $a.$returnState); + if ($mergeCache !== null) + oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a_); + return $a_; + } + c: { + $singleParent = null; + if ($a !== $b) { + $previous = $a.$parent1; + if ($previous === null) + break c; + if (!$previous.$equals($b.$parent1)) + break c; + } + $singleParent = $a.$parent1; + } + if ($singleParent !== null) { + $payloads = $rt_createIntArray(2); + $parents = $payloads.data; + var$12 = $a.$returnState; + $parents[0] = var$12; + var$13 = $b.$returnState; + $parents[1] = var$13; + if (var$12 > var$13) { + $parents[0] = var$13; + $parents[1] = var$12; + } + $a_ = oavra_ArrayPredictionContext__init_($rt_wrapArray(oavra_PredictionContext, [$singleParent, $singleParent]), $payloads); + if ($mergeCache !== null) + oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a_); + return $a_; + } + $payloads = $rt_createIntArray(2); + $parents = $payloads.data; + var$12 = $a.$returnState; + $parents[0] = var$12; + var$13 = $b.$returnState; + $parents[1] = var$13; + $parents_0 = $rt_createArray(oavra_PredictionContext, 2); + var$15 = $parents_0.data; + $previous = $a.$parent1; + var$15[0] = $previous; + $rootMerge = $b.$parent1; + var$15[1] = $rootMerge; + if (var$12 > var$13) { + $parents[0] = var$13; + $parents[1] = var$12; + $parents_0 = $rt_wrapArray(oavra_PredictionContext, [$rootMerge, $previous]); + } + $a_ = oavra_ArrayPredictionContext__init_($parents_0, $payloads); + if ($mergeCache !== null) + oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a_); + return $a_; +}, +oavra_PredictionContext_mergeArrays = ($a, $b, $rootIsWildcard, $mergeCache) => { + let $previous, $M, $p, $p_0, $k, $payload, $mergedReturnStates, var$12, $mergedParents, var$14, var$15, $both$, $ax_ax, var$18, $a_parent, $b_parent, $a_; + oavra_PredictionContext_$callClinit(); + if ($mergeCache !== null) { + $previous = oavrm_DoubleKeyMap_get($mergeCache, $a, $b); + if ($previous !== null) { + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_trace_atn_sim) { + $mergeCache = jl_System_out(); + $M = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($M); + jl_AbstractStringBuilder_append($M, $rt_s(5196)); + $a = jl_StringBuilder_append($M, $a); + jl_AbstractStringBuilder_append($a, $rt_s(5197)); + $a = jl_StringBuilder_append($a, $b); + jl_AbstractStringBuilder_append($a, $rt_s(5198)); + otcic_JsConsolePrintStream_println($mergeCache, jl_StringBuilder_toString($a)); + } + return $previous; + } + $previous = oavrm_DoubleKeyMap_get($mergeCache, $b, $a); + if ($previous !== null) { + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_trace_atn_sim) + otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(5196)), $a), $rt_s(5197)), $b), $rt_s(5198)))); + return $previous; + } + } + $p = 0; + $p_0 = 0; + $k = 0; + $payload = $a.$returnStates.data.length + $b.$returnStates.data.length | 0; + $mergedReturnStates = $rt_createIntArray($payload); + var$12 = $mergedReturnStates.data; + $mergedParents = $rt_createArray(oavra_PredictionContext, $payload); + var$14 = $mergedParents.data; + while (true) { + var$15 = $a.$returnStates.data; + $both$ = var$15.length; + $ax_ax = $rt_compare($p, $both$); + if ($ax_ax >= 0) + break; + var$18 = $b.$returnStates.data; + if ($p_0 >= var$18.length) + break; + $a_parent = $a.$parents.data[$p]; + $b_parent = $b.$parents.data[$p_0]; + if (var$15[$p] != var$18[$p_0]) { + if (var$15[$p] >= var$18[$p_0]) { + var$14[$k] = $b_parent; + var$12[$k] = var$18[$p_0]; + $p_0 = $p_0 + 1 | 0; + } else { + var$14[$k] = $a_parent; + var$12[$k] = var$15[$p]; + $p = $p + 1 | 0; + } + } else { + $payload = var$15[$p]; + $both$ = $payload == 2147483647 && $a_parent === null && $b_parent === null ? 1 : 0; + $ax_ax = $a_parent !== null && $b_parent !== null && $a_parent.$equals($b_parent) ? 1 : 0; + if (!$both$ && !$ax_ax) { + var$14[$k] = oavra_PredictionContext_merge($a_parent, $b_parent, $rootIsWildcard, $mergeCache); + var$12[$k] = $payload; + } else { + var$14[$k] = $a_parent; + var$12[$k] = $payload; + } + $p = $p + 1 | 0; + $p_0 = $p_0 + 1 | 0; + } + $k = $k + 1 | 0; + } + if ($ax_ax < 0) + while ($p < $both$) { + var$14[$k] = $a.$parents.data[$p]; + var$12[$k] = var$15[$p]; + $k = $k + 1 | 0; + $p = $p + 1 | 0; + } + else + while (true) { + var$18 = $b.$returnStates.data; + if ($p_0 >= var$18.length) + break; + var$14[$k] = $b.$parents.data[$p_0]; + var$12[$k] = var$18[$p_0]; + $k = $k + 1 | 0; + $p_0 = $p_0 + 1 | 0; + } + if ($k < var$14.length) { + if ($k == 1) { + $a_ = oavra_SingletonPredictionContext_create(var$14[0], var$12[0]); + if ($mergeCache !== null) + oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a_); + return $a_; + } + $mergedParents = ju_Arrays_copyOf($mergedParents, $k); + $mergedReturnStates = ju_Arrays_copyOf0($mergedReturnStates, $k); + } + $M = oavra_ArrayPredictionContext__init_($mergedParents, $mergedReturnStates); + if (oavra_ArrayPredictionContext_equals($M, $a)) { + if ($mergeCache !== null) + oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a); + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_trace_atn_sim) + otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(5196)), $a), $rt_s(5197)), $b), $rt_s(5199)))); + return $a; + } + if (oavra_ArrayPredictionContext_equals($M, $b)) { + if ($mergeCache !== null) + oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $b); + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_trace_atn_sim) + otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(5196)), $a), $rt_s(5197)), $b), $rt_s(5200)))); + return $b; + } + oavra_PredictionContext_combineCommonParents($mergedParents); + if ($mergeCache !== null) + oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $M); + oavra_ParserATNSimulator_$callClinit(); + if (oavra_ParserATNSimulator_trace_atn_sim) + otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(5196)), $a), $rt_s(5197)), $b), $rt_s(4157)), $M))); + return $M; +}, +oavra_PredictionContext_combineCommonParents = $parents => { + let $uniqueParents, $p, var$4, var$5, $parent; + oavra_PredictionContext_$callClinit(); + $uniqueParents = ju_HashMap__init_(); + $p = 0; + while (true) { + var$4 = $parents.data; + var$5 = var$4.length; + if ($p >= var$5) + break; + $parent = var$4[$p]; + if (!ju_HashMap_containsKey($uniqueParents, $parent)) + ju_HashMap_put($uniqueParents, $parent, $parent); + $p = $p + 1 | 0; + } + $p = 0; + while ($p < var$5) { + var$4[$p] = ju_HashMap_get($uniqueParents, var$4[$p]); + $p = $p + 1 | 0; + } +}, +oavra_PredictionContext_getCachedContext = ($context, $contextCache, $visited) => { + let var$4, $arrayPredictionContext, $existing, $changed, $parents, $i, var$10, $j, $parent, $updated; + oavra_PredictionContext_$callClinit(); + if ($context.$isEmpty()) + return $context; + var$4 = jl_Object_identity($context); + $arrayPredictionContext = ju_IdentityHashMap_findNonNullKeyEntry($visited, $context, var$4 & ($visited.$elementData1.data.length - 1 | 0), var$4); + $existing = $arrayPredictionContext === null ? null : $arrayPredictionContext.$value9; + if ($existing !== null) + return $existing; + $arrayPredictionContext = ju_HashMap_get($contextCache.$cache, $context); + if ($arrayPredictionContext !== null) { + ju_IdentityHashMap_put($visited, $context, $arrayPredictionContext); + return $arrayPredictionContext; + } + $changed = 0; + $parents = $rt_createArray(oavra_PredictionContext, $context.$size()); + $i = 0; + while (true) { + var$10 = $parents.data; + $j = var$10.length; + if ($i >= $j) + break; + $parent = oavra_PredictionContext_getCachedContext($context.$getParent($i), $contextCache, $visited); + if (!(!$changed && $parent === $context.$getParent($i))) { + if (!$changed) { + $parents = $rt_createArray(oavra_PredictionContext, $context.$size()); + var$10 = $parents.data; + $j = 0; + while ($j < $context.$size()) { + var$10[$j] = $context.$getParent($j); + $j = $j + 1 | 0; + } + $changed = 1; + } + $parents.data[$i] = $parent; + } + $i = $i + 1 | 0; + } + if (!$changed) { + oavra_PredictionContextCache_add($contextCache, $context); + ju_IdentityHashMap_put($visited, $context, $context); + return $context; + } + if (!$j) { + oavra_EmptyPredictionContext_$callClinit(); + $updated = oavra_EmptyPredictionContext_Instance; + } else if ($j != 1) { + $arrayPredictionContext = $context; + $updated = oavra_ArrayPredictionContext__init_($parents, $arrayPredictionContext.$returnStates); + } else + $updated = oavra_SingletonPredictionContext_create(var$10[0], $context.$getReturnState(0)); + oavra_PredictionContextCache_add($contextCache, $updated); + ju_IdentityHashMap_put($visited, $updated, $updated); + ju_IdentityHashMap_put($visited, $context, $updated); + return $updated; +}, +oavra_PredictionContext_toString = ($this, $recog) => { + return $this.$toString(); +}, +oavra_PredictionContext__clinit_ = () => { + oavra_PredictionContext_$assertionsDisabled = 0; + oavra_PredictionContext_globalNodeCount = new juca_AtomicInteger; +}; +function oavrd_DFASerializer() { + let a = this; jl_Object.call(a); + a.$dfa = null; + a.$vocabulary2 = null; +} +let oavrd_DFASerializer_getStateString = ($this, $s) => { + let $n, var$3, $baseStateStr; + $n = $s.$stateNumber0; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append(var$3, !$s.$isAcceptState ? $rt_s(4) : $rt_s(92)); + jl_AbstractStringBuilder_append(var$3, $rt_s(206)); + var$3 = jl_StringBuilder_append0(var$3, $n); + jl_AbstractStringBuilder_append(var$3, !$s.$requiresFullContext ? $rt_s(4) : $rt_s(387)); + $baseStateStr = jl_AbstractStringBuilder_toString(var$3); + if (!$s.$isAcceptState) + return $baseStateStr; + if ($s.$predicates === null) { + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append(var$3, $baseStateStr); + jl_AbstractStringBuilder_append(var$3, $rt_s(5036)); + return jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$3, $s.$prediction)); + } + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append(var$3, $baseStateStr); + jl_AbstractStringBuilder_append(var$3, $rt_s(5036)); + jl_AbstractStringBuilder_append(var$3, ju_Arrays_toString($s.$predicates)); + return jl_AbstractStringBuilder_toString(var$3); +}, +oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0 = $rt_classWithoutFields(), +oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + var$1 = var$1; + if (var$1 !== null) { + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + if (var$2 instanceof oncie_Variable) { + var$2 = var$2; + if (var$1 instanceof oncie_Variable) { + b: { + c: { + d: { + var$2 = var$2.$name4; + var$1 = var$1.$name4; + if (var$2 !== null) { + if (jl_String_equals(var$2, var$1)) + break d; + else + break c; + } + if (var$1 !== null) + break c; } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + var$3 = 0; + break b; } + var$3 = 1; } - oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + var$3 = 1; + } + return jl_Boolean_valueOf(var$3); +}; +function oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1() { + jl_Object.call(this); + this.$_0254 = null; +} +let oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = onciu_Foldable_folder$(var$0.$_0254); + sr_ClassTag$_$callClinit(); + return jl_Boolean_valueOf((onciu_Foldable$Folder_findAllByClass(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LogicalVariable)))).$contains(var$1)); +}, +oavra_StarBlockStartState = $rt_classWithoutFields(oavra_BlockStartState), +oavra_StarBlockStartState_getStateType = $this => { + return 5; +}, +oavra_ATNDeserializer$1 = $rt_classWithoutFields(), +oavra_ATNDeserializer$1_$SwitchMap$org$antlr$v4$runtime$atn$LexerActionType = null, +oavra_ATNDeserializer$1_$callClinit = () => { + oavra_ATNDeserializer$1_$callClinit = $rt_eraseClinit(oavra_ATNDeserializer$1); + oavra_ATNDeserializer$1__clinit_(); +}, +oavra_ATNDeserializer$1__clinit_ = () => { + let var$1, var$2; + var$1 = $rt_createIntArray((oavra_LexerActionType_values()).data.length); + var$2 = var$1.data; + oavra_ATNDeserializer$1_$SwitchMap$org$antlr$v4$runtime$atn$LexerActionType = var$1; + var$2[oavra_LexerActionType_CHANNEL.$ordinal] = 1; + var$2[oavra_LexerActionType_CUSTOM.$ordinal] = 2; + var$2[oavra_LexerActionType_MODE.$ordinal] = 3; + var$2[oavra_LexerActionType_MORE.$ordinal] = 4; + var$2[oavra_LexerActionType_POP_MODE.$ordinal] = 5; + var$2[oavra_LexerActionType_PUSH_MODE.$ordinal] = 6; + var$2[oavra_LexerActionType_SKIP.$ordinal] = 7; + var$2[oavra_LexerActionType_TYPE.$ordinal] = 8; +}; +function oavra_LexerChannelAction() { + jl_Object.call(this); + this.$channel = 0; +} +let oavra_LexerChannelAction_isPositionDependent = $this => { + return 0; +}, +oavra_LexerChannelAction_execute = ($this, $lexer) => { + $lexer.$_channel = $this.$channel; +}, +oavra_LexerChannelAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), oavra_LexerActionType_CHANNEL.$ordinal), $this.$channel), 2); +}, +oavra_LexerChannelAction_equals = ($this, $obj) => { + if ($obj === $this) + return 1; + if (!($obj instanceof oavra_LexerChannelAction)) + return 0; + return $this.$channel != $obj.$channel ? 0 : 1; +}, +oavra_LexerChannelAction_toString = $this => { + let var$1; + var$1 = $rt_createArray(jl_Object, 1); + var$1.data[0] = jl_Integer_valueOf($this.$channel); + return jl_String_format($rt_s(5201), var$1); +}; +function oavra_LexerCustomAction() { + let a = this; jl_Object.call(a); + a.$ruleIndex3 = 0; + a.$actionIndex = 0; +} +let oavra_LexerCustomAction_isPositionDependent = $this => { + return 1; +}, +oavra_LexerCustomAction_execute = ($this, $lexer) => { + return; +}, +oavra_LexerCustomAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), oavra_LexerActionType_CUSTOM.$ordinal), $this.$ruleIndex3), $this.$actionIndex), 3); +}, +oavra_LexerCustomAction_equals = ($this, $obj) => { + let $other; + if ($obj === $this) + return 1; + if (!($obj instanceof oavra_LexerCustomAction)) + return 0; + $other = $obj; + return $this.$ruleIndex3 == $other.$ruleIndex3 && $this.$actionIndex == $other.$actionIndex ? 1 : 0; +}; +function oavra_LexerModeAction() { + jl_Object.call(this); + this.$mode3 = 0; +} +let oavra_LexerModeAction_isPositionDependent = $this => { + return 0; +}, +oavra_LexerModeAction_execute = ($this, $lexer) => { + $lexer.$_mode = $this.$mode3; +}, +oavra_LexerModeAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), oavra_LexerActionType_MODE.$ordinal), $this.$mode3), 2); +}, +oavra_LexerModeAction_equals = ($this, $obj) => { + if ($obj === $this) + return 1; + if (!($obj instanceof oavra_LexerModeAction)) + return 0; + return $this.$mode3 != $obj.$mode3 ? 0 : 1; +}, +oavra_LexerModeAction_toString = $this => { + let var$1; + var$1 = $rt_createArray(jl_Object, 1); + var$1.data[0] = jl_Integer_valueOf($this.$mode3); + return jl_String_format($rt_s(5202), var$1); +}, +oavra_LexerMoreAction = $rt_classWithoutFields(), +oavra_LexerMoreAction_INSTANCE = null, +oavra_LexerMoreAction_isPositionDependent = $this => { + return 0; +}, +oavra_LexerMoreAction_execute = ($this, $lexer) => { + oavr_Lexer_more($lexer); +}, +oavra_LexerMoreAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), oavra_LexerActionType_MORE.$ordinal), 1); +}, +oavra_LexerMoreAction_equals = ($this, $obj) => { + return $obj !== $this ? 0 : 1; +}, +oavra_LexerMoreAction_toString = $this => { + return $rt_s(5203); +}, +oavra_LexerMoreAction__clinit_ = () => { + oavra_LexerMoreAction_INSTANCE = new oavra_LexerMoreAction; +}, +oavra_LexerPopModeAction = $rt_classWithoutFields(), +oavra_LexerPopModeAction_INSTANCE = null, +oavra_LexerPopModeAction_isPositionDependent = $this => { + return 0; +}, +oavra_LexerPopModeAction_execute = ($this, $lexer) => { + oavr_Lexer_popMode($lexer); +}, +oavra_LexerPopModeAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), oavra_LexerActionType_POP_MODE.$ordinal), 1); +}, +oavra_LexerPopModeAction_equals = ($this, $obj) => { + return $obj !== $this ? 0 : 1; +}, +oavra_LexerPopModeAction_toString = $this => { + return $rt_s(5204); +}, +oavra_LexerPopModeAction__clinit_ = () => { + oavra_LexerPopModeAction_INSTANCE = new oavra_LexerPopModeAction; +}; +function oavra_LexerPushModeAction() { + jl_Object.call(this); + this.$mode2 = 0; +} +let oavra_LexerPushModeAction_isPositionDependent = $this => { + return 0; +}, +oavra_LexerPushModeAction_execute = ($this, $lexer) => { + oavr_Lexer_pushMode($lexer, $this.$mode2); +}, +oavra_LexerPushModeAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), oavra_LexerActionType_PUSH_MODE.$ordinal), $this.$mode2), 2); +}, +oavra_LexerPushModeAction_equals = ($this, $obj) => { + if ($obj === $this) + return 1; + if (!($obj instanceof oavra_LexerPushModeAction)) + return 0; + return $this.$mode2 != $obj.$mode2 ? 0 : 1; +}, +oavra_LexerPushModeAction_toString = $this => { + let var$1; + var$1 = $rt_createArray(jl_Object, 1); + var$1.data[0] = jl_Integer_valueOf($this.$mode2); + return jl_String_format($rt_s(5205), var$1); +}, +oavra_LexerSkipAction = $rt_classWithoutFields(), +oavra_LexerSkipAction_INSTANCE = null, +oavra_LexerSkipAction_isPositionDependent = $this => { + return 0; +}, +oavra_LexerSkipAction_execute = ($this, $lexer) => { + oavr_Lexer_skip($lexer); +}, +oavra_LexerSkipAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), oavra_LexerActionType_SKIP.$ordinal), 1); +}, +oavra_LexerSkipAction_equals = ($this, $obj) => { + return $obj !== $this ? 0 : 1; +}, +oavra_LexerSkipAction_toString = $this => { + return $rt_s(4613); +}, +oavra_LexerSkipAction__clinit_ = () => { + oavra_LexerSkipAction_INSTANCE = new oavra_LexerSkipAction; +}; +function oavra_LexerTypeAction() { + jl_Object.call(this); + this.$type3 = 0; +} +let oavra_LexerTypeAction_isPositionDependent = $this => { + return 0; +}, +oavra_LexerTypeAction_execute = ($this, $lexer) => { + $lexer.$_type = $this.$type3; +}, +oavra_LexerTypeAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), oavra_LexerActionType_TYPE.$ordinal), $this.$type3), 2); +}, +oavra_LexerTypeAction_equals = ($this, $obj) => { + if ($obj === $this) + return 1; + if (!($obj instanceof oavra_LexerTypeAction)) + return 0; + return $this.$type3 != $obj.$type3 ? 0 : 1; +}, +oavra_LexerTypeAction_toString = $this => { + let var$1; + var$1 = $rt_createArray(jl_Object, 1); + var$1.data[0] = jl_Integer_valueOf($this.$type3); + return jl_String_format($rt_s(5206), var$1); +}, +oncipv_Cypher25ParserListener = $rt_classWithoutFields(0), +oncipv_AbstractCypher25AstBuilder = $rt_classWithoutFields(), +oncipv_AbstractCypher25AstBuilder_exitEveryRule = ($this, $ctx) => { + let var$2, var$3; + a: { + switch ($ctx.$getRuleIndex()) { + case 0: + break; + case 1: + oncipvaf_Cypher25AstBuilder_exitStatement($this, $ctx); + break a; + case 2: + oncipvaf_Cypher25AstBuilder_exitRegularQuery($this, $ctx); + break a; + case 3: + oncipvaf_Cypher25AstBuilder_exitSingleQuery($this, $ctx); + break a; + case 4: + oncipvaf_Cypher25AstBuilder_exitClause($this, $ctx); + break a; + case 5: + oncipvaf_Cypher25AstBuilder_exitUseClause($this, $ctx); + break a; + case 6: + oncipvaf_Cypher25AstBuilder_exitGraphReference($this, $ctx); + break a; + case 7: + oncipvaf_Cypher25AstBuilder_exitFinishClause($this, $ctx); + break a; + case 8: + oncipvaf_Cypher25AstBuilder_exitReturnClause($this, $ctx); + break a; + case 9: + oncipvaf_Cypher25AstBuilder_exitReturnBody($this, $ctx); + break a; + case 10: + oncipvaf_Cypher25AstBuilder_exitReturnItem($this, $ctx); + break a; + case 11: + oncipvaf_Cypher25AstBuilder_exitReturnItems($this, $ctx); + break a; + case 12: + oncipvaf_Cypher25AstBuilder_exitOrderItem($this, $ctx); + break a; + case 13: + oncipvaf_Cypher25AstBuilder_exitAscToken($this, $ctx); + break a; + case 14: + oncipvaf_Cypher25AstBuilder_exitDescToken($this, $ctx); + break a; + case 15: + oncipvaf_Cypher25AstBuilder_exitOrderBy($this, $ctx); + break a; + case 16: + oncipvaf_Cypher25AstBuilder_exitSkip($this, $ctx); + break a; + case 17: + oncipvaf_Cypher25AstBuilder_exitLimit($this, $ctx); + break a; + case 18: + oncipvaf_Cypher25AstBuilder_exitWhereClause($this, $ctx); + break a; + case 19: + oncipvaf_Cypher25AstBuilder_exitWithClause($this, $ctx); + break a; + case 20: + oncipvaf_Cypher25AstBuilder_exitCreateClause($this, $ctx); + break a; + case 21: + oncipvaf_Cypher25AstBuilder_exitInsertClause($this, $ctx); + break a; + case 22: + oncipvaf_Cypher25AstBuilder_exitSetClause($this, $ctx); + break a; + case 23: + oncipvaf_Cypher25AstBuilder_exitSetItem($this, $ctx); + break a; + case 24: + oncipvaf_Cypher25AstBuilder_exitRemoveClause($this, $ctx); + break a; + case 25: + oncipvaf_Cypher25AstBuilder_exitRemoveItem($this, $ctx); + break a; + case 26: + oncipvaf_Cypher25AstBuilder_exitDeleteClause($this, $ctx); + break a; + case 27: + oncipvaf_Cypher25AstBuilder_exitMatchClause($this, $ctx); + break a; + case 28: + oncipvaf_Cypher25AstBuilder_exitMatchMode($this, $ctx); + break a; + case 29: + oncipvaf_Cypher25AstBuilder_exitHint($this, $ctx); + break a; + case 30: + oncipvaf_Cypher25AstBuilder_exitMergeClause($this, $ctx); + break a; + case 31: + oncipvaf_Cypher25AstBuilder_exitMergeAction($this, $ctx); + break a; + case 32: + oncipvaf_Cypher25AstBuilder_exitUnwindClause($this, $ctx); + break a; + case 33: + oncipvaf_Cypher25AstBuilder_exitCallClause($this, $ctx); + break a; + case 34: + oncipvaf_Cypher25AstBuilder_exitProcedureName($this, $ctx); + break a; + case 35: + oncipvaf_Cypher25AstBuilder_exitProcedureArgument($this, $ctx); + break a; + case 36: + oncipvaf_Cypher25AstBuilder_exitProcedureResultItem($this, $ctx); + break a; + case 37: + oncipvaf_Cypher25AstBuilder_exitLoadCSVClause($this, $ctx); + break a; + case 38: + oncipvaf_Cypher25AstBuilder_exitForeachClause($this, $ctx); + break a; + case 39: + oncipvaf_Cypher25AstBuilder_exitSubqueryClause($this, $ctx); + break a; + case 40: + oncipvaf_Cypher25AstBuilder_exitSubqueryScope($this, $ctx); + break a; + case 41: + oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsParameters($this, $ctx); + break a; + case 42: + oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsBatchParameters($this, $ctx); + break a; + case 43: + oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsErrorParameters($this, $ctx); + break a; + case 44: + oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsReportParameters($this, $ctx); + break a; + case 45: + oncipvaf_Cypher25AstBuilder_exitOrderBySkipLimitClause($this, $ctx); + break a; + case 46: + oncipvaf_Cypher25AstBuilder_exitPatternList($this, $ctx); + break a; + case 47: + oncipvaf_Cypher25AstBuilder_exitInsertPatternList($this, $ctx); + break a; + case 48: + oncipvaf_Cypher25AstBuilder_exitPattern($this, $ctx); + break a; + case 49: + oncipvaf_Cypher25AstBuilder_exitInsertPattern($this, $ctx); + break a; + case 50: + oncipvaf_Cypher25AstBuilder_exitQuantifier($this, $ctx); + break a; + case 51: + oncipvaf_Cypher25AstBuilder_exitAnonymousPattern($this, $ctx); + break a; + case 52: + oncipvaf_Cypher25AstBuilder_exitShortestPathPattern($this, $ctx); + break a; + case 53: + oncipvaf_Cypher25AstBuilder_exitPatternElement($this, $ctx); + break a; + case 54: + oncipvaf_Cypher25AstBuilder_exitSelector($this, $ctx); + break a; + case 55: + oncipvaf_Cypher25AstBuilder_exitGroupToken($this, $ctx); + break a; + case 56: + oncipvaf_Cypher25AstBuilder_exitPathToken($this, $ctx); + break a; + case 57: + oncipvaf_Cypher25AstBuilder_exitPathPatternNonEmpty($this, $ctx); + break a; + case 58: + oncipvaf_Cypher25AstBuilder_exitNodePattern($this, $ctx); + break a; + case 59: + oncipvaf_Cypher25AstBuilder_exitInsertNodePattern($this, $ctx); + break a; + case 60: + oncipvaf_Cypher25AstBuilder_exitParenthesizedPath($this, $ctx); + break a; + case 61: + oncipvaf_Cypher25AstBuilder_exitNodeLabels($this, $ctx); + break a; + case 62: + oncipvaf_Cypher25AstBuilder_exitNodeLabelsIs($this, $ctx); + break a; + case 63: + oncipvaf_Cypher25AstBuilder_exitDynamicExpression($this, $ctx); + break a; + case 64: + oncipvaf_Cypher25AstBuilder_exitDynamicAnyAllExpression($this, $ctx); + break a; + case 65: + oncipvaf_Cypher25AstBuilder_exitDynamicLabelType($this, $ctx); + break a; + case 66: + oncipvaf_Cypher25AstBuilder_exitLabelType($this, $ctx); + break a; + case 67: + oncipvaf_Cypher25AstBuilder_exitRelType($this, $ctx); + break a; + case 68: + oncipvaf_Cypher25AstBuilder_exitLabelOrRelType($this, $ctx); + break a; + case 69: + oncipvaf_Cypher25AstBuilder_exitProperties($this, $ctx); + break a; + case 70: + oncipvaf_Cypher25AstBuilder_exitRelationshipPattern($this, $ctx); + break a; + case 71: + oncipvaf_Cypher25AstBuilder_exitInsertRelationshipPattern($this, $ctx); + break a; + case 72: + oncipvaf_Cypher25AstBuilder_exitLeftArrow($this, $ctx); + break a; + case 73: + oncipvaf_Cypher25AstBuilder_exitArrowLine($this, $ctx); + break a; + case 74: + oncipvaf_Cypher25AstBuilder_exitRightArrow($this, $ctx); + break a; + case 75: + oncipvaf_Cypher25AstBuilder_exitPathLength($this, $ctx); + break a; + case 76: + oncipvaf_Cypher25AstBuilder_exitLabelExpression($this, $ctx); + break a; + case 77: + oncipvaf_Cypher25AstBuilder_exitLabelExpression4($this, $ctx); + break a; + case 78: + oncipvaf_Cypher25AstBuilder_exitLabelExpression4Is($this, $ctx); + break a; + case 79: + oncipvaf_Cypher25AstBuilder_exitLabelExpression3($this, $ctx); + break a; + case 80: + oncipvaf_Cypher25AstBuilder_exitLabelExpression3Is($this, $ctx); + break a; + case 81: + oncipvaf_Cypher25AstBuilder_exitLabelExpression2($this, $ctx); + break a; + case 82: + oncipvaf_Cypher25AstBuilder_exitLabelExpression2Is($this, $ctx); + break a; + case 83: + oncipvaf_Cypher25AstBuilder_exitLabelExpression1($this, $ctx); + break a; + case 84: + oncipvaf_Cypher25AstBuilder_exitLabelExpression1Is($this, $ctx); + break a; + case 85: + oncipvaf_Cypher25AstBuilder_exitInsertNodeLabelExpression($this, $ctx); + break a; + case 86: + oncipvaf_Cypher25AstBuilder_exitInsertRelationshipLabelExpression($this, $ctx); + break a; + case 87: + oncipvaf_Cypher25AstBuilder_exitExpression($this, $ctx); + break a; + case 88: + oncipvaf_Cypher25AstBuilder_exitExpression11($this, $ctx); + break a; + case 89: + oncipvaf_Cypher25AstBuilder_exitExpression10($this, $ctx); + break a; + case 90: + oncipvaf_Cypher25AstBuilder_exitExpression9($this, $ctx); + break a; + case 91: + oncipvaf_Cypher25AstBuilder_exitExpression8($this, $ctx); + break a; + case 92: + oncipvaf_Cypher25AstBuilder_exitExpression7($this, $ctx); + break a; + case 93: + oncipvaf_Cypher25AstBuilder_exitComparisonExpression6($this, $ctx); + break a; + case 94: + oncipvaf_Cypher25AstBuilder_exitNormalForm($this, $ctx); + break a; + case 95: + oncipvaf_Cypher25AstBuilder_exitExpression6($this, $ctx); + break a; + case 96: + oncipvaf_Cypher25AstBuilder_exitExpression5($this, $ctx); + break a; + case 97: + oncipvaf_Cypher25AstBuilder_exitExpression4($this, $ctx); + break a; + case 98: + oncipvaf_Cypher25AstBuilder_exitExpression3($this, $ctx); + break a; + case 99: + oncipvaf_Cypher25AstBuilder_exitExpression2($this, $ctx); + break a; + case 100: + oncipvaf_Cypher25AstBuilder_exitPostFix($this, $ctx); + break a; + case 101: + oncipvaf_Cypher25AstBuilder_exitProperty($this, $ctx); + break a; + case 102: + oncipvaf_Cypher25AstBuilder_exitDynamicProperty($this, $ctx); + break a; + case 103: + oncipvaf_Cypher25AstBuilder_exitPropertyExpression($this, $ctx); + break a; + case 104: + oncipvaf_Cypher25AstBuilder_exitDynamicPropertyExpression($this, $ctx); + break a; + case 105: + oncipvaf_Cypher25AstBuilder_exitExpression1($this, $ctx); + break a; + case 106: + oncipvaf_Cypher25AstBuilder_exitLiteral($this, $ctx); + break a; + case 107: + oncipvaf_Cypher25AstBuilder_exitCaseExpression($this, $ctx); + break a; + case 108: + oncipvaf_Cypher25AstBuilder_exitCaseAlternative($this, $ctx); + break a; + case 109: + oncipvaf_Cypher25AstBuilder_exitExtendedCaseExpression($this, $ctx); + break a; + case 110: + oncipvaf_Cypher25AstBuilder_exitExtendedCaseAlternative($this, $ctx); + break a; + case 111: + oncipvaf_Cypher25AstBuilder_exitExtendedWhen($this, $ctx); + break a; + case 112: + oncipvaf_Cypher25AstBuilder_exitListComprehension($this, $ctx); + break a; + case 113: + oncipvaf_Cypher25AstBuilder_exitPatternComprehension($this, $ctx); + break a; + case 114: + oncipvaf_Cypher25AstBuilder_exitReduceExpression($this, $ctx); + break a; + case 115: + oncipvaf_Cypher25AstBuilder_exitListItemsPredicate($this, $ctx); + break a; + case 116: + oncipvaf_Cypher25AstBuilder_exitNormalizeFunction($this, $ctx); + break a; + case 117: + oncipvaf_Cypher25AstBuilder_exitTrimFunction($this, $ctx); + break a; + case 118: + oncipvaf_Cypher25AstBuilder_exitPatternExpression($this, $ctx); + break a; + case 119: + oncipvaf_Cypher25AstBuilder_exitShortestPathExpression($this, $ctx); + break a; + case 120: + oncipvaf_Cypher25AstBuilder_exitParenthesizedExpression($this, $ctx); + break a; + case 121: + oncipvaf_Cypher25AstBuilder_exitMapProjection($this, $ctx); + break a; + case 122: + oncipvaf_Cypher25AstBuilder_exitMapProjectionElement($this, $ctx); + break a; + case 123: + oncipvaf_Cypher25AstBuilder_exitCountStar($this, $ctx); + break a; + case 124: + oncipvaf_Cypher25AstBuilder_exitExistsExpression($this, $ctx); + break a; + case 125: + oncipvaf_Cypher25AstBuilder_exitCountExpression($this, $ctx); + break a; + case 126: + oncipvaf_Cypher25AstBuilder_exitCollectExpression($this, $ctx); + break a; + case 127: + oncipvaf_Cypher25AstBuilder_exitNumberLiteral($this, $ctx); + break a; + case 128: + oncipvaf_Cypher25AstBuilder_exitSignedIntegerLiteral($this, $ctx); + break a; + case 129: + oncipvaf_Cypher25AstBuilder_exitListLiteral($this, $ctx); + break a; + case 130: + oncipvaf_Cypher25AstBuilder_exitPropertyKeyName($this, $ctx); + break a; + case 131: + oncipvaf_Cypher25AstBuilder_exitParameter($this, $ctx); + break a; + case 132: + oncipvaf_Cypher25AstBuilder_exitParameterName($this, $ctx); + break a; + case 133: + oncipvaf_Cypher25AstBuilder_exitFunctionInvocation($this, $ctx); + break a; + case 134: + oncipvaf_Cypher25AstBuilder_exitFunctionArgument($this, $ctx); + break a; + case 135: + oncipvaf_Cypher25AstBuilder_exitFunctionName($this, $ctx); + break a; + case 136: + oncipvaf_Cypher25AstBuilder_exitNamespace($this, $ctx); + break a; + case 137: + oncipvaf_Cypher25AstBuilder_exitVariable($this, $ctx); + break a; + case 138: + oncipvaf_Cypher25AstBuilder_exitNonEmptyNameList($this, $ctx); + break a; + case 139: + oncipvaf_Cypher25AstBuilder_exitType($this, $ctx); + break a; + case 140: + oncipvaf_Cypher25AstBuilder_exitTypePart($this, $ctx); + break a; + case 141: + oncipvaf_Cypher25AstBuilder_exitTypeName($this, $ctx); + break a; + case 142: + oncipvaf_Cypher25AstBuilder_exitTypeNullability($this, $ctx); + break a; + case 143: + oncipvaf_Cypher25AstBuilder_exitTypeListSuffix($this, $ctx); + break a; + case 144: + oncipvaf_Cypher25AstBuilder_exitCommand($this, $ctx); + break a; + case 145: + oncipvaf_Cypher25AstBuilder_exitCreateCommand($this, $ctx); + break a; + case 146: + oncipvaf_Cypher25AstBuilder_exitDropCommand($this, $ctx); + break a; + case 147: + oncipvaf_Cypher25AstBuilder_exitShowCommand($this, $ctx); + break a; + case 148: + oncipvaf_Cypher25AstBuilder_exitShowCommandYield($this, $ctx); + break a; + case 149: + oncipvaf_Cypher25AstBuilder_exitYieldItem($this, $ctx); + break a; + case 150: + oncipvaf_Cypher25AstBuilder_exitYieldSkip($this, $ctx); + break a; + case 151: + oncipvaf_Cypher25AstBuilder_exitYieldLimit($this, $ctx); + break a; + case 152: + oncipvaf_Cypher25AstBuilder_exitYieldClause($this, $ctx); + break a; + case 153: + oncipvaf_Cypher25AstBuilder_exitCommandOptions($this, $ctx); + break a; + case 154: + oncipvaf_Cypher25AstBuilder_exitTerminateCommand($this, $ctx); + break a; + case 155: + oncipvaf_Cypher25AstBuilder_exitComposableCommandClauses($this, $ctx); + break a; + case 156: + oncipvaf_Cypher25AstBuilder_exitComposableShowCommandClauses($this, $ctx); + break a; + case 157: + oncipvaf_Cypher25AstBuilder_exitShowIndexCommand($this, $ctx); + break a; + case 158: + oncipvaf_Cypher25AstBuilder_exitShowIndexType($this, $ctx); + break a; + case 159: + oncipvaf_Cypher25AstBuilder_exitShowIndexesEnd($this, $ctx); + break a; + case 160: + oncipvaf_Cypher25AstBuilder_exitShowConstraintCommand($this, $ctx); + break a; + case 161: + oncipvaf_Cypher25AstBuilder_exitShowConstraintEntity($this, $ctx); + break a; + case 162: + oncipvaf_Cypher25AstBuilder_exitConstraintExistType($this, $ctx); + break a; + case 163: + oncipvaf_Cypher25AstBuilder_exitShowConstraintsEnd($this, $ctx); + break a; + case 164: + oncipvaf_Cypher25AstBuilder_exitShowProcedures($this, $ctx); + break a; + case 165: + oncipvaf_Cypher25AstBuilder_exitShowFunctions($this, $ctx); + break a; + case 166: + oncipvaf_Cypher25AstBuilder_exitFunctionToken($this, $ctx); + break a; + case 167: + oncipvaf_Cypher25AstBuilder_exitExecutableBy($this, $ctx); + break a; + case 168: + oncipvaf_Cypher25AstBuilder_exitShowFunctionsType($this, $ctx); + break a; + case 169: + oncipvaf_Cypher25AstBuilder_exitShowTransactions($this, $ctx); + break a; + case 170: + oncipvaf_Cypher25AstBuilder_exitTerminateTransactions($this, $ctx); + break a; + case 171: + oncipvaf_Cypher25AstBuilder_exitShowSettings($this, $ctx); + break a; + case 172: + oncipvaf_Cypher25AstBuilder_exitSettingToken($this, $ctx); + break a; + case 173: + oncipvaf_Cypher25AstBuilder_exitNamesAndClauses($this, $ctx); + break a; + case 174: + oncipvaf_Cypher25AstBuilder_exitStringsOrExpression($this, $ctx); + break a; + case 175: + oncipvaf_Cypher25AstBuilder_exitCommandNodePattern($this, $ctx); + break a; + case 176: + oncipvaf_Cypher25AstBuilder_exitCommandRelPattern($this, $ctx); + break a; + case 177: + oncipvaf_Cypher25AstBuilder_exitCreateConstraint($this, $ctx); + break a; + case 178: + oncipvaf_Cypher25AstBuilder_exitConstraintType($this, $ctx); + break a; + case 179: + oncipvaf_Cypher25AstBuilder_exitDropConstraint($this, $ctx); + break a; + case 180: + oncipvaf_Cypher25AstBuilder_exitCreateIndex($this, $ctx); + break a; + case 181: + oncipvaf_Cypher25AstBuilder_exitCreateIndex_($this, $ctx); + break a; + case 182: + oncipvaf_Cypher25AstBuilder_exitCreateFulltextIndex($this, $ctx); + break a; + case 183: + oncipvaf_Cypher25AstBuilder_exitFulltextNodePattern($this, $ctx); + break a; + case 184: + oncipvaf_Cypher25AstBuilder_exitFulltextRelPattern($this, $ctx); + break a; + case 185: + oncipvaf_Cypher25AstBuilder_exitCreateLookupIndex($this, $ctx); + break a; + case 186: + oncipvaf_Cypher25AstBuilder_exitLookupIndexNodePattern($this, $ctx); + break a; + case 187: + oncipvaf_Cypher25AstBuilder_exitLookupIndexRelPattern($this, $ctx); + break a; + case 188: + oncipvaf_Cypher25AstBuilder_exitDropIndex($this, $ctx); + break a; + case 189: + oncipvaf_Cypher25AstBuilder_exitPropertyList($this, $ctx); + break a; + case 190: + oncipvaf_Cypher25AstBuilder_exitEnclosedPropertyList($this, $ctx); + break a; + case 191: + oncipvaf_Cypher25AstBuilder_exitAlterCommand($this, $ctx); + break a; + case 192: + oncipvaf_Cypher25AstBuilder_exitRenameCommand($this, $ctx); + break a; + case 193: + oncipvaf_Cypher25AstBuilder_exitGrantCommand($this, $ctx); + break a; + case 194: + oncipvaf_Cypher25AstBuilder_exitDenyCommand($this, $ctx); + break a; + case 195: + oncipvaf_Cypher25AstBuilder_exitRevokeCommand($this, $ctx); + break a; + case 196: + oncipvaf_Cypher25AstBuilder_exitUserNames($this, $ctx); + break a; + case 197: + oncipvaf_Cypher25AstBuilder_exitRoleNames($this, $ctx); + break a; + case 198: + oncipvaf_Cypher25AstBuilder_exitRoleToken($this, $ctx); + break a; + case 199: + oncipvaf_Cypher25AstBuilder_exitEnableServerCommand($this, $ctx); + break a; + case 200: + oncipvaf_Cypher25AstBuilder_exitAlterServer($this, $ctx); + break a; + case 201: + oncipvaf_Cypher25AstBuilder_exitRenameServer($this, $ctx); + break a; + case 202: + oncipvaf_Cypher25AstBuilder_exitDropServer($this, $ctx); + break a; + case 203: + oncipvaf_Cypher25AstBuilder_exitShowServers($this, $ctx); + break a; + case 204: + oncipvaf_Cypher25AstBuilder_exitAllocationCommand($this, $ctx); + break a; + case 205: + oncipvaf_Cypher25AstBuilder_exitDeallocateDatabaseFromServers($this, $ctx); + break a; + case 206: + oncipvaf_Cypher25AstBuilder_exitReallocateDatabases($this, $ctx); + break a; + case 207: + oncipvaf_Cypher25AstBuilder_exitCreateRole($this, $ctx); + break a; + case 208: + oncipvaf_Cypher25AstBuilder_exitDropRole($this, $ctx); + break a; + case 209: + oncipvaf_Cypher25AstBuilder_exitRenameRole($this, $ctx); + break a; + case 210: + oncipvaf_Cypher25AstBuilder_exitShowRoles($this, $ctx); + break a; + case 211: + oncipvaf_Cypher25AstBuilder_exitGrantRole($this, $ctx); + break a; + case 212: + oncipvaf_Cypher25AstBuilder_exitRevokeRole($this, $ctx); + break a; + case 213: + oncipvaf_Cypher25AstBuilder_exitCreateUser($this, $ctx); + break a; + case 214: + oncipvaf_Cypher25AstBuilder_exitDropUser($this, $ctx); + break a; + case 215: + oncipvaf_Cypher25AstBuilder_exitRenameUser($this, $ctx); + break a; + case 216: + oncipvaf_Cypher25AstBuilder_exitAlterCurrentUser($this, $ctx); + break a; + case 217: + oncipvaf_Cypher25AstBuilder_exitAlterUser($this, $ctx); + break a; + case 218: + oncipvaf_Cypher25AstBuilder_exitRemoveNamedProvider($this, $ctx); + break a; + case 219: + oncipvaf_Cypher25AstBuilder_exitPassword($this, $ctx); + break a; + case 220: + oncipvaf_Cypher25AstBuilder_exitPasswordOnly($this, $ctx); + break a; + case 221: + oncipvaf_Cypher25AstBuilder_exitPasswordExpression($this, $ctx); + break a; + case 222: + oncipvaf_Cypher25AstBuilder_exitPasswordChangeRequired($this, $ctx); + break a; + case 223: + oncipvaf_Cypher25AstBuilder_exitUserStatus($this, $ctx); + break a; + case 224: + oncipvaf_Cypher25AstBuilder_exitHomeDatabase($this, $ctx); + break a; + case 225: + oncipvaf_Cypher25AstBuilder_exitSetAuthClause($this, $ctx); + break a; + case 226: + oncipvaf_Cypher25AstBuilder_exitUserAuthAttribute($this, $ctx); + break a; + case 227: + oncipvaf_Cypher25AstBuilder_exitShowUsers($this, $ctx); + break a; + case 228: + oncipvaf_Cypher25AstBuilder_exitShowCurrentUser($this, $ctx); + break a; + case 229: + oncipvaf_Cypher25AstBuilder_exitShowSupportedPrivileges($this, $ctx); + break a; + case 230: + oncipvaf_Cypher25AstBuilder_exitShowPrivileges($this, $ctx); + break a; + case 231: + oncipvaf_Cypher25AstBuilder_exitShowRolePrivileges($this, $ctx); + break a; + case 232: + oncipvaf_Cypher25AstBuilder_exitShowUserPrivileges($this, $ctx); + break a; + case 233: + oncipvaf_Cypher25AstBuilder_exitPrivilegeAsCommand($this, $ctx); + break a; + case 234: + oncipvaf_Cypher25AstBuilder_exitPrivilegeToken($this, $ctx); + break a; + case 235: + oncipvaf_Cypher25AstBuilder_exitPrivilege($this, $ctx); + break a; + case 236: + oncipvaf_Cypher25AstBuilder_exitAllPrivilege($this, $ctx); + break a; + case 237: + oncipvaf_Cypher25AstBuilder_exitAllPrivilegeType($this, $ctx); + break a; + case 238: + oncipvaf_Cypher25AstBuilder_exitAllPrivilegeTarget($this, $ctx); + break a; + case 239: + oncipvaf_Cypher25AstBuilder_exitCreatePrivilege($this, $ctx); + break a; + case 240: + oncipvaf_Cypher25AstBuilder_exitCreatePrivilegeForDatabase($this, $ctx); + break a; + case 241: + oncipvaf_Cypher25AstBuilder_exitCreateNodePrivilegeToken($this, $ctx); + break a; + case 242: + oncipvaf_Cypher25AstBuilder_exitCreateRelPrivilegeToken($this, $ctx); + break a; + case 243: + oncipvaf_Cypher25AstBuilder_exitCreatePropertyPrivilegeToken($this, $ctx); + break a; + case 244: + oncipvaf_Cypher25AstBuilder_exitActionForDBMS($this, $ctx); + break a; + case 245: + oncipvaf_Cypher25AstBuilder_exitDropPrivilege($this, $ctx); + break a; + case 246: + oncipvaf_Cypher25AstBuilder_exitLoadPrivilege($this, $ctx); + break a; + case 247: + oncipvaf_Cypher25AstBuilder_exitShowPrivilege($this, $ctx); + break a; + case 248: + oncipvaf_Cypher25AstBuilder_exitSetPrivilege($this, $ctx); + break a; + case 249: + oncipvaf_Cypher25AstBuilder_exitPasswordToken($this, $ctx); + break a; + case 250: + oncipvaf_Cypher25AstBuilder_exitRemovePrivilege($this, $ctx); + break a; + case 251: + oncipvaf_Cypher25AstBuilder_exitWritePrivilege($this, $ctx); + break a; + case 252: + oncipvaf_Cypher25AstBuilder_exitDatabasePrivilege($this, $ctx); + break a; + case 253: + oncipvaf_Cypher25AstBuilder_exitDbmsPrivilege($this, $ctx); + break a; + case 254: + oncipvaf_Cypher25AstBuilder_exitDbmsPrivilegeExecute($this, $ctx); + break a; + case 255: + oncipvaf_Cypher25AstBuilder_exitAdminToken($this, $ctx); + break a; + case 256: + oncipvaf_Cypher25AstBuilder_exitProcedureToken($this, $ctx); + break a; + case 257: + oncipvaf_Cypher25AstBuilder_exitIndexToken($this, $ctx); + break a; + case 258: + oncipvaf_Cypher25AstBuilder_exitConstraintToken($this, $ctx); + break a; + case 259: + oncipvaf_Cypher25AstBuilder_exitTransactionToken($this, $ctx); + break a; + case 260: + oncipvaf_Cypher25AstBuilder_exitUserQualifier($this, $ctx); + break a; + case 261: + oncipvaf_Cypher25AstBuilder_exitExecuteFunctionQualifier($this, $ctx); + break a; + case 262: + oncipvaf_Cypher25AstBuilder_exitExecuteProcedureQualifier($this, $ctx); + break a; + case 263: + oncipvaf_Cypher25AstBuilder_exitSettingQualifier($this, $ctx); + break a; + case 264: + oncipvaf_Cypher25AstBuilder_exitGlobs($this, $ctx); + break a; + case 265: + oncipvaf_Cypher25AstBuilder_exitGlob($this, $ctx); + break a; + case 266: + oncipvaf_Cypher25AstBuilder_exitGlobRecursive($this, $ctx); + break a; + case 267: + oncipvaf_Cypher25AstBuilder_exitGlobPart($this, $ctx); + break a; + case 268: + oncipvaf_Cypher25AstBuilder_exitQualifiedGraphPrivilegesWithProperty($this, $ctx); + break a; + case 269: + oncipvaf_Cypher25AstBuilder_exitQualifiedGraphPrivileges($this, $ctx); + break a; + case 270: + oncipvaf_Cypher25AstBuilder_exitLabelsResource($this, $ctx); + break a; + case 271: + oncipvaf_Cypher25AstBuilder_exitPropertiesResource($this, $ctx); + break a; + case 272: + oncipvaf_Cypher25AstBuilder_exitNonEmptyStringList($this, $ctx); + break a; + case 273: + oncipvaf_Cypher25AstBuilder_exitGraphQualifier($this, $ctx); + break a; + case 274: + oncipvaf_Cypher25AstBuilder_exitGraphQualifierToken($this, $ctx); + break a; + case 275: + oncipvaf_Cypher25AstBuilder_exitRelToken($this, $ctx); + break a; + case 276: + oncipvaf_Cypher25AstBuilder_exitElementToken($this, $ctx); + break a; + case 277: + oncipvaf_Cypher25AstBuilder_exitNodeToken($this, $ctx); + break a; + case 278: + oncipvaf_Cypher25AstBuilder_exitDatabaseScope($this, $ctx); + break a; + case 279: + oncipvaf_Cypher25AstBuilder_exitGraphScope($this, $ctx); + break a; + case 280: + oncipvaf_Cypher25AstBuilder_exitCreateCompositeDatabase($this, $ctx); + break a; + case 281: + oncipvaf_Cypher25AstBuilder_exitCreateDatabase($this, $ctx); + break a; + case 282: + oncipvaf_Cypher25AstBuilder_exitPrimaryTopology($this, $ctx); + break a; + case 283: + oncipvaf_Cypher25AstBuilder_exitPrimaryToken($this, $ctx); + break a; + case 284: + oncipvaf_Cypher25AstBuilder_exitSecondaryTopology($this, $ctx); + break a; + case 285: + oncipvaf_Cypher25AstBuilder_exitSecondaryToken($this, $ctx); + break a; + case 286: + oncipvaf_Cypher25AstBuilder_exitDropDatabase($this, $ctx); + break a; + case 287: + oncipvaf_Cypher25AstBuilder_exitAliasAction($this, $ctx); + break a; + case 288: + oncipvaf_Cypher25AstBuilder_exitAlterDatabase($this, $ctx); + break a; + case 289: + oncipvaf_Cypher25AstBuilder_exitAlterDatabaseAccess($this, $ctx); + break a; + case 290: + oncipvaf_Cypher25AstBuilder_exitAlterDatabaseTopology($this, $ctx); + break a; + case 291: + oncipvaf_Cypher25AstBuilder_exitAlterDatabaseOption($this, $ctx); + break a; + case 292: + oncipvaf_Cypher25AstBuilder_exitStartDatabase($this, $ctx); + break a; + case 293: + oncipvaf_Cypher25AstBuilder_exitStopDatabase($this, $ctx); + break a; + case 294: + oncipvaf_Cypher25AstBuilder_exitWaitClause($this, $ctx); + break a; + case 295: + oncipvaf_Cypher25AstBuilder_exitSecondsToken($this, $ctx); + break a; + case 296: + oncipvaf_Cypher25AstBuilder_exitShowDatabase($this, $ctx); + break a; + case 297: + oncipvaf_Cypher25AstBuilder_exitAliasName($this, $ctx); + break a; + case 298: + oncipvaf_Cypher25AstBuilder_exitAliasTargetName($this, $ctx); + break a; + case 299: + oncipvaf_Cypher25AstBuilder_exitDatabaseName($this, $ctx); + break a; + case 300: + oncipvaf_Cypher25AstBuilder_exitCreateAlias($this, $ctx); + break a; + case 301: + oncipvaf_Cypher25AstBuilder_exitDropAlias($this, $ctx); + break a; + case 302: + oncipvaf_Cypher25AstBuilder_exitAlterAlias($this, $ctx); + break a; + case 303: + oncipvaf_Cypher25AstBuilder_exitAlterAliasTarget($this, $ctx); + break a; + case 304: + oncipvaf_Cypher25AstBuilder_exitAlterAliasUser($this, $ctx); + break a; + case 305: + oncipvaf_Cypher25AstBuilder_exitAlterAliasPassword($this, $ctx); + break a; + case 306: + oncipvaf_Cypher25AstBuilder_exitAlterAliasDriver($this, $ctx); + break a; + case 307: + oncipvaf_Cypher25AstBuilder_exitAlterAliasProperties($this, $ctx); + break a; + case 308: + oncipvaf_Cypher25AstBuilder_exitShowAliases($this, $ctx); + break a; + case 309: + oncipvaf_Cypher25AstBuilder_exitSymbolicNameOrStringParameter($this, $ctx); + break a; + case 310: + oncipvaf_Cypher25AstBuilder_exitCommandNameExpression($this, $ctx); + break a; + case 311: + oncipvaf_Cypher25AstBuilder_exitSymbolicNameOrStringParameterList($this, $ctx); + break a; + case 312: + oncipvaf_Cypher25AstBuilder_exitSymbolicAliasNameList($this, $ctx); + break a; + case 313: + oncipvaf_Cypher25AstBuilder_exitSymbolicAliasNameOrParameter($this, $ctx); + break a; + case 314: + oncipvaf_Cypher25AstBuilder_exitSymbolicAliasName($this, $ctx); + break a; + case 315: + oncipvaf_Cypher25AstBuilder_exitStringListLiteral($this, $ctx); + break a; + case 316: + oncipvaf_Cypher25AstBuilder_exitStringList($this, $ctx); + break a; + case 317: + oncipvaf_Cypher25AstBuilder_exitStringLiteral($this, $ctx); + break a; + case 318: + oncipvaf_Cypher25AstBuilder_exitStringOrParameterExpression($this, $ctx); + break a; + case 319: + oncipvaf_Cypher25AstBuilder_exitStringOrParameter($this, $ctx); + break a; + case 320: + oncipvaf_Cypher25AstBuilder_exitUIntOrIntParameter($this, $ctx); + break a; + case 321: + oncipvaf_Cypher25AstBuilder_exitMapOrParameter($this, $ctx); + break a; + case 322: + oncipvaf_Cypher25AstBuilder_exitMap($this, $ctx); + break a; + case 323: + oncipvaf_Cypher25AstBuilder_exitSymbolicNameString($this, $ctx); + break a; + case 324: + oncipvaf_Cypher25AstBuilder_exitEscapedSymbolicNameString($this, $ctx); + break a; + case 325: + oncipvaf_Cypher25AstBuilder_exitUnescapedSymbolicNameString($this, $ctx); + break a; + case 326: + oncipvaf_Cypher25AstBuilder_exitSymbolicLabelNameString($this, $ctx); + break a; + case 327: + oncipvaf_Cypher25AstBuilder_exitUnescapedLabelSymbolicNameString($this, $ctx); + break a; + case 328: + oncipvaf_Cypher25AstBuilder_exitUnescapedLabelSymbolicNameString_($this, $ctx); + break a; + case 329: + oncipvaf_Cypher25AstBuilder_exitEndOfFile($this, $ctx); + break a; + default: + var$2 = new jl_IllegalStateException; + var$3 = $ctx.$getRuleIndex(); + $ctx = jl_StringBuilder__init_(); + jl_StringBuilder_append0(jl_StringBuilder_append($ctx, $rt_s(5109)), var$3); + jl_IllegalStateException__init_(var$2, jl_StringBuilder_toString($ctx)); + $rt_throw(var$2); + } + oncipvaf_Cypher25AstBuilder_exitStatements($this, $ctx); } - return $re; }, -oncipv_Cypher5Parser_insertNodeLabelExpression = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$InsertNodeLabelExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 172, 86); +oncipvaf_LiteralBuilder = $rt_classWithoutFields(0), +oncipvaf_LabelExpressionBuilder0 = $rt_classWithoutFields(0), +oncipvaf_LabelExpressionBuilder_exitLabelExpression1 = ($this, $ctx) => { + let var$2, var$3, $isLabel, var$5, var$6, var$7; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1460); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 47 && $_la != 139) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1461); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1466); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 47 && $_la != 144)) { - oavr_Recognizer_setState($this, 1462); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 47 && $_la != 144) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1463); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1468); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($ctx instanceof oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext) + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelExpression4Context), 0)).$ast0; + else if ($ctx instanceof oncipv_Cypher25Parser$AnyLabelContext) { + var$3 = $ctx; + var$2 = new oncil_LabelExpression$Wildcard; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Wildcard__init_(var$2, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + } else { + if (!($ctx instanceof oncipv_Cypher25Parser$LabelNameContext)) { + if (!($ctx instanceof oncipv_Cypher25Parser$DynamicLabelContext)) { + var$3 = new jl_IllegalStateException; + jl_Throwable__init_(var$3, $rt_s(5110)); + $rt_throw(var$3); } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$3 = $ctx; + $isLabel = oncipvaf_Cypher25AstBuilder_getIsLabel($this, var$3); + switch ($isLabel) { + case 1: + var$2 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression((oncipv_Cypher25Parser$DynamicLabelContext_dynamicAnyAllExpression(var$3)).$ast0), 0); + break a; + case 2: + var$2 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression((oncipv_Cypher25Parser$DynamicLabelContext_dynamicAnyAllExpression(var$3)).$ast0), 0); + break a; + case 3: + var$2 = oncil_LabelExpression$DynamicLeaf__init_((oncipv_Cypher25Parser$DynamicLabelContext_dynamicAnyAllExpression(var$3)).$ast0, 0); + break a; + default: } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_insertRelationshipLabelExpression = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 174, 87); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1469); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 47 && $_la != 139) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1470); - oncipv_Cypher5Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = $ctx; + $isLabel = oncipvaf_Cypher25AstBuilder_getIsLabel($this, var$3); + switch ($isLabel) { + case 1: + var$2 = new oncil_LabelExpression$Leaf; + var$5 = new oncie_LabelName; + var$6 = (oncipv_Cypher25Parser$LabelNameContext_symbolicNameString(var$3)).$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelName__init_0(var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + oncil_LabelExpression$Leaf__init_(var$2, var$5, 0); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_expression = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 176, 88); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1472); - oncipv_Cypher5Parser_expression11($this); - oavr_Recognizer_setState($this, 1477); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 190) { - oavr_Recognizer_setState($this, 1473); - oavr_Parser_match($this, 190); - oavr_Recognizer_setState($this, 1474); - oncipv_Cypher5Parser_expression11($this); - oavr_Recognizer_setState($this, 1479); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + case 2: + var$2 = new oncil_LabelExpression$Leaf; + var$7 = new oncie_RelTypeName; + var$5 = (oncipv_Cypher25Parser$LabelNameContext_symbolicNameString(var$3)).$ast0; + oncipau_Util$_$callClinit(); + oncie_RelTypeName__init_(var$7, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + oncil_LabelExpression$Leaf__init_(var$2, var$7, 0); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_expression11 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression11Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 178, 89); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1480); - oncipv_Cypher5Parser_expression10($this); - oavr_Recognizer_setState($this, 1485); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 305) { - oavr_Recognizer_setState($this, 1481); - oavr_Parser_match($this, 305); - oavr_Recognizer_setState($this, 1482); - oncipv_Cypher5Parser_expression10($this); - oavr_Recognizer_setState($this, 1487); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + case 3: + var$2 = new oncil_LabelExpression$Leaf; + var$7 = new oncie_LabelOrRelTypeName; + var$5 = (oncipv_Cypher25Parser$LabelNameContext_symbolicNameString(var$3)).$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelOrRelTypeName__init_(var$7, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + oncil_LabelExpression$Leaf__init_(var$2, var$7, 0); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_expression10 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression10Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 180, 90); +oncipvaf_LabelExpressionBuilder_exitLabelExpression1Is = ($this, $ctx) => { + let $parent, $parent_0, $isLabel, var$5, var$6, var$7; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1488); - oncipv_Cypher5Parser_expression9($this); - oavr_Recognizer_setState($this, 1493); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 20) { - oavr_Recognizer_setState($this, 1489); - oavr_Parser_match($this, 20); - oavr_Recognizer_setState($this, 1490); - oncipv_Cypher5Parser_expression9($this); - oavr_Recognizer_setState($this, 1495); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($ctx instanceof oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext) + $parent = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelExpression4IsContext), 0)).$ast0; + else if ($ctx instanceof oncipv_Cypher25Parser$AnyLabelIsContext) { + $parent_0 = $ctx; + $parent = new oncil_LabelExpression$Wildcard; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Wildcard__init_($parent, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent_0)); + } else { + if (!($ctx instanceof oncipv_Cypher25Parser$LabelNameIsContext)) { + if (!($ctx instanceof oncipv_Cypher25Parser$DynamicLabelIsContext)) { + $parent_0 = new jl_IllegalStateException; + jl_Throwable__init_($parent_0, $rt_s(5135)); + $rt_throw($parent_0); } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_expression9 = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression9Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 182, 91); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1499); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 135, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1496); - oavr_Parser_match($this, 179); - } - oavr_Recognizer_setState($this, 1501); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 135, $this.$_ctx); - } - oavr_Recognizer_setState($this, 1502); - oncipv_Cypher5Parser_expression8($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + $parent_0 = $ctx; + $parent = $parent_0.$parent; + $isLabel = 0; + while (!$isLabel) { + if ($parent !== null && $parent.$getRuleIndex() != 100) { + if ($parent.$getRuleIndex() == 58) + $isLabel = 1; + else if ($parent.$getRuleIndex() == 70) + $isLabel = 2; + else + $parent = $parent.$parent; + } else + $isLabel = 3; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + switch ($isLabel) { + case 1: + $parent = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression((oncipv_Cypher25Parser$DynamicLabelIsContext_dynamicAnyAllExpression($parent_0)).$ast0), 1); + break a; + case 2: + $parent = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression((oncipv_Cypher25Parser$DynamicLabelIsContext_dynamicAnyAllExpression($parent_0)).$ast0), 1); + break a; + case 3: + $parent = oncil_LabelExpression$DynamicLeaf__init_((oncipv_Cypher25Parser$DynamicLabelIsContext_dynamicAnyAllExpression($parent_0)).$ast0, 1); + break a; + default: } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_expression8 = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression8Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 184, 92); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1504); - oncipv_Cypher5Parser_expression7($this); - oavr_Recognizer_setState($this, 1509); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - var$3 = $_la - 100 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17039361, 2164326400)), Long_ZERO)) && $_la != 164) - break; - oavr_Recognizer_setState($this, 1505); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$3 = $_la - 100 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17039361, 2164326400)), Long_ZERO)) && $_la != 164) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1506); - oncipv_Cypher5Parser_expression7($this); - oavr_Recognizer_setState($this, 1511); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + var$5 = $ctx; + $parent_0 = var$5.$parent; + $isLabel = 0; + while (!$isLabel) { + if ($parent_0 !== null && $parent_0.$getRuleIndex() != 100) { + if ($parent_0.$getRuleIndex() == 58) + $isLabel = 1; + else if ($parent_0.$getRuleIndex() == 70) + $isLabel = 2; + else + $parent_0 = $parent_0.$parent; + } else + $isLabel = 3; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_expression7 = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression7Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 186, 93); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1512); - oncipv_Cypher5Parser_expression6($this); - oavr_Recognizer_setState($this, 1514); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 48 && $_la != 57) { - var$3 = $_la - 99 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(1, 257)), Long_ZERO)) && $_la != 222 && $_la != 260) - break e; - } - oavr_Recognizer_setState($this, 1513); - oncipv_Cypher5Parser_comparisonExpression6($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($isLabel) { + case 1: + $parent = new oncil_LabelExpression$Leaf; + var$6 = new oncie_LabelName; + var$7 = (oncipv_Cypher25Parser$LabelNameIsContext_symbolicLabelNameString(var$5)).$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelName__init_0(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); + oncil_LabelExpression$Leaf__init_($parent, var$6, 1); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_comparisonExpression6 = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher5Parser$ComparisonExpression6Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 188, 94); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1548); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 144, $this.$_ctx)) { - case 1: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$StringAndListComparisonContext; - var$2 = $re; - oncipv_Cypher5Parser$StringAndListComparisonContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1523); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 57: - var$2 = $re; - oavr_Recognizer_setState($this, 1521); - oavr_Parser_match($this, 57); - break f; - case 99: - var$2 = $re; - oavr_Recognizer_setState($this, 1519); - oavr_Parser_match($this, 99); - oavr_Recognizer_setState($this, 1520); - oavr_Parser_match($this, 302); - break f; - case 131: - var$2 = $re; - oavr_Recognizer_setState($this, 1522); - oavr_Parser_match($this, 131); - break f; - case 222: - var$2 = $re; - oavr_Recognizer_setState($this, 1516); - oavr_Parser_match($this, 222); - break f; - case 260: - var$2 = $re; - oavr_Recognizer_setState($this, 1517); - oavr_Parser_match($this, 260); - oavr_Recognizer_setState($this, 1518); - oavr_Parser_match($this, 302); - break f; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1525); - oncipv_Cypher5Parser_expression6($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$NullComparisonContext; - var$2 = $re; - oncipv_Cypher5Parser$NullComparisonContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1526); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 1528); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { - var$2 = $re; - oavr_Recognizer_setState($this, 1527); - oavr_Parser_match($this, 179); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1530); - oavr_Parser_match($this, 182); - break e; - case 3: - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$TypeComparisonContext; - var$2 = $re; - oncipv_Cypher5Parser$TypeComparisonContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1537); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 48: - var$2 = $re; - oavr_Recognizer_setState($this, 1536); - oavr_Parser_match($this, 48); - break g; - case 139: - var$2 = $re; - oavr_Recognizer_setState($this, 1531); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 1533); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { - var$2 = $re; - oavr_Recognizer_setState($this, 1532); - oavr_Parser_match($this, 179); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1535); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 48) { - var$2 = $re; - if ($_la != 283) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break g; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break g; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1539); - oncipv_Cypher5Parser_type($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$NormalFormComparisonContext; - var$2 = $re; - oncipv_Cypher5Parser$NormalFormComparisonContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1540); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 1542); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { - var$2 = $re; - oavr_Recognizer_setState($this, 1541); - oavr_Parser_match($this, 179); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1545); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 168 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 1544); - oncipv_Cypher5Parser_normalForm($this); - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 1547); - oavr_Parser_match($this, 178); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + case 2: + $parent = new oncil_LabelExpression$Leaf; + $parent_0 = new oncie_RelTypeName; + var$6 = (oncipv_Cypher25Parser$LabelNameIsContext_symbolicLabelNameString(var$5)).$ast0; + oncipau_Util$_$callClinit(); + oncie_RelTypeName__init_($parent_0, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); + oncil_LabelExpression$Leaf__init_($parent, $parent_0, 1); break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case 3: + $parent = new oncil_LabelExpression$Leaf; + $parent_0 = new oncie_LabelOrRelTypeName; + var$6 = (oncipv_Cypher25Parser$LabelNameIsContext_symbolicLabelNameString(var$5)).$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelOrRelTypeName__init_($parent_0, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); + oncil_LabelExpression$Leaf__init_($parent, $parent_0, 1); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; } - return $re; + $ctx.$ast0 = $parent; }, -oncipv_Cypher5Parser_normalForm = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NormalFormContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 190, 95); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1550); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 168 | 0; - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else - $this.$_errHandler.$recoverInline($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_DdlBuilder = $rt_classWithoutFields(0), +oncipvaf_DdlBuilder_exitAlterUser = ($this, $ctx) => { + let $username, $nativePassAttributes, $suspended, $nativeAuthAttr, $removeHome, $homeDatabaseAction, $userOptions, $nativeAuth, $removeAuth, $setAuth; + $username = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0; + $nativePassAttributes = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0); + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + $nativePassAttributes = sci_List_foldLeft($nativePassAttributes, sci_Nil$_MODULE$, new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1); + $nativePassAttributes = sci_List_foldLeft(sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordChangeRequiredContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2), $nativePassAttributes, new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3); + $suspended = new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4; + onciu_InputPosition$_$callClinit(); + $nativeAuthAttr = $nativePassAttributes.$sortBy($suspended, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); + oncipau_Util$_$callClinit(); + $suspended = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterUserContext_userStatus($ctx), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5); + $removeHome = (oncip_AstRuleCtx_getTokens($ctx, 122)).$isEmpty() ? s_None$_MODULE$ : s_Some__init_(oncia_RemoveHomeDatabaseAction$_MODULE$); + $nativePassAttributes = oncipau_Util$_MODULE$; + $homeDatabaseAction = oncipv_Cypher25Parser$AlterUserContext_homeDatabase($ctx); + $userOptions = new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6; + $userOptions.$_0455 = $removeHome; + $userOptions = oncia_UserOptions__init_($suspended, oncipau_Util$_astOptFromList($nativePassAttributes, $homeDatabaseAction, $userOptions)); + if (!sc_IterableOnceOps_nonEmpty$($nativeAuthAttr)) + $nativeAuth = s_None$_MODULE$; + else { + $nativeAuth = new s_Some; + $suspended = new oncia_Auth; + oncia_AdministrationCommand$_$callClinit(); + oncia_Auth__init_($suspended, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), $nativeAuthAttr, ($nativeAuthAttr.$head()).$position()); + s_Some__init_0($nativeAuth, $suspended); + } + $removeAuth = oncia_RemoveAuth__init_((oncip_AstRuleCtx_getTokens($ctx, 18)).$isEmpty() ? 0 : 1, sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$RemoveNamedProviderContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7)); + $setAuth = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SetAuthClauseContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8); + $ctx.$ast0 = oncia_AlterUser__init_($username, $userOptions, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1, $setAuth, $nativeAuth, $removeAuth, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); +}, +oncipvaf_DdlCreateBuilder = $rt_classWithoutFields(0), +oncipvaf_DdlCreateBuilder_exitCreateConstraint = ($this, $ctx) => { + let $parent, $nodePattern, $isNode, $constraintName, $existsDo, $options, $cT, $propertyType, $variable, $properties, $relType, $variable_0, $label; + $parent = $ctx.$parent; + $nodePattern = oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx); + $isNode = $nodePattern === null ? 0 : 1; + oncipau_Util$_$callClinit(); + $constraintName = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)); + $existsDo = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE($parent) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1); + $options = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_00); + $cT = oncipv_Cypher25Parser$CreateConstraintContext_constraintType($ctx); + $propertyType = $cT.$ast0; + if ($propertyType === null) + $rt_throw(s_MatchError__init_($propertyType)); + $variable = s_Tuple2__init_($propertyType.$_1(), $propertyType.$_2()); + $properties = $variable.$_10; + $propertyType = $variable.$_20; + if ($isNode) { + $nodePattern = $nodePattern.$ast0; + if ($nodePattern === null) + $rt_throw(s_MatchError__init_($nodePattern)); + $relType = s_Tuple2__init_($nodePattern.$_1(), $nodePattern.$_2()); + $variable_0 = $relType.$_10; + $label = $relType.$_20; + if ($cT instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createNodePropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties.$apply1(0), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else if ($cT instanceof oncipv_Cypher25Parser$ConstraintTypedContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createNodePropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties.$apply1(0), $propertyType.$get1(), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else if ($cT instanceof oncipv_Cypher25Parser$ConstraintIsUniqueContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createNodePropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties, $constraintName, $existsDo, $options, 0, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else { + if (!($cT instanceof oncipv_Cypher25Parser$ConstraintKeyContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5111)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createNodeKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties, $constraintName, $existsDo, $options, 0, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } + } else { + $nodePattern = (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx)).$ast0; + if ($nodePattern === null) + $rt_throw(s_MatchError__init_($nodePattern)); + $variable_0 = s_Tuple2__init_($nodePattern.$_1(), $nodePattern.$_2()); + $variable = $variable_0.$_10; + $relType = $variable_0.$_20; + if ($cT instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable, $relType, $properties.$apply1(0), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else if ($cT instanceof oncipv_Cypher25Parser$ConstraintTypedContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable, $relType, $properties.$apply1(0), $propertyType.$get1(), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else if ($cT instanceof oncipv_Cypher25Parser$ConstraintIsUniqueContext) { + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable, $relType, $properties, $constraintName, $existsDo, $options, 0, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); + } else { + if (!($cT instanceof oncipv_Cypher25Parser$ConstraintKeyContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5112)); + $rt_throw($ctx); + } + oncia_CreateConstraint$_$callClinit(); + $nodePattern = oncia_CreateConstraint$_createRelationshipKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable, $relType, $properties, $constraintName, $existsDo, $options, 0, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = $nodePattern; }, -oncipv_Cypher5Parser_expression6 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression6Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 192, 96); +oncipvaf_DdlCreateBuilder_exitCreateIndex_ = ($this, $ctx) => { + let $indexName, $grandparent, $parent, $existsDo, $options, $nodePattern, $relPattern, $isNode, $propertyList, $labelOrRelType, $relType, $variable, $token, $label; + $indexName = $ctx.$parent; + $grandparent = $indexName.$parent; + $parent = $indexName; + oncipau_Util$_$callClinit(); + $existsDo = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE($grandparent) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1); + $options = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0); + $indexName = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)); + $nodePattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNodePatternContext), 0); + $relPattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandRelPatternContext), 0); + $isNode = $nodePattern === null ? 0 : 1; + $propertyList = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0.$toList(); + $labelOrRelType = !$isNode ? $relPattern.$ast0 : $nodePattern.$ast0; + if ($labelOrRelType === null) + $rt_throw(s_MatchError__init_($labelOrRelType)); a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1552); - oncipv_Cypher5Parser_expression5($this); - oavr_Recognizer_setState($this, 1557); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 85 && $_la != 161 && $_la != 199)) { - oavr_Recognizer_setState($this, 1553); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 85 && $_la != 161 && $_la != 199) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1554); - oncipv_Cypher5Parser_expression5($this); - oavr_Recognizer_setState($this, 1559); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $relType = s_Tuple2__init_($labelOrRelType.$_1(), $labelOrRelType.$_2()); + $variable = $relType.$_10; + $labelOrRelType = $relType.$_20; + $token = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $parent, 0)).$getSymbol()).$getType0(); + switch ($token) { + case 128: + case 209: + if (!$isNode) { + $relType = $labelOrRelType; + $parent = oncia_CreateIndex$_createRangeRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, $token != 128 ? 0 : 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + $label = $labelOrRelType; + $parent = oncia_CreateIndex$_createRangeNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, $token != 128 ? 0 : 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; + case 195: + if (!$isNode) { + $relType = $labelOrRelType; + $parent = oncia_CreateIndex$_createPointRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_expression5 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression5Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 194, 97); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1560); - oncipv_Cypher5Parser_expression4($this); - oavr_Recognizer_setState($this, 1565); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 82 && $_la != 162 && $_la != 271)) { - oavr_Recognizer_setState($this, 1561); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 82 && $_la != 162 && $_la != 271) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1562); - oncipv_Cypher5Parser_expression4($this); - oavr_Recognizer_setState($this, 1567); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $label = $labelOrRelType; + $parent = oncia_CreateIndex$_createPointNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; + case 262: + if (!$isNode) { + $relType = $labelOrRelType; + $parent = oncia_CreateIndex$_createTextRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + $label = $labelOrRelType; + $parent = oncia_CreateIndex$_createTextNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; + case 290: + if (!$isNode) { + $relType = $labelOrRelType; + $parent = oncia_CreateIndex$_createVectorRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $label = $labelOrRelType; + $parent = oncia_CreateIndex$_createVectorNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($token))); } - return $_localctx; + $ctx.$ast0 = $parent; }, -oncipv_Cypher5Parser_expression4 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression4Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 196, 98); +oncipvaf_DdlShowBuilder0 = $rt_classWithoutFields(0), +oncipvaf_DdlShowBuilder_decomposeYield0 = ($this, $yieldOrWhere) => { + let $optR, $y, $yieldedItems, $optY, $yieldAll, $x$5, $where; + if (!s_Option_isDefined($yieldOrWhere)) { + $optR = new oncipvaf_DdlShowBuilder$ShowWrapper0; + $y = s_None$_MODULE$; + $yieldedItems = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$20(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0); + $optY = s_None$_MODULE$; + oncipvaf_DdlShowBuilder$ShowWrapper__init_0($optR, $y, $yieldedItems, 0, $optY, $optY, $optY, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$70(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0)); + return $optR; + } + $yieldOrWhere = $yieldOrWhere.$get1(); + if ($yieldOrWhere instanceof su_Left) { + $optR = $yieldOrWhere.$value6; + if ($optR !== null) { + $y = $optR.$_1(); + $optR = $optR.$_2(); + s_Option$_$callClinit(); + $yieldAll = s_Option_exists(s_Option$_apply(s_Option$_MODULE$, $y), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0); + $yieldedItems = s_Option_getOrElse(s_Option_map(s_Option$_apply(s_Option$_MODULE$, $y), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2); + $optY = s_Tuple3__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems, s_Some__init_($y)); + $yieldAll = sr_BoxesRunTime_unboxToBoolean($optY.$_11); + $yieldedItems = $optY.$_21; + $optY = $optY.$_30; + $yieldOrWhere = s_Tuple3__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems, $optY); + $yieldAll = sr_BoxesRunTime_unboxToBoolean($yieldOrWhere.$_11); + $yieldedItems = $yieldOrWhere.$_21; + $optY = $yieldOrWhere.$_30; + $x$5 = s_None$_MODULE$; + return oncipvaf_DdlShowBuilder$ShowWrapper__init_1($x$5, $yieldedItems, $yieldAll, $optY, $optR, $x$5, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$70(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0)); + } + } + if (!($yieldOrWhere instanceof su_Right)) + $rt_throw(s_MatchError__init_($yieldOrWhere)); + $where = $yieldOrWhere.$value7; + $yieldOrWhere = new oncipvaf_DdlShowBuilder$ShowWrapper0; + $optR = s_Some__init_($where); + $y = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$20(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0); + $optY = s_None$_MODULE$; + oncipvaf_DdlShowBuilder$ShowWrapper__init_0($yieldOrWhere, $optR, $y, 0, $optY, $optY, $optY, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$70(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0)); + return $yieldOrWhere; +}, +oncipvaf_DdlShowBuilder_pickShowConstraintType = ($this, $enitityTypeContext, $nodeType, $relType, $allType) => { + let var$5; + oncipau_Util$_$callClinit(); + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $enitityTypeContext); + $enitityTypeContext = new oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0; + $enitityTypeContext.$_0251 = $this; + var$5 = s_Option_getOrElse(var$5, $enitityTypeContext); + if (jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Node($this), var$5)) + return $nodeType; + if (!jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Rel($this), var$5)) + return $allType; + return $relType; +}, +oncipvaf_DdlPrivilegeBuilder = $rt_classWithoutFields(0), +oncipvaf_DdlPrivilegeBuilder_exitAllPrivilege = ($this, $ctx) => { + let $scope, $scope_0, var$4, var$5; + $scope = oncipv_Cypher25Parser$AllPrivilegeContext_allPrivilegeTarget($ctx); + if ($scope instanceof oncipv_Cypher25Parser$DefaultTargetContext) { + if (oncipv_Cypher25Parser$DefaultTargetContext_DATABASE($scope) === null) { + $scope = new oncia_HomeGraphScope; + oncipau_Util$_$callClinit(); + oncia_HomeGraphScope__init_($scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $scope = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, oncia_GraphPrivilege__init_0(oncia_AllGraphAction$_MODULE$, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$); + } else { + $scope = new oncia_HomeDatabaseScope; + oncipau_Util$_$callClinit(); + oncia_HomeDatabaseScope__init_($scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $scope = oncipvaf_DdlPrivilegeBuilder_allDbQualifier($this, oncia_DatabasePrivilege__init_0(oncia_AllDatabaseAction$_MODULE$, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$); + } + } else if ($scope instanceof oncipv_Cypher25Parser$DatabaseVariableTargetContext) { + $scope = $scope; + if (oncip_AstRuleCtx_getToken($scope, 265, 0) !== null) { + $scope_0 = new oncia_AllDatabasesScope; + oncipau_Util$_$callClinit(); + oncia_AllDatabasesScope__init_($scope_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + $scope_0 = new oncia_NamedDatabasesScope; + $scope = (oavr_ParserRuleContext_getRuleContext($scope, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_NamedDatabasesScope__init_($scope_0, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $scope = new oncia_DatabasePrivilege; + var$4 = oncia_AllDatabaseAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_DatabasePrivilege__init_($scope, var$4, $scope_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $scope = oncipvaf_DdlPrivilegeBuilder_allDbQualifier($this, $scope, s_None$_MODULE$); + } else if (!($scope instanceof oncipv_Cypher25Parser$GraphVariableTargetContext)) { + if (!($scope instanceof oncipv_Cypher25Parser$DBMSTargetContext)) { + $scope = new jl_IllegalStateException; + jl_Throwable__init_($scope, $rt_s(5114)); + $rt_throw($scope); + } + var$4 = new oncia_DbmsPrivilege; + $scope = oncia_AllDbmsAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_DbmsPrivilege__init_0(var$4, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $scope = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, var$4, s_None$_MODULE$); + } else { + $scope = $scope; + if (oncip_AstRuleCtx_getToken($scope, 265, 0) !== null) { + $scope_0 = new oncia_AllGraphsScope; + oncipau_Util$_$callClinit(); + oncia_AllGraphsScope__init_($scope_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + $scope_0 = new oncia_NamedGraphsScope; + $scope = (oavr_ParserRuleContext_getRuleContext($scope, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_NamedGraphsScope__init_($scope_0, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + var$5 = new oncia_GraphPrivilege; + $scope = oncia_AllGraphAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$5, $scope, $scope_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $scope = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, var$5, s_None$_MODULE$); + } + $ctx.$ast0 = $scope; +}, +oncipvaf_DdlPrivilegeBuilder_exitDbmsPrivilege = ($this, $ctx) => { + let $action, $qualifier, var$4, $action_0; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1568); - oncipv_Cypher5Parser_expression3($this); - oavr_Recognizer_setState($this, 1573); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 203) { - oavr_Recognizer_setState($this, 1569); - oavr_Parser_match($this, 203); - oavr_Recognizer_setState($this, 1570); - oncipv_Cypher5Parser_expression3($this); - oavr_Recognizer_setState($this, 1575); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + oncipau_Util$_$callClinit(); + $action = oncip_AstRuleCtx_getChild($ctx, 0); + if ($action instanceof oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext) + $qualifier = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext), 0)).$ast0; + else { + if (!$rt_isInstance($action, oavrt_TerminalNode)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + } + switch (($action.$getSymbol()).$getType0()) { + case 15: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllAliasManagementActions$_MODULE$); + break a; + case 19: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 15: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AlterAliasAction$_MODULE$); + break a; + case 61: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AlterDatabaseAction$_MODULE$); + break a; + case 285: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AlterUserAction$_MODULE$); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + case 26: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 200: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AssignPrivilegeAction$_MODULE$); + break a; + case 229: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AssignRoleAction$_MODULE$); + break a; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + case 49: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_CompositeDatabaseManagementActions$_MODULE$); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case 61: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllDatabaseManagementActions$_MODULE$); + break a; + case 125: + $qualifier = s_Tuple2__init_(oncia_ImpersonateUserAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserQualifierContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0)); + break a; + case 200: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllPrivilegeActions$_MODULE$); + break a; + case 215: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 229: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_RenameRoleAction$_MODULE$); + break a; + case 285: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_RenameUserAction$_MODULE$); + break a; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + case 229: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllRoleActions$_MODULE$); + break a; + case 242: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ServerManagementAction$_MODULE$); + break a; + case 285: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllUserActions$_MODULE$); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if ($qualifier === null) + $rt_throw(s_MatchError__init_($qualifier)); + $action = $qualifier.$_1(); + $qualifier = $qualifier.$_2(); + var$4 = s_Tuple2__init_($action, $qualifier); + $action_0 = var$4.$_10; + $qualifier = var$4.$_20; + $ctx.$ast0 = s_Tuple3__init_(oncia_DbmsPrivilege__init_($action_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$, $qualifier); }, -oncipv_Cypher5Parser_expression3 = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression3Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 198, 99); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1579); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 148, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1577); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 161 && $_la != 199) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1578); - oncipv_Cypher5Parser_expression2($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1576); - oncipv_Cypher5Parser_expression2($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_DdlPrivilegeBuilder_exitShowPrivilege = ($this, $ctx) => { + let $p, $action, $action_0, $qualifier, $scope, $action_1; + oncipau_Util$_$callClinit(); + $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncipv_Cypher25Parser$ShowPrivilegeContext_databaseScope($ctx) !== null) { + $action = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + if ($action instanceof oncipv_Cypher25Parser$ConstraintTokenContext) + $action = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_ShowConstraintAction$_MODULE$); + else if ($action instanceof oncipv_Cypher25Parser$IndexTokenContext) + $action = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_ShowIndexAction$_MODULE$); + else { + if (!($action instanceof oncipv_Cypher25Parser$TransactionTokenContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); + } + $action = s_Tuple2__init_(oncia_ShowTransactionAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserQualifierContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0)); + } + if ($action === null) + $rt_throw(s_MatchError__init_($action)); + $action = s_Tuple2__init_($action.$_10, $action.$_20); + $action_0 = $action.$_10; + $qualifier = $action.$_20; + $scope = (oncipv_Cypher25Parser$ShowPrivilegeContext_databaseScope($ctx)).$ast0; + $action_1 = s_Tuple3__init_(oncia_DatabasePrivilege__init_0($action_0, $scope, $p), s_None$_MODULE$, $qualifier); + } else { + a: { + $action = oncip_AstRuleCtx_getChild($ctx, 1); + if (!$rt_isInstance($action, oavrt_TerminalNode)) { + if ($rt_isInstance($action, oavrt_RuleNode) && $action.$getRuleIndex() == 172) { + $qualifier = s_Tuple2__init_(oncia_ShowSettingAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SettingQualifierContext), 0)).$ast0); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + switch (($action.$getSymbol()).$getType0()) { + case 15: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowAliasAction$_MODULE$); + break a; + case 200: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowPrivilegeAction$_MODULE$); + break a; + case 229: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowRoleAction$_MODULE$); + break a; + case 242: + case 243: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowServerAction$_MODULE$); + break a; + case 285: + $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowUserAction$_MODULE$); + break a; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if ($qualifier === null) + $rt_throw(s_MatchError__init_($qualifier)); + $action_1 = s_Tuple2__init_($qualifier.$_10, $qualifier.$_20); + $action = $action_1.$_10; + $qualifier = $action_1.$_20; + $action_1 = s_Tuple3__init_(oncia_DbmsPrivilege__init_($action, $p), s_None$_MODULE$, $qualifier); } - return $_localctx; + $ctx.$ast0 = $action_1; }, -oncipv_Cypher5Parser_expression2 = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression2Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 200, 100); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1581); - oncipv_Cypher5Parser_expression1($this); - oavr_Recognizer_setState($this, 1585); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 149, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1582); - oncipv_Cypher5Parser_postFix($this); - } - oavr_Recognizer_setState($this, 1587); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 149, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_DdlPrivilegeBuilder_exitGraphQualifier0 = ($this, $ctx) => { + let $token, $strings, $graphToken, $variable, $qualifiers, var$7, var$8, $isAll; + $token = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierTokenContext), 0); + if ($token === null) { + if (oncip_AstRuleCtx_getToken($ctx, 108, 0) === null) { + $strings = new sci_$colon$colon; + $graphToken = new oncia_ElementsAllQualifier; + oncipau_Util$_$callClinit(); + oncia_ElementsAllQualifier__init_($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); + } else { + oncipau_Util$_$callClinit(); + $variable = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)); + if ((oncipv_Cypher25Parser$GraphQualifierContext_symbolicNameString($ctx)).$isEmpty()) + $qualifiers = sci_$colon$colon__init_(oncia_LabelAllQualifier__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$); + else { + $graphToken = oncipau_Util$_MODULE$; + $token = oncipv_Cypher25Parser$GraphQualifierContext_symbolicNameString($ctx); + sr_ClassTag$_$callClinit(); + $token = oncipau_Util$_astSeq($graphToken, $token, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); + $graphToken = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_30; + $graphToken.$_0565 = $ctx; + $qualifiers = sc_IterableOnceOps_toList$(sci_ArraySeq_map($token, $graphToken)); + } + $strings = new sci_$colon$colon; + var$7 = new oncia_PatternQualifier; + $graphToken = oncipau_Util$_MODULE$; + var$8 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); + $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_40; + $token.$_01048 = $ctx; + oncia_PatternQualifier__init_(var$7, $qualifiers, $variable, oncipau_Util$_astOpt0($graphToken, var$8, $token)); + sci_$colon$colon__init_0($strings, var$7, sci_Nil$_MODULE$); + } + } else { + $isAll = oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1; + $strings = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NonEmptyStringListContext), 0); + $graphToken = $token.$ast0; + if (jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$RelGraphToken($this), $graphToken)) { + if (!$isAll) { + $graphToken = $strings.$ast0; + $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_00; + $token.$_0977 = $ctx; + $strings = ($graphToken.$map($token)).$toList(); + } else { + $strings = new sci_$colon$colon; + $token = new oncia_RelationshipAllQualifier; + oncipau_Util$_$callClinit(); + oncia_RelationshipAllQualifier__init_($token, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + sci_$colon$colon__init_0($strings, $token, sci_Nil$_MODULE$); + } + } else if (jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken($this), $graphToken)) { + if (!$isAll) { + $graphToken = $strings.$ast0; + $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_10; + $token.$_0330 = $ctx; + $strings = ($graphToken.$map($token)).$toList(); + } else { + $strings = new sci_$colon$colon; + $graphToken = new oncia_LabelAllQualifier; + oncipau_Util$_$callClinit(); + oncia_LabelAllQualifier__init_0($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); + } + } else { + if (!jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken($this), $graphToken)) + $rt_throw(s_MatchError__init_($graphToken)); + if (!$isAll) { + $graphToken = $strings.$ast0; + $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_20; + $token.$_01082 = $ctx; + $strings = ($graphToken.$map($token)).$toList(); + } else { + $strings = new sci_$colon$colon; + $graphToken = new oncia_ElementsAllQualifier; + oncipau_Util$_$callClinit(); + oncia_ElementsAllQualifier__init_($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = $strings; }, -oncipv_Cypher5Parser_postFix = $this => { - let $_localctx, var$2, $re, $_la, var$5, $$je; - $_localctx = new oncipv_Cypher5Parser$PostFixContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 202, 101); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1603); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 152, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$PropertyPostfixContext; - var$2 = $re; - oncipv_Cypher5Parser$PropertyPostfixContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1588); - oncipv_Cypher5Parser_property($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$LabelPostfixContext; - var$2 = $re; - oncipv_Cypher5Parser$LabelPostfixContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1589); - oncipv_Cypher5Parser_labelExpression($this); - break e; - case 3: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$IndexPostfixContext; - var$2 = $re; - oncipv_Cypher5Parser$IndexPostfixContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1590); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 1591); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1592); - oavr_Parser_match($this, 216); - break e; - case 4: - f: { - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$RangePostfixContext; - var$2 = $re; - oncipv_Cypher5Parser$RangePostfixContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1594); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 1596); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO)) - break g; - } - var$2 = $re; - var$5 = $_la - 64 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4291035135, 4022337519)), Long_ZERO)) - break g; - } - var$2 = $re; - var$5 = $_la - 128 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4025286655, 4294967267)), Long_ZERO)) - break g; - } - var$2 = $re; - var$5 = $_la - 192 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(3166697215, 4286545919)), Long_ZERO)) - break g; - } - var$2 = $re; - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break f; - var$2 = $re; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break f; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1595); - $re.$fromExp0 = oncipv_Cypher5Parser_expression($this); - } - h: { - i: { - var$2 = $re; - oavr_Recognizer_setState($this, 1598); - oavr_Parser_match($this, 84); - oavr_Recognizer_setState($this, 1600); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO)) - break i; - } - var$2 = $re; - var$5 = $_la - 64 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4291035135, 4022337519)), Long_ZERO)) - break i; - } - var$2 = $re; - var$5 = $_la - 128 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(4025286655, 4294967267)), Long_ZERO)) - break i; - } - var$2 = $re; - var$5 = $_la - 192 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(3166697215, 4286545919)), Long_ZERO)) - break i; - } - var$2 = $re; - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break h; - var$2 = $re; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break h; - } - var$2 = $re; - oavr_Recognizer_setState($this, 1599); - $re.$toExp0 = oncipv_Cypher5Parser_expression($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1602); - oavr_Parser_match($this, 216); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_DdlPrivilegeBuilder_withQualifier2 = ($this, $action) => { + let var$2, var$3, var$4; + var$2 = new s_Tuple2; + var$3 = new sci_$colon$colon; + var$4 = new oncia_AllDatabasesQualifier; + onciu_InputPosition$_$callClinit(); + oncia_AllDatabasesQualifier__init_(var$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$3, var$4, sci_Nil$_MODULE$); + s_Tuple2__init_0(var$2, $action, var$3); + return var$2; +}, +oncipvaf_DdlPrivilegeBuilder_withQualifier = ($this, $action) => { + let var$2, var$3, var$4; + var$2 = new s_Tuple2; + var$3 = new sci_$colon$colon; + var$4 = new oncia_AllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_AllQualifier__init_(var$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$3, var$4, sci_Nil$_MODULE$); + s_Tuple2__init_0(var$2, $action, var$3); + return var$2; +}, +oncipvaf_DdlPrivilegeBuilder_allDbQualifier = ($this, $privilege, $resource) => { + let var$3, var$4, var$5; + var$3 = new s_Tuple3; + var$4 = new sci_$colon$colon; + var$5 = new oncia_AllDatabasesQualifier; + onciu_InputPosition$_$callClinit(); + oncia_AllDatabasesQualifier__init_(var$5, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$4, var$5, sci_Nil$_MODULE$); + s_Tuple3__init_0(var$3, $privilege, $resource, var$4); + return var$3; +}, +oncipvaf_DdlPrivilegeBuilder_allQualifier = ($this, $privilege, $resource) => { + let var$3, var$4, var$5; + var$3 = new s_Tuple3; + var$4 = new sci_$colon$colon; + var$5 = new oncia_AllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_AllQualifier__init_(var$5, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$4, var$5, sci_Nil$_MODULE$); + s_Tuple3__init_0(var$3, $privilege, $resource, var$4); + return var$3; +}, +oncipvaf_DdlPrivilegeBuilder_labelAllQualifier = ($this, $privilege, $resource, $pos) => { + return s_Tuple3__init_($privilege, $resource, sci_$colon$colon__init_(oncia_LabelAllQualifier__init_($pos), sci_Nil$_MODULE$)); +}, +oncipvaf_ExpressionBuilder = $rt_classWithoutFields(0), +oncipvaf_ExpressionBuilder_exitPatternElement0 = ($this, $ctx) => { + let $size, $p, $parts, $relPattern, $i, $part, var$8, $nodePattern, $lhs, $emptyNodePattern; + $size = $ctx.$children0.$size0; + if ($size == 1) { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + return; + } + oncipau_Util$_$callClinit(); + $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + $parts = scm_ArrayDeque__init_0(1); + $relPattern = null; + $i = 0; + while (true) { + if ($i >= $size) { + if ($parts.$length() == 1) + $part = sc_IndexedSeqOps_head$($parts); + else { + $part = new oncie_PathConcatenation; + $p = sci_ArraySeq$_MODULE$; + sr_ClassTag$_$callClinit(); + oncie_PathConcatenation__init_($part, sci_ArraySeq$_unsafeWrapArray($p, scm_ArrayDeque_toArray($parts, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PathFactor)))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $ctx.$ast0 = $part; + return; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; - } - return $re; -}, -oncipv_Cypher5Parser_property = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PropertyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 204, 102); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1605); - oavr_Parser_match($this, 83); - oavr_Recognizer_setState($this, 1606); - oncipv_Cypher5Parser_propertyKeyName($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + var$8 = ju_ArrayList_get($ctx.$children0, $i); + if (var$8 instanceof oncipv_Cypher25Parser$NodePatternContext) { + $nodePattern = var$8.$ast0; + if ($relPattern === null) + scm_ArrayDeque_addOne($parts, $nodePattern); + else { + scm_ArrayDeque_addOne($parts, oncie_RelationshipChain__init_(scm_ArrayDeque_removeLast($parts, 0), $relPattern, $nodePattern, $p)); + $relPattern = null; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + } else if (var$8 instanceof oncipv_Cypher25Parser$RelationshipPatternContext) + $relPattern = var$8.$ast0; + else if (!(var$8 instanceof oncipv_Cypher25Parser$QuantifierContext)) { + if (!(var$8 instanceof oncipv_Cypher25Parser$ParenthesizedPathContext)) + break; + scm_ArrayDeque_addOne($parts, var$8.$ast0); + } else { + $lhs = var$8; + $emptyNodePattern = new oncie_NodePattern; + $part = s_None$_MODULE$; + oncie_NodePattern__init_($emptyNodePattern, $part, $part, $part, $part, $relPattern.$position8); + $part = oncie_PathPatternPart__init_(oncie_RelationshipChain__init_($emptyNodePattern, $relPattern, $emptyNodePattern, $relPattern.$position8)); + scm_ArrayDeque_addOne($parts, oncie_QuantifiedPath$_apply(oncie_QuantifiedPath$_MODULE$, $part, $lhs.$ast0, s_None$_MODULE$, $relPattern.$position8)); + $relPattern = null; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $i = $i + 1 | 0; } - return $_localctx; + $ctx = new jl_IllegalStateException; + $p = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($p); + jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(5115)), var$8); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString($p)); + $rt_throw($ctx); }, -oncipv_Cypher5Parser_dynamicProperty = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DynamicPropertyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 206, 103); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1608); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 1609); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1610); - oavr_Parser_match($this, 216); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_ExpressionBuilder_selectorCount = ($this, $node, $p) => { + let var$3, var$4; + if ($node === null) + return oncie_UnsignedDecimalIntegerLiteral__init_0($rt_s(161), $p); + var$3 = new oncie_UnsignedDecimalIntegerLiteral; + var$4 = $node.$getText(); + oncipau_Util$_$callClinit(); + oncie_UnsignedDecimalIntegerLiteral__init_(var$3, var$4, oncipau_Util$_pos1(oncipau_Util$_MODULE$, $node)); + return var$3; +}, +oncipvaf_ExpressionBuilder_binaryPredicate = ($this, $lhs, $token, $rhs) => { + let var$4, var$5, var$6; + var$4 = ($token.$getSymbol()).$getType0(); + switch (var$4) { + case 96: + var$5 = new oncie_Equals; + var$6 = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_Equals__init_(var$5, $lhs, var$6, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 114: + var$5 = new oncie_GreaterThanOrEqual; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_GreaterThanOrEqual__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 120: + var$5 = new oncie_GreaterThan; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_GreaterThan__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 144: + var$5 = new oncie_LessThanOrEqual; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_LessThanOrEqual__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 152: + var$5 = new oncie_LessThan; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_LessThan__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 159: + var$5 = new oncie_InvalidNotEquals; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_InvalidNotEquals__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + case 160: + var$5 = new oncie_NotEquals; + $rhs = $rhs.$ast0; + oncipau_Util$_$callClinit(); + oncie_NotEquals__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); + return var$5; + default: } - return $_localctx; + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); }, -oncipv_Cypher5Parser_propertyExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PropertyExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 208, 104); +oncipvaf_ExpressionBuilder_stringAndListComparisonExpression0 = ($this, $lhs, $ctx) => { + let $token, $rhs, var$5; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher25Parser$StringAndListComparisonContext) && !($ctx instanceof oncipv_Cypher25Parser$WhenStringOrListContext)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $token = (oncip_AstRuleCtx_getChild($ctx, 0)).$getSymbol(); + $rhs = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; + var$5 = $token.$getType0(); + switch (var$5) { + case 53: + break; + case 95: + return oncie_EndsWith__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); + case 127: + return oncie_In__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); + case 216: + return oncie_RegexMatch__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); + case 254: + return oncie_StartsWith__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$5))); + } + return oncie_Contains__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); +}, +oncipvaf_ExpressionBuilder_nullComparisonExpression0 = ($this, $lhs, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher25Parser$NullComparisonContext) && !($ctx instanceof oncipv_Cypher25Parser$WhenNullContext)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + if (oncipau_Util$_nodeChildType(oncipau_Util$_MODULE$, $ctx, 1) == 175) + return oncie_IsNotNull__init_($lhs, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + return oncie_IsNull__init_($lhs, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_ExpressionBuilder_typeComparisonExpression0 = ($this, $lhs, $ctx) => { + let $cypherType, var$4; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher25Parser$TypeComparisonContext) && !($ctx instanceof oncipv_Cypher25Parser$WhenTypeContext)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $cypherType = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; + var$4 = oncip_AstRuleCtx_getChild($ctx, 1); + if (!$rt_isInstance(var$4, oavrt_TerminalNode) ? 0 : (var$4.$getSymbol()).$getType0() != 175 ? 0 : 1) + return oncia_IsNotTyped__init_($lhs, $cypherType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + return oncia_IsTyped__init_($lhs, $cypherType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0); +}, +oncipvaf_ExpressionBuilder_normalFormComparisonExpression = ($this, $lhs, $nfCtx, $not, $p) => { + let $nf; + oncipau_Util$_$callClinit(); + $nf = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, $nfCtx, new oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_00); + if (!$not) + return oncia_IsNormalized__init_($lhs, $nf, $p); + return oncia_IsNotNormalized__init_($lhs, $nf, $p); +}, +oncipvaf_ExpressionBuilder_subqueryBuilder0 = ($this, $regQuery, $matchMode, $whereClause, $patternList) => { + let $patternParts, $patternPos, $where, $finalMatchMode, var$9, var$10, var$11; + if ($regQuery !== null) + return $regQuery.$ast0; + $patternParts = sci_ArraySeq_map($patternList.$ast0, new oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_00); + $patternPos = oncie_PatternPartWithSelector_position(sc_IndexedSeqOps_head$($patternParts)); + oncipau_Util$_$callClinit(); + $where = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $whereClause); + $regQuery = oncipau_Util$_MODULE$; + $whereClause = new oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_10; + $whereClause.$_0193 = $patternPos; + $finalMatchMode = oncipau_Util$_astOpt0($regQuery, $matchMode, $whereClause); + $whereClause = new oncia_SingleQuery; + $patternList = sci_ArraySeq$_MODULE$; + $regQuery = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncia_Match, 1); + var$10 = var$9.data; + var$11 = new oncia_Match; + $matchMode = oncie_Pattern$ForMatch__init_($patternParts, $patternPos); + s_package$_$callClinit(); + oncia_Match__init_(var$11, 0, $finalMatchMode, $matchMode, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), $where, $patternPos); + var$10[0] = var$11; + $regQuery = sr_ScalaRunTime$_wrapRefArray($regQuery, var$9); + sr_ClassTag$_$callClinit(); + oncia_SingleQuery__init_($whereClause, sci_ArraySeq$_from($patternList, $regQuery, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Match))), $patternPos); + return $whereClause; +}, +oncipvaf_ExpressionBuilder_exitTypeName = ($this, $ctx) => { + let $size, $p, $firstToken, var$5, var$6, var$7, var$8; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1612); - oncipv_Cypher5Parser_expression1($this); - oavr_Recognizer_setState($this, 1614); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 1613); - oncipv_Cypher5Parser_property($this); - oavr_Recognizer_setState($this, 1616); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 83) - continue; - else + $size = ju_ArrayList_size($ctx.$children0); + oncipau_Util$_$callClinit(); + $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + $firstToken = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); + switch ($size) { + case 1: + switch ($firstToken) { + case 21: + var$5 = oncius_AnyType__init_(1, $p); + break a; + case 31: + case 32: + var$5 = oncius_BooleanType__init_(1, $p); + break a; + case 63: + var$5 = oncius_DateType__init_(1, $p); + break a; + case 86: + var$5 = oncius_DurationType__init_(1, $p); + break a; + case 88: + case 218: + var$5 = oncius_RelationshipType__init_(1, $p); + break a; + case 107: + var$5 = oncius_FloatType__init_(1, $p); + break a; + case 133: + case 134: + var$5 = oncius_IntegerType__init_(1, $p); + break a; + case 154: + var$5 = oncius_MapType__init_(1, $p); + break a; + case 169: + case 291: + var$5 = oncius_NodeType__init_(1, $p); + break a; + case 176: + break; + case 178: + var$5 = oncius_NullType__init_($p); + break a; + case 190: + case 191: + var$5 = oncius_PathType__init_(1, $p); + break a; + case 195: + var$5 = oncius_PointType__init_(1, $p); + break a; + case 257: + case 289: + var$5 = oncius_StringType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_NothingType__init_($p); + break a; + case 2: + switch ($firstToken) { + case 21: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 88: + case 218: break; + case 154: + var$5 = oncius_MapType__init_(1, $p); + break a; + case 169: + case 291: + var$5 = oncius_NodeType__init_(1, $p); + break a; + case 288: + var$5 = oncius_AnyType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + var$5 = oncius_RelationshipType__init_(1, $p); + break a; + case 149: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 64: + break; + case 264: + var$5 = oncius_LocalTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$5 = oncius_LocalDateTimeType__init_(1, $p); + break a; + case 205: + break; + case 250: + var$5 = oncius_IntegerType__init_(1, $p); + break a; + case 301: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 64: + break; + case 264: + var$5 = oncius_ZonedTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_ZonedDateTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$5 = oncius_PropertyValueType__init_(1, $p); + break a; + case 3: + switch ($firstToken) { + case 21: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 205: + break; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_PropertyValueType__init_(1, $p); + break a; + case 264: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 295: + break; + case 296: + var$5 = oncius_LocalTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_ZonedTimeType__init_(1, $p); + break a; + case 266: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 295: + break; + case 296: + var$5 = oncius_LocalDateTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_ZonedDateTimeType__init_(1, $p); + break a; + default: } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_dynamicPropertyExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DynamicPropertyExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 210, 105); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1618); - oncipv_Cypher5Parser_expression1($this); - oavr_Recognizer_setState($this, 1619); - oncipv_Cypher5Parser_dynamicProperty($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + case 4: + switch ($firstToken) { + case 21: + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncipv_Cypher25Parser$TypeNameContext_LT($ctx) !== null && oncipv_Cypher25Parser$TypeNameContext_GT($ctx) !== null)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + $p = oncip_AstRuleCtx_ast(oncipv_Cypher25Parser$TypeNameContext_type($ctx)); + if ($p instanceof oncius_ClosedDynamicUnionType) { + var$5 = $p; + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$5 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + var$6 = s_Predef$_Set(s_Predef$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 1); + var$8.data[0] = $p; + oncius_ClosedDynamicUnionType__init_(var$5, sci_Set$_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)), $p.$position()); + break a; + case 22: + case 147: + break; + case 264: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 295: + break; + case 296: + var$5 = oncius_LocalTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_ZonedTimeType__init_(1, $p); + break a; + case 266: + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { + case 295: + break; + case 296: + var$5 = oncius_LocalDateTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); + } + var$5 = oncius_ZonedDateTimeType__init_(1, $p); + break a; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$5 = oncius_ListType__init_(oncip_AstRuleCtx_ast(oncipv_Cypher25Parser$TypeNameContext_type($ctx)), 1, $p); + break a; + default: + } + switch ($firstToken) { + case 21: + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncipv_Cypher25Parser$TypeNameContext_LT($ctx) !== null && oncipv_Cypher25Parser$TypeNameContext_GT($ctx) !== null)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + $p = oncip_AstRuleCtx_ast(oncipv_Cypher25Parser$TypeNameContext_type($ctx)); + if ($p instanceof oncius_ClosedDynamicUnionType) { + var$5 = $p; + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$5 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + var$6 = s_Predef$_Set(s_Predef$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 1); + var$8.data[0] = $p; + oncius_ClosedDynamicUnionType__init_(var$5, sci_Set$_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)), $p.$position()); + break a; + case 22: + case 147: + break; + default: + $p = new jl_IllegalStateException; + var$5 = jl_StringBuilder__init_(); + jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5116)), $ctx), $rt_s(5117)), $firstToken), 41); + jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); + $rt_throw($p); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$5 = oncius_ListType__init_(oncip_AstRuleCtx_ast(oncipv_Cypher25Parser$TypeNameContext_type($ctx)), 1, $p); } - return $_localctx; + $ctx.$ast0 = var$5; }, -oncipv_Cypher5Parser_expression1 = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$Expression1Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 212, 106); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1642); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 154, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1622); - oncipv_Cypher5Parser_parameter($this, $rt_s(708)); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1623); - oncipv_Cypher5Parser_caseExpression($this); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 1624); - oncipv_Cypher5Parser_extendedCaseExpression($this); - break e; - case 5: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 1625); - oncipv_Cypher5Parser_countStar($this); - break e; - case 6: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 1626); - oncipv_Cypher5Parser_existsExpression($this); - break e; - case 7: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 1627); - oncipv_Cypher5Parser_countExpression($this); - break e; - case 8: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 1628); - oncipv_Cypher5Parser_collectExpression($this); - break e; - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 1629); - oncipv_Cypher5Parser_mapProjection($this); - break e; - case 10: - oavr_Parser_enterOuterAlt($this, $_localctx, 10); - oavr_Recognizer_setState($this, 1630); - oncipv_Cypher5Parser_listComprehension($this); - break e; - case 11: - oavr_Parser_enterOuterAlt($this, $_localctx, 11); - oavr_Recognizer_setState($this, 1631); - oncipv_Cypher5Parser_listLiteral($this); - break e; - case 12: - oavr_Parser_enterOuterAlt($this, $_localctx, 12); - oavr_Recognizer_setState($this, 1632); - oncipv_Cypher5Parser_patternComprehension($this); - break e; - case 13: - oavr_Parser_enterOuterAlt($this, $_localctx, 13); - oavr_Recognizer_setState($this, 1633); - oncipv_Cypher5Parser_reduceExpression($this); - break e; - case 14: - oavr_Parser_enterOuterAlt($this, $_localctx, 14); - oavr_Recognizer_setState($this, 1634); - oncipv_Cypher5Parser_listItemsPredicate($this); - break e; - case 15: - oavr_Parser_enterOuterAlt($this, $_localctx, 15); - oavr_Recognizer_setState($this, 1635); - oncipv_Cypher5Parser_normalizeFunction($this); - break e; - case 16: - oavr_Parser_enterOuterAlt($this, $_localctx, 16); - oavr_Recognizer_setState($this, 1636); - oncipv_Cypher5Parser_trimFunction($this); - break e; - case 17: - oavr_Parser_enterOuterAlt($this, $_localctx, 17); - oavr_Recognizer_setState($this, 1637); - oncipv_Cypher5Parser_patternExpression($this); - break e; - case 18: - oavr_Parser_enterOuterAlt($this, $_localctx, 18); - oavr_Recognizer_setState($this, 1638); - oncipv_Cypher5Parser_shortestPathExpression($this); - break e; - case 19: - oavr_Parser_enterOuterAlt($this, $_localctx, 19); - oavr_Recognizer_setState($this, 1639); - oncipv_Cypher5Parser_parenthesizedExpression($this); - break e; - case 20: - oavr_Parser_enterOuterAlt($this, $_localctx, 20); - oavr_Recognizer_setState($this, 1640); - oncipv_Cypher5Parser_functionInvocation($this); - break e; - case 21: - oavr_Parser_enterOuterAlt($this, $_localctx, 21); - oavr_Recognizer_setState($this, 1641); - oncipv_Cypher5Parser_variable($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1621); - oncipv_Cypher5Parser_literal($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_ExpressionBuilder_exitTrimFunction = ($this, $ctx) => { + let $trimSource, $trimCharacterString, $trimSpecification, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + $trimSource = $ctx.$trimSource0.$ast0; + oncipau_Util$_$callClinit(); + $trimCharacterString = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$trimCharacterString); + $trimSpecification = oncipcaf_ParserTrimSpecification_BOTH.$description1; + if (oncip_AstRuleCtx_getToken($ctx, 145, 0) !== null) + $trimSpecification = oncipcaf_ParserTrimSpecification_LEADING.$description1; + if (oncip_AstRuleCtx_getToken($ctx, 270, 0) !== null) + $trimSpecification = oncipcaf_ParserTrimSpecification_TRAILING.$description1; + if (s_Option_isEmpty($trimCharacterString)) { + var$5 = new oncie_FunctionInvocation; + var$6 = oncie_FunctionName$_MODULE$; + oncief_Trim$_$callClinit(); + var$7 = oncie_FunctionName$_apply(var$6, $rt_s(5118), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_package$_$callClinit(); + var$8 = s_package$_IndexedSeq(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($trimSpecification, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)), $trimSource]); + var$8 = sc_SeqFactory$Delegate_apply(var$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$9)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$5, var$7, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$5 = new oncie_FunctionInvocation; + var$8 = oncie_FunctionName$_MODULE$; + oncief_Trim$_$callClinit(); + var$10 = oncie_FunctionName$_apply(var$8, $rt_s(5118), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_package$_$callClinit(); + var$11 = s_package$_IndexedSeq(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($trimSpecification, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)), $trimCharacterString.$get1(), $trimSource]); + var$8 = sc_SeqFactory$Delegate_apply(var$11, sr_ScalaRunTime$_wrapRefArray(var$7, var$9)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$5, var$10, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$5; +}, +oncipvaf_StatementBuilder0 = $rt_classWithoutFields(0), +oncipvaf_StatementBuilder_exitSetItem = ($this, $ctx) => { + let var$2, $dynamicProp, $dynamicLabels, $dynamicLabels_0, $labels; + if ($ctx instanceof oncipv_Cypher25Parser$SetPropContext) { + var$2 = new oncia_SetPropertyItem; + oncipau_Util$_$callClinit(); + oncia_SetPropertyItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if ($ctx instanceof oncipv_Cypher25Parser$SetDynamicPropContext) { + oncipau_Util$_$callClinit(); + $dynamicProp = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$2 = oncia_SetDynamicPropertyItem__init_($dynamicProp, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, $dynamicProp.$position48); + } else if ($ctx instanceof oncipv_Cypher25Parser$SetPropsContext) { + var$2 = new oncia_SetExactPropertiesFromMapItem; + oncipau_Util$_$callClinit(); + oncia_SetExactPropertiesFromMapItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if ($ctx instanceof oncipv_Cypher25Parser$AddPropContext) { + var$2 = new oncia_SetIncludingPropertiesFromMapItem; + oncipau_Util$_$callClinit(); + oncia_SetIncludingPropertiesFromMapItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if ($ctx instanceof oncipv_Cypher25Parser$SetLabelsContext) { + oncipau_Util$_$callClinit(); + $dynamicLabels = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if ($dynamicLabels === null) + $rt_throw(s_MatchError__init_($dynamicLabels)); + $dynamicLabels_0 = s_Tuple2__init_($dynamicLabels.$_1(), $dynamicLabels.$_2()); + $labels = $dynamicLabels_0.$_10; + $dynamicLabels = $dynamicLabels_0.$_20; + var$2 = oncia_SetLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, $labels, $dynamicLabels, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + if (!($ctx instanceof oncipv_Cypher25Parser$SetLabelsIsContext)) { + $dynamicLabels = new jl_IllegalStateException; + $labels = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($labels); + jl_StringBuilder_append(jl_StringBuilder_append($labels, $rt_s(5116)), $ctx); + jl_Throwable__init_($dynamicLabels, jl_AbstractStringBuilder_toString($labels)); + $rt_throw($dynamicLabels); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + $dynamicLabels = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if ($dynamicLabels === null) + $rt_throw(s_MatchError__init_($dynamicLabels)); + $dynamicLabels_0 = s_Tuple2__init_($dynamicLabels.$_1(), $dynamicLabels.$_2()); + $labels = $dynamicLabels_0.$_10; + $dynamicLabels_0 = $dynamicLabels_0.$_20; + var$2 = oncia_SetLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, $labels, $dynamicLabels_0, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_literal = $this => { - let $_localctx, var$2, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 214, 107); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1653); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 4: - case 5: - case 6: - case 7: - case 161: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$NummericLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$NummericLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1644); - oncipv_Cypher5Parser_numberLiteral($this); - break e; - case 8: - case 9: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$StringsLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$StringsLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1645); - oncipv_Cypher5Parser_stringLiteral($this); - break e; - case 108: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$BooleanLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$BooleanLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 1648); - oavr_Parser_match($this, 108); - break e; - case 134: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$KeywordLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$KeywordLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 1649); - oavr_Parser_match($this, 134); - break e; - case 135: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$KeywordLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$KeywordLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 7); - oavr_Recognizer_setState($this, 1650); - oavr_Parser_match($this, 135); - break e; - case 147: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$OtherLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$OtherLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1646); - oncipv_Cypher5Parser_map($this); - break e; - case 167: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$KeywordLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$KeywordLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 8); - oavr_Recognizer_setState($this, 1651); - oavr_Parser_match($this, 167); - break e; - case 182: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$KeywordLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$KeywordLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 9); - oavr_Recognizer_setState($this, 1652); - oavr_Parser_match($this, 182); - break e; - case 281: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$BooleanLiteralContext; - var$2 = $re; - oncipv_Cypher5Parser$BooleanLiteralContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1647); - oavr_Parser_match($this, 281); - break e; - default: - } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +oncipvaf_StatementBuilder_indexHint0 = ($this, $ctx, $hintType) => { + let $spec, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncip_AstRuleCtx_getToken($ctx, 128, 0) !== null && oncipv_Cypher25Parser$HintContext_LPAREN($ctx) !== null && oncipv_Cypher25Parser$HintContext_LPAREN($ctx) !== null && oavr_ParserRuleContext_getChildCount($ctx) <= 9)) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + $spec = oncip_AstRuleCtx_getToken($ctx, 240, 0) === null ? oncia_UsingIndexHint$SeekOrScan$_MODULE$ : oncia_UsingIndexHint$SeekOnly$_MODULE$; + var$4 = new oncia_UsingIndexHint; + var$5 = (oncipv_Cypher25Parser$HintContext_variable($ctx)).$ast0; + var$6 = (oncipv_Cypher25Parser$HintContext_labelOrRelType($ctx)).$ast0; + var$7 = oncipv_Cypher25Parser$HintContext_nonEmptyNameList($ctx); + var$8 = sci_ArraySeq$_MODULE$; + var$9 = sc_StrictOptimizedIterableOps_collect$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher25Parser$NonEmptyNameListContext_symbolicNameString(var$7))), new oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1); + sr_ClassTag$_$callClinit(); + var$10 = sci_ArraySeq$_from(var$8, var$9, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PropertyKeyName))); + oncipau_Util$_$callClinit(); + oncia_UsingIndexHint__init_(var$4, var$5, var$6, var$10, $spec, $hintType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + return var$4; +}; +function oncipvaf_Cypher25AstBuilder() { + let a = this; oncipv_AbstractCypher25AstBuilder.call(a); + a.$notificationLogger4 = null; + a.$exceptionFactory3 = null; + a.$RelGraphToken$module0 = null; + a.$NodeGraphToken$module0 = null; + a.$ElementGraphToken$module = null; + a.$Node$module0 = null; + a.$Rel$module = null; + a.$NoEntity$module0 = null; +} +let oncipvaf_Cypher25AstBuilder_exitStatements = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Statements; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StatementContext)); + sr_ClassTag$_$callClinit(); + oncia_Statements__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitStatement = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitRegularQuery = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$3 = $ctx.$children0.$size0; + if (var$3 != 1) { + var$4 = 1; + var$5 = 0; + var$6 = null; + while (var$4 < var$3) { + a: { + var$7 = ju_ArrayList_get($ctx.$children0, var$4); + if (var$7 instanceof oncipv_Cypher25Parser$SingleQueryContext) { + var$8 = var$7.$ast0; + var$7 = !var$5 ? oncia_UnionDistinct__init_(var$2, var$8, var$6) : oncia_UnionAll__init_(var$2, var$8, var$6); + var$5 = 0; + } else { + if (!$rt_isInstance(var$7, oavrt_TerminalNode)) { + var$2 = new jl_IllegalStateException; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(5119)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$7)); + $rt_throw(var$2); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$7 = var$7; + switch ((var$7.$getSymbol()).$getType0()) { + case 18: + break; + case 77: + var$5 = 0; + var$7 = var$2; + break a; + case 279: + var$6 = oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$7); + var$7 = var$2; + break a; + default: + $ctx = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5120)), var$7); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw($ctx); + } + var$5 = 1; + var$7 = var$2; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = var$4 + 1 | 0; + var$2 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; } - return $re; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_caseExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CaseExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 216, 108); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1655); - oavr_Parser_match($this, 43); - oavr_Recognizer_setState($this, 1657); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 1656); - oncipv_Cypher5Parser_caseAlternative($this); - oavr_Recognizer_setState($this, 1659); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 300) - continue; - else - break; - } - oavr_Recognizer_setState($this, 1663); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 96) { - oavr_Recognizer_setState($this, 1661); - oavr_Parser_match($this, 96); - oavr_Recognizer_setState($this, 1662); - oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1665); - oavr_Parser_match($this, 98); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher25AstBuilder_exitSingleQuery = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncipv_Cypher25Parser$SingleQueryContext_regularQuery($ctx) === null) { + var$2 = new oncia_SingleQuery; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = $ctx.$children0; + sr_ClassTag$_$callClinit(); + oncia_SingleQuery__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Clause))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_TopLevelBraces; + var$3 = (oncipv_Cypher25Parser$SingleQueryContext_regularQuery($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_TopLevelBraces__init_(var$2, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UseClauseContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitClause = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitUseClause = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_UseGraph; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphReferenceContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_UseGraph__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitGraphReference = ($this, $ctx) => { + let var$2, var$3; + if (oncipv_Cypher25Parser$GraphReferenceContext_graphReference($ctx) !== null) + var$2 = (oncipv_Cypher25Parser$GraphReferenceContext_graphReference($ctx)).$ast0; + else if (oncipv_Cypher25Parser$GraphReferenceContext_functionInvocation($ctx) !== null) { + var$2 = new oncia_GraphFunctionReference; + var$3 = (oncipv_Cypher25Parser$GraphReferenceContext_functionInvocation($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_GraphFunctionReference__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_GraphDirectReference; + oncia_CatalogName$_$callClinit(); + var$3 = oncia_CatalogName$_apply(oncia_CatalogName$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameContext), 0)).$ast0); + oncipau_Util$_$callClinit(); + oncia_GraphDirectReference__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitSymbolicAliasName = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString($ctx); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +}, +oncipvaf_Cypher25AstBuilder_exitReturnClause = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + $ctx.$ast0 = oncia_Return_copy(var$2, var$2.$distinct1, var$2.$returnItems2, var$2.$orderBy2, var$2.$skip3, var$2.$limit3, var$2.$excludedNames, var$2.$addedInRewrite, var$2.$inTopLevelBraces, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitFinishClause = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Finish; + oncipau_Util$_$callClinit(); + oncia_Finish__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitReturnBody = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Return; + var$3 = oncip_AstRuleCtx_getToken($ctx, 77, 0) === null ? 0 : 1; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ReturnItemsContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_Return__init_(var$2, var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$OrderByContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SkipContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LimitContext), 0)), oncia_Return$_apply$default$6(oncia_Return$_MODULE$), + 0, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitReturnItems = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_ReturnItems; + var$3 = oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ReturnItemContext)); + sr_ClassTag$_$callClinit(); + var$4 = oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_(var$2, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitReturnItem = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); + var$4 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); + $ctx.$ast0 = var$4 === null ? oncia_UnaliasedReturnItem__init_(var$3.$ast0, oncipau_Util$_inputText(oncipau_Util$_MODULE$, var$3), var$2) : oncia_AliasedReturnItem__init_(var$3.$ast0, var$4.$ast0, var$2); +}, +oncipvaf_Cypher25AstBuilder_exitOrderItem = ($this, $ctx) => { + let var$2; + if ($ctx.$children0.$size0 != 1 && oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AscTokenContext), 0) === null) { + var$2 = new oncia_DescSortItem; + oncipau_Util$_$callClinit(); + oncia_DescSortItem__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_AscSortItem; + oncipau_Util$_$callClinit(); + oncia_AscSortItem__init_0(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitSkip = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Skip; + oncipau_Util$_$callClinit(); + oncia_Skip__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitLimit = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Limit; + oncipau_Util$_$callClinit(); + oncia_Limit__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitWhereClause = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Where; + oncipau_Util$_$callClinit(); + oncia_Where__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitWithClause = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ReturnBodyContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0)); + $ctx.$ast0 = oncia_With__init_0(var$2.$distinct1, var$2.$returnItems2, var$2.$orderBy2, var$2.$skip3, var$2.$limit3, var$3, oncia_DefaultWith$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitCreateClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternListContext), 0); + var$3 = var$2.$ast0; + var$4 = new oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0; + var$4.$_0774 = $this; + var$4.$_1258 = var$2; + var$5 = sci_ArraySeq_map(var$3, var$4); + var$6 = new oncia_Create; + var$3 = new oncie_Pattern$ForUpdate; + oncipau_Util$_$callClinit(); + oncie_Pattern$ForUpdate__init_(var$3, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + oncia_Create__init_(var$6, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$6; +}, +oncipvaf_Cypher25AstBuilder_exitInsertClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$InsertPatternListContext), 0); + var$3 = new oncia_Insert; + var$4 = new oncie_Pattern$ForUpdate; + var$5 = var$2.$ast0; + oncipau_Util$_$callClinit(); + oncie_Pattern$ForUpdate__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + oncia_Insert__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitSetClause = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_SetClause; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = $ctx.$children0; + sr_ClassTag$_$callClinit(); + oncia_SetClause__init_(var$2, oncipau_Util$_astSeq0(var$3, var$4, 1, 2, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitSetItem = ($this, $ctx) => { + oncipvaf_StatementBuilder_exitSetItem($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitRemoveClause = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Remove; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$RemoveItemContext)); + sr_ClassTag$_$callClinit(); + oncia_Remove__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitRemoveItem = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + if ($ctx instanceof oncipv_Cypher25Parser$RemovePropContext) { + var$2 = $ctx; + var$3 = new oncia_RemovePropertyItem; + oncipau_Util$_$callClinit(); + oncia_RemovePropertyItem__init_(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0); + } else if ($ctx instanceof oncipv_Cypher25Parser$RemoveDynamicPropContext) { + var$2 = $ctx; + var$3 = new oncia_RemoveDynamicPropertyItem; + oncipau_Util$_$callClinit(); + oncia_RemoveDynamicPropertyItem__init_(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0); + } else if ($ctx instanceof oncipv_Cypher25Parser$RemoveLabelsContext) { + var$2 = $ctx; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if (var$4 === null) + $rt_throw(s_MatchError__init_(var$4)); + var$3 = s_Tuple2__init_(var$4.$_1(), var$4.$_2()); + var$4 = var$3.$_10; + var$5 = var$3.$_20; + var$3 = oncia_RemoveLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$4, var$5, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + if (!($ctx instanceof oncipv_Cypher25Parser$RemoveLabelsIsContext)) { + var$2 = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5116)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw(var$2); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = $ctx; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if (var$4 === null) + $rt_throw(s_MatchError__init_(var$4)); + var$3 = s_Tuple2__init_(var$4.$_1(), var$4.$_2()); + var$4 = var$3.$_10; + var$5 = var$3.$_20; + var$3 = oncia_RemoveLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$4, var$5, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_caseAlternative = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CaseAlternativeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 218, 109); +oncipvaf_Cypher25AstBuilder_exitDeleteClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oncip_AstRuleCtx_getToken($ctx, 74, 0) === null ? 0 : 1; + var$3 = new oncia_Delete; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext)); + sr_ClassTag$_$callClinit(); + oncia_Delete__init_(var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitMatchClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = sci_ArraySeq_map((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternListContext), 0)).$ast0, new oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_00); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$4 = oncip_AstRuleCtx_getToken($ctx, 183, 0) === null ? oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1) : oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2); + var$5 = new oncia_Match; + var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0() != 183 ? 0 : 1; + var$7 = oncipau_Util$_MODULE$; + var$8 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MatchModeContext), 0); + var$9 = new oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_10; + var$9.$_099 = var$3; + var$7 = oncipau_Util$_astOpt0(var$7, var$8, var$9); + var$10 = oncie_Pattern$ForMatch__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$4)); + var$8 = oncipau_Util$_MODULE$; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$HintContext)); + sr_ClassTag$_$callClinit(); + oncia_Match__init_(var$5, var$6, var$7, var$10, sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$8, var$2, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0)), var$3); + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher25AstBuilder_exitMatchMode = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1667); - oavr_Parser_match($this, 300); - oavr_Recognizer_setState($this, 1668); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1669); - oavr_Parser_match($this, 269); - oavr_Recognizer_setState($this, 1670); - oncipv_Cypher5Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); + switch (var$2.$getType0()) { + case 75: + var$3 = oncie_MatchMode$DifferentRelationships__init_(0, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); + break a; + case 221: + break; + default: + var$4 = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5116)), $ctx), $rt_s(5121)), var$2), 41); + jl_Throwable__init_(var$4, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$4); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = oncie_MatchMode$RepeatableElements__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_extendedCaseExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ExtendedCaseExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 220, 110); +oncipvaf_Cypher25AstBuilder_exitHint = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1672); - oavr_Parser_match($this, 43); - oavr_Recognizer_setState($this, 1673); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1675); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 1674); - oncipv_Cypher5Parser_extendedCaseAlternative($this); - oavr_Recognizer_setState($this, 1677); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 300) - continue; - else - break; - } - oavr_Recognizer_setState($this, 1681); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 96) { - oavr_Recognizer_setState($this, 1679); - oavr_Parser_match($this, 96); - oavr_Recognizer_setState($this, 1680); - $_localctx.$elseExp = oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1683); - oavr_Parser_match($this, 98); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol(); + switch (var$2.$getType0()) { + case 128: + break; + case 136: + var$2 = new oncia_UsingJoinHint; + var$3 = oncipv_Cypher25Parser$HintContext_nonEmptyNameList($ctx); + onciu_NonEmptyList$_$callClinit(); + oncia_UsingJoinHint__init_(var$2, onciu_NonEmptyList$_from(onciu_NonEmptyList$_MODULE$, sc_StrictOptimizedIterableOps_collect$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, var$3.$children0)), new oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$10)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 195: + var$2 = oncipvaf_StatementBuilder_indexHint0($this, $ctx, oncia_UsingIndexHint$UsingPointIndexType$_MODULE$); + break a; + case 209: + var$2 = oncipvaf_StatementBuilder_indexHint0($this, $ctx, oncia_UsingIndexHint$UsingRangeIndexType$_MODULE$); + break a; + case 234: + var$2 = oncia_UsingScanHint__init_((oncipv_Cypher25Parser$HintContext_variable($ctx)).$ast0, (oncipv_Cypher25Parser$HintContext_labelOrRelType($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 262: + var$2 = oncipvaf_StatementBuilder_indexHint0($this, $ctx, oncia_UsingIndexHint$UsingTextIndexType$_MODULE$); + break a; + default: + $ctx = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5120)), var$2); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncipvaf_StatementBuilder_indexHint0($this, $ctx, oncia_UsingIndexHint$UsingAnyIndexType$_MODULE$); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_extendedCaseAlternative = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ExtendedCaseAlternativeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 222, 111); +oncipvaf_Cypher25AstBuilder_exitNonEmptyNameList = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncipv_Cypher25Parser$NonEmptyNameListContext_symbolicNameString($ctx); + var$4 = new oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0; + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeqPositioned(var$2, var$3, var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PropertyKeyName))); +}, +oncipvaf_Cypher25AstBuilder_exitMergeClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + var$3 = var$2.$ast0; + if ($rt_isInstance(var$3, oncie_NonPrefixedPatternPart)) { + var$4 = var$3; + var$5 = new oncia_Merge; + var$2 = oncipau_Util$_MODULE$; + var$6 = $ctx.$children0; + sr_ClassTag$_$callClinit(); + oncia_Merge__init_(var$5, var$4, oncipau_Util$_astSeq(var$2, var$6, 2, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$5; + return; + } + if (!(var$3 instanceof oncie_PatternPartWithSelector)) + $rt_throw(s_MatchError__init_(var$3)); + $ctx = var$3; + var$5 = $this.$exceptionFactory3; + $ctx = $ctx.$selector1.$prettified(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5122)), $ctx), $rt_s(5123)); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$3), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2))); +}, +oncipvaf_Cypher25AstBuilder_exitMergeAction = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1685); - oavr_Parser_match($this, 300); - oavr_Recognizer_setState($this, 1686); - oncipv_Cypher5Parser_extendedWhen($this); - oavr_Recognizer_setState($this, 1691); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 1687); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1688); - oncipv_Cypher5Parser_extendedWhen($this); - oavr_Recognizer_setState($this, 1693); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 1694); - oavr_Parser_match($this, 269); - oavr_Recognizer_setState($this, 1695); - oncipv_Cypher5Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0(); + switch (var$2) { + case 57: + var$3 = oncia_OnCreate__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 155: + var$3 = oncia_OnMatch__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_extendedWhen = $this => { - let $_localctx, var$2, $re, $_la, var$5, $$je; - $_localctx = new oncipv_Cypher5Parser$ExtendedWhenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 224, 112); +oncipvaf_Cypher25AstBuilder_exitUnwindClause = ($this, $ctx) => { + let var$2; + var$2 = new oncia_Unwind; + oncipau_Util$_$callClinit(); + oncia_Unwind__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitCallClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ProcedureNameContext), 0)).$ast0; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$3 = s_Tuple2__init_(var$2.$_1(), var$2.$_2()); + var$4 = var$3.$_10; + var$3 = var$3.$_20; + if (oncip_AstRuleCtx_getToken($ctx, 233, 0) === null) + var$5 = s_None$_MODULE$; + else { + var$5 = new s_Some; + oncipau_Util$_$callClinit(); + var$6 = oncipau_Util$_MODULE$; + var$7 = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ProcedureArgumentContext))), new oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0), jus_Collectors_toList()); + sr_ClassTag$_$callClinit(); + s_Some__init_0(var$5, oncipau_Util$_astSeq(var$6, var$7, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression)))); + } + var$8 = oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1; + if (oncipv_Cypher25Parser$CallClauseContext_YIELD($ctx) !== null && !var$8) { + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ProcedureResultItemContext)); + sr_ClassTag$_$callClinit(); + var$2 = oncipau_Util$_astSeq(var$2, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_ProcedureResultItem))); + var$9 = s_Some__init_(oncia_ProcedureResult__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0)), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncipv_Cypher25Parser$CallClauseContext_YIELD($ctx)).$getSymbol()))); + } else + var$9 = s_None$_MODULE$; + var$7 = new oncia_UnresolvedCall; + var$10 = oncip_AstRuleCtx_getToken($ctx, 183, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_UnresolvedCall__init_(var$7, var$4, var$3, var$5, var$9, var$8, var$10, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher25AstBuilder_exitProcedureName = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamespaceContext), 0)).$ast0; + var$3 = new oncie_ProcedureName; + var$4 = (oncipv_Cypher25Parser$ProcedureNameContext_symbolicNameString($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncie_ProcedureName__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$ProcedureNameContext_symbolicNameString($ctx))); + $ctx.$ast0 = s_Tuple2__init_(var$2, var$3); +}, +oncipvaf_Cypher25AstBuilder_exitProcedureArgument = ($this, $ctx) => { + $ctx.$ast0 = oncipv_Cypher25Parser$ProcedureArgumentContext_expression($ctx); +}, +oncipvaf_Cypher25AstBuilder_exitProcedureResultItem = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0)).$ast0; + if (oncipv_Cypher25Parser$ProcedureResultItemContext_variable($ctx) === null) { + var$3 = oncia_ProcedureResultItem$_MODULE$; + var$4 = new oncie_Variable; + oncipau_Util$_$callClinit(); + var$5 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$4, var$2, var$5, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + var$3 = oncia_ProcedureResultItem$_apply(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$4 = (oncipv_Cypher25Parser$ProcedureResultItemContext_variable($ctx)).$ast0; + var$5 = oncia_ProcedureResultItem$_MODULE$; + var$3 = oncie_ProcedureOutput__init_(var$2, var$4.$position4); + oncipau_Util$_$callClinit(); + var$3 = oncia_ProcedureResultItem$_apply0(var$5, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitLoadCSVClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oncip_AstRuleCtx_getToken($ctx, 121, 0) === null ? 0 : 1; + oncia_LoadCSV$_$callClinit(); + var$3 = oncia_LoadCSV$_MODULE$; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0; + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_LoadCSV$_fromUrl(var$3, var$2, var$4, var$5, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitForeachClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = new oncia_Foreach; + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; + var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 4)).$ast0; + var$5 = oncipau_Util$_MODULE$; + var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ClauseContext)); + sr_ClassTag$_$callClinit(); + oncia_Foreach__init_(var$2, var$3, var$4, oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitSubqueryClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SubqueryScopeContext), 0); + if (var$2 === null) { + var$3 = new oncia_ImportingWithSubqueryCall; + var$4 = (oncipv_Cypher25Parser$SubqueryClauseContext_regularQuery($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_ImportingWithSubqueryCall__init_(var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$SubqueryClauseContext_subqueryInTransactionsParameters($ctx)), oncipv_Cypher25Parser$SubqueryClauseContext_OPTIONAL($ctx) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = var$2.$ast0; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$5 = var$2.$_1$mcZ$sp(); + var$2 = var$2.$_2(); + var$3 = s_Tuple2__init_(jl_Boolean_valueOf(var$5), var$2); + var$5 = s_Tuple2__1$mcZ$sp(var$3); + var$4 = var$3.$_20; + var$3 = new oncia_ScopeClauseSubqueryCall; + var$6 = (oncipv_Cypher25Parser$SubqueryClauseContext_regularQuery($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_ScopeClauseSubqueryCall__init_(var$3, var$6, var$5, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$SubqueryClauseContext_subqueryInTransactionsParameters($ctx)), oncipv_Cypher25Parser$SubqueryClauseContext_OPTIONAL($ctx) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitSubqueryScope = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new s_Tuple2; + var$3 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1); + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext)); + sr_ClassTag$_$callClinit(); + s_Tuple2__init_0(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Variable)))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsParameters = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$2 = oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters($ctx); + var$3 = oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters($ctx); + var$4 = oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters($ctx); + var$5 = var$2.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$2.$get0(0)).$ast0); + if (oncip_AstRuleCtx_getToken($ctx, 50, 0) === null) + var$6 = s_None$_MODULE$; + else { + var$6 = new s_Some; + var$7 = new oncia_SubqueryCall$InTransactionsConcurrencyParameters; + oncipau_Util$_$callClinit(); + oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_(var$7, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 127, 0)).$getSymbol())); + s_Some__init_0(var$6, var$7); + } + var$7 = var$3.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$3.$get0(0)).$ast0); + var$3 = var$4.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$4.$get0(0)).$ast0); + var$4 = new oncia_SubqueryCall$InTransactionsParameters; + oncipau_Util$_$callClinit(); + oncia_SubqueryCall$InTransactionsParameters__init_(var$4, var$5, var$6, var$7, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 272, 0)).$getSymbol())); + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsBatchParameters = ($this, $ctx) => { + let var$2; + var$2 = new oncia_SubqueryCall$InTransactionsBatchParameters; + oncipau_Util$_$callClinit(); + oncia_SubqueryCall$InTransactionsBatchParameters__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsErrorParameters = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 1730); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 167, $this.$_ctx)) { - case 1: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$WhenStringOrListContext; - var$2 = $re; - oncipv_Cypher5Parser$WhenStringOrListContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 1702); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 99: - var$2 = $re; - oavr_Recognizer_setState($this, 1700); - oavr_Parser_match($this, 99); - oavr_Recognizer_setState($this, 1701); - oavr_Parser_match($this, 302); - break f; - case 222: - var$2 = $re; - oavr_Recognizer_setState($this, 1697); - oavr_Parser_match($this, 222); - break f; - case 260: - var$2 = $re; - oavr_Recognizer_setState($this, 1698); - oavr_Parser_match($this, 260); - oavr_Recognizer_setState($this, 1699); - oavr_Parser_match($this, 302); - break f; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1704); - oncipv_Cypher5Parser_expression6($this); - break e; - case 2: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$WhenNullContext; - var$2 = $re; - oncipv_Cypher5Parser$WhenNullContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 1705); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 1707); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { - var$2 = $re; - oavr_Recognizer_setState($this, 1706); - oavr_Parser_match($this, 179); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1709); - oavr_Parser_match($this, 182); - break e; - case 3: - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$WhenTypeContext; - var$2 = $re; - oncipv_Cypher5Parser$WhenTypeContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 1716); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 48: - var$2 = $re; - oavr_Recognizer_setState($this, 1715); - oavr_Parser_match($this, 48); - break g; - case 139: - var$2 = $re; - oavr_Recognizer_setState($this, 1710); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 1712); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { - var$2 = $re; - oavr_Recognizer_setState($this, 1711); - oavr_Parser_match($this, 179); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1714); - oavr_Parser_match($this, 283); - break g; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1718); - oncipv_Cypher5Parser_type($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$WhenFormContext; - var$2 = $re; - oncipv_Cypher5Parser$WhenFormContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 1719); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 1721); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { - var$2 = $re; - oavr_Recognizer_setState($this, 1720); - oavr_Parser_match($this, 179); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1724); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 168 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(15)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 1723); - oncipv_Cypher5Parser_normalForm($this); - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 1726); - oavr_Parser_match($this, 178); - break e; - case 5: - h: { - i: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$WhenComparatorContext; - var$2 = $re; - oncipv_Cypher5Parser$WhenComparatorContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 1727); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$5 = $_la - 100 | 0; - if (!(var$5 & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), var$5), Long_create(17039361, 2164326400)), Long_ZERO)) - break i; - } - var$2 = $re; - if ($_la != 164) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break h; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 1728); - oncipv_Cypher5Parser_expression7($this); - break e; - case 6: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$WhenEqualsContext; - var$2 = $re; - oncipv_Cypher5Parser$WhenEqualsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 1729); - oncipv_Cypher5Parser_expression($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 2)).$getSymbol()).$getType0(); + switch (var$2) { + case 35: + var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$; + break a; + case 55: + var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$; + break a; + case 103: + var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$; + break a; + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); + } + $ctx.$ast0 = oncia_SubqueryCall$InTransactionsErrorParameters__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsReportParameters = ($this, $ctx) => { + let var$2; + var$2 = new oncia_SubqueryCall$InTransactionsReportParameters; + oncipau_Util$_$callClinit(); + oncia_SubqueryCall$InTransactionsReportParameters__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitOrderBySkipLimitClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_With; + var$3 = new oncia_ReturnItems; + s_package$_$callClinit(); + var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + var$5 = s_None$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_ReturnItems__init_(var$3, 1, var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + oncia_With__init_(var$2, 0, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$OrderByContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SkipContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LimitContext), 0)), s_None$_MODULE$, oncia_DefaultWith$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, + $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitPatternList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PatternContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PatternPart))); +}, +oncipvaf_Cypher25AstBuilder_exitPattern = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SelectorContext), 0); + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AnonymousPatternContext), 0)).$ast0; + if (var$2 === null) + var$2 = var$4; + else { + var$5 = var$2.$ast0; + var$2 = oncie_NamedPatternPart__init_(var$5, var$4, var$5.$position4); + } + $ctx.$ast0 = var$3 === null ? var$2 : oncie_PatternPartWithSelector__init_(var$3.$ast0, var$2); +}, +oncipvaf_Cypher25AstBuilder_exitInsertPatternList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$InsertPatternContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PathPatternPart))); +}, +oncipvaf_Cypher25AstBuilder_exitInsertPattern = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + if (oncipv_Cypher25Parser$InsertPatternContext_EQ($ctx) !== null) + $ctx.$ast0 = null; + else { + var$2 = $ctx.$children0.$size0; + if (var$2 == 1) { + var$3 = new oncie_PathPatternPart; + oncipau_Util$_$callClinit(); + oncie_PathPatternPart__init_0(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0); + $ctx.$ast0 = var$3; + } else { + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$4 = null; + var$5 = null; + var$6 = 0; + while (var$6 < var$2) { + var$7 = ju_ArrayList_get($ctx.$children0, var$6); + if (var$7 instanceof oncipv_Cypher25Parser$InsertNodePatternContext) { + var$7 = var$7.$ast0; + if (var$5 !== null) { + var$8 = oncie_RelationshipChain__init_(var$4, var$5, var$7, var$3); + var$5 = null; + var$7 = var$8; + } + } else { + if (!(var$7 instanceof oncipv_Cypher25Parser$InsertRelationshipPatternContext)) { + $ctx = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5115)), var$7); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$5 = var$7.$ast0; + var$7 = var$4; } + var$6 = var$6 + 1 | 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $ctx.$ast0 = oncie_PathPatternPart__init_(var$4); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; } - return $re; }, -oncipv_Cypher5Parser_listComprehension = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ListComprehensionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 226, 113); +oncipvaf_Cypher25AstBuilder_exitQuantifier = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; a: { - b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1732); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 1733); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1734); - oavr_Parser_match($this, 131); - oavr_Recognizer_setState($this, 1735); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1746); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 170, $this.$_ctx)) { - case 1: - break f; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1744); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 301) - break e; - oavr_Recognizer_setState($this, 1742); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 1743); - $_localctx.$whereExp0 = oncipv_Cypher5Parser_expression($this); - break e; - } - oavr_Recognizer_setState($this, 1738); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 1736); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 1737); - $_localctx.$whereExp0 = oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1740); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 1741); - $_localctx.$barExp2 = oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1748); - oavr_Parser_match($this, 216); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); + var$3 = var$2.$getType0(); + switch (var$3) { + case 143: + if ($ctx.$from20 === null && $ctx.$to3 === null && oncip_AstRuleCtx_getToken($ctx, 46, 0) === null) { + var$4 = new oncie_FixedQuantifier; + var$5 = oncipau_Util$_MODULE$; + oncie_FixedQuantifier__init_(var$4, oncipau_Util$_unsignedDecimalInt(var$5, (oncipau_Util$_nodeChild(var$5, $ctx, 1)).$getSymbol()), oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = oncie_IntervalQuantifier__init_(oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$from20), oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$to3), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 193: + var$4 = oncie_PlusQuantifier__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); + break a; + case 265: + var$4 = oncie_StarQuantifier__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$3))); } - return $_localctx; + $ctx.$ast0 = var$4; +}; +let oncipvaf_Cypher25AstBuilder_exitAnonymousPattern = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0); + if (var$2 instanceof oncipv_Cypher25Parser$PatternElementContext) { + var$3 = var$2; + var$2 = oncie_PathPatternPart__init_(var$3.$ast0); + } else { + if (!(var$2 instanceof oncipv_Cypher25Parser$ShortestPathPatternContext)) { + var$2 = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5116)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); + } + var$2 = var$2.$ast0; + } + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_patternComprehension = $this => { - let $_localctx, $_la, var$3, var$4, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PatternComprehensionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 228, 114); +oncipvaf_Cypher25AstBuilder_exitShortestPathPattern = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); + $ctx.$ast0 = oncie_ShortestPathsPatternPart__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternElementContext), 0)).$ast0, var$2.$getType0() == 17 ? 0 : 1, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher25AstBuilder_exitPatternElement = ($this, $ctx) => { + oncipvaf_ExpressionBuilder_exitPatternElement0($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitSelector = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if ($ctx instanceof oncipv_Cypher25Parser$AnyShortestPathContext) { + var$3 = $ctx; + var$4 = oncie_PatternPart$AnyShortestPath__init_(oncipvaf_ExpressionBuilder_selectorCount($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); + } else if ($ctx instanceof oncipv_Cypher25Parser$AllShortestPathContext) { + var$2 = $ctx; + var$4 = oncie_PatternPart$AllShortestPaths__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } else if ($ctx instanceof oncipv_Cypher25Parser$AnyPathContext) { + var$3 = $ctx; + var$4 = oncie_PatternPart$AnyPath__init_(oncipvaf_ExpressionBuilder_selectorCount($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); + } else if ($ctx instanceof oncipv_Cypher25Parser$ShortestGroupContext) { + var$3 = $ctx; + var$4 = oncie_PatternPart$ShortestGroups__init_(oncipvaf_ExpressionBuilder_selectorCount($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); + } else { + if (!($ctx instanceof oncipv_Cypher25Parser$AllPathContext)) { + var$2 = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5116)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); + } + var$4 = oncie_PatternPart$AllPaths__init_(var$2); + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher25AstBuilder_exitParenthesizedPath = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$3 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + if ($rt_isInstance(var$3, oncie_NonPrefixedPatternPart)) { + var$4 = var$3; + var$3 = oncipv_Cypher25Parser$ParenthesizedPathContext_quantifier($ctx); + $ctx.$ast0 = var$3 === null ? oncie_ParenthesizedPath__init_(var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$ParenthesizedPathContext_expression($ctx)), var$2) : oncie_QuantifiedPath$_apply(oncie_QuantifiedPath$_MODULE$, var$4, var$3.$ast0, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$ParenthesizedPathContext_expression($ctx)), var$2); + return; + } + if (!(var$3 instanceof oncie_PatternPartWithSelector)) + $rt_throw(s_MatchError__init_(var$3)); + var$2 = var$3; + $ctx = oncipv_Cypher25Parser$ParenthesizedPathContext_quantifier($ctx) !== null ? $rt_s(5124) : $rt_s(5125); + var$5 = $this.$exceptionFactory3; + var$3 = var$2.$selector1.$prettified(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5122)), var$3), $rt_s(5126)), $ctx), $rt_s(5127)); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$4), oncie_PatternPartWithSelector_position(var$2))); +}, +oncipvaf_Cypher25AstBuilder_exitProperties = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitPathLength = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + if (oncip_AstRuleCtx_getToken($ctx, 80, 0) !== null) { + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$from22); + var$3 = oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$to6); + var$4 = new s_Some; + var$5 = new oncie_Range; + var$6 = s_Option_map(var$2, new oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0); + var$7 = new oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1; + var$7.$_0240 = $ctx; + oncie_Range__init_0(var$5, var$2, var$3, s_Option_getOrElse(var$6, var$7)); + s_Some__init_0(var$4, var$5); + } else { + var$2 = $ctx.$single1; + if (var$2 === null) + var$4 = s_None$_MODULE$; + else { + var$3 = new s_Some; + var$4 = new oncie_UnsignedDecimalIntegerLiteral; + var$7 = var$2.$getText(); + oncipau_Util$_$callClinit(); + oncie_UnsignedDecimalIntegerLiteral__init_(var$4, var$7, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $ctx.$single1)); + s_Some__init_0(var$3, var$4); + var$4 = s_Some__init_(oncie_Range__init_(var$3, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))); + } + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher25AstBuilder_exitExpression = ($this, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0); +}, +oncipvaf_Cypher25AstBuilder_exitExpression11 = ($this, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0); +}, +oncipvaf_Cypher25AstBuilder_exitExpression10 = ($this, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0); +}, +oncipvaf_Cypher25AstBuilder_exitExpression9 = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1750); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 1754); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221224448, 4294737919)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4290969599, 4022337519)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4294967265)), Long_ZERO))) { - var$4 = $_la - 192 | 0; - if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(3166697087, 4286545919)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 1751); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1752); - oavr_Parser_match($this, 100); - } - oavr_Recognizer_setState($this, 1756); - oncipv_Cypher5Parser_pathPatternNonEmpty($this); - oavr_Recognizer_setState($this, 1759); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 1757); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 1758); - $_localctx.$whereExp2 = oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1761); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 1762); - $_localctx.$barExp1 = oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1763); - oavr_Parser_match($this, 216); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED) { + b: { + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$Expression8Context), 0); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx); + if (var$2 !== null) { + if (jl_Object_equals(var$2, var$3)) + break a; + else + break b; } + if (var$3 === null) + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(jl_AssertionError__init_($rt_s(35))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + c: { + switch ($ctx.$children0.$size0) { + case 1: + break; + case 2: + var$3 = new oncie_Not; + oncipau_Util$_$callClinit(); + oncie_Not__init_(var$3, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break c; + default: + var$3 = scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 175))); + oncipau_Util$_$callClinit(); + var$3 = sc_AbstractIterable_foldRight(var$3, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0); + break c; + } + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + } + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_reduceExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ReduceExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 230, 115); +oncipvaf_Cypher25AstBuilder_exitExpression8 = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1765); - oavr_Parser_match($this, 220); - oavr_Recognizer_setState($this, 1766); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1767); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1768); - oavr_Parser_match($this, 100); - oavr_Recognizer_setState($this, 1769); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1770); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1771); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1772); - oavr_Parser_match($this, 131); - oavr_Recognizer_setState($this, 1773); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1774); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 1775); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1776); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$2 = $ctx.$children0; + switch (var$2.$size0) { + case 1: + break; + case 3: + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_ExpressionBuilder_binaryPredicate($this, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, oncip_AstRuleCtx_getChild($ctx, 1), oncip_AstRuleCtx_getChild($ctx, 2)); + break a; + default: + var$3 = oncie_Ands$_MODULE$; + var$2 = (sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, var$2)))).$sliding(3, 2); + var$4 = new oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_00; + var$4.$_0632 = $this; + var$4.$_1213 = $ctx; + var$5 = sc_Iterator_map$(var$2, var$4); + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$2 = oncie_Ands$_apply(var$3, var$5, oncipau_Util$_pos1(var$2, oncipau_Util$_nodeChild(var$2, $ctx, 1))); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_listItemsPredicate = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ListItemsPredicateContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 232, 116); +oncipvaf_Cypher25AstBuilder_exitExpression7 = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1778); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 21 && $_la != 176 && $_la != 257) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1779); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1780); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1781); - oavr_Parser_match($this, 131); - oavr_Recognizer_setState($this, 1782); - $_localctx.$inExp = oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1785); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 1783); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 1784); - $_localctx.$whereExp3 = oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1787); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($ctx.$children0.$size0) { + case 1: + break; + default: + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$3 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + if (var$3 instanceof oncipv_Cypher25Parser$StringAndListComparisonContext) { + var$3 = oncipvaf_ExpressionBuilder_stringAndListComparisonExpression0($this, var$2, var$3); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$3 instanceof oncipv_Cypher25Parser$NullComparisonContext) { + var$3 = oncipvaf_ExpressionBuilder_nullComparisonExpression0($this, var$2, var$3); + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (var$3 instanceof oncipv_Cypher25Parser$TypeComparisonContext) { + var$3 = oncipvaf_ExpressionBuilder_typeComparisonExpression0($this, var$2, var$3); + break a; + } + if (!(var$3 instanceof oncipv_Cypher25Parser$NormalFormComparisonContext)) { + var$3 = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5128)), $ctx); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$3); + } + var$4 = var$3; + var$3 = oncipvaf_ExpressionBuilder_normalFormComparisonExpression($this, var$2, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$NormalFormContext), 0), oncip_AstRuleCtx_getToken(var$4, 175, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$4)); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_normalizeFunction = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NormalizeFunctionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 234, 117); +oncipvaf_Cypher25AstBuilder_exitComparisonExpression6 = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitNormalForm = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1789); - oavr_Parser_match($this, 177); - oavr_Recognizer_setState($this, 1790); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1791); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1794); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) { - oavr_Recognizer_setState($this, 1792); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1793); - oncipv_Cypher5Parser_normalForm($this); - } - oavr_Recognizer_setState($this, 1796); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = ((oncip_AstRuleCtx_getChild($ctx, 0)).$getSymbol()).$getType0(); + switch (var$2) { + case 164: + break; + case 165: + oncie_NFDNormalForm$_$callClinit(); + var$3 = oncie_NFDNormalForm$_MODULE$; + break a; + case 166: + oncie_NFKCNormalForm$_$callClinit(); + var$3 = oncie_NFKCNormalForm$_MODULE$; + break a; + case 167: + oncie_NFKDNormalForm$_$callClinit(); + var$3 = oncie_NFKDNormalForm$_MODULE$; + break a; + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncie_NFCNormalForm$_$callClinit(); + var$3 = oncie_NFCNormalForm$_MODULE$; } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_trimFunction = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$TrimFunctionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 236, 118); +oncipvaf_Cypher25AstBuilder_exitExpression6 = ($this, $ctx) => { + let var$2, var$3; + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = new oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0; + var$3.$_01168 = $this; + $ctx.$ast0 = oncipau_Util$_astBinaryFold(var$2, $ctx, var$3); +}, +oncipvaf_Cypher25AstBuilder_exitExpression5 = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = new oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_00; + var$3.$_01176 = $this; + $ctx.$ast0 = oncipau_Util$_astBinaryFold(var$2, $ctx, var$3); +}, +oncipvaf_Cypher25AstBuilder_exitExpression4 = ($this, $ctx) => { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_00); +}, +oncipvaf_Cypher25AstBuilder_exitExpression3 = ($this, $ctx) => { + let var$2; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1798); - oavr_Parser_match($this, 280); - oavr_Recognizer_setState($this, 1799); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1807); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 177, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - f: { - oavr_Recognizer_setState($this, 1801); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 175, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1800); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 35 && $_la != 149 && $_la != 276) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - g: { - oavr_Recognizer_setState($this, 1804); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 176, $this.$_ctx)) { - case 1: - break; - default: - break g; - } - oavr_Recognizer_setState($this, 1803); - $_localctx.$trimCharacterString0 = oncipv_Cypher5Parser_expression($this); - } - oavr_Recognizer_setState($this, 1806); - oavr_Parser_match($this, 114); - } - oavr_Recognizer_setState($this, 1809); - $_localctx.$trimSource = oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1810); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($ctx.$children0.$size0) { + case 1: + break; + default: + if (oncip_AstRuleCtx_getToken($ctx, 193, 0) === null) { + var$2 = new oncie_UnarySubtract; + oncipau_Util$_$callClinit(); + oncie_UnarySubtract__init_(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$2 = new oncie_UnaryAdd; + oncipau_Util$_$callClinit(); + oncie_UnaryAdd__init_(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + } + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitExpression2 = ($this, $ctx) => { + let var$2, var$3; + a: { + switch ($ctx.$children0.$size0) { + case 1: + break; + default: + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = new oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_00; + var$3.$_01182 = $this; + var$2 = oncipau_Util$_astCtxReduce(var$2, $ctx, var$3); + break a; + } + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitPostFix = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitProperty = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitDynamicProperty = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitPropertyExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = new oncie_Property; + oncipau_Util$_$callClinit(); + oncie_Property__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$3 = $ctx.$children0.$size0; + var$4 = 2; + while (var$4 < var$3) { + var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, var$4)).$ast0; + var$6 = oncie_Property__init_(var$2, var$5, var$5.$position30); + var$4 = var$4 + 1 | 0; + var$2 = var$6; + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitDynamicPropertyExpression = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + $ctx.$ast0 = oncie_ContainerIndex__init_0((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, var$2, var$2.$position()); +}, +oncipvaf_Cypher25AstBuilder_exitExpression1 = ($this, $ctx) => { + switch ($ctx.$children0.$size0) { + case 1: + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + return; + default: + } + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5129)); + $rt_throw($ctx); +}, +oncipvaf_Cypher25AstBuilder_exitCaseExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncie_CaseExpression; + var$3 = s_None$_MODULE$; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CaseAlternativeContext)); + sr_ClassTag$_$callClinit(); + oncie_CaseExpression__init_(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitCaseAlternative = ($this, $ctx) => { + let var$2; + var$2 = new s_Tuple2; + oncipau_Util$_$callClinit(); + s_Tuple2__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitExtendedCaseExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); + var$3 = new oncie_CaseExpression; + var$4 = s_Some__init_(var$2); + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ExtendedCaseAlternativeContext)); + var$6 = var$5.$size(); + var$7 = scm_ArrayBuffer__init_0(var$6); + var$8 = 0; + a: while (true) { + if (var$8 >= var$6) { + var$9 = sci_ArraySeq$_MODULE$; + sr_ClassTag$_$callClinit(); + oncie_CaseExpression__init_(var$3, var$4, sci_ArraySeq$_unsafeWrapArray(var$9, sc_IterableOnceOps_toArray$(var$7, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(s_Tuple2)))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$elseExp0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$3; + return; + } + var$9 = var$5.$get0(var$8); + var$10 = var$9.$children0.$size0; + var$11 = 1; + var$12 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, var$9)).$ast0; + while (var$11 < var$10) { + var$13 = ju_ArrayList_get(var$9.$children0, var$11); + if (var$13 instanceof oncipv_Cypher25Parser$ExtendedWhenContext) { + var$13 = var$13; + if (var$13 instanceof oncipv_Cypher25Parser$WhenEqualsContext) { + var$14 = new oncie_Equals; + var$15 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, var$13, 0); + var$13 = oncipau_Util$_MODULE$; + oncie_Equals__init_(var$14, var$2, var$15, oncipau_Util$_pos1(var$13, oncipau_Util$_nodeChild(var$13, var$9, var$11 - 1 | 0))); + } else if (var$13 instanceof oncipv_Cypher25Parser$WhenComparatorContext) + var$14 = oncipvaf_ExpressionBuilder_binaryPredicate($this, var$2, oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, var$13, 0), oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$13, 1)); + else if (var$13 instanceof oncipv_Cypher25Parser$WhenStringOrListContext) + var$14 = oncipvaf_ExpressionBuilder_stringAndListComparisonExpression0($this, var$2, var$13); + else if (var$13 instanceof oncipv_Cypher25Parser$WhenNullContext) + var$14 = oncipvaf_ExpressionBuilder_nullComparisonExpression0($this, var$2, var$13); + else if (var$13 instanceof oncipv_Cypher25Parser$WhenTypeContext) + var$14 = oncipvaf_ExpressionBuilder_typeComparisonExpression0($this, var$2, var$13); + else { + if (!(var$13 instanceof oncipv_Cypher25Parser$WhenFormContext)) + break a; + var$14 = var$13; + var$14 = oncipvaf_ExpressionBuilder_normalFormComparisonExpression($this, var$2, oavr_ParserRuleContext_getRuleContext(var$14, $rt_cls(oncipv_Cypher25Parser$NormalFormContext), 0), oncip_AstRuleCtx_getToken(var$14, 175, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$14)); } + var$13 = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + scm_ArrayBuffer_addOne(var$7, s_Predef$ArrowAssoc$_$minus$greater$extension(var$13, var$14, var$12)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$11 = var$11 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$8 = var$8 + 1 | 0; } - return $_localctx; + $ctx = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5116)), var$13); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw($ctx); +}, +oncipvaf_Cypher25AstBuilder_exitExtendedCaseAlternative = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitExtendedWhen = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitListComprehension = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oncie_ListComprehension$_MODULE$; + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0; + var$5 = $ctx.$whereExp; + var$6 = var$5 === null ? s_None$_MODULE$ : s_Some__init_(var$5.$ast0); + var$5 = $ctx.$barExp; + $ctx.$ast0 = oncie_ListComprehension$_apply(var$2, var$3, var$4, var$6, var$5 === null ? s_None$_MODULE$ : s_Some__init_(var$5.$ast0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitPatternComprehension = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = oncipv_Cypher25Parser$PatternComprehensionContext_variable($ctx) === null ? s_None$_MODULE$ : s_Some__init_((oncipv_Cypher25Parser$PatternComprehensionContext_variable($ctx)).$ast0); + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PathPatternNonEmptyContext), 0)).$ast0; + var$4 = $ctx.$whereExp1; + var$5 = var$4 === null ? s_None$_MODULE$ : s_Some__init_(var$4.$ast0); + var$6 = $ctx.$barExp0.$ast0; + var$7 = new oncie_PatternComprehension; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$8 = s_None$_MODULE$; + oncie_PatternComprehension__init_(var$7, var$2, var$3, var$5, var$6, var$4, var$8, var$8); + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher25AstBuilder_exitPathPatternNonEmpty = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$3 = $ctx.$children0.$size0; + var$4 = 1; + var$5 = null; + while (var$4 < var$3) { + var$6 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, var$4); + if (var$6 instanceof oncipv_Cypher25Parser$RelationshipPatternContext) + var$5 = var$6.$ast0; + else { + if (!(var$6 instanceof oncipv_Cypher25Parser$NodePatternContext)) { + $ctx = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5115)), var$6); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw($ctx); + } + var$6 = var$6; + var$2 = oncie_RelationshipChain__init_(var$2, var$5, var$6.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$6)); + } + var$4 = var$4 + 1 | 0; + } + $ctx.$ast0 = oncie_RelationshipsPattern__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitPatternExpression = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_PatternExpression; + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$4 = s_None$_MODULE$; + oncie_PatternExpression__init_(var$2, var$3, var$4, var$4); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitReduceExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 6)).$ast0; + var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 10)).$ast0; + var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 4)).$ast0; + var$6 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 8)).$ast0; + $ctx.$ast0 = oncie_ReduceExpression__init_(oncie_ReduceScope__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitListItemsPredicate = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + a: { + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; + var$4 = $ctx.$inExp0.$ast0; + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$whereExp4); + var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); + switch (var$6) { + case 18: + oncie_AllIterablePredicate$_$callClinit(); + var$2 = oncie_AllIterablePredicate$_apply(oncie_AllIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); + break a; + case 21: + oncie_AnyIterablePredicate$_$callClinit(); + var$2 = oncie_AnyIterablePredicate$_apply(oncie_AnyIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); + break a; + case 172: + oncie_NoneIterablePredicate$_$callClinit(); + var$2 = oncie_NoneIterablePredicate$_apply(oncie_NoneIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); + break a; + case 251: + oncie_SingleIterablePredicate$_$callClinit(); + var$2 = oncie_SingleIterablePredicate$_apply(oncie_SingleIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); + break a; + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$6))); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitShortestPathExpression = ($this, $ctx) => { + let var$2; + var$2 = new oncie_ShortestPathExpression; + oncipau_Util$_$callClinit(); + oncie_ShortestPathExpression__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitParenthesizedExpression = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitMapProjection = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncie_MapProjection; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$MapProjectionElementContext)); + sr_ClassTag$_$callClinit(); + oncie_MapProjection__init_(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getToken($ctx, 143, 0))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitMapProjectionElement = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oncip_AstRuleCtx_getToken($ctx, 44, 0); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); + var$4 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyKeyNameContext), 0); + var$5 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyContext), 0); + if (var$2 !== null) { + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0; + var$2 = oncie_LiteralEntry__init_(var$4.$ast0, var$5, var$5.$position()); + } else if (var$3 !== null) { + var$2 = new oncie_VariableSelector; + var$5 = var$3.$ast0; + oncipau_Util$_$callClinit(); + oncie_VariableSelector__init_(var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (var$5 !== null) { + var$5 = var$5.$ast0; + var$2 = oncie_PropertySelector__init_(var$5, var$5.$position30); + } else { + var$2 = new oncie_AllPropertiesSelector; + oncipau_Util$_$callClinit(); + oncie_AllPropertiesSelector__init_(var$2, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 265, 0)).$getSymbol())); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitCountStar = ($this, $ctx) => { + let var$2; + var$2 = new oncie_CountStar; + oncipau_Util$_$callClinit(); + oncie_CountStar__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitExistsExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_ExistsExpression; + var$3 = oncipvaf_ExpressionBuilder_subqueryBuilder0($this, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MatchModeContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternListContext), 0)); + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$5 = s_None$_MODULE$; + oncia_ExistsExpression__init_(var$2, var$3, var$4, var$5, var$5); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitCountExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_CountExpression; + var$3 = oncipvaf_ExpressionBuilder_subqueryBuilder0($this, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MatchModeContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternListContext), 0)); + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$5 = s_None$_MODULE$; + oncia_CountExpression__init_0(var$2, var$3, var$4, var$5, var$5); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitCollectExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = new oncia_CollectExpression; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$5 = s_None$_MODULE$; + oncia_CollectExpression__init_0(var$2, var$3, var$4, var$5, var$5); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitPropertyKeyName = ($this, $ctx) => { + let var$2; + var$2 = new oncie_PropertyKeyName; + oncipau_Util$_$callClinit(); + oncie_PropertyKeyName__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_patternExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PatternExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 238, 119); +oncipvaf_Cypher25AstBuilder_exitParameter = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterNameContext), 0)).$ast0; + var$3 = var$2.$name17; + var$4 = var$2.$parameterType0; + var$5 = var$2.$sizeHint2; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncie_ExplicitParameter_copy(var$2, var$3, var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitParameterName = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $ctx.$paramType; + var$3 = var$2 !== null ? jl_String_hashCode(var$2) : 0; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1812); - oncipv_Cypher5Parser_pathPatternNonEmpty($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + switch (var$3) { + case -1838656495: + if (jl_String_equals($rt_s(714), var$2)) { + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTString(oncius_package$_MODULE$); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_shortestPathExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShortestPathExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 240, 120); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1814); - oncipv_Cypher5Parser_shortestPathPattern($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + case -1618932450: + if (jl_String_equals($rt_s(722), var$2)) { + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_parenthesizedExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ParenthesizedExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 242, 121); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1816); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1817); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1818); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + case 76092: + if (jl_String_equals($rt_s(724), var$2)) { + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTMap(oncius_package$_MODULE$); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTAny(oncius_package$_MODULE$); } - return $_localctx; + oncipau_Util$_$callClinit(); + var$2 = oncip_AstRuleCtx_getChild($ctx, 0); + if (var$2 instanceof oncipv_Cypher25Parser$SymbolicNameStringContext) + var$5 = var$2.$ast0; + else { + if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { + var$2 = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5119)), $ctx); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw(var$2); + } + var$5 = var$2.$getText(); + } + var$6 = new oncie_ExplicitParameter; + oncie_ExplicitParameter$_$callClinit(); + oncie_ExplicitParameter__init_(var$6, var$5, var$4, oncie_ExplicitParameter$_apply$default$3(oncie_ExplicitParameter$_MODULE$), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$6; }, -oncipv_Cypher5Parser_mapProjection = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$MapProjectionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 244, 122); +oncipvaf_Cypher25AstBuilder_exitFunctionInvocation = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oncipv_Cypher25Parser$FunctionInvocationContext_functionName($ctx)).$ast0; + var$3 = oncip_AstRuleCtx_getToken($ctx, 77, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncipv_Cypher25Parser$FunctionInvocationContext_functionArgument($ctx)), new oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_00), jus_Collectors_toList()); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncie_FunctionInvocation__init_0(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, $ctx.$parent instanceof oncipv_Cypher25Parser$GraphReferenceContext, var$2.$namespace3.$position110); +}, +oncipvaf_Cypher25AstBuilder_exitFunctionName = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamespaceContext), 0)).$ast0; + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); + var$4 = var$3.$ast0; + var$5 = new oncie_FunctionName; + oncipau_Util$_$callClinit(); + oncie_FunctionName__init_0(var$5, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + $ctx.$ast0 = var$5; +}; +let oncipvaf_Cypher25AstBuilder_exitFunctionArgument = ($this, $ctx) => { + $ctx.$ast0 = (oncipv_Cypher25Parser$FunctionArgumentContext_expression($ctx)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitNamespace = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_Namespace; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); + sr_ClassTag$_$callClinit(); + oncie_Namespace__init_0(var$2, sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitVariable = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_Variable; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$2, var$3, var$4, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitType = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1820); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 1821); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 1830); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221224448, 4294737919)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4291493887, 4022337519)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4294967265)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697087, 4286545919)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 1822); - oncipv_Cypher5Parser_mapProjectionElement($this); - oavr_Recognizer_setState($this, 1827); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 49) - break e; - oavr_Recognizer_setState($this, 1823); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1824); - oncipv_Cypher5Parser_mapProjectionElement($this); - oavr_Recognizer_setState($this, 1829); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1832); - oavr_Parser_match($this, 217); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + switch ($ctx.$children0.$size0) { + case 1: + break; + default: + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$TypePartContext)); + sr_ClassTag$_$callClinit(); + var$4 = sc_AbstractIterable_toSet(oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncius_CypherType)))); + if (var$4.$size() == 1) { + var$5 = var$4.$head(); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$5 = oncius_ClosedDynamicUnionType__init_0(var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$5.$simplify(); }, -oncipv_Cypher5Parser_mapProjectionElement = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$MapProjectionElementContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 246, 123); +oncipvaf_Cypher25AstBuilder_exitTypePart = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = sr_ObjectRef_create((oncipv_Cypher25Parser$TypePartContext_typeName($ctx)).$ast0); + if (oncipv_Cypher25Parser$TypePartContext_typeNullability($ctx) !== null) + var$2.$elem = var$2.$elem.$withIsNullable1(0); + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$TypeListSuffixContext)); + var$4 = new oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_00; + var$4.$_0943 = var$2; + var$4.$_1324 = $ctx; + var$3.$forEach(var$4); + $ctx.$ast0 = var$2.$elem; +}, +oncipvaf_Cypher25AstBuilder_exitTypeName = ($this, $ctx) => { + oncipvaf_ExpressionBuilder_exitTypeName($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitTypeNullability = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitTypeListSuffix = ($this, $ctx) => { + $ctx.$ast0 = jl_Boolean_valueOf(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$TypeNullabilityContext), 0) !== null ? 0 : 1); +}, +oncipvaf_Cypher25AstBuilder_exitMap = ($this, $ctx) => { + let var$2; + var$2 = new oncie_MapExpression; + oncipau_Util$_$callClinit(); + oncie_MapExpression__init_(var$2, oncipau_Util$_astPairs(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyKeyNameContext)), oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitSymbolicNameString = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitEscapedSymbolicNameString = ($this, $ctx) => { + $ctx.$ast0 = jl_String_replace(($ctx.$start1.$getInputStream0()).$getText0(oavrm_Interval__init_($ctx.$start1.$getStartIndex() + 1 | 0, $ctx.$stop.$getStopIndex() - 1 | 0)), $rt_s(1136), $rt_s(1135)); +}, +oncipvaf_Cypher25AstBuilder_exitUnescapedSymbolicNameString = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getText($ctx); +}, +oncipvaf_Cypher25AstBuilder_exitSymbolicLabelNameString = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitUnescapedLabelSymbolicNameString = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitUnescapedLabelSymbolicNameString_ = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getText($ctx); +}, +oncipvaf_Cypher25AstBuilder_exitNormalizeFunction = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0; + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NormalFormContext), 0); + oncipau_Util$_$callClinit(); + var$4 = (oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, var$3, new oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0)).$formName(); + var$5 = new oncie_FunctionInvocation; + var$3 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, $rt_s(426), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_package$_$callClinit(); + var$6 = s_package$_IndexedSeq(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncie_Expression, 2); + var$9 = var$8.data; + var$9[0] = var$2; + var$9[1] = oncie_StringLiteral__init_(var$4, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)); + var$10 = sc_SeqFactory$Delegate_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$5, var$3, 0, var$10, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher25AstBuilder_exitTrimFunction = ($this, $ctx) => { + oncipvaf_ExpressionBuilder_exitTrimFunction($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitGrantCommand = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncipv_Cypher25Parser$GrantCommandContext_privilege($ctx) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GrantRoleContext), 0)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$4 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); + var$4 = oncia_GrantRolesToUsers__init_(var$4.$_10, var$4.$_20, var$2); + } else { + var$3 = (oncipv_Cypher25Parser$GrantCommandContext_privilege($ctx)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$5 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); + var$3 = var$5.$_11; + var$6 = var$5.$_21; + var$5 = var$5.$_30; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0; + var$4 = oncia_GrantPrivilege__init_(var$3, oncip_AstRuleCtx_getToken($ctx, 126, 0) === null ? 0 : 1, var$6, var$5, var$7, var$2); + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher25AstBuilder_exitDenyCommand = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PrivilegeContext), 0)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$4 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); + var$5 = var$4.$_11; + var$3 = var$4.$_21; + var$6 = var$4.$_30; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0; + $ctx.$ast0 = oncia_DenyPrivilege__init_(var$5, oncip_AstRuleCtx_getToken($ctx, 126, 0) === null ? 0 : 1, var$3, var$6, var$4, var$2); +}, +oncipvaf_Cypher25AstBuilder_exitRevokeCommand = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncipv_Cypher25Parser$RevokeCommandContext_privilege($ctx) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RevokeRoleContext), 0)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$4 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); + var$4 = oncia_RevokeRolesFromUsers__init_(var$4.$_10, var$4.$_20, var$2); + } else { + var$3 = (oncipv_Cypher25Parser$RevokeCommandContext_privilege($ctx)).$ast0; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$5 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); + var$3 = var$5.$_11; + var$6 = var$5.$_21; + var$5 = var$5.$_30; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0; + var$8 = oncipv_Cypher25Parser$RevokeCommandContext_DENY($ctx) !== null ? oncia_RevokeDenyType__init_(oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$RevokeCommandContext_DENY($ctx))) : oncipv_Cypher25Parser$RevokeCommandContext_GRANT($ctx) === null ? oncia_RevokeBothType__init_(var$2) : oncia_RevokeGrantType__init_(oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$RevokeCommandContext_GRANT($ctx))); + var$4 = oncia_RevokePrivilege__init_(var$3, oncip_AstRuleCtx_getToken($ctx, 126, 0) === null ? 0 : 1, var$6, var$5, var$7, var$8, var$2); + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher25AstBuilder_exitGrantRole = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserNamesContext), 0)).$ast0); +}, +oncipvaf_Cypher25AstBuilder_exitRevokeRole = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserNamesContext), 0)).$ast0); +}, +oncipvaf_Cypher25AstBuilder_exitPrivilege = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitAllPrivilege = ($this, $ctx) => { + oncipvaf_DdlPrivilegeBuilder_exitAllPrivilege($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitAllPrivilegeTarget = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitAllPrivilegeType = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitCreatePrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + if (oncipv_Cypher25Parser$CreatePrivilegeContext_databaseScope($ctx) !== null) { + var$2 = (oncipv_Cypher25Parser$CreatePrivilegeContext_databaseScope($ctx)).$ast0; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext), 0)).$ast0; + var$4 = new oncia_DatabasePrivilege; + oncipau_Util$_$callClinit(); + oncia_DatabasePrivilege__init_(var$4, var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$5 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier($this, var$4, s_None$_MODULE$); + } else if (oncipv_Cypher25Parser$CreatePrivilegeContext_actionForDBMS($ctx) !== null) { + var$2 = (oncipv_Cypher25Parser$CreatePrivilegeContext_actionForDBMS($ctx)).$ast0; + var$3 = new oncia_DbmsPrivilege; + oncipau_Util$_$callClinit(); + oncia_DbmsPrivilege__init_0(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$5 = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, var$3, s_None$_MODULE$); + } else { + var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierContext), 0)).$ast0; + var$5 = new s_Tuple3; + var$2 = new oncia_GraphPrivilege; + var$3 = oncia_CreateElementAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$2, var$3, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$5, var$2, s_None$_MODULE$, var$7); + } + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher25AstBuilder_exitCreatePrivilegeForDatabase = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitActionForDBMS = ($this, $ctx) => { + let var$2, var$3; + var$2 = $ctx.$parent.$getRuleIndex() != 239 ? 0 : 1; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 1842); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 180, $this.$_ctx)) { - case 1: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1834); - oncipv_Cypher5Parser_propertyKeyName($this); - oavr_Recognizer_setState($this, 1835); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 1836); - oncipv_Cypher5Parser_expression($this); - break e; - case 2: - break; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1839); - oncipv_Cypher5Parser_variable($this); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 1840); - oavr_Parser_match($this, 83); - oavr_Recognizer_setState($this, 1841); - oavr_Parser_match($this, 271); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1838); - oncipv_Cypher5Parser_property($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0()) { + case 15: + if (!var$2) { + var$3 = oncia_DropAliasAction$_MODULE$; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$3 = oncia_CreateAliasAction$_MODULE$; + break a; + case 49: + if (!var$2) { + var$3 = oncia_DropCompositeDatabaseAction$_MODULE$; + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_countStar = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CountStarContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 248, 124); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1844); - oavr_Parser_match($this, 60); - oavr_Recognizer_setState($this, 1845); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1846); - oavr_Parser_match($this, 271); - oavr_Recognizer_setState($this, 1847); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = oncia_CreateCompositeDatabaseAction$_MODULE$; + break a; + case 61: + if (!var$2) { + var$3 = oncia_DropDatabaseAction$_MODULE$; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$3 = oncia_CreateDatabaseAction$_MODULE$; + break a; + case 229: + if (!var$2) { + var$3 = oncia_DropRoleAction$_MODULE$; + break a; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = oncia_CreateRoleAction$_MODULE$; + break a; + case 285: + if (!var$2) { + var$3 = oncia_DropUserAction$_MODULE$; + break a; + } + var$3 = oncia_CreateUserAction$_MODULE$; + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5130)); + $rt_throw($ctx); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_existsExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ExistsExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 250, 125); +oncipvaf_Cypher25AstBuilder_exitDatabasePrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1849); - oavr_Parser_match($this, 105); - oavr_Recognizer_setState($this, 1850); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 1859); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 183, $this.$_ctx)) { - case 1: - break; - case 2: - f: { - oavr_Recognizer_setState($this, 1853); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 181, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1852); - oncipv_Cypher5Parser_matchMode($this); - } - oavr_Recognizer_setState($this, 1855); - oncipv_Cypher5Parser_patternList($this); - oavr_Recognizer_setState($this, 1857); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 301) - break e; - oavr_Recognizer_setState($this, 1856); - oncipv_Cypher5Parser_whereClause($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 1851); - oncipv_Cypher5Parser_regularQuery($this); - } - oavr_Recognizer_setState($this, 1861); - oavr_Parser_match($this, 217); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = oncip_AstRuleCtx_getChild($ctx, 0); + if (var$2 instanceof oncipv_Cypher25Parser$ConstraintTokenContext) + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_AllConstraintActions$_MODULE$); + else if (var$2 instanceof oncipv_Cypher25Parser$IndexTokenContext) + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_AllIndexActions$_MODULE$); + else { + if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5131)); + $rt_throw($ctx); + } + switch ((var$2.$getSymbol()).$getType0()) { + case 11: + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_AccessDatabaseAction$_MODULE$); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case 161: + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_AllTokenActions$_MODULE$); + break a; + case 253: + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_StartDatabaseAction$_MODULE$); + break a; + case 256: + var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_StopDatabaseAction$_MODULE$); + break a; + case 261: + var$3 = s_Tuple2__init_(oncia_TerminateTransactionAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$DatabasePrivilegeContext_userQualifier($ctx), new oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_00)); + break a; + case 271: + var$3 = s_Tuple2__init_(oncia_AllTransactionActions$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$DatabasePrivilegeContext_userQualifier($ctx), new oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_10)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $ctx = new jl_IllegalStateException; + jl_Throwable__init_0($ctx); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$2 = var$3.$_10; + var$3 = var$3.$_20; + var$4 = s_Tuple2__init_(var$2, var$3); + var$3 = var$4.$_10; + var$4 = var$4.$_20; + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$DatabaseScopeContext), 0)).$ast0; + $ctx.$ast0 = s_Tuple3__init_(oncia_DatabasePrivilege__init_0(var$3, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$, var$4); }, -oncipv_Cypher5Parser_countExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CountExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 252, 126); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1863); - oavr_Parser_match($this, 60); - oavr_Recognizer_setState($this, 1864); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 1873); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 186, $this.$_ctx)) { - case 1: - break; - case 2: - f: { - oavr_Recognizer_setState($this, 1867); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 184, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 1866); - oncipv_Cypher5Parser_matchMode($this); - } - oavr_Recognizer_setState($this, 1869); - oncipv_Cypher5Parser_patternList($this); - oavr_Recognizer_setState($this, 1871); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 301) - break e; - oavr_Recognizer_setState($this, 1870); - oncipv_Cypher5Parser_whereClause($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 1865); - oncipv_Cypher5Parser_regularQuery($this); - } - oavr_Recognizer_setState($this, 1875); - oavr_Parser_match($this, 217); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher25AstBuilder_exitDbmsPrivilege = ($this, $ctx) => { + oncipvaf_DdlPrivilegeBuilder_exitDbmsPrivilege($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitDbmsPrivilegeExecute = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AdminTokenContext), 0) !== null) + var$2 = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ExecuteAdminProcedureAction$_MODULE$); + else if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ProcedureTokenContext), 0) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExecuteFunctionQualifierContext), 0)).$ast0; + var$2 = oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_BOOSTED($ctx) === null ? s_Tuple2__init_(oncia_ExecuteFunctionAction$_MODULE$, var$3) : s_Tuple2__init_(oncia_ExecuteBoostedFunctionAction$_MODULE$, var$3); + } else { + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExecuteProcedureQualifierContext), 0)).$ast0; + var$2 = oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_BOOSTED($ctx) === null ? s_Tuple2__init_(oncia_ExecuteProcedureAction$_MODULE$, var$4) : s_Tuple2__init_(oncia_ExecuteBoostedProcedureAction$_MODULE$, var$4); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitDropPrivilege = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncipv_Cypher25Parser$DropPrivilegeContext_databaseScope($ctx) === null) { + var$2 = new oncia_DbmsPrivilege; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ActionForDBMSContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_DbmsPrivilege__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, var$2, s_None$_MODULE$); + } else { + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$IndexTokenContext), 0) === null ? oncia_DropConstraintAction$_MODULE$ : oncia_DropIndexAction$_MODULE$; + var$4 = (oncipv_Cypher25Parser$DropPrivilegeContext_databaseScope($ctx)).$ast0; + var$3 = new oncia_DatabasePrivilege; + oncipau_Util$_$callClinit(); + oncia_DatabasePrivilege__init_(var$3, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$2 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier($this, var$3, s_None$_MODULE$); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitLoadPrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + if (oncip_AstRuleCtx_getToken($ctx, 18, 0) !== null) { + var$2 = new s_Tuple3; + var$3 = new oncia_LoadPrivilege; + oncia_LoadAllDataAction$_$callClinit(); + var$4 = oncia_LoadAllDataAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_LoadPrivilege__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$2, var$3, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadAllQualifier__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); + } else if (oncip_AstRuleCtx_getToken($ctx, 283, 0) === null) { + var$2 = new s_Tuple3; + var$4 = new oncia_LoadPrivilege; + oncia_LoadCidrAction$_$callClinit(); + var$5 = oncia_LoadCidrAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_LoadPrivilege__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$2, var$4, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadCidrQualifier__init_((oncipv_Cypher25Parser$LoadPrivilegeContext_stringOrParameter($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); + } else { + var$2 = new s_Tuple3; + var$5 = new oncia_LoadPrivilege; + oncia_LoadUrlAction$_$callClinit(); + var$4 = oncia_LoadUrlAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_LoadPrivilege__init_(var$5, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$2, var$5, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadUrlQualifier__init_((oncipv_Cypher25Parser$LoadPrivilegeContext_stringOrParameter($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitQualifiedGraphPrivileges = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = oncip_AstRuleCtx_getToken($ctx, 69, 0) !== null ? s_Tuple2__init_(oncia_DeleteElementAction$_MODULE$, s_None$_MODULE$) : s_Tuple2__init_(oncia_MergeAdminAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesResourceContext), 0)).$ast0); + var$3 = var$2.$_10; + var$2 = var$2.$_20; + var$4 = s_Tuple2__init_(var$3, var$2); + var$2 = var$4.$_10; + var$4 = var$4.$_20; + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; + var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierContext), 0)).$ast0; + var$7 = new s_Tuple3; + var$8 = new oncia_GraphPrivilege; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$8, var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$7, var$8, var$4, var$6); + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher25AstBuilder_exitQualifiedGraphPrivilegesWithProperty = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = oncip_AstRuleCtx_getToken($ctx, 273, 0) !== null ? s_Tuple2__init_(oncia_TraverseAction$_MODULE$, s_None$_MODULE$) : s_Tuple2__init_(oncip_AstRuleCtx_getToken($ctx, 212, 0) === null ? oncia_MatchAction$_MODULE$ : oncia_ReadAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesResourceContext), 0)).$ast0); + var$3 = var$2.$_10; + var$2 = var$2.$_20; + var$4 = s_Tuple2__init_(var$3, var$2); + var$2 = var$4.$_10; + var$4 = var$4.$_20; + var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; + var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierContext), 0)).$ast0; + var$7 = new s_Tuple3; + var$8 = new oncia_GraphPrivilege; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$8, var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$7, var$8, var$4, var$6); + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher25AstBuilder_exitShowPrivilege = ($this, $ctx) => { + oncipvaf_DdlPrivilegeBuilder_exitShowPrivilege($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitSetPrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncip_AstRuleCtx_getToken($ctx, 65, 0) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; + if (oncip_AstRuleCtx_getToken($ctx, 138, 0) !== null) { + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelsResourceContext), 0)).$ast0; + var$5 = oncipvaf_DdlPrivilegeBuilder_labelAllQualifier($this, oncia_GraphPrivilege__init_0(oncia_SetLabelAction$_MODULE$, var$3, var$2), var$4, var$2); + } else { + var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesResourceContext), 0)).$ast0; + var$5 = s_Tuple3__init_(oncia_GraphPrivilege__init_0(oncia_SetPropertyAction$_MODULE$, var$3, var$2), var$6, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierContext), 0)).$ast0); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + } else + var$5 = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, oncia_DbmsPrivilege__init_(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordTokenContext), 0) !== null ? oncia_SetPasswordsAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 255, 0) !== null ? oncia_SetUserStatusAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 122, 0) !== null ? oncia_SetUserHomeDatabaseAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 28, 0) === null ? oncia_SetDatabaseAccessAction$_MODULE$ : oncia_SetAuthAction$_MODULE$, + var$2), s_None$_MODULE$); + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher25AstBuilder_exitRemovePrivilege = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + if (oncip_AstRuleCtx_getToken($ctx, 65, 0) === null) { + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; + var$4 = oncipvaf_DdlPrivilegeBuilder_labelAllQualifier($this, oncia_GraphPrivilege__init_0(oncia_RemoveLabelAction$_MODULE$, var$3, var$2), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelsResourceContext), 0)).$ast0, var$2); + } else + var$4 = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, oncia_DbmsPrivilege__init_(oncip_AstRuleCtx_getToken($ctx, 200, 0) === null ? oncia_RemoveRoleAction$_MODULE$ : oncia_RemovePrivilegeAction$_MODULE$, var$2), s_None$_MODULE$); + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher25AstBuilder_exitWritePrivilege = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; + var$3 = new s_Tuple3; + var$4 = new oncia_GraphPrivilege; + var$5 = oncia_WriteAction$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_GraphPrivilege__init_(var$4, var$5, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Tuple3__init_0(var$3, var$4, s_None$_MODULE$, sci_$colon$colon__init_(oncia_ElementsAllQualifier__init_0(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitNonEmptyStringList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +}, +oncipvaf_Cypher25AstBuilder_exitLabelsResource = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { + var$2 = new s_Some; + var$3 = new oncia_AllLabelResource; + oncipau_Util$_$callClinit(); + oncia_AllLabelResource__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Some__init_0(var$2, var$3); + } else { + var$2 = new s_Some; + var$3 = new oncia_LabelsResource; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NonEmptyStringListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_LabelsResource__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Some__init_0(var$2, var$3); } - return $_localctx; + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitPropertiesResource = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { + var$2 = new s_Some; + var$3 = new oncia_AllPropertyResource; + oncipau_Util$_$callClinit(); + oncia_AllPropertyResource__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Some__init_0(var$2, var$3); + } else { + var$2 = new s_Some; + var$3 = new oncia_PropertiesResource; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NonEmptyStringListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_PropertiesResource__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + s_Some__init_0(var$2, var$3); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitExecuteFunctionQualifier = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobsContext), 0)).$ast0; + var$3 = new oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_00; + var$3.$_0851 = $ctx; + $ctx.$ast0 = (var$2.$map(var$3)).$toList(); +}, +oncipvaf_Cypher25AstBuilder_exitExecuteProcedureQualifier = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobsContext), 0)).$ast0; + var$3 = new oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_00; + var$3.$_0961 = $ctx; + $ctx.$ast0 = (var$2.$map(var$3)).$toList(); +}, +oncipvaf_Cypher25AstBuilder_exitGlobs = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$GlobContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +}, +oncipvaf_Cypher25AstBuilder_exitGlob = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$GlobContext_escapedSymbolicNameString($ctx), new oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobRecursiveContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), var$3); + $ctx.$ast0 = jl_AbstractStringBuilder_toString(var$4); +}, +oncipvaf_Cypher25AstBuilder_exitGlobRecursive = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = (oncipv_Cypher25Parser$GlobRecursiveContext_globPart($ctx)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobRecursiveContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), var$3); + $ctx.$ast0 = jl_AbstractStringBuilder_toString(var$4); +}, +oncipvaf_Cypher25AstBuilder_exitGlobPart = ($this, $ctx) => { + let var$2, var$3; + if (oncipv_Cypher25Parser$GlobPartContext_DOT($ctx) !== null) { + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$GlobPartContext_escapedSymbolicNameString($ctx), new oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(var$3, 46); + jl_StringBuilder_append(var$3, var$2); + var$2 = jl_AbstractStringBuilder_toString(var$3); + } else + var$2 = oncip_AstRuleCtx_getToken($ctx, 208, 0) !== null ? $rt_s(5132) : oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null ? $rt_s(171) : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext), 0)).$ast0; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_collectExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CollectExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 254, 127); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1877); - oavr_Parser_match($this, 46); - oavr_Recognizer_setState($this, 1878); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 1879); - oncipv_Cypher5Parser_regularQuery($this); - oavr_Recognizer_setState($this, 1880); - oavr_Parser_match($this, 217); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher25AstBuilder_exitGraphQualifier = ($this, $ctx) => { + oncipvaf_DdlPrivilegeBuilder_exitGraphQualifier0($this, $ctx); +}; +let oncipvaf_Cypher25AstBuilder_exitGraphQualifierToken = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0); + if (var$2 instanceof oncipv_Cypher25Parser$RelTokenContext) + var$2 = oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$RelGraphToken($this); + else if (var$2 instanceof oncipv_Cypher25Parser$NodeTokenContext) + var$2 = oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken($this); + else { + if (!(var$2 instanceof oncipv_Cypher25Parser$ElementTokenContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5133)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken($this); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_numberLiteral = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NumberLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 256, 128); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1883); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 161) { - oavr_Recognizer_setState($this, 1882); - oavr_Parser_match($this, 161); - } - oavr_Recognizer_setState($this, 1885); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(240)), Long_ZERO)) { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else - $this.$_errHandler.$recoverInline($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; +oncipvaf_Cypher25AstBuilder_exitSettingQualifier = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobsContext), 0)).$ast0; + var$3 = new oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0; + var$3.$_0449 = $ctx; + $ctx.$ast0 = sc_IterableOnceOps_toList$(sci_ArraySeq_map(var$2, var$3)); }, -oncipv_Cypher5Parser_signedIntegerLiteral = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SignedIntegerLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 258, 129); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1888); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 161) { - oavr_Recognizer_setState($this, 1887); - oavr_Parser_match($this, 161); - } - oavr_Recognizer_setState($this, 1890); - oavr_Parser_match($this, 5); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_exitUserQualifier = ($this, $ctx) => { + let var$2, var$3; + if (oncipv_Cypher25Parser$UserQualifierContext_userNames($ctx) === null) { + var$2 = new sci_$colon$colon; + var$3 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$3, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$2, var$3, sci_Nil$_MODULE$); + } else + var$2 = sc_IterableOnceOps_toList$(sci_ArraySeq_map((oncipv_Cypher25Parser$UserQualifierContext_userNames($ctx)).$ast0, new oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitRoleNames = ($this, $ctx) => { + $ctx.$ast0 = (oncipv_Cypher25Parser$RoleNamesContext_symbolicNameOrStringParameterList($ctx)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitUserNames = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext), 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitDatabaseScope = ($this, $ctx) => { + let var$2, var$3; + if (oncip_AstRuleCtx_getToken($ctx, 122, 0) !== null) { + var$2 = new oncia_HomeDatabaseScope; + oncipau_Util$_$callClinit(); + oncia_HomeDatabaseScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { + var$2 = new oncia_AllDatabasesScope; + oncipau_Util$_$callClinit(); + oncia_AllDatabasesScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_NamedDatabasesScope; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_NamedDatabasesScope__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_listLiteral = $this => { - let $_localctx, $_la, var$3, var$4, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ListLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 260, 130); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1892); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 1901); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4291035135, 4022337519)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4025286655, 4294967267)), Long_ZERO))) { - var$4 = $_la - 192 | 0; - if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(3166697215, 4286545919)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 1893); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1898); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 49) - break e; - oavr_Recognizer_setState($this, 1894); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1895); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 1900); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1903); - oavr_Parser_match($this, 216); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_exitGraphScope = ($this, $ctx) => { + let var$2, var$3; + if (oncip_AstRuleCtx_getToken($ctx, 122, 0) !== null) { + var$2 = new oncia_HomeGraphScope; + oncipau_Util$_$callClinit(); + oncia_HomeGraphScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { + var$2 = new oncia_AllGraphsScope; + oncipau_Util$_$callClinit(); + oncia_AllGraphsScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncia_NamedGraphsScope; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameListContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_NamedGraphsScope__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; -}; -let oncipv_Cypher5Parser_propertyKeyName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PropertyKeyNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 262, 131); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1905); - oncipv_Cypher5Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitAdminToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitConstraintToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreateConstraintAction$_MODULE$; +}, +oncipvaf_Cypher25AstBuilder_exitCreateNodePrivilegeToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreateNodeLabelAction$_MODULE$; +}, +oncipvaf_Cypher25AstBuilder_exitCreatePropertyPrivilegeToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreatePropertyKeyAction$_MODULE$; +}, +oncipvaf_Cypher25AstBuilder_exitCreateRelPrivilegeToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreateRelationshipTypeAction$_MODULE$; +}, +oncipvaf_Cypher25AstBuilder_exitElementToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitIndexToken = ($this, $ctx) => { + $ctx.$ast0 = oncia_CreateIndexAction$_MODULE$; +}, +oncipvaf_Cypher25AstBuilder_exitNodeToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitPasswordToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitPrivilegeToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitProcedureToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitRelToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitRoleToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitTransactionToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitFunctionToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitAscToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitDescToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitSettingToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitPrimaryToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitSecondaryToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitSecondsToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitGroupToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitPathToken = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitShowCommand = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; + if ($rt_isInstance(var$2, sci_Seq)) + var$2 = oncia_SingleQuery__init_0(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitTerminateCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitYieldItem = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext)); + var$3 = (var$2.$get0(0)).$ast0; + if (var$2.$size() == 1) { + var$4 = new oncia_UnaliasedReturnItem; + oncipau_Util$_$callClinit(); + oncia_UnaliasedReturnItem__init_0(var$4, var$3, oncipau_Util$_inputText(oncipau_Util$_MODULE$, var$2.$get0(0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$4 = new oncia_AliasedReturnItem; + var$2 = (var$2.$get0(1)).$ast0; + oncipau_Util$_$callClinit(); + oncia_AliasedReturnItem__init_0(var$4, var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_parameter = ($this, $paramType) => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - $_localctx.$paramType2 = $paramType; - oavr_Parser_enterRule($this, $_localctx, 264, 132); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1907); - oavr_Parser_match($this, 80); - oavr_Recognizer_setState($this, 1908); - oncipv_Cypher5Parser_parameterName($this, $paramType); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $paramType = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $paramType = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($paramType); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_exitYieldSkip = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_Skip; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SignedIntegerLiteralContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_Skip__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitYieldLimit = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_Limit; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SignedIntegerLiteralContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_Limit__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitOrderBy = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_OrderBy; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$OrderItemContext)); + sr_ClassTag$_$callClinit(); + oncia_OrderBy__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SortItem))), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 187, 0)).$getSymbol())); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitYieldClause = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { + var$2 = new oncia_ReturnItems; + s_package$_$callClinit(); + var$3 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + oncia_ReturnItems$_$callClinit(); + var$4 = s_None$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_ReturnItems__init_(var$2, 1, var$3, var$4, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 299, 0)).$getSymbol())); + } else { + var$2 = new oncia_ReturnItems; + oncipau_Util$_$callClinit(); + var$5 = oncipau_Util$_MODULE$; + var$6 = oncipv_Cypher25Parser$YieldClauseContext_yieldItem($ctx); + sr_ClassTag$_$callClinit(); + var$4 = oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_ReturnItem))); + oncia_ReturnItems$_$callClinit(); + oncia_ReturnItems__init_(var$2, 0, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, (oncipv_Cypher25Parser$YieldClauseContext_yieldItem($ctx)).$get0(0))); } - return $_localctx; + var$4 = new oncia_Yield; + oncipau_Util$_$callClinit(); + oncia_Yield__init_(var$4, var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$OrderByContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$YieldSkipContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$YieldLimitContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, + $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_parameterName = ($this, $paramType) => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ParameterNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - $_localctx.$paramType0 = $paramType; - oavr_Parser_enterRule($this, $_localctx, 266, 133); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1912); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 5: - oavr_Recognizer_setState($this, 1911); - oavr_Parser_match($this, 5); - break e; - case 6: - case 7: - case 8: - case 9: - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 1910); - oncipv_Cypher5Parser_symbolicNameString($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $paramType = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $paramType = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($paramType); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_exitShowCommandYield = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$YieldClauseContext), 0); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0); + if (var$2 === null) { + s_package$_$callClinit(); + var$4 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), var$3.$ast0); + } else { + s_package$_$callClinit(); + var$3 = s_package$_Left(s_package$_MODULE$); + var$5 = new s_Tuple2; + var$6 = var$2.$ast0; + oncipau_Util$_$callClinit(); + s_Tuple2__init_0(var$5, var$6, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ReturnClauseContext), 0))); + var$4 = su_Left$_apply(var$3, var$5); } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_functionInvocation = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$FunctionInvocationContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 268, 134); +oncipvaf_Cypher25AstBuilder_exitComposableCommandClauses = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitComposableShowCommandClauses = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitShowIndexCommand = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$3 = s_Option_getOrElse(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowIndexTypeContext), 0)), new oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0); + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowIndexesEndContext), 0)).$ast0; + var$5 = oncia_ShowIndexesClause$_MODULE$; + var$6 = var$4.$where1; + var$7 = var$4.$yieldedItems0; + var$8 = var$4.$yieldAll1; + var$9 = var$4.$yieldClause2; + var$10 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_00; + var$10.$_01115 = var$4; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$4, oncia_ShowIndexesClause$_apply(var$5, var$3, var$6, var$7, var$8, s_Option_map(var$9, var$10), var$2)); +}, +oncipvaf_Cypher25AstBuilder_exitShowIndexType = ($this, $ctx) => { + let var$2; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1914); - oncipv_Cypher5Parser_functionName($this); - oavr_Recognizer_setState($this, 1915); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 1917); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 192, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 1916); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 81) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - f: { - oavr_Recognizer_setState($this, 1927); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221225456, 4294737919)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4291035135, 4022337519)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4025286655, 4294967267)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697215, 4286545919)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break f; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break f; - } - } - } - } - oavr_Recognizer_setState($this, 1919); - oncipv_Cypher5Parser_functionArgument($this); - oavr_Recognizer_setState($this, 1924); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 49) - break f; - oavr_Recognizer_setState($this, 1920); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1921); - oncipv_Cypher5Parser_functionArgument($this); - oavr_Recognizer_setState($this, 1926); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 1929); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0()) { + case 18: + oncia_AllIndexes$_$callClinit(); + var$2 = oncia_AllIndexes$_MODULE$; + break a; + case 111: + break; + case 150: + var$2 = oncia_LookupIndexes$_MODULE$; + break a; + case 195: + var$2 = oncia_PointIndexes$_MODULE$; + break a; + case 209: + var$2 = oncia_RangeIndexes$_MODULE$; + break a; + case 262: + var$2 = oncia_TextIndexes$_MODULE$; + break a; + case 290: + var$2 = oncia_VectorIndexes$_MODULE$; + break a; + default: + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5134)); + $rt_throw($ctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncia_FulltextIndexes$_MODULE$; } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_functionArgument = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$FunctionArgumentContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 270, 135); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1931); - oncipv_Cypher5Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher25AstBuilder_exitShowIndexesEnd = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$2.$names1); +}, +oncipvaf_Cypher25AstBuilder_exitShowConstraintCommand = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + if ($ctx instanceof oncipv_Cypher25Parser$ShowConstraintAllContext) { + var$3 = $ctx; + var$4 = oncia_AllConstraints$_MODULE$; + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$4, var$2); + } else if ($ctx instanceof oncipv_Cypher25Parser$ShowConstraintExistContext) { + var$5 = $ctx; + if (oncip_AstRuleCtx_getToken(oavr_ParserRuleContext_getRuleContext(var$5, $rt_cls(oncipv_Cypher25Parser$ConstraintExistTypeContext), 0), 205, 0) === null) + var$4 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, oncipv_Cypher25Parser$ShowConstraintExistContext_showConstraintEntity(var$5), oncia_NodeAllExistsConstraints$_MODULE$, oncia_RelAllExistsConstraints$_MODULE$, oncia_AllExistsConstraints$_MODULE$); + else { + var$6 = oncipv_Cypher25Parser$ShowConstraintExistContext_showConstraintEntity(var$5); + oncia_NodePropExistsConstraintsCypher25$_$callClinit(); + var$3 = oncia_NodePropExistsConstraintsCypher25$_MODULE$; + oncia_RelPropExistsConstraintsCypher25$_$callClinit(); + var$4 = oncia_RelPropExistsConstraintsCypher25$_MODULE$; + oncia_PropExistsConstraintsCypher25$_$callClinit(); + var$4 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, var$6, var$3, var$4, oncia_PropExistsConstraintsCypher25$_MODULE$); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$5, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$4, var$2); + } else if ($ctx instanceof oncipv_Cypher25Parser$ShowConstraintKeyContext) { + var$3 = $ctx; + var$4 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$ShowConstraintEntityContext), 0), oncia_NodeKeyConstraints$_MODULE$, oncia_RelKeyConstraints$_MODULE$, oncia_KeyConstraints$_MODULE$); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$4, var$2); + } else if ($ctx instanceof oncipv_Cypher25Parser$ShowConstraintPropTypeContext) { + var$3 = $ctx; + var$4 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$ShowConstraintEntityContext), 0), oncia_NodePropTypeConstraints$_MODULE$, oncia_RelPropTypeConstraints$_MODULE$, oncia_PropTypeConstraints$_MODULE$); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$4, var$2); + } else { + if (!($ctx instanceof oncipv_Cypher25Parser$ShowConstraintUniqueContext)) { + var$2 = new jl_IllegalStateException; + jl_Throwable__init_(var$2, $rt_s(5113)); + $rt_throw(var$2); + } + var$4 = $ctx; + var$7 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$ShowConstraintEntityContext), 0), oncia_NodeUniqueConstraintsCypher25$_MODULE$, oncia_RelUniqueConstraintsCypher25$_MODULE$, oncia_UniqueConstraintsCypher25$_MODULE$); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$7, var$2); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_functionName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$FunctionNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 272, 136); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1933); - oncipv_Cypher5Parser_namespace($this); - oavr_Recognizer_setState($this, 1934); - oncipv_Cypher5Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_exitConstraintExistType = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitShowConstraintEntity = ($this, $ctx) => { + $ctx.$ast0 = $ctx instanceof oncipv_Cypher25Parser$NodeEntityContext ? oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Node($this) : !($ctx instanceof oncipv_Cypher25Parser$RelEntityContext) ? oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$NoEntity($this) : oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Rel($this); +}, +oncipvaf_Cypher25AstBuilder_exitShowConstraintsEnd = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$2.$names1); +}, +oncipvaf_Cypher25AstBuilder_exitShowProcedures = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$2.$names1); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExecutableByContext), 0)); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$5 = oncia_ShowProceduresClause$_MODULE$; + var$6 = var$2.$where1; + var$7 = var$2.$yieldedItems0; + var$8 = var$2.$yieldAll1; + var$9 = var$2.$yieldClause2; + var$10 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_0; + var$10.$_0311 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_ShowProceduresClause$_apply(var$5, var$3, var$6, var$7, var$8, s_Option_map(var$9, var$10), var$4)); +}, +oncipvaf_Cypher25AstBuilder_exitShowFunctions = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$2.$names1); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowFunctionsTypeContext), 0), new oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0); + var$4 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExecutableByContext), 0)); + var$5 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$6 = oncia_ShowFunctionsClause$_MODULE$; + var$7 = var$2.$where1; + var$8 = var$2.$yieldedItems0; + var$9 = var$2.$yieldAll1; + var$10 = var$2.$yieldClause2; + var$11 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_00; + var$11.$_069 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_ShowFunctionsClause$_apply(var$6, var$3, var$4, var$7, var$8, var$9, s_Option_map(var$10, var$11), var$5)); +}, +oncipvaf_Cypher25AstBuilder_exitShowFunctionsType = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 36, 0) !== null ? oncia_BuiltInFunctions$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 285, 0) === null ? oncia_AllFunctions$_MODULE$ : oncia_UserDefinedFunctions$_MODULE$; +}; +let oncipvaf_Cypher25AstBuilder_exitExecutableBy = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher25Parser$ExecutableByContext_symbolicNameString($ctx) === null) { + oncia_CurrentUser$_$callClinit(); + var$2 = oncia_CurrentUser$_MODULE$; + } else + var$2 = oncia_User__init_((oncipv_Cypher25Parser$ExecutableByContext_symbolicNameString($ctx)).$ast0); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitShowTransactions = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamesAndClausesContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + oncia_ShowTransactionsClause$_$callClinit(); + var$4 = oncia_ShowTransactionsClause$_MODULE$; + var$5 = var$2.$names1; + var$6 = var$2.$where1; + var$7 = var$2.$yieldedItems0; + var$8 = var$2.$yieldAll1; + var$9 = var$2.$yieldClause2; + var$10 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_0; + var$10.$_0807 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_ShowTransactionsClause$_apply(var$4, var$5, var$6, var$7, var$8, s_Option_map(var$9, var$10), 0, var$3)); +}, +oncipvaf_Cypher25AstBuilder_exitTerminateTransactions = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringsOrExpressionContext), 0)).$ast0; + var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$4); + var$5 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$6 = oncia_TerminateTransactionsClause$_MODULE$; + var$7 = var$2.$names1; + var$4 = var$2.$yieldedItems0; + var$8 = var$2.$yieldAll1; + var$3 = var$2.$yieldClause2; + var$9 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_00; + var$9.$_0473 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_TerminateTransactionsClause$_apply(var$6, var$7, var$4, var$8, s_Option_map(var$3, var$9), s_Option_map(var$2.$where1, new oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_10), var$5)); +}, +oncipvaf_Cypher25AstBuilder_exitShowSettings = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamesAndClausesContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$4 = oncia_ShowSettingsClause$_MODULE$; + var$5 = var$2.$names1; + var$6 = var$2.$where1; + var$7 = var$2.$yieldedItems0; + var$8 = var$2.$yieldAll1; + var$9 = var$2.$yieldClause2; + var$10 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_0; + var$10.$_01058 = var$2; + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_ShowSettingsClause$_apply(var$4, var$5, var$6, var$7, var$8, s_Option_map(var$9, var$10), var$3)); +}, +oncipvaf_Cypher25AstBuilder_exitNamesAndClauses = ($this, $ctx) => { + let var$2, var$3, var$4; + oncipau_Util$_$callClinit(); + var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); + var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); + var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringsOrExpressionContext), 0), new oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0); + $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$4); +}, +oncipvaf_Cypher25AstBuilder_exitStringsOrExpression = ($this, $ctx) => { + let var$2, var$3; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringListContext), 0); + if (var$2 === null) { + s_package$_$callClinit(); + var$3 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0); + } else { + s_package$_$callClinit(); + var$3 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (var$2.$ast0.$map(new oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0)).$toList()); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_namespace = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NamespaceContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 274, 137); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1941); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 195, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1936); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1937); - oavr_Parser_match($this, 83); - } - oavr_Recognizer_setState($this, 1943); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 195, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_exitStringList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_StringLiteral))); +}, +oncipvaf_Cypher25AstBuilder_exitShowServers = ($this, $ctx) => { + let var$2; + oncia_ShowServers$_$callClinit(); + var$2 = oncia_ShowServers$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowServers$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitShowRoles = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncia_ShowRoles$_MODULE$; + var$3 = oncip_AstRuleCtx_getToken($ctx, 295, 0) === null ? 0 : 1; + var$4 = oncip_AstRuleCtx_getToken($ctx, 196, 0) !== null ? 0 : 1; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowRoles$_apply(var$2, var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitShowUsers = ($this, $ctx) => { + let var$2; + var$2 = oncia_ShowUsers$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowUsers$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncip_AstRuleCtx_getToken($ctx, 28, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitShowCurrentUser = ($this, $ctx) => { + let var$2; + var$2 = oncia_ShowCurrentUser$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowCurrentUser$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitShowSupportedPrivileges = ($this, $ctx) => { + let var$2; + var$2 = oncia_ShowSupportedPrivilegeCommand$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowSupportedPrivilegeCommand$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitShowPrivileges = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0); + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); + var$3 = var$2.$_1$mcZ$sp0; + var$4 = var$2.$_2$mcZ$sp0; + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)); + $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, oncia_ShowAllPrivileges__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, oncia_ShowAllPrivileges__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitShowRolePrivileges = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0); + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); + var$3 = var$2.$_1$mcZ$sp0; + var$4 = var$2.$_2$mcZ$sp0; + var$2 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)); + var$5 = oncia_ShowRolesPrivileges__init_((oncipv_Cypher25Parser$RoleNamesContext_symbolicNameOrStringParameterList(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0))).$ast0.$toList(), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, var$5, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, var$5, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitShowUserPrivileges = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0); + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); + var$3 = var$2.$_1$mcZ$sp0; + var$4 = var$2.$_2$mcZ$sp0; + var$5 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserNamesContext), 0); + var$2 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)); + var$6 = var$5 === null ? oncia_ShowUserPrivileges__init_(s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowUsersPrivileges__init_(var$5.$ast0.$toList(), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, var$6, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, var$6, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitPrivilegeAsCommand = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2$mcZZ$sp__init_(oncip_AstRuleCtx_getToken($ctx, 23, 0) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 228, 0) === null ? 0 : 1); +}, +oncipvaf_Cypher25AstBuilder_exitShowDatabase = ($this, $ctx) => { + let var$2, var$3; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0); + if (var$2 !== null) { + var$3 = new oncia_SingleNamedDatabaseScope; + var$2 = var$2.$ast0; + oncipau_Util$_$callClinit(); + oncia_SingleNamedDatabaseScope__init_(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (oncip_AstRuleCtx_getToken($ctx, 122, 0) !== null) { + var$3 = new oncia_HomeDatabaseScope; + oncipau_Util$_$callClinit(); + oncia_HomeDatabaseScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else if (oncip_AstRuleCtx_getToken($ctx, 67, 0) === null) { + var$3 = new oncia_AllDatabasesScope; + oncipau_Util$_$callClinit(); + oncia_AllDatabasesScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$3 = new oncia_DefaultDatabaseScope; + oncipau_Util$_$callClinit(); + oncia_DefaultDatabaseScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - return $_localctx; + var$2 = oncia_ShowDatabase$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowDatabase$_apply(var$2, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); }, -oncipv_Cypher5Parser_variable = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$VariableContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 276, 138); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1944); - oncipv_Cypher5Parser_symbolicNameString($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher25AstBuilder_exitShowAliases = ($this, $ctx) => { + let var$2; + var$2 = oncia_ShowAliases$_MODULE$; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncia_ShowAliases$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AliasNameContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitCreateCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitCreateConstraint = ($this, $ctx) => { + oncipvaf_DdlCreateBuilder_exitCreateConstraint($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitConstraintType = ($this, $ctx) => { + let var$2, var$3, var$4; + if ($ctx instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) + var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); + else if ($ctx instanceof oncipv_Cypher25Parser$ConstraintTypedContext) { + var$3 = $ctx; + var$4 = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0; + var$3 = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$TypeContext), 0)).$ast0; + var$2 = s_Tuple2__init_(var$4, s_Some__init_(var$3)); + } else if ($ctx instanceof oncipv_Cypher25Parser$ConstraintIsUniqueContext) + var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); + else { + if (!($ctx instanceof oncipv_Cypher25Parser$ConstraintKeyContext)) { + var$3 = new jl_IllegalStateException; + jl_Throwable__init_(var$3, $rt_s(5111)); + $rt_throw(var$3); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_nonEmptyNameList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NonEmptyNameListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 278, 139); +oncipvaf_Cypher25AstBuilder_exitCreateIndex = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitCreateIndex_ = ($this, $ctx) => { + oncipvaf_DdlCreateBuilder_exitCreateIndex_($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitCreateFulltextIndex = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = $ctx.$parent.$parent; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1); + var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0); + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)); + var$6 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$FulltextNodePatternContext), 0); + var$7 = var$6 === null ? 0 : 1; + var$8 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$EnclosedPropertyListContext), 0)).$ast0.$toList(); + if (var$7) { + var$9 = var$6.$ast0; + if (var$9 === null) + $rt_throw(s_MatchError__init_(var$9)); + var$10 = s_Tuple2__init_(var$9.$_1(), var$9.$_2()); + var$9 = var$10.$_10; + var$6 = var$10.$_20; + var$9 = oncia_CreateIndex$_createFulltextNodeIndex(oncia_CreateIndex$_MODULE$, var$9, var$6, var$8, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } else { + var$9 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$FulltextRelPatternContext), 0)).$ast0; + if (var$9 === null) + $rt_throw(s_MatchError__init_(var$9)); + var$10 = s_Tuple2__init_(var$9.$_1(), var$9.$_2()); + var$6 = var$10.$_10; + var$10 = var$10.$_20; + var$9 = oncia_CreateIndex$_createFulltextRelationshipIndex(oncia_CreateIndex$_MODULE$, var$6, var$10, var$8, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } + $ctx.$ast0 = var$9; +}, +oncipvaf_Cypher25AstBuilder_exitFulltextNodePattern = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = new s_Tuple2; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); + var$6 = new oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0; + sr_ClassTag$_$callClinit(); + s_Tuple2__init_0(var$2, var$3, sc_IterableOnceOps_toList$(oncipau_Util$_astSeqPositioned(var$4, var$5, var$6, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitFulltextRelPattern = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = new s_Tuple2; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_MODULE$; + var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); + var$6 = new oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0; + sr_ClassTag$_$callClinit(); + s_Tuple2__init_0(var$2, var$3, sc_IterableOnceOps_toList$(oncipau_Util$_astSeqPositioned(var$4, var$5, var$6, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_RelTypeName))))); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitLookupIndexNodePattern = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitLookupIndexRelPattern = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitCreateLookupIndex = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; + var$2 = $ctx.$parent.$parent; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1); + var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0); + var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)); + var$6 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LookupIndexNodePatternContext), 0); + var$7 = var$6 === null ? 0 : 1; + var$8 = oncipv_Cypher25Parser$CreateLookupIndexContext_symbolicNameString($ctx); + var$9 = oncipau_Util$_pos(oncipau_Util$_MODULE$, var$8); + var$10 = new oncie_FunctionInvocation; + var$11 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, var$8.$ast0, var$9); + s_package$_$callClinit(); + var$12 = s_package$_IndexedSeq(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$13 = $rt_createArray(oncie_Variable, 1); + var$13.data[0] = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; + var$8 = sc_SeqFactory$Delegate_apply(var$12, sr_ScalaRunTime$_wrapRefArray(var$8, var$13)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$10, var$11, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, var$9); + var$8 = var$7 ? var$6.$ast0 : (oncipv_Cypher25Parser$CreateLookupIndexContext_lookupIndexRelPattern($ctx)).$ast0; + $ctx.$ast0 = oncia_CreateIndex$_createLookupIndex(oncia_CreateIndex$_MODULE$, var$8, var$7, var$10, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher25AstBuilder_exitCreateRole = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$2 = $ctx.$parent; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext)); + if (var$3.$size() <= 1) + var$4 = s_None$_MODULE$; + else { + onciu_AssertionRunner_$callClinit(); + if (onciu_AssertionRunner_ASSERTIONS_ENABLED && var$3.$size() != 2) + $rt_throw(jl_AssertionError__init_($rt_s(35))); + var$4 = s_Some__init_((var$3.$get0(1)).$ast0); + } + var$5 = new oncia_CreateRole; + var$6 = (var$3.$get0(0)).$ast0; + var$7 = oncip_AstRuleCtx_getToken($ctx, 126, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_CreateRole__init_(var$5, var$6, var$7, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + $ctx.$ast0 = var$5; +}, +oncipvaf_Cypher25AstBuilder_exitCreateUser = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $ctx.$parent; + var$3 = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0); + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + var$3 = sci_List_foldLeft(var$3, sci_Nil$_MODULE$, new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1); + var$3 = sci_List_foldLeft(sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordChangeRequiredContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2), var$3, new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3); + var$4 = new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4; + onciu_InputPosition$_$callClinit(); + var$5 = var$3.$sortBy(var$4, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); + if (!sc_IterableOnceOps_nonEmpty$(var$5)) + var$4 = s_None$_MODULE$; + else { + var$4 = new s_Some; + var$6 = new oncia_Auth; + oncia_AdministrationCommand$_$callClinit(); + oncia_Auth__init_(var$6, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), var$5, (var$5.$head()).$position()); + s_Some__init_0(var$4, var$6); + } + var$5 = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SetAuthClauseContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateUserContext_userStatus($ctx), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6); + var$6 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateUserContext_homeDatabase($ctx), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7); + $ctx.$ast0 = oncia_CreateUser__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0, oncia_UserOptions__init_(var$3, var$6), oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1), var$5, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher25AstBuilder_exitCreateCompositeDatabase = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = $ctx.$parent; + var$3 = new oncia_CreateCompositeDatabase; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$DatabaseNameContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_CreateCompositeDatabase__init_(var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, + $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitCreateDatabase = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$2 = $ctx.$parent; + if (oncip_AstRuleCtx_getToken($ctx, 269, 0) === null) + var$3 = s_None$_MODULE$; + else { + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateDatabaseContext_primaryTopology($ctx), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0); + var$5 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateDatabaseContext_secondaryTopology($ctx), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1); + var$3 = s_Some__init_(oncia_Topology__init_(var$4, var$5)); + } + var$6 = new oncia_CreateDatabase; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$DatabaseNameContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_CreateDatabase__init_(var$6, var$7, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, + $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3), var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + $ctx.$ast0 = var$6; +}, +oncipvaf_Cypher25AstBuilder_exitCreateAlias = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = $ctx.$parent; + var$3 = (oncipv_Cypher25Parser$CreateAliasContext_aliasName($ctx)).$ast0; + var$4 = (oncipv_Cypher25Parser$CreateAliasContext_aliasTargetName($ctx)).$ast0; + var$5 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; + var$6 = oncip_AstRuleCtx_getToken($ctx, 204, 0) === null ? s_None$_MODULE$ : oncipv_Cypher25Parser$CreateAliasContext_DRIVER($ctx) === null ? s_Some__init_((oncipv_Cypher25Parser$CreateAliasContext_mapOrParameter($ctx, 0)).$ast0) : s_Some__init_((oncipv_Cypher25Parser$CreateAliasContext_mapOrParameter($ctx, 1)).$ast0); + if (oncipv_Cypher25Parser$CreateAliasContext_AT($ctx) === null) { + var$7 = new oncia_CreateLocalDatabaseAlias; + oncipau_Util$_$callClinit(); + oncia_CreateLocalDatabaseAlias__init_(var$7, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, var$5), var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } else { + var$8 = oncipv_Cypher25Parser$CreateAliasContext_DRIVER($ctx) === null ? s_None$_MODULE$ : s_Some__init_((oncipv_Cypher25Parser$CreateAliasContext_mapOrParameter($ctx, 0)).$ast0); + var$7 = new oncia_CreateRemoteDatabaseAlias; + oncipau_Util$_$callClinit(); + oncia_CreateRemoteDatabaseAlias__init_(var$7, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, var$5), (oncipv_Cypher25Parser$CreateAliasContext_stringOrParameter($ctx)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordExpressionContext), 0)).$ast0, var$8, var$6, + oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } + $ctx.$ast0 = var$7; +}, +oncipvaf_Cypher25AstBuilder_exitCommandOptions = ($this, $ctx) => { + let var$2, var$3; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MapOrParameterContext), 0)).$ast0; + if (var$2 instanceof su_Left) + var$3 = oncia_OptionsMap__init_0(var$2.$value6); + else { + if (!(var$2 instanceof su_Right)) + $rt_throw(s_MatchError__init_(var$2)); + var$3 = oncia_OptionsParam__init_(var$2.$value7); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitMapOrParameter = ($this, $ctx) => { + let var$2, var$3; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MapContext), 0); + if (var$2 === null) { + s_package$_$callClinit(); + var$3 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0); + } else { + s_package$_$callClinit(); + var$3 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), sc_AbstractIterable_toMap(var$2.$ast0.$items1.$map(new oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_00), s_$less$colon$less$_singleton)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitCommand = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1946); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1951); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 1947); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 1948); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 1953); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UseClauseContext), 0); + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx); + if (!(var$3 instanceof oncipv_Cypher25Parser$ShowCommandContext)) { + if (!(var$3 instanceof oncipv_Cypher25Parser$TerminateCommandContext)) + var$4 = var$3.$ast0.$withGraph0(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$2)); + else { + var$3 = var$3; + if (var$2 === null) + var$4 = oncia_SingleQuery__init_0(var$3.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + else { + var$4 = new oncia_SingleQuery; + var$2 = var$2.$ast0; + oncia_SingleQuery__init_(var$4, var$3.$ast0.$$plus$colon(var$2), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + } else { + var$4 = var$3.$ast0; + if (var$4 instanceof oncia_SingleQuery) { + var$3 = var$4; + if (var$2 !== null) { + var$4 = new oncia_SingleQuery; + var$2 = var$2.$ast0; + oncia_SingleQuery__init_(var$4, var$3.$clauses0.$prepended(var$2), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if ($rt_isInstance(var$4, oncia_StatementWithGraph)) { + var$3 = var$4; + if (var$2 !== null) + var$4 = var$3.$withGraph0(s_Some__init_(var$2.$ast0)); + } } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_type = $this => { - let $_localctx, $_alt, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$TypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 280, 140); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1954); - oncipv_Cypher5Parser_typePart($this); - oavr_Recognizer_setState($this, 1959); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 197, $this.$_ctx); - while ($_alt != 2 && $_alt) { - if ($_alt == 1) { - oavr_Recognizer_setState($this, 1955); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 1956); - oncipv_Cypher5Parser_typePart($this); - } - oavr_Recognizer_setState($this, 1961); - $this.$_errHandler.$sync($this); - $_alt = oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 197, $this.$_ctx); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncipvaf_Cypher25AstBuilder_exitDropCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitCommandNodePattern = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelTypeContext), 0)).$ast0); +}, +oncipvaf_Cypher25AstBuilder_exitCommandRelPattern = ($this, $ctx) => { + $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RelTypeContext), 0)).$ast0); +}, +oncipvaf_Cypher25AstBuilder_exitDropConstraint = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); + var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0); + $ctx.$ast0 = oncia_DropConstraintOnName__init_(var$3.$ast0, oncipv_Cypher25Parser$DropConstraintContext_EXISTS($ctx) === null ? 0 : 1, s_None$_MODULE$, var$2); +}, +oncipvaf_Cypher25AstBuilder_exitDropIndex = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0); + var$3 = new oncia_DropIndexOnName; + var$4 = var$2.$ast0; + var$5 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; + var$6 = s_None$_MODULE$; + oncipau_Util$_$callClinit(); + oncia_DropIndexOnName__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitPropertyList = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$EnclosedPropertyListContext), 0); + if (var$2 !== null) + var$2 = var$2.$ast0; + else { + var$3 = sci_ArraySeq$_MODULE$; + var$2 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_Property, 1); + var$5 = var$4.data; + var$6 = new oncie_Property; + var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; + var$8 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncie_Property__init_0(var$6, var$7, var$8, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$5[0] = var$6; + var$2 = sr_ScalaRunTime$_wrapRefArray(var$2, var$4); + sr_ClassTag$_$callClinit(); + var$2 = sci_ArraySeq$_from(var$3, var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property))); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitEnclosedPropertyList = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = sci_ArraySeq_map(oncipau_Util$_astPairs(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext)), oncipv_Cypher25Parser$EnclosedPropertyListContext_property($ctx)), new oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_00); +}, +oncipvaf_Cypher25AstBuilder_exitAlterCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitRenameCommand = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitEnableServerCommand = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_EnableServer; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_EnableServer__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitAlterServer = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_AlterServer; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0)).$ast0; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_AlterServer__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitRenameServer = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext)); + var$3 = new oncia_RenameServer; + var$4 = (var$2.$get0(0)).$ast0; + var$2 = (var$2.$get0(1)).$ast0; + oncipau_Util$_$callClinit(); + oncia_RenameServer__init_(var$3, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitDropServer = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_DropServer; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_DropServer__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}; +let oncipvaf_Cypher25AstBuilder_exitAllocationCommand = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncip_AstRuleCtx_getToken($ctx, 84, 0) === null ? 0 : 1; + if (oncipv_Cypher25Parser$AllocationCommandContext_reallocateDatabases($ctx) !== null) { + var$3 = new oncia_ReallocateDatabases; + oncipau_Util$_$callClinit(); + oncia_ReallocateDatabases__init_(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AllocationCommandContext_reallocateDatabases($ctx))); + } else { + var$3 = new oncia_DeallocateServers; + var$4 = (oncipv_Cypher25Parser$AllocationCommandContext_deallocateDatabaseFromServers($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncia_DeallocateServers__init_(var$3, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AllocationCommandContext_deallocateDatabaseFromServers($ctx))); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitDeallocateDatabaseFromServers = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(su_Either))); +}, +oncipvaf_Cypher25AstBuilder_exitReallocateDatabases = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitDropRole = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_DropRole; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_DropRole__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitRenameRole = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext)); + var$3 = new oncia_RenameRole; + var$4 = (var$2.$get0(0)).$ast0; + var$5 = (var$2.$get0(1)).$ast0; + var$6 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_RenameRole__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitDropUser = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_DropUser; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_DropUser__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitRenameUser = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext)); + var$3 = new oncia_RenameUser; + var$4 = (var$2.$get0(0)).$ast0; + var$5 = (var$2.$get0(1)).$ast0; + var$6 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_RenameUser__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitAlterCurrentUser = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_SetOwnPassword; + var$3 = (oncipv_Cypher25Parser$AlterCurrentUserContext_passwordExpression($ctx, 1)).$ast0; + var$4 = (oncipv_Cypher25Parser$AlterCurrentUserContext_passwordExpression($ctx, 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_SetOwnPassword__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitAlterUser = ($this, $ctx) => { + oncipvaf_DdlBuilder_exitAlterUser($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitRemoveNamedProvider = ($this, $ctx) => { + $ctx.$ast0 = oncipv_Cypher25Parser$RemoveNamedProviderContext_stringLiteral($ctx) !== null ? (oncipv_Cypher25Parser$RemoveNamedProviderContext_stringLiteral($ctx)).$ast0 : oncipv_Cypher25Parser$RemoveNamedProviderContext_stringListLiteral($ctx) !== null ? (oncipv_Cypher25Parser$RemoveNamedProviderContext_stringListLiteral($ctx)).$ast0 : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitSetAuthClause = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$UserAuthAttributeContext)); + sr_ClassTag$_$callClinit(); + var$3 = sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_AuthAttribute)))); + $ctx.$ast0 = oncia_Auth__init_0(var$2.$value8, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitUserAuthAttribute = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncipv_Cypher25Parser$UserAuthAttributeContext_ID($ctx) !== null) { + var$2 = new oncia_AuthId; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterExpressionContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_AuthId__init_(var$2, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$UserAuthAttributeContext_ID($ctx))); + } else if (oncipv_Cypher25Parser$UserAuthAttributeContext_passwordOnly($ctx) !== null) + var$2 = (oncipv_Cypher25Parser$UserAuthAttributeContext_passwordOnly($ctx)).$ast0; + else { + var$2 = new oncia_PasswordChange; + var$4 = sr_BoxesRunTime_unboxToBoolean((oncipv_Cypher25Parser$UserAuthAttributeContext_passwordChangeRequired($ctx)).$ast0); + oncipau_Util$_$callClinit(); + oncia_PasswordChange__init_(var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$UserAuthAttributeContext_passwordChangeRequired($ctx))); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitPasswordOnly = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Password; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 93, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_Password__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitPassword = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_Password; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 93, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_Password__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = s_Tuple2__init_(var$2, oncipv_Cypher25Parser$PasswordContext_passwordChangeRequired($ctx) === null ? s_None$_MODULE$ : s_Some__init_(oncia_PasswordChange__init_0(sr_BoxesRunTime_unboxToBoolean((oncipv_Cypher25Parser$PasswordContext_passwordChangeRequired($ctx)).$ast0), oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$PasswordContext_passwordChangeRequired($ctx))))); +}, +oncipvaf_Cypher25AstBuilder_exitPasswordExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0); + if (var$2 !== null) { + var$2 = var$2.$ast0; + var$3 = new oncie_SensitiveStringLiteral; + var$4 = var$2.$value8; + jnc_StandardCharsets_$callClinit(); + oncie_SensitiveStringLiteral__init_(var$3, jl_String_getBytes(var$4, jnc_StandardCharsets_UTF_8), var$2.$position18); + } else { + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; + var$3 = new oncipvaf_DdlBuilder$$anon$10; + var$4 = var$2.$name(); + oncius_package$_$callClinit(); + var$5 = oncius_package$_CTString(oncius_package$_MODULE$); + oncie_ExplicitParameter$_$callClinit(); + oncie_ExplicitParameter__init_(var$3, var$4, var$5, oncie_ExplicitParameter$_$lessinit$greater$default$3(oncie_ExplicitParameter$_MODULE$), var$2.$position()); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitPasswordChangeRequired = ($this, $ctx) => { + $ctx.$ast0 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 175, 0) !== null ? 0 : 1); +}, +oncipvaf_Cypher25AstBuilder_exitUserStatus = ($this, $ctx) => { + $ctx.$ast0 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 259, 0) === null ? 0 : 1); +}, +oncipvaf_Cypher25AstBuilder_exitHomeDatabase = ($this, $ctx) => { + $ctx.$ast0 = oncia_SetHomeDatabaseAction__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0); +}, +oncipvaf_Cypher25AstBuilder_exitDropDatabase = ($this, $ctx) => { + let var$2, var$3; + var$2 = oncip_AstRuleCtx_getToken($ctx, 85, 0) === null ? oncia_DestroyData$_MODULE$ : oncia_DumpData$_MODULE$; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AliasActionContext), 0), new oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_00); + $ctx.$ast0 = oncia_DropDatabase__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 49, 0) === null ? 0 : 1, var$3, var$2, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_10), oncipau_Util$_pos(oncipau_Util$_MODULE$, + $ctx.$parent)); +}, +oncipvaf_Cypher25AstBuilder_exitAliasAction = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 39, 0) === null ? oncia_Restrict$_MODULE$ : oncia_CascadeAliases$_MODULE$; +}, +oncipvaf_Cypher25AstBuilder_exitAlterDatabase = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0); + if (!(oncipv_Cypher25Parser$AlterDatabaseContext_REMOVE($ctx)).$isEmpty()) { + s_Predef$_$callClinit(); + var$4 = s_Predef$_Set(s_Predef$_MODULE$); + var$5 = oncipau_Util$_MODULE$; + var$6 = oncipv_Cypher25Parser$AlterDatabaseContext_symbolicNameString($ctx); + sr_ClassTag$_$callClinit(); + var$5 = sci_Set$_from(var$4, oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))); + var$7 = new oncia_AlterDatabase; + var$8 = oncipv_Cypher25Parser$AlterDatabaseContext_EXISTS($ctx) === null ? 0 : 1; + var$6 = s_None$_MODULE$; + oncia_NoOptions$_$callClinit(); + oncia_AlterDatabase__init_(var$7, var$2, var$8, var$6, var$6, oncia_NoOptions$_MODULE$, var$5, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + } else { + var$9 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseAccess($ctx), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1); + var$10 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2); + if ((oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption($ctx)).$isEmpty()) { + oncia_NoOptions$_$callClinit(); + var$11 = oncia_NoOptions$_MODULE$; + } else { + var$11 = new oncia_OptionsMap; + var$6 = oncipau_Util$_MODULE$; + var$7 = oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption($ctx); + sr_ClassTag$_$callClinit(); + oncia_OptionsMap__init_(var$11, (oncipau_Util$_astSeq(var$6, var$7, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(sci_Map)))).$reduceLeft(new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$7 = new oncia_AlterDatabase; + var$8 = oncipv_Cypher25Parser$AlterDatabaseContext_EXISTS($ctx) === null ? 0 : 1; + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + oncia_AlterDatabase__init_(var$7, var$2, var$8, var$9, var$10, var$11, sci_Set$EmptySet$_MODULE$, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); } - return $_localctx; + $ctx.$ast0 = var$7; }, -oncipv_Cypher5Parser_typePart = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$TypePartContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 282, 141); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1962); - oncipv_Cypher5Parser_typeName($this); - oavr_Recognizer_setState($this, 1964); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 145 && $_la != 179)) { - oavr_Recognizer_setState($this, 1963); - oncipv_Cypher5Parser_typeNullability($this); - } - oavr_Recognizer_setState($this, 1969); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (!($_la != 22 && $_la != 151)) { - oavr_Recognizer_setState($this, 1966); - oncipv_Cypher5Parser_typeListSuffix($this); - oavr_Recognizer_setState($this, 1971); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_exitAlterDatabaseAccess = ($this, $ctx) => { + $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 182, 0) === null ? oncia_ReadWriteAccess$_MODULE$ : oncia_ReadOnlyAccess$_MODULE$; +}, +oncipvaf_Cypher25AstBuilder_exitAlterDatabaseTopology = ($this, $ctx) => { + let var$2; + if (oncip_AstRuleCtx_getToken($ctx, 269, 0) === null) + var$2 = s_None$_MODULE$; + else { + oncipau_Util$_$callClinit(); + var$2 = oncia_Topology__init_(oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterDatabaseTopologyContext_primaryTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_00), oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterDatabaseTopologyContext_secondaryTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_10)); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_typeName = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = oncipv_Cypher5Parser$TypeNameContext__init_0($this.$_ctx, oavr_Recognizer_getState($this)); - oavr_Parser_enterRule($this, $_localctx, 284, 142); +oncipvaf_Cypher25AstBuilder_exitPrimaryTopology = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UIntOrIntParameterContext), 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitSecondaryTopology = ($this, $ctx) => { + $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UIntOrIntParameterContext), 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitAlterDatabaseOption = ($this, $ctx) => { + let var$2, var$3, var$4; + s_Predef$_$callClinit(); + var$2 = s_Predef$_Map(s_Predef$_MODULE$); + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(s_Tuple2, 1); + var$4.data[0] = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0); + $ctx.$ast0 = sci_Map$_from(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); +}, +oncipvaf_Cypher25AstBuilder_exitStartDatabase = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_StartDatabase; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_StartDatabase__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_00), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitStopDatabase = ($this, $ctx) => { + let var$2, var$3; + var$2 = new oncia_StopDatabase; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_StopDatabase__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitWaitClause = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2037); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 21: - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 26); - oavr_Recognizer_setState($this, 2019); - oavr_Parser_match($this, 21); - oavr_Recognizer_setState($this, 2035); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 204, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2021); - oavr_Parser_match($this, 298); - break f; - case 3: - oavr_Recognizer_setState($this, 2022); - oavr_Parser_match($this, 224); - break f; - case 4: - oavr_Recognizer_setState($this, 2023); - oavr_Parser_match($this, 92); - break f; - case 5: - oavr_Recognizer_setState($this, 2024); - oavr_Parser_match($this, 158); - break f; - case 6: - oavr_Recognizer_setState($this, 2025); - oavr_Parser_match($this, 211); - oavr_Recognizer_setState($this, 2026); - oavr_Parser_match($this, 294); - break f; - case 7: - oavr_Recognizer_setState($this, 2028); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 294) { - oavr_Recognizer_setState($this, 2027); - oavr_Parser_match($this, 294); - } - oavr_Recognizer_setState($this, 2030); - oavr_Parser_match($this, 156); - oavr_Recognizer_setState($this, 2031); - oncipv_Cypher5Parser_type($this); - oavr_Recognizer_setState($this, 2032); - oavr_Parser_match($this, 124); - break f; - case 8: - oavr_Recognizer_setState($this, 2034); - oavr_Parser_match($this, 294); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2020); - oavr_Parser_match($this, 173); - } - break e; - case 22: - case 151: - oavr_Parser_enterOuterAlt($this, $_localctx, 22); - oavr_Recognizer_setState($this, 2010); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 22 && $_la != 151) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2011); - oavr_Parser_match($this, 156); - oavr_Recognizer_setState($this, 2012); - oncipv_Cypher5Parser_type($this); - oavr_Recognizer_setState($this, 2013); - oavr_Parser_match($this, 124); - break e; - case 32: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 1974); - oavr_Parser_match($this, 32); - break e; - case 33: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 1975); - oavr_Parser_match($this, 33); - break e; - case 67: - oavr_Parser_enterOuterAlt($this, $_localctx, 10); - oavr_Recognizer_setState($this, 1984); - oavr_Parser_match($this, 67); - break e; - case 90: - oavr_Parser_enterOuterAlt($this, $_localctx, 15); - oavr_Recognizer_setState($this, 2003); - oavr_Parser_match($this, 90); - break e; - case 92: - oavr_Parser_enterOuterAlt($this, $_localctx, 20); - oavr_Recognizer_setState($this, 2008); - oavr_Parser_match($this, 92); - break e; - case 111: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 1983); - oavr_Parser_match($this, 111); - break e; - case 137: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 1978); - oavr_Parser_match($this, 137); - break e; - case 138: - case 256: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 1980); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 256) { - oavr_Recognizer_setState($this, 1979); - oavr_Parser_match($this, 256); - } - oavr_Recognizer_setState($this, 1982); - oavr_Parser_match($this, 138); - break e; - case 153: - oavr_Parser_enterOuterAlt($this, $_localctx, 11); - oavr_Recognizer_setState($this, 1985); - oavr_Parser_match($this, 153); - oavr_Recognizer_setState($this, 1986); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 68 && $_la != 270) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - case 158: - oavr_Parser_enterOuterAlt($this, $_localctx, 21); - oavr_Recognizer_setState($this, 2009); - oavr_Parser_match($this, 158); - break e; - case 173: - oavr_Parser_enterOuterAlt($this, $_localctx, 17); - oavr_Recognizer_setState($this, 2005); - oavr_Parser_match($this, 173); - break e; - case 180: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 1972); - oavr_Parser_match($this, 180); - break e; - case 182: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 1973); - oavr_Parser_match($this, 182); - break e; - case 195: - oavr_Parser_enterOuterAlt($this, $_localctx, 23); - oavr_Recognizer_setState($this, 2015); - oavr_Parser_match($this, 195); - break e; - case 196: - oavr_Parser_enterOuterAlt($this, $_localctx, 24); - oavr_Recognizer_setState($this, 2016); - oavr_Parser_match($this, 196); - break e; - case 201: - oavr_Parser_enterOuterAlt($this, $_localctx, 16); - oavr_Recognizer_setState($this, 2004); - oavr_Parser_match($this, 201); - break e; - case 211: - oavr_Parser_enterOuterAlt($this, $_localctx, 25); - oavr_Recognizer_setState($this, 2017); - oavr_Parser_match($this, 211); - oavr_Recognizer_setState($this, 2018); - oavr_Parser_match($this, 294); - break e; - case 224: - oavr_Parser_enterOuterAlt($this, $_localctx, 19); - oavr_Recognizer_setState($this, 2007); - oavr_Parser_match($this, 224); - break e; - case 263: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 1977); - oavr_Parser_match($this, 263); - break e; - case 270: - oavr_Parser_enterOuterAlt($this, $_localctx, 13); - oavr_Recognizer_setState($this, 1989); - oavr_Parser_match($this, 270); - oavr_Recognizer_setState($this, 1990); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 302 && $_la != 303) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 1994); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 270: - oavr_Recognizer_setState($this, 1992); - oavr_Parser_match($this, 270); - oavr_Recognizer_setState($this, 1993); - oavr_Parser_match($this, 307); - break e; - case 273: - oavr_Recognizer_setState($this, 1991); - oavr_Parser_match($this, 273); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 272: - oavr_Parser_enterOuterAlt($this, $_localctx, 14); - oavr_Recognizer_setState($this, 1996); - oavr_Parser_match($this, 272); - oavr_Recognizer_setState($this, 1997); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 302 && $_la != 303) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2001); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 270: - oavr_Recognizer_setState($this, 1999); - oavr_Parser_match($this, 270); - oavr_Recognizer_setState($this, 2000); - oavr_Parser_match($this, 307); - break e; - case 273: - oavr_Recognizer_setState($this, 1998); - oavr_Parser_match($this, 273); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 295: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 1976); - oavr_Parser_match($this, 295); - break e; - case 298: - oavr_Parser_enterOuterAlt($this, $_localctx, 18); - oavr_Recognizer_setState($this, 2006); - oavr_Parser_match($this, 298); - break e; - case 308: - oavr_Parser_enterOuterAlt($this, $_localctx, 12); - oavr_Recognizer_setState($this, 1987); - oavr_Parser_match($this, 308); - oavr_Recognizer_setState($this, 1988); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 68 && $_la != 270) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); + switch (var$2) { + case 177: + break; + case 292: + var$3 = oncip_AstRuleCtx_getToken($ctx, 5, 0); + if (var$3 === null) { + oncia_IndefiniteWait$_$callClinit(); + var$4 = oncia_IndefiniteWait$_MODULE$; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); - $rt_throw($_localctx); + var$4 = new oncia_TimeoutAfter; + s_Predef$_$callClinit(); + oncia_TimeoutAfter__init_(var$4, jl_Long_parseLong(var$3.$getText())); + break a; + default: + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); } - oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); + oncia_NoWait$_$callClinit(); + var$4 = oncia_NoWait$_MODULE$; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_typeNullability = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$TypeNullabilityContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 286, 143); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2042); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 145: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2041); - oavr_Parser_match($this, 145); - break e; - case 179: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2039); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2040); - oavr_Parser_match($this, 182); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_exitDropAlias = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncia_DropDatabaseAlias; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AliasNameContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncia_DropDatabaseAlias__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitAlterAlias = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = (oncipv_Cypher25Parser$AlterAliasContext_aliasName($ctx)).$ast0; + var$3 = oncipv_Cypher25Parser$AlterAliasContext_alterAliasTarget($ctx); + if (var$3.$isEmpty()) { + var$4 = new s_Tuple2; + var$5 = s_None$_MODULE$; + s_Tuple2__init_0(var$4, var$5, var$5); + } else { + var$4 = new s_Tuple2; + var$5 = s_Some__init_((oncipv_Cypher25Parser$AlterAliasTargetContext_aliasTargetName(var$3.$get0(0))).$ast0); + oncipau_Util$_$callClinit(); + s_Tuple2__init_0(var$4, var$5, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasTargetContext_stringOrParameter(var$3.$get0(0)))); } - return $_localctx; + var$4 = s_Tuple2__init_(var$4.$_10, var$4.$_20); + var$3 = var$4.$_10; + var$6 = var$4.$_20; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasContext_alterAliasUser($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0); + var$8 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasContext_alterAliasPassword($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1); + var$9 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasContext_alterAliasDriver($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2); + var$4 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasContext_alterAliasProperties($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3); + $ctx.$ast0 = s_Option_isEmpty(var$6) && s_Option_isEmpty(var$7) && s_Option_isEmpty(var$8) && s_Option_isEmpty(var$9) ? oncia_AlterLocalDatabaseAlias__init_(var$2, var$3, oncipv_Cypher25Parser$AlterAliasContext_EXISTS($ctx) === null ? 0 : 1, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)) : oncia_AlterRemoteDatabaseAlias__init_(var$2, var$3, oncipv_Cypher25Parser$AlterAliasContext_EXISTS($ctx) === null ? 0 : 1, var$6, var$7, var$8, var$9, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); }, -oncipv_Cypher5Parser_typeListSuffix = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$TypeListSuffixContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 288, 144); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2044); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 22 && $_la != 151) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2046); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 145 && $_la != 179)) { - oavr_Recognizer_setState($this, 2045); - oncipv_Cypher5Parser_typeNullability($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_Cypher25AstBuilder_exitAlterAliasTarget = ($this, $ctx) => { + let var$2; + var$2 = (oncipv_Cypher25Parser$AlterAliasTargetContext_aliasTargetName($ctx)).$ast0; + oncipau_Util$_$callClinit(); + $ctx.$ast0 = s_Tuple2__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasTargetContext_stringOrParameter($ctx))); +}, +oncipvaf_Cypher25AstBuilder_exitAlterAliasUser = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitAlterAliasPassword = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitAlterAliasDriver = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitAlterAliasProperties = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitSymbolicNameOrStringParameter = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_symbolicNameString($ctx) !== null) { + s_package$_$callClinit(); + var$2 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_symbolicNameString($ctx)).$ast0); + } else { + s_package$_$callClinit(); + var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitCommandNameExpression = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncipv_Cypher25Parser$CommandNameExpressionContext_symbolicNameString($ctx); + if (var$2 === null) + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; + else { + var$3 = new oncie_StringLiteral; + var$4 = (oncipv_Cypher25Parser$CommandNameExpressionContext_symbolicNameString($ctx)).$ast0; + oncipau_Util$_$callClinit(); + oncie_StringLiteral__init_0(var$3, var$4, oncipau_Util$_rangePos(oncipau_Util$_MODULE$, var$2)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitSymbolicNameOrStringParameterList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); +}, +oncipvaf_Cypher25AstBuilder_exitSymbolicAliasNameList = ($this, $ctx) => { + let var$2, var$3; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_MODULE$; + var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext)); + sr_ClassTag$_$callClinit(); + $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_DatabaseName))); +}, +oncipvaf_Cypher25AstBuilder_exitSymbolicAliasNameOrParameter = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($ctx); + if (var$2 !== null) { + var$2 = var$2.$ast0.$toList(); + var$3 = oncia_NamespacedName$_MODULE$; + oncipau_Util$_$callClinit(); + var$3 = oncia_NamespacedName$_apply(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$3 = new oncia_ParameterName; + var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; + oncipau_Util$_$callClinit(); + oncia_ParameterName__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitAliasName = ($this, $ctx) => { + $ctx.$ast0 = (oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter($ctx)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitAliasTargetName = ($this, $ctx) => { + $ctx.$ast0 = (oncipv_Cypher25Parser$AliasTargetNameContext_symbolicAliasNameOrParameter($ctx)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitDatabaseName = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)).$ast0; + if (!(var$2 instanceof su_Left)) { + if (!(var$2 instanceof su_Right)) + $rt_throw(s_MatchError__init_(var$2)); + var$3 = var$2.$value7; + var$4 = new oncia_ParameterName; + oncipau_Util$_$callClinit(); + oncia_ParameterName__init_(var$4, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = var$2.$value6; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$4 = oncia_NamespacedName__init_(sci_$colon$colon__init_(var$2, sci_Nil$_MODULE$), s_None$_MODULE$, var$3); + } + $ctx.$ast0 = var$4; +}, +oncipvaf_Cypher25AstBuilder_exitStringOrParameterExpression = ($this, $ctx) => { + $ctx.$ast0 = oncipv_Cypher25Parser$StringOrParameterExpressionContext_stringLiteral($ctx) !== null ? (oncipv_Cypher25Parser$StringOrParameterExpressionContext_stringLiteral($ctx)).$ast0 : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitStringOrParameter = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher25Parser$StringOrParameterContext_stringLiteral($ctx) !== null) { + s_package$_$callClinit(); + var$2 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (oncipv_Cypher25Parser$StringOrParameterContext_stringLiteral($ctx)).$ast0.$value8); + } else { + s_package$_$callClinit(); + var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitUIntOrIntParameter = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher25Parser$UIntOrIntParameterContext_UNSIGNED_DECIMAL_INTEGER($ctx) === null) { + s_package$_$callClinit(); + var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0); + } else { + s_package$_$callClinit(); + var$2 = s_package$_Left(s_package$_MODULE$); + s_Predef$_$callClinit(); + var$2 = su_Left$_apply(var$2, jl_Integer_valueOf(jl_Integer_parseInt0((oncipv_Cypher25Parser$UIntOrIntParameterContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText()))); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitNodePattern = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = oncie_NodePattern__init_0(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, + oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +}, +oncipvaf_Cypher25AstBuilder_exitRelationshipPattern = ($this, $ctx) => { + let var$2; + var$2 = new oncie_RelationshipPattern; + oncipau_Util$_$callClinit(); + oncie_RelationshipPattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PathLengthContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, + oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)), oncipau_Util$_semanticDirection(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RightArrowContext), 0) === null ? 0 : 1, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LeftArrowContext), 0) === + null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitNodeLabels = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new s_Tuple2; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$LabelTypeContext)); + sr_ClassTag$_$callClinit(); + s_Tuple2__init_0(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))), oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$DynamicLabelTypeContext)), 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression)))); + $ctx.$ast0 = var$2; +}; +let oncipvaf_Cypher25AstBuilder_exitNodeLabelsIs = ($this, $ctx) => { + let var$2, var$3; + var$2 = sci_ArraySeq$_MODULE$; + sr_ClassTag$_$callClinit(); + var$2 = sci_ArraySeq$_newBuilder(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))); + s_Option$_$callClinit(); + var$3 = scm_Builder$$anon$1_addAll(var$2, s_Option_map(s_Option$_apply(s_Option$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0)), new oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0)); + oncipau_Util$_$callClinit(); + $ctx.$ast0 = s_Tuple2__init_(scm_Builder$$anon$1_result(scm_Builder$$anon$1_addAll(var$3, oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$LabelTypeContext)), 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)))), scm_Builder$$anon$1_result(scm_Builder$$anon$1_addAll(scm_Builder$$anon$1_addAll(sci_ArraySeq$_newBuilder(sci_ArraySeq$_MODULE$, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, + oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$DynamicExpressionContext), 0))), oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$DynamicLabelTypeContext)), 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))))); +}, +oncipvaf_Cypher25AstBuilder_exitDynamicExpression = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitDynamicAnyAllExpression = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_DynamicLabelOrRelTypeExpression; + var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0; + var$4 = oncip_AstRuleCtx_getToken($ctx, 21, 0) !== null ? 0 : 1; + oncipau_Util$_$callClinit(); + oncie_DynamicLabelOrRelTypeExpression__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitDynamicLabelType = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitLabelType = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + $ctx.$ast0 = oncie_LabelName__init_(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher25AstBuilder_exitRelType = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + $ctx.$ast0 = oncie_RelTypeName__init_0(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher25AstBuilder_exitLabelOrRelType = ($this, $ctx) => { + let var$2; + oncipau_Util$_$callClinit(); + var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + $ctx.$ast0 = oncie_LabelOrRelTypeName__init_0(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +}, +oncipvaf_Cypher25AstBuilder_exitLabelExpression = ($this, $ctx) => { + oncipau_Util$_$callClinit(); + $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +}, +oncipvaf_Cypher25AstBuilder_exitLabelExpression4 = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = $ctx.$children0; + var$3 = var$2.$size0; + var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; + var$5 = 0; + var$6 = 1; + while (var$6 < var$3) { + var$7 = ju_ArrayList_get(var$2, var$6); + if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 44) + var$5 = 1; + else if (var$7 instanceof oncipv_Cypher25Parser$LabelExpression3Context) { + var$8 = var$7.$ast0; + if (!var$5) { + var$9 = oncil_LabelExpression$Disjunctions$_MODULE$; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_MODULE$; + var$4 = oncil_LabelExpression$Disjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 0); + } else { + var$7 = new oncil_LabelExpression$ColonDisjunction; + oncipau_Util$_$callClinit(); + var$9 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonDisjunction__init_(var$7, var$4, var$8, 0, oncipau_Util$_pos1(var$9, oncipau_Util$_nodeChild(var$9, $ctx, var$6 - 2 | 0))); + var$5 = 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$6 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_command = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 290, 145); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2049); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 290) { - oavr_Recognizer_setState($this, 2048); - oncipv_Cypher5Parser_useClause($this); - } - e: { - oavr_Recognizer_setState($this, 2064); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 19: - oavr_Recognizer_setState($this, 2053); - oncipv_Cypher5Parser_alterCommand($this); - break e; - case 61: - oavr_Recognizer_setState($this, 2051); - oncipv_Cypher5Parser_createCommand($this); - break e; - case 70: - case 88: - case 219: - oavr_Recognizer_setState($this, 2061); - oncipv_Cypher5Parser_allocationCommand($this); - break e; - case 74: - oavr_Recognizer_setState($this, 2055); - oncipv_Cypher5Parser_denyCommand($this); - break e; - case 87: - oavr_Recognizer_setState($this, 2052); - oncipv_Cypher5Parser_dropCommand($this); - break e; - case 93: - oavr_Recognizer_setState($this, 2060); - oncipv_Cypher5Parser_enableServerCommand($this); - break e; - case 119: - oavr_Recognizer_setState($this, 2057); - oncipv_Cypher5Parser_grantCommand($this); - break e; - case 221: - oavr_Recognizer_setState($this, 2054); - oncipv_Cypher5Parser_renameCommand($this); - break e; - case 234: - oavr_Recognizer_setState($this, 2056); - oncipv_Cypher5Parser_revokeCommand($this); - break e; - case 255: - oavr_Recognizer_setState($this, 2062); - oncipv_Cypher5Parser_showCommand($this); - break e; - case 259: - oavr_Recognizer_setState($this, 2058); - oncipv_Cypher5Parser_startDatabase($this); - break e; - case 262: - oavr_Recognizer_setState($this, 2059); - oncipv_Cypher5Parser_stopDatabase($this); - break e; - case 267: - oavr_Recognizer_setState($this, 2063); - oncipv_Cypher5Parser_terminateCommand($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_Cypher25AstBuilder_exitLabelExpression4Is = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = $ctx.$children0; + var$3 = var$2.$size0; + var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; + var$5 = 0; + var$6 = 1; + while (var$6 < var$3) { + var$7 = ju_ArrayList_get(var$2, var$6); + if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 44) + var$5 = 1; + else if (var$7 instanceof oncipv_Cypher25Parser$LabelExpression3IsContext) { + var$8 = var$7.$ast0; + if (!var$5) { + var$9 = oncil_LabelExpression$Disjunctions$_MODULE$; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_MODULE$; + var$4 = oncil_LabelExpression$Disjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 1); + } else { + var$7 = new oncil_LabelExpression$ColonDisjunction; + oncipau_Util$_$callClinit(); + var$10 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonDisjunction__init_(var$7, var$4, var$8, 1, oncipau_Util$_pos1(var$10, oncipau_Util$_nodeChild(var$10, $ctx, var$6 - 2 | 0))); + var$5 = 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$6 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_createCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 292, 146); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2066); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 2069); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 190) { - oavr_Recognizer_setState($this, 2067); - oavr_Parser_match($this, 190); - oavr_Recognizer_setState($this, 2068); - oavr_Parser_match($this, 228); - } - e: { - oavr_Recognizer_setState($this, 2078); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 2071); - oncipv_Cypher5Parser_createAlias($this); - break e; - case 38: - case 115: - case 132: - case 154: - case 201: - case 215: - case 268: - case 296: - oavr_Recognizer_setState($this, 2075); - oncipv_Cypher5Parser_createIndex($this); - break e; - case 53: - oavr_Recognizer_setState($this, 2072); - oncipv_Cypher5Parser_createCompositeDatabase($this); - break e; - case 55: - oavr_Recognizer_setState($this, 2073); - oncipv_Cypher5Parser_createConstraint($this); - break e; - case 65: - oavr_Recognizer_setState($this, 2074); - oncipv_Cypher5Parser_createDatabase($this); - break e; - case 235: - oavr_Recognizer_setState($this, 2076); - oncipv_Cypher5Parser_createRole($this); - break e; - case 291: - oavr_Recognizer_setState($this, 2077); - oncipv_Cypher5Parser_createUser($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_Cypher25AstBuilder_exitLabelExpression3 = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = $ctx.$children0; + var$3 = var$2.$size0; + var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; + var$5 = 0; + var$6 = 1; + while (var$6 < var$3) { + var$7 = ju_ArrayList_get(var$2, var$6); + if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 44) + var$5 = 1; + else if (var$7 instanceof oncipv_Cypher25Parser$LabelExpression2Context) { + var$8 = var$7.$ast0; + if (!var$5) { + var$9 = oncil_LabelExpression$Conjunctions$_MODULE$; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_MODULE$; + var$4 = oncil_LabelExpression$Conjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 0); + } else { + var$7 = new oncil_LabelExpression$ColonConjunction; + oncipau_Util$_$callClinit(); + var$9 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonConjunction__init_(var$7, var$4, var$8, 0, oncipau_Util$_pos1(var$9, oncipau_Util$_nodeChild(var$9, $ctx, var$6 - 1 | 0))); + var$5 = 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$6 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_dropCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 294, 147); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2080); - oavr_Parser_match($this, 87); - oavr_Recognizer_setState($this, 2088); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 2081); - oncipv_Cypher5Parser_dropAlias($this); - break e; - case 53: - case 65: - oavr_Recognizer_setState($this, 2083); - oncipv_Cypher5Parser_dropDatabase($this); - break e; - case 55: - oavr_Recognizer_setState($this, 2082); - oncipv_Cypher5Parser_dropConstraint($this); - break e; - case 132: - oavr_Recognizer_setState($this, 2084); - oncipv_Cypher5Parser_dropIndex($this); - break e; - case 235: - oavr_Recognizer_setState($this, 2085); - oncipv_Cypher5Parser_dropRole($this); - break e; - case 248: - oavr_Recognizer_setState($this, 2086); - oncipv_Cypher5Parser_dropServer($this); - break e; - case 291: - oavr_Recognizer_setState($this, 2087); - oncipv_Cypher5Parser_dropUser($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncipvaf_Cypher25AstBuilder_exitLabelExpression3Is = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = $ctx.$children0; + var$3 = var$2.$size0; + var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; + var$5 = 0; + var$6 = 1; + while (var$6 < var$3) { + var$7 = ju_ArrayList_get(var$2, var$6); + if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 44) + var$5 = 1; + else if (var$7 instanceof oncipv_Cypher25Parser$LabelExpression2IsContext) { + var$8 = var$7.$ast0; + if (!var$5) { + var$9 = oncil_LabelExpression$Conjunctions$_MODULE$; + oncipau_Util$_$callClinit(); + var$7 = oncipau_Util$_MODULE$; + var$4 = oncil_LabelExpression$Conjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 1); + } else { + var$7 = new oncil_LabelExpression$ColonConjunction; + oncipau_Util$_$callClinit(); + var$10 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonConjunction__init_(var$7, var$4, var$8, 1, oncipau_Util$_pos1(var$10, oncipau_Util$_nodeChild(var$10, $ctx, var$6 - 1 | 0))); + var$5 = 0; + var$4 = var$7; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$6 = var$6 + 1 | 0; } - return $_localctx; + $ctx.$ast0 = var$4; }, -oncipv_Cypher5Parser_showCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 296, 148); +oncipvaf_Cypher25AstBuilder_exitLabelExpression2 = ($this, $ctx) => { + let var$2; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2090); - oavr_Parser_match($this, 255); - oavr_Recognizer_setState($this, 2107); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 213, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2092); - oncipv_Cypher5Parser_showConstraintCommand($this); - break e; - case 3: - oavr_Recognizer_setState($this, 2093); - oncipv_Cypher5Parser_showCurrentUser($this); - break e; - case 4: - oavr_Recognizer_setState($this, 2094); - oncipv_Cypher5Parser_showDatabase($this); - break e; - case 5: - oavr_Recognizer_setState($this, 2095); - oncipv_Cypher5Parser_showFunctions($this); - break e; - case 6: - oavr_Recognizer_setState($this, 2096); - oncipv_Cypher5Parser_showIndexCommand($this); - break e; - case 7: - oavr_Recognizer_setState($this, 2097); - oncipv_Cypher5Parser_showPrivileges($this); - break e; - case 8: - oavr_Recognizer_setState($this, 2098); - oncipv_Cypher5Parser_showProcedures($this); - break e; - case 9: - oavr_Recognizer_setState($this, 2099); - oncipv_Cypher5Parser_showRolePrivileges($this); - break e; - case 10: - oavr_Recognizer_setState($this, 2100); - oncipv_Cypher5Parser_showRoles($this); - break e; - case 11: - oavr_Recognizer_setState($this, 2101); - oncipv_Cypher5Parser_showServers($this); - break e; - case 12: - oavr_Recognizer_setState($this, 2102); - oncipv_Cypher5Parser_showSettings($this); - break e; - case 13: - oavr_Recognizer_setState($this, 2103); - oncipv_Cypher5Parser_showSupportedPrivileges($this); - break e; - case 14: - oavr_Recognizer_setState($this, 2104); - oncipv_Cypher5Parser_showTransactions($this); - break e; - case 15: - oavr_Recognizer_setState($this, 2105); - oncipv_Cypher5Parser_showUserPrivileges($this); - break e; - case 16: - oavr_Recognizer_setState($this, 2106); - oncipv_Cypher5Parser_showUsers($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2091); - oncipv_Cypher5Parser_showAliases($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + switch ($ctx.$children0.$size0) { + case 1: + break; + case 2: + var$2 = new oncil_LabelExpression$Negation; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Negation__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: + var$2 = scc_AsScalaExtensions$CollectionHasAsScala_asScala(sj_CollectionConverters$_CollectionHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 141))); + oncipau_Util$_$callClinit(); + var$2 = sc_AbstractIterable_foldRight(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_showCommandYield = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowCommandYieldContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 298, 149); +oncipvaf_Cypher25AstBuilder_exitLabelExpression2Is = ($this, $ctx) => { + let var$2; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2114); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 301: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2113); - oncipv_Cypher5Parser_whereClause($this); - break e; - case 306: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2109); - oncipv_Cypher5Parser_yieldClause($this); - oavr_Recognizer_setState($this, 2111); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 233) - break e; - oavr_Recognizer_setState($this, 2110); - oncipv_Cypher5Parser_returnClause($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + switch ($ctx.$children0.$size0) { + case 1: + break; + case 2: + var$2 = new oncil_LabelExpression$Negation; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Negation__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: + var$2 = scc_AsScalaExtensions$CollectionHasAsScala_asScala(sj_CollectionConverters$_CollectionHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 141))); + oncipau_Util$_$callClinit(); + var$2 = sc_AbstractIterable_foldRight(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncipau_Util$_$callClinit(); + var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_yieldItem = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$YieldItemContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 300, 150); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2116); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2119); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2117); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 2118); - oncipv_Cypher5Parser_variable($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - +oncipvaf_Cypher25AstBuilder_exitLabelExpression1 = ($this, $ctx) => { + oncipvaf_LabelExpressionBuilder_exitLabelExpression1($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_getIsLabel = ($this, $ctx) => { + let var$2; + $ctx = $ctx.$parent; + var$2 = 0; + while (!var$2) { + if ($ctx !== null && $ctx.$getRuleIndex() != 100) { + if ($ctx.$getRuleIndex() == 58) + var$2 = 1; + else if ($ctx.$getRuleIndex() == 70) + var$2 = 2; + else + $ctx = $ctx.$parent; + } else + var$2 = 3; + } + return var$2; +}, +oncipvaf_Cypher25AstBuilder_exitLabelExpression1Is = ($this, $ctx) => { + oncipvaf_LabelExpressionBuilder_exitLabelExpression1Is($this, $ctx); +}, +oncipvaf_Cypher25AstBuilder_exitInsertNodePattern = ($this, $ctx) => { + let var$2; + var$2 = new oncie_NodePattern; + oncipau_Util$_$callClinit(); + oncie_NodePattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$InsertNodeLabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MapContext), 0)), s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, + $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitInsertNodeLabelExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$2 = oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_IS($ctx) === null ? 0 : 1; + var$3 = $ctx.$children0; + var$4 = var$3.$size0; + oncipau_Util$_$callClinit(); + var$5 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); + var$6 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_(var$5.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)), var$2); + if (var$4 > 2) { + var$7 = 0; + var$8 = 2; + while (var$8 < var$4) { + var$5 = ju_ArrayList_get(var$3, var$8); + if ($rt_isInstance(var$5, oavrt_TerminalNode) && (var$5.$getSymbol()).$getType0() == 44) + var$7 = 1; + else if (var$5 instanceof oncipv_Cypher25Parser$SymbolicNameStringContext) { + var$5 = var$5; + var$9 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_(var$5.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)), oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_IS($ctx) === null ? 0 : 1); + if (!var$7) { + var$10 = oncil_LabelExpression$Conjunctions$_MODULE$; + var$11 = oncipau_Util$_MODULE$; + var$6 = oncil_LabelExpression$Conjunctions$_flat(var$10, var$6, var$9, oncipau_Util$_pos1(var$11, oncipau_Util$_nodeChild(var$11, $ctx, var$8 - 1 | 0)), var$2); + } else { + var$11 = new oncil_LabelExpression$ColonConjunction; + var$5 = oncipau_Util$_MODULE$; + oncil_LabelExpression$ColonConjunction__init_(var$11, var$6, var$9, var$2, oncipau_Util$_pos1(var$5, oncipau_Util$_nodeChild(var$5, $ctx, var$8 - 1 | 0))); + var$7 = 0; + var$6 = var$11; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$8 = var$8 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$6; }, -oncipv_Cypher5Parser_yieldSkip = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$YieldSkipContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 302, 151); +oncipvaf_Cypher25AstBuilder_exitInsertRelationshipPattern = ($this, $ctx) => { + let var$2; + var$2 = new oncie_RelationshipPattern; + oncipau_Util$_$callClinit(); + oncie_RelationshipPattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext), 0)), s_None$_MODULE$, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MapContext), 0)), s_None$_MODULE$, + oncipau_Util$_semanticDirection(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RightArrowContext), 0) === null ? 0 : 1, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LeftArrowContext), 0) === null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitInsertRelationshipLabelExpression = ($this, $ctx) => { + let var$2, var$3, var$4, var$5; + var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); + var$3 = new oncil_LabelExpression$Leaf; + var$4 = new oncie_RelTypeName; + var$5 = var$2.$ast0; + oncipau_Util$_$callClinit(); + oncie_RelTypeName__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + oncil_LabelExpression$Leaf__init_(var$3, var$4, oncip_AstRuleCtx_getToken($ctx, 135, 0) === null ? 0 : 1); + $ctx.$ast0 = var$3; +}, +oncipvaf_Cypher25AstBuilder_exitLeftArrow = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitArrowLine = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitRightArrow = ($this, $ctx) => { + return; +}, +oncipvaf_Cypher25AstBuilder_exitLiteral = ($this, $ctx) => { + let var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2121); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 184 && $_la != 258) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2122); - oncipv_Cypher5Parser_signedIntegerLiteral($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = ju_ArrayList_get($ctx.$children0, 0); + if (var$2 instanceof oncip_AstRuleCtx) + var$2 = var$2.$ast0; + else { + if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { + $ctx = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5115)), var$2); + jl_Throwable__init_($ctx, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($ctx); + } + var$4 = (var$2.$getSymbol()).$getType0(); + switch (var$4) { + case 104: + var$2 = new oncie_False; + oncipau_Util$_$callClinit(); + oncie_False__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + case 130: + case 131: + var$2 = new oncie_Infinity; + oncipau_Util$_$callClinit(); + oncie_Infinity__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 163: + var$2 = new oncie_NaN; + oncipau_Util$_$callClinit(); + oncie_NaN__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 178: + var$2 = new oncie_Null; + oncipau_Util$_$callClinit(); + oncie_Null__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 275: + var$2 = new oncie_True; + oncipau_Util$_$callClinit(); + oncie_True__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $ctx.$ast0 = var$2; }, -oncipv_Cypher5Parser_yieldLimit = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$YieldLimitContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 304, 152); +oncipvaf_Cypher25AstBuilder_exitNumberLiteral = ($this, $ctx) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2124); - oavr_Parser_match($this, 150); - oavr_Recognizer_setState($this, 2125); - oncipv_Cypher5Parser_signedIntegerLiteral($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncipau_Util$_$callClinit(); + var$2 = ((oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$getSymbol()).$getType0(); + switch (var$2) { + case 4: + var$3 = oncie_DecimalDoubleLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 5: + var$3 = oncie_SignedDecimalIntegerLiteral__init_0(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 6: + var$3 = oncie_SignedHexIntegerLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + case 7: + var$3 = oncie_SignedOctalIntegerLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + break a; + default: } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); } - return $_localctx; + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_yieldClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$YieldClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 306, 153); +oncipvaf_Cypher25AstBuilder_exitSignedIntegerLiteral = ($this, $ctx) => { + let var$2, var$3, var$4; + if (oncip_AstRuleCtx_getToken($ctx, 157, 0) === null) { + var$2 = new oncie_SignedDecimalIntegerLiteral; + var$3 = (oncipv_Cypher25Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText(); + oncipau_Util$_$callClinit(); + oncie_SignedDecimalIntegerLiteral__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } else { + var$2 = new oncie_SignedDecimalIntegerLiteral; + var$4 = (oncipv_Cypher25Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(var$3, 45); + jl_StringBuilder_append(var$3, var$4); + var$3 = jl_AbstractStringBuilder_toString(var$3); + oncipau_Util$_$callClinit(); + oncie_SignedDecimalIntegerLiteral__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + } + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitStringListLiteral = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_ListLiteral; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext)); + sr_ClassTag$_$callClinit(); + oncie_ListLiteral__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_StringLiteral))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitListLiteral = ($this, $ctx) => { + let var$2, var$3, var$4; + var$2 = new oncie_ListLiteral; + oncipau_Util$_$callClinit(); + var$3 = oncipau_Util$_MODULE$; + var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext)); + sr_ClassTag$_$callClinit(); + oncie_ListLiteral__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$2; +}, +oncipvaf_Cypher25AstBuilder_exitStringLiteral = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; a: { - b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2127); - oavr_Parser_match($this, 306); - oavr_Recognizer_setState($this, 2137); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - break f; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Recognizer_setState($this, 2128); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 2129); - oncipv_Cypher5Parser_yieldItem($this); - oavr_Recognizer_setState($this, 2134); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 49) - break e; - oavr_Recognizer_setState($this, 2130); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 2131); - oncipv_Cypher5Parser_yieldItem($this); - oavr_Recognizer_setState($this, 2136); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 2140); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 191) { - oavr_Recognizer_setState($this, 2139); - oncipv_Cypher5Parser_orderBy($this); - } - oavr_Recognizer_setState($this, 2143); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 184 && $_la != 258)) { - oavr_Recognizer_setState($this, 2142); - oncipv_Cypher5Parser_yieldSkip($this); - } - oavr_Recognizer_setState($this, 2146); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 150) { - oavr_Recognizer_setState($this, 2145); - oncipv_Cypher5Parser_yieldLimit($this); - } - oavr_Recognizer_setState($this, 2149); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 301) { - oavr_Recognizer_setState($this, 2148); - oncipv_Cypher5Parser_whereClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + var$2 = ($ctx.$start1.$getInputStream0()).$getText0(oavrm_Interval__init_($ctx.$start1.$getStartIndex() + 1 | 0, $ctx.$stop.$getStopIndex() - 1 | 0)); + var$3 = new oncie_StringLiteral; + oncipau_Util$_$callClinit(); + var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); + var$5 = $this.$exceptionFactory3; + var$6 = jl_String_indexOf(var$2, 92); + if (var$6 != (-1)) { + var$7 = 0; + var$8 = var$2.$nativeString.length; + var$9 = null; + var$10 = var$8 - 1 | 0; + while (true) { + if (var$6 == (-1)) { + if (var$9 !== null && !jl_StringBuilder_isEmpty(var$9)) { + if (var$7 >= var$2.$nativeString.length) { + var$2 = jl_AbstractStringBuilder_toString(var$9); + break a; } + jl_AbstractStringBuilder_append1(var$9, var$2, var$7, var$2.$nativeString.length); + var$2 = jl_AbstractStringBuilder_toString(var$9); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$6 == var$10) + break; + b: { + switch (jl_String_charAt(var$2, var$6 + 1 | 0)) { + case 34: + break; + case 39: + var$11 = 39; + break b; + case 92: + var$11 = 92; + break b; + case 98: + var$11 = 8; + break b; + case 102: + var$11 = 12; + break b; + case 110: + var$11 = 10; + break b; + case 114: + var$11 = 13; + break b; + case 116: + var$11 = 9; + break b; + default: + var$11 = 0; + break b; + } + var$11 = 34; + } + if (var$11) { + if (var$9 === null) { + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$9, var$2.$nativeString.length); + } + jl_AbstractStringBuilder_append1(var$9, var$2, var$7, var$6); + jl_AbstractStringBuilder_append0(var$9, var$11); + var$7 = var$6 + 2 | 0; } + var$6 = jl_String_indexOf0(var$2, 92, var$6 + 2 | 0); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, oncip_CypherErrorStrategy$_quoteMismatchErrorMessage, var$4)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + oncie_StringLiteral__init_0(var$3, var$2, oncipau_Util$_rangePos(oncipau_Util$_MODULE$, $ctx)); + $ctx.$ast0 = var$3; }, -oncipv_Cypher5Parser_commandOptions = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CommandOptionsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 308, 154); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2151); - oavr_Parser_match($this, 188); - oavr_Recognizer_setState($this, 2152); - oncipv_Cypher5Parser_mapOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$RelGraphToken = $this => { + let var$1, $$je; + if ($this.$RelGraphToken$module0 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$RelGraphToken$module0 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$RelGraphToken$module0 = oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_0($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$RelGraphToken$module0; }, -oncipv_Cypher5Parser_terminateCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$TerminateCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 310, 155); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2154); - oavr_Parser_match($this, 267); - oavr_Recognizer_setState($this, 2155); - oncipv_Cypher5Parser_terminateTransactions($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken = $this => { + let var$1, $$je; + if ($this.$NodeGraphToken$module0 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$NodeGraphToken$module0 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$NodeGraphToken$module0 = oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_1($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$NodeGraphToken$module0; }, -oncipv_Cypher5Parser_composableCommandClauses = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ComposableCommandClausesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 312, 156); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2159); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 255: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2158); - oncipv_Cypher5Parser_composableShowCommandClauses($this); - break e; - case 267: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2157); - oncipv_Cypher5Parser_terminateCommand($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken = $this => { + let var$1, $$je; + if ($this.$ElementGraphToken$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$ElementGraphToken$module !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$ElementGraphToken$module = oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_1($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$ElementGraphToken$module; }, -oncipv_Cypher5Parser_composableShowCommandClauses = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ComposableShowCommandClausesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 314, 157); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2161); - oavr_Parser_match($this, 255); - oavr_Recognizer_setState($this, 2168); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 224, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2163); - oncipv_Cypher5Parser_showConstraintCommand($this); - break e; - case 3: - oavr_Recognizer_setState($this, 2164); - oncipv_Cypher5Parser_showFunctions($this); - break e; - case 4: - oavr_Recognizer_setState($this, 2165); - oncipv_Cypher5Parser_showProcedures($this); - break e; - case 5: - oavr_Recognizer_setState($this, 2166); - oncipv_Cypher5Parser_showSettings($this); - break e; - case 6: - oavr_Recognizer_setState($this, 2167); - oncipv_Cypher5Parser_showTransactions($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2162); - oncipv_Cypher5Parser_showIndexCommand($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Node = $this => { + let var$1, $$je; + if ($this.$Node$module0 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$Node$module0 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$Node$module0 = oncipvaf_DdlShowBuilder$Node$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$Node$module0; }, -oncipv_Cypher5Parser_showBriefAndYield = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowBriefAndYieldContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 316, 158); +oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Rel = $this => { + let var$1, $$je; + if ($this.$Rel$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$Rel$module !== null) + break a; + $this.$Rel$module = oncipvaf_DdlShowBuilder$Rel$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + } + return $this.$Rel$module; +}, +oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$NoEntity = $this => { + let var$1, $$je; + if ($this.$NoEntity$module0 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$NoEntity$module0 !== null) + break a; + $this.$NoEntity$module0 = oncipvaf_DdlShowBuilder$NoEntity$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + } + return $this.$NoEntity$module0; +}, +oncipvaf_Cypher25AstBuilder_exitEndOfFile = ($this, $ctx) => { + return; +}; +function oncipvaf_Cypher25SyntaxChecker() { + let a = this; jl_Object.call(a); + a.$exceptionFactory1 = null; + a.$_errors0 = null; +} +let oncipvaf_Cypher25SyntaxChecker_errors = $this => { + return $this.$_errors0; +}, +oncipvaf_Cypher25SyntaxChecker_exitEveryRule = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6; + switch ($ctx.$getRuleIndex()) { + case 41: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters($ctx), $rt_s(5137), 1); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters($ctx), $rt_s(5138), 1); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters($ctx), $rt_s(5139), 1); + return; + case 49: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + if (oncipv_Cypher25Parser$InsertPatternContext_EQ($ctx) !== null) { + var$2 = $this.$_errors0; + var$3 = $this.$exceptionFactory1; + var$4 = oncipau_Util$_MODULE$; + $this.$_errors0 = var$2.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$3, $rt_s(5140), oncipau_Util$_pos(var$4, oncipau_Util$_ctxChild(var$4, $ctx, 0)))); + } + return; + case 85: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + var$2 = oncip_AstRuleCtx_getTokens($ctx, 44); + var$5 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0() != 44 ? 0 : 1; + if (var$5 && var$2.$size() > 1) + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5141), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (var$2.$get0(1)).$getSymbol()))); + else if (!var$5 && var$2.$size() > 0) + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5141), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (var$2.$get0(0)).$getSymbol()))); + return; + case 133: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + var$4 = (oncipv_Cypher25Parser$FunctionInvocationContext_functionName($ctx)).$ast0; + var$2 = var$4.$name6; + if (var$2 !== null && jl_String_equals(var$2, $rt_s(426)) && sci_List_isEmpty(var$4.$namespace3.$parts0) && (oncipv_Cypher25Parser$FunctionInvocationContext_functionArgument($ctx)).$size() == 2) + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5191), (oncipv_Cypher25Parser$FunctionArgumentContext_expression(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$FunctionArgumentContext), 1))).$ast0.$position())); + return; + case 140: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + if ((oncipv_Cypher25Parser$TypePartContext_typeName($ctx)).$ast0 instanceof oncius_ClosedDynamicUnionType && oncipv_Cypher25Parser$TypePartContext_typeNullability($ctx) !== null) + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5142), oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$TypePartContext_typeNullability($ctx)))); + return; + case 177: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkCreateConstraint($this, $ctx); + return; + case 185: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + var$6 = oncipv_Cypher25Parser$CreateLookupIndexContext_symbolicNameString($ctx); + var$4 = oncipv_Cypher25Parser$CreateLookupIndexContext_lookupIndexRelPattern($ctx); + var$2 = jl_String_toUpperCase0(oncip_AstRuleCtx_getText(var$6)); + if (var$2 !== null && jl_String_equals(var$2, $rt_s(4336)) && var$4 !== null && oncip_AstRuleCtx_getToken(var$4, 87, 0) === null) + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5188), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken($ctx, 151, 0)).$getSymbol()))); + return; + case 190: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkEnclosedPropertyList($this, $ctx); + return; + case 213: + oncipau_Util$_$callClinit(); + $ctx = $ctx; + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$CreateUserContext_userStatus($ctx), $rt_s(5151), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$CreateUserContext_homeDatabase($ctx), $rt_s(5152), 0); + return; + case 217: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkAlterUser($this, $ctx); + return; + case 236: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkAllPrivilege($this, $ctx); + return; + case 267: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkGlobPart($this, $ctx); + return; + case 281: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkCreateDatabase($this, $ctx); + return; + case 288: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkAlterDatabase($this, $ctx); + return; + case 290: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkAlterDatabaseTopology($this, $ctx); + return; + case 300: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkCreateAlias($this, $ctx); + return; + case 302: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkAlterAlias($this, $ctx); + return; + case 313: + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_checkSymbolicAliasNameOrParameter($this, $ctx); + return; + default: + } +}, +oncipvaf_Cypher25SyntaxChecker_check = ($this, $ctx) => { + oncipvaf_Cypher25SyntaxChecker_exitEveryRule($this, $ctx); + return $this.$_errors0.$isEmpty(); +}, +oncipvaf_Cypher25SyntaxChecker_inputPosition = ($this, $symbol) => { + onciu_InputPosition$_$callClinit(); + return onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $symbol.$getStartIndex(), $symbol.$getLine(), $symbol.$getCharPositionInLine() + 1 | 0); +}, +oncipvaf_Cypher25SyntaxChecker_errorOnDuplicate = ($this, $token, $description, $isParam) => { + let var$4, var$5, var$6; + if (!$isParam) { + var$4 = $this.$_errors0; + var$5 = $this.$exceptionFactory1; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(5143)), $description), $rt_s(5144)); + $this.$_errors0 = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $token))); + return; + } + var$4 = $this.$_errors0; + var$5 = $this.$exceptionFactory1; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(5145)), $description), $rt_s(5146)); + $this.$_errors0 = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $token))); +}, +oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx = ($this, $ctx, $description, $isParam) => { + if ($ctx.$size() <= 1) + return; + oncipau_Util$_$callClinit(); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicate($this, (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx.$get0(1), 0)).$getSymbol(), $description, $isParam); +}, +oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule = ($this, $params, $description, $isParam) => { + if ($params.$size() <= 1) + return; + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicate($this, ($params.$get0(1)).$start1, $description, $isParam); +}, +oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingDots = ($this, $aliasesNames) => { + let $aliasName, $start, var$4, var$5; + if ($aliasesNames.$size() <= 0) + return; + $aliasName = $aliasesNames.$get0(0); + if (oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName) !== null && (oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName))).$size() > oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS) { + $start = ((oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName))).$get0(0)).$start1; + $aliasesNames = $this.$_errors0; + var$4 = $this.$exceptionFactory1; + $aliasName = oncip_AstRuleCtx_getText($aliasName); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5147)), $aliasName), $rt_s(5148)); + $this.$_errors0 = $aliasesNames.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$4, jl_AbstractStringBuilder_toString(var$5), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $start))); + return; + } +}, +oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingTooManyComponents = ($this, $aliasesNames, $maxComponents, $errorTemplate) => { + let var$4; + if (!sc_IterableOnceOps_nonEmpty$($aliasesNames)) + return; + var$4 = sci_List_filter($aliasesNames, new oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0); + $aliasesNames = new oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1; + $aliasesNames.$_0830 = $this; + $aliasesNames.$_1279 = $maxComponents; + $aliasesNames.$_289 = $errorTemplate; + sci_List_foreach(var$4, $aliasesNames); +}, +oncipvaf_Cypher25SyntaxChecker_checkCreateAlias = ($this, $ctx) => { + if (oncipv_Cypher25Parser$CreateAliasContext_stringOrParameter($ctx) === null) + return; + if (oncipv_Cypher25Parser$CreateAliasContext_AT($ctx) === null && oncip_AstRuleCtx_getToken($ctx, 285, 0) === null && oncip_AstRuleCtx_getToken($ctx, 188, 0) === null && oncipv_Cypher25Parser$CreateAliasContext_DRIVER($ctx) === null) + return; + oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingDots($this, ju_List_of0(oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$CreateAliasContext_aliasName($ctx)), oncipv_Cypher25Parser$AliasTargetNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$CreateAliasContext_aliasTargetName($ctx)))); +}, +oncipvaf_Cypher25SyntaxChecker_checkAlterAlias = ($this, $ctx) => { + let $aliasTargets, $hasUrl, $usernames, $passwords, $driverSettings; + $aliasTargets = oncipv_Cypher25Parser$AlterAliasContext_alterAliasTarget($ctx); + $hasUrl = !$aliasTargets.$isEmpty() && oncip_AstRuleCtx_getToken($aliasTargets.$get0(0), 27, 0) !== null ? 1 : 0; + $usernames = oncipv_Cypher25Parser$AlterAliasContext_alterAliasUser($ctx); + $passwords = oncipv_Cypher25Parser$AlterAliasContext_alterAliasPassword($ctx); + $driverSettings = oncipv_Cypher25Parser$AlterAliasContext_alterAliasDriver($ctx); + if (!(!$hasUrl && $usernames.$isEmpty() && $passwords.$isEmpty() && $driverSettings.$isEmpty())) + oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingDots($this, ju_List_of(oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$AlterAliasContext_aliasName($ctx)))); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, $driverSettings, $rt_s(534), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, $usernames, $rt_s(558), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, $passwords, $rt_s(557), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher25Parser$AlterAliasContext_alterAliasProperties($ctx), $rt_s(531), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, $aliasTargets, $rt_s(4482), 0); +}, +oncipvaf_Cypher25SyntaxChecker_checkSymbolicAliasNameOrParameter = ($this, $ctx) => { + switch ($ctx.$parent.$getRuleIndex()) { + case 280: + break; + case 281: + oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingTooManyComponents($this, sci_$colon$colon__init_($ctx, sci_Nil$_MODULE$), oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS, $rt_s(5149)); + return; + default: + oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingTooManyComponents($this, sci_$colon$colon__init_($ctx, sci_Nil$_MODULE$), oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS, $rt_s(5150)); + return; + } +}, +oncipvaf_Cypher25SyntaxChecker_checkAlterUser = ($this, $ctx) => { + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$AlterUserContext_userStatus($ctx), $rt_s(5151), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$AlterUserContext_homeDatabase($ctx), $rt_s(5152), 0); +}, +oncipvaf_Cypher25SyntaxChecker_checkAllPrivilege = ($this, $ctx) => { + let $privilegeType, $privilegeTarget, $privilege, $target, $symbol; + $privilegeType = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AllPrivilegeTypeContext), 0); + $privilegeTarget = oncipv_Cypher25Parser$AllPrivilegeContext_allPrivilegeTarget($ctx); + if ($privilegeType === null) + return; + $privilege = oncip_AstRuleCtx_getToken($privilegeType, 116, 0) !== null ? s_Some__init_($rt_s(761)) : oncip_AstRuleCtx_getToken($privilegeType, 65, 0) !== null ? s_Some__init_($rt_s(31)) : oncip_AstRuleCtx_getToken($privilegeType, 61, 0) === null ? s_None$_MODULE$ : s_Some__init_($rt_s(4315)); + if ($privilegeTarget instanceof oncipv_Cypher25Parser$DefaultTargetContext) { + $ctx = $privilegeTarget; + $target = $privilege instanceof s_Some && jl_String_equals($rt_s(31), $privilege.$value5) ? s_Tuple2__init_($rt_s(588), (oncip_AstRuleCtx_getToken($ctx, 122, 0)).$getSymbol()) : oncipv_Cypher25Parser$DefaultTargetContext_GRAPH($ctx) === null ? s_Tuple2__init_($rt_s(4315), (oncipv_Cypher25Parser$DefaultTargetContext_DATABASE($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(761), (oncipv_Cypher25Parser$DefaultTargetContext_GRAPH($ctx)).$getSymbol()); + } else if ($privilegeTarget instanceof oncipv_Cypher25Parser$DatabaseVariableTargetContext) { + $ctx = $privilegeTarget; + $target = oncipv_Cypher25Parser$DatabaseVariableTargetContext_DATABASE($ctx) !== null ? s_Tuple2__init_($rt_s(4315), (oncipv_Cypher25Parser$DatabaseVariableTargetContext_DATABASE($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(4316), (oncip_AstRuleCtx_getToken($ctx, 62, 0)).$getSymbol()); + } else if (!($privilegeTarget instanceof oncipv_Cypher25Parser$GraphVariableTargetContext)) { + if (!($privilegeTarget instanceof oncipv_Cypher25Parser$DBMSTargetContext)) { + $ctx = new jl_IllegalStateException; + jl_Throwable__init_($ctx, $rt_s(5114)); + $rt_throw($ctx); + } + $ctx = $privilegeTarget; + $target = s_Tuple2__init_($rt_s(31), (oncip_AstRuleCtx_getToken($ctx, 65, 0)).$getSymbol()); + } else { + $ctx = $privilegeTarget; + $target = oncipv_Cypher25Parser$GraphVariableTargetContext_GRAPH($ctx) !== null ? s_Tuple2__init_($rt_s(761), (oncipv_Cypher25Parser$GraphVariableTargetContext_GRAPH($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(4360), (oncip_AstRuleCtx_getToken($ctx, 117, 0)).$getSymbol()); + } + $ctx = s_Tuple2__init_($privilege, $target); + $privilegeTarget = $ctx.$_10; + $ctx = $ctx.$_20; + if ($privilegeTarget instanceof s_Some) { + $privilege = $privilegeTarget.$value5; + if ($ctx !== null) { + $target = $ctx.$_1(); + $symbol = $ctx.$_2(); + if (jl_String_startsWith($target, $privilege)) + return; + $ctx = $this.$_errors0; + $privilegeTarget = $this.$exceptionFactory1; + $privilegeType = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($privilegeType); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($privilegeType, $rt_s(3713)), $target), $rt_s(5155)), $privilege), 34); + $this.$_errors0 = $ctx.$appended(onciu_OpenCypherExceptionFactory_syntaxException($privilegeTarget, jl_AbstractStringBuilder_toString($privilegeType), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $symbol))); + return; + } + } +}, +oncipvaf_Cypher25SyntaxChecker_checkGlobPart = ($this, $ctx) => { + let var$2; + if (oncipv_Cypher25Parser$GlobPartContext_DOT($ctx) !== null) + return; + var$2 = $ctx.$parent.$parent; + if (var$2 instanceof oncipv_Cypher25Parser$GlobRecursiveContext && oncipv_Cypher25Parser$GlobPartContext_escapedSymbolicNameString(oncipv_Cypher25Parser$GlobRecursiveContext_globPart(var$2)) !== null) + oncipvaf_Cypher25SyntaxChecker_addError$1($this, $ctx); + else if (var$2 instanceof oncipv_Cypher25Parser$GlobContext && oncipv_Cypher25Parser$GlobContext_escapedSymbolicNameString(var$2) !== null) + oncipvaf_Cypher25SyntaxChecker_addError$1($this, $ctx); +}, +oncipvaf_Cypher25SyntaxChecker_checkCreateConstraint = ($this, $ctx) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$2 = oncipv_Cypher25Parser$CreateConstraintContext_constraintType($ctx); + if (var$2 instanceof oncipv_Cypher25Parser$ConstraintIsUniqueContext) { + var$2 = var$2; + if (oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx) !== null && !(oncip_AstRuleCtx_getToken(var$2, 218, 0) === null && oncip_AstRuleCtx_getToken(var$2, 217, 0) === null)) { + var$3 = $this.$_errors0; + var$4 = $this.$exceptionFactory1; + var$5 = oncipcaf_ConstraintType_REL_UNIQUE.$description0; + var$6 = sci_$colon$colon__init_($rt_s(5158), sci_Nil$_MODULE$); + var$7 = oncipcaf_ConstraintType_REL_UNIQUE.$description0; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_AbstractStringBuilder_append0(var$8, 39); + jl_StringBuilder_append(jl_StringBuilder_append(var$8, var$7), $rt_s(5159)); + $this.$_errors0 = var$3.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$4, $rt_s(5160), var$5, var$6, jl_AbstractStringBuilder_toString(var$8), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx)).$start1))); + } + if (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx) !== null && oncip_AstRuleCtx_getToken(var$2, 169, 0) !== null) { + var$2 = $this.$_errors0; + var$3 = $this.$exceptionFactory1; + var$9 = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; + var$10 = sci_$colon$colon__init_($rt_s(5161), sci_Nil$_MODULE$); + var$8 = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_AbstractStringBuilder_append0(var$6, 39); + jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$8), $rt_s(5162)); + $this.$_errors0 = var$2.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$3, $rt_s(5163), var$9, var$10, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx)).$start1))); + return; + } + return; + } + if (!(var$2 instanceof oncipv_Cypher25Parser$ConstraintKeyContext)) { + if (var$2 instanceof oncipv_Cypher25Parser$ConstraintTypedContext ? 1 : !(var$2 instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) ? 0 : 1) + return; + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5169), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_constraintType($ctx)).$start1))); + return; + } + var$2 = var$2; + if (oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx) !== null && !(oncip_AstRuleCtx_getToken(var$2, 218, 0) === null && oncip_AstRuleCtx_getToken(var$2, 217, 0) === null)) { + var$8 = $this.$_errors0; + var$7 = $this.$exceptionFactory1; + var$6 = oncipcaf_ConstraintType_REL_KEY.$description0; + var$5 = sci_$colon$colon__init_($rt_s(5158), sci_Nil$_MODULE$); + var$4 = oncipcaf_ConstraintType_REL_KEY.$description0; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(var$3, 39); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$4), $rt_s(5159)); + $this.$_errors0 = var$8.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$7, $rt_s(5160), var$6, var$5, jl_AbstractStringBuilder_toString(var$3), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx)).$start1))); + } + if (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx) !== null && oncip_AstRuleCtx_getToken(var$2, 169, 0) !== null) { + var$4 = $this.$_errors0; + var$10 = $this.$exceptionFactory1; + var$9 = oncipcaf_ConstraintType_NODE_KEY.$description0; + var$8 = sci_$colon$colon__init_($rt_s(5161), sci_Nil$_MODULE$); + var$3 = oncipcaf_ConstraintType_NODE_KEY.$description0; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 39); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(5162)); + $this.$_errors0 = var$4.$appended(onciu_OpenCypherExceptionFactory_invalidInputException(var$10, $rt_s(5163), var$9, var$8, jl_AbstractStringBuilder_toString(var$2), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx)).$start1))); + return; + } +}, +oncipvaf_Cypher25SyntaxChecker_checkEnclosedPropertyList = ($this, $ctx) => { + let $secondProperty; + if ((oncipv_Cypher25Parser$EnclosedPropertyListContext_property($ctx)).$size() > 1 && $ctx.$parent !== null) { + $secondProperty = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyContext), 1)).$start1; + $ctx = $ctx.$parent.$parent; + if ($ctx instanceof oncipv_Cypher25Parser$ConstraintTypedContext) { + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5171), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $secondProperty))); + return; + } + if ($ctx instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) { + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5172), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $secondProperty))); + return; + } + if ($ctx instanceof oncipv_Cypher25Parser$DropConstraintContext && oncipv_Cypher25Parser$DropConstraintContext_EXISTS($ctx) !== null) { + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5170), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $secondProperty))); + return; + } + return; + } +}, +oncipvaf_Cypher25SyntaxChecker_checkCreateDatabase = ($this, $ctx) => { + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$CreateDatabaseContext_primaryTopology($ctx), $rt_s(4429), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$CreateDatabaseContext_secondaryTopology($ctx), $rt_s(4461), 0); +}, +oncipvaf_Cypher25SyntaxChecker_checkAlterDatabase = ($this, $ctx) => { + let $topology, $optionCtxs, $keyNames, $keySet, $i; + if (!(oncipv_Cypher25Parser$AlterDatabaseContext_REMOVE($ctx)).$isEmpty()) { + oncipau_Util$_$callClinit(); + $topology = oncipau_Util$_MODULE$; + $optionCtxs = oncipv_Cypher25Parser$AlterDatabaseContext_symbolicNameString($ctx); + sr_ClassTag$_$callClinit(); + $keyNames = oncipau_Util$_astSeq($topology, $optionCtxs, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); + scm_Set$_$callClinit(); + $keySet = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); + $i = sr_IntRef_create(0); + $topology = new oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0; + $topology.$_087 = $this; + $topology.$_132 = $keySet; + $topology.$_215 = $ctx; + $topology.$_38 = $i; + sc_IterableOnceOps_foreach$($keyNames, $topology); + } + if (!(oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption($ctx)).$isEmpty()) { + oncipau_Util$_$callClinit(); + $optionCtxs = oncipau_Util$_MODULE$; + $keyNames = oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption($ctx); + sr_ClassTag$_$callClinit(); + $keyNames = sc_StrictOptimizedIterableOps_flatMap$(oncipau_Util$_astSeq($optionCtxs, $keyNames, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(sci_Map))), new oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1); + scm_Set$_$callClinit(); + $keySet = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); + $i = sr_IntRef_create(0); + $topology = new oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2; + $topology.$_0549 = $this; + $topology.$_1183 = $keySet; + $topology.$_259 = $ctx; + $topology.$_320 = $i; + sc_IterableOnceOps_foreach$($keyNames, $topology); + } + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseAccess($ctx), $rt_s(4273), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseTopology($ctx), $rt_s(3586), 0); +}, +oncipvaf_Cypher25SyntaxChecker_checkAlterDatabaseTopology = ($this, $ctx) => { + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$AlterDatabaseTopologyContext_primaryTopology($ctx), $rt_s(4429), 0); + oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$AlterDatabaseTopologyContext_secondaryTopology($ctx), $rt_s(4461), 0); +}, +oncipvaf_Cypher25SyntaxChecker_addError$1 = ($this, $ctx$1) => { + $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory1, $rt_s(5192), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $ctx$1.$start1))); +}; +function oncius_ListType$isSubtypeOf$lambda$_33_0() { + jl_Object.call(this); + this.$_0286 = null; +} +let oncius_ListType$isSubtypeOf$lambda$_33_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0286.$innerTypes0; + var$3 = new oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0; + var$3.$_0682 = var$1; + return jl_Boolean_valueOf(var$2.$exists(var$3)); +}; +function oncius_NothingType() { + let a = this; jl_Object.call(a); + a.$covariant23 = null; + a.$invariant22 = null; + a.$position202 = null; + a.$parentType10 = null; + a.$toString27 = null; + a.$toCypherTypeString0 = null; + a.$isAbstract5 = 0; + a.$bitmap$028 = 0; +} +let oncius_NothingType_simplify = $this => { + return $this; +}, +oncius_NothingType_normalizedCypherTypeString = $this => { + return $this.$description(); +}, +oncius_NothingType_coercibleTo = $this => { + return oncius_CypherType_coercibleTo$($this); +}, +oncius_NothingType_isAssignableFrom = ($this, $other) => { + return oncius_CypherType_isAssignableFrom$($this, $other); +}, +oncius_NothingType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq = ($this, $x$1) => { + $this.$isAbstract5 = $x$1; +}, +oncius_NothingType_position = $this => { + return $this.$position202; +}, +oncius_NothingType_parentType = $this => { + return $this.$parentType10; +}, +oncius_NothingType_toString = $this => { + return $this.$toString27; +}, +oncius_NothingType_toCypherTypeString = $this => { + return $this.$toCypherTypeString0; +}, +oncius_NothingType_sortOrder = $this => { + oncius_CypherTypeOrder$_$callClinit(); + return oncius_CypherTypeOrder$_NOTHING.$i; +}, +oncius_NothingType_isNullable = $this => { + return 0; +}, +oncius_NothingType_description = $this => { + return $this.$toCypherTypeString0; +}, +oncius_NothingType_withIsNullable = ($this, $isNullable) => { + return $this; +}, +oncius_NothingType_isSubtypeOf = ($this, $otherCypherType) => { + return 1; +}, +oncius_NothingType_withPosition = ($this, $newPosition) => { + return oncius_NothingType_copy($this, $newPosition); +}, +oncius_NothingType_covariant = $this => { + let var$1, $$je; + if (($this.$bitmap$028 & 1) << 24 >> 24) + return $this.$covariant23; + jl_Object_monitorEnterSync($this); a: { b: { - c: { - d: { - try { - e: { - f: { - oavr_Recognizer_setState($this, 2179); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 37: - case 297: - break f; - case 301: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2178); - oncipv_Cypher5Parser_whereClause($this); - break e; - case 306: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2174); - oncipv_Cypher5Parser_yieldClause($this); - oavr_Recognizer_setState($this, 2176); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 233) - break e; - oavr_Recognizer_setState($this, 2175); - oncipv_Cypher5Parser_returnClause($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2170); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 37 && $_la != 297) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2172); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 192) { - oavr_Recognizer_setState($this, 2171); - oavr_Parser_match($this, 192); - } - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + try { + if (!(($this.$bitmap$028 & 1) << 24 >> 24)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + break a; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + return $this.$covariant23; + } + try { + $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5207))); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); }, -oncipv_Cypher5Parser_showIndexCommand = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowIndexCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 318, 159); +oncius_NothingType_invariant = $this => { + let var$1, $$je; + if (($this.$bitmap$028 & 2) << 24 >> 24) + return $this.$invariant22; + jl_Object_monitorEnterSync($this); a: { b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2187); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 18: - case 38: - case 132: - case 133: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2184); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 38)) { - oavr_Recognizer_setState($this, 2183); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 38) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2186); - oncipv_Cypher5Parser_showIndexesAllowBrief($this); - break e; - case 115: - case 154: - case 201: - case 215: - case 268: - case 296: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2181); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 115 && $_la != 154 && $_la != 201 && $_la != 215 && $_la != 268 && $_la != 296) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2182); - oncipv_Cypher5Parser_showIndexesNoBrief($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + try { + if (!(($this.$bitmap$028 & 2) << 24 >> 24)) + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + break a; + + } + jl_Object_monitorExitSync($this); + return $this.$invariant22; + } + try { + $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5207))); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); +}, +oncius_NothingType_leastUpperBound = ($this, $other) => { + $other = new jl_UnsupportedOperationException; + jl_Throwable__init_($other, $rt_s(5207)); + $rt_throw($other); +}, +oncius_NothingType_greatestLowerBound = ($this, $other) => { + $other = new jl_UnsupportedOperationException; + jl_Throwable__init_($other, $rt_s(5207)); + $rt_throw($other); +}, +oncius_NothingType_copy = ($this, $position) => { + return oncius_NothingType__init_($position); +}, +oncius_NothingType_productPrefix = $this => { + return $rt_s(5208); +}, +oncius_NothingType_productArity = $this => { + return 0; +}, +oncius_NothingType_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncius_NothingType_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncius_NothingType_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncius_NothingType_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncius_NothingType) ? 0 : 1; + return var$2 && $this instanceof oncius_NothingType ? 1 : 0; +}, +oncius_NothingType_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncius_NothingType__init_0 = ($this, $position) => { + $this.$position202 = $position; + oncius_CypherType_$init$($this); + $this.$parentType10 = $this; + $this.$toString27 = $rt_s(135); + $this.$toCypherTypeString0 = $rt_s(4411); +}, +oncius_NothingType__init_ = var_0 => { + let var_1 = new oncius_NothingType(); + oncius_NothingType__init_0(var_1, var_0); + return var_1; +}; +function oncius_NullType() { + let a = this; jl_Object.call(a); + a.$covariant24 = null; + a.$invariant23 = null; + a.$position144 = null; + a.$parentType20 = null; + a.$toString31 = null; + a.$toCypherTypeString21 = null; + a.$isAbstract11 = 0; + a.$bitmap$026 = 0; +} +let oncius_NullType_description = $this => { + return oncius_CypherType_description$($this); +}, +oncius_NullType_simplify = $this => { + return $this; +}, +oncius_NullType_normalizedCypherTypeString = $this => { + return $this.$description(); +}, +oncius_NullType_coercibleTo = $this => { + return oncius_CypherType_coercibleTo$($this); +}, +oncius_NullType_isAssignableFrom = ($this, $other) => { + return oncius_CypherType_isAssignableFrom$($this, $other); +}, +oncius_NullType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq = ($this, $x$1) => { + $this.$isAbstract11 = $x$1; +}, +oncius_NullType_position = $this => { + return $this.$position144; +}, +oncius_NullType_parentType = $this => { + return $this.$parentType20; +}, +oncius_NullType_toString = $this => { + return $this.$toString31; +}, +oncius_NullType_toCypherTypeString = $this => { + return $this.$toCypherTypeString21; +}, +oncius_NullType_sortOrder = $this => { + oncius_CypherTypeOrder$_$callClinit(); + return oncius_CypherTypeOrder$_NULL.$i; +}, +oncius_NullType_isNullable = $this => { + return 1; +}, +oncius_NullType_withIsNullable = ($this, $isNullable) => { + if ($isNullable) + return $this; + return oncius_NothingType__init_($this.$position144); +}, +oncius_NullType_isSubtypeOf = ($this, $otherCypherType) => { + return $otherCypherType.$isNullable(); +}, +oncius_NullType_withPosition = ($this, $newPosition) => { + return oncius_NullType_copy($this, $newPosition); +}, +oncius_NullType_covariant = $this => { + let var$1, $$je; + if (($this.$bitmap$026 & 1) << 24 >> 24) + return $this.$covariant24; + jl_Object_monitorEnterSync($this); + a: { + b: { + try { + if (!(($this.$bitmap$026 & 1) << 24 >> 24)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + break a; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + return $this.$covariant24; + } + try { + $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5209))); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); }, -oncipv_Cypher5Parser_showIndexesAllowBrief = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowIndexesAllowBriefContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 320, 160); +oncius_NullType_invariant = $this => { + let var$1, $$je; + if (($this.$bitmap$026 & 2) << 24 >> 24) + return $this.$invariant23; + jl_Object_monitorEnterSync($this); a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2189); - oncipv_Cypher5Parser_indexToken($this); - oavr_Recognizer_setState($this, 2191); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 37) { - $_la = $_la - 297 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(529)), Long_ZERO)) - break e; - } - oavr_Recognizer_setState($this, 2190); - oncipv_Cypher5Parser_showBriefAndYield($this); - } - oavr_Recognizer_setState($this, 2194); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 255 && $_la != 267)) { - oavr_Recognizer_setState($this, 2193); - oncipv_Cypher5Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + try { + if (!(($this.$bitmap$026 & 2) << 24 >> 24)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + break a; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + return $this.$invariant23; + } + try { + $rt_throw(jl_UnsupportedOperationException__init_($rt_s(5209))); + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); }, -oncipv_Cypher5Parser_showIndexesNoBrief = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowIndexesNoBriefContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 322, 161); +oncius_NullType_leastUpperBound = ($this, $other) => { + $other = new jl_UnsupportedOperationException; + jl_Throwable__init_($other, $rt_s(5209)); + $rt_throw($other); +}, +oncius_NullType_greatestLowerBound = ($this, $other) => { + $other = new jl_UnsupportedOperationException; + jl_Throwable__init_($other, $rt_s(5209)); + $rt_throw($other); +}, +oncius_NullType_copy = ($this, $position) => { + return oncius_NullType__init_($position); +}, +oncius_NullType_productPrefix = $this => { + return $rt_s(5210); +}, +oncius_NullType_productArity = $this => { + return 0; +}, +oncius_NullType_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncius_NullType_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncius_NullType_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncius_NullType_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncius_NullType) ? 0 : 1; + return var$2 && $this instanceof oncius_NullType ? 1 : 0; +}, +oncius_NullType_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncius_NullType__init_0 = ($this, $position) => { + $this.$position144 = $position; + oncius_CypherType_$init$($this); + $this.$parentType20 = $this; + $this.$toString31 = $rt_s(134); + $this.$toCypherTypeString21 = $rt_s(4118); +}, +oncius_NullType__init_ = var_0 => { + let var_1 = new oncius_NullType(); + oncius_NullType__init_0(var_1, var_0); + return var_1; +}; +function oncius_ListType$isSubtypeOf$lambda$_33_1() { + jl_Object.call(this); + this.$_0760 = null; +} +let oncius_ListType$isSubtypeOf$lambda$_33_1_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(oncius_ListType_isSubtypeOf(var$0.$_0760, var$1)); +}; +function oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0() { + jl_Object.call(this); + this.$_0223 = null; +} +let oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0223.$innerTypes0; + var$3 = new oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0; + var$3.$_0726 = var$1; + return jl_Boolean_valueOf(var$2.$exists(var$3)); +}; +function oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1() { + jl_Object.call(this); + this.$_0826 = null; +} +let oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isSubtypeOf(var$0.$_0826)); +}, +oavrm_MurmurHash = $rt_classWithoutFields(), +oavrm_MurmurHash_initialize = () => { + return 0; +}, +oavrm_MurmurHash_update = ($hash, $value) => { + let var$3; + var$3 = $rt_imul($value, (-862048943)); + $hash = $hash ^ $rt_imul(var$3 << 15 | (var$3 >>> 17 | 0), 461845907); + return (($hash << 13 | ($hash >>> 19 | 0)) * 5 | 0) + (-430675100) | 0; +}, +oavrm_MurmurHash_update0 = ($hash, $value) => { + return oavrm_MurmurHash_update($hash, $value === null ? 0 : $value.$hashCode()); +}, +oavrm_MurmurHash_finish = ($hash, $numberOfWords) => { + $hash = $hash ^ ($numberOfWords * 4 | 0); + $hash = $rt_imul($hash ^ ($hash >>> 16 | 0), (-2048144789)); + $hash = $rt_imul($hash ^ ($hash >>> 13 | 0), (-1028477387)); + return $hash ^ ($hash >>> 16 | 0); +}, +oavrm_MurmurHash_hashCode = ($data, $hash) => { + let var$3, var$4; + $data = $data.data; + var$3 = $data.length; + var$4 = 0; + while (var$4 < var$3) { + $hash = oavrm_MurmurHash_update0($hash, $data[var$4]); + var$4 = var$4 + 1 | 0; + } + return oavrm_MurmurHash_finish($hash, var$3); +}; +function oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1() { + let a = this; jl_Object.call(a); + a.$introducedVariable = null; + a.$replacedExpression = null; +} +let oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productPrefix = $this => { + return $rt_s(5211); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productArity = $this => { + return 2; +}, +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$introducedVariable; + case 1: + return $this.$replacedExpression; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$introducedVariable; + var$3 = $x$1.$introducedVariable; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2196); - oncipv_Cypher5Parser_indexToken($this); - oavr_Recognizer_setState($this, 2198); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2197); - oncipv_Cypher5Parser_showCommandYield($this); - } - oavr_Recognizer_setState($this, 2201); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 255 && $_la != 267)) { - oavr_Recognizer_setState($this, 2200); - oncipv_Cypher5Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$replacedExpression; + $x$1 = $x$1.$replacedExpression; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_showConstraintCommand = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowConstraintCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 324, 162); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 2229); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 238, $this.$_ctx)) { - case 1: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ShowConstraintMultiContext; - var$2 = $re; - oncipv_Cypher5Parser$ShowConstraintMultiContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 2204); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2203); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break f; - } - } - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - } - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2206); - oncipv_Cypher5Parser_constraintAllowYieldType($this); - oavr_Recognizer_setState($this, 2207); - oncipv_Cypher5Parser_showConstraintsAllowYield($this); - break e; - case 2: - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ShowConstraintUniqueContext; - var$2 = $re; - oncipv_Cypher5Parser$ShowConstraintUniqueContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 2209); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break g; - } - } - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2210); - oavr_Parser_match($this, 286); - oavr_Recognizer_setState($this, 2211); - oncipv_Cypher5Parser_showConstraintsAllowYield($this); - break e; - case 3: - h: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ShowConstraintKeyContext; - var$2 = $re; - oncipv_Cypher5Parser$ShowConstraintKeyContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 2213); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 223) { - var$2 = $re; - if ($_la != 224) - break h; - } - var$2 = $re; - oavr_Recognizer_setState($this, 2212); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 223) { - var$2 = $re; - if ($_la != 224) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break h; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2215); - oavr_Parser_match($this, 141); - oavr_Recognizer_setState($this, 2216); - oncipv_Cypher5Parser_showConstraintsAllowYield($this); - break e; - case 4: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ShowConstraintRelExistContext; - var$2 = $re; - oncipv_Cypher5Parser$ShowConstraintRelExistContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 2217); - oavr_Parser_match($this, 223); - oavr_Recognizer_setState($this, 2218); - oavr_Parser_match($this, 103); - oavr_Recognizer_setState($this, 2219); - oncipv_Cypher5Parser_showConstraintsAllowYield($this); - break e; - case 5: - i: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ShowConstraintOldExistsContext; - var$2 = $re; - oncipv_Cypher5Parser$ShowConstraintOldExistsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 2221); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 173) { - var$2 = $re; - if ($_la != 224) - break i; - } - var$2 = $re; - oavr_Recognizer_setState($this, 2220); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 173) { - var$2 = $re; - if ($_la != 224) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break i; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2223); - oavr_Parser_match($this, 105); - oavr_Recognizer_setState($this, 2224); - oncipv_Cypher5Parser_showConstraintsAllowBrief($this); - break e; - case 6: - j: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext; - var$2 = $re; - oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 6); - oavr_Recognizer_setState($this, 2226); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18) { - var$2 = $re; - if ($_la != 103) { - var$2 = $re; - if ($_la != 173) { - var$2 = $re; - if ($_la != 224) { - var$2 = $re; - if ($_la != 286) - break j; - } - } - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2225); - oncipv_Cypher5Parser_constraintBriefAndYieldType($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2228); - oncipv_Cypher5Parser_showConstraintsAllowBriefAndYield($this); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncip_CypherErrorStrategy$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$_MODULE$ = null, +oncip_CypherErrorStrategy$_quoteMismatchErrorMessage = null, +oncip_CypherErrorStrategy$_commentMismatchErrorMessage = null, +oncip_CypherErrorStrategy$__clinit_ = () => { + oncip_CypherErrorStrategy$_MODULE$ = new oncip_CypherErrorStrategy$; + oncip_CypherErrorStrategy$_quoteMismatchErrorMessage = $rt_s(2357); + oncip_CypherErrorStrategy$_commentMismatchErrorMessage = $rt_s(5212); +}, +oncip_CypherErrorStrategy$message$lambda$_7_0 = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$message$lambda$_7_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(var$1.$getType0() != (-1) && var$1.$getType0() != (-2) && var$1.$getType0() ? 1 : 0); +}, +oncip_CypherErrorStrategy$message$lambda$_7_1 = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$message$lambda$_7_1_apply = (var$0, var$1) => { + var$1 = var$1; + s_Option$_$callClinit(); + return s_Option$_apply(s_Option$_MODULE$, var$1.$getText()); +}, +oncip_CypherErrorStrategy$message$lambda$_7_2 = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$message$lambda$_7_2_apply = (var$0, var$1) => { + return jl_String_replace(jl_String_replace(jl_String_replace(var$1, $rt_s(94), $rt_s(4246)), $rt_s(4247), $rt_s(4248)), $rt_s(4249), $rt_s(4250)); +}, +oncip_CypherErrorStrategy$message$lambda$_7_3 = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$message$lambda$_7_3_apply = var$0 => { + return $rt_s(4); +}; +function sci_VectorSliceBuilder() { + let a = this; jl_Object.call(a); + a.$lo = 0; + a.$hi = 0; + a.$scala$collection$immutable$VectorSliceBuilder$$slices = null; + a.$len0 = 0; + a.$pos3 = 0; + a.$maxDim = 0; +} +let sci_VectorSliceBuilder_consider = ($this, $n, $a) => { + let $count, $lo0, $hi0; + $count = $rt_imul($a.data.length, 1 << (5 * ($n - 1 | 0) | 0)); + $lo0 = jl_Math_max($this.$lo - $this.$pos3 | 0, 0); + $hi0 = jl_Math_min($this.$hi - $this.$pos3 | 0, $count); + if ($hi0 > $lo0) { + sci_VectorSliceBuilder_addSlice($this, $n, $a, $lo0, $hi0); + $this.$len0 = $this.$len0 + ($hi0 - $lo0 | 0) | 0; + } + $this.$pos3 = $this.$pos3 + $count | 0; +}, +sci_VectorSliceBuilder_addSlice = ($this, $n, $a, $lo, $hi) => { + let $n_0, $bitsN, $widthN, $loN, $hiN, var$10; + while (true) { + if ($n == 1) { + if (!(!$lo && $hi == $a.data.length)) + $a = ju_Arrays_copyOfRange($a, $lo, $hi); + sci_VectorSliceBuilder_add($this, 1, $a); + return; + } + $n_0 = $n - 1 | 0; + $bitsN = 5 * $n_0 | 0; + $widthN = 1 << $bitsN; + $loN = $lo >>> $bitsN | 0; + $hiN = $hi >>> $bitsN | 0; + $bitsN = $widthN - 1 | 0; + $lo = $lo & $bitsN; + $hi = $hi & $bitsN; + if (!$lo) { + if (!$hi) + break; + if ($hiN > $loN) + sci_VectorSliceBuilder_add($this, $n, !$loN && $hiN == $a.data.length ? $a : ju_Arrays_copyOfRange($a, $loN, $hiN)); + $a = $a.data[$hiN]; + $lo = 0; + $n = $n_0; + continue; + } + if ($hiN == $loN) { + $a = $a.data[$loN]; + $n = $n_0; + continue; + } + var$10 = $a.data; + sci_VectorSliceBuilder_addSlice($this, $n_0, var$10[$loN], $lo, $widthN); + if (!$hi) { + $lo = $loN + 1 | 0; + if ($hiN <= $lo) + return; + if (!(!$lo && $hiN == var$10.length)) + $a = ju_Arrays_copyOfRange($a, $lo, $hiN); + sci_VectorSliceBuilder_add($this, $n, $a); + return; + } + $lo = $loN + 1 | 0; + if ($hiN > $lo) { + if (!(!$lo && $hiN == var$10.length)) + $a = ju_Arrays_copyOfRange($a, $lo, $hiN); + sci_VectorSliceBuilder_add($this, $n, $a); + } + $a = var$10[$hiN]; + $lo = 0; + $n = $n_0; + } + if (!(!$loN && $hiN == $a.data.length)) + $a = ju_Arrays_copyOfRange($a, $loN, $hiN); + sci_VectorSliceBuilder_add($this, $n, $a); +}, +sci_VectorSliceBuilder_add = ($this, $n, $a) => { + let $idx; + if ($n <= $this.$maxDim) + $idx = 11 - $n | 0; + else { + $this.$maxDim = $n; + $idx = $n - 1 | 0; + } + $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[$idx] = $a; +}, +sci_VectorSliceBuilder_result = $this => { + let $len12, $suffix1, $a, $a_0, $prefix1, $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n, $prefix2, $pre, $suf, $suffixOr_s, $len123, $len1234, $len1, $concatArrays_dest, $dataOr_a, $dataOr_s, $prefixOr_a, $prefixOr_p, $data3, $suffixOr_a, $prefix3, $data4, $suffix3, $suffix2, $prefix4, $data5, $suffix4, $prefix5, $data6, $suffix5, $suffixOr_a_0, $len12_0; + $len12 = $this.$len0; + if ($len12 <= 32) { + if (!$len12) { + sci_Vector0$_$callClinit(); + return sci_Vector0$_MODULE$; + } + $suffix1 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + $a = $suffix1[0]; + $a_0 = $suffix1[10]; + if ($a !== null) { + if ($a_0 !== null) { + $suffix1 = $a.data; + $prefix1 = $a_0.data; + $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n = $suffix1.length; + $len12 = $prefix1.length; + $a = ju_Arrays_copyOf($a, $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n + $len12 | 0); + jl_System_fastArraycopy($a_0, 0, $a, $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n, $len12); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + } else if ($a_0 !== null) + $a = $a_0; + else { + $prefix2 = $suffix1[1]; + $a = $prefix2 !== null ? $prefix2.data[0] : $suffix1[9].data[0]; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + return sci_Vector1__init_($a); + } + sci_VectorSliceBuilder_balancePrefix($this, 1); + sci_VectorSliceBuilder_balanceSuffix($this, 1); + $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n = $this.$maxDim; + if ($scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n < 6) { + $suffix1 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + $len12 = $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n - 1 | 0; + $pre = $suffix1[$len12]; + $suf = $suffix1[11 - $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n | 0]; + if ($pre !== null && $suf !== null) { + $prefix1 = $pre.data; + $suffixOr_s = $suf.data; + $len123 = $prefix1.length; + $len1234 = $suffixOr_s.length; + $len1 = $len123 + $len1234 | 0; + if ($len1 > 30) + $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n = $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n + 1 | 0; + else { + $concatArrays_dest = ju_Arrays_copyOf($pre, $len1); + jl_System_fastArraycopy($suf, 0, $concatArrays_dest, $len123, $len1234); + $suffix1[$len12] = $concatArrays_dest; + $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[11 - $this.$maxDim | 0] = null; + } + } else { + if ($pre !== null) + $suf = $pre; + if ($suf.data.length > 30) + $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n = $scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n + 1 | 0; + } + } + $suffix1 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + $prefix1 = $suffix1[0]; + $suffixOr_s = $prefix1.data; + $suffix1 = $suffix1[10]; + $len1 = $suffixOr_s.length; + switch ($scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n) { + case 2: + $dataOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + $dataOr_s = $suffixOr_s[1]; + if ($dataOr_s === null) { + $dataOr_s = $suffixOr_s[9]; + if ($dataOr_s === null) + $dataOr_s = $dataOr_a; + } + return sci_Vector2__init_($prefix1, $len1, $dataOr_s, $suffix1, $this.$len0); + case 3: + $prefixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[1]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix2 = $prefixOr_a; + $dataOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + $dataOr_s = $suffixOr_s[2]; + if ($dataOr_s === null) { + $dataOr_s = $suffixOr_s[8]; + if ($dataOr_s === null) + $dataOr_s = $dataOr_a; + } + $data3 = $dataOr_s; + $suffixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[9]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + return sci_Vector3__init_($prefix1, $len1, $prefix2, $len1 + ($prefix2.data.length * 32 | 0) | 0, $data3, $suffixOr_a, $suffix1, $this.$len0); + case 4: + $prefixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[1]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix2 = $prefixOr_a; + $prefixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[2]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix3 = $prefixOr_a; + $dataOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + $dataOr_s = $suffixOr_s[3]; + if ($dataOr_s === null) { + $dataOr_s = $suffixOr_s[7]; + if ($dataOr_s === null) + $dataOr_s = $dataOr_a; + } + $data4 = $dataOr_s; + $suffixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[8]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + $suffix3 = $suffixOr_a; + $suffixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[9]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + $suffixOr_s = $prefix2.data; + $prefixOr_a = $prefix3.data; + $suffix2 = $suffixOr_a; + $len12 = $len1 + ($suffixOr_s.length * 32 | 0) | 0; + return sci_Vector4__init_($prefix1, $len1, $prefix2, $len12, $prefix3, $len12 + ($prefixOr_a.length * 1024 | 0) | 0, $data4, $suffix3, $suffix2, $suffix1, $this.$len0); + case 5: + $prefixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[1]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix2 = $prefixOr_a; + $prefixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[2]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix3 = $prefixOr_a; + $prefixOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[3]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix4 = $prefixOr_a; + $dataOr_a = sci_VectorStatics$_empty5(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + $dataOr_s = $suffixOr_s[4]; + if ($dataOr_s === null) { + $dataOr_s = $suffixOr_s[6]; + if ($dataOr_s === null) + $dataOr_s = $dataOr_a; + } + $data5 = $dataOr_s; + $suffixOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[7]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + $suffix4 = $suffixOr_a; + $suffixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[8]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + $suffix3 = $suffixOr_a; + $suffixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[9]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + $suffixOr_s = $prefix2.data; + $prefixOr_a = $prefix3.data; + $prefixOr_p = $prefix4.data; + $suffix2 = $suffixOr_a; + $len12 = $len1 + ($suffixOr_s.length * 32 | 0) | 0; + $len123 = $len12 + ($prefixOr_a.length * 1024 | 0) | 0; + return sci_Vector5__init_($prefix1, $len1, $prefix2, $len12, $prefix3, $len123, $prefix4, $len123 + ($prefixOr_p.length * 32768 | 0) | 0, $data5, $suffix4, $suffix3, $suffix2, $suffix1, $this.$len0); + case 6: + $prefixOr_a = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[1]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix2 = $prefixOr_a; + $prefixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[2]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix3 = $prefixOr_a; + $prefixOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[3]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix4 = $prefixOr_a; + $prefixOr_a = sci_VectorStatics$_empty5(sci_VectorStatics$_MODULE$); + $prefixOr_p = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[4]; + if ($prefixOr_p !== null) + $prefixOr_a = $prefixOr_p; + $prefix5 = $prefixOr_a; + $dataOr_a = sci_VectorStatics$_empty6(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + $dataOr_s = $suffixOr_s[5]; + if ($dataOr_s === null) { + $dataOr_s = $suffixOr_s[5]; + if ($dataOr_s === null) + $dataOr_s = $dataOr_a; + } + $data6 = $dataOr_s; + $suffixOr_a = sci_VectorStatics$_empty5(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[6]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + $suffix5 = $suffixOr_a; + $suffixOr_a = sci_VectorStatics$_empty4(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[7]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + $suffix4 = $suffixOr_a; + $suffixOr_a = sci_VectorStatics$_empty3(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[8]; + if ($suffixOr_s !== null) + $suffixOr_a = $suffixOr_s; + $suffix3 = $suffixOr_a; + $suffixOr_a_0 = sci_VectorStatics$_empty2(sci_VectorStatics$_MODULE$); + $suffixOr_s = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data[9]; + if ($suffixOr_s !== null) + $suffixOr_a_0 = $suffixOr_s; + $prefixOr_a = $prefix2.data; + $prefixOr_p = $prefix3.data; + $suffixOr_s = $prefix4.data; + $suffixOr_a = $prefix5.data; + $suffix2 = $suffixOr_a_0; + $len12_0 = $len1 + ($prefixOr_a.length * 32 | 0) | 0; + $len123 = $len12_0 + ($prefixOr_p.length * 1024 | 0) | 0; + $len1234 = $len123 + ($suffixOr_s.length * 32768 | 0) | 0; + return sci_Vector6__init_($prefix1, $len1, $prefix2, $len12_0, $prefix3, $len123, $prefix4, $len1234, $prefix5, $len1234 + $rt_imul($suffixOr_a.length, 1048576) | 0, $data6, $suffix5, $suffix4, $suffix3, $suffix2, $suffix1, $this.$len0); + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf($scala$collection$immutable$VectorSliceBuilder$$suffixIdx_n))); +}, +sci_VectorSliceBuilder_balancePrefix = ($this, $n) => { + let var$2, var$3, var$4, var$5, var$6, $preN1, var$8, var$9; + var$2 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + var$3 = $n - 1 | 0; + if (var$2[var$3] !== null) + return; + if ($n == $this.$maxDim) { + $n = 11 - $n | 0; + var$2[var$3] = var$2[$n]; + var$2[$n] = null; + return; + } + var$4 = $n + 1 | 0; + sci_VectorSliceBuilder_balancePrefix($this, var$4); + var$5 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + var$6 = var$4 - 1 | 0; + $preN1 = var$5[var$6]; + var$8 = $preN1.data; + var$5[var$3] = var$8[0]; + var$9 = var$8.length; + if (var$9 != 1) { + var$5[var$6] = ju_Arrays_copyOfRange($preN1, 1, var$9); + return; + } + var$5[var$6] = null; + if ($this.$maxDim == var$4 && var$5[11 - var$4 | 0] === null) { + $this.$maxDim = $n; + return; + } +}, +sci_VectorSliceBuilder_balanceSuffix = ($this, $n) => { + let var$2, var$3, var$4, var$5, var$6, $sufN1, var$8, var$9; + var$2 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + var$3 = 11 - $n | 0; + if (var$2[var$3] !== null) + return; + if ($n == $this.$maxDim) { + $n = $n - 1 | 0; + var$2[var$3] = var$2[$n]; + var$2[$n] = null; + return; + } + var$4 = $n + 1 | 0; + sci_VectorSliceBuilder_balanceSuffix($this, var$4); + var$5 = $this.$scala$collection$immutable$VectorSliceBuilder$$slices.data; + var$6 = 11 - var$4 | 0; + $sufN1 = var$5[var$6]; + var$2 = $sufN1.data; + var$8 = var$2.length; + var$9 = var$8 - 1 | 0; + var$5[var$3] = var$2[var$9]; + if (var$8 != 1) { + var$5[var$6] = ju_Arrays_copyOfRange($sufN1, 0, var$9); + return; + } + var$5[var$6] = null; + if ($this.$maxDim == var$4 && var$5[var$4 - 1 | 0] === null) { + $this.$maxDim = $n; + return; + } +}, +sci_VectorSliceBuilder__init_0 = ($this, $lo, $hi) => { + $this.$lo = $lo; + $this.$hi = $hi; + $this.$scala$collection$immutable$VectorSliceBuilder$$slices = $rt_createArray($rt_arraycls(jl_Object), 11); + $this.$len0 = 0; + $this.$pos3 = 0; + $this.$maxDim = 0; +}, +sci_VectorSliceBuilder__init_ = (var_0, var_1) => { + let var_2 = new sci_VectorSliceBuilder(); + sci_VectorSliceBuilder__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0() { + jl_Object.call(this); + this.$_0568 = null; +} +let oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0__init_0 = (var$0, var$1) => { + var$0.$_0568 = var$1; +}, +oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0__init_ = var_0 => { + let var_1 = new oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0(); + oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0__init_0(var_1, var_0); + return var_1; +}, +oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0_apply = var$0 => { + return var$0.$_0568.$subsequentGraphSelection0; +}; +function oavra_SingletonPredictionContext() { + let a = this; oavra_PredictionContext.call(a); + a.$parent1 = null; + a.$returnState = 0; +} +let oavra_SingletonPredictionContext_$assertionsDisabled = 0, +oavra_SingletonPredictionContext__init_ = ($this, $parent, $returnState) => { + let var$3; + if ($parent === null) { + oavra_PredictionContext_$callClinit(); + var$3 = oavrm_MurmurHash_finish(1, 0); + } else { + oavra_PredictionContext_$callClinit(); + var$3 = oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update0(1, $parent), $returnState), 2); + } + oavra_PredictionContext__init_($this, var$3); + if (!oavra_SingletonPredictionContext_$assertionsDisabled && $returnState == (-1)) { + $parent = new jl_AssertionError; + jl_Throwable__init_0($parent); + $rt_throw($parent); + } + $this.$parent1 = $parent; + $this.$returnState = $returnState; +}, +oavra_SingletonPredictionContext__init_0 = (var_0, var_1) => { + let var_2 = new oavra_SingletonPredictionContext(); + oavra_SingletonPredictionContext__init_(var_2, var_0, var_1); + return var_2; +}, +oavra_SingletonPredictionContext_create = ($parent, $returnState) => { + if ($returnState == 2147483647 && $parent === null) { + oavra_EmptyPredictionContext_$callClinit(); + return oavra_EmptyPredictionContext_Instance; + } + return oavra_SingletonPredictionContext__init_0($parent, $returnState); +}, +oavra_SingletonPredictionContext_size = $this => { + return 1; +}, +oavra_SingletonPredictionContext_getParent = ($this, $index) => { + let var$2; + if (!oavra_SingletonPredictionContext_$assertionsDisabled && $index) { + var$2 = new jl_AssertionError; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); + } + return $this.$parent1; +}, +oavra_SingletonPredictionContext_getReturnState = ($this, $index) => { + let var$2; + if (!oavra_SingletonPredictionContext_$assertionsDisabled && $index) { + var$2 = new jl_AssertionError; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); } - return $re; + return $this.$returnState; }, -oncipv_Cypher5Parser_constraintAllowYieldType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 326, 163); +oavra_SingletonPredictionContext_equals = ($this, $o) => { + let $s, var$3; + if ($this === $o) + return 1; + if (!($o instanceof oavra_SingletonPredictionContext)) + return 0; + if ($this.$cachedHashCode0 != $o.$hashCode()) + return 0; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2235); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 239, $this.$_ctx)) { - case 1: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2231); - oavr_Parser_match($this, 287); - break e; - case 2: - break; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2233); - oavr_Parser_match($this, 211); - oavr_Recognizer_setState($this, 2234); - oavr_Parser_match($this, 282); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2232); - oncipv_Cypher5Parser_constraintExistType($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + $s = $o; + if ($this.$returnState == $s.$returnState) { + $o = $this.$parent1; + if ($o !== null && $o.$equals($s.$parent1)) { + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_constraintExistType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ConstraintExistTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 328, 164); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2242); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 240, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2238); - oavr_Parser_match($this, 211); - oavr_Recognizer_setState($this, 2239); - oavr_Parser_match($this, 104); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2240); - oavr_Parser_match($this, 211); - oavr_Recognizer_setState($this, 2241); - oavr_Parser_match($this, 103); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2237); - oavr_Parser_match($this, 104); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oavra_SingletonPredictionContext_toString = $this => { + let $up, var$2, var$3; + $up = $this.$parent1; + $up = $up === null ? $rt_s(4) : $up.$toString(); + if (!$up.$nativeString.length) { + var$2 = $this.$returnState; + if (var$2 != 2147483647) + return jl_String_valueOf0(var$2); + return $rt_s(5213); } - return $_localctx; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append(var$3, jl_String_valueOf0($this.$returnState)); + jl_AbstractStringBuilder_append(var$3, $rt_s(370)); + jl_AbstractStringBuilder_append(var$3, $up); + return jl_AbstractStringBuilder_toString(var$3); }, -oncipv_Cypher5Parser_constraintBriefAndYieldType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 330, 165); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2253); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 241, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2245); - oavr_Parser_match($this, 286); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2246); - oavr_Parser_match($this, 103); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 2247); - oavr_Parser_match($this, 173); - oavr_Recognizer_setState($this, 2248); - oavr_Parser_match($this, 141); - break e; - case 5: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 2249); - oavr_Parser_match($this, 173); - oavr_Recognizer_setState($this, 2250); - oavr_Parser_match($this, 103); - break e; - case 6: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 2251); - oavr_Parser_match($this, 224); - oavr_Recognizer_setState($this, 2252); - oavr_Parser_match($this, 103); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2244); - oavr_Parser_match($this, 18); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +oavra_SingletonPredictionContext__clinit_ = () => { + oavra_SingletonPredictionContext_$assertionsDisabled = 0; +}, +oavra_EmptyPredictionContext = $rt_classWithoutFields(oavra_SingletonPredictionContext), +oavra_EmptyPredictionContext_Instance = null, +oavra_EmptyPredictionContext_$callClinit = () => { + oavra_EmptyPredictionContext_$callClinit = $rt_eraseClinit(oavra_EmptyPredictionContext); + oavra_EmptyPredictionContext__clinit_(); +}, +oavra_EmptyPredictionContext_isEmpty = $this => { + return 1; +}, +oavra_EmptyPredictionContext_size = $this => { + return 1; +}, +oavra_EmptyPredictionContext_getParent = ($this, $index) => { + return null; +}, +oavra_EmptyPredictionContext_getReturnState = ($this, $index) => { + return $this.$returnState; +}, +oavra_EmptyPredictionContext_equals = ($this, $o) => { + return $this !== $o ? 0 : 1; +}, +oavra_EmptyPredictionContext_toString = $this => { + return $rt_s(5213); +}, +oavra_EmptyPredictionContext__clinit_ = () => { + let var$1; + var$1 = new oavra_EmptyPredictionContext; + oavra_EmptyPredictionContext_$callClinit(); + oavra_SingletonPredictionContext__init_(var$1, null, 2147483647); + oavra_EmptyPredictionContext_Instance = var$1; +}, +oavra_SemanticContext = $rt_classWithoutFields(), +oavra_SemanticContext_evalPrecedence = ($this, $parser, $parserCallStack) => { + return $this; +}, +oavra_SemanticContext_and = ($a, $b) => { + let $result, var$4, var$5, var$6, var$7, var$8; + if ($a !== null) { + $result = oavra_SemanticContext$Empty_Instance; + if ($a !== $result) { + if ($b !== null && $b !== $result) { + $result = new oavra_SemanticContext$AND; + var$4 = ju_HashSet__init_(); + if (!($a instanceof oavra_SemanticContext$AND)) + ju_HashSet_add(var$4, $a); + else + ju_AbstractCollection_addAll(var$4, ju_Arrays_asList($a.$opnds)); + if (!($b instanceof oavra_SemanticContext$AND)) + ju_HashSet_add(var$4, $b); + else + ju_AbstractCollection_addAll(var$4, ju_Arrays_asList($b.$opnds)); + $a = oavra_SemanticContext_access$000(var$4); + if (!$a.$isEmpty()) { + $b = ju_Comparator$NaturalOrder_INSTANCE; + $a = $a.$iterator(); + var$5 = $a.$next(); + while ($a.$hasNext()) { + var$6 = $a.$next(); + if (ju_Comparator$NaturalOrder_compare($b, var$6, var$5) < 0) + var$5 = var$6; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + ju_HashSet_add(var$4, var$5); } + var$7 = ju_AbstractCollection_toArray(var$4, $rt_createArray(oavra_SemanticContext, 0)); + var$8 = var$7.data; + $result.$opnds = var$7; + if (var$8.length != 1) + return $result; + return var$8[0]; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + return $a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + return $b; }, -oncipv_Cypher5Parser_showConstraintsAllowBriefAndYield = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 332, 166); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2255); - oncipv_Cypher5Parser_constraintToken($this); - oavr_Recognizer_setState($this, 2257); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 37) { - $_la = $_la - 297 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(529)), Long_ZERO)) - break e; - } - oavr_Recognizer_setState($this, 2256); - oncipv_Cypher5Parser_showBriefAndYield($this); - } - oavr_Recognizer_setState($this, 2260); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 255 && $_la != 267)) { - oavr_Recognizer_setState($this, 2259); - oncipv_Cypher5Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oavra_SemanticContext_or = ($a, $b) => { + let $result, var$4, var$5, var$6, var$7, var$8; + if ($a === null) + return $b; + if ($b === null) + return $a; + $result = oavra_SemanticContext$Empty_Instance; + if ($a !== $result && $b !== $result) { + $result = new oavra_SemanticContext$OR; + var$4 = ju_HashSet__init_(); + if (!($a instanceof oavra_SemanticContext$OR)) + ju_HashSet_add(var$4, $a); + else + ju_AbstractCollection_addAll(var$4, ju_Arrays_asList($a.$opnds0)); + if (!($b instanceof oavra_SemanticContext$OR)) + ju_HashSet_add(var$4, $b); + else + ju_AbstractCollection_addAll(var$4, ju_Arrays_asList($b.$opnds0)); + $a = oavra_SemanticContext_access$000(var$4); + if (!$a.$isEmpty()) { + $b = ju_Comparator$NaturalOrder_INSTANCE; + $a = $a.$iterator(); + var$5 = $a.$next(); + while ($a.$hasNext()) { + var$6 = $a.$next(); + if (ju_Comparator$NaturalOrder_compare($b, var$6, var$5) > 0) + var$5 = var$6; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + ju_HashSet_add(var$4, var$5); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$7 = ju_AbstractCollection_toArray(var$4, $rt_createArray(oavra_SemanticContext, 0)); + var$8 = var$7.data; + $result.$opnds0 = var$7; + if (var$8.length != 1) + return $result; + return var$8[0]; } - return $_localctx; + return $result; }, -oncipv_Cypher5Parser_showConstraintsAllowBrief = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 334, 167); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2262); - oncipv_Cypher5Parser_constraintToken($this); - oavr_Recognizer_setState($this, 2267); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 37 && $_la != 297)) { - oavr_Recognizer_setState($this, 2263); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 37 && $_la != 297) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2265); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 192) { - oavr_Recognizer_setState($this, 2264); - oavr_Parser_match($this, 192); - } - } - oavr_Recognizer_setState($this, 2270); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 255 && $_la != 267)) { - oavr_Recognizer_setState($this, 2269); - oncipv_Cypher5Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oavra_SemanticContext_access$000 = $x0 => { + let var$2, var$3; + var$2 = null; + $x0 = ju_HashSet_iterator($x0); + while ($x0.$hasNext()) { + var$3 = $x0.$next(); + if (var$3 instanceof oavra_SemanticContext$PrecedencePredicate) { + if (var$2 === null) + var$2 = ju_ArrayList__init_(); + ju_ArrayList_add(var$2, var$3); + $x0.$remove2(); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if (var$2 === null) + var$2 = ju_Collections_EMPTY_LIST; + return var$2; }, -oncipv_Cypher5Parser_showConstraintsAllowYield = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 336, 168); +oavra_SemanticContext$Empty = $rt_classWithoutFields(oavra_SemanticContext), +oavra_SemanticContext$Empty_Instance = null, +oavra_SemanticContext$Empty_eval = ($this, $parser, $parserCallStack) => { + return 0; +}, +oavra_SemanticContext$Empty__clinit_ = () => { + oavra_SemanticContext$Empty_Instance = new oavra_SemanticContext$Empty; +}; +function sci_ArraySeq$$newBuilder$lambda$_21_0() { + jl_Object.call(this); + this.$_0438 = null; +} +let sci_ArraySeq$$newBuilder$lambda$_21_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0438; + return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, sc_IterableOnceOps_toArray$(var$1, var$2)); +}, +scm_ArraySeq$$newBuilder$lambda$_21_0 = $rt_classWithoutFields(), +scm_ArraySeq$$newBuilder$lambda$_21_0_apply = (var$0, var$1) => { + return scm_ArraySeq$_make(scm_ArraySeq$_MODULE$, var$1); +}; +function ju_Optional() { + jl_Object.call(this); + this.$value22 = null; +} +let ju_Optional_emptyInstance = null, +ju_Optional__init_0 = ($this, $value) => { + $this.$value22 = $value; +}, +ju_Optional__init_ = var_0 => { + let var_1 = new ju_Optional(); + ju_Optional__init_0(var_1, var_0); + return var_1; +}, +ju_Optional_empty = () => { + if (ju_Optional_emptyInstance === null) + ju_Optional_emptyInstance = ju_Optional__init_(null); + return ju_Optional_emptyInstance; +}, +ju_Optional_ofNullable = $value => { + return $value === null ? ju_Optional_empty() : ju_Optional__init_(ju_Objects_requireNonNull($value)); +}, +ju_Optional_get = $this => { + let var$1; + var$1 = $this.$value22; + if (var$1 !== null) + return var$1; + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); +}, +ju_Optional_isPresent = $this => { + return $this.$value22 === null ? 0 : 1; +}, +ju_Optional_ifPresent = ($this, $consumer) => { + let var$2; + var$2 = $this.$value22; + if (var$2 !== null) + $consumer.$accept(var$2); +}, +ju_Optional_orElse = ($this, $other) => { + let var$2; + var$2 = $this.$value22; + if (var$2 !== null) + $other = var$2; + return $other; +}; +function ong_DiagnosticRecord$_init_$lambda$_4_0() { + jl_Object.call(this); + this.$_0962 = null; +} +let ong_DiagnosticRecord$_init_$lambda$_4_0_accept = (var$0, var$1) => { + ju_HashMap_put(var$0.$_0962.$innerDiagnosticRecord, $rt_s(3527), var$1); +}; +function ong_DiagnosticRecord$_init_$lambda$_4_1() { + jl_Object.call(this); + this.$_0423 = null; +} +let ong_DiagnosticRecord$_init_$lambda$_4_1_accept = (var$0, var$1) => { + ju_HashMap_put(var$0.$_0423.$innerDiagnosticRecord, $rt_s(4022), var$1); +}; +function ong_DiagnosticRecord$_init_$lambda$_4_2() { + jl_Object.call(this); + this.$_01071 = null; +} +let ong_DiagnosticRecord$_init_$lambda$_4_2_accept = (var$0, var$1) => { + ju_HashMap_put(var$0.$_01071.$innerDiagnosticRecord, $rt_s(3528), var$1); +}; +function oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0() { + jl_Object.call(this); + this.$_028 = null; +} +let oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$0.$_028 !== var$1 ? 0 : 1); +}; +function sc_Iterator$contains$lambda$_35_0() { + jl_Object.call(this); + this.$_0669 = null; +} +let sc_Iterator$contains$lambda$_35_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$1, var$0.$_0669) ? 0 : 1); +}; +function onciafnc_CodeCompletionCore() { + let a = this; jl_Object.call(a); + a.$ignoredTokens0 = null; + a.$preferredRules0 = null; + a.$parser0 = null; + a.$atn0 = null; + a.$vocabulary3 = null; + a.$ruleNames = null; + a.$tokens1 = null; + a.$tokenStartIndex = 0; + a.$statesProcessed = 0; + a.$shortcutMap = null; + a.$candidates = null; +} +let onciafnc_CodeCompletionCore_followSetsByATN = null, +onciafnc_CodeCompletionCore__init_ = ($this, $parser, $preferredRules, $ignoredTokens) => { + let var$4; + $this.$ignoredTokens0 = ju_HashSet__init_(); + $this.$preferredRules0 = ju_HashSet__init_(); + $this.$tokenStartIndex = 0; + $this.$statesProcessed = 0; + $this.$shortcutMap = ju_HashMap__init_(); + var$4 = new onciafnc_CodeCompletionCore$CandidatesCollection; + var$4.$tokens0 = ju_HashMap__init_(); + var$4.$rules = ju_HashMap__init_(); + $this.$candidates = var$4; + $this.$parser0 = $parser; + $this.$atn0 = $parser.$getATN(); + $this.$vocabulary3 = $parser.$getVocabulary(); + $this.$ruleNames = $parser.$getRuleNames(); + if ($preferredRules !== null) + $this.$preferredRules0 = $preferredRules; + if ($ignoredTokens !== null) + $this.$ignoredTokens0 = $ignoredTokens; +}, +onciafnc_CodeCompletionCore__init_0 = (var_0, var_1, var_2) => { + let var_3 = new onciafnc_CodeCompletionCore(); + onciafnc_CodeCompletionCore__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +onciafnc_CodeCompletionCore_collectCandidates = ($this, $caretTokenIndex, $context) => { + let $startRule, var$4, $currentIndex, $offset, $offset_0, $token, $callStack; + ju_HashMap_clear($this.$shortcutMap); + ju_HashMap_clear($this.$candidates.$rules); + ju_HashMap_clear($this.$candidates.$tokens0); + $this.$statesProcessed = 0; + $startRule = $context === null ? 0 : $context.$start1.$getTokenIndex(); + $this.$tokenStartIndex = $startRule; + var$4 = $this.$parser0.$_input; + $currentIndex = var$4.$p; + oavr_BufferedTokenStream_seek(var$4, $startRule); + $this.$tokens1 = new ju_LinkedList; + $offset = 1; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2272); - oncipv_Cypher5Parser_constraintToken($this); - oavr_Recognizer_setState($this, 2274); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2273); - oncipv_Cypher5Parser_showCommandYield($this); - } - oavr_Recognizer_setState($this, 2277); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 255 && $_la != 267)) { - oavr_Recognizer_setState($this, 2276); - oncipv_Cypher5Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + while (true) { + $offset_0 = $offset + 1 | 0; + $token = oavr_CommonTokenStream_LT(var$4, $offset); + ju_AbstractList_add($this.$tokens1, $token); + if ($token.$getTokenIndex() >= $caretTokenIndex) + break a; + if ($token.$getType0() == (-1)) + break; + $offset = $offset_0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + oavr_BufferedTokenStream_seek(var$4, $currentIndex); + $callStack = new ju_LinkedList; + $startRule = $context === null ? 0 : $context.$getRuleIndex(); + onciafnc_CodeCompletionCore_processRule($this, $this.$atn0.$ruleToStartState.data[$startRule], 0, $callStack, $rt_s(94)); + oavr_BufferedTokenStream_seek(var$4, $currentIndex); + return $this.$candidates; }, -oncipv_Cypher5Parser_showProcedures = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowProceduresContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 338, 169); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2279); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 208 && $_la != 209) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2281); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 101) { - oavr_Recognizer_setState($this, 2280); - oncipv_Cypher5Parser_executableBy($this); - } - oavr_Recognizer_setState($this, 2284); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2283); - oncipv_Cypher5Parser_showCommandYield($this); - } - oavr_Recognizer_setState($this, 2287); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 255 && $_la != 267)) { - oavr_Recognizer_setState($this, 2286); - oncipv_Cypher5Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +onciafnc_CodeCompletionCore_checkPredicate = ($this, $transition) => { + return oavra_SemanticContext$Predicate_eval(oavra_PredicateTransition_getPredicate($transition), $this.$parser0, oavr_ParserRuleContext_EMPTY); +}, +onciafnc_CodeCompletionCore_translateToRuleIndex = ($this, $ruleStack) => { + let $i, $current, $ruleIndex, $startTokenIndex, $path, $addNew, $entry; + if ($this.$preferredRules0.$isEmpty()) + return 0; + $i = 0; + while ($i < $ruleStack.$size5) { + $current = ju_AbstractSequentialList_get($ruleStack, $i); + $ruleIndex = $current.$ruleIndex0; + $startTokenIndex = $current.$startTokenIndex; + if ($this.$preferredRules0.$contains(jl_Integer_valueOf($ruleIndex))) { + $path = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(ju_AbstractList_subList($ruleStack, 0, $i)), new onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0), jus_Collectors_toCollection(new onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1)); + $addNew = 1; + $ruleStack = ju_HashMap$HashMapEntrySet_iterator(ju_HashMap_entrySet($this.$candidates.$rules)); + a: { + while (ju_HashMap$AbstractMapIterator_hasNext($ruleStack)) { + $entry = ju_HashMap$EntryIterator_next($ruleStack); + if (!jl_Integer_equals($entry.$key0, jl_Integer_valueOf($current.$ruleIndex0))) + continue; + if ($entry.$value9.$ruleList.$size() != $path.$size()) + continue; + if (ju_AbstractList_equals($path, $entry.$value9.$ruleList)) { + $addNew = 0; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if ($addNew) { + $ruleStack = $this.$candidates.$rules; + $current = jl_Integer_valueOf($ruleIndex); + $entry = new onciafnc_CodeCompletionCore$CandidateRule; + $entry.$startTokenIndex0 = $startTokenIndex; + $entry.$ruleList = $path; + ju_HashMap_put($ruleStack, $current, $entry); + } + return 1; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $i = $i + 1 | 0; } - return $_localctx; + return 0; }, -oncipv_Cypher5Parser_showFunctions = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowFunctionsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 340, 170); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2290); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 39 && $_la != 291)) { - oavr_Recognizer_setState($this, 2289); - oncipv_Cypher5Parser_showFunctionsType($this); - } - oavr_Recognizer_setState($this, 2292); - oncipv_Cypher5Parser_functionToken($this); - oavr_Recognizer_setState($this, 2294); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 101) { - oavr_Recognizer_setState($this, 2293); - oncipv_Cypher5Parser_executableBy($this); - } - oavr_Recognizer_setState($this, 2297); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2296); - oncipv_Cypher5Parser_showCommandYield($this); - } - oavr_Recognizer_setState($this, 2300); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 255 && $_la != 267)) { - oavr_Recognizer_setState($this, 2299); - oncipv_Cypher5Parser_composableCommandClauses($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +onciafnc_CodeCompletionCore_getFollowingTokens = ($this, $initialTransition) => { + let $result, $pipeline, var$4, var$5, var$6, $transition, $list; + $result = new ju_LinkedList; + $pipeline = new ju_LinkedList; + ju_AbstractList_add($pipeline, $initialTransition.$target); + while (!ju_AbstractCollection_isEmpty($pipeline)) { + var$4 = (oavra_ATNState_getTransitions(ju_LinkedList_removeLast($pipeline))).data; + var$5 = var$4.length; + var$6 = 0; + while (var$6 < var$5) { + $transition = var$4[var$6]; + if ($transition.$getSerializationType() == 5) { + if ($transition.$isEpsilon()) + ju_LinkedList_addLast($pipeline, $transition.$target); + else { + $list = oavrm_IntervalSet_toList($transition.$label0()); + if ($list.$size0 == 1 && !$this.$ignoredTokens0.$contains(ju_ArrayList_get($list, 0))) { + ju_LinkedList_addLast($result, ju_ArrayList_get($list, 0)); + ju_LinkedList_addLast($pipeline, $transition.$target); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$6 = var$6 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + return $result; }, -oncipv_Cypher5Parser_functionToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$FunctionTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 342, 171); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2302); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 116 && $_la != 117) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; +onciafnc_CodeCompletionCore_determineFollowSets = ($this, $start, $stop) => { + let $result; + $result = new ju_LinkedList; + onciafnc_CodeCompletionCore_collectFollowSets($this, $start, $stop, $result, ju_HashSet__init_(), new ju_LinkedList); + return $result; +}, +onciafnc_CodeCompletionCore_collectFollowSets = ($this, $s, $stopState, $followSets, $seen, $ruleStack) => { + let var$6, var$7, var$8, $transition, $ruleTransition, var$11, var$12, $set, $label; + if (ju_HashSet_contains($seen, $s)) + return; + ju_HashSet_add($seen, $s); + if (!oavra_ATNState_equals($s, $stopState) && $s.$getStateType() != 7) { + var$6 = (oavra_ATNState_getTransitions($s)).data; + var$7 = var$6.length; + var$8 = 0; + while (var$8 < var$7) { + $transition = var$6[var$8]; + if ($transition.$getSerializationType() == 3) { + $ruleTransition = $transition; + $s = jl_Integer_valueOf($ruleTransition.$target.$ruleIndex); + var$11 = $ruleStack.$size5; + var$12 = 0; + a: { + while (true) { + if (var$12 >= var$11) { + var$12 = (-1); + break a; } + if (ju_Objects_equals($s, ju_AbstractSequentialList_get($ruleStack, var$12))) + break; + var$12 = var$12 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$12 == (-1)) { + ju_LinkedList_addLast($ruleStack, jl_Integer_valueOf($ruleTransition.$target.$ruleIndex)); + onciafnc_CodeCompletionCore_collectFollowSets($this, $transition.$target, $stopState, $followSets, $seen, $ruleStack); + ju_LinkedList_removeLast($ruleStack); + } + } else if ($transition.$getSerializationType() == 4) { + if (onciafnc_CodeCompletionCore_checkPredicate($this, $transition)) + onciafnc_CodeCompletionCore_collectFollowSets($this, $transition.$target, $stopState, $followSets, $seen, $ruleStack); + } else if ($transition.$isEpsilon()) + onciafnc_CodeCompletionCore_collectFollowSets($this, $transition.$target, $stopState, $followSets, $seen, $ruleStack); + else if ($transition.$getSerializationType() == 9) { + $set = new onciafnc_CodeCompletionCore$FollowSetWithPath; + $set.$intervals0 = oavrm_IntervalSet_of(1, $this.$atn0.$maxTokenType); + $set.$path = ju_LinkedList__init_0($ruleStack); + $set.$following = new ju_LinkedList; + ju_LinkedList_addLast($followSets, $set); + } else { + $label = $transition.$label0(); + if ($label !== null && oavrm_IntervalSet_size($label) > 0) { + if ($transition.$getSerializationType() == 8) + $label = oavrm_IntervalSet_complement($label, oavrm_IntervalSet_of(1, $this.$atn0.$maxTokenType)); + $set = new onciafnc_CodeCompletionCore$FollowSetWithPath; + $set.$intervals0 = $label; + $set.$path = ju_LinkedList__init_0($ruleStack); + $set.$following = onciafnc_CodeCompletionCore_getFollowingTokens($this, $transition); + ju_LinkedList_addLast($followSets, $set); } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$8 = var$8 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + return; } - return $_localctx; + $set = new onciafnc_CodeCompletionCore$FollowSetWithPath; + $set.$intervals0 = oavrm_IntervalSet_of0((-2)); + $set.$path = ju_LinkedList__init_0($ruleStack); + $set.$following = new ju_LinkedList; + ju_LinkedList_addLast($followSets, $set); }, -oncipv_Cypher5Parser_executableBy = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ExecutableByContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 344, 172); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2304); - oavr_Parser_match($this, 101); - oavr_Recognizer_setState($this, 2311); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 40) { - oavr_Recognizer_setState($this, 2305); - oavr_Parser_match($this, 40); - oavr_Recognizer_setState($this, 2309); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 256, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 2306); - oavr_Parser_match($this, 63); - oavr_Recognizer_setState($this, 2307); - oavr_Parser_match($this, 291); - break e; - case 2: - break; - default: - break e; +onciafnc_CodeCompletionCore_processRule = ($this, $startState, $tokenIndex, $callStack, $indentation) => { + let $positionMap, $result, $setsPerState, $followSets, $combined, $statePipeline, $startTokenIndex, $currentSymbol, $set, $fullPath, $symbol, $currentEntry, $atCaret, $transitions, var$19, var$20, $transition, $token, $position, $list, $addFollowing, $symbol_0; + $positionMap = ju_HashMap_get($this.$shortcutMap, jl_Integer_valueOf($startState.$ruleIndex)); + if ($positionMap === null) { + $positionMap = ju_HashMap__init_(); + ju_HashMap_put($this.$shortcutMap, jl_Integer_valueOf($startState.$ruleIndex), $positionMap); + } else if ($positionMap.$containsKey(jl_Integer_valueOf($tokenIndex))) + return $positionMap.$get6(jl_Integer_valueOf($tokenIndex)); + $result = ju_HashSet__init_(); + $setsPerState = ju_HashMap_get(onciafnc_CodeCompletionCore_followSetsByATN, jl_Class_getName(jl_Object_getClass($this.$parser0))); + if ($setsPerState === null) { + $setsPerState = ju_HashMap__init_(); + ju_HashMap_put(onciafnc_CodeCompletionCore_followSetsByATN, jl_Class_getName(jl_Object_getClass($this.$parser0)), $setsPerState); + } + $followSets = $setsPerState.$get6(jl_Integer_valueOf($startState.$stateNumber)); + if ($followSets === null) { + $followSets = onciafnc_CodeCompletionCore$FollowSetsHolder__init_(); + $setsPerState.$put(jl_Integer_valueOf($startState.$stateNumber), $followSets); + $followSets.$sets = onciafnc_CodeCompletionCore_determineFollowSets($this, $startState, $this.$atn0.$ruleToStopState.data[$startState.$ruleIndex]); + $combined = oavrm_IntervalSet__init_($rt_createIntArray(0)); + $statePipeline = ju_AbstractSequentialList_iterator($followSets.$sets); + while (ju_LinkedList$SequentialListIterator_hasNext($statePipeline)) { + oavrm_IntervalSet_addAll($combined, (ju_LinkedList$SequentialListIterator_next($statePipeline)).$intervals0); + } + $followSets.$combined = $combined; + } + $startTokenIndex = (ju_AbstractSequentialList_get($this.$tokens1, $tokenIndex)).$getTokenIndex(); + ju_LinkedList_addLast($callStack, onciafnc_CodeCompletionCore$RuleWithStartToken__init_($startTokenIndex, $startState.$ruleIndex)); + $currentSymbol = (ju_AbstractSequentialList_get($this.$tokens1, $tokenIndex)).$getType0(); + if ($tokenIndex >= (ju_LinkedList_size($this.$tokens1) - 1 | 0)) { + a: { + if ($this.$preferredRules0.$contains(jl_Integer_valueOf($startState.$ruleIndex))) + onciafnc_CodeCompletionCore_translateToRuleIndex($this, $callStack); + else { + $startState = ju_AbstractSequentialList_iterator($followSets.$sets); + while (true) { + if (!ju_LinkedList$SequentialListIterator_hasNext($startState)) + break a; + b: { + $set = ju_LinkedList$SequentialListIterator_next($startState); + $fullPath = ju_LinkedList__init_0($callStack); + ju_AbstractCollection_addAll($fullPath, jus_Stream_toList(jusi_SimpleStreamImpl_map(ju_Collection_stream($set.$path), onciafnc_CodeCompletionCore$processRule$lambda$_9_0__init_($startTokenIndex)))); + if (!onciafnc_CodeCompletionCore_translateToRuleIndex($this, $fullPath)) { + $indentation = ju_AbstractList_iterator(oavrm_IntervalSet_toList($set.$intervals0)); + while (true) { + if (!ju_AbstractList$1_hasNext($indentation)) + break b; + $symbol = jl_Integer_intValue(ju_AbstractList$1_next($indentation)); + if (!$this.$ignoredTokens0.$contains(jl_Integer_valueOf($symbol))) { + if (!ju_HashMap_containsKey($this.$candidates.$tokens0, jl_Integer_valueOf($symbol))) + ju_HashMap_put($this.$candidates.$tokens0, jl_Integer_valueOf($symbol), $set.$following); + else if (!ju_AbstractList_equals(ju_HashMap_get($this.$candidates.$tokens0, jl_Integer_valueOf($symbol)), $set.$following)) + ju_HashMap_put($this.$candidates.$tokens0, jl_Integer_valueOf($symbol), ju_LinkedList__init_()); } - oavr_Recognizer_setState($this, 2308); - oncipv_Cypher5Parser_symbolicNameString($this); } } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + ju_LinkedList_removeLast($callStack); + return $result; } - return $_localctx; -}, -oncipv_Cypher5Parser_showFunctionsType = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowFunctionsTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 346, 173); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2318); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 18: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2313); - oavr_Parser_match($this, 18); - break e; - case 39: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2314); - oavr_Parser_match($this, 39); - oavr_Recognizer_setState($this, 2315); - oavr_Parser_match($this, 131); + if (!oavrm_IntervalSet_contains($followSets.$combined, (-2)) && !oavrm_IntervalSet_contains($followSets.$combined, $currentSymbol)) { + ju_LinkedList_removeLast($callStack); + return $result; + } + $statePipeline = ju_LinkedList__init_(); + ju_AbstractList_add($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($startState, jl_Integer_valueOf($tokenIndex))); + c: while (!ju_AbstractCollection_isEmpty($statePipeline)) { + $currentEntry = ju_LinkedList_removeLast($statePipeline); + $this.$statesProcessed = $this.$statesProcessed + 1 | 0; + $symbol = (ju_AbstractSequentialList_get($this.$tokens1, jl_Integer_intValue($currentEntry.$tokenIndex))).$getType0(); + $atCaret = jl_Integer_intValue($currentEntry.$tokenIndex) < (ju_LinkedList_size($this.$tokens1) - 1 | 0) ? 0 : 1; + d: { + switch ($currentEntry.$state4.$getStateType()) { + case 2: + $startState = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($startState, $indentation), $rt_s(83)); + $indentation = jl_StringBuilder_toString($startState); + break d; + case 7: + break; + default: + break d; + } + ju_HashSet_add($result, $currentEntry.$tokenIndex); + continue c; + } + $transitions = (oavra_ATNState_getTransitions($currentEntry.$state4)).data; + var$19 = $transitions.length; + var$20 = 0; + while (var$20 < var$19) { + e: { + f: { + g: { + $transition = $transitions[var$20]; + switch ($transition.$getSerializationType()) { + case 3: + break g; + case 4: + break; + case 9: + if (!$atCaret) { + ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($transition.$target, jl_Integer_valueOf(jl_Integer_intValue($currentEntry.$tokenIndex) + 1 | 0))); break e; - case 291: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2316); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 2317); - oavr_Parser_match($this, 72); + } + if (onciafnc_CodeCompletionCore_translateToRuleIndex($this, $callStack)) break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + $startState = ju_AbstractList_iterator(oavrm_IntervalSet_toList(oavrm_IntervalSet_of(1, $this.$atn0.$maxTokenType))); + while (ju_AbstractList$1_hasNext($startState)) { + $token = ju_AbstractList$1_next($startState); + if (!$this.$ignoredTokens0.$contains($token)) + ju_HashMap_put($this.$candidates.$tokens0, $token, ju_LinkedList__init_()); + } + break e; + default: + break f; } + if (!onciafnc_CodeCompletionCore_checkPredicate($this, $transition)) + break e; + ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($transition.$target, $currentEntry.$tokenIndex)); + break e; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + $startState = (onciafnc_CodeCompletionCore_processRule($this, $transition.$target, jl_Integer_intValue($currentEntry.$tokenIndex), $callStack, $indentation)).$iterator(); + $followSets = $transition; + while ($startState.$hasNext()) { + $position = $startState.$next(); + ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($followSets.$followState, $position)); + } + break e; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($transition.$isEpsilon()) + ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($transition.$target, $currentEntry.$tokenIndex)); + else { + $set = $transition.$label0(); + if ($set !== null && oavrm_IntervalSet_size($set) > 0) { + if ($transition.$getSerializationType() == 8) + $set = oavrm_IntervalSet_complement($set, oavrm_IntervalSet_of(1, $this.$atn0.$maxTokenType)); + if (!$atCaret) { + if (oavrm_IntervalSet_contains($set, $symbol)) + ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($transition.$target, jl_Integer_valueOf(jl_Integer_intValue($currentEntry.$tokenIndex) + 1 | 0))); + } else if (!onciafnc_CodeCompletionCore_translateToRuleIndex($this, $callStack)) { + $list = oavrm_IntervalSet_toList($set); + $addFollowing = ju_ArrayList_size($list) != 1 ? 0 : 1; + $set = ju_AbstractList_iterator($list); + while (ju_AbstractList$1_hasNext($set)) { + $symbol_0 = ju_AbstractList$1_next($set); + if (!$this.$ignoredTokens0.$contains($symbol_0)) { + if ($addFollowing) + ju_HashMap_put($this.$candidates.$tokens0, $symbol_0, onciafnc_CodeCompletionCore_getFollowingTokens($this, $transition)); + else + ju_HashMap_put($this.$candidates.$tokens0, $symbol_0, ju_LinkedList__init_()); + } + } + } + } } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$20 = var$20 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + ju_LinkedList_removeLast($callStack); + $positionMap.$put(jl_Integer_valueOf($tokenIndex), $result); + return $result; }, -oncipv_Cypher5Parser_showTransactions = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowTransactionsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 348, 174); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2320); - oncipv_Cypher5Parser_transactionToken($this); - oavr_Recognizer_setState($this, 2321); - oncipv_Cypher5Parser_namesAndClauses($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +onciafnc_CodeCompletionCore__clinit_ = () => { + onciafnc_CodeCompletionCore_followSetsByATN = ju_HashMap__init_(); +}; +function su_Either$LeftProjection() { + jl_Object.call(this); + this.$e0 = null; +} +let su_Either$LeftProjection_toOption = $this => { + let var$1; + var$1 = $this.$e0; + if (!(var$1 instanceof su_Left)) + return s_None$_MODULE$; + return s_Some__init_(var$1.$value6); +}, +oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0_apply = (var$0, var$1) => { + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return var$1.$_1(); +}, +oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0_apply = (var$0, var$1) => { + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return var$1.$_2(); +}; +function oncia_UseGraph() { + let a = this; jl_Object.call(a); + a.$graphReference1 = null; + a.$position26 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier23 = null; + a.$SetExtractor$module20 = null; +} +let oncia_UseGraph_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); +}, +oncia_UseGraph_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_UseGraph_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_UseGraph_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_UseGraph_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_UseGraph_foldedOver = $this => { + return $this; +}, +oncia_UseGraph_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_UseGraph_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier23; +}, +oncia_UseGraph_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module20 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module20 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$SetExtractor$module20 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module20; }, -oncipv_Cypher5Parser_terminateTransactions = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$TerminateTransactionsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 350, 175); +oncia_UseGraph_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier23 = $x$1; +}, +oncia_UseGraph_position = $this => { + return $this.$position26; +}, +oncia_UseGraph_name = $this => { + return $rt_s(5214); +}, +oncia_UseGraph_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3; + var$1 = new oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_0; + var$2 = new oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_1; + var$2.$_0414 = $this; + var$3 = new oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_2; + var$3.$_0957 = $this; + return oncias_SemanticAnalysisTooling_whenState$($this, var$1, var$2, var$3); +}, +oncia_UseGraph_checkSingleTargetGraph = ($this, $graphReference) => { + let var$2, var$3; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_UseGraph$checkSingleTargetGraph$lambda$_73_0; + var$3.$_0358 = $this; + var$3.$_1127 = $graphReference; + return oncias_SemanticCheck$_fromFunctionWithContext(var$2, var$3); +}, +oncia_UseGraph_productPrefix = $this => { + return $rt_s(5215); +}, +oncia_UseGraph_productArity = $this => { + return 1; +}, +oncia_UseGraph_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$graphReference1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_UseGraph_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UseGraph_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UseGraph_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UseGraph_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2323); - oncipv_Cypher5Parser_transactionToken($this); - oavr_Recognizer_setState($this, 2324); - oncipv_Cypher5Parser_namesAndClauses($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UseGraph) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$graphReference1; + $x$1 = $x$1.$graphReference1; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_showSettings = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowSettingsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 352, 176); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2326); - oncipv_Cypher5Parser_settingToken($this); - oavr_Recognizer_setState($this, 2327); - oncipv_Cypher5Parser_namesAndClauses($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_UseGraph_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_UseGraph__init_ = ($this, $graphReference, $position) => { + $this.$graphReference1 = $graphReference; + $this.$position26 = $position; + oncia_Clause_$init$($this); +}, +oncia_UseGraph__init_0 = (var_0, var_1) => { + let var_2 = new oncia_UseGraph(); + oncia_UseGraph__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0() { + jl_Object.call(this); + this.$_0384 = null; +} +let oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0384; + oncia_SingleQuery$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + return oncia_SingleQuery$PartitionedClauses__init_(s_Some__init_(var$2), s_Some__init_(var$3), s_None$_MODULE$, var$1); +}; +function oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1() { + let a = this; jl_Object.call(a); + a.$_01035 = null; + a.$_1353 = null; +} +let oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_01035; + var$2 = var$0.$_1353; + oncia_SingleQuery$_$callClinit(); + var$3 = new oncia_SingleQuery$PartitionedClauses; + var$4 = s_Some__init_(var$1); + var$1 = s_None$_MODULE$; + oncia_SingleQuery$PartitionedClauses__init_0(var$3, var$4, var$1, var$1, var$2); + return var$3; +}; +function oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0() { + jl_Object.call(this); + this.$_068 = null; +} +let oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_068; + return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); +}, +oncia_ProcedureResultItem$ = $rt_classWithoutFields(), +oncia_ProcedureResultItem$_MODULE$ = null, +oncia_ProcedureResultItem$__clinit_ = () => { + oncia_ProcedureResultItem$_MODULE$ = new oncia_ProcedureResultItem$; +}, +oncia_ProcedureResultItem$_apply0 = ($this, $output, $variable, $position) => { + return oncia_ProcedureResultItem__init_(s_Some__init_($output), $variable, $position); +}, +oncia_ProcedureResultItem$_apply = ($this, $variable, $position) => { + return oncia_ProcedureResultItem__init_(s_None$_MODULE$, $variable, $position); +}, +oncias_FeatureError$ = $rt_classWithoutFields(), +oncias_FeatureError$_MODULE$ = null, +oncias_FeatureError$__clinit_ = () => { + oncias_FeatureError$_MODULE$ = new oncias_FeatureError$; +}, +oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_0_apply = (var$0, var$1, var$2) => { + return oncia_SingleQuery_$anonfun$checkOrder$2(var$1, var$2); +}, +oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_1 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_2 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_2_apply = (var$0, var$1, var$2) => { + return oncia_SingleQuery_$anonfun$checkOrder$6(var$1, var$2); +}; +function oncia_Finish() { + let a = this; jl_Object.call(a); + a.$position289 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier2 = null; + a.$SetExtractor$module17 = null; +} +let oncia_Finish_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); +}, +oncia_Finish_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Finish_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_Finish_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Finish_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Finish_foldedOver = $this => { + return $this; +}, +oncia_Finish_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Finish_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier2; +}, +oncia_Finish_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module17 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module17 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$SetExtractor$module17 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); + } + return $this.$SetExtractor$module17; +}, +oncia_Finish_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier2 = $x$1; +}, +oncia_Finish_position = $this => { + return $this.$position289; +}, +oncia_Finish_name = $this => { + return $rt_s(609); +}, +oncia_Finish_clauseSpecificSemanticCheck = $this => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}, +oncia_Finish_productPrefix = $this => { + return $rt_s(5216); +}, +oncia_Finish_productArity = $this => { + return 0; +}, +oncia_Finish_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_Finish_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Finish_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Finish_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Finish_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncia_Finish) ? 0 : 1; + return var$2 && $this instanceof oncia_Finish ? 1 : 0; +}, +oncia_Finish_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Finish__init_ = ($this, $position) => { + $this.$position289 = $position; + oncia_Clause_$init$($this); +}, +oncia_Finish__init_0 = var_0 => { + let var_1 = new oncia_Finish(); + oncia_Finish__init_(var_1, var_0); + return var_1; +}; +function juca_AtomicInteger() { + let a = this; jl_Number.call(a); + a.$value34 = 0; + a.$version1 = 0; +} +function sc_View$Fill() { + let a = this; sc_AbstractView.call(a); + a.$n2 = 0; + a.$elem7 = null; +} +let sc_View$Fill_iterator = $this => { + let $fill_len, $fill_elem, var$3; + $fill_len = $this.$n2; + $fill_elem = $this.$elem7; + var$3 = new sc_Iterator$$anon$22; + var$3.$len$2 = $fill_len; + var$3.$elem$4 = $fill_elem; + var$3.$i4 = 0; + return var$3; +}, +sc_View$Fill_knownSize = $this => { + return jl_Math_max(0, $this.$n2); +}; +function scm_ArraySeq$ofInt() { + scm_ArraySeq.call(this); + this.$array14 = null; +} +let scm_ArraySeq$ofInt_length = $this => { + return $this.$array14.data.length; +}, +scm_ArraySeq$ofInt_apply = ($this, $index) => { + return $this.$array14.data[$index]; +}, +scm_ArraySeq$ofInt_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_arraySeqHash$mIc$sp(suh_MurmurHash3$_MODULE$, $this.$array14); +}, +scm_ArraySeq$ofInt_equals = ($this, $that) => { + if (!($that instanceof scm_ArraySeq$ofInt)) + return scm_ArraySeq_equals($this, $that); + $that = $that; + return ju_Arrays_equals($this.$array14, $that.$array14); +}, +scm_ArraySeq$ofInt_iterator = $this => { + return sc_ArrayOps$ArrayIterator$mcI$sp__init_($this.$array14); +}, +scm_ArraySeq$ofInt_apply1 = ($this, $v1) => { + return jl_Integer_valueOf(scm_ArraySeq$ofInt_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +}, +scm_ArraySeq$ofInt_apply0 = ($this, $i) => { + return jl_Integer_valueOf(scm_ArraySeq$ofInt_apply($this, $i)); +}, +scm_ArraySeq$ofInt_elemTag = $this => { + sr_ClassTag$_$callClinit(); + return sr_ClassTag$_Int(sr_ClassTag$_MODULE$); +}, +scm_ArraySeq$ofInt_array = $this => { + return $this.$array14; +}; +function scm_ArraySeq$ofDouble() { + scm_ArraySeq.call(this); + this.$array8 = null; +} +let scm_ArraySeq$ofDouble_length = $this => { + return $this.$array8.data.length; +}, +scm_ArraySeq$ofDouble_apply = ($this, $index) => { + return $this.$array8.data[$index]; +}, +scm_ArraySeq$ofDouble_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_arraySeqHash$mDc$sp(suh_MurmurHash3$_MODULE$, $this.$array8); +}, +scm_ArraySeq$ofDouble_equals = ($this, $that) => { + if (!($that instanceof scm_ArraySeq$ofDouble)) + return scm_ArraySeq_equals($this, $that); + $that = $that; + return ju_Arrays_equals6($this.$array8, $that.$array8); +}, +scm_ArraySeq$ofDouble_iterator = $this => { + return sc_ArrayOps$ArrayIterator$mcD$sp__init_($this.$array8); +}, +scm_ArraySeq$ofDouble_apply0 = ($this, $v1) => { + return jl_Double_valueOf(scm_ArraySeq$ofDouble_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +}, +scm_ArraySeq$ofDouble_apply1 = ($this, $i) => { + return jl_Double_valueOf(scm_ArraySeq$ofDouble_apply($this, $i)); +}, +scm_ArraySeq$ofDouble_elemTag = $this => { + sr_ClassTag$_$callClinit(); + return sr_ClassTag$_Double(sr_ClassTag$_MODULE$); +}, +scm_ArraySeq$ofDouble_array = $this => { + return $this.$array8; +}; +function scm_ArraySeq$ofLong() { + scm_ArraySeq.call(this); + this.$array7 = null; +} +let scm_ArraySeq$ofLong_length = $this => { + return $this.$array7.data.length; +}, +scm_ArraySeq$ofLong_apply = ($this, $index) => { + return $this.$array7.data[$index]; +}, +scm_ArraySeq$ofLong_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_arraySeqHash$mJc$sp(suh_MurmurHash3$_MODULE$, $this.$array7); +}, +scm_ArraySeq$ofLong_equals = ($this, $that) => { + if (!($that instanceof scm_ArraySeq$ofLong)) + return scm_ArraySeq_equals($this, $that); + $that = $that; + return ju_Arrays_equals5($this.$array7, $that.$array7); +}, +scm_ArraySeq$ofLong_iterator = $this => { + return sc_ArrayOps$ArrayIterator$mcJ$sp__init_($this.$array7); +}, +scm_ArraySeq$ofLong_apply1 = ($this, $v1) => { + return jl_Long_valueOf(scm_ArraySeq$ofLong_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +}, +scm_ArraySeq$ofLong_apply0 = ($this, $i) => { + return jl_Long_valueOf(scm_ArraySeq$ofLong_apply($this, $i)); +}, +scm_ArraySeq$ofLong_elemTag = $this => { + sr_ClassTag$_$callClinit(); + return sr_ClassTag$_Long(sr_ClassTag$_MODULE$); +}, +scm_ArraySeq$ofLong_array = $this => { + return $this.$array7; +}; +function scm_ArraySeq$ofFloat() { + scm_ArraySeq.call(this); + this.$array13 = null; +} +let scm_ArraySeq$ofFloat_length = $this => { + return $this.$array13.data.length; +}, +scm_ArraySeq$ofFloat_apply = ($this, $index) => { + return $this.$array13.data[$index]; +}, +scm_ArraySeq$ofFloat_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_arraySeqHash$mFc$sp(suh_MurmurHash3$_MODULE$, $this.$array13); +}, +scm_ArraySeq$ofFloat_equals = ($this, $that) => { + if (!($that instanceof scm_ArraySeq$ofFloat)) + return scm_ArraySeq_equals($this, $that); + $that = $that; + return ju_Arrays_equals3($this.$array13, $that.$array13); +}, +scm_ArraySeq$ofFloat_iterator = $this => { + return sc_ArrayOps$ArrayIterator$mcF$sp__init_($this.$array13); +}, +scm_ArraySeq$ofFloat_apply1 = ($this, $v1) => { + return jl_Float_valueOf(scm_ArraySeq$ofFloat_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +}, +scm_ArraySeq$ofFloat_apply0 = ($this, $i) => { + return jl_Float_valueOf(scm_ArraySeq$ofFloat_apply($this, $i)); +}, +scm_ArraySeq$ofFloat_elemTag = $this => { + sr_ClassTag$_$callClinit(); + return sr_ClassTag$_Float(sr_ClassTag$_MODULE$); +}, +scm_ArraySeq$ofFloat_array = $this => { + return $this.$array13; +}; +function scm_ArraySeq$ofByte() { + scm_ArraySeq.call(this); + this.$array9 = null; +} +let scm_ArraySeq$ofByte_length = $this => { + return $this.$array9.data.length; +}, +scm_ArraySeq$ofByte_apply = ($this, $index) => { + return $this.$array9.data[$index]; +}, +scm_ArraySeq$ofByte_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_arraySeqHash$mBc$sp(suh_MurmurHash3$_MODULE$, $this.$array9); +}, +scm_ArraySeq$ofByte_equals = ($this, $that) => { + if (!($that instanceof scm_ArraySeq$ofByte)) + return scm_ArraySeq_equals($this, $that); + $that = $that; + return ju_Arrays_equals1($this.$array9, $that.$array9); +}, +scm_ArraySeq$ofByte_iterator = $this => { + return sc_ArrayOps$ArrayIterator$mcB$sp__init_($this.$array9); +}, +scm_ArraySeq$ofByte_apply1 = ($this, $v1) => { + return jl_Byte_valueOf(scm_ArraySeq$ofByte_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +}, +scm_ArraySeq$ofByte_apply0 = ($this, $i) => { + return jl_Byte_valueOf(scm_ArraySeq$ofByte_apply($this, $i)); +}, +scm_ArraySeq$ofByte_elemTag = $this => { + sr_ClassTag$_$callClinit(); + return sr_ClassTag$_Byte(sr_ClassTag$_MODULE$); +}, +scm_ArraySeq$ofByte_array = $this => { + return $this.$array9; +}; +function scm_ArraySeq$ofShort() { + scm_ArraySeq.call(this); + this.$array11 = null; +} +let scm_ArraySeq$ofShort_length = $this => { + return $this.$array11.data.length; +}, +scm_ArraySeq$ofShort_apply = ($this, $index) => { + return $this.$array11.data[$index]; +}, +scm_ArraySeq$ofShort_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_arraySeqHash$mSc$sp(suh_MurmurHash3$_MODULE$, $this.$array11); +}, +scm_ArraySeq$ofShort_equals = ($this, $that) => { + if (!($that instanceof scm_ArraySeq$ofShort)) + return scm_ArraySeq_equals($this, $that); + $that = $that; + return ju_Arrays_equals4($this.$array11, $that.$array11); +}, +scm_ArraySeq$ofShort_iterator = $this => { + return sc_ArrayOps$ArrayIterator$mcS$sp__init_($this.$array11); +}, +scm_ArraySeq$ofShort_apply0 = ($this, $v1) => { + return jl_Short_valueOf(scm_ArraySeq$ofShort_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +}, +scm_ArraySeq$ofShort_apply1 = ($this, $i) => { + return jl_Short_valueOf(scm_ArraySeq$ofShort_apply($this, $i)); +}, +scm_ArraySeq$ofShort_elemTag = $this => { + sr_ClassTag$_$callClinit(); + return sr_ClassTag$_Short(sr_ClassTag$_MODULE$); +}, +scm_ArraySeq$ofShort_array = $this => { + return $this.$array11; +}; +function scm_ArraySeq$ofBoolean() { + scm_ArraySeq.call(this); + this.$array12 = null; +} +let scm_ArraySeq$ofBoolean_length = $this => { + return $this.$array12.data.length; +}, +scm_ArraySeq$ofBoolean_apply = ($this, $index) => { + return $this.$array12.data[$index]; +}, +scm_ArraySeq$ofBoolean_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_arraySeqHash$mZc$sp(suh_MurmurHash3$_MODULE$, $this.$array12); +}, +scm_ArraySeq$ofBoolean_equals = ($this, $that) => { + if (!($that instanceof scm_ArraySeq$ofBoolean)) + return scm_ArraySeq_equals($this, $that); + $that = $that; + return ju_Arrays_equals2($this.$array12, $that.$array12); +}, +scm_ArraySeq$ofBoolean_iterator = $this => { + return sc_ArrayOps$ArrayIterator$mcZ$sp__init_($this.$array12); +}, +scm_ArraySeq$ofBoolean_apply1 = ($this, $v1) => { + return jl_Boolean_valueOf(scm_ArraySeq$ofBoolean_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +}, +scm_ArraySeq$ofBoolean_apply0 = ($this, $i) => { + return jl_Boolean_valueOf(scm_ArraySeq$ofBoolean_apply($this, $i)); +}, +scm_ArraySeq$ofBoolean_elemTag = $this => { + sr_ClassTag$_$callClinit(); + return sr_ClassTag$_Boolean(sr_ClassTag$_MODULE$); +}, +scm_ArraySeq$ofBoolean_array = $this => { + return $this.$array12; +}; +function scm_ArraySeq$ofUnit() { + scm_ArraySeq.call(this); + this.$array15 = null; +} +let scm_ArraySeq$ofUnit_length = $this => { + return $this.$array15.data.length; +}, +scm_ArraySeq$ofUnit_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_arraySeqHash$mVc$sp(suh_MurmurHash3$_MODULE$, $this.$array15); +}, +scm_ArraySeq$ofUnit_equals = ($this, $that) => { + if (!($that instanceof scm_ArraySeq$ofUnit)) + return scm_ArraySeq_equals($this, $that); + $that = $that; + if ($this.$array15.data.length != $that.$array15.data.length) + return 0; + return 1; +}, +scm_ArraySeq$ofUnit_iterator = $this => { + return sc_ArrayOps$ArrayIterator$mcV$sp__init_($this.$array15); +}, +scm_ArraySeq$ofUnit_apply0 = ($this, $v1) => { + sr_BoxesRunTime_unboxToInt($v1); + return sr_BoxedUnit_UNIT; +}, +scm_ArraySeq$ofUnit_apply = ($this, $i) => { + return sr_BoxedUnit_UNIT; +}, +scm_ArraySeq$ofUnit_elemTag = $this => { + sr_ClassTag$_$callClinit(); + return sr_ClassTag$_Unit(sr_ClassTag$_MODULE$); +}, +scm_ArraySeq$ofUnit_array = $this => { + return $this.$array15; +}; +function oncius_CypherType$isSubtypeOf$lambda$_19_0() { + jl_Object.call(this); + this.$_0310 = null; +} +let oncius_CypherType$isSubtypeOf$lambda$_19_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0310; + return jl_Boolean_valueOf(var$2.$isSubtypeOf(var$1) && var$2.$isNullableSubtypeOf(var$2, var$1) ? 1 : 0); +}, +oncifp_SensitiveParameterRewriter$ = $rt_classWithoutFields(), +oncifp_SensitiveParameterRewriter$_MODULE$ = null, +oncifp_SensitiveParameterRewriter$_instance = null, +oncifp_SensitiveParameterRewriter$_$callClinit = () => { + oncifp_SensitiveParameterRewriter$_$callClinit = $rt_eraseClinit(oncifp_SensitiveParameterRewriter$); + oncifp_SensitiveParameterRewriter$__clinit_(); +}, +oncifp_SensitiveParameterRewriter$__clinit_ = () => { + let var$1, var$2; + var$1 = new oncifp_SensitiveParameterRewriter$; + oncifp_SensitiveParameterRewriter$_$callClinit(); + oncifp_SensitiveParameterRewriter$_MODULE$ = var$1; + var$2 = onciu_bottomUp$_MODULE$; + onciu_Rewriter$_$callClinit(); + oncifp_SensitiveParameterRewriter$_instance = onciu_bottomUp$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncifp_SensitiveParameterRewriter$$anonfun$1), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$); +}, +oncifp_SensitiveParameterRewriter$_apply = ($this, $v) => { + oncifp_SensitiveParameterRewriter$_$callClinit(); + return onciu_bottomUp$BottomUpRewriter_apply(oncifp_SensitiveParameterRewriter$_instance, $v); +}; +function onciafnc_CodeCompletionCore$CandidatesCollection() { + let a = this; jl_Object.call(a); + a.$tokens0 = null; + a.$rules = null; +} +function oncip_CypherErrorVocabulary$expected$lambda$_0_0() { + jl_Object.call(this); + this.$_0529 = null; +} +let oncip_CypherErrorVocabulary$expected$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0529; + s_Predef$_$callClinit(); + var$3 = sr_BoxesRunTime_unboxToInt(var$1.$getKey()); + var$1 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, (var$1.$getValue0()).$ruleList)); + var$4 = (var$2.$conf.$ruleGroups()).$get2(jl_Integer_valueOf(var$3)); + var$5 = new oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3; + var$5.$$outer16 = var$2; + var$5.$ruleCallStack$1 = var$1; + return s_Option_collect(var$4, var$5); +}, +oncip_CypherErrorVocabulary$expected$lambda$_0_1 = $rt_classWithoutFields(), +oncip_CypherErrorVocabulary$expected$lambda$_0_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$1.$getKey(); + return (sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$1.$getValue0())))).$prepended(var$2); +}; +function oncip_CypherErrorVocabulary$expected$lambda$_0_2() { + jl_Object.call(this); + this.$_0497 = null; +} +let oncip_CypherErrorVocabulary$expected$lambda$_0_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0497; + var$1 = var$1.$reverse1(); + var$3 = new oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0; + var$3.$_0507 = var$2; + return var$1.$map(var$3); +}, +sm_Ordering$ExtraImplicits = $rt_classWithoutFields(0), +sm_Ordering$Implicits$ = $rt_classWithoutFields(), +sm_Ordering$Implicits$_MODULE$ = null, +sm_Ordering$Implicits$__clinit_ = () => { + sm_Ordering$Implicits$_MODULE$ = new sm_Ordering$Implicits$; +}; +function oncip_CypherErrorVocabulary$expected$lambda$_0_3() { + jl_Object.call(this); + this.$_0944 = null; +} +let oncip_CypherErrorVocabulary$expected$lambda$_0_3_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0944; + var$3 = new oncip_CypherErrorVocabulary$displayName$lambda$_5_0; + var$3.$_0513 = var$2; + if (!var$1.$forall(var$3)) { + s_Predef$_$callClinit(); + var$1 = oncip_CypherErrorVocabulary_getDisplayName(var$2, sr_BoxesRunTime_unboxToInt(var$1.$head())); + } else { + var$3 = new oncip_CypherErrorVocabulary$displayName$lambda$_5_1; + var$3.$_01036 = var$2; + var$1 = sc_IterableOnceOps_mkString$(var$1.$map(var$3), $rt_s(4251), $rt_s(370), $rt_s(4251)); + } + return var$1; +}; +function oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0() { + jl_Object.call(this); + this.$_080 = null; +} +let oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_080; + s_package$_$callClinit(); + var$3 = var$1.$a0; + var$4 = var$1.$b; + var$5 = new sci_Range$Inclusive; + sci_Range__init_(var$5, var$3, var$4, 1); + var$1 = new oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0; + var$1.$_059 = var$2; + var$1 = sc_StrictOptimizedIterableOps_filter$(var$5, var$1); + var$5 = new oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1; + var$5.$_0864 = var$2; + return var$1.$map(var$5); +}, +oncias_UnsupportedOpenCypher = $rt_classWithoutFields(0); +function oncias_FeatureError() { + let a = this; jl_Object.call(a); + a.$gqlStatusObject0 = null; + a.$msg1 = null; + a.$feature = null; + a.$position53 = null; +} +let oncias_FeatureError_msg = $this => { + return $this.$msg1; +}, +oncias_FeatureError_position = $this => { + return $this.$position53; +}, +oncias_FeatureError_productPrefix = $this => { + return $rt_s(5217); +}, +oncias_FeatureError_productArity = $this => { + return 4; +}, +oncias_FeatureError_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$gqlStatusObject0; + case 1: + return $this.$msg1; + case 2: + return $this.$feature; + case 3: + return $this.$position53; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_settingToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SettingTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 354, 177); +oncias_FeatureError_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_FeatureError_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_FeatureError_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_FeatureError_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2329); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 251 && $_la != 252) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_FeatureError) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$gqlStatusObject0; + var$3 = $x$1.$gqlStatusObject0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_namesAndClauses = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NamesAndClausesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 356, 178); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2338); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 261, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2334); - oncipv_Cypher5Parser_stringsOrExpression($this); - oavr_Recognizer_setState($this, 2336); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 301 && $_la != 306) - break e; - oavr_Recognizer_setState($this, 2335); - oncipv_Cypher5Parser_showCommandYield($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2332); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2331); - oncipv_Cypher5Parser_showCommandYield($this); - } + e: { + var$2 = $this.$msg1; + var$3 = $x$1.$msg1; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break e; } - oavr_Recognizer_setState($this, 2341); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 255 && $_la != 267)) { - oavr_Recognizer_setState($this, 2340); - oncipv_Cypher5Parser_composableCommandClauses($this); + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$feature; + var$3 = $x$1.$feature; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break f; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$position53; + $x$1 = $x$1.$position53; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_stringsOrExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StringsOrExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 358, 179); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2345); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 263, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2344); - oncipv_Cypher5Parser_expression($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2343); - oncipv_Cypher5Parser_stringList($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncias_FeatureError_withMsg = ($this, $message) => { + return oncias_FeatureError__init_($this.$gqlStatusObject0, $message, $this.$feature, $this.$position53); +}, +oncias_FeatureError__init_0 = ($this, $gqlStatusObject, $msg, $feature, $position) => { + $this.$gqlStatusObject0 = $gqlStatusObject; + $this.$msg1 = $msg; + $this.$feature = $feature; + $this.$position53 = $position; +}, +oncias_FeatureError__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncias_FeatureError(); + oncias_FeatureError__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0() { + let a = this; jl_Object.call(a); + a.$_0899 = null; + a.$_1306 = null; +} +let oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0899; + var$3 = var$0.$_1306; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5218)), var$3), $rt_s(5219)), var$1), 10); + return scm_StringBuilder_$plus$plus$eq(var$2, jl_AbstractStringBuilder_toString(var$4)); +}; +function oncia_SingleQuery$checkClauses$lambda$_87_0() { + let a = this; jl_Object.call(a); + a.$_0814 = null; + a.$_1273 = null; + a.$_288 = 0; +} +let oncia_SingleQuery$checkClauses$lambda$_87_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_0814; + var$3 = var$0.$_1273; + var$4 = var$0.$_288; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$5 = var$1.$_1(); + var$6 = s_Tuple2__2$mcI$sp(var$1); + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_MODULE$; + var$7 = new oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_160_0; + var$7.$_01172 = var$2; + var$7.$_1198 = var$5; + var$7.$_264 = var$3; + var$7.$_321 = var$6; + var$7.$_47 = var$4; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck$_fromState(var$1, var$7), oncias_SemanticAnalysisTooling_recordCurrentScope$(var$2, var$5)); +}; +function scc_AsScalaExtensions$IterableHasAsScala() { + let a = this; jl_Object.call(a); + a.$i7 = null; + a.$$outer60 = null; +} +let scc_AsScalaExtensions$IterableHasAsScala_asScala = $this => { + let var$1, var$2; + var$1 = $this.$i7; + if (var$1 === null) + var$2 = null; + else if (var$1 instanceof scc_JavaCollectionWrappers$IterableWrapper) + var$2 = var$1.$underlying1(); + else { + var$2 = new scc_JavaCollectionWrappers$JIterableWrapper; + var$2.$underlying35 = var$1; } - return $_localctx; + return var$2; +}; +function scc_AsScalaExtensions$ListHasAsScala() { + let a = this; jl_Object.call(a); + a.$l = null; + a.$$outer59 = null; +} +let scc_AsScalaExtensions$ListHasAsScala_asScala = $this => { + let var$1, var$2; + var$1 = $this.$l; + if (var$1 === null) + var$2 = null; + else if (var$1 instanceof scc_JavaCollectionWrappers$MutableBufferWrapper) + var$2 = var$1.$underlying3(); + else { + var$2 = new scc_JavaCollectionWrappers$JListWrapper; + var$2.$underlying21 = var$1; + } + return var$2; }, -oncipv_Cypher5Parser_commandNodePattern = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CommandNodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 360, 180); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2347); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2348); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2349); - oncipv_Cypher5Parser_labelType($this); - oavr_Recognizer_setState($this, 2350); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_ProcedureResultItem$_init_$lambda$_81_0 = $rt_classWithoutFields(), +oncia_ProcedureResultItem$_init_$lambda$_81_0_apply = (var$0, var$1) => { + return var$1.$name30; +}; +function oncia_ProcedureResultItem$_init_$lambda$_81_1() { + jl_Object.call(this); + this.$_0417 = null; +} +let oncia_ProcedureResultItem$_init_$lambda$_81_1_apply = var$0 => { + return var$0.$_0417.$variable8.$name4; +}, +oncifp_SensitiveParameterRewriter$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncifp_SensitiveParameterRewriter$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + if ($x1 instanceof oncie_ExplicitParameter) { + $x1 = $x1; + $default = new oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$1; + oncie_ExplicitParameter__init_($default, $x1.$name17, $x1.$parameterType0, $x1.$sizeHint2, $x1.$position146); + return $default; } - return $_localctx; + if (!($x1 instanceof oncie_AutoExtractedParameter)) { + if (!$rt_isInstance($x1, oncie_Literal)) + return $default.$apply2($x1); + return $x1.$asSensitiveLiteral(); + } + $x1 = $x1; + $default = new oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$2; + oncie_AutoExtractedParameter__init_($default, $x1.$name29, $x1.$parameterType1, $x1.$sizeHint3, $x1.$position74); + return $default; +}, +onciu_RewritableJavascript$PROXY$9_51 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_51_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_52 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_52_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_53 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_53_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_51 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_51_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_52 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_52_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_53 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_53_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$7_143 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_143_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncifp_ResolvedCall_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3, var$3[4].$value3, var$3[5].$value3, var$3[6].$value3, var$3[7]); +}, +onciu_RewritableJavascript$PROXY$7_146 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_146_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ProcedureResultItem__init_(var$3[0], var$3[1], var$3[2]); }; -let oncipv_Cypher5Parser_commandRelPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CommandRelPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 362, 181); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2352); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2353); - oavr_Parser_match($this, 239); - oavr_Recognizer_setState($this, 2355); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 156 && $_la != 311)) { - oavr_Recognizer_setState($this, 2354); - oncipv_Cypher5Parser_leftArrow($this); - } - oavr_Recognizer_setState($this, 2357); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2358); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 2359); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2360); - oncipv_Cypher5Parser_relType($this); - oavr_Recognizer_setState($this, 2361); - oavr_Parser_match($this, 216); - oavr_Recognizer_setState($this, 2362); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2364); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 124 && $_la != 312)) { - oavr_Recognizer_setState($this, 2363); - oncipv_Cypher5Parser_rightArrow($this); - } - oavr_Recognizer_setState($this, 2366); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2367); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +function ju_TemplateCollections$NEtriesMap$1() { + ju_TemplateCollections$AbstractImmutableSet.call(this); + this.$this$02 = null; +} +let ju_TemplateCollections$NEtriesMap$1_iterator = $this => { + let var$1; + var$1 = new ju_TemplateCollections$NEtriesMap$1$1; + var$1.$this$1 = $this; + return var$1; +}, +oncipv_Cypher5Parser$EndOfFileContext = $rt_classWithoutFields(oncip_AstRuleCtx), +oncipau_Util$ = $rt_classWithoutFields(), +oncipau_Util$_MODULE$ = null, +oncipau_Util$_$callClinit = () => { + oncipau_Util$_$callClinit = $rt_eraseClinit(oncipau_Util$); + oncipau_Util$__clinit_(); +}, +oncipau_Util$__clinit_ = () => { + let var$1; + var$1 = new oncipau_Util$; + oncipau_Util$_$callClinit(); + oncipau_Util$_MODULE$ = var$1; +}, +oncipau_Util$_astOpt = ($this, $ctx) => { + if ($ctx === null) + return s_None$_MODULE$; + return s_Some__init_($ctx.$ast0); +}, +oncipau_Util$_astOpt0 = ($this, $ctx, $default) => { + if ($ctx === null) + return $default.$apply4(); + return $ctx.$ast0; +}, +oncipau_Util$_astOptFromList = ($this, $list, $default) => { + let $size; + $size = $list.$size(); + if (!$size) + return $default.$apply4(); + if ($size == 1) + return s_Some__init_(($list.$get0(0)).$ast0); + $list = new jl_IllegalArgumentException; + $default = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($default); + jl_StringBuilder_append0(jl_StringBuilder_append($default, $rt_s(5220)), $size); + jl_Throwable__init_($list, jl_AbstractStringBuilder_toString($default)); + $rt_throw($list); +}, +oncipau_Util$_optUnsignedDecimalInt = ($this, $token) => { + if ($token === null) + return s_None$_MODULE$; + return s_Some__init_(oncipau_Util$_unsignedDecimalInt($this, $token)); +}, +oncipau_Util$_unsignedDecimalInt = ($this, $token) => { + return oncie_UnsignedDecimalIntegerLiteral__init_0($token.$getText(), oncipau_Util$_pos0($this, $token)); +}, +oncipau_Util$_ctxChild = ($this, $ctx, $index) => { + return oncip_AstRuleCtx_getChild($ctx, $index); +}, +oncipau_Util$_astChild = ($this, $ctx, $index) => { + return (oncip_AstRuleCtx_getChild($ctx, $index)).$ast0; +}, +oncipau_Util$_astSeq = ($this, $list, $from, $evidence$1) => { + let $size, $result, $dest; + $size = $list.$size(); + $result = $evidence$1.$newArray($size - $from | 0); + $dest = 0; + while ($from < $size) { + sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, $result, $dest, ($list.$get0($from)).$ast0); + $from = $from + 1 | 0; + $dest = $dest + 1 | 0; } - return $_localctx; + return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, $result); }, -oncipv_Cypher5Parser_createConstraint = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateConstraintContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 364, 182); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2369); - oavr_Parser_match($this, 55); - oavr_Recognizer_setState($this, 2371); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 266, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2370); - oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); - } - oavr_Recognizer_setState($this, 2376); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2373); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2374); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2375); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 2378); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 112 && $_la != 185) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - f: { - oavr_Recognizer_setState($this, 2381); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 268, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2380); - oncipv_Cypher5Parser_commandRelPattern($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2379); - oncipv_Cypher5Parser_commandNodePattern($this); - } - oavr_Recognizer_setState($this, 2383); - oncipv_Cypher5Parser_constraintType($this); - oavr_Recognizer_setState($this, 2385); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { - oavr_Recognizer_setState($this, 2384); - oncipv_Cypher5Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncipau_Util$_astSeq0 = ($this, $list, $offset, $step, $evidence$2) => { + let $size, var$6, $dest; + $size = $list.$size0; + var$6 = $rt_createArray(jl_Object, $size / $step | 0); + $dest = 0; + while ($offset < $size) { + sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, var$6, $dest, (ju_ArrayList_get($list, $offset)).$ast0); + $offset = $offset + $step | 0; + $dest = $dest + 1 | 0; } - return $_localctx; + return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, var$6); }, -oncipv_Cypher5Parser_constraintType = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = oncipv_Cypher5Parser$ConstraintTypeContext__init_($this.$_ctx, oavr_Recognizer_getState($this)); - oavr_Parser_enterRule($this, $_localctx, 366, 183); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 2421); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 273, $this.$_ctx)) { - case 1: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ConstraintExistsContext; - var$2 = $re; - oncipv_Cypher5Parser$ConstraintExistsContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 2387); - oavr_Parser_match($this, 26); - oavr_Recognizer_setState($this, 2388); - oavr_Parser_match($this, 105); - oavr_Recognizer_setState($this, 2389); - oncipv_Cypher5Parser_propertyList($this); - break e; - case 2: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ConstraintTypedContext; - var$2 = $re; - oncipv_Cypher5Parser$ConstraintTypedContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 2390); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 26) { - var$2 = $re; - if ($_la != 230) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break f; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - g: { - var$2 = $re; - oavr_Recognizer_setState($this, 2391); - oncipv_Cypher5Parser_propertyList($this); - oavr_Recognizer_setState($this, 2395); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 48: - var$2 = $re; - oavr_Recognizer_setState($this, 2392); - oavr_Parser_match($this, 48); - break g; - case 139: - var$2 = $re; - oavr_Recognizer_setState($this, 2393); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 2394); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 48) { - var$2 = $re; - if ($_la != 283) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break g; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break g; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2397); - oncipv_Cypher5Parser_type($this); - break e; - case 3: - h: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ConstraintIsUniqueContext; - var$2 = $re; - oncipv_Cypher5Parser$ConstraintIsUniqueContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 2399); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 26) { - var$2 = $re; - if ($_la != 230) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break h; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - i: { - var$2 = $re; - oavr_Recognizer_setState($this, 2400); - oncipv_Cypher5Parser_propertyList($this); - oavr_Recognizer_setState($this, 2401); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 2403); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2402); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break i; - } - } - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - } - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2405); - oavr_Parser_match($this, 286); - break e; - case 4: - j: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ConstraintKeyContext; - var$2 = $re; - oncipv_Cypher5Parser$ConstraintKeyContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 2407); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 26) { - var$2 = $re; - if ($_la != 230) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break j; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - k: { - var$2 = $re; - oavr_Recognizer_setState($this, 2408); - oncipv_Cypher5Parser_propertyList($this); - oavr_Recognizer_setState($this, 2409); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 2411); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { - var$2 = $re; - oavr_Recognizer_setState($this, 2410); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 173 | 0; - if (!($_la & (-64))) { - var$2 = $re; - if (Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(1, 786432)), Long_ZERO)) { - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break k; - } - } - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - } - } - } - var$2 = $re; - oavr_Recognizer_setState($this, 2413); - oavr_Parser_match($this, 141); - break e; - case 5: - l: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$ConstraintIsNotNullContext; - var$2 = $re; - oncipv_Cypher5Parser$ConstraintIsNotNullContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 5); - oavr_Recognizer_setState($this, 2415); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 26) { - var$2 = $re; - if ($_la != 230) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break l; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 2416); - oncipv_Cypher5Parser_propertyList($this); - oavr_Recognizer_setState($this, 2417); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 2418); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2419); - oavr_Parser_match($this, 182); - break e; - default: - } - $re = $_localctx; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; +oncipau_Util$_astSeqPositioned = ($this, $list, $func, $evidence$3) => { + let $size, $result, $i, $item; + $size = $list.$size(); + $result = $evidence$3.$newArray($size); + $i = 0; + while ($i < $size) { + $item = $list.$get0($i); + sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, $result, $i, ($func.$apply2($item.$ast0)).$apply2(oncipau_Util$_pos($this, $item))); + $i = $i + 1 | 0; + } + return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, $result); +}, +oncipau_Util$_astCtxReduce = ($this, $ctx, $f) => { + let $children, $size, $result, $i; + $children = $ctx.$children0; + $size = $children.$size0; + $result = (ju_ArrayList_get($children, 0)).$ast0; + $i = 1; + while ($i < $size) { + $result = $f.$apply3($result, ju_ArrayList_get($children, $i)); + $i = $i + 1 | 0; + } + return $result; +}, +oncipau_Util$_astBinaryFold = ($this, $ctx, $f) => { + let var$3, $z, var$5, var$6; + var$3 = $ctx.$children0.$size0; + switch (var$3) { + case 1: + break; + default: + $z = $f.$apply40((oncipau_Util$_ctxChild($this, $ctx, 0)).$ast0, oncip_AstRuleCtx_getChild($ctx, 1), (oncipau_Util$_ctxChild($this, $ctx, 2)).$ast0); + if (var$3 == 3) + return $z; + var$5 = ((sc_IterableOps_drop$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, $ctx.$children0)), 3)).$toSeq()).$grouped0(2); + var$6 = new oncipau_Util$$astBinaryFold$lambda$_16_0; + var$6.$_0301 = $f; + var$6.$_1108 = $ctx; + return sc_IterableOnceOps_foldLeft$(var$5, $z, var$6); + } + return (oncipau_Util$_ctxChild($this, $ctx, 0)).$ast0; +}, +oncipau_Util$_nodeChild = ($this, $ctx, $index) => { + return oncip_AstRuleCtx_getChild($ctx, $index); +}, +oncipau_Util$_nodeChildType = ($this, $ctx, $index) => { + return ((oncip_AstRuleCtx_getChild($ctx, $index)).$getSymbol()).$getType0(); +}, +oncipau_Util$_lastChild = ($this, $ctx) => { + $ctx = $ctx.$children0; + return ju_ArrayList_get($ctx, $ctx.$size0 - 1 | 0); +}, +oncipau_Util$_astPairs = ($this, $as, $bs) => { + let $result, var$4, $i, $length; + $result = $rt_createArray(s_Tuple2, $as.$size()); + var$4 = $result.data; + $i = 0; + $length = $as.$size(); + while ($i < $length) { + var$4[$i] = s_Tuple2__init_(($as.$get0($i)).$ast0, ($bs.$get0($i)).$ast0); + $i = $i + 1 | 0; + } + return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, $result); +}, +oncipau_Util$_pos0 = ($this, $token) => { + return $token.$position(); +}, +oncipau_Util$_pos = ($this, $ctx) => { + return oncipau_Util$_pos0($this, $ctx.$start1); +}, +oncipau_Util$_pos1 = ($this, $node) => { + return oncipau_Util$_pos0($this, $node.$getSymbol()); +}, +oncipau_Util$_inputText = ($this, $ctx) => { + return oncipl_CypherQueryAccess_inputText($ctx.$stop.$getTokenSource(), $ctx.$start1, $ctx.$stop); +}, +oncipau_Util$_rangePos = ($this, $ctx) => { + let $start, $stopToken; + $start = oncipau_Util$_pos($this, $ctx); + $stopToken = $ctx.$stop; + return onciu_InputPosition$Simple_withInputLength($start, ($stopToken.$inputOffset($stopToken.$getStopIndex()) - $start.$offset0 | 0) + 1 | 0); +}, +oncipau_Util$_ifExistsDo = ($this, $replace, $ifNotExists) => { + let var$3, var$4, var$5; + var$3 = s_Tuple2$mcZZ$sp__init_($replace, $ifNotExists); + var$4 = var$3.$_1$mcZ$sp0; + var$5 = var$3.$_2$mcZ$sp0; + $replace = $rt_compare(1, var$4); + if (!$replace && 1 == var$5) { + oncia_IfExistsInvalidSyntax$_$callClinit(); + return oncia_IfExistsInvalidSyntax$_MODULE$; + } + if (!$replace && 0 == var$5) { + oncia_IfExistsReplace$_$callClinit(); + return oncia_IfExistsReplace$_MODULE$; + } + $replace = $rt_compare(0, var$4); + if (!$replace && 1 == var$5) { + oncia_IfExistsDoNothing$_$callClinit(); + return oncia_IfExistsDoNothing$_MODULE$; + } + if (!$replace && 0 == var$5) { + oncia_IfExistsThrowError$_$callClinit(); + return oncia_IfExistsThrowError$_MODULE$; + } + $rt_throw(s_MatchError__init_(var$3)); +}, +oncipau_Util$_semanticDirection = ($this, $hasRightArrow, $hasLeftArrow) => { + if ($hasRightArrow && !$hasLeftArrow) { + oncie_SemanticDirection$OUTGOING$_$callClinit(); + return oncie_SemanticDirection$OUTGOING$_MODULE$; + } + if ($hasLeftArrow && !$hasRightArrow) { + oncie_SemanticDirection$INCOMING$_$callClinit(); + return oncie_SemanticDirection$INCOMING$_MODULE$; + } + oncie_SemanticDirection$BOTH$_$callClinit(); + return oncie_SemanticDirection$BOTH$_MODULE$; +}, +oncie_IsAggregate$ = $rt_classWithoutFields(), +oncie_IsAggregate$_MODULE$ = null, +oncie_IsAggregate$_$callClinit = () => { + oncie_IsAggregate$_$callClinit = $rt_eraseClinit(oncie_IsAggregate$); + oncie_IsAggregate$__clinit_(); +}, +oncie_IsAggregate$__clinit_ = () => { + let var$1; + var$1 = new oncie_IsAggregate$; + oncie_IsAggregate$_$callClinit(); + oncie_IsAggregate$_MODULE$ = var$1; +}, +oncie_IsAggregate$_unapply = ($this, $v) => { + let var$2, var$3; + var$2 = 0; + var$3 = null; + if ($v instanceof oncie_CountStar) + return s_Some__init_($v); + if ($v instanceof oncie_FunctionInvocation) { + var$2 = 1; + var$3 = $v; + if (var$3.$distinct3) + return s_Some__init_(var$3); + } + if (var$2) { + if (!(var$3.$function1 instanceof oncief_AggregatingFunction)) + return s_None$_MODULE$; + return s_Some__init_(var$3); + } + if ($rt_isInstance($v, oncief_UserDefinedFunctionInvocation)) { + $v = $v; + if (s_Option_exists($v.$fcnSignature, new oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0)) + return s_Some__init_($v); + } + return s_None$_MODULE$; +}; +function oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0834 = null; +} +let oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_0834; + s_Option$_$callClinit(); + var$3 = (s_Option$_option2Iterable(s_Option$_MODULE$, var$2.$orderBy())).$toSeq(); + var$4 = new oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0; + var$4.$_0800 = var$2; + var$1 = var$1.$concat(var$3.$flatMap(var$4)); + oncia_ReturnItems$_$callClinit(); + var$2 = sc_AbstractIterable_toSet((var$2.$returnItems()).$items0.$map(new oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_0)); + var$3 = var$2.$collect(new oncia_ReturnItems$$anonfun$1); + var$4 = var$2.$collect(new oncia_ReturnItems$$anonfun$2); + var$2 = var$2.$collect(new oncia_ReturnItems$$anonfun$3); + var$5 = new oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_1; + var$5.$_0365 = var$4; + var$5.$_1129 = var$2; + var$2 = var$3.$flatMap(var$5); + if (!sc_IterableOnceOps_nonEmpty$(var$2)) + var$2 = s_None$_MODULE$; + else { + var$3 = (var$2.$map(new oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_2)).$toSeq(); + var$4 = (var$2.$head()).$position(); + var$2 = new s_Some; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$6 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$4.$offset(), var$4.$line(), var$4.$column()); + var$5 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I18), var$4.$offset(), var$4.$line(), var$4.$column()); + ong_GqlParams$ListParam_$callClinit(); + var$7 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(var$6, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam1(var$5, ong_GqlParams$ListParam_variableList, scc_AsJavaExtensions$SeqHasAsJava_asJava(sj_CollectionConverters$_SeqHasAsJava(sj_CollectionConverters$_MODULE$, var$3)))))); + var$3 = sc_AbstractIterable_mkString(var$3, $rt_s(45)); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5221)), var$3); + s_Some__init_0(var$2, oncias_SemanticError__init_0(var$7, jl_AbstractStringBuilder_toString(var$5), var$4)); + } + return var$1.$concat(var$2); +}, +oncie_LeftUnaryOperatorExpression = $rt_classWithoutFields(0), +oncie_LeftUnaryOperatorExpression_asCanonicalStringVal$ = $$this => { + let var$2, var$3; + var$2 = $$this.$canonicalOperatorSymbol(); + $$this = ($$this.$rhs()).$asCanonicalStringVal(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$2 = jl_StringBuilder_append(var$3, var$2); + jl_AbstractStringBuilder_append0(var$2, 40); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, $$this), 41); + return jl_AbstractStringBuilder_toString(var$3); +}, +oncie_LeftUnaryOperatorExpression_isConstantForQuery$ = $$this => { + return ($$this.$rhs()).$isConstantForQuery(); +}; +function oncie_Not() { + let a = this; oncie_Expression.call(a); + a.$rhs21 = null; + a.$position305 = null; + a.$signatures19 = null; +} +let oncie_Not_asCanonicalStringVal = $this => { + return oncie_LeftUnaryOperatorExpression_asCanonicalStringVal$($this); +}, +oncie_Not_isConstantForQuery = $this => { + return oncie_LeftUnaryOperatorExpression_isConstantForQuery$($this); +}, +oncie_Not_canonicalOperatorSymbol = $this => { + return oncie_OperatorExpression_canonicalOperatorSymbol$($this); +}, +oncie_Not_rhs = $this => { + return $this.$rhs21; +}, +oncie_Not_position = $this => { + return $this.$position305; +}, +oncie_Not_signatures = $this => { + return $this.$signatures19; +}, +oncie_Not_productPrefix = $this => { + return $rt_s(5222); +}, +oncie_Not_productArity = $this => { + return 1; +}, +oncie_Not_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$rhs21; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_Not_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Not_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Not_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Not_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Not) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$rhs21; + $x$1 = $x$1.$rhs21; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); - break a; + if ($x$1 !== null) + break b; } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_Not)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipvaf_CypherAstBuildingAntlrParser_exitRule($this); - $re = var$2; + var$3 = 0; } - return $re; + return var$3; }, -oncipv_Cypher5Parser_dropConstraint = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropConstraintContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 368, 184); +oncie_Not__init_ = ($this, $rhs, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9; + $this.$rhs21 = $rhs; + $this.$position305 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$3 = s_package$_Vector(s_package$_MODULE$); + $rhs = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$5 = var$4.data; + oncie_TypeSignature$_$callClinit(); + var$6 = oncie_TypeSignature$_MODULE$; + var$7 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_BooleanType, 1); + var$9 = var$8.data; + oncius_package$_$callClinit(); + var$9[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures19 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$4)); +}, +oncie_Not__init_0 = (var_0, var_1) => { + let var_2 = new oncie_Not(); + oncie_Not__init_(var_2, var_0, var_1); + return var_2; +}; +function oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0() { + let a = this; jl_Object.call(a); + a.$_0436 = null; + a.$_1151 = null; +} +let oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0436; + var$3 = var$0.$_1151; + return var$1.$appended(s_Tuple2__init_(sr_AbstractPartialFunction_apply(var$2.$$outer45.$matcher0, var$3), var$3.$position())); +}, +oncil_LabelExpression = $rt_classWithoutFields(0), +oncil_LabelExpression_containsGpmSpecificLabelExpression$ = $$this => { + let var$2; + if (!($$this instanceof oncil_LabelExpression$ColonConjunction)) + var$2 = $$this instanceof oncil_LabelExpression$Leaf ? 0 : !($$this instanceof oncil_LabelExpression$DynamicLeaf) ? 1 : 0; + else { + $$this = $$this; + var$2 = !$$this.$lhs2.$containsGpmSpecificLabelExpression() && !$$this.$rhs2.$containsGpmSpecificLabelExpression() ? 0 : 1; + } + return var$2; +}, +oncil_LabelExpression_containsGpmSpecificRelTypeExpression$ = $$this => { + let var$2, var$3; + if ($$this instanceof oncil_LabelExpression$Disjunctions) + var$2 = $$this.$children3.$exists(new oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0); + else if (!($$this instanceof oncil_LabelExpression$ColonDisjunction)) + var$2 = $$this instanceof oncil_LabelExpression$Leaf ? 0 : !($$this instanceof oncil_LabelExpression$DynamicLeaf) ? 1 : 0; + else { + $$this = $$this; + var$3 = $$this.$lhs3; + $$this = $$this.$rhs3; + var$2 = !var$3.$containsGpmSpecificRelTypeExpression() && !$$this.$containsGpmSpecificRelTypeExpression() ? 0 : 1; + } + return var$2; +}, +oncil_LabelExpression_containsMatchSpecificLabelExpression$ = $$this => { + let var$2; + if ($$this instanceof oncil_LabelExpression$ColonConjunction) { + $$this = $$this; + var$2 = !$$this.$lhs2.$containsMatchSpecificLabelExpression() && !$$this.$rhs2.$containsMatchSpecificLabelExpression() ? 0 : 1; + } else + var$2 = $$this instanceof oncil_LabelExpression$Conjunctions ? $$this.$children4.$exists(new oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0) : $$this instanceof oncil_LabelExpression$Leaf ? 0 : !($$this instanceof oncil_LabelExpression$DynamicLeaf) ? 1 : 0; + return var$2; +}, +oncil_LabelExpression_containsDynamicLabelOrTypeExpression$ = $$this => { + let var$2; + if ($rt_isInstance($$this, oncil_BinaryLabelExpression)) { + $$this = $$this; + var$2 = !($$this.$lhs1()).$containsDynamicLabelOrTypeExpression() && !($$this.$rhs1()).$containsDynamicLabelOrTypeExpression() ? 0 : 1; + } else if ($rt_isInstance($$this, oncil_MultiOperatorLabelExpression)) + var$2 = ($$this.$children()).$exists(new oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0); + else if ($$this instanceof oncil_LabelExpression$Negation) + var$2 = $$this.$e.$containsDynamicLabelOrTypeExpression(); + else if ($$this instanceof oncil_LabelExpression$Leaf) + var$2 = 0; + else if ($$this instanceof oncil_LabelExpression$Wildcard) + var$2 = 0; + else { + if (!($$this instanceof oncil_LabelExpression$DynamicLeaf)) + $rt_throw(s_MatchError__init_($$this)); + var$2 = 1; + } + return var$2; +}, +oncil_LabelExpression_replaceColonSyntax$ = $$this => { + let var$2; + var$2 = onciu_bottomUp$_MODULE$; + return (onciu_bottomUp$_apply(var$2, new oncil_LabelExpression$replaceColonSyntax$lambda$_13_0, onciu_bottomUp$_apply$default$2(var$2), onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2($$this); +}, +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncie_LabelName); +}; +function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_0280 = null; + a.$_1103 = null; + a.$_236 = null; +} +let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0280; + var$3 = var$0.$_1103; + var$4 = var$0.$_236; + return oncifp_ValidSymbolicNamesInLabelExpressions$_org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames(oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$, $rt_s(5160), var$3, var$2.$cancellationChecker$1, var$4, var$1); +}, +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncie_RelTypeName); +}; +function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3() { + let a = this; jl_Object.call(a); + a.$_0322 = null; + a.$_1114 = null; + a.$_240 = null; +} +let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0322; + var$3 = var$0.$_1114; + var$4 = var$0.$_240; + return oncifp_ValidSymbolicNamesInLabelExpressions$_org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames(oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$, $rt_s(5163), var$3, var$2.$cancellationChecker$1, var$4, var$1); +}, +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncie_LabelOrRelTypeName); +}; +function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5() { + let a = this; jl_Object.call(a); + a.$_0481 = null; + a.$_1164 = null; + a.$_256 = null; +} +let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0481; + var$3 = var$0.$_1164; + var$4 = var$0.$_256; + return oncifp_ValidSymbolicNamesInLabelExpressions$_org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames(oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$, $rt_s(5223), var$3, var$2.$cancellationChecker$1, var$4, var$1); +}, +oncie_PatternPart$Selector = $rt_classWithoutFields(0), +oncie_PatternPart$SelectiveSelector = $rt_classWithoutFields(0); +function oncifp_SyntaxUsageMetricKey() { + jl_Enum.call(this); + this.$key11 = null; +} +let oncifp_SyntaxUsageMetricKey_GPM_SHORTEST = null, +oncifp_SyntaxUsageMetricKey_LEGACY_SHORTEST = null, +oncifp_SyntaxUsageMetricKey_COLLECT_SUBQUERY = null, +oncifp_SyntaxUsageMetricKey_COUNT_SUBQUERY = null, +oncifp_SyntaxUsageMetricKey_EXISTS_SUBQUERY = null, +oncifp_SyntaxUsageMetricKey_QUANTIFIED_PATH_PATTERN = null, +oncifp_SyntaxUsageMetricKey_$VALUES = null, +oncifp_SyntaxUsageMetricKey_$callClinit = () => { + oncifp_SyntaxUsageMetricKey_$callClinit = $rt_eraseClinit(oncifp_SyntaxUsageMetricKey); + oncifp_SyntaxUsageMetricKey__clinit_(); +}, +oncifp_SyntaxUsageMetricKey_values = () => { + oncifp_SyntaxUsageMetricKey_$callClinit(); + return oncifp_SyntaxUsageMetricKey_$VALUES.$clone0(); +}, +oncifp_SyntaxUsageMetricKey__init_0 = ($this, var$1, var$2, $key) => { + oncifp_SyntaxUsageMetricKey_$callClinit(); + jl_Enum__init_($this, var$1, var$2); + $this.$key11 = $key; +}, +oncifp_SyntaxUsageMetricKey__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncifp_SyntaxUsageMetricKey(); + oncifp_SyntaxUsageMetricKey__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncifp_SyntaxUsageMetricKey__clinit_ = () => { + let var$1, var$2, var$3; + oncifp_SyntaxUsageMetricKey_GPM_SHORTEST = oncifp_SyntaxUsageMetricKey__init_($rt_s(5224), 0, $rt_s(5224)); + oncifp_SyntaxUsageMetricKey_LEGACY_SHORTEST = oncifp_SyntaxUsageMetricKey__init_($rt_s(5225), 1, $rt_s(5225)); + oncifp_SyntaxUsageMetricKey_COLLECT_SUBQUERY = oncifp_SyntaxUsageMetricKey__init_($rt_s(5226), 2, $rt_s(5226)); + oncifp_SyntaxUsageMetricKey_COUNT_SUBQUERY = oncifp_SyntaxUsageMetricKey__init_($rt_s(5227), 3, $rt_s(5227)); + oncifp_SyntaxUsageMetricKey_EXISTS_SUBQUERY = oncifp_SyntaxUsageMetricKey__init_($rt_s(5228), 4, $rt_s(5228)); + var$1 = oncifp_SyntaxUsageMetricKey__init_($rt_s(5229), 5, $rt_s(5229)); + oncifp_SyntaxUsageMetricKey_QUANTIFIED_PATH_PATTERN = var$1; + var$2 = $rt_createArray(oncifp_SyntaxUsageMetricKey, 6); + var$3 = var$2.data; + var$3[0] = oncifp_SyntaxUsageMetricKey_GPM_SHORTEST; + var$3[1] = oncifp_SyntaxUsageMetricKey_LEGACY_SHORTEST; + var$3[2] = oncifp_SyntaxUsageMetricKey_COLLECT_SUBQUERY; + var$3[3] = oncifp_SyntaxUsageMetricKey_COUNT_SUBQUERY; + var$3[4] = oncifp_SyntaxUsageMetricKey_EXISTS_SUBQUERY; + var$3[5] = var$1; + oncifp_SyntaxUsageMetricKey_$VALUES = var$2; +}; +function oncie_QuantifiedPath() { + let a = this; oncie_PatternElement.call(a); + a.$part2 = null; + a.$quantifier2 = null; + a.$optionalWhereExpression = null; + a.$variableGroupings = null; + a.$position42 = null; +} +let oncie_QuantifiedPath_part = $this => { + return $this.$part2; +}, +oncie_QuantifiedPath_quantifier = $this => { + return $this.$quantifier2; +}, +oncie_QuantifiedPath_position = $this => { + return $this.$position42; +}, +oncie_QuantifiedPath_allVariables = $this => { + return $this.$variableGroupings.$map(new oncie_QuantifiedPath$allVariables$lambda$_9_0); +}, +oncie_QuantifiedPath_isBounded = $this => { + let var$1; + var$1 = $this.$quantifier2; + if (var$1 instanceof oncie_FixedQuantifier) + return 1; + if (var$1 instanceof oncie_IntervalQuantifier) + return s_Option_isDefined(var$1.$upper1); + if (var$1 instanceof oncie_PlusQuantifier) + return 0; + if (var$1 instanceof oncie_StarQuantifier) + return 0; + $rt_throw(s_MatchError__init_(var$1)); +}, +oncie_QuantifiedPath_copy = ($this, $part, $quantifier, $optionalWhereExpression, $variableGroupings, $position) => { + return oncie_QuantifiedPath__init_($part, $quantifier, $optionalWhereExpression, $variableGroupings, $position); +}, +oncie_QuantifiedPath_productPrefix = $this => { + return $rt_s(5230); +}, +oncie_QuantifiedPath_productArity = $this => { + return 4; +}, +oncie_QuantifiedPath_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$part2; + case 1: + return $this.$quantifier2; + case 2: + return $this.$optionalWhereExpression; + case 3: + return $this.$variableGroupings; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_QuantifiedPath_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_QuantifiedPath_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_QuantifiedPath_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_QuantifiedPath_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_QuantifiedPath) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$part2; + var$3 = $x$1.$part2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2423); - oavr_Parser_match($this, 55); - oavr_Recognizer_setState($this, 2448); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 278, $this.$_ctx)) { - case 1: - break f; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2443); - oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); - oavr_Recognizer_setState($this, 2446); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 128) - break e; - oavr_Recognizer_setState($this, 2444); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2445); - oavr_Parser_match($this, 105); - break e; - } - g: { - oavr_Recognizer_setState($this, 2424); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 2427); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 274, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2426); - oncipv_Cypher5Parser_commandRelPattern($this); - break g; - default: - break g; - } - oavr_Recognizer_setState($this, 2425); - oncipv_Cypher5Parser_commandNodePattern($this); - } - h: { - oavr_Recognizer_setState($this, 2429); - oavr_Parser_match($this, 26); - oavr_Recognizer_setState($this, 2441); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 276, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2432); - oncipv_Cypher5Parser_propertyList($this); - oavr_Recognizer_setState($this, 2433); - oavr_Parser_match($this, 139); - oavr_Recognizer_setState($this, 2439); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 173: - oavr_Recognizer_setState($this, 2435); - oavr_Parser_match($this, 173); - oavr_Recognizer_setState($this, 2436); - oavr_Parser_match($this, 141); - break h; - case 179: - oavr_Recognizer_setState($this, 2437); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2438); - oavr_Parser_match($this, 182); - break h; - case 286: - oavr_Recognizer_setState($this, 2434); - oavr_Parser_match($this, 286); - break h; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - break h; - } - oavr_Recognizer_setState($this, 2430); - oavr_Parser_match($this, 105); - oavr_Recognizer_setState($this, 2431); - oncipv_Cypher5Parser_propertyList($this); - } - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$quantifier2; + var$3 = $x$1.$quantifier2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$2 = $this.$optionalWhereExpression; + var$3 = $x$1.$optionalWhereExpression; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$3 = $this.$variableGroupings; + $x$1 = $x$1.$variableGroupings; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break f; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncie_QuantifiedPath)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_createIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 370, 185); +oncie_QuantifiedPath_mapExpressions = ($this, $f) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = $this.$part2.$mapExpressions($f); + var$3 = $this.$quantifier2.$mapExpressions($f); + var$4 = s_Option_map($this.$optionalWhereExpression, $f); + var$5 = $this.$variableGroupings; + var$6 = new oncie_QuantifiedPath$mapExpressions$lambda$_14_0; + var$6.$_0456 = $f; + return oncie_QuantifiedPath_copy($this, var$2, var$3, var$4, var$5.$map(var$6), $this.$position42); +}, +oncie_QuantifiedPath__init_0 = ($this, $part, $quantifier, $optionalWhereExpression, $variableGroupings, $position) => { + $this.$part2 = $part; + $this.$quantifier2 = $quantifier; + $this.$optionalWhereExpression = $optionalWhereExpression; + $this.$variableGroupings = $variableGroupings; + $this.$position42 = $position; + oncie_PatternElement__init_($this); +}, +oncie_QuantifiedPath__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncie_QuantifiedPath(); + oncie_QuantifiedPath__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; +}; +function oncia_ExistsExpression() { + let a = this; oncie_Expression.call(a); + a.$query3 = null; + a.$position16 = null; + a.$computedIntroducedVariables0 = null; + a.$computedScopeDependencies1 = null; +} +let oncia_ExistsExpression_introducedVariables = $this => { + return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); +}, +oncia_ExistsExpression_scopeDependencies = $this => { + return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); +}, +oncia_ExistsExpression_dependencies = $this => { + return $this.$scopeDependencies(); +}, +oncia_ExistsExpression_isConstantForQuery = $this => { + return 0; +}, +oncia_ExistsExpression_query = $this => { + return $this.$query3; +}, +oncia_ExistsExpression_position = $this => { + return $this.$position16; +}, +oncia_ExistsExpression_computedIntroducedVariables = $this => { + return $this.$computedIntroducedVariables0; +}, +oncia_ExistsExpression_computedScopeDependencies = $this => { + return $this.$computedScopeDependencies1; +}, +oncia_ExistsExpression_withQuery = ($this, $query) => { + return oncia_ExistsExpression__init_0($query, $this.$position16, $this.$computedIntroducedVariables0, $this.$computedScopeDependencies1); +}, +oncia_ExistsExpression_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { + return oncia_ExistsExpression_copy($this, $this.$query3, $this.$position16, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies1); +}, +oncia_ExistsExpression_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { + return oncia_ExistsExpression_copy($this, $this.$query3, $this.$position16, $this.$computedIntroducedVariables0, s_Some__init_($computedScopeDependencies)); +}, +oncia_ExistsExpression_subqueryAstNode = $this => { + return $this.$query3; +}, +oncia_ExistsExpression_dup = ($this, $children) => { + return oncia_ExistsExpression__init_0($children.$head(), $this.$position16, $this.$computedIntroducedVariables0, $this.$computedScopeDependencies1); +}, +oncia_ExistsExpression_copy = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { + return oncia_ExistsExpression__init_0($query, $position, $computedIntroducedVariables, $computedScopeDependencies); +}, +oncia_ExistsExpression_productPrefix = $this => { + return $rt_s(5231); +}, +oncia_ExistsExpression_productArity = $this => { + return 1; +}, +oncia_ExistsExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$query3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_ExistsExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ExistsExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ExistsExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ExistsExpression_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2477); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 38: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2450); - oavr_Parser_match($this, 38); - oavr_Recognizer_setState($this, 2451); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2452); - oncipv_Cypher5Parser_createIndex_($this); - break e; - case 115: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 2468); - oavr_Parser_match($this, 115); - oavr_Recognizer_setState($this, 2469); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2470); - oncipv_Cypher5Parser_createFulltextIndex($this); - break e; - case 132: - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 2471); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2475); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 279, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 2472); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 2473); - oncipv_Cypher5Parser_oldCreateIndex($this); - break f; - case 2: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 2474); - oncipv_Cypher5Parser_createIndex_($this); - } - break e; - case 154: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 2465); - oavr_Parser_match($this, 154); - oavr_Recognizer_setState($this, 2466); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2467); - oncipv_Cypher5Parser_createLookupIndex($this); - break e; - case 201: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 2459); - oavr_Parser_match($this, 201); - oavr_Recognizer_setState($this, 2460); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2461); - oncipv_Cypher5Parser_createIndex_($this); - break e; - case 215: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2453); - oavr_Parser_match($this, 215); - oavr_Recognizer_setState($this, 2454); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2455); - oncipv_Cypher5Parser_createIndex_($this); - break e; - case 268: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2456); - oavr_Parser_match($this, 268); - oavr_Recognizer_setState($this, 2457); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2458); - oncipv_Cypher5Parser_createIndex_($this); - break e; - case 296: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 2462); - oavr_Parser_match($this, 296); - oavr_Recognizer_setState($this, 2463); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2464); - oncipv_Cypher5Parser_createIndex_($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ExistsExpression) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$query3; + $x$1 = $x$1.$query3; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_ExistsExpression)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_oldCreateIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$OldCreateIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 372, 186); +oncia_ExistsExpression_dup1 = ($this, $children) => { + return oncia_ExistsExpression_dup($this, $children); +}, +oncia_ExistsExpression_dup0 = ($this, $children) => { + return oncia_ExistsExpression_dup($this, $children); +}, +oncia_ExistsExpression__init_ = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { + $this.$query3 = $query; + $this.$position16 = $position; + $this.$computedIntroducedVariables0 = $computedIntroducedVariables; + $this.$computedScopeDependencies1 = $computedScopeDependencies; + oncie_Expression__init_($this); +}, +oncia_ExistsExpression__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_ExistsExpression(); + oncia_ExistsExpression__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncia_CountExpression() { + let a = this; oncie_Expression.call(a); + a.$query4 = null; + a.$position17 = null; + a.$computedIntroducedVariables2 = null; + a.$computedScopeDependencies2 = null; +} +let oncia_CountExpression_introducedVariables = $this => { + return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); +}, +oncia_CountExpression_scopeDependencies = $this => { + return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); +}, +oncia_CountExpression_dependencies = $this => { + return $this.$scopeDependencies(); +}, +oncia_CountExpression_isConstantForQuery = $this => { + return 0; +}, +oncia_CountExpression_query = $this => { + return $this.$query4; +}, +oncia_CountExpression_position = $this => { + return $this.$position17; +}, +oncia_CountExpression_computedIntroducedVariables = $this => { + return $this.$computedIntroducedVariables2; +}, +oncia_CountExpression_computedScopeDependencies = $this => { + return $this.$computedScopeDependencies2; +}, +oncia_CountExpression_withQuery = ($this, $query) => { + return oncia_CountExpression__init_($query, $this.$position17, $this.$computedIntroducedVariables2, $this.$computedScopeDependencies2); +}, +oncia_CountExpression_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { + return oncia_CountExpression_copy($this, $this.$query4, $this.$position17, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies2); +}, +oncia_CountExpression_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { + return oncia_CountExpression_copy($this, $this.$query4, $this.$position17, $this.$computedIntroducedVariables2, s_Some__init_($computedScopeDependencies)); +}, +oncia_CountExpression_subqueryAstNode = $this => { + return $this.$query4; +}, +oncia_CountExpression_dup = ($this, $children) => { + return oncia_CountExpression__init_($children.$head(), $this.$position17, $this.$computedIntroducedVariables2, $this.$computedScopeDependencies2); +}, +oncia_CountExpression_copy = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { + return oncia_CountExpression__init_($query, $position, $computedIntroducedVariables, $computedScopeDependencies); +}, +oncia_CountExpression_productPrefix = $this => { + return $rt_s(5232); +}, +oncia_CountExpression_productArity = $this => { + return 1; +}, +oncia_CountExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$query4; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_CountExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CountExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CountExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CountExpression_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2479); - oncipv_Cypher5Parser_labelType($this); - oavr_Recognizer_setState($this, 2480); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2481); - oncipv_Cypher5Parser_nonEmptyNameList($this); - oavr_Recognizer_setState($this, 2482); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CountExpression) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$query4; + $x$1 = $x$1.$query4; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_CountExpression)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_createIndex_ = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateIndex_Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 374, 187); +oncia_CountExpression_dup1 = ($this, $children) => { + return oncia_CountExpression_dup($this, $children); +}, +oncia_CountExpression_dup0 = ($this, $children) => { + return oncia_CountExpression_dup($this, $children); +}, +oncia_CountExpression__init_0 = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { + $this.$query4 = $query; + $this.$position17 = $position; + $this.$computedIntroducedVariables2 = $computedIntroducedVariables; + $this.$computedScopeDependencies2 = $computedScopeDependencies; + oncie_Expression__init_($this); +}, +oncia_CountExpression__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_CountExpression(); + oncia_CountExpression__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncia_CollectExpression() { + let a = this; oncie_Expression.call(a); + a.$query2 = null; + a.$position15 = null; + a.$computedIntroducedVariables1 = null; + a.$computedScopeDependencies0 = null; +} +let oncia_CollectExpression_introducedVariables = $this => { + return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); +}, +oncia_CollectExpression_scopeDependencies = $this => { + return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); +}, +oncia_CollectExpression_dependencies = $this => { + return $this.$scopeDependencies(); +}, +oncia_CollectExpression_isConstantForQuery = $this => { + return 0; +}, +oncia_CollectExpression_query = $this => { + return $this.$query2; +}, +oncia_CollectExpression_position = $this => { + return $this.$position15; +}, +oncia_CollectExpression_computedIntroducedVariables = $this => { + return $this.$computedIntroducedVariables1; +}, +oncia_CollectExpression_computedScopeDependencies = $this => { + return $this.$computedScopeDependencies0; +}, +oncia_CollectExpression_withQuery = ($this, $query) => { + return oncia_CollectExpression__init_($query, $this.$position15, $this.$computedIntroducedVariables1, $this.$computedScopeDependencies0); +}, +oncia_CollectExpression_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { + return oncia_CollectExpression_copy($this, $this.$query2, $this.$position15, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies0); +}, +oncia_CollectExpression_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { + return oncia_CollectExpression_copy($this, $this.$query2, $this.$position15, $this.$computedIntroducedVariables1, s_Some__init_($computedScopeDependencies)); +}, +oncia_CollectExpression_subqueryAstNode = $this => { + return $this.$query2; +}, +oncia_CollectExpression_dup = ($this, $children) => { + return oncia_CollectExpression__init_($children.$head(), $this.$position15, $this.$computedIntroducedVariables1, $this.$computedScopeDependencies0); +}, +oncia_CollectExpression_copy = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { + return oncia_CollectExpression__init_($query, $position, $computedIntroducedVariables, $computedScopeDependencies); +}, +oncia_CollectExpression_productPrefix = $this => { + return $rt_s(5233); +}, +oncia_CollectExpression_productArity = $this => { + return 1; +}, +oncia_CollectExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$query2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_CollectExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CollectExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CollectExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CollectExpression_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2485); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 281, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2484); - oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); - } - oavr_Recognizer_setState($this, 2490); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2487); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2488); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2489); - oavr_Parser_match($this, 105); - } - f: { - oavr_Recognizer_setState($this, 2492); - oavr_Parser_match($this, 112); - oavr_Recognizer_setState($this, 2495); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 283, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2494); - oncipv_Cypher5Parser_commandRelPattern($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2493); - oncipv_Cypher5Parser_commandNodePattern($this); - } - oavr_Recognizer_setState($this, 2497); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 2498); - oncipv_Cypher5Parser_propertyList($this); - oavr_Recognizer_setState($this, 2500); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { - oavr_Recognizer_setState($this, 2499); - oncipv_Cypher5Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CollectExpression) ? 0 : 1)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + c: { + $x$1 = $x$1; + var$2 = $this.$query2; + $x$1 = $x$1.$query2; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_CollectExpression)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_createFulltextIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateFulltextIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 376, 188); +oncia_CollectExpression_dup0 = ($this, $children) => { + return oncia_CollectExpression_dup($this, $children); +}, +oncia_CollectExpression_dup1 = ($this, $children) => { + return oncia_CollectExpression_dup($this, $children); +}, +oncia_CollectExpression__init_0 = ($this, $query, $position, $computedIntroducedVariables, $computedScopeDependencies) => { + $this.$query2 = $query; + $this.$position15 = $position; + $this.$computedIntroducedVariables1 = $computedIntroducedVariables; + $this.$computedScopeDependencies0 = $computedScopeDependencies; + oncie_Expression__init_($this); +}, +oncia_CollectExpression__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_CollectExpression(); + oncia_CollectExpression__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function s_PartialFunction$Combined$applyOrElse$lambda$_36_0() { + let a = this; jl_Object.call(a); + a.$_01194 = null; + a.$_1399 = null; +} +function oavr_Parser$TraceListener() { + jl_Object.call(this); + this.$this$021 = null; +} +let oncipv_Cypher25Parser$EndOfFileContext = $rt_classWithoutFields(oncip_AstRuleCtx); +function oavr_ProxyErrorListener() { + jl_Object.call(this); + this.$delegates = null; +} +let oavr_ProxyErrorListener_syntaxError = ($this, $recognizer, $offendingSymbol, $line, $charPositionInLine, $msg, $e) => { + let var$7; + var$7 = juc_CopyOnWriteArrayList_iterator($this.$delegates); + while (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext(var$7)) { + (juc_CopyOnWriteArrayList$ListIteratorImpl_next(var$7)).$syntaxError($recognizer, $offendingSymbol, $line, $charPositionInLine, $msg, $e); + } +}; +function oncie_ProcedureOutput() { + let a = this; jl_Object.call(a); + a.$name30 = null; + a.$position236 = null; +} +let oncie_ProcedureOutput_name = $this => { + return $this.$name30; +}, +oncie_ProcedureOutput_position = $this => { + return $this.$position236; +}, +oncie_ProcedureOutput_productPrefix = $this => { + return $rt_s(5234); +}, +oncie_ProcedureOutput_productArity = $this => { + return 1; +}, +oncie_ProcedureOutput_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name30; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_ProcedureOutput_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ProcedureOutput_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ProcedureOutput_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ProcedureOutput_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2503); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 285, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2502); - oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); - } - oavr_Recognizer_setState($this, 2508); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2505); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2506); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2507); - oavr_Parser_match($this, 105); - } - f: { - oavr_Recognizer_setState($this, 2510); - oavr_Parser_match($this, 112); - oavr_Recognizer_setState($this, 2513); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 287, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2512); - oncipv_Cypher5Parser_fulltextRelPattern($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2511); - oncipv_Cypher5Parser_fulltextNodePattern($this); - } - oavr_Recognizer_setState($this, 2515); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 2516); - oavr_Parser_match($this, 91); - oavr_Recognizer_setState($this, 2517); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 2518); - oncipv_Cypher5Parser_enclosedPropertyList($this); - oavr_Recognizer_setState($this, 2519); - oavr_Parser_match($this, 216); - oavr_Recognizer_setState($this, 2521); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { - oavr_Recognizer_setState($this, 2520); - oncipv_Cypher5Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ProcedureOutput) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$name30; + $x$1 = $x$1.$name30; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_ProcedureOutput)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_fulltextNodePattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$FulltextNodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 378, 189); +oncie_ProcedureOutput_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_ProcedureOutput__init_0 = ($this, $name, $position) => { + $this.$name30 = $name; + $this.$position236 = $position; +}, +oncie_ProcedureOutput__init_ = (var_0, var_1) => { + let var_2 = new oncie_ProcedureOutput(); + oncie_ProcedureOutput__init_0(var_2, var_0, var_1); + return var_2; +}, +oncia_SortItem = $rt_classWithoutFields(0), +oncia_SortItem_semanticCheck$ = $$this => { + let var$2, var$3, var$4; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Results$_MODULE$, $$this.$expression0()); + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = onciu_Foldable_folder$($$this.$expression0()); + sr_ClassTag$_$callClinit(); + return oncias_SemanticCheck_chain$(var$2, oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(var$3, (onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property)))).$map(new oncia_SortItem$semanticCheck$lambda$_2_0))); +}, +oncifp_ResolvedCall$returnVariables$lambda$_23_0 = $rt_classWithoutFields(), +oncifp_ResolvedCall$returnVariables$lambda$_23_0_apply = (var$0, var$1) => { + return var$1.$variable8; +}; +function oncie_ExplicitParameter() { + let a = this; oncie_Expression.call(a); + a.$name17 = null; + a.$parameterType0 = null; + a.$sizeHint2 = null; + a.$position146 = null; +} +let oncie_ExplicitParameter_asCanonicalStringVal = $this => { + return oncie_Parameter_asCanonicalStringVal$($this); +}, +oncie_ExplicitParameter_isConstantForQuery = $this => { + return 1; +}, +oncie_ExplicitParameter_name = $this => { + return $this.$name17; +}, +oncie_ExplicitParameter_parameterType = $this => { + return $this.$parameterType0; +}, +oncie_ExplicitParameter_sizeHint = $this => { + return $this.$sizeHint2; +}, +oncie_ExplicitParameter_position = $this => { + return $this.$position146; +}, +oncie_ExplicitParameter_hashCode = $this => { + let var$1, var$2, var$3; + suh_MurmurHash3$_$callClinit(); + var$1 = suh_MurmurHash3$_MODULE$; + var$2 = $rt_createArray(jl_Object, 2); + var$3 = var$2.data; + var$3[0] = $this.$name17; + var$3[1] = $this.$parameterType0; + return suh_MurmurHash3$_arrayHash(var$1, var$2); +}, +oncie_ExplicitParameter_canEqual = ($this, $that) => { + return $that instanceof oncie_ExplicitParameter; +}, +oncie_ExplicitParameter_equals = ($this, $obj) => { + return oncie_Parameter_equals$($this, $obj); +}, +oncie_ExplicitParameter_copy = ($this, $name, $parameterType, $sizeHint, $position) => { + return oncie_ExplicitParameter__init_0($name, $parameterType, $sizeHint, $position); +}, +oncie_ExplicitParameter_copy$default$1 = $this => { + return $this.$name17; +}, +oncie_ExplicitParameter_copy$default$2 = $this => { + return $this.$parameterType0; +}, +oncie_ExplicitParameter_copy$default$3 = $this => { + return $this.$sizeHint2; +}, +oncie_ExplicitParameter_productPrefix = $this => { + return $rt_s(5235); +}, +oncie_ExplicitParameter_productArity = $this => { + return 3; +}, +oncie_ExplicitParameter_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name17; + case 1: + return $this.$parameterType0; + case 2: + return $this.$sizeHint2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_ExplicitParameter_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ExplicitParameter_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ExplicitParameter__init_ = ($this, $name, $parameterType, $sizeHint, $position) => { + $this.$name17 = $name; + $this.$parameterType0 = $parameterType; + $this.$sizeHint2 = $sizeHint; + $this.$position146 = $position; + oncie_Expression__init_($this); +}, +oncie_ExplicitParameter__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncie_ExplicitParameter(); + oncie_ExplicitParameter__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$1 = $rt_classWithoutFields(oncie_ExplicitParameter), +oncie_SensitiveAutoParameter = $rt_classWithoutFields(0), +oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$2 = $rt_classWithoutFields(oncie_AutoExtractedParameter); +function onciu_LiteralOffset() { + let a = this; jl_Object.call(a); + a.$start6 = 0; + a.$line5 = 0; + a.$length4 = null; +} +let onciu_LiteralOffset_productPrefix = $this => { + return $rt_s(5236); +}, +onciu_LiteralOffset_productArity = $this => { + return 3; +}, +onciu_LiteralOffset_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Integer_valueOf($this.$start6); + case 1: + return jl_Integer_valueOf($this.$line5); + case 2: + return $this.$length4; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_LiteralOffset_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_LiteralOffset_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5236))), $this.$start6), $this.$line5), sr_Statics_anyHash($this.$length4)), 3); +}, +onciu_LiteralOffset_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_LiteralOffset_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2523); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2524); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2525); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 2526); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2531); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 30) { - oavr_Recognizer_setState($this, 2527); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 2528); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2533); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 2534); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_LiteralOffset) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$start6 != $x$1.$start6) + break b; + if ($this.$line5 != $x$1.$line5) + break b; + c: { + var$2 = $this.$length4; + $x$1 = $x$1.$length4; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof onciu_LiteralOffset)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_fulltextRelPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$FulltextRelPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 380, 190); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2536); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2537); - oavr_Parser_match($this, 239); - oavr_Recognizer_setState($this, 2539); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 156 && $_la != 311)) { - oavr_Recognizer_setState($this, 2538); - oncipv_Cypher5Parser_leftArrow($this); - } - oavr_Recognizer_setState($this, 2541); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2542); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 2543); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2544); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 2545); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2550); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 30) { - oavr_Recognizer_setState($this, 2546); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 2547); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2552); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - oavr_Recognizer_setState($this, 2553); - oavr_Parser_match($this, 216); - oavr_Recognizer_setState($this, 2554); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2556); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 124 && $_la != 312)) { - oavr_Recognizer_setState($this, 2555); - oncipv_Cypher5Parser_rightArrow($this); - } - oavr_Recognizer_setState($this, 2558); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2559); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +onciu_LiteralOffset__init_0 = ($this, $start, $line, $length) => { + $this.$start6 = $start; + $this.$line5 = $line; + $this.$length4 = $length; +}, +onciu_LiteralOffset__init_ = (var_0, var_1, var_2) => { + let var_3 = new onciu_LiteralOffset(); + onciu_LiteralOffset__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oavrd_DFAState$PredPrediction() { + let a = this; jl_Object.call(a); + a.$pred = null; + a.$alt1 = 0; +} +let oavrd_DFAState$PredPrediction_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append(var$1, $rt_s(40)); + var$1 = jl_StringBuilder_append(var$1, $this.$pred); + jl_AbstractStringBuilder_append(var$1, $rt_s(45)); + var$1 = jl_StringBuilder_append0(var$1, $this.$alt1); + jl_AbstractStringBuilder_append(var$1, $rt_s(42)); + return jl_AbstractStringBuilder_toString(var$1); +}, +oavr_WritableToken = $rt_classWithoutFields(0), +scm_HashMap$$anon$6 = $rt_classWithoutFields(scm_GrowableBuilder), +ju_AbstractSequentialList = $rt_classWithoutFields(ju_AbstractList), +ju_AbstractSequentialList_get = ($this, $index) => { + let $iter; + if ($index >= 0) + return ju_LinkedList$SequentialListIterator_next(ju_LinkedList_listIterator($this, $index)); + $iter = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0($iter); + $rt_throw($iter); +}, +ju_AbstractSequentialList_set = ($this, $index, $element) => { + let $iter, $old; + if ($index < 0) { + $element = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0($element); + $rt_throw($element); + } + $iter = ju_LinkedList_listIterator($this, $index); + $old = ju_LinkedList$SequentialListIterator_next($iter); + if ($iter.$currentEntry0 !== null) { + ju_LinkedList$SequentialListIterator_checkConcurrentModification($iter); + $iter.$currentEntry0.$item = $element; + $iter.$currentEntry0 = null; + return $old; + } + $element = new jl_IllegalStateException; + jl_Throwable__init_0($element); + $rt_throw($element); +}, +ju_AbstractSequentialList_add = ($this, $index, $element) => { + let $iter, var$4, var$5; + if ($index < 0) { + $element = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0($element); + $rt_throw($element); + } + $iter = ju_LinkedList_listIterator($this, $index); + ju_LinkedList$SequentialListIterator_checkConcurrentModification($iter); + var$4 = new ju_LinkedList$Entry; + var$4.$item = $element; + $element = $iter.$prevEntry; + var$4.$previous0 = $element; + var$5 = $iter.$nextEntry; + var$4.$next7 = var$5; + if ($element !== null) + $element.$next7 = var$4; + else + $iter.$this$00.$firstEntry = var$4; + if (var$5 !== null) + var$5.$previous0 = var$4; + else + $iter.$this$00.$lastEntry = var$4; + $iter.$prevEntry = var$4; + $element = $iter.$this$00; + $element.$size5 = $element.$size5 + 1 | 0; + $index = $element.$modCount + 1 | 0; + $element.$modCount = $index; + $iter.$version0 = $index; + $iter.$currentEntry0 = null; +}, +ju_AbstractSequentialList_remove = ($this, $index) => { + let $iter, $elem, var$4, var$5, var$6, var$7; + if ($index < 0) { + $iter = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0($iter); + $rt_throw($iter); + } + $iter = ju_LinkedList_listIterator($this, $index); + $elem = ju_LinkedList$SequentialListIterator_next($iter); + var$4 = $iter.$currentEntry0; + if (var$4 === null) { + $iter = new jl_IllegalStateException; + jl_Throwable__init_0($iter); + $rt_throw($iter); + } + var$5 = $iter.$this$00; + var$6 = var$4.$previous0; + if (var$6 === null) + var$5.$firstEntry = var$4.$next7; + else + var$6.$next7 = var$4.$next7; + var$7 = var$4.$next7; + if (var$7 === null) + var$5.$lastEntry = var$6; + else + var$7.$previous0 = var$6; + var$5.$size5 = var$5.$size5 - 1 | 0; + var$5.$modCount = var$5.$modCount + 1 | 0; + var$5 = $iter.$prevEntry; + if (var$4 === var$5) { + $iter.$prevEntry = !ju_LinkedList$SequentialListIterator_hasNext($iter) ? null : $iter.$nextEntry.$previous0; + $iter.$index5 = $iter.$index5 - 1 | 0; + } else if (var$4 === $iter.$nextEntry) + $iter.$nextEntry = !(var$5 === null ? 0 : 1) ? null : var$5.$next7; + $iter.$version0 = $iter.$this$00.$modCount; + $iter.$currentEntry0 = null; + return $elem; +}, +ju_AbstractSequentialList_iterator = $this => { + return ju_LinkedList$SequentialListIterator__init_($this, $this.$firstEntry, null, 0); +}, +ju_Queue = $rt_classWithoutFields(0), +ju_Deque = $rt_classWithoutFields(0); +function ju_LinkedList() { + let a = this; ju_AbstractSequentialList.call(a); + a.$firstEntry = null; + a.$lastEntry = null; + a.$size5 = 0; +} +let ju_LinkedList__init_2 = $this => { + return; +}, +ju_LinkedList__init_ = () => { + let var_0 = new ju_LinkedList(); + ju_LinkedList__init_2(var_0); + return var_0; +}, +ju_LinkedList__init_1 = ($this, $coll) => { + let $iter, $prevEntry, $prevEntry_0; + $iter = ju_AbstractSequentialList_iterator($coll); + $prevEntry = null; + while (ju_LinkedList$SequentialListIterator_hasNext($iter)) { + $prevEntry_0 = new ju_LinkedList$Entry; + $prevEntry_0.$item = ju_LinkedList$SequentialListIterator_next($iter); + $prevEntry_0.$previous0 = $prevEntry; + if ($prevEntry !== null) + $prevEntry.$next7 = $prevEntry_0; + else + $this.$firstEntry = $prevEntry_0; + $this.$size5 = $this.$size5 + 1 | 0; + $prevEntry = $prevEntry_0; + } + $this.$lastEntry = $prevEntry; +}, +ju_LinkedList__init_0 = var_0 => { + let var_1 = new ju_LinkedList(); + ju_LinkedList__init_1(var_1, var_0); + return var_1; +}, +ju_LinkedList_size = $this => { + return $this.$size5; +}, +ju_LinkedList_listIterator = ($this, $index) => { + let $prev, var$3, $next, $i; + if ($index < 0) { + $prev = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0($prev); + $rt_throw($prev); + } + var$3 = $this.$size5; + if ($index <= (var$3 / 2 | 0)) { + $next = $this.$firstEntry; + $i = 0; + while ($i < $index) { + $next = $next.$next7; + $i = $i + 1 | 0; + } + return ju_LinkedList$SequentialListIterator__init_($this, $next, $next === null ? null : $next.$previous0, $index); + } + if ($index > var$3) { + $prev = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0($prev); + $rt_throw($prev); + } + $prev = $this.$lastEntry; + $i = $index; + while ($i < var$3) { + $prev = $prev.$previous0; + $i = $i + 1 | 0; + } + return ju_LinkedList$SequentialListIterator__init_($this, $prev === null ? null : $prev.$next7, $prev, $index); +}, +ju_LinkedList_addLast = ($this, $e) => { + let $entry; + $entry = new ju_LinkedList$Entry; + $entry.$item = $e; + $e = $this.$lastEntry; + $entry.$previous0 = $e; + if ($e === null) + $this.$firstEntry = $entry; + else + $e.$next7 = $entry; + $this.$lastEntry = $entry; + $this.$modCount = $this.$modCount + 1 | 0; + $this.$size5 = $this.$size5 + 1 | 0; +}, +ju_LinkedList_removeLast = $this => { + let var$1, var$2; + if (ju_AbstractCollection_isEmpty($this)) { + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + } + var$1 = $this.$lastEntry; + if (var$1 === null) + var$1 = null; + else { + var$2 = var$1.$previous0; + $this.$lastEntry = var$2; + if (var$2 !== null) + var$2.$next7 = null; + else + $this.$firstEntry = null; + $this.$size5 = $this.$size5 - 1 | 0; + $this.$modCount = $this.$modCount + 1 | 0; + var$1 = var$1.$item; + } + return var$1; +}, +oncipcaf_HintIndexType = $rt_classWithoutFields(jl_Enum), +oncipcaf_HintIndexType_ANY = null, +oncipcaf_HintIndexType_BTREE = null, +oncipcaf_HintIndexType_TEXT = null, +oncipcaf_HintIndexType_RANGE = null, +oncipcaf_HintIndexType_POINT = null, +oncipcaf_HintIndexType_$VALUES = null, +oncipcaf_HintIndexType_values = () => { + return oncipcaf_HintIndexType_$VALUES.$clone0(); +}, +oncipcaf_HintIndexType__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new oncipcaf_HintIndexType; + jl_Enum__init_(var$1, $rt_s(708), 0); + oncipcaf_HintIndexType_ANY = var$1; + var$1 = new oncipcaf_HintIndexType; + jl_Enum__init_(var$1, $rt_s(1095), 1); + oncipcaf_HintIndexType_BTREE = var$1; + var$1 = new oncipcaf_HintIndexType; + jl_Enum__init_(var$1, $rt_s(1096), 2); + oncipcaf_HintIndexType_TEXT = var$1; + var$1 = new oncipcaf_HintIndexType; + jl_Enum__init_(var$1, $rt_s(1097), 3); + oncipcaf_HintIndexType_RANGE = var$1; + var$1 = new oncipcaf_HintIndexType; + jl_Enum__init_(var$1, $rt_s(734), 4); + oncipcaf_HintIndexType_POINT = var$1; + var$2 = $rt_createArray(oncipcaf_HintIndexType, 5); + var$3 = var$2.data; + var$3[0] = oncipcaf_HintIndexType_ANY; + var$3[1] = oncipcaf_HintIndexType_BTREE; + var$3[2] = oncipcaf_HintIndexType_TEXT; + var$3[3] = oncipcaf_HintIndexType_RANGE; + var$3[4] = var$1; + oncipcaf_HintIndexType_$VALUES = var$2; +}, +oncipcaf_ASTExceptionFactory = $rt_classWithoutFields(0), +oncipcaf_ASTExceptionFactory_invalidHintIndexType = $got => { + let $HINT_TYPES, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; + $HINT_TYPES = ju_Arrays_stream(oncipcaf_HintIndexType_values()); + var$3 = new oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_9_0; + var$4 = new jusi_FilteringStreamImpl; + jusi_WrappingStreamImpl__init_(var$4, $HINT_TYPES); + var$4.$filter5 = var$3; + var$4 = jusi_SimpleStreamImpl_map(var$4, new oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_9_1); + var$5 = jus_Collectors_toList(); + var$6 = new oncipcaf_ASTExceptionFactory$joiningLastDelimiter$lambda$_10_0; + var$6.$_0444 = $rt_s(870); + var$6.$_1154 = $rt_s(45); + var$7 = var$5.$characteristics; + if (var$7 instanceof ju_EnumSet) { + var$3 = new ju_GenericEnumSet; + $HINT_TYPES = var$7.$cls; + var$8 = var$7.$bits0.$clone0(); + var$3.$cls = $HINT_TYPES; + var$3.$bits0 = var$8; + } else { + var$9 = new ju_GenericEnumSet$1; + var$9.$this$01 = var$7; + var$9.$index4 = ju_GenericEnumSet$1_find(var$9); + var$9.$indexToRemove = (-1); + if (!ju_GenericEnumSet$1_hasNext(var$9)) { + $got = new jl_IllegalArgumentException; + jl_Throwable__init_0($got); + $rt_throw($got); + } + $HINT_TYPES = ju_GenericEnumSet$1_next(var$9); + var$3 = ju_EnumSet_noneOf(jl_Enum_getDeclaringClass($HINT_TYPES)); + ju_GenericEnumSet_add(var$3, $HINT_TYPES); + while (ju_GenericEnumSet$1_hasNext(var$9)) { + ju_GenericEnumSet_add(var$3, ju_GenericEnumSet$1_next(var$9)); + } + } + $HINT_TYPES = jus_Collector$Characteristics_IDENTITY_FINISH; + if (jl_Class_isInstance(var$3.$cls, $HINT_TYPES)) { + var$10 = $HINT_TYPES.$ordinal; + var$11 = var$10 / 32 | 0; + var$12 = 1 << (var$10 % 32 | 0); + var$8 = var$3.$bits0.data; + if (var$8[var$11] & var$12) + var$8[var$11] = var$8[var$11] & (var$12 ^ (-1)); + } + $HINT_TYPES = jusi_SimpleStreamImpl_collect(var$4, jus_CollectorImpl__init_(var$5.$supplier, var$5.$accumulator1, var$5.$combiner, juf_Function_andThen(var$5.$finisher, var$6), var$3)); + if ($got !== oncipcaf_HintIndexType_BTREE) + return jl_String_format($rt_s(5237), $rt_wrapArray(jl_Object, [$got.$name7, $HINT_TYPES])); + var$8 = $rt_createArray(jl_Object, 2); + var$13 = var$8.data; + var$13[0] = $got.$name7; + var$13[1] = $HINT_TYPES; + return jl_String_format($rt_s(5238), var$8); +}; +function oncipcaf_ConstraintType() { + jl_Enum.call(this); + this.$description0 = null; +} +let oncipcaf_ConstraintType_NODE_UNIQUE = null, +oncipcaf_ConstraintType_REL_UNIQUE = null, +oncipcaf_ConstraintType_NODE_KEY = null, +oncipcaf_ConstraintType_REL_KEY = null, +oncipcaf_ConstraintType_NODE_EXISTS = null, +oncipcaf_ConstraintType_NODE_IS_NOT_NULL = null, +oncipcaf_ConstraintType_REL_EXISTS = null, +oncipcaf_ConstraintType_REL_IS_NOT_NULL = null, +oncipcaf_ConstraintType_NODE_IS_TYPED = null, +oncipcaf_ConstraintType_REL_IS_TYPED = null, +oncipcaf_ConstraintType_$VALUES = null, +oncipcaf_ConstraintType_values = () => { + return oncipcaf_ConstraintType_$VALUES.$clone0(); +}, +oncipcaf_ConstraintType__init_0 = ($this, var$1, var$2, $description) => { + jl_Enum__init_($this, var$1, var$2); + $this.$description0 = $description; +}, +oncipcaf_ConstraintType__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncipcaf_ConstraintType(); + oncipcaf_ConstraintType__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncipcaf_ConstraintType__clinit_ = () => { + let var$1, var$2, var$3; + oncipcaf_ConstraintType_NODE_UNIQUE = oncipcaf_ConstraintType__init_($rt_s(5239), 0, $rt_s(5240)); + oncipcaf_ConstraintType_REL_UNIQUE = oncipcaf_ConstraintType__init_($rt_s(5241), 1, $rt_s(5242)); + oncipcaf_ConstraintType_NODE_KEY = oncipcaf_ConstraintType__init_($rt_s(5243), 2, $rt_s(5244)); + oncipcaf_ConstraintType_REL_KEY = oncipcaf_ConstraintType__init_($rt_s(5245), 3, $rt_s(5246)); + oncipcaf_ConstraintType_NODE_EXISTS = oncipcaf_ConstraintType__init_($rt_s(5247), 4, $rt_s(4349)); + oncipcaf_ConstraintType_NODE_IS_NOT_NULL = oncipcaf_ConstraintType__init_($rt_s(5248), 5, $rt_s(436)); + oncipcaf_ConstraintType_REL_EXISTS = oncipcaf_ConstraintType__init_($rt_s(5249), 6, $rt_s(4349)); + oncipcaf_ConstraintType_REL_IS_NOT_NULL = oncipcaf_ConstraintType__init_($rt_s(5250), 7, $rt_s(436)); + oncipcaf_ConstraintType_NODE_IS_TYPED = oncipcaf_ConstraintType__init_($rt_s(5251), 8, $rt_s(5252)); + var$1 = oncipcaf_ConstraintType__init_($rt_s(5253), 9, $rt_s(5252)); + oncipcaf_ConstraintType_REL_IS_TYPED = var$1; + var$2 = $rt_createArray(oncipcaf_ConstraintType, 10); + var$3 = var$2.data; + var$3[0] = oncipcaf_ConstraintType_NODE_UNIQUE; + var$3[1] = oncipcaf_ConstraintType_REL_UNIQUE; + var$3[2] = oncipcaf_ConstraintType_NODE_KEY; + var$3[3] = oncipcaf_ConstraintType_REL_KEY; + var$3[4] = oncipcaf_ConstraintType_NODE_EXISTS; + var$3[5] = oncipcaf_ConstraintType_NODE_IS_NOT_NULL; + var$3[6] = oncipcaf_ConstraintType_REL_EXISTS; + var$3[7] = oncipcaf_ConstraintType_REL_IS_NOT_NULL; + var$3[8] = oncipcaf_ConstraintType_NODE_IS_TYPED; + var$3[9] = var$1; + oncipcaf_ConstraintType_$VALUES = var$2; +}; +function sr_IntRef() { + jl_Object.call(this); + this.$elem5 = 0; +} +let sr_IntRef__init_0 = ($this, $elem) => { + $this.$elem5 = $elem; +}, +sr_IntRef__init_ = var_0 => { + let var_1 = new sr_IntRef(); + sr_IntRef__init_0(var_1, var_0); + return var_1; +}, +sr_IntRef_create = $e => { + return sr_IntRef__init_($e); +}; +function oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0() { + let a = this; jl_Object.call(a); + a.$_088 = null; + a.$_133 = null; + a.$_216 = null; + a.$_39 = null; +} +let oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_088; + var$3 = var$0.$_133; + var$4 = var$0.$_216; + var$5 = var$0.$_39; + if (!scm_HashSet_contains(var$3, var$1)) { + scm_HashSet_add(var$3, var$1); + var$5.$elem5 = var$5.$elem5 + 1 | 0; + } else { + var$3 = var$2.$_errors; + var$6 = var$2.$exceptionFactory0; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(5254)), var$1), $rt_s(5255)); + var$7 = jl_AbstractStringBuilder_toString(var$7); + oncipau_Util$_$callClinit(); + var$2.$_errors = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), var$5.$elem5)))); + } + return sr_BoxedUnit_UNIT; +}, +oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1 = $rt_classWithoutFields(), +oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1_apply = (var$0, var$1) => { + var$1 = var$1; + if (var$1 === null) { + s_package$_$callClinit(); + var$1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + } else + var$1 = var$1.$keySet(); + return var$1; +}; +function oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2() { + let a = this; jl_Object.call(a); + a.$_017 = null; + a.$_111 = null; + a.$_29 = null; + a.$_34 = null; +} +let oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_017; + var$3 = var$0.$_111; + var$4 = var$0.$_29; + var$5 = var$0.$_34; + if (!scm_HashSet_contains(var$3, var$1)) { + scm_HashSet_add(var$3, var$1); + var$5.$elem5 = var$5.$elem5 + 1 | 0; + } else { + var$3 = var$2.$_errors; + var$6 = var$2.$exceptionFactory0; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(5256)), var$1), $rt_s(5255)); + var$7 = jl_AbstractStringBuilder_toString(var$7); + oncipau_Util$_$callClinit(); + var$2.$_errors = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher5Parser$AlterDatabaseOptionContext), var$5.$elem5)))); + } + return sr_BoxedUnit_UNIT; +}, +oncipvaf_Cypher5SyntaxChecker$ = $rt_classWithoutFields(), +oncipvaf_Cypher5SyntaxChecker$_MODULE$ = null, +oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS = 0, +oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS = 0, +oncipvaf_Cypher5SyntaxChecker$__clinit_ = () => { + oncipvaf_Cypher5SyntaxChecker$_MODULE$ = new oncipvaf_Cypher5SyntaxChecker$; + oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS = 2; + oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS = 1; +}, +oncie_containsAggregate$$anonfun$apply$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncie_containsAggregate$$anonfun$apply$1_applyOrElse = ($this, $x1, $default) => { + if ($x1 !== null) { + oncie_IsAggregate$_$callClinit(); + if (!s_Option_isEmpty(oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x1))) + return new oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0; + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}; +function oncie_CountStar() { + oncie_Expression.call(this); + this.$position277 = null; +} +let oncie_CountStar_position = $this => { + return $this.$position277; +}, +oncie_CountStar_asCanonicalStringVal = $this => { + return $rt_s(432); +}, +oncie_CountStar_isConstantForQuery = $this => { + return 0; +}, +oncie_CountStar_productPrefix = $this => { + return $rt_s(5257); +}, +oncie_CountStar_productArity = $this => { + return 0; +}, +oncie_CountStar_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_CountStar_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_CountStar_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_CountStar_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_CountStar_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_CountStar) ? 0 : 1; + return var$2 && $this instanceof oncie_CountStar ? 1 : 0; +}, +oncie_CountStar__init_ = ($this, $position) => { + $this.$position277 = $position; + oncie_Expression__init_($this); +}, +oncie_CountStar__init_0 = var_0 => { + let var_1 = new oncie_CountStar(); + oncie_CountStar__init_(var_1, var_0); + return var_1; +}, +oncief_AggregatingFunction = $rt_classWithoutFields(oncief_Function), +oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isPassThrough()); +}; +function oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0() { + let a = this; jl_Object.call(a); + a.$_087 = null; + a.$_132 = null; + a.$_215 = null; + a.$_38 = null; +} +let oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_087; + var$3 = var$0.$_132; + var$4 = var$0.$_215; + var$5 = var$0.$_38; + if (!scm_HashSet_contains(var$3, var$1)) { + scm_HashSet_add(var$3, var$1); + var$5.$elem5 = var$5.$elem5 + 1 | 0; + } else { + var$3 = var$2.$_errors0; + var$6 = var$2.$exceptionFactory1; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(5254)), var$1), $rt_s(5255)); + var$7 = jl_AbstractStringBuilder_toString(var$7); + oncipau_Util$_$callClinit(); + var$2.$_errors0 = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), var$5.$elem5)))); + } + return sr_BoxedUnit_UNIT; +}, +oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1 = $rt_classWithoutFields(), +oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1_apply = (var$0, var$1) => { + var$1 = var$1; + if (var$1 === null) { + s_package$_$callClinit(); + var$1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + } else + var$1 = var$1.$keySet(); + return var$1; +}; +function oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2() { + let a = this; jl_Object.call(a); + a.$_0549 = null; + a.$_1183 = null; + a.$_259 = null; + a.$_320 = null; +} +let oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_0549; + var$3 = var$0.$_1183; + var$4 = var$0.$_259; + var$5 = var$0.$_320; + if (!scm_HashSet_contains(var$3, var$1)) { + scm_HashSet_add(var$3, var$1); + var$5.$elem5 = var$5.$elem5 + 1 | 0; + } else { + var$3 = var$2.$_errors0; + var$6 = var$2.$exceptionFactory1; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(5256)), var$1), $rt_s(5255)); + var$7 = jl_AbstractStringBuilder_toString(var$7); + oncipau_Util$_$callClinit(); + var$2.$_errors0 = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$AlterDatabaseOptionContext), var$5.$elem5)))); + } + return sr_BoxedUnit_UNIT; +}, +oncipvaf_Cypher25SyntaxChecker$ = $rt_classWithoutFields(), +oncipvaf_Cypher25SyntaxChecker$_MODULE$ = null, +oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS = 0, +oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS = 0, +oncipvaf_Cypher25SyntaxChecker$__clinit_ = () => { + oncipvaf_Cypher25SyntaxChecker$_MODULE$ = new oncipvaf_Cypher25SyntaxChecker$; + oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS = 2; + oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS = 1; +}; +function oncia_Match() { + let a = this; jl_Object.call(a); + a.$optional1 = 0; + a.$matchMode1 = null; + a.$pattern7 = null; + a.$hints = null; + a.$where4 = null; + a.$position96 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier17 = null; + a.$SetExtractor$module2 = null; +} +let oncia_Match_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); +}, +oncia_Match_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Match_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_Match_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Match_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Match_foldedOver = $this => { + return $this; +}, +oncia_Match_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Match_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier17; +}, +oncia_Match_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module2 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module2 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$SetExtractor$module2 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module2; }, -oncipv_Cypher5Parser_createLookupIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateLookupIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 382, 191); +oncia_Match_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier17 = $x$1; +}, +oncia_Match_optional = $this => { + return $this.$optional1; +}, +oncia_Match_pattern = $this => { + return $this.$pattern7; +}, +oncia_Match_position = $this => { + return $this.$position96; +}, +oncia_Match_name = $this => { + return $rt_s(4392); +}, +oncia_Match_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3; + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_MODULE$; + var$2 = new oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_70_0; + var$2.$_0664 = $this; + var$3 = oncias_SemanticCheck$_fromState(var$1, var$2); + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(var$3, oncias_SemanticPatternCheck$_check1(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Match$_MODULE$, $this.$pattern7)); + var$1 = new oncia_Match$clauseSpecificSemanticCheck$lambda$_69_0; + var$1.$_0751 = $this; + return oncias_SemanticCheck_ifOkChain$(var$2, var$1); +}, +oncia_Match_getPropertyPredicates = ($this, $variable) => { + let var$2, var$3, var$4, var$5; + var$2 = $this.$where4; + var$3 = new oncia_Match$getPropertyPredicates$lambda$_81_0; + var$3.$_0392 = $this; + var$3.$_1138 = $variable; + var$2 = s_Option_getOrElse(s_Option_map(var$2, var$3), new oncia_Match$getPropertyPredicates$lambda$_81_1); + var$4 = onciu_Foldable_folder$($this.$pattern7); + s_package$_$callClinit(); + var$5 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + var$3 = new oncia_Match$$anonfun$getPropertyPredicates$3; + var$3.$$outer12 = $this; + var$3.$variable$2 = $variable; + return var$2.$concat(onciu_Foldable$Folder_treeFold(var$4, var$5, var$3)); +}, +oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap = ($this, $properties) => { + if ($properties instanceof s_Some) { + $properties = $properties.$value5; + if ($properties instanceof oncie_MapExpression) + return $properties.$items1.$map(new oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_82_0); + } + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +}, +oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates = ($this, $variable, $whereExpression) => { + let var$3, var$4; + var$3 = onciu_Foldable_folder$($whereExpression); + s_package$_$callClinit(); + var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + $whereExpression = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1; + $whereExpression.$$outer17 = $this; + $whereExpression.$variable$3 = $variable; + return onciu_Foldable$Folder_treeFold(var$3, var$4, $whereExpression); +}, +oncia_Match_org$neo4j$cypher$internal$ast$Match$$applicable = ($this, $other) => { + let var$2, var$3, var$4; + if (!($other instanceof oncie_FunctionInvocation)) + return 1; a: { b: { c: { d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2562); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 293, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2561); - oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); - } - oavr_Recognizer_setState($this, 2567); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2564); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2565); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2566); - oavr_Parser_match($this, 105); - } - f: { - oavr_Recognizer_setState($this, 2569); - oavr_Parser_match($this, 112); - oavr_Recognizer_setState($this, 2572); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 295, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2571); - oncipv_Cypher5Parser_lookupIndexRelPattern($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 2570); - oncipv_Cypher5Parser_lookupIndexNodePattern($this); - } - oavr_Recognizer_setState($this, 2574); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 2575); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2576); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2577); - oavr_Parser_match($this, 239); - oavr_Recognizer_setState($this, 2579); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { - oavr_Recognizer_setState($this, 2578); - oncipv_Cypher5Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + $other = $other; + oncief_Function$_$callClinit(); + var$2 = $other.$function1; + oncief_Id$_$callClinit(); + var$3 = oncief_Id$_MODULE$; + if (var$2 !== null) { + if (jl_Object_equals(var$2, var$3)) break c; - } + else + break d; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 === null) + break c; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$3 = $other.$function1; + oncief_ElementId$_$callClinit(); + $other = oncief_ElementId$_MODULE$; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $other)) + break b; + else + break c; } + if ($other !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4 ? 0 : 1; }, -oncipv_Cypher5Parser_lookupIndexNodePattern = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LookupIndexNodePatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 384, 192); +oncia_Match_containsLabelOrRelTypePredicate = ($this, $variable, $labelOrRelType) => { + return (oncia_Match_getLabelAndRelTypePredicates($this, $variable)).$contains($labelOrRelType); +}, +oncia_Match_org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression = ($this, $labelExpression) => { + return ($labelExpression.$flatten0()).$map(new oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_86_0); +}, +oncia_Match_getLabelAndRelTypePredicates = ($this, $variable) => { + let $predicateLabels, $labelExpressionLabels, $inlinedRelTypes, $predicateRelTypes, $allLabels; + $predicateLabels = onciu_Foldable_folder$($this.$pattern7); + s_package$_$callClinit(); + $labelExpressionLabels = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + $inlinedRelTypes = new oncia_Match$$anonfun$9; + $inlinedRelTypes.$$outer48 = $this; + $inlinedRelTypes.$variable$41 = $variable; + $inlinedRelTypes = onciu_Foldable$Folder_fold($predicateLabels, $labelExpressionLabels, $inlinedRelTypes); + $predicateRelTypes = onciu_Foldable_folder$($this.$pattern7); + $labelExpressionLabels = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + $predicateLabels = new oncia_Match$$anonfun$10; + $predicateLabels.$$outer35 = $this; + $predicateLabels.$variable$40 = $variable; + $labelExpressionLabels = onciu_Foldable$Folder_fold($predicateRelTypes, $labelExpressionLabels, $predicateLabels); + $predicateLabels = $this.$where4; + if (!($predicateLabels instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, $predicateLabels)) + $rt_throw(s_MatchError__init_($predicateLabels)); + $predicateRelTypes = s_Tuple2__init_(sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + } else { + $predicateRelTypes = onciu_Foldable_folder$($predicateLabels.$value5); + $allLabels = s_Tuple2__init_(sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + $predicateLabels = new oncia_Match$$anonfun$11; + $predicateLabels.$$outer50 = $this; + $predicateLabels.$variable$4 = $variable; + $predicateRelTypes = onciu_Foldable$Folder_treeFold($predicateRelTypes, $allLabels, $predicateLabels); + } + if ($predicateRelTypes === null) + $rt_throw(s_MatchError__init_($predicateRelTypes)); + $predicateLabels = $predicateRelTypes.$_1(); + $predicateRelTypes = $predicateRelTypes.$_2(); + $variable = s_Tuple2__init_($predicateLabels, $predicateRelTypes); + $predicateLabels = $variable.$_10; + $predicateRelTypes = $variable.$_20; + return ($labelExpressionLabels.$concat($predicateLabels)).$concat($inlinedRelTypes.$concat($predicateRelTypes)); +}, +oncia_Match_productPrefix = $this => { + return $rt_s(5258); +}, +oncia_Match_productArity = $this => { + return 5; +}, +oncia_Match_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$optional1); + case 1: + return $this.$matchMode1; + case 2: + return $this.$pattern7; + case 3: + return $this.$hints; + case 4: + return $this.$where4; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Match_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Match_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5258))), !$this.$optional1 ? 1237 : 1231), sr_Statics_anyHash($this.$matchMode1)), sr_Statics_anyHash($this.$pattern7)), sr_Statics_anyHash($this.$hints)), sr_Statics_anyHash($this.$where4)), 5); +}, +oncia_Match_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Match_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Match) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$optional1 != $x$1.$optional1) + break b; + c: { + var$2 = $this.$matchMode1; + var$3 = $x$1.$matchMode1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2581); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2582); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2583); - oavr_Parser_match($this, 239); - oavr_Recognizer_setState($this, 2584); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 2585); - oavr_Parser_match($this, 91); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$pattern7; + var$3 = $x$1.$pattern7; + if (var$2 !== null) { + if (!oncie_Pattern$ForMatch_equals(var$2, var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$2 = $this.$hints; + var$3 = $x$1.$hints; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; } + f: { + var$3 = $this.$where4; + $x$1 = $x$1.$where4; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break f; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_Match)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_lookupIndexRelPattern = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LookupIndexRelPatternContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 386, 193); +oncia_Match_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Match_liftedTree1$1 = ($this, $patternStringifier$1) => { + let $$je; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2587); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2588); - oavr_Parser_match($this, 239); - oavr_Recognizer_setState($this, 2590); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 156 && $_la != 311)) { - oavr_Recognizer_setState($this, 2589); - oncipv_Cypher5Parser_leftArrow($this); - } - oavr_Recognizer_setState($this, 2592); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2593); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 2594); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2595); - oavr_Parser_match($this, 216); - oavr_Recognizer_setState($this, 2596); - oncipv_Cypher5Parser_arrowLine($this); - oavr_Recognizer_setState($this, 2598); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 124 && $_la != 312)) { - oavr_Recognizer_setState($this, 2597); - oncipv_Cypher5Parser_rightArrow($this); - } - e: { - oavr_Recognizer_setState($this, 2600); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2601); - oavr_Parser_match($this, 239); - oavr_Recognizer_setState($this, 2602); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 2604); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 299, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2603); - oavr_Parser_match($this, 91); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + try { + $patternStringifier$1 = onciap_DefaultPatternStringifier_apply1($patternStringifier$1, oncia_Match_pattern($this)); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_StackOverflowError) { + } else { + throw $$e; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $patternStringifier$1 = $rt_s(5259); } - return $_localctx; + return $patternStringifier$1; }, -oncipv_Cypher5Parser_dropIndex = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropIndexContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 388, 194); +oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingEntityKindError$1 = ($this, $variable, $labelOrRelTypeName, $hint, $semanticState$1, $context$1) => { + let $isNode, $typeName, $functionName, $operatorDescription, $typePredicates, var$11, $foundTypePredicatesDescription, $typePredicate, var$14; + $isNode = oncias_SemanticState_isNode($semanticState$1, $variable); + $typeName = !$isNode ? $rt_s(5260) : $rt_s(1188); + $functionName = !$isNode ? $rt_s(4729) : $rt_s(5261); + if ($hint instanceof oncia_UsingIndexHint) + $operatorDescription = $rt_s(915); + else if (!($hint instanceof oncia_UsingScanHint)) { + if (!($hint instanceof oncia_UsingJoinHint)) + $rt_throw(s_MatchError__init_($hint)); + $operatorDescription = $rt_s(5262); + } else { + $typePredicates = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($typePredicates); + jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $typeName), $rt_s(5263)); + $operatorDescription = jl_AbstractStringBuilder_toString($typePredicates); + } a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2606); - oavr_Parser_match($this, 132); - oavr_Recognizer_setState($this, 2618); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 301, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2613); - oncipv_Cypher5Parser_symbolicNameOrStringParameter($this); - oavr_Recognizer_setState($this, 2616); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 128) - break e; - oavr_Recognizer_setState($this, 2614); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2615); - oavr_Parser_match($this, 105); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2607); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 2608); - oncipv_Cypher5Parser_labelType($this); - oavr_Recognizer_setState($this, 2609); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2610); - oncipv_Cypher5Parser_nonEmptyNameList($this); - oavr_Recognizer_setState($this, 2611); - oavr_Parser_match($this, 239); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + $typePredicates = sc_SeqOps_distinct$(oncia_Match_getLabelAndRelTypePredicates($this, $variable)); + if ($typePredicates !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $typePredicates); + if (!$typePredicates.$lengthCompare(0)) { + var$11 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$11); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$11, $rt_s(5264)), $typeName), $rt_s(5265)); + $foundTypePredicatesDescription = jl_AbstractStringBuilder_toString(var$11); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if ($typePredicates !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $typePredicates); + if (!$typePredicates.$lengthCompare(1)) { + $typePredicate = $typePredicates.$apply1(0); + $typePredicates = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($typePredicates); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $rt_s(5266)), $typeName), $rt_s(5267)), $typePredicate), $rt_s(5268)); + $foundTypePredicatesDescription = jl_AbstractStringBuilder_toString($typePredicates); + break a; + } + } + $foundTypePredicatesDescription = sc_AbstractIterable_mkString($typePredicates, $rt_s(5269)); + $typePredicates = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($typePredicates); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $rt_s(5266)), $typeName), $rt_s(5270)), $foundTypePredicatesDescription), $rt_s(5271)); + $foundTypePredicatesDescription = jl_AbstractStringBuilder_toString($typePredicates); } - return $_localctx; + $typePredicates = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($typePredicates); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $typeName), $rt_s(5267)), $labelOrRelTypeName), 96); + $typePredicate = jl_AbstractStringBuilder_toString($typePredicates); + var$14 = onciuh_StringHelper$RichString$_MODULE$; + onciuh_StringHelper$_$callClinit(); + $typePredicates = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($typePredicates); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($typePredicates, $rt_s(5272)), $typeName), $rt_s(5273)), $labelOrRelTypeName), $rt_s(5274)), $functionName), $rt_s(5275)); + return oncia_Match_getHintErrorForVariable$1($operatorDescription, $hint, $typePredicate, $foundTypePredicatesDescription, $variable, onciuh_StringHelper$RichString$_stripLinesAndMargins$extension(var$14, jl_AbstractStringBuilder_toString($typePredicates)), $semanticState$1, $context$1); }, -oncipv_Cypher5Parser_propertyList = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PropertyListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 390, 195); +oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1 = ($this, $hint, $semanticState$1, $context$1) => { + let $variable, $propertiesInHint, $plural, $property, $foundPropertiesDescription, $missingPropertiesNames, var$10; + $variable = $hint.$variable13.$name4; + $propertiesInHint = $hint.$properties7; + $plural = $propertiesInHint.$length() <= 1 ? 0 : 1; a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2627); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2620); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2621); - oncipv_Cypher5Parser_property($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - case 155: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2623); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 2624); - oncipv_Cypher5Parser_enclosedPropertyList($this); - oavr_Recognizer_setState($this, 2625); - oavr_Parser_match($this, 239); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + $property = oncia_Match_getPropertyPredicates($this, $variable); + if ($property !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $property); + if (!$property.$lengthCompare(0)) { + $foundPropertiesDescription = $rt_s(5276); + break a; + } + } + if ($property !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $property); + if (!$property.$lengthCompare(1)) { + $property = $property.$apply1(0); + $missingPropertiesNames = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($missingPropertiesNames); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($missingPropertiesNames, $rt_s(5277)), $property), $rt_s(5268)); + $foundPropertiesDescription = jl_AbstractStringBuilder_toString($missingPropertiesNames); + break a; + } + } + $property = sc_AbstractIterable_mkString($property, $rt_s(5269)); + $missingPropertiesNames = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($missingPropertiesNames); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($missingPropertiesNames, $rt_s(5277)), $property), $rt_s(5271)); + $foundPropertiesDescription = jl_AbstractStringBuilder_toString($missingPropertiesNames); + } + $missingPropertiesNames = sc_AbstractIterable_mkString($propertiesInHint.$map(new oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_138_0), $rt_s(45)); + $property = !$plural ? $rt_s(4693) : $rt_s(4662); + $propertiesInHint = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($propertiesInHint); + $property = jl_StringBuilder_append(jl_StringBuilder_append($propertiesInHint, $rt_s(5278)), $property); + jl_AbstractStringBuilder_append0($property, 32); + jl_StringBuilder_append($property, $missingPropertiesNames); + var$10 = jl_AbstractStringBuilder_toString($propertiesInHint); + $property = onciuh_StringHelper$RichString$_MODULE$; + onciuh_StringHelper$_$callClinit(); + return oncia_Match_getHintErrorForVariable$1($rt_s(915), $hint, var$10, $foundPropertiesDescription, $variable, onciuh_StringHelper$RichString$_stripLinesAndMargins$extension($property, $rt_s(5279)), $semanticState$1, $context$1); +}, +oncia_Match_getHintErrorForVariable$1 = ($operatorDescription, $hint, $missingThingDescription, $foundThingsDescription, $variable, $additionalInfo, $semanticState$1, $context$1) => { + let $entityName, var$10; + $entityName = !oncias_SemanticState_isNode($semanticState$1, $variable) ? $rt_s(5280) : $rt_s(5281); + $semanticState$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($semanticState$1); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($semanticState$1, $rt_s(5278)), $entityName), $rt_s(5267)), $variable), 96); + var$10 = jl_AbstractStringBuilder_toString($semanticState$1); + $semanticState$1 = $context$1.$errorMessageProvider(); + oncia_Match$_$callClinit(); + return $semanticState$1.$createMissingPropertyLabelHintError($operatorDescription, onciap_Prettifier_asString0(oncia_Match$_hintPrettifier(oncia_Match$_MODULE$), $hint), $missingThingDescription, $foundThingsDescription, var$10, $entityName, $additionalInfo); +}, +oncia_Match__init_ = ($this, $optional, $matchMode, $pattern, $hints, $where, $position) => { + $this.$optional1 = $optional; + $this.$matchMode1 = $matchMode; + $this.$pattern7 = $pattern; + $this.$hints = $hints; + $this.$where4 = $where; + $this.$position96 = $position; + oncia_Clause_$init$($this); +}, +oncia_Match__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_Match(); + oncia_Match__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}; +function oavrm_FlexibleHashMap() { + let a = this; jl_Object.call(a); + a.$comparator = null; + a.$buckets = null; + a.$n0 = 0; + a.$currentPrime = 0; + a.$threshold1 = 0; + a.$initialCapacity0 = 0; + a.$initialBucketCapacity0 = 0; +} +let oavrm_FlexibleHashMap_getBucket = ($this, $key) => { + return $this.$comparator.$hashCode2($key) & ($this.$buckets.data.length - 1 | 0); +}, +oavrm_FlexibleHashMap_put = ($this, $key, $value) => { + let var$3, var$4, $b, var$6, $bucket, $prev, $e; + if ($key === null) + return null; + var$3 = $this.$n0; + if (var$3 > $this.$threshold1) { + var$4 = $this.$buckets.data; + $this.$currentPrime = $this.$currentPrime + 4 | 0; + $b = var$4.length; + var$6 = $b * 2 | 0; + $this.$buckets = $rt_createArray(ju_LinkedList, var$6); + $this.$threshold1 = var$6 * 0.75 | 0; + var$6 = 0; + while (var$6 < $b) { + a: { + $bucket = var$4[var$6]; + if ($bucket !== null) { + $bucket = ju_AbstractSequentialList_iterator($bucket); + while (true) { + if (!ju_LinkedList$SequentialListIterator_hasNext($bucket)) + break a; + $prev = ju_LinkedList$SequentialListIterator_next($bucket); + if ($prev === null) + break; + oavrm_FlexibleHashMap_put($this, $prev.$key6, $prev.$value19); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + } + } + var$6 = var$6 + 1 | 0; + } + $this.$n0 = var$3; + } + $b = oavrm_FlexibleHashMap_getBucket($this, $key); + var$4 = $this.$buckets.data; + $bucket = var$4[$b]; + if ($bucket === null) { + $bucket = new ju_LinkedList; + var$4[$b] = $bucket; + } + $prev = ju_AbstractSequentialList_iterator($bucket); + while (true) { + if (!ju_LinkedList$SequentialListIterator_hasNext($prev)) { + $prev = new oavrm_FlexibleHashMap$Entry; + $prev.$key6 = $key; + $prev.$value19 = $value; + ju_AbstractList_add($bucket, $prev); + $this.$n0 = $this.$n0 + 1 | 0; + return null; + } + $e = ju_LinkedList$SequentialListIterator_next($prev); + if ($this.$comparator.$equals0($e.$key6, $key)) + break; + } + $prev = $e.$value19; + $e.$value19 = $value; + $this.$n0 = $this.$n0 + 1 | 0; + return $prev; +}, +oavra_PredictionMode$AltAndContextMap = $rt_classWithoutFields(oavrm_FlexibleHashMap); +function oavra_ArrayPredictionContext() { + let a = this; oavra_PredictionContext.call(a); + a.$parents = null; + a.$returnStates = null; +} +let oavra_ArrayPredictionContext_$assertionsDisabled = 0, +oavra_ArrayPredictionContext__init_2 = ($this, $a) => { + let var$2, var$3; + var$2 = $rt_createArray(oavra_PredictionContext, 1); + var$2.data[0] = $a.$parent1; + var$3 = $rt_createIntArray(1); + var$3.data[0] = $a.$returnState; + oavra_ArrayPredictionContext__init_1($this, var$2, var$3); +}, +oavra_ArrayPredictionContext__init_0 = var_0 => { + let var_1 = new oavra_ArrayPredictionContext(); + oavra_ArrayPredictionContext__init_2(var_1, var_0); + return var_1; +}, +oavra_ArrayPredictionContext__init_1 = ($this, $parents, $returnStates) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$3 = $parents.data; + oavra_PredictionContext_$callClinit(); + var$4 = 1; + var$5 = var$3.length; + var$6 = 0; + while (var$6 < var$5) { + var$4 = oavrm_MurmurHash_update0(var$4, var$3[var$6]); + var$6 = var$6 + 1 | 0; + } + var$3 = $returnStates.data; + var$6 = var$3.length; + var$7 = 0; + while (var$7 < var$6) { + var$4 = oavrm_MurmurHash_update(var$4, var$3[var$7]); + var$7 = var$7 + 1 | 0; + } + oavra_PredictionContext__init_($this, oavrm_MurmurHash_finish(var$4, 2 * var$5 | 0)); + var$8 = oavra_ArrayPredictionContext_$assertionsDisabled; + if (!var$8 && var$5 <= 0) { + var$9 = new jl_AssertionError; + jl_Throwable__init_0(var$9); + $rt_throw(var$9); + } + if (!var$8 && var$6 <= 0) { + var$9 = new jl_AssertionError; + jl_Throwable__init_0(var$9); + $rt_throw(var$9); + } + $this.$parents = $parents; + $this.$returnStates = $returnStates; +}, +oavra_ArrayPredictionContext__init_ = (var_0, var_1) => { + let var_2 = new oavra_ArrayPredictionContext(); + oavra_ArrayPredictionContext__init_1(var_2, var_0, var_1); + return var_2; +}, +oavra_ArrayPredictionContext_isEmpty = $this => { + return $this.$returnStates.data[0] != 2147483647 ? 0 : 1; +}, +oavra_ArrayPredictionContext_size = $this => { + return $this.$returnStates.data.length; +}, +oavra_ArrayPredictionContext_getParent = ($this, $index) => { + return $this.$parents.data[$index]; +}, +oavra_ArrayPredictionContext_getReturnState = ($this, $index) => { + return $this.$returnStates.data[$index]; +}, +oavra_ArrayPredictionContext_equals = ($this, $o) => { + let $a; + if ($this === $o) + return 1; + if (!($o instanceof oavra_ArrayPredictionContext)) + return 0; + if ($this.$cachedHashCode0 != $o.$hashCode()) + return 0; + $a = $o; + return ju_Arrays_equals($this.$returnStates, $a.$returnStates) && ju_Arrays_equals0($this.$parents, $a.$parents) ? 1 : 0; +}, +oavra_ArrayPredictionContext_toString = $this => { + let $buf, $i, var$3; + if (oavra_ArrayPredictionContext_isEmpty($this)) + return $rt_s(5); + $buf = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($buf); + jl_AbstractStringBuilder_append($buf, $rt_s(424)); + $i = 0; + while ($i < $this.$returnStates.data.length) { + if ($i > 0) + jl_AbstractStringBuilder_append($buf, $rt_s(45)); + var$3 = $this.$returnStates.data; + if (var$3[$i] == 2147483647) + jl_AbstractStringBuilder_append($buf, $rt_s(5213)); + else { + jl_StringBuilder_append0($buf, var$3[$i]); + if ($this.$parents.data[$i] === null) + jl_AbstractStringBuilder_append($buf, $rt_s(10)); + else { + jl_AbstractStringBuilder_append0($buf, 32); + jl_AbstractStringBuilder_append($buf, $this.$parents.data[$i].$toString()); + } + } + $i = $i + 1 | 0; + } + jl_AbstractStringBuilder_append($buf, $rt_s(425)); + return jl_AbstractStringBuilder_toString($buf); +}, +oavra_ArrayPredictionContext__clinit_ = () => { + oavra_ArrayPredictionContext_$assertionsDisabled = 0; +}; +function ju_TemplateCollections$TwoElementsSet() { + let a = this; ju_TemplateCollections$AbstractImmutableSet.call(a); + a.$first7 = null; + a.$second1 = null; +} +let ju_TemplateCollections$TwoElementsSet_contains = ($this, $o) => { + return !ju_Objects_equals($o, $this.$first7) && !ju_Objects_equals($o, $this.$second1) ? 0 : 1; +}; +function onciafnc_CodeCompletionCore$FollowSetsHolder() { + let a = this; jl_Object.call(a); + a.$sets = null; + a.$combined = null; +} +let onciafnc_CodeCompletionCore$FollowSetsHolder__init_0 = $this => { + return; +}, +onciafnc_CodeCompletionCore$FollowSetsHolder__init_ = () => { + let var_0 = new onciafnc_CodeCompletionCore$FollowSetsHolder(); + onciafnc_CodeCompletionCore$FollowSetsHolder__init_0(var_0); + return var_0; +}; +function onciafnc_CodeCompletionCore$RuleWithStartToken() { + let a = this; jl_Record.call(a); + a.$startTokenIndex = 0; + a.$ruleIndex0 = 0; +} +let onciafnc_CodeCompletionCore$RuleWithStartToken__init_0 = ($this, $startTokenIndex, $ruleIndex) => { + $this.$startTokenIndex = $startTokenIndex; + $this.$ruleIndex0 = $ruleIndex; +}, +onciafnc_CodeCompletionCore$RuleWithStartToken__init_ = (var_0, var_1) => { + let var_2 = new onciafnc_CodeCompletionCore$RuleWithStartToken(); + onciafnc_CodeCompletionCore$RuleWithStartToken__init_0(var_2, var_0, var_1); + return var_2; +}, +onciafnc_CodeCompletionCore$RuleWithStartToken_toString = $this => { + let var$1, var$2; + var$1 = jl_StringBuilder__init_0($rt_s(5282)); + jl_AbstractStringBuilder_append(var$1, $rt_s(5283)); + var$2 = jl_StringBuilder_append0(var$1, $this.$startTokenIndex); + jl_AbstractStringBuilder_append(var$2, $rt_s(5284)); + var$2 = jl_StringBuilder_append0(var$2, $this.$ruleIndex0); + jl_AbstractStringBuilder_append(var$2, $rt_s(425)); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciafnc_CodeCompletionCore$RuleWithStartToken_hashCode = $this => { + return ((31 + $this.$startTokenIndex | 0) * 31 | 0) + $this.$ruleIndex0 | 0; +}, +onciafnc_CodeCompletionCore$RuleWithStartToken_equals = ($this, $o) => { + let var$2; + if ($this === $o) + var$2 = 1; + else if ($o !== null && jl_Object_getClass($o) === $rt_cls(onciafnc_CodeCompletionCore$RuleWithStartToken)) { + $o = $o; + var$2 = $this.$startTokenIndex != $o.$startTokenIndex ? 0 : $this.$ruleIndex0 == $o.$ruleIndex0 ? 1 : 0; + } else + var$2 = 0; + return var$2; +}; +function onciafnc_CodeCompletionCore$FollowSetWithPath() { + let a = this; jl_Object.call(a); + a.$intervals0 = null; + a.$path = null; + a.$following = null; +} +function onciafnc_CodeCompletionCore$processRule$lambda$_9_0() { + jl_Object.call(this); + this.$_0124 = 0; +} +let onciafnc_CodeCompletionCore$processRule$lambda$_9_0__init_0 = (var$0, var$1) => { + var$0.$_0124 = var$1; +}, +onciafnc_CodeCompletionCore$processRule$lambda$_9_0__init_ = var_0 => { + let var_1 = new onciafnc_CodeCompletionCore$processRule$lambda$_9_0(); + onciafnc_CodeCompletionCore$processRule$lambda$_9_0__init_0(var_1, var_0); + return var_1; +}, +onciafnc_CodeCompletionCore$processRule$lambda$_9_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciafnc_CodeCompletionCore$RuleWithStartToken__init_(var$0.$_0124, var$1.$value4); +}; +function onciafnc_CodeCompletionCore$PipelineEntry() { + let a = this; jl_Object.call(a); + a.$state4 = null; + a.$tokenIndex = null; +} +let onciafnc_CodeCompletionCore$PipelineEntry__init_0 = ($this, $state, $tokenIndex) => { + $this.$state4 = $state; + $this.$tokenIndex = $tokenIndex; +}, +onciafnc_CodeCompletionCore$PipelineEntry__init_ = (var_0, var_1) => { + let var_2 = new onciafnc_CodeCompletionCore$PipelineEntry(); + onciafnc_CodeCompletionCore$PipelineEntry__init_0(var_2, var_0, var_1); + return var_2; +}, +oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_9_0 = $rt_classWithoutFields(), +oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_9_1 = $rt_classWithoutFields(), +oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_9_1_apply = (var$0, var$1) => { + return var$1.$name7; +}; +function ju_TemplateCollections$TwoElementsList() { + let a = this; ju_TemplateCollections$AbstractImmutableList.call(a); + a.$first6 = null; + a.$second3 = null; +} +let ju_TemplateCollections$TwoElementsList_size = $this => { + return 2; +}, +ju_TemplateCollections$TwoElementsList_get = ($this, $index) => { + let var$2; + if (!$index) + return $this.$first6; + if ($index == 1) + return $this.$second3; + var$2 = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); +}, +oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0 = $rt_classWithoutFields(), +oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1) === null ? 0 : 1); +}; +function oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1() { + let a = this; jl_Object.call(a); + a.$_0720 = null; + a.$_1243 = 0; + a.$_280 = null; +} +let oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = var$1; + var$2 = var$0.$_0720; + var$3 = var$0.$_1243; + var$4 = var$0.$_280; + if (sr_BoxesRunTime_unboxToInt(sc_IterableOnceOps_foldLeft$(sc_AbstractIterable_sliding0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1))))), 2, 1), jl_Integer_valueOf(1), new oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0)) + > var$3) { + var$5 = ((oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1))).$get0(0)).$start1; + var$6 = var$2.$_errors; + var$7 = var$2.$exceptionFactory0; + var$8 = $rt_createArray(jl_Object, 1); + var$8.data[0] = sc_AbstractIterable_mkString(sc_StrictOptimizedIterableOps_map$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1)))), new oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1), $rt_s(389)); + var$2.$_errors = var$6.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$7, jl_String_format(var$4, var$8), oncipvaf_Cypher5SyntaxChecker_inputPosition(var$2, var$5))); + } + return sr_BoxedUnit_UNIT; +}; +function sc_Iterator$$anon$6() { + let a = this; sc_AbstractIterator.call(a); + a.$hd = null; + a.$hdDefined = 0; + a.$$outer8 = null; + a.$p$1 = null; + a.$isFlipped$1 = 0; +} +let sc_Iterator$$anon$6_hasNext = $this => { + a: { + if (!$this.$hdDefined) { + if (!$this.$$outer8.$hasNext()) + return 0; + $this.$hd = $this.$$outer8.$next(); + while (true) { + if (sr_BoxesRunTime_unboxToBoolean($this.$p$1.$apply2($this.$hd)) != $this.$isFlipped$1) { + $this.$hdDefined = 1; break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!$this.$$outer8.$hasNext()) + break; + $this.$hd = $this.$$outer8.$next(); + } + return 0; + } + } + return 1; +}, +sc_Iterator$$anon$6_next = $this => { + if (!sc_Iterator$$anon$6_hasNext($this)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + $this.$hdDefined = 0; + return $this.$hd; +}, +oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0 = $rt_classWithoutFields(), +oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1) === null ? 0 : 1); +}; +function oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1() { + let a = this; jl_Object.call(a); + a.$_0830 = null; + a.$_1279 = 0; + a.$_289 = null; +} +let oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = var$1; + var$2 = var$0.$_0830; + var$3 = var$0.$_1279; + var$4 = var$0.$_289; + if (sr_BoxesRunTime_unboxToInt(sc_IterableOnceOps_foldLeft$(sc_AbstractIterable_sliding0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1))))), 2, 1), jl_Integer_valueOf(1), new oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0)) + > var$3) { + var$5 = ((oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1))).$get0(0)).$start1; + var$6 = var$2.$_errors0; + var$7 = var$2.$exceptionFactory1; + var$8 = $rt_createArray(jl_Object, 1); + var$8.data[0] = sc_AbstractIterable_mkString(sc_StrictOptimizedIterableOps_map$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1)))), new oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1), $rt_s(389)); + var$2.$_errors0 = var$6.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$7, jl_String_format(var$4, var$8), oncipvaf_Cypher25SyntaxChecker_inputPosition(var$2, var$5))); + } + return sr_BoxedUnit_UNIT; +}; +function scm_Builder$$anon$1() { + let a = this; jl_Object.call(a); + a.$$outer13 = null; + a.$f$12 = null; +} +let scm_Builder$$anon$1_sizeHint0 = ($this, $coll, $delta) => { + scm_Builder_sizeHint$($this, $coll, $delta); +}, +scm_Builder$$anon$1_sizeHint = ($this, $size) => { + $this.$$outer13.$sizeHint($size); +}, +scm_Builder$$anon$1_result = $this => { + return $this.$f$12.$apply2($this.$$outer13.$result()); +}, +scm_Builder$$anon$1_addAll = ($this, $xs) => { + let var$2; + var$2 = $this.$$outer13; + if (var$2 !== null) { + var$2.$addAll0($xs); + return $this; + } + $rt_throw(null); +}, +scm_Builder$$anon$1_addOne = ($this, $elem) => { + let var$2; + var$2 = $this.$$outer13; + if (var$2 !== null) { + var$2.$addOne($elem); + return $this; + } + $rt_throw(null); +}, +scm_Builder$$anon$1__init_0 = ($this, $$outer, $f$1) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer13 = $$outer; + $this.$f$12 = $f$1; +}, +scm_Builder$$anon$1__init_ = (var_0, var_1) => { + let var_2 = new scm_Builder$$anon$1(); + scm_Builder$$anon$1__init_0(var_2, var_0, var_1); + return var_2; +}; +function sm_Ordering$IterableOrdering() { + jl_Object.call(this); + this.$ord0 = null; +} +let sm_Ordering$IterableOrdering_on = ($this, $f) => { + return sm_Ordering_on$($this, $f); +}, +sm_Ordering$IterableOrdering_compare = ($this, $x, $y) => { + let var$3; + $x = $x; + $y = $y; + $x = $x.$iterator0(); + $y = $y.$iterator0(); + a: { + b: { + while (true) { + if (!$x.$hasNext()) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + if (!$y.$hasNext()) + break b; + var$3 = sm_Ordering$String$_compare($this.$ord0, $x.$next(), $y.$next()); + if (!var$3) + continue; + else + break; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = jl_Boolean_compare($x.$hasNext(), $y.$hasNext()); } - return $_localctx; + return var$3; +}; +function scc_JavaCollectionWrappers$IterableWrapper() { + ju_AbstractCollection.call(this); + this.$underlying37 = null; +} +let scc_JavaCollectionWrappers$IterableWrapper_size = $this => { + return scc_JavaCollectionWrappers$IterableWrapperTrait_size$($this); }, -oncipv_Cypher5Parser_enclosedPropertyList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$EnclosedPropertyListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 392, 196); +scc_JavaCollectionWrappers$IterableWrapper_underlying = $this => { + return $this.$underlying37; +}, +scc_JavaCollectionWrappers$IterableWrapper_iterator = $this => { + return scc_JavaCollectionWrappers$IterableWrapperTrait_iterator$($this); +}; +function scc_JavaCollectionWrappers$JIterableWrapper() { + sc_AbstractIterable.call(this); + this.$underlying35 = null; +} +let scc_JavaCollectionWrappers$JIterableWrapper_iterator = $this => { + return scc_AsScalaExtensions$IteratorHasAsScala_asScala(scc_AsScalaExtensions$IteratorHasAsScala__init_(sj_CollectionConverters$_MODULE$, $this.$underlying35.$iterator())); +}, +scc_JavaCollectionWrappers$JIterableWrapper_iterableFactory = $this => { + return scm_ArrayBuffer$_MODULE$; +}, +scc_JavaCollectionWrappers$MutableBufferWrapper = $rt_classWithoutFields(ju_AbstractList); +function oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0() { + jl_Object.call(this); + this.$_0880 = null; +} +let oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0880; + oncifp_ResolvedCall$_$callClinit(); + return oncie_ImplicitProcedureArgument__init_(var$2.$name9, var$2.$typ, var$1); +}; +function oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1() { + let a = this; jl_Object.call(a); + a.$_0375 = null; + a.$_1133 = null; +} +let oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0375; + var$2 = var$0.$_1133; + oncifp_ResolvedCall$_$callClinit(); + var$3 = new oncie_ExplicitParameter; + var$4 = var$1.$name9; + var$5 = var$1.$typ; + oncie_ExplicitParameter$_$callClinit(); + oncie_ExplicitParameter__init_(var$3, var$4, var$5, oncie_ExplicitParameter$_apply$default$3(oncie_ExplicitParameter$_MODULE$), var$2); + return var$3; +}; +function oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0() { + jl_Object.call(this); + this.$_0371 = null; +} +let oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2629); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2630); - oncipv_Cypher5Parser_property($this); - oavr_Recognizer_setState($this, 2637); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 2631); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 2632); - oncipv_Cypher5Parser_variable($this); - oavr_Recognizer_setState($this, 2633); - oncipv_Cypher5Parser_property($this); - oavr_Recognizer_setState($this, 2639); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$1 = var$1; + var$2 = var$0.$_0371; + var$3 = var$1.$typ; + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + if (var$3 !== null) { + if (!var$3.$equals(var$4)) + break b; + else + break c; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (var$4 !== null) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncie_CoerceTo__init_(var$2, var$1.$typ); } - return $_localctx; + return var$2; +}; +function oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1() { + jl_Object.call(this); + this.$_0990 = null; +} +let oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1_apply = var$0 => { + return var$0.$_0990; }, -oncipv_Cypher5Parser_alterCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 394, 197); +oavra_PredictionMode$AltAndContextConfigEqualityComparator = $rt_classWithoutFields(oavrm_AbstractEqualityComparator), +oavra_PredictionMode$AltAndContextConfigEqualityComparator_INSTANCE = null, +oavra_PredictionMode$AltAndContextConfigEqualityComparator_equals = ($this, var$1, var$2) => { + return var$1 === var$2 ? 1 : var$1 !== null && var$2 !== null ? (var$1.$state0.$stateNumber == var$2.$state0.$stateNumber && var$1.$context.$equals(var$2.$context) ? 1 : 0) : 0; +}, +oavra_PredictionMode$AltAndContextConfigEqualityComparator_hashCode = ($this, var$1) => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(7, var$1.$state0.$stateNumber), var$1.$context), 2); +}, +oavra_PredictionMode$AltAndContextConfigEqualityComparator__clinit_ = () => { + oavra_PredictionMode$AltAndContextConfigEqualityComparator_INSTANCE = new oavra_PredictionMode$AltAndContextConfigEqualityComparator; +}; +function sc_Iterator$$anon$15() { + let a = this; sc_AbstractIterator.call(a); + a.$thatIterator = null; + a.$$outer10 = null; + a.$thisElem$1 = null; + a.$thatElem$1 = null; +} +let sc_Iterator$$anon$15_knownSize = $this => { + let $thisSize, $thatSize; + $thisSize = $this.$$outer10.$knownSize(); + $thatSize = sc_ArrayOps$ArrayIterator_knownSize($this.$thatIterator); + if ($thisSize >= 0 && $thatSize >= 0) + return jl_Math_max($thisSize, $thatSize); + return (-1); +}, +sc_Iterator$$anon$15_hasNext = $this => { + if (!$this.$$outer10.$hasNext() && !sc_ArrayOps$ArrayIterator_hasNext($this.$thatIterator)) + return 0; + return 1; +}, +sc_Iterator$$anon$15_next = $this => { + let var$1, var$2, var$3; + var$1 = $this.$$outer10.$hasNext(); + var$2 = sc_ArrayOps$ArrayIterator_hasNext($this.$thatIterator); + if (!var$1 && !var$2) { + var$3 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$3); + $rt_throw(var$3); + } + return s_Tuple2__init_(!var$1 ? $this.$thisElem$1 : $this.$$outer10.$next(), !var$2 ? $this.$thatElem$1 : $this.$thatIterator.$next()); +}; +function sc_Iterator$SliceIterator() { + let a = this; sc_AbstractIterator.call(a); + a.$underlying8 = null; + a.$scala$collection$Iterator$SliceIterator$$remaining = 0; + a.$dropping = 0; +} +let sc_Iterator$SliceIterator_skip = $this => { + while ($this.$dropping > 0) { + if (!$this.$underlying8.$hasNext()) { + $this.$dropping = 0; + continue; + } + $this.$underlying8.$next(); + $this.$dropping = $this.$dropping - 1 | 0; + } +}, +sc_Iterator$SliceIterator_knownSize = $this => { + let $size, $dropSize; + $size = $this.$underlying8.$knownSize(); + if ($size < 0) + return (-1); + $dropSize = jl_Math_max(0, $size - $this.$dropping | 0); + $size = $this.$scala$collection$Iterator$SliceIterator$$remaining; + if ($size >= 0 ? 0 : 1) + return $dropSize; + return jl_Math_min($size, $dropSize); +}, +sc_Iterator$SliceIterator_hasNext = $this => { + sc_Iterator$SliceIterator_skip($this); + if ($this.$scala$collection$Iterator$SliceIterator$$remaining && $this.$underlying8.$hasNext()) + return 1; + return 0; +}, +sc_Iterator$SliceIterator_next = $this => { + let var$1, var$2; + sc_Iterator$SliceIterator_skip($this); + var$1 = $this.$scala$collection$Iterator$SliceIterator$$remaining; + var$2 = $rt_compare(var$1, 0); + if (var$2 > 0) { + $this.$scala$collection$Iterator$SliceIterator$$remaining = var$1 - 1 | 0; + return $this.$underlying8.$next(); + } + if (!(var$2 >= 0 ? 0 : 1)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + return $this.$underlying8.$next(); +}, +sc_Iterator$SliceIterator_sliceIterator = ($this, $from, $until) => { + let $lo, $rest; + $lo = jl_Math_max($from, 0); + $rest = $until < 0 ? sc_Iterator$SliceIterator_adjustedBound$1($this, $lo) : $until <= $lo ? 0 : ($this.$scala$collection$Iterator$SliceIterator$$remaining >= 0 ? 0 : 1) ? $until - $lo | 0 : jl_Math_min(sc_Iterator$SliceIterator_adjustedBound$1($this, $lo), $until - $lo | 0); + if (!$rest) + return sc_Iterator$_scala$collection$Iterator$$_empty; + $this.$dropping = $this.$dropping + $lo | 0; + $this.$scala$collection$Iterator$SliceIterator$$remaining = $rest; + return $this; +}, +sc_Iterator$SliceIterator_adjustedBound$1 = ($this, $lo$1) => { + let $max$extension_that; + $max$extension_that = $this.$scala$collection$Iterator$SliceIterator$$remaining; + if ($max$extension_that >= 0 ? 0 : 1) + return (-1); + return jl_Math_max(0, $max$extension_that - $lo$1 | 0); +}, +oncip_CypherErrorStrategy$CypherRuleGroup = $rt_classWithoutFields(0), +oncip_CypherErrorStrategy$ExpressionRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$ExpressionRule$_MODULE$ = null, +oncip_CypherErrorStrategy$ExpressionRule$__clinit_ = () => { + oncip_CypherErrorStrategy$ExpressionRule$_MODULE$ = new oncip_CypherErrorStrategy$ExpressionRule$; +}, +oncip_CypherErrorStrategy$ExpressionRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$ExpressionRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$ExpressionRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$ExpressionRule$_hashCode = $this => { + return 1974361556; +}, +oncip_CypherErrorStrategy$ExpressionRule$_toString = $this => { + return $rt_s(5285); +}, +oncip_CypherErrorStrategy$StringLiteralRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$ = null, +oncip_CypherErrorStrategy$StringLiteralRule$__clinit_ = () => { + oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$ = new oncip_CypherErrorStrategy$StringLiteralRule$; +}, +oncip_CypherErrorStrategy$StringLiteralRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$StringLiteralRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$StringLiteralRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$StringLiteralRule$_hashCode = $this => { + return 1688321882; +}, +oncip_CypherErrorStrategy$StringLiteralRule$_toString = $this => { + return $rt_s(5286); +}, +oncip_CypherErrorStrategy$NumberLiteralRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$ = null, +oncip_CypherErrorStrategy$NumberLiteralRule$__clinit_ = () => { + oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$ = new oncip_CypherErrorStrategy$NumberLiteralRule$; +}, +oncip_CypherErrorStrategy$NumberLiteralRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$NumberLiteralRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$NumberLiteralRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$NumberLiteralRule$_hashCode = $this => { + return (-1232105182); +}, +oncip_CypherErrorStrategy$NumberLiteralRule$_toString = $this => { + return $rt_s(5287); +}, +oncip_CypherErrorStrategy$ParameterRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$ParameterRule$_MODULE$ = null, +oncip_CypherErrorStrategy$ParameterRule$__clinit_ = () => { + oncip_CypherErrorStrategy$ParameterRule$_MODULE$ = new oncip_CypherErrorStrategy$ParameterRule$; +}, +oncip_CypherErrorStrategy$ParameterRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$ParameterRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$ParameterRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$ParameterRule$_hashCode = $this => { + return 419492389; +}, +oncip_CypherErrorStrategy$ParameterRule$_toString = $this => { + return $rt_s(5288); +}, +oncip_CypherErrorStrategy$VariableRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$VariableRule$_MODULE$ = null, +oncip_CypherErrorStrategy$VariableRule$__clinit_ = () => { + oncip_CypherErrorStrategy$VariableRule$_MODULE$ = new oncip_CypherErrorStrategy$VariableRule$; +}, +oncip_CypherErrorStrategy$VariableRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$VariableRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$VariableRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$VariableRule$_hashCode = $this => { + return (-208563272); +}, +oncip_CypherErrorStrategy$VariableRule$_toString = $this => { + return $rt_s(5289); +}, +oncip_CypherErrorStrategy$IdentifierRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$IdentifierRule$_MODULE$ = null, +oncip_CypherErrorStrategy$IdentifierRule$__clinit_ = () => { + oncip_CypherErrorStrategy$IdentifierRule$_MODULE$ = new oncip_CypherErrorStrategy$IdentifierRule$; +}; +let oncip_CypherErrorStrategy$IdentifierRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$IdentifierRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$IdentifierRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$IdentifierRule$_hashCode = $this => { + return (-519174299); +}, +oncip_CypherErrorStrategy$IdentifierRule$_toString = $this => { + return $rt_s(5290); +}, +oncip_CypherErrorStrategy$DatabaseNameRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$ = null, +oncip_CypherErrorStrategy$DatabaseNameRule$__clinit_ = () => { + oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$ = new oncip_CypherErrorStrategy$DatabaseNameRule$; +}, +oncip_CypherErrorStrategy$DatabaseNameRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$DatabaseNameRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$DatabaseNameRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$DatabaseNameRule$_hashCode = $this => { + return (-1187227934); +}, +oncip_CypherErrorStrategy$DatabaseNameRule$_toString = $this => { + return $rt_s(5291); +}, +oncip_CypherErrorStrategy$GraphPatternRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$ = null, +oncip_CypherErrorStrategy$GraphPatternRule$__clinit_ = () => { + oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$ = new oncip_CypherErrorStrategy$GraphPatternRule$; +}, +oncip_CypherErrorStrategy$GraphPatternRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$GraphPatternRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$GraphPatternRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$GraphPatternRule$_hashCode = $this => { + return (-1583702882); +}, +oncip_CypherErrorStrategy$GraphPatternRule$_toString = $this => { + return $rt_s(5292); +}; +function oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1() { + sr_AbstractPartialFunction.call(this); + this.$preferredGroups$1 = null; +} +let oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1_applyOrElse = ($this, $x, $default) => { + let var$3; + a: { + $x = $x; + if ($x !== null) { + var$3 = s_Tuple2__1$mcI$sp($x); + $x = $x.$_2(); + if ($this.$preferredGroups$1.$contains($x)) { + $x = jl_Integer_valueOf(var$3); + break a; + } + } + $x = sr_Statics_pfMarker; + } + return $x; +}, +onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0 = $rt_classWithoutFields(), +onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0_apply = (var$0, var$1) => { + return jl_Integer_valueOf(var$1.$ruleIndex0); +}, +onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1 = $rt_classWithoutFields(), +onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1_get = var$0 => { + return new ju_LinkedList; +}; +function onciafnc_CodeCompletionCore$CandidateRule() { + let a = this; jl_Record.call(a); + a.$startTokenIndex0 = 0; + a.$ruleList = null; +} +let onciafnc_CodeCompletionCore$CandidateRule_toString = $this => { + let var$1, var$2; + var$1 = jl_StringBuilder__init_0($rt_s(5293)); + jl_AbstractStringBuilder_append(var$1, $rt_s(5283)); + var$2 = jl_StringBuilder_append0(var$1, $this.$startTokenIndex0); + jl_AbstractStringBuilder_append(var$2, $rt_s(5294)); + var$2 = jl_StringBuilder_append(var$2, $this.$ruleList); + jl_AbstractStringBuilder_append(var$2, $rt_s(425)); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciafnc_CodeCompletionCore$CandidateRule_hashCode = $this => { + return ((31 + $this.$startTokenIndex0 | 0) * 31 | 0) + ju_Objects_hashCode($this.$ruleList) | 0; +}, +onciafnc_CodeCompletionCore$CandidateRule_equals = ($this, $o) => { + let var$2; + if ($this === $o) + var$2 = 1; + else if ($o !== null && jl_Object_getClass($o) === $rt_cls(onciafnc_CodeCompletionCore$CandidateRule)) { + $o = $o; + var$2 = $this.$startTokenIndex0 != $o.$startTokenIndex0 ? 0 : ju_Objects_equals($this.$ruleList, $o.$ruleList) ? 1 : 0; + } else + var$2 = 0; + return var$2; +}; +function ju_LinkedList$Entry() { + let a = this; jl_Object.call(a); + a.$item = null; + a.$next7 = null; + a.$previous0 = null; +} +function oncia_Union$$anonfun$checkRecursively$4$lambda$_44_0() { + jl_Object.call(this); + this.$_0602 = null; +} +let oncia_Union$$anonfun$checkRecursively$4$lambda$_44_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0602; + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_recordWorkingGraph(var$1, var$2.$workingGraph)); +}, +oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_newChildScope(var$1)); +}; +function oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1() { + jl_Object.call(this); + this.$_0542 = null; +} +let oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0542; + var$3 = oncias_package$_MODULE$; + var$4 = var$1.$variable18; + oncius_package$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(var$3, var$2.$declareVariable(var$4, var$1.$cypherType0.$invariant())); +}; +function oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2() { + jl_Object.call(this); + this.$_01095 = null; +} +let oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_01095; + oncias_OptionSemanticChecking$_$callClinit(); + var$3 = oncias_OptionSemanticChecking$_MODULE$; + var$4 = new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0; + var$4.$_0540 = var$2; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$1, var$4); +}; +function oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0() { + jl_Object.call(this); + this.$_0723 = null; +} +let oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0__init_ = (var$0, var$1) => { + var$0.$_0723 = var$1; +}, +oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0__init_0 = var_0 => { + let var_1 = new oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0(); + oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0__init_(var_1, var_0); + return var_1; +}, +oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0_apply = var$0 => { + return var$0.$_0723; +}; +function oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1() { + jl_Object.call(this); + this.$_09 = null; +} +let oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1__init_0 = (var$0, var$1) => { + var$0.$_09 = var$1; +}, +oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1__init_ = var_0 => { + let var_1 = new oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1(); + oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1__init_0(var_1, var_0); + return var_1; +}, +oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_09.$appended(var$1); +}; +function oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_0() { + jl_Object.call(this); + this.$_018 = null; +} +let oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_0_apply = var$0 => { + return var$0.$_018; +}; +function oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_1() { + jl_Object.call(this); + this.$_0575 = null; +} +let oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_1_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_0575.$appended(var$1); +}, +oncia_SubqueryCall$reportParams$lambda$_10_0 = $rt_classWithoutFields(), +oncia_SubqueryCall$reportParams$lambda$_10_0_apply = (var$0, var$1) => { + return var$1.$reportParams0; +}; +function sc_StrictOptimizedSeqOps$intersect$lambda$_15_0() { + let a = this; jl_Object.call(a); + a.$_0767 = null; + a.$_1255 = null; +} +let sc_StrictOptimizedSeqOps$intersect$lambda$_15_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0767; + var$3 = var$0.$_1255; + var$4 = new sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0; + var$4.$_01004 = var$3; + var$4.$_1343 = var$1; + return scm_HashMap_updateWith(var$2, var$1, var$4); +}; +function oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0() { + jl_Object.call(this); + this.$_0680 = null; +} +let oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2640); - oavr_Parser_match($this, 19); - oavr_Recognizer_setState($this, 2646); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 2641); - oncipv_Cypher5Parser_alterAlias($this); - break e; - case 63: - oavr_Recognizer_setState($this, 2642); - oncipv_Cypher5Parser_alterCurrentUser($this); - break e; - case 65: - oavr_Recognizer_setState($this, 2643); - oncipv_Cypher5Parser_alterDatabase($this); - break e; - case 248: - oavr_Recognizer_setState($this, 2645); - oncipv_Cypher5Parser_alterServer($this); - break e; - case 291: - oavr_Recognizer_setState($this, 2644); - oncipv_Cypher5Parser_alterUser($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + var$1 = var$1; + var$2 = var$0.$_0680; + var$3 = var$1.$typ; + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + if (var$3 !== null) { + if (!var$3.$equals(var$4)) + break b; + else + break c; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (var$4 !== null) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = oncie_CoerceTo__init_(var$2, var$1.$typ); } - return $_localctx; + return var$2; +}; +function oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1() { + jl_Object.call(this); + this.$_0119 = null; +} +let oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1_apply = var$0 => { + return var$0.$_0119; +}, +jus_Collectors$toList$lambda$_2_0 = $rt_classWithoutFields(), +jus_Collectors$toList$lambda$_2_0_get = var$0 => { + return ju_ArrayList__init_(); +}; +function oncipcaf_ASTExceptionFactory$joiningLastDelimiter$lambda$_10_0() { + let a = this; jl_Object.call(a); + a.$_0444 = null; + a.$_1154 = null; +} +function sc_StringOps$$anon$1() { + let a = this; sc_AbstractIterator.call(a); + a.$scala$collection$StringOps$$anon$$len = 0; + a.$scala$collection$StringOps$$anon$$index = 0; + a.$$this$2 = null; + a.$stripped$1 = 0; +} +let sc_StringOps$$anon$1_hasNext = $this => { + if ($this.$scala$collection$StringOps$$anon$$index < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1) + return 0; + return 1; +}, +sc_StringOps$$anon$1_next = $this => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = $this.$scala$collection$StringOps$$anon$$index; + if (var$1 < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1) + var$2 = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + else { + while (true) { + var$3 = $this.$scala$collection$StringOps$$anon$$index; + if (var$3 < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1) + break; + var$3 = jl_String_charAt($this.$$this$2, var$3); + if (var$3 != 13 && var$3 != 10 ? 0 : 1) + break; + $this.$scala$collection$StringOps$$anon$$index = $this.$scala$collection$StringOps$$anon$$index + 1 | 0; + } + var$3 = $this.$scala$collection$StringOps$$anon$$index; + if (!(var$3 < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1)) { + var$4 = jl_String_charAt($this.$$this$2, var$3); + var$5 = $this.$scala$collection$StringOps$$anon$$index + 1 | 0; + $this.$scala$collection$StringOps$$anon$$index = var$5; + if (!(var$5 < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1)) { + var$5 = jl_String_charAt($this.$$this$2, var$5); + if (var$4 == 13 && var$5 == 10 ? 1 : 0) + $this.$scala$collection$StringOps$$anon$$index = $this.$scala$collection$StringOps$$anon$$index + 1 | 0; + } + if (!$this.$stripped$1) + var$3 = $this.$scala$collection$StringOps$$anon$$index; + } + var$2 = jl_String_substring($this.$$this$2, var$1, var$3); + } + return var$2; +}; +function sc_StringOps$$stripMargin$extension$lambda$_68_0() { + let a = this; jl_Object.call(a); + a.$_0659 = 0; + a.$_1225 = null; +} +let sc_StringOps$$stripMargin$extension$lambda$_68_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0659; + var$3 = var$0.$_1225; + var$4 = var$1.$nativeString.length; + var$5 = 0; + while (true) { + var$6 = $rt_compare(var$5, var$4); + if (var$6 >= 0) + break; + if (jl_String_charAt(var$1, var$5) > 32) + break; + var$5 = var$5 + 1 | 0; + } + if (var$6 < 0 && jl_String_charAt(var$1, var$5) == var$2) + var$1 = jl_String_substring0(var$1, var$5 + 1 | 0); + jl_AbstractStringBuilder_append(var$3, var$1); + return var$3; +}; +function ju_TemplateCollections$SingleElementList() { + ju_TemplateCollections$AbstractImmutableList.call(this); + this.$value38 = null; +} +let ju_TemplateCollections$SingleElementList_size = $this => { + return 1; +}, +ju_TemplateCollections$SingleElementList_get = ($this, $index) => { + let var$2; + if (!$index) + return $this.$value38; + var$2 = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); +}; +function oncia_AscSortItem() { + let a = this; jl_Object.call(a); + a.$expression23 = null; + a.$position102 = null; +} +let oncia_AscSortItem_semanticCheck = $this => { + return oncia_SortItem_semanticCheck$($this); +}, +oncia_AscSortItem_expression = $this => { + return $this.$expression23; +}, +oncia_AscSortItem_position = $this => { + return $this.$position102; +}, +oncia_AscSortItem_copy = ($this, $expression, $position) => { + return oncia_AscSortItem__init_($expression, $position); +}, +oncia_AscSortItem_productPrefix = $this => { + return $rt_s(5295); +}, +oncia_AscSortItem_productArity = $this => { + return 1; +}, +oncia_AscSortItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression23; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_renameCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RenameCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 396, 198); +oncia_AscSortItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AscSortItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AscSortItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AscSortItem_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2648); - oavr_Parser_match($this, 221); - oavr_Recognizer_setState($this, 2652); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 235: - oavr_Recognizer_setState($this, 2649); - oncipv_Cypher5Parser_renameRole($this); - break e; - case 248: - oavr_Recognizer_setState($this, 2650); - oncipv_Cypher5Parser_renameServer($this); - break e; - case 291: - oavr_Recognizer_setState($this, 2651); - oncipv_Cypher5Parser_renameUser($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_AscSortItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expression23; + $x$1 = $x$1.$expression23; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_AscSortItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_grantCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GrantCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 398, 199); +oncia_AscSortItem_dup = ($this, $children) => { + return oncia_AscSortItem__init_($children.$head(), $this.$position102); +}, +oncia_AscSortItem_mapExpression = ($this, $f) => { + return oncia_AscSortItem_copy($this, oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0_apply($f, $this.$expression23), $this.$position102); +}, +oncia_AscSortItem__init_0 = ($this, $expression, $position) => { + $this.$expression23 = $expression; + $this.$position102 = $position; +}, +oncia_AscSortItem__init_ = (var_0, var_1) => { + let var_2 = new oncia_AscSortItem(); + oncia_AscSortItem__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncia_DescSortItem() { + let a = this; jl_Object.call(a); + a.$expression26 = null; + a.$position113 = null; +} +let oncia_DescSortItem_semanticCheck = $this => { + return oncia_SortItem_semanticCheck$($this); +}, +oncia_DescSortItem_expression = $this => { + return $this.$expression26; +}, +oncia_DescSortItem_position = $this => { + return $this.$position113; +}, +oncia_DescSortItem_copy = ($this, $expression, $position) => { + return oncia_DescSortItem__init_0($expression, $position); +}, +oncia_DescSortItem_productPrefix = $this => { + return $rt_s(5296); +}, +oncia_DescSortItem_productArity = $this => { + return 1; +}, +oncia_DescSortItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression26; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_DescSortItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DescSortItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DescSortItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DescSortItem_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2654); - oavr_Parser_match($this, 119); - oavr_Recognizer_setState($this, 2665); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 307, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 2656); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 130) { - oavr_Recognizer_setState($this, 2655); - oavr_Parser_match($this, 130); - } - oavr_Recognizer_setState($this, 2658); - oncipv_Cypher5Parser_privilege($this); - oavr_Recognizer_setState($this, 2659); - oavr_Parser_match($this, 274); - oavr_Recognizer_setState($this, 2660); - oncipv_Cypher5Parser_roleNames($this); - break e; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2662); - oncipv_Cypher5Parser_roleToken($this); - oavr_Recognizer_setState($this, 2663); - oncipv_Cypher5Parser_grantRole($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DescSortItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expression26; + $x$1 = $x$1.$expression26; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_DescSortItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_denyCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DenyCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 400, 200); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2667); - oavr_Parser_match($this, 74); - oavr_Recognizer_setState($this, 2669); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 130) { - oavr_Recognizer_setState($this, 2668); - oavr_Parser_match($this, 130); - } - oavr_Recognizer_setState($this, 2671); - oncipv_Cypher5Parser_privilege($this); - oavr_Recognizer_setState($this, 2672); - oavr_Parser_match($this, 274); - oavr_Recognizer_setState($this, 2673); - oncipv_Cypher5Parser_roleNames($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } +oncia_DescSortItem_dup = ($this, $children) => { + return oncia_DescSortItem__init_0($children.$head(), $this.$position113); +}, +oncia_DescSortItem_mapExpression = ($this, $f) => { + return oncia_DescSortItem_copy($this, oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0_apply($f, $this.$expression26), $this.$position113); +}, +oncia_DescSortItem__init_ = ($this, $expression, $position) => { + $this.$expression26 = $expression; + $this.$position113 = $position; +}, +oncia_DescSortItem__init_0 = (var_0, var_1) => { + let var_2 = new oncia_DescSortItem(); + oncia_DescSortItem__init_(var_2, var_0, var_1); + return var_2; +}; +function oavrm_DoubleKeyMap() { + jl_Object.call(this); + this.$data7 = null; +} +let oavrm_DoubleKeyMap_put = ($this, $k1, $k2, $v) => { + let $data2, $prev; + $data2 = ju_LinkedHashMap_get($this.$data7, $k1); + $prev = null; + if ($data2 !== null) + $prev = $data2.$get6($k2); + else { + $data2 = ju_LinkedHashMap__init_(); + ju_LinkedHashMap_put($this.$data7, $k1, $data2); + } + $data2.$put($k2, $v); + return $prev; +}, +oavrm_DoubleKeyMap_get = ($this, $k1, $k2) => { + let $data2; + $data2 = ju_LinkedHashMap_get($this.$data7, $k1); + if ($data2 !== null) + return $data2.$get6($k2); + return null; +}; +function oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0() { + jl_Object.call(this); + this.$_0682 = null; +} +let oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(var$0.$_0682.$isSubtypeOf(var$1)); +}; +function oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0() { + jl_Object.call(this); + this.$_0726 = null; +} +let oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(var$0.$_0726.$isSubtypeOf(var$1)); +}; +function oavra_SemanticContext$Predicate() { + let a = this; oavra_SemanticContext.call(a); + a.$ruleIndex2 = 0; + a.$predIndex0 = 0; + a.$isCtxDependent0 = 0; +} +let oavra_SemanticContext$Predicate_eval = ($this, $parser, $parserCallStack) => { + return 1; +}, +oavra_SemanticContext$Predicate_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), $this.$ruleIndex2), $this.$predIndex0), !$this.$isCtxDependent0 ? 0 : 1), 3); +}, +oavra_SemanticContext$Predicate_equals = ($this, $obj) => { + let $p; + if (!($obj instanceof oavra_SemanticContext$Predicate)) + return 0; + if ($this === $obj) + return 1; + $p = $obj; + return $this.$ruleIndex2 == $p.$ruleIndex2 && $this.$predIndex0 == $p.$predIndex0 && $this.$isCtxDependent0 == $p.$isCtxDependent0 ? 1 : 0; +}, +oavra_SemanticContext$Predicate_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append(var$1, $rt_s(430)); + var$1 = jl_StringBuilder_append0(var$1, $this.$ruleIndex2); + jl_AbstractStringBuilder_append(var$1, $rt_s(92)); + var$1 = jl_StringBuilder_append0(var$1, $this.$predIndex0); + jl_AbstractStringBuilder_append(var$1, $rt_s(5297)); + return jl_AbstractStringBuilder_toString(var$1); +}, +oncia_ProjectingUnionAll = $rt_classWithoutFields(), +oncia_ProjectingUnionDistinct = $rt_classWithoutFields(); +function oncia_Union$checkNestedQuery$1$lambda$_42_0() { + let a = this; jl_Object.call(a); + a.$_0731 = null; + a.$_1245 = null; +} +let oncia_Union$checkNestedQuery$1$lambda$_42_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0731; + var$2 = var$0.$_1245; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncia_Union$$anonfun$checkRecursively$2$lambda$_41_0; + var$4.$_0162 = var$1; + var$4.$_157 = var$2; + return oncias_SemanticCheck$_nestedCheck(var$3, var$4); +}; +function oncia_Union$checkSingleQuery$1$lambda$_39_0() { + let a = this; jl_Object.call(a); + a.$_0108 = null; + a.$_138 = null; + a.$_219 = null; +} +let oncia_Union$checkSingleQuery$1$lambda$_39_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0108; + var$2 = var$0.$_138; + var$3 = var$0.$_219; + var$2 = var$2.$apply2(var$3); + var$4 = var$3.$getSingleQuery(); + oncias_OptionSemanticChecking$_$callClinit(); + var$5 = oncias_OptionSemanticChecking$_MODULE$; + var$4 = var$4.$clauses0.$collectFirst(new oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1); + var$6 = new oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_34_0; + var$6.$_0984 = var$1; + var$5 = oncias_SemanticCheck_chain$(var$2, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$5, var$4, var$6)); + var$2 = var$3.$getSingleQuery(); + var$3 = oncias_OptionSemanticChecking$_MODULE$; + var$2 = oncia_SubqueryCall$_findTransactionalSubquery(oncia_SubqueryCall$_MODULE$, var$2); + var$4 = new oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_36_0; + var$4.$_0612 = var$1; + return oncias_SemanticCheck_chain$(var$5, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$2, var$4)); +}; +function oncia_Union$defineUnionVariables$lambda$_30_0() { + jl_Object.call(this); + this.$_01124 = null; +} +let oncia_Union$defineUnionVariables$lambda$_30_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = var$1; + var$2 = var$0.$_01124; + var$3 = new sr_LazyRef; + var$4 = sr_ObjectRef_create(oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_newChildScope(var$1))); + var$5 = (var$2.$lhs()).$finalScope((oncias_SemanticState_scope(var$1, var$2.$lhs())).$get1()); + var$6 = (var$2.$rhs0()).$finalScope((oncias_SemanticState_scope(var$1, var$2.$rhs0())).$get1()); + s_Predef$_$callClinit(); + var$7 = sci_Set$_newBuilder(s_Predef$_Set(s_Predef$_MODULE$)); + var$8 = var$2.$unionMappings(); + var$1 = new oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_0; + var$1.$_0614 = var$2; + var$1.$_1208 = var$7; + var$1.$_268 = var$3; + sci_List_foreach(var$8, var$1); + if (((var$2.$lhs()).$returnVariables()).$includeExisting1) { + var$1 = oncias_Scope_symbolNames(var$5); + var$8 = new oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_1; + var$8.$_0293 = var$2; + var$8.$_1106 = var$7; + var$8.$_238 = var$3; + var$1.$foreach(var$8); + } + if (((var$2.$rhs0()).$returnVariables()).$includeExisting1) { + var$1 = oncias_Scope_symbolNames(var$6); + var$8 = new oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_3; + var$8.$_0947 = var$2; + var$8.$_1326 = var$7; + var$8.$_2111 = var$3; + var$1.$foreach(var$8); + } + var$1 = sci_SetBuilderImpl_result(var$7); + var$2 = new oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_2; + var$2.$_0728 = var$5; + var$2.$_1244 = var$6; + var$2.$_281 = var$4; + var$1.$flatMap(var$2); + return oncias_SemanticCheckResult__init_(oncias_SemanticState_popScope(var$4.$elem.$state), var$4.$elem.$errors0); +}, +oncia_ReadAdministrationCommand$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_ReadAdministrationCommand$$anonfun$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !$rt_isInstance($x, oncie_SubqueryExpression) ? s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x) : jl_Boolean_valueOf(1); +}, +oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0_apply = (var$0, var$1) => { + var$1 = var$1; + if (var$1 instanceof oncia_ExistsExpression) { + var$1 = var$1; + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + var$1 = oncia_AdministrationCommandSemanticAnalysis$_unsupportedRequestErrorOnSystemDatabase(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $rt_s(5298), $rt_s(5299), var$1.$position16); + } else if (var$1 instanceof oncia_CollectExpression) { + var$1 = var$1; + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + var$1 = oncia_AdministrationCommandSemanticAnalysis$_unsupportedRequestErrorOnSystemDatabase(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $rt_s(5300), $rt_s(5301), var$1.$position15); + } else if (var$1 instanceof oncia_CountExpression) { + var$1 = var$1; + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + var$1 = oncia_AdministrationCommandSemanticAnalysis$_unsupportedRequestErrorOnSystemDatabase(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $rt_s(5302), $rt_s(5303), var$1.$position17); + } else if (var$1 instanceof oncie_PatternExpression) { + var$1 = var$1; + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + var$1 = oncia_AdministrationCommandSemanticAnalysis$_unsupportedRequestErrorOnSystemDatabase(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $rt_s(5304), $rt_s(5305), oncie_PatternExpression_position(var$1)); + } else if (!(var$1 instanceof oncie_PatternComprehension)) { + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + var$1 = oncia_AdministrationCommandSemanticAnalysis$_unsupportedRequestErrorOnSystemDatabase(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $rt_s(5306), $rt_s(5307), var$1.$position()); + } else { + var$1 = var$1; + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + var$1 = oncia_AdministrationCommandSemanticAnalysis$_unsupportedRequestErrorOnSystemDatabase(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $rt_s(5308), $rt_s(5309), var$1.$position46); + } + return var$1; +}, +oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1 = $rt_classWithoutFields(), +oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1_apply = var$0 => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}; +function oncias_package$$liftSemanticErrorDefOption$lambda$_7_0() { + jl_Object.call(this); + this.$_0753 = null; +} +let oncias_package$$liftSemanticErrorDefOption$lambda$_7_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0753; + var$3 = new oncias_SemanticCheckResult; + s_Option$_$callClinit(); + oncias_SemanticCheckResult__init_0(var$3, var$1, sc_AbstractIterable_toVector(s_Option$_option2Iterable(s_Option$_MODULE$, var$2))); + return var$3; +}, +onciu_RewritableJavascript$PROXY$9_54 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_54_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_54 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_54_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$7_149 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_149_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_AscSortItem_copy(var$2, var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_154 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_154_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DescSortItem_copy(var$2, var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_156 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_156_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ListLiteral_copy(var$2, var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_158 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_158_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +}, +onciu_RewritableJavascript$PROXY$7_162 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_162_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_AutoExtractedParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +}, +onciu_RewritableJavascript$PROXY$9_55 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_55_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_56 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_56_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_55 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_55_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_56 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_56_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$9_57 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_57_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_57 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_57_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}; +function ju_TemplateCollections$NEtriesMap$1$1() { + let a = this; jl_Object.call(a); + a.$index12 = 0; + a.$this$1 = null; +} +let ju_TemplateCollections$NEtriesMap$1$1_hasNext = $this => { + return $this.$index12 >= $this.$this$1.$this$02.$data0.data.length ? 0 : 1; +}, +ju_TemplateCollections$NEtriesMap$1$1_next = $this => { + let var$1, var$2, var$3; + var$1 = $this.$index12; + var$2 = $this.$this$1.$this$02.$data0.data; + if (var$1 != var$2.length) { + $this.$index12 = var$1 + 1 | 0; + return var$2[var$1]; + } + var$3 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$3); + $rt_throw(var$3); +}; +function s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0() { + let a = this; jl_Object.call(a); + a.$_0262 = null; + a.$_199 = 0; +} +let s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0262; + var$2 = var$0.$_199; + s_Enumeration_populateNameMap(var$1); + return scm_HashMap_apply(var$1.$nmap, jl_Integer_valueOf(var$2)); +}, +oncip_CypherErrorStrategy$LabelExpressionRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$ = null, +oncip_CypherErrorStrategy$LabelExpressionRule$__clinit_ = () => { + oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$ = new oncip_CypherErrorStrategy$LabelExpressionRule$; +}, +oncip_CypherErrorStrategy$LabelExpressionRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$LabelExpressionRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$LabelExpressionRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$LabelExpressionRule$_hashCode = $this => { + return (-944871000); +}, +oncip_CypherErrorStrategy$LabelExpressionRule$_toString = $this => { + return $rt_s(5310); +}, +oncip_CypherErrorStrategy$RelationshipPatternRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$ = null, +oncip_CypherErrorStrategy$RelationshipPatternRule$__clinit_ = () => { + oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$ = new oncip_CypherErrorStrategy$RelationshipPatternRule$; +}, +oncip_CypherErrorStrategy$RelationshipPatternRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$RelationshipPatternRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$RelationshipPatternRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$RelationshipPatternRule$_hashCode = $this => { + return (-202889932); +}, +oncip_CypherErrorStrategy$RelationshipPatternRule$_toString = $this => { + return $rt_s(5311); +}, +oncip_CypherErrorStrategy$NodePatternRule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$NodePatternRule$_MODULE$ = null, +oncip_CypherErrorStrategy$NodePatternRule$__clinit_ = () => { + oncip_CypherErrorStrategy$NodePatternRule$_MODULE$ = new oncip_CypherErrorStrategy$NodePatternRule$; +}, +oncip_CypherErrorStrategy$NodePatternRule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$NodePatternRule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$NodePatternRule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$NodePatternRule$_hashCode = $this => { + return (-2077037782); +}, +oncip_CypherErrorStrategy$NodePatternRule$_toString = $this => { + return $rt_s(5312); +}, +oncip_CypherErrorStrategy$LabelExpression1Rule$ = $rt_classWithoutFields(), +oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$ = null, +oncip_CypherErrorStrategy$LabelExpression1Rule$__clinit_ = () => { + oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$ = new oncip_CypherErrorStrategy$LabelExpression1Rule$; +}, +oncip_CypherErrorStrategy$LabelExpression1Rule$_productArity = $this => { + return 0; +}, +oncip_CypherErrorStrategy$LabelExpression1Rule$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncip_CypherErrorStrategy$LabelExpression1Rule$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncip_CypherErrorStrategy$LabelExpression1Rule$_hashCode = $this => { + return 742260161; +}, +oncip_CypherErrorStrategy$LabelExpression1Rule$_toString = $this => { + return $rt_s(5313); +}; +function juf_Function$andThen$lambda$_2_0() { + let a = this; jl_Object.call(a); + a.$_0648 = null; + a.$_1220 = null; +} +let juf_Function$andThen$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; + var$2 = var$0.$_0648; + var$3 = var$0.$_1220; + var$1 = var$2.$apply2(var$1); + var$2 = var$3.$_0444; + var$3 = var$3.$_1154; + var$4 = var$1.$size() - 1 | 0; + var$5 = $rt_createArray(jl_CharSequence, 2).data; + var$5[0] = jl_String_join(var$3, ju_AbstractList_subList(var$1, 0, var$4)); + var$5[1] = var$1.$get0(var$4); + var$6 = var$5.length; + if (!var$6) + var$1 = jl_String_EMPTY; + else { + var$4 = 0; + var$7 = 0; + while (var$7 < var$6) { + var$4 = var$4 + var$5[var$7].$nativeString.length | 0; + var$7 = var$7 + 1 | 0; + } + var$8 = $rt_createCharArray(var$4 + $rt_imul(var$6 - 1 | 0, var$2.$nativeString.length) | 0); + var$9 = var$8.data; + var$10 = 0; + var$1 = var$5[0]; + var$7 = 0; + while (var$7 < var$1.$nativeString.length) { + var$11 = var$10 + 1 | 0; + var$9[var$10] = jl_String_charAt(var$1, var$7); + var$7 = var$7 + 1 | 0; + var$10 = var$11; + } + var$12 = 1; + while (var$12 < var$6) { + var$11 = 0; + while (var$11 < var$2.$nativeString.length) { + var$4 = var$10 + 1 | 0; + var$9[var$10] = jl_String_charAt(var$2, var$11); + var$11 = var$11 + 1 | 0; + var$10 = var$4; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$1 = var$5[var$12]; + var$11 = 0; + while (var$11 < var$1.$nativeString.length) { + var$4 = var$10 + 1 | 0; + var$9[var$10] = jl_String_charAt(var$1, var$11); + var$11 = var$11 + 1 | 0; + var$10 = var$4; + } + var$12 = var$12 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$1 = jl_String_fromArray(var$8); } - return $_localctx; + return var$1; +}; +function ju_HashMap$2() { + ju_AbstractCollection.call(this); + this.$this$03 = null; +} +let ju_HashMap$2_size = $this => { + return $this.$this$03.$elementCount; }, -oncipv_Cypher5Parser_revokeCommand = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RevokeCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 402, 201); +ju_HashMap$2_iterator = $this => { + let var$1; + var$1 = new ju_HashMap$ValueIterator; + ju_HashMap$AbstractMapIterator__init_(var$1, $this.$this$03); + return var$1; +}, +oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + sr_BoxesRunTime_unboxToBoolean(var$1); + return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(1)); +}; +function sc_Iterator$$anon$22() { + let a = this; sc_AbstractIterator.call(a); + a.$i4 = 0; + a.$len$2 = 0; + a.$elem$4 = null; +} +let sc_Iterator$$anon$22_knownSize = $this => { + return jl_Math_max($this.$len$2 - $this.$i4 | 0, 0); +}, +sc_Iterator$$anon$22_hasNext = $this => { + if ($this.$i4 >= $this.$len$2) + return 0; + return 1; +}, +sc_Iterator$$anon$22_next = $this => { + if (!sc_Iterator$$anon$22_hasNext($this)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + $this.$i4 = $this.$i4 + 1 | 0; + return $this.$elem$4.$_0535; +}, +scm_HashMap$$anon$4 = $rt_classWithoutFields(scm_HashMap$HashMapIterator), +scm_HashMap$$anon$4_extract = ($this, $nd) => { + return $nd; +}, +scm_HashMap$$anon$3 = $rt_classWithoutFields(scm_HashMap$HashMapIterator), +scm_HashMap$$anon$3_extract = ($this, $nd) => { + return $nd.$_value; +}, +onciu_BucketSize = $rt_classWithoutFields(0); +function oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0789 = null; +} +let oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0789; + return onciu_Foldable$SkipChildren__init_(var$1.$appended(onciu_LiteralOffset__init_((var$2.$position()).$offset(), (var$2.$position()).$line(), s_Some__init_(jl_Integer_valueOf(var$2.$literalLength()))))); +}; +function oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_0175 = null; + a.$_161 = null; +} +let oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0175; + var$3 = var$0.$_161; + var$2 = var$2.$extractedParameters$1.$get2(var$3); + if (!(var$2 instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, var$2)) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = onciu_Foldable$SkipChildren__init_(var$1.$appended(onciu_LiteralOffset__init_(var$3.$position74.$offset(), var$3.$position74.$line(), s_None$_MODULE$))); + } else { + var$4 = onciu_Foldable_folder$(var$2.$value5); + sr_ClassTag$_$callClinit(); + var$3 = ((onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Literal)))).$map(new oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0)).$map(new oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1); + var$2 = onciu_Foldable$SkipChildren__init_(var$1.$concat(var$3)); + } + return var$2; +}, +oncifp_DeprecationInfo = $rt_classWithoutFields(); +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0() { + let a = this; jl_Object.call(a); + a.$_01023 = null; + a.$_1350 = null; + a.$_2117 = null; + a.$_335 = null; +} +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_01023; + var$3 = var$0.$_1350; + var$4 = var$0.$_2117; + var$5 = var$0.$_335; + var$6 = new onciu_Foldable$TraverseChildren; + var$7 = sc_StrictOptimizedIterableOps_filter$(var$2, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0); + var$2 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1; + var$2.$_0123 = var$3; + var$2.$_142 = var$4; + var$1 = var$1.$concat1(sc_AbstractIterable_toSet(var$7.$map(var$2))); + var$2 = new onn_DeprecatedProcedureNotification; + var$7 = var$3.$position9; + var$3 = oncifp_QualifiedName_toString(var$4); + var$2.$position62 = var$7; + var$2.$oldName0 = var$3; + var$2.$newName2 = var$5; + onciu_Foldable$TraverseChildren__init_0(var$6, var$1.$incl(var$2)); + return var$6; +}, +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$deprecated0); +}; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2() { + let a = this; jl_Object.call(a); + a.$_0122 = null; + a.$_141 = null; + a.$_221 = null; +} +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0122; + var$3 = var$0.$_141; + var$4 = var$0.$_221; + var$5 = new onciu_Foldable$TraverseChildren; + var$2 = sc_StrictOptimizedIterableOps_filter$(var$2, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0); + var$6 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1; + var$6.$_0878 = var$3; + var$6.$_1296 = var$4; + onciu_Foldable$TraverseChildren__init_0(var$5, var$1.$concat1(sc_AbstractIterable_toSet(var$2.$map(var$6)))); + return var$5; +}; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3() { + let a = this; jl_Object.call(a); + a.$_0606 = null; + a.$_1204 = null; + a.$_267 = null; + a.$_322 = null; +} +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_0606; + var$3 = var$0.$_1204; + var$4 = var$0.$_267; + var$5 = var$0.$_322; + var$6 = new onciu_Foldable$TraverseChildren; + var$7 = sc_StrictOptimizedIterableOps_filter$(var$2, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0); + var$2 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1; + var$2.$_0196 = var$3; + var$2.$_172 = var$4; + onciu_Foldable$TraverseChildren__init_0(var$6, (var$1.$concat1(sc_AbstractIterable_toSet(var$7.$map(var$2)))).$incl(onciu_DeprecatedFunctionNotification__init_(var$3.$position12, oncifp_QualifiedName_toString(var$4), var$5))); + return var$6; +}, +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$deprecated0); +}; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5() { + let a = this; jl_Object.call(a); + a.$_0854 = null; + a.$_1287 = null; + a.$_292 = null; +} +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0854; + var$3 = var$0.$_1287; + var$4 = var$0.$_292; + var$5 = new onciu_Foldable$TraverseChildren; + var$2 = sc_StrictOptimizedIterableOps_filter$(var$2, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0); + var$6 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1; + var$6.$_0779 = var$3; + var$6.$_1259 = var$4; + onciu_Foldable$TraverseChildren__init_0(var$5, var$1.$concat1(sc_AbstractIterable_toSet(var$2.$map(var$6)))); + return var$5; +}; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6() { + jl_Object.call(this); + this.$_0198 = null; +} +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0198; + if (!(var$1 instanceof oncie_FunctionTypeSignature)) + var$3 = 0; + else { + var$1 = var$1; + var$4 = var$1.$argumentTypes0; + var$3 = var$1.$deprecated1 && sci_Vector_length(var$4) == (oncie_Expression_arguments(var$2)).$length() ? 1 : 0; + } + return jl_Boolean_valueOf(var$3); +}, +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7 = $rt_classWithoutFields(), +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7_apply = (var$0, var$1) => { + return var$1; +}; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8() { + jl_Object.call(this); + this.$_0312 = null; +} +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0312; + return onciu_DeprecatedFunctionNotification__init_(var$2.$position7, var$2.$function1.$name(), var$1.$deprecatedBy0); +}; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9() { + jl_Object.call(this); + this.$_0913 = null; +} +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0913; + return onciu_Foldable$TraverseChildren__init_(var$1.$concat1(sc_AbstractIterable_toSet(var$2))); +}, +one_InternalException = $rt_classWithoutFields(one_Neo4jException), +one_InternalException__init_0 = ($this, $message) => { + jl_Throwable__init_1($this, $message, null); + $this.$innerGqlStatusObject = null; + $this.$oldMessage = $message; +}, +one_InternalException__init_ = var_0 => { + let var_1 = new one_InternalException(); + one_InternalException__init_0(var_1, var_0); + return var_1; +}; +function oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0() { + let a = this; jl_Object.call(a); + a.$_07 = null; + a.$_19 = null; + a.$_28 = null; +} +let oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_07; + var$3 = var$0.$_19; + var$4 = var$0.$_28; + var$5 = new onciu_Foldable$TraverseChildren; + var$6 = new onn_ProcedureWarningNotification; + var$7 = var$2.$position9; + var$2 = oncifp_QualifiedName_toString(var$3); + var$6.$position59 = var$7; + var$6.$procedure1 = var$2; + var$6.$warning1 = var$4; + onciu_Foldable$TraverseChildren__init_0(var$5, var$1.$incl(var$6)); + return var$5; +}, +oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$deprecated0); +}; +function oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2() { + let a = this; jl_Object.call(a); + a.$_0126 = null; + a.$_143 = null; + a.$_222 = null; +} +let oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0126; + var$3 = var$0.$_143; + var$4 = var$0.$_222; + var$5 = new onciu_Foldable$TraverseChildren; + oncifp_ProcedureWarnings$_$callClinit(); + var$2 = oncifp_QualifiedName_toString(var$2); + var$6 = new oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0; + var$6.$_0966 = var$4; + var$3 = var$3.$filter1(var$6); + var$4 = new oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1; + var$4.$_0742 = var$2; + onciu_Foldable$TraverseChildren__init_0(var$5, var$1.$concat1(var$3.$map(var$4))); + return var$5; +}; +function oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0() { + let a = this; jl_Object.call(a); + a.$_01090 = null; + a.$_1370 = null; +} +let oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_01090; + var$3 = var$0.$_1370; + var$4 = new onciu_Foldable$TraverseChildren; + var$5 = new onciu_RedundantOptionalProcedure; + var$6 = var$2.$position9; + var$2 = oncifp_QualifiedName_toString(var$3.$name10); + var$5.$position67 = var$6; + var$5.$proc0 = var$2; + onciu_Foldable$TraverseChildren__init_0(var$4, var$1.$incl(var$5)); + return var$4; +}, +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = new onciu_Foldable$TraverseChildrenNewAccForSiblings; + var$3 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0; + var$3.$_0440 = var$1; + onciu_Foldable$TraverseChildrenNewAccForSiblings__init_(var$2, var$1, var$3); + return var$2; +}; +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_0191 = null; + a.$_169 = null; + a.$_226 = null; +} +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0191; + var$3 = var$0.$_169; + var$4 = var$0.$_226; + if (!s_Option_isEmpty(var$1.$currentWorkGraph) && s_Option_contains(var$1.$currentWorkGraph, var$3)) { + var$2 = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_org$neo4j$cypher$internal$frontend$phases$RemoveDuplicateUseClauses$UseClauseRewriter$$State$3(var$2.$$outer25, var$2.$State$module$1); + var$5 = var$1.$useClausesToRemove; + onciu_Ref$_$callClinit(); + var$1 = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$_apply(var$2, var$5.$incl(onciu_Ref$_apply(onciu_Ref$_MODULE$, var$4)), var$1.$currentWorkGraph); + } else + var$1 = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$_apply(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_org$neo4j$cypher$internal$frontend$phases$RemoveDuplicateUseClauses$UseClauseRewriter$$State$3(var$2.$$outer25, var$2.$State$module$1), var$1.$useClausesToRemove, s_Some__init_(var$3)); + return onciu_Foldable$SkipChildren__init_(var$1); +}, +oncief_Exists$ = $rt_classWithoutFields(oncief_Function), +oncief_Exists$_MODULE$ = null, +oncief_Exists$_signatures0 = null, +oncief_Exists$_$callClinit = () => { + oncief_Exists$_$callClinit = $rt_eraseClinit(oncief_Exists$); + oncief_Exists$__clinit_(); +}, +oncief_Exists$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Exists$; + oncief_Exists$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Exists$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Exists$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_PREDICATE0(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(5314)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5315), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Exists$_signatures0 = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Exists$_name = $this => { + return $rt_s(4170); +}, +oncief_Exists$_signatures = $this => { + oncief_Exists$_$callClinit(); + return oncief_Exists$_signatures0; +}, +oncief_Exists$_productArity = $this => { + return 0; +}, +oncief_Exists$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Exists$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Exists$_hashCode = $this => { + return 2089476220; +}, +oncief_Exists$_toString = $this => { + return $rt_s(5316); +}, +oncief_Exists$_signatures1 = $this => { + return oncief_Exists$_signatures($this); +}, +oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); +}; +function oncie_PatternExpression() { + let a = this; oncie_Expression.call(a); + a.$pattern9 = null; + a.$computedIntroducedVariables3 = null; + a.$computedScopeDependencies3 = null; +} +let oncie_PatternExpression_introducedVariables = $this => { + return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); +}, +oncie_PatternExpression_scopeDependencies = $this => { + return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); +}, +oncie_PatternExpression_dependencies = $this => { + return $this.$scopeDependencies(); +}, +oncie_PatternExpression_isConstantForQuery = $this => { + return 0; +}, +oncie_PatternExpression_pattern = $this => { + return $this.$pattern9; +}, +oncie_PatternExpression_computedIntroducedVariables = $this => { + return $this.$computedIntroducedVariables3; +}, +oncie_PatternExpression_computedScopeDependencies = $this => { + return $this.$computedScopeDependencies3; +}, +oncie_PatternExpression_position = $this => { + return $this.$pattern9.$position154; +}, +oncie_PatternExpression_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { + return oncie_PatternExpression_copy($this, $this.$pattern9, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies3); +}, +oncie_PatternExpression_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { + return oncie_PatternExpression_copy($this, $this.$pattern9, $this.$computedIntroducedVariables3, s_Some__init_($computedScopeDependencies)); +}, +oncie_PatternExpression_subqueryAstNode = $this => { + return $this.$pattern9; +}, +oncie_PatternExpression_dup = ($this, $children) => { + return oncie_PatternExpression__init_0($children.$head(), $this.$computedIntroducedVariables3, $this.$computedScopeDependencies3); +}, +oncie_PatternExpression_copy = ($this, $pattern, $computedIntroducedVariables, $computedScopeDependencies) => { + return oncie_PatternExpression__init_0($pattern, $computedIntroducedVariables, $computedScopeDependencies); +}, +oncie_PatternExpression_productPrefix = $this => { + return $rt_s(5317); +}, +oncie_PatternExpression_productArity = $this => { + return 1; +}, +oncie_PatternExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$pattern9; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_PatternExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternExpression_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2675); - oavr_Parser_match($this, 234); - oavr_Recognizer_setState($this, 2689); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 311, $this.$_ctx)) { - case 1: - oavr_Recognizer_setState($this, 2677); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 74 && $_la != 119)) { - oavr_Recognizer_setState($this, 2676); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 74 && $_la != 119) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2680); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 130) { - oavr_Recognizer_setState($this, 2679); - oavr_Parser_match($this, 130); - } - oavr_Recognizer_setState($this, 2682); - oncipv_Cypher5Parser_privilege($this); - oavr_Recognizer_setState($this, 2683); - oavr_Parser_match($this, 114); - oavr_Recognizer_setState($this, 2684); - oncipv_Cypher5Parser_roleNames($this); - break e; - case 2: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2686); - oncipv_Cypher5Parser_roleToken($this); - oavr_Recognizer_setState($this, 2687); - oncipv_Cypher5Parser_revokeRole($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PatternExpression) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$pattern9; + $x$1 = $x$1.$pattern9; + if (var$2 !== null) { + if (!oncie_RelationshipsPattern_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_PatternExpression)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_userNames = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UserNamesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 404, 202); +oncie_PatternExpression_dup0 = ($this, $children) => { + return oncie_PatternExpression_dup($this, $children); +}, +oncie_PatternExpression_dup1 = ($this, $children) => { + return oncie_PatternExpression_dup($this, $children); +}, +oncie_PatternExpression__init_ = ($this, $pattern, $computedIntroducedVariables, $computedScopeDependencies) => { + $this.$pattern9 = $pattern; + $this.$computedIntroducedVariables3 = $computedIntroducedVariables; + $this.$computedScopeDependencies3 = $computedScopeDependencies; + oncie_Expression__init_($this); +}, +oncie_PatternExpression__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_PatternExpression(); + oncie_PatternExpression__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1() { + jl_Object.call(this); + this.$_076 = null; +} +let oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_076; + var$3 = new onciu_Foldable$SkipChildren; + oncias_SemanticError$_$callClinit(); + onciu_Foldable$SkipChildren__init_0(var$3, var$1.$appended(oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncifp_PatternExpressionInNonExistenceCheck$_errorMessageForSizeFunction, oncie_PatternExpression_position(var$2)))); + return var$3; +}; +function oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2() { + jl_Object.call(this); + this.$_0717 = null; +} +let oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0717; + var$3 = new onciu_Foldable$SkipChildren; + oncias_SemanticError$_$callClinit(); + onciu_Foldable$SkipChildren__init_0(var$3, var$1.$appended(oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncifp_PatternExpressionInNonExistenceCheck$_errorMessage, oncie_PatternExpression_position(var$2)))); + return var$3; +}, +oncia_CreateOrInsert = $rt_classWithoutFields(0); +function oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0() { + let a = this; jl_Object.call(a); + a.$_0909 = null; + a.$_1312 = null; +} +let oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0909; + var$3 = var$0.$_1312; + var$2 = oncifp_SelfReferenceCheckWithinPatternPart$_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern(oncifp_SelfReferenceCheckWithinPatternPart$_MODULE$, var$3, var$3.$pattern5(), var$2.$semanticTable$10, var$2.$errorMessageProvider$1); + return onciu_Foldable$SkipChildren__init_(var$1.$concat(var$2)); +}, +onciu_DeprecatedFeature = $rt_classWithoutFields(0), +onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25 = $rt_classWithoutFields(0), +onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_deprecatedIn$ = ($$this, $cypherVersion) => { + let var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2691); - oncipv_Cypher5Parser_symbolicNameOrStringParameterList($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + $$this = onci_CypherVersion_Cypher5; + if ($cypherVersion !== null) { + if (!jl_Enum_equals($cypherVersion, $$this)) + break b; + else + break c; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if ($$this !== null) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_roleNames = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RoleNamesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 406, 203); +onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_errorIn$ = ($$this, $cypherVersion) => { + let var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2693); - oncipv_Cypher5Parser_symbolicNameOrStringParameterList($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + $$this = onci_CypherVersion_Cypher5; + if ($cypherVersion !== null) { + if (jl_Enum_equals($cypherVersion, $$this)) + break c; + else + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if ($$this !== null) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 0; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 1; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_roleToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RoleTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 408, 204); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2695); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 235 && $_la != 236) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_Merge$SelfReference$ = $rt_classWithoutFields(), +oncia_Merge$SelfReference$_MODULE$ = null, +oncia_Merge$SelfReference$__clinit_ = () => { + oncia_Merge$SelfReference$_MODULE$ = new oncia_Merge$SelfReference$; +}; +function oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_0408 = null; + a.$_1145 = null; +} +let oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0408; + var$3 = var$0.$_1145; + var$4 = oncie_Pattern$ForUpdate__init_0(sci_$colon$colon__init_(var$3.$pattern8, sci_Nil$_MODULE$), var$3.$pattern8.$position()); + var$2 = oncifp_SelfReferenceCheckWithinPatternPart$_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern(oncifp_SelfReferenceCheckWithinPatternPart$_MODULE$, var$3, var$4, var$2.$semanticTable$10, var$2.$errorMessageProvider$1); + return onciu_Foldable$SkipChildren__init_(var$1.$concat(var$2)); +}; +function oncia_Insert() { + let a = this; jl_Object.call(a); + a.$pattern12 = null; + a.$position192 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier1 = null; + a.$SetExtractor$module9 = null; +} +let oncia_Insert_returnVariables = $this => { + return oncia_UpdateClause_returnVariables$($this); +}, +oncia_Insert_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Insert_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Insert_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Insert_foldedOver = $this => { + return $this; +}, +oncia_Insert_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Insert_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier1; +}, +oncia_Insert_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module9 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module9 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$SetExtractor$module9 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module9; }, -oncipv_Cypher5Parser_enableServerCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$EnableServerCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 410, 205); +oncia_Insert_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier1 = $x$1; +}, +oncia_Insert_pattern = $this => { + return $this.$pattern12; +}, +oncia_Insert_position = $this => { + return $this.$position192; +}, +oncia_Insert_name = $this => { + return $rt_s(4372); +}, +oncia_Insert_clauseSpecificSemanticCheck = $this => { + let var$1; + oncias_SemanticPatternCheck$_$callClinit(); + var$1 = oncias_SemanticPatternCheck$_check1(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Insert$_MODULE$, $this.$pattern12); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this.$pattern12)); +}, +oncia_Insert_shouldRunQPPChecks = $this => { + return 0; +}, +oncia_Insert_copy = ($this, $pattern, $position) => { + return oncia_Insert__init_0($pattern, $position); +}, +oncia_Insert_productPrefix = $this => { + return $rt_s(5318); +}, +oncia_Insert_productArity = $this => { + return 1; +}, +oncia_Insert_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$pattern12; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Insert_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Insert_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Insert_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Insert_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2697); - oavr_Parser_match($this, 93); - oavr_Recognizer_setState($this, 2698); - oavr_Parser_match($this, 248); - oavr_Recognizer_setState($this, 2699); - oncipv_Cypher5Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2701); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { - oavr_Recognizer_setState($this, 2700); - oncipv_Cypher5Parser_commandOptions($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Insert) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$pattern12; + $x$1 = $x$1.$pattern12; + if (var$2 !== null) { + if (!oncie_Pattern$ForUpdate_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_Insert)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_alterServer = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterServerContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 412, 206); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2703); - oavr_Parser_match($this, 248); - oavr_Recognizer_setState($this, 2704); - oncipv_Cypher5Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2705); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 2706); - oncipv_Cypher5Parser_commandOptions($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_Insert_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Insert_mapExpressions = ($this, $f) => { + return oncia_Insert_copy($this, oncie_Pattern$ForUpdate_mapExpressions($this.$pattern12, $f), $this.$position192); +}, +oncia_Insert__init_ = ($this, $pattern, $position) => { + $this.$pattern12 = $pattern; + $this.$position192 = $position; + oncia_Clause_$init$($this); +}, +oncia_Insert__init_0 = (var_0, var_1) => { + let var_2 = new oncia_Insert(); + oncia_Insert__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_Create() { + let a = this; jl_Object.call(a); + a.$pattern10 = null; + a.$position153 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier10 = null; + a.$SetExtractor$module18 = null; +} +let oncia_Create_returnVariables = $this => { + return oncia_UpdateClause_returnVariables$($this); +}, +oncia_Create_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Create_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Create_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Create_foldedOver = $this => { + return $this; +}, +oncia_Create_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Create_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier10; +}, +oncia_Create_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module18 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module18 !== null) break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + $this.$SetExtractor$module18 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module18; }, -oncipv_Cypher5Parser_renameServer = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RenameServerContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 414, 207); +oncia_Create_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier10 = $x$1; +}, +oncia_Create_pattern = $this => { + return $this.$pattern10; +}, +oncia_Create_position = $this => { + return $this.$position153; +}, +oncia_Create_name = $this => { + return $rt_s(4311); +}, +oncia_Create_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3, var$4; + oncias_SemanticPatternCheck$_$callClinit(); + var$1 = oncias_SemanticPatternCheck$_check1(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Create$_MODULE$, $this.$pattern10); + var$2 = $this.$pattern10; + var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$4 = var$2.$patternParts1; + var$2 = new oncia_SingleRelTypeCheck$checkRelTypes$lambda$_3_0; + var$2.$_025 = $this; + var$3 = oncias_SemanticCheck_chain$(var$1, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, var$2)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this.$pattern10)); +}, +oncia_Create_shouldRunQPPChecks = $this => { + return 0; +}, +oncia_Create_copy = ($this, $pattern, $position) => { + return oncia_Create__init_0($pattern, $position); +}, +oncia_Create_productPrefix = $this => { + return $rt_s(5319); +}, +oncia_Create_productArity = $this => { + return 1; +}, +oncia_Create_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$pattern10; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Create_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Create_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Create_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Create_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2708); - oavr_Parser_match($this, 248); - oavr_Recognizer_setState($this, 2709); - oncipv_Cypher5Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2710); - oavr_Parser_match($this, 274); - oavr_Recognizer_setState($this, 2711); - oncipv_Cypher5Parser_stringOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Create) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$pattern10; + $x$1 = $x$1.$pattern10; + if (var$2 !== null) { + if (!oncie_Pattern$ForUpdate_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_Create)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_dropServer = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropServerContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 416, 208); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2713); - oavr_Parser_match($this, 248); - oavr_Recognizer_setState($this, 2714); - oncipv_Cypher5Parser_stringOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncia_Create_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Create_mapExpressions = ($this, $f) => { + return oncia_Create_copy($this, oncie_Pattern$ForUpdate_mapExpressions($this.$pattern10, $f), $this.$position153); +}, +oncia_Create__init_ = ($this, $pattern, $position) => { + $this.$pattern10 = $pattern; + $this.$position153 = $position; + oncia_Clause_$init$($this); +}, +oncia_Create__init_0 = (var_0, var_1) => { + let var_2 = new oncia_Create(); + oncia_Create__init_(var_2, var_0, var_1); + return var_2; +}; +function oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0() { + let a = this; jl_Object.call(a); + a.$_0471 = null; + a.$_1162 = null; +} +let oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0471; + var$3 = var$0.$_1162; + var$2 = oncifp_SelfReferenceCheckAcrossPatternParts$_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern(oncifp_SelfReferenceCheckAcrossPatternParts$_MODULE$, var$3, var$3.$pattern12, var$2.$semanticTable$4); + return onciu_Foldable$SkipChildren__init_(var$1.$concat(var$2)); +}, +oncia_Create$SelfReferenceAcrossPatterns$ = $rt_classWithoutFields(), +oncia_Create$SelfReferenceAcrossPatterns$_MODULE$ = null, +oncia_Create$SelfReferenceAcrossPatterns$__clinit_ = () => { + oncia_Create$SelfReferenceAcrossPatterns$_MODULE$ = new oncia_Create$SelfReferenceAcrossPatterns$; +}; +function oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_01148 = null; + a.$_1392 = null; +} +let oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01148; + var$3 = var$0.$_1392; + var$2 = oncifp_SelfReferenceCheckAcrossPatternParts$_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern(oncifp_SelfReferenceCheckAcrossPatternParts$_MODULE$, var$3, var$3.$pattern10, var$2.$semanticTable$4); + return onciu_Foldable$SkipChildren__init_(var$1.$concat(var$2)); +}; +function oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0833 = null; +} +let oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0833; + var$3 = new onciu_Foldable$SkipChildren; + oncias_SemanticError$_$callClinit(); + oncifp_ListCoercedToBooleanCheck$_$callClinit(); + var$4 = oncifp_ListCoercedToBooleanCheck$_errorMessage; + var$5 = var$2.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + onciu_Foldable$SkipChildren__init_0(var$3, var$1.$appended(oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$5.$offset(), var$5.$line(), var$5.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N37), + var$5.$offset(), var$5.$line(), var$5.$column()), ong_GqlParams$StringParam_value, $rt_s(4386)), ong_GqlParams$StringParam_valueType, $rt_s(710))))), var$4, var$5))); + return var$3; +}; +function oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0() { + let a = this; jl_Object.call(a); + a.$_0906 = null; + a.$_1311 = null; + a.$_2104 = null; +} +let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0906; + var$3 = var$0.$_1311; + var$4 = var$0.$_2104; + var$5 = var$1.$get2(var$3); + var$6 = new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0; + var$6.$_0229 = var$2; + var$6.$_186 = var$4; + var$2 = s_Option_map(var$5, var$6); + var$5 = new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1; + var$5.$_0845 = var$4; + var$4 = (s_Option_getOrElse(var$2, var$5)).$distinct0(); + var$5 = new onciu_Foldable$SkipChildren; + var$2 = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + onciu_Foldable$SkipChildren__init_0(var$5, sci_AbstractMap_$plus(var$1, s_Predef$ArrowAssoc$_$minus$greater$extension(var$2, var$3, var$4))); + return var$5; +}, +jnc_StandardCharsets = $rt_classWithoutFields(), +jnc_StandardCharsets_UTF_8 = null, +jnc_StandardCharsets_US_ASCII = null, +jnc_StandardCharsets_ISO_8859_1 = null, +jnc_StandardCharsets_UTF_16 = null, +jnc_StandardCharsets_UTF_16BE = null, +jnc_StandardCharsets_UTF_16LE = null, +jnc_StandardCharsets_$callClinit = () => { + jnc_StandardCharsets_$callClinit = $rt_eraseClinit(jnc_StandardCharsets); + jnc_StandardCharsets__clinit_(); +}, +jnc_StandardCharsets__clinit_ = () => { + let var$1; + jnci_UTF8Charset_$callClinit(); + jnc_StandardCharsets_UTF_8 = jnci_UTF8Charset_INSTANCE; + var$1 = new jnci_AsciiCharset; + jnc_Charset__init_(var$1, $rt_s(5320), $rt_createArray(jl_String, 0)); + jnc_StandardCharsets_US_ASCII = var$1; + var$1 = new jnci_Iso8859Charset; + jnc_Charset__init_(var$1, $rt_s(5321), $rt_createArray(jl_String, 0)); + jnc_StandardCharsets_ISO_8859_1 = var$1; + jnc_StandardCharsets_UTF_16 = jnci_UTF16Charset__init_($rt_s(5322), 1, 0); + jnc_StandardCharsets_UTF_16BE = jnci_UTF16Charset__init_($rt_s(5323), 0, 0); + jnc_StandardCharsets_UTF_16LE = jnci_UTF16Charset__init_($rt_s(5324), 0, 1); +}; +function ju_IdentityHashMap() { + let a = this; ju_AbstractMap.call(a); + a.$elementCount1 = 0; + a.$elementData1 = null; + a.$modCount2 = 0; + a.$loadFactor1 = 0.0; + a.$threshold4 = 0; +} +let ju_IdentityHashMap__init_ = $this => { + let var$1; + var$1 = ju_IdentityHashMap_calculateCapacity(16); + $this.$elementCount1 = 0; + $this.$elementData1 = $rt_createArray(ju_IdentityHashMap$HashEntry, var$1); + $this.$loadFactor1 = 0.75; + ju_IdentityHashMap_computeThreshold($this); +}, +ju_IdentityHashMap__init_0 = () => { + let var_0 = new ju_IdentityHashMap(); + ju_IdentityHashMap__init_(var_0); + return var_0; +}, +ju_IdentityHashMap_calculateCapacity = $x => { + let var$2; + if ($x >= 1073741824) + return 1073741824; + if (!$x) + return 16; + var$2 = $x - 1 | 0; + $x = var$2 | var$2 >> 1; + $x = $x | $x >> 2; + $x = $x | $x >> 4; + $x = $x | $x >> 8; + return ($x | $x >> 16) + 1 | 0; +}, +ju_IdentityHashMap_computeThreshold = $this => { + $this.$threshold4 = $this.$elementData1.data.length * $this.$loadFactor1 | 0; +}, +ju_IdentityHashMap_findNonNullKeyEntry = ($this, $key, $index, $keyHash) => { + let $m; + $m = $this.$elementData1.data[$index]; + while ($m !== null && !($m.$origKeyHash0 == $keyHash && ($key !== $m.$key0 ? 0 : 1))) { + $m = $m.$next11; + } + return $m; +}, +ju_IdentityHashMap_findNullKeyEntry = $this => { + let $m; + $m = $this.$elementData1.data[0]; + while ($m !== null && $m.$key0 !== null) { + $m = $m.$next11; + } + return $m; +}, +ju_IdentityHashMap_put = ($this, $key, $value) => { + let var$3, var$4, var$5; + if ($key === null) { + var$3 = ju_IdentityHashMap_findNullKeyEntry($this); + if (var$3 === null) { + $this.$modCount2 = $this.$modCount2 + 1 | 0; + var$3 = ju_IdentityHashMap_createHashedEntry($this, null, 0, 0); + var$4 = $this.$elementCount1 + 1 | 0; + $this.$elementCount1 = var$4; + if (var$4 > $this.$threshold4) + ju_IdentityHashMap_rehash($this); + } + } else { + var$4 = jl_Object_identity($key); + var$5 = var$4 & ($this.$elementData1.data.length - 1 | 0); + var$3 = ju_IdentityHashMap_findNonNullKeyEntry($this, $key, var$5, var$4); + if (var$3 === null) { + $this.$modCount2 = $this.$modCount2 + 1 | 0; + var$3 = ju_IdentityHashMap_createHashedEntry($this, $key, var$5, var$4); + var$4 = $this.$elementCount1 + 1 | 0; + $this.$elementCount1 = var$4; + if (var$4 > $this.$threshold4) + ju_IdentityHashMap_rehash($this); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + $key = var$3.$value9; + var$3.$value9 = $value; + return $key; +}, +ju_IdentityHashMap_createHashedEntry = ($this, $key, $index, $hash) => { + let $entry, var$5; + $entry = new ju_IdentityHashMap$HashEntry; + ju_MapEntry__init_($entry, $key, null); + $entry.$origKeyHash0 = $hash; + var$5 = $this.$elementData1.data; + $entry.$next11 = var$5[$index]; + var$5[$index] = $entry; + return $entry; +}, +ju_IdentityHashMap_rehash = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = $this.$elementData1.data.length; + var$1 = ju_IdentityHashMap_calculateCapacity(!var$1 ? 1 : var$1 << 1); + var$2 = $rt_createArray(ju_IdentityHashMap$HashEntry, var$1); + var$3 = var$2.data; + var$4 = 0; + var$5 = var$1 - 1 | 0; + while (true) { + var$6 = $this.$elementData1.data; + if (var$4 >= var$6.length) + break; + var$7 = var$6[var$4]; + var$6[var$4] = null; + while (var$7 !== null) { + var$1 = var$7.$origKeyHash0 & var$5; + var$8 = var$7.$next11; + var$7.$next11 = var$3[var$1]; + var$3[var$1] = var$7; + var$7 = var$8; + } + var$4 = var$4 + 1 | 0; + } + $this.$elementData1 = var$2; + ju_IdentityHashMap_computeThreshold($this); +}; +function oavrd_DFA$1() { + jl_Object.call(this); + this.$this$019 = null; +} +let oavrd_DFA$1_compare = ($this, var$1, var$2) => { + var$1 = var$1; + var$2 = var$2; + return var$1.$stateNumber0 - var$2.$stateNumber0 | 0; +}; +function oavr_LexerNoViableAltException() { + let a = this; oavr_RecognitionException.call(a); + a.$startIndex1 = 0; + a.$deadEndConfigs = null; +} +let oavr_LexerNoViableAltException_getInputStream = $this => { + return $this.$input; +}, +oavr_LexerNoViableAltException_toString = $this => { + let $symbol, var$2, var$3, var$4, var$5, var$6, var$7, var$8; + $symbol = $rt_s(4); + var$2 = $this.$startIndex1; + if (var$2 >= 0 && var$2 < (oavr_LexerNoViableAltException_getInputStream($this)).$size4) { + $symbol = oavr_LexerNoViableAltException_getInputStream($this); + var$2 = $this.$startIndex1; + $symbol = $symbol.$getText0(oavrm_Interval_of(var$2, var$2)); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = (jl_String_toCharArray($symbol)).data; + var$2 = var$4.length; + var$5 = 0; + while (var$5 < var$2) { + var$6 = var$4[var$5]; + if (var$6 == 9) + jl_AbstractStringBuilder_append(var$3, $rt_s(4250)); + else if (var$6 == 10) + jl_AbstractStringBuilder_append(var$3, $rt_s(4246)); + else if (var$6 != 13) + jl_AbstractStringBuilder_append0(var$3, var$6); + else + jl_AbstractStringBuilder_append(var$3, $rt_s(4248)); + var$5 = var$5 + 1 | 0; + } + $symbol = jl_AbstractStringBuilder_toString(var$3); + } + var$7 = ju_Locale_getDefault(); + var$4 = $rt_createArray(jl_Object, 2); + var$8 = var$4.data; + var$8[0] = jl_Class_getSimpleName($rt_cls(oavr_LexerNoViableAltException)); + var$8[1] = $symbol; + return jl_String_format0(var$7, $rt_s(5325), var$4); +}; +function ju_AbstractList$TListIteratorImpl() { + let a = this; jl_Object.call(a); + a.$i0 = 0; + a.$j = 0; + a.$lastModCount = 0; + a.$sz = 0; + a.$this$0 = null; +} +let ju_AbstractList$TListIteratorImpl_hasNext = $this => { + return $this.$i0 >= $this.$sz ? 0 : 1; +}, +ju_AbstractList$TListIteratorImpl_next = $this => { + let var$1, var$2; + ju_AbstractList$TListIteratorImpl_checkConcurrentModification($this); + var$1 = $this.$i0; + if (var$1 == $this.$sz) { + var$2 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); + } + $this.$j = var$1; + var$2 = $this.$this$0; + $this.$i0 = var$1 + 1 | 0; + return var$2.$get0(var$1); +}, +ju_AbstractList$TListIteratorImpl_previous = $this => { + let var$1, var$2; + ju_AbstractList$TListIteratorImpl_checkConcurrentModification($this); + var$1 = $this.$i0 - 1 | 0; + $this.$j = var$1; + if (var$1 >= 0) { + var$2 = $this.$this$0; + $this.$i0 = var$1; + return var$2.$get0(var$1); + } + var$2 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$2); + $rt_throw(var$2); +}, +ju_AbstractList$TListIteratorImpl_nextIndex = $this => { + return $this.$i0; +}, +ju_AbstractList$TListIteratorImpl_set = ($this, $e) => { + if ($this.$j != (-1)) { + ju_AbstractList$TListIteratorImpl_checkConcurrentModification($this); + $this.$this$0.$set1($this.$j, $e); + return; + } + $e = new jl_IllegalStateException; + jl_Throwable__init_0($e); + $rt_throw($e); +}, +ju_AbstractList$TListIteratorImpl_checkConcurrentModification = $this => { + let var$1; + if ($this.$lastModCount >= $this.$this$0.$modCount) + return; + var$1 = new ju_ConcurrentModificationException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); +}, +oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isAggregate); +}, +oncifp_InternalSyntaxUsageStats = $rt_classWithoutFields(0), +oncifp_InternalSyntaxUsageStatsNoOp$ = $rt_classWithoutFields(), +oncifp_InternalSyntaxUsageStatsNoOp$_MODULE$ = null, +oncifp_InternalSyntaxUsageStatsNoOp$__clinit_ = () => { + oncifp_InternalSyntaxUsageStatsNoOp$_MODULE$ = new oncifp_InternalSyntaxUsageStatsNoOp$; +}; +function scm_HashMap$addAll$lambda$_42_0() { + jl_Object.call(this); + this.$_096 = null; +} +let scm_HashMap$addAll$lambda$_42_0_apply = (var$0, var$1, var$2, var$3) => { + scm_HashMap_$anonfun$addAll$1(var$0.$_096, var$1, var$2, sr_BoxesRunTime_unboxToInt(var$3)); + return sr_BoxedUnit_UNIT; +}; +function scm_HashMap$addAll$lambda$_42_1() { + jl_Object.call(this); + this.$_0765 = null; +} +let scm_HashMap$addAll$lambda$_42_1_apply = (var$0, var$1, var$2) => { + let var$3, var$4; + var$3 = var$0.$_0765; + var$4 = sr_Statics_anyHash(var$1); + return scm_HashMap_put00(var$3, var$1, var$2, var$4 ^ (var$4 >>> 16 | 0), 0); +}; +function oavrm_FlexibleHashMap$Entry() { + let a = this; jl_Object.call(a); + a.$key6 = null; + a.$value19 = null; +} +let oavrm_FlexibleHashMap$Entry_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append(var$1, oavra_ATNConfig_toString($this.$key6)); + jl_AbstractStringBuilder_append(var$1, $rt_s(92)); + jl_AbstractStringBuilder_append(var$1, ju_BitSet_toString($this.$value19)); + return jl_AbstractStringBuilder_toString(var$1); +}; +function jusi_FilteringStreamImpl() { + jusi_WrappingStreamImpl.call(this); + this.$filter5 = null; +} +let jusi_FilteringStreamImpl_wrap = ($this, $consumer) => { + let var$2; + var$2 = new jusi_FilteringStreamImpl$wrap$lambda$_1_0; + var$2.$_01150 = $this; + var$2.$_140 = $consumer; + return var$2; +}; +function ju_AbstractList$SubAbstractList() { + let a = this; ju_AbstractList.call(a); + a.$fullList = null; + a.$offset4 = 0; + a.$size9 = 0; +} +let ju_AbstractList$SubAbstractList__init_ = ($this, $list, $start, $end) => { + $this.$fullList = $list; + $this.$modCount = $list.$modCount; + $this.$offset4 = $start; + $this.$size9 = $end - $start | 0; }, -oncipv_Cypher5Parser_showServers = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowServersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 418, 209); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2716); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 248 && $_la != 249) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2718); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2717); - oncipv_Cypher5Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +ju_AbstractList$SubAbstractList__init_0 = (var_0, var_1, var_2) => { + let var_3 = new ju_AbstractList$SubAbstractList(); + ju_AbstractList$SubAbstractList__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +ju_AbstractList$SubAbstractList_get = ($this, $location) => { + let var$2, var$3; + var$2 = $this.$modCount; + var$3 = $this.$fullList; + if (var$2 != var$3.$modCount) { + var$3 = new ju_ConcurrentModificationException; + jl_Throwable__init_0(var$3); + $rt_throw(var$3); } - return $_localctx; + if (0 <= $location && $location < $this.$size9) + return var$3.$get0($location + $this.$offset4 | 0); + var$3 = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0(var$3); + $rt_throw(var$3); }, -oncipv_Cypher5Parser_allocationCommand = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AllocationCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 420, 210); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2721); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 88) { - oavr_Recognizer_setState($this, 2720); - oavr_Parser_match($this, 88); - } - e: { - oavr_Recognizer_setState($this, 2725); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 70: - oavr_Recognizer_setState($this, 2723); - oncipv_Cypher5Parser_deallocateDatabaseFromServers($this); - break e; - case 219: - oavr_Recognizer_setState($this, 2724); - oncipv_Cypher5Parser_reallocateDatabases($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +ju_AbstractList$SubAbstractList_iterator = $this => { + return ju_AbstractList$SubAbstractList_listIterator($this, 0); +}, +ju_AbstractList$SubAbstractList_listIterator = ($this, $location) => { + let var$2, var$3, var$4; + var$2 = $this.$modCount; + var$3 = $this.$fullList; + if (var$2 != var$3.$modCount) { + var$3 = new ju_ConcurrentModificationException; + jl_Throwable__init_0(var$3); + $rt_throw(var$3); } - return $_localctx; + if (0 <= $location && $location <= $this.$size9) { + var$4 = new ju_AbstractList$SubAbstractList$SubAbstractListIterator; + var$3 = var$3.$listIterator($location + $this.$offset4 | 0); + $location = $this.$offset4; + var$2 = $this.$size9; + var$4.$iterator4 = var$3; + var$4.$subList0 = $this; + var$4.$start12 = $location; + var$4.$end2 = $location + var$2 | 0; + return var$4; + } + var$3 = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0(var$3); + $rt_throw(var$3); }, -oncipv_Cypher5Parser_deallocateDatabaseFromServers = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 422, 211); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2727); - oavr_Parser_match($this, 70); - oavr_Recognizer_setState($this, 2728); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 65 && $_la != 66) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2729); - oavr_Parser_match($this, 114); - oavr_Recognizer_setState($this, 2730); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 248 && $_la != 249) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2731); - oncipv_Cypher5Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2736); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 2732); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 2733); - oncipv_Cypher5Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 2738); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +ju_AbstractList$SubAbstractList_size = $this => { + let var$1; + if ($this.$modCount == $this.$fullList.$modCount) + return $this.$size9; + var$1 = new ju_ConcurrentModificationException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); +}, +ju_AbstractList$SubAbstractListRandomAccess = $rt_classWithoutFields(ju_AbstractList$SubAbstractList); +function scm_TreeSet$$anon$1() { + let a = this; jl_Object.call(a); + a.$tree = null; + a.$ordering$1 = null; +} +let scm_TreeSet$$anon$1_addAll = ($this, $xs) => { + return scm_Growable_addAll$($this, $xs); +}, +scm_TreeSet$$anon$1_result = $this => { + return scm_TreeSet__init_($this.$tree, $this.$ordering$1); +}, +scm_TreeSet$$anon$1_addOne = ($this, $elem) => { + scm_RedBlackTree$_insert(scm_RedBlackTree$_MODULE$, $this.$tree, $elem, null, $this.$ordering$1); + return $this; +}; +function oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0() { + let a = this; jl_Object.call(a); + a.$_0323 = null; + a.$_1115 = null; +} +let oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0323; + var$3 = var$0.$_1115; + oncifp_ListCoercedToBooleanCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$4 = oncius_package$_MODULE$; + return jl_Boolean_valueOf(oncius_TypeSpec_containsAll(oncius_ListType_covariant(oncius_package$_CTList(var$4, oncius_package$_CTAny(var$4))), var$1.$specified) && oncifp_ExpectedBooleanTypeCheck_isExpectedTypeBoolean$(oncifp_ListCoercedToBooleanCheck$_MODULE$, var$2, var$3) ? 1 : 0); +}, +oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0 = $rt_classWithoutFields(), +oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = s_Tuple2__1$mcI$sp(var$1); + var$1 = var$1.$_2(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = jl_StringBuilder_append0(var$3, var$2); + jl_AbstractStringBuilder_append0(var$4, 40); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, var$1), 41); + return jl_AbstractStringBuilder_toString(var$3); +}; +function sc_SeqOps$occCounts$lambda$_124_0() { + jl_Object.call(this); + this.$_01003 = null; +} +let sc_SeqOps$occCounts$lambda$_124_0_apply = (var$0, var$1) => { + return scm_HashMap_updateWith(var$0.$_01003, var$1, new sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0); +}; +function sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0() { + let a = this; jl_Object.call(a); + a.$_01004 = null; + a.$_1343 = null; +} +let sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_01004; + var$3 = var$0.$_1343; + if (jl_Object_equals(s_None$_MODULE$, var$1)) + var$1 = s_None$_MODULE$; + else { + if (!(var$1 instanceof s_Some)) + $rt_throw(s_MatchError__init_(var$1)); + var$4 = sr_BoxesRunTime_unboxToInt(var$1.$value5); + var$2.$addOne(var$3); + var$1 = var$4 == 1 ? s_None$_MODULE$ : s_Some__init_(jl_Integer_valueOf(var$4 - 1 | 0)); } - return $_localctx; + return var$1; +}; +function oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0() { + jl_Object.call(this); + this.$_0507 = null; +} +let oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0507; + s_Predef$_$callClinit(); + return oncip_CypherErrorVocabulary_getDisplayName(var$2, sr_BoxesRunTime_unboxToInt(var$1)); +}; +function oncie_ImplicitProcedureArgument() { + let a = this; oncie_Expression.call(a); + a.$name33 = null; + a.$parameterType2 = null; + a.$defaultValue0 = null; +} +let oncie_ImplicitProcedureArgument_asCanonicalStringVal = $this => { + let var$1, var$2; + var$1 = $this.$name33; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 36); + jl_StringBuilder_append(var$2, var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipv_Cypher5Parser_reallocateDatabases = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ReallocateDatabasesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 424, 212); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2739); - oavr_Parser_match($this, 219); - oavr_Recognizer_setState($this, 2740); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 65 && $_la != 66) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncie_ImplicitProcedureArgument_position = $this => { + onciu_InputPosition$_$callClinit(); + return onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$); +}, +oncie_ImplicitProcedureArgument_isConstantForQuery = $this => { + return 0; +}, +oncie_ImplicitProcedureArgument_productPrefix = $this => { + return $rt_s(5326); +}, +oncie_ImplicitProcedureArgument_productArity = $this => { + return 3; +}, +oncie_ImplicitProcedureArgument_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name33; + case 1: + return $this.$parameterType2; + case 2: + return $this.$defaultValue0; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_createRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 426, 213); +oncie_ImplicitProcedureArgument_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ImplicitProcedureArgument_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ImplicitProcedureArgument_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ImplicitProcedureArgument_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2742); - oavr_Parser_match($this, 235); - oavr_Recognizer_setState($this, 2743); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2747); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2744); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2745); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2746); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 2753); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2749); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 2750); - oavr_Parser_match($this, 58); - oavr_Recognizer_setState($this, 2751); - oavr_Parser_match($this, 183); - oavr_Recognizer_setState($this, 2752); - oncipv_Cypher5Parser_commandNameExpression($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ImplicitProcedureArgument) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$name33; + var$3 = $x$1.$name33; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$3 !== null) + break b; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_dropRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 428, 214); - a: { - b: { - c: { d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2755); - oavr_Parser_match($this, 235); - oavr_Recognizer_setState($this, 2756); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2759); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2757); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2758); - oavr_Parser_match($this, 105); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$parameterType2; + var$3 = $x$1.$parameterType2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!sr_BoxesRunTime_equals($this.$defaultValue0, $x$1.$defaultValue0)) + break b; + if (!($this instanceof oncie_ImplicitProcedureArgument)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_renameRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RenameRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 430, 215); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2761); - oavr_Parser_match($this, 235); - oavr_Recognizer_setState($this, 2762); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2765); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2763); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2764); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 2767); - oavr_Parser_match($this, 274); - oavr_Recognizer_setState($this, 2768); - oncipv_Cypher5Parser_commandNameExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncie_ImplicitProcedureArgument__init_0 = ($this, $name, $parameterType, $defaultValue) => { + $this.$name33 = $name; + $this.$parameterType2 = $parameterType; + $this.$defaultValue0 = $defaultValue; + oncie_Expression__init_($this); +}, +oncie_ImplicitProcedureArgument__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_ImplicitProcedureArgument(); + oncie_ImplicitProcedureArgument__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncie_ExplicitParameter$ = $rt_classWithoutFields(), +oncie_ExplicitParameter$_MODULE$ = null, +oncie_ExplicitParameter$_$callClinit = () => { + oncie_ExplicitParameter$_$callClinit = $rt_eraseClinit(oncie_ExplicitParameter$); + oncie_ExplicitParameter$__clinit_(); +}, +oncie_ExplicitParameter$__clinit_ = () => { + let var$1; + var$1 = new oncie_ExplicitParameter$; + oncie_ExplicitParameter$_$callClinit(); + oncie_ExplicitParameter$_MODULE$ = var$1; +}, +oncie_ExplicitParameter$_$lessinit$greater$default$3 = $this => { + onciu_UnknownSize$_$callClinit(); + return onciu_UnknownSize$_MODULE$; +}, +oncie_ExplicitParameter$_apply$default$3 = $this => { + onciu_UnknownSize$_$callClinit(); + return onciu_UnknownSize$_MODULE$; +}; +function oncie_CoerceTo() { + let a = this; oncie_Expression.call(a); + a.$expr5 = null; + a.$typ0 = null; +} +let oncie_CoerceTo_expr = $this => { + return $this.$expr5; +}, +oncie_CoerceTo_position = $this => { + return $this.$expr5.$position(); +}, +oncie_CoerceTo_isConstantForQuery = $this => { + return $this.$expr5.$isConstantForQuery(); +}, +oncie_CoerceTo_productPrefix = $this => { + return $rt_s(5327); +}, +oncie_CoerceTo_productArity = $this => { + return 2; +}, +oncie_CoerceTo_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expr5; + case 1: + return $this.$typ0; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_showRoles = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowRolesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 432, 216); +oncie_CoerceTo_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_CoerceTo_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_CoerceTo_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_CoerceTo_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2771); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 18 && $_la != 202)) { - oavr_Recognizer_setState($this, 2770); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 18 && $_la != 202) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2773); - oncipv_Cypher5Parser_roleToken($this); - oavr_Recognizer_setState($this, 2776); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 302) { - oavr_Recognizer_setState($this, 2774); - oavr_Parser_match($this, 302); - oavr_Recognizer_setState($this, 2775); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 291 && $_la != 292) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2779); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2778); - oncipv_Cypher5Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_CoerceTo) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expr5; + var$3 = $x$1.$expr5; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$3 !== null) + break b; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_grantRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GrantRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 434, 217); - a: { - b: { - c: { d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2781); - oncipv_Cypher5Parser_roleNames($this); - oavr_Recognizer_setState($this, 2782); - oavr_Parser_match($this, 274); - oavr_Recognizer_setState($this, 2783); - oncipv_Cypher5Parser_userNames($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$typ0; + $x$1 = $x$1.$typ0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_CoerceTo)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_revokeRole = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RevokeRoleContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 436, 218); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2785); - oncipv_Cypher5Parser_roleNames($this); - oavr_Recognizer_setState($this, 2786); - oavr_Parser_match($this, 114); - oavr_Recognizer_setState($this, 2787); - oncipv_Cypher5Parser_userNames($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncie_CoerceTo__init_0 = ($this, $expr, $typ) => { + $this.$expr5 = $expr; + $this.$typ0 = $typ; + oncie_Expression__init_($this); +}, +oncie_CoerceTo__init_ = (var_0, var_1) => { + let var_2 = new oncie_CoerceTo(); + oncie_CoerceTo__init_0(var_2, var_0, var_1); + return var_2; +}, +oncias_OptionSemanticChecking$ = $rt_classWithoutFields(), +oncias_OptionSemanticChecking$_MODULE$ = null, +oncias_OptionSemanticChecking$_$callClinit = () => { + oncias_OptionSemanticChecking$_$callClinit = $rt_eraseClinit(oncias_OptionSemanticChecking$); + oncias_OptionSemanticChecking$__clinit_(); +}, +oncias_OptionSemanticChecking$__clinit_ = () => { + let var$1; + var$1 = new oncias_OptionSemanticChecking$; + oncias_OptionSemanticChecking$_$callClinit(); + oncias_OptionSemanticChecking$_MODULE$ = var$1; +}, +oncias_OptionSemanticChecking$_foldSemanticCheck$extension = ($this, $$this, $check) => { + return s_Option_fold($$this, new oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0, $check); +}; +function oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0() { + jl_Object.call(this); + this.$_0540 = null; +} +let oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0540; + var$3 = var$1.$semanticCheck(); + var$4 = new oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0; + var$4.$_0295 = var$1; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_flatMap$(var$3, var$4), var$2.$recordCurrentScope(var$1)); +}; +function oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_0() { + let a = this; jl_Object.call(a); + a.$_0614 = null; + a.$_1208 = null; + a.$_268 = null; +} +let oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0614; + return sci_SetBuilderImpl_addOne(var$0.$_1208, oncia_Union$Mapping$2$_apply(oncia_Union_Mapping$3(var$2, var$0.$_268), var$1.$unionVariable, var$1.$variableInLhs.$name4, var$1.$variableInRhs.$name4)); +}; +function oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_1() { + let a = this; jl_Object.call(a); + a.$_0293 = null; + a.$_1106 = null; + a.$_238 = null; +} +let oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0293; + var$3 = var$0.$_1106; + var$4 = oncia_Union_Mapping$3(var$2, var$0.$_238); + var$5 = new oncie_Variable; + var$6 = var$2.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$5, var$1, var$6, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + return sci_SetBuilderImpl_addOne(var$3, oncia_Union$Mapping$2$_apply(var$4, var$5, var$1, var$1)); +}; +function oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_2() { + let a = this; jl_Object.call(a); + a.$_0728 = null; + a.$_1244 = null; + a.$_281 = null; +} +let oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0728; + var$3 = var$0.$_1244; + var$4 = var$0.$_281; + var$2 = oncias_Scope_symbol(var$2, var$1.$variableInLhsName); + var$5 = new oncia_Union$$anonfun$defineUnionVariables$5$lambda$_57_0; + var$5.$_0203 = var$3; + var$5.$_175 = var$1; + var$5.$_227 = var$4; + return s_Option_flatMap(var$2, var$5); +}; +function oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_3() { + let a = this; jl_Object.call(a); + a.$_0947 = null; + a.$_1326 = null; + a.$_2111 = null; +} +let oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_3_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0947; + var$3 = var$0.$_1326; + var$4 = oncia_Union_Mapping$3(var$2, var$0.$_2111); + var$5 = new oncie_Variable; + var$6 = var$2.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$5, var$1, var$6, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + return sci_SetBuilderImpl_addOne(var$3, oncia_Union$Mapping$2$_apply(var$4, var$5, var$1, var$1)); +}, +oncia_AdministrationCommandSemanticAnalysis$ = $rt_classWithoutFields(), +oncia_AdministrationCommandSemanticAnalysis$_MODULE$ = null, +oncia_AdministrationCommandSemanticAnalysis$_$callClinit = () => { + oncia_AdministrationCommandSemanticAnalysis$_$callClinit = $rt_eraseClinit(oncia_AdministrationCommandSemanticAnalysis$); + oncia_AdministrationCommandSemanticAnalysis$__clinit_(); +}, +oncia_AdministrationCommandSemanticAnalysis$__clinit_ = () => { + let var$1; + var$1 = new oncia_AdministrationCommandSemanticAnalysis$; + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + oncia_AdministrationCommandSemanticAnalysis$_MODULE$ = var$1; +}, +oncia_AdministrationCommandSemanticAnalysis$_unsupportedRequestErrorOnSystemDatabase = ($this, $invalidInput, $legacyMessage, $position) => { + let var$4, var$5, var$6, var$7; + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$7 = var$6.data; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$7[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N17), ong_GqlParams$StringParam_input, $invalidInput)))), $legacyMessage, $position); + return oncias_SemanticCheck$_error(var$4, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); +}, +oncia_AdministrationCommandSemanticAnalysis$_missingMandatoryAuthClauseError = ($this, $clause, $authProvider, $legacyMessage, $position) => { + let var$5, var$6, var$7, var$8; + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$8 = var$7.data; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$8[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N97), ong_GqlParams$StringParam_clause, $clause), ong_GqlParams$StringParam_auth, $authProvider)), $legacyMessage, $position); + return oncias_SemanticCheck$_error(var$5, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); +}, +oncia_AdministrationCommandSemanticAnalysis$_duplicateClauseError = ($this, $clause, $legacyMessage, $position) => { + let var$4, var$5, var$6, var$7; + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$7 = var$6.data; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$7[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N19), ong_GqlParams$StringParam_syntax, $clause)), $legacyMessage, $position); + return oncias_SemanticCheck$_error(var$4, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); +}, +oncia_AdministrationCommandSemanticAnalysis$_inputContainsInvalidCharactersError = ($this, $invalidInput, $context, $legacyMessage, $position) => { + let var$5, var$6, var$7, var$8; + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$8 = var$7.data; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$8[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N05), $position.$offset(), $position.$line(), $position.$column()), ong_GqlParams$StringParam_input, $invalidInput), + ong_GqlParams$StringParam_context, $context), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N82), $position.$offset(), $position.$line(), $position.$column()), ong_GqlParams$StringParam_input, $invalidInput), ong_GqlParams$StringParam_context, $context)))), + $legacyMessage, $position); + return oncias_SemanticCheck$_error(var$5, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); +}, +oncia_AdministrationCommandSemanticAnalysis$_invalidPropertyBasedAccessControlRuleInvolvingNontrivialPredicatesError = ($this, $unsupportedExpression, $legacyMessage, $position) => { + let var$4, var$5, var$6, var$7; + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$7 = var$6.data; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$7[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA0), $position.$offset(), $position.$line(), $position.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA7), + $position.$offset(), $position.$line(), $position.$column()), ong_GqlParams$StringParam_expr, $unsupportedExpression)))), $legacyMessage, $position); + return oncias_SemanticCheck$_error(var$4, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); +}; +function oncie_PatternComprehension() { + let a = this; oncie_Expression.call(a); + a.$namedPath0 = null; + a.$pattern11 = null; + a.$predicate3 = null; + a.$projection0 = null; + a.$position46 = null; + a.$computedIntroducedVariables4 = null; + a.$computedScopeDependencies4 = null; +} +let oncie_PatternComprehension_introducedVariables = $this => { + return oncie_ExpressionWithComputedDependencies_introducedVariables$($this); +}, +oncie_PatternComprehension_scopeDependencies = $this => { + return oncie_ExpressionWithComputedDependencies_scopeDependencies$($this); +}, +oncie_PatternComprehension_dependencies = $this => { + return $this.$scopeDependencies(); +}, +oncie_PatternComprehension_isConstantForQuery = $this => { + return 0; +}, +oncie_PatternComprehension_namedPath = $this => { + return $this.$namedPath0; +}, +oncie_PatternComprehension_pattern = $this => { + return $this.$pattern11; +}, +oncie_PatternComprehension_predicate = $this => { + return $this.$predicate3; +}, +oncie_PatternComprehension_projection = $this => { + return $this.$projection0; +}, +oncie_PatternComprehension_position = $this => { + return $this.$position46; +}, +oncie_PatternComprehension_computedIntroducedVariables = $this => { + return $this.$computedIntroducedVariables4; +}, +oncie_PatternComprehension_computedScopeDependencies = $this => { + return $this.$computedScopeDependencies4; +}, +oncie_PatternComprehension_withComputedIntroducedVariables = ($this, $computedIntroducedVariables) => { + return oncie_PatternComprehension_copy($this, $this.$namedPath0, $this.$pattern11, $this.$predicate3, $this.$projection0, $this.$position46, s_Some__init_($computedIntroducedVariables), $this.$computedScopeDependencies4); +}, +oncie_PatternComprehension_withComputedScopeDependencies = ($this, $computedScopeDependencies) => { + return oncie_PatternComprehension_copy($this, $this.$namedPath0, $this.$pattern11, $this.$predicate3, $this.$projection0, $this.$position46, $this.$computedIntroducedVariables4, s_Some__init_($computedScopeDependencies)); +}, +oncie_PatternComprehension_subqueryAstNode = $this => { + return $this.$pattern11; +}, +oncie_PatternComprehension_dup = ($this, $children) => { + return oncie_PatternComprehension__init_0($children.$apply1(0), $children.$apply1(1), $children.$apply1(2), $children.$apply1(3), $this.$position46, $this.$computedIntroducedVariables4, $this.$computedScopeDependencies4); +}, +oncie_PatternComprehension_copy = ($this, $namedPath, $pattern, $predicate, $projection, $position, $computedIntroducedVariables, $computedScopeDependencies) => { + return oncie_PatternComprehension__init_0($namedPath, $pattern, $predicate, $projection, $position, $computedIntroducedVariables, $computedScopeDependencies); +}, +oncie_PatternComprehension_productPrefix = $this => { + return $rt_s(5328); +}, +oncie_PatternComprehension_productArity = $this => { + return 4; +}, +oncie_PatternComprehension_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$namedPath0; + case 1: + return $this.$pattern11; + case 2: + return $this.$predicate3; + case 3: + return $this.$projection0; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_createUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 438, 219); +oncie_PatternComprehension_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternComprehension_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternComprehension_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternComprehension_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2789); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 2790); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2794); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2791); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2792); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 2793); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 2805); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - e: { - oavr_Recognizer_setState($this, 2796); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 2803); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 325, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2798); - oavr_Parser_match($this, 193); - oavr_Recognizer_setState($this, 2799); - oncipv_Cypher5Parser_passwordChangeRequired($this); - break e; - case 3: - oavr_Recognizer_setState($this, 2800); - oncipv_Cypher5Parser_userStatus($this); - break e; - case 4: - oavr_Recognizer_setState($this, 2801); - oncipv_Cypher5Parser_homeDatabase($this); - break e; - case 5: - oavr_Recognizer_setState($this, 2802); - oncipv_Cypher5Parser_setAuthClause($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 2797); - oncipv_Cypher5Parser_password($this); - } - oavr_Recognizer_setState($this, 2807); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 250) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PatternComprehension) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$namedPath0; + var$3 = $x$1.$namedPath0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$3 !== null) + break b; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_dropUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 440, 220); - a: { - b: { - c: { d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2809); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 2810); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2813); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2811); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2812); - oavr_Parser_match($this, 105); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$pattern11; + var$3 = $x$1.$pattern11; + if (var$2 !== null) { + if (!oncie_RelationshipsPattern_equals(var$2, var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$2 = $this.$predicate3; + var$3 = $x$1.$predicate3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_renameUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RenameUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 442, 221); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2815); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 2816); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2819); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2817); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2818); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 2821); - oavr_Parser_match($this, 274); - oavr_Recognizer_setState($this, 2822); - oncipv_Cypher5Parser_commandNameExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + f: { + var$3 = $this.$projection0; + $x$1 = $x$1.$projection0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break f; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_PatternComprehension)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_alterCurrentUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterCurrentUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 444, 222); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2824); - oavr_Parser_match($this, 63); - oavr_Recognizer_setState($this, 2825); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 2826); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 2827); - oavr_Parser_match($this, 193); - oavr_Recognizer_setState($this, 2828); - oavr_Parser_match($this, 114); - oavr_Recognizer_setState($this, 2829); - oncipv_Cypher5Parser_passwordExpression($this); - oavr_Recognizer_setState($this, 2830); - oavr_Parser_match($this, 274); - oavr_Recognizer_setState($this, 2831); - oncipv_Cypher5Parser_passwordExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncie_PatternComprehension_dup1 = ($this, $children) => { + return oncie_PatternComprehension_dup($this, $children); +}, +oncie_PatternComprehension_dup0 = ($this, $children) => { + return oncie_PatternComprehension_dup($this, $children); +}, +oncie_PatternComprehension__init_ = ($this, $namedPath, $pattern, $predicate, $projection, $position, $computedIntroducedVariables, $computedScopeDependencies) => { + $this.$namedPath0 = $namedPath; + $this.$pattern11 = $pattern; + $this.$predicate3 = $predicate; + $this.$projection0 = $projection; + $this.$position46 = $position; + $this.$computedIntroducedVariables4 = $computedIntroducedVariables; + $this.$computedScopeDependencies4 = $computedScopeDependencies; + oncie_Expression__init_($this); +}, +oncie_PatternComprehension__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncie_PatternComprehension(); + oncie_PatternComprehension__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; +}; +function oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0() { + jl_Object.call(this); + this.$_0800 = null; +} +let oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = sc_AbstractIterable_toSet(((var$0.$_0800.$returnItems()).$items0.$filter1(new oncia_OrderBy$checkIllegalOrdering$lambda$_11_0)).$map(new oncia_OrderBy$checkIllegalOrdering$lambda$_11_1)); + if (!sc_IterableOnceOps_nonEmpty$(var$2)) + var$1 = s_None$_MODULE$; + else { + var$3 = var$1.$sortItems; + var$1 = new oncia_OrderBy$checkIllegalOrdering$lambda$_11_2; + var$1.$_0950 = var$2; + var$3 = var$3.$flatMap(var$1); + if (!sc_IterableOnceOps_nonEmpty$(var$3)) + var$1 = s_None$_MODULE$; + else { + var$1 = new s_Some; + oncias_SemanticError$_$callClinit(); + var$2 = oncias_SemanticError$_MODULE$; + var$4 = sc_AbstractIterable_mkString(var$3.$map(new oncia_OrderBy$checkIllegalOrdering$lambda$_11_3), $rt_s(45)); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5329)), var$4), $rt_s(5330)); + s_Some__init_0(var$1, oncias_SemanticError$_apply(var$2, jl_AbstractStringBuilder_toString(var$5), (var$3.$head()).$position())); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + return var$1; +}; +function oncia_GraphFunctionReference() { + let a = this; oncie_Expression.call(a); + a.$functionInvocation1 = null; + a.$position301 = null; +} +let oncia_GraphFunctionReference_semanticCheck = $this => { + return oncia_GraphReference_semanticCheck$($this); }, -oncipv_Cypher5Parser_alterUser = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 446, 223); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2833); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 2834); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 2837); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 2835); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 2836); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 2852); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - e: { - f: while (true) { - if ($_la != 226) - break e; - g: { - oavr_Recognizer_setState($this, 2839); - oavr_Parser_match($this, 226); - oavr_Recognizer_setState($this, 2848); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 18: - oavr_Recognizer_setState($this, 2842); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 2843); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 2845); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 212 && $_la != 213) - break g; - oavr_Recognizer_setState($this, 2844); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 212 && $_la != 213) { - $this.$_errHandler.$recoverInline($this); - break g; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break g; - case 29: - break; - case 126: - oavr_Recognizer_setState($this, 2840); - oavr_Parser_match($this, 126); - oavr_Recognizer_setState($this, 2841); - oavr_Parser_match($this, 65); - break g; - default: - break f; - } - oavr_Recognizer_setState($this, 2847); - oncipv_Cypher5Parser_removeNamedProvider($this); - } - oavr_Recognizer_setState($this, 2854); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 2866); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 250) { - h: { - oavr_Recognizer_setState($this, 2855); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 2862); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 333, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 2857); - oavr_Parser_match($this, 193); - oavr_Recognizer_setState($this, 2858); - oncipv_Cypher5Parser_passwordChangeRequired($this); - break h; - case 3: - oavr_Recognizer_setState($this, 2859); - oncipv_Cypher5Parser_userStatus($this); - break h; - case 4: - oavr_Recognizer_setState($this, 2860); - oncipv_Cypher5Parser_homeDatabase($this); - break h; - case 5: - oavr_Recognizer_setState($this, 2861); - oncipv_Cypher5Parser_setAuthClause($this); - break h; - default: - break h; - } - oavr_Recognizer_setState($this, 2856); - oncipv_Cypher5Parser_password($this); - } - oavr_Recognizer_setState($this, 2868); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_GraphFunctionReference_position = $this => { + return $this.$position301; +}, +oncia_GraphFunctionReference_print = $this => { + onciap_ExpressionStringifier$_$callClinit(); + return onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new oncia_GraphFunctionReference$print$lambda$_53_0, 0, 0, 0, 0), $this.$functionInvocation1); +}, +oncia_GraphFunctionReference_dependencies = $this => { + return oncie_Expression_dependencies($this.$functionInvocation1); +}, +oncia_GraphFunctionReference_isConstantForQuery = $this => { + return (oncie_Expression_arguments($this.$functionInvocation1)).$forall(new oncia_GraphFunctionReference$isConstantForQuery$lambda$_56_0); +}, +oncia_GraphFunctionReference_semanticallyEqual = ($this, $other) => { + let $other_0; + if (!($other instanceof oncia_GraphFunctionReference)) + return 0; + $other_0 = $other.$functionInvocation1; + return oncie_FunctionInvocation_equals($other_0, $this.$functionInvocation1) && (oncie_Expression_arguments($this.$functionInvocation1)).$forall(new oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_0) && (oncie_Expression_arguments($other_0)).$forall(new oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_1) ? 1 : 0; +}, +oncia_GraphFunctionReference_productPrefix = $this => { + return $rt_s(5331); +}, +oncia_GraphFunctionReference_productArity = $this => { + return 1; +}, +oncia_GraphFunctionReference_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$functionInvocation1; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_removeNamedProvider = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RemoveNamedProviderContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 448, 224); +oncia_GraphFunctionReference_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GraphFunctionReference_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GraphFunctionReference_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GraphFunctionReference_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2869); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 2871); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 212 && $_la != 213)) { - oavr_Recognizer_setState($this, 2870); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 212 && $_la != 213) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - e: { - oavr_Recognizer_setState($this, 2876); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 8: - case 9: - oavr_Recognizer_setState($this, 2873); - oncipv_Cypher5Parser_stringLiteral($this); - break e; - case 80: - oavr_Recognizer_setState($this, 2875); - oncipv_Cypher5Parser_parameter($this, $rt_s(708)); - break e; - case 146: - oavr_Recognizer_setState($this, 2874); - oncipv_Cypher5Parser_stringListLiteral($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_GraphFunctionReference) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$functionInvocation1; + $x$1 = $x$1.$functionInvocation1; + if (var$2 !== null) { + if (!oncie_FunctionInvocation_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_password = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PasswordContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 450, 225); +oncia_GraphFunctionReference__init_ = ($this, $functionInvocation, $position) => { + $this.$functionInvocation1 = $functionInvocation; + $this.$position301 = $position; + oncie_Expression__init_($this); +}, +oncia_GraphFunctionReference__init_0 = (var_0, var_1) => { + let var_2 = new oncia_GraphFunctionReference(); + oncia_GraphFunctionReference__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_ASTSlicingPhrase = $rt_classWithoutFields(0), +oncia_ASTSlicingPhrase_semanticCheck$ = $$this => { + return oncia_ASTSlicingPhrase$_checkExpressionIsStaticInt(oncia_ASTSlicingPhrase$_MODULE$, $$this.$expression0(), $$this.$name(), 1); +}; +function oncia_Skip() { + let a = this; jl_Object.call(a); + a.$expression33 = null; + a.$position295 = null; +} +let oncia_Skip_semanticCheck = $this => { + return oncia_ASTSlicingPhrase_semanticCheck$($this); +}, +oncia_Skip_expression = $this => { + return $this.$expression33; +}, +oncia_Skip_position = $this => { + return $this.$position295; +}, +oncia_Skip_name = $this => { + return $rt_s(5083); +}, +oncia_Skip_productPrefix = $this => { + return $rt_s(5332); +}, +oncia_Skip_productArity = $this => { + return 1; +}, +oncia_Skip_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression33; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Skip_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Skip_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Skip_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Skip_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2879); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 97 && $_la != 198)) { - oavr_Recognizer_setState($this, 2878); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 97 && $_la != 198) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2881); - oavr_Parser_match($this, 193); - oavr_Recognizer_setState($this, 2882); - oncipv_Cypher5Parser_passwordExpression($this); - oavr_Recognizer_setState($this, 2884); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 44) { - oavr_Recognizer_setState($this, 2883); - oncipv_Cypher5Parser_passwordChangeRequired($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Skip) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expression33; + $x$1 = $x$1.$expression33; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_Skip)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_passwordOnly = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PasswordOnlyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 452, 226); +oncia_Skip_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Skip__init_ = ($this, $expression, $position) => { + $this.$expression33 = $expression; + $this.$position295 = $position; +}, +oncia_Skip__init_0 = (var_0, var_1) => { + let var_2 = new oncia_Skip(); + oncia_Skip__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_Limit() { + let a = this; jl_Object.call(a); + a.$expression34 = null; + a.$position284 = null; +} +let oncia_Limit_semanticCheck = $this => { + return oncia_ASTSlicingPhrase_semanticCheck$($this); +}, +oncia_Limit_expression = $this => { + return $this.$expression34; +}, +oncia_Limit_position = $this => { + return $this.$position284; +}, +oncia_Limit_name = $this => { + return $rt_s(5333); +}, +oncia_Limit_productPrefix = $this => { + return $rt_s(5334); +}, +oncia_Limit_productArity = $this => { + return 1; +}, +oncia_Limit_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression34; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Limit_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Limit_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Limit_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Limit_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2887); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 97 && $_la != 198)) { - oavr_Recognizer_setState($this, 2886); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 97 && $_la != 198) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 2889); - oavr_Parser_match($this, 193); - oavr_Recognizer_setState($this, 2890); - oncipv_Cypher5Parser_passwordExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Limit) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expression34; + $x$1 = $x$1.$expression34; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_Limit)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_passwordExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PasswordExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 454, 227); +oncia_Limit_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Limit__init_ = ($this, $expression, $position) => { + $this.$expression34 = $expression; + $this.$position284 = $position; +}, +oncia_Limit__init_0 = (var_0, var_1) => { + let var_2 = new oncia_Limit(); + oncia_Limit__init_(var_2, var_0, var_1); + return var_2; +}; +function oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_00() { + let a = this; jl_Object.call(a); + a.$_01081 = null; + a.$_1367 = null; +} +let oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0_apply0 = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_01081; + var$3 = var$0.$_1367; + if ($rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) + return var$1; + if (!(var$1 instanceof oncie_PatternPartWithSelector)) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = var$1; + var$4 = var$2.$exceptionFactory2; + var$1 = var$1.$selector1.$prettified(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5122)), var$1), $rt_s(5335)); + var$2 = jl_AbstractStringBuilder_toString(var$2); + oncipau_Util$_$callClinit(); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3))); +}, +oncie_Pattern = $rt_classWithoutFields(0), +oncie_Pattern_length$ = $$this => { + return sr_BoxesRunTime_unboxToInt(onciu_Foldable$Folder_fold(onciu_Foldable_folder$($$this), jl_Integer_valueOf(0), new oncie_Pattern$$anonfun$length$1)); +}; +function oncie_Pattern$ForUpdate() { + let a = this; jl_Object.call(a); + a.$patternParts1 = null; + a.$position187 = null; +} +let oncie_Pattern$ForUpdate_foldedOver = $this => { + return $this; +}, +oncie_Pattern$ForUpdate_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncie_Pattern$ForUpdate_patternParts = $this => { + return $this.$patternParts1; +}, +oncie_Pattern$ForUpdate_position = $this => { + return $this.$position187; +}, +oncie_Pattern$ForUpdate_mapExpressions = ($this, $f) => { + let var$2, var$3; + var$2 = $this.$patternParts1; + var$3 = new oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0; + var$3.$_0441 = $f; + return oncie_Pattern$ForUpdate_copy($this, var$2.$map(var$3), $this.$position187); +}, +oncie_Pattern$ForUpdate_copy = ($this, $patternParts, $position) => { + return oncie_Pattern$ForUpdate__init_0($patternParts, $position); +}, +oncie_Pattern$ForUpdate_productPrefix = $this => { + return $rt_s(5336); +}, +oncie_Pattern$ForUpdate_productArity = $this => { + return 1; +}, +oncie_Pattern$ForUpdate_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$patternParts1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_Pattern$ForUpdate_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Pattern$ForUpdate_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Pattern$ForUpdate_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Pattern$ForUpdate_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2894); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 8: - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2892); - oncipv_Cypher5Parser_stringLiteral($this); - break e; - case 80: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2893); - oncipv_Cypher5Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Pattern$ForUpdate) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$patternParts1; + $x$1 = $x$1.$patternParts1; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; + } + return var$3; +}, +oncie_Pattern$ForUpdate_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_Pattern$ForUpdate__init_ = ($this, $patternParts, $position) => { + $this.$patternParts1 = $patternParts; + $this.$position187 = $position; +}, +oncie_Pattern$ForUpdate__init_0 = (var_0, var_1) => { + let var_2 = new oncie_Pattern$ForUpdate(); + oncie_Pattern$ForUpdate__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_SetItem = $rt_classWithoutFields(0), +oncia_SetProperty = $rt_classWithoutFields(0); +function oncia_SetPropertyItem() { + let a = this; jl_Object.call(a); + a.$property2 = null; + a.$expression32 = null; + a.$position132 = null; +} +let oncia_SetPropertyItem_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncia_SetPropertyItem_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncia_SetPropertyItem_position = $this => { + return $this.$position132; +}, +oncia_SetPropertyItem_semanticCheck = $this => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$property2); + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(oncias_SemanticPatternCheck$_MODULE$, sci_$colon$colon__init_($this.$property2.$propertyKey0, sci_Nil$_MODULE$))), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression32)), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetPropertyItem$semanticCheck$lambda$_60_0, $this.$property2.$map15)); +}, +oncia_SetPropertyItem_copy = ($this, $property, $expression, $position) => { + return oncia_SetPropertyItem__init_0($property, $expression, $position); +}, +oncia_SetPropertyItem_productPrefix = $this => { + return $rt_s(5337); +}, +oncia_SetPropertyItem_productArity = $this => { + return 2; +}, +oncia_SetPropertyItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$property2; + case 1: + return $this.$expression32; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_passwordChangeRequired = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PasswordChangeRequiredContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 456, 228); +oncia_SetPropertyItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetPropertyItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetPropertyItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetPropertyItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SetPropertyItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$property2; + var$3 = $x$1.$property2; + if (var$2 !== null) { + if (!oncie_Property_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2896); - oavr_Parser_match($this, 44); - oavr_Recognizer_setState($this, 2898); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 179) { - oavr_Recognizer_setState($this, 2897); - oavr_Parser_match($this, 179); - } - oavr_Recognizer_setState($this, 2900); - oavr_Parser_match($this, 231); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$expression32; + $x$1 = $x$1.$expression32; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_SetPropertyItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_userStatus = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UserStatusContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 458, 229); +oncia_SetPropertyItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SetPropertyItem_mapExpressions = ($this, $f) => { + let var$2, var$3, var$4; + var$2 = $this.$property2; + if (!(var$2 instanceof oncie_Property)) { + $f = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5338)), var$2); + jl_Throwable__init_($f, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($f); + } + var$3 = var$2.$map15; + var$4 = var$2.$propertyKey0; + return oncia_SetPropertyItem_copy($this, oncie_Property__init_(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, var$3), var$4, $this.$property2.$position19), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression32), $this.$position132); +}, +oncia_SetPropertyItem__init_ = ($this, $property, $expression, $position) => { + $this.$property2 = $property; + $this.$expression32 = $expression; + $this.$position132 = $position; +}, +oncia_SetPropertyItem__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_SetPropertyItem(); + oncia_SetPropertyItem__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_ContainerIndex() { + let a = this; oncie_Expression.call(a); + a.$expr2 = null; + a.$idx0 = null; + a.$position48 = null; +} +let oncie_ContainerIndex_expr = $this => { + return $this.$expr2; +}, +oncie_ContainerIndex_idx = $this => { + return $this.$idx0; +}, +oncie_ContainerIndex_position = $this => { + return $this.$position48; +}, +oncie_ContainerIndex_isConstantForQuery = $this => { + return $this.$expr2.$isConstantForQuery() && $this.$idx0.$isConstantForQuery() ? 1 : 0; +}, +oncie_ContainerIndex_productPrefix = $this => { + return $rt_s(5339); +}, +oncie_ContainerIndex_productArity = $this => { + return 2; +}, +oncie_ContainerIndex_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expr2; + case 1: + return $this.$idx0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_ContainerIndex_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ContainerIndex_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ContainerIndex_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ContainerIndex_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ContainerIndex) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$expr2; + var$3 = $x$1.$expr2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2902); - oavr_Parser_match($this, 261); - oavr_Recognizer_setState($this, 2903); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 12 && $_la != 265) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$idx0; + $x$1 = $x$1.$idx0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_ContainerIndex)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_homeDatabase = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$HomeDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 460, 230); +oncie_ContainerIndex__init_ = ($this, $expr, $idx, $position) => { + $this.$expr2 = $expr; + $this.$idx0 = $idx; + $this.$position48 = $position; + oncie_Expression__init_($this); +}, +oncie_ContainerIndex__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_ContainerIndex(); + oncie_ContainerIndex__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_SetDynamicPropertyItem() { + let a = this; jl_Object.call(a); + a.$dynamicPropertyLookup0 = null; + a.$expression31 = null; + a.$position97 = null; +} +let oncia_SetDynamicPropertyItem_position = $this => { + return $this.$position97; +}, +oncia_SetDynamicPropertyItem_semanticCheck = $this => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$dynamicPropertyLookup0); + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, sci_$colon$colon__init_($this.$dynamicPropertyLookup0.$idx0, sci_Nil$_MODULE$), $this.$position97)), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression31)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_SetDynamicPropertyItem$semanticCheck$lambda$_60_0, + $this.$dynamicPropertyLookup0.$expr2)); +}, +oncia_SetDynamicPropertyItem_copy = ($this, $dynamicPropertyLookup, $expression, $position) => { + return oncia_SetDynamicPropertyItem__init_($dynamicPropertyLookup, $expression, $position); +}, +oncia_SetDynamicPropertyItem_productPrefix = $this => { + return $rt_s(5340); +}, +oncia_SetDynamicPropertyItem_productArity = $this => { + return 2; +}, +oncia_SetDynamicPropertyItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$dynamicPropertyLookup0; + case 1: + return $this.$expression31; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SetDynamicPropertyItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetDynamicPropertyItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetDynamicPropertyItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetDynamicPropertyItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SetDynamicPropertyItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$dynamicPropertyLookup0; + var$3 = $x$1.$dynamicPropertyLookup0; + if (var$2 !== null) { + if (!oncie_ContainerIndex_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2905); - oavr_Parser_match($this, 126); - oavr_Recognizer_setState($this, 2906); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 2907); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$expression31; + $x$1 = $x$1.$expression31; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_SetDynamicPropertyItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; +}, +oncia_SetDynamicPropertyItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SetDynamicPropertyItem_mapExpressions = ($this, $f) => { + return oncia_SetDynamicPropertyItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$dynamicPropertyLookup0), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression31), $this.$position97); +}, +oncia_SetDynamicPropertyItem__init_0 = ($this, $dynamicPropertyLookup, $expression, $position) => { + $this.$dynamicPropertyLookup0 = $dynamicPropertyLookup; + $this.$expression31 = $expression; + $this.$position97 = $position; +}, +oncia_SetDynamicPropertyItem__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_SetDynamicPropertyItem(); + oncia_SetDynamicPropertyItem__init_0(var_3, var_0, var_1, var_2); + return var_3; }; -let oncipv_Cypher5Parser_setAuthClause = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SetAuthClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 462, 231); +function oncia_SetExactPropertiesFromMapItem() { + let a = this; jl_Object.call(a); + a.$variable10 = null; + a.$expression15 = null; + a.$rhsMustBeMap = 0; + a.$position104 = null; +} +let oncia_SetExactPropertiesFromMapItem_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncia_SetExactPropertiesFromMapItem_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncia_SetExactPropertiesFromMapItem_position = $this => { + return $this.$position104; +}, +oncia_SetExactPropertiesFromMapItem_semanticCheck = $this => { + let var$1, var$2, var$3, var$4; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$variable10), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_0, $this.$variable10)), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression15)), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_1, + $this.$expression15)); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = $this.$rhsMustBeMap; + var$4 = new oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_2; + var$4.$_01085 = $this; + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticCheck$_when(var$2, var$3, var$4)); +}, +oncia_SetExactPropertiesFromMapItem_copy = ($this, $variable, $expression, $rhsMustBeMap, $position) => { + return oncia_SetExactPropertiesFromMapItem__init_0($variable, $expression, $rhsMustBeMap, $position); +}, +oncia_SetExactPropertiesFromMapItem_productPrefix = $this => { + return $rt_s(5341); +}, +oncia_SetExactPropertiesFromMapItem_productArity = $this => { + return 3; +}, +oncia_SetExactPropertiesFromMapItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable10; + case 1: + return $this.$expression15; + case 2: + return jl_Boolean_valueOf($this.$rhsMustBeMap); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SetExactPropertiesFromMapItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetExactPropertiesFromMapItem_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5341))), sr_Statics_anyHash($this.$variable10)), sr_Statics_anyHash($this.$expression15)), !$this.$rhsMustBeMap ? 1237 : 1231), 3); +}, +oncia_SetExactPropertiesFromMapItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetExactPropertiesFromMapItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SetExactPropertiesFromMapItem) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$rhsMustBeMap != $x$1.$rhsMustBeMap) + break b; + c: { + var$2 = $this.$variable10; + var$3 = $x$1.$variable10; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2909); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 2911); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 212) { - oavr_Recognizer_setState($this, 2910); - oavr_Parser_match($this, 212); - } - oavr_Recognizer_setState($this, 2913); - oncipv_Cypher5Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 2914); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 2917); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 2915); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 2916); - oncipv_Cypher5Parser_userAuthAttribute($this); - oavr_Recognizer_setState($this, 2919); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 250) - continue; - else - break; - } - oavr_Recognizer_setState($this, 2921); - oavr_Parser_match($this, 217); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$expression15; + $x$1 = $x$1.$expression15; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_SetExactPropertiesFromMapItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_userAuthAttribute = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UserAuthAttributeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 464, 232); +oncia_SetExactPropertiesFromMapItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SetExactPropertiesFromMapItem_mapExpressions = ($this, $f) => { + return oncia_SetExactPropertiesFromMapItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable10), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression15), $this.$rhsMustBeMap, $this.$position104); +}, +oncia_SetExactPropertiesFromMapItem__init_ = ($this, $variable, $expression, $rhsMustBeMap, $position) => { + $this.$variable10 = $variable; + $this.$expression15 = $expression; + $this.$rhsMustBeMap = $rhsMustBeMap; + $this.$position104 = $position; +}, +oncia_SetExactPropertiesFromMapItem__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_SetExactPropertiesFromMapItem(); + oncia_SetExactPropertiesFromMapItem__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncia_SetExactPropertiesFromMapItem$ = $rt_classWithoutFields(), +oncia_SetExactPropertiesFromMapItem$_MODULE$ = null, +oncia_SetExactPropertiesFromMapItem$__clinit_ = () => { + oncia_SetExactPropertiesFromMapItem$_MODULE$ = new oncia_SetExactPropertiesFromMapItem$; +}; +function oncia_SetIncludingPropertiesFromMapItem() { + let a = this; jl_Object.call(a); + a.$variable11 = null; + a.$expression16 = null; + a.$rhsMustBeMap0 = 0; + a.$position116 = null; +} +let oncia_SetIncludingPropertiesFromMapItem_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncia_SetIncludingPropertiesFromMapItem_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncia_SetIncludingPropertiesFromMapItem_position = $this => { + return $this.$position116; +}, +oncia_SetIncludingPropertiesFromMapItem_semanticCheck = $this => { + let var$1, var$2, var$3, var$4; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$variable11), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_0, $this.$variable11)), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$expression16)), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_1, + $this.$expression16)); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = $this.$rhsMustBeMap0; + var$4 = new oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_2; + var$4.$_089 = $this; + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticCheck$_when(var$2, var$3, var$4)); +}, +oncia_SetIncludingPropertiesFromMapItem_copy = ($this, $variable, $expression, $rhsMustBeMap, $position) => { + return oncia_SetIncludingPropertiesFromMapItem__init_0($variable, $expression, $rhsMustBeMap, $position); +}, +oncia_SetIncludingPropertiesFromMapItem_productPrefix = $this => { + return $rt_s(5342); +}, +oncia_SetIncludingPropertiesFromMapItem_productArity = $this => { + return 3; +}, +oncia_SetIncludingPropertiesFromMapItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable11; + case 1: + return $this.$expression16; + case 2: + return jl_Boolean_valueOf($this.$rhsMustBeMap0); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SetIncludingPropertiesFromMapItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetIncludingPropertiesFromMapItem_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5342))), sr_Statics_anyHash($this.$variable11)), sr_Statics_anyHash($this.$expression16)), !$this.$rhsMustBeMap0 ? 1237 : 1231), 3); +}, +oncia_SetIncludingPropertiesFromMapItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetIncludingPropertiesFromMapItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SetIncludingPropertiesFromMapItem) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$rhsMustBeMap0 != $x$1.$rhsMustBeMap0) + break b; + c: { + var$2 = $this.$variable11; + var$3 = $x$1.$variable11; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - oavr_Recognizer_setState($this, 2928); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 344, $this.$_ctx)) { - case 1: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2923); - oavr_Parser_match($this, 127); - oavr_Recognizer_setState($this, 2924); - oncipv_Cypher5Parser_stringOrParameterExpression($this); - break e; - case 2: - break; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2926); - oavr_Parser_match($this, 193); - oavr_Recognizer_setState($this, 2927); - oncipv_Cypher5Parser_passwordChangeRequired($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2925); - oncipv_Cypher5Parser_passwordOnly($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$expression16; + $x$1 = $x$1.$expression16; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_SetIncludingPropertiesFromMapItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_showUsers = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowUsersContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 466, 233); +oncia_SetIncludingPropertiesFromMapItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SetIncludingPropertiesFromMapItem_mapExpressions = ($this, $f) => { + return oncia_SetIncludingPropertiesFromMapItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable11), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression16), $this.$rhsMustBeMap0, $this.$position116); +}, +oncia_SetIncludingPropertiesFromMapItem__init_ = ($this, $variable, $expression, $rhsMustBeMap, $position) => { + $this.$variable11 = $variable; + $this.$expression16 = $expression; + $this.$rhsMustBeMap0 = $rhsMustBeMap; + $this.$position116 = $position; +}, +oncia_SetIncludingPropertiesFromMapItem__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_SetIncludingPropertiesFromMapItem(); + oncia_SetIncludingPropertiesFromMapItem__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncia_SetIncludingPropertiesFromMapItem$ = $rt_classWithoutFields(), +oncia_SetIncludingPropertiesFromMapItem$_MODULE$ = null, +oncia_SetIncludingPropertiesFromMapItem$__clinit_ = () => { + oncia_SetIncludingPropertiesFromMapItem$_MODULE$ = new oncia_SetIncludingPropertiesFromMapItem$; +}; +function oncia_SetLabelItem() { + let a = this; jl_Object.call(a); + a.$variable9 = null; + a.$labels2 = null; + a.$dynamicLabels = null; + a.$containsIs1 = 0; + a.$position39 = null; +} +let oncia_SetLabelItem_position = $this => { + return $this.$position39; +}, +oncia_SetLabelItem_semanticCheck = $this => { + let var$1, var$2, var$3, var$4; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$variable9); + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidLabels(oncias_SemanticPatternCheck$_MODULE$, $this.$labels2, $this.$position39)), oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $this.$dynamicLabels)), oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, $this.$dynamicLabels, $this.$position39)); + var$1 = oncias_SemanticExpressionCheck$_MODULE$; + oncius_package$_$callClinit(); + var$3 = oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); + var$4 = oncius_package$_MODULE$; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_SemanticAnalysisTooling_expectType$1(var$1, oncius_TypeSpec_union(var$3, oncius_ListType_covariant(oncius_package$_CTList(var$4, oncius_package$_CTString(var$4)))), $this.$dynamicLabels)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_SetLabelItem$semanticCheck$lambda$_14_0, $this.$variable9)); +}, +oncia_SetLabelItem_copy = ($this, $variable, $labels, $dynamicLabels, $containsIs, $position) => { + return oncia_SetLabelItem__init_($variable, $labels, $dynamicLabels, $containsIs, $position); +}, +oncia_SetLabelItem_productPrefix = $this => { + return $rt_s(5343); +}, +oncia_SetLabelItem_productArity = $this => { + return 4; +}, +oncia_SetLabelItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable9; + case 1: + return $this.$labels2; + case 2: + return $this.$dynamicLabels; + case 3: + return jl_Boolean_valueOf($this.$containsIs1); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SetLabelItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetLabelItem_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5343))), sr_Statics_anyHash($this.$variable9)), sr_Statics_anyHash($this.$labels2)), sr_Statics_anyHash($this.$dynamicLabels)), !$this.$containsIs1 ? 1237 : 1231), 4); +}, +oncia_SetLabelItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetLabelItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SetLabelItem) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs1 != $x$1.$containsIs1) + break b; + c: { + var$2 = $this.$variable9; + var$3 = $x$1.$variable9; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2930); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 291 && $_la != 292) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2933); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 302) { - oavr_Recognizer_setState($this, 2931); - oavr_Parser_match($this, 302); - oavr_Recognizer_setState($this, 2932); - oavr_Parser_match($this, 29); - } - oavr_Recognizer_setState($this, 2936); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2935); - oncipv_Cypher5Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$labels2; + var$3 = $x$1.$labels2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + e: { + var$3 = $this.$dynamicLabels; + $x$1 = $x$1.$dynamicLabels; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_SetLabelItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_SetLabelItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SetLabelItem_mapExpressions = ($this, $f) => { + return oncia_SetLabelItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable9), $this.$labels2, $this.$dynamicLabels, $this.$containsIs1, $this.$position39); +}, +oncia_SetLabelItem__init_0 = ($this, $variable, $labels, $dynamicLabels, $containsIs, $position) => { + $this.$variable9 = $variable; + $this.$labels2 = $labels; + $this.$dynamicLabels = $dynamicLabels; + $this.$containsIs1 = $containsIs; + $this.$position39 = $position; +}, +oncia_SetLabelItem__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_SetLabelItem(); + oncia_SetLabelItem__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; +}; +function oncia_Remove() { + let a = this; jl_Object.call(a); + a.$items4 = null; + a.$position37 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier22 = null; + a.$SetExtractor$module5 = null; +} +let oncia_Remove_returnVariables = $this => { + return oncia_UpdateClause_returnVariables$($this); +}, +oncia_Remove_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Remove_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_Remove_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Remove_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Remove_foldedOver = $this => { + return $this; +}, +oncia_Remove_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Remove_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier22; +}, +oncia_Remove_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module5 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module5 !== null) + break a; + $this.$SetExtractor$module5 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module5; }, -oncipv_Cypher5Parser_showCurrentUser = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowCurrentUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 468, 234); +oncia_Remove_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier22 = $x$1; +}, +oncia_Remove_position = $this => { + return $this.$position37; +}, +oncia_Remove_name = $this => { + return $rt_s(4447); +}, +oncia_Remove_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(oncias_SemanticCheckableIterableOnce$_MODULE$, $this.$items4); + var$2 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$($this), new oncia_Remove$$anonfun$15); + var$3 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$($this), new oncia_Remove$$anonfun$16); + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$2 = var$2 && var$3 ? 1 : 0; + var$5 = new oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_69_0; + var$5.$_0930 = $this; + return var$1.$chain(oncias_SemanticCheck$_when(var$4, var$2, var$5)); +}, +oncia_Remove_copy = ($this, $items, $position) => { + return oncia_Remove__init_0($items, $position); +}, +oncia_Remove_productPrefix = $this => { + return $rt_s(5344); +}, +oncia_Remove_productArity = $this => { + return 1; +}, +oncia_Remove_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$items4; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Remove_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Remove_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Remove_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Remove_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2938); - oavr_Parser_match($this, 63); - oavr_Recognizer_setState($this, 2939); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 2941); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2940); - oncipv_Cypher5Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Remove) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$items4; + $x$1 = $x$1.$items4; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_Remove)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}, +oncia_Remove_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Remove_mapExpressions = ($this, $f) => { + let var$2, var$3; + var$2 = $this.$items4; + var$3 = new oncia_Remove$mapExpressions$lambda$_68_0; + var$3.$_0768 = $f; + return oncia_Remove_copy($this, var$2.$map(var$3), $this.$position37); +}, +oncia_Remove__init_ = ($this, $items, $position) => { + $this.$items4 = $items; + $this.$position37 = $position; + oncia_Clause_$init$($this); +}, +oncia_Remove__init_0 = (var_0, var_1) => { + let var_2 = new oncia_Remove(); + oncia_Remove__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_RemoveItem = $rt_classWithoutFields(0); +function oncia_RemovePropertyItem() { + jl_Object.call(this); + this.$property3 = null; +} +let oncia_RemovePropertyItem_position = $this => { + return $this.$property3.$position19; +}, +oncia_RemovePropertyItem_semanticCheck = $this => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$property3); + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(oncias_SemanticPatternCheck$_MODULE$, sci_$colon$colon__init_($this.$property3.$propertyKey0, sci_Nil$_MODULE$))); +}, +oncia_RemovePropertyItem_copy = ($this, $property) => { + return oncia_RemovePropertyItem__init_0($property); +}, +oncia_RemovePropertyItem_productPrefix = $this => { + return $rt_s(5345); +}, +oncia_RemovePropertyItem_productArity = $this => { + return 1; +}, +oncia_RemovePropertyItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$property3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RemovePropertyItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemovePropertyItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemovePropertyItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser_showSupportedPrivileges = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowSupportedPrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 470, 235); +oncia_RemovePropertyItem_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2943); - oavr_Parser_match($this, 264); - oavr_Recognizer_setState($this, 2944); - oncipv_Cypher5Parser_privilegeToken($this); - oavr_Recognizer_setState($this, 2946); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2945); - oncipv_Cypher5Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RemovePropertyItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$property3; + $x$1 = $x$1.$property3; + if (var$2 !== null) { + if (!oncie_Property_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_RemovePropertyItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_showPrivileges = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowPrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 472, 236); +oncia_RemovePropertyItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_RemovePropertyItem_mapExpressions = ($this, $f) => { + let var$2, var$3, var$4; + var$2 = $this.$property3; + if (!(var$2 instanceof oncie_Property)) { + $f = new jl_IllegalStateException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5338)), var$2); + jl_Throwable__init_($f, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw($f); + } + var$3 = var$2.$map15; + var$4 = var$2.$propertyKey0; + return oncia_RemovePropertyItem_copy($this, oncie_Property__init_(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, var$3), var$4, $this.$property3.$position19)); +}, +oncia_RemovePropertyItem__init_ = ($this, $property) => { + $this.$property3 = $property; +}, +oncia_RemovePropertyItem__init_0 = var_0 => { + let var_1 = new oncia_RemovePropertyItem(); + oncia_RemovePropertyItem__init_(var_1, var_0); + return var_1; +}; +function oncia_RemoveDynamicPropertyItem() { + jl_Object.call(this); + this.$dynamicPropertyLookup = null; +} +let oncia_RemoveDynamicPropertyItem_position = $this => { + return $this.$dynamicPropertyLookup.$position48; +}, +oncia_RemoveDynamicPropertyItem_semanticCheck = $this => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$dynamicPropertyLookup); + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, sci_$colon$colon__init_($this.$dynamicPropertyLookup.$idx0, sci_Nil$_MODULE$), oncia_RemoveDynamicPropertyItem_position($this))), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_RemoveDynamicPropertyItem$semanticCheck$lambda$_13_0, $this.$dynamicPropertyLookup.$expr2)); +}, +oncia_RemoveDynamicPropertyItem_copy = ($this, $dynamicPropertyLookup) => { + return oncia_RemoveDynamicPropertyItem__init_0($dynamicPropertyLookup); +}, +oncia_RemoveDynamicPropertyItem_productPrefix = $this => { + return $rt_s(5346); +}, +oncia_RemoveDynamicPropertyItem_productArity = $this => { + return 1; +}, +oncia_RemoveDynamicPropertyItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$dynamicPropertyLookup; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RemoveDynamicPropertyItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveDynamicPropertyItem_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveDynamicPropertyItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveDynamicPropertyItem_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2949); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 18) { - oavr_Recognizer_setState($this, 2948); - oavr_Parser_match($this, 18); - } - oavr_Recognizer_setState($this, 2951); - oncipv_Cypher5Parser_privilegeToken($this); - oavr_Recognizer_setState($this, 2953); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2952); - oncipv_Cypher5Parser_privilegeAsCommand($this); - } - oavr_Recognizer_setState($this, 2956); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2955); - oncipv_Cypher5Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RemoveDynamicPropertyItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$dynamicPropertyLookup; + $x$1 = $x$1.$dynamicPropertyLookup; + if (var$2 !== null) { + if (!oncie_ContainerIndex_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_RemoveDynamicPropertyItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_showRolePrivileges = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowRolePrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 474, 237); +oncia_RemoveDynamicPropertyItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_RemoveDynamicPropertyItem_mapExpressions = ($this, $f) => { + return oncia_RemoveDynamicPropertyItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$dynamicPropertyLookup)); +}, +oncia_RemoveDynamicPropertyItem__init_ = ($this, $dynamicPropertyLookup) => { + $this.$dynamicPropertyLookup = $dynamicPropertyLookup; +}, +oncia_RemoveDynamicPropertyItem__init_0 = var_0 => { + let var_1 = new oncia_RemoveDynamicPropertyItem(); + oncia_RemoveDynamicPropertyItem__init_(var_1, var_0); + return var_1; +}; +function oncia_RemoveLabelItem() { + let a = this; jl_Object.call(a); + a.$variable12 = null; + a.$labels1 = null; + a.$dynamicLabels0 = null; + a.$containsIs0 = 0; + a.$position34 = null; +} +let oncia_RemoveLabelItem_position = $this => { + return $this.$position34; +}, +oncia_RemoveLabelItem_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$variable12), oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $this.$dynamicLabels0)); + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(var$1, oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, $this.$dynamicLabels0, $this.$position34)); + var$3 = oncias_SemanticExpressionCheck$_MODULE$; + oncius_package$_$callClinit(); + var$4 = oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); + var$5 = oncius_package$_MODULE$; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_SemanticAnalysisTooling_expectType$1(var$3, oncius_TypeSpec_union(var$4, oncius_ListType_covariant(oncius_package$_CTList(var$5, oncius_package$_CTString(var$5)))), $this.$dynamicLabels0)), oncias_SemanticPatternCheck$_checkValidLabels(oncias_SemanticPatternCheck$_MODULE$, $this.$labels1, $this.$position34)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_RemoveLabelItem$semanticCheck$lambda$_14_0, + $this.$variable12)); +}, +oncia_RemoveLabelItem_copy = ($this, $variable, $labels, $dynamicLabels, $containsIs, $position) => { + return oncia_RemoveLabelItem__init_($variable, $labels, $dynamicLabels, $containsIs, $position); +}, +oncia_RemoveLabelItem_productPrefix = $this => { + return $rt_s(5347); +}, +oncia_RemoveLabelItem_productArity = $this => { + return 4; +}, +oncia_RemoveLabelItem_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable12; + case 1: + return $this.$labels1; + case 2: + return $this.$dynamicLabels0; + case 3: + return jl_Boolean_valueOf($this.$containsIs0); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RemoveLabelItem_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveLabelItem_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5347))), sr_Statics_anyHash($this.$variable12)), sr_Statics_anyHash($this.$labels1)), sr_Statics_anyHash($this.$dynamicLabels0)), !$this.$containsIs0 ? 1237 : 1231), 4); +}, +oncia_RemoveLabelItem_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveLabelItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RemoveLabelItem) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs0 != $x$1.$containsIs0) + break b; + c: { + var$2 = $this.$variable12; + var$3 = $x$1.$variable12; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2958); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 235 && $_la != 236) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 2959); - oncipv_Cypher5Parser_roleNames($this); - oavr_Recognizer_setState($this, 2960); - oncipv_Cypher5Parser_privilegeToken($this); - oavr_Recognizer_setState($this, 2962); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2961); - oncipv_Cypher5Parser_privilegeAsCommand($this); - } - oavr_Recognizer_setState($this, 2965); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2964); - oncipv_Cypher5Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$labels1; + var$3 = $x$1.$labels1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + e: { + var$3 = $this.$dynamicLabels0; + $x$1 = $x$1.$dynamicLabels0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_RemoveLabelItem)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_RemoveLabelItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_RemoveLabelItem_mapExpressions = ($this, $f) => { + return oncia_RemoveLabelItem_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$variable12), $this.$labels1, $this.$dynamicLabels0, $this.$containsIs0, $this.$position34); +}, +oncia_RemoveLabelItem__init_0 = ($this, $variable, $labels, $dynamicLabels, $containsIs, $position) => { + $this.$variable12 = $variable; + $this.$labels1 = $labels; + $this.$dynamicLabels0 = $dynamicLabels; + $this.$containsIs0 = $containsIs; + $this.$position34 = $position; +}, +oncia_RemoveLabelItem__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_RemoveLabelItem(); + oncia_RemoveLabelItem__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; +}; +function oncia_Delete() { + let a = this; jl_Object.call(a); + a.$expressions1 = null; + a.$forced = 0; + a.$position127 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier8 = null; + a.$SetExtractor$module10 = null; +} +let oncia_Delete_returnVariables = $this => { + return oncia_UpdateClause_returnVariables$($this); +}, +oncia_Delete_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_Delete_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_Delete_expectType0 = ($this, $possibleTypes, $expressions, $typeMismatchContext) => { + return oncias_SemanticAnalysisTooling_expectType$2($this, $possibleTypes, $expressions, $typeMismatchContext); +}, +oncia_Delete_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncia_Delete_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncia_Delete_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_Delete_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_Delete_foldedOver = $this => { + return $this; +}, +oncia_Delete_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_Delete_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier8; +}, +oncia_Delete_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module10 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module10 !== null) + break a; + $this.$SetExtractor$module10 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); } - return $_localctx; + return $this.$SetExtractor$module10; }, -oncipv_Cypher5Parser_showUserPrivileges = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowUserPrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 476, 238); +oncia_Delete_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier8 = $x$1; +}, +oncia_Delete_position = $this => { + return $this.$position127; +}, +oncia_Delete_name = $this => { + return $rt_s(4320); +}, +oncia_Delete_clauseSpecificSemanticCheck = $this => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = (oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $this.$expressions1)).$chain(oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, ($this.$expressions1.$filter1(new oncia_Delete$warnAboutDeletingLabels$lambda$_69_0)).$map(new oncia_Delete$warnAboutDeletingLabels$lambda$_69_1))); + oncius_package$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticAnalysisTooling_expectType$1($this, oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))), oncius_PathType_covariant(oncius_package$_CTPath(oncius_package$_MODULE$))), $this.$expressions1)); +}, +oncia_Delete_copy = ($this, $expressions, $forced, $position) => { + return oncia_Delete__init_0($expressions, $forced, $position); +}, +oncia_Delete_productPrefix = $this => { + return $rt_s(5348); +}, +oncia_Delete_productArity = $this => { + return 2; +}, +oncia_Delete_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expressions1; + case 1: + return jl_Boolean_valueOf($this.$forced); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Delete_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Delete_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5348))), sr_Statics_anyHash($this.$expressions1)), !$this.$forced ? 1237 : 1231), 2); +}, +oncia_Delete_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Delete_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2967); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 291 && $_la != 292) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - e: { - oavr_Recognizer_setState($this, 2969); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 354, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 2968); - oncipv_Cypher5Parser_userNames($this); - } - oavr_Recognizer_setState($this, 2971); - oncipv_Cypher5Parser_privilegeToken($this); - oavr_Recognizer_setState($this, 2973); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 23) { - oavr_Recognizer_setState($this, 2972); - oncipv_Cypher5Parser_privilegeAsCommand($this); - } - oavr_Recognizer_setState($this, 2976); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 2975); - oncipv_Cypher5Parser_showCommandYield($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Delete) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$forced != $x$1.$forced) + break b; + c: { + var$2 = $this.$expressions1; + $x$1 = $x$1.$expressions1; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_Delete)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_privilegeAsCommand = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PrivilegeAsCommandContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 478, 239); +oncia_Delete_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Delete_mapExpressions = ($this, $f) => { + return oncia_Delete_copy($this, $this.$expressions1.$map($f), $this.$forced, $this.$position127); +}, +oncia_Delete__init_ = ($this, $expressions, $forced, $position) => { + $this.$expressions1 = $expressions; + $this.$forced = $forced; + $this.$position127 = $position; + oncia_Clause_$init$($this); +}, +oncia_Delete__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_Delete(); + oncia_Delete__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0 = $rt_classWithoutFields(), +oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + if (var$1 instanceof oncie_PatternPartWithSelector) + var$1 = var$1; + else { + if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) { + var$2 = new jl_IllegalStateException; + var$1 = jl_Object_getClass(var$1); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5349)), var$1); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); + } + var$2 = var$1; + var$1 = oncie_PatternPartWithSelector__init_(oncie_PatternPart$AllPaths__init_(var$2.$position()), var$2); + } + return var$1; +}; +function oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1() { + jl_Object.call(this); + this.$_010 = null; +} +let oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1_apply = var$0 => { + let var$1; + var$1 = var$0.$_010; + return oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, var$1); +}, +oncie_MatchMode$MatchMode = $rt_classWithoutFields(0); +function oncie_Pattern$ForMatch() { + let a = this; jl_Object.call(a); + a.$patternParts0 = null; + a.$position259 = null; + a.$length6 = 0; + a.$bitmap$037 = 0; +} +let oncie_Pattern$ForMatch_foldedOver = $this => { + return $this; +}, +oncie_Pattern$ForMatch_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncie_Pattern$ForMatch_patternParts = $this => { + return $this.$patternParts0; +}, +oncie_Pattern$ForMatch_position = $this => { + return $this.$position259; +}, +oncie_Pattern$ForMatch_productPrefix = $this => { + return $rt_s(5350); +}, +oncie_Pattern$ForMatch_productArity = $this => { + return 1; +}, +oncie_Pattern$ForMatch_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$patternParts0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_Pattern$ForMatch_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Pattern$ForMatch_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Pattern$ForMatch_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Pattern$ForMatch_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2978); - oavr_Parser_match($this, 23); - oavr_Recognizer_setState($this, 2980); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 234) { - oavr_Recognizer_setState($this, 2979); - oavr_Parser_match($this, 234); - } - oavr_Recognizer_setState($this, 2982); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 50 && $_la != 51) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Pattern$ForMatch) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$patternParts0; + $x$1 = $x$1.$patternParts0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_privilegeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PrivilegeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 480, 240); +oncie_Pattern$ForMatch_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_Pattern$ForMatch__init_0 = ($this, $patternParts, $position) => { + $this.$patternParts0 = $patternParts; + $this.$position259 = $position; +}, +oncie_Pattern$ForMatch__init_ = (var_0, var_1) => { + let var_2 = new oncie_Pattern$ForMatch(); + oncie_Pattern$ForMatch__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_MatchMode$DifferentRelationships() { + let a = this; jl_Object.call(a); + a.$implicitlyCreated = 0; + a.$position243 = null; +} +let oncie_MatchMode$DifferentRelationships_position = $this => { + return $this.$position243; +}, +oncie_MatchMode$DifferentRelationships_prettified = $this => { + if (!$this.$implicitlyCreated) + return $rt_s(5351); + return $rt_s(4); +}, +oncie_MatchMode$DifferentRelationships_productPrefix = $this => { + return $rt_s(5352); +}, +oncie_MatchMode$DifferentRelationships_productArity = $this => { + return 1; +}, +oncie_MatchMode$DifferentRelationships_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$implicitlyCreated); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_MatchMode$DifferentRelationships_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_MatchMode$DifferentRelationships_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5352))), !$this.$implicitlyCreated ? 1237 : 1231), 1); +}, +oncie_MatchMode$DifferentRelationships_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_MatchMode$DifferentRelationships_equals = ($this, $x$1) => { + let var$2; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2984); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 206 && $_la != 207) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_MatchMode$DifferentRelationships) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$implicitlyCreated != $x$1.$implicitlyCreated) + break b; + if (!($this instanceof oncie_MatchMode$DifferentRelationships)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$2 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = 0; } - return $_localctx; + return var$2; }, -oncipv_Cypher5Parser_privilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 482, 241); +oncie_MatchMode$DifferentRelationships_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_MatchMode$DifferentRelationships__init_0 = ($this, $implicitlyCreated, $position) => { + $this.$implicitlyCreated = $implicitlyCreated; + $this.$position243 = $position; +}, +oncie_MatchMode$DifferentRelationships__init_ = (var_0, var_1) => { + let var_2 = new oncie_MatchMode$DifferentRelationships(); + oncie_MatchMode$DifferentRelationships__init_0(var_2, var_0, var_1); + return var_2; +}, +oncie_MatchMode$DifferentRelationships$ = $rt_classWithoutFields(), +oncie_MatchMode$DifferentRelationships$_MODULE$ = null, +oncie_MatchMode$DifferentRelationships$__clinit_ = () => { + oncie_MatchMode$DifferentRelationships$_MODULE$ = new oncie_MatchMode$DifferentRelationships$; +}; +function oncie_MatchMode$RepeatableElements() { + jl_Object.call(this); + this.$position217 = null; +} +let oncie_MatchMode$RepeatableElements_position = $this => { + return $this.$position217; +}, +oncie_MatchMode$RepeatableElements_prettified = $this => { + return $rt_s(5353); +}, +oncie_MatchMode$RepeatableElements_productPrefix = $this => { + return $rt_s(5354); +}, +oncie_MatchMode$RepeatableElements_productArity = $this => { + return 0; +}, +oncie_MatchMode$RepeatableElements_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_MatchMode$RepeatableElements_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_MatchMode$RepeatableElements_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_MatchMode$RepeatableElements_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_MatchMode$RepeatableElements_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_MatchMode$RepeatableElements) ? 0 : 1; + return var$2 && $this instanceof oncie_MatchMode$RepeatableElements ? 1 : 0; +}, +oncie_MatchMode$RepeatableElements_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_MatchMode$RepeatableElements__init_0 = ($this, $position) => { + $this.$position217 = $position; +}, +oncie_MatchMode$RepeatableElements__init_ = var_0 => { + let var_1 = new oncie_MatchMode$RepeatableElements(); + oncie_MatchMode$RepeatableElements__init_0(var_1, var_0); + return var_1; +}, +oncia_Hint = $rt_classWithoutFields(0), +oncia_UserHint = $rt_classWithoutFields(0); +function oncia_UsingJoinHint() { + let a = this; jl_Object.call(a); + a.$variables1 = null; + a.$position52 = null; +} +let oncia_UsingJoinHint_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncia_UsingJoinHint_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncia_UsingJoinHint_position = $this => { + return $this.$position52; +}, +oncia_UsingJoinHint_semanticCheck = $this => { + let var$1, var$2, var$3; + var$1 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$2 = $this.$variables1; + var$3 = new oncia_UsingJoinHint$semanticCheck$lambda$_59_0; + var$3.$_0107 = $this; + return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$1, var$2, var$3); +}, +oncia_UsingJoinHint_productPrefix = $this => { + return $rt_s(5355); +}, +oncia_UsingJoinHint_productArity = $this => { + return 1; +}, +oncia_UsingJoinHint_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variables1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_UsingJoinHint_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UsingJoinHint_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UsingJoinHint_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UsingJoinHint_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 2998); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - case 55: - case 56: - case 132: - case 133: - case 165: - case 259: - case 262: - case 267: - case 277: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 2988); - oncipv_Cypher5Parser_databasePrivilege($this); - break e; - case 15: - case 19: - case 27: - case 53: - case 65: - case 102: - case 129: - case 206: - case 221: - case 235: - case 248: - case 291: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 2989); - oncipv_Cypher5Parser_dbmsPrivilege($this); - break e; - case 18: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 2986); - oncipv_Cypher5Parser_allPrivilege($this); - break e; - case 61: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 2987); - oncipv_Cypher5Parser_createPrivilege($this); - break e; - case 73: - case 160: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 2992); - oncipv_Cypher5Parser_qualifiedGraphPrivileges($this); - break e; - case 87: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 2990); - oncipv_Cypher5Parser_dropPrivilege($this); - break e; - case 152: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 2991); - oncipv_Cypher5Parser_loadPrivilege($this); - break e; - case 159: - case 218: - case 279: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 2993); - oncipv_Cypher5Parser_qualifiedGraphPrivilegesWithProperty($this); - break e; - case 226: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 2994); - oncipv_Cypher5Parser_removePrivilege($this); - break e; - case 250: - oavr_Parser_enterOuterAlt($this, $_localctx, 10); - oavr_Recognizer_setState($this, 2995); - oncipv_Cypher5Parser_setPrivilege($this); - break e; - case 255: - oavr_Parser_enterOuterAlt($this, $_localctx, 11); - oavr_Recognizer_setState($this, 2996); - oncipv_Cypher5Parser_showPrivilege($this); - break e; - case 304: - oavr_Parser_enterOuterAlt($this, $_localctx, 12); - oavr_Recognizer_setState($this, 2997); - oncipv_Cypher5Parser_writePrivilege($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UsingJoinHint) ? 0 : 1)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + c: { + $x$1 = $x$1; + var$2 = $this.$variables1; + $x$1 = $x$1.$variables1; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_UsingJoinHint)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_allPrivilege = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AllPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 484, 242); +oncia_UsingJoinHint_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_UsingJoinHint__init_ = ($this, $variables, $position) => { + $this.$variables1 = $variables; + $this.$position52 = $position; +}, +oncia_UsingJoinHint__init_0 = (var_0, var_1) => { + let var_2 = new oncia_UsingJoinHint(); + oncia_UsingJoinHint__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_LeafPlanHint = $rt_classWithoutFields(0), +oncia_LeafPlanHint_semanticCheck$ = $$this => { + return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, $$this.$ensureDefined($$this.$variable4())), $$this.$expectType1(new oncia_LeafPlanHint$semanticCheck$lambda$_4_0, $$this.$variable4())); +}; +function oncia_UsingScanHint() { + let a = this; jl_Object.call(a); + a.$variable19 = null; + a.$labelOrRelType3 = null; + a.$position140 = null; +} +let oncia_UsingScanHint_semanticCheck = $this => { + return oncia_LeafPlanHint_semanticCheck$($this); +}, +oncia_UsingScanHint_expectType0 = ($this, $possibleTypes, $expression) => { + return oncias_SemanticAnalysisTooling_expectType$($this, $possibleTypes, $expression); +}, +oncia_UsingScanHint_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncia_UsingScanHint_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncia_UsingScanHint_ensureDefined = ($this, $v) => { + return oncias_SemanticAnalysisTooling_ensureDefined$($this, $v); +}, +oncia_UsingScanHint_variable = $this => { + return $this.$variable19; +}, +oncia_UsingScanHint_position = $this => { + return $this.$position140; +}, +oncia_UsingScanHint_productPrefix = $this => { + return $rt_s(5356); +}, +oncia_UsingScanHint_productArity = $this => { + return 2; +}, +oncia_UsingScanHint_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable19; + case 1: + return $this.$labelOrRelType3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_UsingScanHint_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UsingScanHint_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UsingScanHint_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UsingScanHint_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UsingScanHint) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable19; + var$3 = $x$1.$variable19; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3000); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 3002); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - var$3 = $_la - 65 | 0; - if (!(!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(17, 8388608)), Long_ZERO)) && $_la != 207)) { - oavr_Recognizer_setState($this, 3001); - oncipv_Cypher5Parser_allPrivilegeType($this); - } - oavr_Recognizer_setState($this, 3004); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3005); - oncipv_Cypher5Parser_allPrivilegeTarget($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$labelOrRelType3; + $x$1 = $x$1.$labelOrRelType3; + if (var$3 !== null) { + if (!oncie_LabelOrRelTypeName_equals(var$3, $x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_UsingScanHint)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_allPrivilegeType = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AllPrivilegeTypeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 486, 243); +oncia_UsingScanHint_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_UsingScanHint__init_0 = ($this, $variable, $labelOrRelType, $position) => { + $this.$variable19 = $variable; + $this.$labelOrRelType3 = $labelOrRelType; + $this.$position140 = $position; +}, +oncia_UsingScanHint__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_UsingScanHint(); + oncia_UsingScanHint__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncil_LabelExpressionLeafName = $rt_classWithoutFields(0); +function oncie_LabelOrRelTypeName() { + let a = this; jl_Object.call(a); + a.$name19 = null; + a.$position225 = null; +} +let oncie_LabelOrRelTypeName_name = $this => { + return $this.$name19; +}, +oncie_LabelOrRelTypeName_position = $this => { + return $this.$position225; +}, +oncie_LabelOrRelTypeName_productPrefix = $this => { + return $rt_s(5357); +}, +oncie_LabelOrRelTypeName_productArity = $this => { + return 1; +}, +oncie_LabelOrRelTypeName_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name19; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_LabelOrRelTypeName_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LabelOrRelTypeName_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LabelOrRelTypeName_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LabelOrRelTypeName_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3008); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 65 | 0; - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(17, 8388608)), Long_ZERO)) { - oavr_Recognizer_setState($this, 3007); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 65 | 0; - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(17, 8388608)), Long_ZERO)) { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else - $this.$_errHandler.$recoverInline($this); - } - oavr_Recognizer_setState($this, 3010); - oavr_Parser_match($this, 207); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_LabelOrRelTypeName) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$name19; + $x$1 = $x$1.$name19; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_LabelOrRelTypeName)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_allPrivilegeTarget = $this => { - let $_localctx, var$2, $re, $_la, $$je; - $_localctx = new oncipv_Cypher5Parser$AllPrivilegeTargetContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 488, 244); - a: { - b: { - c: { - d: { - try { - e: { - var$2 = $_localctx; - oavr_Recognizer_setState($this, 3025); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 65: - case 66: - f: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$DatabaseVariableTargetContext; - var$2 = $re; - oncipv_Cypher5Parser$DatabaseVariableTargetContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 2); - oavr_Recognizer_setState($this, 3014); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 65) { - var$2 = $re; - if ($_la != 66) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break f; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 3017); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - var$2 = $re; - oavr_Recognizer_setState($this, 3016); - oncipv_Cypher5Parser_symbolicAliasNameList($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - var$2 = $re; - oavr_Recognizer_setState($this, 3015); - oavr_Parser_match($this, 271); - break e; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - case 69: - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$DBMSTargetContext; - var$2 = $re; - oncipv_Cypher5Parser$DBMSTargetContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 4); - oavr_Recognizer_setState($this, 3024); - oavr_Parser_match($this, 69); - break e; - case 71: - case 126: - g: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$DefaultTargetContext; - var$2 = $re; - oncipv_Cypher5Parser$DefaultTargetContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 1); - oavr_Recognizer_setState($this, 3012); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 71) { - var$2 = $re; - if ($_la != 126) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break g; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 3013); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 65) { - var$2 = $re; - if ($_la != 120) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break e; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - case 120: - case 121: - h: { - var$2 = $_localctx; - $re = new oncipv_Cypher5Parser$GraphVariableTargetContext; - var$2 = $re; - oncipv_Cypher5Parser$GraphVariableTargetContext__init_($re, $_localctx); - oavr_Parser_enterOuterAlt($this, $re, 3); - oavr_Recognizer_setState($this, 3019); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 120) { - var$2 = $re; - if ($_la != 121) { - var$2 = $re; - $this.$_errHandler.$recoverInline($this); - break h; - } - } - var$2 = $re; - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) { - var$2 = $re; - $this.$matchedEOF = 1; - } - var$2 = $re; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - var$2 = $re; - oavr_Recognizer_setState($this, 3022); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - var$2 = $re; - oavr_Recognizer_setState($this, 3021); - oncipv_Cypher5Parser_symbolicAliasNameList($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - var$2 = $re; - oavr_Recognizer_setState($this, 3020); - oavr_Parser_match($this, 271); - break e; - default: - } - var$2 = $re; - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - var$2 = $_localctx; - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; +oncie_LabelOrRelTypeName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_LabelOrRelTypeName__init_ = ($this, $name, $position) => { + $this.$name19 = $name; + $this.$position225 = $position; +}, +oncie_LabelOrRelTypeName__init_0 = (var_0, var_1) => { + let var_2 = new oncie_LabelOrRelTypeName(); + oncie_LabelOrRelTypeName__init_(var_2, var_0, var_1); + return var_2; +}; +function oncie_PatternPartWithSelector() { + let a = this; oncie_PatternPart.call(a); + a.$selector1 = null; + a.$part1 = null; +} +let oncie_PatternPartWithSelector_position = $this => { + return $this.$part1.$position(); +}, +oncie_PatternPartWithSelector_allVariables = $this => { + return $this.$part1.$allVariables(); +}, +oncie_PatternPartWithSelector_element = $this => { + return $this.$part1.$element(); +}, +oncie_PatternPartWithSelector_isSelective = $this => { + return $this.$selector1.$isBounded(); +}, +oncie_PatternPartWithSelector_copy = ($this, $selector, $part) => { + return oncie_PatternPartWithSelector__init_($selector, $part); +}, +oncie_PatternPartWithSelector_productPrefix = $this => { + return $rt_s(5358); +}, +oncie_PatternPartWithSelector_productArity = $this => { + return 2; +}, +oncie_PatternPartWithSelector_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$selector1; + case 1: + return $this.$part1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_PatternPartWithSelector_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPartWithSelector_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPartWithSelector_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPartWithSelector_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PatternPartWithSelector) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$selector1; + var$3 = $x$1.$selector1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$part1; + $x$1 = $x$1.$part1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_PatternPartWithSelector)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncie_PatternPartWithSelector_replaceInAnonymous$1 = ($app, $f$2) => { + if ($app instanceof oncie_PathPatternPart) { + $app = $app; + return oncie_PathPatternPart_copy($app, oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_0_apply($f$2, $app.$element4)); + } + if (!($app instanceof oncie_ShortestPathsPatternPart)) + $rt_throw(s_MatchError__init_($app)); + $app = $app; + return oncie_ShortestPathsPatternPart_copy($app, oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_0_apply($f$2, $app.$element2), $app.$single0, $app.$position10); +}, +oncie_PatternPartWithSelector__init_0 = ($this, $selector, $part) => { + $this.$selector1 = $selector; + $this.$part1 = $part; + oncie_PatternPart__init_($this); +}, +oncie_PatternPartWithSelector__init_ = (var_0, var_1) => { + let var_2 = new oncie_PatternPartWithSelector(); + oncie_PatternPartWithSelector__init_0(var_2, var_0, var_1); + return var_2; +}, +oncia_Merge$ = $rt_classWithoutFields(), +oncia_Merge$_MODULE$ = null, +oncia_Merge$__clinit_ = () => { + oncia_Merge$_MODULE$ = new oncia_Merge$; +}, +oncia_MergeAction = $rt_classWithoutFields(0); +function oncia_OnCreate() { + let a = this; jl_Object.call(a); + a.$action1 = null; + a.$position135 = null; +} +let oncia_OnCreate_position = $this => { + return $this.$position135; +}, +oncia_OnCreate_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this.$action1); +}, +oncia_OnCreate_copy = ($this, $action, $position) => { + return oncia_OnCreate__init_($action, $position); +}, +oncia_OnCreate_productPrefix = $this => { + return $rt_s(5359); +}, +oncia_OnCreate_productArity = $this => { + return 1; +}, +oncia_OnCreate_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$action1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_OnCreate_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OnCreate_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OnCreate_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OnCreate_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_OnCreate) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$action1; + $x$1 = $x$1.$action1; + if (var$2 !== null) { + if (!oncia_SetClause_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - var$2.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_OnCreate)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncia_OnCreate_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_OnCreate_mapExpressions = ($this, $f) => { + return oncia_OnCreate_copy($this, oncia_SetClause_mapExpressions($this.$action1, $f), $this.$position135); +}, +oncia_OnCreate__init_0 = ($this, $action, $position) => { + $this.$action1 = $action; + $this.$position135 = $position; +}, +oncia_OnCreate__init_ = (var_0, var_1) => { + let var_2 = new oncia_OnCreate(); + oncia_OnCreate__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncia_OnMatch() { + let a = this; jl_Object.call(a); + a.$action2 = null; + a.$position145 = null; +} +let oncia_OnMatch_position = $this => { + return $this.$position145; +}, +oncia_OnMatch_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this.$action2); +}, +oncia_OnMatch_copy = ($this, $action, $position) => { + return oncia_OnMatch__init_($action, $position); +}, +oncia_OnMatch_productPrefix = $this => { + return $rt_s(5360); +}, +oncia_OnMatch_productArity = $this => { + return 1; +}, +oncia_OnMatch_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$action2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_OnMatch_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OnMatch_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OnMatch_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OnMatch_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_OnMatch) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$action2; + $x$1 = $x$1.$action2; + if (var$2 !== null) { + if (!oncia_SetClause_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_OnMatch)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $re = var$2; + var$3 = 0; } - return $re; + return var$3; }, -oncipv_Cypher5Parser_createPrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreatePrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 490, 245); +oncia_OnMatch_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_OnMatch_mapExpressions = ($this, $f) => { + return oncia_OnMatch_copy($this, oncia_SetClause_mapExpressions($this.$action2, $f), $this.$position145); +}, +oncia_OnMatch__init_0 = ($this, $action, $position) => { + $this.$action2 = $action; + $this.$position145 = $position; +}, +oncia_OnMatch__init_ = (var_0, var_1) => { + let var_2 = new oncia_OnMatch(); + oncia_OnMatch__init_0(var_2, var_0, var_1); + return var_2; +}, +oncipvaf_StatementBuilder$exitCallClause$lambda$_68_00 = $rt_classWithoutFields(), +oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0_apply = (var$0, var$1) => { + return oncipv_Cypher5Parser$ProcedureArgumentContext_expression(var$1); +}, +oncia_LoadCSV$ = $rt_classWithoutFields(), +oncia_LoadCSV$_MODULE$ = null, +oncia_LoadCSV$_FtpUserPassConnectionStringRegex = null, +oncia_LoadCSV$_$callClinit = () => { + oncia_LoadCSV$_$callClinit = $rt_eraseClinit(oncia_LoadCSV$); + oncia_LoadCSV$__clinit_(); +}, +oncia_LoadCSV$__clinit_ = () => { + let var$1, var$2; + var$1 = new oncia_LoadCSV$; + oncia_LoadCSV$_$callClinit(); + oncia_LoadCSV$_MODULE$ = var$1; + var$2 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + oncia_LoadCSV$_FtpUserPassConnectionStringRegex = sc_StringOps$_r$extension(var$2, $rt_s(5361)); +}, +oncia_LoadCSV$_fromUrl = ($this, $withHeaders, $sensitiveSource, $variable, $fieldTerminator, $position) => { + let var$6, var$7; + if ($sensitiveSource instanceof oncie_StringLiteral) { + var$6 = $sensitiveSource; + var$7 = var$6.$value8; + oncia_LoadCSV$_$callClinit(); + if (sum_Regex_matches(oncia_LoadCSV$_FtpUserPassConnectionStringRegex, var$7)) + $sensitiveSource = oncie_StringLiteral_asSensitiveLiteral(var$6); + } + return oncia_LoadCSV__init_($withHeaders, $sensitiveSource, $variable, $fieldTerminator, $position); +}; +function oncia_SubqueryCall$InTransactionsConcurrencyParameters() { + let a = this; jl_Object.call(a); + a.$concurrency = null; + a.$position279 = null; +} +let oncia_SubqueryCall$InTransactionsConcurrencyParameters_position = $this => { + return $this.$position279; +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_semanticCheck = $this => { + if (s_Option_isEmpty($this.$concurrency)) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + return oncia_ASTSlicingPhrase$_checkExpressionIsStaticInt(oncia_ASTSlicingPhrase$_MODULE$, $this.$concurrency.$get1(), $rt_s(5362), 0); +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_productPrefix = $this => { + return $rt_s(5363); +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_productArity = $this => { + return 1; +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$concurrency; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3027); - oavr_Parser_match($this, 61); - oavr_Recognizer_setState($this, 3040); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - case 53: - case 65: - case 235: - case 291: - oavr_Recognizer_setState($this, 3032); - oncipv_Cypher5Parser_actionForDBMS($this); - oavr_Recognizer_setState($this, 3033); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3034); - oavr_Parser_match($this, 69); - break e; - case 55: - case 56: - case 132: - case 133: - case 172: - oavr_Recognizer_setState($this, 3028); - oncipv_Cypher5Parser_createPrivilegeForDatabase($this); - oavr_Recognizer_setState($this, 3029); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3030); - oncipv_Cypher5Parser_databaseScope($this); - break e; - case 185: - oavr_Recognizer_setState($this, 3036); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3037); - oncipv_Cypher5Parser_graphScope($this); - oavr_Recognizer_setState($this, 3038); - oncipv_Cypher5Parser_graphQualifier($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsConcurrencyParameters) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$concurrency; + $x$1 = $x$1.$concurrency; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_ = ($this, $concurrency, $position) => { + $this.$concurrency = $concurrency; + $this.$position279 = $position; +}, +oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_0 = (var_0, var_1) => { + let var_2 = new oncia_SubqueryCall$InTransactionsConcurrencyParameters(); + oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_SubqueryCall$InTransactionsBatchParameters() { + let a = this; jl_Object.call(a); + a.$batchSize = null; + a.$position205 = null; +} +let oncia_SubqueryCall$InTransactionsBatchParameters_position = $this => { + return $this.$position205; +}, +oncia_SubqueryCall$InTransactionsBatchParameters_semanticCheck = $this => { + return oncia_ASTSlicingPhrase$_checkExpressionIsStaticInt(oncia_ASTSlicingPhrase$_MODULE$, $this.$batchSize, $rt_s(5364), 0); +}, +oncia_SubqueryCall$InTransactionsBatchParameters_productPrefix = $this => { + return $rt_s(5365); +}, +oncia_SubqueryCall$InTransactionsBatchParameters_productArity = $this => { + return 1; +}, +oncia_SubqueryCall$InTransactionsBatchParameters_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$batchSize; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SubqueryCall$InTransactionsBatchParameters_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsBatchParameters_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsBatchParameters_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsBatchParameters_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsBatchParameters) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$batchSize; + $x$1 = $x$1.$batchSize; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_createPrivilegeForDatabase = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 492, 246); +oncia_SubqueryCall$InTransactionsBatchParameters_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SubqueryCall$InTransactionsBatchParameters__init_ = ($this, $batchSize, $position) => { + $this.$batchSize = $batchSize; + $this.$position205 = $position; +}, +oncia_SubqueryCall$InTransactionsBatchParameters__init_0 = (var_0, var_1) => { + let var_2 = new oncia_SubqueryCall$InTransactionsBatchParameters(); + oncia_SubqueryCall$InTransactionsBatchParameters__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour = $rt_classWithoutFields(0), +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$ = $rt_classWithoutFields(), +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$ = null, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$__clinit_ = () => { + oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$ = new oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productArity = $this => { + return 0; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_hashCode = $this => { + return 819285814; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_toString = $this => { + return $rt_s(5366); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$ = $rt_classWithoutFields(), +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$ = null, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$__clinit_ = () => { + oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$ = new oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productArity = $this => { + return 0; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_hashCode = $this => { + return (-1599899888); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_toString = $this => { + return $rt_s(5367); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$ = $rt_classWithoutFields(), +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$ = null, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$__clinit_ = () => { + oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$ = new oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productArity = $this => { + return 0; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_hashCode = $this => { + return 1966194183; +}, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_toString = $this => { + return $rt_s(5368); +}; +function oncia_SubqueryCall$InTransactionsErrorParameters() { + let a = this; jl_Object.call(a); + a.$behaviour = null; + a.$position244 = null; +} +let oncia_SubqueryCall$InTransactionsErrorParameters_position = $this => { + return $this.$position244; +}, +oncia_SubqueryCall$InTransactionsErrorParameters_productPrefix = $this => { + return $rt_s(5369); +}, +oncia_SubqueryCall$InTransactionsErrorParameters_productArity = $this => { + return 1; +}, +oncia_SubqueryCall$InTransactionsErrorParameters_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$behaviour; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SubqueryCall$InTransactionsErrorParameters_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsErrorParameters_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsErrorParameters_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SubqueryCall$InTransactionsErrorParameters_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3047); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 365, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3043); - oncipv_Cypher5Parser_constraintToken($this); - break e; - case 3: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 3044); - oncipv_Cypher5Parser_createNodePrivilegeToken($this); - break e; - case 4: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 3045); - oncipv_Cypher5Parser_createRelPrivilegeToken($this); - break e; - case 5: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 3046); - oncipv_Cypher5Parser_createPropertyPrivilegeToken($this); - break e; - default: - break e; - } - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3042); - oncipv_Cypher5Parser_indexToken($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SubqueryCall$InTransactionsErrorParameters) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$behaviour; + $x$1 = $x$1.$behaviour; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncia_SubqueryCall$InTransactionsErrorParameters_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SubqueryCall$InTransactionsErrorParameters__init_0 = ($this, $behaviour, $position) => { + $this.$behaviour = $behaviour; + $this.$position244 = $position; +}, +oncia_SubqueryCall$InTransactionsErrorParameters__init_ = (var_0, var_1) => { + let var_2 = new oncia_SubqueryCall$InTransactionsErrorParameters(); + oncia_SubqueryCall$InTransactionsErrorParameters__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_PathPatternPart() { + oncie_PatternPart.call(this); + this.$element4 = null; +} +let oncie_PathPatternPart_allVariables = $this => { + return oncie_AnonymousPatternPart_allVariables$($this); +}, +oncie_PathPatternPart_element = $this => { + return $this.$element4; +}, +oncie_PathPatternPart_position = $this => { + return $this.$element4.$position(); +}, +oncie_PathPatternPart_isBounded = $this => { + return $this.$element4.$isBounded(); +}, +oncie_PathPatternPart_dup = ($this, $children) => { + return oncie_PathPatternPart__init_($children.$head()); +}, +oncie_PathPatternPart_copy = ($this, $element) => { + return oncie_PathPatternPart__init_($element); +}, +oncie_PathPatternPart_productPrefix = $this => { + return $rt_s(5370); +}, +oncie_PathPatternPart_productArity = $this => { + return 1; +}, +oncie_PathPatternPart_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$element4; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_PathPatternPart_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PathPatternPart_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PathPatternPart_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PathPatternPart_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PathPatternPart) ? 0 : 1)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + c: { + $x$1 = $x$1; + var$2 = $this.$element4; + $x$1 = $x$1.$element4; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncie_PathPatternPart)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_createNodePrivilegeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 494, 247); +oncie_PathPatternPart_mapExpressions = ($this, $f) => { + return oncie_PathPatternPart_copy($this, $this.$element4.$mapExpressions($f)); +}, +oncie_PathPatternPart_dup1 = ($this, $children) => { + return oncie_PathPatternPart_dup($this, $children); +}, +oncie_PathPatternPart_dup0 = ($this, $children) => { + return oncie_PathPatternPart_dup($this, $children); +}, +oncie_PathPatternPart__init_0 = ($this, $element) => { + $this.$element4 = $element; + oncie_PatternPart__init_($this); +}, +oncie_PathPatternPart__init_ = var_0 => { + let var_1 = new oncie_PathPatternPart(); + oncie_PathPatternPart__init_0(var_1, var_0); + return var_1; +}; +function oncie_NamedPatternPart() { + let a = this; oncie_PatternPart.call(a); + a.$variable7 = null; + a.$patternPart = null; + a.$position92 = null; +} +let oncie_NamedPatternPart_variable = $this => { + return $this.$variable7; +}, +oncie_NamedPatternPart_position = $this => { + return $this.$position92; +}, +oncie_NamedPatternPart_element = $this => { + return $this.$patternPart.$element(); +}, +oncie_NamedPatternPart_allVariables = $this => { + return ($this.$patternPart.$allVariables()).$incl($this.$variable7); +}, +oncie_NamedPatternPart_isBounded = $this => { + return $this.$patternPart.$isBounded(); +}, +oncie_NamedPatternPart_copy = ($this, $variable, $patternPart, $position) => { + return oncie_NamedPatternPart__init_($variable, $patternPart, $position); +}, +oncie_NamedPatternPart_productPrefix = $this => { + return $rt_s(5371); +}, +oncie_NamedPatternPart_productArity = $this => { + return 2; +}, +oncie_NamedPatternPart_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable7; + case 1: + return $this.$patternPart; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_NamedPatternPart_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NamedPatternPart_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NamedPatternPart_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NamedPatternPart_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_NamedPatternPart) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable7; + var$3 = $x$1.$variable7; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3049); - oavr_Parser_match($this, 172); - oavr_Recognizer_setState($this, 3051); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 173) { - oavr_Recognizer_setState($this, 3050); - oavr_Parser_match($this, 173); - } - oavr_Recognizer_setState($this, 3053); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 142 && $_la != 143) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$patternPart; + $x$1 = $x$1.$patternPart; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_NamedPatternPart)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; + } + return var$4; +}, +oncie_NamedPatternPart_mapExpressions = ($this, $f) => { + $f = $this.$patternPart.$mapExpressions($f); + return oncie_NamedPatternPart_copy($this, $this.$variable7, $f, $this.$position92); +}, +oncie_NamedPatternPart__init_0 = ($this, $variable, $patternPart, $position) => { + $this.$variable7 = $variable; + $this.$patternPart = $patternPart; + $this.$position92 = $position; + oncie_PatternPart__init_($this); +}, +oncie_NamedPatternPart__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_NamedPatternPart(); + oncie_NamedPatternPart__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncie_GraphPatternQuantifier = $rt_classWithoutFields(0); +function oncie_PlusQuantifier() { + jl_Object.call(this); + this.$position274 = null; +} +let oncie_PlusQuantifier_position = $this => { + return $this.$position274; +}, +oncie_PlusQuantifier_canBeEmpty = $this => { + return 0; +}, +oncie_PlusQuantifier_productPrefix = $this => { + return $rt_s(5372); +}, +oncie_PlusQuantifier_productArity = $this => { + return 0; +}, +oncie_PlusQuantifier_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_PlusQuantifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PlusQuantifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PlusQuantifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PlusQuantifier_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_PlusQuantifier) ? 0 : 1; + return var$2 && $this instanceof oncie_PlusQuantifier ? 1 : 0; +}, +oncie_PlusQuantifier_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_PlusQuantifier_mapExpressions = ($this, $f) => { + return $this; +}, +oncie_PlusQuantifier__init_0 = ($this, $position) => { + $this.$position274 = $position; +}, +oncie_PlusQuantifier__init_ = var_0 => { + let var_1 = new oncie_PlusQuantifier(); + oncie_PlusQuantifier__init_0(var_1, var_0); + return var_1; +}; +function oncie_StarQuantifier() { + jl_Object.call(this); + this.$position199 = null; +} +let oncie_StarQuantifier_position = $this => { + return $this.$position199; +}, +oncie_StarQuantifier_canBeEmpty = $this => { + return 1; +}, +oncie_StarQuantifier_productPrefix = $this => { + return $rt_s(5373); +}, +oncie_StarQuantifier_productArity = $this => { + return 0; +}, +oncie_StarQuantifier_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_StarQuantifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_StarQuantifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_StarQuantifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_StarQuantifier_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_StarQuantifier) ? 0 : 1; + return var$2 && $this instanceof oncie_StarQuantifier ? 1 : 0; +}, +oncie_StarQuantifier_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_StarQuantifier_mapExpressions = ($this, $f) => { + return $this; +}, +oncie_StarQuantifier__init_0 = ($this, $position) => { + $this.$position199 = $position; +}, +oncie_StarQuantifier__init_ = var_0 => { + let var_1 = new oncie_StarQuantifier(); + oncie_StarQuantifier__init_0(var_1, var_0); + return var_1; +}; +function oncie_IntervalQuantifier() { + let a = this; jl_Object.call(a); + a.$lower1 = null; + a.$upper1 = null; + a.$position170 = null; +} +let oncie_IntervalQuantifier_position = $this => { + return $this.$position170; +}, +oncie_IntervalQuantifier_canBeEmpty = $this => { + return Long_ne(sr_BoxesRunTime_unboxToLong(s_Option_getOrElse(s_Option_map($this.$lower1, new oncie_IntervalQuantifier$canBeEmpty$lambda$_12_0), new oncie_IntervalQuantifier$canBeEmpty$lambda$_12_1)), Long_ZERO) ? 0 : 1; +}, +oncie_IntervalQuantifier_copy = ($this, $lower, $upper, $position) => { + return oncie_IntervalQuantifier__init_($lower, $upper, $position); +}, +oncie_IntervalQuantifier_productPrefix = $this => { + return $rt_s(5374); +}, +oncie_IntervalQuantifier_productArity = $this => { + return 2; +}, +oncie_IntervalQuantifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lower1; + case 1: + return $this.$upper1; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_createRelPrivilegeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 496, 248); +oncie_IntervalQuantifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_IntervalQuantifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_IntervalQuantifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_IntervalQuantifier_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3055); - oavr_Parser_match($this, 172); - oavr_Recognizer_setState($this, 3057); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 224) { - oavr_Recognizer_setState($this, 3056); - oavr_Parser_match($this, 224); - } - oavr_Recognizer_setState($this, 3059); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 282 && $_la != 284) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_IntervalQuantifier) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lower1; + var$3 = $x$1.$lower1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$3 !== null) + break b; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_createPropertyPrivilegeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 498, 249); - a: { - b: { - c: { d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3061); - oavr_Parser_match($this, 172); - oavr_Recognizer_setState($this, 3063); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 211) { - oavr_Recognizer_setState($this, 3062); - oavr_Parser_match($this, 211); - } - oavr_Recognizer_setState($this, 3065); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 165 && $_la != 166) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$upper1; + $x$1 = $x$1.$upper1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_IntervalQuantifier)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_actionForDBMS = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ActionForDBMSContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 500, 250); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3074); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3067); - oavr_Parser_match($this, 15); - break e; - case 53: - case 65: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3069); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 53) { - oavr_Recognizer_setState($this, 3068); - oavr_Parser_match($this, 53); - } - oavr_Recognizer_setState($this, 3071); - oavr_Parser_match($this, 65); - break e; - case 235: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 3072); - oavr_Parser_match($this, 235); - break e; - case 291: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 3073); - oavr_Parser_match($this, 291); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncie_IntervalQuantifier_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_IntervalQuantifier_mapExpressions = ($this, $f) => { + return oncie_IntervalQuantifier_copy($this, s_Option_map($this.$lower1, $f), s_Option_map($this.$upper1, $f), $this.$position170); +}, +oncie_IntervalQuantifier__init_0 = ($this, $lower, $upper, $position) => { + $this.$lower1 = $lower; + $this.$upper1 = $upper; + $this.$position170 = $position; +}, +oncie_IntervalQuantifier__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_IntervalQuantifier(); + oncie_IntervalQuantifier__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_FixedQuantifier() { + let a = this; jl_Object.call(a); + a.$value17 = null; + a.$position165 = null; +} +let oncie_FixedQuantifier_position = $this => { + return $this.$position165; +}, +oncie_FixedQuantifier_canBeEmpty = $this => { + return !sr_BoxesRunTime_equalsNumObject(oncie_DecimalIntegerLiteral_value($this.$value17), jl_Integer_valueOf(0)) ? 0 : 1; +}, +oncie_FixedQuantifier_copy = ($this, $value, $position) => { + return oncie_FixedQuantifier__init_0($value, $position); +}, +oncie_FixedQuantifier_productPrefix = $this => { + return $rt_s(5375); +}, +oncie_FixedQuantifier_productArity = $this => { + return 1; +}, +oncie_FixedQuantifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$value17; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_dropPrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 502, 251); +oncie_FixedQuantifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_FixedQuantifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_FixedQuantifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_FixedQuantifier_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3076); - oavr_Parser_match($this, 87); - oavr_Recognizer_setState($this, 3088); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - case 53: - case 65: - case 235: - case 291: - oavr_Recognizer_setState($this, 3084); - oncipv_Cypher5Parser_actionForDBMS($this); - oavr_Recognizer_setState($this, 3085); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3086); - oavr_Parser_match($this, 69); - break e; - case 55: - case 56: - case 132: - case 133: - f: { - oavr_Recognizer_setState($this, 3079); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 55: - case 56: - oavr_Recognizer_setState($this, 3078); - oncipv_Cypher5Parser_constraintToken($this); - break f; - case 132: - case 133: - oavr_Recognizer_setState($this, 3077); - oncipv_Cypher5Parser_indexToken($this); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3081); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3082); - oncipv_Cypher5Parser_databaseScope($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_FixedQuantifier) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$value17; + $x$1 = $x$1.$value17; + if (var$2 !== null) { + if (!oncie_UnsignedDecimalIntegerLiteral_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_FixedQuantifier)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_loadPrivilege = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LoadPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 504, 252); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3090); - oavr_Parser_match($this, 152); - oavr_Recognizer_setState($this, 3091); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3096); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 18: - oavr_Recognizer_setState($this, 3094); - oavr_Parser_match($this, 18); - oavr_Recognizer_setState($this, 3095); - oavr_Parser_match($this, 64); - break e; - case 45: - case 289: - oavr_Recognizer_setState($this, 3092); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 45 && $_la != 289) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3093); - oncipv_Cypher5Parser_stringOrParameter($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncie_FixedQuantifier_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_FixedQuantifier_mapExpressions = ($this, $f) => { + return oncie_FixedQuantifier_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$value17), $this.$position165); +}, +oncie_FixedQuantifier__init_ = ($this, $value, $position) => { + $this.$value17 = $value; + $this.$position165 = $position; +}, +oncie_FixedQuantifier__init_0 = (var_0, var_1) => { + let var_2 = new oncie_FixedQuantifier(); + oncie_FixedQuantifier__init_(var_2, var_0, var_1); + return var_2; +}, +oncie_QuantifiedPath$ = $rt_classWithoutFields(), +oncie_QuantifiedPath$_MODULE$ = null, +oncie_QuantifiedPath$__clinit_ = () => { + oncie_QuantifiedPath$_MODULE$ = new oncie_QuantifiedPath$; +}, +oncie_QuantifiedPath$_apply = ($this, $part, $quantifier, $optionalWhereExpression, $position) => { + let $entityBindings, var$6; + $entityBindings = $part.$allVariables(); + var$6 = new oncie_QuantifiedPath$$apply$lambda$_1_0; + var$6.$_0703 = $position; + return oncie_QuantifiedPath__init_($part, $quantifier, $optionalWhereExpression, $entityBindings.$map(var$6), $position); +}; +function oncie_PathConcatenation() { + let a = this; oncie_PatternElement.call(a); + a.$factors0 = null; + a.$position130 = null; +} +let oncie_PathConcatenation_factors = $this => { + return $this.$factors0; +}, +oncie_PathConcatenation_position = $this => { + return $this.$position130; +}, +oncie_PathConcatenation_allVariables = $this => { + return sc_AbstractIterable_toSet(sc_AbstractIterable_flatMap($this.$factors0.$view1(), new oncie_PathConcatenation$allVariables$lambda$_4_0)); +}, +oncie_PathConcatenation_isBounded = $this => { + return $this.$factors0.$forall(new oncie_PathConcatenation$isBounded$lambda$_7_0); +}, +oncie_PathConcatenation_copy = ($this, $factors, $position) => { + return oncie_PathConcatenation__init_0($factors, $position); +}, +oncie_PathConcatenation_productPrefix = $this => { + return $rt_s(5376); +}, +oncie_PathConcatenation_productArity = $this => { + return 1; +}, +oncie_PathConcatenation_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$factors0; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_showPrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 506, 253); +oncie_PathConcatenation_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PathConcatenation_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PathConcatenation_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PathConcatenation_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3098); - oavr_Parser_match($this, 255); - oavr_Recognizer_setState($this, 3123); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - case 206: - case 235: - case 248: - case 249: - case 251: - case 252: - case 291: - f: { - oavr_Recognizer_setState($this, 3119); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 3110); - oavr_Parser_match($this, 15); - break f; - case 206: - oavr_Recognizer_setState($this, 3111); - oavr_Parser_match($this, 206); - break f; - case 235: - oavr_Recognizer_setState($this, 3112); - oavr_Parser_match($this, 235); - break f; - case 248: - oavr_Recognizer_setState($this, 3113); - oavr_Parser_match($this, 248); - break f; - case 249: - oavr_Recognizer_setState($this, 3114); - oavr_Parser_match($this, 249); - break f; - case 251: - case 252: - oavr_Recognizer_setState($this, 3115); - oncipv_Cypher5Parser_settingToken($this); - oavr_Recognizer_setState($this, 3116); - oncipv_Cypher5Parser_settingQualifier($this); - break f; - case 291: - oavr_Recognizer_setState($this, 3118); - oavr_Parser_match($this, 291); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3121); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3122); - oavr_Parser_match($this, 69); - break e; - case 55: - case 56: - case 132: - case 133: - case 277: - case 278: - g: { - oavr_Recognizer_setState($this, 3105); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 55: - case 56: - oavr_Recognizer_setState($this, 3100); - oncipv_Cypher5Parser_constraintToken($this); - break g; - case 132: - case 133: - oavr_Recognizer_setState($this, 3099); - oncipv_Cypher5Parser_indexToken($this); - break g; - case 277: - case 278: - oavr_Recognizer_setState($this, 3101); - oncipv_Cypher5Parser_transactionToken($this); - oavr_Recognizer_setState($this, 3103); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 155) - break g; - oavr_Recognizer_setState($this, 3102); - oncipv_Cypher5Parser_userQualifier($this); - break g; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3107); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3108); - oncipv_Cypher5Parser_databaseScope($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PathConcatenation) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$factors0; + $x$1 = $x$1.$factors0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_PathConcatenation)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_setPrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SetPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 508, 254); +oncie_PathConcatenation_mapExpressions = ($this, $f) => { + let var$2, var$3; + var$2 = $this.$factors0; + var$3 = new oncie_PathConcatenation$mapExpressions$lambda$_9_0; + var$3.$_0452 = $f; + return oncie_PathConcatenation_copy($this, var$2.$map(var$3), $this.$position130); +}, +oncie_PathConcatenation__init_ = ($this, $factors, $position) => { + $this.$factors0 = $factors; + $this.$position130 = $position; + oncie_PatternElement__init_($this); +}, +oncie_PathConcatenation__init_0 = (var_0, var_1) => { + let var_2 = new oncie_PathConcatenation(); + oncie_PathConcatenation__init_(var_2, var_0, var_1); + return var_2; +}, +oncie_PatternPart$CountedSelector = $rt_classWithoutFields(0); +function oncie_PatternPart$AnyShortestPath() { + let a = this; jl_Object.call(a); + a.$count4 = null; + a.$position293 = null; +} +let oncie_PatternPart$AnyShortestPath_count = $this => { + return $this.$count4; +}, +oncie_PatternPart$AnyShortestPath_position = $this => { + return $this.$position293; +}, +oncie_PatternPart$AnyShortestPath_prettified = $this => { + let var$1, var$2; + var$1 = oncie_DecimalIntegerLiteral_value($this.$count4); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5377)), var$1), $rt_s(5378)); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncie_PatternPart$AnyShortestPath_isBounded = $this => { + return 1; +}, +oncie_PatternPart$AnyShortestPath_productPrefix = $this => { + return $rt_s(5379); +}, +oncie_PatternPart$AnyShortestPath_productArity = $this => { + return 1; +}, +oncie_PatternPart$AnyShortestPath_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$count4; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_PatternPart$AnyShortestPath_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AnyShortestPath_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AnyShortestPath_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AnyShortestPath_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3125); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 3153); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 29: - oavr_Recognizer_setState($this, 3150); - oavr_Parser_match($this, 29); - oavr_Recognizer_setState($this, 3151); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3152); - oavr_Parser_match($this, 69); - break e; - case 65: - case 193: - case 194: - case 291: - f: { - oavr_Recognizer_setState($this, 3135); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 65: - oavr_Recognizer_setState($this, 3133); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3134); - oavr_Parser_match($this, 11); - break f; - case 193: - case 194: - oavr_Recognizer_setState($this, 3126); - oncipv_Cypher5Parser_passwordToken($this); - break f; - case 291: - oavr_Recognizer_setState($this, 3127); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 3131); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 126: - oavr_Recognizer_setState($this, 3129); - oavr_Parser_match($this, 126); - oavr_Recognizer_setState($this, 3130); - oavr_Parser_match($this, 65); - break f; - case 261: - oavr_Recognizer_setState($this, 3128); - oavr_Parser_match($this, 261); - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3137); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3138); - oavr_Parser_match($this, 69); - break e; - case 142: - oavr_Recognizer_setState($this, 3139); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 3140); - oncipv_Cypher5Parser_labelsResource($this); - oavr_Recognizer_setState($this, 3141); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3142); - oncipv_Cypher5Parser_graphScope($this); - break e; - case 211: - oavr_Recognizer_setState($this, 3144); - oavr_Parser_match($this, 211); - oavr_Recognizer_setState($this, 3145); - oncipv_Cypher5Parser_propertiesResource($this); - oavr_Recognizer_setState($this, 3146); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3147); - oncipv_Cypher5Parser_graphScope($this); - oavr_Recognizer_setState($this, 3148); - oncipv_Cypher5Parser_graphQualifier($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PatternPart$AnyShortestPath) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$count4; + $x$1 = $x$1.$count4; + if (var$2 !== null) { + if (!oncie_UnsignedDecimalIntegerLiteral_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_PatternPart$AnyShortestPath)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_passwordToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PasswordTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 510, 255); +oncie_PatternPart$AnyShortestPath_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_PatternPart$AnyShortestPath__init_0 = ($this, $count, $position) => { + $this.$count4 = $count; + $this.$position293 = $position; +}, +oncie_PatternPart$AnyShortestPath__init_ = (var_0, var_1) => { + let var_2 = new oncie_PatternPart$AnyShortestPath(); + oncie_PatternPart$AnyShortestPath__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_PatternPart$AllShortestPaths() { + jl_Object.call(this); + this.$position264 = null; +} +let oncie_PatternPart$AllShortestPaths_position = $this => { + return $this.$position264; +}, +oncie_PatternPart$AllShortestPaths_prettified = $this => { + return $rt_s(5380); +}, +oncie_PatternPart$AllShortestPaths_isBounded = $this => { + return 1; +}, +oncie_PatternPart$AllShortestPaths_productPrefix = $this => { + return $rt_s(5381); +}, +oncie_PatternPart$AllShortestPaths_productArity = $this => { + return 0; +}, +oncie_PatternPart$AllShortestPaths_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_PatternPart$AllShortestPaths_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AllShortestPaths_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AllShortestPaths_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AllShortestPaths_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_PatternPart$AllShortestPaths) ? 0 : 1; + return var$2 && $this instanceof oncie_PatternPart$AllShortestPaths ? 1 : 0; +}, +oncie_PatternPart$AllShortestPaths_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_PatternPart$AllShortestPaths__init_0 = ($this, $position) => { + $this.$position264 = $position; +}, +oncie_PatternPart$AllShortestPaths__init_ = var_0 => { + let var_1 = new oncie_PatternPart$AllShortestPaths(); + oncie_PatternPart$AllShortestPaths__init_0(var_1, var_0); + return var_1; +}; +function oncie_PatternPart$AnyPath() { + let a = this; jl_Object.call(a); + a.$count3 = null; + a.$position197 = null; +} +let oncie_PatternPart$AnyPath_count = $this => { + return $this.$count3; +}, +oncie_PatternPart$AnyPath_position = $this => { + return $this.$position197; +}, +oncie_PatternPart$AnyPath_prettified = $this => { + let var$1, var$2; + var$1 = oncie_DecimalIntegerLiteral_value($this.$count3); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5382)), var$1), $rt_s(5378)); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncie_PatternPart$AnyPath_isBounded = $this => { + return 1; +}, +oncie_PatternPart$AnyPath_productPrefix = $this => { + return $rt_s(5383); +}, +oncie_PatternPart$AnyPath_productArity = $this => { + return 1; +}, +oncie_PatternPart$AnyPath_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$count3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_PatternPart$AnyPath_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AnyPath_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AnyPath_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AnyPath_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3155); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 193 && $_la != 194) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PatternPart$AnyPath) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$count3; + $x$1 = $x$1.$count3; + if (var$2 !== null) { + if (!oncie_UnsignedDecimalIntegerLiteral_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_PatternPart$AnyPath)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}, +oncie_PatternPart$AnyPath_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_PatternPart$AnyPath__init_0 = ($this, $count, $position) => { + $this.$count3 = $count; + $this.$position197 = $position; +}, +oncie_PatternPart$AnyPath__init_ = (var_0, var_1) => { + let var_2 = new oncie_PatternPart$AnyPath(); + oncie_PatternPart$AnyPath__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_PatternPart$ShortestGroups() { + let a = this; jl_Object.call(a); + a.$count2 = null; + a.$position216 = null; +} +let oncie_PatternPart$ShortestGroups_count = $this => { + return $this.$count2; +}, +oncie_PatternPart$ShortestGroups_position = $this => { + return $this.$position216; +}, +oncie_PatternPart$ShortestGroups_prettified = $this => { + let var$1, var$2; + var$1 = oncie_DecimalIntegerLiteral_value($this.$count2); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5377)), var$1), $rt_s(5384)); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncie_PatternPart$ShortestGroups_isBounded = $this => { + return 1; +}, +oncie_PatternPart$ShortestGroups_productPrefix = $this => { + return $rt_s(5385); +}, +oncie_PatternPart$ShortestGroups_productArity = $this => { + return 1; +}, +oncie_PatternPart$ShortestGroups_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$count2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_PatternPart$ShortestGroups_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser_removePrivilege = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RemovePrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 512, 256); +oncie_PatternPart$ShortestGroups_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$ShortestGroups_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$ShortestGroups_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3157); - oavr_Parser_match($this, 226); - oavr_Recognizer_setState($this, 3166); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 142: - oavr_Recognizer_setState($this, 3161); - oavr_Parser_match($this, 142); - oavr_Recognizer_setState($this, 3162); - oncipv_Cypher5Parser_labelsResource($this); - oavr_Recognizer_setState($this, 3163); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3164); - oncipv_Cypher5Parser_graphScope($this); - break e; - case 206: - case 235: - oavr_Recognizer_setState($this, 3158); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 206 && $_la != 235) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3159); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3160); - oavr_Parser_match($this, 69); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PatternPart$ShortestGroups) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$count2; + $x$1 = $x$1.$count2; + if (var$2 !== null) { + if (!oncie_UnsignedDecimalIntegerLiteral_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_PatternPart$ShortestGroups)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_writePrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$WritePrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 514, 257); +oncie_PatternPart$ShortestGroups_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_PatternPart$ShortestGroups__init_0 = ($this, $count, $position) => { + $this.$count2 = $count; + $this.$position216 = $position; +}, +oncie_PatternPart$ShortestGroups__init_ = (var_0, var_1) => { + let var_2 = new oncie_PatternPart$ShortestGroups(); + oncie_PatternPart$ShortestGroups__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_PatternPart$AllPaths() { + jl_Object.call(this); + this.$position234 = null; +} +let oncie_PatternPart$AllPaths_position = $this => { + return $this.$position234; +}, +oncie_PatternPart$AllPaths_prettified = $this => { + return $rt_s(5386); +}, +oncie_PatternPart$AllPaths_isBounded = $this => { + return 0; +}, +oncie_PatternPart$AllPaths_productPrefix = $this => { + return $rt_s(5387); +}, +oncie_PatternPart$AllPaths_productArity = $this => { + return 0; +}, +oncie_PatternPart$AllPaths_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_PatternPart$AllPaths_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AllPaths_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AllPaths_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PatternPart$AllPaths_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_PatternPart$AllPaths) ? 0 : 1; + return var$2 && $this instanceof oncie_PatternPart$AllPaths ? 1 : 0; +}, +oncie_PatternPart$AllPaths_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_PatternPart$AllPaths__init_0 = ($this, $position) => { + $this.$position234 = $position; +}, +oncie_PatternPart$AllPaths__init_ = var_0 => { + let var_1 = new oncie_PatternPart$AllPaths(); + oncie_PatternPart$AllPaths__init_0(var_1, var_0); + return var_1; +}; +function oncie_RelationshipsPattern() { + let a = this; jl_Object.call(a); + a.$element5 = null; + a.$position154 = null; +} +let oncie_RelationshipsPattern_foldedOver = $this => { + return $this; +}, +oncie_RelationshipsPattern_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncie_RelationshipsPattern_element = $this => { + return $this.$element5; +}, +oncie_RelationshipsPattern_position = $this => { + return $this.$position154; +}, +oncie_RelationshipsPattern_productPrefix = $this => { + return $rt_s(5388); +}, +oncie_RelationshipsPattern_productArity = $this => { + return 1; +}, +oncie_RelationshipsPattern_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$element5; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_RelationshipsPattern_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_RelationshipsPattern_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_RelationshipsPattern_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_RelationshipsPattern_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3168); - oavr_Parser_match($this, 304); - oavr_Recognizer_setState($this, 3169); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3170); - oncipv_Cypher5Parser_graphScope($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_RelationshipsPattern) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$element5; + $x$1 = $x$1.$element5; + if (var$2 !== null) { + if (!oncie_RelationshipChain_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_RelationshipsPattern)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_databasePrivilege = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DatabasePrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 516, 258); +oncie_RelationshipsPattern_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_RelationshipsPattern__init_0 = ($this, $element, $position) => { + $this.$element5 = $element; + $this.$position154 = $position; +}, +oncie_RelationshipsPattern__init_ = (var_0, var_1) => { + let var_2 = new oncie_RelationshipsPattern(); + oncie_RelationshipsPattern__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_ParenthesizedPath() { + let a = this; oncie_PatternElement.call(a); + a.$part0 = null; + a.$optionalWhereClause0 = null; + a.$position41 = null; +} +let oncie_ParenthesizedPath_part = $this => { + return $this.$part0; +}, +oncie_ParenthesizedPath_optionalWhereClause = $this => { + return $this.$optionalWhereClause0; +}, +oncie_ParenthesizedPath_position = $this => { + return $this.$position41; +}, +oncie_ParenthesizedPath_allVariables = $this => { + return ($this.$part0.$element()).$allVariables(); +}, +oncie_ParenthesizedPath_isBounded = $this => { + return $this.$part0.$isBounded(); +}, +oncie_ParenthesizedPath_copy = ($this, $part, $optionalWhereClause, $position) => { + return oncie_ParenthesizedPath__init_($part, $optionalWhereClause, $position); +}, +oncie_ParenthesizedPath_productPrefix = $this => { + return $rt_s(5389); +}, +oncie_ParenthesizedPath_productArity = $this => { + return 2; +}, +oncie_ParenthesizedPath_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$part0; + case 1: + return $this.$optionalWhereClause0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_ParenthesizedPath_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ParenthesizedPath_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ParenthesizedPath_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ParenthesizedPath_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ParenthesizedPath) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$part0; + var$3 = $x$1.$part0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3194); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - oavr_Recognizer_setState($this, 3172); - oavr_Parser_match($this, 11); - break e; - case 55: - case 56: - case 132: - case 133: - case 165: - g: { - oavr_Recognizer_setState($this, 3178); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 55: - case 56: - oavr_Recognizer_setState($this, 3176); - oncipv_Cypher5Parser_constraintToken($this); - break g; - case 132: - case 133: - oavr_Recognizer_setState($this, 3175); - oncipv_Cypher5Parser_indexToken($this); - break g; - case 165: - oavr_Recognizer_setState($this, 3177); - oavr_Parser_match($this, 165); - break g; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3181); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 157) - break e; - oavr_Recognizer_setState($this, 3180); - oavr_Parser_match($this, 157); - break e; - case 259: - oavr_Recognizer_setState($this, 3173); - oavr_Parser_match($this, 259); - break e; - case 262: - oavr_Recognizer_setState($this, 3174); - oavr_Parser_match($this, 262); - break e; - case 267: - case 277: - break f; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - h: { - oavr_Recognizer_setState($this, 3189); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 267: - oavr_Recognizer_setState($this, 3187); - oavr_Parser_match($this, 267); - oavr_Recognizer_setState($this, 3188); - oncipv_Cypher5Parser_transactionToken($this); - break h; - case 277: - oavr_Recognizer_setState($this, 3183); - oavr_Parser_match($this, 277); - oavr_Recognizer_setState($this, 3185); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 157) - break h; - oavr_Recognizer_setState($this, 3184); - oavr_Parser_match($this, 157); - break h; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3192); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) { - oavr_Recognizer_setState($this, 3191); - oncipv_Cypher5Parser_userQualifier($this); - } - } - oavr_Recognizer_setState($this, 3196); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3197); - oncipv_Cypher5Parser_databaseScope($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$optionalWhereClause0; + $x$1 = $x$1.$optionalWhereClause0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_ParenthesizedPath)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_dbmsPrivilege = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DbmsPrivilegeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 518, 259); +oncie_ParenthesizedPath_mapExpressions = ($this, $f) => { + return oncie_ParenthesizedPath_copy($this, $this.$part0.$mapExpressions($f), s_Option_map($this.$optionalWhereClause0, $f), $this.$position41); +}, +oncie_ParenthesizedPath__init_0 = ($this, $part, $optionalWhereClause, $position) => { + $this.$part0 = $part; + $this.$optionalWhereClause0 = $optionalWhereClause; + $this.$position41 = $position; + oncie_PatternElement__init_($this); +}, +oncie_ParenthesizedPath__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_ParenthesizedPath(); + oncie_ParenthesizedPath__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncie_ElementTypeName = $rt_classWithoutFields(0); +function oncie_LabelName() { + let a = this; jl_Object.call(a); + a.$name21 = null; + a.$position72 = null; +} +let oncie_LabelName_name = $this => { + return $this.$name21; +}, +oncie_LabelName_position = $this => { + return $this.$position72; +}, +oncie_LabelName_productPrefix = $this => { + return $rt_s(5390); +}, +oncie_LabelName_productArity = $this => { + return 1; +}, +oncie_LabelName_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name21; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_LabelName_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LabelName_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LabelName_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LabelName_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3222); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - case 53: - case 65: - case 206: - case 235: - case 248: - case 291: - g: { - oavr_Recognizer_setState($this, 3212); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 15: - oavr_Recognizer_setState($this, 3203); - oavr_Parser_match($this, 15); - break g; - case 53: - case 65: - oavr_Recognizer_setState($this, 3205); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 53) { - oavr_Recognizer_setState($this, 3204); - oavr_Parser_match($this, 53); - } - oavr_Recognizer_setState($this, 3207); - oavr_Parser_match($this, 65); - break g; - case 206: - oavr_Recognizer_setState($this, 3208); - oavr_Parser_match($this, 206); - break g; - case 235: - oavr_Recognizer_setState($this, 3209); - oavr_Parser_match($this, 235); - break g; - case 248: - oavr_Recognizer_setState($this, 3210); - oavr_Parser_match($this, 248); - break g; - case 291: - oavr_Recognizer_setState($this, 3211); - oavr_Parser_match($this, 291); - break g; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3214); - oavr_Parser_match($this, 157); - break e; - case 19: - oavr_Recognizer_setState($this, 3199); - oavr_Parser_match($this, 19); - oavr_Recognizer_setState($this, 3200); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 15 && $_la != 65 && $_la != 291) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - case 27: - break f; - case 102: - oavr_Recognizer_setState($this, 3215); - oncipv_Cypher5Parser_dbmsPrivilegeExecute($this); - break e; - case 129: - oavr_Recognizer_setState($this, 3218); - oavr_Parser_match($this, 129); - oavr_Recognizer_setState($this, 3220); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 155) - break e; - oavr_Recognizer_setState($this, 3219); - oncipv_Cypher5Parser_userQualifier($this); - break e; - case 221: - oavr_Recognizer_setState($this, 3216); - oavr_Parser_match($this, 221); - oavr_Recognizer_setState($this, 3217); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 235 && $_la != 291) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3201); - oavr_Parser_match($this, 27); - oavr_Recognizer_setState($this, 3202); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 206 && $_la != 235) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } - oavr_Recognizer_setState($this, 3224); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3225); - oavr_Parser_match($this, 69); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_LabelName) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$name21; + $x$1 = $x$1.$name21; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_LabelName)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_dbmsPrivilegeExecute = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 520, 260); +oncie_LabelName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_LabelName__init_0 = ($this, $name, $position) => { + $this.$name21 = $name; + $this.$position72 = $position; +}, +oncie_LabelName__init_ = (var_0, var_1) => { + let var_2 = new oncie_LabelName(); + oncie_LabelName__init_0(var_2, var_0, var_1); + return var_2; +}, +oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_00 = $rt_classWithoutFields(), +oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = new oncie_LabelName; + var$3 = var$1.$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelName__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); + return var$2; +}, +oncil_LabelExpressionDynamicLeafExpression = $rt_classWithoutFields(0); +function oncie_DynamicLabelOrRelTypeExpression() { + let a = this; jl_Object.call(a); + a.$expression18 = null; + a.$all1 = 0; + a.$position76 = null; +} +let oncie_DynamicLabelOrRelTypeExpression_expression = $this => { + return $this.$expression18; +}, +oncie_DynamicLabelOrRelTypeExpression_all = $this => { + return $this.$all1; +}, +oncie_DynamicLabelOrRelTypeExpression_position = $this => { + return $this.$position76; +}, +oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression = $this => { + return oncie_DynamicLabelExpression__init_($this.$expression18, $this.$all1, $this.$position76); +}, +oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression = $this => { + return oncie_DynamicRelTypeExpression__init_($this.$expression18, $this.$all1, $this.$position76); +}, +oncie_DynamicLabelOrRelTypeExpression_copy = ($this, $expression, $all, $position) => { + return oncie_DynamicLabelOrRelTypeExpression__init_0($expression, $all, $position); +}, +oncie_DynamicLabelOrRelTypeExpression_productPrefix = $this => { + return $rt_s(5391); +}, +oncie_DynamicLabelOrRelTypeExpression_productArity = $this => { + return 2; +}, +oncie_DynamicLabelOrRelTypeExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression18; + case 1: + return jl_Boolean_valueOf($this.$all1); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_DynamicLabelOrRelTypeExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_DynamicLabelOrRelTypeExpression_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5391))), sr_Statics_anyHash($this.$expression18)), !$this.$all1 ? 1237 : 1231), 2); +}, +oncie_DynamicLabelOrRelTypeExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_DynamicLabelOrRelTypeExpression_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3227); - oavr_Parser_match($this, 102); - oavr_Recognizer_setState($this, 3248); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 13: - case 14: - oavr_Recognizer_setState($this, 3228); - oncipv_Cypher5Parser_adminToken($this); - oavr_Recognizer_setState($this, 3229); - oavr_Parser_match($this, 209); - break e; - case 34: - case 116: - case 117: - case 208: - case 209: - case 291: - oavr_Recognizer_setState($this, 3232); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 34) { - oavr_Recognizer_setState($this, 3231); - oavr_Parser_match($this, 34); - } - oavr_Recognizer_setState($this, 3246); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 116: - case 117: - case 291: - oavr_Recognizer_setState($this, 3241); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 291) { - oavr_Recognizer_setState($this, 3237); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 3239); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 72) { - oavr_Recognizer_setState($this, 3238); - oavr_Parser_match($this, 72); - } - } - oavr_Recognizer_setState($this, 3243); - oncipv_Cypher5Parser_functionToken($this); - oavr_Recognizer_setState($this, 3244); - oncipv_Cypher5Parser_executeFunctionQualifier($this); - break e; - case 208: - case 209: - oavr_Recognizer_setState($this, 3234); - oncipv_Cypher5Parser_procedureToken($this); - oavr_Recognizer_setState($this, 3235); - oncipv_Cypher5Parser_executeProcedureQualifier($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_DynamicLabelOrRelTypeExpression) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$all1 != $x$1.$all1) + break b; + c: { + var$2 = $this.$expression18; + $x$1 = $x$1.$expression18; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_DynamicLabelOrRelTypeExpression)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_adminToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AdminTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 522, 261); +oncie_DynamicLabelOrRelTypeExpression_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_DynamicLabelOrRelTypeExpression_mapExpressions = ($this, $f) => { + return oncie_DynamicLabelOrRelTypeExpression_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression18), $this.$all1, $this.$position76); +}, +oncie_DynamicLabelOrRelTypeExpression__init_ = ($this, $expression, $all, $position) => { + $this.$expression18 = $expression; + $this.$all1 = $all; + $this.$position76 = $position; +}, +oncie_DynamicLabelOrRelTypeExpression__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_DynamicLabelOrRelTypeExpression(); + oncie_DynamicLabelOrRelTypeExpression__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oncie_RelTypeExpression = $rt_classWithoutFields(0); +function oncie_RelTypeName() { + let a = this; jl_Object.call(a); + a.$name23 = null; + a.$position296 = null; +} +let oncie_RelTypeName_name = $this => { + return $this.$name23; +}, +oncie_RelTypeName_position = $this => { + return $this.$position296; +}, +oncie_RelTypeName_productPrefix = $this => { + return $rt_s(5392); +}, +oncie_RelTypeName_productArity = $this => { + return 1; +}, +oncie_RelTypeName_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name23; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_RelTypeName_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_RelTypeName_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_RelTypeName_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_RelTypeName_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3250); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 13 && $_la != 14) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_RelTypeName) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$name23; + $x$1 = $x$1.$name23; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_RelTypeName)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}, +oncie_RelTypeName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_RelTypeName__init_ = ($this, $name, $position) => { + $this.$name23 = $name; + $this.$position296 = $position; +}, +oncie_RelTypeName__init_0 = (var_0, var_1) => { + let var_2 = new oncie_RelTypeName(); + oncie_RelTypeName__init_(var_2, var_0, var_1); + return var_2; +}, +oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0_apply0 = (var$0, var$1) => { + return var$1.$position22; +}; +function oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_10() { + jl_Object.call(this); + this.$_01010 = null; +} +let oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1_apply = var$0 => { + let var$1; + var$1 = var$0.$_01010; + oncipau_Util$_$callClinit(); + return oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1); +}, +oncil_LabelExpression$Disjunctions$ = $rt_classWithoutFields(), +oncil_LabelExpression$Disjunctions$_MODULE$ = null, +oncil_LabelExpression$Disjunctions$__clinit_ = () => { + oncil_LabelExpression$Disjunctions$_MODULE$ = new oncil_LabelExpression$Disjunctions$; +}, +oncil_LabelExpression$Disjunctions$_flat = ($this, $lhs, $rhs, $position, $containsIs) => { + let var$5; + var$5 = new oncil_LabelExpression$Disjunctions; + s_package$_$callClinit(); + oncil_LabelExpression$Disjunctions__init_(var$5, (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncil_LabelExpression, [$lhs, $rhs]))), $containsIs, $position); + return oncil_LabelExpression$Disjunctions_unnestDisjunctions(var$5); +}, +oncil_BinaryLabelExpression = $rt_classWithoutFields(0), +oncil_BinaryLabelExpression_flatten$ = $$this => { + return (($$this.$lhs1()).$flatten0()).$concat(($$this.$rhs1()).$flatten0()); +}; +function oncil_LabelExpression$ColonDisjunction() { + let a = this; jl_Object.call(a); + a.$lhs3 = null; + a.$rhs3 = null; + a.$containsIs3 = 0; + a.$position32 = null; +} +let oncil_LabelExpression$ColonDisjunction_flatten = $this => { + return oncil_BinaryLabelExpression_flatten$($this); +}, +oncil_LabelExpression$ColonDisjunction_containsGpmSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +}, +oncil_LabelExpression$ColonDisjunction_containsGpmSpecificRelTypeExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +}, +oncil_LabelExpression$ColonDisjunction_containsMatchSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +}, +oncil_LabelExpression$ColonDisjunction_containsDynamicLabelOrTypeExpression = $this => { + return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +}, +oncil_LabelExpression$ColonDisjunction_replaceColonSyntax = $this => { + return oncil_LabelExpression_replaceColonSyntax$($this); +}, +oncil_LabelExpression$ColonDisjunction_foldedOver = $this => { + return $this; +}, +oncil_LabelExpression$ColonDisjunction_folder0 = $this => { + return onciu_Foldable_folder$($this); +}, +oncil_LabelExpression$ColonDisjunction_folder = ($this, $cancellation) => { + return onciu_Foldable_folder$0($this, $cancellation); +}, +oncil_LabelExpression$ColonDisjunction_lhs = $this => { + return $this.$lhs3; +}, +oncil_LabelExpression$ColonDisjunction_rhs = $this => { + return $this.$rhs3; +}, +oncil_LabelExpression$ColonDisjunction_containsIs = $this => { + return $this.$containsIs3; +}, +oncil_LabelExpression$ColonDisjunction_position = $this => { + return $this.$position32; +}, +oncil_LabelExpression$ColonDisjunction_copy = ($this, $lhs, $rhs, $containsIs, $position) => { + return oncil_LabelExpression$ColonDisjunction__init_0($lhs, $rhs, $containsIs, $position); +}, +oncil_LabelExpression$ColonDisjunction_productPrefix = $this => { + return $rt_s(5393); +}, +oncil_LabelExpression$ColonDisjunction_productArity = $this => { + return 3; +}, +oncil_LabelExpression$ColonDisjunction_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs3; + case 1: + return $this.$rhs3; + case 2: + return jl_Boolean_valueOf($this.$containsIs3); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncil_LabelExpression$ColonDisjunction_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser_procedureToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ProcedureTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 524, 262); +oncil_LabelExpression$ColonDisjunction_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5393))), sr_Statics_anyHash($this.$lhs3)), sr_Statics_anyHash($this.$rhs3)), !$this.$containsIs3 ? 1237 : 1231), 3); +}, +oncil_LabelExpression$ColonDisjunction_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$ColonDisjunction_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3252); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 208 && $_la != 209) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_LabelExpression$ColonDisjunction) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs3 != $x$1.$containsIs3) + break b; + c: { + var$2 = $this.$lhs3; + var$3 = $x$1.$lhs3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if (var$3 !== null) + break b; } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_indexToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$IndexTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 526, 263); - a: { - b: { - c: { d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3254); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 132 && $_la != 133) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$rhs3; + $x$1 = $x$1.$rhs3; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncil_LabelExpression$ColonDisjunction)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_constraintToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ConstraintTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 528, 264); +oncil_LabelExpression$ColonDisjunction_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncil_LabelExpression$ColonDisjunction_mapExpressions = ($this, $f) => { + return oncil_LabelExpression$ColonDisjunction_copy($this, $this.$lhs3.$mapExpressions($f), $this.$rhs3.$mapExpressions($f), $this.$containsIs3, $this.$position32); +}, +oncil_LabelExpression$ColonDisjunction__init_ = ($this, $lhs, $rhs, $containsIs, $position) => { + $this.$lhs3 = $lhs; + $this.$rhs3 = $rhs; + $this.$containsIs3 = $containsIs; + $this.$position32 = $position; +}, +oncil_LabelExpression$ColonDisjunction__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncil_LabelExpression$ColonDisjunction(); + oncil_LabelExpression$ColonDisjunction__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncil_LabelExpression$ColonDisjunction$ = $rt_classWithoutFields(), +oncil_LabelExpression$ColonDisjunction$_MODULE$ = null, +oncil_LabelExpression$ColonDisjunction$__clinit_ = () => { + oncil_LabelExpression$ColonDisjunction$_MODULE$ = new oncil_LabelExpression$ColonDisjunction$; +}, +oncil_LabelExpression$Conjunctions$ = $rt_classWithoutFields(), +oncil_LabelExpression$Conjunctions$_MODULE$ = null, +oncil_LabelExpression$Conjunctions$__clinit_ = () => { + oncil_LabelExpression$Conjunctions$_MODULE$ = new oncil_LabelExpression$Conjunctions$; +}, +oncil_LabelExpression$Conjunctions$_flat = ($this, $lhs, $rhs, $position, $containsIs) => { + let var$5; + var$5 = new oncil_LabelExpression$Conjunctions; + s_package$_$callClinit(); + oncil_LabelExpression$Conjunctions__init_(var$5, (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncil_LabelExpression, [$lhs, $rhs]))), $containsIs, $position); + return oncil_LabelExpression$Conjunctions_unnestConjunctions(var$5); +}; +function oncil_LabelExpression$ColonConjunction() { + let a = this; jl_Object.call(a); + a.$lhs2 = null; + a.$rhs2 = null; + a.$containsIs4 = 0; + a.$position70 = null; +} +let oncil_LabelExpression$ColonConjunction_flatten = $this => { + return oncil_BinaryLabelExpression_flatten$($this); +}, +oncil_LabelExpression$ColonConjunction_containsGpmSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +}, +oncil_LabelExpression$ColonConjunction_containsGpmSpecificRelTypeExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +}, +oncil_LabelExpression$ColonConjunction_containsMatchSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +}, +oncil_LabelExpression$ColonConjunction_containsDynamicLabelOrTypeExpression = $this => { + return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +}, +oncil_LabelExpression$ColonConjunction_replaceColonSyntax = $this => { + return oncil_LabelExpression_replaceColonSyntax$($this); +}, +oncil_LabelExpression$ColonConjunction_foldedOver = $this => { + return $this; +}, +oncil_LabelExpression$ColonConjunction_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncil_LabelExpression$ColonConjunction_folder0 = ($this, $cancellation) => { + return onciu_Foldable_folder$0($this, $cancellation); +}, +oncil_LabelExpression$ColonConjunction_lhs = $this => { + return $this.$lhs2; +}, +oncil_LabelExpression$ColonConjunction_rhs = $this => { + return $this.$rhs2; +}, +oncil_LabelExpression$ColonConjunction_containsIs = $this => { + return $this.$containsIs4; +}, +oncil_LabelExpression$ColonConjunction_position = $this => { + return $this.$position70; +}, +oncil_LabelExpression$ColonConjunction_copy = ($this, $lhs, $rhs, $containsIs, $position) => { + return oncil_LabelExpression$ColonConjunction__init_0($lhs, $rhs, $containsIs, $position); +}, +oncil_LabelExpression$ColonConjunction_productPrefix = $this => { + return $rt_s(5394); +}, +oncil_LabelExpression$ColonConjunction_productArity = $this => { + return 3; +}, +oncil_LabelExpression$ColonConjunction_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs2; + case 1: + return $this.$rhs2; + case 2: + return jl_Boolean_valueOf($this.$containsIs4); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncil_LabelExpression$ColonConjunction_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$ColonConjunction_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5394))), sr_Statics_anyHash($this.$lhs2)), sr_Statics_anyHash($this.$rhs2)), !$this.$containsIs4 ? 1237 : 1231), 3); +}, +oncil_LabelExpression$ColonConjunction_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$ColonConjunction_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_LabelExpression$ColonConjunction) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs4 != $x$1.$containsIs4) + break b; + c: { + var$2 = $this.$lhs2; + var$3 = $x$1.$lhs2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3256); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 55 && $_la != 56) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$rhs2; + $x$1 = $x$1.$rhs2; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncil_LabelExpression$ColonConjunction)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_transactionToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$TransactionTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 530, 265); +oncil_LabelExpression$ColonConjunction_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncil_LabelExpression$ColonConjunction_mapExpressions = ($this, $f) => { + return oncil_LabelExpression$ColonConjunction_copy($this, $this.$lhs2.$mapExpressions($f), $this.$rhs2.$mapExpressions($f), $this.$containsIs4, $this.$position70); +}, +oncil_LabelExpression$ColonConjunction__init_ = ($this, $lhs, $rhs, $containsIs, $position) => { + $this.$lhs2 = $lhs; + $this.$rhs2 = $rhs; + $this.$containsIs4 = $containsIs; + $this.$position70 = $position; +}, +oncil_LabelExpression$ColonConjunction__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncil_LabelExpression$ColonConjunction(); + oncil_LabelExpression$ColonConjunction__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncil_LabelExpression$ColonConjunction$ = $rt_classWithoutFields(), +oncil_LabelExpression$ColonConjunction$_MODULE$ = null, +oncil_LabelExpression$ColonConjunction$__clinit_ = () => { + oncil_LabelExpression$ColonConjunction$_MODULE$ = new oncil_LabelExpression$ColonConjunction$; +}; +function oncil_LabelExpression$Negation() { + let a = this; jl_Object.call(a); + a.$e = null; + a.$containsIs6 = 0; + a.$position139 = null; +} +let oncil_LabelExpression$Negation_containsGpmSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Negation_containsGpmSpecificRelTypeExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +}, +oncil_LabelExpression$Negation_containsMatchSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Negation_containsDynamicLabelOrTypeExpression = $this => { + return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +}, +oncil_LabelExpression$Negation_replaceColonSyntax = $this => { + return oncil_LabelExpression_replaceColonSyntax$($this); +}, +oncil_LabelExpression$Negation_foldedOver = $this => { + return $this; +}, +oncil_LabelExpression$Negation_folder0 = $this => { + return onciu_Foldable_folder$($this); +}, +oncil_LabelExpression$Negation_folder = ($this, $cancellation) => { + return onciu_Foldable_folder$0($this, $cancellation); +}, +oncil_LabelExpression$Negation_containsIs = $this => { + return $this.$containsIs6; +}, +oncil_LabelExpression$Negation_position = $this => { + return $this.$position139; +}, +oncil_LabelExpression$Negation_flatten = $this => { + let var$1; + while (true) { + var$1 = $this.$e; + if (!(var$1 instanceof oncil_LabelExpression$Negation)) + break; + $this = var$1; + } + return var$1.$flatten0(); +}, +oncil_LabelExpression$Negation_copy = ($this, $e, $containsIs, $position) => { + return oncil_LabelExpression$Negation__init_0($e, $containsIs, $position); +}, +oncil_LabelExpression$Negation_productPrefix = $this => { + return $rt_s(5395); +}, +oncil_LabelExpression$Negation_productArity = $this => { + return 2; +}, +oncil_LabelExpression$Negation_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$e; + case 1: + return jl_Boolean_valueOf($this.$containsIs6); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncil_LabelExpression$Negation_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Negation_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5395))), sr_Statics_anyHash($this.$e)), !$this.$containsIs6 ? 1237 : 1231), 2); +}, +oncil_LabelExpression$Negation_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Negation_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3258); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 277 && $_la != 278) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_LabelExpression$Negation) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs6 != $x$1.$containsIs6) + break b; + c: { + var$2 = $this.$e; + $x$1 = $x$1.$e; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncil_LabelExpression$Negation)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_userQualifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UserQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 532, 266); +oncil_LabelExpression$Negation_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncil_LabelExpression$Negation_mapExpressions = ($this, $f) => { + return oncil_LabelExpression$Negation_copy($this, $this.$e.$mapExpressions($f), $this.$containsIs6, $this.$position139); +}, +oncil_LabelExpression$Negation__init_ = ($this, $e, $containsIs, $position) => { + $this.$e = $e; + $this.$containsIs6 = $containsIs; + $this.$position139 = $position; +}, +oncil_LabelExpression$Negation__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncil_LabelExpression$Negation(); + oncil_LabelExpression$Negation__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oncil_LabelExpression$Negation$ = $rt_classWithoutFields(), +oncil_LabelExpression$Negation$_MODULE$ = null, +oncil_LabelExpression$Negation$__clinit_ = () => { + oncil_LabelExpression$Negation$_MODULE$ = new oncil_LabelExpression$Negation$; +}, +oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_00 = $rt_classWithoutFields(), +oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0_apply0 = (var$0, var$1, var$2) => { + let var$3, var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$3 = var$3.$_20; + var$4 = new oncil_LabelExpression$Negation; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Negation__init_(var$4, var$3, 0, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); + return var$4; +}, +oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_00 = $rt_classWithoutFields(), +oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0_apply0 = (var$0, var$1, var$2) => { + let var$3, var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$3 = var$3.$_20; + var$4 = new oncil_LabelExpression$Negation; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Negation__init_(var$4, var$3, 1, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); + return var$4; +}; +function oncil_LabelExpression$Wildcard() { + let a = this; jl_Object.call(a); + a.$containsIs9 = 0; + a.$position291 = null; +} +let oncil_LabelExpression$Wildcard_containsGpmSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Wildcard_containsGpmSpecificRelTypeExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +}, +oncil_LabelExpression$Wildcard_containsMatchSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Wildcard_containsDynamicLabelOrTypeExpression = $this => { + return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +}, +oncil_LabelExpression$Wildcard_replaceColonSyntax = $this => { + return oncil_LabelExpression_replaceColonSyntax$($this); +}, +oncil_LabelExpression$Wildcard_foldedOver = $this => { + return $this; +}, +oncil_LabelExpression$Wildcard_folder0 = $this => { + return onciu_Foldable_folder$($this); +}, +oncil_LabelExpression$Wildcard_folder = ($this, $cancellation) => { + return onciu_Foldable_folder$0($this, $cancellation); +}, +oncil_LabelExpression$Wildcard_containsIs = $this => { + return $this.$containsIs9; +}, +oncil_LabelExpression$Wildcard_position = $this => { + return $this.$position291; +}, +oncil_LabelExpression$Wildcard_flatten = $this => { + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +}, +oncil_LabelExpression$Wildcard_productPrefix = $this => { + return $rt_s(5396); +}, +oncil_LabelExpression$Wildcard_productArity = $this => { + return 1; +}, +oncil_LabelExpression$Wildcard_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$containsIs9); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncil_LabelExpression$Wildcard_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Wildcard_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5396))), !$this.$containsIs9 ? 1237 : 1231), 1); +}, +oncil_LabelExpression$Wildcard_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Wildcard_equals = ($this, $x$1) => { + let var$2; a: { b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3260); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 3263); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 3262); - oncipv_Cypher5Parser_userNames($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Recognizer_setState($this, 3261); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3265); - oavr_Parser_match($this, 239); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_LabelExpression$Wildcard) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs9 != $x$1.$containsIs9) + break b; + if (!($this instanceof oncil_LabelExpression$Wildcard)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$2 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = 0; } - return $_localctx; + return var$2; }, -oncipv_Cypher5Parser_executeFunctionQualifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ExecuteFunctionQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 534, 267); +oncil_LabelExpression$Wildcard_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncil_LabelExpression$Wildcard_mapExpressions = ($this, $f) => { + return $this; +}, +oncil_LabelExpression$Wildcard__init_ = ($this, $containsIs, $position) => { + $this.$containsIs9 = $containsIs; + $this.$position291 = $position; +}, +oncil_LabelExpression$Wildcard__init_0 = (var_0, var_1) => { + let var_2 = new oncil_LabelExpression$Wildcard(); + oncil_LabelExpression$Wildcard__init_(var_2, var_0, var_1); + return var_2; +}, +oncil_LabelExpression$Wildcard$ = $rt_classWithoutFields(), +oncil_LabelExpression$Wildcard$_MODULE$ = null, +oncil_LabelExpression$Wildcard$__clinit_ = () => { + oncil_LabelExpression$Wildcard$_MODULE$ = new oncil_LabelExpression$Wildcard$; +}; +function oncil_LabelExpression$Leaf() { + let a = this; jl_Object.call(a); + a.$name15 = null; + a.$containsIs8 = 0; + a.$position269 = null; +} +let oncil_LabelExpression$Leaf_containsGpmSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Leaf_containsGpmSpecificRelTypeExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +}, +oncil_LabelExpression$Leaf_containsMatchSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Leaf_containsDynamicLabelOrTypeExpression = $this => { + return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +}, +oncil_LabelExpression$Leaf_replaceColonSyntax = $this => { + return oncil_LabelExpression_replaceColonSyntax$($this); +}, +oncil_LabelExpression$Leaf_foldedOver = $this => { + return $this; +}, +oncil_LabelExpression$Leaf_folder0 = $this => { + return onciu_Foldable_folder$($this); +}, +oncil_LabelExpression$Leaf_folder = ($this, $cancellation) => { + return onciu_Foldable_folder$0($this, $cancellation); +}, +oncil_LabelExpression$Leaf_containsIs = $this => { + return $this.$containsIs8; +}, +oncil_LabelExpression$Leaf_position = $this => { + return $this.$position269; +}, +oncil_LabelExpression$Leaf_flatten = $this => { + return sci_$colon$colon__init_($this.$name15, sci_Nil$_MODULE$); +}, +oncil_LabelExpression$Leaf_productPrefix = $this => { + return $rt_s(4977); +}, +oncil_LabelExpression$Leaf_productArity = $this => { + return 2; +}, +oncil_LabelExpression$Leaf_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name15; + case 1: + return jl_Boolean_valueOf($this.$containsIs8); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncil_LabelExpression$Leaf_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Leaf_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4977))), sr_Statics_anyHash($this.$name15)), !$this.$containsIs8 ? 1237 : 1231), 2); +}, +oncil_LabelExpression$Leaf_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Leaf_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3267); - oncipv_Cypher5Parser_globs($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_LabelExpression$Leaf) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs8 != $x$1.$containsIs8) + break b; + c: { + var$2 = $this.$name15; + $x$1 = $x$1.$name15; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncil_LabelExpression$Leaf)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_executeProcedureQualifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ExecuteProcedureQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 536, 268); +oncil_LabelExpression$Leaf_mapExpressions = ($this, $f) => { + return $this; +}, +oncil_LabelExpression$Leaf_dup = ($this, $children) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3269); - oncipv_Cypher5Parser_globs($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if ($children !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $children); + if (!$children.$lengthCompare(3)) { + var$2 = $children.$apply1(0); + var$3 = $children.$apply1(1); + if ($rt_isInstance($children.$apply1(2), onciu_InputPosition)) { + $children = onciu_ASTNode_dup$($this, sci_$colon$colon__init_(var$2, sci_$colon$colon__init_(var$3, sci_Nil$_MODULE$))); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $children = onciu_ASTNode_dup$($this, $children); } - return $_localctx; + return $children; }, -oncipv_Cypher5Parser_settingQualifier = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SettingQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 538, 269); +oncil_LabelExpression$Leaf__init_ = ($this, $name, $containsIs) => { + $this.$name15 = $name; + $this.$containsIs8 = $containsIs; + $this.$position269 = $name.$position(); +}, +oncil_LabelExpression$Leaf__init_0 = (var_0, var_1) => { + let var_2 = new oncil_LabelExpression$Leaf(); + oncil_LabelExpression$Leaf__init_(var_2, var_0, var_1); + return var_2; +}, +oncil_LabelExpression$Leaf$ = $rt_classWithoutFields(sr_AbstractFunction2), +oncil_LabelExpression$Leaf$_MODULE$ = null, +oncil_LabelExpression$Leaf$__clinit_ = () => { + oncil_LabelExpression$Leaf$_MODULE$ = new oncil_LabelExpression$Leaf$; +}; +function oncil_LabelExpression$DynamicLeaf() { + let a = this; jl_Object.call(a); + a.$expr4 = null; + a.$containsIs7 = 0; + a.$position273 = null; +} +let oncil_LabelExpression$DynamicLeaf_containsGpmSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +}, +oncil_LabelExpression$DynamicLeaf_containsGpmSpecificRelTypeExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +}, +oncil_LabelExpression$DynamicLeaf_containsMatchSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +}, +oncil_LabelExpression$DynamicLeaf_containsDynamicLabelOrTypeExpression = $this => { + return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +}, +oncil_LabelExpression$DynamicLeaf_replaceColonSyntax = $this => { + return oncil_LabelExpression_replaceColonSyntax$($this); +}, +oncil_LabelExpression$DynamicLeaf_foldedOver = $this => { + return $this; +}, +oncil_LabelExpression$DynamicLeaf_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncil_LabelExpression$DynamicLeaf_folder0 = ($this, $cancellation) => { + return onciu_Foldable_folder$0($this, $cancellation); +}, +oncil_LabelExpression$DynamicLeaf_containsIs = $this => { + return $this.$containsIs7; +}, +oncil_LabelExpression$DynamicLeaf_position = $this => { + return $this.$position273; +}, +oncil_LabelExpression$DynamicLeaf_flatten = $this => { + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +}, +oncil_LabelExpression$DynamicLeaf_copy = ($this, $expr, $containsIs) => { + return oncil_LabelExpression$DynamicLeaf__init_($expr, $containsIs); +}, +oncil_LabelExpression$DynamicLeaf_productPrefix = $this => { + return $rt_s(5397); +}, +oncil_LabelExpression$DynamicLeaf_productArity = $this => { + return 2; +}, +oncil_LabelExpression$DynamicLeaf_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expr4; + case 1: + return jl_Boolean_valueOf($this.$containsIs7); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncil_LabelExpression$DynamicLeaf_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$DynamicLeaf_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5397))), sr_Statics_anyHash($this.$expr4)), !$this.$containsIs7 ? 1237 : 1231), 2); +}, +oncil_LabelExpression$DynamicLeaf_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$DynamicLeaf_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3271); - oncipv_Cypher5Parser_globs($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_LabelExpression$DynamicLeaf) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs7 != $x$1.$containsIs7) + break b; + c: { + var$2 = $this.$expr4; + $x$1 = $x$1.$expr4; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncil_LabelExpression$DynamicLeaf)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_globs = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GlobsContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 540, 270); +oncil_LabelExpression$DynamicLeaf_mapExpressions = ($this, $f) => { + return oncil_LabelExpression$DynamicLeaf_copy($this, $this.$expr4.$mapExpressions($f), $this.$containsIs7); +}, +oncil_LabelExpression$DynamicLeaf_dup = ($this, $children) => { + let var$2, var$3; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3273); - oncipv_Cypher5Parser_glob($this); - oavr_Recognizer_setState($this, 3278); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 3274); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 3275); - oncipv_Cypher5Parser_glob($this); - oavr_Recognizer_setState($this, 3280); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); + if ($children !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $children); + if (!$children.$lengthCompare(3)) { + var$2 = $children.$apply1(0); + var$3 = $children.$apply1(1); + if ($rt_isInstance($children.$apply1(2), onciu_InputPosition)) { + $children = onciu_ASTNode_dup$($this, sci_$colon$colon__init_(var$2, sci_$colon$colon__init_(var$3, sci_Nil$_MODULE$))); break a; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + $children = onciu_ASTNode_dup$($this, $children); } - return $_localctx; + return $children; }, -oncipv_Cypher5Parser_glob = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GlobContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 542, 271); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3286); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - f: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3281); - oncipv_Cypher5Parser_escapedSymbolicNameString($this); - oavr_Recognizer_setState($this, 3283); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 399, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 3282); - oncipv_Cypher5Parser_globRecursive($this); - } - break e; - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 83: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 214: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 271: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3285); - oncipv_Cypher5Parser_globRecursive($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } +oncil_LabelExpression$DynamicLeaf__init_0 = ($this, $expr, $containsIs) => { + $this.$expr4 = $expr; + $this.$containsIs7 = $containsIs; + $this.$position273 = $expr.$position(); +}, +oncil_LabelExpression$DynamicLeaf__init_ = (var_0, var_1) => { + let var_2 = new oncil_LabelExpression$DynamicLeaf(); + oncil_LabelExpression$DynamicLeaf__init_0(var_2, var_0, var_1); + return var_2; +}, +oncil_LabelExpression$DynamicLeaf$ = $rt_classWithoutFields(sr_AbstractFunction2), +oncil_LabelExpression$DynamicLeaf$_MODULE$ = null, +oncil_LabelExpression$DynamicLeaf$__clinit_ = () => { + oncil_LabelExpression$DynamicLeaf$_MODULE$ = new oncil_LabelExpression$DynamicLeaf$; +}, +oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0_apply = (var$0, var$1, var$2, var$3) => { + let var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = new oncie_Or; + oncipau_Util$_$callClinit(); + oncie_Or__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); + return var$4; +}, +oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0_apply = (var$0, var$1, var$2, var$3) => { + let var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = new oncie_Xor; + oncipau_Util$_$callClinit(); + oncie_Xor__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); + return var$4; +}, +oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0_apply = (var$0, var$1, var$2, var$3) => { + let var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = new oncie_And; + oncipau_Util$_$callClinit(); + oncie_And__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); + return var$4; +}, +oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0_apply0 = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + var$3 = new oncie_Not; + oncipau_Util$_$callClinit(); + oncie_Not__init_(var$3, var$2, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); + return var$3; +}, +oncie_Ands$ = $rt_classWithoutFields(), +oncie_Ands$_MODULE$ = null, +oncie_Ands$__clinit_ = () => { + oncie_Ands$_MODULE$ = new oncie_Ands$; +}, +oncie_Ands$_apply = ($this, $exprs, $position) => { + return oncie_Ands__init_0(onciuci_ListSet$_from(onciuci_ListSet$_MODULE$, $exprs), $position); +}; +function oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0() { + let a = this; jl_Object.call(a); + a.$_0999 = null; + a.$_1341 = null; +} +let oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0_apply0 = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0999; + var$3 = var$0.$_1341; + if (var$1 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$1); + if (!var$1.$lengthCompare(3)) { + var$4 = var$1.$apply1(0); + var$5 = var$1.$apply1(1); + var$1 = var$1.$apply1(2); + if (var$4 instanceof oncip_AstRuleCtx) { + var$4 = var$4; + if ($rt_isInstance(var$5, oavrt_TerminalNode)) { + var$5 = var$5; + if (var$1 instanceof oncip_AstRuleCtx) { + var$1 = var$1; + return oncipvaf_ExpressionBuilder_binaryPredicate0(var$2, var$4.$ast0, var$5, var$1); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + var$1 = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5398)), var$3); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$1); }, -oncipv_Cypher5Parser_globRecursive = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GlobRecursiveContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 544, 272); +oncie_NormalForm = $rt_classWithoutFields(0), +oncie_NormalForm_description$ = $$this => { + return jl_String_valueOf($$this.$formName()); +}, +oncie_NFCNormalForm$ = $rt_classWithoutFields(), +oncie_NFCNormalForm$_MODULE$ = null, +oncie_NFCNormalForm$_formName0 = null, +oncie_NFCNormalForm$_$callClinit = () => { + oncie_NFCNormalForm$_$callClinit = $rt_eraseClinit(oncie_NFCNormalForm$); + oncie_NFCNormalForm$__clinit_(); +}, +oncie_NFCNormalForm$__clinit_ = () => { + let var$1; + var$1 = new oncie_NFCNormalForm$; + oncie_NFCNormalForm$_$callClinit(); + oncie_NFCNormalForm$_MODULE$ = var$1; + oncie_NFCNormalForm$_formName0 = $rt_s(4401); +}, +oncie_NFCNormalForm$_description = $this => { + return oncie_NormalForm_description$($this); +}, +oncie_NFCNormalForm$_toString = $this => { + return $this.$description(); +}, +oncie_NFCNormalForm$_formName = $this => { + oncie_NFCNormalForm$_$callClinit(); + return oncie_NFCNormalForm$_formName0; +}, +oncie_NFCNormalForm$_productArity = $this => { + return 0; +}, +oncie_NFCNormalForm$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_NFCNormalForm$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NFCNormalForm$_hashCode = $this => { + return (-364033482); +}, +oncie_NFDNormalForm$ = $rt_classWithoutFields(), +oncie_NFDNormalForm$_MODULE$ = null, +oncie_NFDNormalForm$_formName0 = null, +oncie_NFDNormalForm$_$callClinit = () => { + oncie_NFDNormalForm$_$callClinit = $rt_eraseClinit(oncie_NFDNormalForm$); + oncie_NFDNormalForm$__clinit_(); +}, +oncie_NFDNormalForm$__clinit_ = () => { + let var$1; + var$1 = new oncie_NFDNormalForm$; + oncie_NFDNormalForm$_$callClinit(); + oncie_NFDNormalForm$_MODULE$ = var$1; + oncie_NFDNormalForm$_formName0 = $rt_s(4402); +}, +oncie_NFDNormalForm$_description = $this => { + return oncie_NormalForm_description$($this); +}, +oncie_NFDNormalForm$_toString = $this => { + return $this.$description(); +}, +oncie_NFDNormalForm$_formName = $this => { + oncie_NFDNormalForm$_$callClinit(); + return oncie_NFDNormalForm$_formName0; +}, +oncie_NFDNormalForm$_productArity = $this => { + return 0; +}, +oncie_NFDNormalForm$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_NFDNormalForm$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NFDNormalForm$_hashCode = $this => { + return 2133982455; +}, +oncie_NFKCNormalForm$ = $rt_classWithoutFields(), +oncie_NFKCNormalForm$_MODULE$ = null, +oncie_NFKCNormalForm$_formName = null, +oncie_NFKCNormalForm$_$callClinit = () => { + oncie_NFKCNormalForm$_$callClinit = $rt_eraseClinit(oncie_NFKCNormalForm$); + oncie_NFKCNormalForm$__clinit_(); +}, +oncie_NFKCNormalForm$__clinit_ = () => { + let var$1; + var$1 = new oncie_NFKCNormalForm$; + oncie_NFKCNormalForm$_$callClinit(); + oncie_NFKCNormalForm$_MODULE$ = var$1; + oncie_NFKCNormalForm$_formName = $rt_s(4403); +}, +oncie_NFKCNormalForm$_description = $this => { + return oncie_NormalForm_description$($this); +}, +oncie_NFKCNormalForm$_toString = $this => { + return $this.$description(); +}, +oncie_NFKCNormalForm$_formName0 = $this => { + oncie_NFKCNormalForm$_$callClinit(); + return oncie_NFKCNormalForm$_formName; +}, +oncie_NFKCNormalForm$_productArity = $this => { + return 0; +}, +oncie_NFKCNormalForm$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_NFKCNormalForm$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NFKCNormalForm$_hashCode = $this => { + return 1849737083; +}, +oncie_NFKDNormalForm$ = $rt_classWithoutFields(), +oncie_NFKDNormalForm$_MODULE$ = null, +oncie_NFKDNormalForm$_formName = null, +oncie_NFKDNormalForm$_$callClinit = () => { + oncie_NFKDNormalForm$_$callClinit = $rt_eraseClinit(oncie_NFKDNormalForm$); + oncie_NFKDNormalForm$__clinit_(); +}, +oncie_NFKDNormalForm$__clinit_ = () => { + let var$1; + var$1 = new oncie_NFKDNormalForm$; + oncie_NFKDNormalForm$_$callClinit(); + oncie_NFKDNormalForm$_MODULE$ = var$1; + oncie_NFKDNormalForm$_formName = $rt_s(4404); +}, +oncie_NFKDNormalForm$_description = $this => { + return oncie_NormalForm_description$($this); +}, +oncie_NFKDNormalForm$_toString = $this => { + return $this.$description(); +}, +oncie_NFKDNormalForm$_formName0 = $this => { + oncie_NFKDNormalForm$_$callClinit(); + return oncie_NFKDNormalForm$_formName; +}, +oncie_NFKDNormalForm$_productArity = $this => { + return 0; +}, +oncie_NFKDNormalForm$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_NFKDNormalForm$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}; +let oncie_NFKDNormalForm$_hashCode = $this => { + return 52785724; +}; +function oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_00() { + jl_Object.call(this); + this.$_01160 = null; +} +let oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0_apply0 = (var$0, var$1, var$2, var$3) => { + let var$4, var$5; a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3288); - oncipv_Cypher5Parser_globPart($this); - oavr_Recognizer_setState($this, 3290); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 401, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 3289); - oncipv_Cypher5Parser_globRecursive($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = (var$2.$getSymbol()).$getType0(); + switch (var$4) { + case 85: + var$5 = new oncie_Concatenate; + oncipau_Util$_$callClinit(); + oncie_Concatenate__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + case 161: + var$5 = new oncie_Subtract; + oncipau_Util$_$callClinit(); + oncie_Subtract__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + case 199: + var$5 = new oncie_Add; + oncipau_Util$_$callClinit(); + oncie_Add__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); + } + return var$5; +}; +function oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0() { + jl_Object.call(this); + this.$_01187 = null; +} +let oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0_apply0 = (var$0, var$1, var$2, var$3) => { + let var$4, var$5; + a: { + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = (var$2.$getSymbol()).$getType0(); + switch (var$4) { + case 82: + var$5 = new oncie_Divide; + oncipau_Util$_$callClinit(); + oncie_Divide__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + case 162: + var$5 = new oncie_Modulo; + oncipau_Util$_$callClinit(); + oncie_Modulo__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + case 271: + var$5 = new oncie_Multiply; + oncipau_Util$_$callClinit(); + oncie_Multiply__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); + } + return var$5; +}, +oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0_apply = (var$0, var$1, var$2, var$3) => { + let var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = new oncie_Pow; + oncipau_Util$_$callClinit(); + oncie_Pow__init_(var$4, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + return var$4; +}; +function oncie_UnarySubtract() { + let a = this; oncie_Expression.call(a); + a.$rhs13 = null; + a.$position142 = null; + a.$signatures1 = null; +} +let oncie_UnarySubtract_asCanonicalStringVal = $this => { + return oncie_LeftUnaryOperatorExpression_asCanonicalStringVal$($this); +}, +oncie_UnarySubtract_isConstantForQuery = $this => { + return oncie_LeftUnaryOperatorExpression_isConstantForQuery$($this); +}, +oncie_UnarySubtract_rhs = $this => { + return $this.$rhs13; +}, +oncie_UnarySubtract_position = $this => { + return $this.$position142; +}, +oncie_UnarySubtract_signatures = $this => { + return $this.$signatures1; +}, +oncie_UnarySubtract_canonicalOperatorSymbol = $this => { + return $rt_s(3665); +}, +oncie_UnarySubtract_productPrefix = $this => { + return $rt_s(5399); +}, +oncie_UnarySubtract_productArity = $this => { + return 1; +}, +oncie_UnarySubtract_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$rhs13; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_UnarySubtract_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_UnarySubtract_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_UnarySubtract_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_UnarySubtract_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_UnarySubtract) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$rhs13; + $x$1 = $x$1.$rhs13; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_UnarySubtract)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_globPart = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GlobPartContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 546, 273); +oncie_UnarySubtract__init_ = ($this, $rhs, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$rhs13 = $rhs; + $this.$position142 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$3 = s_package$_Vector(s_package$_MODULE$); + $rhs = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 2); + var$5 = var$4.data; + oncie_TypeSignature$_$callClinit(); + var$6 = oncie_TypeSignature$_MODULE$; + var$7 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_IntegerType, 1); + var$9 = var$8.data; + oncius_package$_$callClinit(); + var$9[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTInteger(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + var$10 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$8.data[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$5[1] = oncie_TypeSignature$_apply($position, var$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $this.$signatures1 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$4)); +}, +oncie_UnarySubtract__init_0 = (var_0, var_1) => { + let var_2 = new oncie_UnarySubtract(); + oncie_UnarySubtract__init_(var_2, var_0, var_1); + return var_2; +}; +function oncie_UnaryAdd() { + let a = this; oncie_Expression.call(a); + a.$rhs16 = null; + a.$position256 = null; + a.$signatures2 = null; +} +let oncie_UnaryAdd_asCanonicalStringVal = $this => { + return oncie_LeftUnaryOperatorExpression_asCanonicalStringVal$($this); +}, +oncie_UnaryAdd_isConstantForQuery = $this => { + return oncie_LeftUnaryOperatorExpression_isConstantForQuery$($this); +}, +oncie_UnaryAdd_rhs = $this => { + return $this.$rhs16; +}, +oncie_UnaryAdd_position = $this => { + return $this.$position256; +}, +oncie_UnaryAdd_signatures = $this => { + return $this.$signatures2; +}, +oncie_UnaryAdd_canonicalOperatorSymbol = $this => { + return $rt_s(600); +}, +oncie_UnaryAdd_productPrefix = $this => { + return $rt_s(5400); +}, +oncie_UnaryAdd_productArity = $this => { + return 1; +}, +oncie_UnaryAdd_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$rhs16; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_UnaryAdd_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_UnaryAdd_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_UnaryAdd_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_UnaryAdd_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3299); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 3298); - oncipv_Cypher5Parser_unescapedSymbolicNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 83: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3292); - oavr_Parser_match($this, 83); - oavr_Recognizer_setState($this, 3294); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 10) - break e; - oavr_Recognizer_setState($this, 3293); - oncipv_Cypher5Parser_escapedSymbolicNameString($this); - break e; - case 214: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3296); - oavr_Parser_match($this, 214); - break e; - case 271: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 3297); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_UnaryAdd) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$rhs16; + $x$1 = $x$1.$rhs16; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_UnaryAdd)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_qualifiedGraphPrivilegesWithProperty = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 548, 274); +oncie_UnaryAdd__init_ = ($this, $rhs, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$rhs16 = $rhs; + $this.$position256 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$3 = s_package$_Vector(s_package$_MODULE$); + $rhs = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 2); + var$5 = var$4.data; + oncie_TypeSignature$_$callClinit(); + var$6 = oncie_TypeSignature$_MODULE$; + var$7 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_IntegerType, 1); + var$9 = var$8.data; + oncius_package$_$callClinit(); + var$9[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTInteger(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + var$10 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$8.data[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$5[1] = oncie_TypeSignature$_apply($position, var$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $this.$signatures2 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$4)); +}, +oncie_UnaryAdd__init_0 = (var_0, var_1) => { + let var_2 = new oncie_UnaryAdd(); + oncie_UnaryAdd__init_(var_2, var_0, var_1); + return var_2; +}; +function oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0() { + jl_Object.call(this); + this.$_01179 = null; +} +let oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0_apply0 = (var$0, var$1, var$2) => { + let var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$2; + var$3 = var$1.$position(); + if (var$2 instanceof oncipv_Cypher5Parser$PropertyPostfixContext) { + var$2 = var$2; + var$4 = new oncie_Property; + oncipau_Util$_$callClinit(); + oncie_Property__init_0(var$4, var$1, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$3); + } else if (var$2 instanceof oncipv_Cypher5Parser$IndexPostfixContext) { + var$2 = var$2; + var$4 = new oncie_ContainerIndex; + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 1)).$ast0; + var$5 = oncipau_Util$_MODULE$; + oncie_ContainerIndex__init_(var$4, var$1, var$3, oncipau_Util$_pos(var$5, oncipau_Util$_ctxChild(var$5, var$2, 1))); + } else if (var$2 instanceof oncipv_Cypher5Parser$LabelPostfixContext) { + var$2 = var$2; + var$4 = new oncil_LabelExpressionPredicate; + oncipau_Util$_$callClinit(); + oncil_LabelExpressionPredicate__init_0(var$4, var$1, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$3, 0); + } else { + if (!(var$2 instanceof oncipv_Cypher5Parser$RangePostfixContext)) { + var$1 = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5401)), var$2); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw(var$1); + } + var$5 = var$2; + var$4 = new oncie_ListSlice; + oncipau_Util$_$callClinit(); + oncie_ListSlice__init_(var$4, var$1, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$5.$fromExp0), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$5.$toExp0), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } + return var$4; +}; +function oncie_Infinity() { + let a = this; oncie_Expression.call(a); + a.$position141 = null; + a.$value42 = null; +} +let oncie_Infinity_isConstantForQuery = $this => { + return 1; +}, +oncie_Infinity_position = $this => { + return $this.$position141; +}, +oncie_Infinity_asCanonicalStringVal = $this => { + return $rt_s(5402); +}, +oncie_Infinity_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_Infinity$$anon$8; + oncie_Infinity__init_(var$1, $this.$position141); + return var$1; +}, +oncie_Infinity_copy = ($this, $position) => { + return oncie_Infinity__init_0($position); +}, +oncie_Infinity_productPrefix = $this => { + return $rt_s(5402); +}, +oncie_Infinity_productArity = $this => { + return 0; +}, +oncie_Infinity_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_Infinity_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Infinity_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_Infinity; +}, +oncie_Infinity_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Infinity_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Infinity_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_Infinity) ? 0 : 1; + return var$2 && $this instanceof oncie_Infinity ? 1 : 0; +}, +oncie_Infinity__init_ = ($this, $position) => { + $this.$position141 = $position; + oncie_Expression__init_($this); + s_Predef$_$callClinit(); + $this.$value42 = jl_Double_valueOf(Infinity); +}, +oncie_Infinity__init_0 = var_0 => { + let var_1 = new oncie_Infinity(); + oncie_Infinity__init_(var_1, var_0); + return var_1; +}; +function oncie_NaN() { + let a = this; oncie_Expression.call(a); + a.$position123 = null; + a.$value45 = null; +} +let oncie_NaN_isConstantForQuery = $this => { + return 1; +}, +oncie_NaN_position = $this => { + return $this.$position123; +}, +oncie_NaN_asCanonicalStringVal = $this => { + return $rt_s(5403); +}, +oncie_NaN_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_NaN$$anon$9; + oncie_NaN__init_(var$1, $this.$position123); + return var$1; +}, +oncie_NaN_copy = ($this, $position) => { + return oncie_NaN__init_0($position); +}, +oncie_NaN_productPrefix = $this => { + return $rt_s(5403); +}, +oncie_NaN_productArity = $this => { + return 0; +}, +oncie_NaN_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_NaN_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NaN_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_NaN; +}, +oncie_NaN_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NaN_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_NaN_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_NaN) ? 0 : 1; + return var$2 && $this instanceof oncie_NaN ? 1 : 0; +}, +oncie_NaN__init_ = ($this, $position) => { + $this.$position123 = $position; + oncie_Expression__init_($this); + s_Predef$_$callClinit(); + $this.$value45 = jl_Double_valueOf(NaN); +}, +oncie_NaN__init_0 = var_0 => { + let var_1 = new oncie_NaN(); + oncie_NaN__init_(var_1, var_0); + return var_1; +}; +function oncie_True() { + let a = this; oncie_Expression.call(a); + a.$position180 = null; + a.$value41 = null; +} +let oncie_True_isConstantForQuery = $this => { + return 1; +}, +oncie_True_position = $this => { + return $this.$position180; +}, +oncie_True_asCanonicalStringVal = $this => { + return $rt_s(20); +}, +oncie_True_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_True$$anon$10; + oncie_True__init_(var$1, $this.$position180); + return var$1; +}, +oncie_True_copy = ($this, $position) => { + return oncie_True__init_0($position); +}, +oncie_True_productPrefix = $this => { + return $rt_s(5404); +}, +oncie_True_productArity = $this => { + return 0; +}, +oncie_True_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_True_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_True_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_True; +}, +oncie_True_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_True_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_True_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_True) ? 0 : 1; + return var$2 && $this instanceof oncie_True ? 1 : 0; +}, +oncie_True__init_ = ($this, $position) => { + $this.$position180 = $position; + oncie_Expression__init_($this); + s_Predef$_$callClinit(); + $this.$value41 = jl_Boolean_valueOf(1); +}, +oncie_True__init_0 = var_0 => { + let var_1 = new oncie_True(); + oncie_True__init_(var_1, var_0); + return var_1; +}, +oncie_ListComprehension$ = $rt_classWithoutFields(), +oncie_ListComprehension$_MODULE$ = null, +oncie_ListComprehension$__clinit_ = () => { + oncie_ListComprehension$_MODULE$ = new oncie_ListComprehension$; +}, +oncie_ListComprehension$_apply = ($this, $variable, $expression, $innerPredicate, $extractExpression, $position) => { + return oncie_ListComprehension__init_(oncie_ExtractScope__init_($variable, $innerPredicate, $extractExpression, $position), $expression, $position); +}; +function oncie_ReduceExpression() { + let a = this; oncie_Expression.call(a); + a.$scope7 = null; + a.$init3 = null; + a.$list1 = null; + a.$position241 = null; +} +let oncie_ReduceExpression_scope = $this => { + return $this.$scope7; +}, +oncie_ReduceExpression_init = $this => { + return $this.$init3; +}, +oncie_ReduceExpression_list = $this => { + return $this.$list1; +}, +oncie_ReduceExpression_position = $this => { + return $this.$position241; +}, +oncie_ReduceExpression_expression = $this => { + return $this.$scope7.$expression24; +}, +oncie_ReduceExpression_isConstantForQuery = $this => { + return $this.$scope7.$expression24.$isConstantForQuery() && $this.$init3.$isConstantForQuery() && $this.$list1.$isConstantForQuery() ? 1 : 0; +}, +oncie_ReduceExpression_productPrefix = $this => { + return $rt_s(5405); +}, +oncie_ReduceExpression_productArity = $this => { + return 3; +}, +oncie_ReduceExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$scope7; + case 1: + return $this.$init3; + case 2: + return $this.$list1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_ReduceExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ReduceExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ReduceExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ReduceExpression_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ReduceExpression) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$scope7; + var$3 = $x$1.$scope7; + if (var$2 !== null) { + if (!oncie_ReduceScope_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3304); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 159: - case 218: - oavr_Recognizer_setState($this, 3302); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 159 && $_la != 218) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3303); - oncipv_Cypher5Parser_propertiesResource($this); - break e; - case 279: - oavr_Recognizer_setState($this, 3301); - oavr_Parser_match($this, 279); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3306); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3307); - oncipv_Cypher5Parser_graphScope($this); - oavr_Recognizer_setState($this, 3308); - oncipv_Cypher5Parser_graphQualifier($this); - oavr_Recognizer_setState($this, 3312); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 155) { - oavr_Recognizer_setState($this, 3309); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 3310); - oavr_Parser_match($this, 271); - oavr_Recognizer_setState($this, 3311); - oavr_Parser_match($this, 239); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$init3; + var$3 = $x$1.$init3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$3 = $this.$list1; + $x$1 = $x$1.$list1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncie_ReduceExpression)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_qualifiedGraphPrivileges = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 550, 275); +oncie_ReduceExpression__init_0 = ($this, $scope, $init, $list, $position) => { + $this.$scope7 = $scope; + $this.$init3 = $init; + $this.$list1 = $list; + $this.$position241 = $position; + oncie_Expression__init_($this); +}, +oncie_ReduceExpression__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncie_ReduceExpression(); + oncie_ReduceExpression__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncie_ReduceScope() { + let a = this; oncie_Expression.call(a); + a.$accumulator0 = null; + a.$variable28 = null; + a.$expression24 = null; + a.$position283 = null; + a.$introducedVariables0 = null; +} +let oncie_ReduceScope_dependencies = $this => { + return $this.$scopeDependencies(); +}, +oncie_ReduceScope_isConstantForQuery = $this => { + return 0; +}, +oncie_ReduceScope_accumulator = $this => { + return $this.$accumulator0; +}, +oncie_ReduceScope_variable = $this => { + return $this.$variable28; +}, +oncie_ReduceScope_expression = $this => { + return $this.$expression24; +}, +oncie_ReduceScope_position = $this => { + return $this.$position283; +}, +oncie_ReduceScope_introducedVariables = $this => { + return $this.$introducedVariables0; +}, +oncie_ReduceScope_scopeDependencies = $this => { + return ($this.$expression24.$dependencies()).$removedAll($this.$introducedVariables0); +}, +oncie_ReduceScope_productPrefix = $this => { + return $rt_s(5406); +}, +oncie_ReduceScope_productArity = $this => { + return 3; +}, +oncie_ReduceScope_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$accumulator0; + case 1: + return $this.$variable28; + case 2: + return $this.$expression24; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_ReduceScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ReduceScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ReduceScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ReduceScope_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ReduceScope) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$accumulator0; + var$3 = $x$1.$accumulator0; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3317); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 73: - oavr_Recognizer_setState($this, 3314); - oavr_Parser_match($this, 73); - break e; - case 160: - oavr_Recognizer_setState($this, 3315); - oavr_Parser_match($this, 160); - oavr_Recognizer_setState($this, 3316); - oncipv_Cypher5Parser_propertiesResource($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3319); - oavr_Parser_match($this, 185); - oavr_Recognizer_setState($this, 3320); - oncipv_Cypher5Parser_graphScope($this); - oavr_Recognizer_setState($this, 3321); - oncipv_Cypher5Parser_graphQualifier($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$variable28; + var$3 = $x$1.$variable28; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$3 = $this.$expression24; + $x$1 = $x$1.$expression24; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncie_ReduceScope)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_labelsResource = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$LabelsResourceContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 552, 276); +oncie_ReduceScope__init_0 = ($this, $accumulator, $variable, $expression, $position) => { + $this.$accumulator0 = $accumulator; + $this.$variable28 = $variable; + $this.$expression24 = $expression; + $this.$position283 = $position; + oncie_Expression__init_($this); + s_Predef$_$callClinit(); + $this.$introducedVariables0 = (s_Predef$_Set(s_Predef$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(oncie_LogicalVariable, [$accumulator, $variable]))); +}, +oncie_ReduceScope__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncie_ReduceScope(); + oncie_ReduceScope__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncie_IterableExpressionWithInfo = $rt_classWithoutFields(0), +oncie_AllIterablePredicate$ = $rt_classWithoutFields(), +oncie_AllIterablePredicate$_MODULE$ = null, +oncie_AllIterablePredicate$_name = null, +oncie_AllIterablePredicate$_description = null, +oncie_AllIterablePredicate$_argumentDescriptions = null, +oncie_AllIterablePredicate$_$callClinit = () => { + oncie_AllIterablePredicate$_$callClinit = $rt_eraseClinit(oncie_AllIterablePredicate$); + oncie_AllIterablePredicate$__clinit_(); +}, +oncie_AllIterablePredicate$__clinit_ = () => { + let var$1, var$2, var$3, var$4; + var$1 = new oncie_AllIterablePredicate$; + oncie_AllIterablePredicate$_$callClinit(); + oncie_AllIterablePredicate$_MODULE$ = var$1; + oncie_AllIterablePredicate$_name = $rt_s(330); + oncie_AllIterablePredicate$_description = $rt_s(5407); + s_Predef$_$callClinit(); + var$1 = s_Predef$_Map(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(s_Tuple2, 3); + var$4 = var$3.data; + var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1245), $rt_s(5408)); + var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5409), $rt_s(5410)); + var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5411), $rt_s(5412)); + oncie_AllIterablePredicate$_argumentDescriptions = sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncie_AllIterablePredicate$_apply = ($this, $variable, $expression, $innerPredicate, $position) => { + return oncie_AllIterablePredicate__init_(oncie_FilterScope__init_($variable, $innerPredicate, $position), $expression, $position); +}, +oncie_AnyIterablePredicate$ = $rt_classWithoutFields(), +oncie_AnyIterablePredicate$_MODULE$ = null, +oncie_AnyIterablePredicate$_name = null, +oncie_AnyIterablePredicate$_description = null, +oncie_AnyIterablePredicate$_argumentDescriptions = null, +oncie_AnyIterablePredicate$_$callClinit = () => { + oncie_AnyIterablePredicate$_$callClinit = $rt_eraseClinit(oncie_AnyIterablePredicate$); + oncie_AnyIterablePredicate$__clinit_(); +}, +oncie_AnyIterablePredicate$__clinit_ = () => { + let var$1, var$2, var$3, var$4; + var$1 = new oncie_AnyIterablePredicate$; + oncie_AnyIterablePredicate$_$callClinit(); + oncie_AnyIterablePredicate$_MODULE$ = var$1; + oncie_AnyIterablePredicate$_name = $rt_s(445); + oncie_AnyIterablePredicate$_description = $rt_s(5413); + s_Predef$_$callClinit(); + var$1 = s_Predef$_Map(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(s_Tuple2, 3); + var$4 = var$3.data; + var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1245), $rt_s(5408)); + var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5409), $rt_s(5414)); + var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5411), $rt_s(5412)); + oncie_AnyIterablePredicate$_argumentDescriptions = sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncie_AnyIterablePredicate$_apply = ($this, $variable, $expression, $innerPredicate, $position) => { + return oncie_AnyIterablePredicate__init_(oncie_FilterScope__init_($variable, $innerPredicate, $position), $expression, $position); +}, +oncie_NoneIterablePredicate$ = $rt_classWithoutFields(), +oncie_NoneIterablePredicate$_MODULE$ = null, +oncie_NoneIterablePredicate$_name = null, +oncie_NoneIterablePredicate$_description = null, +oncie_NoneIterablePredicate$_argumentDescriptions = null, +oncie_NoneIterablePredicate$_$callClinit = () => { + oncie_NoneIterablePredicate$_$callClinit = $rt_eraseClinit(oncie_NoneIterablePredicate$); + oncie_NoneIterablePredicate$__clinit_(); +}, +oncie_NoneIterablePredicate$__clinit_ = () => { + let var$1, var$2, var$3, var$4; + var$1 = new oncie_NoneIterablePredicate$; + oncie_NoneIterablePredicate$_$callClinit(); + oncie_NoneIterablePredicate$_MODULE$ = var$1; + oncie_NoneIterablePredicate$_name = $rt_s(452); + oncie_NoneIterablePredicate$_description = $rt_s(5415); + s_Predef$_$callClinit(); + var$1 = s_Predef$_Map(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(s_Tuple2, 3); + var$4 = var$3.data; + var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1245), $rt_s(5408)); + var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5409), $rt_s(5414)); + var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5411), $rt_s(5412)); + oncie_NoneIterablePredicate$_argumentDescriptions = sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncie_NoneIterablePredicate$_apply = ($this, $variable, $expression, $innerPredicate, $position) => { + return oncie_NoneIterablePredicate__init_(oncie_FilterScope__init_($variable, $innerPredicate, $position), $expression, $position); +}, +oncie_SingleIterablePredicate$ = $rt_classWithoutFields(), +oncie_SingleIterablePredicate$_MODULE$ = null, +oncie_SingleIterablePredicate$_name = null, +oncie_SingleIterablePredicate$_description = null, +oncie_SingleIterablePredicate$_argumentDescriptions = null, +oncie_SingleIterablePredicate$_$callClinit = () => { + oncie_SingleIterablePredicate$_$callClinit = $rt_eraseClinit(oncie_SingleIterablePredicate$); + oncie_SingleIterablePredicate$__clinit_(); +}, +oncie_SingleIterablePredicate$__clinit_ = () => { + let var$1, var$2, var$3, var$4; + var$1 = new oncie_SingleIterablePredicate$; + oncie_SingleIterablePredicate$_$callClinit(); + oncie_SingleIterablePredicate$_MODULE$ = var$1; + oncie_SingleIterablePredicate$_name = $rt_s(453); + oncie_SingleIterablePredicate$_description = $rt_s(5416); + s_Predef$_$callClinit(); + var$1 = s_Predef$_Map(s_Predef$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(s_Tuple2, 3); + var$4 = var$3.data; + var$4[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1245), $rt_s(5408)); + var$4[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5409), $rt_s(5414)); + var$4[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5411), $rt_s(5412)); + oncie_SingleIterablePredicate$_argumentDescriptions = sci_Map$_from(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncie_SingleIterablePredicate$_apply = ($this, $variable, $expression, $innerPredicate, $position) => { + return oncie_SingleIterablePredicate__init_(oncie_FilterScope__init_($variable, $innerPredicate, $position), $expression, $position); +}; +let oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_154_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_154_0_apply = var$0 => { + oncie_NFCNormalForm$_$callClinit(); + return oncie_NFCNormalForm$_MODULE$; +}; +function oncie_StringLiteral() { + let a = this; oncie_Expression.call(a); + a.$value8 = null; + a.$position18 = null; +} +let oncie_StringLiteral_isConstantForQuery = $this => { + return 1; +}, +oncie_StringLiteral_value = $this => { + return $this.$value8; +}, +oncie_StringLiteral_position0 = $this => { + return $this.$position18; +}, +oncie_StringLiteral_asCanonicalStringVal = $this => { + return $this.$value8; +}, +oncie_StringLiteral_dup = ($this, $children) => { + return oncie_StringLiteral__init_($children.$head(), $this.$position18); +}, +oncie_StringLiteral_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_StringLiteral$$anon$6; + oncie_StringLiteral__init_0(var$1, $this.$value8, $this.$position18); + return var$1; +}, +oncie_StringLiteral_copy = ($this, $value, $position) => { + return oncie_StringLiteral__init_($value, $position); +}, +oncie_StringLiteral_productPrefix = $this => { + return $rt_s(5417); +}, +oncie_StringLiteral_productArity = $this => { + return 1; +}, +oncie_StringLiteral_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$value8; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_StringLiteral_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_StringLiteral_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_StringLiteral; +}, +oncie_StringLiteral_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_StringLiteral_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_StringLiteral_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3325); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3324); - oncipv_Cypher5Parser_nonEmptyStringList($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3323); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_StringLiteral) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$value8; + $x$1 = $x$1.$value8; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_StringLiteral)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_propertiesResource = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PropertiesResourceContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 554, 277); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3327); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 3330); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 3329); - oncipv_Cypher5Parser_nonEmptyStringList($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Recognizer_setState($this, 3328); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3332); - oavr_Parser_match($this, 217); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; +oncie_StringLiteral_dup1 = ($this, $children) => { + return oncie_StringLiteral_dup($this, $children); +}, +oncie_StringLiteral_dup0 = ($this, $children) => { + return oncie_StringLiteral_dup($this, $children); +}, +oncie_StringLiteral_position = $this => { + return $this.$position18; +}, +oncie_StringLiteral__init_0 = ($this, $value, $position) => { + $this.$value8 = $value; + $this.$position18 = $position; + oncie_Expression__init_($this); +}, +oncie_StringLiteral__init_ = (var_0, var_1) => { + let var_2 = new oncie_StringLiteral(); + oncie_StringLiteral__init_0(var_2, var_0, var_1); + return var_2; +}, +oncie_FunctionInvocation$ = $rt_classWithoutFields(), +oncie_FunctionInvocation$_MODULE$ = null, +oncie_FunctionInvocation$_$callClinit = () => { + oncie_FunctionInvocation$_$callClinit = $rt_eraseClinit(oncie_FunctionInvocation$); + oncie_FunctionInvocation$__clinit_(); +}, +oncie_FunctionInvocation$__clinit_ = () => { + let var$1; + var$1 = new oncie_FunctionInvocation$; + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation$_MODULE$ = var$1; +}; +function oncipcaf_ParserTrimSpecification() { + jl_Enum.call(this); + this.$description1 = null; +} +let oncipcaf_ParserTrimSpecification_BOTH = null, +oncipcaf_ParserTrimSpecification_LEADING = null, +oncipcaf_ParserTrimSpecification_TRAILING = null, +oncipcaf_ParserTrimSpecification_$VALUES = null, +oncipcaf_ParserTrimSpecification_values = () => { + return oncipcaf_ParserTrimSpecification_$VALUES.$clone0(); +}, +oncipcaf_ParserTrimSpecification__init_0 = ($this, var$1, var$2, $description) => { + jl_Enum__init_($this, var$1, var$2); + $this.$description1 = $description; +}, +oncipcaf_ParserTrimSpecification__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncipcaf_ParserTrimSpecification(); + oncipcaf_ParserTrimSpecification__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +oncipcaf_ParserTrimSpecification__clinit_ = () => { + let var$1, var$2, var$3; + oncipcaf_ParserTrimSpecification_BOTH = oncipcaf_ParserTrimSpecification__init_($rt_s(4292), 0, $rt_s(4292)); + oncipcaf_ParserTrimSpecification_LEADING = oncipcaf_ParserTrimSpecification__init_($rt_s(4384), 1, $rt_s(4384)); + var$1 = oncipcaf_ParserTrimSpecification__init_($rt_s(4489), 2, $rt_s(4489)); + oncipcaf_ParserTrimSpecification_TRAILING = var$1; + var$2 = $rt_createArray(oncipcaf_ParserTrimSpecification, 3); + var$3 = var$2.data; + var$3[0] = oncipcaf_ParserTrimSpecification_BOTH; + var$3[1] = oncipcaf_ParserTrimSpecification_LEADING; + var$3[2] = var$1; + oncipcaf_ParserTrimSpecification_$VALUES = var$2; +}, +oncief_Trim$ = $rt_classWithoutFields(oncief_Function), +oncief_Trim$_MODULE$ = null, +oncief_Trim$_signatures = null, +oncief_Trim$_$callClinit = () => { + oncief_Trim$_$callClinit = $rt_eraseClinit(oncief_Trim$); + oncief_Trim$__clinit_(); +}, +oncief_Trim$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$3, $x$4, var$9, var$10, $x$6, $x$7, $x$8, $x$15, $x$12, $x$23, $x$10, $x$14, $x$16, $x$17, $x$19, $x$20, $x$21; + var$1 = new oncief_Trim$; + oncief_Trim$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Trim$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); + var$4 = var$3.data; + $x$1 = oncief_Trim$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5418), $rt_s(1183)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_StringType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$7 = new s_Some; + $x$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($x$8); + jl_StringBuilder_append(jl_StringBuilder_append($x$8, $rt_s(5118)), $rt_s(5419)); + s_Some__init_0($x$7, jl_AbstractStringBuilder_toString($x$8)); + $x$8 = new s_Some; + s_Predef$_$callClinit(); + $x$15 = s_Predef$_Map(s_Predef$_MODULE$); + $x$12 = sr_ScalaRunTime$_MODULE$; + var$10 = $rt_createArray(s_Tuple2, 1); + var$10.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5418), $rt_s(5420)); + s_Some__init_0($x$8, sci_Map$_from($x$15, sr_ScalaRunTime$_wrapRefArray($x$12, var$10))); + $x$23 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5418), $rt_s(5421)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(5422)); + $x$23 = sci_Map$_from($x$23, sr_ScalaRunTime$_wrapRefArray($x$10, var$9)); + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5423), $x$6, $x$3, oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$), 0, s_None$_MODULE$, 0, $x$7, $x$8, $x$23); + $x$14 = oncief_Trim$_MODULE$; + $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(5418), $rt_s(5424), $rt_s(1183)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_StringType, 3); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[2] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); + $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); + $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$20 = new s_Some; + $x$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($x$3); + jl_StringBuilder_append(jl_StringBuilder_append($x$3, $rt_s(5118)), $rt_s(5425)); + s_Some__init_0($x$20, jl_AbstractStringBuilder_toString($x$3)); + $x$21 = new s_Some; + $x$3 = s_Predef$_Map(s_Predef$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 1); + var$9.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5418), $rt_s(5420)); + s_Some__init_0($x$21, sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$9))); + $x$7 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 3); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5418), $rt_s(5421)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5424), $rt_s(5426)); + var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(5427)); + $x$6 = sci_Map$_from($x$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(5428), $x$19, $x$16, oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$), 0, s_None$_MODULE$, 0, $x$20, $x$21, $x$6); + oncief_Trim$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Trim$_name = $this => { + return $rt_s(5118); +}, +oncief_Trim$_productArity = $this => { + return 0; +}, +oncief_Trim$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Trim$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Trim$_hashCode = $this => { + return 2615362; +}, +oncief_Trim$_toString = $this => { + return $rt_s(5429); +}, +oncief_Trim$_signatures0 = $this => { + oncief_Trim$_$callClinit(); + return oncief_Trim$_signatures; +}; +function oncie_ShortestPathExpression() { + oncie_Expression.call(this); + this.$pattern13 = null; +} +let oncie_ShortestPathExpression_pattern = $this => { + return $this.$pattern13; +}, +oncie_ShortestPathExpression_position = $this => { + return $this.$pattern13.$position10; +}, +oncie_ShortestPathExpression_isConstantForQuery = $this => { + return 0; +}, +oncie_ShortestPathExpression_productPrefix = $this => { + return $rt_s(5430); +}, +oncie_ShortestPathExpression_productArity = $this => { + return 1; +}, +oncie_ShortestPathExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$pattern13; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_ShortestPathExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ShortestPathExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ShortestPathExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_ShortestPathExpression_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ShortestPathExpression) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$pattern13; + $x$1 = $x$1.$pattern13; + if (var$2 !== null) { + if (!oncie_ShortestPathsPatternPart_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_ShortestPathExpression)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_nonEmptyStringList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NonEmptyStringListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 556, 278); +oncie_ShortestPathExpression__init_ = ($this, $pattern) => { + $this.$pattern13 = $pattern; + oncie_Expression__init_($this); +}, +oncie_ShortestPathExpression__init_0 = var_0 => { + let var_1 = new oncie_ShortestPathExpression(); + oncie_ShortestPathExpression__init_(var_1, var_0); + return var_1; +}; +function oncie_MapProjection() { + let a = this; oncie_Expression.call(a); + a.$name31 = null; + a.$items6 = null; + a.$position297 = null; +} +let oncie_MapProjection_name = $this => { + return $this.$name31; +}, +oncie_MapProjection_items = $this => { + return $this.$items6; +}, +oncie_MapProjection_position = $this => { + return $this.$position297; +}, +oncie_MapProjection_isConstantForQuery = $this => { + return $this.$items6.$forall(new oncie_MapProjection$isConstantForQuery$lambda$_5_0); +}, +oncie_MapProjection_productPrefix = $this => { + return $rt_s(5431); +}, +oncie_MapProjection_productArity = $this => { + return 2; +}, +oncie_MapProjection_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name31; + case 1: + return $this.$items6; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_MapProjection_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_MapProjection_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_MapProjection_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_MapProjection_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_MapProjection) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$name31; + var$3 = $x$1.$name31; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3334); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3339); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 3335); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 3336); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3341); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$items6; + $x$1 = $x$1.$items6; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_MapProjection)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_graphQualifier = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GraphQualifierContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 558, 279); +oncie_MapProjection__init_ = ($this, $name, $items, $position) => { + $this.$name31 = $name; + $this.$items6 = $items; + $this.$position297 = $position; + oncie_Expression__init_($this); +}, +oncie_MapProjection__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_MapProjection(); + oncie_MapProjection__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oncie_MapProjectionElement = $rt_classWithoutFields(0); +function oncie_LiteralEntry() { + let a = this; oncie_Expression.call(a); + a.$key7 = null; + a.$exp0 = null; + a.$position254 = null; +} +let oncie_LiteralEntry_key = $this => { + return $this.$key7; +}, +oncie_LiteralEntry_exp = $this => { + return $this.$exp0; +}, +oncie_LiteralEntry_position = $this => { + return $this.$position254; +}, +oncie_LiteralEntry_isConstantForQuery = $this => { + return $this.$exp0.$isConstantForQuery(); +}, +oncie_LiteralEntry_productPrefix = $this => { + return $rt_s(5432); +}, +oncie_LiteralEntry_productArity = $this => { + return 2; +}, +oncie_LiteralEntry_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$key7; + case 1: + return $this.$exp0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_LiteralEntry_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LiteralEntry_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LiteralEntry_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_LiteralEntry_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_LiteralEntry) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$key7; + var$3 = $x$1.$key7; + if (var$2 !== null) { + if (!oncie_PropertyKeyName_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3375); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 94: - case 95: - case 173: - case 175: - case 224: - case 225: - oavr_Recognizer_setState($this, 3342); - oncipv_Cypher5Parser_graphQualifierToken($this); - oavr_Recognizer_setState($this, 3345); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 3344); - oncipv_Cypher5Parser_nonEmptyStringList($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Recognizer_setState($this, 3343); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 112: - f: { - oavr_Recognizer_setState($this, 3347); - oavr_Parser_match($this, 112); - oavr_Recognizer_setState($this, 3348); - oavr_Parser_match($this, 155); - oavr_Recognizer_setState($this, 3350); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 411, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 3349); - oncipv_Cypher5Parser_variable($this); - } - g: { - oavr_Recognizer_setState($this, 3361); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 47) { - oavr_Recognizer_setState($this, 3352); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 3353); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3358); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 30) - break g; - oavr_Recognizer_setState($this, 3354); - oavr_Parser_match($this, 30); - oavr_Recognizer_setState($this, 3355); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3360); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - } - oavr_Recognizer_setState($this, 3373); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 147: - case 301: - h: { - oavr_Recognizer_setState($this, 3369); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 147: - oavr_Recognizer_setState($this, 3368); - oncipv_Cypher5Parser_map($this); - break h; - case 301: - oavr_Recognizer_setState($this, 3366); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 3367); - oncipv_Cypher5Parser_expression($this); - break h; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3371); - oavr_Parser_match($this, 239); - break e; - case 239: - oavr_Recognizer_setState($this, 3363); - oavr_Parser_match($this, 239); - oavr_Recognizer_setState($this, 3364); - oavr_Parser_match($this, 301); - oavr_Recognizer_setState($this, 3365); - oncipv_Cypher5Parser_expression($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 114: - case 155: - case 274: - break; - default: - break e; - } - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$exp0; + $x$1 = $x$1.$exp0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_LiteralEntry)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncie_LiteralEntry__init_0 = ($this, $key, $exp, $position) => { + $this.$key7 = $key; + $this.$exp0 = $exp; + $this.$position254 = $position; + oncie_Expression__init_($this); +}, +oncie_LiteralEntry__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_LiteralEntry(); + oncie_LiteralEntry__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_VariableSelector() { + let a = this; oncie_Expression.call(a); + a.$id3 = null; + a.$position255 = null; +} +let oncie_VariableSelector_id = $this => { + return $this.$id3; +}, +oncie_VariableSelector_position = $this => { + return $this.$position255; +}, +oncie_VariableSelector_isConstantForQuery = $this => { + return 0; +}, +oncie_VariableSelector_productPrefix = $this => { + return $rt_s(5433); +}, +oncie_VariableSelector_productArity = $this => { + return 1; +}, +oncie_VariableSelector_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$id3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_VariableSelector_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_VariableSelector_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_VariableSelector_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_VariableSelector_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_VariableSelector) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$id3; + $x$1 = $x$1.$id3; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_VariableSelector)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncie_VariableSelector__init_ = ($this, $id, $position) => { + $this.$id3 = $id; + $this.$position255 = $position; + oncie_Expression__init_($this); +}, +oncie_VariableSelector__init_0 = (var_0, var_1) => { + let var_2 = new oncie_VariableSelector(); + oncie_VariableSelector__init_(var_2, var_0, var_1); + return var_2; +}; +function oncie_AllPropertiesSelector() { + oncie_Expression.call(this); + this.$position211 = null; +} +let oncie_AllPropertiesSelector_position = $this => { + return $this.$position211; +}, +oncie_AllPropertiesSelector_isConstantForQuery = $this => { + return 1; +}, +oncie_AllPropertiesSelector_productPrefix = $this => { + return $rt_s(5434); +}, +oncie_AllPropertiesSelector_productArity = $this => { + return 0; +}, +oncie_AllPropertiesSelector_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_AllPropertiesSelector_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_AllPropertiesSelector_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_AllPropertiesSelector_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_AllPropertiesSelector_equals = ($this, $x$1) => { + let var$2; + var$2 = !($x$1 instanceof oncie_AllPropertiesSelector) ? 0 : 1; + return var$2 && $this instanceof oncie_AllPropertiesSelector ? 1 : 0; +}, +oncie_AllPropertiesSelector__init_ = ($this, $position) => { + $this.$position211 = $position; + oncie_Expression__init_($this); +}, +oncie_AllPropertiesSelector__init_0 = var_0 => { + let var_1 = new oncie_AllPropertiesSelector(); + oncie_AllPropertiesSelector__init_(var_1, var_0); + return var_1; +}; +function oncie_PropertySelector() { + let a = this; oncie_Expression.call(a); + a.$key5 = null; + a.$position223 = null; +} +let oncie_PropertySelector_key = $this => { + return $this.$key5; +}, +oncie_PropertySelector_position = $this => { + return $this.$position223; +}, +oncie_PropertySelector_isConstantForQuery = $this => { + return 0; +}, +oncie_PropertySelector_productPrefix = $this => { + return $rt_s(5435); +}, +oncie_PropertySelector_productArity = $this => { + return 1; +}, +oncie_PropertySelector_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$key5; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_PropertySelector_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PropertySelector_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PropertySelector_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_PropertySelector_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_PropertySelector) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$key5; + $x$1 = $x$1.$key5; + if (var$2 !== null) { + if (!oncie_PropertyKeyName_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_PropertySelector)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncie_PropertySelector__init_0 = ($this, $key, $position) => { + $this.$key5 = $key; + $this.$position223 = $position; + oncie_Expression__init_($this); +}, +oncie_PropertySelector__init_ = (var_0, var_1) => { + let var_2 = new oncie_PropertySelector(); + oncie_PropertySelector__init_0(var_2, var_0, var_1); + return var_2; +}, +oncie_DoubleLiteral = $rt_classWithoutFields(0); +function oncie_DecimalDoubleLiteral() { + let a = this; oncie_Expression.call(a); + a.$doubleMatcher0 = null; + a.$value29 = null; + a.$stringVal2 = null; + a.$position47 = null; + a.$bitmap$09 = 0; +} +let oncie_DecimalDoubleLiteral_asCanonicalStringVal = $this => { + return $this.$stringVal(); +}, +oncie_DecimalDoubleLiteral_isConstantForQuery = $this => { + return 1; +}, +oncie_DecimalDoubleLiteral_stringVal = $this => { + return $this.$stringVal2; +}, +oncie_DecimalDoubleLiteral_position = $this => { + return $this.$position47; +}, +oncie_DecimalDoubleLiteral_doubleMatcher = $this => { + let var$1, var$2, $$je; + if (($this.$bitmap$09 & 1) << 24 >> 24) + return $this.$doubleMatcher0; + jl_Object_monitorEnterSync($this); + a: { + try { + if (($this.$bitmap$09 & 1) << 24 >> 24) + break a; + var$1 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $this.$doubleMatcher0 = sc_StringOps$_r$extension(var$1, s_Predef$_augmentString(s_Predef$_MODULE$, $rt_s(5436))); + $this.$bitmap$09 = ($this.$bitmap$09 | 1) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$2); + } + jl_Object_monitorExitSync($this); + return $this.$doubleMatcher0; +}, +oncie_DecimalDoubleLiteral_value = $this => { + let var$1, $$je; + if (($this.$bitmap$09 & 2) << 24 >> 24) + return $this.$value29; + jl_Object_monitorEnterSync($this); + a: { + try { + if (($this.$bitmap$09 & 2) << 24 >> 24) + break a; + var$1 = oncie_DecimalDoubleLiteral_stringVal($this); + if (var$1 !== null && !s_Option_isEmpty(sum_Regex_unapplySeq(oncie_DecimalDoubleLiteral_doubleMatcher($this), var$1))) { + s_Predef$_$callClinit(); + var$1 = s_Predef$_double2Double(s_Predef$_MODULE$, jl_Double_parseDouble(jl_String_replace(oncie_DecimalDoubleLiteral_stringVal($this), $rt_s(5437), $rt_s(4)))); + } else { + s_Predef$_$callClinit(); + var$1 = s_Predef$_double2Double(s_Predef$_MODULE$, jl_Double_parseDouble(oncie_DecimalDoubleLiteral_stringVal($this))); + } + $this.$value29 = var$1; + $this.$bitmap$09 = ($this.$bitmap$09 | 2) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$value29; +}, +oncie_DecimalDoubleLiteral_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_DecimalDoubleLiteral$$anon$5; + oncie_DecimalDoubleLiteral__init_0(var$1, $this.$stringVal2, $this.$position47); + return var$1; +}, +oncie_DecimalDoubleLiteral_copy = ($this, $stringVal, $position) => { + return oncie_DecimalDoubleLiteral__init_($stringVal, $position); +}, +oncie_DecimalDoubleLiteral_productPrefix = $this => { + return $rt_s(5438); +}, +oncie_DecimalDoubleLiteral_productArity = $this => { + return 1; +}, +oncie_DecimalDoubleLiteral_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$stringVal2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_DecimalDoubleLiteral_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_DecimalDoubleLiteral_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_DecimalDoubleLiteral; +}, +oncie_DecimalDoubleLiteral_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_DecimalDoubleLiteral_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_DecimalDoubleLiteral_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_DecimalDoubleLiteral) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$stringVal2; + $x$1 = $x$1.$stringVal2; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_DecimalDoubleLiteral)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_graphQualifierToken = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GraphQualifierTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 560, 280); +oncie_DecimalDoubleLiteral__init_0 = ($this, $stringVal, $position) => { + $this.$stringVal2 = $stringVal; + $this.$position47 = $position; + oncie_Expression__init_($this); +}, +oncie_DecimalDoubleLiteral__init_ = (var_0, var_1) => { + let var_2 = new oncie_DecimalDoubleLiteral(); + oncie_DecimalDoubleLiteral__init_0(var_2, var_0, var_1); + return var_2; +}, +oncie_SignedIntegerLiteral = $rt_classWithoutFields(0); +function oncie_SignedDecimalIntegerLiteral() { + let a = this; oncie_DecimalIntegerLiteral.call(a); + a.$stringVal4 = null; + a.$position176 = null; +} +let oncie_SignedDecimalIntegerLiteral_stringVal = $this => { + return $this.$stringVal4; +}, +oncie_SignedDecimalIntegerLiteral_position = $this => { + return $this.$position176; +}, +oncie_SignedDecimalIntegerLiteral_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_SignedDecimalIntegerLiteral$$anon$1; + oncie_SignedDecimalIntegerLiteral__init_(var$1, $this.$stringVal4, $this.$position176); + return var$1; +}, +oncie_SignedDecimalIntegerLiteral_copy = ($this, $stringVal, $position) => { + return oncie_SignedDecimalIntegerLiteral__init_0($stringVal, $position); +}, +oncie_SignedDecimalIntegerLiteral_productPrefix = $this => { + return $rt_s(5439); +}, +oncie_SignedDecimalIntegerLiteral_productArity = $this => { + return 1; +}, +oncie_SignedDecimalIntegerLiteral_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$stringVal4; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_SignedDecimalIntegerLiteral_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedDecimalIntegerLiteral_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_SignedDecimalIntegerLiteral; +}, +oncie_SignedDecimalIntegerLiteral_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedDecimalIntegerLiteral_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedDecimalIntegerLiteral_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3380); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 94: - case 95: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 3379); - oncipv_Cypher5Parser_elementToken($this); - break e; - case 173: - case 175: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3378); - oncipv_Cypher5Parser_nodeToken($this); - break e; - case 224: - case 225: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3377); - oncipv_Cypher5Parser_relToken($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_SignedDecimalIntegerLiteral) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$stringVal4; + $x$1 = $x$1.$stringVal4; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_SignedDecimalIntegerLiteral)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}, +oncie_SignedDecimalIntegerLiteral__init_ = ($this, $stringVal, $position) => { + $this.$stringVal4 = $stringVal; + $this.$position176 = $position; + oncie_DecimalIntegerLiteral__init_($this, $stringVal); +}, +oncie_SignedDecimalIntegerLiteral__init_0 = (var_0, var_1) => { + let var_2 = new oncie_SignedDecimalIntegerLiteral(); + oncie_SignedDecimalIntegerLiteral__init_(var_2, var_0, var_1); + return var_2; }; -let oncipv_Cypher5Parser_relToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$RelTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 562, 281); +function oncie_HexIntegerLiteral() { + let a = this; oncie_Expression.call(a); + a.$hexMatcher0 = null; + a.$value31 = null; + a.$stringVal7 = null; + a.$bitmap$016 = 0; +} +let oncie_HexIntegerLiteral_asCanonicalStringVal = $this => { + return $this.$stringVal(); +}, +oncie_HexIntegerLiteral_isConstantForQuery = $this => { + return 1; +}, +oncie_HexIntegerLiteral_hexMatcher = $this => { + let var$1, var$2, $$je; + if (($this.$bitmap$016 & 1) << 24 >> 24) + return $this.$hexMatcher0; + jl_Object_monitorEnterSync($this); a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3382); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 224 && $_la != 225) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + try { + if (($this.$bitmap$016 & 1) << 24 >> 24) + break a; + var$1 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $this.$hexMatcher0 = sc_StringOps$_r$extension(var$1, s_Predef$_augmentString(s_Predef$_MODULE$, $rt_s(5440))); + $this.$bitmap$016 = ($this.$bitmap$016 | 1) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); + $rt_throw(var$2); } - return $_localctx; + jl_Object_monitorExitSync($this); + return $this.$hexMatcher0; }, -oncipv_Cypher5Parser_elementToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ElementTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 564, 282); +oncie_HexIntegerLiteral_value = $this => { + let var$1, $$je; + if (($this.$bitmap$016 & 2) << 24 >> 24) + return $this.$value31; + jl_Object_monitorEnterSync($this); + a: { + try { + if (($this.$bitmap$016 & 2) << 24 >> 24) + break a; + var$1 = $this.$stringVal7; + if (var$1 !== null && !s_Option_isEmpty(sum_Regex_unapplySeq(oncie_HexIntegerLiteral_hexMatcher($this), var$1))) { + s_Predef$_$callClinit(); + var$1 = jl_Long_decode(sc_AbstractIterable_mkString0(sci_List_filter(sc_AbstractIterable_toList(s_LowPriorityImplicits_wrapString(s_Predef$_MODULE$, $this.$stringVal7)), oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0__init_()))); + } else + var$1 = jl_Long_decode($this.$stringVal7); + $this.$value31 = var$1; + $this.$bitmap$016 = ($this.$bitmap$016 | 2) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$value31; +}; +function oncie_SignedHexIntegerLiteral() { + let a = this; oncie_HexIntegerLiteral.call(a); + a.$stringVal3 = null; + a.$position51 = null; +} +let oncie_SignedHexIntegerLiteral_stringVal = $this => { + return $this.$stringVal3; +}, +oncie_SignedHexIntegerLiteral_position = $this => { + return $this.$position51; +}, +oncie_SignedHexIntegerLiteral_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_SignedHexIntegerLiteral$$anon$4; + oncie_SignedHexIntegerLiteral__init_0(var$1, $this.$stringVal3, $this.$position51); + return var$1; +}, +oncie_SignedHexIntegerLiteral_copy = ($this, $stringVal, $position) => { + return oncie_SignedHexIntegerLiteral__init_($stringVal, $position); +}, +oncie_SignedHexIntegerLiteral_productPrefix = $this => { + return $rt_s(5441); +}, +oncie_SignedHexIntegerLiteral_productArity = $this => { + return 1; +}, +oncie_SignedHexIntegerLiteral_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$stringVal3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_SignedHexIntegerLiteral_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedHexIntegerLiteral_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_SignedHexIntegerLiteral; +}, +oncie_SignedHexIntegerLiteral_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedHexIntegerLiteral_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedHexIntegerLiteral_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3384); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 94 && $_la != 95) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_SignedHexIntegerLiteral) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$stringVal3; + $x$1 = $x$1.$stringVal3; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_SignedHexIntegerLiteral)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncie_SignedHexIntegerLiteral__init_0 = ($this, $stringVal, $position) => { + $this.$stringVal3 = $stringVal; + $this.$position51 = $position; + $this.$stringVal7 = $stringVal; + oncie_Expression__init_($this); +}, +oncie_SignedHexIntegerLiteral__init_ = (var_0, var_1) => { + let var_2 = new oncie_SignedHexIntegerLiteral(); + oncie_SignedHexIntegerLiteral__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_OctalIntegerLiteral() { + let a = this; oncie_Expression.call(a); + a.$octalMatcher0 = null; + a.$value28 = null; + a.$stringVal5 = null; + a.$bitmap$015 = 0; +} +let oncie_OctalIntegerLiteral_asCanonicalStringVal = $this => { + return $this.$stringVal(); +}, +oncie_OctalIntegerLiteral_isConstantForQuery = $this => { + return 1; +}, +oncie_OctalIntegerLiteral_octalMatcher = $this => { + let var$1, var$2, $$je; + if (($this.$bitmap$015 & 1) << 24 >> 24) + return $this.$octalMatcher0; + jl_Object_monitorEnterSync($this); + a: { + try { + if (($this.$bitmap$015 & 1) << 24 >> 24) + break a; + var$1 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $this.$octalMatcher0 = sc_StringOps$_r$extension(var$1, s_Predef$_augmentString(s_Predef$_MODULE$, $rt_s(5442))); + $this.$bitmap$015 = ($this.$bitmap$015 | 1) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$2 = $$je; - } + } + jl_Object_monitorExitSync($this); + $rt_throw(var$2); + } + jl_Object_monitorExitSync($this); + return $this.$octalMatcher0; +}, +oncie_OctalIntegerLiteral_value = $this => { + let var$1, $$je; + if (($this.$bitmap$015 & 2) << 24 >> 24) + return $this.$value28; + jl_Object_monitorEnterSync($this); + a: { + try { + if (($this.$bitmap$015 & 2) << 24 >> 24) + break a; + var$1 = $this.$stringVal5; + if (var$1 !== null && !s_Option_isEmpty(sum_Regex_unapplySeq(oncie_OctalIntegerLiteral_octalMatcher($this), var$1))) { + s_Predef$_$callClinit(); + var$1 = jl_Long_decode(sc_AbstractIterable_mkString0(sci_List_filter(sci_List_filter(sc_AbstractIterable_toList(s_LowPriorityImplicits_wrapString(s_Predef$_MODULE$, $this.$stringVal5)), oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0__init_0()), oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1__init_0()))); + } else { + s_Predef$_$callClinit(); + var$1 = jl_Long_decode(sc_AbstractIterable_mkString0(sci_List_filter(sc_AbstractIterable_toList(s_LowPriorityImplicits_wrapString(s_Predef$_MODULE$, $this.$stringVal5)), oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2__init_()))); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + $this.$value28 = var$1; + $this.$bitmap$015 = ($this.$bitmap$015 | 2) << 24 >> 24; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - oncipa_AstBuildingAntlrParser_exitRule$($this); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - return $_localctx; + jl_Object_monitorExitSync($this); + return $this.$value28; +}; +function oncie_SignedOctalIntegerLiteral() { + let a = this; oncie_OctalIntegerLiteral.call(a); + a.$stringVal1 = null; + a.$position40 = null; +} +let oncie_SignedOctalIntegerLiteral_stringVal = $this => { + return $this.$stringVal1; }, -oncipv_Cypher5Parser_nodeToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$NodeTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 566, 283); +oncie_SignedOctalIntegerLiteral_position = $this => { + return $this.$position40; +}, +oncie_SignedOctalIntegerLiteral_asSensitiveLiteral = $this => { + let var$1; + var$1 = new oncie_SignedOctalIntegerLiteral$$anon$3; + oncie_SignedOctalIntegerLiteral__init_0(var$1, $this.$stringVal1, $this.$position40); + return var$1; +}, +oncie_SignedOctalIntegerLiteral_copy = ($this, $stringVal, $position) => { + return oncie_SignedOctalIntegerLiteral__init_($stringVal, $position); +}, +oncie_SignedOctalIntegerLiteral_productPrefix = $this => { + return $rt_s(5443); +}, +oncie_SignedOctalIntegerLiteral_productArity = $this => { + return 1; +}, +oncie_SignedOctalIntegerLiteral_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$stringVal1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_SignedOctalIntegerLiteral_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedOctalIntegerLiteral_canEqual = ($this, $x$1) => { + return $x$1 instanceof oncie_SignedOctalIntegerLiteral; +}, +oncie_SignedOctalIntegerLiteral_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedOctalIntegerLiteral_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SignedOctalIntegerLiteral_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3386); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 173 && $_la != 175) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_SignedOctalIntegerLiteral) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$stringVal1; + $x$1 = $x$1.$stringVal1; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncie_SignedOctalIntegerLiteral)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_databaseScope = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DatabaseScopeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 568, 284); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3395); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 65: - case 66: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3390); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 65 && $_la != 66) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3393); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 3392); - oncipv_Cypher5Parser_symbolicAliasNameList($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Recognizer_setState($this, 3391); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - case 71: - case 126: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3388); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 71 && $_la != 126) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3389); - oavr_Parser_match($this, 65); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; +oncie_SignedOctalIntegerLiteral__init_0 = ($this, $stringVal, $position) => { + $this.$stringVal1 = $stringVal; + $this.$position40 = $position; + $this.$stringVal5 = $stringVal; + oncie_Expression__init_($this); +}, +oncie_SignedOctalIntegerLiteral__init_ = (var_0, var_1) => { + let var_2 = new oncie_SignedOctalIntegerLiteral(); + oncie_SignedOctalIntegerLiteral__init_0(var_2, var_0, var_1); + return var_2; +}, +oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0_apply0 = (var$0, var$1) => { + return oncipv_Cypher5Parser$FunctionArgumentContext_expression(var$1); +}, +oncie_FunctionInvocation$ArgumentOrder = $rt_classWithoutFields(0), +oncie_FunctionInvocation$ArgumentUnordered$ = $rt_classWithoutFields(), +oncie_FunctionInvocation$ArgumentUnordered$_MODULE$ = null, +oncie_FunctionInvocation$ArgumentUnordered$__clinit_ = () => { + oncie_FunctionInvocation$ArgumentUnordered$_MODULE$ = new oncie_FunctionInvocation$ArgumentUnordered$; +}, +oncie_FunctionInvocation$ArgumentUnordered$_productArity = $this => { + return 0; +}, +oncie_FunctionInvocation$ArgumentUnordered$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncie_FunctionInvocation$ArgumentUnordered$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_FunctionInvocation$ArgumentUnordered$_hashCode = $this => { + return 665731415; +}, +oncie_FunctionInvocation$ArgumentUnordered$_toString = $this => { + return $rt_s(5444); +}, +oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_00 = $rt_classWithoutFields(), +oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0; + var$2.$_0873 = var$1; + return var$2; +}; +function oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0() { + let a = this; jl_Object.call(a); + a.$_0532 = null; + a.$_1176 = null; +} +let oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0_accept0 = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0532; + var$3 = var$0.$_1176; + var$4 = new oncius_ListType; + var$5 = var$2.$elem; + var$6 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); + oncipau_Util$_$callClinit(); + oncius_ListType__init_0(var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + var$2.$elem = var$4; +}, +oncia_Options = $rt_classWithoutFields(0); +function oncia_OptionsMap() { + jl_Object.call(this); + this.$map16 = null; +} +let oncia_OptionsMap_productPrefix = $this => { + return $rt_s(5445); +}, +oncia_OptionsMap_productArity = $this => { + return 1; +}, +oncia_OptionsMap_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$map16; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_OptionsMap_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OptionsMap_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OptionsMap_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OptionsMap_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_OptionsMap) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$map16; + $x$1 = $x$1.$map16; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_OptionsMap)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncia_OptionsMap__init_ = ($this, $map) => { + $this.$map16 = $map; +}, +oncia_OptionsMap__init_0 = var_0 => { + let var_1 = new oncia_OptionsMap(); + oncia_OptionsMap__init_(var_1, var_0); + return var_1; +}; +function oncia_OptionsParam() { + jl_Object.call(this); + this.$parameter3 = null; +} +let oncia_OptionsParam_productPrefix = $this => { + return $rt_s(5446); +}, +oncia_OptionsParam_productArity = $this => { + return 1; +}, +oncia_OptionsParam_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$parameter3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_OptionsParam_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OptionsParam_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OptionsParam_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_OptionsParam_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_OptionsParam) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$parameter3; + $x$1 = $x$1.$parameter3; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_OptionsParam)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_graphScope = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$GraphScopeContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 570, 285); +oncia_OptionsParam__init_0 = ($this, $parameter) => { + $this.$parameter3 = $parameter; +}, +oncia_OptionsParam__init_ = var_0 => { + let var_1 = new oncia_OptionsParam(); + oncia_OptionsParam__init_0(var_1, var_0); + return var_1; +}; +function oncipvaf_DdlShowBuilder$ShowWrapper() { + let a = this; jl_Object.call(a); + a.$where0 = null; + a.$yieldedItems = null; + a.$yieldAll0 = 0; + a.$yieldClause1 = null; + a.$returnClause2 = null; + a.$composableClauses0 = null; + a.$names0 = null; +} +let oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0 = ($this, $constraintType, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8; + oncia_ShowConstraintsClause$_$callClinit(); + var$3 = oncia_ShowConstraintsClause$_MODULE$; + var$4 = $this.$where0; + var$5 = $this.$yieldedItems; + var$6 = $this.$yieldAll0; + var$7 = $this.$yieldClause1; + var$8 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_0; + var$8.$_0267 = $this; + return oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0($this, oncia_ShowConstraintsClause$_apply(var$3, $constraintType, var$4, var$5, var$6, s_Option_map(var$7, var$8), 1, $position)); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_buildIndexClauses = ($this, $indexType, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8; + var$3 = oncia_ShowIndexesClause$_MODULE$; + var$4 = $this.$where0; + var$5 = $this.$yieldedItems; + var$6 = $this.$yieldAll0; + var$7 = $this.$yieldClause1; + var$8 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_0; + var$8.$_0522 = $this; + return oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0($this, oncia_ShowIndexesClause$_apply(var$3, $indexType, var$4, var$5, var$6, s_Option_map(var$7, var$8), $position)); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0 = ($this, $cmdClause) => { + let var$2, var$3; + var$2 = sci_ArraySeq$_MODULE$; + var$3 = ((sci_$colon$colon__init_($cmdClause, sci_Nil$_MODULE$)).$concat($this.$returnClause2)).$concat(s_Option_getOrElse($this.$composableClauses0, new oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_00)); + sr_ClassTag$_$callClinit(); + return sci_ArraySeq$_from(var$2, var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Clause))); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith0 = ($this, $yieldClause) => { + let $returnItems, $where, var$4, $itemOrder, $orderBy, $where_0; + $returnItems = $yieldClause.$returnItems4; + s_Option$_$callClinit(); + $where = s_Option$_MODULE$; + var$4 = sc_IterableOnceOps_nonEmpty$($returnItems.$items0); + $itemOrder = new oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0; + $itemOrder.$_0658 = $returnItems; + $itemOrder = s_Option$_when($where, var$4, $itemOrder); + oncia_CommandClause$_$callClinit(); + $where = oncia_CommandClause$_updateAliasedVariablesFromYieldInOrderByAndWhere(oncia_CommandClause$_MODULE$, $yieldClause); + if ($where === null) + $rt_throw(s_MatchError__init_($where)); + $orderBy = $where.$_10; + $where = $where.$_20; + $where_0 = s_Tuple2__init_($orderBy, $where); + $orderBy = $where_0.$_10; + $where_0 = $where_0.$_20; + return oncia_With__init_0(0, oncia_ReturnItems__init_0(1, sci_Nil$_MODULE$, $itemOrder, $returnItems.$position28), $orderBy, $yieldClause.$skip4, $yieldClause.$limit4, $where_0, oncia_ParsedAsYield$_MODULE$, $yieldClause.$position31); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_copy = ($this, $where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names) => { + return oncipvaf_DdlShowBuilder$ShowWrapper__init_2($where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_productPrefix = $this => { + return $rt_s(5447); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_productArity0 = $this => { + return 7; +}, +oncipvaf_DdlShowBuilder$ShowWrapper_productElement0 = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$where0; + case 1: + return $this.$yieldedItems; + case 2: + return jl_Boolean_valueOf($this.$yieldAll0); + case 3: + return $this.$yieldClause1; + case 4: + return $this.$returnClause2; + case 5: + return $this.$composableClauses0; + case 6: + return $this.$names0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_hashCode0 = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5447))), sr_Statics_anyHash($this.$where0)), sr_Statics_anyHash($this.$yieldedItems)), !$this.$yieldAll0 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldClause1)), sr_Statics_anyHash($this.$returnClause2)), sr_Statics_anyHash($this.$composableClauses0)), sr_Statics_anyHash($this.$names0)), 7); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncipvaf_DdlShowBuilder$ShowWrapper_equals0 = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncipvaf_DdlShowBuilder$ShowWrapper) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll0 != $x$1.$yieldAll0) + break b; + c: { + var$2 = $this.$where0; + var$3 = $x$1.$where0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - e: { - oavr_Recognizer_setState($this, 3404); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 71: - case 126: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3397); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 71 && $_la != 126) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3398); - oavr_Parser_match($this, 120); - break e; - case 120: - case 121: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3399); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 120 && $_la != 121) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3402); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 80: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Recognizer_setState($this, 3401); - oncipv_Cypher5Parser_symbolicAliasNameList($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - break; - case 271: - oavr_Recognizer_setState($this, 3400); - oavr_Parser_match($this, 271); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$2 = $this.$yieldedItems; + var$3 = $x$1.$yieldedItems; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$2 = $this.$yieldClause1; + var$3 = $x$1.$yieldClause1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$returnClause2; + var$3 = $x$1.$returnClause2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$composableClauses0; + var$3 = $x$1.$composableClauses0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$names0; + $x$1 = $x$1.$names0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break h; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncipvaf_DdlShowBuilder$ShowWrapper)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; + } + return var$4; +}, +oncipvaf_DdlShowBuilder$ShowWrapper__init_ = ($this, $where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names) => { + $this.$where0 = $where; + $this.$yieldedItems = $yieldedItems; + $this.$yieldAll0 = $yieldAll; + $this.$yieldClause1 = $yieldClause; + $this.$returnClause2 = $returnClause; + $this.$composableClauses0 = $composableClauses; + $this.$names0 = $names; +}, +oncipvaf_DdlShowBuilder$ShowWrapper__init_2 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncipvaf_DdlShowBuilder$ShowWrapper(); + oncipvaf_DdlShowBuilder$ShowWrapper__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; +}, +s_Function7 = $rt_classWithoutFields(0), +sr_AbstractFunction7 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$ShowWrapper$ = $rt_classWithoutFields(sr_AbstractFunction7), +oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$ = null, +oncipvaf_DdlShowBuilder$ShowWrapper$__clinit_0 = () => { + oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$ = new oncipvaf_DdlShowBuilder$ShowWrapper$; +}, +oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2 = $this => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; +}, +oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7 = $this => { + let var$1; + s_package$_$callClinit(); + var$1 = s_package$_Left(s_package$_MODULE$); + s_package$_List(s_package$_MODULE$); + return su_Left$_apply(var$1, sci_Nil$_MODULE$); +}, +oncia_ShowIndexType = $rt_classWithoutFields(0), +oncia_AllIndexes$ = $rt_classWithoutFields(), +oncia_AllIndexes$_MODULE$ = null, +oncia_AllIndexes$_prettyPrint = null, +oncia_AllIndexes$_description = null, +oncia_AllIndexes$_$callClinit = () => { + oncia_AllIndexes$_$callClinit = $rt_eraseClinit(oncia_AllIndexes$); + oncia_AllIndexes$__clinit_(); +}, +oncia_AllIndexes$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllIndexes$; + oncia_AllIndexes$_$callClinit(); + oncia_AllIndexes$_MODULE$ = var$1; + oncia_AllIndexes$_prettyPrint = $rt_s(562); + oncia_AllIndexes$_description = $rt_s(5448); +}, +oncia_AllIndexes$_prettyPrint0 = $this => { + oncia_AllIndexes$_$callClinit(); + return oncia_AllIndexes$_prettyPrint; +}, +oncia_AllIndexes$_productArity = $this => { + return 0; +}, +oncia_AllIndexes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllIndexes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllIndexes$_hashCode = $this => { + return 1032870975; +}, +oncia_AllIndexes$_toString = $this => { + return $rt_s(5449); +}, +oncia_FulltextIndexes$ = $rt_classWithoutFields(), +oncia_FulltextIndexes$_MODULE$ = null, +oncia_FulltextIndexes$_prettyPrint = null, +oncia_FulltextIndexes$_description = null, +oncia_FulltextIndexes$__clinit_ = () => { + oncia_FulltextIndexes$_MODULE$ = new oncia_FulltextIndexes$; + oncia_FulltextIndexes$_prettyPrint = $rt_s(3565); + oncia_FulltextIndexes$_description = $rt_s(5450); +}, +oncia_FulltextIndexes$_prettyPrint0 = $this => { + return oncia_FulltextIndexes$_prettyPrint; +}, +oncia_FulltextIndexes$_productArity = $this => { + return 0; +}, +oncia_FulltextIndexes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_FulltextIndexes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_FulltextIndexes$_hashCode = $this => { + return (-329739004); +}, +oncia_FulltextIndexes$_toString = $this => { + return $rt_s(5451); +}, +oncia_LookupIndexes$ = $rt_classWithoutFields(), +oncia_LookupIndexes$_MODULE$ = null, +oncia_LookupIndexes$_prettyPrint = null, +oncia_LookupIndexes$_description = null, +oncia_LookupIndexes$__clinit_ = () => { + oncia_LookupIndexes$_MODULE$ = new oncia_LookupIndexes$; + oncia_LookupIndexes$_prettyPrint = $rt_s(3566); + oncia_LookupIndexes$_description = $rt_s(5452); +}; +let oncia_LookupIndexes$_prettyPrint0 = $this => { + return oncia_LookupIndexes$_prettyPrint; +}, +oncia_LookupIndexes$_productArity = $this => { + return 0; +}, +oncia_LookupIndexes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_LookupIndexes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LookupIndexes$_hashCode = $this => { + return (-610293242); +}, +oncia_LookupIndexes$_toString = $this => { + return $rt_s(5453); +}, +oncia_PointIndexes$ = $rt_classWithoutFields(), +oncia_PointIndexes$_MODULE$ = null, +oncia_PointIndexes$_prettyPrint = null, +oncia_PointIndexes$_description = null, +oncia_PointIndexes$__clinit_ = () => { + oncia_PointIndexes$_MODULE$ = new oncia_PointIndexes$; + oncia_PointIndexes$_prettyPrint = $rt_s(734); + oncia_PointIndexes$_description = $rt_s(5454); +}, +oncia_PointIndexes$_prettyPrint0 = $this => { + return oncia_PointIndexes$_prettyPrint; +}, +oncia_PointIndexes$_productArity = $this => { + return 0; +}, +oncia_PointIndexes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_PointIndexes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_PointIndexes$_hashCode = $this => { + return (-951485072); +}, +oncia_PointIndexes$_toString = $this => { + return $rt_s(5455); +}, +oncia_RangeIndexes$ = $rt_classWithoutFields(), +oncia_RangeIndexes$_MODULE$ = null, +oncia_RangeIndexes$_prettyPrint = null, +oncia_RangeIndexes$_description = null, +oncia_RangeIndexes$__clinit_ = () => { + oncia_RangeIndexes$_MODULE$ = new oncia_RangeIndexes$; + oncia_RangeIndexes$_prettyPrint = $rt_s(1097); + oncia_RangeIndexes$_description = $rt_s(5456); +}, +oncia_RangeIndexes$_prettyPrint0 = $this => { + return oncia_RangeIndexes$_prettyPrint; +}, +oncia_RangeIndexes$_productArity = $this => { + return 0; +}, +oncia_RangeIndexes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RangeIndexes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RangeIndexes$_hashCode = $this => { + return 1401523491; +}, +oncia_RangeIndexes$_toString = $this => { + return $rt_s(5457); +}, +oncia_TextIndexes$ = $rt_classWithoutFields(), +oncia_TextIndexes$_MODULE$ = null, +oncia_TextIndexes$_prettyPrint = null, +oncia_TextIndexes$_description = null, +oncia_TextIndexes$__clinit_ = () => { + oncia_TextIndexes$_MODULE$ = new oncia_TextIndexes$; + oncia_TextIndexes$_prettyPrint = $rt_s(1096); + oncia_TextIndexes$_description = $rt_s(5458); +}, +oncia_TextIndexes$_prettyPrint0 = $this => { + return oncia_TextIndexes$_prettyPrint; +}, +oncia_TextIndexes$_productArity = $this => { + return 0; +}, +oncia_TextIndexes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_TextIndexes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_TextIndexes$_hashCode = $this => { + return (-1523742989); +}, +oncia_TextIndexes$_toString = $this => { + return $rt_s(5459); +}, +oncia_VectorIndexes$ = $rt_classWithoutFields(), +oncia_VectorIndexes$_MODULE$ = null, +oncia_VectorIndexes$_prettyPrint = null, +oncia_VectorIndexes$_description = null, +oncia_VectorIndexes$__clinit_ = () => { + oncia_VectorIndexes$_MODULE$ = new oncia_VectorIndexes$; + oncia_VectorIndexes$_prettyPrint = $rt_s(3567); + oncia_VectorIndexes$_description = $rt_s(5460); +}, +oncia_VectorIndexes$_prettyPrint0 = $this => { + return oncia_VectorIndexes$_prettyPrint; +}, +oncia_VectorIndexes$_productArity = $this => { + return 0; +}, +oncia_VectorIndexes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_VectorIndexes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_VectorIndexes$_hashCode = $this => { + return (-774779363); +}, +oncia_VectorIndexes$_toString = $this => { + return $rt_s(5461); +}; +let oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = new oncipvaf_DdlShowBuilder$ShowWrapper; + var$2 = s_None$_MODULE$; + var$3 = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$); + var$4 = s_None$_MODULE$; + oncipvaf_DdlShowBuilder$ShowWrapper__init_(var$1, var$2, var$3, 0, var$4, var$4, var$4, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); + return var$1; +}, +oncia_ShowConstraintType = $rt_classWithoutFields(0), +oncia_NodeUniqueConstraints$ = $rt_classWithoutFields(), +oncia_NodeUniqueConstraints$_MODULE$ = null, +oncia_NodeUniqueConstraints$__clinit_ = () => { + oncia_NodeUniqueConstraints$_MODULE$ = new oncia_NodeUniqueConstraints$; +}, +oncia_RelUniqueConstraints$ = $rt_classWithoutFields(), +oncia_RelUniqueConstraints$_MODULE$ = null, +oncia_RelUniqueConstraints$__clinit_ = () => { + oncia_RelUniqueConstraints$_MODULE$ = new oncia_RelUniqueConstraints$; +}, +oncia_RelKeyConstraints$ = $rt_classWithoutFields(), +oncia_RelKeyConstraints$_MODULE$ = null, +oncia_RelKeyConstraints$_output = null, +oncia_RelKeyConstraints$_prettyPrint = null, +oncia_RelKeyConstraints$_description = null, +oncia_RelKeyConstraints$__clinit_ = () => { + oncia_RelKeyConstraints$_MODULE$ = new oncia_RelKeyConstraints$; + oncia_RelKeyConstraints$_output = $rt_s(5462); + oncia_RelKeyConstraints$_prettyPrint = $rt_s(5463); + oncia_RelKeyConstraints$_description = $rt_s(5464); +}, +oncia_RelKeyConstraints$_prettyPrint0 = $this => { + return oncia_RelKeyConstraints$_prettyPrint; +}, +oncia_RelKeyConstraints$_productArity = $this => { + return 0; +}, +oncia_RelKeyConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RelKeyConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RelKeyConstraints$_hashCode = $this => { + return (-1446079696); +}, +oncia_RelKeyConstraints$_toString = $this => { + return $rt_s(5465); +}, +oncia_KeyConstraints$ = $rt_classWithoutFields(), +oncia_KeyConstraints$_MODULE$ = null, +oncia_KeyConstraints$_output = null, +oncia_KeyConstraints$_prettyPrint = null, +oncia_KeyConstraints$_description = null, +oncia_KeyConstraints$__clinit_ = () => { + oncia_KeyConstraints$_MODULE$ = new oncia_KeyConstraints$; + oncia_KeyConstraints$_output = $rt_s(4376); + oncia_KeyConstraints$_prettyPrint = $rt_s(4376); + oncia_KeyConstraints$_description = $rt_s(5466); +}, +oncia_KeyConstraints$_prettyPrint0 = $this => { + return oncia_KeyConstraints$_prettyPrint; +}, +oncia_KeyConstraints$_productArity = $this => { + return 0; +}, +oncia_KeyConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_KeyConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_KeyConstraints$_hashCode = $this => { + return (-330818953); +}, +oncia_KeyConstraints$_toString = $this => { + return $rt_s(5467); +}, +oncia_RelAllExistsConstraints$ = $rt_classWithoutFields(), +oncia_RelAllExistsConstraints$_MODULE$ = null, +oncia_RelAllExistsConstraints$_output = null, +oncia_RelAllExistsConstraints$_prettyPrint = null, +oncia_RelAllExistsConstraints$_description = null, +oncia_RelAllExistsConstraints$__clinit_ = () => { + oncia_RelAllExistsConstraints$_MODULE$ = new oncia_RelAllExistsConstraints$; + oncia_RelAllExistsConstraints$_output = $rt_s(5468); + oncia_RelAllExistsConstraints$_prettyPrint = $rt_s(5469); + oncia_RelAllExistsConstraints$_description = $rt_s(5470); +}, +oncia_RelAllExistsConstraints$_prettyPrint0 = $this => { + return oncia_RelAllExistsConstraints$_prettyPrint; +}, +oncia_RelAllExistsConstraints$_productArity = $this => { + return 0; +}, +oncia_RelAllExistsConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RelAllExistsConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RelAllExistsConstraints$_hashCode = $this => { + return 4973234; +}, +oncia_RelAllExistsConstraints$_toString = $this => { + return $rt_s(5471); +}, +oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0_apply = var$0 => { + return oncia_AllConstraints$_MODULE$; +}, +oncia_NodePropTypeConstraints$ = $rt_classWithoutFields(), +oncia_NodePropTypeConstraints$_MODULE$ = null, +oncia_NodePropTypeConstraints$_output = null; +let oncia_NodePropTypeConstraints$_prettyPrint = null, +oncia_NodePropTypeConstraints$_description = null, +oncia_NodePropTypeConstraints$__clinit_ = () => { + oncia_NodePropTypeConstraints$_MODULE$ = new oncia_NodePropTypeConstraints$; + oncia_NodePropTypeConstraints$_output = $rt_s(5472); + oncia_NodePropTypeConstraints$_prettyPrint = $rt_s(5473); + oncia_NodePropTypeConstraints$_description = $rt_s(5474); +}, +oncia_NodePropTypeConstraints$_prettyPrint0 = $this => { + return oncia_NodePropTypeConstraints$_prettyPrint; +}, +oncia_NodePropTypeConstraints$_productArity = $this => { + return 0; +}, +oncia_NodePropTypeConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_NodePropTypeConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NodePropTypeConstraints$_hashCode = $this => { + return 1497446199; +}, +oncia_NodePropTypeConstraints$_toString = $this => { + return $rt_s(5475); +}, +oncia_RelPropTypeConstraints$ = $rt_classWithoutFields(), +oncia_RelPropTypeConstraints$_MODULE$ = null, +oncia_RelPropTypeConstraints$_output = null, +oncia_RelPropTypeConstraints$_prettyPrint = null, +oncia_RelPropTypeConstraints$_description = null, +oncia_RelPropTypeConstraints$__clinit_ = () => { + oncia_RelPropTypeConstraints$_MODULE$ = new oncia_RelPropTypeConstraints$; + oncia_RelPropTypeConstraints$_output = $rt_s(5476); + oncia_RelPropTypeConstraints$_prettyPrint = $rt_s(5477); + oncia_RelPropTypeConstraints$_description = $rt_s(5478); +}, +oncia_RelPropTypeConstraints$_prettyPrint0 = $this => { + return oncia_RelPropTypeConstraints$_prettyPrint; +}, +oncia_RelPropTypeConstraints$_productArity = $this => { + return 0; +}, +oncia_RelPropTypeConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RelPropTypeConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RelPropTypeConstraints$_hashCode = $this => { + return (-486263936); +}, +oncia_RelPropTypeConstraints$_toString = $this => { + return $rt_s(5479); +}, +oncia_PropTypeConstraints$ = $rt_classWithoutFields(), +oncia_PropTypeConstraints$_MODULE$ = null, +oncia_PropTypeConstraints$_output = null, +oncia_PropTypeConstraints$_prettyPrint = null, +oncia_PropTypeConstraints$_description = null, +oncia_PropTypeConstraints$__clinit_ = () => { + oncia_PropTypeConstraints$_MODULE$ = new oncia_PropTypeConstraints$; + oncia_PropTypeConstraints$_output = $rt_s(5480); + oncia_PropTypeConstraints$_prettyPrint = $rt_s(5481); + oncia_PropTypeConstraints$_description = $rt_s(5482); +}, +oncia_PropTypeConstraints$_prettyPrint0 = $this => { + return oncia_PropTypeConstraints$_prettyPrint; +}, +oncia_PropTypeConstraints$_productArity = $this => { + return 0; +}, +oncia_PropTypeConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_PropTypeConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_PropTypeConstraints$_hashCode = $this => { + return 462364825; +}, +oncia_PropTypeConstraints$_toString = $this => { + return $rt_s(5483); +}, +oncia_UniqueConstraints$ = $rt_classWithoutFields(), +oncia_UniqueConstraints$_MODULE$ = null, +oncia_UniqueConstraints$__clinit_ = () => { + oncia_UniqueConstraints$_MODULE$ = new oncia_UniqueConstraints$; +}, +oncia_NodeAllExistsConstraints$ = $rt_classWithoutFields(), +oncia_NodeAllExistsConstraints$_MODULE$ = null, +oncia_NodeAllExistsConstraints$_output = null, +oncia_NodeAllExistsConstraints$_prettyPrint = null, +oncia_NodeAllExistsConstraints$_description = null, +oncia_NodeAllExistsConstraints$__clinit_ = () => { + oncia_NodeAllExistsConstraints$_MODULE$ = new oncia_NodeAllExistsConstraints$; + oncia_NodeAllExistsConstraints$_output = $rt_s(5484); + oncia_NodeAllExistsConstraints$_prettyPrint = $rt_s(5485); + oncia_NodeAllExistsConstraints$_description = $rt_s(5486); +}, +oncia_NodeAllExistsConstraints$_prettyPrint0 = $this => { + return oncia_NodeAllExistsConstraints$_prettyPrint; +}, +oncia_NodeAllExistsConstraints$_productArity = $this => { + return 0; +}, +oncia_NodeAllExistsConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_NodeAllExistsConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NodeAllExistsConstraints$_hashCode = $this => { + return 1370445275; +}, +oncia_NodeAllExistsConstraints$_toString = $this => { + return $rt_s(5487); +}, +oncia_NodePropExistsConstraints$ = $rt_classWithoutFields(), +oncia_NodePropExistsConstraints$_MODULE$ = null; +let oncia_NodePropExistsConstraints$__clinit_ = () => { + oncia_NodePropExistsConstraints$_MODULE$ = new oncia_NodePropExistsConstraints$; +}, +oncia_RelPropExistsConstraints$ = $rt_classWithoutFields(), +oncia_RelPropExistsConstraints$_MODULE$ = null, +oncia_RelPropExistsConstraints$__clinit_ = () => { + oncia_RelPropExistsConstraints$_MODULE$ = new oncia_RelPropExistsConstraints$; +}, +oncia_AllExistsConstraints$ = $rt_classWithoutFields(), +oncia_AllExistsConstraints$_MODULE$ = null, +oncia_AllExistsConstraints$_output = null, +oncia_AllExistsConstraints$_prettyPrint = null, +oncia_AllExistsConstraints$_description = null, +oncia_AllExistsConstraints$__clinit_ = () => { + oncia_AllExistsConstraints$_MODULE$ = new oncia_AllExistsConstraints$; + oncia_AllExistsConstraints$_output = $rt_s(4348); + oncia_AllExistsConstraints$_prettyPrint = $rt_s(4348); + oncia_AllExistsConstraints$_description = $rt_s(5488); +}, +oncia_AllExistsConstraints$_prettyPrint0 = $this => { + return oncia_AllExistsConstraints$_prettyPrint; +}, +oncia_AllExistsConstraints$_productArity = $this => { + return 0; +}, +oncia_AllExistsConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllExistsConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllExistsConstraints$_hashCode = $this => { + return (-652306247); +}, +oncia_AllExistsConstraints$_toString = $this => { + return $rt_s(5489); +}, +oncia_PropExistsConstraints$ = $rt_classWithoutFields(), +oncia_PropExistsConstraints$_MODULE$ = null, +oncia_PropExistsConstraints$__clinit_ = () => { + oncia_PropExistsConstraints$_MODULE$ = new oncia_PropExistsConstraints$; +}, +oncia_AllConstraints$ = $rt_classWithoutFields(), +oncia_AllConstraints$_MODULE$ = null, +oncia_AllConstraints$_output = null, +oncia_AllConstraints$_prettyPrint = null, +oncia_AllConstraints$_description = null, +oncia_AllConstraints$__clinit_ = () => { + oncia_AllConstraints$_MODULE$ = new oncia_AllConstraints$; + oncia_AllConstraints$_output = $rt_s(562); + oncia_AllConstraints$_prettyPrint = $rt_s(562); + oncia_AllConstraints$_description = $rt_s(5490); +}, +oncia_AllConstraints$_prettyPrint0 = $this => { + return oncia_AllConstraints$_prettyPrint; +}, +oncia_AllConstraints$_productArity = $this => { + return 0; +}, +oncia_AllConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllConstraints$_hashCode = $this => { + return 992870901; +}, +oncia_AllConstraints$_toString = $this => { + return $rt_s(5491); +}, +oncia_NodeKeyConstraints$ = $rt_classWithoutFields(), +oncia_NodeKeyConstraints$_MODULE$ = null, +oncia_NodeKeyConstraints$_output = null, +oncia_NodeKeyConstraints$_prettyPrint = null, +oncia_NodeKeyConstraints$_description = null, +oncia_NodeKeyConstraints$__clinit_ = () => { + oncia_NodeKeyConstraints$_MODULE$ = new oncia_NodeKeyConstraints$; + oncia_NodeKeyConstraints$_output = $rt_s(5243); + oncia_NodeKeyConstraints$_prettyPrint = $rt_s(5492); + oncia_NodeKeyConstraints$_description = $rt_s(5493); +}, +oncia_NodeKeyConstraints$_prettyPrint0 = $this => { + return oncia_NodeKeyConstraints$_prettyPrint; +}, +oncia_NodeKeyConstraints$_productArity = $this => { + return 0; +}, +oncia_NodeKeyConstraints$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_NodeKeyConstraints$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NodeKeyConstraints$_hashCode = $this => { + return 1525537049; +}, +oncia_NodeKeyConstraints$_toString = $this => { + return $rt_s(5494); +}, +oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = new oncipvaf_DdlShowBuilder$ShowWrapper; + var$2 = s_None$_MODULE$; + var$3 = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$); + var$4 = s_None$_MODULE$; + oncipvaf_DdlShowBuilder$ShowWrapper__init_(var$1, var$2, var$3, 0, var$4, var$4, var$4, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); + return var$1; +}, +oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0_apply = var$0 => { + return oncia_AllFunctions$_MODULE$; +}, +oncia_ShowFunctionType = $rt_classWithoutFields(0), +oncia_ExecutableBy = $rt_classWithoutFields(0), +oncia_CurrentUser$ = $rt_classWithoutFields(); +let oncia_CurrentUser$_MODULE$ = null, +oncia_CurrentUser$_$callClinit = () => { + oncia_CurrentUser$_$callClinit = $rt_eraseClinit(oncia_CurrentUser$); + oncia_CurrentUser$__clinit_(); +}, +oncia_CurrentUser$__clinit_ = () => { + let var$1; + var$1 = new oncia_CurrentUser$; + oncia_CurrentUser$_$callClinit(); + oncia_CurrentUser$_MODULE$ = var$1; +}, +oncia_CurrentUser$_productArity = $this => { + return 0; +}, +oncia_CurrentUser$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CurrentUser$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CurrentUser$_hashCode = $this => { + return (-2025824060); +}, +oncia_CurrentUser$_toString = $this => { + return $rt_s(5495); +}; +function oncia_User() { + jl_Object.call(this); + this.$name39 = null; +} +let oncia_User_productPrefix = $this => { + return $rt_s(5496); +}, +oncia_User_productArity = $this => { + return 1; +}, +oncia_User_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name39; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_createCompositeDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateCompositeDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 572, 286); +oncia_User_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_User_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_User_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_User_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3406); - oavr_Parser_match($this, 53); - oavr_Recognizer_setState($this, 3407); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3408); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3412); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 3409); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 3410); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 3411); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 3415); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { - oavr_Recognizer_setState($this, 3414); - oncipv_Cypher5Parser_commandOptions($this); - } - oavr_Recognizer_setState($this, 3418); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 181 && $_la != 299)) { - oavr_Recognizer_setState($this, 3417); - oncipv_Cypher5Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_User) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$name39; + $x$1 = $x$1.$name39; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_User)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_createDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 574, 287); +oncia_User__init_0 = ($this, $name) => { + $this.$name39 = $name; +}, +oncia_User__init_ = var_0 => { + let var_1 = new oncia_User(); + oncia_User__init_0(var_1, var_0); + return var_1; +}, +oncia_BuiltInFunctions$ = $rt_classWithoutFields(), +oncia_BuiltInFunctions$_MODULE$ = null, +oncia_BuiltInFunctions$_prettyPrint = null, +oncia_BuiltInFunctions$_description = null, +oncia_BuiltInFunctions$__clinit_ = () => { + oncia_BuiltInFunctions$_MODULE$ = new oncia_BuiltInFunctions$; + oncia_BuiltInFunctions$_prettyPrint = $rt_s(5497); + oncia_BuiltInFunctions$_description = $rt_s(5498); +}, +oncia_BuiltInFunctions$_prettyPrint0 = $this => { + return oncia_BuiltInFunctions$_prettyPrint; +}, +oncia_BuiltInFunctions$_productArity = $this => { + return 0; +}, +oncia_BuiltInFunctions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_BuiltInFunctions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_BuiltInFunctions$_hashCode = $this => { + return (-730407240); +}, +oncia_BuiltInFunctions$_toString = $this => { + return $rt_s(5499); +}, +oncia_AllFunctions$ = $rt_classWithoutFields(), +oncia_AllFunctions$_MODULE$ = null, +oncia_AllFunctions$_prettyPrint = null, +oncia_AllFunctions$_description = null, +oncia_AllFunctions$__clinit_ = () => { + oncia_AllFunctions$_MODULE$ = new oncia_AllFunctions$; + oncia_AllFunctions$_prettyPrint = $rt_s(562); + oncia_AllFunctions$_description = $rt_s(5500); +}, +oncia_AllFunctions$_prettyPrint0 = $this => { + return oncia_AllFunctions$_prettyPrint; +}, +oncia_AllFunctions$_productArity = $this => { + return 0; +}, +oncia_AllFunctions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllFunctions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllFunctions$_hashCode = $this => { + return 1117996826; +}, +oncia_AllFunctions$_toString = $this => { + return $rt_s(5501); +}, +oncia_UserDefinedFunctions$ = $rt_classWithoutFields(), +oncia_UserDefinedFunctions$_MODULE$ = null, +oncia_UserDefinedFunctions$_prettyPrint = null, +oncia_UserDefinedFunctions$_description = null, +oncia_UserDefinedFunctions$__clinit_ = () => { + oncia_UserDefinedFunctions$_MODULE$ = new oncia_UserDefinedFunctions$; + oncia_UserDefinedFunctions$_prettyPrint = $rt_s(5502); + oncia_UserDefinedFunctions$_description = $rt_s(5503); +}, +oncia_UserDefinedFunctions$_prettyPrint0 = $this => { + return oncia_UserDefinedFunctions$_prettyPrint; +}, +oncia_UserDefinedFunctions$_productArity = $this => { + return 0; +}, +oncia_UserDefinedFunctions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_UserDefinedFunctions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UserDefinedFunctions$_hashCode = $this => { + return (-566890083); +}, +oncia_UserDefinedFunctions$_toString = $this => { + return $rt_s(5504); +}, +oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0_apply = var$0 => { + let var$1; + s_package$_$callClinit(); + var$1 = s_package$_Left(s_package$_MODULE$); + s_package$_List(s_package$_MODULE$); + return su_Left$_apply(var$1, sci_Nil$_MODULE$); +}, +oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0_apply = (var$0, var$1) => { + return var$1.$value8; +}, +oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; +}, +oncia_CreateConstraint$ = $rt_classWithoutFields(), +oncia_CreateConstraint$_MODULE$ = null; +let oncia_CreateConstraint$_$callClinit = () => { + oncia_CreateConstraint$_$callClinit = $rt_eraseClinit(oncia_CreateConstraint$); + oncia_CreateConstraint$__clinit_(); +}, +oncia_CreateConstraint$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateConstraint$; + oncia_CreateConstraint$_$callClinit(); + oncia_CreateConstraint$_MODULE$ = var$1; +}, +oncia_CreateConstraint$_unapply = ($this, $c) => { + return s_Some__init_(s_Tuple7__init_($c.$variable4(), $c.$entityName(), $c.$properties3(), $c.$name2(), $c.$constraintType1(), $c.$ifExistsDo(), $c.$options())); +}, +oncia_CreateConstraint$_createNodeKeyConstraint = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $fromCypher5, $useGraph, $position) => { + let var$10, var$11; + var$10 = new oncia_CreateConstraintCommand; + if (!$fromCypher5) { + oncia_NodeKeyCypher25$_$callClinit(); + var$11 = oncia_NodeKeyCypher25$_MODULE$; + } else { + oncia_NodeKeyCypher5$_$callClinit(); + var$11 = oncia_NodeKeyCypher5$_MODULE$; + } + oncia_CreateConstraintCommand__init_(var$10, $variable, $label, $properties, $name, var$11, $ifExistsDo, $options, $useGraph, $position); + return var$10; +}, +oncia_CreateConstraint$_createRelationshipKeyConstraint = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $fromCypher5, $useGraph, $position) => { + let var$10, var$11; + var$10 = new oncia_CreateConstraintCommand; + if (!$fromCypher5) { + oncia_RelationshipKeyCypher25$_$callClinit(); + var$11 = oncia_RelationshipKeyCypher25$_MODULE$; + } else { + oncia_RelationshipKeyCypher5$_$callClinit(); + var$11 = oncia_RelationshipKeyCypher5$_MODULE$; + } + oncia_CreateConstraintCommand__init_(var$10, $variable, $relType, $properties, $name, var$11, $ifExistsDo, $options, $useGraph, $position); + return var$10; +}, +oncia_CreateConstraint$_createNodePropertyUniquenessConstraint = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $fromCypher5, $useGraph, $position) => { + let var$10, var$11; + var$10 = new oncia_CreateConstraintCommand; + if (!$fromCypher5) { + oncia_NodePropertyUniquenessCypher25$_$callClinit(); + var$11 = oncia_NodePropertyUniquenessCypher25$_MODULE$; + } else { + oncia_NodePropertyUniquenessCypher5$_$callClinit(); + var$11 = oncia_NodePropertyUniquenessCypher5$_MODULE$; + } + oncia_CreateConstraintCommand__init_(var$10, $variable, $label, $properties, $name, var$11, $ifExistsDo, $options, $useGraph, $position); + return var$10; +}, +oncia_CreateConstraint$_createRelationshipPropertyUniquenessConstraint = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $fromCypher5, $useGraph, $position) => { + let var$10, var$11; + var$10 = new oncia_CreateConstraintCommand; + if (!$fromCypher5) { + oncia_RelationshipPropertyUniquenessCypher25$_$callClinit(); + var$11 = oncia_RelationshipPropertyUniquenessCypher25$_MODULE$; + } else { + oncia_RelationshipPropertyUniquenessCypher5$_$callClinit(); + var$11 = oncia_RelationshipPropertyUniquenessCypher5$_MODULE$; + } + oncia_CreateConstraintCommand__init_(var$10, $variable, $relType, $properties, $name, var$11, $ifExistsDo, $options, $useGraph, $position); + return var$10; +}, +oncia_CreateConstraint$_createNodePropertyExistenceConstraint = ($this, $variable, $label, $property, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateConstraintCommand__init_0($variable, $label, sci_$colon$colon__init_($property, sci_Nil$_MODULE$), $name, oncia_NodePropertyExistence$_MODULE$, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateConstraint$_createRelationshipPropertyExistenceConstraint = ($this, $variable, $relType, $property, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateConstraintCommand__init_0($variable, $relType, sci_$colon$colon__init_($property, sci_Nil$_MODULE$), $name, oncia_RelationshipPropertyExistence$_MODULE$, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateConstraint$_createNodePropertyTypeConstraint = ($this, $variable, $label, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreatePropertyTypeConstraint__init_($variable, $label, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateConstraint$_createRelationshipPropertyTypeConstraint = ($this, $variable, $relType, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreatePropertyTypeConstraint__init_($variable, $relType, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_SchemaCommand = $rt_classWithoutFields(0), +oncia_SchemaCommand_returnColumns$ = $$this => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; +}, +oncia_SchemaCommand_checkOptionsMap$ = ($$this, $schemaString, $options) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + if (!($options instanceof oncia_OptionsMap)) { + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + $options = sc_AbstractMap_view($options.$map16); + var$4 = new oncia_SchemaCommand$checkOptionsMap$lambda$_6_0; + var$5 = new sc_MapView$FilterKeys; + var$5.$underlying23 = $options; + var$5.$p4 = var$4; + jl_Object__init_(var$5); + if (sc_Iterator_isEmpty$(sc_MapView$FilterKeys_iterator(var$5))) { + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$8 = var$7.data; + oncias_SemanticError$_$callClinit(); + var$9 = new sc_MapView$Keys; + var$9.$underlying22 = var$5; + var$10 = sc_AbstractIterable_mkString(var$9, $rt_s(120)); + var$5 = $$this.$position(); + $$this = ong_GqlHelper_getGql42001_22N04(var$10, ong_GqlParams$StringParam_process(ong_GqlParams$StringParam_input, $rt_s(4418)), ju_List_of0($rt_s(5505), $rt_s(5506)), var$5.$offset(), var$5.$line(), var$5.$column()); + $options = new oncias_SemanticError; + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(5507)), $schemaString), $rt_s(5508)); + oncias_SemanticError__init_($options, $$this, jl_AbstractStringBuilder_toString(var$9), var$5); + var$8[0] = $options; + $$this = oncias_SemanticCheck$_error(var$4, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); + } + } + return $$this; +}; +function oncia_DropConstraintOnName() { + let a = this; jl_Object.call(a); + a.$name27 = null; + a.$ifExists5 = 0; + a.$useGraph2 = null; + a.$position150 = null; +} +let oncia_DropConstraintOnName_returnColumns = $this => { + return oncia_SchemaCommand_returnColumns$($this); +}, +oncia_DropConstraintOnName_foldedOver = $this => { + return $this; +}, +oncia_DropConstraintOnName_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_DropConstraintOnName_position = $this => { + return $this.$position150; +}, +oncia_DropConstraintOnName_semanticCheck = $this => { + return oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, sci_Nil$_MODULE$); +}, +oncia_DropConstraintOnName_copy = ($this, $name, $ifExists, $useGraph, $position) => { + return oncia_DropConstraintOnName__init_($name, $ifExists, $useGraph, $position); +}, +oncia_DropConstraintOnName_productPrefix = $this => { + return $rt_s(5509); +}, +oncia_DropConstraintOnName_productArity = $this => { + return 3; +}, +oncia_DropConstraintOnName_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name27; + case 1: + return jl_Boolean_valueOf($this.$ifExists5); + case 2: + return $this.$useGraph2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_DropConstraintOnName_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropConstraintOnName_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5509))), sr_Statics_anyHash($this.$name27)), !$this.$ifExists5 ? 1237 : 1231), sr_Statics_anyHash($this.$useGraph2)), 3); +}, +oncia_DropConstraintOnName_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropConstraintOnName_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DropConstraintOnName) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists5 != $x$1.$ifExists5) + break b; + c: { + var$2 = $this.$name27; + var$3 = $x$1.$name27; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3420); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3421); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3425); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 3422); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 3423); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 3424); - oavr_Parser_match($this, 105); - } - e: { - oavr_Recognizer_setState($this, 3434); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 275) { - oavr_Recognizer_setState($this, 3427); - oavr_Parser_match($this, 275); - oavr_Recognizer_setState($this, 3430); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - f: { - oavr_Recognizer_setState($this, 3430); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 426, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 3429); - oncipv_Cypher5Parser_secondaryTopology($this); - break f; - default: - break f; - } - oavr_Recognizer_setState($this, 3428); - oncipv_Cypher5Parser_primaryTopology($this); - } - oavr_Recognizer_setState($this, 3432); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) - continue; - else - break e; - } - } - } - oavr_Recognizer_setState($this, 3437); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 188) { - oavr_Recognizer_setState($this, 3436); - oncipv_Cypher5Parser_commandOptions($this); - } - oavr_Recognizer_setState($this, 3440); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 181 && $_la != 299)) { - oavr_Recognizer_setState($this, 3439); - oncipv_Cypher5Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$useGraph2; + $x$1 = $x$1.$useGraph2; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_DropConstraintOnName)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_primaryTopology = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PrimaryTopologyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 576, 288); +oncia_DropConstraintOnName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_DropConstraintOnName_withGraph = ($this, $useGraph) => { + return oncia_DropConstraintOnName_copy($this, $this.$name27, $this.$ifExists5, $useGraph, $this.$position150); +}, +oncia_DropConstraintOnName__init_0 = ($this, $name, $ifExists, $useGraph, $position) => { + $this.$name27 = $name; + $this.$ifExists5 = $ifExists; + $this.$useGraph2 = $useGraph; + $this.$position150 = $position; +}, +oncia_DropConstraintOnName__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_DropConstraintOnName(); + oncia_DropConstraintOnName__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncia_DropConstraintOnName$ = $rt_classWithoutFields(), +oncia_DropConstraintOnName$_MODULE$ = null, +oncia_DropConstraintOnName$__clinit_ = () => { + oncia_DropConstraintOnName$_MODULE$ = new oncia_DropConstraintOnName$; +}, +oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; +}, +oncia_CreateIndex$ = $rt_classWithoutFields(), +oncia_CreateIndex$_MODULE$ = null, +oncia_CreateIndex$__clinit_ = () => { + oncia_CreateIndex$_MODULE$ = new oncia_CreateIndex$; +}, +oncia_CreateIndex$_createFulltextNodeIndex = ($this, $variable, $labels, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + let var$9; + var$9 = new oncia_CreateFulltextIndexCommand; + s_package$_$callClinit(); + oncia_CreateFulltextIndexCommand__init_(var$9, $variable, su_Left$_apply(s_package$_Left(s_package$_MODULE$), $labels), $properties, $name, $ifExistsDo, $options, $useGraph, $position); + return var$9; +}, +oncia_CreateIndex$_createFulltextRelationshipIndex = ($this, $variable, $relTypes, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + let var$9; + var$9 = new oncia_CreateFulltextIndexCommand; + s_package$_$callClinit(); + oncia_CreateFulltextIndexCommand__init_(var$9, $variable, su_Right$_apply(s_package$_Right(s_package$_MODULE$), $relTypes), $properties, $name, $ifExistsDo, $options, $useGraph, $position); + return var$9; +}, +oncia_CreateIndex$_createLookupIndex = ($this, $variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateLookupIndexCommand__init_($variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateIndex$_createPointNodeIndex = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $label, $properties, $name, oncia_PointCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateIndex$_createPointRelationshipIndex = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $relType, $properties, $name, oncia_PointCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateIndex$_createRangeNodeIndex = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $fromDefault, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $label, $properties, $name, oncia_RangeCreateIndex__init_($fromDefault), $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateIndex$_createRangeRelationshipIndex = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $fromDefault, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $relType, $properties, $name, oncia_RangeCreateIndex__init_($fromDefault), $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateIndex$_createTextNodeIndex = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $label, $properties, $name, oncia_TextCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateIndex$_createTextRelationshipIndex = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $relType, $properties, $name, oncia_TextCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateIndex$_createVectorNodeIndex = ($this, $variable, $label, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $label, $properties, $name, oncia_VectorCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateIndex$_createVectorRelationshipIndex = ($this, $variable, $relType, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $relType, $properties, $name, oncia_VectorCreateIndex$_MODULE$, $ifExistsDo, $options, $useGraph, $position); +}, +oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; +}, +oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0; + var$2.$_0900 = var$1; + return var$2; +}, +oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0; + var$2.$_0793 = var$1; + return var$2; +}, +oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; +}; +function oncia_DropIndexOnName() { + let a = this; jl_Object.call(a); + a.$name28 = null; + a.$ifExists2 = 0; + a.$useGraph1 = null; + a.$position175 = null; +} +let oncia_DropIndexOnName_returnColumns = $this => { + return oncia_SchemaCommand_returnColumns$($this); +}, +oncia_DropIndexOnName_foldedOver = $this => { + return $this; +}, +oncia_DropIndexOnName_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_DropIndexOnName_position = $this => { + return $this.$position175; +}, +oncia_DropIndexOnName_semanticCheck = $this => { + return oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, sci_Nil$_MODULE$); +}, +oncia_DropIndexOnName_copy = ($this, $name, $ifExists, $useGraph, $position) => { + return oncia_DropIndexOnName__init_0($name, $ifExists, $useGraph, $position); +}, +oncia_DropIndexOnName_productPrefix = $this => { + return $rt_s(5510); +}, +oncia_DropIndexOnName_productArity = $this => { + return 3; +}, +oncia_DropIndexOnName_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name28; + case 1: + return jl_Boolean_valueOf($this.$ifExists2); + case 2: + return $this.$useGraph1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_DropIndexOnName_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropIndexOnName_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5510))), sr_Statics_anyHash($this.$name28)), !$this.$ifExists2 ? 1237 : 1231), sr_Statics_anyHash($this.$useGraph1)), 3); +}, +oncia_DropIndexOnName_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropIndexOnName_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DropIndexOnName) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists2 != $x$1.$ifExists2) + break b; + c: { + var$2 = $this.$name28; + var$3 = $x$1.$name28; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3442); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 3443); - oncipv_Cypher5Parser_primaryToken($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$useGraph1; + $x$1 = $x$1.$useGraph1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_DropIndexOnName)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_primaryToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$PrimaryTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 578, 289); +oncia_DropIndexOnName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_DropIndexOnName_withGraph = ($this, $useGraph) => { + return oncia_DropIndexOnName_copy($this, $this.$name28, $this.$ifExists2, $useGraph, $this.$position175); +}, +oncia_DropIndexOnName__init_ = ($this, $name, $ifExists, $useGraph, $position) => { + $this.$name28 = $name; + $this.$ifExists2 = $ifExists; + $this.$useGraph1 = $useGraph; + $this.$position175 = $position; +}, +oncia_DropIndexOnName__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_DropIndexOnName(); + oncia_DropIndexOnName__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncia_DropIndexOnName$ = $rt_classWithoutFields(), +oncia_DropIndexOnName$_MODULE$ = null, +oncia_DropIndexOnName$__clinit_ = () => { + oncia_DropIndexOnName$_MODULE$ = new oncia_DropIndexOnName$; +}, +oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0_apply0 = (var$0, var$1) => { + let var$2; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + return oncie_Property__init_(var$2, var$1.$_2(), var$2.$position()); +}; +function oncia_PrivilegeType() { + jl_Object.call(this); + this.$name38 = null; +} +let oncia_PrivilegeType_name = $this => { + return $this.$name38; +}, +oncia_PrivilegeType__init_ = ($this, $name) => { + $this.$name38 = $name; +}, +oncia_WriteAdministrationCommand = $rt_classWithoutFields(0), +oncia_WriteAdministrationCommand_returnColumns$ = $$this => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; +}, +oncia_WriteAdministrationCommand_topologyCheck$ = ($$this, $topology, $command) => { + let var$4; + var$4 = new oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0; + var$4.$_0940 = $$this; + var$4.$_1322 = $command; + return s_Option_getOrElse(s_Option_map($topology, var$4), new oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1); +}, +oncia_WriteAdministrationCommand_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq(0); +}; +function oncia_PrivilegeCommand() { + let a = this; jl_Object.call(a); + a.$privilege5 = null; + a.$qualifier3 = null; + a.$position84 = null; + a.$FAILED_PROPERTY_RULE0 = null; + a.$isReadOnly21 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar13 = null; +} +let oncia_PrivilegeCommand_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_PrivilegeCommand_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_PrivilegeCommand_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_PrivilegeCommand_dup0 = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_PrivilegeCommand_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_PrivilegeCommand_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_PrivilegeCommand_error0 = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_PrivilegeCommand_error = ($this, $gqlStatusObject, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$0($this, $gqlStatusObject, $msg, $position); +}, +oncia_PrivilegeCommand_foldedOver = $this => { + return $this; +}, +oncia_PrivilegeCommand_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly21 = $x$1; +}, +oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar13; +}, +oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar13 = $x$1; +}, +oncia_PrivilegeCommand_FAILED_PROPERTY_RULE = $this => { + return $this.$FAILED_PROPERTY_RULE0; +}, +oncia_PrivilegeCommand_nanError = ($this, $l) => { + let var$2, var$3; + var$2 = $this.$FAILED_PROPERTY_RULE0; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(5511)); + return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$3), $l.$position123); +}, +oncia_PrivilegeCommand_propertyAlwaysNullError = ($this, $gqlBuilder, $predicate, $pos, $hint) => { + let var$5, var$6; + var$5 = $gqlBuilder.$apply2($predicate); + $gqlBuilder = $this.$FAILED_PROPERTY_RULE0; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $gqlBuilder), $rt_s(5512)), $predicate), $rt_s(5513)), $hint); + return oncias_SemanticAnalysisTooling_error$0($this, var$5, jl_AbstractStringBuilder_toString(var$6), $pos); +}, +oncia_PrivilegeCommand_propertyAlwaysNullError$default$4 = $this => { + return $rt_s(4); +}, +oncia_PrivilegeCommand_propertyPositionError = ($this, $p, $operator) => { + let var$3, var$4, var$5, var$6; + ong_GqlStatusInfoCodes_$callClinit(); + var$3 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA0), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA1), ong_GqlParams$StringParam_propKey, $p.$propertyKey0.$name5), + ong_GqlParams$StringParam_operation, $operator)))); + var$4 = $this.$FAILED_PROPERTY_RULE0; + var$5 = $p.$propertyKey0.$name5; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$4), $rt_s(5514)), var$5), $rt_s(5515)), $operator), $rt_s(5516)); + return oncias_SemanticAnalysisTooling_error$0($this, var$3, jl_AbstractStringBuilder_toString(var$6), $p.$position19); +}, +oncia_PrivilegeCommand_checkExpression = ($this, $expression) => { + let var$2, $e, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, $e_0, var$17, $l, $p, $pk; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3445); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 204 && $_la != 205) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + var$2 = 0; + $e = null; + var$4 = 0; + var$5 = null; + var$6 = 0; + var$7 = null; + var$8 = 0; + var$9 = null; + var$10 = 0; + var$11 = null; + var$12 = 0; + var$13 = null; + var$14 = 0; + var$15 = null; + if ($expression instanceof oncie_Not) { + $e_0 = oncie_Not_rhs($expression); + if ($rt_isInstance($e_0, oncie_BooleanExpression)) { + var$17 = $e_0; + break a; + } + } + var$17 = $expression; + } + if (var$17 instanceof oncie_Equals) { + var$2 = 1; + $e = var$17; + $l = oncie_Equals_rhs($e); + if (oncie_Equals_lhs($e) instanceof oncie_Property && $l instanceof oncie_NaN) + return oncia_PrivilegeCommand_nanError($this, $l); + } + if (var$17 instanceof oncie_NotEquals) { + var$4 = 1; + var$5 = var$17; + $l = oncie_NotEquals_rhs(var$5); + if (oncie_NotEquals_lhs(var$5) instanceof oncie_Property && $l instanceof oncie_NaN) + return oncia_PrivilegeCommand_nanError($this, $l); + } + if (var$17 instanceof oncie_GreaterThan) { + var$6 = 1; + var$7 = var$17; + $l = oncie_GreaterThan_rhs(var$7); + if (oncie_GreaterThan_lhs(var$7) instanceof oncie_Property && $l instanceof oncie_NaN) + return oncia_PrivilegeCommand_nanError($this, $l); + } + if (var$17 instanceof oncie_GreaterThanOrEqual) { + var$8 = 1; + var$9 = var$17; + $l = oncie_GreaterThanOrEqual_rhs(var$9); + if (oncie_GreaterThanOrEqual_lhs(var$9) instanceof oncie_Property && $l instanceof oncie_NaN) + return oncia_PrivilegeCommand_nanError($this, $l); + } + if (var$17 instanceof oncie_LessThan) { + var$10 = 1; + var$11 = var$17; + $l = oncie_LessThan_rhs(var$11); + if (oncie_LessThan_lhs(var$11) instanceof oncie_Property && $l instanceof oncie_NaN) + return oncia_PrivilegeCommand_nanError($this, $l); + } + if (var$17 instanceof oncie_LessThanOrEqual) { + var$12 = 1; + var$13 = var$17; + $l = oncie_LessThanOrEqual_rhs(var$13); + if (oncie_LessThanOrEqual_lhs(var$13) instanceof oncie_Property && $l instanceof oncie_NaN) + return oncia_PrivilegeCommand_nanError($this, $l); + } + if (var$2) { + $l = oncie_Equals_lhs($e); + if ($l instanceof oncie_NaN) { + $p = $l; + if (oncie_Equals_rhs($e) instanceof oncie_Property) + return oncia_PrivilegeCommand_nanError($this, $p); + } + } + if (var$4) { + $l = oncie_NotEquals_lhs(var$5); + if ($l instanceof oncie_NaN) { + $p = $l; + if (oncie_NotEquals_rhs(var$5) instanceof oncie_Property) + return oncia_PrivilegeCommand_nanError($this, $p); + } + } + if (var$6) { + $l = oncie_GreaterThan_lhs(var$7); + if ($l instanceof oncie_NaN) { + $p = $l; + if (oncie_GreaterThan_rhs(var$7) instanceof oncie_Property) + return oncia_PrivilegeCommand_nanError($this, $p); + } + } + if (var$8) { + $l = oncie_GreaterThanOrEqual_lhs(var$9); + if ($l instanceof oncie_NaN) { + $p = $l; + if (oncie_GreaterThanOrEqual_rhs(var$9) instanceof oncie_Property) + return oncia_PrivilegeCommand_nanError($this, $p); + } + } + if (var$10) { + $l = oncie_LessThan_lhs(var$11); + if ($l instanceof oncie_NaN) { + $p = $l; + if (oncie_LessThan_rhs(var$11) instanceof oncie_Property) + return oncia_PrivilegeCommand_nanError($this, $p); + } + } + if (var$12) { + $l = oncie_LessThanOrEqual_lhs(var$13); + if ($l instanceof oncie_NaN) { + $p = $l; + if (oncie_LessThanOrEqual_rhs(var$13) instanceof oncie_Property) + return oncia_PrivilegeCommand_nanError($this, $p); + } + } + if (var$2) { + $p = oncie_Equals_lhs($e); + $l = oncie_Equals_rhs($e); + if ($p instanceof oncie_Property) { + $p = $p; + if ($l instanceof oncie_Null) { + $expression = $l; + $l = oncia_PrivilegeCommand$checkExpression$lambda$_74_0__init_(); + $e = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $e), $rt_s(5517)); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $l, jl_StringBuilder_toString($p), oncie_Null_position($expression), $rt_s(5518)); + } + } + } + if (var$4) { + $p = oncie_NotEquals_lhs(var$5); + $l = oncie_NotEquals_rhs(var$5); + if ($p instanceof oncie_Property) { + $p = $p; + if ($l instanceof oncie_Null) { + $expression = $l; + $l = oncia_PrivilegeCommand$checkExpression$lambda$_74_1__init_(); + $e = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $e), $rt_s(5519)); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $l, jl_StringBuilder_toString($p), oncie_Null_position($expression), $rt_s(5520)); + } + } + } + if (var$6) { + $p = oncie_GreaterThan_lhs(var$7); + $l = oncie_GreaterThan_rhs(var$7); + if ($p instanceof oncie_Property) { + $p = $p; + if ($l instanceof oncie_Null) { + $expression = $l; + $l = oncia_PrivilegeCommand$checkExpression$lambda$_74_2__init_0(); + $e = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $e), $rt_s(5521)); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $l, jl_StringBuilder_toString($p), oncie_Null_position($expression), oncia_PrivilegeCommand_propertyAlwaysNullError$default$4($this)); + } + } + } + if (var$8) { + $p = oncie_GreaterThanOrEqual_lhs(var$9); + $l = oncie_GreaterThanOrEqual_rhs(var$9); + if ($p instanceof oncie_Property) { + $p = $p; + if ($l instanceof oncie_Null) { + $expression = $l; + $l = oncia_PrivilegeCommand$checkExpression$lambda$_74_3__init_(); + $e = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $e), $rt_s(5522)); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $l, jl_StringBuilder_toString($p), oncie_Null_position($expression), oncia_PrivilegeCommand_propertyAlwaysNullError$default$4($this)); + } + } + } + if (var$10) { + $p = oncie_LessThan_lhs(var$11); + $l = oncie_LessThan_rhs(var$11); + if ($p instanceof oncie_Property) { + $p = $p; + if ($l instanceof oncie_Null) { + $expression = $l; + $l = oncia_PrivilegeCommand$checkExpression$lambda$_74_4__init_0(); + $e = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $e), $rt_s(5523)); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $l, jl_StringBuilder_toString($p), oncie_Null_position($expression), oncia_PrivilegeCommand_propertyAlwaysNullError$default$4($this)); + } + } + } + if (var$12) { + $p = oncie_LessThanOrEqual_lhs(var$13); + $l = oncie_LessThanOrEqual_rhs(var$13); + if ($p instanceof oncie_Property) { + $p = $p; + if ($l instanceof oncie_Null) { + $expression = $l; + $l = oncia_PrivilegeCommand$checkExpression$lambda$_74_5__init_0(); + $e = oncie_PropertyKeyName_name(oncie_Property_propertyKey($p)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $e), $rt_s(5524)); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $l, jl_StringBuilder_toString($p), oncie_Null_position($expression), oncia_PrivilegeCommand_propertyAlwaysNullError$default$4($this)); + } + } + } + if (var$2) { + $l = oncie_Equals_lhs($e); + $p = oncie_Equals_rhs($e); + if ($l instanceof oncie_Null) { + $l = $l; + if ($p instanceof oncie_Property) { + $expression = $p; + $e = oncia_PrivilegeCommand$checkExpression$lambda$_74_6__init_(); + $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($expression)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(5525)), $expression); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $e, jl_StringBuilder_toString($p), oncie_Null_position($l), $rt_s(5518)); + } + } + } + if (var$4) { + $l = oncie_NotEquals_lhs(var$5); + $p = oncie_NotEquals_rhs(var$5); + if ($l instanceof oncie_Null) { + $l = $l; + if ($p instanceof oncie_Property) { + $expression = $p; + $e = oncia_PrivilegeCommand$checkExpression$lambda$_74_7__init_(); + $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($expression)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(5526)), $expression); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $e, jl_StringBuilder_toString($p), oncie_Null_position($l), $rt_s(5520)); + } + } + } + if (var$6) { + $l = oncie_GreaterThan_lhs(var$7); + $p = oncie_GreaterThan_rhs(var$7); + if ($l instanceof oncie_Null) { + $l = $l; + if ($p instanceof oncie_Property) { + $expression = $p; + $e = oncia_PrivilegeCommand$checkExpression$lambda$_74_8__init_0(); + $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($expression)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(5527)), $expression); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $e, jl_StringBuilder_toString($p), oncie_Null_position($l), oncia_PrivilegeCommand_propertyAlwaysNullError$default$4($this)); + } + } + } + if (var$8) { + $l = oncie_GreaterThanOrEqual_lhs(var$9); + $p = oncie_GreaterThanOrEqual_rhs(var$9); + if ($l instanceof oncie_Null) { + $l = $l; + if ($p instanceof oncie_Property) { + $expression = $p; + $e = oncia_PrivilegeCommand$checkExpression$lambda$_74_9__init_(); + $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($expression)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(5528)), $expression); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $e, jl_StringBuilder_toString($p), oncie_Null_position($l), oncia_PrivilegeCommand_propertyAlwaysNullError$default$4($this)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher5Parser_secondaryTopology = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SecondaryTopologyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 580, 290); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3447); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 3448); - oncipv_Cypher5Parser_secondaryToken($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + if (var$10) { + $l = oncie_LessThan_lhs(var$11); + $p = oncie_LessThan_rhs(var$11); + if ($l instanceof oncie_Null) { + $l = $l; + if ($p instanceof oncie_Property) { + $expression = $p; + $e = oncia_PrivilegeCommand$checkExpression$lambda$_74_10__init_0(); + $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($expression)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(5529)), $expression); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $e, jl_StringBuilder_toString($p), oncie_Null_position($l), oncia_PrivilegeCommand_propertyAlwaysNullError$default$4($this)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher5Parser_secondaryToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SecondaryTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 582, 291); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3450); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 243 && $_la != 244) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + if (var$12) { + $l = oncie_LessThanOrEqual_lhs(var$13); + $p = oncie_LessThanOrEqual_rhs(var$13); + if ($l instanceof oncie_Null) { + $l = $l; + if ($p instanceof oncie_Property) { + $expression = $p; + $e = oncia_PrivilegeCommand$checkExpression$lambda$_74_11__init_0(); + $expression = oncie_PropertyKeyName_name(oncie_Property_propertyKey($expression)); + $p = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(5530)), $expression); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $e, jl_StringBuilder_toString($p), oncie_Null_position($l), oncia_PrivilegeCommand_propertyAlwaysNullError$default$4($this)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher5Parser_dropDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 584, 292); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3453); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 53) { - oavr_Recognizer_setState($this, 3452); - oavr_Parser_match($this, 53); - } - oavr_Recognizer_setState($this, 3455); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3456); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3459); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 3457); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 3458); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 3462); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 42 && $_la != 232)) { - oavr_Recognizer_setState($this, 3461); - oncipv_Cypher5Parser_aliasAction($this); - } - oavr_Recognizer_setState($this, 3466); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 77 && $_la != 89)) { - oavr_Recognizer_setState($this, 3464); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 77 && $_la != 89) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3465); - oavr_Parser_match($this, 64); - } - oavr_Recognizer_setState($this, 3469); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 181 && $_la != 299)) { - oavr_Recognizer_setState($this, 3468); - oncipv_Cypher5Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (var$2) { + $p = oncie_Equals_rhs($e); + if ($p instanceof oncie_Property) + return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(4116)); + } + if (var$4) { + $p = oncie_NotEquals_rhs(var$5); + if ($p instanceof oncie_Property) + return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(5531)); + } + if (var$6) { + $p = oncie_GreaterThan_rhs(var$7); + if ($p instanceof oncie_Property) + return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(604)); + } + if (var$8) { + $p = oncie_GreaterThanOrEqual_rhs(var$9); + if ($p instanceof oncie_Property) + return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(5532)); + } + if (var$10) { + $p = oncie_LessThan_rhs(var$11); + if ($p instanceof oncie_Property) + return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(603)); + } + if (var$12) { + $p = oncie_LessThanOrEqual_rhs(var$13); + if ($p instanceof oncie_Property) + return oncia_PrivilegeCommand_propertyPositionError($this, $p, $rt_s(5533)); + } + if (var$17 instanceof oncie_MapExpression) { + var$14 = 1; + var$15 = var$17; + if (sc_AbstractSeq_size(oncie_MapExpression_items(var$15)) > 1) { + ong_GqlStatusInfoCodes_$callClinit(); + $e = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA0), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA2), ong_GqlParams$StringParam_expr, oncia_PrivilegeCommand_stringifyExpression$1($expression))))); + $p = oncia_PrivilegeCommand_FAILED_PROPERTY_RULE($this); + $expression = oncia_PrivilegeCommand_stringifyExpression$1($expression); + $l = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($l, $p), $rt_s(5534)), $expression), $rt_s(5535)); + return oncia_PrivilegeCommand_error($this, $e, jl_StringBuilder_toString($l), oncie_MapExpression_position(var$15)); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher5Parser_aliasAction = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AliasActionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 586, 293); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3474); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 42: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3472); - oavr_Parser_match($this, 42); - oavr_Recognizer_setState($this, 3473); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 15 && $_la != 16) { - $this.$_errHandler.$recoverInline($this); - break e; - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - break e; - case 232: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3471); - oavr_Parser_match($this, 232); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if (var$14) { + $p = oncie_MapExpression_items(var$15); + if ($p !== null) { + s_package$_$callClinit(); + $p = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $p); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $p)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $p)); + $l = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($l, sc_SeqFactory$UnapplySeqWrapper$_get$extension($l, $p), 1)) { + $l = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + $p = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($l, sc_SeqFactory$UnapplySeqWrapper$_get$extension($l, $p), 0); + if ($p !== null) { + $pk = $p.$_1(); + $l = $p.$_2(); + if ($pk !== null && $l instanceof oncie_Null) { + $expression = $l; + $p = oncia_PrivilegeCommand$checkExpression$lambda$_74_12__init_0(); + $e = oncie_PropertyKeyName_name($pk); + $l = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append1($l, 123), $e), $rt_s(5536)); + return oncia_PrivilegeCommand_propertyAlwaysNullError($this, $p, jl_StringBuilder_toString($l), oncie_Null_position($expression), $rt_s(5537)); } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher5Parser_alterDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 588, 294); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3476); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3477); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3480); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 3478); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 3479); - oavr_Parser_match($this, 105); - } - e: { - oavr_Recognizer_setState($this, 3499); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 226: - oavr_Recognizer_setState($this, 3495); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 3492); - oavr_Parser_match($this, 226); - oavr_Recognizer_setState($this, 3493); - oavr_Parser_match($this, 189); - oavr_Recognizer_setState($this, 3494); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3497); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 226) - continue; - else - break; - } - break e; - case 250: - oavr_Recognizer_setState($this, 3488); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - f: while (true) { - g: { - oavr_Recognizer_setState($this, 3482); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 3486); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - break; - case 189: - oavr_Recognizer_setState($this, 3485); - oncipv_Cypher5Parser_alterDatabaseOption($this); - break g; - case 275: - oavr_Recognizer_setState($this, 3484); - oncipv_Cypher5Parser_alterDatabaseTopology($this); - break g; - default: - break f; - } - oavr_Recognizer_setState($this, 3483); - oncipv_Cypher5Parser_alterDatabaseAccess($this); - } - oavr_Recognizer_setState($this, 3490); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 250) - continue; - else - break e; - } - $rt_throw(oavr_NoViableAltException__init_($this)); - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - oavr_Recognizer_setState($this, 3502); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 181 && $_la != 299)) { - oavr_Recognizer_setState($this, 3501); - oncipv_Cypher5Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + if (var$2) { + $e_0 = oncie_Equals_rhs($e); + if (oncie_Equals_lhs($e) instanceof oncie_Property && $e_0 !== null) + return oncia_PrivilegeCommand_checkScalarExpression$1($this, $e_0, $expression); + } + if (var$4) { + $e = oncie_NotEquals_rhs(var$5); + if (oncie_NotEquals_lhs(var$5) instanceof oncie_Property && $e !== null) + return oncia_PrivilegeCommand_checkScalarExpression$1($this, $e, $expression); + } + if (var$17 instanceof oncie_In) { + $e = var$17; + $e_0 = oncie_In_rhs($e); + if (oncie_In_lhs($e) instanceof oncie_Property && $e_0 !== null) + return oncia_PrivilegeCommand_checkListExpression$1($this, $e_0, $expression); + } + if (var$17 instanceof oncie_Not) { + $e = oncie_Not_rhs(var$17); + if ($e instanceof oncie_In) { + $e = $e; + $e_0 = oncie_In_rhs($e); + if (oncie_In_lhs($e) instanceof oncie_Property && $e_0 !== null) + return oncia_PrivilegeCommand_checkListExpression$1($this, $e_0, $expression); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; -}, -oncipv_Cypher5Parser_alterDatabaseAccess = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterDatabaseAccessContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 590, 295); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3504); - oavr_Parser_match($this, 11); - oavr_Recognizer_setState($this, 3505); - oavr_Parser_match($this, 218); - oavr_Recognizer_setState($this, 3506); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 186 && $_la != 304) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } + if (var$17 instanceof oncie_IsNull && oncie_IsNull_lhs(var$17) instanceof oncie_Property ? 1 : var$17 instanceof oncie_IsNotNull && oncie_IsNotNull_lhs(var$17) instanceof oncie_Property ? 1 : 0) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if (var$14) { + $e = oncie_MapExpression_items(var$15); + if ($e !== null) { + s_package$_$callClinit(); + $e = sc_SeqFactory$Delegate_unapplySeq(s_package$_Seq(s_package$_MODULE$), $e); + if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $e)) { + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $e)); + $p = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + if (!sc_SeqFactory$UnapplySeqWrapper$_lengthCompare$extension($p, sc_SeqFactory$UnapplySeqWrapper$_get$extension($p, $e), 1)) { + $p = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; + $e = sc_SeqFactory$UnapplySeqWrapper$_apply$extension($p, sc_SeqFactory$UnapplySeqWrapper$_get$extension($p, $e), 0); + if ($e !== null) { + $e_0 = $e.$_2(); + if ($e.$_1() !== null && $e_0 !== null) + return oncia_PrivilegeCommand_checkScalarExpression$1($this, $e_0, $expression); } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + if (var$6) { + $e = oncie_GreaterThan_rhs(var$7); + if (oncie_GreaterThan_lhs(var$7) instanceof oncie_Property && $e !== null) + return oncia_PrivilegeCommand_checkScalarExpression$1($this, $e, $expression); + } + if (var$8) { + $e = oncie_GreaterThanOrEqual_rhs(var$9); + if (oncie_GreaterThanOrEqual_lhs(var$9) instanceof oncie_Property && $e !== null) + return oncia_PrivilegeCommand_checkScalarExpression$1($this, $e, $expression); + } + if (var$10) { + $e = oncie_LessThan_rhs(var$11); + if (oncie_LessThan_lhs(var$11) instanceof oncie_Property && $e !== null) + return oncia_PrivilegeCommand_checkScalarExpression$1($this, $e, $expression); + } + if (var$12) { + $e = oncie_LessThanOrEqual_rhs(var$13); + if (oncie_LessThanOrEqual_lhs(var$13) instanceof oncie_Property && $e !== null) + return oncia_PrivilegeCommand_checkScalarExpression$1($this, $e, $expression); + } + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + return oncia_AdministrationCommandSemanticAnalysis$_invalidPropertyBasedAccessControlRuleInvolvingNontrivialPredicatesError(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $expression.$asCanonicalStringVal(), oncia_PrivilegeCommand_unsupportedExpression$1($this, $expression), $expression.$position()); }, -oncipv_Cypher5Parser_alterDatabaseTopology = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterDatabaseTopologyContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 592, 296); +oncia_PrivilegeCommand_semanticCheck = $this => { + let $showSettingFeatureCheck, var$2, var$3, var$4; a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3508); - oavr_Parser_match($this, 275); - oavr_Recognizer_setState($this, 3511); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - e: { - oavr_Recognizer_setState($this, 3511); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 443, $this.$_ctx)) { - case 1: - break; - case 2: - oavr_Recognizer_setState($this, 3510); - oncipv_Cypher5Parser_secondaryTopology($this); - break e; - default: - break e; - } - oavr_Recognizer_setState($this, 3509); - oncipv_Cypher5Parser_primaryTopology($this); - } - oavr_Recognizer_setState($this, 3513); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 5) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } + $showSettingFeatureCheck = $this.$privilege5; + if ($showSettingFeatureCheck instanceof oncia_DbmsPrivilege) { + var$2 = $showSettingFeatureCheck.$action4; + if (jl_Object_equals(oncia_ShowSettingAction$_MODULE$, var$2)) { + $showSettingFeatureCheck = $this.$name(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(1002)), $showSettingFeatureCheck), $rt_s(4060)); + $showSettingFeatureCheck = oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, jl_AbstractStringBuilder_toString(var$2), oncias_SemanticFeature$ShowSetting$_MODULE$, $this.$position84); + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncias_SemanticCheck$_$callClinit(); + $showSettingFeatureCheck = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - return $_localctx; + if (!($this.$privilege5 instanceof oncia_LoadPrivilege)) { + var$2 = oncias_SemanticCheck_chain$($showSettingFeatureCheck, oncia_AdministrationCommand_semanticCheck$($this)); + oncias_SemanticState$_$callClinit(); + $showSettingFeatureCheck = oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); + } else { + $showSettingFeatureCheck = $this.$qualifier3; + if ($showSettingFeatureCheck instanceof sci_$colon$colon && $showSettingFeatureCheck.$head1 instanceof oncia_LoadUrlQualifier) + $showSettingFeatureCheck = oncias_SemanticAnalysisTooling_error$($this, $rt_s(5538), $this.$position84); + else { + $showSettingFeatureCheck = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + $showSettingFeatureCheck = oncias_SemanticCheck_chain$($showSettingFeatureCheck, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); + } + } + var$2 = $this.$qualifier3; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + var$4 = new oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_73_0; + var$4.$_0445 = $this; + return $showSettingFeatureCheck.$chain(sci_List_foldLeft(var$2, var$3, var$4)); }, -oncipv_Cypher5Parser_alterDatabaseOption = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterDatabaseOptionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 594, 297); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3515); - oavr_Parser_match($this, 189); - oavr_Recognizer_setState($this, 3516); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3517); - oncipv_Cypher5Parser_expression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncia_PrivilegeCommand_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_PrivilegeCommand_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_PrivilegeCommand_stringifyExpression$1 = $expression$1 => { + onciap_ExpressionStringifier$_$callClinit(); + return onciap_DefaultExpressionStringifier_apply(onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, new oncia_PrivilegeCommand$stringifyExpression$1$lambda$_82_0, 0, 0, 0, 0), $expression$1); +}, +oncia_PrivilegeCommand_unsupportedExpression$1 = ($this, $expression$1) => { + let var$2, var$3; + var$2 = $this.$FAILED_PROPERTY_RULE0; + $expression$1 = oncia_PrivilegeCommand_stringifyExpression$1($expression$1); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(5534)), $expression$1), $rt_s(5539)); + return jl_AbstractStringBuilder_toString(var$3); +}, +oncia_PrivilegeCommand_checkScalarExpression$1 = ($this, $value, $expression$1) => { + let var$3; + if ($rt_isInstance($value, oncie_Literal) ? 1 : !($value instanceof oncie_ExplicitParameter) ? 0 : 1) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($value instanceof oncie_FunctionInvocation) { + var$3 = $value; + if (sci_List_contains(sci_$colon$colon__init_($rt_s(5540), sci_$colon$colon__init_($rt_s(595), sci_$colon$colon__init_($rt_s(5541), sci_$colon$colon__init_($rt_s(5542), sci_$colon$colon__init_($rt_s(5543), sci_$colon$colon__init_($rt_s(5544), sci_$colon$colon__init_($rt_s(1249), sci_Nil$_MODULE$))))))), var$3.$functionName2.$name6)) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + return oncia_AdministrationCommandSemanticAnalysis$_invalidPropertyBasedAccessControlRuleInvolvingNontrivialPredicatesError(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $value.$asCanonicalStringVal(), oncia_PrivilegeCommand_unsupportedExpression$1($this, $expression$1), $expression$1.$position()); }, -oncipv_Cypher5Parser_startDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StartDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 596, 298); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3519); - oavr_Parser_match($this, 259); - oavr_Recognizer_setState($this, 3520); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3521); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3523); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 181 && $_la != 299)) { - oavr_Recognizer_setState($this, 3522); - oncipv_Cypher5Parser_waitClause($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncia_PrivilegeCommand_checkListExpression$1 = ($this, $value, $expression$1) => { + let var$3, var$4; + if (!($value instanceof oncie_ListLiteral)) { + if ($value instanceof oncie_ExplicitParameter) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + return oncia_AdministrationCommandSemanticAnalysis$_invalidPropertyBasedAccessControlRuleInvolvingNontrivialPredicatesError(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $value.$asCanonicalStringVal(), oncia_PrivilegeCommand_unsupportedExpression$1($this, $expression$1), $expression$1.$position()); } - return $_localctx; + var$3 = $value.$expressions0; + $value = new oncia_PrivilegeCommand$checkTypesInList$1$lambda$_87_0; + $value.$_0738 = $this; + $value.$_1248 = $expression$1; + if (var$3.$forall($value)) { + oncias_SemanticCheck$_$callClinit(); + $value = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$4 = $this.$FAILED_PROPERTY_RULE0; + $value = oncia_PrivilegeCommand_stringifyExpression$1($expression$1); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$4), $rt_s(5534)), $value), $rt_s(5545)); + $value = oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$3), $expression$1.$position()); + } + return $value; }, -oncipv_Cypher5Parser_stopDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StopDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 598, 299); +oncia_PrivilegeCommand__init_ = ($this, $privilege, $qualifier, $position) => { + $this.$privilege5 = $privilege; + $this.$qualifier3 = $qualifier; + $this.$position84 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); + $this.$FAILED_PROPERTY_RULE0 = $rt_s(2098); +}; +function oncia_GrantPrivilege() { + let a = this; oncia_PrivilegeCommand.call(a); + a.$privilege4 = null; + a.$immutable0 = 0; + a.$resource0 = null; + a.$qualifier2 = null; + a.$roleNames2 = null; + a.$position200 = null; +} +let oncia_GrantPrivilege_privilege = $this => { + return $this.$privilege4; +}, +oncia_GrantPrivilege_resource = $this => { + return $this.$resource0; +}, +oncia_GrantPrivilege_qualifier = $this => { + return $this.$qualifier2; +}, +oncia_GrantPrivilege_roleNames = $this => { + return $this.$roleNames2; +}, +oncia_GrantPrivilege_position = $this => { + return $this.$position200; +}, +oncia_GrantPrivilege_name = $this => { + let var$1, var$2, var$3; + onciap_Prettifier$_$callClinit(); + var$1 = onciap_Prettifier$_maybeImmutable(onciap_Prettifier$_MODULE$, $this.$immutable0); + var$2 = $this.$privilege4.$name38; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$1 = jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4359)), var$1); + jl_AbstractStringBuilder_append0(var$1, 32); + jl_StringBuilder_append(var$1, var$2); + return jl_AbstractStringBuilder_toString(var$3); +}, +oncia_GrantPrivilege_semanticCheck = $this => { + return oncias_SemanticCheck_chain$(oncia_PrivilegeCommand_semanticCheck($this), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$roleNames2, new oncia_GrantPrivilege$semanticCheck$lambda$_14_0)); +}, +oncia_GrantPrivilege_productPrefix = $this => { + return $rt_s(5546); +}, +oncia_GrantPrivilege_productArity = $this => { + return 5; +}, +oncia_GrantPrivilege_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$privilege4; + case 1: + return jl_Boolean_valueOf($this.$immutable0); + case 2: + return $this.$resource0; + case 3: + return $this.$qualifier2; + case 4: + return $this.$roleNames2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_GrantPrivilege_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GrantPrivilege_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5546))), sr_Statics_anyHash($this.$privilege4)), !$this.$immutable0 ? 1237 : 1231), sr_Statics_anyHash($this.$resource0)), sr_Statics_anyHash($this.$qualifier2)), sr_Statics_anyHash($this.$roleNames2)), 5); +}, +oncia_GrantPrivilege_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GrantPrivilege_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3525); - oavr_Parser_match($this, 262); - oavr_Recognizer_setState($this, 3526); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3527); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3529); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 181 && $_la != 299)) { - oavr_Recognizer_setState($this, 3528); - oncipv_Cypher5Parser_waitClause($this); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_GrantPrivilege) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$immutable0 != $x$1.$immutable0) + break b; + d: { + var$2 = $this.$privilege4; + var$3 = $x$1.$privilege4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$resource0; + var$3 = $x$1.$resource0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - } - return $_localctx; -}, -oncipv_Cypher5Parser_waitClause = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$WaitClauseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 600, 300); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3539); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 181: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3538); - oavr_Parser_match($this, 181); - break e; - case 299: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3531); - oavr_Parser_match($this, 299); - oavr_Recognizer_setState($this, 3536); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) != 5) - break e; - oavr_Recognizer_setState($this, 3532); - oavr_Parser_match($this, 5); - oavr_Recognizer_setState($this, 3534); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 241 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(19)), Long_ZERO)) - break e; - oavr_Recognizer_setState($this, 3533); - oncipv_Cypher5Parser_secondsToken($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); + f: { + var$2 = $this.$qualifier2; + var$3 = $x$1.$qualifier2; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break f; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$roleNames2; + $x$1 = $x$1.$roleNames2; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_secondsToken = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SecondsTokenContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 602, 301); +oncia_GrantPrivilege__init_0 = ($this, $privilege, $immutable, $resource, $qualifier, $roleNames, $position) => { + $this.$privilege4 = $privilege; + $this.$immutable0 = $immutable; + $this.$resource0 = $resource; + $this.$qualifier2 = $qualifier; + $this.$roleNames2 = $roleNames; + $this.$position200 = $position; + oncia_PrivilegeCommand__init_($this, $privilege, $qualifier, $position); +}, +oncia_GrantPrivilege__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_GrantPrivilege(); + oncia_GrantPrivilege__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}; +function oncia_GrantRolesToUsers() { + let a = this; jl_Object.call(a); + a.$roleNames4 = null; + a.$userNames3 = null; + a.$position250 = null; + a.$isReadOnly = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar27 = null; +} +let oncia_GrantRolesToUsers_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_GrantRolesToUsers_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_GrantRolesToUsers_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_GrantRolesToUsers_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_GrantRolesToUsers_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_GrantRolesToUsers_foldedOver = $this => { + return $this; +}, +oncia_GrantRolesToUsers_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly = $x$1; +}, +oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar27; +}, +oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar27 = $x$1; +}, +oncia_GrantRolesToUsers_roleNames = $this => { + return $this.$roleNames4; +}, +oncia_GrantRolesToUsers_userNames = $this => { + return $this.$userNames3; +}, +oncia_GrantRolesToUsers_position = $this => { + return $this.$position250; +}, +oncia_GrantRolesToUsers_name = $this => { + return $rt_s(5547); +}, +oncia_GrantRolesToUsers_semanticCheck = $this => { + let var$1; + var$1 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncia_AdministrationCommand_semanticCheck$($this), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$roleNames4, new oncia_GrantRolesToUsers$semanticCheck$lambda$_70_0)), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$userNames3, new oncia_GrantRolesToUsers$semanticCheck$lambda$_70_1)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_GrantRolesToUsers_productPrefix = $this => { + return $rt_s(5548); +}, +oncia_GrantRolesToUsers_productArity = $this => { + return 2; +}, +oncia_GrantRolesToUsers_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$roleNames4; + case 1: + return $this.$userNames3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_GrantRolesToUsers_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GrantRolesToUsers_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GrantRolesToUsers_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GrantRolesToUsers_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3541); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1) - 241 | 0; - if (!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_fromInt(19)), Long_ZERO)) { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } else - $this.$_errHandler.$recoverInline($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_GrantRolesToUsers) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$roleNames4; + var$3 = $x$1.$roleNames4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$userNames3; + $x$1 = $x$1.$userNames3; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_showDatabase = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowDatabaseContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 604, 302); +oncia_GrantRolesToUsers_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_GrantRolesToUsers_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_GrantRolesToUsers__init_0 = ($this, $roleNames, $userNames, $position) => { + $this.$roleNames4 = $roleNames; + $this.$userNames3 = $userNames; + $this.$position250 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_GrantRolesToUsers__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_GrantRolesToUsers(); + oncia_GrantRolesToUsers__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_DenyPrivilege() { + let a = this; oncia_PrivilegeCommand.call(a); + a.$privilege3 = null; + a.$immutable1 = 0; + a.$resource1 = null; + a.$qualifier1 = null; + a.$roleNames5 = null; + a.$position143 = null; +} +let oncia_DenyPrivilege_privilege = $this => { + return $this.$privilege3; +}, +oncia_DenyPrivilege_resource = $this => { + return $this.$resource1; +}, +oncia_DenyPrivilege_qualifier = $this => { + return $this.$qualifier1; +}, +oncia_DenyPrivilege_roleNames = $this => { + return $this.$roleNames5; +}, +oncia_DenyPrivilege_position = $this => { + return $this.$position143; +}, +oncia_DenyPrivilege_name = $this => { + let var$1, var$2, var$3; + onciap_Prettifier$_$callClinit(); + var$1 = onciap_Prettifier$_maybeImmutable(onciap_Prettifier$_MODULE$, $this.$immutable1); + var$2 = $this.$privilege3.$name38; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$1 = jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(4321)), var$1); + jl_AbstractStringBuilder_append0(var$1, 32); + jl_StringBuilder_append(var$1, var$2); + return jl_AbstractStringBuilder_toString(var$3); +}, +oncia_DenyPrivilege_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = $this.$privilege3; + if (var$1 instanceof oncia_GraphPrivilege) { + var$2 = var$1.$action0; + if (jl_Object_equals(oncia_MergeAdminAction$_MODULE$, var$2)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_denyMergeUnsupported(oncias_SemanticError$_MODULE$, $this.$position143); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + } + return oncia_PrivilegeCommand_semanticCheck($this); +}, +oncia_DenyPrivilege_productPrefix = $this => { + return $rt_s(5549); +}, +oncia_DenyPrivilege_productArity = $this => { + return 5; +}, +oncia_DenyPrivilege_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$privilege3; + case 1: + return jl_Boolean_valueOf($this.$immutable1); + case 2: + return $this.$resource1; + case 3: + return $this.$qualifier1; + case 4: + return $this.$roleNames5; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_DenyPrivilege_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DenyPrivilege_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5549))), sr_Statics_anyHash($this.$privilege3)), !$this.$immutable1 ? 1237 : 1231), sr_Statics_anyHash($this.$resource1)), sr_Statics_anyHash($this.$qualifier1)), sr_Statics_anyHash($this.$roleNames5)), 5); +}, +oncia_DenyPrivilege_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DenyPrivilege_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3555); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 65: - case 66: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3548); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 65 && $_la != 66) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - f: { - oavr_Recognizer_setState($this, 3550); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 451, $this.$_ctx)) { - case 1: - break; - default: - break f; - } - oavr_Recognizer_setState($this, 3549); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - } - oavr_Recognizer_setState($this, 3553); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 301 && $_la != 306) - break e; - oavr_Recognizer_setState($this, 3552); - oncipv_Cypher5Parser_showCommandYield($this); - break e; - case 71: - case 126: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3543); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 71 && $_la != 126) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - oavr_Recognizer_setState($this, 3544); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3546); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 301 && $_la != 306) - break e; - oavr_Recognizer_setState($this, 3545); - oncipv_Cypher5Parser_showCommandYield($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DenyPrivilege) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$immutable1 != $x$1.$immutable1) + break b; + d: { + var$2 = $this.$privilege3; + var$3 = $x$1.$privilege3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$resource1; + var$3 = $x$1.$resource1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + f: { + var$2 = $this.$qualifier1; + var$3 = $x$1.$qualifier1; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$roleNames5; + $x$1 = $x$1.$roleNames5; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_aliasName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AliasNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 606, 303); +oncia_DenyPrivilege__init_0 = ($this, $privilege, $immutable, $resource, $qualifier, $roleNames, $position) => { + $this.$privilege3 = $privilege; + $this.$immutable1 = $immutable; + $this.$resource1 = $resource; + $this.$qualifier1 = $qualifier; + $this.$roleNames5 = $roleNames; + $this.$position143 = $position; + oncia_PrivilegeCommand__init_($this, $privilege, $qualifier, $position); +}, +oncia_DenyPrivilege__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_DenyPrivilege(); + oncia_DenyPrivilege__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}; +function oncia_RevokeType() { + let a = this; jl_Object.call(a); + a.$name41 = null; + a.$relType2 = null; +} +let oncia_RevokeType_name = $this => { + return $this.$name41; +}, +oncia_RevokeType__init_ = ($this, $name, $relType) => { + $this.$name41 = $name; + $this.$relType2 = $relType; +}; +function oncia_RevokeDenyType() { + oncia_RevokeType.call(this); + this.$position319 = null; +} +let oncia_RevokeDenyType_productPrefix = $this => { + return $rt_s(5550); +}, +oncia_RevokeDenyType_productArity = $this => { + return 0; +}, +oncia_RevokeDenyType_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RevokeDenyType_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeDenyType_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeDenyType_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeDenyType_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_RevokeDenyType)) + return 0; + return 1; +}, +oncia_RevokeDenyType__init_0 = ($this, $position) => { + $this.$position319 = $position; + oncia_RevokeType__init_($this, $rt_s(4321), $rt_s(5551)); +}, +oncia_RevokeDenyType__init_ = var_0 => { + let var_1 = new oncia_RevokeDenyType(); + oncia_RevokeDenyType__init_0(var_1, var_0); + return var_1; +}; +function oncia_RevokePrivilege() { + let a = this; oncia_PrivilegeCommand.call(a); + a.$privilege2 = null; + a.$immutableOnly = 0; + a.$resource2 = null; + a.$qualifier0 = null; + a.$roleNames3 = null; + a.$revokeType = null; + a.$position189 = null; +} +let oncia_RevokePrivilege_privilege = $this => { + return $this.$privilege2; +}, +oncia_RevokePrivilege_resource = $this => { + return $this.$resource2; +}, +oncia_RevokePrivilege_qualifier = $this => { + return $this.$qualifier0; +}, +oncia_RevokePrivilege_roleNames = $this => { + return $this.$roleNames3; +}, +oncia_RevokePrivilege_position = $this => { + return $this.$position189; +}, +oncia_RevokePrivilege_name = $this => { + let $revokeTypeOrEmptyString, var$2, var$3, var$4; + $revokeTypeOrEmptyString = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + if (!sc_StringOps$_nonEmpty$extension($revokeTypeOrEmptyString, $this.$revokeType.$name41)) + $revokeTypeOrEmptyString = $rt_s(4); + else { + var$2 = $this.$revokeType.$name41; + $revokeTypeOrEmptyString = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($revokeTypeOrEmptyString); + jl_AbstractStringBuilder_append0($revokeTypeOrEmptyString, 32); + jl_StringBuilder_append($revokeTypeOrEmptyString, var$2); + $revokeTypeOrEmptyString = jl_AbstractStringBuilder_toString($revokeTypeOrEmptyString); + } + onciap_Prettifier$_$callClinit(); + var$2 = onciap_Prettifier$_maybeImmutable(onciap_Prettifier$_MODULE$, $this.$immutableOnly); + var$3 = $this.$privilege2.$name38; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + $revokeTypeOrEmptyString = jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(4452)), $revokeTypeOrEmptyString), var$2); + jl_AbstractStringBuilder_append0($revokeTypeOrEmptyString, 32); + jl_StringBuilder_append($revokeTypeOrEmptyString, var$3); + return jl_AbstractStringBuilder_toString(var$4); +}, +oncia_RevokePrivilege_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = s_Tuple2__init_($this.$privilege2, $this.$revokeType); + var$2 = var$1.$_10; + var$1 = var$1.$_20; + if (var$2 instanceof oncia_GraphPrivilege) { + var$3 = var$2.$action0; + if (jl_Object_equals(oncia_MergeAdminAction$_MODULE$, var$3) && var$1 instanceof oncia_RevokeDenyType) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_denyMergeUnsupported(oncias_SemanticError$_MODULE$, $this.$position189); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + } + return oncias_SemanticCheck_chain$(oncia_PrivilegeCommand_semanticCheck($this), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$roleNames3, new oncia_RevokePrivilege$semanticCheck$lambda$_15_0)); +}, +oncia_RevokePrivilege_productPrefix = $this => { + return $rt_s(5552); +}, +oncia_RevokePrivilege_productArity = $this => { + return 6; +}, +oncia_RevokePrivilege_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$privilege2; + case 1: + return jl_Boolean_valueOf($this.$immutableOnly); + case 2: + return $this.$resource2; + case 3: + return $this.$qualifier0; + case 4: + return $this.$roleNames3; + case 5: + return $this.$revokeType; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RevokePrivilege_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokePrivilege_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5552))), sr_Statics_anyHash($this.$privilege2)), !$this.$immutableOnly ? 1237 : 1231), sr_Statics_anyHash($this.$resource2)), sr_Statics_anyHash($this.$qualifier0)), sr_Statics_anyHash($this.$roleNames3)), sr_Statics_anyHash($this.$revokeType)), 6); +}, +oncia_RevokePrivilege_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokePrivilege_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3557); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RevokePrivilege) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$immutableOnly != $x$1.$immutableOnly) + break b; + d: { + var$2 = $this.$privilege2; + var$3 = $x$1.$privilege2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + e: { + var$2 = $this.$resource2; + var$3 = $x$1.$resource2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$qualifier0; + var$3 = $x$1.$qualifier0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$roleNames3; + var$3 = $x$1.$roleNames3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$revokeType; + $x$1 = $x$1.$revokeType; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_databaseName = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DatabaseNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 608, 304); +oncia_RevokePrivilege__init_0 = ($this, $privilege, $immutableOnly, $resource, $qualifier, $roleNames, $revokeType, $position) => { + $this.$privilege2 = $privilege; + $this.$immutableOnly = $immutableOnly; + $this.$resource2 = $resource; + $this.$qualifier0 = $qualifier; + $this.$roleNames3 = $roleNames; + $this.$revokeType = $revokeType; + $this.$position189 = $position; + oncia_PrivilegeCommand__init_($this, $privilege, $qualifier, $position); +}, +oncia_RevokePrivilege__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncia_RevokePrivilege(); + oncia_RevokePrivilege__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; +}; +function oncia_RevokeBothType() { + oncia_RevokeType.call(this); + this.$position324 = null; +} +let oncia_RevokeBothType_productPrefix = $this => { + return $rt_s(5553); +}, +oncia_RevokeBothType_productArity = $this => { + return 0; +}, +oncia_RevokeBothType_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RevokeBothType_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeBothType_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeBothType_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeBothType_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_RevokeBothType)) + return 0; + return 1; +}, +oncia_RevokeBothType__init_0 = ($this, $position) => { + $this.$position324 = $position; + oncia_RevokeType__init_($this, $rt_s(4), $rt_s(4)); +}, +oncia_RevokeBothType__init_ = var_0 => { + let var_1 = new oncia_RevokeBothType(); + oncia_RevokeBothType__init_0(var_1, var_0); + return var_1; +}; +function oncia_RevokeGrantType() { + oncia_RevokeType.call(this); + this.$position312 = null; +} +let oncia_RevokeGrantType_productPrefix = $this => { + return $rt_s(5554); +}, +oncia_RevokeGrantType_productArity = $this => { + return 0; +}, +oncia_RevokeGrantType_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RevokeGrantType_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeGrantType_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeGrantType_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeGrantType_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_RevokeGrantType)) + return 0; + return 1; +}, +oncia_RevokeGrantType__init_0 = ($this, $position) => { + $this.$position312 = $position; + oncia_RevokeType__init_($this, $rt_s(4359), $rt_s(5555)); +}, +oncia_RevokeGrantType__init_ = var_0 => { + let var_1 = new oncia_RevokeGrantType(); + oncia_RevokeGrantType__init_0(var_1, var_0); + return var_1; +}; +function oncia_RevokeRolesFromUsers() { + let a = this; jl_Object.call(a); + a.$roleNames6 = null; + a.$userNames2 = null; + a.$position198 = null; + a.$isReadOnly7 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar7 = null; +} +let oncia_RevokeRolesFromUsers_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_RevokeRolesFromUsers_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_RevokeRolesFromUsers_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_RevokeRolesFromUsers_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_RevokeRolesFromUsers_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_RevokeRolesFromUsers_foldedOver = $this => { + return $this; +}, +oncia_RevokeRolesFromUsers_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly7 = $x$1; +}, +oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar7; +}, +oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar7 = $x$1; +}, +oncia_RevokeRolesFromUsers_roleNames = $this => { + return $this.$roleNames6; +}, +oncia_RevokeRolesFromUsers_userNames = $this => { + return $this.$userNames2; +}, +oncia_RevokeRolesFromUsers_position = $this => { + return $this.$position198; +}, +oncia_RevokeRolesFromUsers_name = $this => { + return $rt_s(5556); +}, +oncia_RevokeRolesFromUsers_semanticCheck = $this => { + let var$1; + var$1 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncia_AdministrationCommand_semanticCheck$($this), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$roleNames6, new oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_0)), oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $this.$userNames2, new oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_1)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_RevokeRolesFromUsers_productPrefix = $this => { + return $rt_s(5557); +}, +oncia_RevokeRolesFromUsers_productArity = $this => { + return 2; +}, +oncia_RevokeRolesFromUsers_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$roleNames6; + case 1: + return $this.$userNames2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RevokeRolesFromUsers_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeRolesFromUsers_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeRolesFromUsers_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RevokeRolesFromUsers_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3559); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RevokeRolesFromUsers) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$roleNames6; + var$3 = $x$1.$roleNames6; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + var$3 = $this.$userNames2; + $x$1 = $x$1.$userNames2; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_createAlias = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CreateAliasContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 610, 305); +oncia_RevokeRolesFromUsers_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_RevokeRolesFromUsers_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_RevokeRolesFromUsers__init_0 = ($this, $roleNames, $userNames, $position) => { + $this.$roleNames6 = $roleNames; + $this.$userNames2 = $userNames; + $this.$position198 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_RevokeRolesFromUsers__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_RevokeRolesFromUsers(); + oncia_RevokeRolesFromUsers__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_EnableServer() { + let a = this; jl_Object.call(a); + a.$serverName2 = null; + a.$optionsMap0 = null; + a.$position214 = null; + a.$isReadOnly24 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar21 = null; +} +let oncia_EnableServer_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_EnableServer_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_EnableServer_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_EnableServer_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_EnableServer_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_EnableServer_foldedOver = $this => { + return $this; +}, +oncia_EnableServer_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_EnableServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly24 = $x$1; +}, +oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar21; +}, +oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar21 = $x$1; +}, +oncia_EnableServer_serverName = $this => { + return $this.$serverName2; +}, +oncia_EnableServer_optionsMap = $this => { + return $this.$optionsMap0; +}, +oncia_EnableServer_position = $this => { + return $this.$position214; +}, +oncia_EnableServer_name = $this => { + return $rt_s(5558); +}, +oncia_EnableServer_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_EnableServer_productPrefix = $this => { + return $rt_s(5559); +}, +oncia_EnableServer_productArity = $this => { + return 2; +}, +oncia_EnableServer_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$serverName2; + case 1: + return $this.$optionsMap0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_EnableServer_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_EnableServer_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_EnableServer_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_EnableServer_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3561); - oavr_Parser_match($this, 15); - oavr_Recognizer_setState($this, 3562); - oncipv_Cypher5Parser_aliasName($this); - oavr_Recognizer_setState($this, 3566); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 3563); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 3564); - oavr_Parser_match($this, 179); - oavr_Recognizer_setState($this, 3565); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 3568); - oavr_Parser_match($this, 112); - oavr_Recognizer_setState($this, 3569); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3570); - oncipv_Cypher5Parser_databaseName($this); - oavr_Recognizer_setState($this, 3581); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 28) { - oavr_Recognizer_setState($this, 3571); - oavr_Parser_match($this, 28); - oavr_Recognizer_setState($this, 3572); - oncipv_Cypher5Parser_stringOrParameter($this); - oavr_Recognizer_setState($this, 3573); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 3574); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 3575); - oavr_Parser_match($this, 193); - oavr_Recognizer_setState($this, 3576); - oncipv_Cypher5Parser_passwordExpression($this); - oavr_Recognizer_setState($this, 3579); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 86) { - oavr_Recognizer_setState($this, 3577); - oavr_Parser_match($this, 86); - oavr_Recognizer_setState($this, 3578); - oncipv_Cypher5Parser_mapOrParameter($this); - } - } - oavr_Recognizer_setState($this, 3585); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 210) { - oavr_Recognizer_setState($this, 3583); - oavr_Parser_match($this, 210); - oavr_Recognizer_setState($this, 3584); - oncipv_Cypher5Parser_mapOrParameter($this); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_EnableServer) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$serverName2; + var$3 = $x$1.$serverName2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$optionsMap0; + $x$1 = $x$1.$optionsMap0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; + } + return var$4; +}, +oncia_EnableServer_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_EnableServer_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_EnableServer__init_ = ($this, $serverName, $optionsMap, $position) => { + $this.$serverName2 = $serverName; + $this.$optionsMap0 = $optionsMap; + $this.$position214 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_EnableServer__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_EnableServer(); + oncia_EnableServer__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; +}; +function oncia_AlterServer() { + let a = this; jl_Object.call(a); + a.$serverName1 = null; + a.$optionsMap1 = null; + a.$position242 = null; + a.$isReadOnly5 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar12 = null; +} +let oncia_AlterServer_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_AlterServer_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_AlterServer_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_AlterServer_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_AlterServer_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_AlterServer_foldedOver = $this => { + return $this; +}, +oncia_AlterServer_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_AlterServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly5 = $x$1; +}, +oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar12; +}, +oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar12 = $x$1; +}, +oncia_AlterServer_serverName = $this => { + return $this.$serverName1; +}, +oncia_AlterServer_optionsMap = $this => { + return $this.$optionsMap1; +}, +oncia_AlterServer_position = $this => { + return $this.$position242; +}, +oncia_AlterServer_name = $this => { + return $rt_s(5560); +}, +oncia_AlterServer_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_AlterServer_productPrefix = $this => { + return $rt_s(5561); +}, +oncia_AlterServer_productArity = $this => { + return 2; +}, +oncia_AlterServer_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$serverName1; + case 1: + return $this.$optionsMap1; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_dropAlias = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$DropAliasContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 612, 306); +oncia_AlterServer_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AlterServer_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AlterServer_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AlterServer_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3587); - oavr_Parser_match($this, 15); - oavr_Recognizer_setState($this, 3588); - oncipv_Cypher5Parser_aliasName($this); - oavr_Recognizer_setState($this, 3591); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 3589); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 3590); - oavr_Parser_match($this, 105); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_AlterServer) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$serverName1; + var$3 = $x$1.$serverName1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - oavr_Recognizer_setState($this, 3593); - oavr_Parser_match($this, 112); - oavr_Recognizer_setState($this, 3594); - oavr_Parser_match($this, 65); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$optionsMap1; + $x$1 = $x$1.$optionsMap1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_alterAlias = $this => { - let $_localctx, $re, $_la, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterAliasContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 614, 307); +oncia_AlterServer_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_AlterServer_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_AlterServer__init_ = ($this, $serverName, $optionsMap, $position) => { + $this.$serverName1 = $serverName; + $this.$optionsMap1 = $optionsMap; + $this.$position242 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_AlterServer__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_AlterServer(); + oncia_AlterServer__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_RenameServer() { + let a = this; jl_Object.call(a); + a.$serverName3 = null; + a.$newName1 = null; + a.$position270 = null; + a.$isReadOnly32 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar23 = null; +} +let oncia_RenameServer_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_RenameServer_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_RenameServer_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_RenameServer_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_RenameServer_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_RenameServer_foldedOver = $this => { + return $this; +}, +oncia_RenameServer_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_RenameServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly32 = $x$1; +}, +oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar23; +}, +oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar23 = $x$1; +}, +oncia_RenameServer_serverName = $this => { + return $this.$serverName3; +}, +oncia_RenameServer_newName = $this => { + return $this.$newName1; +}, +oncia_RenameServer_position = $this => { + return $this.$position270; +}, +oncia_RenameServer_name = $this => { + return $rt_s(5562); +}, +oncia_RenameServer_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_RenameServer_productPrefix = $this => { + return $rt_s(5563); +}, +oncia_RenameServer_productArity = $this => { + return 2; +}, +oncia_RenameServer_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$serverName3; + case 1: + return $this.$newName1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RenameServer_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RenameServer_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RenameServer_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RenameServer_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3596); - oavr_Parser_match($this, 15); - oavr_Recognizer_setState($this, 3597); - oncipv_Cypher5Parser_aliasName($this); - oavr_Recognizer_setState($this, 3600); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 128) { - oavr_Recognizer_setState($this, 3598); - oavr_Parser_match($this, 128); - oavr_Recognizer_setState($this, 3599); - oavr_Parser_match($this, 105); - } - oavr_Recognizer_setState($this, 3602); - oavr_Parser_match($this, 250); - oavr_Recognizer_setState($this, 3603); - oavr_Parser_match($this, 65); - oavr_Recognizer_setState($this, 3609); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - e: { - try { - while (true) { - f: { - oavr_Recognizer_setState($this, 3609); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 86: - break; - case 193: - oavr_Recognizer_setState($this, 3606); - oncipv_Cypher5Parser_alterAliasPassword($this); - break f; - case 210: - oavr_Recognizer_setState($this, 3608); - oncipv_Cypher5Parser_alterAliasProperties($this); - break f; - case 266: - oavr_Recognizer_setState($this, 3604); - oncipv_Cypher5Parser_alterAliasTarget($this); - break f; - case 291: - oavr_Recognizer_setState($this, 3605); - oncipv_Cypher5Parser_alterAliasUser($this); - break f; - default: - break e; - } - oavr_Recognizer_setState($this, 3607); - oncipv_Cypher5Parser_alterAliasDriver($this); - } - oavr_Recognizer_setState($this, 3611); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la == 86) - continue; - if ($_la == 193) - continue; - if ($_la == 210) - continue; - if ($_la == 266) - continue; - if ($_la == 291) - continue; - else - break; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RenameServer) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$serverName3; + var$3 = $x$1.$serverName3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if (var$3 !== null) + break b; } - try { - $rt_throw(oavr_NoViableAltException__init_($this)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - } else{ - $_localctx = $$je; + var$3 = $this.$newName1; + $x$1 = $x$1.$newName1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_alterAliasTarget = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterAliasTargetContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 616, 308); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3613); - oavr_Parser_match($this, 266); - oavr_Recognizer_setState($this, 3614); - oncipv_Cypher5Parser_databaseName($this); - oavr_Recognizer_setState($this, 3617); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 28) { - oavr_Recognizer_setState($this, 3615); - oavr_Parser_match($this, 28); - oavr_Recognizer_setState($this, 3616); - oncipv_Cypher5Parser_stringOrParameter($this); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_RenameServer_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_RenameServer_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_RenameServer__init_ = ($this, $serverName, $newName, $position) => { + $this.$serverName3 = $serverName; + $this.$newName1 = $newName; + $this.$position270 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_RenameServer__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_RenameServer(); + oncia_RenameServer__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_DropServer() { + let a = this; jl_Object.call(a); + a.$serverName0 = null; + a.$position257 = null; + a.$isReadOnly3 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar3 = null; +} +let oncia_DropServer_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_DropServer_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_DropServer_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_DropServer_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_DropServer_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_DropServer_foldedOver = $this => { + return $this; +}, +oncia_DropServer_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_DropServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly3 = $x$1; +}, +oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar3; +}, +oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar3 = $x$1; +}, +oncia_DropServer_serverName = $this => { + return $this.$serverName0; +}, +oncia_DropServer_position = $this => { + return $this.$position257; +}, +oncia_DropServer_name = $this => { + return $rt_s(5564); +}, +oncia_DropServer_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_DropServer_productPrefix = $this => { + return $rt_s(5565); +}, +oncia_DropServer_productArity = $this => { + return 1; +}, +oncia_DropServer_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$serverName0; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_alterAliasUser = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterAliasUserContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 618, 309); +oncia_DropServer_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropServer_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropServer_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropServer_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3619); - oavr_Parser_match($this, 291); - oavr_Recognizer_setState($this, 3620); - oncipv_Cypher5Parser_commandNameExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DropServer) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$serverName0; + $x$1 = $x$1.$serverName0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_alterAliasPassword = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterAliasPasswordContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 620, 310); +oncia_DropServer_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_DropServer_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_DropServer__init_ = ($this, $serverName, $position) => { + $this.$serverName0 = $serverName; + $this.$position257 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_DropServer__init_0 = (var_0, var_1) => { + let var_2 = new oncia_DropServer(); + oncia_DropServer__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_ShowServers$ = $rt_classWithoutFields(), +oncia_ShowServers$_MODULE$ = null, +oncia_ShowServers$_$callClinit = () => { + oncia_ShowServers$_$callClinit = $rt_eraseClinit(oncia_ShowServers$); + oncia_ShowServers$__clinit_(); +}, +oncia_ShowServers$__clinit_ = () => { + let var$1; + var$1 = new oncia_ShowServers$; + oncia_ShowServers$_$callClinit(); + oncia_ShowServers$_MODULE$ = var$1; +}, +oncia_ShowServers$_apply = ($this, $yieldOrWhere, $position) => { + let var$3, $showColumns, var$5, var$6, $allShowColumns, $briefShowColumns, var$9, var$10, $allColumns; + s_package$_$callClinit(); + var$3 = s_package$_List(s_package$_MODULE$); + $showColumns = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(s_Tuple2, 14); + var$6 = var$5.data; + $allShowColumns = new s_Tuple2; + $briefShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($allShowColumns, oncia_ShowColumn$_apply($briefShowColumns, $rt_s(5566), oncia_ShowColumn$_apply$default$2($briefShowColumns), $position), jl_Boolean_valueOf(0)); + var$6[0] = $allShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5567), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(1)); + var$6[1] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5568), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(1)); + var$6[2] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5569), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(0)); + var$6[3] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5570), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(0)); + var$6[4] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5571), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(1)); + var$6[5] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5572), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(1)); + var$6[6] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + oncius_package$_$callClinit(); + var$9 = oncius_package$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5573), oncius_package$_CTList(var$9, oncius_package$_CTString(var$9)), $position), jl_Boolean_valueOf(1)); + var$6[7] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + var$10 = oncius_package$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5574), oncius_package$_CTList(var$10, oncius_package$_CTString(var$10)), $position), jl_Boolean_valueOf(0)); + var$6[8] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + var$9 = oncius_package$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5575), oncius_package$_CTList(var$9, oncius_package$_CTString(var$9)), $position), jl_Boolean_valueOf(0)); + var$6[9] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + var$9 = oncius_package$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5576), oncius_package$_CTList(var$9, oncius_package$_CTString(var$9)), $position), jl_Boolean_valueOf(0)); + var$6[10] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + var$9 = oncius_package$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5577), oncius_package$_CTList(var$9, oncius_package$_CTString(var$9)), $position), jl_Boolean_valueOf(0)); + var$6[11] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5578), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(0)); + var$6[12] = $briefShowColumns; + $briefShowColumns = new s_Tuple2; + $allShowColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($briefShowColumns, oncia_ShowColumn$_apply($allShowColumns, $rt_s(5579), oncia_ShowColumn$_apply$default$2($allShowColumns), $position), jl_Boolean_valueOf(0)); + var$6[13] = $briefShowColumns; + $showColumns = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($showColumns, var$5)); + $briefShowColumns = sci_List_map(sci_List_filter($showColumns, new oncia_ShowServers$$apply$lambda$_1_0), new oncia_ShowServers$$apply$lambda$_1_1); + $allShowColumns = sci_List_map($showColumns, new oncia_ShowServers$$apply$lambda$_1_2); + $allColumns = $yieldOrWhere instanceof s_Some && $yieldOrWhere.$value5 instanceof su_Left ? 1 : 0; + oncia_DefaultOrAllShowColumns$_$callClinit(); + return oncia_ShowServers__init_($yieldOrWhere, oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $allColumns, $briefShowColumns, $allShowColumns), $position); +}; +function oncia_DeallocateServers() { + let a = this; jl_Object.call(a); + a.$dryRun1 = 0; + a.$serverNames0 = null; + a.$position21 = null; + a.$isReadOnly34 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar33 = null; +} +let oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_DeallocateServers_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_DeallocateServers_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_DeallocateServers_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_DeallocateServers_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_DeallocateServers_foldedOver = $this => { + return $this; +}, +oncia_DeallocateServers_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_DeallocateServers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + return; +}, +oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar33; +}, +oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar33 = $x$1; +}, +oncia_DeallocateServers_dryRun = $this => { + return $this.$dryRun1; +}, +oncia_DeallocateServers_serverNames = $this => { + return $this.$serverNames0; +}, +oncia_DeallocateServers_position = $this => { + return $this.$position21; +}, +oncia_DeallocateServers_name = $this => { + return $rt_s(5580); +}, +oncia_DeallocateServers_returnColumns = $this => { + let var$1, var$2, var$3; + if (!$this.$dryRun1) { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; + } + var$1 = new sci_$colon$colon; + var$2 = new oncie_Variable; + var$3 = $this.$position21; + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$2, $rt_s(5581), var$3, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5582), $this.$position21, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5583), $this.$position21, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5584), $this.$position21, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5585), + $this.$position21, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5586), $this.$position21, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_Nil$_MODULE$)))))); + return var$1; +}, +oncia_DeallocateServers_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_DeallocateServers_productPrefix = $this => { + return $rt_s(5587); +}, +oncia_DeallocateServers_productArity = $this => { + return 2; +}, +oncia_DeallocateServers_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$dryRun1); + case 1: + return $this.$serverNames0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_DeallocateServers_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DeallocateServers_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5587))), !$this.$dryRun1 ? 1237 : 1231), sr_Statics_anyHash($this.$serverNames0)), 2); +}, +oncia_DeallocateServers_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DeallocateServers_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3622); - oavr_Parser_match($this, 193); - oavr_Recognizer_setState($this, 3623); - oncipv_Cypher5Parser_passwordExpression($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DeallocateServers) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$dryRun1 != $x$1.$dryRun1) + break b; + var$2 = $this.$serverNames0; + $x$1 = $x$1.$serverNames0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_alterAliasDriver = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterAliasDriverContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 622, 311); +oncia_DeallocateServers_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_DeallocateServers_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_DeallocateServers__init_ = ($this, $dryRun, $serverNames, $position) => { + $this.$dryRun1 = $dryRun; + $this.$serverNames0 = $serverNames; + $this.$position21 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); + $this.$isReadOnly34 = $dryRun; +}, +oncia_DeallocateServers__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_DeallocateServers(); + oncia_DeallocateServers__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_ReallocateDatabases() { + let a = this; jl_Object.call(a); + a.$dryRun0 = 0; + a.$position24 = null; + a.$isReadOnly28 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar0 = null; +} +let oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ReallocateDatabases_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_ReallocateDatabases_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ReallocateDatabases_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_ReallocateDatabases_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ReallocateDatabases_foldedOver = $this => { + return $this; +}, +oncia_ReallocateDatabases_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + return; +}, +oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar0; +}, +oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar0 = $x$1; +}, +oncia_ReallocateDatabases_dryRun = $this => { + return $this.$dryRun0; +}, +oncia_ReallocateDatabases_position = $this => { + return $this.$position24; +}, +oncia_ReallocateDatabases_name = $this => { + return $rt_s(5588); +}, +oncia_ReallocateDatabases_returnColumns = $this => { + let var$1, var$2, var$3; + if (!$this.$dryRun0) { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; + } + var$1 = new sci_$colon$colon; + var$2 = new oncie_Variable; + var$3 = $this.$position24; + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$2, $rt_s(5581), var$3, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5582), $this.$position24, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5583), $this.$position24, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5584), $this.$position24, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5585), + $this.$position24, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_$colon$colon__init_(oncie_Variable__init_0($rt_s(5586), $this.$position24, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), sci_Nil$_MODULE$)))))); + return var$1; +}, +oncia_ReallocateDatabases_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_ReallocateDatabases_productPrefix = $this => { + return $rt_s(5589); +}, +oncia_ReallocateDatabases_productArity = $this => { + return 1; +}, +oncia_ReallocateDatabases_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$dryRun0); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_ReallocateDatabases_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ReallocateDatabases_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5589))), !$this.$dryRun0 ? 1237 : 1231), 1); +}, +oncia_ReallocateDatabases_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ReallocateDatabases_equals = ($this, $x$1) => { + let var$2; a: { b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3625); - oavr_Parser_match($this, 86); - oavr_Recognizer_setState($this, 3626); - oncipv_Cypher5Parser_mapOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ReallocateDatabases) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$dryRun0 != $x$1.$dryRun0) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$2 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = 0; } - return $_localctx; + return var$2; +}, +oncia_ReallocateDatabases_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_ReallocateDatabases_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_ReallocateDatabases__init_ = ($this, $dryRun, $position) => { + $this.$dryRun0 = $dryRun; + $this.$position24 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); + $this.$isReadOnly28 = $dryRun; +}, +oncia_ReallocateDatabases__init_0 = (var_0, var_1) => { + let var_2 = new oncia_ReallocateDatabases(); + oncia_ReallocateDatabases__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_CreateRole() { + let a = this; jl_Object.call(a); + a.$roleName0 = null; + a.$immutable = 0; + a.$from17 = null; + a.$ifExistsDo1 = null; + a.$position125 = null; + a.$isReadOnly22 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar14 = null; +} +let oncia_CreateRole_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_CreateRole_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_CreateRole_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_CreateRole_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_CreateRole_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_CreateRole_foldedOver = $this => { + return $this; +}, +oncia_CreateRole_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_CreateRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly22 = $x$1; +}, +oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar14; +}, +oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar14 = $x$1; +}, +oncia_CreateRole_roleName = $this => { + return $this.$roleName0; +}, +oncia_CreateRole_from = $this => { + return $this.$from17; +}, +oncia_CreateRole_ifExistsDo = $this => { + return $this.$ifExistsDo1; +}, +oncia_CreateRole_position = $this => { + return $this.$position125; +}, +oncia_CreateRole_name = $this => { + let var$1, var$2, var$3; + var$1 = $this.$ifExistsDo1; + oncia_IfExistsReplace$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) + var$2 = 1; + else { + oncia_IfExistsInvalidSyntax$_$callClinit(); + var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; + } + if (!var$2) { + onciap_Prettifier$_$callClinit(); + var$3 = onciap_Prettifier$_maybeImmutable(onciap_Prettifier$_MODULE$, $this.$immutable); + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(4311)), var$3), $rt_s(5590)); + return jl_AbstractStringBuilder_toString(var$1); + } + onciap_Prettifier$_$callClinit(); + var$3 = onciap_Prettifier$_maybeImmutable(onciap_Prettifier$_MODULE$, $this.$immutable); + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(5591)), var$3), $rt_s(5590)); + return jl_AbstractStringBuilder_toString(var$1); +}, +oncia_CreateRole_semanticCheck = $this => { + let var$1, $name, var$3, var$4, var$5, var$6; + var$1 = $this.$ifExistsDo1; + oncia_IfExistsInvalidSyntax$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { + onciap_Prettifier$_$callClinit(); + $name = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $this.$roleName0); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$6 = var$5.data; + oncias_SemanticError$_$callClinit(); + var$6[0] = oncias_SemanticError$_bothOrReplaceAndIfNotExists(oncias_SemanticError$_MODULE$, $rt_s(1221), $name, $this.$position125); + return oncias_SemanticCheck$_error(var$3, sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); + } + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncia_AdministrationCommand$_$callClinit(); + $name = oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5592), $this.$roleName0)); + s_Option$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$($name, oncias_SemanticAnalysisTooling_semanticCheckFold$($this, s_Option$_option2Iterable(s_Option$_MODULE$, $this.$from17), new oncia_CreateRole$semanticCheck$lambda$_72_0)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_CreateRole_productPrefix = $this => { + return $rt_s(5593); }, -oncipv_Cypher5Parser_alterAliasProperties = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$AlterAliasPropertiesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 624, 312); - a: { - b: { - c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3628); - oavr_Parser_match($this, 210); - oavr_Recognizer_setState($this, 3629); - oncipv_Cypher5Parser_mapOrParameter($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_CreateRole_productArity = $this => { + return 4; +}, +oncia_CreateRole_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$roleName0; + case 1: + return jl_Boolean_valueOf($this.$immutable); + case 2: + return $this.$from17; + case 3: + return $this.$ifExistsDo1; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_showAliases = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$ShowAliasesContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 626, 313); +oncia_CreateRole_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateRole_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5593))), sr_Statics_anyHash($this.$roleName0)), !$this.$immutable ? 1237 : 1231), sr_Statics_anyHash($this.$from17)), sr_Statics_anyHash($this.$ifExistsDo1)), 4); +}, +oncia_CreateRole_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateRole_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3631); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 15 && $_la != 16) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); - } - e: { - oavr_Recognizer_setState($this, 3633); - $this.$_errHandler.$sync($this); - switch (oavra_ParserATNSimulator_adaptivePredict(oavr_Recognizer_getInterpreter($this), $this.$_input, 463, $this.$_ctx)) { - case 1: - break; - default: - break e; - } - oavr_Recognizer_setState($this, 3632); - oncipv_Cypher5Parser_aliasName($this); - } - oavr_Recognizer_setState($this, 3635); - oavr_Parser_match($this, 112); - oavr_Recognizer_setState($this, 3636); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 65 && $_la != 66) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateRole) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$immutable != $x$1.$immutable) + break b; + d: { + var$2 = $this.$roleName0; + var$3 = $x$1.$roleName0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - oavr_Recognizer_setState($this, 3638); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 301 && $_la != 306)) { - oavr_Recognizer_setState($this, 3637); - oncipv_Cypher5Parser_showCommandYield($this); + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$from17; + var$3 = $x$1.$from17; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$ifExistsDo1; + $x$1 = $x$1.$ifExistsDo1; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_symbolicNameOrStringParameter = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 628, 314); +oncia_CreateRole_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_CreateRole_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_CreateRole__init_ = ($this, $roleName, $immutable, $from, $ifExistsDo, $position) => { + $this.$roleName0 = $roleName; + $this.$immutable = $immutable; + $this.$from17 = $from; + $this.$ifExistsDo1 = $ifExistsDo; + $this.$position125 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_CreateRole__init_0 = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_CreateRole(); + oncia_CreateRole__init_(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; +}; +function oncia_DropRole() { + let a = this; jl_Object.call(a); + a.$roleName1 = null; + a.$ifExists10 = 0; + a.$position235 = null; + a.$isReadOnly2 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar15 = null; +} +let oncia_DropRole_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_DropRole_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_DropRole_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_DropRole_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_DropRole_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_DropRole_foldedOver = $this => { + return $this; +}, +oncia_DropRole_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_DropRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly2 = $x$1; +}, +oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar15; +}, +oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar15 = $x$1; +}, +oncia_DropRole_roleName = $this => { + return $this.$roleName1; +}, +oncia_DropRole_ifExists = $this => { + return $this.$ifExists10; +}, +oncia_DropRole_position = $this => { + return $this.$position235; +}, +oncia_DropRole_name = $this => { + return $rt_s(5594); +}, +oncia_DropRole_semanticCheck = $this => { + let var$1, var$2; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncia_AdministrationCommand$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5592), $this.$roleName1)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_DropRole_productPrefix = $this => { + return $rt_s(5595); +}, +oncia_DropRole_productArity = $this => { + return 2; +}, +oncia_DropRole_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$roleName1; + case 1: + return jl_Boolean_valueOf($this.$ifExists10); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_DropRole_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropRole_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5595))), sr_Statics_anyHash($this.$roleName1)), !$this.$ifExists10 ? 1237 : 1231), 2); +}, +oncia_DropRole_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropRole_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3642); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3640); - oncipv_Cypher5Parser_symbolicNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - case 80: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3641); - oncipv_Cypher5Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DropRole) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists10 != $x$1.$ifExists10) + break b; + var$2 = $this.$roleName1; + $x$1 = $x$1.$roleName1; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_commandNameExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$CommandNameExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 630, 315); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3646); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3644); - oncipv_Cypher5Parser_symbolicNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - case 80: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3645); - oncipv_Cypher5Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); +oncia_DropRole_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_DropRole_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_DropRole__init_ = ($this, $roleName, $ifExists, $position) => { + $this.$roleName1 = $roleName; + $this.$ifExists10 = $ifExists; + $this.$position235 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_DropRole__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_DropRole(); + oncia_DropRole__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_RenameRole() { + let a = this; jl_Object.call(a); + a.$fromRoleName0 = null; + a.$toRoleName0 = null; + a.$ifExists0 = 0; + a.$position245 = null; + a.$isReadOnly0 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar36 = null; +} +let oncia_RenameRole_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_RenameRole_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_RenameRole_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_RenameRole_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_RenameRole_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_RenameRole_foldedOver = $this => { + return $this; +}, +oncia_RenameRole_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_RenameRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly0 = $x$1; +}, +oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar36; +}, +oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar36 = $x$1; +}, +oncia_RenameRole_fromRoleName = $this => { + return $this.$fromRoleName0; +}, +oncia_RenameRole_toRoleName = $this => { + return $this.$toRoleName0; +}, +oncia_RenameRole_ifExists = $this => { + return $this.$ifExists0; +}, +oncia_RenameRole_position = $this => { + return $this.$position245; +}, +oncia_RenameRole_name = $this => { + return $rt_s(5596); +}, +oncia_RenameRole_semanticCheck = $this => { + let var$1, var$2; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncia_AdministrationCommand$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5597), $this.$fromRoleName0)), oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5598), $this.$toRoleName0)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_RenameRole_productPrefix = $this => { + return $rt_s(5599); +}, +oncia_RenameRole_productArity = $this => { + return 3; +}, +oncia_RenameRole_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$fromRoleName0; + case 1: + return $this.$toRoleName0; + case 2: + return jl_Boolean_valueOf($this.$ifExists0); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RenameRole_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RenameRole_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5599))), sr_Statics_anyHash($this.$fromRoleName0)), sr_Statics_anyHash($this.$toRoleName0)), !$this.$ifExists0 ? 1237 : 1231), 3); +}, +oncia_RenameRole_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RenameRole_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RenameRole) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists0 != $x$1.$ifExists0) + break b; + d: { + var$2 = $this.$fromRoleName0; + var$3 = $x$1.$fromRoleName0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$toRoleName0; + $x$1 = $x$1.$toRoleName0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_symbolicNameOrStringParameterList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 632, 316); +oncia_RenameRole_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_RenameRole_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_RenameRole__init_ = ($this, $fromRoleName, $toRoleName, $ifExists, $position) => { + $this.$fromRoleName0 = $fromRoleName; + $this.$toRoleName0 = $toRoleName; + $this.$ifExists0 = $ifExists; + $this.$position245 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_RenameRole__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_RenameRole(); + oncia_RenameRole__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +oncia_ShowRoles$ = $rt_classWithoutFields(), +oncia_ShowRoles$_MODULE$ = null, +oncia_ShowRoles$__clinit_ = () => { + oncia_ShowRoles$_MODULE$ = new oncia_ShowRoles$; +}, +oncia_ShowRoles$_apply = ($this, $withUsers, $showAll, $yieldOrWhere, $position) => { + let $allColumns, var$6, var$7, var$8, var$9, $columns, var$11; + if (!$withUsers) { + $allColumns = new sci_$colon$colon; + var$6 = new s_Tuple2; + var$7 = new oncia_ShowColumn; + var$8 = new oncie_Variable; + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$8, $rt_s(1221), $position, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + oncius_package$_$callClinit(); + oncia_ShowColumn__init_(var$7, var$8, oncius_package$_CTString(oncius_package$_MODULE$), $rt_s(1221)); + s_Tuple2__init_0(var$6, var$7, jl_Boolean_valueOf(1)); + sci_$colon$colon__init_0($allColumns, var$6, sci_$colon$colon__init_(s_Tuple2__init_(oncia_ShowColumn__init_0(oncie_Variable__init_0($rt_s(5600), $position, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), oncius_package$_CTBoolean(oncius_package$_MODULE$), $rt_s(5600)), jl_Boolean_valueOf(0)), sci_Nil$_MODULE$)); + } else { + $allColumns = new sci_$colon$colon; + var$9 = new s_Tuple2; + $columns = new oncia_ShowColumn; + var$11 = new oncie_Variable; + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$11, $rt_s(1221), $position, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + oncius_package$_$callClinit(); + oncia_ShowColumn__init_($columns, var$11, oncius_package$_CTString(oncius_package$_MODULE$), $rt_s(1221)); + s_Tuple2__init_0(var$9, $columns, jl_Boolean_valueOf(1)); + sci_$colon$colon__init_0($allColumns, var$9, sci_$colon$colon__init_(s_Tuple2__init_(oncia_ShowColumn__init_0(oncie_Variable__init_0($rt_s(5601), $position, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), oncius_package$_CTString(oncius_package$_MODULE$), $rt_s(5601)), jl_Boolean_valueOf(1)), sci_$colon$colon__init_(s_Tuple2__init_(oncia_ShowColumn__init_0(oncie_Variable__init_0($rt_s(5600), $position, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)), oncius_package$_CTBoolean(oncius_package$_MODULE$), + $rt_s(5600)), jl_Boolean_valueOf(0)), sci_Nil$_MODULE$))); + } + oncia_DefaultOrAllShowColumns$_$callClinit(); + return oncia_ShowRoles__init_($withUsers, $showAll, $yieldOrWhere, (oncia_DefaultOrAllShowColumns$_apply0(oncia_DefaultOrAllShowColumns$_MODULE$, $allColumns, $yieldOrWhere)).$columns, $position); +}, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0_apply = (var$0, var$1) => { + return var$1.$ast0; +}, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = var$2.$_1(); + var$2 = var$2.$_2(); + return (var$1.$appended(var$3)).$concat(var$2); +}, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = new oncia_PasswordChange; + var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); + oncipau_Util$_$callClinit(); + oncia_PasswordChange__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); + return var$2; +}, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3_apply = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + return var$3.$_10.$appended(var$3.$_20); +}, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4_apply = (var$0, var$1) => { + return var$1.$position(); +}; +function oncia_Auth() { + let a = this; jl_Object.call(a); + a.$provider0 = null; + a.$authAttributes0 = null; + a.$position69 = null; +} +let oncia_Auth_position = $this => { + return $this.$position69; +}, +oncia_Auth_productPrefix = $this => { + return $rt_s(5602); +}, +oncia_Auth_productArity = $this => { + return 2; +}, +oncia_Auth_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$provider0; + case 1: + return $this.$authAttributes0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Auth_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Auth_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Auth_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Auth_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Auth) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$provider0; + var$3 = $x$1.$provider0; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3648); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 3653); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 3649); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 3650); - oncipv_Cypher5Parser_commandNameExpression($this); - oavr_Recognizer_setState($this, 3655); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; + var$3 = $this.$authAttributes0; + $x$1 = $x$1.$authAttributes0; + if (var$3 !== null) { + if (!sci_List_equals(var$3, $x$1)) + break b; + else break d; - } else{ - $_localctx = $$je; - break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if (!($this instanceof oncia_Auth)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_Auth_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Auth__init_ = ($this, $provider, $authAttributes, $position) => { + $this.$provider0 = $provider; + $this.$authAttributes0 = $authAttributes; + $this.$position69 = $position; +}, +oncia_Auth__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_Auth(); + oncia_Auth__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oncia_AdministrationCommand$ = $rt_classWithoutFields(), +oncia_AdministrationCommand$_MODULE$ = null, +oncia_AdministrationCommand$_NATIVE_AUTH0 = null, +oncia_AdministrationCommand$_$callClinit = () => { + oncia_AdministrationCommand$_$callClinit = $rt_eraseClinit(oncia_AdministrationCommand$); + oncia_AdministrationCommand$__clinit_(); +}, +oncia_AdministrationCommand$__clinit_ = () => { + let var$1; + var$1 = new oncia_AdministrationCommand$; + oncia_AdministrationCommand$_$callClinit(); + oncia_AdministrationCommand$_MODULE$ = var$1; + oncia_AdministrationCommand$_NATIVE_AUTH0 = $rt_s(5603); +}, +oncia_AdministrationCommand$_NATIVE_AUTH = $this => { + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_NATIVE_AUTH0; +}, +oncia_AdministrationCommand$_checkIsStringLiteralOrParameter = ($this, $value, $expression) => { + let var$3, var$4, var$5, var$6, var$7, var$8; + if ($expression instanceof oncie_StringLiteral) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($rt_isInstance($expression, oncie_Parameter)) + a: { + b: { + var$3 = $expression.$parameterType(); + oncius_package$_$callClinit(); + var$4 = oncius_package$_CTString(oncius_package$_MODULE$); + if (var$3 !== null) { + if (!var$3.$equals(var$4)) + break a; + else + break b; } + if (var$4 !== null) + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - oncipa_AstBuildingAntlrParser_exitRule$($this); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$7 = var$6.data; + oncias_SemanticError$_$callClinit(); + var$4 = oncias_SemanticError$_MODULE$; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_StringBuilder_append(jl_StringBuilder_append(var$8, $value), $rt_s(5604)); + var$7[0] = oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$8), $expression.$position()); + return oncias_SemanticCheck$_error(var$3, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); +}, +oncia_AuthAttribute = $rt_classWithoutFields(0), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5_apply = (var$0, var$1) => { + return var$1.$ast0; +}, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6_apply = var$0 => { + return s_None$_MODULE$; +}, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7_apply = var$0 => { + return s_None$_MODULE$; +}, +oncia_UserAuth = $rt_classWithoutFields(0), +oncia_UserAuth_checkDuplicateAuth$ = $$this => { + return s_Option_getOrElse(sc_AbstractIterable_collectFirst(sc_AbstractIterable_groupBy($$this.$newStyleAuth(), new oncia_UserAuth$checkDuplicateAuth$lambda$_12_0), new oncia_UserAuth$$anonfun$checkDuplicateAuth$2), new oncia_UserAuth$checkDuplicateAuth$lambda$_12_1); +}, +oncia_UserAuth_checkOldAndNewStyleCombination$ = $$this => { + let var$2; + a: { + var$2 = sci_List_filter($$this.$newStyleAuth(), new oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0); + if (var$2 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$2); + if (var$2.$lengthCompare(1) >= 0 && s_Option_isDefined($$this.$oldStyleAuth())) { + s_Option$_$callClinit(); + $$this = $$this.$error4($rt_s(2813), (((s_Option$_option2Iterable(s_Option$_MODULE$, $$this.$oldStyleAuth())).$head()).$authAttributes0.$head()).$position()); + break a; + } + } + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - return $_localctx; + return $$this; }, -oncipv_Cypher5Parser_symbolicAliasNameList = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SymbolicAliasNameListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 634, 317); +oncia_UserAuth_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq(sci_List_map(sci_List_filter($$this.$newStyleAuth(), new oncia_UserAuth$$init$$lambda$_23_0), new oncia_UserAuth$$init$$lambda$_23_1)); + $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq(sci_List_map((sci_List_filter($$this.$newStyleAuth(), new oncia_UserAuth$$init$$lambda$_23_2)).$concat($$this.$oldStyleAuth()), new oncia_UserAuth$$init$$lambda$_23_3)); + $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq(($$this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths()).$headOption()); + $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq(($$this.$externalAuths()).$concat($$this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths())); + $$this.$org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq(s_Option_isDefined($$this.$oldStyleAuth())); +}; +function oncia_CreateUser() { + let a = this; jl_Object.call(a); + a.$userName2 = null; + a.$userOptions0 = null; + a.$ifExistsDo4 = null; + a.$newStyleAuth1 = null; + a.$oldStyleAuth1 = null; + a.$position120 = null; + a.$userAsString = null; + a.$externalAuths1 = null; + a.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths0 = null; + a.$nativeAuth = null; + a.$allAuths0 = null; + a.$useOldStyleNativeAuth0 = 0; + a.$isReadOnly11 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar24 = null; +} +let oncia_CreateUser_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_CreateUser_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_CreateUser_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_CreateUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_CreateUser_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_CreateUser_foldedOver = $this => { + return $this; +}, +oncia_CreateUser_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_CreateUser_externalAuths = $this => { + return $this.$externalAuths1; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths = $this => { + return $this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths0; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq = ($this, $x$1) => { + $this.$externalAuths1 = $x$1; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths0 = $x$1; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq = ($this, $x$1) => { + $this.$nativeAuth = $x$1; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq = ($this, $x$1) => { + $this.$allAuths0 = $x$1; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq = ($this, $x$1) => { + $this.$useOldStyleNativeAuth0 = $x$1; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly11 = $x$1; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar24; +}, +oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar24 = $x$1; +}, +oncia_CreateUser_newStyleAuth = $this => { + return $this.$newStyleAuth1; +}, +oncia_CreateUser_oldStyleAuth = $this => { + return $this.$oldStyleAuth1; +}, +oncia_CreateUser_position = $this => { + return $this.$position120; +}, +oncia_CreateUser_name = $this => { + let var$1, var$2; + var$1 = $this.$ifExistsDo4; + oncia_IfExistsReplace$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) + var$2 = 1; + else { + oncia_IfExistsInvalidSyntax$_$callClinit(); + var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; + } + if (!var$2) + return $rt_s(5605); + return $rt_s(5606); +}, +oncia_CreateUser_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = $this.$ifExistsDo4; + oncia_IfExistsInvalidSyntax$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_bothOrReplaceAndIfNotExists(oncias_SemanticError$_MODULE$, $rt_s(1242), $this.$userAsString, $this.$position120); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + if (!$this.$allAuths0.$isEmpty()) { + oncias_SemanticCheck$_$callClinit(); + var$6 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else + var$6 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(2817), $this.$position120); + var$3 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$6, oncia_UserAuth_checkDuplicateAuth$($this)), oncia_UserAuth_checkOldAndNewStyleCombination$($this)), oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, $this.$allAuths0, new oncia_CreateUser$semanticCheck$lambda$_88_0)), oncia_AdministrationCommand_semanticCheck$($this)); + oncia_AdministrationCommand$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(var$3, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5607), $this.$userName2)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_CreateUser_productPrefix = $this => { + return $rt_s(5608); +}, +oncia_CreateUser_productArity = $this => { + return 5; +}, +oncia_CreateUser_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$userName2; + case 1: + return $this.$userOptions0; + case 2: + return $this.$ifExistsDo4; + case 3: + return $this.$newStyleAuth1; + case 4: + return $this.$oldStyleAuth1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_CreateUser_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateUser_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateUser_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateUser_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3656); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3661); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 49) { - oavr_Recognizer_setState($this, 3657); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 3658); - oncipv_Cypher5Parser_symbolicAliasNameOrParameter($this); - oavr_Recognizer_setState($this, 3663); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateUser) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$userName2; + var$3 = $x$1.$userName2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$userOptions0; + var$3 = $x$1.$userOptions0; + if (var$2 !== null) { + if (!oncia_UserOptions_equals(var$2, var$3)) + break b; + else + break e; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + f: { + var$2 = $this.$ifExistsDo4; + var$3 = $x$1.$ifExistsDo4; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$newStyleAuth1; + var$3 = $x$1.$newStyleAuth1; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$oldStyleAuth1; + $x$1 = $x$1.$oldStyleAuth1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_symbolicAliasNameOrParameter = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 636, 318); +oncia_CreateUser_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_CreateUser_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_CreateUser__init_0 = ($this, $userName, $userOptions, $ifExistsDo, $newStyleAuth, $oldStyleAuth, $position) => { + $this.$userName2 = $userName; + $this.$userOptions0 = $userOptions; + $this.$ifExistsDo4 = $ifExistsDo; + $this.$newStyleAuth1 = $newStyleAuth; + $this.$oldStyleAuth1 = $oldStyleAuth; + $this.$position120 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); + oncia_UserAuth_$init$($this); + onciap_Prettifier$_$callClinit(); + $this.$userAsString = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $userName); +}, +oncia_CreateUser__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_CreateUser(); + oncia_CreateUser__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}; +function oncia_UserOptions() { + let a = this; jl_Object.call(a); + a.$suspended0 = null; + a.$homeDatabase3 = null; +} +let oncia_UserOptions_suspended = $this => { + return $this.$suspended0; +}, +oncia_UserOptions_homeDatabase = $this => { + return $this.$homeDatabase3; +}, +oncia_UserOptions_productPrefix = $this => { + return $rt_s(5609); +}, +oncia_UserOptions_productArity = $this => { + return 2; +}, +oncia_UserOptions_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$suspended0; + case 1: + return $this.$homeDatabase3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_UserOptions_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UserOptions_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UserOptions_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UserOptions_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3666); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3664); - oncipv_Cypher5Parser_symbolicAliasName($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - case 80: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3665); - oncipv_Cypher5Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UserOptions) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$suspended0; + var$3 = $x$1.$suspended0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$homeDatabase3; + $x$1 = $x$1.$homeDatabase3; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_symbolicAliasName = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SymbolicAliasNameContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 638, 319); +oncia_UserOptions__init_0 = ($this, $suspended, $homeDatabase) => { + $this.$suspended0 = $suspended; + $this.$homeDatabase3 = $homeDatabase; +}, +oncia_UserOptions__init_ = (var_0, var_1) => { + let var_2 = new oncia_UserOptions(); + oncia_UserOptions__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncia_DropUser() { + let a = this; jl_Object.call(a); + a.$userName0 = null; + a.$ifExists6 = 0; + a.$position266 = null; + a.$isReadOnly30 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar20 = null; +} +let oncia_DropUser_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_DropUser_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_DropUser_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_DropUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_DropUser_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_DropUser_foldedOver = $this => { + return $this; +}, +oncia_DropUser_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_DropUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly30 = $x$1; +}, +oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar20; +}, +oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar20 = $x$1; +}, +oncia_DropUser_userName = $this => { + return $this.$userName0; +}, +oncia_DropUser_ifExists = $this => { + return $this.$ifExists6; +}, +oncia_DropUser_position = $this => { + return $this.$position266; +}, +oncia_DropUser_name = $this => { + return $rt_s(5610); +}, +oncia_DropUser_semanticCheck = $this => { + let var$1, var$2; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncia_AdministrationCommand$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5607), $this.$userName0)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_DropUser_productPrefix = $this => { + return $rt_s(5611); +}, +oncia_DropUser_productArity = $this => { + return 2; +}, +oncia_DropUser_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$userName0; + case 1: + return jl_Boolean_valueOf($this.$ifExists6); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_DropUser_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropUser_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5611))), sr_Statics_anyHash($this.$userName0)), !$this.$ifExists6 ? 1237 : 1231), 2); +}, +oncia_DropUser_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropUser_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3668); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3673); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while ($_la == 83) { - oavr_Recognizer_setState($this, 3669); - oavr_Parser_match($this, 83); - oavr_Recognizer_setState($this, 3670); - oncipv_Cypher5Parser_symbolicNameString($this); - oavr_Recognizer_setState($this, 3675); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DropUser) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists6 != $x$1.$ifExists6) + break b; + var$2 = $this.$userName0; + $x$1 = $x$1.$userName0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_stringListLiteral = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StringListLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 640, 320); +oncia_DropUser_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_DropUser_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_DropUser__init_ = ($this, $userName, $ifExists, $position) => { + $this.$userName0 = $userName; + $this.$ifExists6 = $ifExists; + $this.$position266 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_DropUser__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_DropUser(); + oncia_DropUser__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_RenameUser() { + let a = this; jl_Object.call(a); + a.$fromUserName0 = null; + a.$toUserName0 = null; + a.$ifExists8 = 0; + a.$position203 = null; + a.$isReadOnly20 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar9 = null; +} +let oncia_RenameUser_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_RenameUser_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_RenameUser_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_RenameUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_RenameUser_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_RenameUser_foldedOver = $this => { + return $this; +}, +oncia_RenameUser_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_RenameUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly20 = $x$1; +}, +oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar9; +}, +oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar9 = $x$1; +}, +oncia_RenameUser_fromUserName = $this => { + return $this.$fromUserName0; +}, +oncia_RenameUser_toUserName = $this => { + return $this.$toUserName0; +}, +oncia_RenameUser_ifExists = $this => { + return $this.$ifExists8; +}, +oncia_RenameUser_position = $this => { + return $this.$position203; +}, +oncia_RenameUser_name = $this => { + return $rt_s(5612); +}, +oncia_RenameUser_semanticCheck = $this => { + let var$1, var$2; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncia_AdministrationCommand$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5613), $this.$fromUserName0)), oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5614), $this.$toUserName0)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_RenameUser_productPrefix = $this => { + return $rt_s(5615); +}, +oncia_RenameUser_productArity = $this => { + return 3; +}, +oncia_RenameUser_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$fromUserName0; + case 1: + return $this.$toUserName0; + case 2: + return jl_Boolean_valueOf($this.$ifExists8); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RenameUser_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RenameUser_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5615))), sr_Statics_anyHash($this.$fromUserName0)), sr_Statics_anyHash($this.$toUserName0)), !$this.$ifExists8 ? 1237 : 1231), 3); +}, +oncia_RenameUser_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RenameUser_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3676); - oavr_Parser_match($this, 146); - oavr_Recognizer_setState($this, 3685); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!($_la != 8 && $_la != 9)) { - oavr_Recognizer_setState($this, 3677); - oncipv_Cypher5Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 3682); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 49) - break e; - oavr_Recognizer_setState($this, 3678); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 3679); - oncipv_Cypher5Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 3684); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RenameUser) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists8 != $x$1.$ifExists8) + break b; + d: { + var$2 = $this.$fromUserName0; + var$3 = $x$1.$fromUserName0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - oavr_Recognizer_setState($this, 3687); - oavr_Parser_match($this, 216); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$toUserName0; + $x$1 = $x$1.$toUserName0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser_stringList = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StringListContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 642, 321); +oncia_RenameUser_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_RenameUser_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_RenameUser__init_ = ($this, $fromUserName, $toUserName, $ifExists, $position) => { + $this.$fromUserName0 = $fromUserName; + $this.$toUserName0 = $toUserName; + $this.$ifExists8 = $ifExists; + $this.$position203 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_RenameUser__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncia_RenameUser(); + oncia_RenameUser__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; +}; +function oncia_SetOwnPassword() { + let a = this; jl_Object.call(a); + a.$newPassword0 = null; + a.$currentPassword0 = null; + a.$position261 = null; + a.$isReadOnly35 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar16 = null; +} +let oncia_SetOwnPassword_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_SetOwnPassword_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_SetOwnPassword_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_SetOwnPassword_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_SetOwnPassword_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_SetOwnPassword_foldedOver = $this => { + return $this; +}, +oncia_SetOwnPassword_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly35 = $x$1; +}, +oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar16; +}, +oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar16 = $x$1; +}, +oncia_SetOwnPassword_newPassword = $this => { + return $this.$newPassword0; +}, +oncia_SetOwnPassword_currentPassword = $this => { + return $this.$currentPassword0; +}, +oncia_SetOwnPassword_position = $this => { + return $this.$position261; +}, +oncia_SetOwnPassword_name = $this => { + return $rt_s(5616); +}, +oncia_SetOwnPassword_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_SetOwnPassword_productPrefix = $this => { + return $rt_s(5617); +}, +oncia_SetOwnPassword_productArity = $this => { + return 2; +}, +oncia_SetOwnPassword_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$newPassword0; + case 1: + return $this.$currentPassword0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SetOwnPassword_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetOwnPassword_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetOwnPassword_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetOwnPassword_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3689); - oncipv_Cypher5Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 3692); - $this.$_errHandler.$sync($this); - oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - oavr_Recognizer_setState($this, 3690); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 3691); - oncipv_Cypher5Parser_stringLiteral($this); - oavr_Recognizer_setState($this, 3694); - $this.$_errHandler.$sync($this); - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == 49) - continue; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SetOwnPassword) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$newPassword0; + var$3 = $x$1.$newPassword0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; else - break; + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$currentPassword0; + $x$1 = $x$1.$currentPassword0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; + if ($x$1 !== null) + break b; } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_SetOwnPassword_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_SetOwnPassword_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_SetOwnPassword__init_ = ($this, $newPassword, $currentPassword, $position) => { + $this.$newPassword0 = $newPassword; + $this.$currentPassword0 = $currentPassword; + $this.$position261 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); +}, +oncia_SetOwnPassword__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_SetOwnPassword(); + oncia_SetOwnPassword__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0_apply0 = (var$0, var$1) => { + return var$1.$ast0; +}, +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_10 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = var$2.$_1(); + var$2 = var$2.$_2(); + return (var$1.$appended(var$3)).$concat(var$2); +}, +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_20 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = new oncia_PasswordChange; + var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); + oncipau_Util$_$callClinit(); + oncia_PasswordChange__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); + return var$2; +}, +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_30 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3_apply = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + return var$3.$_10.$appended(var$3.$_20); +}, +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_40 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4_apply = (var$0, var$1) => { + return var$1.$position(); +}, +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_50 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5_apply = var$0 => { + return s_None$_MODULE$; +}, +oncia_HomeDatabaseAction = $rt_classWithoutFields(0), +oncia_RemoveHomeDatabaseAction$ = $rt_classWithoutFields(), +oncia_RemoveHomeDatabaseAction$_MODULE$ = null, +oncia_RemoveHomeDatabaseAction$__clinit_ = () => { + oncia_RemoveHomeDatabaseAction$_MODULE$ = new oncia_RemoveHomeDatabaseAction$; +}, +oncia_RemoveHomeDatabaseAction$_productArity = $this => { + return 0; +}, +oncia_RemoveHomeDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RemoveHomeDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveHomeDatabaseAction$_hashCode = $this => { + return 1523761684; +}, +oncia_RemoveHomeDatabaseAction$_toString = $this => { + return $rt_s(5618); +}; +function oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_60() { + jl_Object.call(this); + this.$_057 = null; +} +let oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6_apply = var$0 => { + return var$0.$_057; +}; +function oncia_RemoveAuth() { + let a = this; jl_Object.call(a); + a.$all2 = 0; + a.$auths0 = null; +} +let oncia_RemoveAuth_all = $this => { + return $this.$all2; +}, +oncia_RemoveAuth_auths = $this => { + return $this.$auths0; +}, +oncia_RemoveAuth_isEmpty = $this => { + return sci_List_isEmpty($this.$auths0) && !$this.$all2 ? 1 : 0; +}, +oncia_RemoveAuth_productPrefix = $this => { + return $rt_s(5619); +}, +oncia_RemoveAuth_productArity = $this => { + return 2; +}, +oncia_RemoveAuth_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$all2); + case 1: + return $this.$auths0; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_RemoveAuth_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveAuth_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5619))), !$this.$all2 ? 1237 : 1231), sr_Statics_anyHash($this.$auths0)), 2); +}, +oncia_RemoveAuth_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveAuth_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RemoveAuth) ? 0 : 1)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + $x$1 = $x$1; + if ($this.$all2 != $x$1.$all2) + break b; + c: { + var$2 = $this.$auths0; + $x$1 = $x$1.$auths0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_RemoveAuth)) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_stringLiteral = $this => { - let $_localctx, $_la, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StringLiteralContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 644, 322); +oncia_RemoveAuth__init_0 = ($this, $all, $auths) => { + $this.$all2 = $all; + $this.$auths0 = $auths; +}, +oncia_RemoveAuth__init_ = (var_0, var_1) => { + let var_2 = new oncia_RemoveAuth(); + oncia_RemoveAuth__init_0(var_2, var_0, var_1); + return var_2; +}, +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_70 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7_apply0 = (var$0, var$1) => { + return var$1.$ast0; +}, +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_80 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8_apply0 = (var$0, var$1) => { + return var$1.$ast0; +}; +function oncia_AlterUser() { + let a = this; jl_Object.call(a); + a.$userName1 = null; + a.$userOptions = null; + a.$ifExists9 = 0; + a.$newStyleAuth0 = null; + a.$oldStyleAuth0 = null; + a.$removeAuth = null; + a.$position169 = null; + a.$externalAuths0 = null; + a.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths1 = null; + a.$nativeAuth0 = null; + a.$allAuths = null; + a.$useOldStyleNativeAuth = 0; + a.$isReadOnly27 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar28 = null; +} +let oncia_AlterUser_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_AlterUser_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); +}, +oncia_AlterUser_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_AlterUser_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); +}, +oncia_AlterUser_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_AlterUser_foldedOver = $this => { + return $this; +}, +oncia_AlterUser_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_AlterUser_externalAuths = $this => { + return $this.$externalAuths0; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths = $this => { + return $this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths1; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq = ($this, $x$1) => { + $this.$externalAuths0 = $x$1; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths1 = $x$1; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq = ($this, $x$1) => { + $this.$nativeAuth0 = $x$1; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq = ($this, $x$1) => { + $this.$allAuths = $x$1; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq = ($this, $x$1) => { + $this.$useOldStyleNativeAuth = $x$1; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly27 = $x$1; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar28; +}, +oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar28 = $x$1; +}, +oncia_AlterUser_newStyleAuth = $this => { + return $this.$newStyleAuth0; +}, +oncia_AlterUser_oldStyleAuth = $this => { + return $this.$oldStyleAuth0; +}, +oncia_AlterUser_position = $this => { + return $this.$position169; +}, +oncia_AlterUser_name = $this => { + return $rt_s(5620); +}, +oncia_AlterUser_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = $this.$userOptions; + var$2 = s_Option_isEmpty(var$1.$suspended0) && s_Option_isEmpty(var$1.$homeDatabase3) ? 1 : 0; + if (var$2 && $this.$allAuths.$isEmpty() && oncia_RemoveAuth_isEmpty($this.$removeAuth)) + var$3 = oncias_SemanticAnalysisTooling_error$($this, $rt_s(5621), $this.$position169); + else { + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$3, oncia_UserAuth_checkDuplicateAuth$($this)), oncia_UserAuth_checkOldAndNewStyleCombination$($this)), oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, $this.$allAuths, new oncia_AlterUser$semanticCheck$lambda$_90_0)), oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, + $this.$externalAuths0, new oncia_AlterUser$semanticCheck$lambda$_90_1)); + var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$5 = $this.$removeAuth.$auths0; + var$1 = new oncia_AlterUser$checkRemoveAuth$lambda$_89_0; + var$1.$_0494 = $this; + var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$4, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$5, var$1)), oncia_AdministrationCommand_semanticCheck$($this)); + oncia_AdministrationCommand$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(var$4, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5607), $this.$userName1)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); +}, +oncia_AlterUser_productPrefix = $this => { + return $rt_s(5622); +}, +oncia_AlterUser_productArity = $this => { + return 6; +}, +oncia_AlterUser_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$userName1; + case 1: + return $this.$userOptions; + case 2: + return jl_Boolean_valueOf($this.$ifExists9); + case 3: + return $this.$newStyleAuth0; + case 4: + return $this.$oldStyleAuth0; + case 5: + return $this.$removeAuth; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_AlterUser_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AlterUser_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5622))), sr_Statics_anyHash($this.$userName1)), sr_Statics_anyHash($this.$userOptions)), !$this.$ifExists9 ? 1237 : 1231), sr_Statics_anyHash($this.$newStyleAuth0)), sr_Statics_anyHash($this.$oldStyleAuth0)), sr_Statics_anyHash($this.$removeAuth)), 6); +}, +oncia_AlterUser_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AlterUser_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3696); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if ($_la != 8 && $_la != 9) - $this.$_errHandler.$recoverInline($this); - else { - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_AlterUser) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists9 != $x$1.$ifExists9) + break b; + d: { + var$2 = $this.$userName1; + var$3 = $x$1.$userName1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$userOptions; + var$3 = $x$1.$userOptions; + if (var$2 !== null) { + if (!oncia_UserOptions_equals(var$2, var$3)) + break b; + else + break e; } + if (var$3 !== null) + break b; } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + f: { + var$2 = $this.$newStyleAuth0; + var$3 = $x$1.$newStyleAuth0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$oldStyleAuth0; + var$3 = $x$1.$oldStyleAuth0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$removeAuth; + $x$1 = $x$1.$removeAuth; + if (var$3 !== null) { + if (!oncia_RemoveAuth_equals(var$3, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; + } + return var$4; +}, +oncia_AlterUser_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); +}, +oncia_AlterUser_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; +}, +oncia_AlterUser__init_0 = ($this, $userName, $userOptions, $ifExists, $newStyleAuth, $oldStyleAuth, $removeAuth, $position) => { + $this.$userName1 = $userName; + $this.$userOptions = $userOptions; + $this.$ifExists9 = $ifExists; + $this.$newStyleAuth0 = $newStyleAuth; + $this.$oldStyleAuth0 = $oldStyleAuth; + $this.$removeAuth = $removeAuth; + $this.$position169 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); + oncia_UserAuth_$init$($this); +}, +oncia_AlterUser__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncia_AlterUser(); + oncia_AlterUser__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; +}, +oncia_NativeAuthAttribute = $rt_classWithoutFields(0); +function oncia_Password() { + let a = this; jl_Object.call(a); + a.$password3 = null; + a.$isEncrypted = 0; + a.$position308 = null; + a.$name59 = null; +} +let oncia_Password_position = $this => { + return $this.$position308; +}, +oncia_Password_name = $this => { + return $this.$name59; +}, +oncia_Password_productPrefix = $this => { + return $rt_s(5623); +}, +oncia_Password_productArity = $this => { + return 2; +}, +oncia_Password_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$password3; + case 1: + return jl_Boolean_valueOf($this.$isEncrypted); + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_stringOrParameterExpression = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StringOrParameterExpressionContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 646, 323); +oncia_Password_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Password_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5623))), sr_Statics_anyHash($this.$password3)), !$this.$isEncrypted ? 1237 : 1231), 2); +}, +oncia_Password_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Password_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3700); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 8: - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3698); - oncipv_Cypher5Parser_stringLiteral($this); - break e; - case 80: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3699); - oncipv_Cypher5Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Password) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$isEncrypted != $x$1.$isEncrypted) + break b; + var$2 = $this.$password3; + $x$1 = $x$1.$password3; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_stringOrParameter = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$StringOrParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 648, 324); +oncia_Password_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_Password__init_ = ($this, $password, $isEncrypted, $position) => { + $this.$password3 = $password; + $this.$isEncrypted = $isEncrypted; + $this.$position308 = $position; + $this.$name59 = $rt_s(555); +}, +oncia_Password__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_Password(); + oncia_Password__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_PasswordChange() { + let a = this; jl_Object.call(a); + a.$requireChange = 0; + a.$position309 = null; + a.$name49 = null; +} +let oncia_PasswordChange_position = $this => { + return $this.$position309; +}, +oncia_PasswordChange_name = $this => { + return $this.$name49; +}, +oncia_PasswordChange_productPrefix = $this => { + return $rt_s(5624); +}, +oncia_PasswordChange_productArity = $this => { + return 1; +}, +oncia_PasswordChange_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$requireChange); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_PasswordChange_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_PasswordChange_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5624))), !$this.$requireChange ? 1237 : 1231), 1); +}, +oncia_PasswordChange_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_PasswordChange_equals = ($this, $x$1) => { + let var$2; a: { b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3704); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 8: - case 9: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3702); - oncipv_Cypher5Parser_stringLiteral($this); - break e; - case 80: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3703); - oncipv_Cypher5Parser_parameter($this, $rt_s(714)); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_PasswordChange) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$requireChange != $x$1.$requireChange) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$2 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$2 = 0; } - return $_localctx; + return var$2; }, -oncipv_Cypher5Parser_mapOrParameter = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$MapOrParameterContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 650, 325); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3708); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 80: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3707); - oncipv_Cypher5Parser_parameter($this, $rt_s(724)); - break e; - case 147: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3706); - oncipv_Cypher5Parser_map($this); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); +oncia_PasswordChange_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_PasswordChange__init_ = ($this, $requireChange, $position) => { + $this.$requireChange = $requireChange; + $this.$position309 = $position; + $this.$name49 = $rt_s(5625); +}, +oncia_PasswordChange__init_0 = (var_0, var_1) => { + let var_2 = new oncia_PasswordChange(); + oncia_PasswordChange__init_(var_2, var_0, var_1); + return var_2; +}, +oncipvaf_DdlBuilder$$anon$1 = $rt_classWithoutFields(oncie_ExplicitParameter); +function oncie_SensitiveStringLiteral() { + let a = this; oncie_Expression.call(a); + a.$value24 = null; + a.$position108 = null; +} +let oncie_SensitiveStringLiteral_dup = ($this, $children) => { + return oncie_SensitiveStringLiteral__init_0($children.$head(), $this.$position108); +}, +oncie_SensitiveStringLiteral_equals = ($this, $obj) => { + if (!($obj instanceof oncie_SensitiveStringLiteral)) + return 0; + return ju_Arrays_equals1($obj.$value24, $this.$value24); +}, +oncie_SensitiveStringLiteral_hashCode = $this => { + let var$1, var$2, var$3, var$4; + var$1 = $this.$value24; + if (var$1 === null) + var$2 = 0; + else { + var$2 = 1; + var$3 = 0; + while (true) { + var$4 = var$1.data; + if (var$3 >= var$4.length) + break; + var$2 = (31 * var$2 | 0) + var$4[var$3] | 0; + var$3 = var$3 + 1 | 0; } - oncipa_AstBuildingAntlrParser_exitRule$($this); } - return $_localctx; + return var$2; }, -oncipv_Cypher5Parser_map = $this => { - let $_localctx, $_la, var$3, var$4, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$MapContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 652, 326); +oncie_SensitiveStringLiteral_literalLength = $this => { + return $this.$position108.$inputLength; +}, +oncie_SensitiveStringLiteral_isConstantForQuery = $this => { + return 1; +}, +oncie_SensitiveStringLiteral_productPrefix = $this => { + return $rt_s(5626); +}, +oncie_SensitiveStringLiteral_productArity = $this => { + return 1; +}, +oncie_SensitiveStringLiteral_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$value24; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_SensitiveStringLiteral_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SensitiveStringLiteral_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_SensitiveStringLiteral_dup1 = ($this, $children) => { + return oncie_SensitiveStringLiteral_dup($this, $children); +}, +oncie_SensitiveStringLiteral_dup0 = ($this, $children) => { + return oncie_SensitiveStringLiteral_dup($this, $children); +}, +oncie_SensitiveStringLiteral_position = $this => { + return $this.$position108; +}, +oncie_SensitiveStringLiteral__init_ = ($this, $value, $position) => { + $this.$value24 = $value; + $this.$position108 = $position; + oncie_Expression__init_($this); +}, +oncie_SensitiveStringLiteral__init_0 = (var_0, var_1) => { + let var_2 = new oncie_SensitiveStringLiteral(); + oncie_SensitiveStringLiteral__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_DatabaseName = $rt_classWithoutFields(0); +function oncia_SetHomeDatabaseAction() { + jl_Object.call(this); + this.$name25 = null; +} +let oncia_SetHomeDatabaseAction_productPrefix = $this => { + return $rt_s(5627); +}, +oncia_SetHomeDatabaseAction_productArity = $this => { + return 1; +}, +oncia_SetHomeDatabaseAction_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name25; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SetHomeDatabaseAction_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetHomeDatabaseAction_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetHomeDatabaseAction_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetHomeDatabaseAction_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3710); - oavr_Parser_match($this, 147); - oavr_Recognizer_setState($this, 3724); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221224448, 4294737919)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4290969599, 4022337519)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4294967265)), Long_ZERO))) { - var$4 = $_la - 192 | 0; - if (!(!(var$4 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$4), Long_create(3166697087, 4286545919)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if ($_la & (-64)) - break e; - if (Long_eq(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4294934527, 4194303)), Long_ZERO)) - break e; - } - } - } - } - oavr_Recognizer_setState($this, 3711); - oncipv_Cypher5Parser_propertyKeyName($this); - oavr_Recognizer_setState($this, 3712); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 3713); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 3721); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - while (true) { - if ($_la != 49) - break e; - oavr_Recognizer_setState($this, 3714); - oavr_Parser_match($this, 49); - oavr_Recognizer_setState($this, 3715); - oncipv_Cypher5Parser_propertyKeyName($this); - oavr_Recognizer_setState($this, 3716); - oavr_Parser_match($this, 47); - oavr_Recognizer_setState($this, 3717); - oncipv_Cypher5Parser_expression($this); - oavr_Recognizer_setState($this, 3723); - $this.$_errHandler.$sync($this); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - } - } - oavr_Recognizer_setState($this, 3726); - oavr_Parser_match($this, 217); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SetHomeDatabaseAction) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$name25; + $x$1 = $x$1.$name25; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_symbolicNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SymbolicNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 654, 327); +oncia_SetHomeDatabaseAction__init_0 = ($this, $name) => { + $this.$name25 = $name; +}, +oncia_SetHomeDatabaseAction__init_ = var_0 => { + let var_1 = new oncia_SetHomeDatabaseAction(); + oncia_SetHomeDatabaseAction__init_0(var_1, var_0); + return var_1; +}, +oncia_ExternalAuthAttribute = $rt_classWithoutFields(0); +function oncia_AuthId() { + let a = this; jl_Object.call(a); + a.$id1 = null; + a.$position280 = null; + a.$name50 = null; +} +let oncia_AuthId_position = $this => { + return $this.$position280; +}, +oncia_AuthId_name = $this => { + return $this.$name50; +}, +oncia_AuthId_productPrefix = $this => { + return $rt_s(5628); +}, +oncia_AuthId_productArity = $this => { + return 1; +}, +oncia_AuthId_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$id1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_AuthId_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AuthId_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AuthId_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AuthId_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3730); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3728); - oncipv_Cypher5Parser_escapedSymbolicNameString($this); - break e; - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 168: - case 169: - case 170: - case 171: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 178: - case 179: - case 180: - case 181: - case 182: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 283: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3729); - oncipv_Cypher5Parser_unescapedSymbolicNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_AuthId) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$id1; + $x$1 = $x$1.$id1; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; + } + return var$3; +}, +oncia_AuthId_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_AuthId__init_ = ($this, $id, $position) => { + $this.$id1 = $id; + $this.$position280 = $position; + $this.$name50 = $rt_s(5629); +}, +oncia_AuthId__init_0 = (var_0, var_1) => { + let var_2 = new oncia_AuthId(); + oncia_AuthId__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_ShowUsers$ = $rt_classWithoutFields(), +oncia_ShowUsers$_MODULE$ = null, +oncia_ShowUsers$__clinit_ = () => { + oncia_ShowUsers$_MODULE$ = new oncia_ShowUsers$; +}, +oncia_ShowUsers$_apply = ($this, $yieldOrWhere, $withAuth, $position) => { + let $columns, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15; + $columns = new sci_$colon$colon; + var$5 = oncia_ShowColumn$_MODULE$; + var$6 = oncia_ShowColumn$_apply(var$5, $rt_s(1242), oncia_ShowColumn$_apply$default$2(var$5), $position); + var$7 = new sci_$colon$colon; + var$8 = oncia_ShowColumn$_MODULE$; + oncius_package$_$callClinit(); + var$5 = oncius_package$_MODULE$; + var$8 = oncia_ShowColumn$_apply(var$8, $rt_s(5630), oncius_package$_CTList(var$5, oncius_package$_CTString(var$5)), $position); + var$9 = new sci_$colon$colon; + var$10 = oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(4812), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position); + var$11 = new sci_$colon$colon; + var$12 = oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(5631), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position); + var$13 = new sci_$colon$colon; + var$14 = oncia_ShowColumn$_MODULE$; + sci_$colon$colon__init_0(var$13, oncia_ShowColumn$_apply(var$14, $rt_s(5632), oncia_ShowColumn$_apply$default$2(var$14), $position), sci_Nil$_MODULE$); + sci_$colon$colon__init_0(var$11, var$12, var$13); + sci_$colon$colon__init_0(var$9, var$10, var$11); + sci_$colon$colon__init_0(var$7, var$8, var$9); + sci_$colon$colon__init_0($columns, var$6, var$7); + if ($withAuth) { + var$15 = new sci_$colon$colon; + var$5 = oncia_ShowColumn$_MODULE$; + sci_$colon$colon__init_0(var$15, oncia_ShowColumn$_apply(var$5, $rt_s(5633), oncia_ShowColumn$_apply$default$2(var$5), $position), sci_$colon$colon__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(1143), oncius_package$_CTMap(oncius_package$_MODULE$), $position), sci_Nil$_MODULE$)); + $columns = $columns.$concat(var$15); + } + return oncia_ShowUsers__init_($yieldOrWhere, $withAuth, $columns, $position); +}, +oncia_ShowCurrentUser$ = $rt_classWithoutFields(), +oncia_ShowCurrentUser$_MODULE$ = null, +oncia_ShowCurrentUser$__clinit_ = () => { + oncia_ShowCurrentUser$_MODULE$ = new oncia_ShowCurrentUser$; +}, +oncia_ShowCurrentUser$_apply = ($this, $yieldOrWhere, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; + var$3 = new oncia_ShowCurrentUser; + var$4 = new sci_$colon$colon; + var$5 = oncia_ShowColumn$_MODULE$; + var$6 = oncia_ShowColumn$_apply(var$5, $rt_s(1242), oncia_ShowColumn$_apply$default$2(var$5), $position); + var$7 = new sci_$colon$colon; + var$8 = oncia_ShowColumn$_MODULE$; + oncius_package$_$callClinit(); + var$5 = oncius_package$_MODULE$; + var$9 = oncia_ShowColumn$_apply(var$8, $rt_s(5630), oncius_package$_CTList(var$5, oncius_package$_CTString(var$5)), $position); + var$10 = new sci_$colon$colon; + var$11 = oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(4812), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position); + var$12 = new sci_$colon$colon; + var$13 = oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(5631), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position); + var$5 = new sci_$colon$colon; + var$8 = oncia_ShowColumn$_MODULE$; + sci_$colon$colon__init_0(var$5, oncia_ShowColumn$_apply(var$8, $rt_s(5632), oncia_ShowColumn$_apply$default$2(var$8), $position), sci_Nil$_MODULE$); + sci_$colon$colon__init_0(var$12, var$13, var$5); + sci_$colon$colon__init_0(var$10, var$11, var$12); + sci_$colon$colon__init_0(var$7, var$9, var$10); + sci_$colon$colon__init_0(var$4, var$6, var$7); + oncia_ShowCurrentUser__init_(var$3, $yieldOrWhere, var$4, $position); + return var$3; +}, +oncia_ShowSupportedPrivilegeCommand$ = $rt_classWithoutFields(), +oncia_ShowSupportedPrivilegeCommand$_MODULE$ = null, +oncia_ShowSupportedPrivilegeCommand$_ACTION = null, +oncia_ShowSupportedPrivilegeCommand$_QUALIFIER = null, +oncia_ShowSupportedPrivilegeCommand$_TARGET = null, +oncia_ShowSupportedPrivilegeCommand$_SCOPE = null, +oncia_ShowSupportedPrivilegeCommand$_DESCRIPTION = null, +oncia_ShowSupportedPrivilegeCommand$__clinit_ = () => { + oncia_ShowSupportedPrivilegeCommand$_MODULE$ = new oncia_ShowSupportedPrivilegeCommand$; + oncia_ShowSupportedPrivilegeCommand$_ACTION = $rt_s(1137); + oncia_ShowSupportedPrivilegeCommand$_QUALIFIER = $rt_s(5634); + oncia_ShowSupportedPrivilegeCommand$_TARGET = $rt_s(5635); + oncia_ShowSupportedPrivilegeCommand$_SCOPE = $rt_s(5636); + oncia_ShowSupportedPrivilegeCommand$_DESCRIPTION = $rt_s(5637); +}, +oncia_ShowSupportedPrivilegeCommand$_apply = ($this, $yieldOrWhere, $position) => { + let $columns, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; + $columns = new sci_$colon$colon; + var$4 = oncia_ShowColumn$_MODULE$; + var$5 = oncia_ShowColumn$_apply(var$4, oncia_ShowSupportedPrivilegeCommand$_ACTION, oncia_ShowColumn$_apply$default$2(var$4), $position); + var$6 = new sci_$colon$colon; + var$4 = oncia_ShowColumn$_MODULE$; + var$4 = oncia_ShowColumn$_apply(var$4, oncia_ShowSupportedPrivilegeCommand$_QUALIFIER, oncia_ShowColumn$_apply$default$2(var$4), $position); + var$7 = new sci_$colon$colon; + var$8 = oncia_ShowColumn$_MODULE$; + var$8 = oncia_ShowColumn$_apply(var$8, oncia_ShowSupportedPrivilegeCommand$_TARGET, oncia_ShowColumn$_apply$default$2(var$8), $position); + var$9 = new sci_$colon$colon; + var$10 = oncia_ShowColumn$_MODULE$; + var$11 = oncia_ShowSupportedPrivilegeCommand$_SCOPE; + oncius_package$_$callClinit(); + var$12 = oncius_package$_MODULE$; + var$10 = oncia_ShowColumn$_apply(var$10, var$11, oncius_package$_CTList(var$12, oncius_package$_CTString(var$12)), $position); + var$13 = new sci_$colon$colon; + var$11 = oncia_ShowColumn$_MODULE$; + sci_$colon$colon__init_0(var$13, oncia_ShowColumn$_apply(var$11, oncia_ShowSupportedPrivilegeCommand$_DESCRIPTION, oncia_ShowColumn$_apply$default$2(var$11), $position), sci_Nil$_MODULE$); + sci_$colon$colon__init_0(var$9, var$10, var$13); + sci_$colon$colon__init_0(var$7, var$8, var$9); + sci_$colon$colon__init_0(var$6, var$4, var$7); + sci_$colon$colon__init_0($columns, var$5, var$6); + return oncia_ShowSupportedPrivilegeCommand__init_($yieldOrWhere, $columns, $position); +}, +oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0_apply = var$0 => { + return s_Tuple2$mcZZ$sp__init_(0, 0); +}; +function s_Tuple2$mcZZ$sp() { + let a = this; s_Tuple2.call(a); + a.$_1$mcZ$sp0 = 0; + a.$_2$mcZ$sp0 = 0; +} +let s_Tuple2$mcZZ$sp__1$mcZ$sp = $this => { + return $this.$_1$mcZ$sp0; +}, +s_Tuple2$mcZZ$sp__2$mcZ$sp = $this => { + return $this.$_2$mcZ$sp0; +}, +s_Tuple2$mcZZ$sp__2 = $this => { + return jl_Boolean_valueOf($this.$_2$mcZ$sp0); +}, +s_Tuple2$mcZZ$sp__1 = $this => { + return jl_Boolean_valueOf($this.$_1$mcZ$sp0); +}, +s_Tuple2$mcZZ$sp__init_0 = ($this, $_1$mcZ$sp, $_2$mcZ$sp) => { + $this.$_1$mcZ$sp0 = $_1$mcZ$sp; + $this.$_2$mcZ$sp0 = $_2$mcZ$sp; + s_Tuple2__init_0($this, null, null); +}, +s_Tuple2$mcZZ$sp__init_ = (var_0, var_1) => { + let var_2 = new s_Tuple2$mcZZ$sp(); + s_Tuple2$mcZZ$sp__init_0(var_2, var_0, var_1); + return var_2; +}, +oncia_ShowPrivileges$ = $rt_classWithoutFields(), +oncia_ShowPrivileges$_MODULE$ = null, +oncia_ShowPrivileges$__clinit_ = () => { + oncia_ShowPrivileges$_MODULE$ = new oncia_ShowPrivileges$; +}, +oncia_ShowPrivileges$_apply = ($this, $scope, $yieldOrWhere, $position) => { + let var$4, var$5, var$6, var$7, $columns, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19; + var$4 = new sci_$colon$colon; + var$5 = oncia_ShowColumn$_MODULE$; + var$6 = oncia_ShowColumn$_apply(var$5, $rt_s(5638), oncia_ShowColumn$_apply$default$2(var$5), $position); + var$7 = new sci_$colon$colon; + $columns = oncia_ShowColumn$_MODULE$; + var$9 = oncia_ShowColumn$_apply($columns, $rt_s(1137), oncia_ShowColumn$_apply$default$2($columns), $position); + var$10 = new sci_$colon$colon; + $columns = oncia_ShowColumn$_MODULE$; + var$11 = oncia_ShowColumn$_apply($columns, $rt_s(5639), oncia_ShowColumn$_apply$default$2($columns), $position); + var$12 = new sci_$colon$colon; + var$5 = oncia_ShowColumn$_MODULE$; + var$13 = oncia_ShowColumn$_apply(var$5, $rt_s(1174), oncia_ShowColumn$_apply$default$2(var$5), $position); + var$14 = new sci_$colon$colon; + var$5 = oncia_ShowColumn$_MODULE$; + var$15 = oncia_ShowColumn$_apply(var$5, $rt_s(5640), oncia_ShowColumn$_apply$default$2(var$5), $position); + var$16 = new sci_$colon$colon; + var$5 = oncia_ShowColumn$_MODULE$; + var$17 = oncia_ShowColumn$_apply(var$5, $rt_s(1221), oncia_ShowColumn$_apply$default$2(var$5), $position); + var$18 = new sci_$colon$colon; + var$19 = oncia_ShowColumn$_MODULE$; + oncius_package$_$callClinit(); + sci_$colon$colon__init_0(var$18, oncia_ShowColumn$_apply(var$19, $rt_s(5600), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), sci_Nil$_MODULE$); + sci_$colon$colon__init_0(var$16, var$17, var$18); + sci_$colon$colon__init_0(var$14, var$15, var$16); + sci_$colon$colon__init_0(var$12, var$13, var$14); + sci_$colon$colon__init_0(var$10, var$11, var$12); + sci_$colon$colon__init_0(var$7, var$9, var$10); + sci_$colon$colon__init_0(var$4, var$6, var$7); + if (!($scope instanceof oncia_ShowUserPrivileges ? 1 : !($scope instanceof oncia_ShowUsersPrivileges) ? 0 : 1)) { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + $columns = sci_Nil$_MODULE$; + } else { + $columns = new sci_$colon$colon; + var$5 = oncia_ShowColumn$_MODULE$; + sci_$colon$colon__init_0($columns, oncia_ShowColumn$_apply(var$5, $rt_s(1242), oncia_ShowColumn$_apply$default$2(var$5), $position), sci_Nil$_MODULE$); + } + return oncia_ShowPrivileges__init_($scope, $yieldOrWhere, var$4.$concat($columns), $position); +}; +function oncia_ShowAllPrivileges() { + jl_Object.call(this); + this.$position334 = null; +} +let oncia_ShowAllPrivileges_productPrefix = $this => { + return $rt_s(5641); +}, +oncia_ShowAllPrivileges_productArity = $this => { + return 0; +}, +oncia_ShowAllPrivileges_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ShowAllPrivileges_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowAllPrivileges_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowAllPrivileges_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowAllPrivileges_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_ShowAllPrivileges)) + return 0; + return 1; +}, +oncia_ShowAllPrivileges_dup = ($this, $children) => { + return $this; +}, +oncia_ShowAllPrivileges__init_0 = ($this, $position) => { + $this.$position334 = $position; +}, +oncia_ShowAllPrivileges__init_ = var_0 => { + let var_1 = new oncia_ShowAllPrivileges(); + oncia_ShowAllPrivileges__init_0(var_1, var_0); + return var_1; +}, +oncia_ShowPrivilegeCommands$ = $rt_classWithoutFields(), +oncia_ShowPrivilegeCommands$_MODULE$ = null, +oncia_ShowPrivilegeCommands$__clinit_ = () => { + oncia_ShowPrivilegeCommands$_MODULE$ = new oncia_ShowPrivilegeCommands$; +}, +oncia_ShowPrivilegeCommands$_apply = ($this, $scope, $asRevoke, $yieldOrWhere, $position) => { + let $allColumns, var$6, var$7, var$8, var$9; + $allColumns = new sci_$colon$colon; + var$6 = new s_Tuple2; + var$7 = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0(var$6, oncia_ShowColumn$_apply(var$7, $rt_s(4734), oncia_ShowColumn$_apply$default$2(var$7), $position), jl_Boolean_valueOf(1)); + var$7 = new sci_$colon$colon; + var$8 = new s_Tuple2; + var$9 = oncia_ShowColumn$_MODULE$; + oncius_package$_$callClinit(); + s_Tuple2__init_0(var$8, oncia_ShowColumn$_apply(var$9, $rt_s(5600), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), jl_Boolean_valueOf(0)); + sci_$colon$colon__init_0(var$7, var$8, sci_Nil$_MODULE$); + sci_$colon$colon__init_0($allColumns, var$6, var$7); + oncia_DefaultOrAllShowColumns$_$callClinit(); + return oncia_ShowPrivilegeCommands__init_($scope, $asRevoke, $yieldOrWhere, (oncia_DefaultOrAllShowColumns$_apply0(oncia_DefaultOrAllShowColumns$_MODULE$, $allColumns, $yieldOrWhere)).$columns, $position); +}, +oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0_apply = var$0 => { + return s_Tuple2$mcZZ$sp__init_(0, 0); +}; +function oncia_ShowRolesPrivileges() { + let a = this; jl_Object.call(a); + a.$roles = null; + a.$position224 = null; +} +let oncia_ShowRolesPrivileges_productPrefix = $this => { + return $rt_s(5642); +}, +oncia_ShowRolesPrivileges_productArity = $this => { + return 1; +}, +oncia_ShowRolesPrivileges_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$roles; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_escapedSymbolicNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$EscapedSymbolicNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 656, 328); +oncia_ShowRolesPrivileges_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowRolesPrivileges_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowRolesPrivileges_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowRolesPrivileges_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3732); - oavr_Parser_match($this, 10); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowRolesPrivileges) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$roles; + $x$1 = $x$1.$roles; + if (var$2 !== null) { + if (!sci_List_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; }, -oncipv_Cypher5Parser_unescapedSymbolicNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 658, 329); - a: { - b: { - c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3743); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3734); - oncipv_Cypher5Parser_unescapedLabelSymbolicNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - break; - case 168: - oavr_Parser_enterOuterAlt($this, $_localctx, 6); - oavr_Recognizer_setState($this, 3739); - oavr_Parser_match($this, 168); - break e; - case 169: - oavr_Parser_enterOuterAlt($this, $_localctx, 7); - oavr_Recognizer_setState($this, 3740); - oavr_Parser_match($this, 169); - break e; - case 170: - oavr_Parser_enterOuterAlt($this, $_localctx, 8); - oavr_Recognizer_setState($this, 3741); - oavr_Parser_match($this, 170); - break e; - case 171: - oavr_Parser_enterOuterAlt($this, $_localctx, 9); - oavr_Recognizer_setState($this, 3742); - oavr_Parser_match($this, 171); - break e; - case 178: - oavr_Parser_enterOuterAlt($this, $_localctx, 5); - oavr_Recognizer_setState($this, 3738); - oavr_Parser_match($this, 178); - break e; - case 179: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3735); - oavr_Parser_match($this, 179); - break e; - case 182: - oavr_Parser_enterOuterAlt($this, $_localctx, 3); - oavr_Recognizer_setState($this, 3736); - oavr_Parser_match($this, 182); - break e; - case 283: - oavr_Parser_enterOuterAlt($this, $_localctx, 4); - oavr_Recognizer_setState($this, 3737); - oavr_Parser_match($this, 283); - break e; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; - break c; - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - - } - } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); - } - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_ShowRolesPrivileges_dup = ($this, $children) => { + return oncia_ShowRolesPrivileges__init_($children.$head(), $this.$position224); +}, +oncia_ShowRolesPrivileges__init_0 = ($this, $roles, $position) => { + $this.$roles = $roles; + $this.$position224 = $position; +}, +oncia_ShowRolesPrivileges__init_ = (var_0, var_1) => { + let var_2 = new oncia_ShowRolesPrivileges(); + oncia_ShowRolesPrivileges__init_0(var_2, var_0, var_1); + return var_2; +}, +oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0_apply = var$0 => { + return s_Tuple2$mcZZ$sp__init_(0, 0); +}; +function oncia_ShowUserPrivileges() { + let a = this; jl_Object.call(a); + a.$user = null; + a.$position258 = null; +} +let oncia_ShowUserPrivileges_productPrefix = $this => { + return $rt_s(5643); +}, +oncia_ShowUserPrivileges_productArity = $this => { + return 1; +}, +oncia_ShowUserPrivileges_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$user; + default: } - return $_localctx; + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_symbolicLabelNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$SymbolicLabelNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 660, 330); +oncia_ShowUserPrivileges_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowUserPrivileges_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowUserPrivileges_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowUserPrivileges_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - e: { - oavr_Recognizer_setState($this, 3747); - $this.$_errHandler.$sync($this); - switch (oavr_BufferedTokenStream_LA($this.$_input, 1)) { - case 10: - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3745); - oncipv_Cypher5Parser_escapedSymbolicNameString($this); - break e; - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - case 20: - case 21: - case 22: - case 23: - case 24: - case 25: - case 26: - case 27: - case 28: - case 29: - case 31: - case 32: - case 33: - case 34: - case 35: - case 36: - case 37: - case 38: - case 39: - case 40: - case 41: - case 42: - case 43: - case 44: - case 45: - case 46: - case 50: - case 51: - case 52: - case 53: - case 54: - case 55: - case 56: - case 57: - case 58: - case 59: - case 60: - case 61: - case 62: - case 63: - case 64: - case 65: - case 66: - case 67: - case 68: - case 69: - case 70: - case 71: - case 72: - case 73: - case 74: - case 75: - case 76: - case 77: - case 78: - case 79: - case 81: - case 86: - case 87: - case 88: - case 89: - case 90: - case 91: - case 92: - case 93: - case 94: - case 95: - case 96: - case 97: - case 98: - case 99: - case 101: - case 102: - case 103: - case 104: - case 105: - case 106: - case 107: - case 108: - case 109: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 119: - case 120: - case 121: - case 122: - case 123: - case 125: - case 126: - case 127: - case 128: - case 129: - case 130: - case 131: - case 132: - case 133: - case 134: - case 135: - case 136: - case 137: - case 138: - case 139: - case 140: - case 141: - case 142: - case 143: - case 149: - case 150: - case 151: - case 152: - case 153: - case 154: - case 157: - case 158: - case 159: - case 160: - case 165: - case 166: - case 167: - case 172: - case 173: - case 174: - case 175: - case 176: - case 177: - case 180: - case 181: - case 183: - case 184: - case 185: - case 186: - case 187: - case 188: - case 189: - case 190: - case 191: - case 192: - case 193: - case 194: - case 195: - case 196: - case 197: - case 198: - case 201: - case 202: - case 204: - case 205: - case 206: - case 207: - case 208: - case 209: - case 210: - case 211: - case 212: - case 213: - case 215: - case 218: - case 219: - case 220: - case 221: - case 223: - case 224: - case 225: - case 226: - case 227: - case 228: - case 229: - case 230: - case 231: - case 232: - case 233: - case 234: - case 235: - case 236: - case 237: - case 238: - case 240: - case 241: - case 242: - case 243: - case 244: - case 245: - case 246: - case 248: - case 249: - case 250: - case 251: - case 252: - case 253: - case 254: - case 255: - case 256: - case 257: - case 258: - case 259: - case 260: - case 261: - case 262: - case 263: - case 264: - case 265: - case 266: - case 267: - case 268: - case 269: - case 270: - case 272: - case 273: - case 274: - case 275: - case 276: - case 277: - case 278: - case 279: - case 280: - case 281: - case 282: - case 284: - case 285: - case 286: - case 287: - case 288: - case 289: - case 290: - case 291: - case 292: - case 293: - case 294: - case 295: - case 296: - case 297: - case 298: - case 299: - case 300: - case 301: - case 302: - case 303: - case 304: - case 305: - case 306: - case 307: - case 308: - case 309: - oavr_Parser_enterOuterAlt($this, $_localctx, 2); - oavr_Recognizer_setState($this, 3746); - oncipv_Cypher5Parser_unescapedLabelSymbolicNameString($this); - break e; - case 30: - case 47: - case 48: - case 49: - case 80: - case 82: - case 83: - case 84: - case 85: - case 100: - case 118: - case 124: - case 144: - case 145: - case 146: - case 147: - case 148: - case 155: - case 156: - case 161: - case 162: - case 163: - case 164: - case 168: - case 169: - case 170: - case 171: - case 178: - case 179: - case 182: - case 199: - case 200: - case 203: - case 214: - case 216: - case 217: - case 222: - case 239: - case 247: - case 271: - case 283: - break; - default: - } - $rt_throw(oavr_NoViableAltException__init_($this)); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowUserPrivileges) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$user; + $x$1 = $x$1.$user; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}, +oncia_ShowUserPrivileges_dup = ($this, $children) => { + return oncia_ShowUserPrivileges__init_($children.$head(), $this.$position258); +}, +oncia_ShowUserPrivileges__init_0 = ($this, $user, $position) => { + $this.$user = $user; + $this.$position258 = $position; +}, +oncia_ShowUserPrivileges__init_ = (var_0, var_1) => { + let var_2 = new oncia_ShowUserPrivileges(); + oncia_ShowUserPrivileges__init_0(var_2, var_0, var_1); + return var_2; }; -let oncipv_Cypher5Parser_unescapedLabelSymbolicNameString = $this => { - let $_localctx, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 662, 331); +function oncia_ShowUsersPrivileges() { + let a = this; jl_Object.call(a); + a.$users = null; + a.$position286 = null; +} +let oncia_ShowUsersPrivileges_productPrefix = $this => { + return $rt_s(5644); +}, +oncia_ShowUsersPrivileges_productArity = $this => { + return 1; +}, +oncia_ShowUsersPrivileges_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$users; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_ShowUsersPrivileges_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowUsersPrivileges_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowUsersPrivileges_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowUsersPrivileges_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - d: { - try { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3749); - oncipv_Cypher5Parser_unescapedLabelSymbolicNameString_($this); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowUsersPrivileges) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$users; + $x$1 = $x$1.$users; + if (var$2 !== null) { + if (!sci_List_equals(var$2, $x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$3 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$3 = 0; } - return $_localctx; + return var$3; +}, +oncia_ShowUsersPrivileges_dup = ($this, $children) => { + return oncia_ShowUsersPrivileges__init_($children.$head(), $this.$position286); +}, +oncia_ShowUsersPrivileges__init_0 = ($this, $users, $position) => { + $this.$users = $users; + $this.$position286 = $position; +}, +oncia_ShowUsersPrivileges__init_ = (var_0, var_1) => { + let var_2 = new oncia_ShowUsersPrivileges(); + oncia_ShowUsersPrivileges__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncia_GraphPrivilege() { + let a = this; oncia_PrivilegeType.call(a); + a.$action0 = null; + a.$scope14 = null; + a.$position332 = null; +} +let oncia_GraphPrivilege_action = $this => { + return $this.$action0; +}, +oncia_GraphPrivilege_scope = $this => { + return $this.$scope14; +}, +oncia_GraphPrivilege_productPrefix = $this => { + return $rt_s(5645); +}, +oncia_GraphPrivilege_productArity = $this => { + return 2; +}, +oncia_GraphPrivilege_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$action0; + case 1: + return $this.$scope14; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser_unescapedLabelSymbolicNameString_ = $this => { - let $_localctx, $_la, var$3, $re, $$je; - $_localctx = new oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context; - oncip_AstRuleCtx__init_($_localctx, $this.$_ctx, $this.$_stateNumber); - oavr_Parser_enterRule($this, $_localctx, 664, 332); +oncia_GraphPrivilege_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GraphPrivilege_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GraphPrivilege_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_GraphPrivilege_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - try { - e: { - oavr_Parser_enterOuterAlt($this, $_localctx, 1); - oavr_Recognizer_setState($this, 3751); - $_la = oavr_BufferedTokenStream_LA($this.$_input, 1); - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(3221223424, 4294737919)), Long_ZERO))) { - var$3 = $_la - 64 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(4290969599, 4022337519)), Long_ZERO))) { - var$3 = $_la - 128 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3890282495, 4289982689)), Long_ZERO))) { - var$3 = $_la - 192 | 0; - if (!(!(var$3 & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), var$3), Long_create(3166697087, 4286545919)), Long_ZERO))) { - $_la = $_la - 256 | 0; - if (!(!($_la & (-64)) && Long_ne(Long_and(Long_shl(Long_fromInt(1), $_la), Long_create(4160716799, 4194303)), Long_ZERO))) { - $this.$_errHandler.$recoverInline($this); - break e; - } - } - } - } - } - if (oavr_BufferedTokenStream_LA($this.$_input, 1) == (-1)) - $this.$matchedEOF = 1; - $this.$_errHandler.$reportMatch($this); - oavr_Parser_consume($this); + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_GraphPrivilege) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$action0; + var$3 = $x$1.$action0; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break d; } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof oavr_RecognitionException) { - $re = $$je; - break d; - } else{ - $_localctx = $$je; + if (var$3 !== null) + break b; + } + var$3 = $this.$scope14; + $x$1 = $x$1.$scope14; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else break c; - } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - break a; - } - try { - $_localctx.$exception = $re; - $this.$_errHandler.$reportError($this, $re); - $this.$_errHandler.$recover($this, $re); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $_localctx = $$je; - + if ($x$1 !== null) + break b; } } - oncipa_AstBuildingAntlrParser_exitRule$($this); - $rt_throw($_localctx); + var$4 = 1; + break a; } - oncipa_AstBuildingAntlrParser_exitRule$($this); + var$4 = 0; } - return $_localctx; + return var$4; }, -oncipv_Cypher5Parser__clinit_ = () => { - let var$1, $i, var$3, var$4; - oavr_RuntimeMetaData_checkVersion($rt_s(6405), $rt_s(6405)); - oncipv_Cypher5Parser__sharedContextCache = oavra_PredictionContextCache__init_(); - oncipv_Cypher5Parser_ruleNames = oncipv_Cypher5Parser_makeRuleNames(); - oncipv_Cypher5Parser__LITERAL_NAMES = oncipv_Cypher5Parser_makeLiteralNames(); - var$1 = oncipv_Cypher5Parser_makeSymbolicNames(); - oncipv_Cypher5Parser__SYMBOLIC_NAMES = var$1; - oncipv_Cypher5Parser_VOCABULARY = oavr_VocabularyImpl__init_(oncipv_Cypher5Parser__LITERAL_NAMES, var$1); - oncipv_Cypher5Parser_tokenNames = $rt_createArray(jl_String, oncipv_Cypher5Parser__SYMBOLIC_NAMES.data.length); - $i = 0; - while (true) { - var$3 = oncipv_Cypher5Parser_tokenNames.data; - if ($i >= var$3.length) - break; - var$3[$i] = oavr_VocabularyImpl_getLiteralName(oncipv_Cypher5Parser_VOCABULARY, $i); - var$3 = oncipv_Cypher5Parser_tokenNames.data; - if (var$3[$i] === null) - var$3[$i] = oavr_VocabularyImpl_getSymbolicName(oncipv_Cypher5Parser_VOCABULARY, $i); - var$3 = oncipv_Cypher5Parser_tokenNames.data; - if (var$3[$i] === null) - var$3[$i] = $rt_s(6409); - $i = $i + 1 | 0; - } - oncipv_Cypher5Parser__serializedATN = oavrm_Utils_join($rt_wrapArray(jl_String, [$rt_s(6766), $rt_s(6767)]), $rt_s(4)); - var$4 = oavra_ATNDeserializer_deserialize(oavra_ATNDeserializer__init_(), jl_String_toCharArray(oncipv_Cypher5Parser__serializedATN)); - oncipv_Cypher5Parser__ATN = var$4; - oncipv_Cypher5Parser__decisionToDFA = $rt_createArray(oavrd_DFA, oavra_ATN_getNumberOfDecisions(var$4)); - $i = 0; - while ($i < oavra_ATN_getNumberOfDecisions(oncipv_Cypher5Parser__ATN)) { - oncipv_Cypher5Parser__decisionToDFA.data[$i] = oavrd_DFA__init_(oavra_ATN_getDecisionState(oncipv_Cypher5Parser__ATN, $i), $i); - $i = $i + 1 | 0; - } -}; -function oncipvaf_CypherAstBuildingAntlrParser() { - let a = this; oncipv_Cypher5Parser.call(a); - a.$exceptionFactory8 = null; - a.$notificationLogger = null; - a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0 = null; - a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0 = null; - a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0 = 0; - a.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0 = 0; -} -let oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule0 = $this => { - oavr_Parser_exitRule($this); +oncia_GraphPrivilege__init_ = ($this, $action, $scope, $position) => { + $this.$action0 = $action; + $this.$scope14 = $scope; + $this.$position332 = $position; + oncia_PrivilegeType__init_($this, $action.$name13); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode0 = ($this, $x$1, $x$2) => { - return oavr_Parser_createTerminalNode($this, $x$1, $x$2); +oncia_GraphPrivilege__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_GraphPrivilege(); + oncia_GraphPrivilege__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset0 = $this => { - oavr_Parser_reset($this); +oncia_AdministrationAction = $rt_classWithoutFields(0); +function oncia_GraphAction() { + let a = this; jl_Object.call(a); + a.$name13 = null; + a.$planName = null; +} +let oncia_GraphAction_name = $this => { + return $this.$name13; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler0 = ($this, $x$1) => { - $this.$_errHandler = $x$1; +oncia_GraphAction__init_ = ($this, $name, $planName) => { + $this.$name13 = $name; + $this.$planName = $planName; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners0 = ($this, $x$1, $x$2, $x$3) => { - oavr_Parser_notifyErrorListeners($this, $x$1, $x$2, $x$3); +oncia_AllGraphAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_AllGraphAction$_MODULE$ = null, +oncia_AllGraphAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllGraphAction$; + oncia_GraphAction__init_(var$1, $rt_s(5646), $rt_s(5647)); + oncia_AllGraphAction$_MODULE$ = var$1; }, -oncipvaf_CypherAstBuildingAntlrParser_exitRule = $this => { - oncipa_AstBuildingAntlrParser_exitRule$($this); +oncia_AllGraphAction$_productArity = $this => { + return 0; }, -oncipvaf_CypherAstBuildingAntlrParser_createTerminalNode0 = ($this, $parent, $t) => { - return oncipa_AstBuildingAntlrParser_createTerminalNode$($this, $parent, $t); +oncia_AllGraphAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_CypherAstBuildingAntlrParser_reset0 = $this => { - oncipa_AstBuildingAntlrParser_reset$($this); +oncia_AllGraphAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_CypherAstBuildingAntlrParser_addParseListener = ($this, $listener) => { - oncipa_AstBuildingAntlrParser_addParseListener$($this, $listener); +oncia_AllGraphAction$_hashCode = $this => { + return (-566700829); }, -oncipvaf_CypherAstBuildingAntlrParser_setErrorHandler = ($this, $handler) => { - oncipa_AstBuildingAntlrParser_setErrorHandler$($this, $handler); +oncia_AllGraphAction$_toString = $this => { + return $rt_s(5648); }, -oncipvaf_CypherAstBuildingAntlrParser_notifyErrorListeners0 = ($this, $offendingToken, $msg, $e) => { - oncipa_AstBuildingAntlrParser_notifyErrorListeners$($this, $offendingToken, $msg, $e); +oncia_GraphScope = $rt_classWithoutFields(0); +function oncia_HomeGraphScope() { + jl_Object.call(this); + this.$position321 = null; +} +let oncia_HomeGraphScope_productPrefix = $this => { + return $rt_s(5649); }, -oncipvaf_CypherAstBuildingAntlrParser_syntaxChecker0 = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker(); +oncia_HomeGraphScope_productArity = $this => { + return 0; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0 = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0; +oncia_HomeGraphScope_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq0 = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0 = $x$1; +oncia_HomeGraphScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0; +oncia_HomeGraphScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq0 = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0 = $x$1; +oncia_HomeGraphScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0; +oncia_HomeGraphScope_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_HomeGraphScope)) + return 0; + return 1; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0 = $x$1; +oncia_HomeGraphScope_dup = ($this, $children) => { + return $this; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0 = $this => { - return $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0; +oncia_HomeGraphScope__init_ = ($this, $position) => { + $this.$position321 = $position; }, -oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq0 = ($this, $x$1) => { - $this.$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0 = $x$1; +oncia_HomeGraphScope__init_0 = var_0 => { + let var_1 = new oncia_HomeGraphScope(); + oncia_HomeGraphScope__init_(var_1, var_0); + return var_1; +}; +function oncia_DatabasePrivilege() { + let a = this; oncia_PrivilegeType.call(a); + a.$action6 = null; + a.$scope12 = null; + a.$position335 = null; +} +let oncia_DatabasePrivilege_scope = $this => { + return $this.$scope12; }, -oncipvaf_CypherAstBuildingAntlrParser_createSyntaxChecker = $this => { - let var$1; - var$1 = new oncipvaf_Cypher5SyntaxChecker; - var$1.$exceptionFactory0 = $this.$exceptionFactory8; - s_package$_$callClinit(); - var$1.$_errors = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - return var$1; +oncia_DatabasePrivilege_productPrefix = $this => { + return $rt_s(5650); }, -oncipvaf_CypherAstBuildingAntlrParser_createAstBuilder0 = $this => { - let var$1, var$2, var$3; - var$1 = new oncipvaf_Cypher5AstBuilder; - var$2 = $this.$notificationLogger; - var$3 = $this.$exceptionFactory8; - var$1.$notificationLogger2 = var$2; - var$1.$exceptionFactory3 = var$3; - return var$1; +oncia_DatabasePrivilege_productArity = $this => { + return 2; }, -oncipvaf_CypherAstBuildingAntlrParser_isSafeToFreeChildren = ($this, $ctx) => { - switch ($ctx.$getRuleIndex()) { - case 35: - break; - case 36: - return 0; - case 94: - return 0; - case 101: - return 0; - case 111: - return 0; - case 112: - return 0; - case 135: - return 0; - case 136: - return 0; - case 139: - return 0; - case 183: - return 0; - case 185: - return 0; - case 193: - return 0; - case 195: - return 0; - case 202: - return 0; - case 203: - return 0; - case 225: - return 0; - case 243: - return 0; - case 244: - return 0; - case 273: - return 0; - case 295: - return 0; - case 296: - return 0; - case 303: - return 0; - case 304: - return 0; - case 308: - return 0; - case 309: - return 0; - case 310: - return 0; - case 311: - return 0; - case 312: - return 0; - case 318: - return 0; - case 319: - return 0; - case 327: - return 0; - case 329: - return 0; - case 331: - return 0; - case 332: - return 0; +oncia_DatabasePrivilege_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$action6; + case 1: + return $this.$scope12; default: - return 1; } - return 0; + return sr_Statics_ioobe($x$1); }, -ong_Condition$1 = $rt_classWithoutFields(), -ong_Condition$1_$SwitchMap$org$neo4j$gqlstatus$Condition = null, -ong_Condition$1_$callClinit = () => { - ong_Condition$1_$callClinit = $rt_eraseClinit(ong_Condition$1); - ong_Condition$1__clinit_(); +oncia_DatabasePrivilege_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -ong_Condition$1__clinit_ = () => { - let var$1, var$2; - var$1 = $rt_createIntArray((ong_Condition_values()).data.length); - var$2 = var$1.data; - ong_Condition$1_$SwitchMap$org$neo4j$gqlstatus$Condition = var$1; - var$2[ong_Condition_WARNING.$ordinal] = 1; - var$2[ong_Condition_INFORMATIONAL.$ordinal] = 2; - var$2[ong_Condition_SUCCESSFUL_COMPLETION.$ordinal] = 3; - var$2[ong_Condition_NO_DATA.$ordinal] = 4; -}; -function oncipl_UnicodeEscapeReplacementReader() { - let a = this; ji_Reader.call(a); - a.$cypher = null; - a.$srcPos = 0; - a.$offsetTable0 = null; - a.$escaped = 0; -} -let oncipl_UnicodeEscapeReplacementReader_DEFAULT_BUFFER_SIZE = 0, -oncipl_UnicodeEscapeReplacementReader_read = ($cypher, $maxBuffer) => { - let var$3, $antlrBuffer, $cb, $reader, $charStream, $$je; - var$3 = $cypher.$nativeString.length; - $antlrBuffer = new oavr_CodePointBuffer$Builder; - $antlrBuffer.$type2 = oavr_CodePointBuffer$Type_BYTE; - $antlrBuffer.$byteBuffer = jn_ByteBuffer_allocate(var$3); - $antlrBuffer.$charBuffer = null; - $antlrBuffer.$intBuffer = null; - $antlrBuffer.$prevHighSurrogate = (-1); - $cb = jn_CharBuffer_allocate(jl_Math_min($maxBuffer, $cypher.$nativeString.length)); - $reader = new oncipl_UnicodeEscapeReplacementReader; - ji_Reader__init_($reader); - $reader.$offsetTable0 = null; - $reader.$escaped = 0; - $reader.$cypher = $cypher; - a: { - try { - while (ji_Reader_read($reader, jn_CharBuffer_clear($cb)) != (-1)) { - oavr_CodePointBuffer$Builder_append($antlrBuffer, jn_CharBuffer_flip($cb)); - } - $charStream = oavr_CodePointCharStream_fromBuffer(oavr_CodePointBuffer$Builder_build($antlrBuffer), $rt_s(562)); - $cypher = oncipl_UnicodeEscapeReplacementReader$Result__init_0($charStream, oncipl_UnicodeEscapeReplacementReader_offsetTable($reader)); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $cypher = $$je; - break a; - } else { - throw $$e; - } - } - return $cypher; - } - b: { - try { - oncipl_UnicodeEscapeReplacementReader_close($reader); - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $cb = $$je; - } else { - throw $$e; - } - } - jl_Throwable_addSuppressed($cypher, $cb); - } - $rt_throw($cypher); +oncia_DatabasePrivilege_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipl_UnicodeEscapeReplacementReader_read0 = ($this, $cbuf, $off, $len) => { - let var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, $$je; - if ($this.$srcPos >= $this.$cypher.$nativeString.length) - return (-1); - var$4 = $this.$cypher; - var$5 = $this.$srcPos; - var$6 = var$4.$nativeString.length; - var$7 = $off + $len | 0; - var$8 = $this.$escaped; - var$9 = $this.$offsetTable0; - var$10 = $rt_compare($len, 1); - var$11 = $off; +oncia_DatabasePrivilege_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DatabasePrivilege_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - while (true) { - if (var$5 >= var$6) - break a; - if (var$11 >= var$7) - break a; - var$12 = jl_String_charAt(var$4, var$5); - var$13 = !var$8 && var$12 == 92 && oncipl_UnicodeEscapeReplacementReader_peek($this, var$5 + 1 | 0) == 117 ? 1 : 0; - b: { - if (var$13) { - var$14 = $this.$cypher; - $len = var$5 + 2 | 0; - var$14 = jl_String_substring(var$14, jl_Math_min($len, var$14.$nativeString.length), jl_Math_min(var$5 + 6 | 0, $this.$cypher.$nativeString.length)); - try { - var$12 = jl_Integer_parseInt0(var$14, 16) & 65535; + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DatabasePrivilege) ? 0 : 1)) break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - var$15 = oncipl_UnicodeEscapeReplacementReader_inputPositionAt($this, $len); - var$9 = new oncipl_UnicodeEscapeReplacementReader$InvalidUnicodeLiteral; - $cbuf = $rt_createArray(jl_Object, 1); - $cbuf.data[0] = var$14; - var$14 = jl_String_format($rt_s(6768), $cbuf); - $len = var$15.$line1; - $off = var$15.$column0; - jl_Throwable__init_0(var$9, var$14); - var$9.$offset9 = var$5; - var$9.$line10 = $len; - var$9.$column5 = $off; - $rt_throw(var$9); - } else { - throw $$e; + d: { + $x$1 = $x$1; + var$2 = $this.$action6; + var$3 = $x$1.$action6; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break d; } + if (var$3 !== null) + break b; } - } - } - var$16 = jl_Character_isHighSurrogate(var$12); - if (var$16 && (var$11 + 1 | 0) == var$7 && (var$5 + 1 | 0) < var$6 && var$10 > 0) - break a; - if (!(var$9 === null && !var$13 && !var$16)) { - var$14 = $this.$offsetTable0; - if (var$14 === null) { - var$14 = new oncipl_UnicodeEscapeReplacementReader$OffsetTableBuilder; - var$15 = oncipl_UnicodeEscapeReplacementReader_inputPositionAt($this, var$5); - var$17 = jl_String_charAt($this.$cypher, var$5); - var$9 = new oecilmp_IntArrayList; - var$9.$items3 = oecilmp_IntArrayList_DEFAULT_SIZED_EMPTY_ARRAY; - var$14.$offsets = var$9; - oecilmp_IntArrayList_addAll(var$9, $rt_createIntArrayFromData([var$15.$offset0, var$15.$line1, var$15.$column0])); - var$14.$lastSrcChar = var$17; - var$14.$lastDestChar = var$12; - $this.$offsetTable0 = var$14; - } else { - $len = jl_String_charAt($this.$cypher, var$5); - var$15 = var$14.$offsets; - var$18 = oecilmp_IntArrayList_get(var$15, var$15.$size7 - 2 | 0); - var$15 = var$14.$offsets; - var$19 = var$15.$size7; - if (var$19 ? 0 : 1) - break; - c: { - var$16 = (var$15.$items3.data[var$19 - 1 | 0] + var$5 | 0) - oecilmp_IntArrayList_get(var$15, var$19 - 3 | 0) | 0; - var$17 = var$14.$lastSrcChar; - if (var$17 != 10) { - if (var$17 != 13) - break c; - if ($len == 10) - break c; - } - var$18 = var$18 + 1 | 0; - var$16 = 1; + var$3 = $this.$scope12; + $x$1 = $x$1.$scope12; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; } - if (!(jl_Character_isHighSurrogate(var$14.$lastDestChar) && jl_Character_isLowSurrogate(var$12))) - oecilmp_IntArrayList_addAll(var$14.$offsets, $rt_createIntArrayFromData([var$5, var$18, var$16])); - var$14.$lastSrcChar = $len; - var$14.$lastDestChar = var$12; + if ($x$1 !== null) + break b; } - var$9 = $this.$offsetTable0; - } - var$8 = !var$8 && !var$13 && var$12 == 92 ? 1 : 0; - var$20 = $cbuf.data; - $len = var$11 + 1 | 0; - var$20[var$11] = var$12; - var$5 = var$5 + (!var$13 ? 1 : 6) | 0; - var$11 = $len; - } - $rt_throw(oecilmp_IntArrayList_newIndexOutOfBoundsException(var$15, 0)); - } - $this.$srcPos = var$5; - $this.$escaped = var$8; - return var$11 - $off | 0; -}, -oncipl_UnicodeEscapeReplacementReader_peek = ($this, $pos) => { - return $pos >= $this.$cypher.$nativeString.length ? 0 : jl_String_charAt($this.$cypher, $pos); -}, -oncipl_UnicodeEscapeReplacementReader_inputPositionAt = ($this, $pos) => { - let $line, $col, $i, $c; - $line = 1; - $col = 1; - $i = 0; - while ($i < $pos && $i < $this.$cypher.$nativeString.length) { - a: { - $c = jl_String_charAt($this.$cypher, $i); - if ($c != 10) { - if ($c != 13) - break a; - if (oncipl_UnicodeEscapeReplacementReader_peek($this, $i + 1 | 0) == 10) - break a; } - $line = $line + 1 | 0; - $col = 0; + var$4 = 1; + break a; } - $col = $col + 1 | 0; - $i = $i + 1 | 0; - } - return onciu_InputPosition_apply($pos, $line, $col); -}, -oncipl_UnicodeEscapeReplacementReader_offsetTable = $this => { - let var$1, var$2, var$3; - var$1 = $this.$offsetTable0; - if (var$1 === null) - var$2 = null; - else { - var$1 = var$1.$offsets; - var$3 = var$1.$size7; - var$2 = $rt_createIntArray(var$3); - jl_System_fastArraycopy(var$1.$items3, 0, var$2, 0, var$3); + var$4 = 0; } - return var$2; -}, -oncipl_UnicodeEscapeReplacementReader_close = $this => { - return; -}, -oncipl_UnicodeEscapeReplacementReader__clinit_ = () => { - oncipl_UnicodeEscapeReplacementReader_DEFAULT_BUFFER_SIZE = 4096; + return var$4; }, -oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0 = $rt_classWithoutFields(), -oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0_apply = (var$0, var$1) => { - let var$2; - var$2 = onciu_Foldable_folder$(var$1); - var$1 = new oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1; - sr_ClassTag$_$callClinit(); - return onciu_Foldable$Folder_treeFind(var$2, var$1, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); -}; -function oncia_AlterUser$checkRemoveAuth$lambda$_84_0() { - jl_Object.call(this); - this.$_0690 = null; -} -let oncia_AlterUser$checkRemoveAuth$lambda$_84_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - var$1 = var$1; - var$2 = var$0.$_0690; - if (var$1 instanceof oncie_StringLiteral) { - var$3 = var$1; - var$4 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - if (sc_StringOps$_nonEmpty$extension(var$4, var$3.$value8)) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - break a; - } - } - if ($rt_isInstance(var$1, oncie_Parameter)) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - if (var$1 instanceof oncie_ListLiteral) { - var$3 = var$1; - if (var$3.$expressions0.$forall(new oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_106_0) && sc_IterableOnceOps_nonEmpty$(var$3.$expressions0)) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - break a; - } - } - var$1 = oncias_SemanticAnalysisTooling_error$(var$2, $rt_s(6769), var$1.$position()); - } - } - return var$1; -}; -function onciu_NonEmptyList$IteratorConverter() { - jl_Object.call(this); - this.$iterator3 = null; -} -let onciu_NonEmptyList$IteratorConverter_asNonEmptyListOption = $this => { - let var$1, var$2, var$3; - if ($this.$iterator3.$isEmpty()) - var$1 = s_None$_MODULE$; - else { - var$1 = new s_Some; - var$2 = onciu_Last__init_($this.$iterator3.$next()); - var$3 = $this.$iterator3; - while (var$3.$hasNext()) { - var$2 = onciu_Fby__init_(var$3.$next(), var$2); - } - s_Some__init_0(var$1, var$2); - } - return s_Option_map(var$1, new onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0); -}; -function ong_DiagnosticRecord$_init_$lambda$_4_0() { - jl_Object.call(this); - this.$_0968 = null; -} -let ong_DiagnosticRecord$_init_$lambda$_4_0_accept = (var$0, var$1) => { - ju_HashMap_put(var$0.$_0968.$innerDiagnosticRecord, $rt_s(3457), var$1); -}; -function ong_DiagnosticRecord$_init_$lambda$_4_1() { - jl_Object.call(this); - this.$_0430 = null; -} -let ong_DiagnosticRecord$_init_$lambda$_4_1_accept = (var$0, var$1) => { - ju_HashMap_put(var$0.$_0430.$innerDiagnosticRecord, $rt_s(3458), var$1); -}; -function ong_DiagnosticRecord$_init_$lambda$_4_2() { - jl_Object.call(this); - this.$_01090 = null; -} -let ong_DiagnosticRecord$_init_$lambda$_4_2_accept = (var$0, var$1) => { - ju_HashMap_put(var$0.$_01090.$innerDiagnosticRecord, $rt_s(3459), var$1); +oncia_DatabasePrivilege__init_ = ($this, $action, $scope, $position) => { + $this.$action6 = $action; + $this.$scope12 = $scope; + $this.$position335 = $position; + oncia_PrivilegeType__init_($this, $action.$name()); }, -oncia_ReturnItems$returnVariables$lambda$_66_0 = $rt_classWithoutFields(), -oncia_ReturnItems$returnVariables$lambda$_66_0_apply = (var$0, var$1) => { - return var$1.$alias(); +oncia_DatabasePrivilege__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_DatabasePrivilege(); + oncia_DatabasePrivilege__init_(var_3, var_0, var_1, var_2); + return var_3; }; -function sci_HashMap$HashKeySet$filter$lambda$_4_0() { +function oncia_DatabaseAction() { jl_Object.call(this); - this.$_0504 = null; + this.$name26 = null; } -let sci_HashMap$HashKeySet$filter$lambda$_4_0__init_0 = (var$0, var$1) => { - var$0.$_0504 = var$1; -}, -sci_HashMap$HashKeySet$filter$lambda$_4_0__init_ = var_0 => { - let var_1 = new sci_HashMap$HashKeySet$filter$lambda$_4_0(); - sci_HashMap$HashKeySet$filter$lambda$_4_0__init_0(var_1, var_0); - return var_1; +let oncia_DatabaseAction_name = $this => { + return $this.$name26; }, -sci_HashMap$HashKeySet$filter$lambda$_4_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0504.$apply2(var$1.$_1()))); -}; -function sci_HashMap$accum$1() { - let a = this; sr_AbstractFunction2.call(a); - a.$changed = 0; - a.$shallowlyMutableNodeMap = 0; - a.$current2 = null; - a.$$outer36 = null; -} -let sci_HashMap$accum$1_apply = ($this, $key, $value) => { - let $originalHash, $improved; - $originalHash = sr_Statics_anyHash($key); - $improved = sc_Hashing$_improve(sc_Hashing$_MODULE$, $originalHash); - if ($this.$changed) { - $this.$shallowlyMutableNodeMap = sci_BitmapIndexedMapNode_updateWithShallowMutations($this.$current2, $key, $value, $originalHash, $improved, 0, $this.$shallowlyMutableNodeMap); - return; - } - $key = sci_BitmapIndexedMapNode_updated($this.$current2, $key, $value, $originalHash, $improved, 0, 1); - $this.$current2 = $key; - if ($key === $this.$$outer36.$rootNode0) - return; - $this.$changed = 1; - $this.$shallowlyMutableNodeMap = 1 << (($improved >>> 0 | 0) & 31); +oncia_DatabaseAction__init_ = ($this, $name) => { + $this.$name26 = $name; }, -sci_HashMap$accum$1_apply0 = ($this, $v1, $v2) => { - sci_HashMap$accum$1_apply($this, $v1, $v2); - return sr_BoxedUnit_UNIT; +oncia_AllDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseAction), +oncia_AllDatabaseAction$_MODULE$ = null, +oncia_AllDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllDatabaseAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5651)); + oncia_AllDatabaseAction$_MODULE$ = var$1; }, -sci_HashMap$accum$1_apply1 = ($this, $v1) => { - $v1 = $v1; - sci_HashMap$accum$1_apply($this, $v1.$_1(), $v1.$_2()); - return sr_BoxedUnit_UNIT; +oncia_AllDatabaseAction$_productArity = $this => { + return 0; }, -sci_HashMap$accum$1__init_0 = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer36 = $$outer; - $this.$changed = 0; - $this.$shallowlyMutableNodeMap = 0; - $this.$current2 = $$outer.$rootNode0; +oncia_AllDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -sci_HashMap$accum$1__init_ = var_0 => { - let var_1 = new sci_HashMap$accum$1(); - sci_HashMap$accum$1__init_0(var_1, var_0); - return var_1; +oncia_AllDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -sci_MapNodeRemoveAllSetNodeIterator = $rt_classWithoutFields(sci_ChampBaseIterator), -sm_Ordering$LongOrdering = $rt_classWithoutFields(0), -sm_Ordering$Long$ = $rt_classWithoutFields(), -sm_Ordering$Long$_MODULE$ = null, -sm_Ordering$Long$__clinit_ = () => { - sm_Ordering$Long$_MODULE$ = new sm_Ordering$Long$; +oncia_AllDatabaseAction$_hashCode = $this => { + return (-2104636558); }, -sm_Ordering$CharOrdering = $rt_classWithoutFields(0), -sm_Ordering$Char$ = $rt_classWithoutFields(), -sm_Ordering$Char$_MODULE$ = null, -sm_Ordering$Char$__clinit_ = () => { - sm_Ordering$Char$_MODULE$ = new sm_Ordering$Char$; +oncia_AllDatabaseAction$_toString = $this => { + return $rt_s(5652); +}; +function oncia_HomeDatabaseScope() { + let a = this; jl_Object.call(a); + a.$position327 = null; + a.$showCommandName2 = null; +} +let oncia_HomeDatabaseScope_productPrefix = $this => { + return $rt_s(5653); }, -su_Sorting$ = $rt_classWithoutFields(), -su_Sorting$_MODULE$ = null, -su_Sorting$__clinit_ = () => { - su_Sorting$_MODULE$ = new su_Sorting$; +oncia_HomeDatabaseScope_productArity = $this => { + return 0; }, -su_Sorting$_scala$util$Sorting$$insertionSort = ($this, $a, $i0, $iN, $ord) => { - let $n, $temp, var$7, $m, $i, $next, $iB, var$12, $iB_0, $ix; - $n = $iN - $i0 | 0; - if ($n < 2) - return; - $temp = sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $i0); - var$7 = sr_ScalaRunTime$_MODULE$; - $iN = $i0 + 1 | 0; - if ($ord.$compare2($temp, sr_ScalaRunTime$_array_apply(var$7, $a, $iN)) > 0) { - $temp = sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $i0); - var$7 = sr_ScalaRunTime$_MODULE$; - sr_ScalaRunTime$_array_update(var$7, $a, $i0, sr_ScalaRunTime$_array_apply(var$7, $a, $iN)); - sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, $a, $iN, $temp); - } - $m = 2; - while ($m < $n) { - $temp = sr_ScalaRunTime$_MODULE$; - $i = $i0 + $m | 0; - $next = sr_ScalaRunTime$_array_apply($temp, $a, $i); - $temp = sr_ScalaRunTime$_MODULE$; - $iB = $i - 1 | 0; - if ($ord.$compare2($next, sr_ScalaRunTime$_array_apply($temp, $a, $iB)) < 0) { - var$12 = $i0; - while (($iB - var$12 | 0) > 1) { - $iB_0 = (var$12 + $iB | 0) >>> 1 | 0; - if ($ord.$compare2($next, sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $iB_0)) >= 0) { - var$12 = $iB_0; - continue; - } - $iB = $iB_0; - } - $ix = var$12 + ($ord.$compare2($next, sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, var$12)) >= 0 ? 1 : 0) | 0; - while ($i > $ix) { - $temp = sr_ScalaRunTime$_MODULE$; - sr_ScalaRunTime$_array_update($temp, $a, $i, sr_ScalaRunTime$_array_apply($temp, $a, $i - 1 | 0)); - $i = $i + (-1) | 0; - } - sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, $a, $ix, $next); - } - $m = $m + 1 | 0; - } +oncia_HomeDatabaseScope_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -su_Sorting$_scala$util$Sorting$$mergeSort = ($this, $a, $i0, $iN, $ord, $sc, $evidence$2) => { - let $iK; - if (($iN - $i0 | 0) < 32) { - su_Sorting$_scala$util$Sorting$$insertionSort($this, $a, $i0, $iN, $ord); - return; - } - $iK = ($i0 + $iN | 0) >>> 1 | 0; - if ($sc === null) - $sc = $evidence$2.$newArray($iK - $i0 | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $i0, $iK, $ord, $sc, $evidence$2); - su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $iK, $iN, $ord, $sc, $evidence$2); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, $a, $i0, $iK, $iN, $ord, $sc); +oncia_HomeDatabaseScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -su_Sorting$_scala$util$Sorting$$mergeSorted = ($this, $a, $i0, $iK, $iN, $ord, $scratch) => { - let $jN, $j, var$9, var$10, var$11, var$12; - if ($ord.$compare2(sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $iK - 1 | 0), sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, $iK)) <= 0) - return; - $jN = $iK - $i0 | 0; - $j = 0; - var$9 = $i0; - while (var$9 < $iK) { - var$10 = sr_ScalaRunTime$_MODULE$; - sr_ScalaRunTime$_array_update(var$10, $scratch, $j, sr_ScalaRunTime$_array_apply(var$10, $a, var$9)); - var$9 = var$9 + 1 | 0; - $j = $j + 1 | 0; - } - var$11 = 0; - a: { - while (var$9 < $iN) { - if (var$11 >= $jN) - break a; - if ($ord.$compare2(sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $a, var$9), sr_ScalaRunTime$_array_apply(sr_ScalaRunTime$_MODULE$, $scratch, var$11)) >= 0) { - var$12 = sr_ScalaRunTime$_MODULE$; - sr_ScalaRunTime$_array_update(var$12, $a, $i0, sr_ScalaRunTime$_array_apply(var$12, $scratch, var$11)); - var$11 = var$11 + 1 | 0; - } else { - var$10 = sr_ScalaRunTime$_MODULE$; - sr_ScalaRunTime$_array_update(var$10, $a, $i0, sr_ScalaRunTime$_array_apply(var$10, $a, var$9)); - var$9 = var$9 + 1 | 0; - } - $i0 = $i0 + 1 | 0; - } - } - while (var$11 < $jN) { - $ord = sr_ScalaRunTime$_MODULE$; - sr_ScalaRunTime$_array_update($ord, $a, $i0, sr_ScalaRunTime$_array_apply($ord, $scratch, var$11)); - var$11 = var$11 + 1 | 0; - $i0 = $i0 + 1 | 0; - } +oncia_HomeDatabaseScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -su_Sorting$_scala$util$Sorting$$booleanSort = ($this, $a, $from, $until) => { - let $n, var$5, var$6, var$7; - $n = 0; - var$5 = $from; - while (var$5 < $until) { - if (!$a.data[var$5]) - $n = $n + 1 | 0; - var$5 = var$5 + 1 | 0; - } - var$6 = 0; - while (var$6 < $n) { - $a.data[$from + var$6 | 0] = 0; - var$6 = var$6 + 1 | 0; - } - while (true) { - var$7 = $from + var$6 | 0; - if (var$7 >= $until) - break; - $a.data[var$7] = 1; - var$6 = var$6 + 1 | 0; - } +oncia_HomeDatabaseScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -su_Sorting$_stableSort = ($this, $a, $from, $until, $evidence$4) => { - let var$5, var$6, var$7, var$8, var$9; - if ($rt_isInstance($a, $rt_arraycls(jl_Object))) { - if (jlr_Array_getLength($a) > 1 && $evidence$4 === null) { - $a = new jl_NullPointerException; - jl_Throwable__init_0($a, $rt_s(6770)); - $rt_throw($a); - } - var$5 = $a; - if ($from > $until) { - $a = new jl_IllegalArgumentException; - jl_Throwable__init_($a); - $rt_throw($a); - } - if ($evidence$4 === null) - $evidence$4 = ju_Comparator$NaturalOrder_INSTANCE; - var$6 = $rt_createArray(jl_Object, $until - $from | 0); - var$7 = var$6.data; - var$8 = $from; - while (var$8 < $until) { - var$7[var$8 - $from | 0] = var$5.data[var$8]; - var$8 = var$8 + 1 | 0; - } - ju_Arrays_sort(var$6, $evidence$4); - var$8 = $from; - while (var$8 < $until) { - var$5.data[var$8] = var$7[var$8 - $from | 0]; - var$8 = var$8 + 1 | 0; - } - return; - } - if ($rt_isInstance($a, $rt_arraycls($rt_intcls))) { - var$5 = $a; - sm_Ordering$Int$_$callClinit(); - if ($evidence$4 !== sm_Ordering$Int$_MODULE$) { - sr_ClassTag$_$callClinit(); - $a = sr_ClassTag$_Int(sr_ClassTag$_MODULE$); - if (($until - $from | 0) < 32) - su_Sorting$_scala$util$Sorting$$insertionSort($this, var$5, $from, $until, $evidence$4); - else { - var$8 = ($from + $until | 0) >>> 1 | 0; - var$6 = $rt_createIntArray(var$8 - $from | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$5, $from, var$8, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$5, var$8, $until, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$5, $from, var$8, $until, $evidence$4, var$6); - } - return; - } - if ($from > $until) { - $a = new jl_IllegalArgumentException; - jl_Throwable__init_($a); - $rt_throw($a); - } - var$6 = $rt_createIntArray($until - $from | 0); - var$7 = var$6.data; - var$8 = $from; - while (var$8 < $until) { - var$7[var$8 - $from | 0] = var$5.data[var$8]; - var$8 = var$8 + 1 | 0; - } - ju_Arrays_sort2(var$6); - var$8 = $from; - while (var$8 < $until) { - var$5.data[var$8] = var$7[var$8 - $from | 0]; - var$8 = var$8 + 1 | 0; - } - return; - } - if ($rt_isInstance($a, $rt_arraycls($rt_doublecls))) { - var$9 = $a; - sr_ClassTag$_$callClinit(); - $a = sr_ClassTag$_Double(sr_ClassTag$_MODULE$); - if (($until - $from | 0) < 32) - su_Sorting$_scala$util$Sorting$$insertionSort($this, var$9, $from, $until, $evidence$4); - else { - var$8 = ($from + $until | 0) >>> 1 | 0; - var$6 = $rt_createDoubleArray(var$8 - $from | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, $from, var$8, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, var$8, $until, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$9, $from, var$8, $until, $evidence$4, var$6); - } - return; - } - if ($rt_isInstance($a, $rt_arraycls($rt_longcls))) { - var$5 = $a; - if ($evidence$4 !== sm_Ordering$Long$_MODULE$) { - sr_ClassTag$_$callClinit(); - $a = sr_ClassTag$_Long(sr_ClassTag$_MODULE$); - if (($until - $from | 0) < 32) - su_Sorting$_scala$util$Sorting$$insertionSort($this, var$5, $from, $until, $evidence$4); - else { - var$8 = ($from + $until | 0) >>> 1 | 0; - var$6 = $rt_createLongArray(var$8 - $from | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$5, $from, var$8, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$5, var$8, $until, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$5, $from, var$8, $until, $evidence$4, var$6); - } - return; - } - if ($from > $until) { - $a = new jl_IllegalArgumentException; - jl_Throwable__init_($a); - $rt_throw($a); - } - var$6 = $rt_createLongArray($until - $from | 0); - var$7 = var$6.data; - var$8 = $from; - while (var$8 < $until) { - var$7[var$8 - $from | 0] = var$5.data[var$8]; - var$8 = var$8 + 1 | 0; - } - ju_Arrays_sort3(var$6); - var$8 = $from; - while (var$8 < $until) { - var$5.data[var$8] = var$7[var$8 - $from | 0]; - var$8 = var$8 + 1 | 0; - } - return; - } - if ($rt_isInstance($a, $rt_arraycls($rt_floatcls))) { - var$9 = $a; - sr_ClassTag$_$callClinit(); - $a = sr_ClassTag$_Float(sr_ClassTag$_MODULE$); - if (($until - $from | 0) < 32) - su_Sorting$_scala$util$Sorting$$insertionSort($this, var$9, $from, $until, $evidence$4); - else { - var$8 = ($from + $until | 0) >>> 1 | 0; - var$6 = $rt_createFloatArray(var$8 - $from | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, $from, var$8, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, var$8, $until, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$9, $from, var$8, $until, $evidence$4, var$6); - } - return; - } - if ($rt_isInstance($a, $rt_arraycls($rt_charcls))) { - var$9 = $a; - if ($evidence$4 === sm_Ordering$Char$_MODULE$) { - ju_Arrays_sort7(var$9, $from, $until); - return; - } - sr_ClassTag$_$callClinit(); - $a = sr_ClassTag$_Char(sr_ClassTag$_MODULE$); - if (($until - $from | 0) < 32) - su_Sorting$_scala$util$Sorting$$insertionSort($this, var$9, $from, $until, $evidence$4); - else { - var$8 = ($from + $until | 0) >>> 1 | 0; - var$6 = $rt_createCharArray(var$8 - $from | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, $from, var$8, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSort($this, var$9, var$8, $until, $evidence$4, var$6, $a); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, var$9, $from, var$8, $until, $evidence$4, var$6); - } - return; - } - if ($rt_isInstance($a, $rt_arraycls($rt_bytecls))) { - var$6 = $a; - if ($evidence$4 === sm_Ordering$Byte$_MODULE$) { - ju_Arrays_sort6(var$6, $from, $until); - return; - } - $a = null; - sr_ClassTag$_$callClinit(); - su_Sorting$_scala$util$Sorting$$mergeSort$mBc$sp($this, var$6, $from, $until, $evidence$4, $a, sr_ClassTag$_Byte(sr_ClassTag$_MODULE$)); - return; - } - if ($rt_isInstance($a, $rt_arraycls($rt_shortcls))) { - var$6 = $a; - if ($evidence$4 === sm_Ordering$Short$_MODULE$) { - ju_Arrays_sort5(var$6, $from, $until); - return; - } - $a = null; - sr_ClassTag$_$callClinit(); - su_Sorting$_scala$util$Sorting$$mergeSort$mSc$sp($this, var$6, $from, $until, $evidence$4, $a, sr_ClassTag$_Short(sr_ClassTag$_MODULE$)); - return; - } - if (!$rt_isInstance($a, $rt_arraycls($rt_booleancls))) { - if ($a !== null) - $rt_throw(s_MatchError__init_($a)); - $a = new jl_NullPointerException; - jl_Throwable__init_($a); - $rt_throw($a); - } - var$6 = $a; - if ($evidence$4 === sm_Ordering$Boolean$_MODULE$) { - su_Sorting$_scala$util$Sorting$$booleanSort($this, var$6, $from, $until); - return; - } - $a = null; - sr_ClassTag$_$callClinit(); - su_Sorting$_scala$util$Sorting$$mergeSort$mZc$sp($this, var$6, $from, $until, $evidence$4, $a, sr_ClassTag$_Boolean(sr_ClassTag$_MODULE$)); +oncia_HomeDatabaseScope_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_HomeDatabaseScope)) + return 0; + return 1; }, -su_Sorting$_scala$util$Sorting$$mergeSort$mZc$sp = ($this, $a, $i0, $iN, $ord, $sc, $evidence$2) => { - let $iK; - if (($iN - $i0 | 0) < 32) { - su_Sorting$_scala$util$Sorting$$insertionSort($this, $a, $i0, $iN, $ord); - return; - } - $iK = ($i0 + $iN | 0) >>> 1 | 0; - if ($sc === null) - $sc = $rt_createBooleanArray($iK - $i0 | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $i0, $iK, $ord, $sc, $evidence$2); - su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $iK, $iN, $ord, $sc, $evidence$2); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, $a, $i0, $iK, $iN, $ord, $sc); +oncia_HomeDatabaseScope_dup = ($this, $children) => { + return $this; }, -su_Sorting$_scala$util$Sorting$$mergeSort$mBc$sp = ($this, $a, $i0, $iN, $ord, $sc, $evidence$2) => { - let $iK; - if (($iN - $i0 | 0) < 32) { - su_Sorting$_scala$util$Sorting$$insertionSort($this, $a, $i0, $iN, $ord); - return; +oncia_HomeDatabaseScope__init_ = ($this, $position) => { + $this.$position327 = $position; + $this.$showCommandName2 = $rt_s(5654); +}, +oncia_HomeDatabaseScope__init_0 = var_0 => { + let var_1 = new oncia_HomeDatabaseScope(); + oncia_HomeDatabaseScope__init_(var_1, var_0); + return var_1; +}; +function oncia_NamedDatabasesScope() { + let a = this; jl_Object.call(a); + a.$databases = null; + a.$position219 = null; + a.$showCommandName0 = null; +} +let oncia_NamedDatabasesScope_productPrefix = $this => { + return $rt_s(5655); +}, +oncia_NamedDatabasesScope_productArity = $this => { + return 1; +}, +oncia_NamedDatabasesScope_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$databases; + default: } - $iK = ($i0 + $iN | 0) >>> 1 | 0; - if ($sc === null) - $sc = $rt_createByteArray($iK - $i0 | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $i0, $iK, $ord, $sc, $evidence$2); - su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $iK, $iN, $ord, $sc, $evidence$2); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, $a, $i0, $iK, $iN, $ord, $sc); + return sr_Statics_ioobe($x$1); }, -su_Sorting$_scala$util$Sorting$$mergeSort$mSc$sp = ($this, $a, $i0, $iN, $ord, $sc, $evidence$2) => { - let $iK; - if (($iN - $i0 | 0) < 32) { - su_Sorting$_scala$util$Sorting$$insertionSort($this, $a, $i0, $iN, $ord); - return; +oncia_NamedDatabasesScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NamedDatabasesScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NamedDatabasesScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NamedDatabasesScope_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_NamedDatabasesScope) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$databases; + $x$1 = $x$1.$databases; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$3 = 1; + break a; + } + var$3 = 0; } - $iK = ($i0 + $iN | 0) >>> 1 | 0; - if ($sc === null) - $sc = $rt_createShortArray($iK - $i0 | 0); - su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $i0, $iK, $ord, $sc, $evidence$2); - su_Sorting$_scala$util$Sorting$$mergeSort($this, $a, $iK, $iN, $ord, $sc, $evidence$2); - su_Sorting$_scala$util$Sorting$$mergeSorted($this, $a, $i0, $iK, $iN, $ord, $sc); + return var$3; }, -sm_Ordering$ShortOrdering = $rt_classWithoutFields(0), -sm_Ordering$Short$ = $rt_classWithoutFields(), -sm_Ordering$Short$_MODULE$ = null, -sm_Ordering$Short$__clinit_ = () => { - sm_Ordering$Short$_MODULE$ = new sm_Ordering$Short$; +oncia_NamedDatabasesScope_dup = ($this, $children) => { + return oncia_NamedDatabasesScope__init_0($children.$head(), $this.$position219); }, -sm_Ordering$ByteOrdering = $rt_classWithoutFields(0), -sm_Ordering$Byte$ = $rt_classWithoutFields(), -sm_Ordering$Byte$_MODULE$ = null, -sm_Ordering$Byte$__clinit_ = () => { - sm_Ordering$Byte$_MODULE$ = new sm_Ordering$Byte$; +oncia_NamedDatabasesScope__init_ = ($this, $databases, $position) => { + $this.$databases = $databases; + $this.$position219 = $position; + $this.$showCommandName0 = $rt_s(4072); +}, +oncia_NamedDatabasesScope__init_0 = (var_0, var_1) => { + let var_2 = new oncia_NamedDatabasesScope(); + oncia_NamedDatabasesScope__init_(var_2, var_0, var_1); + return var_2; }; -function oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0() { +function oncia_AllDatabasesScope() { let a = this; jl_Object.call(a); - a.$_0356 = null; - a.$_1129 = 0; + a.$position318 = null; + a.$showCommandName1 = null; } -let oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0356; - var$2 = var$0.$_1129; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - return var$1.$apply1(var$2 - 1 | 0); +let oncia_AllDatabasesScope_productPrefix = $this => { + return $rt_s(5656); +}, +oncia_AllDatabasesScope_productArity = $this => { + return 0; +}, +oncia_AllDatabasesScope_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllDatabasesScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllDatabasesScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllDatabasesScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllDatabasesScope_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_AllDatabasesScope)) + return 0; + return 1; +}, +oncia_AllDatabasesScope_dup = ($this, $children) => { + return $this; +}, +oncia_AllDatabasesScope__init_ = ($this, $position) => { + $this.$position318 = $position; + $this.$showCommandName1 = $rt_s(5657); +}, +oncia_AllDatabasesScope__init_0 = var_0 => { + let var_1 = new oncia_AllDatabasesScope(); + oncia_AllDatabasesScope__init_(var_1, var_0); + return var_1; }; -function oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1() { +function oncia_NamedGraphsScope() { let a = this; jl_Object.call(a); - a.$_01203 = null; - a.$_1311 = null; - a.$_2102 = null; - a.$_325 = null; - a.$_45 = null; - a.$_53 = null; - a.$_62 = null; + a.$graphs = null; + a.$position231 = null; } -let oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $$je; +let oncia_NamedGraphsScope_productPrefix = $this => { + return $rt_s(5658); +}, +oncia_NamedGraphsScope_productArity = $this => { + return 1; +}, +oncia_NamedGraphsScope_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$graphs; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_NamedGraphsScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NamedGraphsScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NamedGraphsScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NamedGraphsScope_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { c: { - var$1 = var$1; - var$2 = var$0.$_1311; - var$3 = var$0.$_2102; - var$4 = var$0.$_325; - var$5 = var$0.$_45; - var$6 = var$0.$_53; - var$7 = var$0.$_62; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - var$8 = onciu_Foldable_folder$(var$1); - oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_$callClinit(); - var$9 = oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_MODULE$; - var$10 = new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1; - var$10.$semanticTable$11 = var$2; - var$10.$x8$1 = var$3; - var$10.$previousClause$1 = var$4; - var$2 = onciu_Foldable$Folder_treeFold(var$8, var$9, var$10); - oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_$callClinit(); - var$3 = oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break c; - else + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_NamedGraphsScope) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$graphs; + $x$1 = $x$1.$graphs; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) break b; } - if (var$3 === null) - break b; } + var$3 = 1; break a; } - var$2 = onciu_AnonymousVariableNameGenerator_nextName(var$5); - var$3 = var$6.$elem; - if (!var$7.$_initialized) { - jl_Object_monitorEnterSync(var$7); - d: { - try { - if (sr_LazyRef_initialized(var$7)) - sr_LazyRef_value(var$7); - else - sr_LazyRef_initialize(var$7, oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$__init_0()); - break d; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync(var$7); - $rt_throw(var$1); - } - jl_Object_monitorExitSync(var$7); - } - var$4 = new oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1; - var$4.$introducedVariable = var$2; - var$4.$replacedExpression = var$1; - var$6.$elem = var$3.$appended(var$4); - var$1 = oncie_Variable__init_(var$2, var$1.$position()); + var$3 = 0; } - return var$1; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2 = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$introducedVariable; - var$3 = var$1.$replacedExpression; - return oncia_AliasedReturnItem__init_(var$3, oncie_Variable__init_(var$2, var$3.$position()), var$3.$position()); + return var$3; }, -oncia_ReadAdministrationCommand$yields$lambda$_11_0 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$yields$lambda$_11_0_apply = (var$0, var$1) => { - return s_Option_map(su_Either$LeftProjection_toOption(su_Either_left(var$1)), new oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0); +oncia_NamedGraphsScope_dup = ($this, $children) => { + return oncia_NamedGraphsScope__init_0($children.$head(), $this.$position231); }, -oncia_ReadAdministrationCommand$returns$lambda$_13_0 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$returns$lambda$_13_0_apply = (var$0, var$1) => { - return s_Option_flatMap(su_Either$LeftProjection_toOption(su_Either_left(var$1)), new oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0); +oncia_NamedGraphsScope__init_ = ($this, $graphs, $position) => { + $this.$graphs = $graphs; + $this.$position231 = $position; }, -oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0 = $rt_classWithoutFields(), -oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0_apply = (var$0, var$1) => { - return var$1.$variable8; +oncia_NamedGraphsScope__init_0 = (var_0, var_1) => { + let var_2 = new oncia_NamedGraphsScope(); + oncia_NamedGraphsScope__init_(var_2, var_0, var_1); + return var_2; }; -function oncipl_UnicodeEscapeReplacementReader$Result() { - let a = this; jl_Record.call(a); - a.$charStream = null; - a.$offsetTable1 = null; +function oncia_AllGraphsScope() { + jl_Object.call(this); + this.$position326 = null; } -let oncipl_UnicodeEscapeReplacementReader$Result__init_ = ($this, $charStream, $offsetTable) => { - $this.$charStream = $charStream; - $this.$offsetTable1 = $offsetTable; +let oncia_AllGraphsScope_productPrefix = $this => { + return $rt_s(5659); }, -oncipl_UnicodeEscapeReplacementReader$Result__init_0 = (var_0, var_1) => { - let var_2 = new oncipl_UnicodeEscapeReplacementReader$Result(); - oncipl_UnicodeEscapeReplacementReader$Result__init_(var_2, var_0, var_1); - return var_2; +oncia_AllGraphsScope_productArity = $this => { + return 0; +}, +oncia_AllGraphsScope_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllGraphsScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllGraphsScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllGraphsScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllGraphsScope_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_AllGraphsScope)) + return 0; + return 1; +}, +oncia_AllGraphsScope_dup = ($this, $children) => { + return $this; +}, +oncia_AllGraphsScope__init_ = ($this, $position) => { + $this.$position326 = $position; +}, +oncia_AllGraphsScope__init_0 = var_0 => { + let var_1 = new oncia_AllGraphsScope(); + oncia_AllGraphsScope__init_(var_1, var_0); + return var_1; }; -function scc_JavaCollectionWrappers$JMapWrapperLike$$anon$5() { - sc_AbstractIterator.call(this); - this.$ui = null; +function oncia_DbmsPrivilege() { + let a = this; oncia_PrivilegeType.call(a); + a.$action4 = null; + a.$position320 = null; } -let scc_JavaCollectionWrappers$JMapWrapperLike$$anon$5_hasNext = $this => { - return $this.$ui.$hasNext(); +let oncia_DbmsPrivilege_productPrefix = $this => { + return $rt_s(5660); }, -scc_JavaCollectionWrappers$JMapWrapperLike$$anon$5_next = $this => { - let var$1; - var$1 = $this.$ui.$next(); - return s_Tuple2__init_(var$1.$getKey(), var$1.$getValue0()); +oncia_DbmsPrivilege_productArity = $this => { + return 1; }, -oncias_SemanticCheckInterpreter$ = $rt_classWithoutFields(), -oncias_SemanticCheckInterpreter$_MODULE$ = null, -oncias_SemanticCheckInterpreter$_$callClinit = () => { - oncias_SemanticCheckInterpreter$_$callClinit = $rt_eraseClinit(oncias_SemanticCheckInterpreter$); - oncias_SemanticCheckInterpreter$__clinit_(); +oncia_DbmsPrivilege_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$action4; + default: + } + return sr_Statics_ioobe($x$1); }, -oncias_SemanticCheckInterpreter$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticCheckInterpreter$; - oncias_SemanticCheckInterpreter$_$callClinit(); - oncias_SemanticCheckInterpreter$_MODULE$ = var$1; +oncia_DbmsPrivilege_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$_run = ($this, $result, $checkStack, $context, $debugAnnotations) => { - let var$5, $check, $f, $checkStack_0, $func, $annotation, $checkStackTail; +oncia_DbmsPrivilege_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DbmsPrivilege_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DbmsPrivilege_equals = ($this, $x$1) => { + let var$2, var$3; a: { - while (true) { - var$5 = 0; - $check = null; - if (sci_List_equals(sci_Nil$_MODULE$, $checkStack)) - break; - if ($checkStack instanceof sci_$colon$colon) { - var$5 = 1; - $check = $checkStack; - $f = $check.$head1; - $checkStack_0 = $check.$next6; - if ($f instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper) { - $check = $f.$check10; - if ($check instanceof oncias_SemanticCheck$Leaf) { - $result = $check.$f2.$apply2($result.$state); - $checkStack = $checkStack_0; - continue; - } - if ($check instanceof oncias_SemanticCheck$Map) { - $checkStack = $check; - $check = $checkStack.$check11; - $func = $checkStack.$f3; - $checkStack = oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $check); - $f = new oncias_SemanticCheckInterpreter$ExecutableCheck$Map; - $f.$f1 = $func; - $checkStack = sci_List_$colon$colon(sci_List_$colon$colon($checkStack_0, $f), $checkStack); - continue; - } - if ($check instanceof oncias_SemanticCheck$FlatMap) { - $checkStack = $check; - $check = $checkStack.$check9; - $func = $checkStack.$f6; - $checkStack = oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $check); - $f = new oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap; - $f.$f5 = $func; - $checkStack = sci_List_$colon$colon(sci_List_$colon$colon($checkStack_0, $f), $checkStack); - continue; - } - if ($check instanceof oncias_SemanticCheck$CheckFromContext) { - $f = $check.$f4; - $checkStack = sci_List_$colon$colon($checkStack_0, oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0_apply($f, $context))); - continue; + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DbmsPrivilege) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$action4; + $x$1 = $x$1.$action4; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, $x$1)) + break b; + else + break c; } - if (!($check instanceof oncias_SemanticCheck$Annotated)) - $rt_throw(s_MatchError__init_($check)); - $checkStack = $check; - $check = $checkStack.$check12; - $annotation = $checkStack.$annotation; - $checkStack = oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$; - $f = oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $check); - $check = oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_MODULE$; - $checkStack = sci_List_$colon$colon(sci_List_$colon$colon(sci_List_$colon$colon(sci_List_$colon$colon($checkStack_0, oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$), $check), $f), $checkStack); - $debugAnnotations = $debugAnnotations.$appended($annotation); - continue; - } - } - if (var$5) { - $f = $check.$head1; - $checkStack_0 = $check.$next6; - if ($f instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$Map) { - $result = $f.$f1.$apply2($result); - $checkStack = $checkStack_0; - continue; - } - } - if (var$5) { - $f = $check.$head1; - $checkStackTail = $check.$next6; - if ($f instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap) { - $func = $f.$f5; - $checkStack = sci_List_$colon$colon($checkStackTail, oncias_SemanticCheckInterpreter$ExecutableCheck$_apply(oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$, $func.$apply2($result))); - continue; - } - } - if (var$5) { - $f = $check.$head1; - $checkStack_0 = $check.$next6; - if (jl_Object_equals(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_MODULE$, $f)) { - $debugAnnotations = $debugAnnotations.$init0(); - $checkStack = $checkStack_0; - continue; + if ($x$1 !== null) + break b; } } - if (!var$5) - break a; - $f = $check.$head1; - $checkStack_0 = $check.$next6; - if (!jl_Object_equals(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$, $f)) - break a; - s_Predef$_$callClinit(); - s_Predef$_println(s_Predef$_MODULE$, $rt_s(6771)); - sc_IterableOnceOps_foreach$((sc_StrictOptimizedIterableOps_zipWithIndex$($debugAnnotations)).$reverseIterator(), new oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0); - s_Console$_$callClinit(); - otcic_JsConsolePrintStream_println1(s_Console$_out(s_Console$_MODULE$)); - $checkStack = $checkStack_0; + var$3 = 1; + break a; } - return $result; + var$3 = 0; } - $rt_throw(s_MatchError__init_($checkStack)); + return var$3; +}, +oncia_DbmsPrivilege__init_0 = ($this, $action, $position) => { + $this.$action4 = $action; + $this.$position320 = $position; + oncia_PrivilegeType__init_($this, $action.$name()); +}, +oncia_DbmsPrivilege__init_ = (var_0, var_1) => { + let var_2 = new oncia_DbmsPrivilege(); + oncia_DbmsPrivilege__init_0(var_2, var_0, var_1); + return var_2; }; -function oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0() { +function oncia_DbmsAction() { jl_Object.call(this); - this.$_052 = null; + this.$name20 = null; } -let oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_052; - oncia_SingleQuery$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$4 = var$1.$_2(); - return oncia_SingleQuery$PartitionedClauses__init_(s_None$_MODULE$, s_Some__init_(var$2), s_Some__init_(var$3), var$4); +let oncia_DbmsAction_name = $this => { + return $this.$name20; +}, +oncia_DbmsAction__init_ = ($this, $name) => { + $this.$name20 = $name; +}, +oncia_AllDbmsAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_AllDbmsAction$_MODULE$ = null, +oncia_AllDbmsAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllDbmsAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5661)); + oncia_AllDbmsAction$_MODULE$ = var$1; +}, +oncia_AllDbmsAction$_productArity = $this => { + return 0; +}, +oncia_AllDbmsAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllDbmsAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllDbmsAction$_hashCode = $this => { + return (-1220050341); +}, +oncia_AllDbmsAction$_toString = $this => { + return $rt_s(5662); +}, +oncia_CreateElementAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_CreateElementAction$_MODULE$ = null, +oncia_CreateElementAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateElementAction$; + oncia_GraphAction__init_(var$1, $rt_s(4311), $rt_s(5663)); + oncia_CreateElementAction$_MODULE$ = var$1; +}, +oncia_CreateElementAction$_productArity = $this => { + return 0; +}, +oncia_CreateElementAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateElementAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateElementAction$_hashCode = $this => { + return 1412377750; +}, +oncia_CreateElementAction$_toString = $this => { + return $rt_s(5664); +}, +oncia_NameManagementAction = $rt_classWithoutFields(oncia_DatabaseAction), +oncia_NameManagementAction_name = $this => { + return $this.$name26; +}, +oncia_CreateNodeLabelAction$ = $rt_classWithoutFields(oncia_NameManagementAction), +oncia_CreateNodeLabelAction$_MODULE$ = null, +oncia_CreateNodeLabelAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateNodeLabelAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5665)); + oncia_CreateNodeLabelAction$_MODULE$ = var$1; +}, +oncia_CreateNodeLabelAction$_productArity = $this => { + return 0; +}, +oncia_CreateNodeLabelAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateNodeLabelAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateNodeLabelAction$_hashCode = $this => { + return 1759458860; +}, +oncia_CreateNodeLabelAction$_toString = $this => { + return $rt_s(5666); +}, +oncia_CreateRelationshipTypeAction$ = $rt_classWithoutFields(oncia_NameManagementAction), +oncia_CreateRelationshipTypeAction$_MODULE$ = null, +oncia_CreateRelationshipTypeAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateRelationshipTypeAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5667)); + oncia_CreateRelationshipTypeAction$_MODULE$ = var$1; +}, +oncia_CreateRelationshipTypeAction$_productArity = $this => { + return 0; +}, +oncia_CreateRelationshipTypeAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateRelationshipTypeAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateRelationshipTypeAction$_hashCode = $this => { + return (-979939676); +}, +oncia_CreateRelationshipTypeAction$_toString = $this => { + return $rt_s(5668); +}, +oncia_CreatePropertyKeyAction$ = $rt_classWithoutFields(oncia_NameManagementAction), +oncia_CreatePropertyKeyAction$_MODULE$ = null, +oncia_CreatePropertyKeyAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreatePropertyKeyAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5669)); + oncia_CreatePropertyKeyAction$_MODULE$ = var$1; +}, +oncia_CreatePropertyKeyAction$_productArity = $this => { + return 0; +}, +oncia_CreatePropertyKeyAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreatePropertyKeyAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreatePropertyKeyAction$_hashCode = $this => { + return (-1818651292); +}, +oncia_CreatePropertyKeyAction$_toString = $this => { + return $rt_s(5670); +}, +oncia_UserManagementAction = $rt_classWithoutFields(oncia_DbmsAction), +oncia_UserManagementAction_name = $this => { + return $this.$name20; +}, +oncia_DropUserAction$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_DropUserAction$_MODULE$ = null, +oncia_DropUserAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_DropUserAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5610)); + oncia_DropUserAction$_MODULE$ = var$1; +}, +oncia_DropUserAction$_productArity = $this => { + return 0; }; -function oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1() { - let a = this; jl_Object.call(a); - a.$_0838 = null; - a.$_1288 = null; -} -let oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0838; - var$2 = var$0.$_1288; - oncia_SingleQuery$_$callClinit(); - return oncia_SingleQuery$PartitionedClauses__init_(s_None$_MODULE$, s_Some__init_(var$1), s_None$_MODULE$, var$2); +let oncia_DropUserAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0 = $rt_classWithoutFields(), -oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - return s_Predef$ArrowAssoc$_$minus$greater$extension(var$2, var$1.$name9, var$1.$typ); +oncia_DropUserAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropUserAction$_hashCode = $this => { + return 1701399120; +}, +oncia_DropUserAction$_toString = $this => { + return $rt_s(5671); +}, +oncia_CreateUserAction$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_CreateUserAction$_MODULE$ = null, +oncia_CreateUserAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateUserAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5605)); + oncia_CreateUserAction$_MODULE$ = var$1; +}, +oncia_CreateUserAction$_productArity = $this => { + return 0; +}, +oncia_CreateUserAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateUserAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateUserAction$_hashCode = $this => { + return 2043922461; +}, +oncia_CreateUserAction$_toString = $this => { + return $rt_s(5672); +}, +oncia_RoleManagementAction = $rt_classWithoutFields(oncia_DbmsAction), +oncia_RoleManagementAction_name = $this => { + return $this.$name20; +}, +oncia_DropRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), +oncia_DropRoleAction$_MODULE$ = null, +oncia_DropRoleAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_DropRoleAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5594)); + oncia_DropRoleAction$_MODULE$ = var$1; +}, +oncia_DropRoleAction$_productArity = $this => { + return 0; +}, +oncia_DropRoleAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_DropRoleAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropRoleAction$_hashCode = $this => { + return 1592947387; +}, +oncia_DropRoleAction$_toString = $this => { + return $rt_s(5673); +}, +oncia_CreateRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), +oncia_CreateRoleAction$_MODULE$ = null, +oncia_CreateRoleAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateRoleAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5674)); + oncia_CreateRoleAction$_MODULE$ = var$1; +}, +oncia_CreateRoleAction$_productArity = $this => { + return 0; +}, +oncia_CreateRoleAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateRoleAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateRoleAction$_hashCode = $this => { + return 1935470728; +}, +oncia_CreateRoleAction$_toString = $this => { + return $rt_s(5675); +}, +oncia_DatabaseManagementAction = $rt_classWithoutFields(oncia_DbmsAction), +oncia_DatabaseManagementAction_name = $this => { + return $this.$name20; +}, +oncia_DropDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), +oncia_DropDatabaseAction$_MODULE$ = null, +oncia_DropDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_DropDatabaseAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5676)); + oncia_DropDatabaseAction$_MODULE$ = var$1; +}, +oncia_DropDatabaseAction$_productArity = $this => { + return 0; +}, +oncia_DropDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_DropDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropDatabaseAction$_hashCode = $this => { + return 905223296; +}, +oncia_DropDatabaseAction$_toString = $this => { + return $rt_s(5677); +}, +oncia_CreateDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), +oncia_CreateDatabaseAction$_MODULE$ = null, +oncia_CreateDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateDatabaseAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5678)); + oncia_CreateDatabaseAction$_MODULE$ = var$1; +}, +oncia_CreateDatabaseAction$_productArity = $this => { + return 0; +}, +oncia_CreateDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateDatabaseAction$_hashCode = $this => { + return (-232690739); +}, +oncia_CreateDatabaseAction$_toString = $this => { + return $rt_s(5679); +}, +oncia_DropCompositeDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), +oncia_DropCompositeDatabaseAction$_MODULE$ = null; +let oncia_DropCompositeDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_DropCompositeDatabaseAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5680)); + oncia_DropCompositeDatabaseAction$_MODULE$ = var$1; +}, +oncia_DropCompositeDatabaseAction$_productArity = $this => { + return 0; +}, +oncia_DropCompositeDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_DropCompositeDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropCompositeDatabaseAction$_hashCode = $this => { + return 1071984105; +}, +oncia_DropCompositeDatabaseAction$_toString = $this => { + return $rt_s(5681); +}, +oncia_CreateCompositeDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), +oncia_CreateCompositeDatabaseAction$_MODULE$ = null, +oncia_CreateCompositeDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateCompositeDatabaseAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5682)); + oncia_CreateCompositeDatabaseAction$_MODULE$ = var$1; +}, +oncia_CreateCompositeDatabaseAction$_productArity = $this => { + return 0; +}, +oncia_CreateCompositeDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateCompositeDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateCompositeDatabaseAction$_hashCode = $this => { + return 1372079420; +}, +oncia_CreateCompositeDatabaseAction$_toString = $this => { + return $rt_s(5683); +}, +oncia_AliasManagementAction = $rt_classWithoutFields(oncia_DbmsAction), +oncia_AliasManagementAction_name = $this => { + return $this.$name20; +}, +oncia_DropAliasAction$ = $rt_classWithoutFields(oncia_AliasManagementAction), +oncia_DropAliasAction$_MODULE$ = null, +oncia_DropAliasAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_DropAliasAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5684)); + oncia_DropAliasAction$_MODULE$ = var$1; +}, +oncia_DropAliasAction$_productArity = $this => { + return 0; +}, +oncia_DropAliasAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_DropAliasAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropAliasAction$_hashCode = $this => { + return 2097535511; +}, +oncia_DropAliasAction$_toString = $this => { + return $rt_s(5685); +}, +oncia_CreateAliasAction$ = $rt_classWithoutFields(oncia_AliasManagementAction), +oncia_CreateAliasAction$_MODULE$ = null, +oncia_CreateAliasAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateAliasAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5686)); + oncia_CreateAliasAction$_MODULE$ = var$1; +}, +oncia_CreateAliasAction$_productArity = $this => { + return 0; +}, +oncia_CreateAliasAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateAliasAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateAliasAction$_hashCode = $this => { + return (-169142806); +}, +oncia_CreateAliasAction$_toString = $this => { + return $rt_s(5687); +}, +oncia_ConstraintManagementAction = $rt_classWithoutFields(oncia_DatabaseAction), +oncia_ConstraintManagementAction_name = $this => { + return $this.$name26; +}, +oncia_DropConstraintAction$ = $rt_classWithoutFields(oncia_ConstraintManagementAction), +oncia_DropConstraintAction$_MODULE$ = null, +oncia_DropConstraintAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_DropConstraintAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5688)); + oncia_DropConstraintAction$_MODULE$ = var$1; +}, +oncia_DropConstraintAction$_productArity = $this => { + return 0; +}, +oncia_DropConstraintAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_DropConstraintAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DropConstraintAction$_hashCode = $this => { + return 231460770; +}, +oncia_DropConstraintAction$_toString = $this => { + return $rt_s(5689); +}, +oncia_IndexManagementAction = $rt_classWithoutFields(oncia_DatabaseAction), +oncia_IndexManagementAction_name = $this => { + return $this.$name26; +}, +oncia_DropIndexAction$ = $rt_classWithoutFields(oncia_IndexManagementAction), +oncia_DropIndexAction$_MODULE$ = null, +oncia_DropIndexAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_DropIndexAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5690)); + oncia_DropIndexAction$_MODULE$ = var$1; +}, +oncia_DropIndexAction$_productArity = $this => { + return 0; +}, +oncia_DropIndexAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_DropIndexAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }; -function oncias_Scope$dumpTree$lambda$_24_0() { - let a = this; jl_Object.call(a); - a.$_0123 = null; - a.$_146 = null; - a.$_223 = null; -} -let oncias_Scope$dumpTree$lambda$_24_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_0123; - var$3 = var$0.$_146; - var$4 = var$0.$_223; - var$5 = sc_IterableOnceOps_toSeq$((oncias_Symbol_references(var$2.$symbolTable.$apply2(var$1))).$map(new oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0)); - var$6 = sm_Ordering$_MODULE$; - sm_Ordering$Int$_$callClinit(); - var$2 = sm_Ordering$Int$_MODULE$; - sm_Ordering$String$_$callClinit(); - var$2 = sc_AbstractIterable_mkString((var$5.$sorted(sm_Ordering$_Tuple2(var$6, var$2, sm_Ordering$String$_MODULE$))).$map(new oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0), $rt_s(384)); - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, var$4), var$1), $rt_s(9)), var$2), $rt_s(93)); - return scm_StringBuilder_append(var$3, jl_AbstractStringBuilder_toString(var$7)); +let oncia_DropIndexAction$_hashCode = $this => { + return (-815004903); +}, +oncia_DropIndexAction$_toString = $this => { + return $rt_s(5691); }; -function oncias_Scope$dumpTree$lambda$_24_1() { - let a = this; jl_Object.call(a); - a.$_0649 = null; - a.$_1222 = null; +function oncia_LoadPrivilege() { + let a = this; oncia_PrivilegeType.call(a); + a.$action5 = null; + a.$position328 = null; } -let oncias_Scope$dumpTree$lambda$_24_1_apply = (var$0, var$1) => { - oncias_Scope_dumpSingle(var$1, var$0.$_0649, var$0.$_1222); - return sr_BoxedUnit_UNIT; -}; -function oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0() { +let oncia_LoadPrivilege_productPrefix = $this => { + return $rt_s(5692); +}, +oncia_LoadPrivilege_productArity = $this => { + return 1; +}, +oncia_LoadPrivilege_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$action5; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_LoadPrivilege_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadPrivilege_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadPrivilege_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadPrivilege_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_LoadPrivilege) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$action5; + $x$1 = $x$1.$action5; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncia_LoadPrivilege__init_ = ($this, $action, $position) => { + $this.$action5 = $action; + $this.$position328 = $position; + oncia_PrivilegeType__init_($this, $action.$name()); +}, +oncia_LoadPrivilege__init_0 = (var_0, var_1) => { + let var_2 = new oncia_LoadPrivilege(); + oncia_LoadPrivilege__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_DataExchangeAction = $rt_classWithoutFields(0), +oncia_LoadActions = $rt_classWithoutFields(0), +oncia_LoadActions_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq($rt_s(4387)); +}, +oncia_LoadAllDataAction$ = $rt_classWithoutFields(), +oncia_LoadAllDataAction$_MODULE$ = null, +oncia_LoadAllDataAction$_name = null, +oncia_LoadAllDataAction$_$callClinit = () => { + oncia_LoadAllDataAction$_$callClinit = $rt_eraseClinit(oncia_LoadAllDataAction$); + oncia_LoadAllDataAction$__clinit_(); +}, +oncia_LoadAllDataAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_LoadAllDataAction$; + oncia_LoadAllDataAction$_$callClinit(); + oncia_LoadAllDataAction$_MODULE$ = var$1; + oncia_LoadActions_$init$(var$1); +}, +oncia_LoadAllDataAction$_name0 = $this => { + oncia_LoadAllDataAction$_$callClinit(); + return oncia_LoadAllDataAction$_name; +}, +oncia_LoadAllDataAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq = ($this, $x$1) => { + oncia_LoadAllDataAction$_$callClinit(); + oncia_LoadAllDataAction$_name = $x$1; +}, +oncia_LoadAllDataAction$_productArity = $this => { + return 0; +}, +oncia_LoadAllDataAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_LoadAllDataAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadAllDataAction$_hashCode = $this => { + return 1231963035; +}, +oncia_LoadAllDataAction$_toString = $this => { + return $rt_s(5693); +}, +oncia_ActionResourceBase = $rt_classWithoutFields(0), +oncia_ActionResource = $rt_classWithoutFields(0); +function oncia_FileResource() { jl_Object.call(this); - this.$_01041 = null; + this.$position313 = null; } -let oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01041; - return oncie_Variable__init_(var$1, var$2.$position()); -}; -function oncia_AdministrationCommand$semanticCheck$lambda$_13_0() { +let oncia_FileResource_productPrefix = $this => { + return $rt_s(5694); +}, +oncia_FileResource_productArity = $this => { + return 0; +}, +oncia_FileResource_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_FileResource_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_FileResource_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_FileResource_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_FileResource_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_FileResource)) + return 0; + return 1; +}, +oncia_FileResource__init_0 = ($this, $position) => { + $this.$position313 = $position; +}, +oncia_FileResource__init_ = var_0 => { + let var_1 = new oncia_FileResource(); + oncia_FileResource__init_0(var_1, var_0); + return var_1; +}, +oncia_PrivilegeQualifier = $rt_classWithoutFields(0), +oncia_LoadPrivilegeQualifier = $rt_classWithoutFields(0); +function oncia_LoadAllQualifier() { jl_Object.call(this); - this.$_0359 = null; + this.$position314 = null; } -let oncia_AdministrationCommand$semanticCheck$lambda$_13_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0359; - return var$1.$error2($rt_s(6772), var$1.$position()); +let oncia_LoadAllQualifier_productPrefix = $this => { + return $rt_s(5695); }, -s_DummyImplicit = $rt_classWithoutFields(), -oncia_ReturnItems$ReturnVariables$ = $rt_classWithoutFields(), -oncia_ReturnItems$ReturnVariables$_MODULE$ = null, -oncia_ReturnItems$ReturnVariables$__clinit_ = () => { - oncia_ReturnItems$ReturnVariables$_MODULE$ = new oncia_ReturnItems$ReturnVariables$; +oncia_LoadAllQualifier_productArity = $this => { + return 0; }, -oncia_ReturnItems$ReturnVariables$_empty = $this => { +oncia_LoadAllQualifier_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_LoadAllQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadAllQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadAllQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadAllQualifier_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_LoadAllQualifier)) + return 0; + return 1; +}, +oncia_LoadAllQualifier_dup = ($this, $children) => { + return $this; +}, +oncia_LoadAllQualifier__init_0 = ($this, $position) => { + $this.$position314 = $position; +}, +oncia_LoadAllQualifier__init_ = var_0 => { + let var_1 = new oncia_LoadAllQualifier(); + oncia_LoadAllQualifier__init_0(var_1, var_0); + return var_1; +}, +oncia_LoadCidrAction$ = $rt_classWithoutFields(), +oncia_LoadCidrAction$_MODULE$ = null, +oncia_LoadCidrAction$_name = null, +oncia_LoadCidrAction$_$callClinit = () => { + oncia_LoadCidrAction$_$callClinit = $rt_eraseClinit(oncia_LoadCidrAction$); + oncia_LoadCidrAction$__clinit_(); +}, +oncia_LoadCidrAction$__clinit_ = () => { let var$1; - var$1 = new oncia_ReturnItems$ReturnVariables; - s_package$_$callClinit(); - oncia_ReturnItems$ReturnVariables__init_0(var$1, 0, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); - return var$1; -}; -function sc_IterableOps$sliding$lambda$_64_0() { - jl_Object.call(this); - this.$_0703 = null; -} -let sc_IterableOps$sliding$lambda$_64_0_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_0703.$fromSpecific(var$1); -}; -function onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$3$lambda$_542_0() { - jl_Object.call(this); - this.$_083 = null; -} -let onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$3$lambda$_542_0_apply = var$0 => { - return var$0.$_083; + var$1 = new oncia_LoadCidrAction$; + oncia_LoadCidrAction$_$callClinit(); + oncia_LoadCidrAction$_MODULE$ = var$1; + oncia_LoadActions_$init$(var$1); +}, +oncia_LoadCidrAction$_name0 = $this => { + oncia_LoadCidrAction$_$callClinit(); + return oncia_LoadCidrAction$_name; +}, +oncia_LoadCidrAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq = ($this, $x$1) => { + oncia_LoadCidrAction$_$callClinit(); + oncia_LoadCidrAction$_name = $x$1; +}, +oncia_LoadCidrAction$_productArity = $this => { + return 0; +}, +oncia_LoadCidrAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_LoadCidrAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadCidrAction$_hashCode = $this => { + return (-492330896); +}, +oncia_LoadCidrAction$_toString = $this => { + return $rt_s(5696); }; -function oncia_CommandResultItem() { +function oncia_LoadCidrQualifier() { let a = this; jl_Object.call(a); - a.$originalName = null; - a.$aliasedVariable = null; - a.$position176 = null; + a.$cidr = null; + a.$position310 = null; } -let oncia_CommandResultItem_position = $this => { - return $this.$position176; -}, -oncia_CommandResultItem_productPrefix = $this => { - return $rt_s(6773); +let oncia_LoadCidrQualifier_productPrefix = $this => { + return $rt_s(5697); }, -oncia_CommandResultItem_productArity = $this => { - return 2; +oncia_LoadCidrQualifier_productArity = $this => { + return 1; }, -oncia_CommandResultItem_productElement = ($this, $x$1) => { +oncia_LoadCidrQualifier_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$originalName; - case 1: - return $this.$aliasedVariable; + return $this.$cidr; default: } return sr_Statics_ioobe($x$1); }, -oncia_CommandResultItem_productIterator = $this => { +oncia_LoadCidrQualifier_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CommandResultItem_hashCode = $this => { +oncia_LoadCidrQualifier_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CommandResultItem_toString = $this => { +oncia_LoadCidrQualifier_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CommandResultItem_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncia_LoadCidrQualifier_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_CommandResultItem) ? 0 : 1)) - break b; - c: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_LoadCidrQualifier) ? 0 : 1)) + break b; $x$1 = $x$1; - var$2 = $this.$originalName; - var$3 = $x$1.$originalName; + var$2 = $this.$cidr; + $x$1 = $x$1.$cidr; if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) + if (!var$2.$equals($x$1)) break b; else break c; } - if (var$3 !== null) + if ($x$1 !== null) break b; } - d: { - var$3 = $this.$aliasedVariable; - $x$1 = $x$1.$aliasedVariable; - if (var$3 !== null) { - if (!oncie_Variable_equals(var$3, $x$1)) + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}, +oncia_LoadCidrQualifier_dup = ($this, $children) => { + return oncia_LoadCidrQualifier__init_($children.$head(), $this.$position310); +}, +oncia_LoadCidrQualifier__init_0 = ($this, $cidr, $position) => { + $this.$cidr = $cidr; + $this.$position310 = $position; +}, +oncia_LoadCidrQualifier__init_ = (var_0, var_1) => { + let var_2 = new oncia_LoadCidrQualifier(); + oncia_LoadCidrQualifier__init_0(var_2, var_0, var_1); + return var_2; +}, +oncia_LoadUrlAction$ = $rt_classWithoutFields(), +oncia_LoadUrlAction$_MODULE$ = null, +oncia_LoadUrlAction$_name = null, +oncia_LoadUrlAction$_$callClinit = () => { + oncia_LoadUrlAction$_$callClinit = $rt_eraseClinit(oncia_LoadUrlAction$); + oncia_LoadUrlAction$__clinit_(); +}, +oncia_LoadUrlAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_LoadUrlAction$; + oncia_LoadUrlAction$_$callClinit(); + oncia_LoadUrlAction$_MODULE$ = var$1; + oncia_LoadActions_$init$(var$1); +}, +oncia_LoadUrlAction$_name0 = $this => { + oncia_LoadUrlAction$_$callClinit(); + return oncia_LoadUrlAction$_name; +}, +oncia_LoadUrlAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq = ($this, $x$1) => { + oncia_LoadUrlAction$_$callClinit(); + oncia_LoadUrlAction$_name = $x$1; +}, +oncia_LoadUrlAction$_productArity = $this => { + return 0; +}, +oncia_LoadUrlAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_LoadUrlAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadUrlAction$_hashCode = $this => { + return 1056493087; +}, +oncia_LoadUrlAction$_toString = $this => { + return $rt_s(5698); +}; +function oncia_LoadUrlQualifier() { + let a = this; jl_Object.call(a); + a.$url2 = null; + a.$position265 = null; +} +let oncia_LoadUrlQualifier_productPrefix = $this => { + return $rt_s(5699); +}, +oncia_LoadUrlQualifier_productArity = $this => { + return 1; +}, +oncia_LoadUrlQualifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$url2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_LoadUrlQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadUrlQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadUrlQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LoadUrlQualifier_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_LoadUrlQualifier) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$url2; + $x$1 = $x$1.$url2; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) break b; else - break d; + break c; } if ($x$1 !== null) break b; } - if (!($this instanceof oncia_CommandResultItem)) - break b; } - var$4 = 1; + var$3 = 1; break a; } - var$4 = 0; + var$3 = 0; } - return var$4; + return var$3; }, -oncia_CommandResultItem_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncia_LoadUrlQualifier_dup = ($this, $children) => { + return oncia_LoadUrlQualifier__init_($children.$head(), $this.$position265); }, -oncia_CommandResultItem__init_0 = ($this, $originalName, $aliasedVariable, $position) => { - $this.$originalName = $originalName; - $this.$aliasedVariable = $aliasedVariable; - $this.$position176 = $position; +oncia_LoadUrlQualifier__init_0 = ($this, $url, $position) => { + $this.$url2 = $url; + $this.$position265 = $position; }, -oncia_CommandResultItem__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncia_CommandResultItem(); - oncia_CommandResultItem__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oncifp_BaseState$semanticTable$lambda$_18_0() { - jl_Object.call(this); - this.$_0736 = null; -} -let oncifp_BaseState$semanticTable$lambda$_18_0_apply = var$0 => { - return oncifp_InitialState_fail(var$0.$_0736, $rt_s(6774)); -}; -function sc_MapOps$concat$lambda$_45_0() { - jl_Object.call(this); - this.$_0539 = null; -} -let sc_MapOps$concat$lambda$_45_0_apply = var$0 => { - return var$0.$_0539.$iterator0(); +oncia_LoadUrlQualifier__init_ = (var_0, var_1) => { + let var_2 = new oncia_LoadUrlQualifier(); + oncia_LoadUrlQualifier__init_0(var_2, var_0, var_1); + return var_2; }, -sci_MapOps$removedAll$lambda$_7_0 = $rt_classWithoutFields(), -sci_MapOps$removedAll$lambda$_7_0_apply = (var$0, var$1, var$2) => { - return var$1.$removed(var$2); -}; -function sm_Ordering$$anon$1() { - let a = this; jl_Object.call(a); - a.$$outer32 = null; - a.$f$10 = null; -} -let sm_Ordering$$anon$1_compare = ($this, $x, $y) => { - return $this.$$outer32.$compare2($this.$f$10.$apply2($x), $this.$f$10.$apply2($y)); -}; -function sc_View$ZipAll() { - let a = this; sc_AbstractView.call(a); - a.$underlying27 = null; - a.$other = null; - a.$thisElem = null; - a.$thatElem = null; -} -let sc_View$ZipAll_iterator = $this => { - return ($this.$underlying27.$iterator0()).$zipAll0($this.$other, $this.$thisElem, $this.$thatElem); +oncia_ShowConstraintAction$ = $rt_classWithoutFields(oncia_ConstraintManagementAction), +oncia_ShowConstraintAction$_MODULE$ = null, +oncia_ShowConstraintAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ShowConstraintAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5700)); + oncia_ShowConstraintAction$_MODULE$ = var$1; }, -sc_View$ZipAll_knownSize = $this => { - let $s1, var$2; - $s1 = $this.$underlying27.$knownSize(); - if ($s1 == (-1)) - return (-1); - var$2 = $this.$other.$length(); - if (var$2 != (-1)) - return jl_Math_max($s1, var$2); - return (-1); -}; -function oavr_CodePointBuffer() { - let a = this; jl_Object.call(a); - a.$type1 = null; - a.$byteBuffer0 = null; - a.$charBuffer0 = null; - a.$intBuffer0 = null; -} -let oavr_CodePointBuffer_$assertionsDisabled = 0, -oavr_CodePointBuffer_position = $this => { +oncia_ShowConstraintAction$_productArity = $this => { + return 0; +}, +oncia_ShowConstraintAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ShowConstraintAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowConstraintAction$_hashCode = $this => { + return (-867917904); +}, +oncia_ShowConstraintAction$_toString = $this => { + return $rt_s(5701); +}, +oncia_ShowIndexAction$ = $rt_classWithoutFields(oncia_IndexManagementAction), +oncia_ShowIndexAction$_MODULE$ = null, +oncia_ShowIndexAction$__clinit_ = () => { let var$1; - oavr_CodePointBuffer$1_$callClinit(); - switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type1.$ordinal]) { - case 1: - break; - case 2: - return $this.$charBuffer0.$position3; - case 3: - return $this.$intBuffer0.$position3; - default: - var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(6775)); - $rt_throw(var$1); - } - return $this.$byteBuffer0.$position3; + var$1 = new oncia_ShowIndexAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5702)); + oncia_ShowIndexAction$_MODULE$ = var$1; }, -oavr_CodePointBuffer_remaining = $this => { +oncia_ShowIndexAction$_productArity = $this => { + return 0; +}, +oncia_ShowIndexAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ShowIndexAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowIndexAction$_hashCode = $this => { + return 1987633739; +}, +oncia_ShowIndexAction$_toString = $this => { + return $rt_s(5703); +}, +oncia_TransactionManagementAction = $rt_classWithoutFields(oncia_DatabaseAction), +oncia_TransactionManagementAction_name = $this => { + return $this.$name26; +}, +oncia_ShowTransactionAction$ = $rt_classWithoutFields(oncia_TransactionManagementAction), +oncia_ShowTransactionAction$_MODULE$ = null, +oncia_ShowTransactionAction$__clinit_ = () => { let var$1; - oavr_CodePointBuffer$1_$callClinit(); - switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type1.$ordinal]) { - case 1: - break; - case 2: - return jn_Buffer_remaining($this.$charBuffer0); - case 3: - return jn_Buffer_remaining($this.$intBuffer0); - default: - var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(6775)); - $rt_throw(var$1); - } - return jn_Buffer_remaining($this.$byteBuffer0); + var$1 = new oncia_ShowTransactionAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5704)); + oncia_ShowTransactionAction$_MODULE$ = var$1; }, -oavr_CodePointBuffer_arrayOffset = $this => { +oncia_ShowTransactionAction$_productArity = $this => { + return 0; +}, +oncia_ShowTransactionAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ShowTransactionAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowTransactionAction$_hashCode = $this => { + return 524455191; +}, +oncia_ShowTransactionAction$_toString = $this => { + return $rt_s(5705); +}, +oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_00 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0_apply0 = var$0 => { + let var$1, var$2; + var$1 = new sci_$colon$colon; + var$2 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + return var$1; +}, +oncia_ShowAliasAction$ = $rt_classWithoutFields(oncia_AliasManagementAction), +oncia_ShowAliasAction$_MODULE$ = null, +oncia_ShowAliasAction$__clinit_ = () => { let var$1; - oavr_CodePointBuffer$1_$callClinit(); - switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type1.$ordinal]) { - case 1: - break; - case 2: - return $this.$charBuffer0.$start2; - case 3: - return $this.$intBuffer0.$start5; - default: - var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(6775)); - $rt_throw(var$1); - } - return $this.$byteBuffer0.$start3; + var$1 = new oncia_ShowAliasAction$; + oncia_DbmsAction__init_(var$1, $rt_s(4074)); + oncia_ShowAliasAction$_MODULE$ = var$1; }, -oavr_CodePointBuffer__clinit_ = () => { - oavr_CodePointBuffer_$assertionsDisabled = 0; +oncia_ShowAliasAction$_productArity = $this => { + return 0; }, -oavr_CharStream = $rt_classWithoutFields(0); -function oavr_CodePointCharStream() { - let a = this; jl_Object.call(a); - a.$size4 = 0; - a.$name63 = null; - a.$position6 = 0; -} -let oavr_CodePointCharStream_$assertionsDisabled = 0, -oavr_CodePointCharStream_fromBuffer = ($codePointBuffer, $name) => { - let var$3, var$4, var$5, var$6, var$7; - oavr_CodePointCharStream$1_$callClinit(); - switch (oavr_CodePointCharStream$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$codePointBuffer.$type1.$ordinal]) { - case 1: - var$3 = new oavr_CodePointCharStream$CodePoint8BitCharStream; - var$4 = oavr_CodePointBuffer_position($codePointBuffer); - var$5 = oavr_CodePointBuffer_remaining($codePointBuffer); - if (!oavr_CodePointBuffer_$assertionsDisabled && $codePointBuffer.$type1 !== oavr_CodePointBuffer$Type_BYTE) { - $codePointBuffer = new jl_AssertionError; - jl_Throwable__init_($codePointBuffer); - $rt_throw($codePointBuffer); - } - var$6 = $codePointBuffer.$byteBuffer0.$array6; - var$7 = oavr_CodePointBuffer_arrayOffset($codePointBuffer); - oavr_CodePointCharStream__init_(var$3, var$4, var$5, $name, null); - if (!oavr_CodePointCharStream$CodePoint8BitCharStream_$assertionsDisabled && var$7) { - $codePointBuffer = new jl_AssertionError; - jl_Throwable__init_($codePointBuffer); - $rt_throw($codePointBuffer); - } - var$3.$byteArray = var$6; - return var$3; - case 2: - var$3 = new oavr_CodePointCharStream$CodePoint16BitCharStream; - var$4 = oavr_CodePointBuffer_position($codePointBuffer); - var$5 = oavr_CodePointBuffer_remaining($codePointBuffer); - if (!oavr_CodePointBuffer_$assertionsDisabled && $codePointBuffer.$type1 !== oavr_CodePointBuffer$Type_CHAR) { - $codePointBuffer = new jl_AssertionError; - jl_Throwable__init_($codePointBuffer); - $rt_throw($codePointBuffer); - } - var$6 = $codePointBuffer.$charBuffer0.$array4; - var$7 = oavr_CodePointBuffer_arrayOffset($codePointBuffer); - oavr_CodePointCharStream__init_(var$3, var$4, var$5, $name, null); - var$3.$charArray = var$6; - if (!oavr_CodePointCharStream$CodePoint16BitCharStream_$assertionsDisabled && var$7) { - $codePointBuffer = new jl_AssertionError; - jl_Throwable__init_($codePointBuffer); - $rt_throw($codePointBuffer); - } - return var$3; - case 3: - var$3 = new oavr_CodePointCharStream$CodePoint32BitCharStream; - var$4 = oavr_CodePointBuffer_position($codePointBuffer); - var$5 = oavr_CodePointBuffer_remaining($codePointBuffer); - if (!oavr_CodePointBuffer_$assertionsDisabled && $codePointBuffer.$type1 !== oavr_CodePointBuffer$Type_INT) { - $codePointBuffer = new jl_AssertionError; - jl_Throwable__init_($codePointBuffer); - $rt_throw($codePointBuffer); - } - var$6 = $codePointBuffer.$intBuffer0.$array16; - var$7 = oavr_CodePointBuffer_arrayOffset($codePointBuffer); - oavr_CodePointCharStream__init_(var$3, var$4, var$5, $name, null); - var$3.$intArray = var$6; - if (!oavr_CodePointCharStream$CodePoint32BitCharStream_$assertionsDisabled && var$7) { - $codePointBuffer = new jl_AssertionError; - jl_Throwable__init_($codePointBuffer); - $rt_throw($codePointBuffer); - } - return var$3; - default: - } - $codePointBuffer = new jl_UnsupportedOperationException; - jl_Throwable__init_0($codePointBuffer, $rt_s(6775)); - $rt_throw($codePointBuffer); +oncia_ShowAliasAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavr_CodePointCharStream_consume = $this => { - let var$1, var$2, var$3; - var$1 = $this.$size4; - var$2 = $this.$position6; - if (var$1 - var$2 | 0) { - $this.$position6 = var$2 + 1 | 0; - return; - } - if (!oavr_CodePointCharStream_$assertionsDisabled && $this.$LA(1) != (-1)) { - var$3 = new jl_AssertionError; - jl_Throwable__init_(var$3); - $rt_throw(var$3); - } - var$3 = new jl_IllegalStateException; - jl_Throwable__init_0(var$3, $rt_s(6120)); - $rt_throw(var$3); +oncia_ShowAliasAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavr_CodePointCharStream_index = $this => { - return $this.$position6; +oncia_ShowAliasAction$_hashCode = $this => { + return 605206857; }, -oavr_CodePointCharStream_size = $this => { - return $this.$size4; +oncia_ShowAliasAction$_toString = $this => { + return $rt_s(5706); }, -oavr_CodePointCharStream_mark = $this => { - return (-1); +oncia_PrivilegeManagementAction = $rt_classWithoutFields(oncia_DbmsAction), +oncia_PrivilegeManagementAction_name = $this => { + return $this.$name20; }, -oavr_CodePointCharStream_release = ($this, $marker) => { - return; +oncia_ShowPrivilegeAction$ = $rt_classWithoutFields(oncia_PrivilegeManagementAction), +oncia_ShowPrivilegeAction$_MODULE$ = null; +let oncia_ShowPrivilegeAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ShowPrivilegeAction$; + oncia_DbmsAction__init_(var$1, $rt_s(4061)); + oncia_ShowPrivilegeAction$_MODULE$ = var$1; }, -oavr_CodePointCharStream_seek = ($this, $index) => { - $this.$position6 = $index; +oncia_ShowPrivilegeAction$_productArity = $this => { + return 0; }, -oavr_CodePointCharStream_toString = $this => { - return $this.$getText0(oavrm_Interval_of(0, $this.$size4 - 1 | 0)); +oncia_ShowPrivilegeAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavr_CodePointCharStream__init_ = ($this, $x0, $x1, $x2, $x3) => { - if (!oavr_CodePointCharStream_$assertionsDisabled && $x0) { - $x2 = new jl_AssertionError; - jl_Throwable__init_($x2); - $rt_throw($x2); - } - $this.$size4 = $x1; - $this.$name63 = $x2; - $this.$position6 = 0; +oncia_ShowPrivilegeAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavr_CodePointCharStream__clinit_ = () => { - oavr_CodePointCharStream_$assertionsDisabled = 0; +oncia_ShowPrivilegeAction$_hashCode = $this => { + return 632783722; }, -oncipl_CypherToken$ = $rt_classWithoutFields(), -oncipl_CypherToken$_MODULE$ = null, -oncipl_CypherToken$__clinit_ = () => { - oncipl_CypherToken$_MODULE$ = new oncipl_CypherToken$; +oncia_ShowPrivilegeAction$_toString = $this => { + return $rt_s(5707); }, -oncipv_Cypher25Parser$StatementsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StatementsContext_getRuleIndex = $this => { +oncia_ShowRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), +oncia_ShowRoleAction$_MODULE$ = null, +oncia_ShowRoleAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ShowRoleAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5708)); + oncia_ShowRoleAction$_MODULE$ = var$1; +}, +oncia_ShowRoleAction$_productArity = $this => { return 0; -}; -function oavr_RecognitionException() { - let a = this; jl_RuntimeException.call(a); - a.$recognizer = null; - a.$ctx = null; - a.$input = null; - a.$offendingToken = null; - a.$offendingState = 0; -} -let oavr_RecognitionException__init_ = ($this, $recognizer, $input, $ctx) => { - jl_Throwable__init_($this); - $this.$offendingState = (-1); - $this.$recognizer = $recognizer; - $this.$input = $input; - $this.$ctx = $ctx; - if ($recognizer !== null) - $this.$offendingState = $recognizer.$_stateNumber; }, -oavr_RecognitionException__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oavr_RecognitionException(); - oavr_RecognitionException__init_(var_3, var_0, var_1, var_2); - return var_3; +oncia_ShowRoleAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavr_RecognitionException_getExpectedTokens = $this => { +oncia_ShowRoleAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowRoleAction$_hashCode = $this => { + return 1544807753; +}, +oncia_ShowRoleAction$_toString = $this => { + return $rt_s(5709); +}, +oncia_ShowServerAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ShowServerAction$_MODULE$ = null, +oncia_ShowServerAction$__clinit_ = () => { let var$1; - var$1 = $this.$recognizer; - if (var$1 === null) - return null; - return oavra_ATN_getExpectedTokens(var$1.$getATN(), $this.$offendingState, $this.$ctx); + var$1 = new oncia_ShowServerAction$; + oncia_DbmsAction__init_(var$1, $rt_s(4083)); + oncia_ShowServerAction$_MODULE$ = var$1; }, -oavr_RecognitionException_getCtx = $this => { - return $this.$ctx; +oncia_ShowServerAction$_productArity = $this => { + return 0; }, -oavr_RecognitionException_getOffendingToken = $this => { - return $this.$offendingToken; +oncia_ShowServerAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticCheckResult$ = $rt_classWithoutFields(), -oncias_SemanticCheckResult$_MODULE$ = null, -oncias_SemanticCheckResult$_$callClinit = () => { - oncias_SemanticCheckResult$_$callClinit = $rt_eraseClinit(oncias_SemanticCheckResult$); - oncias_SemanticCheckResult$__clinit_(); +oncia_ShowServerAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckResult$__clinit_ = () => { +oncia_ShowServerAction$_hashCode = $this => { + return (-846939370); +}, +oncia_ShowServerAction$_toString = $this => { + return $rt_s(5710); +}, +oncia_ShowUserAction$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_ShowUserAction$_MODULE$ = null, +oncia_ShowUserAction$__clinit_ = () => { let var$1; - var$1 = new oncias_SemanticCheckResult$; - oncias_SemanticCheckResult$_$callClinit(); - oncias_SemanticCheckResult$_MODULE$ = var$1; + var$1 = new oncia_ShowUserAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5711)); + oncia_ShowUserAction$_MODULE$ = var$1; }, -oncias_SemanticCheckResult$_success = ($this, $s) => { - let var$2; - var$2 = new oncias_SemanticCheckResult; - s_package$_$callClinit(); - oncias_SemanticCheckResult__init_0(var$2, $s, sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$))); - return var$2; +oncia_ShowUserAction$_productArity = $this => { + return 0; }, -oncias_SemanticCheckResult$_error = ($this, $state, $error) => { - let var$3, var$4, var$5, var$6; - var$3 = new oncias_SemanticCheckResult; - s_package$_$callClinit(); - var$4 = s_package$_Vector(s_package$_MODULE$); - var$5 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); - var$6.data[0] = $error; - oncias_SemanticCheckResult__init_0(var$3, $state, var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6))); - return var$3; +oncia_ShowUserAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticCheckResult$_error0 = ($this, $state, $msg, $position) => { - oncias_SemanticError$_$callClinit(); - return oncias_SemanticCheckResult$_error($this, $state, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $msg, $position)); +oncia_ShowUserAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckResult$_error1 = ($this, $state, $error) => { - return oncias_SemanticCheckResult__init_($state, ($error.$iterator0()).$toSeq()); +oncia_ShowUserAction$_hashCode = $this => { + return 1653259486; }, -oncias_SemanticCheckInterpreter$ExecutableCheck$ = $rt_classWithoutFields(), -oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$ = null, -oncias_SemanticCheckInterpreter$ExecutableCheck$__clinit_ = () => { - oncias_SemanticCheckInterpreter$ExecutableCheck$_MODULE$ = new oncias_SemanticCheckInterpreter$ExecutableCheck$; +oncia_ShowUserAction$_toString = $this => { + return $rt_s(5712); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$_apply = ($this, $check) => { - let var$2; - var$2 = new oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper; - var$2.$check10 = $check; - return var$2; -}; -function oncia_SingleQuery$$anonfun$extractGraphSelection$1() { - sr_AbstractPartialFunction.call(this); - this.$clauses$6 = null; -} -let oncia_SingleQuery$$anonfun$extractGraphSelection$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - return !($x instanceof oncia_UseGraph) ? s_PartialFunction$_fallback_fn : s_Tuple2__init_($x, $this.$clauses$6.$tail()); -}; -function oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0() { - jl_Object.call(this); - this.$_06 = null; -} -let oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_06; - oncifp_ResolvedCall$_$callClinit(); - var$3 = var$1.$default2; - var$4 = new oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0; - var$4.$_0895 = var$1; - var$4 = s_Option_map(var$3, var$4); - var$3 = new oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1; - var$3.$_0387 = var$1; - var$3.$_1142 = var$2; - return s_Option_getOrElse(var$4, var$3); -}; -function oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0() { - jl_Object.call(this); - this.$_0503 = null; -} -let oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0_apply = (var$0, var$1, var$2) => { - return var$1.$chain(var$0.$_0503.$apply2(var$2)); +oncia_ShowSettingAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ShowSettingAction$_MODULE$ = null, +oncia_ShowSettingAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ShowSettingAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5713)); + oncia_ShowSettingAction$_MODULE$ = var$1; }, -oncia_UserAuth$checkDuplicateAuth$lambda$_12_0 = $rt_classWithoutFields(), -oncia_UserAuth$checkDuplicateAuth$lambda$_12_0_apply = (var$0, var$1) => { - return var$1.$provider0; +oncia_ShowSettingAction$_productArity = $this => { + return 0; +}, +oncia_ShowSettingAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ShowSettingAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowSettingAction$_hashCode = $this => { + return 1964217481; +}, +oncia_ShowSettingAction$_toString = $this => { + return $rt_s(5714); +}, +oncia_SetPasswordsAction$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_SetPasswordsAction$_MODULE$ = null, +oncia_SetPasswordsAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_SetPasswordsAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5715)); + oncia_SetPasswordsAction$_MODULE$ = var$1; +}, +oncia_SetPasswordsAction$_productArity = $this => { + return 0; +}, +oncia_SetPasswordsAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SetPasswordsAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetPasswordsAction$_hashCode = $this => { + return (-62627604); +}, +oncia_SetPasswordsAction$_toString = $this => { + return $rt_s(5716); +}, +oncia_SetUserStatusAction$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_SetUserStatusAction$_MODULE$ = null, +oncia_SetUserStatusAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_SetUserStatusAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5717)); + oncia_SetUserStatusAction$_MODULE$ = var$1; +}, +oncia_SetUserStatusAction$_productArity = $this => { + return 0; }; -function oncia_UserAuth$$anonfun$checkDuplicateAuth$2() { - sr_AbstractPartialFunction.call(this); - this.$$outer52 = null; -} -let oncia_UserAuth$$anonfun$checkDuplicateAuth$2_applyOrElse = ($this, $x, $default) => { - let var$3, var$4; - $x = $x; - if ($x !== null) { - $x = $x.$_2(); - if ($x !== null) { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x); - if ($x.$lengthCompare(2) >= 0) { - $x = $x.$apply1(1); - $default = $this.$$outer52; - var$3 = $x.$provider0; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6776)), var$3), $rt_s(6777)); - $default = $default.$error2(jl_AbstractStringBuilder_toString(var$4), $x.$position60); - } - } - } - return $default; +let oncia_SetUserStatusAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncia_UserAuth$checkDuplicateAuth$lambda$_12_1 = $rt_classWithoutFields(), -oncia_UserAuth$checkDuplicateAuth$lambda$_12_1_apply = var$0 => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +oncia_SetUserStatusAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0 = $rt_classWithoutFields(), -oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - b: { - c: { - var$2 = var$1.$provider0; - oncia_AdministrationCommand$_$callClinit(); - var$1 = oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$); - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$1)) - break b; - else - break c; - } - if (var$1 !== null) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return jl_Boolean_valueOf(var$3); +oncia_SetUserStatusAction$_hashCode = $this => { + return (-979916651); +}, +oncia_SetUserStatusAction$_toString = $this => { + return $rt_s(5718); +}, +oncia_SetUserHomeDatabaseAction$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_SetUserHomeDatabaseAction$_MODULE$ = null, +oncia_SetUserHomeDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_SetUserHomeDatabaseAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5719)); + oncia_SetUserHomeDatabaseAction$_MODULE$ = var$1; +}, +oncia_SetUserHomeDatabaseAction$_productArity = $this => { + return 0; +}, +oncia_SetUserHomeDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SetUserHomeDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetUserHomeDatabaseAction$_hashCode = $this => { + return (-381460387); +}, +oncia_SetUserHomeDatabaseAction$_toString = $this => { + return $rt_s(5720); +}, +oncia_SetDatabaseAccessAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), +oncia_SetDatabaseAccessAction$_MODULE$ = null, +oncia_SetDatabaseAccessAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_SetDatabaseAccessAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5721)); + oncia_SetDatabaseAccessAction$_MODULE$ = var$1; +}, +oncia_SetDatabaseAccessAction$_productArity = $this => { + return 0; +}, +oncia_SetDatabaseAccessAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SetDatabaseAccessAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetDatabaseAccessAction$_hashCode = $this => { + return 1167215927; +}, +oncia_SetDatabaseAccessAction$_toString = $this => { + return $rt_s(5722); +}, +oncia_SetAuthAction$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_SetAuthAction$_MODULE$ = null, +oncia_SetAuthAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_SetAuthAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5723)); + oncia_SetAuthAction$_MODULE$ = var$1; +}, +oncia_SetAuthAction$_productArity = $this => { + return 0; +}, +oncia_SetAuthAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SetAuthAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetAuthAction$_hashCode = $this => { + return (-1555849248); +}, +oncia_SetAuthAction$_toString = $this => { + return $rt_s(5724); +}, +oncia_SetPropertyAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_SetPropertyAction$_MODULE$ = null, +oncia_SetPropertyAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_SetPropertyAction$; + oncia_GraphAction__init_(var$1, $rt_s(5725), $rt_s(5726)); + oncia_SetPropertyAction$_MODULE$ = var$1; +}, +oncia_SetPropertyAction$_productArity = $this => { + return 0; +}, +oncia_SetPropertyAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SetPropertyAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetPropertyAction$_hashCode = $this => { + return 296372557; +}, +oncia_SetPropertyAction$_toString = $this => { + return $rt_s(5727); +}, +oncia_SetLabelAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_SetLabelAction$_MODULE$ = null, +oncia_SetLabelAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_SetLabelAction$; + oncia_GraphAction__init_(var$1, $rt_s(576), $rt_s(5728)); + oncia_SetLabelAction$_MODULE$ = var$1; +}, +oncia_SetLabelAction$_productArity = $this => { + return 0; +}, +oncia_SetLabelAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_SetLabelAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SetLabelAction$_hashCode = $this => { + return 412117160; +}, +oncia_SetLabelAction$_toString = $this => { + return $rt_s(5729); +}, +oncia_RemoveLabelAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_RemoveLabelAction$_MODULE$ = null, +oncia_RemoveLabelAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_RemoveLabelAction$; + oncia_GraphAction__init_(var$1, $rt_s(577), $rt_s(5730)); + oncia_RemoveLabelAction$_MODULE$ = var$1; +}, +oncia_RemoveLabelAction$_productArity = $this => { + return 0; +}, +oncia_RemoveLabelAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RemoveLabelAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }; -function oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0() { - let a = this; jl_Object.call(a); - a.$_0950 = null; - a.$_1333 = null; -} -let oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = var$1; - var$2 = var$0.$_0950; - var$3 = var$0.$_1333; - if (!s_Option_exists(var$1.$primaries, new oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_7_0)) { - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - ong_GqlStatusInfoCodes_$callClinit(); - var$5 = ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22003); - ong_ErrorClassification_$callClinit(); - var$5 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withClassification(var$5, ong_ErrorClassification_CLIENT_ERROR), (var$2.$position()).$line(), (var$2.$position()).$column(), (var$2.$position()).$offset()); - var$6 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withClassification(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_51N52), ong_ErrorClassification_CLIENT_ERROR), (var$2.$position()).$line(), (var$2.$position()).$column(), (var$2.$position()).$offset()); - ong_GqlParams$NumberParam_$callClinit(); - var$7 = ong_GqlParams$NumberParam_count; - s_Predef$_$callClinit(); - var$5.$cause1 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(var$6, var$7, jl_Integer_valueOf(sr_BoxesRunTime_unboxToInt(var$1.$primaries.$get1()))), ong_GqlParams$NumberParam_upper, jl_Integer_valueOf(11))); - var$5 = ong_ErrorGqlStatusObjectImplementation$Builder_build(var$5); - onciap_Prettifier$_$callClinit(); - var$6 = jl_String_trim(onciap_Prettifier$_extractTopology(onciap_Prettifier$_MODULE$, var$1)); - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(6778)), var$3), $rt_s(6779)), var$6), $rt_s(6780)); - var$4 = var$2.$error4(var$5, jl_AbstractStringBuilder_toString(var$7), var$2.$position()); - } - if (!s_Option_exists(var$1.$secondaries, new oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_9_0)) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - ong_GqlStatusInfoCodes_$callClinit(); - var$5 = ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22003); - ong_ErrorClassification_$callClinit(); - var$8 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withClassification(var$5, ong_ErrorClassification_CLIENT_ERROR), (var$2.$position()).$line(), (var$2.$position()).$column(), (var$2.$position()).$offset()); - var$6 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withClassification(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_51N53), ong_ErrorClassification_CLIENT_ERROR), (var$2.$position()).$line(), (var$2.$position()).$column(), (var$2.$position()).$offset()); - ong_GqlParams$NumberParam_$callClinit(); - var$7 = ong_GqlParams$NumberParam_count; - s_Predef$_$callClinit(); - var$8.$cause1 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(var$6, var$7, jl_Integer_valueOf(sr_BoxesRunTime_unboxToInt(var$1.$primaries.$get1()))), ong_GqlParams$NumberParam_upper, jl_Integer_valueOf(20))); - var$5 = ong_ErrorGqlStatusObjectImplementation$Builder_build(var$8); - onciap_Prettifier$_$callClinit(); - var$1 = jl_String_trim(onciap_Prettifier$_extractTopology(onciap_Prettifier$_MODULE$, var$1)); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6778)), var$3), $rt_s(6779)), var$1), $rt_s(6781)); - var$1 = var$2.$error4(var$5, jl_AbstractStringBuilder_toString(var$6), var$2.$position()); - } - return oncias_SemanticCheck_chain$(var$4, var$1); +let oncia_RemoveLabelAction$_hashCode = $this => { + return 1199511302; +}, +oncia_RemoveLabelAction$_toString = $this => { + return $rt_s(5731); +}, +oncia_RemoveRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), +oncia_RemoveRoleAction$_MODULE$ = null, +oncia_RemoveRoleAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_RemoveRoleAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5732)); + oncia_RemoveRoleAction$_MODULE$ = var$1; +}, +oncia_RemoveRoleAction$_productArity = $this => { + return 0; +}, +oncia_RemoveRoleAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RemoveRoleAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RemoveRoleAction$_hashCode = $this => { + return 1145077264; +}, +oncia_RemoveRoleAction$_toString = $this => { + return $rt_s(5733); +}, +oncia_RemovePrivilegeAction$ = $rt_classWithoutFields(oncia_PrivilegeManagementAction), +oncia_RemovePrivilegeAction$_MODULE$ = null, +oncia_RemovePrivilegeAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_RemovePrivilegeAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5734)); + oncia_RemovePrivilegeAction$_MODULE$ = var$1; +}, +oncia_RemovePrivilegeAction$_productArity = $this => { + return 0; +}, +oncia_RemovePrivilegeAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1 = $rt_classWithoutFields(), -oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1_apply = var$0 => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +oncia_RemovePrivilegeAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - oncia_SingleQuery$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = oncia_SingleQuery$_extractImportingWith(oncia_SingleQuery$_MODULE$, var$1); - var$4 = new oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0; - var$4.$_0397 = var$2; - var$3 = s_Option_map(var$3, var$4); - var$4 = new oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1; - var$4.$_01047 = var$2; - var$4.$_1357 = var$1; - return s_Option_getOrElse(var$3, var$4); +oncia_RemovePrivilegeAction$_hashCode = $this => { + return 759058179; }, -oncipv_Cypher5Parser$StatementsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StatementsContext_getRuleIndex = $this => { +oncia_RemovePrivilegeAction$_toString = $this => { + return $rt_s(5735); +}, +oncia_WriteAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_WriteAction$_MODULE$ = null, +oncia_WriteAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_WriteAction$; + oncia_GraphAction__init_(var$1, $rt_s(33), $rt_s(5736)); + oncia_WriteAction$_MODULE$ = var$1; +}, +oncia_WriteAction$_productArity = $this => { return 0; -}; -function oavr_CodePointBuffer$Builder() { - let a = this; jl_Object.call(a); - a.$type2 = null; - a.$byteBuffer = null; - a.$charBuffer = null; - a.$intBuffer = null; - a.$prevHighSurrogate = 0; +}, +oncia_WriteAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_WriteAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_WriteAction$_hashCode = $this => { + return (-1745828139); +}, +oncia_WriteAction$_toString = $this => { + return $rt_s(5737); +}, +oncia_GraphPrivilegeQualifier = $rt_classWithoutFields(0); +function oncia_ElementsAllQualifier() { + jl_Object.call(this); + this.$position330 = null; } -let oavr_CodePointBuffer$Builder_$assertionsDisabled = 0, -oavr_CodePointBuffer$Builder_build = $this => { - let var$1, var$2, var$3, var$4, var$5; - a: { - oavr_CodePointBuffer$1_$callClinit(); - switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type2.$ordinal]) { - case 1: - break; - case 2: - jn_Buffer_flip($this.$charBuffer); - break a; - case 3: - jn_Buffer_flip($this.$intBuffer); - break a; - default: - break a; - } - jn_Buffer_flip($this.$byteBuffer); - } - var$1 = new oavr_CodePointBuffer; - var$2 = $this.$type2; - var$3 = $this.$byteBuffer; - var$4 = $this.$charBuffer; - var$5 = $this.$intBuffer; - var$1.$type1 = var$2; - var$1.$byteBuffer0 = var$3; - var$1.$charBuffer0 = var$4; - var$1.$intBuffer0 = var$5; - return var$1; +let oncia_ElementsAllQualifier_productPrefix = $this => { + return $rt_s(5738); }, -oavr_CodePointBuffer$Builder_roundUpToNextPowerOfTwo = $i => { - return jl_Math_powImpl(2.0, 32 - jl_Integer_numberOfLeadingZeros($i - 1 | 0) | 0) | 0; +oncia_ElementsAllQualifier_productArity = $this => { + return 0; }, -oavr_CodePointBuffer$Builder_append = ($this, $utf16In) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - a: { - b: { - c: { - var$2 = jn_Buffer_remaining($utf16In); - oavr_CodePointBuffer$1_$callClinit(); - switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type2.$ordinal]) { - case 1: - break; - case 2: - break c; - case 3: - break b; - default: - break a; - } - if (jn_Buffer_remaining($this.$byteBuffer) >= var$2) - break a; - var$3 = jn_ByteBuffer_allocate(oavr_CodePointBuffer$Builder_roundUpToNextPowerOfTwo($this.$byteBuffer.$capacity0 + var$2 | 0)); - jn_Buffer_flip($this.$byteBuffer); - var$4 = $this.$byteBuffer; - jn_ByteBuffer_put(var$3, var$4.$array6, var$4.$start3 + var$4.$position3 | 0, jn_Buffer_remaining(var$4)); - $this.$byteBuffer = var$3; - break a; - } - if (jn_Buffer_remaining($this.$charBuffer) >= var$2) - break a; - var$3 = jn_CharBuffer_allocate(oavr_CodePointBuffer$Builder_roundUpToNextPowerOfTwo($this.$charBuffer.$capacity0 + var$2 | 0)); - jn_Buffer_flip($this.$charBuffer); - var$4 = $this.$charBuffer; - if (var$3.$readOnly) { - $utf16In = new jn_ReadOnlyBufferException; - jl_Throwable__init_($utf16In); - $rt_throw($utf16In); - } - if (jn_Buffer_remaining(var$3) < jn_Buffer_remaining(var$4)) { - $utf16In = new jn_BufferOverflowException; - jl_Throwable__init_($utf16In); - $rt_throw($utf16In); - } - var$5 = jn_Buffer_remaining(var$4); - var$6 = var$3.$position3; - var$7 = var$4.$position3; - var$8 = 0; - while (var$8 < var$5) { - var$9 = var$6 + 1 | 0; - var$2 = var$7 + 1 | 0; - jn_CharBufferOverArray_putChar(var$3, var$6, jn_CharBufferOverArray_getChar(var$4, var$7)); - var$8 = var$8 + 1 | 0; - var$6 = var$9; - var$7 = var$2; - } - var$3.$position3 = var$3.$position3 + var$5 | 0; - $this.$charBuffer = var$3; - break a; - } - if (jn_Buffer_remaining($this.$intBuffer) < var$2) { - var$3 = jn_IntBuffer_allocate(oavr_CodePointBuffer$Builder_roundUpToNextPowerOfTwo($this.$intBuffer.$capacity0 + var$2 | 0)); - jn_Buffer_flip($this.$intBuffer); - var$4 = $this.$intBuffer; - if (var$3.$readOnly0) { - $utf16In = new jn_ReadOnlyBufferException; - jl_Throwable__init_($utf16In); - $rt_throw($utf16In); - } - if (jn_Buffer_remaining(var$3) < jn_Buffer_remaining(var$4)) { - $utf16In = new jn_BufferOverflowException; - jl_Throwable__init_($utf16In); - $rt_throw($utf16In); - } - var$5 = jn_Buffer_remaining(var$4); - var$6 = var$3.$position3; - var$7 = var$4.$position3; - var$8 = 0; - while (var$8 < var$5) { - var$9 = var$6 + 1 | 0; - var$2 = var$7 + 1 | 0; - jn_IntBufferOverArray_putElement(var$3, var$6, var$4.$array16.data[var$7 + var$4.$start5 | 0]); - var$8 = var$8 + 1 | 0; - var$6 = var$9; - var$7 = var$2; - } - var$3.$position3 = var$3.$position3 + var$5 | 0; - $this.$intBuffer = var$3; - } - } - var$2 = oavr_CodePointBuffer$Builder_$assertionsDisabled; - d: { - switch (oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type.data[$this.$type2.$ordinal]) { - case 1: - if (!var$2 && $this.$prevHighSurrogate != (-1)) { - $utf16In = new jl_AssertionError; - jl_Throwable__init_($utf16In); - $rt_throw($utf16In); - } - var$10 = $utf16In.$array4; - var$9 = $utf16In.$start2; - var$5 = var$9 + $utf16In.$position3 | 0; - var$6 = var$9 + $utf16In.$limit2 | 0; - var$3 = $this.$byteBuffer; - var$11 = var$3.$array6; - var$7 = var$3.$start3 + var$3.$position3 | 0; - e: { - while (var$5 < var$6) { - var$8 = var$10.data[var$5]; - if (var$8 > 255) { - jn_Buffer_position($utf16In, var$5 - var$9 | 0); - var$3 = $this.$byteBuffer; - jn_Buffer_position(var$3, var$7 - var$3.$start3 | 0); - if (jl_Character_isHighSurrogate(var$8)) { - oavr_CodePointBuffer$Builder_byteToIntBuffer($this, jn_Buffer_remaining($utf16In)); - oavr_CodePointBuffer$Builder_appendArrayInt($this, $utf16In); - break e; - } - oavr_CodePointBuffer$Builder_byteToCharBuffer($this, jn_Buffer_remaining($utf16In)); - oavr_CodePointBuffer$Builder_appendArrayChar($this, $utf16In); - break e; - } - var$11.data[var$7] = (var$8 & 255) << 24 >> 24; - var$5 = var$5 + 1 | 0; - var$7 = var$7 + 1 | 0; - } - jn_Buffer_position($utf16In, var$5 - var$9 | 0); - $utf16In = $this.$byteBuffer; - jn_Buffer_position($utf16In, var$7 - $utf16In.$start3 | 0); - } - break d; - case 2: - break; - case 3: - oavr_CodePointBuffer$Builder_appendArrayInt($this, $utf16In); - break d; - default: - break d; - } - oavr_CodePointBuffer$Builder_appendArrayChar($this, $utf16In); - } +oncia_ElementsAllQualifier_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavr_CodePointBuffer$Builder_appendArrayChar = ($this, $utf16In) => { - let var$2, $outOffset, $inOffset, $inLimit, var$6, var$7, $c, var$9; - if (!oavr_CodePointBuffer$Builder_$assertionsDisabled && $this.$prevHighSurrogate != (-1)) { - $utf16In = new jl_AssertionError; - jl_Throwable__init_($utf16In); - $rt_throw($utf16In); - } - var$2 = $utf16In.$array4; - $outOffset = $utf16In.$start2; - $inOffset = $outOffset + $utf16In.$position3 | 0; - $inLimit = $outOffset + $utf16In.$limit2 | 0; - var$6 = $this.$charBuffer; - var$7 = var$6.$array4; - $outOffset = var$6.$start2 + var$6.$position3 | 0; - while ($inOffset < $inLimit) { - $c = var$2.data[$inOffset]; - if (jl_Character_isHighSurrogate($c)) { - jn_Buffer_position($utf16In, $inOffset - $utf16In.$start2 | 0); - var$6 = $this.$charBuffer; - jn_Buffer_position(var$6, $outOffset - var$6.$start2 | 0); - $inOffset = jn_Buffer_remaining($utf16In); - jn_Buffer_flip($this.$charBuffer); - var$6 = jn_IntBuffer_allocate(jl_Math_max(jn_Buffer_remaining($this.$charBuffer) + $inOffset | 0, $this.$charBuffer.$capacity0 / 2 | 0)); - while (true) { - if (!jn_Buffer_hasRemaining($this.$charBuffer)) { - $this.$type2 = oavr_CodePointBuffer$Type_INT; - $this.$charBuffer = null; - $this.$intBuffer = var$6; - oavr_CodePointBuffer$Builder_appendArrayInt($this, $utf16In); - return; - } - var$9 = $this.$charBuffer; - $inLimit = var$9.$position3; - if ($inLimit >= var$9.$limit2) - break; - var$9.$position3 = $inLimit + 1 | 0; - jn_IntBufferImpl_put(var$6, jn_CharBufferOverArray_getChar(var$9, $inLimit) & 65535); - } - $utf16In = new jn_BufferUnderflowException; - jl_Throwable__init_($utf16In); - $rt_throw($utf16In); - } - var$7.data[$outOffset] = $c; - $inOffset = $inOffset + 1 | 0; - $outOffset = $outOffset + 1 | 0; - } - jn_Buffer_position($utf16In, $inOffset - $utf16In.$start2 | 0); - $utf16In = $this.$charBuffer; - jn_Buffer_position($utf16In, $outOffset - $utf16In.$start2 | 0); +oncia_ElementsAllQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavr_CodePointBuffer$Builder_appendArrayInt = ($this, $utf16In) => { - let var$2, var$3, $inOffset, $inLimit, var$6, var$7, $outOffset, $c, var$10; - var$2 = $utf16In.$array4; - var$3 = $utf16In.$start2; - $inOffset = var$3 + $utf16In.$position3 | 0; - $inLimit = var$3 + $utf16In.$limit2 | 0; - var$6 = $this.$intBuffer; - var$7 = var$6.$array16; - $outOffset = var$6.$start5 + var$6.$position3 | 0; - while ($inOffset < $inLimit) { - $c = var$2.data[$inOffset]; - $inOffset = $inOffset + 1 | 0; - if ($this.$prevHighSurrogate == (-1)) { - if (jl_Character_isHighSurrogate($c)) - $this.$prevHighSurrogate = $c & 65535; - else { - var$7.data[$outOffset] = $c & 65535; - $outOffset = $outOffset + 1 | 0; - } - } else if (jl_Character_isLowSurrogate($c)) { - var$7.data[$outOffset] = jl_Character_toCodePoint($this.$prevHighSurrogate & 65535, $c); - $outOffset = $outOffset + 1 | 0; - $this.$prevHighSurrogate = (-1); - } else { - var$10 = var$7.data; - var$10[$outOffset] = $this.$prevHighSurrogate; - $outOffset = $outOffset + 1 | 0; - if (jl_Character_isHighSurrogate($c)) - $this.$prevHighSurrogate = $c & 65535; - else { - var$10[$outOffset] = $c & 65535; - $outOffset = $outOffset + 1 | 0; - $this.$prevHighSurrogate = (-1); - } - } - } - var$3 = $this.$prevHighSurrogate; - if (var$3 != (-1)) { - var$7.data[$outOffset] = var$3 & 65535; - $outOffset = $outOffset + 1 | 0; - } - jn_Buffer_position($utf16In, $inOffset - $utf16In.$start2 | 0); - $utf16In = $this.$intBuffer; - jn_Buffer_position($utf16In, $outOffset - $utf16In.$start5 | 0); +oncia_ElementsAllQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oavr_CodePointBuffer$Builder_byteToCharBuffer = ($this, $toAppend) => { - let $newBuffer, var$3; - jn_Buffer_flip($this.$byteBuffer); - $newBuffer = jn_CharBuffer_allocate(jl_Math_max(jn_Buffer_remaining($this.$byteBuffer) + $toAppend | 0, $this.$byteBuffer.$capacity0 / 2 | 0)); - while (jn_Buffer_hasRemaining($this.$byteBuffer)) { - $toAppend = jn_ByteBufferImpl_get($this.$byteBuffer) & 255 & 65535; - if ($newBuffer.$readOnly) { - $newBuffer = new jn_ReadOnlyBufferException; - jl_Throwable__init_($newBuffer); - $rt_throw($newBuffer); - } - var$3 = $newBuffer.$position3; - if (var$3 >= $newBuffer.$limit2) { - $newBuffer = new jn_BufferOverflowException; - jl_Throwable__init_($newBuffer); - $rt_throw($newBuffer); - } - $newBuffer.$position3 = var$3 + 1 | 0; - jn_CharBufferOverArray_putChar($newBuffer, var$3, $toAppend); - } - $this.$type2 = oavr_CodePointBuffer$Type_CHAR; - $this.$byteBuffer = null; - $this.$charBuffer = $newBuffer; +oncia_ElementsAllQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oavr_CodePointBuffer$Builder_byteToIntBuffer = ($this, $toAppend) => { - let $newBuffer; - jn_Buffer_flip($this.$byteBuffer); - $newBuffer = jn_IntBuffer_allocate(jl_Math_max(jn_Buffer_remaining($this.$byteBuffer) + $toAppend | 0, $this.$byteBuffer.$capacity0 / 4 | 0)); - while (jn_Buffer_hasRemaining($this.$byteBuffer)) { - jn_IntBufferImpl_put($newBuffer, jn_ByteBufferImpl_get($this.$byteBuffer) & 255); - } - $this.$type2 = oavr_CodePointBuffer$Type_INT; - $this.$byteBuffer = null; - $this.$intBuffer = $newBuffer; +oncia_ElementsAllQualifier_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_ElementsAllQualifier)) + return 0; + return 1; }, -oavr_CodePointBuffer$Builder__clinit_ = () => { - oavr_CodePointBuffer$Builder_$assertionsDisabled = 0; +oncia_ElementsAllQualifier_dup = ($this, $children) => { + return $this; }, -oavr_CodePointCharStream$1 = $rt_classWithoutFields(), -oavr_CodePointCharStream$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type = null, -oavr_CodePointCharStream$1_$callClinit = () => { - oavr_CodePointCharStream$1_$callClinit = $rt_eraseClinit(oavr_CodePointCharStream$1); - oavr_CodePointCharStream$1__clinit_(); +oncia_ElementsAllQualifier__init_ = ($this, $position) => { + $this.$position330 = $position; }, -oavr_CodePointCharStream$1__clinit_ = () => { - let var$1, var$2; - var$1 = $rt_createIntArray((oavr_CodePointBuffer$Type_values()).data.length); - var$2 = var$1.data; - oavr_CodePointCharStream$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type = var$1; - var$2[oavr_CodePointBuffer$Type_BYTE.$ordinal] = 1; - var$2[oavr_CodePointBuffer$Type_CHAR.$ordinal] = 2; - var$2[oavr_CodePointBuffer$Type_INT.$ordinal] = 3; -}; -function oavr_CodePointCharStream$CodePoint8BitCharStream() { - oavr_CodePointCharStream.call(this); - this.$byteArray = null; -} -let oavr_CodePointCharStream$CodePoint8BitCharStream_$assertionsDisabled = 0, -oavr_CodePointCharStream$CodePoint8BitCharStream_getText = ($this, $interval) => { - let $startIdx, $len, var$4, var$5, var$6, var$7, $$je; - $startIdx = jl_Math_min($interval.$a0, $this.$size4); - $len = jl_Math_min(($interval.$b - $interval.$a0 | 0) + 1 | 0, $this.$size4 - $startIdx | 0); - $interval = new jl_String; - var$4 = $this.$byteArray; - jnc_StandardCharsets_$callClinit(); - var$5 = jnc_StandardCharsets_ISO_8859_1; - var$6 = jn_ByteBuffer_wrap(var$4, $startIdx, $len); - a: { - try { - var$7 = jnci_Iso8859Charset_newDecoder(var$5); - jnc_CodingErrorAction_$callClinit(); - var$5 = jnc_CharsetDecoder_decode0(jnc_CharsetDecoder_onUnmappableCharacter(jnc_CharsetDecoder_onMalformedInput(var$7, jnc_CodingErrorAction_REPLACE), jnc_CodingErrorAction_REPLACE), var$6); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jnc_CharacterCodingException) { - var$5 = $$je; - } else { - throw $$e; - } - } - var$6 = new jl_AssertionError; - jl_Throwable__init_1(var$6, $rt_s(11), var$5); - $rt_throw(var$6); - } - if (!var$5.$position3 && var$5.$limit2 == var$5.$capacity0) - var$4 = var$5.$array4; - else { - var$4 = $rt_createCharArray(jn_Buffer_remaining(var$5)); - jn_CharBuffer_get(var$5, var$4, 0, var$4.data.length); - } - $interval.$nativeString = $rt_fullArrayToString(var$4.data); - return $interval; +oncia_ElementsAllQualifier__init_0 = var_0 => { + let var_1 = new oncia_ElementsAllQualifier(); + oncia_ElementsAllQualifier__init_(var_1, var_0); + return var_1; }, -oavr_CodePointCharStream$CodePoint8BitCharStream_LA = ($this, $i) => { - let $offset, var$3; - switch (jl_Integer_signum($i)) { - case -1: - $offset = $this.$position6 + $i | 0; - if ($offset < 0) - return (-1); - return $this.$byteArray.data[$offset] & 255; - case 0: - break; - case 1: - $offset = ($this.$position6 + $i | 0) - 1 | 0; - if ($offset >= $this.$size4) - return (-1); - return $this.$byteArray.data[$offset] & 255; - default: - var$3 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$3, $rt_s(6775)); - $rt_throw(var$3); - } +oncia_AllConstraintActions$ = $rt_classWithoutFields(oncia_ConstraintManagementAction), +oncia_AllConstraintActions$_MODULE$ = null, +oncia_AllConstraintActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllConstraintActions$; + oncia_DatabaseAction__init_(var$1, $rt_s(5739)); + oncia_AllConstraintActions$_MODULE$ = var$1; +}, +oncia_AllConstraintActions$_productArity = $this => { return 0; }, -oavr_CodePointCharStream$CodePoint8BitCharStream__clinit_ = () => { - oavr_CodePointCharStream$CodePoint8BitCharStream_$assertionsDisabled = 0; -}; -function oavr_CodePointCharStream$CodePoint16BitCharStream() { - oavr_CodePointCharStream.call(this); - this.$charArray = null; -} -let oavr_CodePointCharStream$CodePoint16BitCharStream_$assertionsDisabled = 0, -oavr_CodePointCharStream$CodePoint16BitCharStream_getText = ($this, $interval) => { - let $startIdx, $len; - $startIdx = jl_Math_min($interval.$a0, $this.$size4); - $len = jl_Math_min(($interval.$b - $interval.$a0 | 0) + 1 | 0, $this.$size4 - $startIdx | 0); - return jl_String__init_1($this.$charArray, $startIdx, $len); +oncia_AllConstraintActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavr_CodePointCharStream$CodePoint16BitCharStream_LA = ($this, $i) => { - let $offset, var$3; - switch (jl_Integer_signum($i)) { - case -1: - $offset = $this.$position6 + $i | 0; - if ($offset < 0) - return (-1); - return $this.$charArray.data[$offset] & 65535; - case 0: - break; - case 1: - $offset = ($this.$position6 + $i | 0) - 1 | 0; - if ($offset >= $this.$size4) - return (-1); - return $this.$charArray.data[$offset] & 65535; - default: - var$3 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$3, $rt_s(6775)); - $rt_throw(var$3); - } +oncia_AllConstraintActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllConstraintActions$_hashCode = $this => { + return (-2117322529); +}, +oncia_AllConstraintActions$_toString = $this => { + return $rt_s(5740); +}, +oncia_AllIndexActions$ = $rt_classWithoutFields(oncia_IndexManagementAction), +oncia_AllIndexActions$_MODULE$ = null, +oncia_AllIndexActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllIndexActions$; + oncia_DatabaseAction__init_(var$1, $rt_s(5741)); + oncia_AllIndexActions$_MODULE$ = var$1; +}, +oncia_AllIndexActions$_productArity = $this => { return 0; }, -oavr_CodePointCharStream$CodePoint16BitCharStream__clinit_ = () => { - oavr_CodePointCharStream$CodePoint16BitCharStream_$assertionsDisabled = 0; -}; -function oavr_CodePointCharStream$CodePoint32BitCharStream() { - oavr_CodePointCharStream.call(this); - this.$intArray = null; -} -let oavr_CodePointCharStream$CodePoint32BitCharStream_$assertionsDisabled = 0, -oavr_CodePointCharStream$CodePoint32BitCharStream_getText = ($this, $interval) => { - let $startIdx, $len, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; - $startIdx = jl_Math_min($interval.$a0, $this.$size4); - $len = jl_Math_min(($interval.$b - $interval.$a0 | 0) + 1 | 0, $this.$size4 - $startIdx | 0); - $interval = new jl_String; - var$4 = $this.$intArray; - var$5 = $rt_createCharArray($len * 2 | 0); - var$6 = var$5.data; - var$7 = 0; - var$8 = 0; - while (var$8 < $len) { - var$9 = var$4.data; - var$10 = $startIdx + 1 | 0; - var$11 = var$9[$startIdx]; - if (var$11 < 65536) { - var$12 = var$7 + 1 | 0; - var$6[var$7] = var$11 & 65535; - } else { - $startIdx = var$7 + 1 | 0; - var$6[var$7] = jl_Character_highSurrogate(var$11); - var$12 = $startIdx + 1 | 0; - var$6[$startIdx] = jl_Character_lowSurrogate(var$11); - } - var$8 = var$8 + 1 | 0; - $startIdx = var$10; - var$7 = var$12; - } - if (var$7 < var$6.length) - var$5 = ju_Arrays_copyOf1(var$5, var$7); - $interval.$nativeString = $rt_fullArrayToString(var$5.data); - return $interval; +oncia_AllIndexActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavr_CodePointCharStream$CodePoint32BitCharStream_LA = ($this, $i) => { - let $offset, var$3; - switch (jl_Integer_signum($i)) { - case -1: - $offset = $this.$position6 + $i | 0; - if ($offset < 0) - return (-1); - return $this.$intArray.data[$offset]; - case 0: - break; - case 1: - $offset = ($this.$position6 + $i | 0) - 1 | 0; - if ($offset >= $this.$size4) - return (-1); - return $this.$intArray.data[$offset]; - default: - var$3 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$3, $rt_s(6775)); - $rt_throw(var$3); - } +oncia_AllIndexActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllIndexActions$_hashCode = $this => { + return (-1599036436); +}, +oncia_AllIndexActions$_toString = $this => { + return $rt_s(5742); +}, +oncia_AccessDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseAction), +oncia_AccessDatabaseAction$_MODULE$ = null, +oncia_AccessDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AccessDatabaseAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(4273)); + oncia_AccessDatabaseAction$_MODULE$ = var$1; +}, +oncia_AccessDatabaseAction$_productArity = $this => { return 0; }, -oavr_CodePointCharStream$CodePoint32BitCharStream__clinit_ = () => { - oavr_CodePointCharStream$CodePoint32BitCharStream_$assertionsDisabled = 0; -}; -function oavra_LexerATNSimulator() { - let a = this; oavra_ATNSimulator.call(a); - a.$recog = null; - a.$startIndex0 = 0; - a.$line0 = 0; - a.$charPositionInLine = 0; - a.$decisionToDFA = null; - a.$mode4 = 0; - a.$prevAccept = null; -} -let oavra_LexerATNSimulator_$assertionsDisabled = 0, -oavra_LexerATNSimulator__init_0 = ($this, $recog, $atn, $decisionToDFA, $sharedContextCache) => { - oavra_ATNSimulator__init_($this, $atn, $sharedContextCache); - $this.$startIndex0 = (-1); - $this.$line0 = 1; - $this.$charPositionInLine = 0; - $this.$mode4 = 0; - $atn = new oavra_LexerATNSimulator$SimState; - $atn.$index8 = (-1); - $atn.$line6 = 0; - $atn.$charPos = (-1); - $this.$prevAccept = $atn; - $this.$decisionToDFA = $decisionToDFA; - $this.$recog = $recog; +oncia_AccessDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_LexerATNSimulator__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oavra_LexerATNSimulator(); - oavra_LexerATNSimulator__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; +oncia_AccessDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_LexerATNSimulator_match = ($this, $input, $mode) => { - let $dfa, $$je; - $this.$mode4 = $mode; - a: { - b: { - c: { - try { - $this.$startIndex0 = oavr_CodePointCharStream_index($input); - oavra_LexerATNSimulator$SimState_reset($this.$prevAccept); - $dfa = $this.$decisionToDFA.data[$mode]; - if ($dfa.$s0 !== null) - break c; - $mode = oavra_LexerATNSimulator_matchATN($this, $input); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $input = $$je; - break b; - - } - return $mode; - } - try { - $mode = oavra_LexerATNSimulator_execATN($this, $input, $dfa.$s0); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $input = $$je; - - } - } - $rt_throw($input); - } - return $mode; +oncia_AccessDatabaseAction$_hashCode = $this => { + return (-673994187); }, -oavra_LexerATNSimulator_reset = $this => { - oavra_LexerATNSimulator$SimState_reset($this.$prevAccept); - $this.$startIndex0 = (-1); - $this.$line0 = 1; - $this.$charPositionInLine = 0; - $this.$mode4 = 0; +oncia_AccessDatabaseAction$_toString = $this => { + return $rt_s(5743); }, -oavra_LexerATNSimulator_matchATN = ($this, $input) => { - let $startState, var$3, $s0_closure, var$5, var$6, $next, $suppressEdge; - $startState = ju_ArrayList_get($this.$atn.$modeToStartState, $this.$mode4); - oavra_EmptyPredictionContext_$callClinit(); - var$3 = oavra_EmptyPredictionContext_Instance; - $s0_closure = oavra_OrderedATNConfigSet__init_(); - var$5 = 0; - while (var$5 < oavra_ATNState_getNumberOfTransitions($startState)) { - var$6 = (oavra_ATNState_transition($startState, var$5)).$target; - $next = new oavra_LexerATNConfig; - var$5 = var$5 + 1 | 0; - oavra_ATNConfig__init_1($next, var$6, var$5, var$3, oavra_SemanticContext$Empty_Instance); - $next.$passedThroughNonGreedyDecision = 0; - $next.$lexerActionExecutor = null; - oavra_LexerATNSimulator_closure($this, $input, $next, $s0_closure, 0, 0, 0); - } - $suppressEdge = $s0_closure.$hasSemanticContext; - $s0_closure.$hasSemanticContext = 0; - $next = oavra_LexerATNSimulator_addDFAState($this, $s0_closure); - if (!$suppressEdge) - $this.$decisionToDFA.data[$this.$mode4].$s0 = $next; - return oavra_LexerATNSimulator_execATN($this, $input, $next); +oncia_AllTokenActions$ = $rt_classWithoutFields(oncia_NameManagementAction), +oncia_AllTokenActions$_MODULE$ = null, +oncia_AllTokenActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllTokenActions$; + oncia_DatabaseAction__init_(var$1, $rt_s(5744)); + oncia_AllTokenActions$_MODULE$ = var$1; }, -oavra_LexerATNSimulator_execATN = ($this, $input, $s) => { - let $t, var$4, $target, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $$je; - if ($s.$isAcceptState) - oavra_LexerATNSimulator_captureSimState($this, $this.$prevAccept, $input, $s); - $t = $input.$LA(1); - a: { - while (true) { - var$4 = $s.$edges; - $target = var$4 !== null && $t >= 0 && $t <= 127 ? var$4.data[$t - 0 | 0] : null; - if ($target === null) { - var$6 = oavra_OrderedATNConfigSet__init_(); - $target = $s.$configs; - var$7 = 0; - var$8 = oavra_ATNConfigSet_iterator($target); - while (ju_AbstractList$1_hasNext(var$8)) { - var$9 = ju_AbstractList$1_next(var$8); - var$10 = var$9.$alt0 != var$7 ? 0 : 1; - if (var$10 && var$9.$passedThroughNonGreedyDecision) - continue; - var$11 = oavra_ATNState_getNumberOfTransitions(var$9.$state0); - var$12 = 0; - var$13 = var$9; - b: { - while (var$12 < var$11) { - $target = oavra_ATNState_transition(var$9.$state0, var$12); - $target = !$target.$matches3($t, 0, 1114111) ? null : $target.$target; - if ($target !== null) { - var$14 = var$13.$lexerActionExecutor; - if (var$14 !== null) { - var$15 = $input.$position6 - $this.$startIndex0 | 0; - var$16 = null; - var$17 = 0; - while (true) { - var$4 = var$14.$lexerActions.data; - if (var$17 >= var$4.length) - break; - if (var$4[var$17].$isPositionDependent()) { - var$4 = var$14.$lexerActions; - var$18 = var$4.data; - if (!(var$18[var$17] instanceof oavra_LexerIndexedCustomAction)) { - if (var$16 === null) - var$16 = var$4.$clone0(); - var$4 = var$16.data; - var$19 = new oavra_LexerIndexedCustomAction; - var$20 = var$18[var$17]; - var$19.$offset3 = var$15; - var$19.$action4 = var$20; - var$4[var$17] = var$19; - } - } - var$17 = var$17 + 1 | 0; - } - if (var$16 !== null) - var$14 = oavra_LexerActionExecutor__init_0(var$16); - } - var$21 = $t != (-1) ? 0 : 1; - if (oavra_LexerATNSimulator_closure($this, $input, oavra_LexerATNConfig__init_0(var$13, $target, var$14), var$6, var$10, 1, var$21)) { - var$7 = var$9.$alt0; - break b; - } - } - var$12 = var$12 + 1 | 0; - } - } - } - if (oavra_ATNConfigSet_isEmpty(var$6)) { - if (!var$6.$hasSemanticContext) { - oavra_ATNSimulator_$callClinit(); - oavra_LexerATNSimulator_addDFAEdge($this, $s, $t, oavra_ATNSimulator_ERROR); - } - oavra_ATNSimulator_$callClinit(); - $target = oavra_ATNSimulator_ERROR; - } else { - var$11 = var$6.$hasSemanticContext; - var$6.$hasSemanticContext = 0; - $target = oavra_LexerATNSimulator_addDFAState($this, var$6); - if (!var$11) - oavra_LexerATNSimulator_addDFAEdge($this, $s, $t, $target); - } - } - oavra_ATNSimulator_$callClinit(); - if ($target === oavra_ATNSimulator_ERROR) - break a; - var$10 = $rt_compare($t, (-1)); - if (var$10) - oavra_LexerATNSimulator_consume($this, $input); - if ($target.$isAcceptState) { - oavra_LexerATNSimulator_captureSimState($this, $this.$prevAccept, $input, $target); - if (!var$10) - break; - } - $t = $input.$LA(1); - $s = $target; - } - } - c: { - $target = $this.$prevAccept; - $s = $s.$configs; - var$6 = $target.$dfaState; - if (var$6 === null) { - if ($t == (-1) && $input.$position6 == $this.$startIndex0) { - var$10 = (-1); - break c; - } - $target = new oavr_LexerNoViableAltException; - var$6 = $this.$recog; - var$10 = $this.$startIndex0; - oavr_RecognitionException__init_($target, var$6, $input, null); - $target.$startIndex1 = var$10; - $target.$deadEndConfigs = $s; - $rt_throw($target); - } - $s = var$6.$lexerActionExecutor0; - var$10 = $this.$startIndex0; - var$11 = $target.$index8; - var$12 = $target.$line6; - var$21 = $target.$charPos; - $input.$position6 = var$11; - $this.$line0 = var$12; - $this.$charPositionInLine = var$21; - if ($s !== null) { - var$6 = $this.$recog; - if (var$6 !== null) { - var$12 = 0; - d: { - try { - var$21 = var$12; - var$4 = $s.$lexerActions.data; - $t = var$4.length; - var$7 = 0; - while (true) { - var$21 = var$12; - if (var$7 >= $t) - break d; - var$21 = var$12; - $s = var$4[var$7]; - if (!($s instanceof oavra_LexerIndexedCustomAction)) { - var$21 = var$12; - if (!$s.$isPositionDependent()) - var$15 = var$12; - else { - var$21 = var$12; - oavr_CodePointCharStream_seek($input, var$11); - var$15 = 0; - var$21 = var$15; - } - } else { - var$21 = var$12; - $s = $s; - var$15 = var$10 + oavra_LexerIndexedCustomAction_getOffset($s) | 0; - oavr_CodePointCharStream_seek($input, var$15); - $s = oavra_LexerIndexedCustomAction_getAction($s); - if (var$15 == var$11) { - var$21 = var$12; - var$15 = 0; - } else { - var$21 = var$12; - var$15 = 1; - } - var$21 = var$12; - var$21 = var$15; - } - var$21 = var$15; - $s.$execute(var$6); - var$7 = var$7 + 1 | 0; - var$12 = var$15; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - $s = $$je; - - } - if (var$21) - $input.$position6 = var$11; - $rt_throw($s); - } - if (var$12) - $input.$position6 = var$11; - } - } - var$10 = $target.$dfaState.$prediction; - } - return var$10; +oncia_AllTokenActions$_productArity = $this => { + return 0; }, -oavra_LexerATNSimulator_closure = ($this, $input, $config, $configs, $currentAltReachedAcceptState, $speculative, $treatEofAsEpsilon) => { - let $newContext, $returnState, $i, $p, $i_0, $t, $c, var$14, var$15, var$16, var$17, var$18, var$19, $$je; - $newContext = $config.$state0; - if ($newContext instanceof oavra_RuleStopState) { - $newContext = $config.$context; - if (!($newContext !== null && !oavra_PredictionContext_hasEmptyPath($newContext))) { - $newContext = $config.$context; - if ($newContext !== null && !$newContext.$isEmpty()) { - $newContext = new oavra_LexerATNConfig; - $returnState = $config.$state0; - oavra_EmptyPredictionContext_$callClinit(); - oavra_LexerATNConfig__init_1($newContext, $config, $returnState, oavra_EmptyPredictionContext_Instance); - oavra_ATNConfigSet_add0($configs, $newContext); - $currentAltReachedAcceptState = 1; - } else { - oavra_ATNConfigSet_add0($configs, $config); - return 1; - } - } - $newContext = $config.$context; - if ($newContext !== null && !$newContext.$isEmpty()) { - $i = 0; - while ($i < $config.$context.$size()) { - if ($config.$context.$getReturnState($i) != 2147483647) { - $newContext = $config.$context.$getParent($i); - $currentAltReachedAcceptState = oavra_LexerATNSimulator_closure($this, $input, oavra_LexerATNConfig__init_2($config, ju_ArrayList_get($this.$atn.$states, $config.$context.$getReturnState($i)), $newContext), $configs, $currentAltReachedAcceptState, $speculative, $treatEofAsEpsilon); - } - $i = $i + 1 | 0; - } - } - return $currentAltReachedAcceptState; - } - if (!$newContext.$epsilonOnlyTransitions && !($currentAltReachedAcceptState && $config.$passedThroughNonGreedyDecision)) - oavra_ATNConfigSet_add0($configs, $config); - $p = $config.$state0; - $i_0 = 0; - while ($i_0 < oavra_ATNState_getNumberOfTransitions($p)) { - a: { - $t = oavra_ATNState_transition($p, $i_0); - $c = null; - switch ($t.$getSerializationType()) { - case 1: - $c = oavra_LexerATNConfig__init_($config, $t.$target); - break a; - case 2: - case 5: - case 7: - if (!$treatEofAsEpsilon) - break a; - if (!$t.$matches3((-1), 0, 1114111)) - break a; - $c = oavra_LexerATNConfig__init_($config, $t.$target); - break a; - case 3: - $newContext = $t; - $newContext = oavra_SingletonPredictionContext_create($config.$context, $newContext.$followState.$stateNumber); - $c = oavra_LexerATNConfig__init_2($config, $t.$target, $newContext); - break a; - case 4: - $newContext = $t; - $configs.$hasSemanticContext = 1; - $i = $newContext.$ruleIndex1; - var$14 = $newContext.$predIndex; - if ($this.$recog === null) - $i = 1; - else if (!$speculative) - $i = 1; - else { - var$15 = $this.$charPositionInLine; - var$16 = $this.$line0; - var$17 = $input.$position6; - try { - oavra_LexerATNSimulator_consume($this, $input); - $i = oavr_Recognizer_sempred($this.$recog, null, $i, var$14); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $config = $$je; - $this.$charPositionInLine = var$15; - $this.$line0 = var$16; - $input.$position6 = var$17; - $rt_throw($config); - - } - $this.$charPositionInLine = var$15; - $this.$line0 = var$16; - $input.$position6 = var$17; - } - if (!$i) - break a; - $c = oavra_LexerATNConfig__init_($config, $t.$target); - break a; - case 6: - $newContext = $config.$context; - if ($newContext !== null && !oavra_PredictionContext_hasEmptyPath($newContext)) { - $c = oavra_LexerATNConfig__init_($config, $t.$target); - break a; - } - $c = $config.$lexerActionExecutor; - $returnState = $this.$atn.$lexerActions0.data[$t.$actionIndex0]; - if ($c === null) { - $newContext = new oavra_LexerActionExecutor; - var$18 = $rt_createArray(oavra_LexerAction, 1); - var$18.data[0] = $returnState; - oavra_LexerActionExecutor__init_($newContext, var$18); - } else { - var$18 = $c.$lexerActions; - var$18 = ju_Arrays_copyOf(var$18, var$18.data.length + 1 | 0); - var$19 = var$18.data; - var$19[var$19.length - 1 | 0] = $returnState; - $newContext = oavra_LexerActionExecutor__init_0(var$18); - } - $c = oavra_LexerATNConfig__init_0($config, $t.$target, $newContext); - break a; - case 10: - $input = new jl_UnsupportedOperationException; - jl_Throwable__init_0($input, $rt_s(6782)); - $rt_throw($input); - case 8: - case 9: - break; - default: - } - } - if ($c !== null) - $currentAltReachedAcceptState = oavra_LexerATNSimulator_closure($this, $input, $c, $configs, $currentAltReachedAcceptState, $speculative, $treatEofAsEpsilon); - $i_0 = $i_0 + 1 | 0; - } - return $currentAltReachedAcceptState; +oncia_AllTokenActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllTokenActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllTokenActions$_hashCode = $this => { + return 695060709; +}, +oncia_AllTokenActions$_toString = $this => { + return $rt_s(5745); +}, +oncia_StartDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseAction), +oncia_StartDatabaseAction$_MODULE$ = null, +oncia_StartDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_StartDatabaseAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(4477)); + oncia_StartDatabaseAction$_MODULE$ = var$1; +}, +oncia_StartDatabaseAction$_productArity = $this => { + return 0; +}, +oncia_StartDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_StartDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_StartDatabaseAction$_hashCode = $this => { + return 1885878387; +}, +oncia_StartDatabaseAction$_toString = $this => { + return $rt_s(5746); +}; +let oncia_StopDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseAction), +oncia_StopDatabaseAction$_MODULE$ = null, +oncia_StopDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_StopDatabaseAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(4480)); + oncia_StopDatabaseAction$_MODULE$ = var$1; }, -oavra_LexerATNSimulator_captureSimState = ($this, $settings, $input, $dfaState) => { - $settings.$index8 = $input.$position6; - $settings.$line6 = $this.$line0; - $settings.$charPos = $this.$charPositionInLine; - $settings.$dfaState = $dfaState; +oncia_StopDatabaseAction$_productArity = $this => { + return 0; }, -oavra_LexerATNSimulator_addDFAEdge = ($this, $p, $t, $q) => { - let $$je; - if ($t >= 0 && $t <= 127) { - jl_Object_monitorEnterSync($p); - a: { - try { - if ($p.$edges === null) - $p.$edges = $rt_createArray(oavrd_DFAState, 128); - $p.$edges.data[$t - 0 | 0] = $q; - jl_Object_monitorExitSync($p); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $q = $$je; - break a; - - } - return; - } - jl_Object_monitorExitSync($p); - $rt_throw($q); - } +oncia_StopDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_LexerATNSimulator_addDFAState = ($this, $configs) => { - let $proposed, $firstConfigWithRuleStopState, $existing, $c, $dfa, $$je; - if (!oavra_LexerATNSimulator_$assertionsDisabled && $configs.$hasSemanticContext) { - $configs = new jl_AssertionError; - jl_Throwable__init_($configs); - $rt_throw($configs); - } - $proposed = oavrd_DFAState__init_($configs); - $firstConfigWithRuleStopState = null; - $existing = oavra_ATNConfigSet_iterator($configs); - a: { - while (true) { - if (!ju_AbstractList$1_hasNext($existing)) { - $c = $firstConfigWithRuleStopState; - break a; - } - $c = ju_AbstractList$1_next($existing); - if ($c.$state0 instanceof oavra_RuleStopState) - break; - } - } - if ($c !== null) { - $proposed.$isAcceptState = 1; - $proposed.$lexerActionExecutor0 = $c.$lexerActionExecutor; - $proposed.$prediction = $this.$atn.$ruleToTokenType.data[$c.$state0.$ruleIndex]; - } - $dfa = $this.$decisionToDFA.data[$this.$mode4]; - $c = $dfa.$states0; - jl_Object_monitorEnterSync($c); - b: { - c: { - try { - $existing = ju_HashMap_get($c, $proposed); - if ($existing === null) - break c; - jl_Object_monitorExitSync($c); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $configs = $$je; - break b; - - } - return $existing; - } - try { - $proposed.$stateNumber0 = ju_HashMap_size($dfa.$states0); - oavra_ATNConfigSet_setReadonly($configs, 1); - $proposed.$configs = $configs; - ju_HashMap_put($dfa.$states0, $proposed, $proposed); - jl_Object_monitorExitSync($c); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $configs = $$je; - break b; - - } - return $proposed; - } - jl_Object_monitorExitSync($c); - $rt_throw($configs); +oncia_StopDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_LexerATNSimulator_getLine = $this => { - return $this.$line0; +oncia_StopDatabaseAction$_hashCode = $this => { + return 1540659283; }, -oavra_LexerATNSimulator_getCharPositionInLine = $this => { - return $this.$charPositionInLine; +oncia_StopDatabaseAction$_toString = $this => { + return $rt_s(5747); }, -oavra_LexerATNSimulator_consume = ($this, $input) => { - if ($input.$LA(1) != 10) - $this.$charPositionInLine = $this.$charPositionInLine + 1 | 0; - else { - $this.$line0 = $this.$line0 + 1 | 0; - $this.$charPositionInLine = 0; - } - oavr_CodePointCharStream_consume($input); +oncia_TerminateTransactionAction$ = $rt_classWithoutFields(oncia_TransactionManagementAction), +oncia_TerminateTransactionAction$_MODULE$ = null, +oncia_TerminateTransactionAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_TerminateTransactionAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5748)); + oncia_TerminateTransactionAction$_MODULE$ = var$1; }, -oavra_LexerATNSimulator__clinit_ = () => { - oavra_LexerATNSimulator_$assertionsDisabled = 0; +oncia_TerminateTransactionAction$_productArity = $this => { + return 0; }, -oavr_TokenFactory = $rt_classWithoutFields(0), -oncipl_CypherTokenFactory$ = $rt_classWithoutFields(), -oncipl_CypherTokenFactory$_MODULE$ = null, -oncipl_CypherTokenFactory$__clinit_ = () => { - oncipl_CypherTokenFactory$_MODULE$ = new oncipl_CypherTokenFactory$; +oncia_TerminateTransactionAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipl_CypherTokenFactory$_create = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8) => { - $x$3 = new oncipl_ThinCypherToken; - $x$3.$source0 = $x$1; - $x$3.$getType1 = $x$2; - $x$3.$getChannel0 = $x$4; - $x$3.$getStartIndex0 = $x$5; - $x$3.$getStopIndex0 = $x$6; - $x$3.$getLine1 = $x$7; - $x$3.$getCharPositionInLine0 = $x$8; - return $x$3; +oncia_TerminateTransactionAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipl_FullCypherTokenFactory$ = $rt_classWithoutFields(), -oncipl_FullCypherTokenFactory$_MODULE$ = null, -oncipl_FullCypherTokenFactory$__clinit_ = () => { - oncipl_FullCypherTokenFactory$_MODULE$ = new oncipl_FullCypherTokenFactory$; +oncia_TerminateTransactionAction$_hashCode = $this => { + return 252750451; }, -oncipl_FullCypherTokenFactory$_create = ($this, $x$1, $x$2, $x$3, $x$4, $x$5, $x$6, $x$7, $x$8) => { - let var$9; - var$9 = new oncipl_FullCypherToken; - oavr_CommonToken__init_(var$9, $x$1, $x$2, $x$4, $x$5, $x$6); - var$9.$line4 = $x$7; - var$9.$charPositionInLine0 = $x$8; - if ($x$3 !== null) - var$9.$text0 = $x$3; - return var$9; -}; -function oavrm_IntegerList() { - let a = this; jl_Object.call(a); - a.$_data = null; - a.$_size = 0; -} -let oavrm_IntegerList_EMPTY_DATA = null, -oavrm_IntegerList_get = ($this, $index) => { - let var$2; - if ($index >= 0 && $index < $this.$_size) - return $this.$_data.data[$index]; - var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); +oncia_TerminateTransactionAction$_toString = $this => { + return $rt_s(5749); }, -oavrm_IntegerList_isEmpty = $this => { - return $this.$_size ? 0 : 1; +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0_apply = var$0 => { + let var$1, var$2; + var$1 = new sci_$colon$colon; + var$2 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + return var$1; }, -oavrm_IntegerList__clinit_ = () => { - oavrm_IntegerList_EMPTY_DATA = $rt_createIntArray(0); +oncia_AllTransactionActions$ = $rt_classWithoutFields(oncia_TransactionManagementAction), +oncia_AllTransactionActions$_MODULE$ = null, +oncia_AllTransactionActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllTransactionActions$; + oncia_DatabaseAction__init_(var$1, $rt_s(5750)); + oncia_AllTransactionActions$_MODULE$ = var$1; }, -oavrm_IntegerStack = $rt_classWithoutFields(oavrm_IntegerList), -oavrm_IntegerStack__init_0 = $this => { - $this.$_data = oavrm_IntegerList_EMPTY_DATA; +oncia_AllTransactionActions$_productArity = $this => { + return 0; }, -oavrm_IntegerStack__init_ = () => { - let var_0 = new oavrm_IntegerStack(); - oavrm_IntegerStack__init_0(var_0); - return var_0; +oncia_AllTransactionActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavrm_IntegerStack_push = ($this, $value) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $this.$_data; - var$3 = var$2.data.length; - var$4 = $this.$_size; - if (var$3 == var$4) { - var$5 = var$4 + 1 | 0; - if (var$5 >= 0 && var$5 <= 2147483639) { - if (!var$3) - var$3 = 4; - while (var$3 < var$5) { - var$3 = var$3 * 2 | 0; - if (var$3 >= 0 && var$3 <= 2147483639) - continue; - var$3 = 2147483639; - } - $this.$_data = ju_Arrays_copyOf0(var$2, var$3); - } else { - var$6 = new jl_OutOfMemoryError; - jl_Throwable__init_(var$6); - $rt_throw(var$6); - } - } - var$2 = $this.$_data.data; - var$4 = $this.$_size; - var$2[var$4] = $value; - $this.$_size = var$4 + 1 | 0; +oncia_AllTransactionActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavrm_IntegerStack_peek = $this => { - return oavrm_IntegerList_get($this, $this.$_size - 1 | 0); +oncia_AllTransactionActions$_hashCode = $this => { + return (-1288800352); }, -oavr_RuntimeMetaData = $rt_classWithoutFields(), -oavr_RuntimeMetaData_checkVersion = ($generatingToolVersion, $compileTimeVersion) => { - let $runtimeConflictsWithGeneratingTool, var$4; - $runtimeConflictsWithGeneratingTool = 0; - if ($generatingToolVersion !== null) - $runtimeConflictsWithGeneratingTool = !jl_String_equals($rt_s(6405), $generatingToolVersion) && !jl_String_equals(oavr_RuntimeMetaData_getMajorMinorVersion($rt_s(6405)), oavr_RuntimeMetaData_getMajorMinorVersion($generatingToolVersion)) ? 1 : 0; - var$4 = !jl_String_equals($rt_s(6405), $compileTimeVersion) && !jl_String_equals(oavr_RuntimeMetaData_getMajorMinorVersion($rt_s(6405)), oavr_RuntimeMetaData_getMajorMinorVersion($compileTimeVersion)) ? 1 : 0; - if ($runtimeConflictsWithGeneratingTool) - ji_PrintStream_printf(jl_System_err(), $rt_s(6783), $rt_wrapArray(jl_Object, [$generatingToolVersion, $rt_s(6405)])); - if (var$4) - ji_PrintStream_printf(jl_System_err(), $rt_s(6784), $rt_wrapArray(jl_Object, [$compileTimeVersion, $rt_s(6405)])); +oncia_AllTransactionActions$_toString = $this => { + return $rt_s(5751); }, -oavr_RuntimeMetaData_getMajorMinorVersion = $version => { - let $firstDot, $secondDot, $firstDash, $referenceLength; - $firstDot = jl_String_indexOf($version, 46); - $secondDot = $firstDot < 0 ? (-1) : jl_String_indexOf0($version, 46, $firstDot + 1 | 0); - $firstDash = jl_String_indexOf($version, 45); - $referenceLength = $version.$nativeString.length; - if ($secondDot >= 0) - $referenceLength = jl_Math_min($referenceLength, $secondDot); - if ($firstDash >= 0) - $referenceLength = jl_Math_min($referenceLength, $firstDash); - return jl_String_substring($version, 0, $referenceLength); -}; -function oavra_PredictionContextCache() { - jl_Object.call(this); - this.$cache = null; -} -let oavra_PredictionContextCache__init_0 = $this => { - $this.$cache = ju_HashMap__init_(); +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1_apply0 = var$0 => { + let var$1, var$2; + var$1 = new sci_$colon$colon; + var$2 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + return var$1; }, -oavra_PredictionContextCache__init_ = () => { - let var_0 = new oavra_PredictionContextCache(); - oavra_PredictionContextCache__init_0(var_0); - return var_0; +oncia_AllAliasManagementActions$ = $rt_classWithoutFields(oncia_AliasManagementAction), +oncia_AllAliasManagementActions$_MODULE$ = null, +oncia_AllAliasManagementActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllAliasManagementActions$; + oncia_DbmsAction__init_(var$1, $rt_s(5752)); + oncia_AllAliasManagementActions$_MODULE$ = var$1; }, -oavra_PredictionContextCache_add = ($this, $ctx) => { - let $existing; - oavra_EmptyPredictionContext_$callClinit(); - $existing = oavra_EmptyPredictionContext_Instance; - if ($ctx === $existing) - return $existing; - $existing = ju_HashMap_get($this.$cache, $ctx); - if ($existing !== null) - return $existing; - ju_HashMap_put($this.$cache, $ctx, $ctx); - return $ctx; +oncia_AllAliasManagementActions$_productArity = $this => { + return 0; +}, +oncia_AllAliasManagementActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllAliasManagementActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllAliasManagementActions$_hashCode = $this => { + return 2064343467; +}, +oncia_AllAliasManagementActions$_toString = $this => { + return $rt_s(5753); +}, +oncia_CompositeDatabaseManagementActions$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), +oncia_CompositeDatabaseManagementActions$_MODULE$ = null, +oncia_CompositeDatabaseManagementActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_CompositeDatabaseManagementActions$; + oncia_DbmsAction__init_(var$1, $rt_s(5754)); + oncia_CompositeDatabaseManagementActions$_MODULE$ = var$1; +}, +oncia_CompositeDatabaseManagementActions$_productArity = $this => { + return 0; +}, +oncia_CompositeDatabaseManagementActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CompositeDatabaseManagementActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CompositeDatabaseManagementActions$_hashCode = $this => { + return 1442617944; +}, +oncia_CompositeDatabaseManagementActions$_toString = $this => { + return $rt_s(5755); +}, +oncia_AllDatabaseManagementActions$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), +oncia_AllDatabaseManagementActions$_MODULE$ = null, +oncia_AllDatabaseManagementActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllDatabaseManagementActions$; + oncia_DbmsAction__init_(var$1, $rt_s(5756)); + oncia_AllDatabaseManagementActions$_MODULE$ = var$1; +}, +oncia_AllDatabaseManagementActions$_productArity = $this => { + return 0; +}, +oncia_AllDatabaseManagementActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllDatabaseManagementActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }; -function oavr_VocabularyImpl() { - let a = this; jl_Object.call(a); - a.$literalNames = null; - a.$symbolicNames = null; - a.$displayNames = null; - a.$maxTokenType0 = 0; -} -let oavr_VocabularyImpl_EMPTY_NAMES = null, -oavr_VocabularyImpl_EMPTY_VOCABULARY = null, -oavr_VocabularyImpl_$callClinit = () => { - oavr_VocabularyImpl_$callClinit = $rt_eraseClinit(oavr_VocabularyImpl); - oavr_VocabularyImpl__clinit_(); +let oncia_AllDatabaseManagementActions$_hashCode = $this => { + return 1807514750; }, -oavr_VocabularyImpl__init_1 = ($this, $literalNames, $symbolicNames) => { - oavr_VocabularyImpl_$callClinit(); - oavr_VocabularyImpl__init_0($this, $literalNames, $symbolicNames, null); +oncia_AllDatabaseManagementActions$_toString = $this => { + return $rt_s(5757); }, -oavr_VocabularyImpl__init_ = (var_0, var_1) => { - let var_2 = new oavr_VocabularyImpl(); - oavr_VocabularyImpl__init_1(var_2, var_0, var_1); - return var_2; +oncia_ImpersonateUserAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ImpersonateUserAction$_MODULE$ = null, +oncia_ImpersonateUserAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ImpersonateUserAction$; + oncia_DbmsAction__init_(var$1, $rt_s(4367)); + oncia_ImpersonateUserAction$_MODULE$ = var$1; }, -oavr_VocabularyImpl__init_0 = ($this, $literalNames, $symbolicNames, $displayNames) => { - let var$4; - oavr_VocabularyImpl_$callClinit(); - if ($literalNames === null) - $literalNames = oavr_VocabularyImpl_EMPTY_NAMES; - $this.$literalNames = $literalNames; - if ($symbolicNames === null) - $symbolicNames = oavr_VocabularyImpl_EMPTY_NAMES; - $this.$symbolicNames = $symbolicNames; - if ($displayNames === null) - $displayNames = oavr_VocabularyImpl_EMPTY_NAMES; - var$4 = $symbolicNames.data; - $symbolicNames = $literalNames.data; - $literalNames = $displayNames.data; - $this.$displayNames = $displayNames; - $this.$maxTokenType0 = jl_Math_max($literalNames.length, jl_Math_max($symbolicNames.length, var$4.length)) - 1 | 0; +oncia_ImpersonateUserAction$_productArity = $this => { + return 0; }, -oavr_VocabularyImpl__init_2 = (var_0, var_1, var_2) => { - let var_3 = new oavr_VocabularyImpl(); - oavr_VocabularyImpl__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncia_ImpersonateUserAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavr_VocabularyImpl_getLiteralName = ($this, $tokenType) => { - let var$2; - if ($tokenType >= 0) { - var$2 = $this.$literalNames.data; - if ($tokenType < var$2.length) - return var$2[$tokenType]; - } - return null; +oncia_ImpersonateUserAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavr_VocabularyImpl_getSymbolicName = ($this, $tokenType) => { - let var$2; - if ($tokenType >= 0) { - var$2 = $this.$symbolicNames.data; - if ($tokenType < var$2.length) - return var$2[$tokenType]; - } - if ($tokenType != (-1)) - return null; - return $rt_s(6092); +oncia_ImpersonateUserAction$_hashCode = $this => { + return 1403738394; }, -oavr_VocabularyImpl_getDisplayName = ($this, $tokenType) => { - let var$2, $displayName, $literalName, $symbolicName; - if ($tokenType >= 0) { - var$2 = $this.$displayNames.data; - if ($tokenType < var$2.length) { - $displayName = var$2[$tokenType]; - if ($displayName !== null) - return $displayName; - } - } - $literalName = oavr_VocabularyImpl_getLiteralName($this, $tokenType); - if ($literalName !== null) - return $literalName; - $symbolicName = oavr_VocabularyImpl_getSymbolicName($this, $tokenType); - if ($symbolicName !== null) - return $symbolicName; - return jl_Integer_toString($tokenType); +oncia_ImpersonateUserAction$_toString = $this => { + return $rt_s(5758); }, -oavr_VocabularyImpl__clinit_ = () => { +oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_00 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0_apply = var$0 => { + let var$1, var$2; + var$1 = new sci_$colon$colon; + var$2 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + return var$1; +}, +oncia_AllPrivilegeActions$ = $rt_classWithoutFields(oncia_PrivilegeManagementAction), +oncia_AllPrivilegeActions$_MODULE$ = null, +oncia_AllPrivilegeActions$__clinit_ = () => { let var$1; - var$1 = $rt_createArray(jl_String, 0); - oavr_VocabularyImpl_EMPTY_NAMES = var$1; - oavr_VocabularyImpl_EMPTY_VOCABULARY = oavr_VocabularyImpl__init_2(var$1, var$1, var$1); + var$1 = new oncia_AllPrivilegeActions$; + oncia_DbmsAction__init_(var$1, $rt_s(5759)); + oncia_AllPrivilegeActions$_MODULE$ = var$1; }, -oavrm_Utils = $rt_classWithoutFields(), -oavrm_Utils_join0 = ($iter, $separator) => { - let $buf; - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - while (ju_AbstractList$1_hasNext($iter)) { - jl_StringBuilder_append($buf, ju_AbstractList$1_next($iter)); - if (!ju_AbstractList$1_hasNext($iter)) - continue; - jl_AbstractStringBuilder_append($buf, $separator); - } - return jl_AbstractStringBuilder_toString($buf); +oncia_AllPrivilegeActions$_productArity = $this => { + return 0; }, -oavrm_Utils_join = ($array, $separator) => { - let $builder, $i, var$5, var$6; - $builder = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($builder); - $i = 0; - while (true) { - var$5 = $array.data; - var$6 = var$5.length; - if ($i >= var$6) - break; - jl_StringBuilder_append($builder, var$5[$i]); - if ($i < (var$6 - 1 | 0)) - jl_AbstractStringBuilder_append($builder, $separator); - $i = $i + 1 | 0; - } - return jl_AbstractStringBuilder_toString($builder); +oncia_AllPrivilegeActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllPrivilegeActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllPrivilegeActions$_hashCode = $this => { + return 1573475501; +}, +oncia_AllPrivilegeActions$_toString = $this => { + return $rt_s(5760); +}, +oncia_AllRoleActions$ = $rt_classWithoutFields(oncia_RoleManagementAction), +oncia_AllRoleActions$_MODULE$ = null, +oncia_AllRoleActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllRoleActions$; + oncia_DbmsAction__init_(var$1, $rt_s(5761)); + oncia_AllRoleActions$_MODULE$ = var$1; +}, +oncia_AllRoleActions$_productArity = $this => { + return 0; +}, +oncia_AllRoleActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllRoleActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllRoleActions$_hashCode = $this => { + return 2068867942; +}, +oncia_AllRoleActions$_toString = $this => { + return $rt_s(5762); +}, +oncia_ServerManagementAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ServerManagementAction$_MODULE$ = null, +oncia_ServerManagementAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ServerManagementAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5763)); + oncia_ServerManagementAction$_MODULE$ = var$1; +}, +oncia_ServerManagementAction$_productArity = $this => { + return 0; +}, +oncia_ServerManagementAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ServerManagementAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ServerManagementAction$_hashCode = $this => { + return (-1139237412); +}, +oncia_ServerManagementAction$_toString = $this => { + return $rt_s(5764); +}, +oncia_AllUserActions$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_AllUserActions$_MODULE$ = null, +oncia_AllUserActions$__clinit_ = () => { + let var$1; + var$1 = new oncia_AllUserActions$; + oncia_DbmsAction__init_(var$1, $rt_s(5765)); + oncia_AllUserActions$_MODULE$ = var$1; +}, +oncia_AllUserActions$_productArity = $this => { + return 0; +}, +oncia_AllUserActions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllUserActions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllUserActions$_hashCode = $this => { + return 1135904369; +}, +oncia_AllUserActions$_toString = $this => { + return $rt_s(5766); +}, +oncia_RenameRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), +oncia_RenameRoleAction$_MODULE$ = null, +oncia_RenameRoleAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_RenameRoleAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5596)); + oncia_RenameRoleAction$_MODULE$ = var$1; +}, +oncia_RenameRoleAction$_productArity = $this => { + return 0; +}, +oncia_RenameRoleAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RenameRoleAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }; -function oavra_ATNDeserializer() { - jl_Object.call(this); - this.$deserializationOptions = null; -} -let oavra_ATNDeserializer_SERIALIZED_VERSION = 0, -oavra_ATNDeserializer__init_0 = $this => { +let oncia_RenameRoleAction$_hashCode = $this => { + return (-709551030); +}, +oncia_RenameRoleAction$_toString = $this => { + return $rt_s(5767); +}, +oncia_RenameUserAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), +oncia_RenameUserAction$_MODULE$ = null, +oncia_RenameUserAction$__clinit_ = () => { let var$1; - var$1 = oavra_ATNDeserializationOptions_getDefaultOptions(); - if (var$1 === null) - var$1 = oavra_ATNDeserializationOptions_getDefaultOptions(); - $this.$deserializationOptions = var$1; + var$1 = new oncia_RenameUserAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5612)); + oncia_RenameUserAction$_MODULE$ = var$1; }, -oavra_ATNDeserializer__init_ = () => { - let var_0 = new oavra_ATNDeserializer(); - oavra_ATNDeserializer__init_0(var_0); - return var_0; +oncia_RenameUserAction$_productArity = $this => { + return 0; }, -oavra_ATNDeserializer_deserialize = ($this, $data) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - $data = $data.data; - var$2 = $data.length; - var$3 = $rt_createIntArray(var$2); - var$4 = var$3.data; - var$5 = 0; - var$6 = 0; - while (var$5 < var$2) { - var$7 = var$5 + 1 | 0; - var$5 = $data[var$5]; - if (!(var$5 & 32768)) { - var$8 = var$6 + 1 | 0; - var$4[var$6] = var$5; - } else { - var$9 = var$7 + 1 | 0; - var$7 = $data[var$7]; - if (var$5 == 65535 && var$7 == 65535) { - var$8 = var$6 + 1 | 0; - var$4[var$6] = (-1); - var$7 = var$9; - } else { - var$8 = var$6 + 1 | 0; - var$4[var$6] = (var$5 & 32767) << 16 | var$7 & 65535; - var$7 = var$9; - } - } - var$5 = var$7; - var$6 = var$8; - } - return oavra_ATNDeserializer_deserialize0($this, var$3); +oncia_RenameUserAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_ATNDeserializer_deserialize0 = ($this, $data) => { - let var$2, $version, $reason, $grammarType, $maxTokenType, $atn, $loopBackStateNumbers, $endStateNumbers, $endStateNumber, $nstates, $i, $stype, $s, $loopBackStateNumber, $pair, $p, $numNonGreedyStates, $stateNumber, $numPrecedenceStates, $nrules, $s_0, $state, $stopState, var$25, $nmodes, $sets, $nedges, $src, $trg, $trans, $t, $ruleTransition, $returnTransition, $ndecisions, $decState, $actionType, $data1, $bypassStart, $bypassStop, $excludeTransition, $endState, $endState_0, $maybeLoopEndState, $transition, - $matchState, $loopbackState, $target; - var$2 = $data.data; - $version = var$2[0]; - if ($version != oavra_ATNDeserializer_SERIALIZED_VERSION) { - $reason = jl_String_format0(ju_Locale_getDefault(), $rt_s(6785), $rt_wrapArray(jl_Object, [jl_Integer_valueOf($version), jl_Integer_valueOf(oavra_ATNDeserializer_SERIALIZED_VERSION)])); - $rt_throw(jl_UnsupportedOperationException__init_1(ji_InvalidClassException__init_(jl_Class_getName($rt_cls(oavra_ATN)), $reason))); - } - $grammarType = (oavra_ATNType_values()).data[var$2[1]]; - $maxTokenType = var$2[2]; - $atn = oavra_ATN__init_($grammarType, $maxTokenType); - $loopBackStateNumbers = ju_ArrayList__init_(); - $endStateNumbers = ju_ArrayList__init_(); - $endStateNumber = 4; - $nstates = var$2[3]; - $i = 0; - while ($i < $nstates) { - $maxTokenType = $endStateNumber + 1 | 0; - $stype = var$2[$endStateNumber]; - if (!$stype) - oavra_ATN_addState($atn, null); - else { - $endStateNumber = $maxTokenType + 1 | 0; - $s = oavra_ATNDeserializer_stateFactory($this, $stype, var$2[$maxTokenType]); - if ($stype == 12) { - $maxTokenType = $endStateNumber + 1 | 0; - $loopBackStateNumber = var$2[$endStateNumber]; - ju_ArrayList_add($loopBackStateNumbers, oavrm_Pair__init_($s, jl_Integer_valueOf($loopBackStateNumber))); - } else if (!($s instanceof oavra_BlockStartState)) - $maxTokenType = $endStateNumber; - else { - $maxTokenType = $endStateNumber + 1 | 0; - $endStateNumber = var$2[$endStateNumber]; - ju_ArrayList_add($endStateNumbers, oavrm_Pair__init_($s, jl_Integer_valueOf($endStateNumber))); - } - oavra_ATN_addState($atn, $s); - } - $i = $i + 1 | 0; - $endStateNumber = $maxTokenType; - } - $grammarType = ju_AbstractList_iterator($loopBackStateNumbers); - while (ju_AbstractList$1_hasNext($grammarType)) { - $pair = ju_AbstractList$1_next($grammarType); - $pair.$a7.$loopBackState1 = ju_ArrayList_get($atn.$states, jl_Integer_intValue($pair.$b0)); - } - $grammarType = ju_AbstractList_iterator($endStateNumbers); - while (ju_AbstractList$1_hasNext($grammarType)) { - $pair = ju_AbstractList$1_next($grammarType); - $pair.$a7.$endState = ju_ArrayList_get($atn.$states, jl_Integer_intValue($pair.$b0)); - } - $p = $endStateNumber + 1 | 0; - $numNonGreedyStates = var$2[$endStateNumber]; - $i = 0; - while ($i < $numNonGreedyStates) { - $endStateNumber = $p + 1 | 0; - $stateNumber = var$2[$p]; - (ju_ArrayList_get($atn.$states, $stateNumber)).$nonGreedy = 1; - $i = $i + 1 | 0; - $p = $endStateNumber; - } - $endStateNumber = $p + 1 | 0; - $numPrecedenceStates = var$2[$p]; - $i = 0; - while ($i < $numPrecedenceStates) { - $p = $endStateNumber + 1 | 0; - $stateNumber = var$2[$endStateNumber]; - (ju_ArrayList_get($atn.$states, $stateNumber)).$isLeftRecursiveRule = 1; - $i = $i + 1 | 0; - $endStateNumber = $p; - } - $p = $endStateNumber + 1 | 0; - $nrules = var$2[$endStateNumber]; - if ($atn.$grammarType === oavra_ATNType_LEXER) - $atn.$ruleToTokenType = $rt_createIntArray($nrules); - $atn.$ruleToStartState = $rt_createArray(oavra_RuleStartState, $nrules); - $i = 0; - while ($i < $nrules) { - $endStateNumber = $p + 1 | 0; - $s_0 = var$2[$p]; - $atn.$ruleToStartState.data[$i] = ju_ArrayList_get($atn.$states, $s_0); - if ($atn.$grammarType !== oavra_ATNType_LEXER) - $p = $endStateNumber; - else { - $p = $endStateNumber + 1 | 0; - $atn.$ruleToTokenType.data[$i] = var$2[$endStateNumber]; - } - $i = $i + 1 | 0; - } - $atn.$ruleToStopState = $rt_createArray(oavra_RuleStopState, $nrules); - $grammarType = ju_AbstractList_iterator($atn.$states); - while (ju_AbstractList$1_hasNext($grammarType)) { - $state = ju_AbstractList$1_next($grammarType); - if (!($state instanceof oavra_RuleStopState)) - continue; - $stopState = $state; - var$25 = $atn.$ruleToStopState.data; - $endStateNumber = $state.$ruleIndex; - var$25[$endStateNumber] = $stopState; - $atn.$ruleToStartState.data[$endStateNumber].$stopState = $stopState; - } - $endStateNumber = $p + 1 | 0; - $nmodes = var$2[$p]; - $i = 0; - while ($i < $nmodes) { - $p = $endStateNumber + 1 | 0; - $s_0 = var$2[$endStateNumber]; - ju_ArrayList_add($atn.$modeToStartState, ju_ArrayList_get($atn.$states, $s_0)); - $i = $i + 1 | 0; - $endStateNumber = $p; - } - $sets = ju_ArrayList__init_(); - $p = oavra_ATNDeserializer_deserializeSets($this, $data, $endStateNumber, $sets); - $endStateNumber = $p + 1 | 0; - $nedges = var$2[$p]; - $i = 0; - while ($i < $nedges) { - $src = var$2[$endStateNumber]; - $trg = var$2[$endStateNumber + 1 | 0]; - $trans = oavra_ATNDeserializer_edgeFactory($this, $atn, var$2[$endStateNumber + 2 | 0], $src, $trg, var$2[$endStateNumber + 3 | 0], var$2[$endStateNumber + 4 | 0], var$2[$endStateNumber + 5 | 0], $sets); - oavra_ATNState_addTransition(ju_ArrayList_get($atn.$states, $src), $trans); - $endStateNumber = $endStateNumber + 6 | 0; - $i = $i + 1 | 0; - } - $grammarType = ju_AbstractList_iterator($atn.$states); - while (ju_AbstractList$1_hasNext($grammarType)) { - $state = ju_AbstractList$1_next($grammarType); - $i = 0; - while ($i < oavra_ATNState_getNumberOfTransitions($state)) { - $t = oavra_ATNState_transition($state, $i); - if ($t instanceof oavra_RuleTransition) { - $ruleTransition = $t; - $data = $atn.$ruleToStartState.data; - $p = $ruleTransition.$target.$ruleIndex; - if (!$data[$p].$isLeftRecursiveRule) - $p = (-1); - else if ($ruleTransition.$precedence1) - $p = (-1); - $returnTransition = oavra_EpsilonTransition__init_1($ruleTransition.$followState, $p); - oavra_ATNState_addTransition($atn.$ruleToStopState.data[$ruleTransition.$target.$ruleIndex], $returnTransition); - } - $i = $i + 1 | 0; - } - } - $grammarType = ju_AbstractList_iterator($atn.$states); - while (true) { - if (!ju_AbstractList$1_hasNext($grammarType)) { - $p = $endStateNumber + 1 | 0; - $ndecisions = var$2[$endStateNumber]; - $i = 1; - while ($i <= $ndecisions) { - $endStateNumber = $p + 1 | 0; - $s_0 = var$2[$p]; - $decState = ju_ArrayList_get($atn.$states, $s_0); - ju_ArrayList_add($atn.$decisionToState, $decState); - $decState.$decision0 = $i - 1 | 0; - $i = $i + 1 | 0; - $p = $endStateNumber; - } - a: { - if ($atn.$grammarType === oavra_ATNType_LEXER) { - $endStateNumber = $p + 1 | 0; - $atn.$lexerActions0 = $rt_createArray(oavra_LexerAction, var$2[$p]); - $i = 0; - while (true) { - if ($i >= $atn.$lexerActions0.data.length) - break a; - $data = (oavra_LexerActionType_values()).data; - $p = $endStateNumber + 1 | 0; - $actionType = $data[var$2[$endStateNumber]]; - $loopBackStateNumber = $p + 1 | 0; - $data1 = var$2[$p]; - $endStateNumber = $loopBackStateNumber + 1 | 0; - $atn.$lexerActions0.data[$i] = oavra_ATNDeserializer_lexerActionFactory($this, $actionType, $data1, var$2[$loopBackStateNumber]); - $i = $i + 1 | 0; - } - } - } - oavra_ATNDeserializer_markPrecedenceDecisions($this, $atn); - if (oavra_ATNDeserializationOptions_isVerifyATN($this.$deserializationOptions)) - oavra_ATNDeserializer_verifyATN($this, $atn); - b: { - if (oavra_ATNDeserializationOptions_isGenerateRuleBypassTransitions($this.$deserializationOptions) && $atn.$grammarType === oavra_ATNType_PARSER) { - $p = $atn.$ruleToStartState.data.length; - $data = $rt_createIntArray($p); - var$2 = $data.data; - $atn.$ruleToTokenType = $data; - $i = 0; - while ($i < $p) { - var$2[$i] = ($atn.$maxTokenType + $i | 0) + 1 | 0; - $i = $i + 1 | 0; - } - $i = 0; - while (true) { - if ($i >= $atn.$ruleToStartState.data.length) { - if (!oavra_ATNDeserializationOptions_isVerifyATN($this.$deserializationOptions)) - break b; - oavra_ATNDeserializer_verifyATN($this, $atn); - break b; - } - $bypassStart = oavra_BasicBlockStartState__init_0(); - $bypassStart.$ruleIndex = $i; - oavra_ATN_addState($atn, $bypassStart); - $bypassStop = oavra_BlockEndState__init_0(); - $bypassStop.$ruleIndex = $i; - oavra_ATN_addState($atn, $bypassStop); - $bypassStart.$endState = $bypassStop; - oavra_ATN_defineDecisionState($atn, $bypassStart); - $bypassStop.$startState = $bypassStart; - $excludeTransition = null; - if (!$atn.$ruleToStartState.data[$i].$isLeftRecursiveRule) - $endState = $atn.$ruleToStopState.data[$i]; - else { - $endState_0 = null; - $grammarType = ju_AbstractList_iterator($atn.$states); - c: { - while (true) { - if (!ju_AbstractList$1_hasNext($grammarType)) { - $endState = $endState_0; - break c; - } - $endState = ju_AbstractList$1_next($grammarType); - if ($endState.$ruleIndex != $i) - continue; - if (!($endState instanceof oavra_StarLoopEntryState)) - continue; - $maybeLoopEndState = (oavra_ATNState_transition($endState, oavra_ATNState_getNumberOfTransitions($endState) - 1 | 0)).$target; - if (!($maybeLoopEndState instanceof oavra_LoopEndState)) - continue; - if ($maybeLoopEndState.$epsilonOnlyTransitions && (oavra_ATNState_transition($maybeLoopEndState, 0)).$target instanceof oavra_RuleStopState) - break; - } - } - if ($endState === null) - break; - $excludeTransition = oavra_ATNState_transition($endState.$loopBackState, 0); - } - $grammarType = ju_AbstractList_iterator($atn.$states); - while (ju_AbstractList$1_hasNext($grammarType)) { - $sets = ju_AbstractList_iterator((ju_AbstractList$1_next($grammarType)).$transitions); - while (ju_AbstractList$1_hasNext($sets)) { - $transition = ju_AbstractList$1_next($sets); - if ($transition === $excludeTransition) - continue; - if ($transition.$target === $endState) - $transition.$target = $bypassStop; - } - } - while (oavra_ATNState_getNumberOfTransitions($atn.$ruleToStartState.data[$i]) > 0) { - $data = $atn.$ruleToStartState.data; - oavra_ATNState_addTransition($bypassStart, oavra_ATNState_removeTransition($data[$i], oavra_ATNState_getNumberOfTransitions($data[$i]) - 1 | 0)); - } - oavra_ATNState_addTransition($atn.$ruleToStartState.data[$i], oavra_EpsilonTransition__init_($bypassStart)); - oavra_ATNState_addTransition($bypassStop, oavra_EpsilonTransition__init_($endState)); - $matchState = oavra_BasicState__init_(); - oavra_ATN_addState($atn, $matchState); - oavra_ATNState_addTransition($matchState, oavra_AtomTransition__init_($bypassStop, $atn.$ruleToTokenType.data[$i])); - oavra_ATNState_addTransition($bypassStart, oavra_EpsilonTransition__init_($matchState)); - $i = $i + 1 | 0; - } - $rt_throw(jl_UnsupportedOperationException__init_($rt_s(6786))); - } - } - return $atn; - } - $state = ju_AbstractList$1_next($grammarType); - if ($state instanceof oavra_BlockStartState) { - $sets = $state; - $loopbackState = $sets.$endState; - if ($loopbackState === null) - $rt_throw(jl_IllegalStateException__init_0()); - if ($loopbackState.$startState !== null) - break; - $loopbackState.$startState = $sets; - } - d: { - if ($state instanceof oavra_PlusLoopbackState) { - $loopbackState = $state; - $i = 0; - while ($i < oavra_ATNState_getNumberOfTransitions($loopbackState)) { - $target = (oavra_ATNState_transition($loopbackState, $i)).$target; - if ($target instanceof oavra_PlusBlockStartState) - $target.$loopBackState0 = $loopbackState; - $i = $i + 1 | 0; - } - } else if ($state instanceof oavra_StarLoopbackState) { - $loopbackState = $state; - $i = 0; - while (true) { - if ($i >= oavra_ATNState_getNumberOfTransitions($loopbackState)) - break d; - $target = (oavra_ATNState_transition($loopbackState, $i)).$target; - if ($target instanceof oavra_StarLoopEntryState) - $target.$loopBackState = $loopbackState; - $i = $i + 1 | 0; - } - } - } - } - $rt_throw(jl_IllegalStateException__init_0()); +oncia_RenameUserAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNDeserializer_deserializeSets = ($this, $data, $p, $sets) => { - let var$4, $nsets, $i, $nintervals, $set, $j, $a; - $data = $data.data; - var$4 = $p + 1 | 0; - $nsets = $data[$p]; - $i = 0; - while ($i < $nsets) { - $nintervals = $data[var$4]; - $p = var$4 + 1 | 0; - $set = oavrm_IntervalSet__init_($rt_createIntArray(0)); - ju_ArrayList_add($sets, $set); - var$4 = $p + 1 | 0; - if (!$data[$p] ? 0 : 1) - oavrm_IntervalSet_add($set, (-1)); - $j = 0; - while ($j < $nintervals) { - $p = var$4 + 1 | 0; - $a = $data[var$4]; - var$4 = $p + 1 | 0; - oavrm_IntervalSet_add0($set, $a, $data[$p]); - $j = $j + 1 | 0; - } - $i = $i + 1 | 0; - } - return var$4; +oncia_RenameUserAction$_hashCode = $this => { + return (-601099297); +}, +oncia_RenameUserAction$_toString = $this => { + return $rt_s(5768); +}, +oncia_AssignPrivilegeAction$ = $rt_classWithoutFields(oncia_PrivilegeManagementAction), +oncia_AssignPrivilegeAction$_MODULE$ = null, +oncia_AssignPrivilegeAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AssignPrivilegeAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5769)); + oncia_AssignPrivilegeAction$_MODULE$ = var$1; +}, +oncia_AssignPrivilegeAction$_productArity = $this => { + return 0; +}, +oncia_AssignPrivilegeAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AssignPrivilegeAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AssignPrivilegeAction$_hashCode = $this => { + return 1823441720; +}, +oncia_AssignPrivilegeAction$_toString = $this => { + return $rt_s(5770); +}, +oncia_AssignRoleAction$ = $rt_classWithoutFields(oncia_RoleManagementAction), +oncia_AssignRoleAction$_MODULE$ = null, +oncia_AssignRoleAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AssignRoleAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5771)); + oncia_AssignRoleAction$_MODULE$ = var$1; +}, +oncia_AssignRoleAction$_productArity = $this => { + return 0; +}, +oncia_AssignRoleAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AssignRoleAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AssignRoleAction$_hashCode = $this => { + return (-1336755013); +}, +oncia_AssignRoleAction$_toString = $this => { + return $rt_s(5772); +}, +oncia_AlterAliasAction$ = $rt_classWithoutFields(oncia_AliasManagementAction), +oncia_AlterAliasAction$_MODULE$ = null, +oncia_AlterAliasAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AlterAliasAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5773)); + oncia_AlterAliasAction$_MODULE$ = var$1; +}, +oncia_AlterAliasAction$_productArity = $this => { + return 0; +}, +oncia_AlterAliasAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AlterAliasAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AlterAliasAction$_hashCode = $this => { + return 1331193552; +}, +oncia_AlterAliasAction$_toString = $this => { + return $rt_s(5774); +}, +oncia_AlterDatabaseAction$ = $rt_classWithoutFields(oncia_DatabaseManagementAction), +oncia_AlterDatabaseAction$_MODULE$ = null, +oncia_AlterDatabaseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AlterDatabaseAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5775)); + oncia_AlterDatabaseAction$_MODULE$ = var$1; +}, +oncia_AlterDatabaseAction$_productArity = $this => { + return 0; +}, +oncia_AlterDatabaseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AlterDatabaseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AlterDatabaseAction$_hashCode = $this => { + return (-1436899033); }, -oavra_ATNDeserializer_markPrecedenceDecisions = ($this, $atn) => { - let var$2, $state, $maybeLoopEndState; - var$2 = ju_AbstractList_iterator($atn.$states); - while (ju_AbstractList$1_hasNext(var$2)) { - $state = ju_AbstractList$1_next(var$2); - if (!($state instanceof oavra_StarLoopEntryState)) - continue; - if ($atn.$ruleToStartState.data[$state.$ruleIndex].$isLeftRecursiveRule) { - $maybeLoopEndState = (oavra_ATNState_transition($state, oavra_ATNState_getNumberOfTransitions($state) - 1 | 0)).$target; - if ($maybeLoopEndState instanceof oavra_LoopEndState && $maybeLoopEndState.$epsilonOnlyTransitions && (oavra_ATNState_transition($maybeLoopEndState, 0)).$target instanceof oavra_RuleStopState) - $state.$isPrecedenceDecision = 1; - } - } +oncia_AlterDatabaseAction$_toString = $this => { + return $rt_s(5776); }, -oavra_ATNDeserializer_verifyATN = ($this, $atn) => { - let $state, $starLoopEntryState, $decisionState; - $atn = ju_AbstractList_iterator($atn.$states); - while (ju_AbstractList$1_hasNext($atn)) { - $state = ju_AbstractList$1_next($atn); - if ($state === null) - continue; - oavra_ATNDeserializer_checkCondition($this, !$state.$epsilonOnlyTransitions && oavra_ATNState_getNumberOfTransitions($state) > 1 ? 0 : 1); - if ($state instanceof oavra_PlusBlockStartState) - oavra_ATNDeserializer_checkCondition($this, $state.$loopBackState0 === null ? 0 : 1); - if ($state instanceof oavra_StarLoopEntryState) { - $starLoopEntryState = $state; - oavra_ATNDeserializer_checkCondition($this, $starLoopEntryState.$loopBackState === null ? 0 : 1); - oavra_ATNDeserializer_checkCondition($this, oavra_ATNState_getNumberOfTransitions($starLoopEntryState) != 2 ? 0 : 1); - if (!((oavra_ATNState_transition($starLoopEntryState, 0)).$target instanceof oavra_StarBlockStartState)) { - if (!((oavra_ATNState_transition($starLoopEntryState, 0)).$target instanceof oavra_LoopEndState)) { - $atn = new jl_IllegalStateException; - jl_Throwable__init_($atn); - $rt_throw($atn); - } - oavra_ATNDeserializer_checkCondition($this, (oavra_ATNState_transition($starLoopEntryState, 1)).$target instanceof oavra_StarBlockStartState); - oavra_ATNDeserializer_checkCondition($this, $starLoopEntryState.$nonGreedy); - } else { - oavra_ATNDeserializer_checkCondition($this, (oavra_ATNState_transition($starLoopEntryState, 1)).$target instanceof oavra_LoopEndState); - oavra_ATNDeserializer_checkCondition($this, $starLoopEntryState.$nonGreedy ? 0 : 1); - } - } - if ($state instanceof oavra_StarLoopbackState) { - oavra_ATNDeserializer_checkCondition($this, oavra_ATNState_getNumberOfTransitions($state) != 1 ? 0 : 1); - oavra_ATNDeserializer_checkCondition($this, (oavra_ATNState_transition($state, 0)).$target instanceof oavra_StarLoopEntryState); - } - if ($state instanceof oavra_LoopEndState) - oavra_ATNDeserializer_checkCondition($this, $state.$loopBackState1 === null ? 0 : 1); - if ($state instanceof oavra_RuleStartState) - oavra_ATNDeserializer_checkCondition($this, $state.$stopState === null ? 0 : 1); - if ($state instanceof oavra_BlockStartState) - oavra_ATNDeserializer_checkCondition($this, $state.$endState === null ? 0 : 1); - if ($state instanceof oavra_BlockEndState) - oavra_ATNDeserializer_checkCondition($this, $state.$startState === null ? 0 : 1); - if (!($state instanceof oavra_DecisionState)) - oavra_ATNDeserializer_checkCondition($this, oavra_ATNState_getNumberOfTransitions($state) > 1 && !($state instanceof oavra_RuleStopState) ? 0 : 1); - else { - $decisionState = $state; - oavra_ATNDeserializer_checkCondition($this, oavra_ATNState_getNumberOfTransitions($decisionState) > 1 && $decisionState.$decision0 < 0 ? 0 : 1); - } - } +oncia_AlterUserAction$ = $rt_classWithoutFields(oncia_UserManagementAction), +oncia_AlterUserAction$_MODULE$ = null, +oncia_AlterUserAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_AlterUserAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5620)); + oncia_AlterUserAction$_MODULE$ = var$1; }, -oavra_ATNDeserializer_checkCondition = ($this, $condition) => { - let var$2, var$3; - var$2 = null; - if ($condition) - return; - var$3 = new jl_IllegalStateException; - jl_Throwable__init_0(var$3, var$2); - $rt_throw(var$3); +oncia_AlterUserAction$_productArity = $this => { + return 0; }, -oavra_ATNDeserializer_edgeFactory = ($this, $atn, $type, $src, $trg, $arg1, $arg2, $arg3, $sets) => { - let $target, $rt, $pt, $a; - $target = ju_ArrayList_get($atn.$states, $trg); - switch ($type) { - case 1: - break; - case 2: - if (!$arg3) - return oavra_RangeTransition__init_($target, $arg1, $arg2); - return oavra_RangeTransition__init_($target, (-1), $arg2); - case 3: - $rt = new oavra_RuleTransition; - oavra_Transition__init_($rt, ju_ArrayList_get($atn.$states, $arg1)); - $rt.$ruleIndex5 = $arg2; - $rt.$precedence1 = $arg3; - $rt.$followState = $target; - return $rt; - case 4: - $pt = new oavra_PredicateTransition; - $type = !$arg3 ? 0 : 1; - oavra_Transition__init_($pt, $target); - $pt.$ruleIndex1 = $arg1; - $pt.$predIndex = $arg2; - $pt.$isCtxDependent = $type; - return $pt; - case 5: - if (!$arg3) - return oavra_AtomTransition__init_($target, $arg1); - return oavra_AtomTransition__init_($target, (-1)); - case 6: - $a = new oavra_ActionTransition; - $type = !$arg3 ? 0 : 1; - oavra_Transition__init_($a, $target); - $a.$ruleIndex4 = $arg1; - $a.$actionIndex0 = $arg2; - $a.$isCtxDependent1 = $type; - return $a; - case 7: - return oavra_SetTransition__init_0($target, ju_ArrayList_get($sets, $arg1)); - case 8: - $atn = new oavra_NotSetTransition; - oavra_SetTransition__init_($atn, $target, ju_ArrayList_get($sets, $arg1)); - return $atn; - case 9: - $atn = new oavra_WildcardTransition; - oavra_Transition__init_($atn, $target); - return $atn; - case 10: - $atn = new oavra_PrecedencePredicateTransition; - oavra_Transition__init_($atn, $target); - $atn.$precedence0 = $arg1; - return $atn; - default: - $atn = new jl_IllegalArgumentException; - jl_Throwable__init_0($atn, $rt_s(6787)); - $rt_throw($atn); - } - return oavra_EpsilonTransition__init_($target); +oncia_AlterUserAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_ATNDeserializer_stateFactory = ($this, $type, $ruleIndex) => { - let $s, var$4, $message; - a: { - switch ($type) { - case 0: - break; - case 1: - $s = new oavra_BasicState; - oavra_ATNState__init_($s); - break a; - case 2: - $s = new oavra_RuleStartState; - oavra_ATNState__init_($s); - break a; - case 3: - $s = new oavra_BasicBlockStartState; - oavra_DecisionState__init_($s); - break a; - case 4: - $s = new oavra_PlusBlockStartState; - oavra_DecisionState__init_($s); - break a; - case 5: - $s = new oavra_StarBlockStartState; - oavra_DecisionState__init_($s); - break a; - case 6: - $s = new oavra_TokensStartState; - oavra_DecisionState__init_($s); - break a; - case 7: - $s = new oavra_RuleStopState; - oavra_ATNState__init_($s); - break a; - case 8: - $s = new oavra_BlockEndState; - oavra_ATNState__init_($s); - break a; - case 9: - $s = new oavra_StarLoopbackState; - oavra_ATNState__init_($s); - break a; - case 10: - $s = new oavra_StarLoopEntryState; - oavra_DecisionState__init_($s); - break a; - case 11: - $s = new oavra_PlusLoopbackState; - oavra_DecisionState__init_($s); - break a; - case 12: - $s = new oavra_LoopEndState; - oavra_ATNState__init_($s); - break a; - default: - $s = ju_Locale_getDefault(); - var$4 = $rt_createArray(jl_Object, 1); - var$4.data[0] = jl_Integer_valueOf($type); - $message = jl_String_format0($s, $rt_s(6788), var$4); - $s = new jl_IllegalArgumentException; - jl_Throwable__init_0($s, $message); - $rt_throw($s); - } - return null; - } - $s.$ruleIndex = $ruleIndex; - return $s; +oncia_AlterUserAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNDeserializer_lexerActionFactory = ($this, $type, $data1, $data2) => { - let var$4, var$5, var$6; - oavra_ATNDeserializer$1_$callClinit(); - switch (oavra_ATNDeserializer$1_$SwitchMap$org$antlr$v4$runtime$atn$LexerActionType.data[$type.$ordinal]) { - case 1: - $type = new oavra_LexerChannelAction; - $type.$channel = $data1; - return $type; - case 2: - $type = new oavra_LexerCustomAction; - $type.$ruleIndex3 = $data1; - $type.$actionIndex = $data2; - return $type; - case 3: - $type = new oavra_LexerModeAction; - $type.$mode3 = $data1; - return $type; - case 4: - break; - case 5: - return oavra_LexerPopModeAction_INSTANCE; - case 6: - $type = new oavra_LexerPushModeAction; - $type.$mode2 = $data1; - return $type; - case 7: - return oavra_LexerSkipAction_INSTANCE; - case 8: - $type = new oavra_LexerTypeAction; - $type.$type3 = $data1; - return $type; - default: - var$4 = new jl_IllegalArgumentException; - var$5 = ju_Locale_getDefault(); - var$6 = $rt_createArray(jl_Object, 1); - var$6.data[0] = $type; - jl_Throwable__init_0(var$4, jl_String_format0(var$5, $rt_s(6789), var$6)); - $rt_throw(var$4); - } - return oavra_LexerMoreAction_INSTANCE; +oncia_AlterUserAction$_hashCode = $this => { + return 983941751; }, -oavra_ATNDeserializer__clinit_ = () => { - oavra_ATNDeserializer_SERIALIZED_VERSION = 4; +oncia_AlterUserAction$_toString = $this => { + return $rt_s(5777); }; -function oavrd_DFA() { - let a = this; jl_Object.call(a); - a.$states0 = null; - a.$s0 = null; - a.$decision = 0; - a.$atnStartState = null; - a.$precedenceDfa = 0; +let oncia_ExecuteAdminProcedureAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ExecuteAdminProcedureAction$_MODULE$ = null, +oncia_ExecuteAdminProcedureAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ExecuteAdminProcedureAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5778)); + oncia_ExecuteAdminProcedureAction$_MODULE$ = var$1; +}, +oncia_ExecuteAdminProcedureAction$_productArity = $this => { + return 0; +}, +oncia_ExecuteAdminProcedureAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ExecuteAdminProcedureAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ExecuteAdminProcedureAction$_hashCode = $this => { + return 785569423; +}, +oncia_ExecuteAdminProcedureAction$_toString = $this => { + return $rt_s(5779); +}, +oncia_ExecuteProcedureAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ExecuteProcedureAction$_MODULE$ = null, +oncia_ExecuteProcedureAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ExecuteProcedureAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5780)); + oncia_ExecuteProcedureAction$_MODULE$ = var$1; +}, +oncia_ExecuteProcedureAction$_productArity = $this => { + return 0; +}, +oncia_ExecuteProcedureAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ExecuteProcedureAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ExecuteProcedureAction$_hashCode = $this => { + return 157693652; +}, +oncia_ExecuteProcedureAction$_toString = $this => { + return $rt_s(5781); +}, +oncia_ExecuteBoostedProcedureAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ExecuteBoostedProcedureAction$_MODULE$ = null, +oncia_ExecuteBoostedProcedureAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ExecuteBoostedProcedureAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5782)); + oncia_ExecuteBoostedProcedureAction$_MODULE$ = var$1; +}, +oncia_ExecuteBoostedProcedureAction$_productArity = $this => { + return 0; +}, +oncia_ExecuteBoostedProcedureAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ExecuteBoostedProcedureAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ExecuteBoostedProcedureAction$_hashCode = $this => { + return (-1002876740); +}, +oncia_ExecuteBoostedProcedureAction$_toString = $this => { + return $rt_s(5783); +}, +oncia_ExecuteFunctionAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ExecuteFunctionAction$_MODULE$ = null, +oncia_ExecuteFunctionAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ExecuteFunctionAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5784)); + oncia_ExecuteFunctionAction$_MODULE$ = var$1; +}, +oncia_ExecuteFunctionAction$_productArity = $this => { + return 0; +}, +oncia_ExecuteFunctionAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ExecuteFunctionAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ExecuteFunctionAction$_hashCode = $this => { + return 198180579; +}, +oncia_ExecuteFunctionAction$_toString = $this => { + return $rt_s(5785); +}, +oncia_ExecuteBoostedFunctionAction$ = $rt_classWithoutFields(oncia_DbmsAction), +oncia_ExecuteBoostedFunctionAction$_MODULE$ = null, +oncia_ExecuteBoostedFunctionAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ExecuteBoostedFunctionAction$; + oncia_DbmsAction__init_(var$1, $rt_s(5786)); + oncia_ExecuteBoostedFunctionAction$_MODULE$ = var$1; +}, +oncia_ExecuteBoostedFunctionAction$_productArity = $this => { + return 0; +}, +oncia_ExecuteBoostedFunctionAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ExecuteBoostedFunctionAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ExecuteBoostedFunctionAction$_hashCode = $this => { + return (-1363277829); +}, +oncia_ExecuteBoostedFunctionAction$_toString = $this => { + return $rt_s(5787); +}, +oncia_CreateIndexAction$ = $rt_classWithoutFields(oncia_IndexManagementAction), +oncia_CreateIndexAction$_MODULE$ = null, +oncia_CreateIndexAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateIndexAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5185)); + oncia_CreateIndexAction$_MODULE$ = var$1; +}, +oncia_CreateIndexAction$_productArity = $this => { + return 0; +}, +oncia_CreateIndexAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateIndexAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateIndexAction$_hashCode = $this => { + return 1213284076; +}, +oncia_CreateIndexAction$_toString = $this => { + return $rt_s(5788); +}, +oncia_CreateConstraintAction$ = $rt_classWithoutFields(oncia_ConstraintManagementAction), +oncia_CreateConstraintAction$_MODULE$ = null; +let oncia_CreateConstraintAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateConstraintAction$; + oncia_DatabaseAction__init_(var$1, $rt_s(5789)); + oncia_CreateConstraintAction$_MODULE$ = var$1; +}, +oncia_CreateConstraintAction$_productArity = $this => { + return 0; +}, +oncia_CreateConstraintAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_CreateConstraintAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateConstraintAction$_hashCode = $this => { + return 1912733615; +}, +oncia_CreateConstraintAction$_toString = $this => { + return $rt_s(5790); +}, +oncia_DatabasePrivilegeQualifier = $rt_classWithoutFields(0); +function oncia_UserAllQualifier() { + jl_Object.call(this); + this.$position325 = null; } -let oavrd_DFA__init_0 = ($this, $atnStartState, $decision) => { - let $precedenceDfa, $precedenceState; - $this.$states0 = ju_HashMap__init_(); - $this.$atnStartState = $atnStartState; - $this.$decision = $decision; - $precedenceDfa = 0; - if ($atnStartState instanceof oavra_StarLoopEntryState && $atnStartState.$isPrecedenceDecision) { - $precedenceDfa = 1; - $precedenceState = oavrd_DFAState__init_(oavra_ATNConfigSet__init_0()); - $precedenceState.$edges = $rt_createArray(oavrd_DFAState, 0); - $precedenceState.$isAcceptState = 0; - $precedenceState.$requiresFullContext = 0; - $this.$s0 = $precedenceState; - } - $this.$precedenceDfa = $precedenceDfa; +let oncia_UserAllQualifier_productPrefix = $this => { + return $rt_s(5791); }, -oavrd_DFA__init_ = (var_0, var_1) => { - let var_2 = new oavrd_DFA(); - oavrd_DFA__init_0(var_2, var_0, var_1); - return var_2; +oncia_UserAllQualifier_productArity = $this => { + return 0; }, -oavrd_DFA_isPrecedenceDfa = $this => { - return $this.$precedenceDfa; +oncia_UserAllQualifier_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavrd_DFA_getPrecedenceStartState = ($this, $precedence) => { - let var$2; - if (!$this.$precedenceDfa) { - var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(6790)); - $rt_throw(var$2); - } - if ($precedence >= 0 && $precedence < $this.$s0.$edges.data.length) - return $this.$s0.$edges.data[$precedence]; - return null; +oncia_UserAllQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavrd_DFA_setPrecedenceStartState = ($this, $precedence, $startState) => { - let var$3, $$je; - if (!$this.$precedenceDfa) { - $startState = new jl_IllegalStateException; - jl_Throwable__init_0($startState, $rt_s(6790)); - $rt_throw($startState); - } - if ($precedence < 0) - return; - var$3 = $this.$s0; - jl_Object_monitorEnterSync(var$3); - a: { - try { - if ($precedence >= $this.$s0.$edges.data.length) - $this.$s0.$edges = ju_Arrays_copyOf($this.$s0.$edges, $precedence + 1 | 0); - $this.$s0.$edges.data[$precedence] = $startState; - jl_Object_monitorExitSync(var$3); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $startState = $$je; - break a; - - } - return; - } - jl_Object_monitorExitSync(var$3); - $rt_throw($startState); +oncia_UserAllQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oavrd_DFA_toString = ($this, $vocabulary) => { - let $serializer, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; - if ($this.$s0 === null) - return $rt_s(4); - $serializer = new oavrd_DFASerializer; - $serializer.$dfa = $this; - $serializer.$vocabulary2 = $vocabulary; - if ($this.$s0 === null) - $vocabulary = null; - else { - $vocabulary = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($vocabulary); - var$3 = $serializer.$dfa; - var$4 = new ju_ArrayList; - var$5 = ju_HashMap_keySet(var$3.$states0); - ju_ArrayList__init_2(var$4, var$5.$size()); - var$5 = var$5.$iterator(); - var$6 = 0; - while (true) { - var$7 = var$4.$array1.data; - var$8 = var$7.length; - if (var$6 >= var$8) - break; - var$7[var$6] = var$5.$next(); - var$6 = var$6 + 1 | 0; - } - var$4.$size0 = var$8; - var$5 = new oavrd_DFA$1; - var$5.$this$019 = var$3; - ju_Collections_sort(var$4, var$5); - var$3 = ju_AbstractList_iterator(var$4); - while (ju_AbstractList$1_hasNext(var$3)) { - var$9 = ju_AbstractList$1_next(var$3); - var$10 = 0; - var$7 = var$9.$edges; - if (var$7 !== null) - var$10 = var$7.data.length; - var$11 = 0; - while (var$11 < var$10) { - var$4 = var$9.$edges.data[var$11]; - if (var$4 !== null && var$4.$stateNumber0 != 2147483647) { - jl_AbstractStringBuilder_append($vocabulary, oavrd_DFASerializer_getStateString($serializer, var$9)); - var$12 = oavr_VocabularyImpl_getDisplayName($serializer.$vocabulary2, var$11 - 1 | 0); - jl_AbstractStringBuilder_append($vocabulary, $rt_s(3607)); - jl_AbstractStringBuilder_append($vocabulary, var$12); - jl_AbstractStringBuilder_append($vocabulary, $rt_s(598)); - jl_AbstractStringBuilder_append($vocabulary, oavrd_DFASerializer_getStateString($serializer, var$4)); - jl_AbstractStringBuilder_append0($vocabulary, 10); - } - var$11 = var$11 + 1 | 0; - } - } - $vocabulary = jl_AbstractStringBuilder_toString($vocabulary); - if (!$vocabulary.$nativeString.length) - $vocabulary = null; - } - return $vocabulary; +oncia_UserAllQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$StatementContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StatementContext_getRuleIndex = $this => { +oncia_UserAllQualifier_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_UserAllQualifier)) + return 0; return 1; }, -oncias_SemanticCheckInterpreter$ExecutableCheck = $rt_classWithoutFields(0); -function oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper() { +oncia_UserAllQualifier_dup = ($this, $children) => { + return $this; +}, +oncia_UserAllQualifier__init_ = ($this, $position) => { + $this.$position325 = $position; +}, +oncia_UserAllQualifier__init_0 = var_0 => { + let var_1 = new oncia_UserAllQualifier(); + oncia_UserAllQualifier__init_(var_1, var_0); + return var_1; +}, +oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_00 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0_apply0 = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncia_UserQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserQualifier__init_(var$2, var$1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + return var$2; +}; +function oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0() { jl_Object.call(this); - this.$check10 = null; + this.$_0541 = null; } -let oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productPrefix = $this => { - return $rt_s(6791); +let oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0541; + var$3 = new oncia_FunctionQualifier; + oncipau_Util$_$callClinit(); + oncia_FunctionQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0() { + jl_Object.call(this); + this.$_0621 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0621; + var$3 = new oncia_ProcedureQualifier; + oncipau_Util$_$callClinit(); + oncia_ProcedureQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_00() { + jl_Object.call(this); + this.$_01114 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01114; + var$3 = new oncia_SettingQualifier; + oncipau_Util$_$callClinit(); + oncia_SettingQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productArity = $this => { +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_00 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0_apply = var$0 => { + return $rt_s(4); +}, +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_10 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1_apply0 = var$0 => { + return $rt_s(4); +}, +oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_00 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0_apply = var$0 => { + return $rt_s(4); +}, +oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_00 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0_apply0 = var$0 => { + return $rt_s(4); +}, +oncia_TraverseAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_TraverseAction$_MODULE$ = null, +oncia_TraverseAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_TraverseAction$; + oncia_GraphAction__init_(var$1, $rt_s(4492), $rt_s(5792)); + oncia_TraverseAction$_MODULE$ = var$1; +}, +oncia_TraverseAction$_productArity = $this => { + return 0; +}, +oncia_TraverseAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_TraverseAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_TraverseAction$_hashCode = $this => { + return 1138564712; +}, +oncia_TraverseAction$_toString = $this => { + return $rt_s(5793); +}, +oncia_MatchAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_MatchAction$_MODULE$ = null, +oncia_MatchAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_MatchAction$; + oncia_GraphAction__init_(var$1, $rt_s(4392), $rt_s(5258)); + oncia_MatchAction$_MODULE$ = var$1; +}, +oncia_MatchAction$_productArity = $this => { + return 0; +}, +oncia_MatchAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_MatchAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_MatchAction$_hashCode = $this => { + return (-1513044933); +}, +oncia_MatchAction$_toString = $this => { + return $rt_s(5794); +}, +oncia_ReadAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_ReadAction$_MODULE$ = null, +oncia_ReadAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_ReadAction$; + oncia_GraphAction__init_(var$1, $rt_s(32), $rt_s(5795)); + oncia_ReadAction$_MODULE$ = var$1; +}, +oncia_ReadAction$_productArity = $this => { + return 0; +}, +oncia_ReadAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ReadAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ReadAction$_hashCode = $this => { + return 962303884; +}, +oncia_ReadAction$_toString = $this => { + return $rt_s(5796); +}, +oncia_MergeAdminAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_MergeAdminAction$_MODULE$ = null, +oncia_MergeAdminAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_MergeAdminAction$; + oncia_GraphAction__init_(var$1, $rt_s(4393), $rt_s(5097)); + oncia_MergeAdminAction$_MODULE$ = var$1; +}, +oncia_MergeAdminAction$_productArity = $this => { + return 0; +}, +oncia_MergeAdminAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_MergeAdminAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_MergeAdminAction$_hashCode = $this => { + return 130313005; +}, +oncia_MergeAdminAction$_toString = $this => { + return $rt_s(5797); +}, +oncia_DeleteElementAction$ = $rt_classWithoutFields(oncia_GraphAction), +oncia_DeleteElementAction$_MODULE$ = null, +oncia_DeleteElementAction$__clinit_ = () => { + let var$1; + var$1 = new oncia_DeleteElementAction$; + oncia_GraphAction__init_(var$1, $rt_s(4320), $rt_s(5798)); + oncia_DeleteElementAction$_MODULE$ = var$1; +}, +oncia_DeleteElementAction$_productArity = $this => { + return 0; +}, +oncia_DeleteElementAction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_DeleteElementAction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_DeleteElementAction$_hashCode = $this => { + return (-513958841); +}, +oncia_DeleteElementAction$_toString = $this => { + return $rt_s(5799); +}, +oncia_NestedActionResource = $rt_classWithoutFields(0); +function oncia_LabelsResource() { + let a = this; jl_Object.call(a); + a.$labels3 = null; + a.$position311 = null; +} +let oncia_LabelsResource_productPrefix = $this => { + return $rt_s(5800); +}, +oncia_LabelsResource_productArity = $this => { return 1; }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productElement = ($this, $x$1) => { +oncia_LabelsResource_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$check10; + return $this.$labels3; default: } return sr_Statics_ioobe($x$1); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productIterator = $this => { +oncia_LabelsResource_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_hashCode = $this => { +oncia_LabelsResource_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_toString = $this => { +oncia_LabelsResource_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_equals = ($this, $x$1) => { +oncia_LabelsResource_equals = ($this, $x$1) => { let var$2, var$3; a: { b: { c: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_LabelsResource) ? 0 : 1)) break b; $x$1 = $x$1; - var$2 = $this.$check10; - $x$1 = $x$1.$check10; + var$2 = $this.$labels3; + $x$1 = $x$1.$labels3; if (var$2 !== null) { if (!var$2.$equals($x$1)) break b; @@ -299829,129 +229070,92 @@ oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_equals = ($this, $x$1) = var$3 = 0; } return var$3; -}; -function oncias_SemanticCheck$Map() { - let a = this; jl_Object.call(a); - a.$check11 = null; - a.$f3 = null; -} -let oncias_SemanticCheck$Map_chain = ($this, $next) => { - return oncias_SemanticCheck_chain$($this, $next); -}, -oncias_SemanticCheck$Map_ifOkChain = ($this, $next) => { - return oncias_SemanticCheck_ifOkChain$($this, $next); }, -oncias_SemanticCheck$Map_map = ($this, $f) => { - return oncias_SemanticCheck_map$($this, $f); -}, -oncias_SemanticCheck$Map_flatMap = ($this, $f) => { - return oncias_SemanticCheck_flatMap$($this, $f); +oncia_LabelsResource__init_ = ($this, $labels, $position) => { + $this.$labels3 = $labels; + $this.$position311 = $position; }, -oncias_SemanticCheck$Map_productPrefix = $this => { - return $rt_s(683); +oncia_LabelsResource__init_0 = (var_0, var_1) => { + let var_2 = new oncia_LabelsResource(); + oncia_LabelsResource__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_AllLabelResource() { + jl_Object.call(this); + this.$position317 = null; +} +let oncia_AllLabelResource_productPrefix = $this => { + return $rt_s(5801); }, -oncias_SemanticCheck$Map_productArity = $this => { - return 2; +oncia_AllLabelResource_productArity = $this => { + return 0; }, -oncias_SemanticCheck$Map_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$check11; - case 1: - return $this.$f3; - default: - } +oncia_AllLabelResource_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -oncias_SemanticCheck$Map_productIterator = $this => { +oncia_AllLabelResource_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheck$Map_hashCode = $this => { +oncia_AllLabelResource_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheck$Map_toString = $this => { +oncia_AllLabelResource_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheck$Map_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticCheck$Map) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$check11; - var$3 = $x$1.$check11; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$f3; - $x$1 = $x$1.$f3; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncia_AllLabelResource_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_AllLabelResource)) + return 0; + return 1; +}, +oncia_AllLabelResource__init_ = ($this, $position) => { + $this.$position317 = $position; +}, +oncia_AllLabelResource__init_0 = var_0 => { + let var_1 = new oncia_AllLabelResource(); + oncia_AllLabelResource__init_(var_1, var_0); + return var_1; }; -function oncias_SemanticCheckInterpreter$ExecutableCheck$Map() { - jl_Object.call(this); - this.$f1 = null; +function oncia_PropertiesResource() { + let a = this; jl_Object.call(a); + a.$properties14 = null; + a.$position322 = null; } -let oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productPrefix = $this => { - return $rt_s(683); +let oncia_PropertiesResource_productPrefix = $this => { + return $rt_s(5802); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productArity = $this => { +oncia_PropertiesResource_productArity = $this => { return 1; }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productElement = ($this, $x$1) => { +oncia_PropertiesResource_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$f1; + return $this.$properties14; default: } return sr_Statics_ioobe($x$1); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productIterator = $this => { +oncia_PropertiesResource_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Map_hashCode = $this => { +oncia_PropertiesResource_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Map_toString = $this => { +oncia_PropertiesResource_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$Map_equals = ($this, $x$1) => { +oncia_PropertiesResource_equals = ($this, $x$1) => { let var$2, var$3; a: { b: { c: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$Map) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_PropertiesResource) ? 0 : 1)) break b; $x$1 = $x$1; - var$2 = $this.$f1; - $x$1 = $x$1.$f1; + var$2 = $this.$properties14; + $x$1 = $x$1.$properties14; if (var$2 !== null) { - if (!jl_Object_equals(var$2, $x$1)) + if (!var$2.$equals($x$1)) break b; else break c; @@ -299966,114 +229170,259 @@ oncias_SemanticCheckInterpreter$ExecutableCheck$Map_equals = ($this, $x$1) => { var$3 = 0; } return var$3; +}, +oncia_PropertiesResource__init_ = ($this, $properties, $position) => { + $this.$properties14 = $properties; + $this.$position322 = $position; +}, +oncia_PropertiesResource__init_0 = (var_0, var_1) => { + let var_2 = new oncia_PropertiesResource(); + oncia_PropertiesResource__init_(var_2, var_0, var_1); + return var_2; }; -function oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap() { +function oncia_AllPropertyResource() { jl_Object.call(this); - this.$f5 = null; + this.$position329 = null; } -let oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productPrefix = $this => { - return $rt_s(6039); +let oncia_AllPropertyResource_productPrefix = $this => { + return $rt_s(5803); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productArity = $this => { +oncia_AllPropertyResource_productArity = $this => { + return 0; +}, +oncia_AllPropertyResource_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllPropertyResource_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllPropertyResource_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllPropertyResource_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllPropertyResource_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_AllPropertyResource)) + return 0; return 1; }, -oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$f5; - default: - } +oncia_AllPropertyResource__init_ = ($this, $position) => { + $this.$position329 = $position; +}, +oncia_AllPropertyResource__init_0 = var_0 => { + let var_1 = new oncia_AllPropertyResource(); + oncia_AllPropertyResource__init_(var_1, var_0); + return var_1; +}, +oncipvaf_DdlPrivilegeBuilder$GraphToken0 = $rt_classWithoutFields(0); +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0() { + jl_Object.call(this); + this.$_0736 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0736; + var$3 = new oncia_RelationshipQualifier; + oncipau_Util$_$callClinit(); + oncia_RelationshipQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncia_RelationshipAllQualifier() { + jl_Object.call(this); + this.$position323 = null; +} +let oncia_RelationshipAllQualifier_productPrefix = $this => { + return $rt_s(5804); +}, +oncia_RelationshipAllQualifier_productArity = $this => { + return 0; +}, +oncia_RelationshipAllQualifier_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productIterator = $this => { +oncia_RelationshipAllQualifier_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_hashCode = $this => { +oncia_RelationshipAllQualifier_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_toString = $this => { +oncia_RelationshipAllQualifier_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_equals = ($this, $x$1) => { +oncia_RelationshipAllQualifier_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_RelationshipAllQualifier)) + return 0; + return 1; +}, +oncia_RelationshipAllQualifier_dup = ($this, $children) => { + return $this; +}, +oncia_RelationshipAllQualifier__init_ = ($this, $position) => { + $this.$position323 = $position; +}, +oncia_RelationshipAllQualifier__init_0 = var_0 => { + let var_1 = new oncia_RelationshipAllQualifier(); + oncia_RelationshipAllQualifier__init_(var_1, var_0); + return var_1; +}; +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1() { + jl_Object.call(this); + this.$_0252 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1_apply = (var$0, var$1) => { let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap) ? 0 : 1)) - break b; - $x$1 = $x$1; - var$2 = $this.$f5; - $x$1 = $x$1.$f5; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } + var$1 = var$1; + var$2 = var$0.$_0252; + var$3 = new oncia_LabelQualifier; + oncipau_Util$_$callClinit(); + oncia_LabelQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncia_LabelAllQualifier() { + jl_Object.call(this); + this.$position331 = null; +} +let oncia_LabelAllQualifier_productPrefix = $this => { + return $rt_s(5805); +}, +oncia_LabelAllQualifier_productArity = $this => { + return 0; +}, +oncia_LabelAllQualifier_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_LabelAllQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LabelAllQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LabelAllQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_LabelAllQualifier_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_LabelAllQualifier)) + return 0; + return 1; +}, +oncia_LabelAllQualifier_dup = ($this, $children) => { + return $this; +}, +oncia_LabelAllQualifier__init_0 = ($this, $position) => { + $this.$position331 = $position; +}, +oncia_LabelAllQualifier__init_ = var_0 => { + let var_1 = new oncia_LabelAllQualifier(); + oncia_LabelAllQualifier__init_0(var_1, var_0); + return var_1; +}; +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2() { + jl_Object.call(this); + this.$_0837 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0837; + var$3 = new oncia_ElementQualifier; + oncipau_Util$_$callClinit(); + oncia_ElementQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); return var$3; }; -function oncias_SemanticCheck$CheckFromContext() { +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3() { jl_Object.call(this); - this.$f4 = null; + this.$_0924 = null; } -let oncias_SemanticCheck$CheckFromContext_chain = ($this, $next) => { - return oncias_SemanticCheck_chain$($this, $next); -}, -oncias_SemanticCheck$CheckFromContext_ifOkChain = ($this, $next) => { - return oncias_SemanticCheck_ifOkChain$($this, $next); +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0924; + var$3 = new oncia_LabelQualifier; + oncipau_Util$_$callClinit(); + oncia_LabelQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncia_PatternQualifier() { + let a = this; jl_Object.call(a); + a.$labelQualifiers0 = null; + a.$variable21 = null; + a.$expression36 = null; +} +let oncia_PatternQualifier_labelQualifiers = $this => { + return $this.$labelQualifiers0; }, -oncias_SemanticCheck$CheckFromContext_map = ($this, $f) => { - return oncias_SemanticCheck_map$($this, $f); +oncia_PatternQualifier_variable = $this => { + return $this.$variable21; }, -oncias_SemanticCheck$CheckFromContext_flatMap = ($this, $f) => { - return oncias_SemanticCheck_flatMap$($this, $f); +oncia_PatternQualifier_expression = $this => { + return $this.$expression36; }, -oncias_SemanticCheck$CheckFromContext_productPrefix = $this => { - return $rt_s(6792); +oncia_PatternQualifier_productPrefix = $this => { + return $rt_s(5806); }, -oncias_SemanticCheck$CheckFromContext_productArity = $this => { - return 1; +oncia_PatternQualifier_productArity = $this => { + return 3; }, -oncias_SemanticCheck$CheckFromContext_productElement = ($this, $x$1) => { +oncia_PatternQualifier_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$f4; + return $this.$labelQualifiers0; + case 1: + return $this.$variable21; + case 2: + return $this.$expression36; default: } return sr_Statics_ioobe($x$1); }, -oncias_SemanticCheck$CheckFromContext_productIterator = $this => { +oncia_PatternQualifier_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheck$CheckFromContext_hashCode = $this => { +oncia_PatternQualifier_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheck$CheckFromContext_toString = $this => { +oncia_PatternQualifier_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticCheck$CheckFromContext_equals = ($this, $x$1) => { - let var$2, var$3; +oncia_PatternQualifier_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { c: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticCheck$CheckFromContext) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_PatternQualifier) ? 0 : 1)) break b; - $x$1 = $x$1; - var$2 = $this.$f4; - $x$1 = $x$1.$f4; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, $x$1)) + d: { + $x$1 = $x$1; + var$2 = $this.$labelQualifiers0; + var$3 = $x$1.$labelQualifiers0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$variable21; + var$3 = $x$1.$variable21; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$expression36; + $x$1 = $x$1.$expression36; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) break b; else break c; @@ -300082,6711 +229431,10473 @@ oncias_SemanticCheck$CheckFromContext_equals = ($this, $x$1) => { break b; } } - var$3 = 1; + var$4 = 1; break a; } - var$3 = 0; + var$4 = 0; } - return var$3; -}; -function oncias_SemanticCheck$Annotated() { - let a = this; jl_Object.call(a); - a.$check12 = null; - a.$annotation = null; -} -let oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$ = $rt_classWithoutFields(), -oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_MODULE$ = null, -oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$__clinit_ = () => { - oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_MODULE$ = new oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$; -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productArity = $this => { - return 0; -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_hashCode = $this => { - return 489207872; -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_toString = $this => { - return $rt_s(6793); -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$ = $rt_classWithoutFields(), -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$ = null, -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$__clinit_ = () => { - oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_MODULE$ = new oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$; -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productArity = $this => { - return 0; -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); + return var$4; }, -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_hashCode = $this => { - return 1210398295; +oncia_PatternQualifier_dup = ($this, $children) => { + return oncia_PatternQualifier__init_0($children.$head(), $children.$apply1(1), $children.$apply1(2)); }, -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_toString = $this => { - return $rt_s(6794); +oncia_PatternQualifier__init_ = ($this, $labelQualifiers, $variable, $expression) => { + $this.$labelQualifiers0 = $labelQualifiers; + $this.$variable21 = $variable; + $this.$expression36 = $expression; }, -oncifp_ResolvedCall$$signatureResults$lambda$_10_0 = $rt_classWithoutFields(), -oncifp_ResolvedCall$$signatureResults$lambda$_10_0_apply = var$0 => { - oncifp_ResolvedCall$_$callClinit(); - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +oncia_PatternQualifier__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_PatternQualifier(); + oncia_PatternQualifier__init_(var_3, var_0, var_1, var_2); + return var_3; }; -function oncifp_ResolvedCall$$signatureResults$lambda$_10_1() { +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4() { jl_Object.call(this); - this.$_033 = null; + this.$_0383 = null; } -let oncifp_ResolvedCall$$signatureResults$lambda$_10_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_033; - oncifp_ResolvedCall$_$callClinit(); - return oncia_ProcedureResultItem$_apply(oncia_ProcedureResultItem$_MODULE$, oncie_Variable__init_(var$1.$name9, var$2), var$2); +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4_apply0 = var$0 => { + return (oavr_ParserRuleContext_getRuleContext(var$0.$_0383, $rt_cls(oncipv_Cypher5Parser$MapContext), 0)).$ast0; }, -oncipv_Cypher5Parser$StatementContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StatementContext_getRuleIndex = $this => { - return 1; -}; -function oavr_CommonTokenFactory() { - jl_Object.call(this); - this.$copyText = 0; -} -let oavr_CommonTokenFactory_DEFAULT = null, -oavr_CommonTokenFactory_create = ($this, var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8) => { - let var$9; - var$9 = oavr_CommonToken__init_0(var$1, var$2, var$4, var$5, var$6); - var$9.$line4 = var$7; - var$9.$charPositionInLine0 = var$8; - if (var$3 !== null) - var$9.$text0 = var$3; - else if ($this.$copyText) { - var$1 = var$1.$b0; - if (var$1 !== null) - var$9.$text0 = var$1.$getText0(oavrm_Interval_of(var$5, var$6)); +oncia_WaitableAdministrationCommand = $rt_classWithoutFields(0), +oncia_WaitableAdministrationCommand_returnColumns$ = $$this => { + let var$2, var$3; + var$2 = $$this.$waitUntilComplete(); + oncia_NoWait$_$callClinit(); + if (jl_Object_equals(oncia_NoWait$_MODULE$, var$2)) { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + $$this = sci_Nil$_MODULE$; + } else { + var$3 = sci_$colon$colon__init_($rt_s(5568), sci_$colon$colon__init_($rt_s(5571), sci_$colon$colon__init_($rt_s(5807), sci_$colon$colon__init_($rt_s(5808), sci_Nil$_MODULE$)))); + var$2 = new oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0; + var$2.$_01030 = $$this; + $$this = sci_List_map(var$3, var$2); } - return var$9; -}, -oavr_CommonTokenFactory__clinit_ = () => { - let var$1; - var$1 = new oavr_CommonTokenFactory; - var$1.$copyText = 0; - oavr_CommonTokenFactory_DEFAULT = var$1; + return $$this; }; -function oavrm_Pair() { +function oncia_CreateCompositeDatabase() { let a = this; jl_Object.call(a); - a.$a7 = null; - a.$b0 = null; + a.$databaseName3 = null; + a.$ifExistsDo2 = null; + a.$options6 = null; + a.$waitUntilComplete5 = null; + a.$position129 = null; + a.$isReadOnly15 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar22 = null; } -let oavrm_Pair__init_0 = ($this, $a, $b) => { - $this.$a7 = $a; - $this.$b0 = $b; +let oncia_CreateCompositeDatabase_returnColumns = $this => { + return oncia_WaitableAdministrationCommand_returnColumns$($this); }, -oavrm_Pair__init_ = (var_0, var_1) => { - let var_2 = new oavrm_Pair(); - oavrm_Pair__init_0(var_2, var_0, var_1); - return var_2; +oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oavrm_Pair_equals = ($this, $obj) => { - let $other; - if ($obj === $this) - return 1; - if (!($obj instanceof oavrm_Pair)) - return 0; - $other = $obj; - return oavrm_ObjectEqualityComparator_equals(oavrm_ObjectEqualityComparator_INSTANCE, $this.$a7, $other.$a7) && oavrm_ObjectEqualityComparator_equals(oavrm_ObjectEqualityComparator_INSTANCE, $this.$b0, $other.$b0) ? 1 : 0; +oncia_CreateCompositeDatabase_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oavrm_Pair_hashCode = $this => { - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update0(oavrm_MurmurHash_initialize(), $this.$a7), $this.$b0), 2); +oncia_CreateCompositeDatabase_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oavrm_Pair_toString = $this => { - let var$1, var$2; - var$1 = $rt_createArray(jl_Object, 2); - var$2 = var$1.data; - var$2[0] = $this.$a7; - var$2[1] = $this.$b0; - return jl_String_format($rt_s(6795), var$1); -}; -function oavra_LexerATNSimulator$SimState() { - let a = this; jl_Object.call(a); - a.$index8 = 0; - a.$line6 = 0; - a.$charPos = 0; - a.$dfaState = null; -} -let oavra_LexerATNSimulator$SimState_reset = $this => { - $this.$index8 = (-1); - $this.$line6 = 0; - $this.$charPos = (-1); - $this.$dfaState = null; -}; -function juc_CopyOnWriteArrayList() { - jl_Object.call(this); - this.$array10 = null; -} -let juc_CopyOnWriteArrayList_add = ($this, $e) => { - let $copy; - $copy = ju_Arrays_copyOf($this.$array10, $this.$array10.data.length + 1 | 0); - $copy.data[$this.$array10.data.length] = $e; - $this.$array10 = $copy; - return 1; +oncia_CreateCompositeDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -juc_CopyOnWriteArrayList_iterator = $this => { - let var$1, var$2, var$3; - var$1 = new juc_CopyOnWriteArrayList$ListIteratorImpl; - var$2 = $this.$array10; - var$3 = var$2.data; - var$1.$current4 = 0; - var$1.$arr = var$2; - var$1.$size10 = var$3.length; - return var$1; -}; -function oavr_Recognizer$1() { - juc_CopyOnWriteArrayList.call(this); - this.$this$025 = null; -} -function oavra_ATNDeserializationOptions() { - let a = this; jl_Object.call(a); - a.$readOnly2 = 0; - a.$verifyATN0 = 0; - a.$generateRuleBypassTransitions = 0; -} -let oavra_ATNDeserializationOptions_defaultOptions = null, -oavra_ATNDeserializationOptions_$callClinit = () => { - oavra_ATNDeserializationOptions_$callClinit = $rt_eraseClinit(oavra_ATNDeserializationOptions); - oavra_ATNDeserializationOptions__clinit_(); +oncia_CreateCompositeDatabase_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oavra_ATNDeserializationOptions_getDefaultOptions = () => { - oavra_ATNDeserializationOptions_$callClinit(); - return oavra_ATNDeserializationOptions_defaultOptions; +oncia_CreateCompositeDatabase_foldedOver = $this => { + return $this; }, -oavra_ATNDeserializationOptions_isVerifyATN = $this => { - return $this.$verifyATN0; +oncia_CreateCompositeDatabase_folder = $this => { + return onciu_Foldable_folder$($this); }, -oavra_ATNDeserializationOptions_isGenerateRuleBypassTransitions = $this => { - return $this.$generateRuleBypassTransitions; +oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly15 = $x$1; }, -oavra_ATNDeserializationOptions__clinit_ = () => { - let var$1; - var$1 = new oavra_ATNDeserializationOptions; - oavra_ATNDeserializationOptions_$callClinit(); - var$1.$verifyATN0 = 1; - var$1.$generateRuleBypassTransitions = 0; - oavra_ATNDeserializationOptions_defaultOptions = var$1; - var$1.$readOnly2 = 1; -}; -function oavra_ATN() { - let a = this; jl_Object.call(a); - a.$states = null; - a.$decisionToState = null; - a.$ruleToStartState = null; - a.$ruleToStopState = null; - a.$modeNameToStartState = null; - a.$grammarType = null; - a.$maxTokenType = 0; - a.$ruleToTokenType = null; - a.$lexerActions0 = null; - a.$modeToStartState = null; -} -let oavra_ATN__init_0 = ($this, $grammarType, $maxTokenType) => { - $this.$states = ju_ArrayList__init_(); - $this.$decisionToState = ju_ArrayList__init_(); - $this.$modeNameToStartState = ju_LinkedHashMap__init_(); - $this.$modeToStartState = ju_ArrayList__init_(); - $this.$grammarType = $grammarType; - $this.$maxTokenType = $maxTokenType; +oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar22; }, -oavra_ATN__init_ = (var_0, var_1) => { - let var_2 = new oavra_ATN(); - oavra_ATN__init_0(var_2, var_0, var_1); - return var_2; +oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar22 = $x$1; }, -oavra_ATN_nextTokens0 = ($this, $s, $ctx) => { - let $anal, var$4, var$5; - $anal = new oavra_LL1Analyzer; - $anal.$atn1 = $this; - var$4 = null; - var$5 = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavra_LL1Analyzer__LOOK($anal, $s, var$4, $ctx === null ? null : oavra_PredictionContext_fromRuleContext($s.$atn2, $ctx), var$5, ju_HashSet__init_(), ju_BitSet__init_(), 1, 1); - return var$5; +oncia_CreateCompositeDatabase_databaseName = $this => { + return $this.$databaseName3; }, -oavra_ATN_nextTokens = ($this, $s) => { - let var$2; - var$2 = $s.$nextTokenWithinRule; - if (var$2 !== null) - return var$2; - var$2 = oavra_ATN_nextTokens0($this, $s, null); - $s.$nextTokenWithinRule = var$2; - oavrm_IntervalSet_setReadonly(var$2, 1); - return $s.$nextTokenWithinRule; +oncia_CreateCompositeDatabase_ifExistsDo = $this => { + return $this.$ifExistsDo2; }, -oavra_ATN_addState = ($this, $state) => { - if ($state !== null) { - $state.$atn2 = $this; - $state.$stateNumber = $this.$states.$size0; - } - ju_ArrayList_add($this.$states, $state); +oncia_CreateCompositeDatabase_options = $this => { + return $this.$options6; }, -oavra_ATN_defineDecisionState = ($this, $s) => { - let var$2; - ju_ArrayList_add($this.$decisionToState, $s); - var$2 = $this.$decisionToState.$size0 - 1 | 0; - $s.$decision0 = var$2; - return var$2; +oncia_CreateCompositeDatabase_waitUntilComplete = $this => { + return $this.$waitUntilComplete5; }, -oavra_ATN_getDecisionState = ($this, $decision) => { - if (ju_AbstractCollection_isEmpty($this.$decisionToState)) - return null; - return ju_ArrayList_get($this.$decisionToState, $decision); +oncia_CreateCompositeDatabase_position = $this => { + return $this.$position129; }, -oavra_ATN_getNumberOfDecisions = $this => { - return $this.$decisionToState.$size0; +oncia_CreateCompositeDatabase_name = $this => { + let var$1, var$2; + var$1 = $this.$ifExistsDo2; + oncia_IfExistsReplace$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) + var$2 = 1; + else { + oncia_IfExistsInvalidSyntax$_$callClinit(); + var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; + } + if (!var$2) + return $rt_s(5682); + return $rt_s(5809); }, -oavra_ATN_getExpectedTokens = ($this, $stateNumber, $context) => { - let $s, $following, $expected; - if ($stateNumber >= 0) { - $s = $this.$states; - if ($stateNumber < $s.$size0) { - $following = oavra_ATN_nextTokens($this, ju_ArrayList_get($s, $stateNumber)); - if (!oavrm_IntervalSet_contains($following, (-2))) - return $following; - $expected = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavrm_IntervalSet_addAll($expected, $following); - oavrm_IntervalSet_remove($expected, (-2)); - while ($context !== null && $context.$invokingState >= 0 && oavrm_IntervalSet_contains($following, (-2))) { - $following = oavra_ATN_nextTokens($this, (oavra_ATNState_transition(ju_ArrayList_get($this.$states, $context.$invokingState), 0)).$followState); - oavrm_IntervalSet_addAll($expected, $following); - oavrm_IntervalSet_remove($expected, (-2)); - $context = $context.$parent; - } - if (oavrm_IntervalSet_contains($following, (-2))) - oavrm_IntervalSet_add($expected, (-1)); - return $expected; +oncia_CreateCompositeDatabase_semanticCheck = $this => { + let var$1, var$2, $name, var$4, var$5, var$6, var$7, var$8; + var$1 = $this.$ifExistsDo2; + oncia_IfExistsInvalidSyntax$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { + onciap_Prettifier$_$callClinit(); + var$2 = onciap_Prettifier$_MODULE$; + $name = $this.$databaseName3; + s_DummyImplicit$_$callClinit(); + $name = onciap_Prettifier$_escapeName(var$2, $name, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$7 = var$6.data; + oncias_SemanticError$_$callClinit(); + var$7[0] = oncias_SemanticError$_bothOrReplaceAndIfNotExists(oncias_SemanticError$_MODULE$, $rt_s(5810), $name, $this.$position129); + return oncias_SemanticCheck$_error(var$4, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); + } + var$2 = $this.$databaseName3; + if (var$2 instanceof oncia_NamespacedName) { + var$2 = var$2; + if (var$2.$namespace4 instanceof s_Some) { + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + $name = oncia_AdministrationCommandSemanticAnalysis$_MODULE$; + var$4 = oncia_NamespacedName_toString(var$2); + var$5 = oncia_NamespacedName_toString(var$2); + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$8, $rt_s(5811)), var$5), $rt_s(5812)); + return oncia_AdministrationCommandSemanticAnalysis$_inputContainsInvalidCharactersError($name, var$4, $rt_s(5813), jl_AbstractStringBuilder_toString(var$8), var$2.$position121); } } - $s = new jl_IllegalArgumentException; - jl_Throwable__init_0($s, $rt_s(6796)); - $rt_throw($s); -}; -function oavra_ATNState() { - let a = this; jl_Object.call(a); - a.$atn2 = null; - a.$stateNumber = 0; - a.$ruleIndex = 0; - a.$epsilonOnlyTransitions = 0; - a.$transitions = null; - a.$nextTokenWithinRule = null; -} -let oavra_ATNState_serializationNames = null, -oavra_ATNState_$callClinit = () => { - oavra_ATNState_$callClinit = $rt_eraseClinit(oavra_ATNState); - oavra_ATNState__clinit_(); -}, -oavra_ATNState__init_ = $this => { - oavra_ATNState_$callClinit(); - $this.$atn2 = null; - $this.$stateNumber = (-1); - $this.$epsilonOnlyTransitions = 0; - $this.$transitions = ju_ArrayList__init_1(4); + return oncia_AdministrationCommand_semanticCheck$($this); }, -oavra_ATNState_hashCode = $this => { - return $this.$stateNumber; +oncia_CreateCompositeDatabase_productPrefix = $this => { + return $rt_s(5814); }, -oavra_ATNState_equals = ($this, $o) => { - if (!($o instanceof oavra_ATNState)) - return 0; - return $this.$stateNumber != $o.$stateNumber ? 0 : 1; +oncia_CreateCompositeDatabase_productArity = $this => { + return 4; }, -oavra_ATNState_toString = $this => { - return jl_String_valueOf0($this.$stateNumber); +oncia_CreateCompositeDatabase_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$databaseName3; + case 1: + return $this.$ifExistsDo2; + case 2: + return $this.$options6; + case 3: + return $this.$waitUntilComplete5; + default: + } + return sr_Statics_ioobe($x$1); }, -oavra_ATNState_getTransitions = $this => { - return ju_AbstractCollection_toArray($this.$transitions, $rt_createArray(oavra_Transition, 0)); +oncia_CreateCompositeDatabase_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNState_getNumberOfTransitions = $this => { - return $this.$transitions.$size0; +oncia_CreateCompositeDatabase_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNState_addTransition = ($this, $e) => { - oavra_ATNState_addTransition0($this, $this.$transitions.$size0, $e); +oncia_CreateCompositeDatabase_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNState_addTransition0 = ($this, $index, $e) => { - let var$3, var$4, var$5, $alreadyPresent, $t; - if (ju_AbstractCollection_isEmpty($this.$transitions)) - $this.$epsilonOnlyTransitions = $e.$isEpsilon(); - else if ($this.$epsilonOnlyTransitions != $e.$isEpsilon()) { - var$3 = jl_System_err(); - var$4 = ju_Locale_getDefault(); - var$5 = $rt_createArray(jl_Object, 1); - var$5.data[0] = jl_Integer_valueOf($this.$stateNumber); - ji_PrintStream_format(var$3, var$4, $rt_s(6797), var$5); - $this.$epsilonOnlyTransitions = 0; - } - $alreadyPresent = 0; - var$3 = ju_AbstractList_iterator($this.$transitions); +oncia_CreateCompositeDatabase_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - while (ju_AbstractList$1_hasNext(var$3)) { - $t = ju_AbstractList$1_next(var$3); - if ($t.$target.$stateNumber == $e.$target.$stateNumber) { - if ($t.$label0() !== null && $e.$label0() !== null && oavrm_IntervalSet_equals($t.$label0(), $e.$label0())) { - $alreadyPresent = 1; - break a; - } - if ($t.$isEpsilon() && $e.$isEpsilon()) { - $alreadyPresent = 1; - break a; + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateCompositeDatabase) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$databaseName3; + var$3 = $x$1.$databaseName3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$ifExistsDo2; + var$3 = $x$1.$ifExistsDo2; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$options6; + var$3 = $x$1.$options6; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$waitUntilComplete5; + $x$1 = $x$1.$waitUntilComplete5; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } } + var$4 = 1; + break a; } + var$4 = 0; } - if (!$alreadyPresent) - ju_ArrayList_add0($this.$transitions, $index, $e); + return var$4; }, -oavra_ATNState_transition = ($this, $i) => { - return ju_ArrayList_get($this.$transitions, $i); +oncia_CreateCompositeDatabase_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oavra_ATNState_removeTransition = ($this, $index) => { - return ju_ArrayList_remove($this.$transitions, $index); +oncia_CreateCompositeDatabase_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oavra_ATNState__clinit_ = () => { - oavra_ATNState_serializationNames = ju_Collections_unmodifiableList(ju_Arrays_asList($rt_wrapArray(jl_String, [$rt_s(4469), $rt_s(6798), $rt_s(6799), $rt_s(6800), $rt_s(6801), $rt_s(6802), $rt_s(6803), $rt_s(6804), $rt_s(6805), $rt_s(6806), $rt_s(6807), $rt_s(6808), $rt_s(6809)]))); -}; -function oavra_DecisionState() { - let a = this; oavra_ATNState.call(a); - a.$decision0 = 0; - a.$nonGreedy = 0; -} -let oavra_DecisionState__init_ = $this => { - oavra_ATNState__init_($this); - $this.$decision0 = (-1); -}; -function oavra_StarLoopEntryState() { - let a = this; oavra_DecisionState.call(a); - a.$loopBackState = null; - a.$isPrecedenceDecision = 0; -} -let oavra_StarLoopEntryState_getStateType = $this => { - return 10; -}; -function oavrd_DFAState() { - let a = this; jl_Object.call(a); - a.$stateNumber0 = 0; - a.$configs = null; - a.$edges = null; - a.$isAcceptState = 0; - a.$prediction = 0; - a.$lexerActionExecutor0 = null; - a.$requiresFullContext = 0; - a.$predicates = null; -} -let oavrd_DFAState__init_0 = ($this, $configs) => { - $this.$stateNumber0 = (-1); - $this.$configs = oavra_ATNConfigSet__init_0(); - $this.$isAcceptState = 0; - $this.$configs = $configs; +oncia_CreateCompositeDatabase__init_ = ($this, $databaseName, $ifExistsDo, $options, $waitUntilComplete, $position) => { + $this.$databaseName3 = $databaseName; + $this.$ifExistsDo2 = $ifExistsDo; + $this.$options6 = $options; + $this.$waitUntilComplete5 = $waitUntilComplete; + $this.$position129 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oavrd_DFAState__init_ = var_0 => { - let var_1 = new oavrd_DFAState(); - oavrd_DFAState__init_0(var_1, var_0); - return var_1; +oncia_CreateCompositeDatabase__init_0 = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_CreateCompositeDatabase(); + oncia_CreateCompositeDatabase__init_(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; }, -oavrd_DFAState_hashCode = $this => { - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(7, oavra_ATNConfigSet_hashCode($this.$configs)), 1); +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oavrd_DFAState_equals = ($this, $o) => { - let $other; - if ($this === $o) - return 1; - if (!($o instanceof oavrd_DFAState)) - return 0; - $other = $o; - return oavra_ATNConfigSet_equals($this.$configs, $other.$configs); +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1_apply = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oavrd_DFAState_toString = $this => { - let $buf, var$2, var$3; - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - var$2 = jl_StringBuilder_append0($buf, $this.$stateNumber0); - jl_AbstractStringBuilder_append(var$2, $rt_s(91)); - jl_StringBuilder_append(var$2, $this.$configs); - if ($this.$isAcceptState) { - jl_AbstractStringBuilder_append($buf, $rt_s(6810)); - var$3 = $this.$predicates; - if (var$3 === null) - jl_StringBuilder_append0($buf, $this.$prediction); - else - jl_AbstractStringBuilder_append($buf, ju_Arrays_toString(var$3)); - } - return jl_AbstractStringBuilder_toString($buf); +oncia_WaitUntilComplete = $rt_classWithoutFields(0), +oncia_WaitUntilComplete_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq(Long_fromInt(300)); +}, +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0_apply = var$0 => { + return s_None$_MODULE$; +}, +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1_apply = var$0 => { + return s_None$_MODULE$; }; -function oavra_ATNConfigSet() { +function oncia_Topology() { let a = this; jl_Object.call(a); - a.$readonly = 0; - a.$configLookup = null; - a.$configs0 = null; - a.$uniqueAlt = 0; - a.$conflictingAlts = null; - a.$hasSemanticContext = 0; - a.$dipsIntoOuterContext = 0; - a.$fullCtx = 0; - a.$cachedHashCode = 0; + a.$primaries = null; + a.$secondaries = null; } -let oavra_ATNConfigSet__init_2 = ($this, $fullCtx) => { - let var$2; - $this.$readonly = 0; - $this.$configs0 = ju_ArrayList__init_1(7); - $this.$cachedHashCode = (-1); - var$2 = new oavra_ATNConfigSet$ConfigHashSet; - oavra_ATNConfigSet$AbstractConfigHashSet__init_(var$2, oavra_ATNConfigSet$ConfigEqualityComparator_INSTANCE); - $this.$configLookup = var$2; - $this.$fullCtx = $fullCtx; -}, -oavra_ATNConfigSet__init_ = var_0 => { - let var_1 = new oavra_ATNConfigSet(); - oavra_ATNConfigSet__init_2(var_1, var_0); - return var_1; +let oncia_Topology_productPrefix = $this => { + return $rt_s(5815); }, -oavra_ATNConfigSet__init_1 = $this => { - oavra_ATNConfigSet__init_2($this, 1); +oncia_Topology_productArity = $this => { + return 2; }, -oavra_ATNConfigSet__init_0 = () => { - let var_0 = new oavra_ATNConfigSet(); - oavra_ATNConfigSet__init_1(var_0); - return var_0; +oncia_Topology_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$primaries; + case 1: + return $this.$secondaries; + default: + } + return sr_Statics_ioobe($x$1); }, -oavra_ATNConfigSet_add0 = ($this, $config) => { - return oavra_ATNConfigSet_add($this, $config, null); +oncia_Topology_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNConfigSet_add = ($this, $config, $mergeCache) => { - let $existing, $rootIsWildcard, $merged; - if ($this.$readonly) { - $config = new jl_IllegalStateException; - jl_Throwable__init_0($config, $rt_s(6811)); - $rt_throw($config); - } - if ($config.$semanticContext !== oavra_SemanticContext$Empty_Instance) - $this.$hasSemanticContext = 1; - if (oavra_ATNConfig_getOuterContextDepth($config) > 0) - $this.$dipsIntoOuterContext = 1; - $existing = $this.$configLookup; - if ($existing.$n > $existing.$threshold2) - oavrm_Array2DHashSet_expand($existing); - $existing = oavrm_Array2DHashSet_getOrAddImpl($existing, $config); - if ($existing === $config) { - $this.$cachedHashCode = (-1); - ju_ArrayList_add($this.$configs0, $config); - return 1; - } - $rootIsWildcard = $this.$fullCtx ? 0 : 1; - $merged = oavra_PredictionContext_merge($existing.$context, $config.$context, $rootIsWildcard, $mergeCache); - $existing.$reachesIntoOuterContext = jl_Math_max($existing.$reachesIntoOuterContext, $config.$reachesIntoOuterContext); - if (oavra_ATNConfig_isPrecedenceFilterSuppressed($config)) - oavra_ATNConfig_setPrecedenceFilterSuppressed($existing, 1); - $existing.$context = $merged; - return 1; +oncia_Topology_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNConfigSet_elements = $this => { - return $this.$configs0; +oncia_Topology_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNConfigSet_optimizeConfigs = ($this, $interpreter) => { - let var$2, $config, var$4, var$5, var$6, $$je; - if ($this.$readonly) { - $interpreter = new jl_IllegalStateException; - jl_Throwable__init_0($interpreter, $rt_s(6811)); - $rt_throw($interpreter); - } - if ($this.$configLookup.$n ? 0 : 1) - return; - var$2 = ju_AbstractList_iterator($this.$configs0); - while (ju_AbstractList$1_hasNext(var$2)) { - a: { - $config = ju_AbstractList$1_next(var$2); - var$4 = $config.$context; - var$5 = $interpreter.$sharedContextCache; - if (var$5 !== null) { - jl_Object_monitorEnterSync(var$5); - try { - var$6 = ju_IdentityHashMap__init_0(); - var$4 = oavra_PredictionContext_getCachedContext(var$4, $interpreter.$sharedContextCache, var$6); - jl_Object_monitorExitSync(var$5); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $interpreter = $$je; - jl_Object_monitorExitSync(var$5); - $rt_throw($interpreter); - +oncia_Topology_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Topology) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$primaries; + var$3 = $x$1.$primaries; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$secondaries; + $x$1 = $x$1.$secondaries; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_Topology)) + break b; } + var$4 = 1; + break a; } - $config.$context = var$4; + var$4 = 0; } + return var$4; }, -oavra_ATNConfigSet_equals = ($this, $o) => { - let $other; - if ($o === $this) - return 1; - if (!($o instanceof oavra_ATNConfigSet)) - return 0; - $other = $o; - $o = $this.$configs0; - return $o !== null && ju_AbstractList_equals($o, $other.$configs0) && $this.$fullCtx == $other.$fullCtx && $this.$uniqueAlt == $other.$uniqueAlt && $this.$conflictingAlts === $other.$conflictingAlts && $this.$hasSemanticContext == $other.$hasSemanticContext && $this.$dipsIntoOuterContext == $other.$dipsIntoOuterContext ? 1 : 0; -}, -oavra_ATNConfigSet_hashCode = $this => { - if (!$this.$readonly) - return ju_ArrayList_hashCode($this.$configs0); - if ($this.$cachedHashCode == (-1)) - $this.$cachedHashCode = ju_ArrayList_hashCode($this.$configs0); - return $this.$cachedHashCode; -}, -oavra_ATNConfigSet_size = $this => { - return $this.$configs0.$size0; -}, -oavra_ATNConfigSet_isEmpty = $this => { - return ju_AbstractCollection_isEmpty($this.$configs0); -}, -oavra_ATNConfigSet_iterator = $this => { - return ju_AbstractList_iterator($this.$configs0); -}, -oavra_ATNConfigSet_isReadonly = $this => { - return $this.$readonly; -}, -oavra_ATNConfigSet_setReadonly = ($this, $readonly) => { - $this.$readonly = $readonly; - $this.$configLookup = null; -}, -oavra_ATNConfigSet_toString = $this => { - let $buf; - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - jl_AbstractStringBuilder_append($buf, ju_ArrayList_toString($this.$configs0)); - if ($this.$hasSemanticContext) { - jl_AbstractStringBuilder_append($buf, $rt_s(6812)); - jl_StringBuilder_append4($buf, $this.$hasSemanticContext); - } - if ($this.$uniqueAlt) { - jl_AbstractStringBuilder_append($buf, $rt_s(6813)); - jl_StringBuilder_append0($buf, $this.$uniqueAlt); - } - if ($this.$conflictingAlts !== null) { - jl_AbstractStringBuilder_append($buf, $rt_s(6814)); - jl_StringBuilder_append($buf, $this.$conflictingAlts); - } - if ($this.$dipsIntoOuterContext) - jl_AbstractStringBuilder_append($buf, $rt_s(6815)); - return jl_AbstractStringBuilder_toString($buf); +oncia_Topology__init_0 = ($this, $primaries, $secondaries) => { + $this.$primaries = $primaries; + $this.$secondaries = $secondaries; }, -oncipv_Cypher25Parser$CommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CommandContext_getRuleIndex = $this => { - return 144; +oncia_Topology__init_ = (var_0, var_1) => { + let var_2 = new oncia_Topology(); + oncia_Topology__init_0(var_2, var_0, var_1); + return var_2; }; -function oavr_NoViableAltException() { - let a = this; oavr_RecognitionException.call(a); - a.$deadEndConfigs0 = null; - a.$startToken = null; +function oncia_CreateDatabase() { + let a = this; jl_Object.call(a); + a.$dbName1 = null; + a.$ifExistsDo7 = null; + a.$options7 = null; + a.$waitUntilComplete3 = null; + a.$topology1 = null; + a.$position193 = null; + a.$isReadOnly12 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar19 = null; } -let oavr_NoViableAltException__init_1 = ($this, $recognizer) => { - oavr_NoViableAltException__init_0($this, $recognizer, $recognizer.$_input, oavr_Parser_getCurrentToken($recognizer), oavr_Parser_getCurrentToken($recognizer), null, $recognizer.$_ctx); -}, -oavr_NoViableAltException__init_ = var_0 => { - let var_1 = new oavr_NoViableAltException(); - oavr_NoViableAltException__init_1(var_1, var_0); - return var_1; -}, -oavr_NoViableAltException__init_0 = ($this, $recognizer, $input, $startToken, $offendingToken, $deadEndConfigs, $ctx) => { - oavr_RecognitionException__init_($this, $recognizer, $input, $ctx); - $this.$deadEndConfigs0 = $deadEndConfigs; - $this.$startToken = $startToken; - $this.$offendingToken = $offendingToken; -}, -oavr_NoViableAltException__init_2 = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oavr_NoViableAltException(); - oavr_NoViableAltException__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; -}, -oncipv_Cypher25Parser$RegularQueryContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RegularQueryContext_getRuleIndex = $this => { - return 2; -}, -oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0 = $rt_classWithoutFields(), -oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - oncias_SemanticCheckInterpreter$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$3 = var$1.$_2$mcI$sp(); - s_Predef$_$callClinit(); - var$1 = s_Predef$_MODULE$; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(var$4, 91); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(var$4, var$3), $rt_s(6816)), var$2); - s_Predef$_println(var$1, jl_AbstractStringBuilder_toString(var$4)); - return sr_BoxedUnit_UNIT; -}, -oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext_getRuleIndex = $this => { - return 2; -}, -oncipv_Cypher5Parser$CommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CommandContext_getRuleIndex = $this => { - return 145; -}, -oncipv_Cypher5Parser$RegularQueryContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RegularQueryContext_getRuleIndex = $this => { - return 3; -}, -oavr_CodePointBuffer$Type = $rt_classWithoutFields(jl_Enum), -oavr_CodePointBuffer$Type_BYTE = null, -oavr_CodePointBuffer$Type_CHAR = null, -oavr_CodePointBuffer$Type_INT = null, -oavr_CodePointBuffer$Type_$VALUES = null, -oavr_CodePointBuffer$Type_values = () => { - return oavr_CodePointBuffer$Type_$VALUES.$clone0(); -}, -oavr_CodePointBuffer$Type__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new oavr_CodePointBuffer$Type; - jl_Enum__init_(var$1, $rt_s(6817), 0); - oavr_CodePointBuffer$Type_BYTE = var$1; - var$1 = new oavr_CodePointBuffer$Type; - jl_Enum__init_(var$1, $rt_s(6818), 1); - oavr_CodePointBuffer$Type_CHAR = var$1; - var$1 = new oavr_CodePointBuffer$Type; - jl_Enum__init_(var$1, $rt_s(6223), 2); - oavr_CodePointBuffer$Type_INT = var$1; - var$2 = $rt_createArray(oavr_CodePointBuffer$Type, 3); - var$3 = var$2.data; - var$3[0] = oavr_CodePointBuffer$Type_BYTE; - var$3[1] = oavr_CodePointBuffer$Type_CHAR; - var$3[2] = var$1; - oavr_CodePointBuffer$Type_$VALUES = var$2; -}, -oavr_ConsoleErrorListener = $rt_classWithoutFields(oavr_BaseErrorListener), -oavr_ConsoleErrorListener_INSTANCE = null, -oavr_ConsoleErrorListener_syntaxError = ($this, $recognizer, $offendingSymbol, $line, $charPositionInLine, $msg, $e) => { - $recognizer = jl_System_err(); - $offendingSymbol = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($offendingSymbol); - jl_AbstractStringBuilder_append($offendingSymbol, $rt_s(794)); - $offendingSymbol = jl_StringBuilder_append0($offendingSymbol, $line); - jl_AbstractStringBuilder_append($offendingSymbol, $rt_s(91)); - $offendingSymbol = jl_StringBuilder_append0($offendingSymbol, $charPositionInLine); - jl_AbstractStringBuilder_append($offendingSymbol, $rt_s(384)); - jl_AbstractStringBuilder_append($offendingSymbol, $msg); - otcic_JsConsolePrintStream_println($recognizer, jl_AbstractStringBuilder_toString($offendingSymbol)); -}, -oavr_ConsoleErrorListener__clinit_ = () => { - oavr_ConsoleErrorListener_INSTANCE = new oavr_ConsoleErrorListener; -}, -oncipv_Cypher25Parser$UseClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UseClauseContext_getRuleIndex = $this => { - return 5; -}, -oncipv_Cypher25Parser$AlterCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterCommandContext_getRuleIndex = $this => { - return 191; -}, -oncipv_Cypher25Parser$CreateCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateCommandContext_REPLACE = $this => { - return oncip_AstRuleCtx_getToken($this, 222, 0); -}, -oncipv_Cypher25Parser$CreateCommandContext_getRuleIndex = $this => { - return 145; -}, -oncipv_Cypher25Parser$AllocationCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AllocationCommandContext_deallocateDatabaseFromServers = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext), 0); -}, -oncipv_Cypher25Parser$AllocationCommandContext_reallocateDatabases = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ReallocateDatabasesContext), 0); +let oncia_CreateDatabase_returnColumns = $this => { + return oncia_WaitableAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher25Parser$AllocationCommandContext_getRuleIndex = $this => { - return 204; +oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher25Parser$DenyCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DenyCommandContext_getRuleIndex = $this => { - return 194; +oncia_CreateDatabase_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher25Parser$DropCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropCommandContext_getRuleIndex = $this => { - return 146; +oncia_CreateDatabase_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$EnableServerCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$EnableServerCommandContext_getRuleIndex = $this => { - return 199; +oncia_CreateDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher25Parser$GrantCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GrantCommandContext_privilege = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PrivilegeContext), 0); +oncia_CreateDatabase_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher25Parser$GrantCommandContext_getRuleIndex = $this => { - return 193; +oncia_CreateDatabase_error0 = ($this, $semanticError) => { + return oncias_SemanticAnalysisTooling_error$1($this, $semanticError); }, -oncipv_Cypher25Parser$RenameCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RenameCommandContext_getRuleIndex = $this => { - return 192; +oncia_CreateDatabase_foldedOver = $this => { + return $this; }, -oncipv_Cypher25Parser$RevokeCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RevokeCommandContext_privilege = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PrivilegeContext), 0); +oncia_CreateDatabase_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher25Parser$RevokeCommandContext_DENY = $this => { - return oncip_AstRuleCtx_getToken($this, 70, 0); -}; -let oncipv_Cypher25Parser$RevokeCommandContext_GRANT = $this => { - return oncip_AstRuleCtx_getToken($this, 115, 0); +oncia_CreateDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly12 = $x$1; }, -oncipv_Cypher25Parser$RevokeCommandContext_getRuleIndex = $this => { - return 195; +oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar19; }, -oncipv_Cypher25Parser$ShowCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowCommandContext_getRuleIndex = $this => { - return 147; +oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar19 = $x$1; }, -oncipv_Cypher25Parser$StartDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StartDatabaseContext_getRuleIndex = $this => { - return 292; +oncia_CreateDatabase_dbName = $this => { + return $this.$dbName1; }, -oncipv_Cypher25Parser$StopDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StopDatabaseContext_getRuleIndex = $this => { - return 293; +oncia_CreateDatabase_ifExistsDo = $this => { + return $this.$ifExistsDo7; }, -oncipv_Cypher25Parser$TerminateCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$TerminateCommandContext_getRuleIndex = $this => { - return 154; +oncia_CreateDatabase_options = $this => { + return $this.$options7; }, -oncipv_Cypher25Parser$SingleQueryContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SingleQueryContext_getRuleIndex = $this => { - return 3; +oncia_CreateDatabase_waitUntilComplete = $this => { + return $this.$waitUntilComplete3; }, -oncipv_Cypher5Parser$UseClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UseClauseContext_getRuleIndex = $this => { - return 6; +oncia_CreateDatabase_topology = $this => { + return $this.$topology1; }, -oncipv_Cypher5Parser$AlterCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterCommandContext_getRuleIndex = $this => { - return 197; +oncia_CreateDatabase_position = $this => { + return $this.$position193; }, -oncipv_Cypher5Parser$CreateCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateCommandContext_REPLACE = $this => { - return oncip_AstRuleCtx_getToken($this, 228, 0); +oncia_CreateDatabase_name = $this => { + let var$1, var$2; + var$1 = $this.$ifExistsDo7; + oncia_IfExistsReplace$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) + var$2 = 1; + else { + oncia_IfExistsInvalidSyntax$_$callClinit(); + var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; + } + if (!var$2) + return $rt_s(5678); + return $rt_s(5816); }, -oncipv_Cypher5Parser$CreateCommandContext_getRuleIndex = $this => { - return 146; +oncia_CreateDatabase_semanticCheck = $this => { + let var$1, var$2, $name, var$4, var$5, var$6, var$7; + var$1 = $this.$ifExistsDo7; + oncia_IfExistsInvalidSyntax$_$callClinit(); + if (!jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { + var$2 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); + } else { + onciap_Prettifier$_$callClinit(); + var$2 = onciap_Prettifier$_MODULE$; + $name = $this.$dbName1; + s_DummyImplicit$_$callClinit(); + $name = onciap_Prettifier$_escapeName(var$2, $name, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$7 = var$6.data; + oncias_SemanticError$_$callClinit(); + var$7[0] = oncias_SemanticError$_bothOrReplaceAndIfNotExists(oncias_SemanticError$_MODULE$, $rt_s(5581), $name, $this.$position193); + var$2 = oncias_SemanticCheck$_error(var$4, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); + } + return var$2.$chain(oncia_WriteAdministrationCommand_topologyCheck$($this, $this.$topology1, oncia_CreateDatabase_name($this))); }, -oncipv_Cypher5Parser$AllocationCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AllocationCommandContext_deallocateDatabaseFromServers = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext), 0); +oncia_CreateDatabase_productPrefix = $this => { + return $rt_s(5817); }, -oncipv_Cypher5Parser$AllocationCommandContext_reallocateDatabases = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ReallocateDatabasesContext), 0); +oncia_CreateDatabase_productArity = $this => { + return 5; }, -oncipv_Cypher5Parser$AllocationCommandContext_getRuleIndex = $this => { - return 210; +oncia_CreateDatabase_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$dbName1; + case 1: + return $this.$ifExistsDo7; + case 2: + return $this.$options7; + case 3: + return $this.$waitUntilComplete3; + case 4: + return $this.$topology1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$DenyCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DenyCommandContext_getRuleIndex = $this => { - return 200; +oncia_CreateDatabase_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DropCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropCommandContext_getRuleIndex = $this => { - return 147; +oncia_CreateDatabase_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$EnableServerCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$EnableServerCommandContext_getRuleIndex = $this => { - return 205; +oncia_CreateDatabase_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$GrantCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GrantCommandContext_privilege = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PrivilegeContext), 0); +oncia_CreateDatabase_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateDatabase) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$dbName1; + var$3 = $x$1.$dbName1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$ifExistsDo7; + var$3 = $x$1.$ifExistsDo7; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$options7; + var$3 = $x$1.$options7; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$waitUntilComplete3; + var$3 = $x$1.$waitUntilComplete3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$topology1; + $x$1 = $x$1.$topology1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$GrantCommandContext_getRuleIndex = $this => { - return 199; +oncia_CreateDatabase_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher5Parser$RenameCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RenameCommandContext_getRuleIndex = $this => { - return 198; +oncia_CreateDatabase_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher5Parser$RevokeCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RevokeCommandContext_privilege = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PrivilegeContext), 0); +oncia_CreateDatabase__init_ = ($this, $dbName, $ifExistsDo, $options, $waitUntilComplete, $topology, $position) => { + $this.$dbName1 = $dbName; + $this.$ifExistsDo7 = $ifExistsDo; + $this.$options7 = $options; + $this.$waitUntilComplete3 = $waitUntilComplete; + $this.$topology1 = $topology; + $this.$position193 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher5Parser$RevokeCommandContext_DENY = $this => { - return oncip_AstRuleCtx_getToken($this, 74, 0); +oncia_CreateDatabase__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_CreateDatabase(); + oncia_CreateDatabase__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; }, -oncipv_Cypher5Parser$RevokeCommandContext_GRANT = $this => { - return oncip_AstRuleCtx_getToken($this, 119, 0); +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oncipv_Cypher5Parser$RevokeCommandContext_getRuleIndex = $this => { - return 201; +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3_apply = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; +}; +function oncia_DropDatabaseAdditionalAction() { + jl_Object.call(this); + this.$name54 = null; +} +let oncia_DropDatabaseAdditionalAction_name = $this => { + return $this.$name54; }, -oncipv_Cypher5Parser$ShowCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowCommandContext_getRuleIndex = $this => { - return 148; +oncia_DropDatabaseAdditionalAction__init_ = ($this, $name) => { + $this.$name54 = $name; }, -oncipv_Cypher5Parser$StartDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StartDatabaseContext_getRuleIndex = $this => { - return 298; +oncia_DestroyData$ = $rt_classWithoutFields(oncia_DropDatabaseAdditionalAction), +oncia_DestroyData$_MODULE$ = null, +oncia_DestroyData$__clinit_ = () => { + let var$1; + var$1 = new oncia_DestroyData$; + oncia_DropDatabaseAdditionalAction__init_(var$1, $rt_s(5818)); + oncia_DestroyData$_MODULE$ = var$1; }, -oncipv_Cypher5Parser$StopDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StopDatabaseContext_getRuleIndex = $this => { - return 299; +oncia_DestroyData$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$TerminateCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$TerminateCommandContext_getRuleIndex = $this => { - return 155; +oncia_DestroyData$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$SingleQueryContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SingleQueryContext_getRuleIndex = $this => { - return 4; +oncia_DestroyData$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -jl_OutOfMemoryError = $rt_classWithoutFields(jl_VirtualMachineError); -function oavrm_Array2DHashSet() { - let a = this; jl_Object.call(a); - a.$comparator0 = null; - a.$buckets0 = null; - a.$n = 0; - a.$currentPrime0 = 0; - a.$threshold2 = 0; - a.$initialCapacity = 0; - a.$initialBucketCapacity = 0; -} -let oavrm_Array2DHashSet_$assertionsDisabled = 0, -oavrm_Array2DHashSet_getOrAddImpl = ($this, $o) => { - let $b, var$3, $bucket, $i, var$6, var$7, $existing; - $b = oavrm_Array2DHashSet_getBucket($this, $o); - var$3 = $this.$buckets0.data; - $bucket = var$3[$b]; - if ($bucket === null) { - $bucket = $rt_createArray(oavra_ATNConfig, $this.$initialBucketCapacity); - $bucket.data[0] = $o; - var$3[$b] = $bucket; - $this.$n = $this.$n + 1 | 0; - return $o; - } - $i = 0; - while (true) { - var$6 = $bucket.data; - var$7 = var$6.length; - if ($i >= var$7) { - var$6 = ju_Arrays_copyOf($bucket, var$7 * 2 | 0); - var$3 = var$6.data; - $this.$buckets0.data[$b] = var$6; - var$3[var$7] = $o; - $this.$n = $this.$n + 1 | 0; - return $o; - } - $existing = var$6[$i]; - if ($existing === null) { - var$6[$i] = $o; - $this.$n = $this.$n + 1 | 0; - return $o; - } - if ($this.$comparator0.$equals0($existing, $o)) - break; - $i = $i + 1 | 0; - } - return $existing; +oncia_DestroyData$_hashCode = $this => { + return (-315023708); }, -oavrm_Array2DHashSet_getBucket = ($this, $o) => { - return $this.$comparator0.$hashCode2($o) & ($this.$buckets0.data.length - 1 | 0); +oncia_DestroyData$_toString = $this => { + return $rt_s(5819); }, -oavrm_Array2DHashSet_expand = $this => { - let var$1, var$2, $newCapacity, $bucket, $old, $newBucketLengths, $oldSize, var$8, var$9, $o, $b, $bucketLength, $newBucket, var$14; - var$1 = $this.$buckets0.data; - $this.$currentPrime0 = $this.$currentPrime0 + 4 | 0; - var$2 = var$1.length; - $newCapacity = var$2 * 2 | 0; - $bucket = $rt_createArray($rt_arraycls(oavra_ATNConfig), $newCapacity); - $old = $bucket.data; - $newBucketLengths = $rt_createIntArray($old.length).data; - $this.$buckets0 = $bucket; - $this.$threshold2 = $newCapacity * 0.75 | 0; - $oldSize = $this.$n; - var$8 = 0; - while (var$8 < var$2) { - a: { - $bucket = var$1[var$8]; - if ($bucket !== null) { - $bucket = $bucket.data; - $newCapacity = $bucket.length; - var$9 = 0; - while (true) { - if (var$9 >= $newCapacity) - break a; - $o = $bucket[var$9]; - if ($o === null) - break; - $b = oavrm_Array2DHashSet_getBucket($this, $o); - $bucketLength = $newBucketLengths[$b]; - if (!$bucketLength) { - $newBucket = $rt_createArray(oavra_ATNConfig, $this.$initialBucketCapacity); - $old[$b] = $newBucket; - } else { - $newBucket = $old[$b]; - var$14 = $newBucket.data.length; - if ($bucketLength == var$14) { - $newBucket = ju_Arrays_copyOf($newBucket, var$14 * 2 | 0); - $old[$b] = $newBucket; - } - } - $newBucket.data[$bucketLength] = $o; - $newBucketLengths[$b] = $newBucketLengths[$b] + 1 | 0; - var$9 = var$9 + 1 | 0; - } - } - } - var$8 = var$8 + 1 | 0; - } - if (!oavrm_Array2DHashSet_$assertionsDisabled && $this.$n != $oldSize) { - $o = new jl_AssertionError; - jl_Throwable__init_($o); - $rt_throw($o); - } +oncia_DumpData$ = $rt_classWithoutFields(oncia_DropDatabaseAdditionalAction), +oncia_DumpData$_MODULE$ = null, +oncia_DumpData$__clinit_ = () => { + let var$1; + var$1 = new oncia_DumpData$; + oncia_DropDatabaseAdditionalAction__init_(var$1, $rt_s(5820)); + oncia_DumpData$_MODULE$ = var$1; }, -oavrm_Array2DHashSet__clinit_ = () => { - oavrm_Array2DHashSet_$assertionsDisabled = 0; +oncia_DumpData$_productArity = $this => { + return 0; }, -oavra_ATNConfigSet$AbstractConfigHashSet = $rt_classWithoutFields(oavrm_Array2DHashSet), -oavra_ATNConfigSet$AbstractConfigHashSet__init_ = ($this, $comparator) => { - $this.$n = 0; - $this.$currentPrime0 = 1; - if ($comparator === null) - $comparator = oavrm_ObjectEqualityComparator_INSTANCE; - $this.$comparator0 = $comparator; - $this.$initialCapacity = 16; - $this.$initialBucketCapacity = 2; - $this.$buckets0 = $rt_createArray($rt_arraycls(oavra_ATNConfig), 16); - $this.$threshold2 = jl_Math_floor(12.0) | 0; +oncia_DumpData$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_ATNConfigSet$AbstractConfigHashSet_createBucket = ($this, var$1) => { - return $rt_createArray(oavra_ATNConfig, var$1); +oncia_DumpData$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNConfigSet$AbstractConfigHashSet_createBuckets = ($this, var$1) => { - return $rt_createArray($rt_arraycls(oavra_ATNConfig), var$1); +oncia_DumpData$_hashCode = $this => { + return (-2058098722); }, -oavra_ATNConfigSet$ConfigHashSet = $rt_classWithoutFields(oavra_ATNConfigSet$AbstractConfigHashSet), -oncipv_Cypher25Parser$GraphReferenceContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GraphReferenceContext_graphReference = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$GraphReferenceContext), 0); +oncia_DumpData$_toString = $this => { + return $rt_s(5821); }, -oncipv_Cypher25Parser$GraphReferenceContext_functionInvocation = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$FunctionInvocationContext), 0); +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0_apply = var$0 => { + return oncia_Restrict$_MODULE$; +}; +function oncia_DropDatabaseAliasAction() { + jl_Object.call(this); + this.$name55 = null; +} +let oncia_DropDatabaseAliasAction_name = $this => { + return $this.$name55; }, -oncipv_Cypher25Parser$GraphReferenceContext_getRuleIndex = $this => { - return 6; +oncia_DropDatabaseAliasAction__init_ = ($this, $name) => { + $this.$name55 = $name; +}; +function oncia_DropDatabase() { + let a = this; jl_Object.call(a); + a.$dbName2 = null; + a.$ifExists3 = 0; + a.$composite = 0; + a.$aliasAction2 = null; + a.$additionalAction0 = null; + a.$waitUntilComplete0 = null; + a.$position304 = null; + a.$isReadOnly9 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar11 = null; +} +let oncia_DropDatabase_returnColumns = $this => { + return oncia_WaitableAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher25Parser$AlterAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterAliasContext_aliasName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$AliasNameContext), 0); +oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher25Parser$AlterAliasContext_EXISTS = $this => { - return oncip_AstRuleCtx_getToken($this, 101, 0); +oncia_DropDatabase_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher25Parser$AlterAliasContext_alterAliasTarget = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasTargetContext)); +oncia_DropDatabase_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$AlterAliasContext_alterAliasUser = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasUserContext)); +oncia_DropDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher25Parser$AlterAliasContext_alterAliasPassword = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasPasswordContext)); +oncia_DropDatabase_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher25Parser$AlterAliasContext_alterAliasDriver = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasDriverContext)); +oncia_DropDatabase_foldedOver = $this => { + return $this; }, -oncipv_Cypher25Parser$AlterAliasContext_alterAliasProperties = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterAliasPropertiesContext)); +oncia_DropDatabase_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher25Parser$AlterAliasContext_getRuleIndex = $this => { - return 301; +oncia_DropDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly9 = $x$1; }, -oncipv_Cypher25Parser$AlterCurrentUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterCurrentUserContext_passwordExpression = ($this, $i) => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PasswordExpressionContext), $i); +oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar11; }, -oncipv_Cypher25Parser$AlterCurrentUserContext_getRuleIndex = $this => { - return 216; +oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar11 = $x$1; }, -oncipv_Cypher25Parser$AlterDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterDatabaseContext_EXISTS = $this => { - return oncip_AstRuleCtx_getToken($this, 101, 0); +oncia_DropDatabase_dbName = $this => { + return $this.$dbName2; }, -oncipv_Cypher25Parser$AlterDatabaseContext_REMOVE = $this => { - return oncip_AstRuleCtx_getTokens($this, 220); +oncia_DropDatabase_ifExists = $this => { + return $this.$ifExists3; }, -oncipv_Cypher25Parser$AlterDatabaseContext_symbolicNameString = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); +oncia_DropDatabase_aliasAction = $this => { + return $this.$aliasAction2; }, -oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseAccess = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterDatabaseAccessContext)); +oncia_DropDatabase_additionalAction = $this => { + return $this.$additionalAction0; }, -oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterDatabaseTopologyContext)); +oncia_DropDatabase_waitUntilComplete = $this => { + return $this.$waitUntilComplete0; }, -oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$AlterDatabaseOptionContext)); +oncia_DropDatabase_position = $this => { + return $this.$position304; }, -oncipv_Cypher25Parser$AlterDatabaseContext_getRuleIndex = $this => { - return 288; +oncia_DropDatabase_name = $this => { + if (!$this.$composite) + return $rt_s(5676); + return $rt_s(5680); }, -oncipv_Cypher25Parser$AlterServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterServerContext_getRuleIndex = $this => { - return 200; +oncia_DropDatabase_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncipv_Cypher25Parser$AlterUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterUserContext_userStatus = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$UserStatusContext)); +oncia_DropDatabase_productPrefix = $this => { + return $rt_s(5822); }, -oncipv_Cypher25Parser$AlterUserContext_homeDatabase = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$HomeDatabaseContext)); +oncia_DropDatabase_productArity = $this => { + return 6; }, -oncipv_Cypher25Parser$AlterUserContext_getRuleIndex = $this => { - return 217; +oncia_DropDatabase_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$dbName2; + case 1: + return jl_Boolean_valueOf($this.$ifExists3); + case 2: + return jl_Boolean_valueOf($this.$composite); + case 3: + return $this.$aliasAction2; + case 4: + return $this.$additionalAction0; + case 5: + return $this.$waitUntilComplete0; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$CreateAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateAliasContext_aliasName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$AliasNameContext), 0); +oncia_DropDatabase_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$CreateAliasContext_databaseName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DatabaseNameContext), 0); +oncia_DropDatabase_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5822))), sr_Statics_anyHash($this.$dbName2)), !$this.$ifExists3 ? 1237 : 1231), !$this.$composite ? 1237 : 1231), sr_Statics_anyHash($this.$aliasAction2)), sr_Statics_anyHash($this.$additionalAction0)), sr_Statics_anyHash($this.$waitUntilComplete0)), 6); }, -oncipv_Cypher25Parser$CreateAliasContext_AT = $this => { - return oncip_AstRuleCtx_getToken($this, 27, 0); +oncia_DropDatabase_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$CreateAliasContext_stringOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0); +oncia_DropDatabase_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DropDatabase) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists3 != $x$1.$ifExists3) + break b; + if ($this.$composite != $x$1.$composite) + break b; + d: { + var$2 = $this.$dbName2; + var$3 = $x$1.$dbName2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$aliasAction2; + var$3 = $x$1.$aliasAction2; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$additionalAction0; + var$3 = $x$1.$additionalAction0; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$waitUntilComplete0; + $x$1 = $x$1.$waitUntilComplete0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$CreateAliasContext_mapOrParameter = ($this, $i) => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$MapOrParameterContext), $i); +oncia_DropDatabase_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher25Parser$CreateAliasContext_DRIVER = $this => { - return oncip_AstRuleCtx_getToken($this, 82, 0); +oncia_DropDatabase_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$CreateAliasContext_getRuleIndex = $this => { - return 299; +oncia_DropDatabase__init_0 = ($this, $dbName, $ifExists, $composite, $aliasAction, $additionalAction, $waitUntilComplete, $position) => { + $this.$dbName2 = $dbName; + $this.$ifExists3 = $ifExists; + $this.$composite = $composite; + $this.$aliasAction2 = $aliasAction; + $this.$additionalAction0 = $additionalAction; + $this.$waitUntilComplete0 = $waitUntilComplete; + $this.$position304 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher25Parser$CreateCompositeDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateCompositeDatabaseContext_getRuleIndex = $this => { - return 280; -}; -let oncipv_Cypher25Parser$CreateConstraintContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateConstraintContext_constraintType = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ConstraintTypeContext), 0); +oncia_DropDatabase__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncia_DropDatabase(); + oncia_DropDatabase__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; }, -oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$CommandNodePatternContext), 0); +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1_apply0 = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$CommandRelPatternContext), 0); +oncia_Restrict$ = $rt_classWithoutFields(oncia_DropDatabaseAliasAction), +oncia_Restrict$_MODULE$ = null, +oncia_Restrict$__clinit_ = () => { + let var$1; + var$1 = new oncia_Restrict$; + oncia_DropDatabaseAliasAction__init_(var$1, $rt_s(4451)); + oncia_Restrict$_MODULE$ = var$1; }, -oncipv_Cypher25Parser$CreateConstraintContext_getRuleIndex = $this => { - return 177; +oncia_Restrict$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$CreateDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateDatabaseContext_primaryTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$PrimaryTopologyContext)); +oncia_Restrict$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$CreateDatabaseContext_secondaryTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SecondaryTopologyContext)); +oncia_Restrict$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$CreateDatabaseContext_getRuleIndex = $this => { - return 281; +oncia_Restrict$_hashCode = $this => { + return (-271900964); }, -oncipv_Cypher25Parser$CreateIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateIndexContext_getRuleIndex = $this => { - return 180; +oncia_Restrict$_toString = $this => { + return $rt_s(5823); }, -oncipv_Cypher25Parser$CreateRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateRoleContext_getRuleIndex = $this => { - return 207; +oncia_CascadeAliases$ = $rt_classWithoutFields(oncia_DropDatabaseAliasAction), +oncia_CascadeAliases$_MODULE$ = null, +oncia_CascadeAliases$__clinit_ = () => { + let var$1; + var$1 = new oncia_CascadeAliases$; + oncia_DropDatabaseAliasAction__init_(var$1, $rt_s(5824)); + oncia_CascadeAliases$_MODULE$ = var$1; }, -oncipv_Cypher25Parser$CreateUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateUserContext_userStatus = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$UserStatusContext)); +oncia_CascadeAliases$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$CreateUserContext_homeDatabase = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$HomeDatabaseContext)); +oncia_CascadeAliases$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$CreateUserContext_getRuleIndex = $this => { - return 213; +oncia_CascadeAliases$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext_getRuleIndex = $this => { - return 205; +oncia_CascadeAliases$_hashCode = $this => { + return 688617930; }, -oncipv_Cypher25Parser$ReallocateDatabasesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ReallocateDatabasesContext_getRuleIndex = $this => { - return 206; +oncia_CascadeAliases$_toString = $this => { + return $rt_s(5825); }, -oncipv_Cypher25Parser$PrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PrivilegeContext_getRuleIndex = $this => { - return 235; +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0_apply0 = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; +}; +let oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_10 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$RoleNamesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RoleNamesContext_symbolicNameOrStringParameterList = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext), 0); +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_20 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2_apply0 = var$0 => { + return s_None$_MODULE$; +}; +function oncia_AlterDatabase() { + let a = this; jl_Object.call(a); + a.$dbName0 = null; + a.$ifExists4 = 0; + a.$access0 = null; + a.$topology0 = null; + a.$options4 = null; + a.$optionsToRemove0 = null; + a.$waitUntilComplete1 = null; + a.$position194 = null; + a.$isReadOnly26 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar34 = null; +} +let oncia_AlterDatabase_returnColumns = $this => { + return oncia_WaitableAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher25Parser$RoleNamesContext_getRuleIndex = $this => { - return 197; +oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher25Parser$DropAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropAliasContext_getRuleIndex = $this => { - return 300; +oncia_AlterDatabase_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher25Parser$DropDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropDatabaseContext_getRuleIndex = $this => { - return 286; +oncia_AlterDatabase_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$DropConstraintContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropConstraintContext_EXISTS = $this => { - return oncip_AstRuleCtx_getToken($this, 101, 0); +oncia_AlterDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher25Parser$DropConstraintContext_getRuleIndex = $this => { - return 179; +oncia_AlterDatabase_error0 = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher25Parser$DropIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropIndexContext_getRuleIndex = $this => { - return 188; +oncia_AlterDatabase_error = ($this, $semanticError) => { + return oncias_SemanticAnalysisTooling_error$1($this, $semanticError); }, -oncipv_Cypher25Parser$DropRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropRoleContext_getRuleIndex = $this => { - return 208; +oncia_AlterDatabase_foldedOver = $this => { + return $this; }, -oncipv_Cypher25Parser$DropServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropServerContext_getRuleIndex = $this => { - return 202; +oncia_AlterDatabase_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher25Parser$DropUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropUserContext_getRuleIndex = $this => { - return 214; +oncia_AlterDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly26 = $x$1; }, -oncipv_Cypher25Parser$CommandOptionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CommandOptionsContext_getRuleIndex = $this => { - return 153; +oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar34; }, -oncipv_Cypher25Parser$StringOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StringOrParameterContext_stringLiteral = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0); +oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar34 = $x$1; }, -oncipv_Cypher25Parser$StringOrParameterContext_getRuleIndex = $this => { - return 318; +oncia_AlterDatabase_dbName = $this => { + return $this.$dbName0; }, -oncipv_Cypher25Parser$RoleTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RoleTokenContext_getRuleIndex = $this => { - return 198; +oncia_AlterDatabase_ifExists = $this => { + return $this.$ifExists4; }, -oncipv_Cypher25Parser$GrantRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GrantRoleContext_getRuleIndex = $this => { - return 211; -}; -let oncipv_Cypher25Parser$RenameRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RenameRoleContext_getRuleIndex = $this => { - return 209; +oncia_AlterDatabase_access = $this => { + return $this.$access0; }, -oncipv_Cypher25Parser$RenameServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RenameServerContext_getRuleIndex = $this => { - return 201; +oncia_AlterDatabase_topology = $this => { + return $this.$topology0; }, -oncipv_Cypher25Parser$RenameUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RenameUserContext_getRuleIndex = $this => { - return 215; +oncia_AlterDatabase_options = $this => { + return $this.$options4; }, -oncipv_Cypher25Parser$RevokeRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RevokeRoleContext_getRuleIndex = $this => { - return 212; +oncia_AlterDatabase_optionsToRemove = $this => { + return $this.$optionsToRemove0; }, -oncipv_Cypher25Parser$ShowAliasesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowAliasesContext_getRuleIndex = $this => { - return 307; +oncia_AlterDatabase_waitUntilComplete = $this => { + return $this.$waitUntilComplete1; }, -oncipv_Cypher25Parser$ShowConstraintCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowConstraintCommandContext_getRuleIndex = $this => { - return 160; +oncia_AlterDatabase_position = $this => { + return $this.$position194; }, -oncipv_Cypher25Parser$ShowConstraintAllContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), -oncipv_Cypher25Parser$ShowConstraintAllContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_AlterDatabase_name = $this => { + return $rt_s(5775); }, -oncipv_Cypher25Parser$ShowConstraintAllContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ShowConstraintAllContext(); - oncipv_Cypher25Parser$ShowConstraintAllContext__init_(var_1, var_0); - return var_1; +oncia_AlterDatabase_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)), oncia_WriteAdministrationCommand_topologyCheck$($this, $this.$topology0, $rt_s(5775))); }, -oncipv_Cypher25Parser$ShowConstraintExistContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), -oncipv_Cypher25Parser$ShowConstraintExistContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_AlterDatabase_productPrefix = $this => { + return $rt_s(5826); }, -oncipv_Cypher25Parser$ShowConstraintExistContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ShowConstraintExistContext(); - oncipv_Cypher25Parser$ShowConstraintExistContext__init_(var_1, var_0); - return var_1; +oncia_AlterDatabase_productArity = $this => { + return 7; }, -oncipv_Cypher25Parser$ShowConstraintKeyContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), -oncipv_Cypher25Parser$ShowConstraintKeyContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_AlterDatabase_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$dbName0; + case 1: + return jl_Boolean_valueOf($this.$ifExists4); + case 2: + return $this.$access0; + case 3: + return $this.$topology0; + case 4: + return $this.$options4; + case 5: + return $this.$optionsToRemove0; + case 6: + return $this.$waitUntilComplete1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$ShowConstraintKeyContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ShowConstraintKeyContext(); - oncipv_Cypher25Parser$ShowConstraintKeyContext__init_(var_1, var_0); - return var_1; +oncia_AlterDatabase_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ShowConstraintPropTypeContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), -oncipv_Cypher25Parser$ShowConstraintPropTypeContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_AlterDatabase_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5826))), sr_Statics_anyHash($this.$dbName0)), !$this.$ifExists4 ? 1237 : 1231), sr_Statics_anyHash($this.$access0)), sr_Statics_anyHash($this.$topology0)), sr_Statics_anyHash($this.$options4)), sr_Statics_anyHash($this.$optionsToRemove0)), sr_Statics_anyHash($this.$waitUntilComplete1)), 7); }, -oncipv_Cypher25Parser$ShowConstraintPropTypeContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ShowConstraintPropTypeContext(); - oncipv_Cypher25Parser$ShowConstraintPropTypeContext__init_(var_1, var_0); - return var_1; +oncia_AlterDatabase_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ShowConstraintUniqueContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintCommandContext), -oncipv_Cypher25Parser$ShowConstraintUniqueContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_AlterDatabase_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_AlterDatabase) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists4 != $x$1.$ifExists4) + break b; + d: { + var$2 = $this.$dbName0; + var$3 = $x$1.$dbName0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$access0; + var$3 = $x$1.$access0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$topology0; + var$3 = $x$1.$topology0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$options4; + var$3 = $x$1.$options4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$optionsToRemove0; + var$3 = $x$1.$optionsToRemove0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break h; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$waitUntilComplete1; + $x$1 = $x$1.$waitUntilComplete1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$ShowConstraintUniqueContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ShowConstraintUniqueContext(); - oncipv_Cypher25Parser$ShowConstraintUniqueContext__init_(var_1, var_0); - return var_1; +oncia_AlterDatabase_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher25Parser$ShowCurrentUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowCurrentUserContext_getRuleIndex = $this => { - return 228; +oncia_AlterDatabase_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$ShowDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowDatabaseContext_getRuleIndex = $this => { - return 296; +oncia_AlterDatabase__init_ = ($this, $dbName, $ifExists, $access, $topology, $options, $optionsToRemove, $waitUntilComplete, $position) => { + $this.$dbName0 = $dbName; + $this.$ifExists4 = $ifExists; + $this.$access0 = $access; + $this.$topology0 = $topology; + $this.$options4 = $options; + $this.$optionsToRemove0 = $optionsToRemove; + $this.$waitUntilComplete1 = $waitUntilComplete; + $this.$position194 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher25Parser$ShowFunctionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowFunctionsContext_getRuleIndex = $this => { - return 165; +oncia_AlterDatabase__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_AlterDatabase(); + oncia_AlterDatabase__init_(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; }, -oncipv_Cypher25Parser$ShowIndexCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowIndexCommandContext_getRuleIndex = $this => { - return 157; +oncia_NoOptions$ = $rt_classWithoutFields(), +oncia_NoOptions$_MODULE$ = null, +oncia_NoOptions$_$callClinit = () => { + oncia_NoOptions$_$callClinit = $rt_eraseClinit(oncia_NoOptions$); + oncia_NoOptions$__clinit_(); }, -oncipv_Cypher25Parser$ShowPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowPrivilegesContext_getRuleIndex = $this => { - return 230; +oncia_NoOptions$__clinit_ = () => { + let var$1; + var$1 = new oncia_NoOptions$; + oncia_NoOptions$_$callClinit(); + oncia_NoOptions$_MODULE$ = var$1; }, -oncipv_Cypher25Parser$ShowProceduresContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowProceduresContext_getRuleIndex = $this => { - return 164; +oncia_NoOptions$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$ShowRolePrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowRolePrivilegesContext_getRuleIndex = $this => { - return 231; +oncia_NoOptions$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$ShowRolesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowRolesContext_getRuleIndex = $this => { - return 210; +oncia_NoOptions$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ShowServersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowServersContext_getRuleIndex = $this => { - return 203; +oncia_NoOptions$_hashCode = $this => { + return 1346069885; }, -oncipv_Cypher25Parser$ShowSettingsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowSettingsContext_getRuleIndex = $this => { - return 171; +oncia_NoOptions$_toString = $this => { + return $rt_s(5827); }, -oncipv_Cypher25Parser$ShowSupportedPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowSupportedPrivilegesContext_getRuleIndex = $this => { - return 229; +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_30 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3_apply = (var$0, var$1, var$2) => { + return var$1.$concat2(var$2); }, -oncipv_Cypher25Parser$ShowTransactionsContext = $rt_classWithoutFields(oncip_AstRuleCtx); -let oncipv_Cypher25Parser$ShowTransactionsContext_getRuleIndex = $this => { - return 169; +oncia_Access = $rt_classWithoutFields(0), +oncia_ReadWriteAccess$ = $rt_classWithoutFields(), +oncia_ReadWriteAccess$_MODULE$ = null, +oncia_ReadWriteAccess$__clinit_ = () => { + oncia_ReadWriteAccess$_MODULE$ = new oncia_ReadWriteAccess$; }, -oncipv_Cypher25Parser$ShowUserPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowUserPrivilegesContext_getRuleIndex = $this => { - return 232; +oncia_ReadWriteAccess$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$ShowUsersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowUsersContext_getRuleIndex = $this => { - return 227; +oncia_ReadWriteAccess$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}; +let oncia_ReadWriteAccess$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$WaitClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$WaitClauseContext_getRuleIndex = $this => { - return 294; +oncia_ReadWriteAccess$_hashCode = $this => { + return (-574905715); }, -oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameContext), 0); +oncia_ReadWriteAccess$_toString = $this => { + return $rt_s(5828); }, -oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_getRuleIndex = $this => { - return 312; +oncia_ReadOnlyAccess$ = $rt_classWithoutFields(), +oncia_ReadOnlyAccess$_MODULE$ = null, +oncia_ReadOnlyAccess$__clinit_ = () => { + oncia_ReadOnlyAccess$_MODULE$ = new oncia_ReadOnlyAccess$; }, -oncipv_Cypher25Parser$TerminateTransactionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$TerminateTransactionsContext_getRuleIndex = $this => { - return 170; +oncia_ReadOnlyAccess$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$ClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ClauseContext_getRuleIndex = $this => { - return 4; +oncia_ReadOnlyAccess$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$GraphReferenceContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GraphReferenceContext_graphReference = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$GraphReferenceContext), 0); +oncia_ReadOnlyAccess$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$GraphReferenceContext_functionInvocation = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$FunctionInvocationContext), 0); +oncia_ReadOnlyAccess$_hashCode = $this => { + return (-422523258); }, -oncipv_Cypher5Parser$GraphReferenceContext_getRuleIndex = $this => { - return 7; +oncia_ReadOnlyAccess$_toString = $this => { + return $rt_s(5829); }, -oncipv_Cypher5Parser$AlterAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterAliasContext_aliasName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$AliasNameContext), 0); +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher5Parser$AlterAliasContext_EXISTS = $this => { - return oncip_AstRuleCtx_getToken($this, 105, 0); +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1_apply0 = var$0 => { + return s_None$_MODULE$; +}; +function oncia_StartDatabase() { + let a = this; jl_Object.call(a); + a.$dbName3 = null; + a.$waitUntilComplete4 = null; + a.$position201 = null; + a.$isReadOnly31 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar2 = null; +} +let oncia_StartDatabase_returnColumns = $this => { + return oncia_WaitableAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher5Parser$AlterAliasContext_alterAliasTarget = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasTargetContext)); +oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher5Parser$AlterAliasContext_alterAliasUser = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasUserContext)); +oncia_StartDatabase_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher5Parser$AlterAliasContext_alterAliasPassword = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasPasswordContext)); +oncia_StartDatabase_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher5Parser$AlterAliasContext_alterAliasDriver = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasDriverContext)); +oncia_StartDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher5Parser$AlterAliasContext_alterAliasProperties = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterAliasPropertiesContext)); +oncia_StartDatabase_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher5Parser$AlterAliasContext_getRuleIndex = $this => { - return 307; +oncia_StartDatabase_foldedOver = $this => { + return $this; }, -oncipv_Cypher5Parser$AlterCurrentUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterCurrentUserContext_passwordExpression = ($this, $i) => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PasswordExpressionContext), $i); +oncia_StartDatabase_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher5Parser$AlterCurrentUserContext_getRuleIndex = $this => { - return 222; +oncia_StartDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly31 = $x$1; }, -oncipv_Cypher5Parser$AlterDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterDatabaseContext_EXISTS = $this => { - return oncip_AstRuleCtx_getToken($this, 105, 0); +oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar2; }, -oncipv_Cypher5Parser$AlterDatabaseContext_REMOVE = $this => { - return oncip_AstRuleCtx_getTokens($this, 226); +oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar2 = $x$1; }, -oncipv_Cypher5Parser$AlterDatabaseContext_symbolicNameString = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); +oncia_StartDatabase_dbName = $this => { + return $this.$dbName3; }, -oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseAccess = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterDatabaseAccessContext)); +oncia_StartDatabase_waitUntilComplete = $this => { + return $this.$waitUntilComplete4; }, -oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterDatabaseTopologyContext)); +oncia_StartDatabase_position = $this => { + return $this.$position201; }, -oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$AlterDatabaseOptionContext)); +oncia_StartDatabase_name = $this => { + return $rt_s(5830); }, -oncipv_Cypher5Parser$AlterDatabaseContext_getRuleIndex = $this => { - return 294; +oncia_StartDatabase_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncipv_Cypher5Parser$AlterServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterServerContext_getRuleIndex = $this => { - return 206; +oncia_StartDatabase_productPrefix = $this => { + return $rt_s(5831); }, -oncipv_Cypher5Parser$AlterUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterUserContext_userStatus = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$UserStatusContext)); +oncia_StartDatabase_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$AlterUserContext_homeDatabase = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$HomeDatabaseContext)); +oncia_StartDatabase_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$dbName3; + case 1: + return $this.$waitUntilComplete4; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$AlterUserContext_getRuleIndex = $this => { - return 223; +oncia_StartDatabase_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$CreateAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateAliasContext_aliasName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$AliasNameContext), 0); +oncia_StartDatabase_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$CreateAliasContext_databaseName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseNameContext), 0); +oncia_StartDatabase_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$CreateAliasContext_AT = $this => { - return oncip_AstRuleCtx_getToken($this, 28, 0); +oncia_StartDatabase_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_StartDatabase) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$dbName3; + var$3 = $x$1.$dbName3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$waitUntilComplete4; + $x$1 = $x$1.$waitUntilComplete4; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$CreateAliasContext_stringOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0); +oncia_StartDatabase_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher5Parser$CreateAliasContext_mapOrParameter = ($this, $i) => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$MapOrParameterContext), $i); -}; -let oncipv_Cypher5Parser$CreateAliasContext_DRIVER = $this => { - return oncip_AstRuleCtx_getToken($this, 86, 0); +oncia_StartDatabase_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher5Parser$CreateAliasContext_getRuleIndex = $this => { - return 305; +oncia_StartDatabase__init_ = ($this, $dbName, $waitUntilComplete, $position) => { + $this.$dbName3 = $dbName; + $this.$waitUntilComplete4 = $waitUntilComplete; + $this.$position201 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher5Parser$CreateIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateIndexContext_BTREE = $this => { - return oncip_AstRuleCtx_getToken($this, 38, 0); +oncia_StartDatabase__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_StartDatabase(); + oncia_StartDatabase__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncipv_Cypher5Parser$CreateIndexContext_getRuleIndex = $this => { - return 185; +oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0_apply0 = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; +}; +function oncia_StopDatabase() { + let a = this; jl_Object.call(a); + a.$dbName4 = null; + a.$waitUntilComplete2 = null; + a.$position271 = null; + a.$isReadOnly6 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar35 = null; +} +let oncia_StopDatabase_returnColumns = $this => { + return oncia_WaitableAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher5Parser$CreateCompositeDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateCompositeDatabaseContext_getRuleIndex = $this => { - return 286; +oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher5Parser$CreateConstraintContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateConstraintContext_constraintType = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ConstraintTypeContext), 0); +oncia_StopDatabase_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher5Parser$CreateConstraintContext_ON = $this => { - return oncip_AstRuleCtx_getToken($this, 185, 0); +oncia_StopDatabase_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher5Parser$CreateConstraintContext_FOR = $this => { - return oncip_AstRuleCtx_getToken($this, 112, 0); +oncia_StopDatabase_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$CommandNodePatternContext), 0); +oncia_StopDatabase_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$CommandRelPatternContext), 0); +oncia_StopDatabase_foldedOver = $this => { + return $this; }, -oncipv_Cypher5Parser$CreateConstraintContext_getRuleIndex = $this => { - return 182; +oncia_StopDatabase_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher5Parser$CreateDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateDatabaseContext_primaryTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$PrimaryTopologyContext)); +oncia_StopDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly6 = $x$1; }, -oncipv_Cypher5Parser$CreateDatabaseContext_secondaryTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SecondaryTopologyContext)); +oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar35; }, -oncipv_Cypher5Parser$CreateDatabaseContext_getRuleIndex = $this => { - return 287; +oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar35 = $x$1; }, -oncipv_Cypher5Parser$CreateRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateRoleContext_getRuleIndex = $this => { - return 213; +oncia_StopDatabase_dbName = $this => { + return $this.$dbName4; }, -oncipv_Cypher5Parser$CreateUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateUserContext_userStatus = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$UserStatusContext)); +oncia_StopDatabase_waitUntilComplete = $this => { + return $this.$waitUntilComplete2; }, -oncipv_Cypher5Parser$CreateUserContext_homeDatabase = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$HomeDatabaseContext)); +oncia_StopDatabase_position = $this => { + return $this.$position271; }, -oncipv_Cypher5Parser$CreateUserContext_getRuleIndex = $this => { - return 219; +oncia_StopDatabase_name = $this => { + return $rt_s(5832); }, -oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext_getRuleIndex = $this => { - return 211; +oncia_StopDatabase_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncipv_Cypher5Parser$ReallocateDatabasesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ReallocateDatabasesContext_getRuleIndex = $this => { - return 212; +oncia_StopDatabase_productPrefix = $this => { + return $rt_s(5833); }, -oncipv_Cypher5Parser$PrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PrivilegeContext_getRuleIndex = $this => { - return 241; +oncia_StopDatabase_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$RoleNamesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RoleNamesContext_symbolicNameOrStringParameterList = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext), 0); +oncia_StopDatabase_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$dbName4; + case 1: + return $this.$waitUntilComplete2; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$RoleNamesContext_getRuleIndex = $this => { - return 203; +oncia_StopDatabase_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DropAliasContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropAliasContext_getRuleIndex = $this => { - return 306; +oncia_StopDatabase_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DropDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropDatabaseContext_getRuleIndex = $this => { - return 292; +oncia_StopDatabase_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DropConstraintContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropConstraintContext_symbolicNameOrStringParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0); +oncia_StopDatabase_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_StopDatabase) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$dbName4; + var$3 = $x$1.$dbName4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$waitUntilComplete2; + $x$1 = $x$1.$waitUntilComplete2; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$DropConstraintContext_EXISTS = $this => { - return oncip_AstRuleCtx_getToken($this, 105, 0); +oncia_StopDatabase_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher5Parser$DropConstraintContext_UNIQUE = $this => { - return oncip_AstRuleCtx_getToken($this, 286, 0); +oncia_StopDatabase_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher5Parser$DropConstraintContext_KEY = $this => { - return oncip_AstRuleCtx_getToken($this, 141, 0); +oncia_StopDatabase__init_ = ($this, $dbName, $waitUntilComplete, $position) => { + $this.$dbName4 = $dbName; + $this.$waitUntilComplete2 = $waitUntilComplete; + $this.$position271 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher5Parser$DropConstraintContext_getRuleIndex = $this => { - return 184; +oncia_StopDatabase__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_StopDatabase(); + oncia_StopDatabase__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncipv_Cypher5Parser$DropIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropIndexContext_symbolicNameOrStringParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0); +oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0_apply0 = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oncipv_Cypher5Parser$DropIndexContext_getRuleIndex = $this => { - return 194; +oncia_NoWait$ = $rt_classWithoutFields(), +oncia_NoWait$_MODULE$ = null, +oncia_NoWait$_name = null, +oncia_NoWait$_DEFAULT_TIMEOUT = Long_ZERO, +oncia_NoWait$_$callClinit = () => { + oncia_NoWait$_$callClinit = $rt_eraseClinit(oncia_NoWait$); + oncia_NoWait$__clinit_(); }, -oncipv_Cypher5Parser$DropRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropRoleContext_getRuleIndex = $this => { - return 214; +oncia_NoWait$__clinit_ = () => { + let var$1; + var$1 = new oncia_NoWait$; + oncia_NoWait$_$callClinit(); + oncia_NoWait$_MODULE$ = var$1; + oncia_WaitUntilComplete_$init$(var$1); + oncia_NoWait$_name = $rt_s(4); }, -oncipv_Cypher5Parser$DropServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropServerContext_getRuleIndex = $this => { - return 208; -}; -let oncipv_Cypher5Parser$DropUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropUserContext_getRuleIndex = $this => { - return 220; +oncia_NoWait$_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq = ($this, $x$1) => { + oncia_NoWait$_$callClinit(); + oncia_NoWait$_DEFAULT_TIMEOUT = $x$1; }, -oncipv_Cypher5Parser$CommandOptionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CommandOptionsContext_getRuleIndex = $this => { - return 154; +oncia_NoWait$_name0 = $this => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_name; }, -oncipv_Cypher5Parser$StringOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StringOrParameterContext_stringLiteral = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0); +oncia_NoWait$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$StringOrParameterContext_getRuleIndex = $this => { - return 324; +oncia_NoWait$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$RoleTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RoleTokenContext_getRuleIndex = $this => { - return 204; +oncia_NoWait$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$GrantRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GrantRoleContext_getRuleIndex = $this => { - return 217; +oncia_NoWait$_hashCode = $this => { + return (-1956694282); }, -oncipv_Cypher5Parser$RenameRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RenameRoleContext_getRuleIndex = $this => { - return 215; +oncia_NoWait$_toString = $this => { + return $rt_s(5834); }, -oncipv_Cypher5Parser$RenameServerContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RenameServerContext_getRuleIndex = $this => { - return 207; +oncia_IndefiniteWait$ = $rt_classWithoutFields(), +oncia_IndefiniteWait$_MODULE$ = null, +oncia_IndefiniteWait$_name = null, +oncia_IndefiniteWait$_DEFAULT_TIMEOUT = Long_ZERO, +oncia_IndefiniteWait$_$callClinit = () => { + oncia_IndefiniteWait$_$callClinit = $rt_eraseClinit(oncia_IndefiniteWait$); + oncia_IndefiniteWait$__clinit_(); }, -oncipv_Cypher5Parser$RenameUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RenameUserContext_getRuleIndex = $this => { - return 221; +oncia_IndefiniteWait$__clinit_ = () => { + let var$1; + var$1 = new oncia_IndefiniteWait$; + oncia_IndefiniteWait$_$callClinit(); + oncia_IndefiniteWait$_MODULE$ = var$1; + oncia_WaitUntilComplete_$init$(var$1); + oncia_IndefiniteWait$_name = $rt_s(5835); }, -oncipv_Cypher5Parser$RevokeRoleContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RevokeRoleContext_getRuleIndex = $this => { - return 218; +oncia_IndefiniteWait$_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq = ($this, $x$1) => { + oncia_IndefiniteWait$_$callClinit(); + oncia_IndefiniteWait$_DEFAULT_TIMEOUT = $x$1; }, -oncipv_Cypher5Parser$ShowAliasesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowAliasesContext_getRuleIndex = $this => { - return 313; +oncia_IndefiniteWait$_name0 = $this => { + oncia_IndefiniteWait$_$callClinit(); + return oncia_IndefiniteWait$_name; +}; +let oncia_IndefiniteWait$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$ShowConstraintCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowConstraintCommandContext_getRuleIndex = $this => { - return 162; +oncia_IndefiniteWait$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ShowConstraintMultiContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), -oncipv_Cypher5Parser$ShowConstraintMultiContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IndefiniteWait$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ShowConstraintMultiContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ShowConstraintMultiContext(); - oncipv_Cypher5Parser$ShowConstraintMultiContext__init_(var_1, var_0); - return var_1; +oncia_IndefiniteWait$_hashCode = $this => { + return (-363263030); }, -oncipv_Cypher5Parser$ShowConstraintUniqueContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), -oncipv_Cypher5Parser$ShowConstraintUniqueContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IndefiniteWait$_toString = $this => { + return $rt_s(5836); +}; +function oncia_TimeoutAfter() { + let a = this; jl_Object.call(a); + a.$timoutSeconds = Long_ZERO; + a.$name47 = null; + a.$DEFAULT_TIMEOUT = Long_ZERO; +} +let oncia_TimeoutAfter_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq = ($this, $x$1) => { + $this.$DEFAULT_TIMEOUT = $x$1; }, -oncipv_Cypher5Parser$ShowConstraintUniqueContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ShowConstraintUniqueContext(); - oncipv_Cypher5Parser$ShowConstraintUniqueContext__init_(var_1, var_0); - return var_1; +oncia_TimeoutAfter_name = $this => { + return $this.$name47; }, -oncipv_Cypher5Parser$ShowConstraintKeyContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), -oncipv_Cypher5Parser$ShowConstraintKeyContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_TimeoutAfter_productPrefix = $this => { + return $rt_s(5837); }, -oncipv_Cypher5Parser$ShowConstraintKeyContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ShowConstraintKeyContext(); - oncipv_Cypher5Parser$ShowConstraintKeyContext__init_(var_1, var_0); - return var_1; +oncia_TimeoutAfter_productArity = $this => { + return 1; }, -oncipv_Cypher5Parser$ShowConstraintRelExistContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), -oncipv_Cypher5Parser$ShowConstraintRelExistContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_TimeoutAfter_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Long_valueOf($this.$timoutSeconds); + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ShowConstraintRelExistContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ShowConstraintRelExistContext(); - oncipv_Cypher5Parser$ShowConstraintRelExistContext__init_(var_1, var_0); - return var_1; +oncia_TimeoutAfter_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ShowConstraintOldExistsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), -oncipv_Cypher5Parser$ShowConstraintOldExistsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_TimeoutAfter_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5837))), sr_Statics_longHash($this.$timoutSeconds)), 1); }, -oncipv_Cypher5Parser$ShowConstraintOldExistsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ShowConstraintOldExistsContext(); - oncipv_Cypher5Parser$ShowConstraintOldExistsContext__init_(var_1, var_0); - return var_1; +oncia_TimeoutAfter_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ShowConstraintCommandContext), -oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_TimeoutAfter_equals = ($this, $x$1) => { + let var$2; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_TimeoutAfter) ? 0 : 1)) + break b; + $x$1 = $x$1; + if (Long_ne($this.$timoutSeconds, $x$1.$timoutSeconds)) + break b; + if (!($this instanceof oncia_TimeoutAfter)) + break b; + } + var$2 = 1; + break a; + } + var$2 = 0; + } + return var$2; }, -oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext(); - oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext__init_(var_1, var_0); - return var_1; +oncia_TimeoutAfter__init_ = ($this, $timoutSeconds) => { + let var$2; + $this.$timoutSeconds = $timoutSeconds; + oncia_WaitUntilComplete_$init$($this); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append4(jl_StringBuilder_append(var$2, $rt_s(5838)), $timoutSeconds), $rt_s(5839)); + $this.$name47 = jl_AbstractStringBuilder_toString(var$2); }, -oncipv_Cypher5Parser$ShowCurrentUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowCurrentUserContext_getRuleIndex = $this => { - return 234; +oncia_TimeoutAfter__init_0 = var_0 => { + let var_1 = new oncia_TimeoutAfter(); + oncia_TimeoutAfter__init_(var_1, var_0); + return var_1; +}; +function oncia_SingleNamedDatabaseScope() { + let a = this; jl_Object.call(a); + a.$database0 = null; + a.$position249 = null; + a.$showCommandName = null; +} +let oncia_SingleNamedDatabaseScope_database = $this => { + return $this.$database0; }, -oncipv_Cypher5Parser$ShowDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowDatabaseContext_getRuleIndex = $this => { - return 302; +oncia_SingleNamedDatabaseScope_productPrefix = $this => { + return $rt_s(5840); }, -oncipv_Cypher5Parser$ShowFunctionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowFunctionsContext_getRuleIndex = $this => { - return 170; +oncia_SingleNamedDatabaseScope_productArity = $this => { + return 1; }, -oncipv_Cypher5Parser$ShowIndexCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowIndexCommandContext_showIndexesNoBrief = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ShowIndexesNoBriefContext), 0); +oncia_SingleNamedDatabaseScope_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$database0; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ShowIndexCommandContext_BTREE = $this => { - return oncip_AstRuleCtx_getToken($this, 38, 0); -}; -let oncipv_Cypher5Parser$ShowIndexCommandContext_getRuleIndex = $this => { - return 159; +oncia_SingleNamedDatabaseScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ShowPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowPrivilegesContext_getRuleIndex = $this => { - return 236; +oncia_SingleNamedDatabaseScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ShowProceduresContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowProceduresContext_getRuleIndex = $this => { - return 169; +oncia_SingleNamedDatabaseScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ShowRolePrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowRolePrivilegesContext_getRuleIndex = $this => { - return 237; +oncia_SingleNamedDatabaseScope_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SingleNamedDatabaseScope) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$database0; + $x$1 = $x$1.$database0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncipv_Cypher5Parser$ShowRolesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowRolesContext_getRuleIndex = $this => { - return 216; +oncia_SingleNamedDatabaseScope_dup = ($this, $children) => { + return oncia_SingleNamedDatabaseScope__init_0($children.$head(), $this.$position249); }, -oncipv_Cypher5Parser$ShowServersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowServersContext_getRuleIndex = $this => { - return 209; +oncia_SingleNamedDatabaseScope__init_ = ($this, $database, $position) => { + $this.$database0 = $database; + $this.$position249 = $position; + $this.$showCommandName = $rt_s(4072); }, -oncipv_Cypher5Parser$ShowSettingsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowSettingsContext_getRuleIndex = $this => { - return 176; +oncia_SingleNamedDatabaseScope__init_0 = (var_0, var_1) => { + let var_2 = new oncia_SingleNamedDatabaseScope(); + oncia_SingleNamedDatabaseScope__init_(var_2, var_0, var_1); + return var_2; }, -oncipv_Cypher5Parser$ShowSupportedPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowSupportedPrivilegesContext_getRuleIndex = $this => { - return 235; +oncia_ShowDatabase$ = $rt_classWithoutFields(), +oncia_ShowDatabase$_MODULE$ = null, +oncia_ShowDatabase$_ALIASES_COL = null, +oncia_ShowDatabase$_REQUESTED_STATUS_COL = null, +oncia_ShowDatabase$_DEFAULT_COL = null, +oncia_ShowDatabase$_HOME_COL = null, +oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL = null, +oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL = null, +oncia_ShowDatabase$_CREATION_TIME_COL = null, +oncia_ShowDatabase$_LAST_START_TIME_COL = null, +oncia_ShowDatabase$_LAST_STOP_TIME_COL = null, +oncia_ShowDatabase$_CONSTITUENTS_COL = null, +oncia_ShowDatabase$_NAME_COL = null, +oncia_ShowDatabase$_TYPE_COL = null, +oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL = null, +oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL = null, +oncia_ShowDatabase$_OPTIONS_COL = null, +oncia_ShowDatabase$_DATABASE_ID_COL = null, +oncia_ShowDatabase$_STORE_COL = null, +oncia_ShowDatabase$_ACCESS_COL = null, +oncia_ShowDatabase$_ROLE_COL = null, +oncia_ShowDatabase$_WRITER_COL = null, +oncia_ShowDatabase$_CURRENT_STATUS_COL = null, +oncia_ShowDatabase$_STATUS_MSG_COL = null, +oncia_ShowDatabase$_LAST_COMMITTED_TX_COL = null, +oncia_ShowDatabase$_REPLICATION_LAG_COL = null, +oncia_ShowDatabase$_SERVER_ID_COL = null, +oncia_ShowDatabase$_ADDRESS_COL = null, +oncia_ShowDatabase$__clinit_ = () => { + oncia_ShowDatabase$_MODULE$ = new oncia_ShowDatabase$; + oncia_ShowDatabase$_ALIASES_COL = $rt_s(5841); + oncia_ShowDatabase$_REQUESTED_STATUS_COL = $rt_s(5842); + oncia_ShowDatabase$_DEFAULT_COL = $rt_s(5843); + oncia_ShowDatabase$_HOME_COL = $rt_s(5632); + oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL = $rt_s(5844); + oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL = $rt_s(5845); + oncia_ShowDatabase$_CREATION_TIME_COL = $rt_s(5846); + oncia_ShowDatabase$_LAST_START_TIME_COL = $rt_s(5847); + oncia_ShowDatabase$_LAST_STOP_TIME_COL = $rt_s(5848); + oncia_ShowDatabase$_CONSTITUENTS_COL = $rt_s(5849); + oncia_ShowDatabase$_NAME_COL = $rt_s(5567); + oncia_ShowDatabase$_TYPE_COL = $rt_s(4729); + oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL = $rt_s(5850); + oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL = $rt_s(5851); + oncia_ShowDatabase$_OPTIONS_COL = $rt_s(5852); + oncia_ShowDatabase$_DATABASE_ID_COL = $rt_s(5853); + oncia_ShowDatabase$_STORE_COL = $rt_s(5854); + oncia_ShowDatabase$_ACCESS_COL = $rt_s(5638); + oncia_ShowDatabase$_ROLE_COL = $rt_s(1221); + oncia_ShowDatabase$_WRITER_COL = $rt_s(5855); + oncia_ShowDatabase$_CURRENT_STATUS_COL = $rt_s(5856); + oncia_ShowDatabase$_STATUS_MSG_COL = $rt_s(5857); + oncia_ShowDatabase$_LAST_COMMITTED_TX_COL = $rt_s(5858); + oncia_ShowDatabase$_REPLICATION_LAG_COL = $rt_s(5859); + oncia_ShowDatabase$_SERVER_ID_COL = $rt_s(5860); + oncia_ShowDatabase$_ADDRESS_COL = $rt_s(5568); }, -oncipv_Cypher5Parser$ShowTransactionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowTransactionsContext_getRuleIndex = $this => { - return 174; +oncia_ShowDatabase$_ALIASES_COL0 = $this => { + return oncia_ShowDatabase$_ALIASES_COL; }, -oncipv_Cypher5Parser$ShowUserPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowUserPrivilegesContext_getRuleIndex = $this => { - return 238; +oncia_ShowDatabase$_REQUESTED_STATUS_COL0 = $this => { + return oncia_ShowDatabase$_REQUESTED_STATUS_COL; }, -oncipv_Cypher5Parser$ShowUsersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowUsersContext_getRuleIndex = $this => { - return 233; +oncia_ShowDatabase$_DEFAULT_COL0 = $this => { + return oncia_ShowDatabase$_DEFAULT_COL; }, -oncipv_Cypher5Parser$WaitClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$WaitClauseContext_getRuleIndex = $this => { - return 300; +oncia_ShowDatabase$_HOME_COL0 = $this => { + return oncia_ShowDatabase$_HOME_COL; }, -oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameContext), 0); +oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL0 = $this => { + return oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL; }, -oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_getRuleIndex = $this => { - return 318; +oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL0 = $this => { + return oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL; }, -oncipv_Cypher5Parser$TerminateTransactionsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$TerminateTransactionsContext_getRuleIndex = $this => { - return 175; +oncia_ShowDatabase$_CREATION_TIME_COL0 = $this => { + return oncia_ShowDatabase$_CREATION_TIME_COL; }, -oncipv_Cypher5Parser$ClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ClauseContext_getRuleIndex = $this => { - return 5; +oncia_ShowDatabase$_LAST_START_TIME_COL0 = $this => { + return oncia_ShowDatabase$_LAST_START_TIME_COL; }, -oavrm_EqualityComparator = $rt_classWithoutFields(0), -oavrm_AbstractEqualityComparator = $rt_classWithoutFields(), -oavra_ATNConfigSet$ConfigEqualityComparator = $rt_classWithoutFields(oavrm_AbstractEqualityComparator), -oavra_ATNConfigSet$ConfigEqualityComparator_INSTANCE = null, -oavra_ATNConfigSet$ConfigEqualityComparator_equals = ($this, var$1, var$2) => { - var$1 = var$1; - return var$1 === var$2 ? 1 : var$1 !== null && var$2 !== null ? (var$1.$state0.$stateNumber == var$2.$state0.$stateNumber && var$1.$alt0 == var$2.$alt0 && var$1.$semanticContext.$equals(var$2.$semanticContext) ? 1 : 0) : 0; +oncia_ShowDatabase$_LAST_STOP_TIME_COL0 = $this => { + return oncia_ShowDatabase$_LAST_STOP_TIME_COL; }, -oavra_ATNConfigSet$ConfigEqualityComparator_hashCode = ($this, var$1) => { - var$1 = var$1; - return (31 * ((31 * (217 + var$1.$state0.$stateNumber | 0) | 0) + var$1.$alt0 | 0) | 0) + var$1.$semanticContext.$hashCode() | 0; +oncia_ShowDatabase$_CONSTITUENTS_COL0 = $this => { + return oncia_ShowDatabase$_CONSTITUENTS_COL; +}; +let oncia_ShowDatabase$_NAME_COL0 = $this => { + return oncia_ShowDatabase$_NAME_COL; }, -oavra_ATNConfigSet$ConfigEqualityComparator__clinit_ = () => { - oavra_ATNConfigSet$ConfigEqualityComparator_INSTANCE = new oavra_ATNConfigSet$ConfigEqualityComparator; +oncia_ShowDatabase$_TYPE_COL0 = $this => { + return oncia_ShowDatabase$_TYPE_COL; }, -oncipv_Cypher25Parser$FunctionInvocationContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$FunctionInvocationContext_functionName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$FunctionNameContext), 0); +oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL0 = $this => { + return oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL; }, -oncipv_Cypher25Parser$FunctionInvocationContext_functionArgument = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$FunctionArgumentContext)); +oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL0 = $this => { + return oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL; }, -oncipv_Cypher25Parser$FunctionInvocationContext_getRuleIndex = $this => { - return 133; +oncia_ShowDatabase$_OPTIONS_COL0 = $this => { + return oncia_ShowDatabase$_OPTIONS_COL; }, -oncipv_Cypher25Parser$SymbolicAliasNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); +oncia_ShowDatabase$_DATABASE_ID_COL0 = $this => { + return oncia_ShowDatabase$_DATABASE_ID_COL; }, -oncipv_Cypher25Parser$SymbolicAliasNameContext_getRuleIndex = $this => { - return 313; +oncia_ShowDatabase$_STORE_COL0 = $this => { + return oncia_ShowDatabase$_STORE_COL; }, -oncipv_Cypher25Parser$AlterAliasDriverContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterAliasDriverContext_getRuleIndex = $this => { - return 305; +oncia_ShowDatabase$_ACCESS_COL0 = $this => { + return oncia_ShowDatabase$_ACCESS_COL; }, -oncipv_Cypher25Parser$AlterAliasPasswordContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterAliasPasswordContext_getRuleIndex = $this => { - return 304; +oncia_ShowDatabase$_ROLE_COL0 = $this => { + return oncia_ShowDatabase$_ROLE_COL; }, -oncipv_Cypher25Parser$AlterAliasPropertiesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterAliasPropertiesContext_getRuleIndex = $this => { - return 306; -}; -let oncipv_Cypher25Parser$AlterAliasTargetContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterAliasTargetContext_databaseName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DatabaseNameContext), 0); +oncia_ShowDatabase$_WRITER_COL0 = $this => { + return oncia_ShowDatabase$_WRITER_COL; }, -oncipv_Cypher25Parser$AlterAliasTargetContext_stringOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0); +oncia_ShowDatabase$_CURRENT_STATUS_COL0 = $this => { + return oncia_ShowDatabase$_CURRENT_STATUS_COL; }, -oncipv_Cypher25Parser$AlterAliasTargetContext_getRuleIndex = $this => { - return 302; +oncia_ShowDatabase$_STATUS_MSG_COL0 = $this => { + return oncia_ShowDatabase$_STATUS_MSG_COL; }, -oncipv_Cypher25Parser$AlterAliasUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterAliasUserContext_getRuleIndex = $this => { - return 303; +oncia_ShowDatabase$_LAST_COMMITTED_TX_COL0 = $this => { + return oncia_ShowDatabase$_LAST_COMMITTED_TX_COL; }, -oncipv_Cypher25Parser$AliasNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0); +oncia_ShowDatabase$_REPLICATION_LAG_COL0 = $this => { + return oncia_ShowDatabase$_REPLICATION_LAG_COL; }, -oncipv_Cypher25Parser$AliasNameContext_getRuleIndex = $this => { - return 297; +oncia_ShowDatabase$_SERVER_ID_COL0 = $this => { + return oncia_ShowDatabase$_SERVER_ID_COL; }, -oncipv_Cypher25Parser$PasswordExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PasswordExpressionContext_getRuleIndex = $this => { - return 221; +oncia_ShowDatabase$_ADDRESS_COL0 = $this => { + return oncia_ShowDatabase$_ADDRESS_COL; }, -oncipv_Cypher25Parser$AlterDatabaseAccessContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterDatabaseAccessContext_getRuleIndex = $this => { - return 289; +oncia_ShowDatabase$_apply = ($this, $scope, $yieldOrWhere, $position) => { + let var$4, var$5, var$6, var$7, $showColumns, var$9, var$10, var$11, var$12, var$13; + s_package$_$callClinit(); + var$4 = s_package$_List(s_package$_MODULE$); + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(s_Tuple2, 12); + var$7 = var$6.data; + var$7[0] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_NAME_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[1] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_TYPE_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + $showColumns = new s_Tuple2; + var$9 = oncia_ShowColumn$_MODULE$; + var$10 = oncia_ShowDatabase$_ALIASES_COL0($this); + oncius_package$_$callClinit(); + var$11 = oncius_package$_MODULE$; + s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$9, var$10, oncius_package$_CTList(var$11, oncius_package$_CTString(var$11)), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[2] = $showColumns; + var$7[3] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_ACCESS_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[4] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_DATABASE_ID_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[5] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_SERVER_ID_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[6] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_ADDRESS_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[7] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_ROLE_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[8] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_WRITER_COL0($this), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[9] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_REQUESTED_STATUS_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[10] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_CURRENT_STATUS_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[11] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_STATUS_MSG_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$9 = sc_AbstractIterable_$plus$plus(sci_List$_apply(var$4, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)), $scope instanceof oncia_DefaultDatabaseScope ? sci_List$_empty(s_package$_List(s_package$_MODULE$)) : $scope instanceof oncia_HomeDatabaseScope ? sci_List$_empty(s_package$_List(s_package$_MODULE$)) : sci_$colon$colon__init_(s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_DEFAULT_COL0($this), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)), + sci_$colon$colon__init_(s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_HOME_COL0($this), oncius_package$_CTBoolean(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(1)), sci_Nil$_MODULE$))); + var$10 = s_package$_List(s_package$_MODULE$); + var$11 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(s_Tuple2, 12); + var$7 = var$6.data; + var$7[0] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_CURRENT_PRIMARIES_COUNT_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[1] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_CURRENT_SECONDARIES_COUNT_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[2] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_REQUESTED_PRIMARIES_COUNT_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[3] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_REQUESTED_SECONDARIES_COUNT_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[4] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_CREATION_TIME_COL0($this), oncius_package$_CTDateTime(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[5] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_LAST_START_TIME_COL0($this), oncius_package$_CTDateTime(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[6] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_LAST_STOP_TIME_COL0($this), oncius_package$_CTDateTime(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[7] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_STORE_COL0($this), oncia_ShowColumn$_apply$default$2(oncia_ShowColumn$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[8] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_LAST_COMMITTED_TX_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$7[9] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_REPLICATION_LAG_COL0($this), oncius_package$_CTInteger(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + var$12 = new s_Tuple2; + var$5 = oncia_ShowColumn$_MODULE$; + var$4 = oncia_ShowDatabase$_CONSTITUENTS_COL0($this); + var$13 = oncius_package$_MODULE$; + s_Tuple2__init_0(var$12, oncia_ShowColumn$_apply(var$5, var$4, oncius_package$_CTList(var$13, oncius_package$_CTString(var$13)), $position), sr_BoxesRunTime_boxToBoolean(1)); + var$7[10] = var$12; + var$7[11] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, oncia_ShowDatabase$_OPTIONS_COL0($this), oncius_package$_CTMap(oncius_package$_MODULE$), $position), sr_BoxesRunTime_boxToBoolean(0)); + $showColumns = sc_AbstractIterable_$plus$plus(var$9, sci_List$_apply(var$10, sr_ScalaRunTime$_wrapRefArray(var$11, var$6))); + var$9 = new oncia_ShowDatabase; + oncia_DefaultOrAllShowColumns$_$callClinit(); + oncia_ShowDatabase__init_(var$9, $scope, $yieldOrWhere, oncia_DefaultOrAllShowColumns$_apply0(oncia_DefaultOrAllShowColumns$_MODULE$, $showColumns, $yieldOrWhere), $position); + return var$9; +}; +function oncia_DefaultDatabaseScope() { + let a = this; jl_Object.call(a); + a.$position315 = null; + a.$showCommandName3 = null; +} +let oncia_DefaultDatabaseScope_productPrefix = $this => { + return $rt_s(5861); }, -oncipv_Cypher25Parser$AlterDatabaseOptionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterDatabaseOptionContext_getRuleIndex = $this => { - return 291; +oncia_DefaultDatabaseScope_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$AlterDatabaseTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AlterDatabaseTopologyContext_primaryTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$PrimaryTopologyContext)); +oncia_DefaultDatabaseScope_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$AlterDatabaseTopologyContext_secondaryTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SecondaryTopologyContext)); +oncia_DefaultDatabaseScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$AlterDatabaseTopologyContext_getRuleIndex = $this => { - return 290; +oncia_DefaultDatabaseScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$SymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$EscapedSymbolicNameStringContext), 0); +oncia_DefaultDatabaseScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$SymbolicNameStringContext_unescapedSymbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext), 0); +oncia_DefaultDatabaseScope_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_DefaultDatabaseScope)) + return 0; + return 1; }, -oncipv_Cypher25Parser$SymbolicNameStringContext_getRuleIndex = $this => { - return 321; +oncia_DefaultDatabaseScope_dup = ($this, $children) => { + return $this; }, -oncipv_Cypher25Parser$RemoveNamedProviderContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RemoveNamedProviderContext_stringLiteral = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0); +oncia_DefaultDatabaseScope__init_ = ($this, $position) => { + $this.$position315 = $position; + $this.$showCommandName3 = $rt_s(5862); }, -oncipv_Cypher25Parser$RemoveNamedProviderContext_stringListLiteral = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringListLiteralContext), 0); +oncia_DefaultDatabaseScope__init_0 = var_0 => { + let var_1 = new oncia_DefaultDatabaseScope(); + oncia_DefaultDatabaseScope__init_(var_1, var_0); + return var_1; +}; +function oncia_CreateLocalDatabaseAlias() { + let a = this; jl_Object.call(a); + a.$aliasName5 = null; + a.$targetName4 = null; + a.$ifExistsDo5 = null; + a.$properties15 = null; + a.$position191 = null; + a.$isReadOnly19 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar6 = null; +} +let oncia_CreateLocalDatabaseAlias_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher25Parser$RemoveNamedProviderContext_getRuleIndex = $this => { - return 218; +oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher25Parser$PasswordContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PasswordContext_passwordChangeRequired = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PasswordChangeRequiredContext), 0); +oncia_CreateLocalDatabaseAlias_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher25Parser$PasswordContext_getRuleIndex = $this => { - return 219; +oncia_CreateLocalDatabaseAlias_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$PasswordChangeRequiredContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PasswordChangeRequiredContext_getRuleIndex = $this => { - return 222; +oncia_CreateLocalDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher25Parser$UserStatusContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UserStatusContext_getRuleIndex = $this => { - return 223; +oncia_CreateLocalDatabaseAlias_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher25Parser$HomeDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$HomeDatabaseContext_getRuleIndex = $this => { - return 224; +oncia_CreateLocalDatabaseAlias_foldedOver = $this => { + return $this; }, -oncipv_Cypher25Parser$SetAuthClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SetAuthClauseContext_getRuleIndex = $this => { - return 225; +oncia_CreateLocalDatabaseAlias_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher25Parser$CommandNameExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CommandNameExpressionContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); +oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly19 = $x$1; }, -oncipv_Cypher25Parser$CommandNameExpressionContext_getRuleIndex = $this => { - return 309; +oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar6; }, -oncipv_Cypher25Parser$DatabaseNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DatabaseNameContext_symbolicAliasNameOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0); +oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar6 = $x$1; }, -oncipv_Cypher25Parser$DatabaseNameContext_getRuleIndex = $this => { - return 298; +oncia_CreateLocalDatabaseAlias_aliasName = $this => { + return $this.$aliasName5; }, -oncipv_Cypher25Parser$MapOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$MapOrParameterContext_getRuleIndex = $this => { - return 319; +oncia_CreateLocalDatabaseAlias_targetName = $this => { + return $this.$targetName4; }, -oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); +oncia_CreateLocalDatabaseAlias_ifExistsDo = $this => { + return $this.$ifExistsDo5; }, -oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_getRuleIndex = $this => { - return 308; +oncia_CreateLocalDatabaseAlias_properties = $this => { + return $this.$properties15; }, -oncipv_Cypher25Parser$CommandNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx); -let oncipv_Cypher25Parser$CommandNodePatternContext_getRuleIndex = $this => { - return 175; +oncia_CreateLocalDatabaseAlias_position = $this => { + return $this.$position191; }, -oncipv_Cypher25Parser$CommandRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CommandRelPatternContext_getRuleIndex = $this => { - return 176; +oncia_CreateLocalDatabaseAlias_name = $this => { + let var$1, var$2; + var$1 = $this.$ifExistsDo5; + oncia_IfExistsReplace$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) + var$2 = 1; + else { + oncia_IfExistsInvalidSyntax$_$callClinit(); + var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; + } + if (!var$2) + return $rt_s(5686); + return $rt_s(5863); }, -oncipv_Cypher25Parser$ConstraintTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ConstraintTypeContext_getRuleIndex = $this => { - return 178; +oncia_CreateLocalDatabaseAlias_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = $this.$ifExistsDo5; + oncia_IfExistsInvalidSyntax$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$6 = oncias_SemanticError$_MODULE$; + onciap_Prettifier$_$callClinit(); + var$7 = onciap_Prettifier$_MODULE$; + var$8 = $this.$aliasName5; + s_DummyImplicit$_$callClinit(); + var$5[0] = oncias_SemanticError$_bothOrReplaceAndIfNotExists(var$6, $rt_s(1138), onciap_Prettifier$_escapeName(var$7, var$8, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)), $this.$position191); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + a: { + var$6 = oncia_AdministrationCommand_semanticCheck$($this); + var$1 = $this.$aliasName5; + if (var$1 instanceof oncia_NamespacedName) { + var$2 = var$1; + var$7 = var$2.$nameComponents; + if (var$2.$namespace4 instanceof s_Some) { + if (sci_List_length(var$7) <= 1) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + break a; + } + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + var$3 = oncia_AdministrationCommandSemanticAnalysis$_MODULE$; + var$8 = oncia_NamespacedName_toString(var$2); + var$1 = oncia_NamespacedName_toString(var$2); + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(5864)), var$1), $rt_s(5865)); + var$1 = oncia_AdministrationCommandSemanticAnalysis$_inputContainsInvalidCharactersError(var$3, var$8, $rt_s(5866), jl_AbstractStringBuilder_toString(var$7), var$2.$position121); + break a; + } + } + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + var$1 = oncias_SemanticCheck_chain$(var$6, var$1); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncipv_Cypher25Parser$ConstraintTypedContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ConstraintTypeContext), -oncipv_Cypher25Parser$ConstraintTypedContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_CreateLocalDatabaseAlias_productPrefix = $this => { + return $rt_s(5867); }, -oncipv_Cypher25Parser$ConstraintTypedContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ConstraintTypedContext(); - oncipv_Cypher25Parser$ConstraintTypedContext__init_(var_1, var_0); - return var_1; +oncia_CreateLocalDatabaseAlias_productArity = $this => { + return 4; }, -oncipv_Cypher25Parser$ConstraintIsUniqueContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ConstraintTypeContext), -oncipv_Cypher25Parser$ConstraintIsUniqueContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_CreateLocalDatabaseAlias_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$aliasName5; + case 1: + return $this.$targetName4; + case 2: + return $this.$ifExistsDo5; + case 3: + return $this.$properties15; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$ConstraintIsUniqueContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ConstraintIsUniqueContext(); - oncipv_Cypher25Parser$ConstraintIsUniqueContext__init_(var_1, var_0); - return var_1; +oncia_CreateLocalDatabaseAlias_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ConstraintKeyContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ConstraintTypeContext), -oncipv_Cypher25Parser$ConstraintKeyContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_CreateLocalDatabaseAlias_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ConstraintKeyContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ConstraintKeyContext(); - oncipv_Cypher25Parser$ConstraintKeyContext__init_(var_1, var_0); - return var_1; +oncia_CreateLocalDatabaseAlias_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ConstraintIsNotNullContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ConstraintTypeContext), -oncipv_Cypher25Parser$ConstraintIsNotNullContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_CreateLocalDatabaseAlias_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateLocalDatabaseAlias) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$aliasName5; + var$3 = $x$1.$aliasName5; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$targetName4; + var$3 = $x$1.$targetName4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$ifExistsDo5; + var$3 = $x$1.$ifExistsDo5; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$properties15; + $x$1 = $x$1.$properties15; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$ConstraintIsNotNullContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ConstraintIsNotNullContext(); - oncipv_Cypher25Parser$ConstraintIsNotNullContext__init_(var_1, var_0); - return var_1; +oncia_CreateLocalDatabaseAlias_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher25Parser$PrimaryTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PrimaryTopologyContext_getRuleIndex = $this => { - return 282; +oncia_CreateLocalDatabaseAlias_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$SecondaryTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SecondaryTopologyContext_getRuleIndex = $this => { - return 284; +oncia_CreateLocalDatabaseAlias__init_ = ($this, $aliasName, $targetName, $ifExistsDo, $properties, $position) => { + $this.$aliasName5 = $aliasName; + $this.$targetName4 = $targetName; + $this.$ifExistsDo5 = $ifExistsDo; + $this.$properties15 = $properties; + $this.$position191 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher25Parser$CreateFulltextIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateFulltextIndexContext_getRuleIndex = $this => { - return 182; +oncia_CreateLocalDatabaseAlias__init_0 = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_CreateLocalDatabaseAlias(); + oncia_CreateLocalDatabaseAlias__init_(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; +}; +function oncia_CreateRemoteDatabaseAlias() { + let a = this; jl_Object.call(a); + a.$aliasName6 = null; + a.$targetName3 = null; + a.$ifExistsDo3 = null; + a.$url3 = null; + a.$username3 = null; + a.$password5 = null; + a.$driverSettings1 = null; + a.$properties16 = null; + a.$position182 = null; + a.$isReadOnly1 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar8 = null; +} +let oncia_CreateRemoteDatabaseAlias_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher25Parser$CreateIndex_Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateIndex_Context_getRuleIndex = $this => { - return 181; +oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher25Parser$CreateLookupIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateLookupIndexContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); +oncia_CreateRemoteDatabaseAlias_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher25Parser$CreateLookupIndexContext_lookupIndexRelPattern = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$LookupIndexRelPatternContext), 0); +oncia_CreateRemoteDatabaseAlias_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$CreateLookupIndexContext_getRuleIndex = $this => { - return 185; +oncia_CreateRemoteDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher25Parser$DatabasePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DatabasePrivilegeContext_userQualifier = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$UserQualifierContext), 0); +oncia_CreateRemoteDatabaseAlias_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher25Parser$DatabasePrivilegeContext_getRuleIndex = $this => { - return 252; +oncia_CreateRemoteDatabaseAlias_foldedOver = $this => { + return $this; }, -oncipv_Cypher25Parser$DbmsPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DbmsPrivilegeContext_getRuleIndex = $this => { - return 253; +oncia_CreateRemoteDatabaseAlias_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher25Parser$AllPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AllPrivilegeContext_allPrivilegeTarget = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$AllPrivilegeTargetContext), 0); +oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly1 = $x$1; }, -oncipv_Cypher25Parser$AllPrivilegeContext_getRuleIndex = $this => { - return 236; +oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar8; }, -oncipv_Cypher25Parser$CreatePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreatePrivilegeContext_databaseScope = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DatabaseScopeContext), 0); +oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar8 = $x$1; }, -oncipv_Cypher25Parser$CreatePrivilegeContext_actionForDBMS = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ActionForDBMSContext), 0); +oncia_CreateRemoteDatabaseAlias_aliasName = $this => { + return $this.$aliasName6; }, -oncipv_Cypher25Parser$CreatePrivilegeContext_getRuleIndex = $this => { - return 239; +oncia_CreateRemoteDatabaseAlias_targetName = $this => { + return $this.$targetName3; }, -oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext_getRuleIndex = $this => { - return 269; +oncia_CreateRemoteDatabaseAlias_ifExistsDo = $this => { + return $this.$ifExistsDo3; }, -oncipv_Cypher25Parser$DropPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DropPrivilegeContext_databaseScope = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DatabaseScopeContext), 0); +oncia_CreateRemoteDatabaseAlias_url = $this => { + return $this.$url3; }, -oncipv_Cypher25Parser$DropPrivilegeContext_getRuleIndex = $this => { - return 245; +oncia_CreateRemoteDatabaseAlias_username = $this => { + return $this.$username3; }, -oncipv_Cypher25Parser$LoadPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LoadPrivilegeContext_stringOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0); +oncia_CreateRemoteDatabaseAlias_password = $this => { + return $this.$password5; }, -oncipv_Cypher25Parser$LoadPrivilegeContext_getRuleIndex = $this => { - return 246; +oncia_CreateRemoteDatabaseAlias_driverSettings = $this => { + return $this.$driverSettings1; }, -oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx); -let oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext_getRuleIndex = $this => { - return 268; +oncia_CreateRemoteDatabaseAlias_properties = $this => { + return $this.$properties16; }, -oncipv_Cypher25Parser$RemovePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RemovePrivilegeContext_getRuleIndex = $this => { - return 250; +oncia_CreateRemoteDatabaseAlias_position = $this => { + return $this.$position182; }, -oncipv_Cypher25Parser$SetPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SetPrivilegeContext_getRuleIndex = $this => { - return 248; +oncia_CreateRemoteDatabaseAlias_name = $this => { + let var$1, var$2; + var$1 = $this.$ifExistsDo3; + oncia_IfExistsReplace$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$1)) + var$2 = 1; + else { + oncia_IfExistsInvalidSyntax$_$callClinit(); + var$2 = !jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$1) ? 0 : 1; + } + if (!var$2) + return $rt_s(5686); + return $rt_s(5863); }, -oncipv_Cypher25Parser$ShowPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowPrivilegeContext_databaseScope = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DatabaseScopeContext), 0); +oncia_CreateRemoteDatabaseAlias_semanticCheck = $this => { + let $expr, var$2, var$3, var$4, var$5, var$6, $expr_0, var$8, var$9; + $expr = $this.$ifExistsDo3; + oncia_IfExistsInvalidSyntax$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, $expr)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$6 = oncias_SemanticError$_MODULE$; + onciap_Prettifier$_$callClinit(); + $expr_0 = onciap_Prettifier$_MODULE$; + var$8 = $this.$aliasName6; + s_DummyImplicit$_$callClinit(); + var$5[0] = oncias_SemanticError$_bothOrReplaceAndIfNotExists(var$6, $rt_s(1138), onciap_Prettifier$_escapeName($expr_0, var$8, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)), $this.$position182); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + var$9 = 0; + $expr_0 = null; + $expr = oncia_AliasDriverSettingsCheck$_findInvalidDriverSettings(oncia_AliasDriverSettingsCheck$_MODULE$, $this.$driverSettings1); + if ($expr instanceof s_Some) { + var$9 = 1; + $expr_0 = $expr; + $expr = $expr_0.$value5; + if ($expr instanceof oncia_ExistsExpression) { + $expr_0 = $expr; + oncias_SemanticCheck$_$callClinit(); + $expr = oncias_SemanticCheck$_MODULE$; + var$2 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_existsInDriverSettings(oncias_SemanticError$_MODULE$, $expr_0.$position16); + return oncias_SemanticCheck$_error($expr, sr_ScalaRunTime$_wrapRefArray(var$2, var$4)); + } + } + if (var$9) { + $expr = $expr_0.$value5; + if ($expr instanceof oncia_CountExpression) { + $expr_0 = $expr; + oncias_SemanticCheck$_$callClinit(); + $expr = oncias_SemanticCheck$_MODULE$; + var$2 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_countInDriverSettings(oncias_SemanticError$_MODULE$, $expr_0.$position17); + return oncias_SemanticCheck$_error($expr, sr_ScalaRunTime$_wrapRefArray(var$2, var$4)); + } + } + if (var$9) { + $expr = $expr_0.$value5; + if ($expr instanceof oncia_CollectExpression) { + $expr_0 = $expr; + oncias_SemanticCheck$_$callClinit(); + $expr = oncias_SemanticCheck$_MODULE$; + var$2 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_collectInDriverSettings(oncias_SemanticError$_MODULE$, $expr_0.$position15); + return oncias_SemanticCheck$_error($expr, sr_ScalaRunTime$_wrapRefArray(var$2, var$4)); + } + } + if (!var$9) { + $expr_0 = oncia_AdministrationCommand_semanticCheck$($this); + oncia_AdministrationCommand$_$callClinit(); + $expr = oncias_SemanticCheck_chain$($expr_0, oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5607), $this.$username3)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$($expr, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); + } + $expr_0 = $expr_0.$value5; + oncias_SemanticCheck$_$callClinit(); + $expr = oncias_SemanticCheck$_MODULE$; + var$2 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_genericDriverSettingsFail(oncias_SemanticError$_MODULE$, $expr_0.$position()); + return oncias_SemanticCheck$_error($expr, sr_ScalaRunTime$_wrapRefArray(var$2, var$4)); }, -oncipv_Cypher25Parser$ShowPrivilegeContext_getRuleIndex = $this => { - return 247; +oncia_CreateRemoteDatabaseAlias_productPrefix = $this => { + return $rt_s(5868); }, -oncipv_Cypher25Parser$WritePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$WritePrivilegeContext_getRuleIndex = $this => { - return 251; +oncia_CreateRemoteDatabaseAlias_productArity = $this => { + return 8; }, -oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext_getRuleIndex = $this => { - return 310; +oncia_CreateRemoteDatabaseAlias_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$aliasName6; + case 1: + return $this.$targetName3; + case 2: + return $this.$ifExistsDo3; + case 3: + return $this.$url3; + case 4: + return $this.$username3; + case 5: + return $this.$password5; + case 6: + return $this.$driverSettings1; + case 7: + return $this.$properties16; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$AliasActionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AliasActionContext_getRuleIndex = $this => { - return 287; +oncia_CreateRemoteDatabaseAlias_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$StringLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StringLiteralContext_getRuleIndex = $this => { - return 316; -}; -function oncipv_Cypher25Parser$ParameterContext() { - oncip_AstRuleCtx.call(this); - this.$paramType1 = null; -} -let oncipv_Cypher25Parser$ParameterContext_getRuleIndex = $this => { - return 131; +oncia_CreateRemoteDatabaseAlias_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$UserNamesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UserNamesContext_getRuleIndex = $this => { - return 196; +oncia_CreateRemoteDatabaseAlias_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ShowCommandYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowCommandYieldContext_getRuleIndex = $this => { - return 148; +oncia_CreateRemoteDatabaseAlias_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateRemoteDatabaseAlias) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$aliasName6; + var$3 = $x$1.$aliasName6; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$targetName3; + var$3 = $x$1.$targetName3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$ifExistsDo3; + var$3 = $x$1.$ifExistsDo3; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$url3; + var$3 = $x$1.$url3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$username3; + var$3 = $x$1.$username3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break h; + } + if (var$3 !== null) + break b; + } + i: { + var$2 = $this.$password5; + var$3 = $x$1.$password5; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break i; + } + if (var$3 !== null) + break b; + } + j: { + var$2 = $this.$driverSettings1; + var$3 = $x$1.$driverSettings1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break j; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$properties16; + $x$1 = $x$1.$properties16; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$ShowConstraintEntityContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowConstraintEntityContext_getRuleIndex = $this => { - return 161; +oncia_CreateRemoteDatabaseAlias_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher25Parser$NodeEntityContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintEntityContext), -oncipv_Cypher25Parser$NodeEntityContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_CreateRemoteDatabaseAlias_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$NodeEntityContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$NodeEntityContext(); - oncipv_Cypher25Parser$NodeEntityContext__init_(var_1, var_0); - return var_1; +oncia_CreateRemoteDatabaseAlias__init_ = ($this, $aliasName, $targetName, $ifExistsDo, $url, $username, $password, $driverSettings, $properties, $position) => { + $this.$aliasName6 = $aliasName; + $this.$targetName3 = $targetName; + $this.$ifExistsDo3 = $ifExistsDo; + $this.$url3 = $url; + $this.$username3 = $username; + $this.$password5 = $password; + $this.$driverSettings1 = $driverSettings; + $this.$properties16 = $properties; + $this.$position182 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher25Parser$RelEntityContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ShowConstraintEntityContext), -oncipv_Cypher25Parser$RelEntityContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_CreateRemoteDatabaseAlias__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new oncia_CreateRemoteDatabaseAlias(); + oncia_CreateRemoteDatabaseAlias__init_(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; +}; +function oncia_DropDatabaseAlias() { + let a = this; jl_Object.call(a); + a.$aliasName8 = null; + a.$ifExists11 = 0; + a.$position195 = null; + a.$isReadOnly25 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar25 = null; +} +let oncia_DropDatabaseAlias_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher25Parser$RelEntityContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$RelEntityContext(); - oncipv_Cypher25Parser$RelEntityContext__init_(var_1, var_0); - return var_1; +oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher25Parser$ShowConstraintsEndContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowConstraintsEndContext_getRuleIndex = $this => { - return 163; +oncia_DropDatabaseAlias_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher25Parser$ConstraintExistTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ConstraintExistTypeContext_getRuleIndex = $this => { - return 162; +oncia_DropDatabaseAlias_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$ShowFunctionsTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowFunctionsTypeContext_getRuleIndex = $this => { - return 168; +oncia_DropDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher25Parser$FunctionTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$FunctionTokenContext_getRuleIndex = $this => { - return 166; +oncia_DropDatabaseAlias_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher25Parser$ExecutableByContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ExecutableByContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); +oncia_DropDatabaseAlias_foldedOver = $this => { + return $this; }, -oncipv_Cypher25Parser$ExecutableByContext_getRuleIndex = $this => { - return 167; +oncia_DropDatabaseAlias_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher25Parser$ComposableCommandClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ComposableCommandClausesContext_getRuleIndex = $this => { - return 155; +oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly25 = $x$1; }, -oncipv_Cypher25Parser$ShowIndexTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowIndexTypeContext_getRuleIndex = $this => { - return 158; +oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar25; }, -oncipv_Cypher25Parser$ShowIndexesEndContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShowIndexesEndContext_getRuleIndex = $this => { - return 159; +oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar25 = $x$1; }, -oncipv_Cypher25Parser$PrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PrivilegeTokenContext_getRuleIndex = $this => { - return 234; +oncia_DropDatabaseAlias_aliasName = $this => { + return $this.$aliasName8; }, -oncipv_Cypher25Parser$PrivilegeAsCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PrivilegeAsCommandContext_getRuleIndex = $this => { - return 233; +oncia_DropDatabaseAlias_ifExists = $this => { + return $this.$ifExists11; }, -oncipv_Cypher25Parser$SettingTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SettingTokenContext_getRuleIndex = $this => { - return 172; +oncia_DropDatabaseAlias_position = $this => { + return $this.$position195; }, -oncipv_Cypher25Parser$NamesAndClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NamesAndClausesContext_getRuleIndex = $this => { - return 173; +oncia_DropDatabaseAlias_name = $this => { + return $rt_s(5684); }, -oncipv_Cypher25Parser$TransactionTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$TransactionTokenContext_getRuleIndex = $this => { - return 259; +oncia_DropDatabaseAlias_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncipv_Cypher25Parser$SecondsTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SecondsTokenContext_getRuleIndex = $this => { - return 295; +oncia_DropDatabaseAlias_productPrefix = $this => { + return $rt_s(5869); }, -oncipv_Cypher25Parser$FinishClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$FinishClauseContext_getRuleIndex = $this => { - return 7; +oncia_DropDatabaseAlias_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$ReturnClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ReturnClauseContext_getRuleIndex = $this => { - return 8; +oncia_DropDatabaseAlias_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$aliasName8; + case 1: + return jl_Boolean_valueOf($this.$ifExists11); + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$CreateClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateClauseContext_getRuleIndex = $this => { - return 20; +oncia_DropDatabaseAlias_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$InsertClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$InsertClauseContext_getRuleIndex = $this => { - return 21; -}; -let oncipv_Cypher25Parser$DeleteClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DeleteClauseContext_getRuleIndex = $this => { - return 26; +oncia_DropDatabaseAlias_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5869))), sr_Statics_anyHash($this.$aliasName8)), !$this.$ifExists11 ? 1237 : 1231), 2); }, -oncipv_Cypher25Parser$SetClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SetClauseContext_getRuleIndex = $this => { - return 22; +oncia_DropDatabaseAlias_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$RemoveClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RemoveClauseContext_getRuleIndex = $this => { - return 24; +oncia_DropDatabaseAlias_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_DropDatabaseAlias) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists11 != $x$1.$ifExists11) + break b; + var$2 = $this.$aliasName8; + $x$1 = $x$1.$aliasName8; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncipv_Cypher25Parser$MatchClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$MatchClauseContext_getRuleIndex = $this => { - return 27; +oncia_DropDatabaseAlias_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher25Parser$MergeClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$MergeClauseContext_getRuleIndex = $this => { - return 30; +oncia_DropDatabaseAlias_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$WithClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$WithClauseContext_getRuleIndex = $this => { - return 19; +oncia_DropDatabaseAlias__init_ = ($this, $aliasName, $ifExists, $position) => { + $this.$aliasName8 = $aliasName; + $this.$ifExists11 = $ifExists; + $this.$position195 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher25Parser$UnwindClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UnwindClauseContext_getRuleIndex = $this => { - return 32; +oncia_DropDatabaseAlias__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncia_DropDatabaseAlias(); + oncia_DropDatabaseAlias__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncipv_Cypher25Parser$CallClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CallClauseContext_YIELD = $this => { - return oncip_AstRuleCtx_getToken($this, 299, 0); +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$CallClauseContext_getRuleIndex = $this => { - return 33; +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_10 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1_apply0 = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$SubqueryClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SubqueryClauseContext_regularQuery = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0); +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_20 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2_apply0 = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$SubqueryClauseContext_OPTIONAL = $this => { - return oncip_AstRuleCtx_getToken($this, 183, 0); +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_30 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3_apply = var$0 => { + return s_None$_MODULE$; +}; +function oncia_AlterRemoteDatabaseAlias() { + let a = this; jl_Object.call(a); + a.$aliasName3 = null; + a.$targetName1 = null; + a.$ifExists7 = 0; + a.$url1 = null; + a.$username1 = null; + a.$password4 = null; + a.$driverSettings0 = null; + a.$properties9 = null; + a.$position161 = null; + a.$isReadOnly14 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar30 = null; +} +let oncia_AlterRemoteDatabaseAlias_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher25Parser$SubqueryClauseContext_subqueryInTransactionsParameters = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext), 0); +oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher25Parser$SubqueryClauseContext_getRuleIndex = $this => { - return 39; +oncia_AlterRemoteDatabaseAlias_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher25Parser$LoadCSVClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LoadCSVClauseContext_getRuleIndex = $this => { - return 37; +oncia_AlterRemoteDatabaseAlias_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher25Parser$ForeachClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ForeachClauseContext_getRuleIndex = $this => { - return 38; +oncia_AlterRemoteDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher25Parser$OrderBySkipLimitClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$OrderBySkipLimitClauseContext_getRuleIndex = $this => { - return 45; +oncia_AlterRemoteDatabaseAlias_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher5Parser$FunctionInvocationContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$FunctionInvocationContext_functionName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$FunctionNameContext), 0); +oncia_AlterRemoteDatabaseAlias_foldedOver = $this => { + return $this; }, -oncipv_Cypher5Parser$FunctionInvocationContext_functionArgument = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$FunctionArgumentContext)); +oncia_AlterRemoteDatabaseAlias_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher5Parser$FunctionInvocationContext_getRuleIndex = $this => { - return 134; +oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly14 = $x$1; }, -oncipv_Cypher5Parser$SymbolicAliasNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); +oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar30; }, -oncipv_Cypher5Parser$SymbolicAliasNameContext_getRuleIndex = $this => { - return 319; +oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar30 = $x$1; }, -oncipv_Cypher5Parser$AlterAliasDriverContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterAliasDriverContext_getRuleIndex = $this => { - return 311; +oncia_AlterRemoteDatabaseAlias_aliasName = $this => { + return $this.$aliasName3; }, -oncipv_Cypher5Parser$AlterAliasPasswordContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterAliasPasswordContext_getRuleIndex = $this => { - return 310; +oncia_AlterRemoteDatabaseAlias_targetName = $this => { + return $this.$targetName1; }, -oncipv_Cypher5Parser$AlterAliasPropertiesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterAliasPropertiesContext_getRuleIndex = $this => { - return 312; +oncia_AlterRemoteDatabaseAlias_ifExists = $this => { + return $this.$ifExists7; }, -oncipv_Cypher5Parser$AlterAliasTargetContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterAliasTargetContext_databaseName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseNameContext), 0); +oncia_AlterRemoteDatabaseAlias_url = $this => { + return $this.$url1; }, -oncipv_Cypher5Parser$AlterAliasTargetContext_stringOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0); +oncia_AlterRemoteDatabaseAlias_username = $this => { + return $this.$username1; }, -oncipv_Cypher5Parser$AlterAliasTargetContext_getRuleIndex = $this => { - return 308; +oncia_AlterRemoteDatabaseAlias_password = $this => { + return $this.$password4; }, -oncipv_Cypher5Parser$AlterAliasUserContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterAliasUserContext_getRuleIndex = $this => { - return 309; +oncia_AlterRemoteDatabaseAlias_driverSettings = $this => { + return $this.$driverSettings0; }, -oncipv_Cypher5Parser$AliasNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AliasNameContext_symbolicAliasNameOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0); +oncia_AlterRemoteDatabaseAlias_properties = $this => { + return $this.$properties9; }, -oncipv_Cypher5Parser$AliasNameContext_getRuleIndex = $this => { - return 303; -}; -let oncipv_Cypher5Parser$PasswordExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PasswordExpressionContext_getRuleIndex = $this => { - return 227; +oncia_AlterRemoteDatabaseAlias_position = $this => { + return $this.$position161; }, -oncipv_Cypher5Parser$AlterDatabaseAccessContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterDatabaseAccessContext_getRuleIndex = $this => { - return 295; +oncia_AlterRemoteDatabaseAlias_name = $this => { + return $rt_s(5773); +}, +oncia_AlterRemoteDatabaseAlias_semanticCheck = $this => { + let $expr, var$2, var$3, var$4, var$5, $isLocalAlias, $isRemoteAlias, var$8, var$9, var$10, var$11; + $expr = oncia_AliasDriverSettingsCheck$_findInvalidDriverSettings(oncia_AliasDriverSettingsCheck$_MODULE$, $this.$driverSettings0); + if ($expr instanceof s_Some) { + $expr = $expr.$value5; + if ($expr instanceof oncia_ExistsExpression) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_existsInDriverSettings(oncias_SemanticError$_MODULE$, $expr.$position()); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + if ($expr instanceof oncia_CountExpression) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_countInDriverSettings(oncias_SemanticError$_MODULE$, $expr.$position()); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + if (!($expr instanceof oncia_CollectExpression)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_genericDriverSettingsFail(oncias_SemanticError$_MODULE$, $expr.$position()); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_collectInDriverSettings(oncias_SemanticError$_MODULE$, $expr.$position()); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + $isLocalAlias = s_Option_isDefined($this.$targetName1) && s_Option_isEmpty($this.$url1) ? 1 : 0; + $isRemoteAlias = !s_Option_isDefined($this.$url1) && !s_Option_isDefined($this.$username1) && !s_Option_isDefined($this.$password4) && !s_Option_isDefined($this.$driverSettings0) ? 0 : 1; + if ($isLocalAlias && $isRemoteAlias) { + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + onciap_Prettifier$_$callClinit(); + $expr = onciap_Prettifier$_MODULE$; + var$3 = $this.$aliasName3; + s_DummyImplicit$_$callClinit(); + var$3 = onciap_Prettifier$_escapeName($expr, var$3, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + var$8 = sci_$colon$colon__init_($rt_s(5870), sci_Nil$_MODULE$); + $expr = onciap_Prettifier$_escapeName(onciap_Prettifier$_MODULE$, $this.$aliasName3, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5871)), $expr), $rt_s(5872)); + $expr = jl_AbstractStringBuilder_toString(var$2); + var$9 = $this.$position161; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$10 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$11 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$9.$offset(), var$9.$line(), var$9.$column()); + var$3 = ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N04), var$9.$offset(), var$9.$line(), var$9.$column()), ong_GqlParams$StringParam_input, var$3), ong_GqlParams$StringParam_context, $rt_s(5873)); + ong_GqlParams$ListParam_$callClinit(); + var$5[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(var$11, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam1(var$3, ong_GqlParams$ListParam_inputList, ju_List_of(var$8))))), $expr, var$9); + return oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$10, var$4)); + } + var$2 = oncia_AdministrationCommand_semanticCheck$($this); + s_Option$_$callClinit(); + var$2 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticAnalysisTooling_semanticCheckFold$($this, s_Option$_option2Iterable(s_Option$_MODULE$, $this.$username1), new oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_90_0)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$2, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncipv_Cypher5Parser$AlterDatabaseOptionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterDatabaseOptionContext_getRuleIndex = $this => { - return 297; +oncia_AlterRemoteDatabaseAlias_productPrefix = $this => { + return $rt_s(5874); }, -oncipv_Cypher5Parser$AlterDatabaseTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AlterDatabaseTopologyContext_primaryTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$PrimaryTopologyContext)); +oncia_AlterRemoteDatabaseAlias_productArity = $this => { + return 8; }, -oncipv_Cypher5Parser$AlterDatabaseTopologyContext_secondaryTopology = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SecondaryTopologyContext)); +oncia_AlterRemoteDatabaseAlias_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$aliasName3; + case 1: + return $this.$targetName1; + case 2: + return jl_Boolean_valueOf($this.$ifExists7); + case 3: + return $this.$url1; + case 4: + return $this.$username1; + case 5: + return $this.$password4; + case 6: + return $this.$driverSettings0; + case 7: + return $this.$properties9; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$AlterDatabaseTopologyContext_getRuleIndex = $this => { - return 296; +oncia_AlterRemoteDatabaseAlias_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$EscapedSymbolicNameStringContext), 0); +oncia_AlterRemoteDatabaseAlias_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5874))), sr_Statics_anyHash($this.$aliasName3)), sr_Statics_anyHash($this.$targetName1)), !$this.$ifExists7 ? 1237 : 1231), sr_Statics_anyHash($this.$url1)), sr_Statics_anyHash($this.$username1)), sr_Statics_anyHash($this.$password4)), sr_Statics_anyHash($this.$driverSettings0)), sr_Statics_anyHash($this.$properties9)), + 8); }, -oncipv_Cypher5Parser$SymbolicNameStringContext_unescapedSymbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext), 0); +oncia_AlterRemoteDatabaseAlias_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SymbolicNameStringContext_getRuleIndex = $this => { - return 327; +oncia_AlterRemoteDatabaseAlias_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_AlterRemoteDatabaseAlias) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists7 != $x$1.$ifExists7) + break b; + d: { + var$2 = $this.$aliasName3; + var$3 = $x$1.$aliasName3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$targetName1; + var$3 = $x$1.$targetName1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$url1; + var$3 = $x$1.$url1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$username1; + var$3 = $x$1.$username1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$password4; + var$3 = $x$1.$password4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break h; + } + if (var$3 !== null) + break b; + } + i: { + var$2 = $this.$driverSettings0; + var$3 = $x$1.$driverSettings0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break i; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$properties9; + $x$1 = $x$1.$properties9; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$RemoveNamedProviderContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RemoveNamedProviderContext_stringLiteral = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0); +oncia_AlterRemoteDatabaseAlias_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher5Parser$RemoveNamedProviderContext_stringListLiteral = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringListLiteralContext), 0); +oncia_AlterRemoteDatabaseAlias_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher5Parser$RemoveNamedProviderContext_getRuleIndex = $this => { - return 224; +oncia_AlterRemoteDatabaseAlias__init_0 = ($this, $aliasName, $targetName, $ifExists, $url, $username, $password, $driverSettings, $properties, $position) => { + $this.$aliasName3 = $aliasName; + $this.$targetName1 = $targetName; + $this.$ifExists7 = $ifExists; + $this.$url1 = $url; + $this.$username1 = $username; + $this.$password4 = $password; + $this.$driverSettings0 = $driverSettings; + $this.$properties9 = $properties; + $this.$position161 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher5Parser$PasswordContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PasswordContext_passwordChangeRequired = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PasswordChangeRequiredContext), 0); +oncia_AlterRemoteDatabaseAlias__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new oncia_AlterRemoteDatabaseAlias(); + oncia_AlterRemoteDatabaseAlias__init_0(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; +}; +function oncia_AlterLocalDatabaseAlias() { + let a = this; jl_Object.call(a); + a.$aliasName7 = null; + a.$targetName2 = null; + a.$ifExists1 = 0; + a.$properties10 = null; + a.$position239 = null; + a.$isReadOnly23 = 0; + a.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar5 = null; +} +let oncia_AlterLocalDatabaseAlias_returnColumns = $this => { + return oncia_WriteAdministrationCommand_returnColumns$($this); }, -oncipv_Cypher5Parser$PasswordContext_getRuleIndex = $this => { - return 225; +oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher5Parser$PasswordChangeRequiredContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PasswordChangeRequiredContext_getRuleIndex = $this => { - return 228; +oncia_AlterLocalDatabaseAlias_useGraph = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar(); }, -oncipv_Cypher5Parser$UserStatusContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UserStatusContext_getRuleIndex = $this => { - return 229; +oncia_AlterLocalDatabaseAlias_withGraph0 = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher5Parser$HomeDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$HomeDatabaseContext_getRuleIndex = $this => { - return 230; +oncia_AlterLocalDatabaseAlias_requireFeatureSupport = ($this, $msg, $feature, $position) => { + return oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, $msg, $feature, $position); }, -oncipv_Cypher5Parser$SetAuthClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SetAuthClauseContext_getRuleIndex = $this => { - return 231; +oncia_AlterLocalDatabaseAlias_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher5Parser$CommandNameExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CommandNameExpressionContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +oncia_AlterLocalDatabaseAlias_foldedOver = $this => { + return $this; }, -oncipv_Cypher5Parser$CommandNameExpressionContext_getRuleIndex = $this => { - return 315; +oncia_AlterLocalDatabaseAlias_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher5Parser$DatabaseNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DatabaseNameContext_symbolicAliasNameOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0); +oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq = ($this, $x$1) => { + $this.$isReadOnly23 = $x$1; }, -oncipv_Cypher5Parser$DatabaseNameContext_getRuleIndex = $this => { - return 304; +oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar = $this => { + return $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar5; }, -oncipv_Cypher5Parser$MapOrParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$MapOrParameterContext_getRuleIndex = $this => { - return 325; +oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar5 = $x$1; }, -oncipv_Cypher5Parser$CreateIndex_Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateIndex_Context_getRuleIndex = $this => { - return 187; +oncia_AlterLocalDatabaseAlias_aliasName = $this => { + return $this.$aliasName7; }, -oncipv_Cypher5Parser$CreateFulltextIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateFulltextIndexContext_getRuleIndex = $this => { - return 188; +oncia_AlterLocalDatabaseAlias_targetName = $this => { + return $this.$targetName2; }, -oncipv_Cypher5Parser$CreateLookupIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateLookupIndexContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +oncia_AlterLocalDatabaseAlias_ifExists = $this => { + return $this.$ifExists1; }, -oncipv_Cypher5Parser$CreateLookupIndexContext_lookupIndexRelPattern = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$LookupIndexRelPatternContext), 0); +oncia_AlterLocalDatabaseAlias_properties = $this => { + return $this.$properties10; }, -oncipv_Cypher5Parser$CreateLookupIndexContext_getRuleIndex = $this => { - return 191; +oncia_AlterLocalDatabaseAlias_position = $this => { + return $this.$position239; }, -oncipv_Cypher5Parser$OldCreateIndexContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$OldCreateIndexContext_getRuleIndex = $this => { - return 186; +oncia_AlterLocalDatabaseAlias_name = $this => { + return $rt_s(5773); }, -oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +oncia_AlterLocalDatabaseAlias_semanticCheck = $this => { + let var$1; + var$1 = oncia_AdministrationCommand_semanticCheck$($this); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $this)); }, -oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_getRuleIndex = $this => { - return 314; -}; -let oncipv_Cypher5Parser$CommandNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CommandNodePatternContext_getRuleIndex = $this => { - return 180; +oncia_AlterLocalDatabaseAlias_productPrefix = $this => { + return $rt_s(5875); }, -oncipv_Cypher5Parser$CommandRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CommandRelPatternContext_getRuleIndex = $this => { - return 181; +oncia_AlterLocalDatabaseAlias_productArity = $this => { + return 4; }, -oncipv_Cypher5Parser$ConstraintTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ConstraintTypeContext__init_0 = ($this, $parent, $invokingState) => { - oncip_AstRuleCtx__init_($this, $parent, $invokingState); +oncia_AlterLocalDatabaseAlias_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$aliasName7; + case 1: + return $this.$targetName2; + case 2: + return jl_Boolean_valueOf($this.$ifExists1); + case 3: + return $this.$properties10; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ConstraintTypeContext__init_ = (var_0, var_1) => { - let var_2 = new oncipv_Cypher5Parser$ConstraintTypeContext(); - oncipv_Cypher5Parser$ConstraintTypeContext__init_0(var_2, var_0, var_1); - return var_2; +oncia_AlterLocalDatabaseAlias_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ConstraintTypeContext_getRuleIndex = $this => { - return 183; +oncia_AlterLocalDatabaseAlias_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5875))), sr_Statics_anyHash($this.$aliasName7)), sr_Statics_anyHash($this.$targetName2)), !$this.$ifExists1 ? 1237 : 1231), sr_Statics_anyHash($this.$properties10)), 4); }, -oncipv_Cypher5Parser$ConstraintExistsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), -oncipv_Cypher5Parser$ConstraintExistsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_AlterLocalDatabaseAlias_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ConstraintExistsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ConstraintExistsContext(); - oncipv_Cypher5Parser$ConstraintExistsContext__init_(var_1, var_0); - return var_1; +oncia_AlterLocalDatabaseAlias_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_AlterLocalDatabaseAlias) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$ifExists1 != $x$1.$ifExists1) + break b; + d: { + var$2 = $this.$aliasName7; + var$3 = $x$1.$aliasName7; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$targetName2; + var$3 = $x$1.$targetName2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$properties10; + $x$1 = $x$1.$properties10; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$ConstraintTypedContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), -oncipv_Cypher5Parser$ConstraintTypedContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_AlterLocalDatabaseAlias_dup = ($this, $children) => { + return oncia_AdministrationCommand_dup$($this, $children); }, -oncipv_Cypher5Parser$ConstraintTypedContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ConstraintTypedContext(); - oncipv_Cypher5Parser$ConstraintTypedContext__init_(var_1, var_0); - return var_1; +oncia_AlterLocalDatabaseAlias_withGraph = ($this, $useGraph) => { + $this.$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq($useGraph); + return $this; }, -oncipv_Cypher5Parser$ConstraintIsUniqueContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), -oncipv_Cypher5Parser$ConstraintIsUniqueContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_AlterLocalDatabaseAlias__init_0 = ($this, $aliasName, $targetName, $ifExists, $properties, $position) => { + $this.$aliasName7 = $aliasName; + $this.$targetName2 = $targetName; + $this.$ifExists1 = $ifExists; + $this.$properties10 = $properties; + $this.$position239 = $position; + oncia_AdministrationCommand_$init$($this); + oncia_WriteAdministrationCommand_$init$($this); }, -oncipv_Cypher5Parser$ConstraintIsUniqueContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ConstraintIsUniqueContext(); - oncipv_Cypher5Parser$ConstraintIsUniqueContext__init_(var_1, var_0); - return var_1; +oncia_AlterLocalDatabaseAlias__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_AlterLocalDatabaseAlias(); + oncia_AlterLocalDatabaseAlias__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; }, -oncipv_Cypher5Parser$ConstraintKeyContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), -oncipv_Cypher5Parser$ConstraintKeyContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_ShowAliases$ = $rt_classWithoutFields(), +oncia_ShowAliases$_MODULE$ = null, +oncia_ShowAliases$__clinit_ = () => { + oncia_ShowAliases$_MODULE$ = new oncia_ShowAliases$; }, -oncipv_Cypher5Parser$ConstraintKeyContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ConstraintKeyContext(); - oncipv_Cypher5Parser$ConstraintKeyContext__init_(var_1, var_0); - return var_1; +oncia_ShowAliases$_apply = ($this, $aliasName, $yieldOrWhere, $position) => { + let var$4, var$5, var$6, var$7, var$8, $showColumns, var$10; + s_package$_$callClinit(); + var$4 = s_package$_List(s_package$_MODULE$); + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(s_Tuple2, 8); + var$7 = var$6.data; + var$8 = new s_Tuple2; + $showColumns = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0(var$8, oncia_ShowColumn$_apply($showColumns, $rt_s(5567), oncia_ShowColumn$_apply$default$2($showColumns), $position), jl_Boolean_valueOf(1)); + var$7[0] = var$8; + var$10 = new s_Tuple2; + var$8 = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0(var$10, oncia_ShowColumn$_apply(var$8, $rt_s(5876), oncia_ShowColumn$_apply$default$2(var$8), $position), jl_Boolean_valueOf(1)); + var$7[1] = var$10; + $showColumns = new s_Tuple2; + var$10 = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(5581), oncia_ShowColumn$_apply$default$2(var$10), $position), jl_Boolean_valueOf(1)); + var$7[2] = $showColumns; + $showColumns = new s_Tuple2; + var$10 = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(5877), oncia_ShowColumn$_apply$default$2(var$10), $position), jl_Boolean_valueOf(1)); + var$7[3] = $showColumns; + $showColumns = new s_Tuple2; + var$10 = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(1241), oncia_ShowColumn$_apply$default$2(var$10), $position), jl_Boolean_valueOf(1)); + var$7[4] = $showColumns; + $showColumns = new s_Tuple2; + var$10 = oncia_ShowColumn$_MODULE$; + s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(1242), oncia_ShowColumn$_apply$default$2(var$10), $position), jl_Boolean_valueOf(1)); + var$7[5] = $showColumns; + $showColumns = new s_Tuple2; + var$10 = oncia_ShowColumn$_MODULE$; + oncius_package$_$callClinit(); + s_Tuple2__init_0($showColumns, oncia_ShowColumn$_apply(var$10, $rt_s(5878), oncius_package$_CTMap(oncius_package$_MODULE$), $position), jl_Boolean_valueOf(0)); + var$7[6] = $showColumns; + var$7[7] = s_Tuple2__init_(oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, $rt_s(4662), oncius_package$_CTMap(oncius_package$_MODULE$), $position), jl_Boolean_valueOf(0)); + $showColumns = var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); + var$10 = new oncia_ShowAliases; + oncia_DefaultOrAllShowColumns$_$callClinit(); + oncia_ShowAliases__init_(var$10, $aliasName, $yieldOrWhere, oncia_DefaultOrAllShowColumns$_apply0(oncia_DefaultOrAllShowColumns$_MODULE$, $showColumns, $yieldOrWhere), $position); + return var$10; +}; +function oncia_ParameterName() { + let a = this; jl_Object.call(a); + a.$parameter2 = null; + a.$position229 = null; +} +let oncia_ParameterName_parameter = $this => { + return $this.$parameter2; }, -oncipv_Cypher5Parser$ConstraintIsNotNullContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ConstraintTypeContext), -oncipv_Cypher5Parser$ConstraintIsNotNullContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_ParameterName_position = $this => { + return $this.$position229; }, -oncipv_Cypher5Parser$ConstraintIsNotNullContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ConstraintIsNotNullContext(); - oncipv_Cypher5Parser$ConstraintIsNotNullContext__init_(var_1, var_0); - return var_1; +oncia_ParameterName_productPrefix = $this => { + return $rt_s(5879); }, -oncipv_Cypher5Parser$PrimaryTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PrimaryTopologyContext_getRuleIndex = $this => { - return 288; +oncia_ParameterName_productArity = $this => { + return 1; }, -oncipv_Cypher5Parser$SecondaryTopologyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SecondaryTopologyContext_getRuleIndex = $this => { - return 290; +oncia_ParameterName_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$parameter2; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$DatabasePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DatabasePrivilegeContext_userQualifier = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$UserQualifierContext), 0); +oncia_ParameterName_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DatabasePrivilegeContext_getRuleIndex = $this => { - return 258; +oncia_ParameterName_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DbmsPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DbmsPrivilegeContext_getRuleIndex = $this => { - return 259; +oncia_ParameterName_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$AllPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AllPrivilegeContext_allPrivilegeTarget = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$AllPrivilegeTargetContext), 0); +oncia_ParameterName_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ParameterName) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$parameter2; + $x$1 = $x$1.$parameter2; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ParameterName)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncipv_Cypher5Parser$AllPrivilegeContext_getRuleIndex = $this => { - return 242; +oncia_ParameterName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher5Parser$CreatePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreatePrivilegeContext_databaseScope = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseScopeContext), 0); +oncia_ParameterName__init_ = ($this, $parameter, $position) => { + $this.$parameter2 = $parameter; + $this.$position229 = $position; }, -oncipv_Cypher5Parser$CreatePrivilegeContext_actionForDBMS = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ActionForDBMSContext), 0); +oncia_ParameterName__init_0 = (var_0, var_1) => { + let var_2 = new oncia_ParameterName(); + oncia_ParameterName__init_(var_2, var_0, var_1); + return var_2; }, -oncipv_Cypher5Parser$CreatePrivilegeContext_getRuleIndex = $this => { - return 245; +oncia_NamespacedName$ = $rt_classWithoutFields(), +oncia_NamespacedName$_MODULE$ = null, +oncia_NamespacedName$__clinit_ = () => { + oncia_NamespacedName$_MODULE$ = new oncia_NamespacedName$; }, -oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext_getRuleIndex = $this => { - return 275; +oncia_NamespacedName$_apply = ($this, $names, $pos) => { + let var$3, var$4, $x, $xs; + var$3 = 0; + var$4 = null; + if ($names instanceof sci_$colon$colon) { + var$3 = 1; + var$4 = $names; + $x = var$4.$head1; + $xs = var$4.$next5; + if (sci_List_equals(sci_Nil$_MODULE$, $xs)) + return oncia_NamespacedName__init_(sci_$colon$colon__init_($x, sci_Nil$_MODULE$), s_None$_MODULE$, $pos); + } + if (!var$3) { + $names = new jl_InternalError; + jl_Throwable__init_($names, $rt_s(5880)); + $rt_throw($names); + } + $x = var$4.$head1; + return oncia_NamespacedName__init_(var$4.$next5, s_Some__init_($x), $pos); }, -oncipv_Cypher5Parser$DropPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DropPrivilegeContext_databaseScope = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseScopeContext), 0); +oncipvaf_LiteralBuilder$0 = $rt_classWithoutFields(), +oncipvaf_LiteralBuilder$_MODULE$0 = null, +oncipvaf_LiteralBuilder$__clinit_0 = () => { + oncipvaf_LiteralBuilder$_MODULE$0 = new oncipvaf_LiteralBuilder$0; +}; +function oncie_MapExpression() { + let a = this; oncie_Expression.call(a); + a.$items1 = null; + a.$position118 = null; +} +let oncie_MapExpression_items = $this => { + return $this.$items1; }, -oncipv_Cypher5Parser$DropPrivilegeContext_getRuleIndex = $this => { - return 251; +oncie_MapExpression_position = $this => { + return $this.$position118; }, -oncipv_Cypher5Parser$LoadPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LoadPrivilegeContext_stringOrParameter = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0); +oncie_MapExpression_asCanonicalStringVal = $this => { + return sc_IterableOnceOps_mkString$($this.$items1.$map(new oncie_MapExpression$asCanonicalStringVal$lambda$_5_0), $rt_s(430), $rt_s(45), $rt_s(431)); }, -oncipv_Cypher5Parser$LoadPrivilegeContext_getRuleIndex = $this => { - return 252; +oncie_MapExpression_isConstantForQuery = $this => { + return $this.$items1.$forall(new oncie_MapExpression$isConstantForQuery$lambda$_6_0); }, -oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext_getRuleIndex = $this => { - return 274; +oncie_MapExpression_mapExpressions = ($this, $f) => { + let var$2, var$3; + var$2 = $this.$items1; + var$3 = new oncie_MapExpression$mapExpressions$lambda$_7_0; + var$3.$_0422 = $f; + return oncie_MapExpression_copy($this, var$2.$map(var$3), $this.$position118); }, -oncipv_Cypher5Parser$RemovePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx); -let oncipv_Cypher5Parser$RemovePrivilegeContext_getRuleIndex = $this => { - return 256; +oncie_MapExpression_copy = ($this, $items, $position) => { + return oncie_MapExpression__init_0($items, $position); }, -oncipv_Cypher5Parser$SetPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SetPrivilegeContext_getRuleIndex = $this => { - return 254; +oncie_MapExpression_productPrefix = $this => { + return $rt_s(5881); }, -oncipv_Cypher5Parser$ShowPrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowPrivilegeContext_databaseScope = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DatabaseScopeContext), 0); +oncie_MapExpression_productArity = $this => { + return 1; }, -oncipv_Cypher5Parser$ShowPrivilegeContext_getRuleIndex = $this => { - return 253; +oncie_MapExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$items1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$WritePrivilegeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$WritePrivilegeContext_getRuleIndex = $this => { - return 257; +oncie_MapExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext_getRuleIndex = $this => { - return 316; +oncie_MapExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$AliasActionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AliasActionContext_getRuleIndex = $this => { - return 293; +oncie_MapExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$PropertyListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PropertyListContext_getRuleIndex = $this => { - return 195; +oncie_MapExpression_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_MapExpression) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$items1; + $x$1 = $x$1.$items1; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_MapExpression)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncipv_Cypher5Parser$LabelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelTypeContext_getRuleIndex = $this => { - return 67; +oncie_MapExpression__init_ = ($this, $items, $position) => { + $this.$items1 = $items; + $this.$position118 = $position; + oncie_Expression__init_($this); }, -oncipv_Cypher5Parser$NonEmptyNameListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NonEmptyNameListContext_symbolicNameString = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); +oncie_MapExpression__init_0 = (var_0, var_1) => { + let var_2 = new oncie_MapExpression(); + oncie_MapExpression__init_(var_2, var_0, var_1); + return var_2; }, -oncipv_Cypher5Parser$NonEmptyNameListContext_getRuleIndex = $this => { - return 139; +oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0_apply0 = (var$0, var$1) => { + var$1 = var$1; + return s_Tuple2__init_((var$1.$_1()).$name5, var$1.$_2()); }, -oncipv_Cypher5Parser$StringLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StringLiteralContext_getRuleIndex = $this => { - return 322; +oncipcd_DeprecatedChars = $rt_classWithoutFields(), +oncipcd_DeprecatedChars_DEPRECATED_CHARS = null, +oncipcd_DeprecatedChars__clinit_ = () => { + let var$1, var$2, var$3, $deprecated; + var$1 = $rt_createCharArrayFromData([0, 1, 2, 3, 4, 5, 6, 7, 8, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 36, 162, 163, 164, 165, 173, 1536, 1537, 1538, 1539, 1540, 1541, 1564, 1757, 1807, 2274, 6158, 8203, 8204, 8205, 8206, 8207, 8234, 8235, 8236, 8237, 8238, 8288, 8289, 8290, 8291, 8292, 8294, 8295, 8296, 8297, 8298, 8299, 8300, + 8301, 8302, 8303, 11823, 65279, 65529, 65530, 65531]); + oncipcd_DeprecatedChars_DEPRECATED_CHARS = var$1; + ju_Arrays_sort0(var$1); + var$1 = oncipcd_DeprecatedChars_DEPRECATED_CHARS.data; + var$2 = var$1.length; + var$3 = 0; + while (var$3 < var$2) { + $deprecated = var$1[var$3]; + if ($deprecated >= 37 && $deprecated <= 126) + $rt_throw(jl_IllegalStateException__init_1($rt_s(5882))); + var$3 = var$3 + 1 | 0; + } }; -function oncipv_Cypher5Parser$ParameterContext() { - oncip_AstRuleCtx.call(this); - this.$paramType2 = null; +function oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0() { + jl_Object.call(this); + this.$_0705 = null; } -let oncipv_Cypher5Parser$ParameterContext_getRuleIndex = $this => { - return 132; -}, -oncipv_Cypher5Parser$UserNamesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UserNamesContext_getRuleIndex = $this => { - return 202; -}, -oncipv_Cypher5Parser$ShowCommandYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowCommandYieldContext_getRuleIndex = $this => { - return 149; -}, -oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext_getRuleIndex = $this => { - return 168; -}, -oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext_getRuleIndex = $this => { - return 165; -}, -oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext_getRuleIndex = $this => { - return 166; +let oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0_apply = (var$0, var$1) => { + return var$1.$incl(var$0.$_0705); +}; +function oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0() { + jl_Object.call(this); + this.$_0437 = null; +} +let oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0_apply = (var$0, var$1) => { + return var$1.$incl(var$0.$_0437); +}; +function oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0() { + let a = this; jl_Object.call(a); + a.$_0774 = null; + a.$_1258 = null; +} +let oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0774; + var$3 = var$0.$_1258; + if ($rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) + return var$1; + if (!(var$1 instanceof oncie_PatternPartWithSelector)) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = var$1; + var$4 = var$2.$exceptionFactory3; + var$1 = var$1.$selector1.$prettified(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5122)), var$1), $rt_s(5335)); + var$2 = jl_AbstractStringBuilder_toString(var$2); + oncipau_Util$_$callClinit(); + $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3))); }, -oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext_getRuleIndex = $this => { - return 167; +oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_00 = $rt_classWithoutFields(), +oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + if (var$1 instanceof oncie_PatternPartWithSelector) + var$1 = var$1; + else { + if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) { + var$2 = new jl_IllegalStateException; + var$1 = jl_Object_getClass(var$1); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5349)), var$1); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); + } + var$2 = var$1; + var$1 = oncie_PatternPartWithSelector__init_(oncie_PatternPart$AllPaths__init_(var$2.$position()), var$2); + } + return var$1; +}; +function oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_10() { + jl_Object.call(this); + this.$_099 = null; +} +let oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1_apply0 = var$0 => { + let var$1; + var$1 = var$0.$_099; + return oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, var$1); }, -oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext_getRuleIndex = $this => { - return 163; +oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0 = $rt_classWithoutFields(), +oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0_apply0 = (var$0, var$1) => { + return oncipv_Cypher25Parser$ProcedureArgumentContext_expression(var$1); }, -oncipv_Cypher5Parser$ShowFunctionsTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowFunctionsTypeContext_getRuleIndex = $this => { - return 173; +oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0 = $rt_classWithoutFields(), +oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = new oncie_LabelName; + var$3 = var$1.$ast0; + oncipau_Util$_$callClinit(); + oncie_LabelName__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); + return var$2; }, -oncipv_Cypher5Parser$FunctionTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$FunctionTokenContext_getRuleIndex = $this => { - return 171; +oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0_apply = (var$0, var$1) => { + return var$1.$position22; +}; +function oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1() { + jl_Object.call(this); + this.$_0240 = null; +} +let oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1_apply0 = var$0 => { + let var$1; + var$1 = var$0.$_0240; + oncipau_Util$_$callClinit(); + return oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1); }, -oncipv_Cypher5Parser$ExecutableByContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ExecutableByContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0 = $rt_classWithoutFields(), +oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$3 = var$3.$_20; + var$4 = new oncil_LabelExpression$Negation; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Negation__init_(var$4, var$3, 0, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); + return var$4; }, -oncipv_Cypher5Parser$ExecutableByContext_getRuleIndex = $this => { - return 172; +oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0 = $rt_classWithoutFields(), +oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$3 = var$3.$_20; + var$4 = new oncil_LabelExpression$Negation; + oncipau_Util$_$callClinit(); + oncil_LabelExpression$Negation__init_(var$4, var$3, 1, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); + return var$4; }, -oncipv_Cypher5Parser$ComposableCommandClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ComposableCommandClausesContext_getRuleIndex = $this => { - return 156; +oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0_apply0 = (var$0, var$1, var$2, var$3) => { + let var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = new oncie_Or; + oncipau_Util$_$callClinit(); + oncie_Or__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); + return var$4; }, -oncipv_Cypher5Parser$ShowIndexesNoBriefContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowIndexesNoBriefContext_getRuleIndex = $this => { - return 161; +oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0_apply0 = (var$0, var$1, var$2, var$3) => { + let var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = new oncie_Xor; + oncipau_Util$_$callClinit(); + oncie_Xor__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); + return var$4; }, -oncipv_Cypher5Parser$ShowIndexesAllowBriefContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowIndexesAllowBriefContext_getRuleIndex = $this => { - return 160; +oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0_apply0 = (var$0, var$1, var$2, var$3) => { + let var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = new oncie_And; + oncipau_Util$_$callClinit(); + oncie_And__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); + return var$4; }, -oncipv_Cypher5Parser$PrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PrivilegeTokenContext_getRuleIndex = $this => { - return 240; +oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0_apply = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + var$3 = new oncie_Not; + oncipau_Util$_$callClinit(); + oncie_Not__init_(var$3, var$2, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); + return var$3; +}; +function oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_00() { + let a = this; jl_Object.call(a); + a.$_0632 = null; + a.$_1213 = null; +} +let oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0632; + var$3 = var$0.$_1213; + if (var$1 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$1); + if (!var$1.$lengthCompare(3)) { + var$4 = var$1.$apply1(0); + var$5 = var$1.$apply1(1); + var$1 = var$1.$apply1(2); + if (var$4 instanceof oncip_AstRuleCtx) { + var$4 = var$4; + if ($rt_isInstance(var$5, oavrt_TerminalNode)) { + var$5 = var$5; + if (var$1 instanceof oncip_AstRuleCtx) { + var$1 = var$1; + return oncipvaf_ExpressionBuilder_binaryPredicate(var$2, var$4.$ast0, var$5, var$1); + } + } + } + } + } + var$1 = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5398)), var$3); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$1); +}; +function oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0() { + jl_Object.call(this); + this.$_01168 = null; +} +let oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0_apply = (var$0, var$1, var$2, var$3) => { + let var$4, var$5; + a: { + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = (var$2.$getSymbol()).$getType0(); + switch (var$4) { + case 81: + var$5 = new oncie_Concatenate; + oncipau_Util$_$callClinit(); + oncie_Concatenate__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + case 157: + var$5 = new oncie_Subtract; + oncipau_Util$_$callClinit(); + oncie_Subtract__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + case 193: + var$5 = new oncie_Add; + oncipau_Util$_$callClinit(); + oncie_Add__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); + } + return var$5; +}; +function oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_00() { + jl_Object.call(this); + this.$_01176 = null; +} +let oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0_apply = (var$0, var$1, var$2, var$3) => { + let var$4, var$5; + a: { + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = (var$2.$getSymbol()).$getType0(); + switch (var$4) { + case 78: + var$5 = new oncie_Divide; + oncipau_Util$_$callClinit(); + oncie_Divide__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + case 158: + var$5 = new oncie_Modulo; + oncipau_Util$_$callClinit(); + oncie_Modulo__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + case 265: + var$5 = new oncie_Multiply; + oncipau_Util$_$callClinit(); + oncie_Multiply__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + break a; + default: + } + $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); + } + return var$5; }, -oncipv_Cypher5Parser$PrivilegeAsCommandContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PrivilegeAsCommandContext_getRuleIndex = $this => { - return 239; +oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0_apply0 = (var$0, var$1, var$2, var$3) => { + let var$4; + var$1 = var$1; + var$2 = var$2; + var$3 = var$3; + var$4 = new oncie_Pow; + oncipau_Util$_$callClinit(); + oncie_Pow__init_(var$4, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + return var$4; +}; +function oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_00() { + jl_Object.call(this); + this.$_01182 = null; +} +let oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$2; + var$3 = var$1.$position(); + if (var$2 instanceof oncipv_Cypher25Parser$PropertyPostfixContext) { + var$2 = var$2; + var$4 = new oncie_Property; + oncipau_Util$_$callClinit(); + oncie_Property__init_0(var$4, var$1, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$3); + } else if (var$2 instanceof oncipv_Cypher25Parser$IndexPostfixContext) { + var$2 = var$2; + var$4 = new oncie_ContainerIndex; + oncipau_Util$_$callClinit(); + var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 1)).$ast0; + var$5 = oncipau_Util$_MODULE$; + oncie_ContainerIndex__init_(var$4, var$1, var$3, oncipau_Util$_pos(var$5, oncipau_Util$_ctxChild(var$5, var$2, 1))); + } else if (var$2 instanceof oncipv_Cypher25Parser$LabelPostfixContext) { + var$2 = var$2; + var$4 = new oncil_LabelExpressionPredicate; + oncipau_Util$_$callClinit(); + oncil_LabelExpressionPredicate__init_0(var$4, var$1, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$3, oncil_LabelExpressionPredicate$_isParenthesizedDefault); + } else { + if (!(var$2 instanceof oncipv_Cypher25Parser$RangePostfixContext)) { + var$1 = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(5401)), var$2); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw(var$1); + } + var$5 = var$2; + var$4 = new oncie_ListSlice; + oncipau_Util$_$callClinit(); + oncie_ListSlice__init_(var$4, var$1, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$5.$fromExp), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$5.$toExp), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + } + return var$4; }, -oncipv_Cypher5Parser$SettingTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SettingTokenContext_getRuleIndex = $this => { - return 177; +oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0_apply = var$0 => { + oncie_NFCNormalForm$_$callClinit(); + return oncie_NFCNormalForm$_MODULE$; }, -oncipv_Cypher5Parser$NamesAndClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NamesAndClausesContext_getRuleIndex = $this => { - return 178; +oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0_apply = (var$0, var$1) => { + return oncipv_Cypher25Parser$FunctionArgumentContext_expression(var$1); }, -oncipv_Cypher5Parser$TransactionTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$TransactionTokenContext_getRuleIndex = $this => { - return 265; +oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0 = $rt_classWithoutFields(), +oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0_apply0 = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0; + var$2.$_0206 = var$1; + return var$2; +}; +function oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_00() { + let a = this; jl_Object.call(a); + a.$_0943 = null; + a.$_1324 = null; +} +let oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0_accept = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0943; + var$3 = var$0.$_1324; + var$4 = new oncius_ListType; + var$5 = var$2.$elem; + var$6 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); + oncipau_Util$_$callClinit(); + oncius_ListType__init_0(var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); + var$2.$elem = var$4; }, -oncipv_Cypher5Parser$SecondsTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SecondsTokenContext_getRuleIndex = $this => { - return 301; +oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0_apply = var$0 => { + oncia_AllIndexes$_$callClinit(); + return oncia_AllIndexes$_MODULE$; +}; +function oncipvaf_DdlShowBuilder$ShowWrapper0() { + let a = this; jl_Object.call(a); + a.$where1 = null; + a.$yieldedItems0 = null; + a.$yieldAll1 = 0; + a.$yieldClause2 = null; + a.$returnClause3 = null; + a.$composableClauses = null; + a.$names1 = null; +} +let oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses = ($this, $constraintType, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8; + oncia_ShowConstraintsClause$_$callClinit(); + var$3 = oncia_ShowConstraintsClause$_MODULE$; + var$4 = $this.$where1; + var$5 = $this.$yieldedItems0; + var$6 = $this.$yieldAll1; + var$7 = $this.$yieldClause2; + var$8 = new oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_00; + var$8.$_01066 = $this; + return oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses($this, oncia_ShowConstraintsClause$_apply(var$3, $constraintType, var$4, var$5, var$6, s_Option_map(var$7, var$8), 0, $position)); }, -oncipv_Cypher5Parser$FinishClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$FinishClauseContext_getRuleIndex = $this => { - return 8; +oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses = ($this, $cmdClause) => { + let var$2, var$3; + var$2 = sci_ArraySeq$_MODULE$; + var$3 = ((sci_$colon$colon__init_($cmdClause, sci_Nil$_MODULE$)).$concat($this.$returnClause3)).$concat(s_Option_getOrElse($this.$composableClauses, new oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0)); + sr_ClassTag$_$callClinit(); + return sci_ArraySeq$_from(var$2, var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Clause))); }, -oncipv_Cypher5Parser$ReturnClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ReturnClauseContext_getRuleIndex = $this => { - return 9; +oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith = ($this, $yieldClause) => { + let $returnItems, $where, var$4, $itemOrder, $orderBy, $where_0; + $returnItems = $yieldClause.$returnItems4; + s_Option$_$callClinit(); + $where = s_Option$_MODULE$; + var$4 = sc_IterableOnceOps_nonEmpty$($returnItems.$items0); + $itemOrder = new oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_00; + $itemOrder.$_0499 = $returnItems; + $itemOrder = s_Option$_when($where, var$4, $itemOrder); + oncia_CommandClause$_$callClinit(); + $where = oncia_CommandClause$_updateAliasedVariablesFromYieldInOrderByAndWhere(oncia_CommandClause$_MODULE$, $yieldClause); + if ($where === null) + $rt_throw(s_MatchError__init_($where)); + $orderBy = $where.$_10; + $where = $where.$_20; + $where_0 = s_Tuple2__init_($orderBy, $where); + $orderBy = $where_0.$_10; + $where_0 = $where_0.$_20; + return oncia_With__init_0(0, oncia_ReturnItems__init_0(1, sci_Nil$_MODULE$, $itemOrder, $returnItems.$position28), $orderBy, $yieldClause.$skip4, $yieldClause.$limit4, $where_0, oncia_ParsedAsYield$_MODULE$, $yieldClause.$position31); }, -oncipv_Cypher5Parser$CreateClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateClauseContext_getRuleIndex = $this => { - return 21; +oncipvaf_DdlShowBuilder$ShowWrapper_copy0 = ($this, $where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names) => { + return oncipvaf_DdlShowBuilder$ShowWrapper__init_1($where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names); }, -oncipv_Cypher5Parser$InsertClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$InsertClauseContext_getRuleIndex = $this => { - return 22; +oncipvaf_DdlShowBuilder$ShowWrapper_productPrefix0 = $this => { + return $rt_s(5447); }, -oncipv_Cypher5Parser$DeleteClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DeleteClauseContext_getRuleIndex = $this => { - return 27; -}; -let oncipv_Cypher5Parser$SetClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SetClauseContext_getRuleIndex = $this => { - return 23; +oncipvaf_DdlShowBuilder$ShowWrapper_productArity = $this => { + return 7; }, -oncipv_Cypher5Parser$RemoveClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RemoveClauseContext_getRuleIndex = $this => { - return 25; +oncipvaf_DdlShowBuilder$ShowWrapper_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$where1; + case 1: + return $this.$yieldedItems0; + case 2: + return jl_Boolean_valueOf($this.$yieldAll1); + case 3: + return $this.$yieldClause2; + case 4: + return $this.$returnClause3; + case 5: + return $this.$composableClauses; + case 6: + return $this.$names1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$MatchClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$MatchClauseContext_getRuleIndex = $this => { - return 28; +oncipvaf_DdlShowBuilder$ShowWrapper_productIterator0 = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$MergeClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$MergeClauseContext_getRuleIndex = $this => { - return 31; +oncipvaf_DdlShowBuilder$ShowWrapper_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5447))), sr_Statics_anyHash($this.$where1)), sr_Statics_anyHash($this.$yieldedItems0)), !$this.$yieldAll1 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldClause2)), sr_Statics_anyHash($this.$returnClause3)), sr_Statics_anyHash($this.$composableClauses)), sr_Statics_anyHash($this.$names1)), 7); }, -oncipv_Cypher5Parser$WithClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$WithClauseContext_getRuleIndex = $this => { - return 20; +oncipvaf_DdlShowBuilder$ShowWrapper_toString0 = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$UnwindClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UnwindClauseContext_getRuleIndex = $this => { - return 33; +oncipvaf_DdlShowBuilder$ShowWrapper_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncipvaf_DdlShowBuilder$ShowWrapper0) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll1 != $x$1.$yieldAll1) + break b; + c: { + var$2 = $this.$where1; + var$3 = $x$1.$where1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$yieldedItems0; + var$3 = $x$1.$yieldedItems0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$yieldClause2; + var$3 = $x$1.$yieldClause2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$returnClause3; + var$3 = $x$1.$returnClause3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$composableClauses; + var$3 = $x$1.$composableClauses; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$names1; + $x$1 = $x$1.$names1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break h; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncipvaf_DdlShowBuilder$ShowWrapper0)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$CallClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CallClauseContext_YIELD = $this => { - return oncip_AstRuleCtx_getToken($this, 306, 0); +oncipvaf_DdlShowBuilder$ShowWrapper__init_0 = ($this, $where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names) => { + $this.$where1 = $where; + $this.$yieldedItems0 = $yieldedItems; + $this.$yieldAll1 = $yieldAll; + $this.$yieldClause2 = $yieldClause; + $this.$returnClause3 = $returnClause; + $this.$composableClauses = $composableClauses; + $this.$names1 = $names; }, -oncipv_Cypher5Parser$CallClauseContext_getRuleIndex = $this => { - return 34; +oncipvaf_DdlShowBuilder$ShowWrapper__init_1 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncipvaf_DdlShowBuilder$ShowWrapper0(); + oncipvaf_DdlShowBuilder$ShowWrapper__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; }, -oncipv_Cypher5Parser$SubqueryClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SubqueryClauseContext_regularQuery = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$RegularQueryContext), 0); +oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0_apply = var$0 => { + return oncia_AllFunctions$_MODULE$; }, -oncipv_Cypher5Parser$SubqueryClauseContext_OPTIONAL = $this => { - return oncip_AstRuleCtx_getToken($this, 187, 0); +oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0_apply = var$0 => { + let var$1; + s_package$_$callClinit(); + var$1 = s_package$_Left(s_package$_MODULE$); + s_package$_List(s_package$_MODULE$); + return su_Left$_apply(var$1, sci_Nil$_MODULE$); }, -oncipv_Cypher5Parser$SubqueryClauseContext_subqueryInTransactionsParameters = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext), 0); +oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0_apply = (var$0, var$1) => { + return var$1.$value8; }, -oncipv_Cypher5Parser$SubqueryClauseContext_getRuleIndex = $this => { - return 40; +oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_00 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0_apply0 = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oncipv_Cypher5Parser$LoadCSVClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LoadCSVClauseContext_getRuleIndex = $this => { - return 38; +oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oncipv_Cypher5Parser$ForeachClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ForeachClauseContext_getRuleIndex = $this => { - return 39; +oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oncipv_Cypher5Parser$OrderBySkipLimitClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$OrderBySkipLimitClauseContext_getRuleIndex = $this => { - return 46; +oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0; + var$2.$_023 = var$1; + return var$2; }, -oncipv_Cypher25Parser$FunctionArgumentContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$FunctionArgumentContext_expression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); +oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0; + var$2.$_0584 = var$1; + return var$2; }, -oncipv_Cypher25Parser$FunctionArgumentContext_getRuleIndex = $this => { - return 134; +oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oncipv_Cypher25Parser$FunctionNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$FunctionNameContext_getRuleIndex = $this => { - return 135; +oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + return oncie_Property__init_(var$2, var$1.$_2(), var$2.$position()); }, -oncipv_Cypher25Parser$ExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ExpressionContext_getRuleIndex = $this => { - return 87; +oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0_apply0 = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oncipv_Cypher25Parser$EscapedSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$EscapedSymbolicNameStringContext_getRuleIndex = $this => { - return 322; +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0_apply = (var$0, var$1) => { + return var$1.$ast0; }, -oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext_getRuleIndex = $this => { - return 323; +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = var$2.$_1(); + var$2 = var$2.$_2(); + return (var$1.$appended(var$3)).$concat(var$2); }, -oncipv_Cypher25Parser$StringListLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StringListLiteralContext_getRuleIndex = $this => { - return 314; +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = new oncia_PasswordChange; + var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); + oncipau_Util$_$callClinit(); + oncia_PasswordChange__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); + return var$2; }, -oncipv_Cypher25Parser$UserAuthAttributeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UserAuthAttributeContext_ID = $this => { - return oncip_AstRuleCtx_getToken($this, 123, 0); +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3_apply = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + return var$3.$_10.$appended(var$3.$_20); }, -oncipv_Cypher25Parser$UserAuthAttributeContext_passwordOnly = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PasswordOnlyContext), 0); +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4_apply = (var$0, var$1) => { + return var$1.$position(); }, -oncipv_Cypher25Parser$UserAuthAttributeContext_passwordChangeRequired = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$PasswordChangeRequiredContext), 0); +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5_apply = (var$0, var$1) => { + return var$1.$ast0; }, -oncipv_Cypher25Parser$UserAuthAttributeContext_getRuleIndex = $this => { - return 226; +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$MapContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$MapContext_getRuleIndex = $this => { - return 320; +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7 = $rt_classWithoutFields(); +let oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$VariableContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$VariableContext_getRuleIndex = $this => { - return 137; +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0_apply = (var$0, var$1) => { + return var$1.$ast0; }, -oncipv_Cypher25Parser$LabelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelTypeContext_getRuleIndex = $this => { - return 66; -}; -let oncipv_Cypher25Parser$LeftArrowContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LeftArrowContext_getRuleIndex = $this => { - return 72; +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1_apply0 = (var$0, var$1, var$2) => { + let var$3; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = var$2.$_1(); + var$2 = var$2.$_2(); + return (var$1.$appended(var$3)).$concat(var$2); }, -oncipv_Cypher25Parser$ArrowLineContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ArrowLineContext_getRuleIndex = $this => { - return 73; +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = new oncia_PasswordChange; + var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); + oncipau_Util$_$callClinit(); + oncia_PasswordChange__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); + return var$2; }, -oncipv_Cypher25Parser$RelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RelTypeContext_getRuleIndex = $this => { - return 67; +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3_apply0 = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + return var$3.$_10.$appended(var$3.$_20); }, -oncipv_Cypher25Parser$RightArrowContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RightArrowContext_getRuleIndex = $this => { - return 74; +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4_apply0 = (var$0, var$1) => { + return var$1.$position(); }, -oncipv_Cypher25Parser$PropertyListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PropertyListContext_getRuleIndex = $this => { - return 189; +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5_apply0 = var$0 => { + return s_None$_MODULE$; +}; +function oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6() { + jl_Object.call(this); + this.$_0455 = null; +} +let oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6_apply0 = var$0 => { + return var$0.$_0455; }, -oncipv_Cypher25Parser$TypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$TypeContext_getRuleIndex = $this => { - return 139; +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7_apply = (var$0, var$1) => { + return var$1.$ast0; }, -oncipv_Cypher25Parser$PrimaryTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PrimaryTokenContext_getRuleIndex = $this => { - return 283; +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8_apply = (var$0, var$1) => { + return var$1.$ast0; }, -oncipv_Cypher25Parser$SecondaryTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SecondaryTokenContext_getRuleIndex = $this => { - return 285; +oncipvaf_DdlBuilder$$anon$10 = $rt_classWithoutFields(oncie_ExplicitParameter), +oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0_apply = var$0 => { + return s_Tuple2$mcZZ$sp__init_(0, 0); }, -oncipv_Cypher25Parser$FulltextNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$FulltextNodePatternContext_getRuleIndex = $this => { - return 183; +oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0_apply = var$0 => { + return s_Tuple2$mcZZ$sp__init_(0, 0); }, -oncipv_Cypher25Parser$FulltextRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$FulltextRelPatternContext_getRuleIndex = $this => { - return 184; +oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0_apply = var$0 => { + return s_Tuple2$mcZZ$sp__init_(0, 0); }, -oncipv_Cypher25Parser$EnclosedPropertyListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$EnclosedPropertyListContext_property = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$PropertyContext)); +oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0_apply = var$0 => { + let var$1, var$2; + var$1 = new sci_$colon$colon; + var$2 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + return var$1; }, -oncipv_Cypher25Parser$EnclosedPropertyListContext_getRuleIndex = $this => { - return 190; +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_00 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0_apply0 = var$0 => { + let var$1, var$2; + var$1 = new sci_$colon$colon; + var$2 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + return var$1; }, -oncipv_Cypher25Parser$LookupIndexNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LookupIndexNodePatternContext_getRuleIndex = $this => { - return 186; +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_10 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1_apply = var$0 => { + let var$1, var$2; + var$1 = new sci_$colon$colon; + var$2 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + return var$1; }, -oncipv_Cypher25Parser$LookupIndexRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LookupIndexRelPatternContext_getRuleIndex = $this => { - return 187; +oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0_apply0 = var$0 => { + let var$1, var$2; + var$1 = new sci_$colon$colon; + var$2 = new oncia_UserAllQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + return var$1; }, -oncipv_Cypher25Parser$DatabaseScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DatabaseScopeContext_getRuleIndex = $this => { - return 278; +oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncia_UserQualifier; + onciu_InputPosition$_$callClinit(); + oncia_UserQualifier__init_(var$2, var$1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + return var$2; +}; +function oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_00() { + jl_Object.call(this); + this.$_0851 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0851; + var$3 = new oncia_FunctionQualifier; + oncipau_Util$_$callClinit(); + oncia_FunctionQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_00() { + jl_Object.call(this); + this.$_0961 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0961; + var$3 = new oncia_ProcedureQualifier; + oncipau_Util$_$callClinit(); + oncia_ProcedureQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0() { + jl_Object.call(this); + this.$_0449 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0449; + var$3 = new oncia_SettingQualifier; + oncipau_Util$_$callClinit(); + oncia_SettingQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; }, -oncipv_Cypher25Parser$UserQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UserQualifierContext_userNames = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$UserNamesContext), 0); +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0_apply0 = var$0 => { + return $rt_s(4); }, -oncipv_Cypher25Parser$UserQualifierContext_getRuleIndex = $this => { - return 260; +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1_apply = var$0 => { + return $rt_s(4); }, -oncipv_Cypher25Parser$ConstraintTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ConstraintTokenContext_getRuleIndex = $this => { - return 258; +oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0_apply0 = var$0 => { + return $rt_s(4); }, -oncipv_Cypher25Parser$IndexTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$IndexTokenContext_getRuleIndex = $this => { - return 257; +oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0_apply = var$0 => { + return $rt_s(4); }, -oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_BOOSTED = $this => { - return oncip_AstRuleCtx_getToken($this, 33, 0); +oncipvaf_DdlPrivilegeBuilder$GraphToken = $rt_classWithoutFields(0); +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_00() { + jl_Object.call(this); + this.$_0977 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0977; + var$3 = new oncia_RelationshipQualifier; + oncipau_Util$_$callClinit(); + oncia_RelationshipQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_10() { + jl_Object.call(this); + this.$_0330 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0330; + var$3 = new oncia_LabelQualifier; + oncipau_Util$_$callClinit(); + oncia_LabelQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_20() { + jl_Object.call(this); + this.$_01082 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2_apply0 = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01082; + var$3 = new oncia_ElementQualifier; + oncipau_Util$_$callClinit(); + oncia_ElementQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_30() { + jl_Object.call(this); + this.$_0565 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0565; + var$3 = new oncia_LabelQualifier; + oncipau_Util$_$callClinit(); + oncia_LabelQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + return var$3; +}; +function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_40() { + jl_Object.call(this); + this.$_01048 = null; +} +let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4_apply = var$0 => { + return (oavr_ParserRuleContext_getRuleContext(var$0.$_01048, $rt_cls(oncipv_Cypher25Parser$MapContext), 0)).$ast0; }, -oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_getRuleIndex = $this => { - return 254; +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oncipv_Cypher25Parser$AllPrivilegeTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AllPrivilegeTypeContext_getRuleIndex = $this => { - return 237; +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1_apply = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oncipv_Cypher25Parser$AllPrivilegeTargetContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AllPrivilegeTargetContext_getRuleIndex = $this => { - return 238; +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$DatabaseVariableTargetContext = $rt_classWithoutFields(oncipv_Cypher25Parser$AllPrivilegeTargetContext), -oncipv_Cypher25Parser$DatabaseVariableTargetContext_DATABASE = $this => { - return oncip_AstRuleCtx_getToken($this, 61, 0); +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$DatabaseVariableTargetContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2_apply = var$0 => { + oncia_NoOptions$_$callClinit(); + return oncia_NoOptions$_MODULE$; }, -oncipv_Cypher25Parser$DatabaseVariableTargetContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$DatabaseVariableTargetContext(); - oncipv_Cypher25Parser$DatabaseVariableTargetContext__init_(var_1, var_0); - return var_1; +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3 = $rt_classWithoutFields(), +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3_apply = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oncipv_Cypher25Parser$DBMSTargetContext = $rt_classWithoutFields(oncipv_Cypher25Parser$AllPrivilegeTargetContext), -oncipv_Cypher25Parser$DBMSTargetContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0_apply0 = var$0 => { + return oncia_Restrict$_MODULE$; }, -oncipv_Cypher25Parser$DBMSTargetContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$DBMSTargetContext(); - oncipv_Cypher25Parser$DBMSTargetContext__init_(var_1, var_0); - return var_1; -}; -let oncipv_Cypher25Parser$GraphVariableTargetContext = $rt_classWithoutFields(oncipv_Cypher25Parser$AllPrivilegeTargetContext), -oncipv_Cypher25Parser$GraphVariableTargetContext_GRAPH = $this => { - return oncip_AstRuleCtx_getToken($this, 116, 0); +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_10 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1_apply = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oncipv_Cypher25Parser$GraphVariableTargetContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0_apply = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oncipv_Cypher25Parser$GraphVariableTargetContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$GraphVariableTargetContext(); - oncipv_Cypher25Parser$GraphVariableTargetContext__init_(var_1, var_0); - return var_1; +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1_apply0 = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$DefaultTargetContext = $rt_classWithoutFields(oncipv_Cypher25Parser$AllPrivilegeTargetContext), -oncipv_Cypher25Parser$DefaultTargetContext_DATABASE = $this => { - return oncip_AstRuleCtx_getToken($this, 61, 0); +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$DefaultTargetContext_GRAPH = $this => { - return oncip_AstRuleCtx_getToken($this, 116, 0); +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3_apply0 = (var$0, var$1, var$2) => { + return var$1.$concat2(var$2); }, -oncipv_Cypher25Parser$DefaultTargetContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0_apply0 = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$DefaultTargetContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$DefaultTargetContext(); - oncipv_Cypher25Parser$DefaultTargetContext__init_(var_1, var_0); - return var_1; +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_10 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$ActionForDBMSContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ActionForDBMSContext_getRuleIndex = $this => { - return 244; +oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0_apply = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext_getRuleIndex = $this => { - return 240; +oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0_apply = var$0 => { + oncia_NoWait$_$callClinit(); + return oncia_NoWait$_MODULE$; }, -oncipv_Cypher25Parser$GraphScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GraphScopeContext_getRuleIndex = $this => { - return 279; +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0_apply0 = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$GraphQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GraphQualifierContext_symbolicNameString = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$GraphQualifierContext_getRuleIndex = $this => { - return 273; +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2_apply = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$PropertiesResourceContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PropertiesResourceContext_getRuleIndex = $this => { - return 271; +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3_apply0 = var$0 => { + return s_None$_MODULE$; }, -oncipv_Cypher25Parser$LabelsResourceContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelsResourceContext_getRuleIndex = $this => { - return 270; +oncipvaf_LiteralBuilder$ = $rt_classWithoutFields(), +oncipvaf_LiteralBuilder$_MODULE$ = null, +oncipvaf_LiteralBuilder$__clinit_ = () => { + oncipvaf_LiteralBuilder$_MODULE$ = new oncipvaf_LiteralBuilder$; }, -oncipv_Cypher25Parser$PasswordTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PasswordTokenContext_getRuleIndex = $this => { - return 249; +oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_00 = $rt_classWithoutFields(), +oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0_apply = (var$0, var$1) => { + var$1 = var$1; + return s_Tuple2__init_((var$1.$_1()).$name5, var$1.$_2()); }, -oncipv_Cypher25Parser$SettingQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SettingQualifierContext_getRuleIndex = $this => { - return 263; +jnci_AsciiCharset = $rt_classWithoutFields(jnc_Charset), +jnci_Iso8859Charset = $rt_classWithoutFields(jnc_Charset), +jnci_Iso8859Charset_newDecoder = $this => { + let var$1; + var$1 = new jnci_Iso8859Decoder; + jnci_BufferedDecoder__init_(var$1, $this, 1.0, 1.0); + return var$1; }; -function oncipv_Cypher25Parser$ParameterNameContext() { - oncip_AstRuleCtx.call(this); - this.$paramType = null; +function jnci_UTF16Charset() { + let a = this; jnc_Charset.call(a); + a.$bom = 0; + a.$littleEndian = 0; } -let oncipv_Cypher25Parser$ParameterNameContext_getRuleIndex = $this => { - return 132; -}, -oncipv_Cypher25Parser$WhereClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$WhereClauseContext_getRuleIndex = $this => { - return 18; -}, -oncipv_Cypher25Parser$YieldClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$YieldClauseContext_yieldItem = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$YieldItemContext)); +let jnci_UTF16Charset__init_0 = ($this, $canonicalName, $bom, $littleEndian) => { + jnc_Charset__init_($this, $canonicalName, $rt_createArray(jl_String, 0)); + $this.$bom = $bom; + $this.$littleEndian = $littleEndian; }, -oncipv_Cypher25Parser$YieldClauseContext_getRuleIndex = $this => { - return 152; +jnci_UTF16Charset__init_ = (var_0, var_1, var_2) => { + let var_3 = new jnci_UTF16Charset(); + jnci_UTF16Charset__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_160_0() { + let a = this; jl_Object.call(a); + a.$_01172 = null; + a.$_1198 = null; + a.$_264 = null; + a.$_321 = 0; + a.$_47 = 0; +} +let oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_160_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_1198; + var$2 = var$0.$_264; + var$3 = var$0.$_321; + var$4 = var$0.$_47; + if (!$rt_isInstance(var$1, oncia_HorizonClause)) { + var$2 = var$1.$semanticCheck(); + var$5 = new oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_159_0; + var$5.$_0416 = var$1; + var$5.$_1146 = var$3; + var$5.$_253 = var$4; + var$1 = oncias_SemanticCheck_map$(var$2, var$5); + } else { + var$1 = var$1; + var$5 = var$1.$semanticCheck(); + var$6 = new oncia_SingleQuery$checkHorizon$lambda$_88_0; + var$6.$_026 = var$1; + var$6.$_114 = var$2; + var$1 = oncias_SemanticCheck_flatMap$(var$5, var$6); + } + return var$1; +}; +function oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0() { + jl_Object.call(this); + this.$_0232 = null; +} +let oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = var$1; + var$2 = var$0.$_0232; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = var$1.$currentScope.$elem0; + if (!(var$2.$lhs()).$isReturning()) { + oncias_Scope$_$callClinit(); + var$4 = oncias_Scope$_empty(oncias_Scope$_MODULE$); + } else + var$4 = (var$2.$lhs()).$finalScope(var$3.$children2.$head()); + if (!(var$2.$rhs0()).$isReturning()) { + oncias_Scope$_$callClinit(); + var$5 = oncias_Scope$_empty(oncias_Scope$_MODULE$); + } else + var$5 = (var$2.$rhs0()).$finalScope(var$3.$children2.$last()); + a: { + b: { + c: { + var$4 = oncias_Scope_symbolNames(var$4); + var$5 = oncias_Scope_symbolNames(var$5); + if (var$4 === null) { + if (var$5 === null) + break c; + break b; + } + if (!sc_Set_equals$(var$4, var$5)) + break b; + } + s_package$_$callClinit(); + var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + break a; + } + var$4 = new sci_$colon$colon; + oncias_SemanticError$_$callClinit(); + var$2 = var$2.$position(); + var$6 = var$2.$offset(); + var$7 = var$2.$line(); + var$8 = var$2.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + sci_$colon$colon__init_0(var$4, oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$6, var$7, var$8), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N39), + var$6, var$7, var$8)))), $rt_s(5883), var$2), sci_Nil$_MODULE$); + } + return oncias_SemanticCheckResult__init_(var$1, var$4); +}; +function oncia_AdministrationCommand$semanticCheck$lambda$_13_0() { + jl_Object.call(this); + this.$_0344 = null; +} +let oncia_AdministrationCommand$semanticCheck$lambda$_13_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0344; + return var$1.$error4($rt_s(5884), var$1.$position()); +}; +function oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0() { + jl_Object.call(this); + this.$_0491 = null; +} +let oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0_apply = (var$0, var$1, var$2) => { + return var$1.$chain(var$0.$_0491.$apply2(var$2)); }, -oncipv_Cypher25Parser$ComposableShowCommandClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ComposableShowCommandClausesContext_getRuleIndex = $this => { - return 156; +oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0 = $rt_classWithoutFields(), +oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0_apply = (var$0, var$1) => { + return oncias_SymbolUse_positionsAndUniqueIdString(var$1); +}; +function oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer16 = null; + a.$ruleCallStack$1 = null; +} +let oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3_applyOrElse = ($this, $x, $default) => { + let var$3, var$4; + a: { + $x = $x; + if (jl_Object_equals(oncip_CypherErrorStrategy$ExpressionRule$_MODULE$, $x)) { + $x = $rt_s(5885); + break a; + } + if (jl_Object_equals(oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$, $x)) { + $x = $rt_s(5886); + break a; + } + if (jl_Object_equals(oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$, $x)) { + $x = $rt_s(5887); + break a; + } + if (jl_Object_equals(oncip_CypherErrorStrategy$ParameterRule$_MODULE$, $x)) { + $x = $rt_s(5888); + break a; + } + if (jl_Object_equals(oncip_CypherErrorStrategy$VariableRule$_MODULE$, $x)) { + $x = $rt_s(5889); + break a; + } + if (!jl_Object_equals(oncip_CypherErrorStrategy$IdentifierRule$_MODULE$, $x)) { + if (jl_Object_equals(oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$, $x)) { + $x = $rt_s(5890); + break a; + } + if (!jl_Object_equals(oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$, $x)) { + $x = s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x); + break a; + } + $x = $rt_s(5891); + break a; + } + $default = $this.$$outer16; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_wrapArray(oncip_CypherErrorStrategy$CypherRuleGroup, [oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$, oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$]); + if (oncip_CypherErrorVocabulary_org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1($default, sr_ScalaRunTime$_wrapRefArray(var$3, var$4), $this.$ruleCallStack$1)) { + $x = $rt_s(5892); + break a; + } + $x = $this.$$outer16; + $default = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_wrapArray(oncip_CypherErrorStrategy$CypherRuleGroup, [oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$, oncip_CypherErrorStrategy$NodePatternRule$_MODULE$]); + if (oncip_CypherErrorVocabulary_org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1($x, sr_ScalaRunTime$_wrapRefArray($default, var$4), $this.$ruleCallStack$1)) { + $x = $rt_s(5893); + break a; + } + $x = $this.$$outer16; + $default = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncip_CypherErrorStrategy$CypherRuleGroup, 1); + var$4.data[0] = oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$; + if (!oncip_CypherErrorVocabulary_org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1($x, sr_ScalaRunTime$_wrapRefArray($default, var$4), $this.$ruleCallStack$1)) { + $x = $rt_s(4591); + break a; + } + $x = $rt_s(5894); + } + return $x; +}; +function oncip_CypherErrorVocabulary$displayName$lambda$_5_0() { + jl_Object.call(this); + this.$_0513 = null; +} +let oncip_CypherErrorVocabulary$displayName$lambda$_5_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0513; + s_Predef$_$callClinit(); + var$3 = oncip_CypherErrorVocabulary_getDisplayName(var$2, sr_BoxesRunTime_unboxToInt(var$1)); + var$1 = oncip_CypherErrorVocabulary_getSymbolicName(var$2, sr_BoxesRunTime_unboxToInt(var$1)); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 39); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 39); + var$1 = jl_AbstractStringBuilder_toString(var$2); + if (var$3 !== null) { + if (!jl_String_equals(var$3, var$1)) + break b; + else + break c; + } + if (var$1 !== null) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return jl_Boolean_valueOf(var$4); +}; +function oncip_CypherErrorVocabulary$displayName$lambda$_5_1() { + jl_Object.call(this); + this.$_01036 = null; +} +let oncip_CypherErrorVocabulary$displayName$lambda$_5_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_01036; + s_Predef$_$callClinit(); + return oncip_CypherErrorVocabulary_getSymbolicName(var$2, sr_BoxesRunTime_unboxToInt(var$1)); }, -oncipv_Cypher25Parser$StringsOrExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StringsOrExpressionContext_getRuleIndex = $this => { - return 174; +onciu_UnknownSize$ = $rt_classWithoutFields(), +onciu_UnknownSize$_MODULE$ = null, +onciu_UnknownSize$_$callClinit = () => { + onciu_UnknownSize$_$callClinit = $rt_eraseClinit(onciu_UnknownSize$); + onciu_UnknownSize$__clinit_(); }, -oncipv_Cypher25Parser$ReturnBodyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ReturnBodyContext_getRuleIndex = $this => { - return 9; +onciu_UnknownSize$__clinit_ = () => { + let var$1; + var$1 = new onciu_UnknownSize$; + onciu_UnknownSize$_$callClinit(); + onciu_UnknownSize$_MODULE$ = var$1; }, -oncipv_Cypher25Parser$PatternListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PatternListContext_getRuleIndex = $this => { - return 46; +onciu_UnknownSize$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$InsertPatternListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$InsertPatternListContext_getRuleIndex = $this => { - return 47; +onciu_UnknownSize$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$SetItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SetItemContext_getRuleIndex = $this => { - return 23; +onciu_UnknownSize$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$SetPropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), -oncipv_Cypher25Parser$SetPropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +onciu_UnknownSize$_hashCode = $this => { + return (-1007455413); }, -oncipv_Cypher25Parser$SetPropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$SetPropContext(); - oncipv_Cypher25Parser$SetPropContext__init_(var_1, var_0); - return var_1; +onciu_UnknownSize$_toString = $this => { + return $rt_s(5895); +}; +function oncias_SemanticCheck$$setState$lambda$_7_0() { + jl_Object.call(this); + this.$_0695 = null; +} +let oncias_SemanticCheck$$setState$lambda$_7_0_apply = (var$0, var$1) => { + var$1 = var$0.$_0695; + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); }, -oncipv_Cypher25Parser$SetDynamicPropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), -oncipv_Cypher25Parser$SetDynamicPropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0 = $rt_classWithoutFields(), +oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0_apply = var$0 => { + oncias_OptionSemanticChecking$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}; +function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$symbolicNamePredicate$1 = null; + a.$context$12 = null; +} +let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1_applyOrElse = ($this, $x1, $default) => { + let var$3; + if ($x1 instanceof oncie_DynamicRelTypeExpression) + return new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0; + if ($x1 instanceof oncie_DynamicLabelExpression) + return new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1; + if ($x1 instanceof oncie_DynamicLabelOrRelTypeExpression) + return new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2; + if ($rt_isInstance($x1, oncie_SymbolicName)) { + var$3 = $x1; + if (!sr_BoxesRunTime_unboxToBoolean($this.$symbolicNamePredicate$1.$apply2(var$3))) { + $x1 = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3; + $x1.$_0861 = $this; + $x1.$_1290 = var$3; + return $x1; + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); }, -oncipv_Cypher25Parser$SetDynamicPropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$SetDynamicPropContext(); - oncipv_Cypher25Parser$SetDynamicPropContext__init_(var_1, var_0); - return var_1; +oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_0 = $rt_classWithoutFields(), +oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ReturnItems$_$callClinit(); + return var$1.$expression0(); }, -oncipv_Cypher25Parser$SetPropsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), -oncipv_Cypher25Parser$SetPropsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_ReturnItems$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_ReturnItems$$anonfun$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if (!(oncie_Expression_containsAggregate($x) && !$rt_isInstance($x, oncia_FullSubqueryExpression))) + $x = $default.$apply2($x); + return $x; }, -oncipv_Cypher25Parser$SetPropsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$SetPropsContext(); - oncipv_Cypher25Parser$SetPropsContext__init_(var_1, var_0); - return var_1; +oncia_ReturnItems$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_ReturnItems$$anonfun$2_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !($x instanceof oncie_LogicalVariable) ? $default.$apply2($x) : $x; }, -oncipv_Cypher25Parser$AddPropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), -oncipv_Cypher25Parser$AddPropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_ReturnItems$$anonfun$3 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_ReturnItems$$anonfun$3_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5; + a: { + $x = $x; + if ($x instanceof oncie_LogicalProperty) { + var$3 = $x; + var$4 = oncie_LogicalProperty$_unapply(oncie_LogicalProperty$_MODULE$, var$3); + if (!s_Option_isEmpty(var$4)) { + var$4 = var$4.$value5.$_1(); + if (var$4 instanceof oncie_LogicalVariable) { + var$5 = var$4; + if (!s_Option_isEmpty(s_Some__init_(var$5.$name4))) + break a; + } + } + } + var$3 = $default.$apply2($x); + } + return var$3; +}; +function oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_1() { + let a = this; jl_Object.call(a); + a.$_0365 = null; + a.$_1129 = null; +} +let oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0365; + var$3 = var$0.$_1129; + oncia_ReturnItems$_$callClinit(); + var$4 = onciu_Foldable_folder$(var$1); + var$1 = new oncie_Expression$TreeAcc; + s_package$_$callClinit(); + oncie_Expression$TreeAcc__init_(var$1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), oncie_Expression$TreeAcc$_apply$default$2(oncie_Expression$TreeAcc$_MODULE$)); + var$5 = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1; + var$5.$variablesUsedForGrouping$1 = var$2; + var$5.$nonNestedPropertiesUsedForGrouping$1 = var$3; + return (onciu_Foldable$Folder_treeFold(var$4, var$1, var$5)).$data1; }, -oncipv_Cypher25Parser$AddPropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$AddPropContext(); - oncipv_Cypher25Parser$AddPropContext__init_(var_1, var_0); - return var_1; +oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_2 = $rt_classWithoutFields(), +oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_2_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ReturnItems$_$callClinit(); + return var$1.$asCanonicalStringVal(); }, -oncipv_Cypher25Parser$SetLabelsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), -oncipv_Cypher25Parser$SetLabelsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_UnaliasedReturnItem$_init_$lambda$_31_0 = $rt_classWithoutFields(), +oncia_UnaliasedReturnItem$_init_$lambda$_31_0_apply = (var$0, var$1) => { + return var$1.$name4; +}; +function oncia_UnaliasedReturnItem$_init_$lambda$_31_1() { + jl_Object.call(this); + this.$_039 = null; +} +let oncia_UnaliasedReturnItem$_init_$lambda$_31_1_apply = var$0 => { + return jl_String_trim(var$0.$_039.$inputText1); }, -oncipv_Cypher25Parser$SetLabelsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$SetLabelsContext(); - oncipv_Cypher25Parser$SetLabelsContext__init_(var_1, var_0); - return var_1; +oncia_UsingIndexHint$UsingIndexHintSpec = $rt_classWithoutFields(0), +oncia_UsingIndexHint$SeekOrScan$ = $rt_classWithoutFields(), +oncia_UsingIndexHint$SeekOrScan$_MODULE$ = null, +oncia_UsingIndexHint$SeekOrScan$__clinit_ = () => { + oncia_UsingIndexHint$SeekOrScan$_MODULE$ = new oncia_UsingIndexHint$SeekOrScan$; }, -oncipv_Cypher25Parser$SetLabelsIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SetItemContext), -oncipv_Cypher25Parser$SetLabelsIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_UsingIndexHint$SeekOrScan$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$SetLabelsIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$SetLabelsIsContext(); - oncipv_Cypher25Parser$SetLabelsIsContext__init_(var_1, var_0); - return var_1; +oncia_UsingIndexHint$SeekOrScan$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$RemoveItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RemoveItemContext_getRuleIndex = $this => { - return 25; +oncia_UsingIndexHint$SeekOrScan$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$RemovePropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$RemoveItemContext), -oncipv_Cypher25Parser$RemovePropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_UsingIndexHint$SeekOrScan$_hashCode = $this => { + return 1478327224; }, -oncipv_Cypher25Parser$RemovePropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$RemovePropContext(); - oncipv_Cypher25Parser$RemovePropContext__init_(var_1, var_0); - return var_1; +oncia_UsingIndexHint$SeekOrScan$_toString = $this => { + return $rt_s(5896); }, -oncipv_Cypher25Parser$RemoveDynamicPropContext = $rt_classWithoutFields(oncipv_Cypher25Parser$RemoveItemContext), -oncipv_Cypher25Parser$RemoveDynamicPropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_UsingIndexHint$SeekOnly$ = $rt_classWithoutFields(), +oncia_UsingIndexHint$SeekOnly$_MODULE$ = null, +oncia_UsingIndexHint$SeekOnly$__clinit_ = () => { + oncia_UsingIndexHint$SeekOnly$_MODULE$ = new oncia_UsingIndexHint$SeekOnly$; }, -oncipv_Cypher25Parser$RemoveDynamicPropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$RemoveDynamicPropContext(); - oncipv_Cypher25Parser$RemoveDynamicPropContext__init_(var_1, var_0); - return var_1; +oncia_UsingIndexHint$SeekOnly$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$RemoveLabelsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$RemoveItemContext), -oncipv_Cypher25Parser$RemoveLabelsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_UsingIndexHint$SeekOnly$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$RemoveLabelsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$RemoveLabelsContext(); - oncipv_Cypher25Parser$RemoveLabelsContext__init_(var_1, var_0); - return var_1; +oncia_UsingIndexHint$SeekOnly$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$RemoveLabelsIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$RemoveItemContext), -oncipv_Cypher25Parser$RemoveLabelsIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_UsingIndexHint$SeekOnly$_hashCode = $this => { + return 1060751972; }, -oncipv_Cypher25Parser$RemoveLabelsIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$RemoveLabelsIsContext(); - oncipv_Cypher25Parser$RemoveLabelsIsContext__init_(var_1, var_0); - return var_1; +oncia_UsingIndexHint$SeekOnly$_toString = $this => { + return $rt_s(5897); }; -let oncipv_Cypher25Parser$MatchModeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$MatchModeContext_getRuleIndex = $this => { - return 28; -}, -oncipv_Cypher25Parser$HintContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$HintContext_nonEmptyNameList = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$NonEmptyNameListContext), 0); -}, -oncipv_Cypher25Parser$HintContext_variable = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); -}, -oncipv_Cypher25Parser$HintContext_labelOrRelType = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$LabelOrRelTypeContext), 0); -}, -oncipv_Cypher25Parser$HintContext_LPAREN = $this => { - return oncip_AstRuleCtx_getToken($this, 151, 0); -}, -oncipv_Cypher25Parser$HintContext_getRuleIndex = $this => { - return 29; -}, -oncipv_Cypher25Parser$MergeActionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$MergeActionContext_getRuleIndex = $this => { - return 31; -}, -oncipv_Cypher25Parser$PatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PatternContext_getRuleIndex = $this => { - return 48; -}, -oncipv_Cypher25Parser$ProcedureNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ProcedureNameContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); -}, -oncipv_Cypher25Parser$ProcedureNameContext_getRuleIndex = $this => { - return 34; +function oncia_UsingIndexHint() { + let a = this; jl_Object.call(a); + a.$variable13 = null; + a.$labelOrRelType2 = null; + a.$properties7 = null; + a.$spec = null; + a.$indexType3 = null; + a.$position101 = null; +} +let oncia_UsingIndexHint_semanticCheck = $this => { + return oncia_LeafPlanHint_semanticCheck$($this); }, -oncipv_Cypher25Parser$ProcedureArgumentContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ProcedureArgumentContext_expression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); +oncia_UsingIndexHint_expectType0 = ($this, $possibleTypes, $expression) => { + return oncias_SemanticAnalysisTooling_expectType$($this, $possibleTypes, $expression); }, -oncipv_Cypher25Parser$ProcedureArgumentContext_getRuleIndex = $this => { - return 35; +oncia_UsingIndexHint_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); }, -oncipv_Cypher25Parser$ProcedureResultItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ProcedureResultItemContext_variable = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); +oncia_UsingIndexHint_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); }, -oncipv_Cypher25Parser$ProcedureResultItemContext_getRuleIndex = $this => { - return 36; +oncia_UsingIndexHint_ensureDefined = ($this, $v) => { + return oncias_SemanticAnalysisTooling_ensureDefined$($this, $v); }, -oncipv_Cypher25Parser$SubqueryScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SubqueryScopeContext_getRuleIndex = $this => { - return 40; +oncia_UsingIndexHint_variable = $this => { + return $this.$variable13; }, -oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext)); +oncia_UsingIndexHint_position = $this => { + return $this.$position101; }, -oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext)); +oncia_UsingIndexHint_productPrefix = $this => { + return $rt_s(5898); }, -oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext)); +oncia_UsingIndexHint_productArity = $this => { + return 5; }, -oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_getRuleIndex = $this => { - return 41; +oncia_UsingIndexHint_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable13; + case 1: + return $this.$labelOrRelType2; + case 2: + return $this.$properties7; + case 3: + return $this.$spec; + case 4: + return $this.$indexType3; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$LimitContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LimitContext_getRuleIndex = $this => { - return 17; +oncia_UsingIndexHint_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$SkipContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SkipContext_getRuleIndex = $this => { - return 16; +oncia_UsingIndexHint_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$OrderByContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$OrderByContext_getRuleIndex = $this => { - return 15; +oncia_UsingIndexHint_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$FunctionArgumentContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$FunctionArgumentContext_expression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); +oncia_UsingIndexHint_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UsingIndexHint) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable13; + var$3 = $x$1.$variable13; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$labelOrRelType2; + var$3 = $x$1.$labelOrRelType2; + if (var$2 !== null) { + if (!oncie_LabelOrRelTypeName_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$properties7; + var$3 = $x$1.$properties7; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$spec; + var$3 = $x$1.$spec; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$3 = $this.$indexType3; + $x$1 = $x$1.$indexType3; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else + break g; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_UsingIndexHint)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$FunctionArgumentContext_getRuleIndex = $this => { - return 135; +oncia_UsingIndexHint_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher5Parser$FunctionNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$FunctionNameContext_getRuleIndex = $this => { - return 136; +oncia_UsingIndexHint__init_ = ($this, $variable, $labelOrRelType, $properties, $spec, $indexType, $position) => { + $this.$variable13 = $variable; + $this.$labelOrRelType2 = $labelOrRelType; + $this.$properties7 = $properties; + $this.$spec = $spec; + $this.$indexType3 = $indexType; + $this.$position101 = $position; }, -oncipv_Cypher5Parser$ExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ExpressionContext_getRuleIndex = $this => { - return 88; +oncia_UsingIndexHint__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_UsingIndexHint(); + oncia_UsingIndexHint__init_(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; }, -oncipv_Cypher5Parser$EscapedSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$EscapedSymbolicNameStringContext_getRuleIndex = $this => { - return 328; +oncipvaf_Cypher5AstUtil$ = $rt_classWithoutFields(), +oncipvaf_Cypher5AstUtil$_MODULE$ = null, +oncipvaf_Cypher5AstUtil$__clinit_ = () => { + oncipvaf_Cypher5AstUtil$_MODULE$ = new oncipvaf_Cypher5AstUtil$; }, -oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext_getRuleIndex = $this => { - return 329; +onciu_NonEmptyList$ = $rt_classWithoutFields(), +onciu_NonEmptyList$_MODULE$ = null, +onciu_NonEmptyList$_$callClinit = () => { + onciu_NonEmptyList$_$callClinit = $rt_eraseClinit(onciu_NonEmptyList$); + onciu_NonEmptyList$__clinit_(); }, -oncipv_Cypher5Parser$StringListLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StringListLiteralContext_getRuleIndex = $this => { - return 320; +onciu_NonEmptyList$__clinit_ = () => { + let var$1; + var$1 = new onciu_NonEmptyList$; + onciu_NonEmptyList$_$callClinit(); + onciu_NonEmptyList$_MODULE$ = var$1; }, -oncipv_Cypher5Parser$UserAuthAttributeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UserAuthAttributeContext_ID = $this => { - return oncip_AstRuleCtx_getToken($this, 127, 0); +onciu_NonEmptyList$_from = ($this, $input) => { + let var$2, var$3; + $input = $input.$iterator0(); + if ($input.$isEmpty()) + var$2 = s_None$_MODULE$; + else { + var$2 = new s_Some; + onciu_NonEmptyList$_$callClinit(); + var$3 = onciu_Last__init_($input.$next()); + while ($input.$hasNext()) { + var$3 = onciu_Fby__init_($input.$next(), var$3); + } + s_Some__init_0(var$2, var$3); + } + return s_Option_getOrElse(s_Option_map(var$2, new onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0), new onciu_NonEmptyList$$from$lambda$_3_0); }, -oncipv_Cypher5Parser$UserAuthAttributeContext_passwordOnly = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PasswordOnlyContext), 0); +oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1_applyOrElse0 = ($this, $x, $default) => { + let var$3, var$4; + $x = $x; + if (!($x instanceof oncipv_Cypher5Parser$SymbolicNameStringContext)) + $x = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); + else { + var$3 = $x; + $x = new oncie_Variable; + var$4 = var$3.$ast0; + oncipau_Util$_$callClinit(); + $default = oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3); + oncie_Variable$_$callClinit(); + oncie_Variable__init_($x, var$4, $default, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + } + return $x; }; -let oncipv_Cypher5Parser$UserAuthAttributeContext_passwordChangeRequired = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$PasswordChangeRequiredContext), 0); -}, -oncipv_Cypher5Parser$UserAuthAttributeContext_getRuleIndex = $this => { - return 232; -}, -oncipv_Cypher5Parser$MapContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$MapContext_getRuleIndex = $this => { - return 326; -}, -oncipv_Cypher5Parser$FulltextNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$FulltextNodePatternContext_getRuleIndex = $this => { - return 189; +function oncia_LoadCSV() { + let a = this; jl_Object.call(a); + a.$withHeaders = 0; + a.$urlString = null; + a.$variable17 = null; + a.$fieldTerminator = null; + a.$position275 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier21 = null; + a.$SetExtractor$module4 = null; +} +let oncia_LoadCSV_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -oncipv_Cypher5Parser$FulltextRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$FulltextRelPatternContext_getRuleIndex = $this => { - return 190; +oncia_LoadCSV_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncipv_Cypher5Parser$EnclosedPropertyListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$EnclosedPropertyListContext_property = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$PropertyContext)); +oncia_LoadCSV_shouldRunQPPChecks = $this => { + return 1; }, -oncipv_Cypher5Parser$EnclosedPropertyListContext_getRuleIndex = $this => { - return 196; +oncia_LoadCSV_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); }, -oncipv_Cypher5Parser$LookupIndexNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LookupIndexNodePatternContext_getRuleIndex = $this => { - return 192; +oncia_LoadCSV_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); }, -oncipv_Cypher5Parser$LookupIndexRelPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LookupIndexRelPatternContext_getRuleIndex = $this => { - return 193; +oncia_LoadCSV_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipv_Cypher5Parser$VariableContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$VariableContext_getRuleIndex = $this => { - return 138; +oncia_LoadCSV_asCanonicalStringVal = $this => { + return $this.$toString(); }, -oncipv_Cypher5Parser$LeftArrowContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LeftArrowContext_getRuleIndex = $this => { - return 73; +oncia_LoadCSV_foldedOver = $this => { + return $this; }, -oncipv_Cypher5Parser$ArrowLineContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ArrowLineContext_getRuleIndex = $this => { - return 74; +oncia_LoadCSV_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipv_Cypher5Parser$RelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RelTypeContext_getRuleIndex = $this => { - return 68; +oncia_LoadCSV_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier21; }, -oncipv_Cypher5Parser$RightArrowContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RightArrowContext_getRuleIndex = $this => { - return 75; +oncia_LoadCSV_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module4 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module4 !== null) + break a; + $this.$SetExtractor$module4 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + } + return $this.$SetExtractor$module4; }, -oncipv_Cypher5Parser$TypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$TypeContext_getRuleIndex = $this => { - return 140; +oncia_LoadCSV_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier21 = $x$1; }, -oncipv_Cypher5Parser$PrimaryTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PrimaryTokenContext_getRuleIndex = $this => { - return 289; +oncia_LoadCSV_position = $this => { + return $this.$position275; }, -oncipv_Cypher5Parser$SecondaryTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SecondaryTokenContext_getRuleIndex = $this => { - return 291; +oncia_LoadCSV_name = $this => { + return $rt_s(660); }, -oncipv_Cypher5Parser$DatabaseScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DatabaseScopeContext_DEFAULT = $this => { - return oncip_AstRuleCtx_getToken($this, 71, 0); +oncia_LoadCSV_clauseSpecificSemanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5; + a: { + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$urlString), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_70_0, $this.$urlString)); + var$2 = $this.$fieldTerminator; + if (var$2 instanceof s_Some) { + var$2 = var$2.$value5; + if (var$2.$value8.$nativeString.length != 1) { + oncias_SemanticError$_$callClinit(); + var$3 = var$2.$position18; + ong_GqlStatusInfoCodes_$callClinit(); + var$2 = oncias_SemanticAnalysisTooling_error$1($this, oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$3.$offset1, var$3.$line2, var$3.$column1), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I05), + var$3.$offset1, var$3.$line2, var$3.$column1)))), $rt_s(5899), var$3)); + break a; + } + } + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + var$1 = oncias_SemanticCheck_chain$(var$1, var$2); + if ($this.$withHeaders) { + oncius_package$_$callClinit(); + var$2 = oncius_package$_CTMap(oncius_package$_MODULE$); + } else { + oncius_package$_$callClinit(); + var$2 = oncius_package$_MODULE$; + var$2 = oncius_package$_CTList(var$2, oncius_package$_CTString(var$2)); + } + var$4 = oncias_package$_MODULE$; + var$5 = $this.$variable17; + oncius_package$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1, oncias_package$_liftSemanticEitherFunc(var$4, oncias_SemanticAnalysisTooling_declareVariable$($this, var$5, var$2.$invariant()))); }, -oncipv_Cypher5Parser$DatabaseScopeContext_getRuleIndex = $this => { - return 284; +oncia_LoadCSV_productPrefix = $this => { + return $rt_s(5900); }, -oncipv_Cypher5Parser$UserQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UserQualifierContext_userNames = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$UserNamesContext), 0); +oncia_LoadCSV_productArity = $this => { + return 4; }, -oncipv_Cypher5Parser$UserQualifierContext_getRuleIndex = $this => { - return 266; +oncia_LoadCSV_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$withHeaders); + case 1: + return $this.$urlString; + case 2: + return $this.$variable17; + case 3: + return $this.$fieldTerminator; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ConstraintTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ConstraintTokenContext_getRuleIndex = $this => { - return 264; +oncia_LoadCSV_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$IndexTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$IndexTokenContext_getRuleIndex = $this => { - return 263; +oncia_LoadCSV_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5900))), !$this.$withHeaders ? 1237 : 1231), sr_Statics_anyHash($this.$urlString)), sr_Statics_anyHash($this.$variable17)), sr_Statics_anyHash($this.$fieldTerminator)), 4); }, -oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_BOOSTED = $this => { - return oncip_AstRuleCtx_getToken($this, 34, 0); +oncia_LoadCSV_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_getRuleIndex = $this => { - return 260; +oncia_LoadCSV_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_LoadCSV) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$withHeaders != $x$1.$withHeaders) + break b; + c: { + var$2 = $this.$urlString; + var$3 = $x$1.$urlString; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$variable17; + var$3 = $x$1.$variable17; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$fieldTerminator; + $x$1 = $x$1.$fieldTerminator; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_LoadCSV)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$AllPrivilegeTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AllPrivilegeTypeContext_getRuleIndex = $this => { - return 243; +oncia_LoadCSV_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipv_Cypher5Parser$AllPrivilegeTargetContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AllPrivilegeTargetContext_getRuleIndex = $this => { - return 244; +oncia_LoadCSV__init_0 = ($this, $withHeaders, $urlString, $variable, $fieldTerminator, $position) => { + $this.$withHeaders = $withHeaders; + $this.$urlString = $urlString; + $this.$variable17 = $variable; + $this.$fieldTerminator = $fieldTerminator; + $this.$position275 = $position; + oncia_Clause_$init$($this); }, -oncipv_Cypher5Parser$DatabaseVariableTargetContext = $rt_classWithoutFields(oncipv_Cypher5Parser$AllPrivilegeTargetContext), -oncipv_Cypher5Parser$DatabaseVariableTargetContext_DATABASE = $this => { - return oncip_AstRuleCtx_getToken($this, 65, 0); +oncia_LoadCSV__init_ = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oncia_LoadCSV(); + oncia_LoadCSV__init_0(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; }; -let oncipv_Cypher5Parser$DatabaseVariableTargetContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); -}, -oncipv_Cypher5Parser$DatabaseVariableTargetContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$DatabaseVariableTargetContext(); - oncipv_Cypher5Parser$DatabaseVariableTargetContext__init_(var_1, var_0); - return var_1; -}, -oncipv_Cypher5Parser$DBMSTargetContext = $rt_classWithoutFields(oncipv_Cypher5Parser$AllPrivilegeTargetContext), -oncipv_Cypher5Parser$DBMSTargetContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +function oncie_QuantifiedPath$$apply$lambda$_1_0() { + jl_Object.call(this); + this.$_0703 = null; +} +let oncie_QuantifiedPath$$apply$lambda$_1_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0703; + return oncie_VariableGrouping__init_(oncie_Variable_copyId(var$1), oncie_Variable_withPosition(var$1, var$2), var$2); }, -oncipv_Cypher5Parser$DBMSTargetContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$DBMSTargetContext(); - oncipv_Cypher5Parser$DBMSTargetContext__init_(var_1, var_0); - return var_1; +oncie_SemanticDirection = $rt_classWithoutFields(0), +oncie_SemanticDirection$OUTGOING$ = $rt_classWithoutFields(), +oncie_SemanticDirection$OUTGOING$_MODULE$ = null, +oncie_SemanticDirection$OUTGOING$_$callClinit = () => { + oncie_SemanticDirection$OUTGOING$_$callClinit = $rt_eraseClinit(oncie_SemanticDirection$OUTGOING$); + oncie_SemanticDirection$OUTGOING$__clinit_(); }, -oncipv_Cypher5Parser$DefaultTargetContext = $rt_classWithoutFields(oncipv_Cypher5Parser$AllPrivilegeTargetContext), -oncipv_Cypher5Parser$DefaultTargetContext_DEFAULT = $this => { - return oncip_AstRuleCtx_getToken($this, 71, 0); +oncie_SemanticDirection$OUTGOING$__clinit_ = () => { + let var$1; + var$1 = new oncie_SemanticDirection$OUTGOING$; + oncie_SemanticDirection$OUTGOING$_$callClinit(); + oncie_SemanticDirection$OUTGOING$_MODULE$ = var$1; }, -oncipv_Cypher5Parser$DefaultTargetContext_HOME = $this => { - return oncip_AstRuleCtx_getToken($this, 126, 0); +oncie_SemanticDirection$OUTGOING$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$DefaultTargetContext_DATABASE = $this => { - return oncip_AstRuleCtx_getToken($this, 65, 0); +oncie_SemanticDirection$OUTGOING$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$DefaultTargetContext_GRAPH = $this => { - return oncip_AstRuleCtx_getToken($this, 120, 0); +oncie_SemanticDirection$OUTGOING$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DefaultTargetContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_SemanticDirection$OUTGOING$_hashCode = $this => { + return 844309356; }, -oncipv_Cypher5Parser$DefaultTargetContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$DefaultTargetContext(); - oncipv_Cypher5Parser$DefaultTargetContext__init_(var_1, var_0); - return var_1; +oncie_SemanticDirection$OUTGOING$_toString = $this => { + return $rt_s(5901); }, -oncipv_Cypher5Parser$GraphVariableTargetContext = $rt_classWithoutFields(oncipv_Cypher5Parser$AllPrivilegeTargetContext), -oncipv_Cypher5Parser$GraphVariableTargetContext_GRAPH = $this => { - return oncip_AstRuleCtx_getToken($this, 120, 0); +oncie_SemanticDirection$BOTH$ = $rt_classWithoutFields(), +oncie_SemanticDirection$BOTH$_MODULE$ = null, +oncie_SemanticDirection$BOTH$_$callClinit = () => { + oncie_SemanticDirection$BOTH$_$callClinit = $rt_eraseClinit(oncie_SemanticDirection$BOTH$); + oncie_SemanticDirection$BOTH$__clinit_(); }, -oncipv_Cypher5Parser$GraphVariableTargetContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_SemanticDirection$BOTH$__clinit_ = () => { + let var$1; + var$1 = new oncie_SemanticDirection$BOTH$; + oncie_SemanticDirection$BOTH$_$callClinit(); + oncie_SemanticDirection$BOTH$_MODULE$ = var$1; }, -oncipv_Cypher5Parser$GraphVariableTargetContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$GraphVariableTargetContext(); - oncipv_Cypher5Parser$GraphVariableTargetContext__init_(var_1, var_0); - return var_1; +oncie_SemanticDirection$BOTH$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$ActionForDBMSContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ActionForDBMSContext_getRuleIndex = $this => { - return 250; +oncie_SemanticDirection$BOTH$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext_getRuleIndex = $this => { - return 246; +oncie_SemanticDirection$BOTH$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$GraphScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GraphScopeContext_DEFAULT = $this => { - return oncip_AstRuleCtx_getToken($this, 71, 0); +oncie_SemanticDirection$BOTH$_hashCode = $this => { + return 2044801; }, -oncipv_Cypher5Parser$GraphScopeContext_getRuleIndex = $this => { - return 285; +oncie_SemanticDirection$BOTH$_toString = $this => { + return $rt_s(4292); }, -oncipv_Cypher5Parser$GraphQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GraphQualifierContext_symbolicNameString = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); +oncie_SemanticDirection$INCOMING$ = $rt_classWithoutFields(), +oncie_SemanticDirection$INCOMING$_MODULE$ = null, +oncie_SemanticDirection$INCOMING$_$callClinit = () => { + oncie_SemanticDirection$INCOMING$_$callClinit = $rt_eraseClinit(oncie_SemanticDirection$INCOMING$); + oncie_SemanticDirection$INCOMING$__clinit_(); }, -oncipv_Cypher5Parser$GraphQualifierContext_getRuleIndex = $this => { - return 279; +oncie_SemanticDirection$INCOMING$__clinit_ = () => { + let var$1; + var$1 = new oncie_SemanticDirection$INCOMING$; + oncie_SemanticDirection$INCOMING$_$callClinit(); + oncie_SemanticDirection$INCOMING$_MODULE$ = var$1; }, -oncipv_Cypher5Parser$PropertiesResourceContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PropertiesResourceContext_getRuleIndex = $this => { - return 277; +oncie_SemanticDirection$INCOMING$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$LabelsResourceContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelsResourceContext_getRuleIndex = $this => { - return 276; +oncie_SemanticDirection$INCOMING$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$PasswordTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PasswordTokenContext_getRuleIndex = $this => { - return 255; +oncie_SemanticDirection$INCOMING$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SettingQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SettingQualifierContext_getRuleIndex = $this => { - return 269; +oncie_SemanticDirection$INCOMING$_hashCode = $this => { + return 875423782; }, -oncipv_Cypher5Parser$PropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PropertyContext_getRuleIndex = $this => { - return 102; +oncie_SemanticDirection$INCOMING$_toString = $this => { + return $rt_s(5902); }; -function oncipv_Cypher5Parser$ParameterNameContext() { - oncip_AstRuleCtx.call(this); - this.$paramType0 = null; +function scc_AsScalaExtensions$CollectionHasAsScala() { + let a = this; jl_Object.call(a); + a.$c2 = null; + a.$$outer72 = null; } -let oncipv_Cypher5Parser$ParameterNameContext_getRuleIndex = $this => { - return 133; -}, -oncipv_Cypher5Parser$WhereClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$WhereClauseContext_getRuleIndex = $this => { - return 19; -}, -oncipv_Cypher5Parser$YieldClauseContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$YieldClauseContext_yieldItem = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$YieldItemContext)); -}, -oncipv_Cypher5Parser$YieldClauseContext_getRuleIndex = $this => { - return 153; -}, -oncipv_Cypher5Parser$ShowBriefAndYieldContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShowBriefAndYieldContext_BRIEF = $this => { - return oncip_AstRuleCtx_getToken($this, 37, 0); -}, -oncipv_Cypher5Parser$ShowBriefAndYieldContext_VERBOSE = $this => { - return oncip_AstRuleCtx_getToken($this, 297, 0); -}, -oncipv_Cypher5Parser$ShowBriefAndYieldContext_getRuleIndex = $this => { - return 158; -}, -oncipv_Cypher5Parser$ConstraintExistTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ConstraintExistTypeContext_getRuleIndex = $this => { - return 164; -}, -oncipv_Cypher5Parser$ComposableShowCommandClausesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ComposableShowCommandClausesContext_getRuleIndex = $this => { - return 157; -}, -oncipv_Cypher5Parser$StringsOrExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StringsOrExpressionContext_getRuleIndex = $this => { - return 179; -}, -oncipv_Cypher5Parser$ReturnBodyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ReturnBodyContext_getRuleIndex = $this => { - return 10; -}, -oncipv_Cypher5Parser$PatternListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PatternListContext_getRuleIndex = $this => { - return 47; -}, -oncipv_Cypher5Parser$InsertPatternListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$InsertPatternListContext_getRuleIndex = $this => { - return 48; -}, -oncipv_Cypher5Parser$SetItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SetItemContext_getRuleIndex = $this => { - return 24; -}, -oncipv_Cypher5Parser$SetPropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), -oncipv_Cypher5Parser$SetPropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); -}, -oncipv_Cypher5Parser$SetPropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$SetPropContext(); - oncipv_Cypher5Parser$SetPropContext__init_(var_1, var_0); - return var_1; -}, -oncipv_Cypher5Parser$SetDynamicPropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), -oncipv_Cypher5Parser$SetDynamicPropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); -}, -oncipv_Cypher5Parser$SetDynamicPropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$SetDynamicPropContext(); - oncipv_Cypher5Parser$SetDynamicPropContext__init_(var_1, var_0); - return var_1; +let scc_AsScalaExtensions$CollectionHasAsScala_asScala = $this => { + let var$1, var$2; + var$1 = $this.$c2; + if (var$1 === null) + var$2 = null; + else if (var$1 instanceof scc_JavaCollectionWrappers$IterableWrapper) + var$2 = var$1.$underlying1(); + else { + var$2 = new scc_JavaCollectionWrappers$JCollectionWrapper; + var$2.$underlying34 = var$1; + } + return var$2; +}; +function oncipau_Util$$astBinaryFold$lambda$_16_0() { + let a = this; jl_Object.call(a); + a.$_0301 = null; + a.$_1108 = null; +} +let oncipau_Util$$astBinaryFold$lambda$_16_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$2; + var$3 = var$0.$_0301; + var$4 = var$0.$_1108; + oncipau_Util$_$callClinit(); + var$5 = s_Tuple2__init_(var$1, var$2); + var$1 = var$5.$_10; + var$2 = var$5.$_20; + if (var$2 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$2); + if (!var$2.$lengthCompare(2)) { + var$5 = var$2.$apply1(0); + var$2 = var$2.$apply1(1); + if ($rt_isInstance(var$5, oavrt_TerminalNode)) { + var$5 = var$5; + if (var$2 instanceof oncip_AstRuleCtx) + return var$3.$apply40(var$1, var$5, var$2.$ast0); + } + } + } + var$1 = new jl_IllegalStateException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(5128)), var$4); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$1); }, -oncipv_Cypher5Parser$SetPropsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), -oncipv_Cypher5Parser$SetPropsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_InequalityExpression = $rt_classWithoutFields(0), +oncie_InequalityExpression_$init$ = $$this => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + s_package$_$callClinit(); + var$2 = s_package$_Vector(s_package$_MODULE$); + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$5 = var$4.data; + oncie_TypeSignature$_$callClinit(); + var$6 = oncie_TypeSignature$_MODULE$; + var$7 = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $$this.$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq(var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$3, var$4))); +}; +function oncie_GreaterThanOrEqual() { + let a = this; oncie_Expression.call(a); + a.$lhs23 = null; + a.$rhs30 = null; + a.$position294 = null; + a.$canonicalOperatorSymbol0 = null; + a.$includeEquality1 = 0; + a.$signatures18 = null; +} +let oncie_GreaterThanOrEqual_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher5Parser$SetPropsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$SetPropsContext(); - oncipv_Cypher5Parser$SetPropsContext__init_(var_1, var_0); - return var_1; +oncie_GreaterThanOrEqual_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$AddPropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), -oncipv_Cypher5Parser$AddPropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_GreaterThanOrEqual_signatures = $this => { + return $this.$signatures18; }, -oncipv_Cypher5Parser$AddPropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$AddPropContext(); - oncipv_Cypher5Parser$AddPropContext__init_(var_1, var_0); - return var_1; +oncie_GreaterThanOrEqual_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq = ($this, $x$1) => { + $this.$signatures18 = $x$1; }, -oncipv_Cypher5Parser$SetLabelsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), -oncipv_Cypher5Parser$SetLabelsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_GreaterThanOrEqual_lhs = $this => { + return $this.$lhs23; }, -oncipv_Cypher5Parser$SetLabelsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$SetLabelsContext(); - oncipv_Cypher5Parser$SetLabelsContext__init_(var_1, var_0); - return var_1; +oncie_GreaterThanOrEqual_rhs = $this => { + return $this.$rhs30; }, -oncipv_Cypher5Parser$SetLabelsIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SetItemContext), -oncipv_Cypher5Parser$SetLabelsIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_GreaterThanOrEqual_position = $this => { + return $this.$position294; }, -oncipv_Cypher5Parser$SetLabelsIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$SetLabelsIsContext(); - oncipv_Cypher5Parser$SetLabelsIsContext__init_(var_1, var_0); - return var_1; +oncie_GreaterThanOrEqual_canonicalOperatorSymbol = $this => { + return $this.$canonicalOperatorSymbol0; }, -oncipv_Cypher5Parser$RemoveItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RemoveItemContext_getRuleIndex = $this => { - return 26; +oncie_GreaterThanOrEqual_productPrefix = $this => { + return $rt_s(5903); }, -oncipv_Cypher5Parser$RemovePropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$RemoveItemContext), -oncipv_Cypher5Parser$RemovePropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_GreaterThanOrEqual_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$RemovePropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$RemovePropContext(); - oncipv_Cypher5Parser$RemovePropContext__init_(var_1, var_0); - return var_1; +oncie_GreaterThanOrEqual_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs23; + case 1: + return $this.$rhs30; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$RemoveDynamicPropContext = $rt_classWithoutFields(oncipv_Cypher5Parser$RemoveItemContext), -oncipv_Cypher5Parser$RemoveDynamicPropContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_GreaterThanOrEqual_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$RemoveDynamicPropContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$RemoveDynamicPropContext(); - oncipv_Cypher5Parser$RemoveDynamicPropContext__init_(var_1, var_0); - return var_1; -}; -let oncipv_Cypher5Parser$RemoveLabelsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$RemoveItemContext), -oncipv_Cypher5Parser$RemoveLabelsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_GreaterThanOrEqual_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$RemoveLabelsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$RemoveLabelsContext(); - oncipv_Cypher5Parser$RemoveLabelsContext__init_(var_1, var_0); - return var_1; +oncie_GreaterThanOrEqual_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$RemoveLabelsIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$RemoveItemContext), -oncipv_Cypher5Parser$RemoveLabelsIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_GreaterThanOrEqual_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_GreaterThanOrEqual) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$lhs23; + var$3 = $x$1.$lhs23; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$rhs30; + $x$1 = $x$1.$rhs30; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$RemoveLabelsIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$RemoveLabelsIsContext(); - oncipv_Cypher5Parser$RemoveLabelsIsContext__init_(var_1, var_0); - return var_1; +oncie_GreaterThanOrEqual__init_ = ($this, $lhs, $rhs, $position) => { + $this.$lhs23 = $lhs; + $this.$rhs30 = $rhs; + $this.$position294 = $position; + oncie_Expression__init_($this); + oncie_InequalityExpression_$init$($this); + $this.$canonicalOperatorSymbol0 = $rt_s(5532); + $this.$includeEquality1 = 1; }, -oncipv_Cypher5Parser$MatchModeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$MatchModeContext_getRuleIndex = $this => { - return 29; +oncie_GreaterThanOrEqual__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_GreaterThanOrEqual(); + oncie_GreaterThanOrEqual__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_GreaterThan() { + let a = this; oncie_Expression.call(a); + a.$lhs28 = null; + a.$rhs23 = null; + a.$position272 = null; + a.$canonicalOperatorSymbol3 = null; + a.$includeEquality = 0; + a.$signatures5 = null; +} +let oncie_GreaterThan_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher5Parser$HintContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$HintContext_nonEmptyNameList = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$NonEmptyNameListContext), 0); +oncie_GreaterThan_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$HintContext_variable = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); +oncie_GreaterThan_signatures = $this => { + return $this.$signatures5; }, -oncipv_Cypher5Parser$HintContext_labelOrRelType = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$LabelOrRelTypeContext), 0); +oncie_GreaterThan_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq = ($this, $x$1) => { + $this.$signatures5 = $x$1; }, -oncipv_Cypher5Parser$HintContext_LPAREN = $this => { - return oncip_AstRuleCtx_getToken($this, 155, 0); +oncie_GreaterThan_lhs = $this => { + return $this.$lhs28; }, -oncipv_Cypher5Parser$HintContext_getRuleIndex = $this => { - return 30; +oncie_GreaterThan_rhs = $this => { + return $this.$rhs23; }, -oncipv_Cypher5Parser$MergeActionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$MergeActionContext_getRuleIndex = $this => { - return 32; +oncie_GreaterThan_position = $this => { + return $this.$position272; }, -oncipv_Cypher5Parser$PatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PatternContext_getRuleIndex = $this => { - return 49; +oncie_GreaterThan_canonicalOperatorSymbol = $this => { + return $this.$canonicalOperatorSymbol3; }, -oncipv_Cypher5Parser$ProcedureNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ProcedureNameContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +oncie_GreaterThan_productPrefix = $this => { + return $rt_s(5904); }, -oncipv_Cypher5Parser$ProcedureNameContext_getRuleIndex = $this => { - return 35; +oncie_GreaterThan_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$ProcedureArgumentContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ProcedureArgumentContext_expression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); +oncie_GreaterThan_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs28; + case 1: + return $this.$rhs23; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ProcedureArgumentContext_getRuleIndex = $this => { - return 36; +oncie_GreaterThan_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ProcedureResultItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ProcedureResultItemContext_variable = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); +oncie_GreaterThan_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ProcedureResultItemContext_getRuleIndex = $this => { - return 37; +oncie_GreaterThan_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SubqueryScopeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SubqueryScopeContext_getRuleIndex = $this => { - return 41; +oncie_GreaterThan_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_GreaterThan) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$lhs28; + var$3 = $x$1.$lhs28; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$rhs23; + $x$1 = $x$1.$rhs23; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext)); +oncie_GreaterThan__init_ = ($this, $lhs, $rhs, $position) => { + $this.$lhs28 = $lhs; + $this.$rhs23 = $rhs; + $this.$position272 = $position; + oncie_Expression__init_($this); + oncie_InequalityExpression_$init$($this); + $this.$canonicalOperatorSymbol3 = $rt_s(604); + $this.$includeEquality = 0; }, -oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext)); +oncie_GreaterThan__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_GreaterThan(); + oncie_GreaterThan__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_LessThanOrEqual() { + let a = this; oncie_Expression.call(a); + a.$lhs18 = null; + a.$rhs17 = null; + a.$position276 = null; + a.$canonicalOperatorSymbol1 = null; + a.$includeEquality0 = 0; + a.$signatures12 = null; +} +let oncie_LessThanOrEqual_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext)); +oncie_LessThanOrEqual_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_getRuleIndex = $this => { - return 42; +oncie_LessThanOrEqual_signatures = $this => { + return $this.$signatures12; }, -oncipv_Cypher5Parser$LimitContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LimitContext_getRuleIndex = $this => { - return 18; +oncie_LessThanOrEqual_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq = ($this, $x$1) => { + $this.$signatures12 = $x$1; }, -oncipv_Cypher5Parser$SkipContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SkipContext_getRuleIndex = $this => { - return 17; +oncie_LessThanOrEqual_lhs = $this => { + return $this.$lhs18; }, -oncipv_Cypher5Parser$OrderByContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$OrderByContext_getRuleIndex = $this => { - return 16; +oncie_LessThanOrEqual_rhs = $this => { + return $this.$rhs17; }, -oncipv_Cypher25Parser$NamespaceContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NamespaceContext_getRuleIndex = $this => { - return 136; +oncie_LessThanOrEqual_position = $this => { + return $this.$position276; }, -oncipv_Cypher25Parser$Expression11Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression11Context_getRuleIndex = $this => { - return 88; +oncie_LessThanOrEqual_canonicalOperatorSymbol = $this => { + return $this.$canonicalOperatorSymbol1; }, -oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext_getRuleIndex = $this => { - return 325; +oncie_LessThanOrEqual_productPrefix = $this => { + return $rt_s(5905); }, -oncipv_Cypher25Parser$StringOrParameterExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StringOrParameterExpressionContext_stringLiteral = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0); +oncie_LessThanOrEqual_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$StringOrParameterExpressionContext_getRuleIndex = $this => { - return 317; +oncie_LessThanOrEqual_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs18; + case 1: + return $this.$rhs17; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$PasswordOnlyContext = $rt_classWithoutFields(oncip_AstRuleCtx); -let oncipv_Cypher25Parser$PasswordOnlyContext_getRuleIndex = $this => { - return 220; +oncie_LessThanOrEqual_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$PropertyKeyNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PropertyKeyNameContext_getRuleIndex = $this => { - return 130; +oncie_LessThanOrEqual_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$PropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PropertyContext_getRuleIndex = $this => { - return 101; +oncie_LessThanOrEqual_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$TypePartContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$TypePartContext_typeName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$TypeNameContext), 0); +oncie_LessThanOrEqual_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_LessThanOrEqual) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$lhs18; + var$3 = $x$1.$lhs18; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$rhs17; + $x$1 = $x$1.$rhs17; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$TypePartContext_typeNullability = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$TypeNullabilityContext), 0); +oncie_LessThanOrEqual__init_ = ($this, $lhs, $rhs, $position) => { + $this.$lhs18 = $lhs; + $this.$rhs17 = $rhs; + $this.$position276 = $position; + oncie_Expression__init_($this); + oncie_InequalityExpression_$init$($this); + $this.$canonicalOperatorSymbol1 = $rt_s(5533); + $this.$includeEquality0 = 1; }, -oncipv_Cypher25Parser$TypePartContext_getRuleIndex = $this => { - return 140; +oncie_LessThanOrEqual__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_LessThanOrEqual(); + oncie_LessThanOrEqual__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_LessThan() { + let a = this; oncie_Expression.call(a); + a.$lhs16 = null; + a.$rhs15 = null; + a.$position204 = null; + a.$canonicalOperatorSymbol2 = null; + a.$includeEquality2 = 0; + a.$signatures9 = null; +} +let oncie_LessThan_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$SymbolicAliasNameListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SymbolicAliasNameListContext_getRuleIndex = $this => { - return 311; +oncie_LessThan_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher25Parser$AdminTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AdminTokenContext_getRuleIndex = $this => { - return 255; +oncie_LessThan_signatures = $this => { + return $this.$signatures9; }, -oncipv_Cypher25Parser$ProcedureTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ProcedureTokenContext_getRuleIndex = $this => { - return 256; +oncie_LessThan_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq = ($this, $x$1) => { + $this.$signatures9 = $x$1; }, -oncipv_Cypher25Parser$ExecuteProcedureQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ExecuteProcedureQualifierContext_getRuleIndex = $this => { - return 262; +oncie_LessThan_lhs = $this => { + return $this.$lhs16; }, -oncipv_Cypher25Parser$ExecuteFunctionQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ExecuteFunctionQualifierContext_getRuleIndex = $this => { - return 261; +oncie_LessThan_rhs = $this => { + return $this.$rhs15; }, -oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext_getRuleIndex = $this => { - return 241; +oncie_LessThan_position = $this => { + return $this.$position204; }, -oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext_getRuleIndex = $this => { - return 242; +oncie_LessThan_canonicalOperatorSymbol = $this => { + return $this.$canonicalOperatorSymbol2; }, -oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext_getRuleIndex = $this => { - return 243; +oncie_LessThan_productPrefix = $this => { + return $rt_s(5906); }, -oncipv_Cypher25Parser$GraphQualifierTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GraphQualifierTokenContext_getRuleIndex = $this => { - return 274; +oncie_LessThan_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$NonEmptyStringListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NonEmptyStringListContext_getRuleIndex = $this => { - return 272; +oncie_LessThan_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs16; + case 1: + return $this.$rhs15; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$GlobsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GlobsContext_getRuleIndex = $this => { - return 264; +oncie_LessThan_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$YieldItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$YieldItemContext_getRuleIndex = $this => { - return 149; +oncie_LessThan_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$YieldSkipContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$YieldSkipContext_getRuleIndex = $this => { - return 150; +oncie_LessThan_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$YieldLimitContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$YieldLimitContext_getRuleIndex = $this => { - return 151; +oncie_LessThan_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_LessThan) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$lhs16; + var$3 = $x$1.$lhs16; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$rhs15; + $x$1 = $x$1.$rhs15; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$StringListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$StringListContext_getRuleIndex = $this => { - return 315; +oncie_LessThan__init_ = ($this, $lhs, $rhs, $position) => { + $this.$lhs16 = $lhs; + $this.$rhs15 = $rhs; + $this.$position204 = $position; + oncie_Expression__init_($this); + oncie_InequalityExpression_$init$($this); + $this.$canonicalOperatorSymbol2 = $rt_s(603); + $this.$includeEquality2 = 0; }, -oncipv_Cypher25Parser$ReturnItemsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ReturnItemsContext_getRuleIndex = $this => { - return 11; +oncie_LessThan__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_LessThan(); + oncie_LessThan__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_InvalidNotEquals() { + let a = this; oncie_Expression.call(a); + a.$lhs27 = null; + a.$rhs26 = null; + a.$position252 = null; +} +let oncie_InvalidNotEquals_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$InsertPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$InsertPatternContext_EQ = $this => { - return oncip_AstRuleCtx_getToken($this, 96, 0); +oncie_InvalidNotEquals_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher25Parser$InsertPatternContext_getRuleIndex = $this => { - return 49; +oncie_InvalidNotEquals_lhs = $this => { + return $this.$lhs27; }, -oncipv_Cypher25Parser$PropertyExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PropertyExpressionContext_getRuleIndex = $this => { - return 103; +oncie_InvalidNotEquals_rhs = $this => { + return $this.$rhs26; }, -oncipv_Cypher25Parser$DynamicPropertyExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DynamicPropertyExpressionContext_getRuleIndex = $this => { - return 104; +oncie_InvalidNotEquals_position = $this => { + return $this.$position252; }, -oncipv_Cypher25Parser$NodeLabelsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NodeLabelsContext_getRuleIndex = $this => { - return 61; -}; -let oncipv_Cypher25Parser$NodeLabelsIsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NodeLabelsIsContext_getRuleIndex = $this => { - return 62; +oncie_InvalidNotEquals_canonicalOperatorSymbol = $this => { + return $rt_s(5907); }, -oncipv_Cypher25Parser$NonEmptyNameListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NonEmptyNameListContext_symbolicNameString = $this => { - return oncip_AstRuleCtx_getRuleContexts($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); +oncie_InvalidNotEquals_productPrefix = $this => { + return $rt_s(5908); }, -oncipv_Cypher25Parser$NonEmptyNameListContext_getRuleIndex = $this => { - return 138; +oncie_InvalidNotEquals_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$LabelOrRelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelOrRelTypeContext_getRuleIndex = $this => { - return 68; +oncie_InvalidNotEquals_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs27; + case 1: + return $this.$rhs26; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$SelectorContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SelectorContext_getRuleIndex = $this => { - return 54; +oncie_InvalidNotEquals_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$AnyShortestPathContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), -oncipv_Cypher25Parser$AnyShortestPathContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_InvalidNotEquals_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$AnyShortestPathContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$AnyShortestPathContext(); - oncipv_Cypher25Parser$AnyShortestPathContext__init_(var_1, var_0); - return var_1; +oncie_InvalidNotEquals_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$AllShortestPathContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), -oncipv_Cypher25Parser$AllShortestPathContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_InvalidNotEquals_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_InvalidNotEquals) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs27; + var$3 = $x$1.$lhs27; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs26; + $x$1 = $x$1.$rhs26; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_InvalidNotEquals)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$AllShortestPathContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$AllShortestPathContext(); - oncipv_Cypher25Parser$AllShortestPathContext__init_(var_1, var_0); - return var_1; +oncie_InvalidNotEquals__init_ = ($this, $lhs, $rhs, $position) => { + $this.$lhs27 = $lhs; + $this.$rhs26 = $rhs; + $this.$position252 = $position; + oncie_Expression__init_($this); }, -oncipv_Cypher25Parser$AnyPathContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), -oncipv_Cypher25Parser$AnyPathContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_InvalidNotEquals__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_InvalidNotEquals(); + oncie_InvalidNotEquals__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_NotEquals() { + let a = this; oncie_Expression.call(a); + a.$lhs26 = null; + a.$rhs20 = null; + a.$position237 = null; + a.$signatures17 = null; +} +let oncie_NotEquals_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$AnyPathContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$AnyPathContext(); - oncipv_Cypher25Parser$AnyPathContext__init_(var_1, var_0); - return var_1; +oncie_NotEquals_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher25Parser$AllPathContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), -oncipv_Cypher25Parser$AllPathContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_NotEquals_lhs = $this => { + return $this.$lhs26; }, -oncipv_Cypher25Parser$AllPathContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$AllPathContext(); - oncipv_Cypher25Parser$AllPathContext__init_(var_1, var_0); - return var_1; +oncie_NotEquals_rhs = $this => { + return $this.$rhs20; }, -oncipv_Cypher25Parser$ShortestGroupContext = $rt_classWithoutFields(oncipv_Cypher25Parser$SelectorContext), -oncipv_Cypher25Parser$ShortestGroupContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_NotEquals_position = $this => { + return $this.$position237; }, -oncipv_Cypher25Parser$ShortestGroupContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ShortestGroupContext(); - oncipv_Cypher25Parser$ShortestGroupContext__init_(var_1, var_0); - return var_1; +oncie_NotEquals_signatures = $this => { + return $this.$signatures17; }, -oncipv_Cypher25Parser$AnonymousPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AnonymousPatternContext_getRuleIndex = $this => { - return 51; +oncie_NotEquals_canonicalOperatorSymbol = $this => { + return $rt_s(5531); }, -oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext_getRuleIndex = $this => { - return 42; +oncie_NotEquals_productPrefix = $this => { + return $rt_s(5909); }, -oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext_getRuleIndex = $this => { - return 43; +oncie_NotEquals_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext_getRuleIndex = $this => { - return 44; +oncie_NotEquals_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs26; + case 1: + return $this.$rhs20; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$OrderItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$OrderItemContext_getRuleIndex = $this => { - return 12; +oncie_NotEquals_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$NamespaceContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NamespaceContext_getRuleIndex = $this => { - return 137; +oncie_NotEquals_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$Expression11Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression11Context_getRuleIndex = $this => { - return 89; +oncie_NotEquals_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext_getRuleIndex = $this => { - return 331; +oncie_NotEquals_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_NotEquals) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs26; + var$3 = $x$1.$lhs26; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs20; + $x$1 = $x$1.$rhs20; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_NotEquals)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$StringOrParameterExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StringOrParameterExpressionContext_stringLiteral = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0); +oncie_NotEquals__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs26 = $lhs; + $this.$rhs20 = $rhs; + $this.$position237 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures17 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncipv_Cypher5Parser$StringOrParameterExpressionContext_getRuleIndex = $this => { - return 323; +oncie_NotEquals__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_NotEquals(); + oncie_NotEquals__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncipv_Cypher5Parser$PasswordOnlyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PasswordOnlyContext_getRuleIndex = $this => { - return 226; +oncie_MultiOperatorExpression = $rt_classWithoutFields(0); +function oncie_Ands() { + let a = this; oncie_Expression.call(a); + a.$exprs0 = null; + a.$position298 = null; + a.$signatures10 = null; +} +let oncie_Ands_asCanonicalStringVal = $this => { + let var$1, var$2; + var$1 = sc_AbstractIterable_mkString(sc_StrictOptimizedIterableOps_map$($this.$exprs0, new oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0), $rt_s(45)); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(4280)), $rt_s(5910)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipv_Cypher5Parser$PropertyKeyNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PropertyKeyNameContext_getRuleIndex = $this => { - return 131; +oncie_Ands_isConstantForQuery = $this => { + return sc_IterableOnceOps_forall$($this.$exprs0, new oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0); }, -oncipv_Cypher5Parser$TypePartContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$TypePartContext_typeName = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$TypeNameContext), 0); +oncie_Ands_exprs = $this => { + return $this.$exprs0; }, -oncipv_Cypher5Parser$TypePartContext_typeNullability = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$TypeNullabilityContext), 0); -}; -let oncipv_Cypher5Parser$TypePartContext_getRuleIndex = $this => { - return 141; +oncie_Ands_position = $this => { + return $this.$position298; }, -oncipv_Cypher5Parser$SymbolicAliasNameListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SymbolicAliasNameListContext_getRuleIndex = $this => { - return 317; +oncie_Ands_canonicalOperatorSymbol = $this => { + return $rt_s(4280); }, -oncipv_Cypher5Parser$AdminTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AdminTokenContext_getRuleIndex = $this => { - return 261; +oncie_Ands_signatures = $this => { + return $this.$signatures10; }, -oncipv_Cypher5Parser$ProcedureTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ProcedureTokenContext_getRuleIndex = $this => { - return 262; +oncie_Ands_productPrefix = $this => { + return $rt_s(5911); }, -oncipv_Cypher5Parser$ExecuteProcedureQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ExecuteProcedureQualifierContext_getRuleIndex = $this => { - return 268; +oncie_Ands_productArity = $this => { + return 1; }, -oncipv_Cypher5Parser$ExecuteFunctionQualifierContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ExecuteFunctionQualifierContext_getRuleIndex = $this => { - return 267; +oncie_Ands_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$exprs0; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext_getRuleIndex = $this => { - return 247; +oncie_Ands_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext_getRuleIndex = $this => { - return 248; +oncie_Ands_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext_getRuleIndex = $this => { - return 249; +oncie_Ands_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$GraphQualifierTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GraphQualifierTokenContext_getRuleIndex = $this => { - return 280; +oncie_Ands_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Ands) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$exprs0; + $x$1 = $x$1.$exprs0; + if (var$2 === null) { + if ($x$1 === null) + break c; + break b; + } + if (!sc_Set_equals$(var$2, $x$1)) + break b; + } + if (!($this instanceof oncie_Ands)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncipv_Cypher5Parser$NonEmptyStringListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NonEmptyStringListContext_getRuleIndex = $this => { - return 278; +oncie_Ands__init_ = ($this, $exprs, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9; + $this.$exprs0 = $exprs; + $this.$position298 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$3 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + oncie_TypeSignature$_$callClinit(); + var$5 = oncie_TypeSignature$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + var$7 = onciuci_ListSet_size($exprs); + $exprs = sci_Vector$_newBuilder(var$6); + var$8 = 0; + while (var$8 < var$7) { + oncius_package$_$callClinit(); + sci_VectorBuilder_addOne($exprs, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + var$8 = var$8 + 1 | 0; + } + var$9 = var$4.data; + var$6 = sci_VectorBuilder_result($exprs); + oncius_package$_$callClinit(); + var$9[0] = oncie_TypeSignature$_apply(var$5, var$6, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures10 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$4)); }, -oncipv_Cypher5Parser$GlobsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GlobsContext_getRuleIndex = $this => { - return 270; +oncie_Ands__init_0 = (var_0, var_1) => { + let var_2 = new oncie_Ands(); + oncie_Ands__init_(var_2, var_0, var_1); + return var_2; +}; +function oncie_Contains() { + let a = this; oncie_Expression.call(a); + a.$lhs19 = null; + a.$rhs25 = null; + a.$position307 = null; + a.$signatures14 = null; +} +let oncie_Contains_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher5Parser$YieldItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$YieldItemContext_getRuleIndex = $this => { - return 150; +oncie_Contains_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$YieldSkipContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$YieldSkipContext_getRuleIndex = $this => { - return 151; +oncie_Contains_canonicalOperatorSymbol = $this => { + return oncie_OperatorExpression_canonicalOperatorSymbol$($this); }, -oncipv_Cypher5Parser$YieldLimitContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$YieldLimitContext_getRuleIndex = $this => { - return 152; +oncie_Contains_lhs = $this => { + return $this.$lhs19; }, -oncipv_Cypher5Parser$StringListContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$StringListContext_getRuleIndex = $this => { - return 321; +oncie_Contains_rhs = $this => { + return $this.$rhs25; }, -oncipv_Cypher5Parser$ReturnItemsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ReturnItemsContext_getRuleIndex = $this => { - return 12; +oncie_Contains_position = $this => { + return $this.$position307; }, -oncipv_Cypher5Parser$InsertPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$InsertPatternContext_EQ = $this => { - return oncip_AstRuleCtx_getToken($this, 100, 0); +oncie_Contains_signatures = $this => { + return $this.$signatures14; }, -oncipv_Cypher5Parser$InsertPatternContext_getRuleIndex = $this => { - return 50; +oncie_Contains_productPrefix = $this => { + return $rt_s(5912); }, -oncipv_Cypher5Parser$PropertyExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PropertyExpressionContext_getRuleIndex = $this => { - return 104; +oncie_Contains_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$DynamicPropertyExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DynamicPropertyExpressionContext_getRuleIndex = $this => { - return 105; +oncie_Contains_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs19; + case 1: + return $this.$rhs25; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$NodeLabelsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NodeLabelsContext_getRuleIndex = $this => { - return 62; +oncie_Contains_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$NodeLabelsIsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NodeLabelsIsContext_getRuleIndex = $this => { - return 63; +oncie_Contains_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$LabelOrRelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelOrRelTypeContext_getRuleIndex = $this => { - return 69; +oncie_Contains_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SelectorContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SelectorContext_getRuleIndex = $this => { - return 55; +oncie_Contains_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Contains) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs19; + var$3 = $x$1.$lhs19; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs25; + $x$1 = $x$1.$rhs25; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Contains)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$AnyShortestPathContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), -oncipv_Cypher5Parser$AnyShortestPathContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_Contains__init_0 = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs19 = $lhs; + $this.$rhs25 = $rhs; + $this.$position307 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures14 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); +}, +oncie_Contains__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_Contains(); + oncie_Contains__init_0(var_3, var_0, var_1, var_2); + return var_3; }; -let oncipv_Cypher5Parser$AnyShortestPathContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$AnyShortestPathContext(); - oncipv_Cypher5Parser$AnyShortestPathContext__init_(var_1, var_0); - return var_1; +function oncie_EndsWith() { + let a = this; oncie_Expression.call(a); + a.$lhs32 = null; + a.$rhs27 = null; + a.$position303 = null; + a.$signatures7 = null; +} +let oncie_EndsWith_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher5Parser$AllShortestPathContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), -oncipv_Cypher5Parser$AllShortestPathContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_EndsWith_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$AllShortestPathContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$AllShortestPathContext(); - oncipv_Cypher5Parser$AllShortestPathContext__init_(var_1, var_0); - return var_1; +oncie_EndsWith_lhs = $this => { + return $this.$lhs32; }, -oncipv_Cypher5Parser$AnyPathContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), -oncipv_Cypher5Parser$AnyPathContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_EndsWith_rhs = $this => { + return $this.$rhs27; }, -oncipv_Cypher5Parser$AnyPathContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$AnyPathContext(); - oncipv_Cypher5Parser$AnyPathContext__init_(var_1, var_0); - return var_1; +oncie_EndsWith_position = $this => { + return $this.$position303; }, -oncipv_Cypher5Parser$AllPathContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), -oncipv_Cypher5Parser$AllPathContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_EndsWith_signatures = $this => { + return $this.$signatures7; }, -oncipv_Cypher5Parser$AllPathContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$AllPathContext(); - oncipv_Cypher5Parser$AllPathContext__init_(var_1, var_0); - return var_1; +oncie_EndsWith_canonicalOperatorSymbol = $this => { + return $rt_s(5913); }, -oncipv_Cypher5Parser$ShortestGroupContext = $rt_classWithoutFields(oncipv_Cypher5Parser$SelectorContext), -oncipv_Cypher5Parser$ShortestGroupContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_EndsWith_productPrefix = $this => { + return $rt_s(5914); }, -oncipv_Cypher5Parser$ShortestGroupContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ShortestGroupContext(); - oncipv_Cypher5Parser$ShortestGroupContext__init_(var_1, var_0); - return var_1; +oncie_EndsWith_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$AnonymousPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AnonymousPatternContext_getRuleIndex = $this => { - return 52; +oncie_EndsWith_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs32; + case 1: + return $this.$rhs27; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext_getRuleIndex = $this => { - return 43; +oncie_EndsWith_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext_getRuleIndex = $this => { - return 44; +oncie_EndsWith_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext_getRuleIndex = $this => { - return 45; +oncie_EndsWith_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$OrderItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$OrderItemContext_getRuleIndex = $this => { - return 13; +oncie_EndsWith_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_EndsWith) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs32; + var$3 = $x$1.$lhs32; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs27; + $x$1 = $x$1.$rhs27; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_EndsWith)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oavrm_ObjectEqualityComparator = $rt_classWithoutFields(oavrm_AbstractEqualityComparator), -oavrm_ObjectEqualityComparator_INSTANCE = null, -oavrm_ObjectEqualityComparator_hashCode = ($this, $obj) => { - if ($obj !== null) - return $obj.$hashCode(); - return 0; +oncie_EndsWith__init_0 = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs32 = $lhs; + $this.$rhs27 = $rhs; + $this.$position303 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures7 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oavrm_ObjectEqualityComparator_equals = ($this, $a, $b) => { - if ($a !== null) - return $a.$equals($b); - return $b !== null ? 0 : 1; +oncie_EndsWith__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_EndsWith(); + oncie_EndsWith__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_RegexMatch() { + let a = this; oncie_Expression.call(a); + a.$lhs21 = null; + a.$rhs14 = null; + a.$position213 = null; + a.$signatures11 = null; +} +let oncie_RegexMatch_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oavrm_ObjectEqualityComparator__clinit_ = () => { - oavrm_ObjectEqualityComparator_INSTANCE = new oavrm_ObjectEqualityComparator; +oncie_RegexMatch_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher25Parser$Expression10Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression10Context_getRuleIndex = $this => { - return 89; +oncie_RegexMatch_lhs = $this => { + return $this.$lhs21; }, -oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context_getRuleIndex = $this => { - return 326; +oncie_RegexMatch_rhs = $this => { + return $this.$rhs14; }, -oncipv_Cypher25Parser$TypeNullabilityContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$TypeNullabilityContext_getRuleIndex = $this => { - return 142; +oncie_RegexMatch_position = $this => { + return $this.$position213; }, -oncipv_Cypher25Parser$TypeListSuffixContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$TypeListSuffixContext_getRuleIndex = $this => { - return 143; +oncie_RegexMatch_signatures = $this => { + return $this.$signatures11; }, -oncipv_Cypher25Parser$TypeNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$TypeNameContext_LT = $this => { - return oncip_AstRuleCtx_getToken($this, 152, 0); +oncie_RegexMatch_canonicalOperatorSymbol = $this => { + return $rt_s(5915); }, -oncipv_Cypher25Parser$TypeNameContext_type = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$TypeContext), 0); +oncie_RegexMatch_productPrefix = $this => { + return $rt_s(5916); }, -oncipv_Cypher25Parser$TypeNameContext_GT = $this => { - return oncip_AstRuleCtx_getToken($this, 120, 0); +oncie_RegexMatch_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$TypeNameContext__init_0 = ($this, $parent, $invokingState) => { - oncip_AstRuleCtx__init_($this, $parent, $invokingState); +oncie_RegexMatch_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs21; + case 1: + return $this.$rhs14; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$TypeNameContext__init_ = (var_0, var_1) => { - let var_2 = new oncipv_Cypher25Parser$TypeNameContext(); - oncipv_Cypher25Parser$TypeNameContext__init_0(var_2, var_0, var_1); - return var_2; +oncie_RegexMatch_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$TypeNameContext_getRuleIndex = $this => { - return 141; +oncie_RegexMatch_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ElementTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ElementTokenContext_getRuleIndex = $this => { - return 276; +oncie_RegexMatch_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$NodeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NodeTokenContext_getRuleIndex = $this => { - return 277; +oncie_RegexMatch_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_RegexMatch) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs21; + var$3 = $x$1.$lhs21; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs14; + $x$1 = $x$1.$rhs14; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_RegexMatch)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$RelTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RelTokenContext_getRuleIndex = $this => { - return 275; +oncie_RegexMatch__init_0 = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs21 = $lhs; + $this.$rhs14 = $rhs; + $this.$position213 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_StringType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures11 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncipv_Cypher25Parser$GlobContext = $rt_classWithoutFields(oncip_AstRuleCtx); -let oncipv_Cypher25Parser$GlobContext_escapedSymbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$EscapedSymbolicNameStringContext), 0); +oncie_RegexMatch__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_RegexMatch(); + oncie_RegexMatch__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_StartsWith() { + let a = this; oncie_Expression.call(a); + a.$lhs30 = null; + a.$rhs29 = null; + a.$position210 = null; + a.$signatures20 = null; +} +let oncie_StartsWith_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$GlobContext_getRuleIndex = $this => { - return 265; +oncie_StartsWith_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher25Parser$SignedIntegerLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER = $this => { - return oncip_AstRuleCtx_getToken($this, 5, 0); +oncie_StartsWith_lhs = $this => { + return $this.$lhs30; }, -oncipv_Cypher25Parser$SignedIntegerLiteralContext_getRuleIndex = $this => { - return 128; +oncie_StartsWith_rhs = $this => { + return $this.$rhs29; }, -oncipv_Cypher25Parser$ReturnItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ReturnItemContext_getRuleIndex = $this => { - return 10; +oncie_StartsWith_position = $this => { + return $this.$position210; }, -oncipv_Cypher25Parser$InsertNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$InsertNodePatternContext_getRuleIndex = $this => { - return 59; +oncie_StartsWith_signatures = $this => { + return $this.$signatures20; }, -oncipv_Cypher25Parser$InsertRelationshipPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$InsertRelationshipPatternContext_getRuleIndex = $this => { - return 71; +oncie_StartsWith_canonicalOperatorSymbol = $this => { + return $rt_s(5917); }, -oncipv_Cypher25Parser$Expression1Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression1Context_getRuleIndex = $this => { - return 105; +oncie_StartsWith_productPrefix = $this => { + return $rt_s(5918); }, -oncipv_Cypher25Parser$DynamicPropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DynamicPropertyContext_getRuleIndex = $this => { - return 102; +oncie_StartsWith_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$DynamicLabelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DynamicLabelTypeContext_getRuleIndex = $this => { - return 65; +oncie_StartsWith_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs30; + case 1: + return $this.$rhs29; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$DynamicExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DynamicExpressionContext_getRuleIndex = $this => { - return 63; +oncie_StartsWith_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$PathTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PathTokenContext_getRuleIndex = $this => { - return 56; +oncie_StartsWith_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$GroupTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GroupTokenContext_getRuleIndex = $this => { - return 55; +oncie_StartsWith_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ShortestPathPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShortestPathPatternContext_getRuleIndex = $this => { - return 52; +oncie_StartsWith_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_StartsWith) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs30; + var$3 = $x$1.$lhs30; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs29; + $x$1 = $x$1.$rhs29; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_StartsWith)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$PatternElementContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PatternElementContext_getRuleIndex = $this => { - return 53; +oncie_StartsWith__init_0 = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs30 = $lhs; + $this.$rhs29 = $rhs; + $this.$position210 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures20 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncipv_Cypher25Parser$AscTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$AscTokenContext_getRuleIndex = $this => { - return 13; +oncie_StartsWith__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_StartsWith(); + oncie_StartsWith__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_IsNotNull() { + let a = this; oncie_Expression.call(a); + a.$lhs15 = null; + a.$position299 = null; + a.$signatures15 = null; +} +let oncie_IsNotNull_asCanonicalStringVal = $this => { + return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$DescTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DescTokenContext_getRuleIndex = $this => { - return 14; +oncie_IsNotNull_isConstantForQuery = $this => { + return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$Expression10Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression10Context_getRuleIndex = $this => { - return 90; +oncie_IsNotNull_lhs = $this => { + return $this.$lhs15; }, -oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context_getRuleIndex = $this => { - return 332; +oncie_IsNotNull_position = $this => { + return $this.$position299; }, -oncipv_Cypher5Parser$TypeNullabilityContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$TypeNullabilityContext_getRuleIndex = $this => { - return 143; +oncie_IsNotNull_signatures = $this => { + return $this.$signatures15; }, -oncipv_Cypher5Parser$TypeListSuffixContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$TypeListSuffixContext_getRuleIndex = $this => { - return 144; +oncie_IsNotNull_canonicalOperatorSymbol = $this => { + return $rt_s(436); }, -oncipv_Cypher5Parser$TypeNameContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$TypeNameContext_LT = $this => { - return oncip_AstRuleCtx_getToken($this, 156, 0); +oncie_IsNotNull_productPrefix = $this => { + return $rt_s(5919); }, -oncipv_Cypher5Parser$TypeNameContext_type = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$TypeContext), 0); +oncie_IsNotNull_productArity = $this => { + return 1; }, -oncipv_Cypher5Parser$TypeNameContext_GT = $this => { - return oncip_AstRuleCtx_getToken($this, 124, 0); +oncie_IsNotNull_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs15; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$TypeNameContext__init_ = ($this, $parent, $invokingState) => { - oncip_AstRuleCtx__init_($this, $parent, $invokingState); +oncie_IsNotNull_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$TypeNameContext__init_0 = (var_0, var_1) => { - let var_2 = new oncipv_Cypher5Parser$TypeNameContext(); - oncipv_Cypher5Parser$TypeNameContext__init_(var_2, var_0, var_1); - return var_2; +oncie_IsNotNull_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$TypeNameContext_getRuleIndex = $this => { - return 142; +oncie_IsNotNull_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ElementTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ElementTokenContext_getRuleIndex = $this => { - return 282; +oncie_IsNotNull_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_IsNotNull) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs15; + $x$1 = $x$1.$lhs15; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_IsNotNull)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncipv_Cypher5Parser$NodeTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NodeTokenContext_getRuleIndex = $this => { - return 283; +oncie_IsNotNull__init_0 = ($this, $lhs, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9; + $this.$lhs15 = $lhs; + $this.$position299 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$3 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$5 = var$4.data; + oncie_TypeSignature$_$callClinit(); + var$6 = oncie_TypeSignature$_MODULE$; + var$7 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$9 = var$8.data; + oncius_package$_$callClinit(); + var$9[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures15 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$4)); +}, +oncie_IsNotNull__init_ = (var_0, var_1) => { + let var_2 = new oncie_IsNotNull(); + oncie_IsNotNull__init_0(var_2, var_0, var_1); + return var_2; }; -let oncipv_Cypher5Parser$RelTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RelTokenContext_getRuleIndex = $this => { - return 281; +function oncie_IsNull() { + let a = this; oncie_Expression.call(a); + a.$lhs25 = null; + a.$position247 = null; + a.$signatures16 = null; +} +let oncie_IsNull_asCanonicalStringVal = $this => { + return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher5Parser$GlobContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GlobContext_escapedSymbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$EscapedSymbolicNameStringContext), 0); +oncie_IsNull_isConstantForQuery = $this => { + return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$GlobContext_getRuleIndex = $this => { - return 271; +oncie_IsNull_lhs = $this => { + return $this.$lhs25; }, -oncipv_Cypher5Parser$SignedIntegerLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER = $this => { - return oncip_AstRuleCtx_getToken($this, 5, 0); +oncie_IsNull_position = $this => { + return $this.$position247; }, -oncipv_Cypher5Parser$SignedIntegerLiteralContext_getRuleIndex = $this => { - return 129; +oncie_IsNull_signatures = $this => { + return $this.$signatures16; }, -oncipv_Cypher5Parser$ReturnItemContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ReturnItemContext_getRuleIndex = $this => { - return 11; +oncie_IsNull_canonicalOperatorSymbol = $this => { + return $rt_s(434); }, -oncipv_Cypher5Parser$InsertNodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$InsertNodePatternContext_getRuleIndex = $this => { - return 60; +oncie_IsNull_productPrefix = $this => { + return $rt_s(5920); }, -oncipv_Cypher5Parser$InsertRelationshipPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$InsertRelationshipPatternContext_getRuleIndex = $this => { - return 72; +oncie_IsNull_productArity = $this => { + return 1; }, -oncipv_Cypher5Parser$Expression1Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression1Context_getRuleIndex = $this => { - return 106; +oncie_IsNull_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs25; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$DynamicPropertyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DynamicPropertyContext_getRuleIndex = $this => { - return 103; +oncie_IsNull_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DynamicLabelTypeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DynamicLabelTypeContext_getRuleIndex = $this => { - return 66; +oncie_IsNull_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$DynamicExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DynamicExpressionContext_getRuleIndex = $this => { - return 64; +oncie_IsNull_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$PathTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PathTokenContext_getRuleIndex = $this => { - return 57; +oncie_IsNull_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_IsNull) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs25; + $x$1 = $x$1.$lhs25; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_IsNull)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncipv_Cypher5Parser$GroupTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GroupTokenContext_getRuleIndex = $this => { - return 56; +oncie_IsNull__init_0 = ($this, $lhs, $position) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9; + $this.$lhs25 = $lhs; + $this.$position247 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$3 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$5 = var$4.data; + oncie_TypeSignature$_$callClinit(); + var$6 = oncie_TypeSignature$_MODULE$; + var$7 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$9 = var$8.data; + oncius_package$_$callClinit(); + var$9[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$5[0] = oncie_TypeSignature$_apply(var$6, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$8)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures16 = var$3.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$4)); }, -oncipv_Cypher5Parser$ShortestPathPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShortestPathPatternContext_getRuleIndex = $this => { - return 53; +oncie_IsNull__init_ = (var_0, var_1) => { + let var_2 = new oncie_IsNull(); + oncie_IsNull__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncia_IsNotTyped() { + let a = this; oncie_Expression.call(a); + a.$lhs31 = null; + a.$typeName3 = null; + a.$position240 = null; + a.$signatures8 = null; +} +let oncia_IsNotTyped_asCanonicalStringVal = $this => { + return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher5Parser$PatternElementContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PatternElementContext_getRuleIndex = $this => { - return 54; +oncia_IsNotTyped_isConstantForQuery = $this => { + return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$AscTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$AscTokenContext_getRuleIndex = $this => { - return 14; +oncia_IsNotTyped_lhs = $this => { + return $this.$lhs31; }, -oncipv_Cypher5Parser$DescTokenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DescTokenContext_getRuleIndex = $this => { - return 15; +oncia_IsNotTyped_typeName = $this => { + return $this.$typeName3; }, -oncipv_Cypher25Parser$Expression9Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression9Context_getRuleIndex = $this => { - return 90; +oncia_IsNotTyped_position = $this => { + return $this.$position240; }, -oncipv_Cypher25Parser$GlobRecursiveContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GlobRecursiveContext_globPart = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$GlobPartContext), 0); +oncia_IsNotTyped_signatures = $this => { + return $this.$signatures8; }, -oncipv_Cypher25Parser$GlobRecursiveContext_getRuleIndex = $this => { - return 266; +oncia_IsNotTyped_canonicalOperatorSymbol = $this => { + return $rt_s(5921); }, -oncipv_Cypher25Parser$InsertNodeLabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_IS = $this => { - return oncip_AstRuleCtx_getToken($this, 135, 0); +oncia_IsNotTyped_productPrefix = $this => { + return $rt_s(5922); }, -oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_getRuleIndex = $this => { - return 85; +oncia_IsNotTyped_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext_getRuleIndex = $this => { - return 86; +oncia_IsNotTyped_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs31; + case 1: + return $this.$typeName3; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$LiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LiteralContext_getRuleIndex = $this => { - return 106; +oncia_IsNotTyped_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$NummericLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext), -oncipv_Cypher25Parser$NummericLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IsNotTyped_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$NummericLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$NummericLiteralContext(); - oncipv_Cypher25Parser$NummericLiteralContext__init_(var_1, var_0); - return var_1; +oncia_IsNotTyped_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$StringsLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext); -let oncipv_Cypher25Parser$StringsLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IsNotTyped_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_IsNotTyped) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs31; + var$3 = $x$1.$lhs31; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$typeName3; + $x$1 = $x$1.$typeName3; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_IsNotTyped)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$StringsLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$StringsLiteralContext(); - oncipv_Cypher25Parser$StringsLiteralContext__init_(var_1, var_0); - return var_1; +oncia_IsNotTyped__init_0 = ($this, $lhs, $typeName, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs31 = $lhs; + $this.$typeName3 = $typeName; + $this.$position240 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures8 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncipv_Cypher25Parser$BooleanLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext), -oncipv_Cypher25Parser$BooleanLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IsNotTyped__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_IsNotTyped(); + oncia_IsNotTyped__init_0(var_3, var_0, var_1, var_2); + return var_3; }, -oncipv_Cypher25Parser$BooleanLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$BooleanLiteralContext(); - oncipv_Cypher25Parser$BooleanLiteralContext__init_(var_1, var_0); - return var_1; +oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0_apply0 = var$0 => { + oncie_NFCNormalForm$_$callClinit(); + return oncie_NFCNormalForm$_MODULE$; +}; +function oncia_IsNormalized() { + let a = this; oncie_Expression.call(a); + a.$lhs17 = null; + a.$normalForm2 = null; + a.$position260 = null; + a.$signatures27 = null; +} +let oncia_IsNormalized_asCanonicalStringVal = $this => { + return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$KeywordLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext), -oncipv_Cypher25Parser$KeywordLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IsNormalized_isConstantForQuery = $this => { + return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher25Parser$KeywordLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$KeywordLiteralContext(); - oncipv_Cypher25Parser$KeywordLiteralContext__init_(var_1, var_0); - return var_1; +oncia_IsNormalized_lhs = $this => { + return $this.$lhs17; }, -oncipv_Cypher25Parser$OtherLiteralContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LiteralContext), -oncipv_Cypher25Parser$OtherLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IsNormalized_normalForm = $this => { + return $this.$normalForm2; }, -oncipv_Cypher25Parser$OtherLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$OtherLiteralContext(); - oncipv_Cypher25Parser$OtherLiteralContext__init_(var_1, var_0); - return var_1; +oncia_IsNormalized_position = $this => { + return $this.$position260; }, -oncipv_Cypher25Parser$CaseExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CaseExpressionContext_getRuleIndex = $this => { - return 107; -}; -function oncipv_Cypher25Parser$ExtendedCaseExpressionContext() { - oncip_AstRuleCtx.call(this); - this.$elseExp0 = null; -} -let oncipv_Cypher25Parser$ExtendedCaseExpressionContext_getRuleIndex = $this => { - return 109; +oncia_IsNormalized_signatures = $this => { + return $this.$signatures27; +}, +oncia_IsNormalized_canonicalOperatorSymbol = $this => { + return $rt_s(5923); }, -oncipv_Cypher25Parser$CountStarContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CountStarContext_getRuleIndex = $this => { - return 123; +oncia_IsNormalized_productPrefix = $this => { + return $rt_s(5924); }, -oncipv_Cypher25Parser$ExistsExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ExistsExpressionContext_getRuleIndex = $this => { - return 124; +oncia_IsNormalized_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$CountExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CountExpressionContext_getRuleIndex = $this => { - return 125; +oncia_IsNormalized_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs17; + case 1: + return $this.$normalForm2; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$CollectExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CollectExpressionContext_getRuleIndex = $this => { - return 126; +oncia_IsNormalized_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$MapProjectionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$MapProjectionContext_getRuleIndex = $this => { - return 121; -}; -function oncipv_Cypher25Parser$ListComprehensionContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$whereExp = null; - a.$barExp = null; -} -let oncipv_Cypher25Parser$ListComprehensionContext_getRuleIndex = $this => { - return 112; +oncia_IsNormalized_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$ListLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ListLiteralContext_getRuleIndex = $this => { - return 129; -}; -function oncipv_Cypher25Parser$PatternComprehensionContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$whereExp1 = null; - a.$barExp0 = null; -} -let oncipv_Cypher25Parser$PatternComprehensionContext_variable = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); +oncia_IsNormalized_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$PatternComprehensionContext_getRuleIndex = $this => { - return 113; +oncia_IsNormalized_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_IsNormalized) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs17; + var$3 = $x$1.$lhs17; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$normalForm2; + $x$1 = $x$1.$normalForm2; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_IsNormalized)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$ReduceExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ReduceExpressionContext_getRuleIndex = $this => { - return 114; -}; -function oncipv_Cypher25Parser$ListItemsPredicateContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$inExp0 = null; - a.$whereExp4 = null; -} -let oncipv_Cypher25Parser$ListItemsPredicateContext_getRuleIndex = $this => { - return 115; +oncia_IsNormalized__init_0 = ($this, $lhs, $normalForm, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs17 = $lhs; + $this.$normalForm2 = $normalForm; + $this.$position260 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures27 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncipv_Cypher25Parser$NormalizeFunctionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NormalizeFunctionContext_getRuleIndex = $this => { - return 116; +oncia_IsNormalized__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_IsNormalized(); + oncia_IsNormalized__init_0(var_3, var_0, var_1, var_2); + return var_3; }; -function oncipv_Cypher25Parser$TrimFunctionContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$trimCharacterString = null; - a.$trimSource0 = null; +function oncia_IsNotNormalized() { + let a = this; oncie_Expression.call(a); + a.$lhs24 = null; + a.$normalForm3 = null; + a.$position251 = null; + a.$signatures21 = null; } -let oncipv_Cypher25Parser$TrimFunctionContext_getRuleIndex = $this => { - return 117; +let oncia_IsNotNormalized_asCanonicalStringVal = $this => { + return oncie_RightUnaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$PatternExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PatternExpressionContext_getRuleIndex = $this => { - return 118; +oncia_IsNotNormalized_isConstantForQuery = $this => { + return oncie_RightUnaryOperatorExpression_isConstantForQuery$($this); }, -oncipv_Cypher25Parser$ShortestPathExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ShortestPathExpressionContext_getRuleIndex = $this => { - return 119; +oncia_IsNotNormalized_lhs = $this => { + return $this.$lhs24; }, -oncipv_Cypher25Parser$ParenthesizedExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ParenthesizedExpressionContext_getRuleIndex = $this => { - return 120; +oncia_IsNotNormalized_normalForm = $this => { + return $this.$normalForm3; }, -oncipv_Cypher25Parser$NodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NodePatternContext_getRuleIndex = $this => { - return 58; +oncia_IsNotNormalized_position = $this => { + return $this.$position251; }, -oncipv_Cypher25Parser$ParenthesizedPathContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ParenthesizedPathContext_expression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); +oncia_IsNotNormalized_signatures = $this => { + return $this.$signatures21; }, -oncipv_Cypher25Parser$ParenthesizedPathContext_quantifier = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$QuantifierContext), 0); +oncia_IsNotNormalized_canonicalOperatorSymbol = $this => { + return $rt_s(5925); }, -oncipv_Cypher25Parser$ParenthesizedPathContext_getRuleIndex = $this => { - return 60; +oncia_IsNotNormalized_productPrefix = $this => { + return $rt_s(5926); }, -oncipv_Cypher25Parser$RelationshipPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$RelationshipPatternContext_getRuleIndex = $this => { - return 70; -}; -function oncipv_Cypher25Parser$QuantifierContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$from20 = null; - a.$to3 = null; -} -let oncipv_Cypher25Parser$QuantifierContext_getRuleIndex = $this => { - return 50; +oncia_IsNotNormalized_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$Expression9Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression9Context_getRuleIndex = $this => { - return 91; +oncia_IsNotNormalized_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs24; + case 1: + return $this.$normalForm3; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$GlobRecursiveContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GlobRecursiveContext_globPart = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$GlobPartContext), 0); +oncia_IsNotNormalized_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$GlobRecursiveContext_getRuleIndex = $this => { - return 272; +oncia_IsNotNormalized_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$InsertNodeLabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_IS = $this => { - return oncip_AstRuleCtx_getToken($this, 139, 0); +oncia_IsNotNormalized_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_getRuleIndex = $this => { - return 86; +oncia_IsNotNormalized_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_IsNotNormalized) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs24; + var$3 = $x$1.$lhs24; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$normalForm3; + $x$1 = $x$1.$normalForm3; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_IsNotNormalized)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext_getRuleIndex = $this => { - return 87; +oncia_IsNotNormalized__init_0 = ($this, $lhs, $normalForm, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs24 = $lhs; + $this.$normalForm3 = $normalForm; + $this.$position251 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_AnyType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures21 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncipv_Cypher5Parser$LiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LiteralContext_getRuleIndex = $this => { - return 107; +oncia_IsNotNormalized__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_IsNotNormalized(); + oncia_IsNotNormalized__init_0(var_3, var_0, var_1, var_2); + return var_3; }, -oncipv_Cypher5Parser$NummericLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), -oncipv_Cypher5Parser$NummericLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_FilteringExpression = $rt_classWithoutFields(0); +function oncie_ListComprehension() { + let a = this; oncie_Expression.call(a); + a.$scope6 = null; + a.$expression27 = null; + a.$position268 = null; + a.$name62 = null; +} +let oncie_ListComprehension_scope = $this => { + return $this.$scope6; }, -oncipv_Cypher5Parser$NummericLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$NummericLiteralContext(); - oncipv_Cypher5Parser$NummericLiteralContext__init_(var_1, var_0); - return var_1; +oncie_ListComprehension_expression = $this => { + return $this.$expression27; }, -oncipv_Cypher5Parser$StringsLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), -oncipv_Cypher5Parser$StringsLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_ListComprehension_position = $this => { + return $this.$position268; }, -oncipv_Cypher5Parser$StringsLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$StringsLiteralContext(); - oncipv_Cypher5Parser$StringsLiteralContext__init_(var_1, var_0); - return var_1; +oncie_ListComprehension_variable = $this => { + return $this.$scope6.$variable27; }, -oncipv_Cypher5Parser$BooleanLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), -oncipv_Cypher5Parser$BooleanLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_ListComprehension_innerPredicate = $this => { + return $this.$scope6.$innerPredicate0; }, -oncipv_Cypher5Parser$BooleanLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$BooleanLiteralContext(); - oncipv_Cypher5Parser$BooleanLiteralContext__init_(var_1, var_0); - return var_1; +oncie_ListComprehension_extractExpression = $this => { + return $this.$scope6.$extractExpression0; }, -oncipv_Cypher5Parser$KeywordLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), -oncipv_Cypher5Parser$KeywordLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_ListComprehension_isConstantForQuery = $this => { + return $this.$expression27.$isConstantForQuery() && s_Option_forall(oncie_ListComprehension_innerPredicate($this), new oncie_ListComprehension$isConstantForQuery$lambda$_11_0) && s_Option_forall($this.$scope6.$extractExpression0, new oncie_ListComprehension$isConstantForQuery$lambda$_11_1) ? 1 : 0; }, -oncipv_Cypher5Parser$KeywordLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$KeywordLiteralContext(); - oncipv_Cypher5Parser$KeywordLiteralContext__init_(var_1, var_0); - return var_1; +oncie_ListComprehension_productPrefix = $this => { + return $rt_s(5927); }, -oncipv_Cypher5Parser$OtherLiteralContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LiteralContext), -oncipv_Cypher5Parser$OtherLiteralContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_ListComprehension_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$OtherLiteralContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$OtherLiteralContext(); - oncipv_Cypher5Parser$OtherLiteralContext__init_(var_1, var_0); - return var_1; +oncie_ListComprehension_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$scope6; + case 1: + return $this.$expression27; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$CaseExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CaseExpressionContext_getRuleIndex = $this => { - return 108; -}; -function oncipv_Cypher5Parser$ExtendedCaseExpressionContext() { - oncip_AstRuleCtx.call(this); - this.$elseExp = null; -} -let oncipv_Cypher5Parser$ExtendedCaseExpressionContext_getRuleIndex = $this => { - return 110; +oncie_ListComprehension_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$CountStarContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CountStarContext_getRuleIndex = $this => { - return 124; +oncie_ListComprehension_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ExistsExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ExistsExpressionContext_getRuleIndex = $this => { - return 125; +oncie_ListComprehension_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$CountExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CountExpressionContext_getRuleIndex = $this => { - return 126; +oncie_ListComprehension_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ListComprehension) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$scope6; + var$3 = $x$1.$scope6; + if (var$2 !== null) { + if (!oncie_ExtractScope_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$expression27; + $x$1 = $x$1.$expression27; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_ListComprehension)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$CollectExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CollectExpressionContext_getRuleIndex = $this => { - return 127; +oncie_ListComprehension__init_0 = ($this, $scope, $expression, $position) => { + $this.$scope6 = $scope; + $this.$expression27 = $expression; + $this.$position268 = $position; + oncie_Expression__init_($this); + $this.$name62 = $rt_s(5928); }, -oncipv_Cypher5Parser$MapProjectionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$MapProjectionContext_getRuleIndex = $this => { - return 122; +oncie_ListComprehension__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_ListComprehension(); + oncie_ListComprehension__init_0(var_3, var_0, var_1, var_2); + return var_3; }; -function oncipv_Cypher5Parser$ListComprehensionContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$whereExp0 = null; - a.$barExp2 = null; +function oncie_ExtractScope() { + let a = this; oncie_Expression.call(a); + a.$variable27 = null; + a.$innerPredicate0 = null; + a.$extractExpression0 = null; + a.$position206 = null; + a.$introducedVariables1 = null; } -let oncipv_Cypher5Parser$ListComprehensionContext_getRuleIndex = $this => { - return 113; +let oncie_ExtractScope_dependencies = $this => { + return $this.$scopeDependencies(); }, -oncipv_Cypher5Parser$ListLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ListLiteralContext_getRuleIndex = $this => { - return 130; -}; -function oncipv_Cypher5Parser$PatternComprehensionContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$whereExp2 = null; - a.$barExp1 = null; -} -let oncipv_Cypher5Parser$PatternComprehensionContext_variable = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); +oncie_ExtractScope_isConstantForQuery = $this => { + return 0; }, -oncipv_Cypher5Parser$PatternComprehensionContext_getRuleIndex = $this => { - return 114; +oncie_ExtractScope_variable = $this => { + return $this.$variable27; }, -oncipv_Cypher5Parser$ReduceExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ReduceExpressionContext_getRuleIndex = $this => { - return 115; -}; -function oncipv_Cypher5Parser$ListItemsPredicateContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$inExp = null; - a.$whereExp3 = null; -} -let oncipv_Cypher5Parser$ListItemsPredicateContext_getRuleIndex = $this => { - return 116; +oncie_ExtractScope_innerPredicate = $this => { + return $this.$innerPredicate0; }, -oncipv_Cypher5Parser$NormalizeFunctionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NormalizeFunctionContext_getRuleIndex = $this => { - return 117; -}; -function oncipv_Cypher5Parser$TrimFunctionContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$trimCharacterString0 = null; - a.$trimSource = null; -} -let oncipv_Cypher5Parser$TrimFunctionContext_getRuleIndex = $this => { - return 118; +oncie_ExtractScope_extractExpression = $this => { + return $this.$extractExpression0; }, -oncipv_Cypher5Parser$PatternExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PatternExpressionContext_getRuleIndex = $this => { - return 119; +oncie_ExtractScope_position = $this => { + return $this.$position206; }, -oncipv_Cypher5Parser$ShortestPathExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ShortestPathExpressionContext_getRuleIndex = $this => { - return 120; +oncie_ExtractScope_introducedVariables = $this => { + return $this.$introducedVariables1; }, -oncipv_Cypher5Parser$ParenthesizedExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ParenthesizedExpressionContext_getRuleIndex = $this => { - return 121; +oncie_ExtractScope_scopeDependencies = $this => { + return ((s_Option_fold($this.$innerPredicate0, new oncie_ExtractScope$scopeDependencies$lambda$_9_0, new oncie_ExtractScope$scopeDependencies$lambda$_9_1)).$concat1(s_Option_fold($this.$extractExpression0, new oncie_ExtractScope$scopeDependencies$lambda$_9_2, new oncie_ExtractScope$scopeDependencies$lambda$_9_3))).$removedAll($this.$introducedVariables1); }, -oncipv_Cypher5Parser$NodePatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NodePatternContext_getRuleIndex = $this => { - return 59; +oncie_ExtractScope_productPrefix = $this => { + return $rt_s(5929); }, -oncipv_Cypher5Parser$ParenthesizedPathContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ParenthesizedPathContext_expression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); +oncie_ExtractScope_productArity = $this => { + return 3; }, -oncipv_Cypher5Parser$ParenthesizedPathContext_quantifier = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$QuantifierContext), 0); +oncie_ExtractScope_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable27; + case 1: + return $this.$innerPredicate0; + case 2: + return $this.$extractExpression0; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ParenthesizedPathContext_getRuleIndex = $this => { - return 61; +oncie_ExtractScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$RelationshipPatternContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$RelationshipPatternContext_getRuleIndex = $this => { - return 71; -}; -function oncipv_Cypher5Parser$QuantifierContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$from21 = null; - a.$to4 = null; -} -let oncipv_Cypher5Parser$QuantifierContext_getRuleIndex = $this => { - return 51; +oncie_ExtractScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$Expression8Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression8Context_getRuleIndex = $this => { - return 91; +oncie_ExtractScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$GlobPartContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$GlobPartContext_DOT = $this => { - return oncip_AstRuleCtx_getToken($this, 79, 0); +oncie_ExtractScope_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ExtractScope) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable27; + var$3 = $x$1.$variable27; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$innerPredicate0; + var$3 = $x$1.$innerPredicate0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$extractExpression0; + $x$1 = $x$1.$extractExpression0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_ExtractScope)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$GlobPartContext_escapedSymbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$EscapedSymbolicNameStringContext), 0); +oncie_ExtractScope__init_0 = ($this, $variable, $innerPredicate, $extractExpression, $position) => { + let var$5; + $this.$variable27 = $variable; + $this.$innerPredicate0 = $innerPredicate; + $this.$extractExpression0 = $extractExpression; + $this.$position206 = $position; + oncie_Expression__init_($this); + s_Predef$_$callClinit(); + $extractExpression = s_Predef$_Set(s_Predef$_MODULE$); + $innerPredicate = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_LogicalVariable, 1); + var$5.data[0] = $variable; + $this.$introducedVariables1 = $extractExpression.$from0(sr_ScalaRunTime$_wrapRefArray($innerPredicate, var$5)); }, -oncipv_Cypher25Parser$GlobPartContext_getRuleIndex = $this => { - return 267; +oncie_ExtractScope__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncie_ExtractScope(); + oncie_ExtractScope__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; }, -oncipv_Cypher25Parser$NumberLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NumberLiteralContext_getRuleIndex = $this => { - return 127; +oncie_IterablePredicateExpression = $rt_classWithoutFields(0), +oncie_IterablePredicateExpression_variable$ = $$this => { + return ($$this.$scope()).$variable22; }, -oncipv_Cypher25Parser$CaseAlternativeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$CaseAlternativeContext_getRuleIndex = $this => { - return 108; +oncie_IterablePredicateExpression_innerPredicate$ = $$this => { + return ($$this.$scope()).$innerPredicate1; }, -oncipv_Cypher25Parser$ExtendedCaseAlternativeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ExtendedCaseAlternativeContext_getRuleIndex = $this => { - return 110; +oncie_IterablePredicateExpression_asCanonicalStringVal$ = $$this => { + let var$2, var$3, var$4, var$5; + var$2 = s_Option_getOrElse(s_Option_map($$this.$innerPredicate(), new oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0), new oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1); + var$3 = $$this.$name(); + var$4 = ($$this.$variable0()).$name4; + $$this = ($$this.$expression0()).$asCanonicalStringVal(); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + var$3 = jl_StringBuilder_append(var$5, var$3); + jl_AbstractStringBuilder_append0(var$3, 40); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$4), $rt_s(5930)), $$this), var$2); + return jl_AbstractStringBuilder_toString(var$5); }, -oncipv_Cypher25Parser$MapProjectionElementContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$MapProjectionElementContext_getRuleIndex = $this => { - return 122; +oncie_IterablePredicateExpression_isConstantForQuery$ = $$this => { + return ($$this.$expression0()).$isConstantForQuery() && s_Option_forall($$this.$innerPredicate(), new oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0) ? 1 : 0; +}; +function oncie_AllIterablePredicate() { + let a = this; oncie_Expression.call(a); + a.$scope16 = null; + a.$expression39 = null; + a.$position220 = null; + a.$name56 = null; +} +let oncie_AllIterablePredicate_variable = $this => { + return oncie_IterablePredicateExpression_variable$($this); }, -oncipv_Cypher25Parser$PathPatternNonEmptyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PathPatternNonEmptyContext_getRuleIndex = $this => { - return 57; +oncie_AllIterablePredicate_innerPredicate = $this => { + return oncie_IterablePredicateExpression_innerPredicate$($this); }, -oncipv_Cypher25Parser$NormalFormContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$NormalFormContext_getRuleIndex = $this => { - return 94; +oncie_AllIterablePredicate_asCanonicalStringVal = $this => { + return oncie_IterablePredicateExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$LabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpressionContext_getRuleIndex = $this => { - return 76; +oncie_AllIterablePredicate_isConstantForQuery = $this => { + return oncie_IterablePredicateExpression_isConstantForQuery$($this); }, -oncipv_Cypher25Parser$PropertiesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PropertiesContext_getRuleIndex = $this => { - return 69; -}; -function oncipv_Cypher25Parser$PathLengthContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$from22 = null; - a.$to6 = null; - a.$single1 = null; -} -let oncipv_Cypher25Parser$PathLengthContext_getRuleIndex = $this => { - return 75; +oncie_AllIterablePredicate_scope = $this => { + return $this.$scope16; }, -oncipv_Cypher5Parser$Expression8Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression8Context_getRuleIndex = $this => { - return 92; +oncie_AllIterablePredicate_expression = $this => { + return $this.$expression39; }, -oncipv_Cypher5Parser$GlobPartContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$GlobPartContext_DOT = $this => { - return oncip_AstRuleCtx_getToken($this, 83, 0); +oncie_AllIterablePredicate_position = $this => { + return $this.$position220; }, -oncipv_Cypher5Parser$GlobPartContext_escapedSymbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$EscapedSymbolicNameStringContext), 0); +oncie_AllIterablePredicate_name = $this => { + return $this.$name56; }, -oncipv_Cypher5Parser$GlobPartContext_getRuleIndex = $this => { - return 273; +oncie_AllIterablePredicate_productPrefix = $this => { + return $rt_s(5931); }, -oncipv_Cypher5Parser$NumberLiteralContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NumberLiteralContext_getRuleIndex = $this => { - return 128; +oncie_AllIterablePredicate_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$CaseAlternativeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$CaseAlternativeContext_getRuleIndex = $this => { - return 109; +oncie_AllIterablePredicate_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$scope16; + case 1: + return $this.$expression39; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ExtendedCaseAlternativeContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ExtendedCaseAlternativeContext_getRuleIndex = $this => { - return 111; +oncie_AllIterablePredicate_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$MapProjectionElementContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$MapProjectionElementContext_getRuleIndex = $this => { - return 123; +oncie_AllIterablePredicate_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$PathPatternNonEmptyContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PathPatternNonEmptyContext_getRuleIndex = $this => { - return 58; +oncie_AllIterablePredicate_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$NormalFormContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$NormalFormContext_getRuleIndex = $this => { - return 95; +oncie_AllIterablePredicate_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_AllIterablePredicate) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$scope16; + var$3 = $x$1.$scope16; + if (var$2 !== null) { + if (!oncie_FilterScope_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$expression39; + $x$1 = $x$1.$expression39; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_AllIterablePredicate)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$LabelExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelExpressionContext_getRuleIndex = $this => { - return 77; +oncie_AllIterablePredicate__init_0 = ($this, $scope, $expression, $position) => { + $this.$scope16 = $scope; + $this.$expression39 = $expression; + $this.$position220 = $position; + oncie_Expression__init_($this); + oncie_AllIterablePredicate$_$callClinit(); + $this.$name56 = oncie_AllIterablePredicate$_name; }, -oncipv_Cypher5Parser$PropertiesContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PropertiesContext_getRuleIndex = $this => { - return 70; +oncie_AllIterablePredicate__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_AllIterablePredicate(); + oncie_AllIterablePredicate__init_0(var_3, var_0, var_1, var_2); + return var_3; }; -function oncipv_Cypher5Parser$PathLengthContext() { - let a = this; oncip_AstRuleCtx.call(a); - a.$from23 = null; - a.$to5 = null; - a.$single2 = null; +function oncie_FilterScope() { + let a = this; oncie_Expression.call(a); + a.$variable22 = null; + a.$innerPredicate1 = null; + a.$position253 = null; + a.$introducedVariables2 = null; } -let oncipv_Cypher5Parser$PathLengthContext_getRuleIndex = $this => { - return 76; +let oncie_FilterScope_dependencies = $this => { + return $this.$scopeDependencies(); }, -oncipv_Cypher25Parser$Expression7Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression7Context_getRuleIndex = $this => { - return 92; +oncie_FilterScope_isConstantForQuery = $this => { + return 0; }, -oncipv_Cypher25Parser$ExtendedWhenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ExtendedWhenContext_getRuleIndex = $this => { - return 111; +oncie_FilterScope_position = $this => { + return $this.$position253; }, -oncipv_Cypher25Parser$WhenStringOrListContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), -oncipv_Cypher25Parser$WhenStringOrListContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_FilterScope_introducedVariables = $this => { + return $this.$introducedVariables2; }, -oncipv_Cypher25Parser$WhenStringOrListContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$WhenStringOrListContext(); - oncipv_Cypher25Parser$WhenStringOrListContext__init_(var_1, var_0); - return var_1; +oncie_FilterScope_scopeDependencies = $this => { + return (s_Option_fold($this.$innerPredicate1, new oncie_FilterScope$scopeDependencies$lambda$_8_0, new oncie_FilterScope$scopeDependencies$lambda$_8_1)).$removedAll($this.$introducedVariables2); }, -oncipv_Cypher25Parser$WhenNullContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), -oncipv_Cypher25Parser$WhenNullContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_FilterScope_productPrefix = $this => { + return $rt_s(5932); }, -oncipv_Cypher25Parser$WhenNullContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$WhenNullContext(); - oncipv_Cypher25Parser$WhenNullContext__init_(var_1, var_0); - return var_1; +oncie_FilterScope_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$WhenTypeContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), -oncipv_Cypher25Parser$WhenTypeContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_FilterScope_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable22; + case 1: + return $this.$innerPredicate1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$WhenTypeContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$WhenTypeContext(); - oncipv_Cypher25Parser$WhenTypeContext__init_(var_1, var_0); - return var_1; +oncie_FilterScope_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$WhenFormContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), -oncipv_Cypher25Parser$WhenFormContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_FilterScope_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$WhenFormContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$WhenFormContext(); - oncipv_Cypher25Parser$WhenFormContext__init_(var_1, var_0); - return var_1; +oncie_FilterScope_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$WhenComparatorContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), -oncipv_Cypher25Parser$WhenComparatorContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_FilterScope_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_FilterScope) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable22; + var$3 = $x$1.$variable22; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$innerPredicate1; + $x$1 = $x$1.$innerPredicate1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_FilterScope)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$WhenComparatorContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$WhenComparatorContext(); - oncipv_Cypher25Parser$WhenComparatorContext__init_(var_1, var_0); - return var_1; +oncie_FilterScope__init_0 = ($this, $variable, $innerPredicate, $position) => { + let var$4; + $this.$variable22 = $variable; + $this.$innerPredicate1 = $innerPredicate; + $this.$position253 = $position; + oncie_Expression__init_($this); + s_Predef$_$callClinit(); + $position = s_Predef$_Set(s_Predef$_MODULE$); + $innerPredicate = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncie_LogicalVariable, 1); + var$4.data[0] = $variable; + $this.$introducedVariables2 = $position.$from0(sr_ScalaRunTime$_wrapRefArray($innerPredicate, var$4)); }, -oncipv_Cypher25Parser$WhenEqualsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ExtendedWhenContext), -oncipv_Cypher25Parser$WhenEqualsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_FilterScope__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_FilterScope(); + oncie_FilterScope__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_AnyIterablePredicate() { + let a = this; oncie_Expression.call(a); + a.$scope13 = null; + a.$expression37 = null; + a.$position207 = null; + a.$name52 = null; +} +let oncie_AnyIterablePredicate_variable = $this => { + return oncie_IterablePredicateExpression_variable$($this); }, -oncipv_Cypher25Parser$WhenEqualsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$WhenEqualsContext(); - oncipv_Cypher25Parser$WhenEqualsContext__init_(var_1, var_0); - return var_1; +oncie_AnyIterablePredicate_innerPredicate = $this => { + return oncie_IterablePredicateExpression_innerPredicate$($this); }, -oncipv_Cypher25Parser$LabelExpression4Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpression4Context_getRuleIndex = $this => { - return 77; +oncie_AnyIterablePredicate_asCanonicalStringVal = $this => { + return oncie_IterablePredicateExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$LabelExpression4IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpression4IsContext_getRuleIndex = $this => { - return 78; +oncie_AnyIterablePredicate_isConstantForQuery = $this => { + return oncie_IterablePredicateExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$Expression7Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression7Context_getRuleIndex = $this => { - return 93; +oncie_AnyIterablePredicate_scope = $this => { + return $this.$scope13; }, -oncipv_Cypher5Parser$ExtendedWhenContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ExtendedWhenContext_getRuleIndex = $this => { - return 112; +oncie_AnyIterablePredicate_expression = $this => { + return $this.$expression37; }, -oncipv_Cypher5Parser$WhenStringOrListContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), -oncipv_Cypher5Parser$WhenStringOrListContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_AnyIterablePredicate_position = $this => { + return $this.$position207; }, -oncipv_Cypher5Parser$WhenStringOrListContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$WhenStringOrListContext(); - oncipv_Cypher5Parser$WhenStringOrListContext__init_(var_1, var_0); - return var_1; +oncie_AnyIterablePredicate_name = $this => { + return $this.$name52; }, -oncipv_Cypher5Parser$WhenNullContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), -oncipv_Cypher5Parser$WhenNullContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_AnyIterablePredicate_productPrefix = $this => { + return $rt_s(5933); +}, +oncie_AnyIterablePredicate_productArity = $this => { + return 2; +}, +oncie_AnyIterablePredicate_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$scope13; + case 1: + return $this.$expression37; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncie_AnyIterablePredicate_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_AnyIterablePredicate_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$WhenNullContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$WhenNullContext(); - oncipv_Cypher5Parser$WhenNullContext__init_(var_1, var_0); - return var_1; +oncie_AnyIterablePredicate_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$WhenTypeContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), -oncipv_Cypher5Parser$WhenTypeContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_AnyIterablePredicate_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_AnyIterablePredicate) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$scope13; + var$3 = $x$1.$scope13; + if (var$2 !== null) { + if (!oncie_FilterScope_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$expression37; + $x$1 = $x$1.$expression37; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_AnyIterablePredicate)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$WhenTypeContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$WhenTypeContext(); - oncipv_Cypher5Parser$WhenTypeContext__init_(var_1, var_0); - return var_1; +oncie_AnyIterablePredicate__init_0 = ($this, $scope, $expression, $position) => { + $this.$scope13 = $scope; + $this.$expression37 = $expression; + $this.$position207 = $position; + oncie_Expression__init_($this); + oncie_AnyIterablePredicate$_$callClinit(); + $this.$name52 = oncie_AnyIterablePredicate$_name; }, -oncipv_Cypher5Parser$WhenFormContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), -oncipv_Cypher5Parser$WhenFormContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_AnyIterablePredicate__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_AnyIterablePredicate(); + oncie_AnyIterablePredicate__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_NoneIterablePredicate() { + let a = this; oncie_Expression.call(a); + a.$scope15 = null; + a.$expression38 = null; + a.$position208 = null; + a.$name53 = null; +} +let oncie_NoneIterablePredicate_variable = $this => { + return oncie_IterablePredicateExpression_variable$($this); }, -oncipv_Cypher5Parser$WhenFormContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$WhenFormContext(); - oncipv_Cypher5Parser$WhenFormContext__init_(var_1, var_0); - return var_1; +oncie_NoneIterablePredicate_innerPredicate = $this => { + return oncie_IterablePredicateExpression_innerPredicate$($this); }, -oncipv_Cypher5Parser$WhenComparatorContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), -oncipv_Cypher5Parser$WhenComparatorContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_NoneIterablePredicate_asCanonicalStringVal = $this => { + return oncie_IterablePredicateExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher5Parser$WhenComparatorContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$WhenComparatorContext(); - oncipv_Cypher5Parser$WhenComparatorContext__init_(var_1, var_0); - return var_1; +oncie_NoneIterablePredicate_isConstantForQuery = $this => { + return oncie_IterablePredicateExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$WhenEqualsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ExtendedWhenContext), -oncipv_Cypher5Parser$WhenEqualsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_NoneIterablePredicate_scope = $this => { + return $this.$scope15; }, -oncipv_Cypher5Parser$WhenEqualsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$WhenEqualsContext(); - oncipv_Cypher5Parser$WhenEqualsContext__init_(var_1, var_0); - return var_1; +oncie_NoneIterablePredicate_expression = $this => { + return $this.$expression38; }, -oncipv_Cypher5Parser$LabelExpression4Context = $rt_classWithoutFields(oncip_AstRuleCtx); -let oncipv_Cypher5Parser$LabelExpression4Context_getRuleIndex = $this => { - return 78; +oncie_NoneIterablePredicate_position = $this => { + return $this.$position208; }, -oncipv_Cypher5Parser$LabelExpression4IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelExpression4IsContext_getRuleIndex = $this => { - return 79; +oncie_NoneIterablePredicate_name = $this => { + return $this.$name53; }, -oncipv_Cypher25Parser$ComparisonExpression6Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$ComparisonExpression6Context_getRuleIndex = $this => { - return 93; +oncie_NoneIterablePredicate_productPrefix = $this => { + return $rt_s(5934); }, -oncipv_Cypher25Parser$StringAndListComparisonContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ComparisonExpression6Context), -oncipv_Cypher25Parser$StringAndListComparisonContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_NoneIterablePredicate_productArity = $this => { + return 2; }, -oncipv_Cypher25Parser$StringAndListComparisonContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$StringAndListComparisonContext(); - oncipv_Cypher25Parser$StringAndListComparisonContext__init_(var_1, var_0); - return var_1; +oncie_NoneIterablePredicate_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$scope15; + case 1: + return $this.$expression38; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$NullComparisonContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ComparisonExpression6Context), -oncipv_Cypher25Parser$NullComparisonContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_NoneIterablePredicate_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$NullComparisonContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$NullComparisonContext(); - oncipv_Cypher25Parser$NullComparisonContext__init_(var_1, var_0); - return var_1; +oncie_NoneIterablePredicate_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$TypeComparisonContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ComparisonExpression6Context), -oncipv_Cypher25Parser$TypeComparisonContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_NoneIterablePredicate_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$TypeComparisonContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$TypeComparisonContext(); - oncipv_Cypher25Parser$TypeComparisonContext__init_(var_1, var_0); - return var_1; +oncie_NoneIterablePredicate_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_NoneIterablePredicate) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$scope15; + var$3 = $x$1.$scope15; + if (var$2 !== null) { + if (!oncie_FilterScope_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$expression38; + $x$1 = $x$1.$expression38; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_NoneIterablePredicate)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher25Parser$NormalFormComparisonContext = $rt_classWithoutFields(oncipv_Cypher25Parser$ComparisonExpression6Context), -oncipv_Cypher25Parser$NormalFormComparisonContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_NoneIterablePredicate__init_0 = ($this, $scope, $expression, $position) => { + $this.$scope15 = $scope; + $this.$expression38 = $expression; + $this.$position208 = $position; + oncie_Expression__init_($this); + oncie_NoneIterablePredicate$_$callClinit(); + $this.$name53 = oncie_NoneIterablePredicate$_name; }, -oncipv_Cypher25Parser$NormalFormComparisonContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$NormalFormComparisonContext(); - oncipv_Cypher25Parser$NormalFormComparisonContext__init_(var_1, var_0); - return var_1; +oncie_NoneIterablePredicate__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_NoneIterablePredicate(); + oncie_NoneIterablePredicate__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_SingleIterablePredicate() { + let a = this; oncie_Expression.call(a); + a.$scope11 = null; + a.$expression41 = null; + a.$position212 = null; + a.$name58 = null; +} +let oncie_SingleIterablePredicate_variable = $this => { + return oncie_IterablePredicateExpression_variable$($this); }, -oncipv_Cypher25Parser$Expression6Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression6Context_getRuleIndex = $this => { - return 95; +oncie_SingleIterablePredicate_innerPredicate = $this => { + return oncie_IterablePredicateExpression_innerPredicate$($this); }, -oncipv_Cypher25Parser$LabelExpression3Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpression3Context_getRuleIndex = $this => { - return 79; +oncie_SingleIterablePredicate_asCanonicalStringVal = $this => { + return oncie_IterablePredicateExpression_asCanonicalStringVal$($this); }, -oncipv_Cypher25Parser$LabelExpression3IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpression3IsContext_getRuleIndex = $this => { - return 80; +oncie_SingleIterablePredicate_isConstantForQuery = $this => { + return oncie_IterablePredicateExpression_isConstantForQuery$($this); }, -oncipv_Cypher5Parser$ComparisonExpression6Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$ComparisonExpression6Context_getRuleIndex = $this => { - return 94; +oncie_SingleIterablePredicate_scope = $this => { + return $this.$scope11; }, -oncipv_Cypher5Parser$StringAndListComparisonContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ComparisonExpression6Context), -oncipv_Cypher5Parser$StringAndListComparisonContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_SingleIterablePredicate_expression = $this => { + return $this.$expression41; }, -oncipv_Cypher5Parser$StringAndListComparisonContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$StringAndListComparisonContext(); - oncipv_Cypher5Parser$StringAndListComparisonContext__init_(var_1, var_0); - return var_1; +oncie_SingleIterablePredicate_position = $this => { + return $this.$position212; }, -oncipv_Cypher5Parser$NullComparisonContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ComparisonExpression6Context), -oncipv_Cypher5Parser$NullComparisonContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_SingleIterablePredicate_name = $this => { + return $this.$name58; }, -oncipv_Cypher5Parser$NullComparisonContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$NullComparisonContext(); - oncipv_Cypher5Parser$NullComparisonContext__init_(var_1, var_0); - return var_1; +oncie_SingleIterablePredicate_productPrefix = $this => { + return $rt_s(5935); }, -oncipv_Cypher5Parser$TypeComparisonContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ComparisonExpression6Context), -oncipv_Cypher5Parser$TypeComparisonContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_SingleIterablePredicate_productArity = $this => { + return 2; }, -oncipv_Cypher5Parser$TypeComparisonContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$TypeComparisonContext(); - oncipv_Cypher5Parser$TypeComparisonContext__init_(var_1, var_0); - return var_1; +oncie_SingleIterablePredicate_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$scope11; + case 1: + return $this.$expression41; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$NormalFormComparisonContext = $rt_classWithoutFields(oncipv_Cypher5Parser$ComparisonExpression6Context), -oncipv_Cypher5Parser$NormalFormComparisonContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncie_SingleIterablePredicate_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$NormalFormComparisonContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$NormalFormComparisonContext(); - oncipv_Cypher5Parser$NormalFormComparisonContext__init_(var_1, var_0); - return var_1; +oncie_SingleIterablePredicate_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$Expression6Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression6Context_getRuleIndex = $this => { - return 96; +oncie_SingleIterablePredicate_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$LabelExpression3Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelExpression3Context_getRuleIndex = $this => { - return 80; +oncie_SingleIterablePredicate_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_SingleIterablePredicate) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$scope11; + var$3 = $x$1.$scope11; + if (var$2 !== null) { + if (!oncie_FilterScope_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$expression41; + $x$1 = $x$1.$expression41; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_SingleIterablePredicate)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipv_Cypher5Parser$LabelExpression3IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelExpression3IsContext_getRuleIndex = $this => { - return 81; +oncie_SingleIterablePredicate__init_0 = ($this, $scope, $expression, $position) => { + $this.$scope11 = $scope; + $this.$expression41 = $expression; + $this.$position212 = $position; + oncie_Expression__init_($this); + oncie_SingleIterablePredicate$_$callClinit(); + $this.$name58 = oncie_SingleIterablePredicate$_name; }, -oncipv_Cypher25Parser$Expression5Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression5Context_getRuleIndex = $this => { - return 96; +oncie_SingleIterablePredicate__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_SingleIterablePredicate(); + oncie_SingleIterablePredicate__init_0(var_3, var_0, var_1, var_2); + return var_3; }, -oncipv_Cypher25Parser$LabelExpression2Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpression2Context_getRuleIndex = $this => { - return 81; +oncief_Function$ = $rt_classWithoutFields(), +oncief_Function$_MODULE$ = null, +oncief_Function$_lookup = null, +oncief_Function$_knownFunctions = null, +oncief_Function$_bitmap$0 = 0, +oncief_Function$_$callClinit = () => { + oncief_Function$_$callClinit = $rt_eraseClinit(oncief_Function$); + oncief_Function$__clinit_(); }, -oncipv_Cypher25Parser$LabelExpression2IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpression2IsContext_getRuleIndex = $this => { - return 82; +oncief_Function$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5; + oncief_Function$_MODULE$ = oncief_Function$__init_(); + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncief_Function, 98); + var$4 = var$3.data; + oncief_Abs$_$callClinit(); + var$4[0] = oncief_Abs$_MODULE$; + oncief_Acos$_$callClinit(); + var$4[1] = oncief_Acos$_MODULE$; + oncief_Asin$_$callClinit(); + var$4[2] = oncief_Asin$_MODULE$; + oncief_Atan$_$callClinit(); + var$4[3] = oncief_Atan$_MODULE$; + oncief_Atan2$_$callClinit(); + var$4[4] = oncief_Atan2$_MODULE$; + oncief_Avg$_$callClinit(); + var$4[5] = oncief_Avg$_MODULE$; + oncief_BTrim$_$callClinit(); + var$4[6] = oncief_BTrim$_MODULE$; + oncief_Ceil$_$callClinit(); + var$5 = oncief_Ceil$_MODULE$; + var$4[7] = var$5; + oncief_CharLength$_$callClinit(); + var$4[8] = oncief_CharLength$_MODULE$; + oncief_CharacterLength$_$callClinit(); + var$4[9] = oncief_CharacterLength$_MODULE$; + oncief_Coalesce$_$callClinit(); + var$4[10] = oncief_Coalesce$_MODULE$; + oncief_Collect$_$callClinit(); + var$4[11] = oncief_Collect$_MODULE$; + var$4[12] = var$5; + oncief_Cos$_$callClinit(); + var$4[13] = oncief_Cos$_MODULE$; + oncief_Cot$_$callClinit(); + var$4[14] = oncief_Cot$_MODULE$; + oncief_Count$_$callClinit(); + var$4[15] = oncief_Count$_MODULE$; + oncief_Degrees$_$callClinit(); + var$4[16] = oncief_Degrees$_MODULE$; + oncief_Distance$_$callClinit(); + var$4[17] = oncief_Distance$_MODULE$; + oncief_E$_$callClinit(); + var$4[18] = oncief_E$_MODULE$; + oncief_ElementId$_$callClinit(); + var$4[19] = oncief_ElementId$_MODULE$; + oncief_EndNode$_$callClinit(); + var$4[20] = oncief_EndNode$_MODULE$; + oncief_Exists$_$callClinit(); + var$4[21] = oncief_Exists$_MODULE$; + oncief_Exp$_$callClinit(); + var$4[22] = oncief_Exp$_MODULE$; + oncief_File$_$callClinit(); + var$4[23] = oncief_File$_MODULE$; + oncief_Floor$_$callClinit(); + var$4[24] = oncief_Floor$_MODULE$; + oncief_GraphByName$_$callClinit(); + var$4[25] = oncief_GraphByName$_MODULE$; + oncief_GraphByElementId$_$callClinit(); + var$4[26] = oncief_GraphByElementId$_MODULE$; + oncief_Haversin$_$callClinit(); + var$4[27] = oncief_Haversin$_MODULE$; + oncief_Head$_$callClinit(); + var$4[28] = oncief_Head$_MODULE$; + oncief_Id$_$callClinit(); + var$4[29] = oncief_Id$_MODULE$; + oncief_IsEmpty$_$callClinit(); + var$4[30] = oncief_IsEmpty$_MODULE$; + oncief_IsNaN$_$callClinit(); + var$4[31] = oncief_IsNaN$_MODULE$; + oncief_Labels$_$callClinit(); + var$4[32] = oncief_Labels$_MODULE$; + oncief_Last$_$callClinit(); + var$4[33] = oncief_Last$_MODULE$; + oncief_Left$_$callClinit(); + var$4[34] = oncief_Left$_MODULE$; + oncief_Length$_$callClinit(); + var$4[35] = oncief_Length$_MODULE$; + oncief_Linenumber$_$callClinit(); + var$4[36] = oncief_Linenumber$_MODULE$; + oncief_Log$_$callClinit(); + var$4[37] = oncief_Log$_MODULE$; + oncief_Log10$_$callClinit(); + var$4[38] = oncief_Log10$_MODULE$; + oncief_Lower$_$callClinit(); + var$4[39] = oncief_Lower$_MODULE$; + oncief_LTrim$_$callClinit(); + var$4[40] = oncief_LTrim$_MODULE$; + oncief_Max$_$callClinit(); + var$4[41] = oncief_Max$_MODULE$; + oncief_Min$_$callClinit(); + var$4[42] = oncief_Min$_MODULE$; + oncief_Nodes$_$callClinit(); + var$4[43] = oncief_Nodes$_MODULE$; + oncief_Normalize$_$callClinit(); + var$4[44] = oncief_Normalize$_MODULE$; + oncief_NullIf$_$callClinit(); + var$4[45] = oncief_NullIf$_MODULE$; + oncief_Pi$_$callClinit(); + var$4[46] = oncief_Pi$_MODULE$; + oncief_PercentileCont$_$callClinit(); + var$4[47] = oncief_PercentileCont$_MODULE$; + oncief_PercentileDisc$_$callClinit(); + var$4[48] = oncief_PercentileDisc$_MODULE$; + oncief_Percentiles$_$callClinit(); + var$4[49] = oncief_Percentiles$_MODULE$; + oncief_Point$_$callClinit(); + var$4[50] = oncief_Point$_MODULE$; + oncief_Keys$_$callClinit(); + var$4[51] = oncief_Keys$_MODULE$; + oncief_Radians$_$callClinit(); + var$4[52] = oncief_Radians$_MODULE$; + oncief_Rand$_$callClinit(); + var$4[53] = oncief_Rand$_MODULE$; + oncief_RandomUUID$_$callClinit(); + var$4[54] = oncief_RandomUUID$_MODULE$; + oncief_Range$_$callClinit(); + var$4[55] = oncief_Range$_MODULE$; + oncief_Reduce$_$callClinit(); + var$4[56] = oncief_Reduce$_MODULE$; + oncief_Relationships$_$callClinit(); + var$4[57] = oncief_Relationships$_MODULE$; + oncief_Replace$_$callClinit(); + var$4[58] = oncief_Replace$_MODULE$; + oncief_Reverse$_$callClinit(); + var$4[59] = oncief_Reverse$_MODULE$; + oncief_Right$_$callClinit(); + var$4[60] = oncief_Right$_MODULE$; + oncief_Round$_$callClinit(); + var$4[61] = oncief_Round$_MODULE$; + oncief_RTrim$_$callClinit(); + var$4[62] = oncief_RTrim$_MODULE$; + oncief_Sign$_$callClinit(); + var$4[63] = oncief_Sign$_MODULE$; + oncief_Sin$_$callClinit(); + var$4[64] = oncief_Sin$_MODULE$; + oncief_Size$_$callClinit(); + var$4[65] = oncief_Size$_MODULE$; + oncief_Sqrt$_$callClinit(); + var$4[66] = oncief_Sqrt$_MODULE$; + oncief_Split$_$callClinit(); + var$4[67] = oncief_Split$_MODULE$; + oncief_StartNode$_$callClinit(); + var$4[68] = oncief_StartNode$_MODULE$; + oncief_StdDev$_$callClinit(); + var$4[69] = oncief_StdDev$_MODULE$; + oncief_StdDevP$_$callClinit(); + var$4[70] = oncief_StdDevP$_MODULE$; + oncief_Substring$_$callClinit(); + var$4[71] = oncief_Substring$_MODULE$; + oncief_Sum$_$callClinit(); + var$4[72] = oncief_Sum$_MODULE$; + oncief_Tail$_$callClinit(); + var$4[73] = oncief_Tail$_MODULE$; + oncief_Tan$_$callClinit(); + var$4[74] = oncief_Tan$_MODULE$; + oncief_ToBoolean$_$callClinit(); + var$4[75] = oncief_ToBoolean$_MODULE$; + oncief_ToBooleanList$_$callClinit(); + var$4[76] = oncief_ToBooleanList$_MODULE$; + oncief_ToBooleanOrNull$_$callClinit(); + var$4[77] = oncief_ToBooleanOrNull$_MODULE$; + oncief_ToFloat$_$callClinit(); + var$4[78] = oncief_ToFloat$_MODULE$; + oncief_ToFloatList$_$callClinit(); + var$4[79] = oncief_ToFloatList$_MODULE$; + oncief_ToFloatOrNull$_$callClinit(); + var$4[80] = oncief_ToFloatOrNull$_MODULE$; + oncief_ToInteger$_$callClinit(); + var$4[81] = oncief_ToInteger$_MODULE$; + oncief_ToIntegerList$_$callClinit(); + var$4[82] = oncief_ToIntegerList$_MODULE$; + oncief_ToIntegerOrNull$_$callClinit(); + var$4[83] = oncief_ToIntegerOrNull$_MODULE$; + oncief_ToLower$_$callClinit(); + var$4[84] = oncief_ToLower$_MODULE$; + oncief_ToString$_$callClinit(); + var$4[85] = oncief_ToString$_MODULE$; + oncief_ToStringList$_$callClinit(); + var$4[86] = oncief_ToStringList$_MODULE$; + oncief_ToStringOrNull$_$callClinit(); + var$4[87] = oncief_ToStringOrNull$_MODULE$; + oncief_ToUpper$_$callClinit(); + var$4[88] = oncief_ToUpper$_MODULE$; + oncief_Timestamp$_$callClinit(); + var$4[89] = oncief_Timestamp$_MODULE$; + oncief_Properties$_$callClinit(); + var$4[90] = oncief_Properties$_MODULE$; + oncief_Trim$_$callClinit(); + var$4[91] = oncief_Trim$_MODULE$; + oncief_Type$_$callClinit(); + var$4[92] = oncief_Type$_MODULE$; + oncief_Upper$_$callClinit(); + var$4[93] = oncief_Upper$_MODULE$; + oncief_ValueType$_$callClinit(); + var$4[94] = oncief_ValueType$_MODULE$; + oncief_WithinBBox$_$callClinit(); + var$4[95] = oncief_WithinBBox$_MODULE$; + oncief_VectorSimilarityEuclidean$_$callClinit(); + var$4[96] = oncief_VectorSimilarityEuclidean$_MODULE$; + oncief_VectorSimilarityCosine$_$callClinit(); + var$4[97] = oncief_VectorSimilarityCosine$_MODULE$; + oncief_Function$_knownFunctions = sci_Vector$_apply(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipv_Cypher5Parser$Expression5Context = $rt_classWithoutFields(oncip_AstRuleCtx); -let oncipv_Cypher5Parser$Expression5Context_getRuleIndex = $this => { - return 97; +oncief_Function$_knownFunctions0 = $this => { + oncief_Function$_$callClinit(); + return oncief_Function$_knownFunctions; }, -oncipv_Cypher5Parser$LabelExpression2Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelExpression2Context_getRuleIndex = $this => { - return 82; +oncief_Function$__init_0 = $this => { + oncief_Function$_$callClinit(); }, -oncipv_Cypher5Parser$LabelExpression2IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelExpression2IsContext_getRuleIndex = $this => { - return 83; +oncief_Function$__init_ = () => { + let var_0 = new oncief_Function$(); + oncief_Function$__init_0(var_0); + return var_0; }, -oncipv_Cypher25Parser$Expression4Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression4Context_getRuleIndex = $this => { - return 97; +oncie_FunctionInvocation$_init_$lambda$_41_0 = $rt_classWithoutFields(), +oncie_FunctionInvocation$_init_$lambda$_41_0_apply = var$0 => { + return oncief_UnresolvedFunction$_MODULE$; }, -oncipv_Cypher25Parser$LabelExpression1Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpression1Context_getRuleIndex = $this => { - return 83; +oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0_apply0 = (var$0, var$1) => { + let var$2; + var$1 = var$1; + if (var$1 instanceof oncie_PatternPartWithSelector) + var$1 = var$1; + else { + if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1; + var$1 = oncie_PatternPartWithSelector__init_(oncie_PatternPart$AllPaths__init_(var$2.$position()), var$2); + } + return var$1; +}; +function oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1() { + jl_Object.call(this); + this.$_0165 = null; +} +let oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1_apply0 = var$0 => { + let var$1; + var$1 = var$0.$_0165; + return oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, var$1); }, -oncipv_Cypher25Parser$LabelNameContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1Context), -oncipv_Cypher25Parser$LabelNameContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_00 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0_apply0 = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems4.$includeExisting0); }, -oncipv_Cypher25Parser$LabelNameContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_10 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1_apply0 = (var$0, var$1) => { + return (var$1.$returnItems4.$items0.$map(new oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0)).$toList(); }, -oncipv_Cypher25Parser$LabelNameContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$LabelNameContext(); - oncipv_Cypher25Parser$LabelNameContext__init_(var_1, var_0); - return var_1; +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_20 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2_apply0 = var$0 => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; }, -oncipv_Cypher25Parser$DynamicLabelContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1Context), -oncipv_Cypher25Parser$DynamicLabelContext_dynamicAnyAllExpression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DynamicAnyAllExpressionContext), 0); +oncia_NodeUniqueConstraints = $rt_classWithoutFields(0), +oncia_NodeUniqueConstraintsCypher5$ = $rt_classWithoutFields(), +oncia_NodeUniqueConstraintsCypher5$_MODULE$ = null, +oncia_NodeUniqueConstraintsCypher5$_output = null, +oncia_NodeUniqueConstraintsCypher5$_prettyPrint = null, +oncia_NodeUniqueConstraintsCypher5$_description = null, +oncia_NodeUniqueConstraintsCypher5$__clinit_ = () => { + oncia_NodeUniqueConstraintsCypher5$_MODULE$ = new oncia_NodeUniqueConstraintsCypher5$; + oncia_NodeUniqueConstraintsCypher5$_output = $rt_s(4499); + oncia_NodeUniqueConstraintsCypher5$_prettyPrint = $rt_s(5936); + oncia_NodeUniqueConstraintsCypher5$_description = $rt_s(5937); }, -oncipv_Cypher25Parser$DynamicLabelContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_NodeUniqueConstraintsCypher5$_prettyPrint0 = $this => { + return oncia_NodeUniqueConstraintsCypher5$_prettyPrint; }, -oncipv_Cypher25Parser$DynamicLabelContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$DynamicLabelContext(); - oncipv_Cypher25Parser$DynamicLabelContext__init_(var_1, var_0); - return var_1; +oncia_NodeUniqueConstraintsCypher5$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1Context), -oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_NodeUniqueConstraintsCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext(); - oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext__init_(var_1, var_0); - return var_1; +oncia_NodeUniqueConstraintsCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$AnyLabelContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1Context), -oncipv_Cypher25Parser$AnyLabelContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_NodeUniqueConstraintsCypher5$_hashCode = $this => { + return 604169303; }, -oncipv_Cypher25Parser$AnyLabelContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$AnyLabelContext(); - oncipv_Cypher25Parser$AnyLabelContext__init_(var_1, var_0); - return var_1; +oncia_NodeUniqueConstraintsCypher5$_toString = $this => { + return $rt_s(5938); }, -oncipv_Cypher25Parser$LabelExpression1IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$LabelExpression1IsContext_getRuleIndex = $this => { - return 84; +oncia_RelUniqueConstraints = $rt_classWithoutFields(0), +oncia_RelUniqueConstraintsCypher5$ = $rt_classWithoutFields(), +oncia_RelUniqueConstraintsCypher5$_MODULE$ = null, +oncia_RelUniqueConstraintsCypher5$_output = null, +oncia_RelUniqueConstraintsCypher5$_prettyPrint = null, +oncia_RelUniqueConstraintsCypher5$_description = null, +oncia_RelUniqueConstraintsCypher5$__clinit_ = () => { + oncia_RelUniqueConstraintsCypher5$_MODULE$ = new oncia_RelUniqueConstraintsCypher5$; + oncia_RelUniqueConstraintsCypher5$_output = $rt_s(5939); + oncia_RelUniqueConstraintsCypher5$_prettyPrint = $rt_s(5940); + oncia_RelUniqueConstraintsCypher5$_description = $rt_s(5941); }, -oncipv_Cypher25Parser$LabelNameIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1IsContext), -oncipv_Cypher25Parser$LabelNameIsContext_symbolicLabelNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$SymbolicLabelNameStringContext), 0); +oncia_RelUniqueConstraintsCypher5$_prettyPrint0 = $this => { + return oncia_RelUniqueConstraintsCypher5$_prettyPrint; }, -oncipv_Cypher25Parser$LabelNameIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_RelUniqueConstraintsCypher5$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$LabelNameIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$LabelNameIsContext(); - oncipv_Cypher25Parser$LabelNameIsContext__init_(var_1, var_0); - return var_1; +oncia_RelUniqueConstraintsCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$DynamicLabelIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1IsContext), -oncipv_Cypher25Parser$DynamicLabelIsContext_dynamicAnyAllExpression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher25Parser$DynamicAnyAllExpressionContext), 0); +oncia_RelUniqueConstraintsCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$DynamicLabelIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_RelUniqueConstraintsCypher5$_hashCode = $this => { + return (-447795794); }, -oncipv_Cypher25Parser$DynamicLabelIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$DynamicLabelIsContext(); - oncipv_Cypher25Parser$DynamicLabelIsContext__init_(var_1, var_0); - return var_1; +oncia_RelUniqueConstraintsCypher5$_toString = $this => { + return $rt_s(5942); }, -oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1IsContext), -oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_UniqueConstraints = $rt_classWithoutFields(0), +oncia_UniqueConstraintsCypher5$ = $rt_classWithoutFields(), +oncia_UniqueConstraintsCypher5$_MODULE$ = null, +oncia_UniqueConstraintsCypher5$_output = null, +oncia_UniqueConstraintsCypher5$_prettyPrint = null, +oncia_UniqueConstraintsCypher5$_description = null, +oncia_UniqueConstraintsCypher5$__clinit_ = () => { + oncia_UniqueConstraintsCypher5$_MODULE$ = new oncia_UniqueConstraintsCypher5$; + oncia_UniqueConstraintsCypher5$_output = $rt_s(4499); + oncia_UniqueConstraintsCypher5$_prettyPrint = $rt_s(4499); + oncia_UniqueConstraintsCypher5$_description = $rt_s(5943); }, -oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext(); - oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext__init_(var_1, var_0); - return var_1; +oncia_UniqueConstraintsCypher5$_prettyPrint0 = $this => { + return oncia_UniqueConstraintsCypher5$_prettyPrint; }, -oncipv_Cypher25Parser$AnyLabelIsContext = $rt_classWithoutFields(oncipv_Cypher25Parser$LabelExpression1IsContext), -oncipv_Cypher25Parser$AnyLabelIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_UniqueConstraintsCypher5$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$AnyLabelIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$AnyLabelIsContext(); - oncipv_Cypher25Parser$AnyLabelIsContext__init_(var_1, var_0); - return var_1; +oncia_UniqueConstraintsCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$Expression4Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression4Context_getRuleIndex = $this => { - return 98; +oncia_UniqueConstraintsCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$LabelExpression1Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelExpression1Context_getRuleIndex = $this => { - return 84; +oncia_UniqueConstraintsCypher5$_hashCode = $this => { + return 171542581; }, -oncipv_Cypher5Parser$LabelNameContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1Context), -oncipv_Cypher5Parser$LabelNameContext_symbolicNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); +oncia_UniqueConstraintsCypher5$_toString = $this => { + return $rt_s(5944); +}, +oncia_NodePropExistsConstraints = $rt_classWithoutFields(0), +oncia_NodePropExistsConstraints_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$output_$eq($rt_s(5945)); + $$this.$org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$prettyPrint_$eq($rt_s(5946)); +}, +oncia_NodePropExistsConstraintsCypher5$ = $rt_classWithoutFields(), +oncia_NodePropExistsConstraintsCypher5$_MODULE$ = null; +let oncia_NodePropExistsConstraintsCypher5$_description = null, +oncia_NodePropExistsConstraintsCypher5$_output = null, +oncia_NodePropExistsConstraintsCypher5$_prettyPrint = null, +oncia_NodePropExistsConstraintsCypher5$_$callClinit = () => { + oncia_NodePropExistsConstraintsCypher5$_$callClinit = $rt_eraseClinit(oncia_NodePropExistsConstraintsCypher5$); + oncia_NodePropExistsConstraintsCypher5$__clinit_(); +}, +oncia_NodePropExistsConstraintsCypher5$__clinit_ = () => { + let var$1; + var$1 = new oncia_NodePropExistsConstraintsCypher5$; + oncia_NodePropExistsConstraintsCypher5$_$callClinit(); + oncia_NodePropExistsConstraintsCypher5$_MODULE$ = var$1; + oncia_NodePropExistsConstraints_$init$(var$1); + oncia_NodePropExistsConstraintsCypher5$_description = $rt_s(5486); }, -oncipv_Cypher5Parser$LabelNameContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_NodePropExistsConstraintsCypher5$_prettyPrint0 = $this => { + oncia_NodePropExistsConstraintsCypher5$_$callClinit(); + return oncia_NodePropExistsConstraintsCypher5$_prettyPrint; }, -oncipv_Cypher5Parser$LabelNameContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$LabelNameContext(); - oncipv_Cypher5Parser$LabelNameContext__init_(var_1, var_0); - return var_1; +oncia_NodePropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { + oncia_NodePropExistsConstraintsCypher5$_$callClinit(); + oncia_NodePropExistsConstraintsCypher5$_output = $x$1; }, -oncipv_Cypher5Parser$DynamicLabelContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1Context), -oncipv_Cypher5Parser$DynamicLabelContext_dynamicAnyAllExpression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DynamicAnyAllExpressionContext), 0); +oncia_NodePropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { + oncia_NodePropExistsConstraintsCypher5$_$callClinit(); + oncia_NodePropExistsConstraintsCypher5$_prettyPrint = $x$1; }, -oncipv_Cypher5Parser$DynamicLabelContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); -}; -let oncipv_Cypher5Parser$DynamicLabelContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$DynamicLabelContext(); - oncipv_Cypher5Parser$DynamicLabelContext__init_(var_1, var_0); - return var_1; +oncia_NodePropExistsConstraintsCypher5$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1Context), -oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_NodePropExistsConstraintsCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext(); - oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext__init_(var_1, var_0); - return var_1; +oncia_NodePropExistsConstraintsCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$AnyLabelContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1Context), -oncipv_Cypher5Parser$AnyLabelContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_NodePropExistsConstraintsCypher5$_hashCode = $this => { + return 710213029; }, -oncipv_Cypher5Parser$AnyLabelContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$AnyLabelContext(); - oncipv_Cypher5Parser$AnyLabelContext__init_(var_1, var_0); - return var_1; +oncia_NodePropExistsConstraintsCypher5$_toString = $this => { + return $rt_s(5947); }, -oncipv_Cypher5Parser$LabelExpression1IsContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$LabelExpression1IsContext_getRuleIndex = $this => { - return 85; +oncia_RelPropExistsConstraints = $rt_classWithoutFields(0), +oncia_RelPropExistsConstraints_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$output_$eq($rt_s(5948)); + $$this.$org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$prettyPrint_$eq($rt_s(5949)); +}, +oncia_RelPropExistsConstraintsCypher5$ = $rt_classWithoutFields(), +oncia_RelPropExistsConstraintsCypher5$_MODULE$ = null, +oncia_RelPropExistsConstraintsCypher5$_description = null, +oncia_RelPropExistsConstraintsCypher5$_output = null, +oncia_RelPropExistsConstraintsCypher5$_prettyPrint = null, +oncia_RelPropExistsConstraintsCypher5$_$callClinit = () => { + oncia_RelPropExistsConstraintsCypher5$_$callClinit = $rt_eraseClinit(oncia_RelPropExistsConstraintsCypher5$); + oncia_RelPropExistsConstraintsCypher5$__clinit_(); +}, +oncia_RelPropExistsConstraintsCypher5$__clinit_ = () => { + let var$1; + var$1 = new oncia_RelPropExistsConstraintsCypher5$; + oncia_RelPropExistsConstraintsCypher5$_$callClinit(); + oncia_RelPropExistsConstraintsCypher5$_MODULE$ = var$1; + oncia_RelPropExistsConstraints_$init$(var$1); + oncia_RelPropExistsConstraintsCypher5$_description = $rt_s(5470); }, -oncipv_Cypher5Parser$LabelNameIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1IsContext), -oncipv_Cypher5Parser$LabelNameIsContext_symbolicLabelNameString = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$SymbolicLabelNameStringContext), 0); +oncia_RelPropExistsConstraintsCypher5$_prettyPrint0 = $this => { + oncia_RelPropExistsConstraintsCypher5$_$callClinit(); + return oncia_RelPropExistsConstraintsCypher5$_prettyPrint; }, -oncipv_Cypher5Parser$LabelNameIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_RelPropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { + oncia_RelPropExistsConstraintsCypher5$_$callClinit(); + oncia_RelPropExistsConstraintsCypher5$_output = $x$1; }, -oncipv_Cypher5Parser$LabelNameIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$LabelNameIsContext(); - oncipv_Cypher5Parser$LabelNameIsContext__init_(var_1, var_0); - return var_1; +oncia_RelPropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { + oncia_RelPropExistsConstraintsCypher5$_$callClinit(); + oncia_RelPropExistsConstraintsCypher5$_prettyPrint = $x$1; }, -oncipv_Cypher5Parser$DynamicLabelIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1IsContext), -oncipv_Cypher5Parser$DynamicLabelIsContext_dynamicAnyAllExpression = $this => { - return oavr_ParserRuleContext_getRuleContext($this, $rt_cls(oncipv_Cypher5Parser$DynamicAnyAllExpressionContext), 0); +oncia_RelPropExistsConstraintsCypher5$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$DynamicLabelIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_RelPropExistsConstraintsCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$DynamicLabelIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$DynamicLabelIsContext(); - oncipv_Cypher5Parser$DynamicLabelIsContext__init_(var_1, var_0); - return var_1; +oncia_RelPropExistsConstraintsCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1IsContext), -oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_RelPropExistsConstraintsCypher5$_hashCode = $this => { + return 1864287100; }, -oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext(); - oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext__init_(var_1, var_0); - return var_1; +oncia_RelPropExistsConstraintsCypher5$_toString = $this => { + return $rt_s(5950); }, -oncipv_Cypher5Parser$AnyLabelIsContext = $rt_classWithoutFields(oncipv_Cypher5Parser$LabelExpression1IsContext), -oncipv_Cypher5Parser$AnyLabelIsContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_PropExistsConstraints = $rt_classWithoutFields(0), +oncia_PropExistsConstraints_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$output_$eq($rt_s(5951)); + $$this.$org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$prettyPrint_$eq($rt_s(5952)); +}, +oncia_PropExistsConstraintsCypher5$ = $rt_classWithoutFields(), +oncia_PropExistsConstraintsCypher5$_MODULE$ = null, +oncia_PropExistsConstraintsCypher5$_description = null, +oncia_PropExistsConstraintsCypher5$_output = null, +oncia_PropExistsConstraintsCypher5$_prettyPrint = null, +oncia_PropExistsConstraintsCypher5$_$callClinit = () => { + oncia_PropExistsConstraintsCypher5$_$callClinit = $rt_eraseClinit(oncia_PropExistsConstraintsCypher5$); + oncia_PropExistsConstraintsCypher5$__clinit_(); +}, +oncia_PropExistsConstraintsCypher5$__clinit_ = () => { + let var$1; + var$1 = new oncia_PropExistsConstraintsCypher5$; + oncia_PropExistsConstraintsCypher5$_$callClinit(); + oncia_PropExistsConstraintsCypher5$_MODULE$ = var$1; + oncia_PropExistsConstraints_$init$(var$1); + oncia_PropExistsConstraintsCypher5$_description = $rt_s(5488); }, -oncipv_Cypher5Parser$AnyLabelIsContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$AnyLabelIsContext(); - oncipv_Cypher5Parser$AnyLabelIsContext__init_(var_1, var_0); - return var_1; +oncia_PropExistsConstraintsCypher5$_prettyPrint0 = $this => { + oncia_PropExistsConstraintsCypher5$_$callClinit(); + return oncia_PropExistsConstraintsCypher5$_prettyPrint; }, -oncipv_Cypher25Parser$Expression3Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression3Context_getRuleIndex = $this => { - return 98; +oncia_PropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { + oncia_PropExistsConstraintsCypher5$_$callClinit(); + oncia_PropExistsConstraintsCypher5$_output = $x$1; }, -oncipv_Cypher25Parser$DynamicAnyAllExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$DynamicAnyAllExpressionContext_getRuleIndex = $this => { - return 64; +oncia_PropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { + oncia_PropExistsConstraintsCypher5$_$callClinit(); + oncia_PropExistsConstraintsCypher5$_prettyPrint = $x$1; }, -oncipv_Cypher25Parser$SymbolicLabelNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$SymbolicLabelNameStringContext_getRuleIndex = $this => { - return 324; +oncia_PropExistsConstraintsCypher5$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$Expression3Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression3Context_getRuleIndex = $this => { - return 99; +oncia_PropExistsConstraintsCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$DynamicAnyAllExpressionContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$DynamicAnyAllExpressionContext_getRuleIndex = $this => { - return 65; +oncia_PropExistsConstraintsCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$SymbolicLabelNameStringContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$SymbolicLabelNameStringContext_getRuleIndex = $this => { - return 330; +oncia_PropExistsConstraintsCypher5$_hashCode = $this => { + return 179995267; }, -oncipv_Cypher25Parser$Expression2Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$Expression2Context_getRuleIndex = $this => { - return 99; +oncia_PropExistsConstraintsCypher5$_toString = $this => { + return $rt_s(5953); }, -oncipv_Cypher5Parser$Expression2Context = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$Expression2Context_getRuleIndex = $this => { - return 100; +oncia_IfExistsDo = $rt_classWithoutFields(0), +oncia_IfExistsInvalidSyntax$ = $rt_classWithoutFields(), +oncia_IfExistsInvalidSyntax$_MODULE$ = null; +let oncia_IfExistsInvalidSyntax$_$callClinit = () => { + oncia_IfExistsInvalidSyntax$_$callClinit = $rt_eraseClinit(oncia_IfExistsInvalidSyntax$); + oncia_IfExistsInvalidSyntax$__clinit_(); }, -oncipv_Cypher25Parser$PostFixContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher25Parser$PostFixContext_getRuleIndex = $this => { - return 100; +oncia_IfExistsInvalidSyntax$__clinit_ = () => { + let var$1; + var$1 = new oncia_IfExistsInvalidSyntax$; + oncia_IfExistsInvalidSyntax$_$callClinit(); + oncia_IfExistsInvalidSyntax$_MODULE$ = var$1; }, -oncipv_Cypher25Parser$PropertyPostfixContext = $rt_classWithoutFields(oncipv_Cypher25Parser$PostFixContext), -oncipv_Cypher25Parser$PropertyPostfixContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IfExistsInvalidSyntax$_productArity = $this => { + return 0; }, -oncipv_Cypher25Parser$PropertyPostfixContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$PropertyPostfixContext(); - oncipv_Cypher25Parser$PropertyPostfixContext__init_(var_1, var_0); - return var_1; +oncia_IfExistsInvalidSyntax$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher25Parser$LabelPostfixContext = $rt_classWithoutFields(oncipv_Cypher25Parser$PostFixContext), -oncipv_Cypher25Parser$LabelPostfixContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IfExistsInvalidSyntax$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher25Parser$LabelPostfixContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$LabelPostfixContext(); - oncipv_Cypher25Parser$LabelPostfixContext__init_(var_1, var_0); - return var_1; +oncia_IfExistsInvalidSyntax$_hashCode = $this => { + return (-146745023); }, -oncipv_Cypher25Parser$IndexPostfixContext = $rt_classWithoutFields(oncipv_Cypher25Parser$PostFixContext), -oncipv_Cypher25Parser$IndexPostfixContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IfExistsInvalidSyntax$_toString = $this => { + return $rt_s(5954); }, -oncipv_Cypher25Parser$IndexPostfixContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$IndexPostfixContext(); - oncipv_Cypher25Parser$IndexPostfixContext__init_(var_1, var_0); - return var_1; -}; -function oncipv_Cypher25Parser$RangePostfixContext() { - let a = this; oncipv_Cypher25Parser$PostFixContext.call(a); - a.$fromExp = null; - a.$toExp = null; -} -let oncipv_Cypher25Parser$RangePostfixContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IfExistsReplace$ = $rt_classWithoutFields(), +oncia_IfExistsReplace$_MODULE$ = null, +oncia_IfExistsReplace$_$callClinit = () => { + oncia_IfExistsReplace$_$callClinit = $rt_eraseClinit(oncia_IfExistsReplace$); + oncia_IfExistsReplace$__clinit_(); }, -oncipv_Cypher25Parser$RangePostfixContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher25Parser$RangePostfixContext(); - oncipv_Cypher25Parser$RangePostfixContext__init_(var_1, var_0); - return var_1; +oncia_IfExistsReplace$__clinit_ = () => { + let var$1; + var$1 = new oncia_IfExistsReplace$; + oncia_IfExistsReplace$_$callClinit(); + oncia_IfExistsReplace$_MODULE$ = var$1; }, -oncipv_Cypher5Parser$PostFixContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipv_Cypher5Parser$PostFixContext_getRuleIndex = $this => { - return 101; +oncia_IfExistsReplace$_productArity = $this => { + return 0; }, -oncipv_Cypher5Parser$PropertyPostfixContext = $rt_classWithoutFields(oncipv_Cypher5Parser$PostFixContext), -oncipv_Cypher5Parser$PropertyPostfixContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IfExistsReplace$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipv_Cypher5Parser$PropertyPostfixContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$PropertyPostfixContext(); - oncipv_Cypher5Parser$PropertyPostfixContext__init_(var_1, var_0); - return var_1; +oncia_IfExistsReplace$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipv_Cypher5Parser$LabelPostfixContext = $rt_classWithoutFields(oncipv_Cypher5Parser$PostFixContext), -oncipv_Cypher5Parser$LabelPostfixContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IfExistsReplace$_hashCode = $this => { + return (-823146373); }, -oncipv_Cypher5Parser$LabelPostfixContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$LabelPostfixContext(); - oncipv_Cypher5Parser$LabelPostfixContext__init_(var_1, var_0); - return var_1; +oncia_IfExistsReplace$_toString = $this => { + return $rt_s(5955); }, -oncipv_Cypher5Parser$IndexPostfixContext = $rt_classWithoutFields(oncipv_Cypher5Parser$PostFixContext), -oncipv_Cypher5Parser$IndexPostfixContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IfExistsDoNothing$ = $rt_classWithoutFields(), +oncia_IfExistsDoNothing$_MODULE$ = null, +oncia_IfExistsDoNothing$_$callClinit = () => { + oncia_IfExistsDoNothing$_$callClinit = $rt_eraseClinit(oncia_IfExistsDoNothing$); + oncia_IfExistsDoNothing$__clinit_(); }, -oncipv_Cypher5Parser$IndexPostfixContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$IndexPostfixContext(); - oncipv_Cypher5Parser$IndexPostfixContext__init_(var_1, var_0); - return var_1; -}; -function oncipv_Cypher5Parser$RangePostfixContext() { - let a = this; oncipv_Cypher5Parser$PostFixContext.call(a); - a.$fromExp0 = null; - a.$toExp0 = null; -} -let oncipv_Cypher5Parser$RangePostfixContext__init_ = ($this, $ctx) => { - oavr_ParserRuleContext__init_($this); - oavr_ParserRuleContext_copyFrom($this, $ctx); +oncia_IfExistsDoNothing$__clinit_ = () => { + let var$1; + var$1 = new oncia_IfExistsDoNothing$; + oncia_IfExistsDoNothing$_$callClinit(); + oncia_IfExistsDoNothing$_MODULE$ = var$1; }, -oncipv_Cypher5Parser$RangePostfixContext__init_0 = var_0 => { - let var_1 = new oncipv_Cypher5Parser$RangePostfixContext(); - oncipv_Cypher5Parser$RangePostfixContext__init_(var_1, var_0); - return var_1; +oncia_IfExistsDoNothing$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_132 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_132_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_IfExistsDoNothing$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_133 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_133_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_IfExistsDoNothing$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_134 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_134_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_IfExistsDoNothing$_hashCode = $this => { + return (-993652535); }, -onciu_RewritableJavascript$PROXY$9_135 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_135_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; +oncia_IfExistsDoNothing$_toString = $this => { + return $rt_s(5956); }, -onciu_RewritableJavascript$PROXY$9_136 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_136_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; +oncia_IfExistsThrowError$ = $rt_classWithoutFields(), +oncia_IfExistsThrowError$_MODULE$ = null, +oncia_IfExistsThrowError$_$callClinit = () => { + oncia_IfExistsThrowError$_$callClinit = $rt_eraseClinit(oncia_IfExistsThrowError$); + oncia_IfExistsThrowError$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_137 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_137_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_IfExistsThrowError$__clinit_ = () => { + let var$1; + var$1 = new oncia_IfExistsThrowError$; + oncia_IfExistsThrowError$_$callClinit(); + oncia_IfExistsThrowError$_MODULE$ = var$1; }, -onciu_RewritableJavascript$PROXY$9_138 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_138_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_IfExistsThrowError$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_139 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_139_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_IfExistsThrowError$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_140 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_140_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_IfExistsThrowError$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_141 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_141_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_IfExistsThrowError$_hashCode = $this => { + return (-1449927781); }, -onciu_RewritableJavascript$PROXY$9_142 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_142_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_IfExistsThrowError$_toString = $this => { + return $rt_s(5957); }, -onciu_RewritableJavascript$PROXY$9_143 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_143_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncia_CreateConstraint = $rt_classWithoutFields(0), +oncia_CreateConstraint_semanticCheck$ = $$this => { + let var$2, var$3, var$4; + var$2 = oncias_package$_MODULE$; + var$3 = $$this.$variable4(); + oncius_package$_$callClinit(); + var$2 = oncias_package$_liftSemanticEitherFunc(var$2, $$this.$declareVariable(var$3, ($$this.$entityType1()).$invariant())); + oncias_SemanticExpressionCheck$_$callClinit(); + var$4 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $$this.$properties3())); + var$2 = $$this.$properties3(); + var$3 = new oncia_CreateConstraint$semanticCheck$lambda$_28_0; + var$3.$_0404 = $$this; + return oncias_SemanticCheck_chain$(var$4, $$this.$semanticCheckFold(var$2, var$3)); }, -onciu_RewritableJavascript$PROXY$9_144 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_144_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; +oncia_CreateConstraint_checkIfExistsDoAndOptions$ = $$this => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = $$this.$ifExistsDo(); + oncia_IfExistsInvalidSyntax$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$2)) + var$3 = 1; + else { + oncia_IfExistsReplace$_$callClinit(); + var$3 = !jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$2) ? 0 : 1; + } + if (!var$3) { + var$2 = ($$this.$constraintType1()).$description(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), $rt_s(5958)); + $$this = $$this.$checkOptionsMap(jl_AbstractStringBuilder_toString(var$4), $$this.$options()); + } else { + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$8 = var$7.data; + oncias_SemanticError$_$callClinit(); + var$2 = oncias_SemanticError$_MODULE$; + var$4 = ($$this.$constraintType1()).$description(); + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(5959)), var$4), $rt_s(5958)); + var$8[0] = oncias_SemanticError$_badCommandWithOrReplace(var$2, jl_AbstractStringBuilder_toString(var$9), $rt_s(5789), $$this.$position()); + $$this = oncias_SemanticCheck$_error(var$5, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); + } + return $$this; }, -onciu_RewritableJavascript$PROXY$9_145 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_145_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_CreateConstraint_anyPropertyValueType$1 = ($this, $pt) => { + let var$2; + while (!($pt instanceof oncius_PropertyValueType)) { + if (!($pt instanceof oncius_ListType)) { + if (!($pt instanceof oncius_ClosedDynamicUnionType)) + return 0; + var$2 = $pt.$sortedInnerTypes; + $pt = new oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0; + $pt.$_0638 = $this; + return sci_List_exists(sci_List_map(var$2, $pt), new oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1); + } + $pt = $pt.$innerType; + } + return 1; }, -onciu_RewritableJavascript$PROXY$9_146 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_146_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; +oncia_CreateConstraint_additionalErrorInfo$1 = $pt => { + let var$2, $inner; + var$2 = 0; + $inner = null; + if ($pt instanceof oncius_ListType) { + var$2 = 1; + $inner = $pt; + if ($inner.$innerType instanceof oncius_ListType) + return $rt_s(5960); + } + if (var$2 && $inner.$innerType instanceof oncius_ClosedDynamicUnionType) + return $rt_s(5961); + if (var$2 && $inner.$innerType.$isNullable()) + return $rt_s(5962); + if ($pt instanceof oncius_ClosedDynamicUnionType) { + $pt = $pt; + if (sci_List_exists($pt.$sortedInnerTypes, new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0)) + return s_Option_getOrElse(sci_List_find(sci_List_map(sci_List_filter($pt.$sortedInnerTypes, new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1), new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2), new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3), new oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4); + } + return $rt_s(4); }, -onciu_RewritableJavascript$PROXY$9_147 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_147_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_CreateConstraint_$init$ = $$this => { + let var$2, var$3, var$4, var$5, var$6; + s_package$_$callClinit(); + var$2 = s_package$_List(s_package$_MODULE$); + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncius_CypherType, 22); + var$5 = var$4.data; + var$6 = new oncius_BooleanType; + onciu_InputPosition$_$callClinit(); + oncius_BooleanType__init_0(var$6, 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[0] = var$6; + var$5[1] = oncius_StringType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[2] = oncius_IntegerType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[3] = oncius_FloatType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[4] = oncius_DateType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[5] = oncius_LocalTimeType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[6] = oncius_ZonedTimeType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[7] = oncius_LocalDateTimeType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[8] = oncius_ZonedDateTimeType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[9] = oncius_DurationType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[10] = oncius_PointType__init_(1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[11] = oncius_ListType__init_(oncius_BooleanType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[12] = oncius_ListType__init_(oncius_StringType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[13] = oncius_ListType__init_(oncius_IntegerType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[14] = oncius_ListType__init_(oncius_FloatType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[15] = oncius_ListType__init_(oncius_DateType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[16] = oncius_ListType__init_(oncius_LocalTimeType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[17] = oncius_ListType__init_(oncius_ZonedTimeType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[18] = oncius_ListType__init_(oncius_LocalDateTimeType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[19] = oncius_ListType__init_(oncius_ZonedDateTimeType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[20] = oncius_ListType__init_(oncius_DurationType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$5[21] = oncius_ListType__init_(oncius_PointType__init_(0, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)), 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + $$this.$org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq(var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$3, var$4))); +}; +function oncia_CreateConstraintCommand() { + let a = this; jl_Object.call(a); + a.$variable20 = null; + a.$entityName1 = null; + a.$properties12 = null; + a.$name36 = null; + a.$constraintType3 = null; + a.$ifExistsDo8 = null; + a.$options3 = null; + a.$useGraph4 = null; + a.$position185 = null; + a.$entityType2 = null; + a.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes0 = null; +} +let oncia_CreateConstraintCommand_returnColumns = $this => { + return oncia_SchemaCommand_returnColumns$($this); }, -onciu_RewritableJavascript$PROXY$9_148 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_148_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_checkOptionsMap = ($this, $schemaString, $options) => { + return oncia_SchemaCommand_checkOptionsMap$($this, $schemaString, $options); }, -onciu_RewritableJavascript$PROXY$9_149 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_149_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; +oncia_CreateConstraintCommand_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -onciu_RewritableJavascript$PROXY$9_150 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_150_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncia_CreateConstraintCommand_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -onciu_RewritableJavascript$PROXY$9_151 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_151_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncia_CreateConstraintCommand_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -onciu_RewritableJavascript$PROXY$9_152 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_152_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_CreateConstraintCommand_foldedOver = $this => { + return $this; }, -onciu_RewritableJavascript$PROXY$9_153 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_153_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_CreateConstraintCommand_folder = $this => { + return onciu_Foldable_folder$($this); }, -onciu_RewritableJavascript$PROXY$9_154 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_154_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes0 = $x$1; }, -onciu_RewritableJavascript$PROXY$9_155 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_155_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; -}; -let onciu_RewritableJavascript$PROXY$9_156 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_156_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; +oncia_CreateConstraintCommand_variable = $this => { + return $this.$variable20; }, -onciu_RewritableJavascript$PROXY$9_157 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_157_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_CreateConstraintCommand_properties = $this => { + return $this.$properties12; }, -onciu_RewritableJavascript$PROXY$9_158 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_158_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_constraintType = $this => { + return $this.$constraintType3; }, -onciu_RewritableJavascript$PROXY$9_159 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_159_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncia_CreateConstraintCommand_ifExistsDo = $this => { + return $this.$ifExistsDo8; }, -onciu_RewritableJavascript$PROXY$9_160 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_160_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_CreateConstraintCommand_options = $this => { + return $this.$options3; }, -onciu_RewritableJavascript$PROXY$9_161 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_161_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_CreateConstraintCommand_position = $this => { + return $this.$position185; }, -onciu_RewritableJavascript$PROXY$9_162 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_162_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_entityType = $this => { + return $this.$entityType2; }, -onciu_RewritableJavascript$PROXY$9_163 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_163_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_semanticCheck = $this => { + return oncias_SemanticCheck_chain$(oncia_CreateConstraint_checkIfExistsDoAndOptions$($this), oncia_CreateConstraint_semanticCheck$($this)); }, -onciu_RewritableJavascript$PROXY$9_164 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_164_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncia_CreateConstraintCommand_copy = ($this, $variable, $entityName, $properties, $name, $constraintType, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateConstraintCommand__init_0($variable, $entityName, $properties, $name, $constraintType, $ifExistsDo, $options, $useGraph, $position); }, -onciu_RewritableJavascript$PROXY$9_165 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_165_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_productPrefix = $this => { + return $rt_s(5963); }, -onciu_RewritableJavascript$PROXY$9_166 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_166_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_CreateConstraintCommand_productArity = $this => { + return 8; }, -onciu_RewritableJavascript$PROXY$9_167 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_167_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable20; + case 1: + return $this.$entityName1; + case 2: + return $this.$properties12; + case 3: + return $this.$name36; + case 4: + return $this.$constraintType3; + case 5: + return $this.$ifExistsDo8; + case 6: + return $this.$options3; + case 7: + return $this.$useGraph4; + default: + } + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_168 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_168_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_169 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_169_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_CreateConstraintCommand_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_170 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_170_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_CreateConstraintCommand_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_171 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_171_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateConstraintCommand) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable20; + var$3 = $x$1.$variable20; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$entityName1; + var$3 = $x$1.$entityName1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$properties12; + var$3 = $x$1.$properties12; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$name36; + var$3 = $x$1.$name36; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$constraintType3; + var$3 = $x$1.$constraintType3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$ifExistsDo8; + var$3 = $x$1.$ifExistsDo8; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break h; + } + if (var$3 !== null) + break b; + } + i: { + var$2 = $this.$options3; + var$3 = $x$1.$options3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break i; + } + if (var$3 !== null) + break b; + } + j: { + var$3 = $this.$useGraph4; + $x$1 = $x$1.$useGraph4; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break j; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_CreateConstraintCommand)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -onciu_RewritableJavascript$PROXY$9_172 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_172_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncia_CreateConstraintCommand_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -onciu_RewritableJavascript$PROXY$9_173 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_173_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreateConstraintCommand_withGraph = ($this, $useGraph) => { + return oncia_CreateConstraintCommand_copy($this, $this.$variable20, $this.$entityName1, $this.$properties12, $this.$name36, $this.$constraintType3, $this.$ifExistsDo8, $this.$options3, $useGraph, $this.$position185); }, -onciu_RewritableJavascript$PROXY$9_174 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_174_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_CreateConstraintCommand__init_ = ($this, $variable, $entityName, $properties, $name, $constraintType, $ifExistsDo, $options, $useGraph, $position) => { + $this.$variable20 = $variable; + $this.$entityName1 = $entityName; + $this.$properties12 = $properties; + $this.$name36 = $name; + $this.$constraintType3 = $constraintType; + $this.$ifExistsDo8 = $ifExistsDo; + $this.$options3 = $options; + $this.$useGraph4 = $useGraph; + $this.$position185 = $position; + oncia_CreateConstraint_$init$($this); + if ($entityName instanceof oncie_LabelName) { + oncius_package$_$callClinit(); + $variable = oncius_package$_CTNode(oncius_package$_MODULE$); + } else { + if (!($entityName instanceof oncie_RelTypeName)) { + if ($entityName instanceof oncie_DynamicLabelExpression) { + $variable = new jl_IllegalStateException; + jl_Throwable__init_($variable, $rt_s(5964)); + $rt_throw($variable); + } + if (!($entityName instanceof oncie_DynamicRelTypeExpression)) + $rt_throw(s_MatchError__init_($entityName)); + $variable = new jl_IllegalStateException; + jl_Throwable__init_($variable, $rt_s(5965)); + $rt_throw($variable); + } + oncius_package$_$callClinit(); + $variable = oncius_package$_CTRelationship(oncius_package$_MODULE$); + } + $this.$entityType2 = $variable; }, -onciu_RewritableJavascript$PROXY$9_175 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_175_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncia_CreateConstraintCommand__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new oncia_CreateConstraintCommand(); + oncia_CreateConstraintCommand__init_(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; }, -onciu_RewritableJavascript$PROXY$9_176 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_176_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_CreateConstraintType = $rt_classWithoutFields(0), +oncia_NodePropertyExistence$ = $rt_classWithoutFields(), +oncia_NodePropertyExistence$_MODULE$ = null, +oncia_NodePropertyExistence$_description = null, +oncia_NodePropertyExistence$_predicate = null, +oncia_NodePropertyExistence$__clinit_ = () => { + oncia_NodePropertyExistence$_MODULE$ = new oncia_NodePropertyExistence$; + oncia_NodePropertyExistence$_description = $rt_s(5966); + oncia_NodePropertyExistence$_predicate = $rt_s(436); }, -onciu_RewritableJavascript$PROXY$9_177 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_177_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; +oncia_NodePropertyExistence$_description0 = $this => { + return oncia_NodePropertyExistence$_description; }, -onciu_RewritableJavascript$PROXY$9_178 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_178_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_NodePropertyExistence$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_179 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_179_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodePropertyExistence$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_180 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_180_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodePropertyExistence$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NodePropertyExistence$_hashCode = $this => { + return 863637995; +}, +oncia_NodePropertyExistence$_toString = $this => { + return $rt_s(5967); }; -let onciu_RewritableJavascript$PROXY$9_181 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_181_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +function oncia_CreatePropertyTypeConstraint() { + let a = this; jl_Object.call(a); + a.$variable24 = null; + a.$entityName2 = null; + a.$property4 = null; + a.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType = null; + a.$name37 = null; + a.$ifExistsDo10 = null; + a.$options5 = null; + a.$useGraph6 = null; + a.$position157 = null; + a.$properties18 = null; + a.$normalizedPropertyType = null; + a.$x$8 = null; + a.$entityType3 = null; + a.$constraintType4 = null; + a.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes = null; +} +let oncia_CreatePropertyTypeConstraint_returnColumns = $this => { + return oncia_SchemaCommand_returnColumns$($this); }, -onciu_RewritableJavascript$PROXY$9_182 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_182_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreatePropertyTypeConstraint_checkOptionsMap = ($this, $schemaString, $options) => { + return oncia_SchemaCommand_checkOptionsMap$($this, $schemaString, $options); }, -onciu_RewritableJavascript$PROXY$9_183 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_183_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncia_CreatePropertyTypeConstraint_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -onciu_RewritableJavascript$PROXY$9_184 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_184_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreatePropertyTypeConstraint_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -onciu_RewritableJavascript$PROXY$9_185 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_185_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; +oncia_CreatePropertyTypeConstraint_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -onciu_RewritableJavascript$PROXY$9_186 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_186_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncia_CreatePropertyTypeConstraint_foldedOver = $this => { + return $this; }, -onciu_RewritableJavascript$PROXY$9_187 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_187_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_CreatePropertyTypeConstraint_folder = $this => { + return onciu_Foldable_folder$($this); }, -onciu_RewritableJavascript$PROXY$9_188 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_188_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncia_CreatePropertyTypeConstraint_org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes = $x$1; }, -onciu_RewritableJavascript$PROXY$9_189 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_189_numParameters = var$1 => { - return (jl_Integer_valueOf(8)).$value4; +oncia_CreatePropertyTypeConstraint_variable = $this => { + return $this.$variable24; }, -onciu_RewritableJavascript$PROXY$9_190 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_190_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_CreatePropertyTypeConstraint_ifExistsDo = $this => { + return $this.$ifExistsDo10; }, -onciu_RewritableJavascript$PROXY$11_132 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_132_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_options = $this => { + return $this.$options5; }, -onciu_RewritableJavascript$PROXY$11_133 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_133_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_position = $this => { + return $this.$position157; }, -onciu_RewritableJavascript$PROXY$11_134 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_134_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_properties = $this => { + return $this.$properties18; }, -onciu_RewritableJavascript$PROXY$11_135 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_135_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_entityType = $this => { + return $this.$entityType3; }, -onciu_RewritableJavascript$PROXY$11_136 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_136_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_constraintType = $this => { + return $this.$constraintType4; }, -onciu_RewritableJavascript$PROXY$11_137 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_137_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; + var$1 = oncia_CreateConstraint_checkIfExistsDoAndOptions$($this); + var$2 = $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType; + var$3 = $this.$normalizedPropertyType; + var$4 = oncia_CypherTypeName_semanticCheck(oncia_CypherTypeName__init_(var$2)); + var$5 = new oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0; + var$5.$_074 = $this; + var$5.$_127 = var$2; + var$4 = var$4.$map11(var$5); + var$6 = oncia_CreateConstraint_anyPropertyValueType$1($this, var$2); + if (!(var$3 instanceof oncius_ClosedDynamicUnionType)) { + var$7 = $this.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes; + onciu_InputPosition$_$callClinit(); + var$8 = sci_List_contains(var$7, var$3.$withPosition(onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$))); + } else { + var$7 = var$3.$sortedInnerTypes; + var$5 = new oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0; + var$5.$_01032 = $this; + var$8 = sci_List_forall(var$7, var$5); + } + if (!var$6 && var$8) { + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$5 = !var$6 ? s_Tuple2__init_(var$3.$description(), oncia_CreateConstraint_additionalErrorInfo$1(var$3)) : s_Tuple2__init_(var$2.$description(), oncia_CreateConstraint_additionalErrorInfo$1(var$2)); + var$3 = s_Tuple2__init_(var$5.$_10, var$5.$_20); + var$5 = var$3.$_10; + var$7 = var$3.$_20; + ong_GqlStatusInfoCodes_$callClinit(); + var$9 = ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_50N11); + var$10 = ong_GqlParams$StringParam_constrDescrOrName; + var$11 = $this.$constraintType4.$description(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$11), $rt_s(5958)); + var$9 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(var$9, var$10, jl_AbstractStringBuilder_toString(var$3)), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N90), ong_GqlParams$StringParam_item, var$5)))); + var$12 = $this.$constraintType4.$description(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5507)), var$12), $rt_s(5968)), var$5), $rt_s(901)), var$7); + var$5 = oncias_SemanticAnalysisTooling_error$0($this, var$9, jl_AbstractStringBuilder_toString(var$3), var$2.$position()); + } + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticCheck_chain$(var$4, var$5)), oncia_CreateConstraint_semanticCheck$($this)); }, -onciu_RewritableJavascript$PROXY$11_138 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_138_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_copy = ($this, $variable, $entityName, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreatePropertyTypeConstraint__init_($variable, $entityName, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position); }, -onciu_RewritableJavascript$PROXY$11_139 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_139_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_productPrefix = $this => { + return $rt_s(5969); }, -onciu_RewritableJavascript$PROXY$11_140 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_140_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_productArity = $this => { + return 8; }, -onciu_RewritableJavascript$PROXY$11_141 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_141_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable24; + case 1: + return $this.$entityName2; + case 2: + return $this.$property4; + case 3: + return $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType; + case 4: + return $this.$name37; + case 5: + return $this.$ifExistsDo10; + case 6: + return $this.$options5; + case 7: + return $this.$useGraph6; + default: + } + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_142 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_142_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_143 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_143_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncia_CreatePropertyTypeConstraint_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_144 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_144_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_145 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_145_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreatePropertyTypeConstraint) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable24; + var$3 = $x$1.$variable24; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$entityName2; + var$3 = $x$1.$entityName2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$property4; + var$3 = $x$1.$property4; + if (var$2 !== null) { + if (!oncie_Property_equals(var$2, var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType; + var$3 = $x$1.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$name37; + var$3 = $x$1.$name37; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$ifExistsDo10; + var$3 = $x$1.$ifExistsDo10; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break h; + } + if (var$3 !== null) + break b; + } + i: { + var$2 = $this.$options5; + var$3 = $x$1.$options5; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break i; + } + if (var$3 !== null) + break b; + } + j: { + var$3 = $this.$useGraph6; + $x$1 = $x$1.$useGraph6; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break j; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_CreatePropertyTypeConstraint)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -onciu_RewritableJavascript$PROXY$11_146 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_146_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}; -let onciu_RewritableJavascript$PROXY$11_147 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_147_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -onciu_RewritableJavascript$PROXY$11_148 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_148_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint_withGraph = ($this, $useGraph) => { + return oncia_CreatePropertyTypeConstraint_copy($this, $this.$variable24, $this.$entityName2, $this.$property4, $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType, $this.$name37, $this.$ifExistsDo10, $this.$options5, $useGraph, $this.$position157); }, -onciu_RewritableJavascript$PROXY$11_149 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_149_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint__init_0 = ($this, $variable, $entityName, $property, $propertyType, $name, $ifExistsDo, $options, $useGraph, $position) => { + let $entityType, $constraintType; + $this.$variable24 = $variable; + $this.$entityName2 = $entityName; + $this.$property4 = $property; + $this.$org$neo4j$cypher$internal$ast$CreatePropertyTypeConstraint$$propertyType = $propertyType; + $this.$name37 = $name; + $this.$ifExistsDo10 = $ifExistsDo; + $this.$options5 = $options; + $this.$useGraph6 = $useGraph; + $this.$position157 = $position; + oncia_CreateConstraint_$init$($this); + $this.$properties18 = sci_$colon$colon__init_($property, sci_Nil$_MODULE$); + $this.$normalizedPropertyType = oncius_CypherType$_normalizeTypes(oncius_CypherType$_MODULE$, $propertyType); + if ($entityName instanceof oncie_LabelName) { + $variable = new s_Tuple2; + oncius_package$_$callClinit(); + s_Tuple2__init_0($variable, oncius_package$_CTNode(oncius_package$_MODULE$), oncia_NodePropertyType__init_($this.$normalizedPropertyType)); + } else if ($entityName instanceof oncie_RelTypeName) { + $variable = new s_Tuple2; + oncius_package$_$callClinit(); + s_Tuple2__init_0($variable, oncius_package$_CTRelationship(oncius_package$_MODULE$), oncia_RelationshipPropertyType__init_($this.$normalizedPropertyType)); + } else if ($entityName instanceof oncie_DynamicLabelExpression) { + $variable = new s_Tuple2; + oncius_package$_$callClinit(); + s_Tuple2__init_0($variable, oncius_package$_CTNode(oncius_package$_MODULE$), oncia_NodePropertyType__init_($this.$normalizedPropertyType)); + } else { + if (!($entityName instanceof oncie_DynamicRelTypeExpression)) + $rt_throw(s_MatchError__init_($entityName)); + $variable = new s_Tuple2; + oncius_package$_$callClinit(); + s_Tuple2__init_0($variable, oncius_package$_CTRelationship(oncius_package$_MODULE$), oncia_RelationshipPropertyType__init_($this.$normalizedPropertyType)); + } + $entityType = $variable.$_10; + $constraintType = $variable.$_20; + if ($entityType !== null && $constraintType !== null) { + $variable = s_Tuple2__init_($entityType, $constraintType); + $this.$x$8 = $variable; + $this.$entityType3 = $variable.$_10; + $this.$constraintType4 = $variable.$_20; + return; + } + $rt_throw(s_MatchError__init_($variable)); }, -onciu_RewritableJavascript$PROXY$11_150 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_150_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreatePropertyTypeConstraint__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new oncia_CreatePropertyTypeConstraint(); + oncia_CreatePropertyTypeConstraint__init_0(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; }, -onciu_RewritableJavascript$PROXY$11_151 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_151_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_NodePropertyUniqueness$ = $rt_classWithoutFields(), +oncia_NodePropertyUniqueness$_MODULE$ = null, +oncia_NodePropertyUniqueness$__clinit_ = () => { + oncia_NodePropertyUniqueness$_MODULE$ = new oncia_NodePropertyUniqueness$; }, -onciu_RewritableJavascript$PROXY$11_152 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_152_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_NodeKey$ = $rt_classWithoutFields(), +oncia_NodeKey$_MODULE$ = null, +oncia_NodeKey$__clinit_ = () => { + oncia_NodeKey$_MODULE$ = new oncia_NodeKey$; }, -onciu_RewritableJavascript$PROXY$11_153 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_153_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyExistence$ = $rt_classWithoutFields(), +oncia_RelationshipPropertyExistence$_MODULE$ = null, +oncia_RelationshipPropertyExistence$_description = null, +oncia_RelationshipPropertyExistence$_predicate = null, +oncia_RelationshipPropertyExistence$__clinit_ = () => { + oncia_RelationshipPropertyExistence$_MODULE$ = new oncia_RelationshipPropertyExistence$; + oncia_RelationshipPropertyExistence$_description = $rt_s(5970); + oncia_RelationshipPropertyExistence$_predicate = $rt_s(436); }, -onciu_RewritableJavascript$PROXY$11_154 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_154_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyExistence$_description0 = $this => { + return oncia_RelationshipPropertyExistence$_description; }, -onciu_RewritableJavascript$PROXY$11_155 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_155_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyExistence$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_156 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_156_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyExistence$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_157 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_157_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyExistence$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_158 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_158_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyExistence$_hashCode = $this => { + return (-2116412299); }, -onciu_RewritableJavascript$PROXY$11_159 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_159_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncia_RelationshipPropertyExistence$_toString = $this => { + return $rt_s(5971); }, -onciu_RewritableJavascript$PROXY$11_160 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_160_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniqueness$ = $rt_classWithoutFields(), +oncia_RelationshipPropertyUniqueness$_MODULE$ = null, +oncia_RelationshipPropertyUniqueness$__clinit_ = () => { + oncia_RelationshipPropertyUniqueness$_MODULE$ = new oncia_RelationshipPropertyUniqueness$; }, -onciu_RewritableJavascript$PROXY$11_161 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_161_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKey$ = $rt_classWithoutFields(), +oncia_RelationshipKey$_MODULE$ = null; +let oncia_RelationshipKey$__clinit_ = () => { + oncia_RelationshipKey$_MODULE$ = new oncia_RelationshipKey$; }, -onciu_RewritableJavascript$PROXY$11_162 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_162_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateIndex = $rt_classWithoutFields(0), +oncia_CreateIndex_semanticCheck$ = $$this => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = $$this.$ifExistsDo(); + oncia_IfExistsInvalidSyntax$_$callClinit(); + if (jl_Object_equals(oncia_IfExistsInvalidSyntax$_MODULE$, var$2)) + var$3 = 1; + else { + oncia_IfExistsReplace$_$callClinit(); + var$3 = !jl_Object_equals(oncia_IfExistsReplace$_MODULE$, var$2) ? 0 : 1; + } + if (var$3) { + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$7 = var$6.data; + oncias_SemanticError$_$callClinit(); + var$7[0] = oncias_SemanticError$_badCommandWithOrReplace(oncias_SemanticError$_MODULE$, $rt_s(5972), $rt_s(5185), $$this.$position()); + $$this = oncias_SemanticCheck$_error(var$4, sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); + } else { + if (!$$this.$isNodeIndex()) { + oncius_package$_$callClinit(); + var$2 = oncius_package$_CTRelationship(oncius_package$_MODULE$); + } else { + oncius_package$_$callClinit(); + var$2 = oncius_package$_CTNode(oncius_package$_MODULE$); + } + var$8 = oncias_package$_MODULE$; + var$9 = $$this.$variable4(); + oncius_package$_$callClinit(); + var$2 = oncias_package$_liftSemanticEitherFunc(var$8, $$this.$declareVariable(var$9, var$2.$invariant())); + oncias_SemanticExpressionCheck$_$callClinit(); + var$9 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, $$this.$properties4())); + var$2 = $$this.$properties4(); + var$8 = new oncia_CreateIndex$semanticCheck$lambda$_31_0; + var$8.$_0616 = $$this; + $$this = oncias_SemanticCheck_chain$(var$9, $$this.$semanticCheckFold(var$2, var$8)); + } + return $$this; }, -onciu_RewritableJavascript$PROXY$11_163 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_163_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndex = $rt_classWithoutFields(0); +function oncia_CreateSingleLabelPropertyIndexCommand() { + let a = this; jl_Object.call(a); + a.$variable26 = null; + a.$entityName0 = null; + a.$properties8 = null; + a.$name40 = null; + a.$indexType1 = null; + a.$ifExistsDo11 = null; + a.$options1 = null; + a.$useGraph5 = null; + a.$position159 = null; + a.$org$neo4j$cypher$internal$ast$CreateSingleLabelPropertyIndex$$x$1 = null; + a.$isNodeIndex1 = 0; + a.$entityIndexDescription = null; +} +let oncia_CreateSingleLabelPropertyIndexCommand_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = oncias_SemanticCheck_chain$(oncia_SchemaCommand_checkOptionsMap$($this, $this.$entityIndexDescription, $this.$options1), oncia_CreateIndex_semanticCheck$($this)); + if (!$this.$indexType1.$singlePropertyOnly()) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$2 = $this.$indexType1.$allDescription(); + var$3 = $this.$properties8; + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = var$3.$length() <= 1 ? 0 : 1; + var$6 = new oncia_SchemaCommand$checkSingleProperty$lambda$_8_0; + var$6.$_0134 = $this; + var$6.$_146 = var$2; + var$6.$_223 = var$3; + var$2 = oncias_SemanticCheck$_when(var$4, var$5, var$6); + } + return oncias_SemanticCheck_chain$(var$1, var$2); }, -onciu_RewritableJavascript$PROXY$11_164 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_164_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_returnColumns = $this => { + return oncia_SchemaCommand_returnColumns$($this); }, -onciu_RewritableJavascript$PROXY$11_165 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_165_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -onciu_RewritableJavascript$PROXY$11_166 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_166_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -onciu_RewritableJavascript$PROXY$11_167 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_167_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -onciu_RewritableJavascript$PROXY$11_168 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_168_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_foldedOver = $this => { + return $this; +}, +oncia_CreateSingleLabelPropertyIndexCommand_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_CreateSingleLabelPropertyIndexCommand_isNodeIndex = $this => { + return $this.$isNodeIndex1; }, -onciu_RewritableJavascript$PROXY$11_169 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_169_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_variable = $this => { + return $this.$variable26; }, -onciu_RewritableJavascript$PROXY$11_170 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_170_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_properties = $this => { + return $this.$properties8; }, -onciu_RewritableJavascript$PROXY$11_171 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_171_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}; -let onciu_RewritableJavascript$PROXY$11_172 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_172_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_indexType = $this => { + return $this.$indexType1; }, -onciu_RewritableJavascript$PROXY$11_173 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_173_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_ifExistsDo = $this => { + return $this.$ifExistsDo11; }, -onciu_RewritableJavascript$PROXY$11_174 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_174_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_options = $this => { + return $this.$options1; }, -onciu_RewritableJavascript$PROXY$11_175 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_175_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_position = $this => { + return $this.$position159; }, -onciu_RewritableJavascript$PROXY$11_176 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_176_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_copy = ($this, $variable, $entityName, $properties, $name, $indexType, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateSingleLabelPropertyIndexCommand__init_($variable, $entityName, $properties, $name, $indexType, $ifExistsDo, $options, $useGraph, $position); }, -onciu_RewritableJavascript$PROXY$11_177 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_177_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_productPrefix = $this => { + return $rt_s(5973); }, -onciu_RewritableJavascript$PROXY$11_178 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_178_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_productArity = $this => { + return 8; }, -onciu_RewritableJavascript$PROXY$11_179 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_179_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable26; + case 1: + return $this.$entityName0; + case 2: + return $this.$properties8; + case 3: + return $this.$name40; + case 4: + return $this.$indexType1; + case 5: + return $this.$ifExistsDo11; + case 6: + return $this.$options1; + case 7: + return $this.$useGraph5; + default: + } + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_180 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_180_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_181 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_181_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_182 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_182_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_183 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_183_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateSingleLabelPropertyIndexCommand) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable26; + var$3 = $x$1.$variable26; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$entityName0; + var$3 = $x$1.$entityName0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$properties8; + var$3 = $x$1.$properties8; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$name40; + var$3 = $x$1.$name40; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$indexType1; + var$3 = $x$1.$indexType1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$ifExistsDo11; + var$3 = $x$1.$ifExistsDo11; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break h; + } + if (var$3 !== null) + break b; + } + i: { + var$2 = $this.$options1; + var$3 = $x$1.$options1; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break i; + } + if (var$3 !== null) + break b; + } + j: { + var$3 = $this.$useGraph5; + $x$1 = $x$1.$useGraph5; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break j; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_CreateSingleLabelPropertyIndexCommand)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -onciu_RewritableJavascript$PROXY$11_184 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_184_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -onciu_RewritableJavascript$PROXY$11_185 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_185_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand_withGraph = ($this, $useGraph) => { + return oncia_CreateSingleLabelPropertyIndexCommand_copy($this, $this.$variable26, $this.$entityName0, $this.$properties8, $this.$name40, $this.$indexType1, $this.$ifExistsDo11, $this.$options1, $useGraph, $this.$position159); }, -onciu_RewritableJavascript$PROXY$11_186 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_186_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand__init_0 = ($this, $variable, $entityName, $properties, $name, $indexType, $ifExistsDo, $options, $useGraph, $position) => { + let var$10; + $this.$variable26 = $variable; + $this.$entityName0 = $entityName; + $this.$properties8 = $properties; + $this.$name40 = $name; + $this.$indexType1 = $indexType; + $this.$ifExistsDo11 = $ifExistsDo; + $this.$options1 = $options; + $this.$useGraph5 = $useGraph; + $this.$position159 = $position; + if ($entityName instanceof oncie_LabelName) + $variable = s_Tuple2__init_(jl_Boolean_valueOf(1), $this.$indexType1.$nodeDescription()); + else { + if (!($entityName instanceof oncie_RelTypeName)) { + if ($entityName instanceof oncie_DynamicLabelExpression) { + $variable = new jl_IllegalStateException; + jl_Throwable__init_($variable, $rt_s(5964)); + $rt_throw($variable); + } + if (!($entityName instanceof oncie_DynamicRelTypeExpression)) + $rt_throw(s_MatchError__init_($entityName)); + $variable = new jl_IllegalStateException; + jl_Throwable__init_($variable, $rt_s(5965)); + $rt_throw($variable); + } + $variable = s_Tuple2__init_(jl_Boolean_valueOf(0), $this.$indexType1.$relDescription()); + } + var$10 = s_Tuple2__1$mcZ$sp($variable); + $entityName = $variable.$_20; + if ($entityName === null) + $rt_throw(s_MatchError__init_($variable)); + $variable = s_Tuple2__init_(jl_Boolean_valueOf(var$10), $entityName); + $this.$org$neo4j$cypher$internal$ast$CreateSingleLabelPropertyIndex$$x$1 = $variable; + $this.$isNodeIndex1 = s_Tuple2__1$mcZ$sp($variable); + $this.$entityIndexDescription = $this.$org$neo4j$cypher$internal$ast$CreateSingleLabelPropertyIndex$$x$1.$_20; }, -onciu_RewritableJavascript$PROXY$11_187 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_187_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateSingleLabelPropertyIndexCommand__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new oncia_CreateSingleLabelPropertyIndexCommand(); + oncia_CreateSingleLabelPropertyIndexCommand__init_0(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; }, -onciu_RewritableJavascript$PROXY$11_188 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_188_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_CreateIndexType = $rt_classWithoutFields(0), +oncia_VectorCreateIndex$ = $rt_classWithoutFields(), +oncia_VectorCreateIndex$_MODULE$ = null, +oncia_VectorCreateIndex$_command = null, +oncia_VectorCreateIndex$_nodeDescription = null, +oncia_VectorCreateIndex$_relDescription = null, +oncia_VectorCreateIndex$_allDescription = null, +oncia_VectorCreateIndex$_singlePropertyOnly = 0, +oncia_VectorCreateIndex$__clinit_ = () => { + oncia_VectorCreateIndex$_MODULE$ = new oncia_VectorCreateIndex$; + oncia_VectorCreateIndex$_command = $rt_s(5974); + oncia_VectorCreateIndex$_nodeDescription = $rt_s(5975); + oncia_VectorCreateIndex$_relDescription = $rt_s(5976); + oncia_VectorCreateIndex$_allDescription = $rt_s(5977); + oncia_VectorCreateIndex$_singlePropertyOnly = 1; }, -onciu_RewritableJavascript$PROXY$11_189 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_189_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_VectorCreateIndex$_nodeDescription0 = $this => { + return oncia_VectorCreateIndex$_nodeDescription; }, -onciu_RewritableJavascript$PROXY$11_190 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_190_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_VectorCreateIndex$_relDescription0 = $this => { + return oncia_VectorCreateIndex$_relDescription; }, -onciu_RewritableJavascript$PROXY$7_453 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_453_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_GraphFunctionReference__init_0(var$3[0], var$3[1]); +oncia_VectorCreateIndex$_allDescription0 = $this => { + return oncia_VectorCreateIndex$_allDescription; }, -onciu_RewritableJavascript$PROXY$7_460 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_460_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CommandResultItem__init_(var$3[0], var$3[1], var$3[2]); +oncia_VectorCreateIndex$_singlePropertyOnly0 = $this => { + return oncia_VectorCreateIndex$_singlePropertyOnly; }, -onciu_RewritableJavascript$PROXY$7_464 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_464_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncil_LabelExpression$Conjunctions_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); +oncia_VectorCreateIndex$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_191 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_191_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_VectorCreateIndex$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_191 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_191_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_VectorCreateIndex$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$7_468 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_468_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DenyPrivilege__init_(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5]); -}; -let onciu_RewritableJavascript$PROXY$7_470 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_470_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_RevokePrivilege__init_0(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5], var$3[6]); +oncia_VectorCreateIndex$_hashCode = $this => { + return 1286046675; }, -onciu_RewritableJavascript$PROXY$7_471 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_471_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_GrantPrivilege__init_(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5]); +oncia_VectorCreateIndex$_toString = $this => { + return $rt_s(5978); }, -oncie_MatchMode = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_476 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_476_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_DynamicLabelExpression__init_(var$3[0], var$3[1].$value3, var$3[2]); +oncia_TextCreateIndex$ = $rt_classWithoutFields(), +oncia_TextCreateIndex$_MODULE$ = null, +oncia_TextCreateIndex$_command = null, +oncia_TextCreateIndex$_nodeDescription = null, +oncia_TextCreateIndex$_relDescription = null, +oncia_TextCreateIndex$_allDescription = null; +let oncia_TextCreateIndex$_singlePropertyOnly = 0, +oncia_TextCreateIndex$__clinit_ = () => { + oncia_TextCreateIndex$_MODULE$ = new oncia_TextCreateIndex$; + oncia_TextCreateIndex$_command = $rt_s(908); + oncia_TextCreateIndex$_nodeDescription = $rt_s(5979); + oncia_TextCreateIndex$_relDescription = $rt_s(5980); + oncia_TextCreateIndex$_allDescription = $rt_s(5981); + oncia_TextCreateIndex$_singlePropertyOnly = 1; }, -onciu_RewritableJavascript$PROXY$7_484 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_484_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Pattern$ForMatch__init_(var$3[0], var$3[1]); +oncia_TextCreateIndex$_nodeDescription0 = $this => { + return oncia_TextCreateIndex$_nodeDescription; }, -onciu_RewritableJavascript$PROXY$7_489 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_489_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PatternPart$AnyPath__init_(var$3[0], var$3[1]); +oncia_TextCreateIndex$_relDescription0 = $this => { + return oncia_TextCreateIndex$_relDescription; }, -onciu_RewritableJavascript$PROXY$7_490 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_490_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ExtractScope__init_(var$3[0], var$3[1], var$3[2], var$3[3]); +oncia_TextCreateIndex$_allDescription0 = $this => { + return oncia_TextCreateIndex$_allDescription; }, -onciu_RewritableJavascript$PROXY$7_492 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_492_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PatternPart$ShortestGroups__init_(var$3[0], var$3[1]); +oncia_TextCreateIndex$_singlePropertyOnly0 = $this => { + return oncia_TextCreateIndex$_singlePropertyOnly; }, -onciu_RewritableJavascript$PROXY$7_494 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_494_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_RelationshipsPattern__init_(var$3[0], var$3[1]); +oncia_TextCreateIndex$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$7_498 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_498_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_FunctionName__init_0(var$3[0], var$3[1], var$3[2]); +oncia_TextCreateIndex$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$7_500 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_500_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_MatchMode$DifferentRelationships__init_(var$3[0].$value3, var$3[1]); +oncia_TextCreateIndex$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$7_501 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_501_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ReduceScope__init_(var$3[0], var$3[1], var$3[2], var$3[3]); +oncia_TextCreateIndex$_hashCode = $this => { + return 657383849; }, -onciu_RewritableJavascript$PROXY$7_503 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_503_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_DynamicRelTypeExpression__init_(var$3[0], var$3[1].$value3, var$3[2]); +oncia_TextCreateIndex$_toString = $this => { + return $rt_s(5982); +}; +function oncia_RangeCreateIndex() { + let a = this; jl_Object.call(a); + a.$fromDefault = 0; + a.$command2 = null; + a.$nodeDescription0 = null; + a.$relDescription0 = null; + a.$allDescription0 = null; + a.$singlePropertyOnly0 = 0; +} +let oncia_RangeCreateIndex_nodeDescription = $this => { + return $this.$nodeDescription0; }, -onciu_RewritableJavascript$PROXY$7_509 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_509_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Namespace__init_0(var$3[0], var$3[1]); +oncia_RangeCreateIndex_relDescription = $this => { + return $this.$relDescription0; }, -onciu_RewritableJavascript$PROXY$7_510 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_510_copyConstructor = (var$1, var$2, var$3) => { - return oncie_MatchMode$RepeatableElements__init_(var$3.data[0]); +oncia_RangeCreateIndex_allDescription = $this => { + return $this.$allDescription0; }, -onciu_RewritableJavascript$PROXY$7_512 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_512_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_IntervalQuantifier_copy(var$2, var$3[0], var$3[1], var$3[2]); +oncia_RangeCreateIndex_singlePropertyOnly = $this => { + return $this.$singlePropertyOnly0; }, -onciu_RewritableJavascript$PROXY$7_514 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_514_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_DynamicLabelOrRelTypeExpression__init_0(var$3[0], var$3[1].$value3, var$3[2]); +oncia_RangeCreateIndex_productPrefix = $this => { + return $rt_s(5983); }, -onciu_RewritableJavascript$PROXY$7_515 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_515_copyConstructor = (var$1, var$2, var$3) => { - return oncie_PatternPart$AllShortestPaths__init_(var$3.data[0]); +oncia_RangeCreateIndex_productArity = $this => { + return 1; }, -onciu_RewritableJavascript$PROXY$7_520 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_520_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PatternPart$AnyShortestPath__init_(var$3[0], var$3[1]); +oncia_RangeCreateIndex_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Boolean_valueOf($this.$fromDefault); + default: + } + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$7_523 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_523_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_PathConcatenation_copy(var$2, var$3[0], var$3[1]); +oncia_RangeCreateIndex_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$7_524 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_524_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_Pattern$ForUpdate_copy(var$2, var$3[0], var$3[1]); +oncia_RangeCreateIndex_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5983))), !$this.$fromDefault ? 1237 : 1231), 1); }, -onciu_RewritableJavascript$PROXY$7_525 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_525_copyConstructor = (var$1, var$2, var$3) => { - return oncie_StarQuantifier__init_(var$3.data[0]); +oncia_RangeCreateIndex_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$7_530 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_530_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_FilterScope__init_(var$3[0], var$3[1], var$3[2]); +oncia_RangeCreateIndex_equals = ($this, $x$1) => { + let var$2; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RangeCreateIndex) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$fromDefault != $x$1.$fromDefault) + break b; + if (!($this instanceof oncia_RangeCreateIndex)) + break b; + } + var$2 = 1; + break a; + } + var$2 = 0; + } + return var$2; }, -onciu_RewritableJavascript$PROXY$7_532 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_532_copyConstructor = (var$1, var$2, var$3) => { - return oncie_PatternPart$AllPaths__init_(var$3.data[0]); +oncia_RangeCreateIndex__init_0 = ($this, $fromDefault) => { + $this.$fromDefault = $fromDefault; + $this.$command2 = !$fromDefault ? $rt_s(905) : $rt_s(907); + $this.$nodeDescription0 = $rt_s(5984); + $this.$relDescription0 = $rt_s(5985); + $this.$allDescription0 = $rt_s(5986); + $this.$singlePropertyOnly0 = 0; }, -onciu_RewritableJavascript$PROXY$7_533 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_533_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ProcedureName__init_0(var$3[0], var$3[1]); +oncia_RangeCreateIndex__init_ = var_0 => { + let var_1 = new oncia_RangeCreateIndex(); + oncia_RangeCreateIndex__init_0(var_1, var_0); + return var_1; }, -onciu_RewritableJavascript$PROXY$7_534 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$7_534_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_FixedQuantifier_copy(var$2, var$3[0], var$3[1]); +oncia_PointCreateIndex$ = $rt_classWithoutFields(), +oncia_PointCreateIndex$_MODULE$ = null, +oncia_PointCreateIndex$_command = null, +oncia_PointCreateIndex$_nodeDescription = null, +oncia_PointCreateIndex$_relDescription = null, +oncia_PointCreateIndex$_allDescription = null, +oncia_PointCreateIndex$_singlePropertyOnly = 0, +oncia_PointCreateIndex$__clinit_ = () => { + oncia_PointCreateIndex$_MODULE$ = new oncia_PointCreateIndex$; + oncia_PointCreateIndex$_command = $rt_s(906); + oncia_PointCreateIndex$_nodeDescription = $rt_s(5987); + oncia_PointCreateIndex$_relDescription = $rt_s(5988); + oncia_PointCreateIndex$_allDescription = $rt_s(5989); + oncia_PointCreateIndex$_singlePropertyOnly = 1; }, -onciu_RewritableJavascript$PROXY$7_535 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_535_copyConstructor = (var$1, var$2, var$3) => { - return oncie_PlusQuantifier__init_(var$3.data[0]); +oncia_PointCreateIndex$_nodeDescription0 = $this => { + return oncia_PointCreateIndex$_nodeDescription; }, -onciu_RewritableJavascript$PROXY$7_537 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_537_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_LabelOrRelTypeName__init_(var$3[0], var$3[1]); +oncia_PointCreateIndex$_relDescription0 = $this => { + return oncia_PointCreateIndex$_relDescription; }, -onciu_RewritableJavascript$PROXY$9_192 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_192_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_PointCreateIndex$_allDescription0 = $this => { + return oncia_PointCreateIndex$_allDescription; }, -onciu_RewritableJavascript$PROXY$9_193 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_193_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_PointCreateIndex$_singlePropertyOnly0 = $this => { + return oncia_PointCreateIndex$_singlePropertyOnly; }, -onciu_RewritableJavascript$PROXY$9_194 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_194_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_PointCreateIndex$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_195 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_195_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_PointCreateIndex$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_192 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_192_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_PointCreateIndex$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_193 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_193_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_PointCreateIndex$_hashCode = $this => { + return 1430344102; }, -onciu_RewritableJavascript$PROXY$11_194 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_194_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_PointCreateIndex$_toString = $this => { + return $rt_s(5990); }, -onciu_RewritableJavascript$PROXY$11_195 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_195_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}; -function jusi_AllMatchConsumer() { - let a = this; jl_Object.call(a); - a.$matched = 0; - a.$predicate4 = null; -} -let jusi_AllMatchConsumer_test = ($this, $t) => { - if (!$this.$predicate4.$test($t)) - $this.$matched = 0; - return $this.$matched; -}; -function jnci_BufferedEncoder$Controller() { +oncia_CreateFulltextIndex = $rt_classWithoutFields(0); +function oncia_CreateFulltextIndexCommand() { let a = this; jl_Object.call(a); - a.$in0 = null; - a.$out3 = null; - a.$inPosition0 = 0; - a.$outPosition0 = 0; + a.$variable23 = null; + a.$entityNames0 = null; + a.$properties11 = null; + a.$name35 = null; + a.$ifExistsDo9 = null; + a.$options2 = null; + a.$useGraph3 = null; + a.$position136 = null; + a.$indexType4 = null; + a.$org$neo4j$cypher$internal$ast$CreateFulltextIndex$$x$2 = null; + a.$isNodeIndex2 = 0; + a.$entityIndexDescription0 = null; } -let jnci_BufferedEncoder$Controller_hasMoreOutput = ($this, $sz) => { - return jn_Buffer_remaining($this.$out3) < $sz ? 0 : 1; +let oncia_CreateFulltextIndexCommand_semanticCheck = $this => { + return oncias_SemanticCheck_chain$(oncia_SchemaCommand_checkOptionsMap$($this, $this.$entityIndexDescription0, $this.$options2), oncia_CreateIndex_semanticCheck$($this)); }, -oavrt_ParseTreeListener = $rt_classWithoutFields(0), -onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0 = $rt_classWithoutFields(), -onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0_apply = (var$0, var$1) => { - return var$1.$reverse4(); +oncia_CreateFulltextIndexCommand_returnColumns = $this => { + return oncia_SchemaCommand_returnColumns$($this); }, -oavr_CodePointBuffer$1 = $rt_classWithoutFields(), -oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type = null, -oavr_CodePointBuffer$1_$callClinit = () => { - oavr_CodePointBuffer$1_$callClinit = $rt_eraseClinit(oavr_CodePointBuffer$1); - oavr_CodePointBuffer$1__clinit_(); +oncia_CreateFulltextIndexCommand_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -oavr_CodePointBuffer$1__clinit_ = () => { - let var$1, var$2; - var$1 = $rt_createIntArray((oavr_CodePointBuffer$Type_values()).data.length); - var$2 = var$1.data; - oavr_CodePointBuffer$1_$SwitchMap$org$antlr$v4$runtime$CodePointBuffer$Type = var$1; - var$2[oavr_CodePointBuffer$Type_BYTE.$ordinal] = 1; - var$2[oavr_CodePointBuffer$Type_CHAR.$ordinal] = 2; - var$2[oavr_CodePointBuffer$Type_INT.$ordinal] = 3; +oncia_CreateFulltextIndexCommand_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oavr_InputMismatchException = $rt_classWithoutFields(oavr_RecognitionException), -oavr_InputMismatchException__init_1 = ($this, $recognizer) => { - oavr_RecognitionException__init_($this, $recognizer, $recognizer.$_input, $recognizer.$_ctx); - $this.$offendingToken = oavr_Parser_getCurrentToken($recognizer); +oncia_CreateFulltextIndexCommand_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oavr_InputMismatchException__init_ = var_0 => { - let var_1 = new oavr_InputMismatchException(); - oavr_InputMismatchException__init_1(var_1, var_0); - return var_1; +oncia_CreateFulltextIndexCommand_foldedOver = $this => { + return $this; }, -oavr_InputMismatchException__init_2 = ($this, $recognizer, $state, $ctx) => { - oavr_RecognitionException__init_($this, $recognizer, $recognizer.$_input, $ctx); - $this.$offendingState = $state; - $this.$offendingToken = oavr_Parser_getCurrentToken($recognizer); +oncia_CreateFulltextIndexCommand_folder = $this => { + return onciu_Foldable_folder$($this); }, -oavr_InputMismatchException__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oavr_InputMismatchException(); - oavr_InputMismatchException__init_2(var_3, var_0, var_1, var_2); - return var_3; +oncia_CreateFulltextIndexCommand_indexType = $this => { + return $this.$indexType4; }, -oavr_FailedPredicateException = $rt_classWithoutFields(oavr_RecognitionException), -oavrm_IntSet = $rt_classWithoutFields(0); -function oavrm_IntervalSet() { - let a = this; jl_Object.call(a); - a.$intervals = null; - a.$readonly0 = 0; -} -let oavrm_IntervalSet_COMPLETE_CHAR_SET = null, -oavrm_IntervalSet_EMPTY_SET = null, -oavrm_IntervalSet_$callClinit = () => { - oavrm_IntervalSet_$callClinit = $rt_eraseClinit(oavrm_IntervalSet); - oavrm_IntervalSet__clinit_(); +oncia_CreateFulltextIndexCommand_isNodeIndex = $this => { + return $this.$isNodeIndex2; }, -oavrm_IntervalSet__init_2 = ($this, $set) => { - oavrm_IntervalSet_$callClinit(); - oavrm_IntervalSet__init_0($this, $rt_createIntArray(0)); - oavrm_IntervalSet_addAll($this, $set); +oncia_CreateFulltextIndexCommand_variable = $this => { + return $this.$variable23; }, -oavrm_IntervalSet__init_1 = var_0 => { - let var_1 = new oavrm_IntervalSet(); - oavrm_IntervalSet__init_2(var_1, var_0); - return var_1; +oncia_CreateFulltextIndexCommand_properties = $this => { + return $this.$properties11; }, -oavrm_IntervalSet__init_0 = ($this, $els) => { - let var$2, var$3, var$4; - oavrm_IntervalSet_$callClinit(); - a: { - if ($els === null) - $this.$intervals = ju_ArrayList__init_1(2); - else { - $els = $els.data; - var$2 = new ju_ArrayList; - var$3 = $els.length; - ju_ArrayList__init_2(var$2, var$3); - $this.$intervals = var$2; - var$4 = 0; - while (true) { - if (var$4 >= var$3) - break a; - oavrm_IntervalSet_add($this, $els[var$4]); - var$4 = var$4 + 1 | 0; - } - } - } +oncia_CreateFulltextIndexCommand_ifExistsDo = $this => { + return $this.$ifExistsDo9; }, -oavrm_IntervalSet__init_ = var_0 => { - let var_1 = new oavrm_IntervalSet(); - oavrm_IntervalSet__init_0(var_1, var_0); - return var_1; +oncia_CreateFulltextIndexCommand_options = $this => { + return $this.$options2; }, -oavrm_IntervalSet_of0 = $a => { - let $s; - oavrm_IntervalSet_$callClinit(); - $s = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavrm_IntervalSet_add($s, $a); - return $s; +oncia_CreateFulltextIndexCommand_position = $this => { + return $this.$position136; }, -oavrm_IntervalSet_of = ($a, $b) => { - let $s; - oavrm_IntervalSet_$callClinit(); - $s = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavrm_IntervalSet_add0($s, $a, $b); - return $s; +oncia_CreateFulltextIndexCommand_copy = ($this, $variable, $entityNames, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateFulltextIndexCommand__init_0($variable, $entityNames, $properties, $name, $ifExistsDo, $options, $useGraph, $position); }, -oavrm_IntervalSet_add = ($this, $el) => { - let var$2; - if (!$this.$readonly0) { - oavrm_IntervalSet_add0($this, $el, $el); - return; - } - var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(6819)); - $rt_throw(var$2); +oncia_CreateFulltextIndexCommand_productPrefix = $this => { + return $rt_s(5991); }, -oavrm_IntervalSet_add0 = ($this, $a, $b) => { - let var$3, var$4, var$5; - var$3 = oavrm_Interval_of($a, $b); - if ($this.$readonly0) { - var$3 = new jl_IllegalStateException; - jl_Throwable__init_0(var$3, $rt_s(6819)); - $rt_throw(var$3); +oncia_CreateFulltextIndexCommand_productArity = $this => { + return 7; +}, +oncia_CreateFulltextIndexCommand_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$variable23; + case 1: + return $this.$entityNames0; + case 2: + return $this.$properties11; + case 3: + return $this.$name35; + case 4: + return $this.$ifExistsDo9; + case 5: + return $this.$options2; + case 6: + return $this.$useGraph3; + default: } + return sr_Statics_ioobe($x$1); +}, +oncia_CreateFulltextIndexCommand_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateFulltextIndexCommand_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateFulltextIndexCommand_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateFulltextIndexCommand_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - if (var$3.$b >= var$3.$a0) { - var$4 = ju_AbstractList_listIterator($this.$intervals, 0); - b: { - while (true) { - if (!ju_AbstractList$TListIteratorImpl_hasNext(var$4)) { - ju_ArrayList_add($this.$intervals, var$3); - break a; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CreateFulltextIndexCommand) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$variable23; + var$3 = $x$1.$variable23; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; } - var$5 = ju_AbstractList$TListIteratorImpl_next(var$4); - if (oavrm_Interval_equals(var$3, var$5)) - break; - if (oavrm_Interval_adjacent(var$3, var$5)) - break b; - if (!oavrm_Interval_disjoint(var$3, var$5)) + if (var$3 !== null) break b; - if (oavrm_Interval_startsBeforeDisjoint(var$3, var$5)) { - ju_AbstractList$TListIteratorImpl_previous(var$4); - var$5 = var$4.$this$0; - $b = var$4.$i0; - var$4.$i0 = $b + 1 | 0; - var$5.$add3($b, var$3); - var$4.$lastModCount = var$4.$this$0.$modCount; - var$4.$j = (-1); - break a; + } + d: { + var$2 = $this.$entityNames0; + var$3 = $x$1.$entityNames0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; } + if (var$3 !== null) + break b; } - break a; - } - var$3 = oavrm_Interval_union(var$3, var$5); - ju_AbstractList$TListIteratorImpl_set(var$4, var$3); - c: { - while (true) { - if (!ju_AbstractList$TListIteratorImpl_hasNext(var$4)) - break c; - var$5 = ju_AbstractList$TListIteratorImpl_next(var$4); - if (!oavrm_Interval_adjacent(var$3, var$5) && oavrm_Interval_disjoint(var$3, var$5)) - break; - if (var$4.$j == (-1)) { - var$3 = new jl_IllegalStateException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); + e: { + var$2 = $this.$properties11; + var$3 = $x$1.$properties11; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break e; } - ju_AbstractList$TListIteratorImpl_checkConcurrentModification(var$4); - var$4.$this$0.$remove(var$4.$j); - $a = var$4.$j; - $b = var$4.$i0; - if ($a < $b) - var$4.$i0 = $b - 1 | 0; - var$4.$sz = var$4.$sz - 1 | 0; - var$4.$lastModCount = var$4.$this$0.$modCount; - ju_AbstractList$TListIteratorImpl_previous(var$4); - ju_AbstractList$TListIteratorImpl_set(var$4, oavrm_Interval_union(var$3, var$5)); - ju_AbstractList$TListIteratorImpl_next(var$4); + if (var$3 !== null) + break b; } - } - } - } -}, -oavrm_IntervalSet_addAll = ($this, $other) => { - let $n, $i, $I; - if ($other === null) - return $this; - a: { - if (!($other instanceof oavrm_IntervalSet)) { - $other = ju_AbstractList_iterator(oavrm_IntervalSet_toList($other)); - while (true) { - if (!ju_AbstractList$1_hasNext($other)) - break a; - oavrm_IntervalSet_add($this, (ju_AbstractList$1_next($other)).$value4); - } - } - $n = $other.$intervals.$size0; - $i = 0; - while ($i < $n) { - $I = ju_ArrayList_get($other.$intervals, $i); - oavrm_IntervalSet_add0($this, $I.$a0, $I.$b); - $i = $i + 1 | 0; - } - } - return $this; -}, -oavrm_IntervalSet_complement = ($this, $vocabularyIS) => { - let $vocabularyIS_0; - if ($vocabularyIS !== null && !oavrm_IntervalSet_isNil($vocabularyIS)) { - if ($vocabularyIS instanceof oavrm_IntervalSet) - $vocabularyIS_0 = $vocabularyIS; - else { - $vocabularyIS_0 = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavrm_IntervalSet_addAll($vocabularyIS_0, $vocabularyIS); - } - if (oavrm_IntervalSet_isNil($this)) - $vocabularyIS = oavrm_IntervalSet__init_1($vocabularyIS_0); - else if ($this instanceof oavrm_IntervalSet) - $vocabularyIS = oavrm_IntervalSet_subtract($vocabularyIS_0, $this); - else { - $vocabularyIS = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavrm_IntervalSet_addAll($vocabularyIS, $this); - $vocabularyIS = oavrm_IntervalSet_subtract($vocabularyIS_0, $vocabularyIS); - } - return $vocabularyIS; - } - return null; -}, -oavrm_IntervalSet_subtract = ($left, $right) => { - let $result, $resultI, $rightI, $resultInterval, $rightInterval, var$8, var$9, var$10, $beforeCurrent, $afterCurrent; - oavrm_IntervalSet_$callClinit(); - if ($left !== null && !oavrm_IntervalSet_isNil($left)) { - $result = oavrm_IntervalSet__init_1($left); - if ($right !== null && !oavrm_IntervalSet_isNil($right)) { - $resultI = 0; - $rightI = 0; - while (true) { - $left = $result.$intervals; - if ($resultI >= $left.$size0) - break; - if ($rightI >= $right.$intervals.$size0) - break; - $resultInterval = ju_ArrayList_get($left, $resultI); - $rightInterval = ju_ArrayList_get($right.$intervals, $rightI); - var$8 = $rightInterval.$b; - var$9 = $resultInterval.$a0; - if (var$8 < var$9) { - $rightI = $rightI + 1 | 0; - continue; + f: { + var$2 = $this.$name35; + var$3 = $x$1.$name35; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; } - var$10 = $rightInterval.$a0; - if (var$10 > $resultInterval.$b) { - $resultI = $resultI + 1 | 0; - continue; + g: { + var$2 = $this.$ifExistsDo9; + var$3 = $x$1.$ifExistsDo9; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; } - $beforeCurrent = null; - $afterCurrent = null; - if (var$10 > var$9) - $beforeCurrent = oavrm_Interval__init_(var$9, var$10 - 1 | 0); - var$9 = $rightInterval.$b; - var$10 = $resultInterval.$b; - if (var$9 < var$10) - $afterCurrent = oavrm_Interval__init_(var$9 + 1 | 0, var$10); - if ($beforeCurrent === null) { - if ($afterCurrent === null) { - ju_ArrayList_remove($result.$intervals, $resultI); - continue; + h: { + var$2 = $this.$options2; + var$3 = $x$1.$options2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break h; } - ju_ArrayList_set($result.$intervals, $resultI, $afterCurrent); - $rightI = $rightI + 1 | 0; - continue; + if (var$3 !== null) + break b; } - if ($afterCurrent === null) { - ju_ArrayList_set($result.$intervals, $resultI, $beforeCurrent); - $resultI = $resultI + 1 | 0; - continue; + i: { + var$3 = $this.$useGraph3; + $x$1 = $x$1.$useGraph3; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break i; + } + if ($x$1 !== null) + break b; } - ju_ArrayList_set($result.$intervals, $resultI, $beforeCurrent); - $left = $result.$intervals; - $resultI = $resultI + 1 | 0; - ju_ArrayList_add0($left, $resultI, $afterCurrent); - $rightI = $rightI + 1 | 0; + if (!($this instanceof oncia_CreateFulltextIndexCommand)) + break b; } - return $result; - } - return $result; - } - return oavrm_IntervalSet__init_($rt_createIntArray(0)); -}, -oavrm_IntervalSet_contains = ($this, $el) => { - let $n, $l, $r, $m, $I, $a; - $n = $this.$intervals.$size0; - $l = 0; - $r = $n - 1 | 0; - while ($l <= $r) { - $m = ($l + $r | 0) / 2 | 0; - $I = ju_ArrayList_get($this.$intervals, $m); - $a = $I.$a0; - if ($I.$b < $el) - $l = $m + 1 | 0; - else { - if ($a <= $el) - return 1; - $r = $m - 1 | 0; + var$4 = 1; + break a; } + var$4 = 0; } - return 0; -}, -oavrm_IntervalSet_isNil = $this => { - let var$1; - var$1 = $this.$intervals; - return var$1 !== null && !ju_AbstractCollection_isEmpty(var$1) ? 0 : 1; -}, -oavrm_IntervalSet_getMinElement = $this => { - let var$1; - if (!oavrm_IntervalSet_isNil($this)) - return (ju_ArrayList_get($this.$intervals, 0)).$a0; - var$1 = new jl_RuntimeException; - jl_Throwable__init_0(var$1, $rt_s(6820)); - $rt_throw(var$1); -}, -oavrm_IntervalSet_hashCode = $this => { - let $hash, var$2, $I; - $hash = oavrm_MurmurHash_initialize(); - var$2 = ju_AbstractList_iterator($this.$intervals); - while (ju_AbstractList$1_hasNext(var$2)) { - $I = ju_AbstractList$1_next(var$2); - $hash = oavrm_MurmurHash_update(oavrm_MurmurHash_update($hash, $I.$a0), $I.$b); - } - return oavrm_MurmurHash_finish($hash, $this.$intervals.$size0 * 2 | 0); + return var$4; }, -oavrm_IntervalSet_equals = ($this, $obj) => { - let $other; - if ($obj !== null && $obj instanceof oavrm_IntervalSet) { - $other = $obj; - return ju_AbstractList_equals($this.$intervals, $other.$intervals); - } - return 0; +oncia_CreateFulltextIndexCommand_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oavrm_IntervalSet_toString0 = $this => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - var$2 = $this.$intervals; - if (var$2 !== null && !ju_AbstractCollection_isEmpty(var$2)) { - if (oavrm_IntervalSet_size($this) > 1) - jl_AbstractStringBuilder_append(var$1, $rt_s(432)); - var$2 = ju_AbstractList_iterator($this.$intervals); - while (ju_AbstractList$1_hasNext(var$2)) { - var$3 = ju_AbstractList$1_next(var$2); - var$4 = var$3.$a0; - var$5 = var$3.$b; - if (var$4 != var$5) { - var$3 = jl_StringBuilder_append0(var$1, var$4); - jl_AbstractStringBuilder_append(var$3, $rt_s(446)); - jl_StringBuilder_append0(var$3, var$5); - } else if (var$4 != (-1)) - jl_StringBuilder_append0(var$1, var$4); - else - jl_AbstractStringBuilder_append(var$1, $rt_s(4015)); - if (ju_AbstractList$1_hasNext(var$2)) - jl_AbstractStringBuilder_append(var$1, $rt_s(45)); - } - if (oavrm_IntervalSet_size($this) > 1) - jl_AbstractStringBuilder_append(var$1, $rt_s(433)); - var$1 = jl_AbstractStringBuilder_toString(var$1); - } else - var$1 = $rt_s(6821); - return var$1; +oncia_CreateFulltextIndexCommand_withGraph = ($this, $useGraph) => { + return oncia_CreateFulltextIndexCommand_copy($this, $this.$variable23, $this.$entityNames0, $this.$properties11, $this.$name35, $this.$ifExistsDo9, $this.$options2, $useGraph, $this.$position136); }, -oavrm_IntervalSet_toString = ($this, $vocabulary) => { - let $buf, $I, $iter, $a, $b, $i; - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - $I = $this.$intervals; - if ($I !== null && !ju_AbstractCollection_isEmpty($I)) { - if (oavrm_IntervalSet_size($this) > 1) - jl_AbstractStringBuilder_append($buf, $rt_s(432)); - $iter = ju_AbstractList_iterator($this.$intervals); - while (ju_AbstractList$1_hasNext($iter)) { - a: { - $I = ju_AbstractList$1_next($iter); - $a = $I.$a0; - $b = $I.$b; - if ($a == $b) - jl_AbstractStringBuilder_append($buf, oavrm_IntervalSet_elementName($this, $vocabulary, $a)); - else { - $i = $a; - while (true) { - if ($i > $b) - break a; - if ($i > $a) - jl_AbstractStringBuilder_append($buf, $rt_s(45)); - jl_AbstractStringBuilder_append($buf, oavrm_IntervalSet_elementName($this, $vocabulary, $i)); - $i = $i + 1 | 0; +oncia_CreateFulltextIndexCommand__init_ = ($this, $variable, $entityNames, $properties, $name, $ifExistsDo, $options, $useGraph, $position) => { + let var$9; + $this.$variable23 = $variable; + $this.$entityNames0 = $entityNames; + $this.$properties11 = $properties; + $this.$name35 = $name; + $this.$ifExistsDo9 = $ifExistsDo; + $this.$options2 = $options; + $this.$useGraph3 = $useGraph; + $this.$position136 = $position; + $this.$indexType4 = oncia_FulltextCreateIndex$_MODULE$; + if ($entityNames instanceof su_Left) + $variable = s_Tuple2__init_(jl_Boolean_valueOf(1), oncia_FulltextCreateIndex$_nodeDescription); + else { + if (!($entityNames instanceof su_Right)) + $rt_throw(s_MatchError__init_($entityNames)); + $variable = s_Tuple2__init_(jl_Boolean_valueOf(0), oncia_FulltextCreateIndex$_relDescription); + } + var$9 = s_Tuple2__1$mcZ$sp($variable); + $entityNames = $variable.$_20; + if ($entityNames === null) + $rt_throw(s_MatchError__init_($variable)); + $variable = s_Tuple2__init_(jl_Boolean_valueOf(var$9), $entityNames); + $this.$org$neo4j$cypher$internal$ast$CreateFulltextIndex$$x$2 = $variable; + $this.$isNodeIndex2 = s_Tuple2__1$mcZ$sp($variable); + $this.$entityIndexDescription0 = $this.$org$neo4j$cypher$internal$ast$CreateFulltextIndex$$x$2.$_20; +}, +oncia_CreateFulltextIndexCommand__init_0 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_CreateFulltextIndexCommand(); + oncia_CreateFulltextIndexCommand__init_(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; +}, +oncia_CreateLookupIndex = $rt_classWithoutFields(0); +function oncia_CreateLookupIndexCommand() { + let a = this; jl_Object.call(a); + a.$variable15 = null; + a.$isNodeIndex0 = 0; + a.$function2 = null; + a.$name32 = null; + a.$ifExistsDo6 = null; + a.$options0 = null; + a.$useGraph0 = null; + a.$position124 = null; + a.$indexType5 = null; + a.$properties19 = null; +} +let oncia_CreateLookupIndexCommand_semanticCheck = $this => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; + a: { + var$1 = $this.$function2; + if (var$1 !== null) { + var$1 = var$1.$functionName2; + if (var$1 !== null) { + var$2 = var$1.$name6; + if (!$this.$isNodeIndex0) { + oncief_Type$_$callClinit(); + var$3 = jl_String_equalsIgnoreCase(var$2, $rt_s(4729)); + } else { + oncief_Labels$_$callClinit(); + var$3 = jl_String_equalsIgnoreCase(var$2, $rt_s(5261)); + } + if (!var$3) { + if (!$this.$isNodeIndex0) { + var$1 = new s_Tuple2; + oncief_Type$_$callClinit(); + s_Tuple2__init_0(var$1, $rt_s(4729), oncia_LookupCreateIndex$_relDescription); + } else { + var$1 = new s_Tuple2; + oncief_Labels$_$callClinit(); + s_Tuple2__init_0(var$1, $rt_s(5261), oncia_LookupCreateIndex$_nodeDescription); } + var$4 = s_Tuple2__init_(var$1.$_10, var$1.$_20); + var$1 = var$4.$_10; + var$5 = var$4.$_20; + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$8 = var$7.data; + oncias_SemanticError$_$callClinit(); + var$9 = $this.$position124; + var$10 = ong_GqlHelper_getGql42001_22N04(var$2, $rt_s(5992), ju_List_of(var$1), var$9.$offset(), var$9.$line(), var$9.$column()); + var$11 = new oncias_SemanticError; + var$12 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$12); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$12, $rt_s(5507)), var$5), $rt_s(5993)), var$2), $rt_s(5994)), var$1), $rt_s(5995)); + oncias_SemanticError__init_(var$11, var$10, jl_AbstractStringBuilder_toString(var$12), var$9); + var$8[0] = var$11; + var$1 = oncias_SemanticCheck$_error(var$4, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); + break a; } } - if (ju_AbstractList$1_hasNext($iter)) - jl_AbstractStringBuilder_append($buf, $rt_s(45)); } - if (oavrm_IntervalSet_size($this) > 1) - jl_AbstractStringBuilder_append($buf, $rt_s(433)); - return jl_AbstractStringBuilder_toString($buf); + var$4 = oncias_SemanticCheck_chain$(oncia_SchemaCommand_checkOptionsMap$($this, oncia_LookupCreateIndex$_allDescription, $this.$options0), oncia_CreateIndex_semanticCheck$($this)); + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticCheck_chain$(var$4, oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $this.$function2)); } - return $rt_s(6821); + return var$1; }, -oavrm_IntervalSet_elementName = ($this, $vocabulary, $a) => { - if ($a == (-1)) - return $rt_s(4015); - if ($a != (-2)) - return oavr_VocabularyImpl_getDisplayName($vocabulary, $a); - return $rt_s(6822); +oncia_CreateLookupIndexCommand_returnColumns = $this => { + return oncia_SchemaCommand_returnColumns$($this); }, -oavrm_IntervalSet_size = $this => { - let $n, $I, $numIntervals, $firstInterval, $i; - $n = 0; - $I = $this.$intervals; - $numIntervals = $I.$size0; - if ($numIntervals == 1) { - $firstInterval = ju_ArrayList_get($I, 0); - return ($firstInterval.$b - $firstInterval.$a0 | 0) + 1 | 0; - } - $i = 0; - while ($i < $numIntervals) { - $I = ju_ArrayList_get($this.$intervals, $i); - $n = $n + (($I.$b - $I.$a0 | 0) + 1 | 0) | 0; - $i = $i + 1 | 0; - } - return $n; +oncia_CreateLookupIndexCommand_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -oavrm_IntervalSet_toList = $this => { - let $values, $n, $i, $I, $v, $b; - $values = ju_ArrayList__init_(); - $n = $this.$intervals.$size0; - $i = 0; - while ($i < $n) { - $I = ju_ArrayList_get($this.$intervals, $i); - $v = $I.$a0; - $b = $I.$b; - while ($v <= $b) { - ju_ArrayList_add($values, jl_Integer_valueOf($v)); - $v = $v + 1 | 0; - } - $i = $i + 1 | 0; - } - return $values; +oncia_CreateLookupIndexCommand_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oavrm_IntervalSet_remove = ($this, $el) => { - let $I, $n, $i, var$5, var$6, $a, $oldb, var$9; - if ($this.$readonly0) { - $I = new jl_IllegalStateException; - jl_Throwable__init_0($I, $rt_s(6819)); - $rt_throw($I); - } - $n = $this.$intervals.$size0; - $i = 0; - var$5 = $el - 1 | 0; - var$6 = $el + 1 | 0; - a: { - while (true) { - if ($i >= $n) - break a; - $I = ju_ArrayList_get($this.$intervals, $i); - $a = $I.$a0; - $oldb = $I.$b; - var$9 = $rt_compare($el, $a); - if (var$9 < 0) - break; - if (!var$9 && $el == $oldb) { - ju_ArrayList_remove($this.$intervals, $i); - break a; - } - if (!var$9) { - $I.$a0 = $a + 1 | 0; - break a; - } - $a = $rt_compare($el, $oldb); - if (!$a) { - $I.$b = $oldb - 1 | 0; - break a; - } - if (var$9 > 0 && $a < 0) { - $I.$b = var$5; - oavrm_IntervalSet_add0($this, var$6, $oldb); - } - $i = $i + 1 | 0; - } - } +oncia_CreateLookupIndexCommand_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oavrm_IntervalSet_setReadonly = ($this, $readonly) => { - let var$2; - if ($this.$readonly0 && !$readonly) { - var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(6819)); - $rt_throw(var$2); - } - $this.$readonly0 = $readonly; +oncia_CreateLookupIndexCommand_foldedOver = $this => { + return $this; }, -oavrm_IntervalSet__clinit_ = () => { - let var$1; - var$1 = oavrm_IntervalSet_of(0, 1114111); - oavrm_IntervalSet_COMPLETE_CHAR_SET = var$1; - oavrm_IntervalSet_setReadonly(var$1, 1); - var$1 = oavrm_IntervalSet__init_($rt_createIntArray(0)); - oavrm_IntervalSet_EMPTY_SET = var$1; - oavrm_IntervalSet_setReadonly(var$1, 1); +oncia_CreateLookupIndexCommand_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncias_SemanticState$scope$lambda$_52_0 = $rt_classWithoutFields(), -oncias_SemanticState$scope$lambda$_52_0_apply = (var$0, var$1) => { - return var$1.$location.$elem0; +oncia_CreateLookupIndexCommand_indexType = $this => { + return $this.$indexType5; }, -oncia_GrantPrivilege$semanticCheck$lambda$_14_0 = $rt_classWithoutFields(), -oncia_GrantPrivilege$semanticCheck$lambda$_14_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4841), var$1); +oncia_CreateLookupIndexCommand_properties = $this => { + return $this.$properties19; }, -oncia_RevokePrivilege$semanticCheck$lambda$_15_0 = $rt_classWithoutFields(), -oncia_RevokePrivilege$semanticCheck$lambda$_15_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4841), var$1); -}; -function oncie_VariableGrouping() { - let a = this; jl_Object.call(a); - a.$singleton = null; - a.$group0 = null; - a.$position139 = null; -} -let oncie_VariableGrouping_position = $this => { - return $this.$position139; +oncia_CreateLookupIndexCommand_variable = $this => { + return $this.$variable15; }, -oncie_VariableGrouping_toString = $this => { - let var$1, var$2, var$3; - var$1 = $this.$singleton.$name4; - var$2 = $this.$group0.$name4; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6823)), var$1), $rt_s(6824)), var$2), 41); - return jl_AbstractStringBuilder_toString(var$3); +oncia_CreateLookupIndexCommand_isNodeIndex = $this => { + return $this.$isNodeIndex0; }, -oncie_VariableGrouping_copy = ($this, $singleton, $group, $position) => { - return oncie_VariableGrouping__init_($singleton, $group, $position); +oncia_CreateLookupIndexCommand_ifExistsDo = $this => { + return $this.$ifExistsDo6; }, -oncie_VariableGrouping_productPrefix = $this => { - return $rt_s(6825); +oncia_CreateLookupIndexCommand_options = $this => { + return $this.$options0; }, -oncie_VariableGrouping_productArity = $this => { - return 2; +oncia_CreateLookupIndexCommand_position = $this => { + return $this.$position124; }, -oncie_VariableGrouping_productElement = ($this, $x$1) => { +oncia_CreateLookupIndexCommand_copy = ($this, $variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position) => { + return oncia_CreateLookupIndexCommand__init_($variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position); +}, +oncia_CreateLookupIndexCommand_productPrefix = $this => { + return $rt_s(5996); +}, +oncia_CreateLookupIndexCommand_productArity = $this => { + return 7; +}, +oncia_CreateLookupIndexCommand_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$singleton; + return $this.$variable15; case 1: - return $this.$group0; + return jl_Boolean_valueOf($this.$isNodeIndex0); + case 2: + return $this.$function2; + case 3: + return $this.$name32; + case 4: + return $this.$ifExistsDo6; + case 5: + return $this.$options0; + case 6: + return $this.$useGraph0; default: } return sr_Statics_ioobe($x$1); }, -oncie_VariableGrouping_productIterator = $this => { +oncia_CreateLookupIndexCommand_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_VariableGrouping_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_CreateLookupIndexCommand_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(5996))), sr_Statics_anyHash($this.$variable15)), !$this.$isNodeIndex0 ? 1237 : 1231), sr_Statics_anyHash($this.$function2)), sr_Statics_anyHash($this.$name32)), sr_Statics_anyHash($this.$ifExistsDo6)), sr_Statics_anyHash($this.$options0)), sr_Statics_anyHash($this.$useGraph0)), 7); }, -oncie_VariableGrouping_equals = ($this, $x$1) => { +oncia_CreateLookupIndexCommand_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_CreateLookupIndexCommand_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_VariableGrouping) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_CreateLookupIndexCommand) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$isNodeIndex0 != $x$1.$isNodeIndex0) break b; c: { - $x$1 = $x$1; - var$2 = $this.$singleton; - var$3 = $x$1.$singleton; + var$2 = $this.$variable15; + var$3 = $x$1.$variable15; if (var$2 !== null) { if (!oncie_Variable_equals(var$2, var$3)) break b; @@ -306797,18 +239908,66 @@ oncie_VariableGrouping_equals = ($this, $x$1) => { break b; } d: { - var$3 = $this.$group0; - $x$1 = $x$1.$group0; - if (var$3 !== null) { - if (!oncie_Variable_equals(var$3, $x$1)) + var$2 = $this.$function2; + var$3 = $x$1.$function2; + if (var$2 !== null) { + if (!oncie_FunctionInvocation_equals(var$2, var$3)) break b; else break d; } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$name32; + var$3 = $x$1.$name32; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$ifExistsDo6; + var$3 = $x$1.$ifExistsDo6; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$options0; + var$3 = $x$1.$options0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$useGraph0; + $x$1 = $x$1.$useGraph0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break h; + } if ($x$1 !== null) break b; } - if (!($this instanceof oncie_VariableGrouping)) + if (!($this instanceof oncia_CreateLookupIndexCommand)) break b; } var$4 = 1; @@ -306818,170 +239977,218 @@ oncie_VariableGrouping_equals = ($this, $x$1) => { } return var$4; }, -oncie_VariableGrouping_dup = ($this, $children) => { +oncia_CreateLookupIndexCommand_dup = ($this, $children) => { return onciu_ASTNode_dup$($this, $children); }, -oncie_VariableGrouping__init_0 = ($this, $singleton, $group, $position) => { - $this.$singleton = $singleton; - $this.$group0 = $group; - $this.$position139 = $position; +oncia_CreateLookupIndexCommand_withGraph = ($this, $useGraph) => { + return oncia_CreateLookupIndexCommand_copy($this, $this.$variable15, $this.$isNodeIndex0, $this.$function2, $this.$name32, $this.$ifExistsDo6, $this.$options0, $useGraph, $this.$position124); }, -oncie_VariableGrouping__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_VariableGrouping(); - oncie_VariableGrouping__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncia_CreateLookupIndexCommand__init_0 = ($this, $variable, $isNodeIndex, $function, $name, $ifExistsDo, $options, $useGraph, $position) => { + $this.$variable15 = $variable; + $this.$isNodeIndex0 = $isNodeIndex; + $this.$function2 = $function; + $this.$name32 = $name; + $this.$ifExistsDo6 = $ifExistsDo; + $this.$options0 = $options; + $this.$useGraph0 = $useGraph; + $this.$position124 = $position; + $this.$indexType5 = oncia_LookupCreateIndex$_MODULE$; + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + $this.$properties19 = sci_Nil$_MODULE$; }, -oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0 = $rt_classWithoutFields(), -oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - var$1 = var$1; - if (var$1 !== null) { - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - if (var$2 instanceof oncie_Variable) { - var$2 = var$2; - if (var$1 instanceof oncie_Variable) { - b: { - c: { - d: { - var$2 = var$2.$name4; - var$1 = var$1.$name4; - if (var$2 !== null) { - if (jl_String_equals(var$2, var$1)) - break d; - else - break c; - } - if (var$1 !== null) - break c; - } - var$3 = 0; - break b; - } - var$3 = 1; - } - break a; - } - } - } - var$3 = 1; - } - return jl_Boolean_valueOf(var$3); -}; -function oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1() { - jl_Object.call(this); - this.$_0268 = null; -} -let oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = onciu_Foldable_folder$(var$0.$_0268); - sr_ClassTag$_$callClinit(); - return jl_Boolean_valueOf((onciu_Foldable$Folder_findAllByClass(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LogicalVariable)))).$contains(var$1)); +oncia_CreateLookupIndexCommand__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_CreateLookupIndexCommand(); + oncia_CreateLookupIndexCommand__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; }, -jn_BufferUnderflowException = $rt_classWithoutFields(jl_RuntimeException); -function jusi_BoxedIntStream$next$lambda$_1_0() { - jl_Object.call(this); - this.$_0940 = null; -} -let jusi_BoxedIntStream$next$lambda$_1_0_test = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0940; - var$3 = jl_Integer_valueOf(var$1); - var$2 = var$2.$_01166.$_01043; - ju_HashMap_put(var$2, var$3, jl_Long_valueOf(Long_add((ju_Map_getOrDefault(var$2, var$3, jl_Long_valueOf(Long_ZERO))).$value10, Long_fromInt(1)))); - return 1; +oncia_ShowColumn$ = $rt_classWithoutFields(), +oncia_ShowColumn$_MODULE$ = null, +oncia_ShowColumn$__clinit_ = () => { + oncia_ShowColumn$_MODULE$ = new oncia_ShowColumn$; }, -scm_HashMap$$anon$6 = $rt_classWithoutFields(scm_GrowableBuilder); -function oncipl_UnicodeEscapeReplacementReader$OffsetTableBuilder() { - let a = this; jl_Object.call(a); - a.$offsets = null; - a.$lastSrcChar = 0; - a.$lastDestChar = 0; -} -function oncius_ListType$isSubtypeOf$lambda$_33_0() { - jl_Object.call(this); - this.$_0303 = null; -} -let oncius_ListType$isSubtypeOf$lambda$_33_0_apply = (var$0, var$1) => { - let var$2, var$3; +oncia_ShowColumn$_apply = ($this, $name, $cypherType, $position) => { + let var$4, var$5; + var$4 = new oncia_ShowColumn; + var$5 = new oncie_Variable; + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$5, $name, $position, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + oncia_ShowColumn__init_(var$4, var$5, $cypherType, $name); + return var$4; +}, +oncia_ShowColumn$_apply$default$2 = $this => { + oncius_package$_$callClinit(); + return oncius_package$_CTString(oncius_package$_MODULE$); +}, +oncia_ShowServers$$apply$lambda$_1_0 = $rt_classWithoutFields(), +oncia_ShowServers$$apply$lambda$_1_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0303.$innerTypes0; - var$3 = new oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0; - var$3.$_0691 = var$1; - return jl_Boolean_valueOf(var$2.$exists(var$3)); -}; -function oncius_ListType$isSubtypeOf$lambda$_33_1() { - jl_Object.call(this); - this.$_0783 = null; -} -let oncius_ListType$isSubtypeOf$lambda$_33_1_apply = (var$0, var$1) => { + oncia_ShowServers$_$callClinit(); + return jl_Boolean_valueOf(var$1.$_2$mcZ$sp()); +}, +oncia_ShowServers$$apply$lambda$_1_1 = $rt_classWithoutFields(), +oncia_ShowServers$$apply$lambda$_1_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ShowServers$_$callClinit(); + return var$1.$_1(); +}, +oncia_ShowServers$$apply$lambda$_1_2 = $rt_classWithoutFields(), +oncia_ShowServers$$apply$lambda$_1_2_apply = (var$0, var$1) => { var$1 = var$1; - return jl_Boolean_valueOf(oncius_ListType_isSubtypeOf(var$0.$_0783, var$1)); + oncia_ShowServers$_$callClinit(); + return var$1.$_1(); +}, +oncia_DefaultOrAllShowColumns$ = $rt_classWithoutFields(), +oncia_DefaultOrAllShowColumns$_MODULE$ = null, +oncia_DefaultOrAllShowColumns$_$callClinit = () => { + oncia_DefaultOrAllShowColumns$_$callClinit = $rt_eraseClinit(oncia_DefaultOrAllShowColumns$); + oncia_DefaultOrAllShowColumns$__clinit_(); +}, +oncia_DefaultOrAllShowColumns$__clinit_ = () => { + let var$1; + var$1 = new oncia_DefaultOrAllShowColumns$; + oncia_DefaultOrAllShowColumns$_$callClinit(); + oncia_DefaultOrAllShowColumns$_MODULE$ = var$1; +}, +oncia_DefaultOrAllShowColumns$_apply0 = ($this, $columns, $yieldOrWhere) => { + let $briefShowColumns, $allShowColumns; + $briefShowColumns = sci_List_map(sci_List_filter($columns, new oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0), new oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1); + $allShowColumns = sci_List_map($columns, new oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2); + return oncia_DefaultOrAllShowColumns$_apply($this, $yieldOrWhere instanceof s_Some && $yieldOrWhere.$value5 instanceof su_Left ? 1 : 0, $briefShowColumns, $allShowColumns); +}, +oncia_DefaultOrAllShowColumns$_apply = ($this, $useAllColumns, $brief, $all) => { + if (!$useAllColumns) + return oncia_DefaultOrAllShowColumns__init_($useAllColumns, $brief); + return oncia_DefaultOrAllShowColumns__init_($useAllColumns, $all); }; -function oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0() { +function oncia_AllQualifier() { jl_Object.call(this); - this.$_0229 = null; + this.$position316 = null; } -let oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0229.$innerTypes0; - var$3 = new oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0; - var$3.$_0740 = var$1; - return jl_Boolean_valueOf(var$2.$exists(var$3)); +let oncia_AllQualifier_productPrefix = $this => { + return $rt_s(5997); +}, +oncia_AllQualifier_productArity = $this => { + return 0; +}, +oncia_AllQualifier_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllQualifier_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_AllQualifier)) + return 0; + return 1; +}, +oncia_AllQualifier_dup = ($this, $children) => { + return $this; +}, +oncia_AllQualifier__init_ = ($this, $position) => { + $this.$position316 = $position; +}, +oncia_AllQualifier__init_0 = var_0 => { + let var_1 = new oncia_AllQualifier(); + oncia_AllQualifier__init_(var_1, var_0); + return var_1; }; -function oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1() { +function oncia_AllDatabasesQualifier() { jl_Object.call(this); - this.$_0849 = null; + this.$position333 = null; } -let oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isSubtypeOf(var$0.$_0849)); +let oncia_AllDatabasesQualifier_productPrefix = $this => { + return $rt_s(5998); +}, +oncia_AllDatabasesQualifier_productArity = $this => { + return 0; +}, +oncia_AllDatabasesQualifier_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_AllDatabasesQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllDatabasesQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllDatabasesQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_AllDatabasesQualifier_equals = ($this, $x$1) => { + if (!($x$1 instanceof oncia_AllDatabasesQualifier)) + return 0; + return 1; +}, +oncia_AllDatabasesQualifier_dup = ($this, $children) => { + return $this; +}, +oncia_AllDatabasesQualifier__init_ = ($this, $position) => { + $this.$position333 = $position; +}, +oncia_AllDatabasesQualifier__init_0 = var_0 => { + let var_1 = new oncia_AllDatabasesQualifier(); + oncia_AllDatabasesQualifier__init_(var_1, var_0); + return var_1; }; -function oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1() { +function oncia_NamespacedName() { let a = this; jl_Object.call(a); - a.$introducedVariable = null; - a.$replacedExpression = null; + a.$nameComponents = null; + a.$namespace4 = null; + a.$position121 = null; + a.$name48 = null; } -let oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productPrefix = $this => { - return $rt_s(6826); +let oncia_NamespacedName_namespace = $this => { + return $this.$namespace4; }, -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productArity = $this => { +oncia_NamespacedName_position = $this => { + return $this.$position121; +}, +oncia_NamespacedName_toString = $this => { + s_Option$_$callClinit(); + return sc_AbstractIterable_mkString((s_Option$_option2Iterable(s_Option$_MODULE$, $this.$namespace4)).$concat(sci_$colon$colon__init_($this.$name48, sci_Nil$_MODULE$)), $rt_s(389)); +}, +oncia_NamespacedName_productPrefix = $this => { + return $rt_s(5999); +}, +oncia_NamespacedName_productArity = $this => { return 2; }, -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productElement = ($this, $x$1) => { +oncia_NamespacedName_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$introducedVariable; + return $this.$nameComponents; case 1: - return $this.$replacedExpression; + return $this.$namespace4; default: } return sr_Statics_ioobe($x$1); }, -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productIterator = $this => { +oncia_NamespacedName_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_hashCode = $this => { +oncia_NamespacedName_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_equals = ($this, $x$1) => { +oncia_NamespacedName_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1) ? 0 : 1)) + if (!(!($x$1 instanceof oncia_NamespacedName) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$introducedVariable; - var$3 = $x$1.$introducedVariable; + var$2 = $this.$nameComponents; + var$3 = $x$1.$nameComponents; if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) + if (!sci_List_equals(var$2, var$3)) break b; else break c; @@ -306990,8 +240197,8 @@ oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_equals = ($this break b; } d: { - var$3 = $this.$replacedExpression; - $x$1 = $x$1.$replacedExpression; + var$3 = $this.$namespace4; + $x$1 = $x$1.$namespace4; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; @@ -307001,7 +240208,7 @@ oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_equals = ($this if ($x$1 !== null) break b; } - if (!($this instanceof oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1)) + if (!($this instanceof oncia_NamespacedName)) break b; } var$4 = 1; @@ -307010,681 +240217,611 @@ oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_equals = ($this var$4 = 0; } return var$4; +}, +oncia_NamespacedName_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_NamespacedName__init_0 = ($this, $nameComponents, $namespace, $position) => { + $this.$nameComponents = $nameComponents; + $this.$namespace4 = $namespace; + $this.$position121 = $position; + $this.$name48 = sc_AbstractIterable_mkString($nameComponents, $rt_s(389)); +}, +oncia_NamespacedName__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_NamespacedName(); + oncia_NamespacedName__init_0(var_3, var_0, var_1, var_2); + return var_3; +}, +jl_InternalError = $rt_classWithoutFields(jl_VirtualMachineError), +jl_InternalError__init_ = ($this, $message) => { + jl_Throwable__init_($this, $message); +}, +jl_InternalError__init_0 = var_0 => { + let var_1 = new jl_InternalError(); + jl_InternalError__init_(var_1, var_0); + return var_1; }; -function ju_TemplateCollections$NEtriesMap$1() { - ju_TemplateCollections$AbstractImmutableSet.call(this); - this.$this$02 = null; +function oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_144_0() { + let a = this; jl_Object.call(a); + a.$_01126 = null; + a.$_1384 = null; } -let ju_TemplateCollections$NEtriesMap$1_size = $this => { - return $this.$this$02.$data0.data.length; +let oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_144_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$1 = var$1; + var$2 = var$0.$_01126; + var$3 = var$0.$_1384; + var$4 = sj_CollectionConverters$_MODULE$; + var$5 = ju_ArrayList__init_0(1); + var$6 = oncipcd_DeprecatedChars_DEPRECATED_CHARS.data; + var$7 = var$6.length; + var$8 = 0; + while (var$8 < var$7) { + var$9 = var$6[var$8]; + if (jl_String_indexOf(var$2, var$9) != (-1)) + ju_ArrayList_add(var$5, jl_Character_valueOf(var$9)); + var$8 = var$8 + 1 | 0; + } + var$10 = scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(var$4, var$5)); + var$4 = new oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_174_0; + var$4.$_01147 = var$1; + var$4.$_1391 = var$3; + var$4.$_2128 = var$2; + sc_IterableOnceOps_foreach$(var$10, var$4); + return sr_BoxedUnit_UNIT; }, -ju_TemplateCollections$NEtriesMap$1_iterator = $this => { - let var$1; - var$1 = new ju_TemplateCollections$NEtriesMap$1$1; - var$1.$this$1 = $this; - return var$1; +oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0 = $rt_classWithoutFields(), +oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0_apply = (var$0, var$1) => { + return var$1.$expected1; }, -oncie_containsAggregate$$anonfun$apply$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncie_containsAggregate$$anonfun$apply$1_applyOrElse = ($this, $x1, $default) => { - if ($x1 !== null) { - oncie_IsAggregate$_$callClinit(); - if (!s_Option_isEmpty(oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x1))) - return new oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0; - } - return s_PartialFunction$_fallback_fn; +oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1 = $rt_classWithoutFields(), +oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncius_package$_$callClinit(); + return jl_Boolean_valueOf(oncius_TypeSpec_containsAll(oncius_BooleanType_covariant(oncius_package$_CTBoolean(oncius_package$_MODULE$)), var$1)); }, -jn_IntBuffer = $rt_classWithoutFields(jn_Buffer), -jn_IntBuffer_allocate = $capacity => { - let var$2, var$3, var$4; - if ($capacity < 0) { - var$2 = new jl_IllegalArgumentException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append0(jl_StringBuilder_append(var$3, $rt_s(782)), $capacity); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); +oncipvaf_Cypher25AstUtil$ = $rt_classWithoutFields(), +oncipvaf_Cypher25AstUtil$_MODULE$ = null, +oncipvaf_Cypher25AstUtil$__clinit_ = () => { + oncipvaf_Cypher25AstUtil$_MODULE$ = new oncipvaf_Cypher25AstUtil$; +}, +oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$10 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1_applyOrElse = ($this, $x, $default) => { + let var$3, var$4; + $x = $x; + if (!($x instanceof oncipv_Cypher25Parser$SymbolicNameStringContext)) + $x = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); + else { + var$3 = $x; + $x = new oncie_Variable; + var$4 = var$3.$ast0; + oncipau_Util$_$callClinit(); + $default = oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3); + oncie_Variable$_$callClinit(); + oncie_Variable__init_($x, var$4, $default, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); } - var$2 = new jn_IntBufferOverArray; - var$4 = $rt_createIntArray($capacity); - jn_Buffer__init_(var$2, $capacity); - var$2.$position3 = 0; - var$2.$limit2 = $capacity; - var$2.$start5 = 0; - var$2.$readOnly0 = 0; - var$2.$array16 = var$4; - return var$2; + return $x; }, -oncia_UnassignableAction = $rt_classWithoutFields(0); -function onih_Strings$CodePointsIterator() { - let a = this; jl_Object.call(a); - a.$s = null; - a.$numCodePoints = 0; - a.$charIndex = 0; - a.$codePointIndex = 0; +oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0_apply = var$0 => { + oncie_NFCNormalForm$_$callClinit(); + return oncie_NFCNormalForm$_MODULE$; +}, +oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_00 = $rt_classWithoutFields(), +oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + if (var$1 instanceof oncie_PatternPartWithSelector) + var$1 = var$1; + else { + if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1; + var$1 = oncie_PatternPartWithSelector__init_(oncie_PatternPart$AllPaths__init_(var$2.$position()), var$2); + } + return var$1; +}; +function oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_10() { + jl_Object.call(this); + this.$_0193 = null; } -let oeca_PrimitiveIterable = $rt_classWithoutFields(0), -oeca_IntIterable = $rt_classWithoutFields(0), -oecip_AbstractIntIterable = $rt_classWithoutFields(), -oecacp_MutableIntCollection = $rt_classWithoutFields(0), -oecaop_OrderedIntIterable = $rt_classWithoutFields(0), -oecaop_ReversibleIntIterable = $rt_classWithoutFields(0), -oecalp_IntList = $rt_classWithoutFields(0), -oecalp_MutableIntList = $rt_classWithoutFields(0), -ji_Externalizable = $rt_classWithoutFields(0); -function oecilmp_IntArrayList() { - let a = this; oecip_AbstractIntIterable.call(a); - a.$size7 = 0; - a.$items3 = null; +let oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1_apply = var$0 => { + let var$1; + var$1 = var$0.$_0193; + return oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, var$1); +}, +oncipvaf_DdlShowBuilder$ShowWrapper$0 = $rt_classWithoutFields(sr_AbstractFunction7), +oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0 = null, +oncipvaf_DdlShowBuilder$ShowWrapper$__clinit_ = () => { + oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0 = new oncipvaf_DdlShowBuilder$ShowWrapper$0; +}, +oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$20 = $this => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; +}, +oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$70 = $this => { + let var$1; + s_package$_$callClinit(); + var$1 = s_package$_Left(s_package$_MODULE$); + s_package$_List(s_package$_MODULE$); + return su_Left$_apply(var$1, sci_Nil$_MODULE$); +}; +function oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0() { + jl_Object.call(this); + this.$_0251 = null; } -let oecilmp_IntArrayList_DEFAULT_SIZED_EMPTY_ARRAY = null, -oecilmp_IntArrayList_ZERO_SIZED_ARRAY = null, -oecilmp_IntArrayList_get = ($this, $index) => { - if ($index >= $this.$size7) - $rt_throw(oecilmp_IntArrayList_newIndexOutOfBoundsException($this, $index)); - return $this.$items3.data[$index]; +let oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0_apply = var$0 => { + return oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$NoEntity(var$0.$_0251); }, -oecilmp_IntArrayList_newIndexOutOfBoundsException = ($this, $index) => { - let var$2, var$3; - var$2 = new jl_IndexOutOfBoundsException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append(var$3, $rt_s(6827)); - var$3 = jl_StringBuilder_append0(var$3, $index); - jl_AbstractStringBuilder_append(var$3, $rt_s(6828)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$3, $this.$size7))); - return var$2; +oncipvaf_DdlShowBuilder$ConstraintEntity = $rt_classWithoutFields(0), +oncia_NodePropExistsConstraintsCypher25$ = $rt_classWithoutFields(), +oncia_NodePropExistsConstraintsCypher25$_MODULE$ = null, +oncia_NodePropExistsConstraintsCypher25$_description = null, +oncia_NodePropExistsConstraintsCypher25$_output = null, +oncia_NodePropExistsConstraintsCypher25$_prettyPrint = null, +oncia_NodePropExistsConstraintsCypher25$_$callClinit = () => { + oncia_NodePropExistsConstraintsCypher25$_$callClinit = $rt_eraseClinit(oncia_NodePropExistsConstraintsCypher25$); + oncia_NodePropExistsConstraintsCypher25$__clinit_(); +}, +oncia_NodePropExistsConstraintsCypher25$__clinit_ = () => { + let var$1; + var$1 = new oncia_NodePropExistsConstraintsCypher25$; + oncia_NodePropExistsConstraintsCypher25$_$callClinit(); + oncia_NodePropExistsConstraintsCypher25$_MODULE$ = var$1; + oncia_NodePropExistsConstraints_$init$(var$1); + oncia_NodePropExistsConstraintsCypher25$_description = $rt_s(6000); }, -oecilmp_IntArrayList_addAll = ($this, $source) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $source.data.length; - if (var$2 < 1) - return 0; - var$3 = $this.$size7 + var$2 | 0; - var$4 = $this.$items3.data.length; - if (var$3 > var$4) { - var$5 = (var$4 + (var$4 >> 1) | 0) + 1 | 0; - if (var$5 < var$4) - var$5 = 2147483639; - var$5 = jl_Math_max(var$5, var$3); - var$6 = $rt_createIntArray(var$5); - jl_System_fastArraycopy($this.$items3, 0, var$6, 0, jl_Math_min($this.$size7, var$5)); - $this.$items3 = var$6; - } - jl_System_fastArraycopy($source, 0, $this.$items3, $this.$size7, var$2); - $this.$size7 = var$3; - return 1; +oncia_NodePropExistsConstraintsCypher25$_prettyPrint0 = $this => { + oncia_NodePropExistsConstraintsCypher25$_$callClinit(); + return oncia_NodePropExistsConstraintsCypher25$_prettyPrint; }, -oecilmp_IntArrayList__clinit_ = () => { - oecilmp_IntArrayList_DEFAULT_SIZED_EMPTY_ARRAY = $rt_createIntArray(0); - oecilmp_IntArrayList_ZERO_SIZED_ARRAY = $rt_createIntArray(0); +oncia_NodePropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { + oncia_NodePropExistsConstraintsCypher25$_$callClinit(); + oncia_NodePropExistsConstraintsCypher25$_output = $x$1; }, -oavrt_TerminalNode = $rt_classWithoutFields(0), -oavrt_ErrorNode = $rt_classWithoutFields(0); -function oavra_ATNConfig() { - let a = this; jl_Object.call(a); - a.$state0 = null; - a.$alt0 = 0; - a.$context = null; - a.$reachesIntoOuterContext = 0; - a.$semanticContext = null; -} -let oavra_ATNConfig__init_3 = ($this, $state, $alt, $context) => { - oavra_ATNConfig__init_1($this, $state, $alt, $context, oavra_SemanticContext$Empty_Instance); +oncia_NodePropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { + oncia_NodePropExistsConstraintsCypher25$_$callClinit(); + oncia_NodePropExistsConstraintsCypher25$_prettyPrint = $x$1; }, -oavra_ATNConfig__init_6 = (var_0, var_1, var_2) => { - let var_3 = new oavra_ATNConfig(); - oavra_ATNConfig__init_3(var_3, var_0, var_1, var_2); - return var_3; +oncia_NodePropExistsConstraintsCypher25$_productArity = $this => { + return 0; }, -oavra_ATNConfig__init_1 = ($this, $state, $alt, $context, $semanticContext) => { - $this.$state0 = $state; - $this.$alt0 = $alt; - $this.$context = $context; - $this.$semanticContext = $semanticContext; +oncia_NodePropExistsConstraintsCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_ATNConfig__init_7 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oavra_ATNConfig(); - oavra_ATNConfig__init_1(var_4, var_0, var_1, var_2, var_3); - return var_4; +oncia_NodePropExistsConstraintsCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNConfig__init_9 = ($this, $c, $state) => { - oavra_ATNConfig__init_0($this, $c, $state, $c.$context, $c.$semanticContext); +oncia_NodePropExistsConstraintsCypher25$_hashCode = $this => { + return 541767379; }, -oavra_ATNConfig__init_ = (var_0, var_1) => { - let var_2 = new oavra_ATNConfig(); - oavra_ATNConfig__init_9(var_2, var_0, var_1); - return var_2; +oncia_NodePropExistsConstraintsCypher25$_toString = $this => { + return $rt_s(6001); }, -oavra_ATNConfig__init_8 = ($this, $c, $state, $semanticContext) => { - oavra_ATNConfig__init_0($this, $c, $state, $c.$context, $semanticContext); +oncia_RelPropExistsConstraintsCypher25$ = $rt_classWithoutFields(), +oncia_RelPropExistsConstraintsCypher25$_MODULE$ = null, +oncia_RelPropExistsConstraintsCypher25$_description = null, +oncia_RelPropExistsConstraintsCypher25$_output = null, +oncia_RelPropExistsConstraintsCypher25$_prettyPrint = null, +oncia_RelPropExistsConstraintsCypher25$_$callClinit = () => { + oncia_RelPropExistsConstraintsCypher25$_$callClinit = $rt_eraseClinit(oncia_RelPropExistsConstraintsCypher25$); + oncia_RelPropExistsConstraintsCypher25$__clinit_(); }, -oavra_ATNConfig__init_4 = (var_0, var_1, var_2) => { - let var_3 = new oavra_ATNConfig(); - oavra_ATNConfig__init_8(var_3, var_0, var_1, var_2); - return var_3; +oncia_RelPropExistsConstraintsCypher25$__clinit_ = () => { + let var$1; + var$1 = new oncia_RelPropExistsConstraintsCypher25$; + oncia_RelPropExistsConstraintsCypher25$_$callClinit(); + oncia_RelPropExistsConstraintsCypher25$_MODULE$ = var$1; + oncia_RelPropExistsConstraints_$init$(var$1); + oncia_RelPropExistsConstraintsCypher25$_description = $rt_s(6002); }, -oavra_ATNConfig__init_10 = ($this, $c, $semanticContext) => { - oavra_ATNConfig__init_0($this, $c, $c.$state0, $c.$context, $semanticContext); +oncia_RelPropExistsConstraintsCypher25$_prettyPrint0 = $this => { + oncia_RelPropExistsConstraintsCypher25$_$callClinit(); + return oncia_RelPropExistsConstraintsCypher25$_prettyPrint; }, -oavra_ATNConfig__init_5 = (var_0, var_1) => { - let var_2 = new oavra_ATNConfig(); - oavra_ATNConfig__init_10(var_2, var_0, var_1); - return var_2; +oncia_RelPropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { + oncia_RelPropExistsConstraintsCypher25$_$callClinit(); + oncia_RelPropExistsConstraintsCypher25$_output = $x$1; }, -oavra_ATNConfig__init_2 = ($this, $c, $state, $context) => { - oavra_ATNConfig__init_0($this, $c, $state, $context, $c.$semanticContext); +oncia_RelPropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { + oncia_RelPropExistsConstraintsCypher25$_$callClinit(); + oncia_RelPropExistsConstraintsCypher25$_prettyPrint = $x$1; }, -oavra_ATNConfig__init_11 = (var_0, var_1, var_2) => { - let var_3 = new oavra_ATNConfig(); - oavra_ATNConfig__init_2(var_3, var_0, var_1, var_2); - return var_3; +oncia_RelPropExistsConstraintsCypher25$_productArity = $this => { + return 0; }, -oavra_ATNConfig__init_0 = ($this, $c, $state, $context, $semanticContext) => { - $this.$state0 = $state; - $this.$alt0 = $c.$alt0; - $this.$context = $context; - $this.$semanticContext = $semanticContext; - $this.$reachesIntoOuterContext = $c.$reachesIntoOuterContext; +oncia_RelPropExistsConstraintsCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_ATNConfig__init_12 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oavra_ATNConfig(); - oavra_ATNConfig__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; +oncia_RelPropExistsConstraintsCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ATNConfig_getOuterContextDepth = $this => { - return $this.$reachesIntoOuterContext & (-1073741825); +oncia_RelPropExistsConstraintsCypher25$_hashCode = $this => { + return 1958325212; }, -oavra_ATNConfig_isPrecedenceFilterSuppressed = $this => { - return !($this.$reachesIntoOuterContext & 1073741824) ? 0 : 1; +oncia_RelPropExistsConstraintsCypher25$_toString = $this => { + return $rt_s(6003); }, -oavra_ATNConfig_setPrecedenceFilterSuppressed = ($this, $value) => { - if (!$value) - $this.$reachesIntoOuterContext = $this.$reachesIntoOuterContext & (-1073741825); - else - $this.$reachesIntoOuterContext = $this.$reachesIntoOuterContext | 1073741824; +oncia_PropExistsConstraintsCypher25$ = $rt_classWithoutFields(), +oncia_PropExistsConstraintsCypher25$_MODULE$ = null, +oncia_PropExistsConstraintsCypher25$_description = null, +oncia_PropExistsConstraintsCypher25$_output = null, +oncia_PropExistsConstraintsCypher25$_prettyPrint = null, +oncia_PropExistsConstraintsCypher25$_$callClinit = () => { + oncia_PropExistsConstraintsCypher25$_$callClinit = $rt_eraseClinit(oncia_PropExistsConstraintsCypher25$); + oncia_PropExistsConstraintsCypher25$__clinit_(); }, -oavra_ATNConfig_equals0 = ($this, $o) => { - if (!($o instanceof oavra_ATNConfig)) - return 0; - return $this.$equals10($o); +oncia_PropExistsConstraintsCypher25$__clinit_ = () => { + let var$1; + var$1 = new oncia_PropExistsConstraintsCypher25$; + oncia_PropExistsConstraintsCypher25$_$callClinit(); + oncia_PropExistsConstraintsCypher25$_MODULE$ = var$1; + oncia_PropExistsConstraints_$init$(var$1); + oncia_PropExistsConstraintsCypher25$_description = $rt_s(6004); }, -oavra_ATNConfig_equals = ($this, $other) => { - if ($this === $other) - return 1; - if ($other === null) - return 0; - return $this.$state0.$stateNumber == $other.$state0.$stateNumber && $this.$alt0 == $other.$alt0 && ju_Objects_equals($this.$context, $other.$context) && $this.$semanticContext.$equals($other.$semanticContext) && oavra_ATNConfig_isPrecedenceFilterSuppressed($this) == oavra_ATNConfig_isPrecedenceFilterSuppressed($other) ? 1 : 0; +oncia_PropExistsConstraintsCypher25$_prettyPrint0 = $this => { + oncia_PropExistsConstraintsCypher25$_$callClinit(); + return oncia_PropExistsConstraintsCypher25$_prettyPrint; }, -oavra_ATNConfig_hashCode = $this => { - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(oavrm_MurmurHash_update(7, $this.$state0.$stateNumber), $this.$alt0), $this.$context), $this.$semanticContext), 4); +oncia_PropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { + oncia_PropExistsConstraintsCypher25$_$callClinit(); + oncia_PropExistsConstraintsCypher25$_output = $x$1; }, -oavra_ATNConfig_toString = $this => { - return oavra_ATNConfig_toString0($this, null, 1); +oncia_PropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { + oncia_PropExistsConstraintsCypher25$_$callClinit(); + oncia_PropExistsConstraintsCypher25$_prettyPrint = $x$1; }, -oavra_ATNConfig_toString0 = ($this, $recog, $showAlt) => { - let $buf; - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - jl_AbstractStringBuilder_append0($buf, 40); - jl_StringBuilder_append($buf, $this.$state0); - if ($showAlt) { - jl_AbstractStringBuilder_append($buf, $rt_s(41)); - jl_StringBuilder_append0($buf, $this.$alt0); - } - if ($this.$context !== null) { - jl_AbstractStringBuilder_append($buf, $rt_s(6829)); - jl_AbstractStringBuilder_append($buf, $this.$context.$toString()); - jl_AbstractStringBuilder_append($buf, $rt_s(427)); - } - $recog = $this.$semanticContext; - if ($recog !== null && $recog !== oavra_SemanticContext$Empty_Instance) { - jl_AbstractStringBuilder_append($buf, $rt_s(41)); - jl_StringBuilder_append($buf, $this.$semanticContext); - } - if (oavra_ATNConfig_getOuterContextDepth($this) > 0) { - jl_AbstractStringBuilder_append($buf, $rt_s(6830)); - jl_StringBuilder_append0($buf, oavra_ATNConfig_getOuterContextDepth($this)); - } - jl_AbstractStringBuilder_append0($buf, 41); - return jl_AbstractStringBuilder_toString($buf); -}; -function sc_IterableOnceOps$Maximized() { - let a = this; sr_AbstractFunction2.call(a); - a.$descriptor = null; - a.$f7 = null; - a.$cmp = null; - a.$maxElem = null; - a.$maxF = null; - a.$nonEmpty0 = 0; - a.$$outer63 = null; -} -let sc_IterableOnceOps$Maximized_apply = ($this, $m, $a) => { - let $fa, var$4, var$5; - if (!$m.$nonEmpty0) { - $m.$nonEmpty0 = 1; - $m.$maxElem = $a; - $m.$maxF = $this.$f7.$apply2($a); - return $m; - } - $fa = $this.$f7.$apply2($a); - var$4 = $this.$cmp; - var$5 = $this.$maxF; - if (sr_BoxesRunTime_unboxToBoolean(jl_Boolean_valueOf(var$4.$_0407.$lt($fa, var$5)))) { - $this.$maxF = $fa; - $this.$maxElem = $a; - } - return $m; +oncia_PropExistsConstraintsCypher25$_productArity = $this => { + return 0; }, -sc_IterableOnceOps$Maximized_apply0 = ($this, $v1, $v2) => { - return sc_IterableOnceOps$Maximized_apply($this, $v1, $v2); -}; -function sc_IterableOnceOps$minBy$lambda$_89_0() { - jl_Object.call(this); - this.$_0407 = null; -} -let sc_IterableOnceOps$minBy$lambda$_89_1 = $rt_classWithoutFields(), -sc_IterableOnceOps$minBy$lambda$_89_1_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - return sc_IterableOnceOps$Maximized_apply(var$1, var$1, var$2); -}; -function oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0() { - jl_Object.call(this); - this.$_030 = null; -} -let oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$0.$_030 !== var$1 ? 0 : 1); -}; -function sc_Iterator$contains$lambda$_35_0() { - jl_Object.call(this); - this.$_0678 = null; -} -let sc_Iterator$contains$lambda$_35_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(!sr_BoxesRunTime_equals(var$1, var$0.$_0678) ? 0 : 1); -}; -function sc_Iterator$$anon$6() { - let a = this; sc_AbstractIterator.call(a); - a.$hd = null; - a.$hdDefined0 = 0; - a.$$outer7 = null; - a.$p$1 = null; - a.$isFlipped$1 = 0; -} -let sc_Iterator$$anon$6_hasNext = $this => { +oncia_PropExistsConstraintsCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_PropExistsConstraintsCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_PropExistsConstraintsCypher25$_hashCode = $this => { + return 1284885941; +}, +oncia_PropExistsConstraintsCypher25$_toString = $this => { + return $rt_s(6005); +}, +oncia_NodeUniqueConstraintsCypher25$ = $rt_classWithoutFields(), +oncia_NodeUniqueConstraintsCypher25$_MODULE$ = null, +oncia_NodeUniqueConstraintsCypher25$_output = null; +let oncia_NodeUniqueConstraintsCypher25$_prettyPrint = null, +oncia_NodeUniqueConstraintsCypher25$_description = null, +oncia_NodeUniqueConstraintsCypher25$__clinit_ = () => { + oncia_NodeUniqueConstraintsCypher25$_MODULE$ = new oncia_NodeUniqueConstraintsCypher25$; + oncia_NodeUniqueConstraintsCypher25$_output = $rt_s(6006); + oncia_NodeUniqueConstraintsCypher25$_prettyPrint = $rt_s(6007); + oncia_NodeUniqueConstraintsCypher25$_description = $rt_s(6008); +}, +oncia_NodeUniqueConstraintsCypher25$_prettyPrint0 = $this => { + return oncia_NodeUniqueConstraintsCypher25$_prettyPrint; +}, +oncia_NodeUniqueConstraintsCypher25$_productArity = $this => { + return 0; +}, +oncia_NodeUniqueConstraintsCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_NodeUniqueConstraintsCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_NodeUniqueConstraintsCypher25$_hashCode = $this => { + return 1549379169; +}, +oncia_NodeUniqueConstraintsCypher25$_toString = $this => { + return $rt_s(6009); +}, +oncia_RelUniqueConstraintsCypher25$ = $rt_classWithoutFields(), +oncia_RelUniqueConstraintsCypher25$_MODULE$ = null, +oncia_RelUniqueConstraintsCypher25$_output = null, +oncia_RelUniqueConstraintsCypher25$_prettyPrint = null, +oncia_RelUniqueConstraintsCypher25$_description = null, +oncia_RelUniqueConstraintsCypher25$__clinit_ = () => { + oncia_RelUniqueConstraintsCypher25$_MODULE$ = new oncia_RelUniqueConstraintsCypher25$; + oncia_RelUniqueConstraintsCypher25$_output = $rt_s(6010); + oncia_RelUniqueConstraintsCypher25$_prettyPrint = $rt_s(6011); + oncia_RelUniqueConstraintsCypher25$_description = $rt_s(6012); +}, +oncia_RelUniqueConstraintsCypher25$_prettyPrint0 = $this => { + return oncia_RelUniqueConstraintsCypher25$_prettyPrint; +}, +oncia_RelUniqueConstraintsCypher25$_productArity = $this => { + return 0; +}, +oncia_RelUniqueConstraintsCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_RelUniqueConstraintsCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RelUniqueConstraintsCypher25$_hashCode = $this => { + return (-996767766); +}, +oncia_RelUniqueConstraintsCypher25$_toString = $this => { + return $rt_s(6013); +}, +oncia_UniqueConstraintsCypher25$ = $rt_classWithoutFields(), +oncia_UniqueConstraintsCypher25$_MODULE$ = null, +oncia_UniqueConstraintsCypher25$_output = null, +oncia_UniqueConstraintsCypher25$_prettyPrint = null, +oncia_UniqueConstraintsCypher25$_description = null, +oncia_UniqueConstraintsCypher25$__clinit_ = () => { + oncia_UniqueConstraintsCypher25$_MODULE$ = new oncia_UniqueConstraintsCypher25$; + oncia_UniqueConstraintsCypher25$_output = $rt_s(6014); + oncia_UniqueConstraintsCypher25$_prettyPrint = $rt_s(6015); + oncia_UniqueConstraintsCypher25$_description = $rt_s(6016); +}, +oncia_UniqueConstraintsCypher25$_prettyPrint0 = $this => { + return oncia_UniqueConstraintsCypher25$_prettyPrint; +}, +oncia_UniqueConstraintsCypher25$_productArity = $this => { + return 0; +}, +oncia_UniqueConstraintsCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_UniqueConstraintsCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_UniqueConstraintsCypher25$_hashCode = $this => { + return 1022852675; +}, +oncia_UniqueConstraintsCypher25$_toString = $this => { + return $rt_s(6017); +}, +jnc_CharacterCodingException = $rt_classWithoutFields(ji_IOException), +oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0 = $rt_classWithoutFields(), +oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6; a: { - if (!$this.$hdDefined0) { - if (!$this.$$outer7.$hasNext()) - return 0; - $this.$hd = $this.$$outer7.$next(); - while (true) { - if (sr_BoxesRunTime_unboxToBoolean($this.$p$1.$apply2($this.$hd)) != $this.$isFlipped$1) { - $this.$hdDefined0 = 1; + var$2 = var$2; + var$3 = sr_BoxesRunTime_unboxToInt(var$1); + var$1 = s_Tuple2__init_(jl_Integer_valueOf(var$3), var$2); + var$3 = s_Tuple2__1$mcI$sp(var$1); + var$2 = var$1.$_20; + if (var$2 instanceof sci_$colon$colon) { + var$2 = var$2; + var$4 = var$2.$head1; + var$2 = var$2.$next5; + if (var$2 instanceof sci_$colon$colon) { + var$2 = var$2; + var$5 = var$2.$head1; + var$6 = var$2.$next5; + if (sci_List_equals(sci_Nil$_MODULE$, var$6) && !(oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$4) === null && oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$5) === null)) { + var$3 = var$3 + 1 | 0; break a; } - if (!$this.$$outer7.$hasNext()) - break; - $this.$hd = $this.$$outer7.$next(); } - return 0; } + var$3 = s_Tuple2__1$mcI$sp(var$1); } - return 1; -}, -sc_Iterator$$anon$6_next = $this => { - if (!sc_Iterator$$anon$6_hasNext($this)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - $this.$hdDefined0 = 0; - return $this.$hd; -}, -sc_IterableOnceOps$$anon$1 = $rt_classWithoutFields(sr_AbstractFunction1), -sc_IterableOnceOps$$anon$1_apply = ($this, $v1) => { - return $this; -}, -oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_0_apply = (var$0, var$1, var$2) => { - return oncia_SingleQuery_$anonfun$checkOrder$2(var$1, var$2); -}, -oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_1 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_2 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_2_apply = (var$0, var$1, var$2) => { - return oncia_SingleQuery_$anonfun$checkOrder$6(var$1, var$2); -}, -oncias_FeatureError$ = $rt_classWithoutFields(), -oncias_FeatureError$_MODULE$ = null, -oncias_FeatureError$_$callClinit = () => { - oncias_FeatureError$_$callClinit = $rt_eraseClinit(oncias_FeatureError$); - oncias_FeatureError$__clinit_(); -}, -oncias_FeatureError$__clinit_ = () => { - let var$1; - var$1 = new oncias_FeatureError$; - oncias_FeatureError$_$callClinit(); - oncias_FeatureError$_MODULE$ = var$1; + return jl_Integer_valueOf(var$3); }, -oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0_apply = (var$0, var$1) => { +oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1 = $rt_classWithoutFields(), +oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1_apply = (var$0, var$1) => { var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - return var$1.$_1(); + return oncipv_Cypher5Parser$SymbolicNameStringContext_unescapedSymbolicNameString(var$1) !== null ? (oncipv_Cypher5Parser$SymbolicNameStringContext_unescapedSymbolicNameString(var$1)).$ast0 : oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$1) === null ? $rt_s(4) : onih_NameUtil_forceEscapeName((oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$1)).$ast0); }, -oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0_apply = (var$0, var$1) => { - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - return var$1.$_2(); -}; -function oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0() { - jl_Object.call(this); - this.$_0397 = null; -} -let oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0_apply = (var$0, var$1) => { - let var$2, var$3; +oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0 = $rt_classWithoutFields(), +oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6; + a: { + var$2 = var$2; + var$3 = sr_BoxesRunTime_unboxToInt(var$1); + var$1 = s_Tuple2__init_(jl_Integer_valueOf(var$3), var$2); + var$3 = s_Tuple2__1$mcI$sp(var$1); + var$2 = var$1.$_20; + if (var$2 instanceof sci_$colon$colon) { + var$2 = var$2; + var$4 = var$2.$head1; + var$2 = var$2.$next5; + if (var$2 instanceof sci_$colon$colon) { + var$2 = var$2; + var$5 = var$2.$head1; + var$6 = var$2.$next5; + if (sci_List_equals(sci_Nil$_MODULE$, var$6) && !(oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$4) === null && oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$5) === null)) { + var$3 = var$3 + 1 | 0; + break a; + } + } + } + var$3 = s_Tuple2__1$mcI$sp(var$1); + } + return jl_Integer_valueOf(var$3); +}, +oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1 = $rt_classWithoutFields(), +oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0397; - oncia_SingleQuery$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - return oncia_SingleQuery$PartitionedClauses__init_(s_Some__init_(var$2), s_Some__init_(var$3), s_None$_MODULE$, var$1); + return oncipv_Cypher25Parser$SymbolicNameStringContext_unescapedSymbolicNameString(var$1) !== null ? (oncipv_Cypher25Parser$SymbolicNameStringContext_unescapedSymbolicNameString(var$1)).$ast0 : oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$1) === null ? $rt_s(4) : onih_NameUtil_forceEscapeName((oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$1)).$ast0); }; -function oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1() { +function oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0() { let a = this; jl_Object.call(a); - a.$_01047 = null; - a.$_1357 = null; + a.$_0463 = null; + a.$_1160 = 0; } -let oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_01047; - var$2 = var$0.$_1357; - oncia_SingleQuery$_$callClinit(); - var$3 = new oncia_SingleQuery$PartitionedClauses; - var$4 = s_Some__init_(var$1); - var$1 = s_None$_MODULE$; - oncia_SingleQuery$PartitionedClauses__init_0(var$3, var$4, var$1, var$1, var$2); - return var$3; +let oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0463; + var$2 = var$0.$_1160; + s_Option$_$callClinit(); + return s_Option_map(s_Option$_apply(s_Option$_MODULE$, oavr_VocabularyImpl_getSymbolicName(var$1.$conf.$vocabulary0(), var$2)), new oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0); }; -function oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0() { +function oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1() { jl_Object.call(this); - this.$_073 = null; + this.$_0932 = 0; } -let oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_073; - return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); +let oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1_apply = var$0 => { + return jl_Integer_toString(var$0.$_0932); }, -oncia_AliasedReturnItem$ = $rt_classWithoutFields(), -oncia_AliasedReturnItem$_MODULE$ = null, -oncia_AliasedReturnItem$__clinit_ = () => { - oncia_AliasedReturnItem$_MODULE$ = new oncia_AliasedReturnItem$; -}; -function oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0() { - jl_Object.call(this); - this.$_0324 = null; -} -let oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0324; - oncia_CommandClause$_$callClinit(); - return oncia_CommandClause$_updateExpression$1(var$1, var$2); -}; -function oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_69_0() { - jl_Object.call(this); - this.$_0175 = null; -} -let oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_69_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$2; - var$3 = var$0.$_0175; - if (!(var$2 instanceof oncia_PatternQualifier)) { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$2 = var$2; - var$4 = var$2.$variable21; - var$5 = var$2.$expression34; - oncias_OptionSemanticChecking$_$callClinit(); - var$2 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$6 = new oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_76_0; - var$6.$_0291 = var$3; - var$2 = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$2, var$4, var$6); - oncias_SemanticExpressionCheck$_$callClinit(); - var$6 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - var$2 = var$2.$chain(oncias_SemanticExpressionCheck$_check0(var$6, oncie_Expression$SemanticContext$Results$_MODULE$, var$5)); - var$6 = var$3.$privilege6; - if (!(var$6 instanceof oncia_GraphPrivilege)) - var$6 = oncias_SemanticAnalysisTooling_error$(var$3, $rt_s(6831), var$3.$position45); - else { - var$6 = var$6.$action0; - if (jl_Object_equals(oncia_ReadAction$_MODULE$, var$6) ? 1 : jl_Object_equals(oncia_TraverseAction$_MODULE$, var$6) ? 1 : !jl_Object_equals(oncia_MatchAction$_MODULE$, var$6) ? 0 : 1) { - oncias_SemanticCheck$_$callClinit(); - var$6 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$4 = var$6.$name18; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$4), $rt_s(6832)); - var$6 = oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$6), var$3.$position45); - } - } - var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, var$6), oncia_PrivilegeCommand_checkExpression(var$3, var$5)); +oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1_applyOrElse = ($this, $x, $default) => { + let var$3; + $x = $x; + if ($x === null) + $default = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); + else { + $default = new oncie_PropertyKeyName; + var$3 = $x.$ast0; + oncipau_Util$_$callClinit(); + oncie_PropertyKeyName__init_($default, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $x)); } - return var$1.$chain(var$2); -}; -function sc_View$Fill() { - let a = this; sc_AbstractView.call(a); - a.$n2 = 0; - a.$elem7 = null; + return $default; +}, +oncie_Ands$_init_$lambda$_23_0 = $rt_classWithoutFields(); +function oncie_DynamicLabelExpression() { + let a = this; jl_Object.call(a); + a.$expression28 = null; + a.$all3 = 0; + a.$position168 = null; } -let sc_View$Fill_iterator = $this => { - let $fill_len, $fill_elem, var$3; - $fill_len = $this.$n2; - $fill_elem = $this.$elem7; - var$3 = new sc_Iterator$$anon$22; - var$3.$len$2 = $fill_len; - var$3.$elem$4 = $fill_elem; - var$3.$i4 = 0; - return var$3; +let oncie_DynamicLabelExpression_expression = $this => { + return $this.$expression28; }, -sc_View$Fill_knownSize = $this => { - return jl_Math_max(0, $this.$n2); +oncie_DynamicLabelExpression_all = $this => { + return $this.$all3; }, -oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - return $x instanceof oncia_ExistsExpression ? jl_Boolean_valueOf(1) : $x instanceof oncia_CollectExpression ? jl_Boolean_valueOf(1) : !($x instanceof oncia_CountExpression) ? s_PartialFunction$_fallback_fn : jl_Boolean_valueOf(1); -}; -function sc_Iterator$SliceIterator() { - let a = this; sc_AbstractIterator.call(a); - a.$underlying9 = null; - a.$scala$collection$Iterator$SliceIterator$$remaining = 0; - a.$dropping = 0; -} -let sc_Iterator$SliceIterator_skip = $this => { - while ($this.$dropping > 0) { - if (!$this.$underlying9.$hasNext()) { - $this.$dropping = 0; - continue; - } - $this.$underlying9.$next(); - $this.$dropping = $this.$dropping - 1 | 0; - } +oncie_DynamicLabelExpression_position = $this => { + return $this.$position168; }, -sc_Iterator$SliceIterator_knownSize = $this => { - let $size, $dropSize; - $size = $this.$underlying9.$knownSize(); - if ($size < 0) - return (-1); - $dropSize = jl_Math_max(0, $size - $this.$dropping | 0); - $size = $this.$scala$collection$Iterator$SliceIterator$$remaining; - if ($size >= 0 ? 0 : 1) - return $dropSize; - return jl_Math_min($size, $dropSize); +oncie_DynamicLabelExpression_copy = ($this, $expression, $all, $position) => { + return oncie_DynamicLabelExpression__init_($expression, $all, $position); }, -sc_Iterator$SliceIterator_hasNext = $this => { - sc_Iterator$SliceIterator_skip($this); - if ($this.$scala$collection$Iterator$SliceIterator$$remaining && $this.$underlying9.$hasNext()) - return 1; - return 0; +oncie_DynamicLabelExpression_productPrefix = $this => { + return $rt_s(6018); }, -sc_Iterator$SliceIterator_next = $this => { - let var$1, var$2; - sc_Iterator$SliceIterator_skip($this); - var$1 = $this.$scala$collection$Iterator$SliceIterator$$remaining; - var$2 = $rt_compare(var$1, 0); - if (var$2 > 0) { - $this.$scala$collection$Iterator$SliceIterator$$remaining = var$1 - 1 | 0; - return $this.$underlying9.$next(); +oncie_DynamicLabelExpression_productArity = $this => { + return 2; +}, +oncie_DynamicLabelExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$expression28; + case 1: + return jl_Boolean_valueOf($this.$all3); + default: } - if (!(var$2 >= 0 ? 0 : 1)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - return $this.$underlying9.$next(); + return sr_Statics_ioobe($x$1); }, -sc_Iterator$SliceIterator_sliceIterator = ($this, $from, $until) => { - let $lo, $rest; - $lo = jl_Math_max($from, 0); - $rest = $until < 0 ? sc_Iterator$SliceIterator_adjustedBound$1($this, $lo) : $until <= $lo ? 0 : ($this.$scala$collection$Iterator$SliceIterator$$remaining >= 0 ? 0 : 1) ? $until - $lo | 0 : jl_Math_min(sc_Iterator$SliceIterator_adjustedBound$1($this, $lo), $until - $lo | 0); - if (!$rest) - return sc_Iterator$_scala$collection$Iterator$$_empty; - $this.$dropping = $this.$dropping + $lo | 0; - $this.$scala$collection$Iterator$SliceIterator$$remaining = $rest; - return $this; +oncie_DynamicLabelExpression_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -sc_Iterator$SliceIterator_adjustedBound$1 = ($this, $lo$1) => { - let $max$extension_that; - $max$extension_that = $this.$scala$collection$Iterator$SliceIterator$$remaining; - if ($max$extension_that >= 0 ? 0 : 1) - return (-1); - return jl_Math_max(0, $max$extension_that - $lo$1 | 0); -}; -function oncius_CypherType$isSubtypeOf$lambda$_19_0() { - jl_Object.call(this); - this.$_0318 = null; -} -let oncius_CypherType$isSubtypeOf$lambda$_19_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0318; - return jl_Boolean_valueOf(var$2.$isSubtypeOf(var$1) && var$2.$isNullableSubtypeOf(var$2, var$1) ? 1 : 0); +oncie_DynamicLabelExpression_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6018))), sr_Statics_anyHash($this.$expression28)), !$this.$all3 ? 1237 : 1231), 2); }, -oncifp_SensitiveParameterRewriter$ = $rt_classWithoutFields(), -oncifp_SensitiveParameterRewriter$_MODULE$ = null, -oncifp_SensitiveParameterRewriter$_instance = null, -oncifp_SensitiveParameterRewriter$_$callClinit = () => { - oncifp_SensitiveParameterRewriter$_$callClinit = $rt_eraseClinit(oncifp_SensitiveParameterRewriter$); - oncifp_SensitiveParameterRewriter$__clinit_(); +oncie_DynamicLabelExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncifp_SensitiveParameterRewriter$__clinit_ = () => { - let var$1, var$2; - var$1 = new oncifp_SensitiveParameterRewriter$; - oncifp_SensitiveParameterRewriter$_$callClinit(); - oncifp_SensitiveParameterRewriter$_MODULE$ = var$1; - onciu_bottomUp$_$callClinit(); - var$2 = onciu_bottomUp$_MODULE$; - onciu_Rewriter$_$callClinit(); - oncifp_SensitiveParameterRewriter$_instance = onciu_bottomUp$_apply(var$2, onciu_Rewriter$_lift(onciu_Rewriter$_MODULE$, new oncifp_SensitiveParameterRewriter$$anonfun$1), onciu_bottomUp$_apply$default$2(onciu_bottomUp$_MODULE$), onciu_CancellationChecker$NeverCancelled$_MODULE$); +oncie_DynamicLabelExpression_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_DynamicLabelExpression) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$all3 != $x$1.$all3) + break b; + c: { + var$2 = $this.$expression28; + $x$1 = $x$1.$expression28; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_DynamicLabelExpression)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncifp_SensitiveParameterRewriter$_apply = ($this, $v) => { - oncifp_SensitiveParameterRewriter$_$callClinit(); - return onciu_bottomUp$BottomUpRewriter_apply(oncifp_SensitiveParameterRewriter$_instance, $v); +oncie_DynamicLabelExpression_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncias_UnsupportedOpenCypher = $rt_classWithoutFields(0); -function oncias_FeatureError() { +oncie_DynamicLabelExpression_mapExpressions = ($this, $f) => { + return oncie_DynamicLabelExpression_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression28), $this.$all3, $this.$position168); +}, +oncie_DynamicLabelExpression__init_0 = ($this, $expression, $all, $position) => { + $this.$expression28 = $expression; + $this.$all3 = $all; + $this.$position168 = $position; +}, +oncie_DynamicLabelExpression__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_DynamicLabelExpression(); + oncie_DynamicLabelExpression__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_DynamicRelTypeExpression() { let a = this; jl_Object.call(a); - a.$gqlStatusObject0 = null; - a.$msg1 = null; - a.$feature = null; - a.$position43 = null; + a.$expression25 = null; + a.$all4 = 0; + a.$position134 = null; } -let oncias_FeatureError_msg = $this => { - return $this.$msg1; +let oncie_DynamicRelTypeExpression_expression = $this => { + return $this.$expression25; }, -oncias_FeatureError_position = $this => { - return $this.$position43; +oncie_DynamicRelTypeExpression_all = $this => { + return $this.$all4; }, -oncias_FeatureError_productPrefix = $this => { - return $rt_s(6833); +oncie_DynamicRelTypeExpression_position = $this => { + return $this.$position134; }, -oncias_FeatureError_productArity = $this => { - return 4; +oncie_DynamicRelTypeExpression_copy = ($this, $expression, $all, $position) => { + return oncie_DynamicRelTypeExpression__init_($expression, $all, $position); }, -oncias_FeatureError_productElement = ($this, $x$1) => { +oncie_DynamicRelTypeExpression_productPrefix = $this => { + return $rt_s(6019); +}, +oncie_DynamicRelTypeExpression_productArity = $this => { + return 2; +}, +oncie_DynamicRelTypeExpression_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$gqlStatusObject0; + return $this.$expression25; case 1: - return $this.$msg1; - case 2: - return $this.$feature; - case 3: - return $this.$position43; + return jl_Boolean_valueOf($this.$all4); default: } return sr_Statics_ioobe($x$1); }, -oncias_FeatureError_productIterator = $this => { +oncie_DynamicRelTypeExpression_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_FeatureError_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncie_DynamicRelTypeExpression_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6019))), sr_Statics_anyHash($this.$expression25)), !$this.$all4 ? 1237 : 1231), 2); }, -oncias_FeatureError_toString = $this => { +oncie_DynamicRelTypeExpression_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_FeatureError_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncie_DynamicRelTypeExpression_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_FeatureError) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$gqlStatusObject0; - var$3 = $x$1.$gqlStatusObject0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$msg1; - var$3 = $x$1.$msg1; - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$feature; - var$3 = $x$1.$feature; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$position43; - $x$1 = $x$1.$position43; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_DynamicRelTypeExpression) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$all4 != $x$1.$all4) + break b; + c: { + var$2 = $this.$expression25; + $x$1 = $x$1.$expression25; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) break b; else break c; @@ -307692,20714 +240829,15000 @@ oncias_FeatureError_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } + if (!($this instanceof oncie_DynamicRelTypeExpression)) + break b; } - var$4 = 1; + var$3 = 1; break a; } - var$4 = 0; + var$3 = 0; } - return var$4; + return var$3; }, -oncias_FeatureError_withMsg = ($this, $message) => { - return oncias_FeatureError__init_($this.$gqlStatusObject0, $message, $this.$feature, $this.$position43); +oncie_DynamicRelTypeExpression_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncias_FeatureError__init_0 = ($this, $gqlStatusObject, $msg, $feature, $position) => { - $this.$gqlStatusObject0 = $gqlStatusObject; - $this.$msg1 = $msg; - $this.$feature = $feature; - $this.$position43 = $position; +oncie_DynamicRelTypeExpression_mapExpressions = ($this, $f) => { + return oncie_DynamicRelTypeExpression_copy($this, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply($f, $this.$expression25), $this.$all4, $this.$position134); }, -oncias_FeatureError__init_ = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncias_FeatureError(); - oncias_FeatureError__init_0(var_4, var_0, var_1, var_2, var_3); - return var_4; +oncie_DynamicRelTypeExpression__init_0 = ($this, $expression, $all, $position) => { + $this.$expression25 = $expression; + $this.$all4 = $all; + $this.$position134 = $position; }, -srj_JFunction1$mcZI$sp = $rt_classWithoutFields(0), -srj_JFunction1$mcZI$sp_apply = ($this, $t) => { - return jl_Boolean_valueOf($this.$apply$mcZI$sp(sr_BoxesRunTime_unboxToInt($t))); +oncie_DynamicRelTypeExpression__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_DynamicRelTypeExpression(); + oncie_DynamicRelTypeExpression__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_NodePropertyType() { + let a = this; jl_Object.call(a); + a.$propType = null; + a.$description8 = null; + a.$predicate7 = null; +} +let oncia_NodePropertyType_description = $this => { + return $this.$description8; }, -oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_7_0 = $rt_classWithoutFields(), -oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_7_0_apply$mcZI$sp = (var$0, var$1) => { - return var$1 >= 1 ? 0 : 1; +oncia_NodePropertyType_productPrefix = $this => { + return $rt_s(6020); }, -ong_ErrorClassification = $rt_classWithoutFields(jl_Enum), -ong_ErrorClassification_CLIENT_ERROR = null, -ong_ErrorClassification_DATABASE_ERROR = null, -ong_ErrorClassification_TRANSIENT_ERROR = null, -ong_ErrorClassification_UNKNOWN = null, -ong_ErrorClassification_$VALUES = null, -ong_ErrorClassification_$callClinit = () => { - ong_ErrorClassification_$callClinit = $rt_eraseClinit(ong_ErrorClassification); - ong_ErrorClassification__clinit_(); +oncia_NodePropertyType_productArity = $this => { + return 1; }, -ong_ErrorClassification_values = () => { - ong_ErrorClassification_$callClinit(); - return ong_ErrorClassification_$VALUES.$clone0(); +oncia_NodePropertyType_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$propType; + default: + } + return sr_Statics_ioobe($x$1); }, -ong_ErrorClassification__init_0 = ($this, var$1, var$2) => { - ong_ErrorClassification_$callClinit(); - jl_Enum__init_($this, var$1, var$2); +oncia_NodePropertyType_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -ong_ErrorClassification__init_ = (var_0, var_1) => { - let var_2 = new ong_ErrorClassification(); - ong_ErrorClassification__init_0(var_2, var_0, var_1); - return var_2; +oncia_NodePropertyType_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -ong_ErrorClassification__clinit_ = () => { - let var$1, var$2, var$3; - ong_ErrorClassification_CLIENT_ERROR = ong_ErrorClassification__init_($rt_s(6834), 0); - ong_ErrorClassification_DATABASE_ERROR = ong_ErrorClassification__init_($rt_s(6835), 1); - ong_ErrorClassification_TRANSIENT_ERROR = ong_ErrorClassification__init_($rt_s(6836), 2); - var$1 = ong_ErrorClassification__init_($rt_s(3514), 3); - ong_ErrorClassification_UNKNOWN = var$1; - var$2 = $rt_createArray(ong_ErrorClassification, 4); - var$3 = var$2.data; - var$3[0] = ong_ErrorClassification_CLIENT_ERROR; - var$3[1] = ong_ErrorClassification_DATABASE_ERROR; - var$3[2] = ong_ErrorClassification_TRANSIENT_ERROR; - var$3[3] = var$1; - ong_ErrorClassification_$VALUES = var$2; +oncia_NodePropertyType_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_9_0 = $rt_classWithoutFields(), -oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_9_0_apply$mcZI$sp = (var$0, var$1) => { - return var$1 >= 0 ? 0 : 1; -}; -function oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0() { - let a = this; jl_Object.call(a); - a.$_0914 = null; - a.$_1317 = null; -} -let oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0914; - var$3 = var$0.$_1317; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6837)), var$3), $rt_s(6838)), var$1), 10); - return scm_StringBuilder_$plus$plus$eq(var$2, jl_AbstractStringBuilder_toString(var$4)); -}; -function oncia_CommandClause$$updateExpression$1$lambda$_8_0() { - jl_Object.call(this); - this.$_0717 = null; -} -let oncia_CommandClause$$updateExpression$1$lambda$_8_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +oncia_NodePropertyType_equals = ($this, $x$1) => { + let var$2, var$3; a: { - var$1 = var$1; - var$2 = var$0.$_0717; - oncia_CommandClause$_$callClinit(); - if (var$1 !== null) { - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - if (var$3 instanceof oncie_LogicalVariable) { - var$3 = var$3; - if (var$1 instanceof s_Some) { - var$4 = !oncie_Variable_equals(var$1.$value5, var$3) && !(var$2.$valuesIterator()).$contains(s_Some__init_(var$3)) ? 1 : 0; - break a; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_NodePropertyType) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$propType; + $x$1 = $x$1.$propType; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_NodePropertyType)) + break b; } + var$3 = 1; + break a; } - var$4 = 0; + var$3 = 0; } - return jl_Boolean_valueOf(var$4); + return var$3; }, -oncia_CommandClause$$updateExpression$1$lambda$_8_1 = $rt_classWithoutFields(), -oncia_CommandClause$$updateExpression$1$lambda$_8_1_apply = (var$0, var$1) => { +oncia_NodePropertyType__init_0 = ($this, $propType) => { let var$2; - var$1 = var$1; - oncia_CommandClause$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - return s_Tuple2__init_(var$2, var$1.$get1()); + $this.$propType = $propType; + $this.$description8 = $rt_s(6021); + $propType = $propType.$description(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6022)), $propType); + $this.$predicate7 = jl_AbstractStringBuilder_toString(var$2); }, -oncia_CommandClause$$updateExpression$1$lambda$_8_2 = $rt_classWithoutFields(), -oncia_CommandClause$$updateExpression$1$lambda$_8_2_apply = (var$0, var$1, var$2) => { - let var$3, var$4; - var$1 = var$1; - var$2 = var$2; - oncia_CommandClause$_$callClinit(); - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = var$2.$_1(); - var$2 = var$2.$_2(); - var$4 = new oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0; - var$4.$_0679 = var$2; - return oncie_Expression_replaceAllOccurrencesBy(var$1, var$3, var$4, 1); +oncia_NodePropertyType__init_ = var_0 => { + let var_1 = new oncia_NodePropertyType(); + oncia_NodePropertyType__init_0(var_1, var_0); + return var_1; }; -function oncia_SingleQuery$checkClauses$lambda$_81_0() { +function oncia_RelationshipPropertyType() { let a = this; jl_Object.call(a); - a.$_0368 = null; - a.$_1135 = null; - a.$_250 = 0; + a.$propType0 = null; + a.$description7 = null; + a.$predicate6 = null; } -let oncia_SingleQuery$checkClauses$lambda$_81_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_0368; - var$3 = var$0.$_1135; - var$4 = var$0.$_250; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$5 = var$1.$_1(); - var$6 = var$1.$_2$mcI$sp(); - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_MODULE$; - var$7 = new oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_155_0; - var$7.$_01181 = var$2; - var$7.$_1150 = var$5; - var$7.$_254 = var$3; - var$7.$_316 = var$6; - var$7.$_44 = var$4; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck$_fromState(var$1, var$7), oncias_SemanticAnalysisTooling_recordCurrentScope$(var$2, var$5)); +let oncia_RelationshipPropertyType_description = $this => { + return $this.$description7; }, -onciap_Prettifier$$extractTopology$lambda$_19_0 = $rt_classWithoutFields(), -onciap_Prettifier$$extractTopology$lambda$_19_0_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - onciap_Prettifier$_$callClinit(); - var$2 = sr_BoxesRunTime_unboxToInt(var$1); - switch (var$2) { - case 1: - break; - default: - var$1 = new s_Some; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(var$3, 32); - jl_StringBuilder_append(jl_StringBuilder_append0(var$3, var$2), $rt_s(6839)); - s_Some__init_0(var$1, jl_AbstractStringBuilder_toString(var$3)); - break a; - } - var$1 = s_Some__init_($rt_s(6840)); +oncia_RelationshipPropertyType_productPrefix = $this => { + return $rt_s(6023); +}, +oncia_RelationshipPropertyType_productArity = $this => { + return 1; +}, +oncia_RelationshipPropertyType_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$propType0; + default: } - return var$1; + return sr_Statics_ioobe($x$1); }, -onciap_Prettifier$$extractTopology$lambda$_19_1 = $rt_classWithoutFields(), -onciap_Prettifier$$extractTopology$lambda$_19_1_apply = var$0 => { - onciap_Prettifier$_$callClinit(); - return $rt_s(4); +oncia_RelationshipPropertyType_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciap_Prettifier$$extractTopology$lambda$_19_2 = $rt_classWithoutFields(), -onciap_Prettifier$$extractTopology$lambda$_19_2_apply = (var$0, var$1) => { +oncia_RelationshipPropertyType_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RelationshipPropertyType_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RelationshipPropertyType_equals = ($this, $x$1) => { let var$2, var$3; a: { - onciap_Prettifier$_$callClinit(); - var$2 = sr_BoxesRunTime_unboxToInt(var$1); - switch (var$2) { - case 1: - break; - default: - var$1 = new s_Some; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(var$3, 32); - jl_StringBuilder_append(jl_StringBuilder_append0(var$3, var$2), $rt_s(6841)); - s_Some__init_0(var$1, jl_AbstractStringBuilder_toString(var$3)); - break a; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RelationshipPropertyType) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$propType0; + $x$1 = $x$1.$propType0; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_RelationshipPropertyType)) + break b; + } + var$3 = 1; + break a; } - var$1 = s_Some__init_($rt_s(6842)); + var$3 = 0; } - return var$1; + return var$3; }, -onciap_Prettifier$$extractTopology$lambda$_19_3 = $rt_classWithoutFields(), -onciap_Prettifier$$extractTopology$lambda$_19_3_apply = var$0 => { - onciap_Prettifier$_$callClinit(); - return $rt_s(4); +oncia_RelationshipPropertyType__init_0 = ($this, $propType) => { + let var$2; + $this.$propType0 = $propType; + $this.$description7 = $rt_s(6024); + $propType = $propType.$description(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6022)), $propType); + $this.$predicate6 = jl_AbstractStringBuilder_toString(var$2); }, -jn_IntBufferImpl = $rt_classWithoutFields(jn_IntBuffer), -jn_IntBufferImpl_put = ($this, $b) => { - let var$2, var$3; - if ($this.$readOnly0) { - var$2 = new jn_ReadOnlyBufferException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - var$3 = $this.$position3; - if (var$3 < $this.$limit2) { - $this.$position3 = var$3 + 1 | 0; - jn_IntBufferOverArray_putElement($this, var$3, $b); - return $this; - } - var$2 = new jn_BufferOverflowException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); -}; -function jn_IntBufferOverArray() { - let a = this; jn_IntBufferImpl.call(a); - a.$readOnly0 = 0; - a.$start5 = 0; - a.$array16 = null; -} -let jn_IntBufferOverArray_putElement = ($this, $index, $value) => { - $this.$array16.data[$index + $this.$start5 | 0] = $value; -}; -function s_Tuple2$mcCI$sp() { - let a = this; s_Tuple2.call(a); - a.$_1$mcC$sp0 = 0; - a.$_2$mcI$sp0 = 0; -} -let s_Tuple2$mcCI$sp__1$mcC$sp = $this => { - return $this.$_1$mcC$sp0; +oncia_RelationshipPropertyType__init_ = var_0 => { + let var_1 = new oncia_RelationshipPropertyType(); + oncia_RelationshipPropertyType__init_0(var_1, var_0); + return var_1; }, -s_Tuple2$mcCI$sp__2$mcI$sp = $this => { - return $this.$_2$mcI$sp0; +oncia_NodePropertyUniqueness = $rt_classWithoutFields(0), +oncia_NodePropertyUniqueness_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$NodePropertyUniqueness$_setter_$predicate_$eq($rt_s(6025)); }, -s_Tuple2$mcCI$sp__2 = $this => { - return jl_Integer_valueOf($this.$_2$mcI$sp0); +oncia_NodePropertyUniquenessCypher25$ = $rt_classWithoutFields(), +oncia_NodePropertyUniquenessCypher25$_MODULE$ = null, +oncia_NodePropertyUniquenessCypher25$_description = null, +oncia_NodePropertyUniquenessCypher25$_predicate = null, +oncia_NodePropertyUniquenessCypher25$_$callClinit = () => { + oncia_NodePropertyUniquenessCypher25$_$callClinit = $rt_eraseClinit(oncia_NodePropertyUniquenessCypher25$); + oncia_NodePropertyUniquenessCypher25$__clinit_(); }, -s_Tuple2$mcCI$sp__1 = $this => { - return jl_Character_valueOf($this.$_1$mcC$sp0); +oncia_NodePropertyUniquenessCypher25$__clinit_ = () => { + let var$1; + var$1 = new oncia_NodePropertyUniquenessCypher25$; + oncia_NodePropertyUniquenessCypher25$_$callClinit(); + oncia_NodePropertyUniquenessCypher25$_MODULE$ = var$1; + oncia_NodePropertyUniqueness_$init$(var$1); + oncia_NodePropertyUniquenessCypher25$_description = $rt_s(6026); }, -oncifp_SensitiveParameterRewriter$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncifp_SensitiveParameterRewriter$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - if ($x1 instanceof oncie_ExplicitParameter) { - $x1 = $x1; - $default = new oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$1; - oncie_ExplicitParameter__init_0($default, $x1.$name14, $x1.$parameterType0, $x1.$sizeHint2, $x1.$position52); - return $default; - } - if (!($x1 instanceof oncie_AutoExtractedParameter)) { - if (!$rt_isInstance($x1, oncie_Literal)) - return $default.$apply2($x1); - return $x1.$asSensitiveLiteral(); - } - $x1 = $x1; - $default = new oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$2; - oncie_AutoExtractedParameter__init_($default, $x1.$name28, $x1.$parameterType1, $x1.$sizeHint3, $x1.$position63); - return $default; +oncia_NodePropertyUniquenessCypher25$_org$neo4j$cypher$internal$ast$NodePropertyUniqueness$_setter_$predicate_$eq = ($this, $x$1) => { + oncia_NodePropertyUniquenessCypher25$_$callClinit(); + oncia_NodePropertyUniquenessCypher25$_predicate = $x$1; }, -onciu_RewritableJavascript$PROXY$9_196 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_196_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_NodePropertyUniquenessCypher25$_description0 = $this => { + oncia_NodePropertyUniquenessCypher25$_$callClinit(); + return oncia_NodePropertyUniquenessCypher25$_description; }, -onciu_RewritableJavascript$PROXY$9_197 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_197_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodePropertyUniquenessCypher25$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_198 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_198_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodePropertyUniquenessCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_199 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_199_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; +oncia_NodePropertyUniquenessCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_200 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_200_numParameters = var$1 => { - return (jl_Integer_valueOf(9)).$value4; +oncia_NodePropertyUniquenessCypher25$_hashCode = $this => { + return (-1666551331); }, -onciu_RewritableJavascript$PROXY$9_201 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_201_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodePropertyUniquenessCypher25$_toString = $this => { + return $rt_s(6027); }, -onciu_RewritableJavascript$PROXY$9_202 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_202_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncia_NodePropertyUniquenessCypher5$ = $rt_classWithoutFields(), +oncia_NodePropertyUniquenessCypher5$_MODULE$ = null, +oncia_NodePropertyUniquenessCypher5$_description = null, +oncia_NodePropertyUniquenessCypher5$_predicate = null, +oncia_NodePropertyUniquenessCypher5$_$callClinit = () => { + oncia_NodePropertyUniquenessCypher5$_$callClinit = $rt_eraseClinit(oncia_NodePropertyUniquenessCypher5$); + oncia_NodePropertyUniquenessCypher5$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_203 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_203_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncia_NodePropertyUniquenessCypher5$__clinit_ = () => { + let var$1; + var$1 = new oncia_NodePropertyUniquenessCypher5$; + oncia_NodePropertyUniquenessCypher5$_$callClinit(); + oncia_NodePropertyUniquenessCypher5$_MODULE$ = var$1; + oncia_NodePropertyUniqueness_$init$(var$1); + oncia_NodePropertyUniquenessCypher5$_description = $rt_s(6028); }, -onciu_RewritableJavascript$PROXY$9_204 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_204_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodePropertyUniquenessCypher5$_org$neo4j$cypher$internal$ast$NodePropertyUniqueness$_setter_$predicate_$eq = ($this, $x$1) => { + oncia_NodePropertyUniquenessCypher5$_$callClinit(); + oncia_NodePropertyUniquenessCypher5$_predicate = $x$1; }, -onciu_RewritableJavascript$PROXY$9_205 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_205_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodePropertyUniquenessCypher5$_description0 = $this => { + oncia_NodePropertyUniquenessCypher5$_$callClinit(); + return oncia_NodePropertyUniquenessCypher5$_description; }, -onciu_RewritableJavascript$PROXY$9_206 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_206_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodePropertyUniquenessCypher5$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_207 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_207_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodePropertyUniquenessCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_208 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_208_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_NodePropertyUniquenessCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_209 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_209_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodePropertyUniquenessCypher5$_hashCode = $this => { + return (-2131969701); }, -onciu_RewritableJavascript$PROXY$9_210 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_210_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodePropertyUniquenessCypher5$_toString = $this => { + return $rt_s(6029); }, -onciu_RewritableJavascript$PROXY$9_211 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_211_numParameters = var$1 => { - return (jl_Integer_valueOf(9)).$value4; +oncia_NodeKey = $rt_classWithoutFields(0), +oncia_NodeKey_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq($rt_s(6030)); }, -onciu_RewritableJavascript$PROXY$9_212 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_212_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodeKeyCypher25$ = $rt_classWithoutFields(), +oncia_NodeKeyCypher25$_MODULE$ = null, +oncia_NodeKeyCypher25$_predicate = null, +oncia_NodeKeyCypher25$_description = null, +oncia_NodeKeyCypher25$_$callClinit = () => { + oncia_NodeKeyCypher25$_$callClinit = $rt_eraseClinit(oncia_NodeKeyCypher25$); + oncia_NodeKeyCypher25$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_213 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_213_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodeKeyCypher25$__clinit_ = () => { + let var$1; + var$1 = new oncia_NodeKeyCypher25$; + oncia_NodeKeyCypher25$_$callClinit(); + oncia_NodeKeyCypher25$_MODULE$ = var$1; + oncia_NodeKey_$init$(var$1); + oncia_NodeKeyCypher25$_predicate = $rt_s(6031); }, -onciu_RewritableJavascript$PROXY$9_214 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_214_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncia_NodeKeyCypher25$_description0 = $this => { + oncia_NodeKeyCypher25$_$callClinit(); + return oncia_NodeKeyCypher25$_description; }, -onciu_RewritableJavascript$PROXY$9_215 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_215_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodeKeyCypher25$_org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq = ($this, $x$1) => { + oncia_NodeKeyCypher25$_$callClinit(); + oncia_NodeKeyCypher25$_description = $x$1; }, -onciu_RewritableJavascript$PROXY$9_216 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_216_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodeKeyCypher25$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_217 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_217_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodeKeyCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }; -let onciu_RewritableJavascript$PROXY$9_218 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_218_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +let oncia_NodeKeyCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_219 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_219_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodeKeyCypher25$_hashCode = $this => { + return (-1906001509); }, -onciu_RewritableJavascript$PROXY$9_220 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_220_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodeKeyCypher25$_toString = $this => { + return $rt_s(6032); }, -onciu_RewritableJavascript$PROXY$9_221 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_221_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodeKeyCypher5$ = $rt_classWithoutFields(), +oncia_NodeKeyCypher5$_MODULE$ = null, +oncia_NodeKeyCypher5$_predicate = null, +oncia_NodeKeyCypher5$_description = null, +oncia_NodeKeyCypher5$_$callClinit = () => { + oncia_NodeKeyCypher5$_$callClinit = $rt_eraseClinit(oncia_NodeKeyCypher5$); + oncia_NodeKeyCypher5$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_222 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_222_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; +oncia_NodeKeyCypher5$__clinit_ = () => { + let var$1; + var$1 = new oncia_NodeKeyCypher5$; + oncia_NodeKeyCypher5$_$callClinit(); + oncia_NodeKeyCypher5$_MODULE$ = var$1; + oncia_NodeKey_$init$(var$1); + oncia_NodeKeyCypher5$_predicate = $rt_s(5244); }, -onciu_RewritableJavascript$PROXY$9_223 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_223_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_NodeKeyCypher5$_description0 = $this => { + oncia_NodeKeyCypher5$_$callClinit(); + return oncia_NodeKeyCypher5$_description; }, -onciu_RewritableJavascript$PROXY$9_224 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_224_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodeKeyCypher5$_org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq = ($this, $x$1) => { + oncia_NodeKeyCypher5$_$callClinit(); + oncia_NodeKeyCypher5$_description = $x$1; }, -onciu_RewritableJavascript$PROXY$9_225 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_225_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodeKeyCypher5$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_226 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_226_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; +oncia_NodeKeyCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_227 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_227_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodeKeyCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_228 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_228_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_NodeKeyCypher5$_hashCode = $this => { + return (-754220579); }, -onciu_RewritableJavascript$PROXY$9_229 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_229_numParameters = var$1 => { - return (jl_Integer_valueOf(8)).$value4; +oncia_NodeKeyCypher5$_toString = $this => { + return $rt_s(6033); }, -onciu_RewritableJavascript$PROXY$9_230 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_230_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_RelationshipPropertyUniqueness = $rt_classWithoutFields(0), +oncia_RelationshipPropertyUniqueness_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$RelationshipPropertyUniqueness$_setter_$predicate_$eq($rt_s(6025)); }, -onciu_RewritableJavascript$PROXY$9_231 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_231_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncia_RelationshipPropertyUniquenessCypher25$ = $rt_classWithoutFields(), +oncia_RelationshipPropertyUniquenessCypher25$_MODULE$ = null, +oncia_RelationshipPropertyUniquenessCypher25$_description = null, +oncia_RelationshipPropertyUniquenessCypher25$_predicate = null, +oncia_RelationshipPropertyUniquenessCypher25$_$callClinit = () => { + oncia_RelationshipPropertyUniquenessCypher25$_$callClinit = $rt_eraseClinit(oncia_RelationshipPropertyUniquenessCypher25$); + oncia_RelationshipPropertyUniquenessCypher25$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_232 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_232_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_RelationshipPropertyUniquenessCypher25$__clinit_ = () => { + let var$1; + var$1 = new oncia_RelationshipPropertyUniquenessCypher25$; + oncia_RelationshipPropertyUniquenessCypher25$_$callClinit(); + oncia_RelationshipPropertyUniquenessCypher25$_MODULE$ = var$1; + oncia_RelationshipPropertyUniqueness_$init$(var$1); + oncia_RelationshipPropertyUniquenessCypher25$_description = $rt_s(6034); }, -onciu_RewritableJavascript$PROXY$9_233 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_233_numParameters = var$1 => { - return (jl_Integer_valueOf(5)).$value4; +oncia_RelationshipPropertyUniquenessCypher25$_org$neo4j$cypher$internal$ast$RelationshipPropertyUniqueness$_setter_$predicate_$eq = ($this, $x$1) => { + oncia_RelationshipPropertyUniquenessCypher25$_$callClinit(); + oncia_RelationshipPropertyUniquenessCypher25$_predicate = $x$1; }, -onciu_RewritableJavascript$PROXY$9_234 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_234_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; +oncia_RelationshipPropertyUniquenessCypher25$_description0 = $this => { + oncia_RelationshipPropertyUniquenessCypher25$_$callClinit(); + return oncia_RelationshipPropertyUniquenessCypher25$_description; }, -onciu_RewritableJavascript$PROXY$9_235 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_235_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncia_RelationshipPropertyUniquenessCypher25$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_236 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_236_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncia_RelationshipPropertyUniquenessCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_196 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_196_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_197 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_197_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher25$_hashCode = $this => { + return 139240083; }, -onciu_RewritableJavascript$PROXY$11_198 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_198_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher25$_toString = $this => { + return $rt_s(6035); }, -onciu_RewritableJavascript$PROXY$11_199 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_199_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$ = $rt_classWithoutFields(), +oncia_RelationshipPropertyUniquenessCypher5$_MODULE$ = null, +oncia_RelationshipPropertyUniquenessCypher5$_description = null, +oncia_RelationshipPropertyUniquenessCypher5$_predicate = null, +oncia_RelationshipPropertyUniquenessCypher5$_$callClinit = () => { + oncia_RelationshipPropertyUniquenessCypher5$_$callClinit = $rt_eraseClinit(oncia_RelationshipPropertyUniquenessCypher5$); + oncia_RelationshipPropertyUniquenessCypher5$__clinit_(); }, -onciu_RewritableJavascript$PROXY$11_200 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_200_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$__clinit_ = () => { + let var$1; + var$1 = new oncia_RelationshipPropertyUniquenessCypher5$; + oncia_RelationshipPropertyUniquenessCypher5$_$callClinit(); + oncia_RelationshipPropertyUniquenessCypher5$_MODULE$ = var$1; + oncia_RelationshipPropertyUniqueness_$init$(var$1); + oncia_RelationshipPropertyUniquenessCypher5$_description = $rt_s(6036); }, -onciu_RewritableJavascript$PROXY$11_201 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_201_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}; -let onciu_RewritableJavascript$PROXY$11_202 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_202_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$_org$neo4j$cypher$internal$ast$RelationshipPropertyUniqueness$_setter_$predicate_$eq = ($this, $x$1) => { + oncia_RelationshipPropertyUniquenessCypher5$_$callClinit(); + oncia_RelationshipPropertyUniquenessCypher5$_predicate = $x$1; }, -onciu_RewritableJavascript$PROXY$11_203 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_203_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$_description0 = $this => { + oncia_RelationshipPropertyUniquenessCypher5$_$callClinit(); + return oncia_RelationshipPropertyUniquenessCypher5$_description; }, -onciu_RewritableJavascript$PROXY$11_204 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_204_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_205 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_205_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_206 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_206_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_207 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_207_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$_hashCode = $this => { + return 143038949; }, -onciu_RewritableJavascript$PROXY$11_208 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_208_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipPropertyUniquenessCypher5$_toString = $this => { + return $rt_s(6037); }, -onciu_RewritableJavascript$PROXY$11_209 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_209_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKey = $rt_classWithoutFields(0), +oncia_RelationshipKey_$init$ = $$this => { + $$this.$org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq($rt_s(6038)); }, -onciu_RewritableJavascript$PROXY$11_210 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_210_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher25$ = $rt_classWithoutFields(), +oncia_RelationshipKeyCypher25$_MODULE$ = null, +oncia_RelationshipKeyCypher25$_predicate = null, +oncia_RelationshipKeyCypher25$_description = null; +let oncia_RelationshipKeyCypher25$_$callClinit = () => { + oncia_RelationshipKeyCypher25$_$callClinit = $rt_eraseClinit(oncia_RelationshipKeyCypher25$); + oncia_RelationshipKeyCypher25$__clinit_(); }, -onciu_RewritableJavascript$PROXY$11_211 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_211_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher25$__clinit_ = () => { + let var$1; + var$1 = new oncia_RelationshipKeyCypher25$; + oncia_RelationshipKeyCypher25$_$callClinit(); + oncia_RelationshipKeyCypher25$_MODULE$ = var$1; + oncia_RelationshipKey_$init$(var$1); + oncia_RelationshipKeyCypher25$_predicate = $rt_s(6031); }, -onciu_RewritableJavascript$PROXY$11_212 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_212_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher25$_description0 = $this => { + oncia_RelationshipKeyCypher25$_$callClinit(); + return oncia_RelationshipKeyCypher25$_description; +}, +oncia_RelationshipKeyCypher25$_org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq = ($this, $x$1) => { + oncia_RelationshipKeyCypher25$_$callClinit(); + oncia_RelationshipKeyCypher25$_description = $x$1; +}, +oncia_RelationshipKeyCypher25$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_213 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_213_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher25$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_214 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_214_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher25$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_215 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_215_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher25$_hashCode = $this => { + return (-31853659); }, -onciu_RewritableJavascript$PROXY$11_216 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_216_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher25$_toString = $this => { + return $rt_s(6039); }, -onciu_RewritableJavascript$PROXY$11_217 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_217_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$ = $rt_classWithoutFields(), +oncia_RelationshipKeyCypher5$_MODULE$ = null, +oncia_RelationshipKeyCypher5$_predicate = null, +oncia_RelationshipKeyCypher5$_description = null, +oncia_RelationshipKeyCypher5$_$callClinit = () => { + oncia_RelationshipKeyCypher5$_$callClinit = $rt_eraseClinit(oncia_RelationshipKeyCypher5$); + oncia_RelationshipKeyCypher5$__clinit_(); }, -onciu_RewritableJavascript$PROXY$11_218 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_218_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$__clinit_ = () => { + let var$1; + var$1 = new oncia_RelationshipKeyCypher5$; + oncia_RelationshipKeyCypher5$_$callClinit(); + oncia_RelationshipKeyCypher5$_MODULE$ = var$1; + oncia_RelationshipKey_$init$(var$1); + oncia_RelationshipKeyCypher5$_predicate = $rt_s(5246); }, -onciu_RewritableJavascript$PROXY$11_219 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_219_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$_description0 = $this => { + oncia_RelationshipKeyCypher5$_$callClinit(); + return oncia_RelationshipKeyCypher5$_description; }, -onciu_RewritableJavascript$PROXY$11_220 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_220_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$_org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq = ($this, $x$1) => { + oncia_RelationshipKeyCypher5$_$callClinit(); + oncia_RelationshipKeyCypher5$_description = $x$1; }, -onciu_RewritableJavascript$PROXY$11_221 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_221_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_222 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_222_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_223 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_223_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_224 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_224_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$_hashCode = $this => { + return (-970858861); }, -onciu_RewritableJavascript$PROXY$11_225 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_225_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_RelationshipKeyCypher5$_toString = $this => { + return $rt_s(6040); }, -onciu_RewritableJavascript$PROXY$11_226 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_226_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}; -let onciu_RewritableJavascript$PROXY$11_227 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_227_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0 = $rt_classWithoutFields(), +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_DefaultOrAllShowColumns$_$callClinit(); + return jl_Boolean_valueOf(var$1.$_2$mcZ$sp()); }, -onciu_RewritableJavascript$PROXY$11_228 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_228_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1 = $rt_classWithoutFields(), +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_DefaultOrAllShowColumns$_$callClinit(); + return var$1.$_1(); }, -onciu_RewritableJavascript$PROXY$11_229 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_229_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2 = $rt_classWithoutFields(), +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_DefaultOrAllShowColumns$_$callClinit(); + return var$1.$_1(); }, -onciu_RewritableJavascript$PROXY$11_230 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_230_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_UserAuth$$init$$lambda$_23_0 = $rt_classWithoutFields(), +oncia_UserAuth$$init$$lambda$_23_0_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + b: { + c: { + var$2 = var$1.$provider0; + oncia_AdministrationCommand$_$callClinit(); + var$1 = oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$); + if (var$2 !== null) { + if (jl_String_equals(var$2, var$1)) + break c; + else + break b; + } + if (var$1 !== null) + break b; + } + var$3 = 0; + break a; + } + var$3 = 1; + } + return jl_Boolean_valueOf(var$3); }, -onciu_RewritableJavascript$PROXY$11_231 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_231_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_UserAuth$$init$$lambda$_23_1 = $rt_classWithoutFields(), +oncia_UserAuth$$init$$lambda$_23_1_apply = (var$0, var$1) => { + var$1 = var$1; + return oncia_ExternalAuth__init_(var$1.$provider0, var$1.$authAttributes0, var$1.$position69); }, -onciu_RewritableJavascript$PROXY$11_232 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_232_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_UserAuth$$init$$lambda$_23_2 = $rt_classWithoutFields(), +oncia_UserAuth$$init$$lambda$_23_2_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + b: { + c: { + var$2 = var$1.$provider0; + oncia_AdministrationCommand$_$callClinit(); + var$1 = oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$); + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$1)) + break b; + else + break c; + } + if (var$1 !== null) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return jl_Boolean_valueOf(var$3); }, -onciu_RewritableJavascript$PROXY$11_233 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_233_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncia_UserAuth$$init$$lambda$_23_3 = $rt_classWithoutFields(), +oncia_UserAuth$$init$$lambda$_23_3_apply = (var$0, var$1) => { + var$1 = var$1; + return oncia_NativeAuth__init_(var$1.$authAttributes0, var$1.$position69); }, -onciu_RewritableJavascript$PROXY$11_234 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_234_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1_applyOrElse = ($this, $x, $default) => { + let var$3; + $x = $x; + if ($x === null) + $default = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); + else { + $default = new oncie_PropertyKeyName; + var$3 = $x.$ast0; + oncipau_Util$_$callClinit(); + oncie_PropertyKeyName__init_($default, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $x)); + } + return $default; }, -onciu_RewritableJavascript$PROXY$11_235 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_235_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$returnItems4.$includeExisting0); }, -onciu_RewritableJavascript$PROXY$11_236 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_236_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1_apply = (var$0, var$1) => { + return (var$1.$returnItems4.$items0.$map(new oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0)).$toList(); }, -onciu_RewritableJavascript$PROXY$7_546 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_546_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_VariableGrouping_copy(var$2, var$3[0], var$3[1], var$3[2]); +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2_apply = var$0 => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; }, -onciu_RewritableJavascript$PROXY$7_549 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_549_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateFulltextIndexCommand_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7]); +onciu_NonEmptyList$$from$lambda$_3_0 = $rt_classWithoutFields(), +onciu_NonEmptyList$$from$lambda$_3_0_apply = var$0 => { + let var$1; + onciu_NonEmptyList$_$callClinit(); + var$1 = new jl_IllegalArgumentException; + jl_Throwable__init_(var$1, $rt_s(6041)); + $rt_throw(var$1); }, -onciu_RewritableJavascript$PROXY$7_550 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_550_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DropIndexOnName_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3]); +onciu_NonEmptyList = $rt_classWithoutFields(0), +onciu_NonEmptyList_map$ = ($$this, $f) => { + let var$3; + if (!($$this instanceof onciu_Fby)) { + if (!($$this instanceof onciu_Last)) + $rt_throw(s_MatchError__init_($$this)); + var$3 = $$this.$head4; + $$this = onciu_Last__init_(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1_apply($f, var$3)); + } else { + $$this = $$this; + var$3 = $$this.$head3; + $$this = onciu_NonEmptyList_reverse$($$this.$nonEmptyTail.$mapAndPrependReversedTo($f, onciu_Last__init_(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1_apply($f, var$3)))); + } + return $$this; }, -onciu_RewritableJavascript$PROXY$7_551 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_551_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateLookupIndexCommand_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7]); +onciu_NonEmptyList_mapAndPrependReversedTo$ = ($$this, $f, $acc) => { + let var$4, var$5; + while ($$this instanceof onciu_Fby) { + $$this = $$this; + var$4 = $$this.$head3; + $$this = $$this.$nonEmptyTail; + $acc = onciu_Fby__init_($f.$apply2(var$4), $acc); + } + if (!($$this instanceof onciu_Last)) + $rt_throw(s_MatchError__init_($$this)); + var$5 = $$this.$head4; + return onciu_Fby__init_($f.$apply2(var$5), $acc); }, -onciu_RewritableJavascript$PROXY$7_552 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_552_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreatePropertyTypeConstraint_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); +onciu_NonEmptyList_reverse$ = $$this => { + let var$2; + if ($$this instanceof onciu_Fby) { + $$this = $$this; + var$2 = $$this.$head3; + $$this = $$this.$nonEmptyTail.$mapAndPrependReversedTo(new onciu_NonEmptyList$reverse$lambda$_66_0, onciu_Last__init_(var$2)); + } + return $$this; +}; +let onciu_NonEmptyList_toIterable$ = $$this => { + let var$2; + var$2 = $$this.$iterator0(); + $$this = sc_IterableFactory$_MODULE$; + s_package$_$callClinit(); + return var$2.$to0(sc_IterableFactory$_toFactory($$this, s_package$_Iterable(s_package$_MODULE$))); }, -onciu_RewritableJavascript$PROXY$7_553 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_553_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncifp_ResolvedCall_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3, var$3[4].$value3, var$3[5].$value3, var$3[6].$value3, var$3[7]); +onciu_NonEmptyList_toIndexedSeq$ = $$this => { + s_package$_$callClinit(); + return sci_IndexedSeq$_from(s_package$_IndexedSeq(s_package$_MODULE$), $$this); }, -onciu_RewritableJavascript$PROXY$7_560 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_560_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_DropConstraintOnName_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3]); +oncief_Abs$ = $rt_classWithoutFields(oncief_Function), +oncief_Abs$_MODULE$ = null, +oncief_Abs$_signatures = null, +oncief_Abs$_$callClinit = () => { + oncief_Abs$_$callClinit = $rt_eraseClinit(oncief_Abs$); + oncief_Abs$__clinit_(); }, -onciu_RewritableJavascript$PROXY$7_562 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_562_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateSingleLabelPropertyIndexCommand_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); +oncief_Abs$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, var$13, var$14, var$15, var$16, var$17, $x$10; + var$1 = new oncief_Abs$; + oncief_Abs$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Abs$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Abs$_MODULE$; + $x$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$8 = var$11.data; + $x$6 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$16 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$6, var$16, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$8[0] = $x$6; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$11)); + $x$4 = new oncius_ClosedDynamicUnionType; + $x$8 = s_Predef$_Set(s_Predef$_MODULE$); + var$16 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 2); + var$11 = var$8.data; + var$11[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$11[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncius_ClosedDynamicUnionType__init_($x$4, $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$16, var$8)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$16 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(s_Tuple2, 1); + var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6042)); + var$17 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$16, var$11)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6043), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$17); + oncief_Abs$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_RewritableJavascript$PROXY$7_564 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_564_copyConstructor = (var$1, var$2, var$3) => { - return oncie_CaseExpression$Placeholder_copy(var$2, var$3.data[0]); +oncief_Abs$_name = $this => { + return $rt_s(6044); }, -onciu_RewritableJavascript$PROXY$9_237 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_237_numParameters = var$1 => { - return (jl_Integer_valueOf(8)).$value4; +oncief_Abs$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_237 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_237_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Abs$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$7_565 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_565_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncia_CreateConstraintCommand_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); +oncief_Abs$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_238 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_238_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncief_Abs$_hashCode = $this => { + return 65618; }, -onciu_RewritableJavascript$PROXY$11_238 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_238_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; -}; -function oavrm_Interval() { - let a = this; jl_Object.call(a); - a.$a0 = 0; - a.$b = 0; -} -let oavrm_Interval_INVALID = null, -oavrm_Interval_cache = null, -oavrm_Interval__init_0 = ($this, $a, $b) => { - $this.$a0 = $a; - $this.$b = $b; +oncief_Abs$_toString = $this => { + return $rt_s(6045); }, -oavrm_Interval__init_ = (var_0, var_1) => { - let var_2 = new oavrm_Interval(); - oavrm_Interval__init_0(var_2, var_0, var_1); - return var_2; +oncief_Abs$_signatures0 = $this => { + oncief_Abs$_$callClinit(); + return oncief_Abs$_signatures; }, -oavrm_Interval_of = ($a, $b) => { - let var$3; - if ($a == $b && $a >= 0 && $a <= 1000) { - var$3 = oavrm_Interval_cache.data; - if (var$3[$a] === null) - var$3[$a] = oavrm_Interval__init_($a, $a); - return oavrm_Interval_cache.data[$a]; - } - return oavrm_Interval__init_($a, $b); +oncief_Acos$ = $rt_classWithoutFields(oncief_Function), +oncief_Acos$_MODULE$ = null, +oncief_Acos$_signatures = null, +oncief_Acos$_$callClinit = () => { + oncief_Acos$_$callClinit = $rt_eraseClinit(oncief_Acos$); + oncief_Acos$__clinit_(); }, -oavrm_Interval_equals = ($this, $o) => { - let $other; - if ($o !== null && $o instanceof oavrm_Interval) { - $other = $o; - return $this.$a0 == $other.$a0 && $this.$b == $other.$b ? 1 : 0; - } - return 0; +oncief_Acos$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Acos$; + oncief_Acos$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Acos$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Acos$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6047), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Acos$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavrm_Interval_hashCode = $this => { - return ((713 + $this.$a0 | 0) * 31 | 0) + $this.$b | 0; +oncief_Acos$_name = $this => { + return $rt_s(6048); }, -oavrm_Interval_startsBeforeDisjoint = ($this, $other) => { - let var$2, var$3; - var$2 = $this.$a0; - var$3 = $other.$a0; - return var$2 < var$3 && $this.$b < var$3 ? 1 : 0; +oncief_Acos$_productArity = $this => { + return 0; }, -oavrm_Interval_disjoint = ($this, $other) => { - return !oavrm_Interval_startsBeforeDisjoint($this, $other) && !($this.$a0 <= $other.$b ? 0 : 1) ? 0 : 1; +oncief_Acos$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavrm_Interval_adjacent = ($this, $other) => { - return $this.$a0 != ($other.$b + 1 | 0) && $this.$b != ($other.$a0 - 1 | 0) ? 0 : 1; +oncief_Acos$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavrm_Interval_union = ($this, $other) => { - return oavrm_Interval_of(jl_Math_min($this.$a0, $other.$a0), jl_Math_max($this.$b, $other.$b)); +oncief_Acos$_hashCode = $this => { + return 2035110; }, -oavrm_Interval_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - var$1 = jl_StringBuilder_append0(var$1, $this.$a0); - jl_AbstractStringBuilder_append(var$1, $rt_s(446)); - return jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$1, $this.$b)); +oncief_Acos$_toString = $this => { + return $rt_s(6049); }, -oavrm_Interval__clinit_ = () => { - oavrm_Interval_INVALID = oavrm_Interval__init_((-1), (-2)); - oavrm_Interval_cache = $rt_createArray(oavrm_Interval, 1001); -}; -function ju_LinkedHashMapEntrySet() { - let a = this; ju_AbstractSet.call(a); - a.$base2 = null; - a.$reversed1 = 0; -} -let ju_LinkedHashMapEntrySet_iterator = $this => { - let var$1; - var$1 = new ju_LinkedHashMapIterator$EntryIterator; - ju_LinkedHashMapIterator__init_(var$1, $this.$base2, $this.$reversed1); - return var$1; -}; -function s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0() { - let a = this; jl_Object.call(a); - a.$_0277 = null; - a.$_1104 = 0; -} -let s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0277; - var$2 = var$0.$_1104; - s_Enumeration_populateNameMap(var$1); - return scm_HashMap_apply(var$1.$nmap, jl_Integer_valueOf(var$2)); +oncief_Acos$_signatures0 = $this => { + oncief_Acos$_$callClinit(); + return oncief_Acos$_signatures; }, -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncie_LabelName); -}; -function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1() { - let a = this; jl_Object.call(a); - a.$_0296 = null; - a.$_1110 = null; - a.$_242 = null; -} -let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0296; - var$3 = var$0.$_1110; - var$4 = var$0.$_242; - oncifp_ValidSymbolicNamesInLabelExpressions$_$callClinit(); - return oncifp_ValidSymbolicNamesInLabelExpressions$_org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames(oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$, $rt_s(6843), var$3, var$2.$cancellationChecker$1, var$4, var$1); +oncief_Asin$ = $rt_classWithoutFields(oncief_Function), +oncief_Asin$_MODULE$ = null, +oncief_Asin$_signatures = null, +oncief_Asin$_$callClinit = () => { + oncief_Asin$_$callClinit = $rt_eraseClinit(oncief_Asin$); + oncief_Asin$__clinit_(); }, -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncie_RelTypeName); -}; -function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3() { - let a = this; jl_Object.call(a); - a.$_0331 = null; - a.$_1119 = null; - a.$_244 = null; -} -let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0331; - var$3 = var$0.$_1119; - var$4 = var$0.$_244; - oncifp_ValidSymbolicNamesInLabelExpressions$_$callClinit(); - return oncifp_ValidSymbolicNamesInLabelExpressions$_org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames(oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$, $rt_s(6844), var$3, var$2.$cancellationChecker$1, var$4, var$1); +oncief_Asin$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Asin$; + oncief_Asin$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Asin$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Asin$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6050), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Asin$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncie_LabelOrRelTypeName); -}; -function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5() { - let a = this; jl_Object.call(a); - a.$_0492 = null; - a.$_1172 = null; - a.$_257 = null; -} -let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0492; - var$3 = var$0.$_1172; - var$4 = var$0.$_257; - oncifp_ValidSymbolicNamesInLabelExpressions$_$callClinit(); - return oncifp_ValidSymbolicNamesInLabelExpressions$_org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames(oncifp_ValidSymbolicNamesInLabelExpressions$_MODULE$, $rt_s(6845), var$3, var$2.$cancellationChecker$1, var$4, var$1); -}; -function oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0857 = null; -} -let oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0857; - s_Option$_$callClinit(); - var$3 = (s_Option$_option2Iterable(s_Option$_MODULE$, var$2.$orderBy())).$toSeq(); - var$4 = new oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0; - var$4.$_0828 = var$2; - var$1 = var$1.$concat(var$3.$flatMap(var$4)); - oncia_ReturnItems$_$callClinit(); - var$2 = sc_AbstractIterable_toSet((var$2.$returnItems()).$items0.$map(new oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_0)); - var$3 = var$2.$collect(new oncia_ReturnItems$$anonfun$1); - var$4 = var$2.$collect(new oncia_ReturnItems$$anonfun$2); - var$2 = var$2.$collect(new oncia_ReturnItems$$anonfun$3); - var$5 = new oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_1; - var$5.$_0746 = var$4; - var$5.$_1253 = var$2; - var$3 = var$3.$flatMap(var$5); - if (!sc_IterableOnceOps_nonEmpty$(var$3)) - var$2 = s_None$_MODULE$; - else { - var$2 = sc_AbstractIterable_mkString((var$3.$map(new oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_2)).$toSeq(), $rt_s(45)); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6846)), var$2); - var$5 = jl_AbstractStringBuilder_toString(var$4); - var$2 = new s_Some; - oncias_SemanticError$_$callClinit(); - s_Some__init_0(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$5, (var$3.$head()).$position())); - } - return var$1.$concat(var$2); -}; -function oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_0446 = null; - a.$_1156 = null; -} -let oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0446; - var$3 = var$0.$_1156; - return var$1.$appended(s_Tuple2__init_(sr_AbstractPartialFunction_apply(var$2.$$outer50.$matcher0, var$3), var$3.$position())); +oncief_Asin$_name = $this => { + return $rt_s(6051); }, -oncie_IsAggregate$ = $rt_classWithoutFields(), -oncie_IsAggregate$_MODULE$ = null, -oncie_IsAggregate$_$callClinit = () => { - oncie_IsAggregate$_$callClinit = $rt_eraseClinit(oncie_IsAggregate$); - oncie_IsAggregate$__clinit_(); +oncief_Asin$_productArity = $this => { + return 0; }, -oncie_IsAggregate$__clinit_ = () => { - let var$1; - var$1 = new oncie_IsAggregate$; - oncie_IsAggregate$_$callClinit(); - oncie_IsAggregate$_MODULE$ = var$1; +oncief_Asin$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncie_IsAggregate$_unapply = ($this, $v) => { - let var$2, var$3; - var$2 = 0; - var$3 = null; - if ($v instanceof oncie_CountStar) - return s_Some__init_($v); - if ($v instanceof oncie_FunctionInvocation) { - var$2 = 1; - var$3 = $v; - if (var$3.$distinct3) - return s_Some__init_(var$3); - } - if (var$2) { - if (!(var$3.$function1 instanceof oncief_AggregatingFunction)) - return s_None$_MODULE$; - return s_Some__init_(var$3); - } - if ($rt_isInstance($v, oncief_UserDefinedFunctionInvocation)) { - $v = $v; - if (s_Option_exists($v.$fcnSignature, new oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0)) - return s_Some__init_($v); - } - return s_None$_MODULE$; -}; -function oncifp_SyntaxUsageMetricKey() { - jl_Enum.call(this); - this.$key11 = null; -} -let oncifp_SyntaxUsageMetricKey_GPM_SHORTEST = null, -oncifp_SyntaxUsageMetricKey_LEGACY_SHORTEST = null, -oncifp_SyntaxUsageMetricKey_COLLECT_SUBQUERY = null, -oncifp_SyntaxUsageMetricKey_COUNT_SUBQUERY = null, -oncifp_SyntaxUsageMetricKey_EXISTS_SUBQUERY = null, -oncifp_SyntaxUsageMetricKey_QUANTIFIED_PATH_PATTERN = null, -oncifp_SyntaxUsageMetricKey_$VALUES = null, -oncifp_SyntaxUsageMetricKey_$callClinit = () => { - oncifp_SyntaxUsageMetricKey_$callClinit = $rt_eraseClinit(oncifp_SyntaxUsageMetricKey); - oncifp_SyntaxUsageMetricKey__clinit_(); +oncief_Asin$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncifp_SyntaxUsageMetricKey_values = () => { - oncifp_SyntaxUsageMetricKey_$callClinit(); - return oncifp_SyntaxUsageMetricKey_$VALUES.$clone0(); +oncief_Asin$_hashCode = $this => { + return 2050295; }, -oncifp_SyntaxUsageMetricKey__init_0 = ($this, var$1, var$2, $key) => { - oncifp_SyntaxUsageMetricKey_$callClinit(); - jl_Enum__init_($this, var$1, var$2); - $this.$key11 = $key; +oncief_Asin$_toString = $this => { + return $rt_s(6052); }, -oncifp_SyntaxUsageMetricKey__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncifp_SyntaxUsageMetricKey(); - oncifp_SyntaxUsageMetricKey__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncief_Asin$_signatures0 = $this => { + oncief_Asin$_$callClinit(); + return oncief_Asin$_signatures; }, -oncifp_SyntaxUsageMetricKey__clinit_ = () => { - let var$1, var$2, var$3; - oncifp_SyntaxUsageMetricKey_GPM_SHORTEST = oncifp_SyntaxUsageMetricKey__init_($rt_s(6847), 0, $rt_s(6847)); - oncifp_SyntaxUsageMetricKey_LEGACY_SHORTEST = oncifp_SyntaxUsageMetricKey__init_($rt_s(6848), 1, $rt_s(6848)); - oncifp_SyntaxUsageMetricKey_COLLECT_SUBQUERY = oncifp_SyntaxUsageMetricKey__init_($rt_s(6849), 2, $rt_s(6849)); - oncifp_SyntaxUsageMetricKey_COUNT_SUBQUERY = oncifp_SyntaxUsageMetricKey__init_($rt_s(6850), 3, $rt_s(6850)); - oncifp_SyntaxUsageMetricKey_EXISTS_SUBQUERY = oncifp_SyntaxUsageMetricKey__init_($rt_s(6851), 4, $rt_s(6851)); - var$1 = oncifp_SyntaxUsageMetricKey__init_($rt_s(6852), 5, $rt_s(6852)); - oncifp_SyntaxUsageMetricKey_QUANTIFIED_PATH_PATTERN = var$1; - var$2 = $rt_createArray(oncifp_SyntaxUsageMetricKey, 6); - var$3 = var$2.data; - var$3[0] = oncifp_SyntaxUsageMetricKey_GPM_SHORTEST; - var$3[1] = oncifp_SyntaxUsageMetricKey_LEGACY_SHORTEST; - var$3[2] = oncifp_SyntaxUsageMetricKey_COLLECT_SUBQUERY; - var$3[3] = oncifp_SyntaxUsageMetricKey_COUNT_SUBQUERY; - var$3[4] = oncifp_SyntaxUsageMetricKey_EXISTS_SUBQUERY; - var$3[5] = var$1; - oncifp_SyntaxUsageMetricKey_$VALUES = var$2; -}; -function s_PartialFunction$Combined$applyOrElse$lambda$_36_0() { - let a = this; jl_Object.call(a); - a.$_01210 = null; - a.$_1398 = null; -} -function ju_TemplateCollections$NEtriesMap$1$1() { - let a = this; jl_Object.call(a); - a.$index13 = 0; - a.$this$1 = null; -} -let ju_TemplateCollections$NEtriesMap$1$1_hasNext = $this => { - return $this.$index13 >= $this.$this$1.$this$02.$data0.data.length ? 0 : 1; +oncief_Atan$ = $rt_classWithoutFields(oncief_Function), +oncief_Atan$_MODULE$ = null, +oncief_Atan$_signatures = null, +oncief_Atan$_$callClinit = () => { + oncief_Atan$_$callClinit = $rt_eraseClinit(oncief_Atan$); + oncief_Atan$__clinit_(); }, -ju_TemplateCollections$NEtriesMap$1$1_next = $this => { - let var$1, var$2, var$3; - var$1 = $this.$index13; - var$2 = $this.$this$1.$this$02.$data0.data; - if (var$1 != var$2.length) { - $this.$index13 = var$1 + 1 | 0; - return var$2[var$1]; - } - var$3 = new ju_NoSuchElementException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); +oncief_Atan$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Atan$; + oncief_Atan$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Atan$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Atan$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6053), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Atan$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$1 = $rt_classWithoutFields(oncie_ExplicitParameter), -oncie_SensitiveAutoParameter = $rt_classWithoutFields(0), -oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$2 = $rt_classWithoutFields(oncie_AutoExtractedParameter), -scm_HashMap$$anon$4 = $rt_classWithoutFields(scm_HashMap$HashMapIterator), -scm_HashMap$$anon$4_extract = ($this, $nd) => { - return $nd; +oncief_Atan$_name = $this => { + return $rt_s(6054); }, -oncifp_ResolvedCall$returnVariables$lambda$_23_0 = $rt_classWithoutFields(), -oncifp_ResolvedCall$returnVariables$lambda$_23_0_apply = (var$0, var$1) => { - return var$1.$variable8; -}; -function jusi_LimitingIntStreamImpl$next$lambda$_1_0() { - let a = this; jl_Object.call(a); - a.$_01099 = null; - a.$_1369 = null; -} -let jusi_LimitingIntStreamImpl$next$lambda$_1_0_test = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_01099; - var$3 = var$0.$_1369; - var$4 = var$2.$remaining0; - var$2.$remaining0 = var$4 - 1 | 0; - return var$4 ? jusi_AllMatchConsumer_test(var$3, var$1) : 0; -}; -function jusi_SkippingIntStreamImpl$next$lambda$_1_0() { - jl_Object.call(this); - this.$_01046 = null; -} -let jusi_SkippingIntStreamImpl$next$lambda$_1_0_test = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_01046; - var$1 = var$2.$remaining1 - 1 | 0; - var$2.$remaining1 = var$1; - return var$1 <= 0 ? 0 : 1; -}; -function oavrt_TerminalNodeImpl() { - let a = this; jl_Object.call(a); - a.$symbol0 = null; - a.$parent3 = null; -} -let oavrt_TerminalNodeImpl__init_ = ($this, $symbol) => { - $this.$symbol0 = $symbol; +oncief_Atan$_productArity = $this => { + return 0; }, -oavrt_TerminalNodeImpl__init_0 = var_0 => { - let var_1 = new oavrt_TerminalNodeImpl(); - oavrt_TerminalNodeImpl__init_(var_1, var_0); - return var_1; +oncief_Atan$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavrt_TerminalNodeImpl_getSymbol = $this => { - return $this.$symbol0; +oncief_Atan$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavrt_TerminalNodeImpl_setParent = ($this, $parent) => { - $this.$parent3 = $parent; +oncief_Atan$_hashCode = $this => { + return 2051008; }, -oavrt_TerminalNodeImpl_getText = $this => { - return $this.$symbol0.$getText(); +oncief_Atan$_toString = $this => { + return $rt_s(6055); }, -oavrt_TerminalNodeImpl_toString = $this => { - if ($this.$symbol0.$getType0() == (-1)) - return $rt_s(4015); - return $this.$symbol0.$getText(); +oncief_Atan$_signatures0 = $this => { + oncief_Atan$_$callClinit(); + return oncief_Atan$_signatures; +}; +let oncief_Atan2$ = $rt_classWithoutFields(oncief_Function), +oncief_Atan2$_MODULE$ = null, +oncief_Atan2$_signatures = null, +oncief_Atan2$_$callClinit = () => { + oncief_Atan2$_$callClinit = $rt_eraseClinit(oncief_Atan2$); + oncief_Atan2$__clinit_(); }, -oavrt_ErrorNodeImpl = $rt_classWithoutFields(oavrt_TerminalNodeImpl); -function onciu_Last() { - jl_Object.call(this); - this.$head4 = null; -} -let onciu_Last_map = ($this, $f) => { - return onciu_NonEmptyList_map$($this, $f); +oncief_Atan2$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; + var$1 = new oncief_Atan2$; + oncief_Atan2$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Atan2$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Atan2$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6056), $rt_s(6057)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_FloatType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$7 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6056), $rt_s(6058)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6057), $rt_s(6059)); + var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6060), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); + oncief_Atan2$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_Last_mapAndPrependReversedTo = ($this, $f, $acc) => { - return onciu_NonEmptyList_mapAndPrependReversedTo$($this, $f, $acc); +oncief_Atan2$_name = $this => { + return $rt_s(6061); }, -onciu_Last_reverse = $this => { - return onciu_NonEmptyList_reverse$($this); +oncief_Atan2$_productArity = $this => { + return 0; }, -onciu_Last_toIterable = $this => { - return onciu_NonEmptyList_toIterable$($this); +oncief_Atan2$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_Last_toIndexedSeq = $this => { - return onciu_NonEmptyList_toIndexedSeq$($this); +oncief_Atan2$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Last_knownSize = $this => { - return (-1); +oncief_Atan2$_hashCode = $this => { + return 63581298; }, -onciu_Last_head = $this => { - return $this.$head4; +oncief_Atan2$_toString = $this => { + return $rt_s(6062); }, -onciu_Last_tailOption = $this => { - return s_None$_MODULE$; +oncief_Atan2$_signatures0 = $this => { + oncief_Atan2$_$callClinit(); + return oncief_Atan2$_signatures; }, -onciu_Last_toString = $this => { - return jl_String_valueOf($this.$head4.$toString()); +oncief_Avg$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_Avg$_MODULE$ = null, +oncief_Avg$_signatures = null, +oncief_Avg$_$callClinit = () => { + oncief_Avg$_$callClinit = $rt_eraseClinit(oncief_Avg$); + oncief_Avg$__clinit_(); }, -onciu_Last_iterator = $this => { - let var$1; - var$1 = new onciu_Last$$anon$3; - var$1.$remaining2 = s_Some__init_($this); - return var$1; +oncief_Avg$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$4, var$8, $x$2, $x$6, var$11, $x$10, var$13, var$14, var$15, var$16, $x$3, var$18; + var$1 = new oncief_Avg$; + oncief_Avg$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Avg$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Avg$_MODULE$; + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + $x$8 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 3); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$15[2] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$16 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$8, var$16, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = $x$8; + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$4 = new oncius_ClosedDynamicUnionType; + $x$6 = s_Predef$_Set(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 3); + var$15 = var$8.data; + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$15[2] = oncius_package$_CTDuration(oncius_package$_MODULE$); + oncius_ClosedDynamicUnionType__init_($x$4, $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$16 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6063)); + var$18 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$16, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6064), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$18); + oncief_Avg$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_Last_productPrefix = $this => { - return $rt_s(5754); +oncief_Avg$_name = $this => { + return $rt_s(6065); }, -onciu_Last_productArity = $this => { - return 1; +oncief_Avg$_productArity = $this => { + return 0; }, -onciu_Last_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$head4; - default: - } +oncief_Avg$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -onciu_Last_productIterator = $this => { +oncief_Avg$_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Last_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncief_Avg$_hashCode = $this => { + return 66226; }, -onciu_Last_equals = ($this, $x$1) => { - let var$2; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_Last) ? 0 : 1)) - break b; - $x$1 = $x$1; - if (!sr_BoxesRunTime_equals($this.$head4, $x$1.$head4)) - break b; - } - var$2 = 1; - break a; - } - var$2 = 0; - } - return var$2; +oncief_Avg$_toString = $this => { + return $rt_s(6066); }, -onciu_Last__init_0 = ($this, $head) => { - $this.$head4 = $head; +oncief_Avg$_signatures0 = $this => { + oncief_Avg$_$callClinit(); + return oncief_Avg$_signatures; }, -onciu_Last__init_ = var_0 => { - let var_1 = new onciu_Last(); - onciu_Last__init_0(var_1, var_0); - return var_1; -}; -function onciu_LiteralOffset() { - let a = this; jl_Object.call(a); - a.$start6 = 0; - a.$line5 = 0; - a.$length4 = null; -} -let onciu_LiteralOffset_productPrefix = $this => { - return $rt_s(6853); +oncief_BTrim$ = $rt_classWithoutFields(oncief_Function), +oncief_BTrim$_MODULE$ = null, +oncief_BTrim$_signatures = null, +oncief_BTrim$_$callClinit = () => { + oncief_BTrim$_$callClinit = $rt_eraseClinit(oncief_BTrim$); + oncief_BTrim$__clinit_(); +}, +oncief_BTrim$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$14, $x$16, $x$10, $x$15, $x$17, $x$19, $x$21, $x$23; + var$1 = new oncief_BTrim$; + oncief_BTrim$_$callClinit(); + oncief_Function__init_(var$1); + oncief_BTrim$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); + var$4 = var$3.data; + $x$1 = oncief_BTrim$_MODULE$; + $x$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + $x$14 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(5422)); + $x$16 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$14, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(5423), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$16); + $x$14 = oncief_BTrim$_MODULE$; + $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1183), $rt_s(5424)]))); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 2); + var$11 = var$8.data; + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$11[1] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$16 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); + $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$3 = s_Predef$_Map(s_Predef$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 2); + var$11 = var$8.data; + var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6067)); + var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5424), $rt_s(6068)); + $x$6 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$23 = s_None$_MODULE$; + var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(6069), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$6); + oncief_BTrim$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_LiteralOffset_productArity = $this => { - return 3; +oncief_BTrim$_name = $this => { + return $rt_s(6070); }, -onciu_LiteralOffset_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return jl_Integer_valueOf($this.$start6); - case 1: - return jl_Integer_valueOf($this.$line5); - case 2: - return $this.$length4; - default: - } +oncief_BTrim$_productArity = $this => { + return 0; +}, +oncief_BTrim$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -onciu_LiteralOffset_productIterator = $this => { +oncief_BTrim$_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_LiteralOffset_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6853))), $this.$start6), $this.$line5), sr_Statics_anyHash($this.$length4)), 3); +oncief_BTrim$_hashCode = $this => { + return 63567748; }, -onciu_LiteralOffset_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncief_BTrim$_toString = $this => { + return $rt_s(6071); }, -onciu_LiteralOffset_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_LiteralOffset) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$start6 != $x$1.$start6) - break b; - if ($this.$line5 != $x$1.$line5) - break b; - c: { - var$2 = $this.$length4; - $x$1 = $x$1.$length4; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof onciu_LiteralOffset)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; +oncief_BTrim$_signatures0 = $this => { + oncief_BTrim$_$callClinit(); + return oncief_BTrim$_signatures; }, -onciu_LiteralOffset__init_0 = ($this, $start, $line, $length) => { - $this.$start6 = $start; - $this.$line5 = $line; - $this.$length4 = $length; +oncief_Ceil$ = $rt_classWithoutFields(oncief_Function), +oncief_Ceil$_MODULE$ = null, +oncief_Ceil$_signatures = null, +oncief_Ceil$_$callClinit = () => { + oncief_Ceil$_$callClinit = $rt_eraseClinit(oncief_Ceil$); + oncief_Ceil$__clinit_(); }, -onciu_LiteralOffset__init_ = (var_0, var_1, var_2) => { - let var_3 = new onciu_LiteralOffset(); - onciu_LiteralOffset__init_0(var_3, var_0, var_1, var_2); - return var_3; -}; -function oavra_Transition() { - jl_Object.call(this); - this.$target = null; -} -let oavra_Transition_serializationNames = null, -oavra_Transition_serializationTypes = null, -oavra_Transition_$callClinit = () => { - oavra_Transition_$callClinit = $rt_eraseClinit(oavra_Transition); - oavra_Transition__clinit_(); +oncief_Ceil$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Ceil$; + oncief_Ceil$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Ceil$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Ceil$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6072)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6073), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Ceil$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavra_Transition__init_ = ($this, $target) => { - let var$2; - oavra_Transition_$callClinit(); - if ($target !== null) { - $this.$target = $target; - return; - } - var$2 = new jl_NullPointerException; - jl_Throwable__init_0(var$2, $rt_s(6854)); - $rt_throw(var$2); +oncief_Ceil$_name = $this => { + return $rt_s(6074); }, -oavra_Transition_isEpsilon = $this => { +oncief_Ceil$_productArity = $this => { return 0; }, -oavra_Transition_label = $this => { - return null; -}, -oavra_Transition__clinit_ = () => { - let var$1; - oavra_Transition_serializationNames = ju_Collections_unmodifiableList(ju_Arrays_asList($rt_wrapArray(jl_String, [$rt_s(4469), $rt_s(6855), $rt_s(1067), $rt_s(6856), $rt_s(6857), $rt_s(6858), $rt_s(6859), $rt_s(5090), $rt_s(6860), $rt_s(6861), $rt_s(6862)]))); - var$1 = new oavra_Transition$1; - ju_HashMap__init_1(var$1); - ju_HashMap_put(var$1, $rt_cls(oavra_EpsilonTransition), jl_Integer_valueOf(1)); - ju_HashMap_put(var$1, $rt_cls(oavra_RangeTransition), jl_Integer_valueOf(2)); - ju_HashMap_put(var$1, $rt_cls(oavra_RuleTransition), jl_Integer_valueOf(3)); - ju_HashMap_put(var$1, $rt_cls(oavra_PredicateTransition), jl_Integer_valueOf(4)); - ju_HashMap_put(var$1, $rt_cls(oavra_AtomTransition), jl_Integer_valueOf(5)); - ju_HashMap_put(var$1, $rt_cls(oavra_ActionTransition), jl_Integer_valueOf(6)); - ju_HashMap_put(var$1, $rt_cls(oavra_SetTransition), jl_Integer_valueOf(7)); - ju_HashMap_put(var$1, $rt_cls(oavra_NotSetTransition), jl_Integer_valueOf(8)); - ju_HashMap_put(var$1, $rt_cls(oavra_WildcardTransition), jl_Integer_valueOf(9)); - ju_HashMap_put(var$1, $rt_cls(oavra_PrecedencePredicateTransition), jl_Integer_valueOf(10)); - oavra_Transition_serializationTypes = ju_Collections_unmodifiableMap(var$1); -}; -function oavra_RuleTransition() { - let a = this; oavra_Transition.call(a); - a.$ruleIndex5 = 0; - a.$precedence1 = 0; - a.$followState = null; -} -let oavra_RuleTransition_getSerializationType = $this => { - return 3; +oncief_Ceil$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_RuleTransition_isEpsilon = $this => { - return 1; +oncief_Ceil$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_RuleTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { - return 0; +oncief_Ceil$_hashCode = $this => { + return 2096421; }, -scm_HashMap$$anon$3 = $rt_classWithoutFields(scm_HashMap$HashMapIterator), -scm_HashMap$$anon$3_extract = ($this, $nd) => { - return $nd.$_value; -}; -function jusi_FlatMappingToIntStreamImpl$next$lambda$_1_0() { - jl_Object.call(this); - this.$_0478 = null; -} -let jusi_FlatMappingToIntStreamImpl$next$lambda$_1_0_test = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0478; - var$3 = var$1; - var$4 = var$3.data; - var$1 = new jusi_ArrayIntStreamImpl; - var$5 = var$4.length; - var$1.$array19 = var$3; - var$1.$index7 = 0; - var$1.$end4 = var$5; - var$1.$size15 = var$5 - 0 | 0; - var$2.$current3 = var$1; - var$2.$currentSet = 1; - return 0; -}; -function oncia_Remove$mapExpressions$lambda$_63_0() { - jl_Object.call(this); - this.$_01134 = null; -} -let oncia_Remove$mapExpressions$lambda$_63_0_apply = (var$0, var$1) => { - return var$1.$mapExpressions(var$0.$_01134); -}; -function oncia_SetClause$mapExpressions$lambda$_63_0() { - jl_Object.call(this); - this.$_0507 = null; -} -let oncia_SetClause$mapExpressions$lambda$_63_0_apply = (var$0, var$1) => { - return var$1.$mapExpressions(var$0.$_0507); -}; -function oncia_Merge$mapExpressions$lambda$_68_0() { - jl_Object.call(this); - this.$_01095 = null; -} -let oncia_Merge$mapExpressions$lambda$_68_0_apply = (var$0, var$1) => { - return var$1.$mapExpressions(var$0.$_01095); -}; -function oncia_Merge$mapExpressions$lambda$_68_1() { - jl_Object.call(this); - this.$_0529 = null; -} -let oncia_Merge$mapExpressions$lambda$_68_1_apply = (var$0, var$1) => { - return oncia_Where_mapExpressions(var$1, var$0.$_0529); -}; -function oncia_Foreach$mapExpressions$lambda$_64_0() { - jl_Object.call(this); - this.$_0727 = null; -} -let oncia_Foreach$mapExpressions$lambda$_64_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0727; - if ($rt_isInstance(var$1, oncia_UpdateClause)) - return var$1.$mapExpressions(var$2); - var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(6863)); - $rt_throw(var$2); +oncief_Ceil$_toString = $this => { + return $rt_s(6075); }, -oavra_ATNType = $rt_classWithoutFields(jl_Enum), -oavra_ATNType_LEXER = null, -oavra_ATNType_PARSER = null, -oavra_ATNType_$VALUES = null, -oavra_ATNType_$callClinit = () => { - oavra_ATNType_$callClinit = $rt_eraseClinit(oavra_ATNType); - oavra_ATNType__clinit_(); +oncief_Ceil$_signatures0 = $this => { + oncief_Ceil$_$callClinit(); + return oncief_Ceil$_signatures; }, -oavra_ATNType_values = () => { - oavra_ATNType_$callClinit(); - return oavra_ATNType_$VALUES.$clone0(); +oncief_CharLength$ = $rt_classWithoutFields(oncief_Function), +oncief_CharLength$_MODULE$ = null; +let oncief_CharLength$_signatures = null, +oncief_CharLength$_$callClinit = () => { + oncief_CharLength$_$callClinit = $rt_eraseClinit(oncief_CharLength$); + oncief_CharLength$__clinit_(); }, -oavra_ATNType__init_0 = ($this, var$1, var$2) => { - oavra_ATNType_$callClinit(); - jl_Enum__init_($this, var$1, var$2); +oncief_CharLength$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_CharLength$; + oncief_CharLength$_$callClinit(); + oncief_Function__init_(var$1); + oncief_CharLength$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_CharLength$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6076)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6077), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_CharLength$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavra_ATNType__init_ = (var_0, var_1) => { - let var_2 = new oavra_ATNType(); - oavra_ATNType__init_0(var_2, var_0, var_1); - return var_2; +oncief_CharLength$_name = $this => { + return $rt_s(6078); }, -oavra_ATNType__clinit_ = () => { - let var$1, var$2, var$3; - oavra_ATNType_LEXER = oavra_ATNType__init_($rt_s(6864), 0); - var$1 = oavra_ATNType__init_($rt_s(6865), 1); - oavra_ATNType_PARSER = var$1; - var$2 = $rt_createArray(oavra_ATNType, 2); - var$3 = var$2.data; - var$3[0] = oavra_ATNType_LEXER; - var$3[1] = var$1; - oavra_ATNType_$VALUES = var$2; +oncief_CharLength$_productArity = $this => { + return 0; }, -ji_ObjectStreamException = $rt_classWithoutFields(ji_IOException); -function ji_InvalidClassException() { - ji_ObjectStreamException.call(this); - this.$classname = null; -} -let ji_InvalidClassException__init_0 = ($this, $classname, $message) => { - jl_Throwable__init_0($this, $message); - $this.$classname = $classname; +oncief_CharLength$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -ji_InvalidClassException__init_ = (var_0, var_1) => { - let var_2 = new ji_InvalidClassException(); - ji_InvalidClassException__init_0(var_2, var_0, var_1); - return var_2; -}; -function oavra_BlockStartState() { - oavra_DecisionState.call(this); - this.$endState = null; -} -function oavra_LoopEndState() { - oavra_ATNState.call(this); - this.$loopBackState1 = null; -} -let oavra_LoopEndState_getStateType = $this => { - return 12; -}; -function oavra_BlockEndState() { - oavra_ATNState.call(this); - this.$startState = null; -} -let oavra_BlockEndState__init_ = $this => { - oavra_ATNState__init_($this); +oncief_CharLength$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_BlockEndState__init_0 = () => { - let var_0 = new oavra_BlockEndState(); - oavra_BlockEndState__init_(var_0); - return var_0; +oncief_CharLength$_hashCode = $this => { + return (-1655620100); }, -oavra_BlockEndState_getStateType = $this => { - return 8; -}; -function oavra_RuleStartState() { - let a = this; oavra_ATNState.call(a); - a.$stopState = null; - a.$isLeftRecursiveRule = 0; -} -let oavra_RuleStartState_getStateType = $this => { - return 2; +oncief_CharLength$_toString = $this => { + return $rt_s(6079); }, -oavra_RuleStopState = $rt_classWithoutFields(oavra_ATNState), -oavra_RuleStopState_getStateType = $this => { - return 7; +oncief_CharLength$_signatures0 = $this => { + oncief_CharLength$_$callClinit(); + return oncief_CharLength$_signatures; }, -oavra_TokensStartState = $rt_classWithoutFields(oavra_DecisionState), -oavra_TokensStartState_getStateType = $this => { - return 6; -}; -function oavra_EpsilonTransition() { - oavra_Transition.call(this); - this.$outermostPrecedenceReturn = 0; -} -let oavra_EpsilonTransition__init_2 = ($this, $target) => { - oavra_EpsilonTransition__init_0($this, $target, (-1)); +oncief_CharacterLength$ = $rt_classWithoutFields(oncief_Function), +oncief_CharacterLength$_MODULE$ = null, +oncief_CharacterLength$_signatures = null, +oncief_CharacterLength$_$callClinit = () => { + oncief_CharacterLength$_$callClinit = $rt_eraseClinit(oncief_CharacterLength$); + oncief_CharacterLength$__clinit_(); }, -oavra_EpsilonTransition__init_ = var_0 => { - let var_1 = new oavra_EpsilonTransition(); - oavra_EpsilonTransition__init_2(var_1, var_0); - return var_1; +oncief_CharacterLength$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_CharacterLength$; + oncief_CharacterLength$_$callClinit(); + oncief_Function__init_(var$1); + oncief_CharacterLength$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_CharacterLength$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6076)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6077), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_CharacterLength$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavra_EpsilonTransition__init_0 = ($this, $target, $outermostPrecedenceReturn) => { - oavra_Transition__init_($this, $target); - $this.$outermostPrecedenceReturn = $outermostPrecedenceReturn; +oncief_CharacterLength$_name = $this => { + return $rt_s(6080); }, -oavra_EpsilonTransition__init_1 = (var_0, var_1) => { - let var_2 = new oavra_EpsilonTransition(); - oavra_EpsilonTransition__init_0(var_2, var_0, var_1); - return var_2; +oncief_CharacterLength$_productArity = $this => { + return 0; }, -oavra_EpsilonTransition_getSerializationType = $this => { - return 1; +oncief_CharacterLength$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_EpsilonTransition_isEpsilon = $this => { - return 1; +oncief_CharacterLength$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_EpsilonTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { - return 0; +oncief_CharacterLength$_hashCode = $this => { + return 925423439; }, -oavra_EpsilonTransition_toString = $this => { - return $rt_s(6866); +oncief_CharacterLength$_toString = $this => { + return $rt_s(6081); }, -oavra_PlusLoopbackState = $rt_classWithoutFields(oavra_DecisionState), -oavra_PlusLoopbackState_getStateType = $this => { - return 11; +oncief_CharacterLength$_signatures0 = $this => { + oncief_CharacterLength$_$callClinit(); + return oncief_CharacterLength$_signatures; }, -oavra_StarLoopbackState = $rt_classWithoutFields(oavra_ATNState), -oavra_StarLoopbackState_getStateType = $this => { - return 9; -}; -function oavra_PlusBlockStartState() { - oavra_BlockStartState.call(this); - this.$loopBackState0 = null; -} -let oavra_PlusBlockStartState_getStateType = $this => { - return 4; +oncief_Coalesce$ = $rt_classWithoutFields(oncief_Function), +oncief_Coalesce$_MODULE$ = null, +oncief_Coalesce$_signatures0 = null, +oncief_Coalesce$_$callClinit = () => { + oncief_Coalesce$_$callClinit = $rt_eraseClinit(oncief_Coalesce$); + oncief_Coalesce$__clinit_(); }, -oavra_LexerAction = $rt_classWithoutFields(0), -oavra_LexerActionType = $rt_classWithoutFields(jl_Enum), -oavra_LexerActionType_CHANNEL = null, -oavra_LexerActionType_CUSTOM = null, -oavra_LexerActionType_MODE = null, -oavra_LexerActionType_MORE = null, -oavra_LexerActionType_POP_MODE = null, -oavra_LexerActionType_PUSH_MODE = null, -oavra_LexerActionType_SKIP = null, -oavra_LexerActionType_TYPE = null, -oavra_LexerActionType_$VALUES = null, -oavra_LexerActionType_$callClinit = () => { - oavra_LexerActionType_$callClinit = $rt_eraseClinit(oavra_LexerActionType); - oavra_LexerActionType__clinit_(); +oncief_Coalesce$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Coalesce$; + oncief_Coalesce$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Coalesce$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Coalesce$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6082)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6083), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Coalesce$_signatures0 = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavra_LexerActionType_values = () => { - oavra_LexerActionType_$callClinit(); - return oavra_LexerActionType_$VALUES.$clone0(); +oncief_Coalesce$_name = $this => { + return $rt_s(6084); }, -oavra_LexerActionType__init_0 = ($this, var$1, var$2) => { - oavra_LexerActionType_$callClinit(); - jl_Enum__init_($this, var$1, var$2); +oncief_Coalesce$_signatures = $this => { + oncief_Coalesce$_$callClinit(); + return oncief_Coalesce$_signatures0; }, -oavra_LexerActionType__init_ = (var_0, var_1) => { - let var_2 = new oavra_LexerActionType(); - oavra_LexerActionType__init_0(var_2, var_0, var_1); - return var_2; +oncief_Coalesce$_productArity = $this => { + return 0; }, -oavra_LexerActionType__clinit_ = () => { - let var$1, var$2, var$3; - oavra_LexerActionType_CHANNEL = oavra_LexerActionType__init_($rt_s(6867), 0); - oavra_LexerActionType_CUSTOM = oavra_LexerActionType__init_($rt_s(6868), 1); - oavra_LexerActionType_MODE = oavra_LexerActionType__init_($rt_s(6869), 2); - oavra_LexerActionType_MORE = oavra_LexerActionType__init_($rt_s(6870), 3); - oavra_LexerActionType_POP_MODE = oavra_LexerActionType__init_($rt_s(6871), 4); - oavra_LexerActionType_PUSH_MODE = oavra_LexerActionType__init_($rt_s(6872), 5); - oavra_LexerActionType_SKIP = oavra_LexerActionType__init_($rt_s(6025), 6); - var$1 = oavra_LexerActionType__init_($rt_s(6326), 7); - oavra_LexerActionType_TYPE = var$1; - var$2 = $rt_createArray(oavra_LexerActionType, 8); - var$3 = var$2.data; - var$3[0] = oavra_LexerActionType_CHANNEL; - var$3[1] = oavra_LexerActionType_CUSTOM; - var$3[2] = oavra_LexerActionType_MODE; - var$3[3] = oavra_LexerActionType_MORE; - var$3[4] = oavra_LexerActionType_POP_MODE; - var$3[5] = oavra_LexerActionType_PUSH_MODE; - var$3[6] = oavra_LexerActionType_SKIP; - var$3[7] = var$1; - oavra_LexerActionType_$VALUES = var$2; +oncief_Coalesce$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_BasicBlockStartState = $rt_classWithoutFields(oavra_BlockStartState), -oavra_BasicBlockStartState__init_ = $this => { - oavra_DecisionState__init_($this); +oncief_Coalesce$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_BasicBlockStartState__init_0 = () => { - let var_0 = new oavra_BasicBlockStartState(); - oavra_BasicBlockStartState__init_(var_0); - return var_0; +oncief_Coalesce$_hashCode = $this => { + return (-882240569); }, -oavra_BasicBlockStartState_getStateType = $this => { - return 3; +oncief_Coalesce$_toString = $this => { + return $rt_s(6085); }, -oavra_BasicState = $rt_classWithoutFields(oavra_ATNState), -oavra_BasicState__init_0 = $this => { - oavra_ATNState__init_($this); +oncief_Coalesce$_signatures1 = $this => { + return oncief_Coalesce$_signatures($this); }, -oavra_BasicState__init_ = () => { - let var_0 = new oavra_BasicState(); - oavra_BasicState__init_0(var_0); - return var_0; +oncief_Collect$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_Collect$_MODULE$ = null, +oncief_Collect$_signatures = null, +oncief_Collect$_$callClinit = () => { + oncief_Collect$_$callClinit = $rt_eraseClinit(oncief_Collect$); + oncief_Collect$__clinit_(); }, -oavra_BasicState_getStateType = $this => { - return 1; -}; -function oavra_AtomTransition() { - oavra_Transition.call(this); - this.$label2 = 0; -} -let oavra_AtomTransition__init_0 = ($this, $target, $label) => { - oavra_Transition__init_($this, $target); - $this.$label2 = $label; +oncief_Collect$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14; + var$1 = new oncief_Collect$; + oncief_Collect$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Collect$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Collect$_MODULE$; + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTAny($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$14 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(s_Tuple2, 1); + var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6086)); + var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$11)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6087), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Collect$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavra_AtomTransition__init_ = (var_0, var_1) => { - let var_2 = new oavra_AtomTransition(); - oavra_AtomTransition__init_0(var_2, var_0, var_1); - return var_2; +oncief_Collect$_name = $this => { + return $rt_s(6088); }, -oavra_AtomTransition_getSerializationType = $this => { - return 5; +oncief_Collect$_productArity = $this => { + return 0; }, -oavra_AtomTransition_label = $this => { - return oavrm_IntervalSet_of0($this.$label2); +oncief_Collect$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_AtomTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { - return $this.$label2 != $symbol ? 0 : 1; +oncief_Collect$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_AtomTransition_toString = $this => { - return jl_String_valueOf0($this.$label2); -}; -function scm_HashMap$addAll$lambda$_42_0() { - jl_Object.call(this); - this.$_0110 = null; -} -let scm_HashMap$addAll$lambda$_42_0_apply = (var$0, var$1, var$2, var$3) => { - scm_HashMap_$anonfun$addAll$1(var$0.$_0110, var$1, var$2, sr_BoxesRunTime_unboxToInt(var$3)); - return sr_BoxedUnit_UNIT; -}; -function scm_HashMap$addAll$lambda$_42_1() { - jl_Object.call(this); - this.$_0787 = null; -} -let scm_HashMap$addAll$lambda$_42_1_apply = (var$0, var$1, var$2) => { - let var$3, var$4; - var$3 = var$0.$_0787; - var$4 = sr_Statics_anyHash(var$1); - return scm_HashMap_put00(var$3, var$1, var$2, var$4 ^ (var$4 >>> 16 | 0), 0); -}; -function ju_AbstractList$SubAbstractList() { - let a = this; ju_AbstractList.call(a); - a.$fullList = null; - a.$offset4 = 0; - a.$size9 = 0; -} -let ju_AbstractList$SubAbstractList__init_ = ($this, $list, $start, $end) => { - $this.$fullList = $list; - $this.$modCount = $list.$modCount; - $this.$offset4 = $start; - $this.$size9 = $end - $start | 0; +oncief_Collect$_hashCode = $this => { + return (-1680869110); }, -ju_AbstractList$SubAbstractList__init_0 = (var_0, var_1, var_2) => { - let var_3 = new ju_AbstractList$SubAbstractList(); - ju_AbstractList$SubAbstractList__init_(var_3, var_0, var_1, var_2); - return var_3; +oncief_Collect$_toString = $this => { + return $rt_s(6089); }, -ju_AbstractList$SubAbstractList_get = ($this, $location) => { - let var$2, var$3; - var$2 = $this.$modCount; - var$3 = $this.$fullList; - if (var$2 != var$3.$modCount) { - var$3 = new ju_ConcurrentModificationException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); - } - if (0 <= $location && $location < $this.$size9) - return var$3.$get0($location + $this.$offset4 | 0); - var$3 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); +oncief_Collect$_signatures0 = $this => { + oncief_Collect$_$callClinit(); + return oncief_Collect$_signatures; }, -ju_AbstractList$SubAbstractList_iterator = $this => { - return ju_AbstractList$SubAbstractList_listIterator($this, 0); +oncief_Cos$ = $rt_classWithoutFields(oncief_Function), +oncief_Cos$_MODULE$ = null, +oncief_Cos$_signatures = null; +let oncief_Cos$_$callClinit = () => { + oncief_Cos$_$callClinit = $rt_eraseClinit(oncief_Cos$); + oncief_Cos$__clinit_(); }, -ju_AbstractList$SubAbstractList_listIterator = ($this, $location) => { - let var$2, var$3, var$4; - var$2 = $this.$modCount; - var$3 = $this.$fullList; - if (var$2 != var$3.$modCount) { - var$3 = new ju_ConcurrentModificationException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); - } - if (0 <= $location && $location <= $this.$size9) { - var$4 = new ju_AbstractList$SubAbstractList$SubAbstractListIterator; - var$3 = var$3.$listIterator($location + $this.$offset4 | 0); - $location = $this.$offset4; - var$2 = $this.$size9; - var$4.$iterator4 = var$3; - var$4.$subList0 = $this; - var$4.$start12 = $location; - var$4.$end2 = $location + var$2 | 0; - return var$4; - } - var$3 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); +oncief_Cos$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Cos$; + oncief_Cos$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Cos$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Cos$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6090), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Cos$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -ju_AbstractList$SubAbstractList_size = $this => { - let var$1; - if ($this.$modCount == $this.$fullList.$modCount) - return $this.$size9; - var$1 = new ju_ConcurrentModificationException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); +oncief_Cos$_name = $this => { + return $rt_s(6091); }, -ju_AbstractList$SubAbstractListRandomAccess = $rt_classWithoutFields(ju_AbstractList$SubAbstractList), -oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0 = $rt_classWithoutFields(), -oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0__init_0 = var$0 => { - return; +oncief_Cos$_productArity = $this => { + return 0; }, -oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0__init_ = () => { - let var_0 = new oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0(); - oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0__init_0(var_0); - return var_0; +oncief_Cos$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 95 ? 0 : 1); +oncief_Cos$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isPassThrough()); -}; -function sci_ArraySeq$$newBuilder$lambda$_21_0() { - jl_Object.call(this); - this.$_0450 = null; -} -let sci_ArraySeq$$newBuilder$lambda$_21_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0450; - return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, sc_IterableOnceOps_toArray$(var$1, var$2)); -}; -function onciu_Fby() { - let a = this; jl_Object.call(a); - a.$head3 = null; - a.$nonEmptyTail = null; -} -let onciu_Fby_map = ($this, $f) => { - return onciu_NonEmptyList_map$($this, $f); +oncief_Cos$_hashCode = $this => { + return 67943; }, -onciu_Fby_mapAndPrependReversedTo = ($this, $f, $acc) => { - return onciu_NonEmptyList_mapAndPrependReversedTo$($this, $f, $acc); +oncief_Cos$_toString = $this => { + return $rt_s(6092); }, -onciu_Fby_reverse = $this => { - return onciu_NonEmptyList_reverse$($this); +oncief_Cos$_signatures0 = $this => { + oncief_Cos$_$callClinit(); + return oncief_Cos$_signatures; }, -onciu_Fby_toIterable = $this => { - return onciu_NonEmptyList_toIterable$($this); +oncief_Cot$ = $rt_classWithoutFields(oncief_Function), +oncief_Cot$_MODULE$ = null, +oncief_Cot$_signatures = null, +oncief_Cot$_$callClinit = () => { + oncief_Cot$_$callClinit = $rt_eraseClinit(oncief_Cot$); + oncief_Cot$__clinit_(); }, -onciu_Fby_toIndexedSeq = $this => { - return onciu_NonEmptyList_toIndexedSeq$($this); +oncief_Cot$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Cot$; + oncief_Cot$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Cot$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Cot$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6093), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Cot$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_Fby_knownSize = $this => { - return (-1); +oncief_Cot$_name = $this => { + return $rt_s(6094); }, -onciu_Fby_head = $this => { - return $this.$head3; +oncief_Cot$_productArity = $this => { + return 0; }, -onciu_Fby_tailOption = $this => { - return s_Some__init_($this.$nonEmptyTail); +oncief_Cot$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_Fby_toString = $this => { - let var$1, var$2, var$3; - var$1 = $this.$head3.$toString(); - var$2 = $this.$nonEmptyTail.$toString(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(45)), var$2); - return jl_AbstractStringBuilder_toString(var$3); +oncief_Cot$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Fby_iterator = $this => { - let var$1; - var$1 = new onciu_Fby$$anon$2; - var$1.$remaining3 = s_Some__init_($this); - return var$1; +oncief_Cot$_hashCode = $this => { + return 67944; }, -onciu_Fby_productPrefix = $this => { - return $rt_s(6873); +oncief_Cot$_toString = $this => { + return $rt_s(6095); }, -onciu_Fby_productArity = $this => { - return 2; +oncief_Cot$_signatures0 = $this => { + oncief_Cot$_$callClinit(); + return oncief_Cot$_signatures; }, -onciu_Fby_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$head3; - case 1: - return $this.$nonEmptyTail; - default: - } - return sr_Statics_ioobe($x$1); +oncief_Count$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_Count$_MODULE$ = null, +oncief_Count$_signatures = null, +oncief_Count$_$callClinit = () => { + oncief_Count$_$callClinit = $rt_eraseClinit(oncief_Count$); + oncief_Count$__clinit_(); }, -onciu_Fby_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncief_Count$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Count$; + oncief_Count$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Count$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Count$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6096)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6097), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Count$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_Fby_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncief_Count$_name = $this => { + return $rt_s(3626); }, -onciu_Fby_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof onciu_Fby) ? 0 : 1)) - break b; - $x$1 = $x$1; - if (!sr_BoxesRunTime_equals($this.$head3, $x$1.$head3)) - break b; - var$2 = $this.$nonEmptyTail; - $x$1 = $x$1.$nonEmptyTail; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; +oncief_Count$_productArity = $this => { + return 0; }, -onciu_Fby__init_0 = ($this, $head, $nonEmptyTail) => { - $this.$head3 = $head; - $this.$nonEmptyTail = $nonEmptyTail; +oncief_Count$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_Fby__init_ = (var_0, var_1) => { - let var_2 = new onciu_Fby(); - onciu_Fby__init_0(var_2, var_0, var_1); - return var_2; +oncief_Count$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -scm_ArraySeq$$newBuilder$lambda$_21_0 = $rt_classWithoutFields(), -scm_ArraySeq$$newBuilder$lambda$_21_0_apply = (var$0, var$1) => { - return scm_ArraySeq$_make(scm_ArraySeq$_MODULE$, var$1); +oncief_Count$_hashCode = $this => { + return 65298671; }, -ju_PrimitiveIterator = $rt_classWithoutFields(0), -ju_PrimitiveIterator$OfInt = $rt_classWithoutFields(0); -function oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0() { - jl_Object.call(this); - this.$_0454 = null; -} -let oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0_apply = (var$0, var$1) => { - return var$1.$mapExpressions(var$0.$_0454); -}; -function scm_TreeSet$$anon$1() { - let a = this; jl_Object.call(a); - a.$tree = null; - a.$ordering$1 = null; -} -let scm_TreeSet$$anon$1_addAll = ($this, $xs) => { - return scm_Growable_addAll$($this, $xs); +oncief_Count$_toString = $this => { + return $rt_s(6098); }, -scm_TreeSet$$anon$1_result = $this => { - return scm_TreeSet__init_($this.$tree, $this.$ordering$1); +oncief_Count$_signatures0 = $this => { + oncief_Count$_$callClinit(); + return oncief_Count$_signatures; }, -scm_TreeSet$$anon$1_addOne = ($this, $elem) => { - scm_RedBlackTree$_insert(scm_RedBlackTree$_MODULE$, $this.$tree, $elem, null, $this.$ordering$1); - return $this; -}; -function oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_155_0() { - let a = this; jl_Object.call(a); - a.$_01181 = null; - a.$_1150 = null; - a.$_254 = null; - a.$_316 = 0; - a.$_44 = 0; -} -let oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_155_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_1150; - var$2 = var$0.$_254; - var$3 = var$0.$_316; - var$4 = var$0.$_44; - if (!$rt_isInstance(var$1, oncia_HorizonClause)) { - var$2 = var$1.$semanticCheck(); - var$5 = new oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_154_0; - var$5.$_0140 = var$1; - var$5.$_153 = var$3; - var$5.$_226 = var$4; - var$1 = oncias_SemanticCheck_map$(var$2, var$5); - } else { - var$1 = var$1; - var$5 = var$1.$semanticCheck(); - var$6 = new oncia_SingleQuery$checkHorizon$lambda$_82_0; - var$6.$_025 = var$1; - var$6.$_114 = var$2; - var$1 = oncias_SemanticCheck_flatMap$(var$5, var$6); - } - return var$1; -}; -function oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0() { - jl_Object.call(this); - this.$_0895 = null; -} -let oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0895; - oncifp_ResolvedCall$_$callClinit(); - return oncie_ImplicitProcedureArgument__init_(var$2.$name9, var$2.$typ, var$1); -}; -function oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1() { - let a = this; jl_Object.call(a); - a.$_0387 = null; - a.$_1142 = null; -} -let oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0387; - var$2 = var$0.$_1142; - oncifp_ResolvedCall$_$callClinit(); - return oncie_ExplicitParameter__init_(var$1.$name9, var$1.$typ, onciu_UnknownSize$_MODULE$, var$2); -}; -function oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0() { - jl_Object.call(this); - this.$_0384 = null; -} -let oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0384; - var$3 = var$1.$typ; - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - if (var$3 !== null) { - if (!var$3.$equals(var$4)) - break b; - else - break c; - } - if (var$4 !== null) - break b; - } - break a; - } - var$2 = oncie_CoerceTo__init_(var$2, var$1.$typ); - } - return var$2; -}; -function oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1() { - jl_Object.call(this); - this.$_01000 = null; -} -let oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1_apply = var$0 => { - return var$0.$_01000; +oncief_Degrees$ = $rt_classWithoutFields(oncief_Function), +oncief_Degrees$_MODULE$ = null, +oncief_Degrees$_signatures = null, +oncief_Degrees$_$callClinit = () => { + oncief_Degrees$_$callClinit = $rt_eraseClinit(oncief_Degrees$); + oncief_Degrees$__clinit_(); }, -oncias_SemanticExpressionCheck$ = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$_MODULE$ = null, -oncias_SemanticExpressionCheck$_crashOnUnknownExpression = null, -oncias_SemanticExpressionCheck$_semanticCheckFallback = null, -oncias_SemanticExpressionCheck$_stringifier = null, -oncias_SemanticExpressionCheck$_$callClinit = () => { - oncias_SemanticExpressionCheck$_$callClinit = $rt_eraseClinit(oncias_SemanticExpressionCheck$); - oncias_SemanticExpressionCheck$__clinit_(); +oncief_Degrees$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Degrees$; + oncief_Degrees$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Degrees$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Degrees$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6099), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Degrees$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncias_SemanticExpressionCheck$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticExpressionCheck$; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_SemanticExpressionCheck$_MODULE$ = var$1; - var$1 = new oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0; - oncias_SemanticExpressionCheck$_crashOnUnknownExpression = var$1; - oncias_SemanticExpressionCheck$_semanticCheckFallback = var$1; - oncias_SemanticExpressionCheck$_stringifier = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_ExpressionStringifier$_failingExtender, 0, 0, 0, 0); +oncief_Degrees$_name = $this => { + return $rt_s(6100); }, -oncias_SemanticExpressionCheck$_specifyType0 = ($this, $typeGen, $expression) => { - return oncias_SemanticAnalysisTooling_specifyType$0($this, $typeGen, $expression); +oncief_Degrees$_productArity = $this => { + return 0; }, -oncias_SemanticExpressionCheck$_specifyType = ($this, $possibleTypes, $expression) => { - return oncias_SemanticAnalysisTooling_specifyType$($this, $possibleTypes, $expression); +oncief_Degrees$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$_expectType3 = ($this, $typeGen, $expression) => { - let var$3, var$4; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = new oncias_SemanticAnalysisTooling$expectType$lambda$_13_0; - var$4.$_0937 = $this; - var$4.$_1329 = $typeGen; - var$4.$_2113 = $expression; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); +oncief_Degrees$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$_expectType1 = ($this, $possibleTypes, $opt) => { - return oncias_SemanticAnalysisTooling_expectType$2($this, $possibleTypes, $opt); +oncief_Degrees$_hashCode = $this => { + return (-1084095737); }, -oncias_SemanticExpressionCheck$_expectType4 = ($this, $typeGen, $expression, $messageGen) => { - let var$4, var$5; - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = new oncias_SemanticAnalysisTooling$expectType$lambda$_17_0; - var$5.$_0193 = $this; - var$5.$_175 = $typeGen; - var$5.$_232 = $expression; - var$5.$_312 = $messageGen; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); +oncief_Degrees$_toString = $this => { + return $rt_s(6101); }, -oncias_SemanticExpressionCheck$_expectType5 = ($this, $possibleTypes, $expressions) => { - return oncias_SemanticAnalysisTooling_expectType$1($this, $possibleTypes, $expressions); +oncief_Degrees$_signatures0 = $this => { + oncief_Degrees$_$callClinit(); + return oncief_Degrees$_signatures; }, -oncias_SemanticExpressionCheck$_expectType = ($this, $possibleTypes, $expression) => { - return oncias_SemanticAnalysisTooling_expectType$($this, $possibleTypes, $expression); +oncief_Distance$ = $rt_classWithoutFields(oncief_Function), +oncief_Distance$_MODULE$ = null, +oncief_Distance$_name = null, +oncief_Distance$_signatures0 = null, +oncief_Distance$_$callClinit = () => { + oncief_Distance$_$callClinit = $rt_eraseClinit(oncief_Distance$); + oncief_Distance$__clinit_(); +}; +let oncief_Distance$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$4, $x$8, var$9, var$10, $x$3, $x$6, var$13, var$14, $x$10; + var$1 = new oncief_Distance$; + oncief_Distance$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Distance$_MODULE$ = var$1; + oncief_Distance$_name = $rt_s(6102); + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Distance$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6103), $rt_s(696)]))); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_PointType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTPoint(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTPoint(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SPATIAL(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6103), $rt_s(6104)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(696), $rt_s(6105)); + var$14 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$13, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6106), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Distance$_signatures0 = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncias_SemanticExpressionCheck$_expectType0 = ($this, $possibleTypes, $expression, $messageGen) => { - let var$4, var$5; - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = new oncias_SemanticAnalysisTooling$expectType$lambda$_25_0; - var$5.$_0601 = $this; - var$5.$_1205 = $possibleTypes; - var$5.$_268 = $expression; - var$5.$_320 = $messageGen; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); +oncief_Distance$_name0 = $this => { + oncief_Distance$_$callClinit(); + return oncief_Distance$_name; }, -oncias_SemanticExpressionCheck$_expectType2 = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); +oncief_Distance$_signatures = $this => { + oncief_Distance$_$callClinit(); + return oncief_Distance$_signatures0; }, -oncias_SemanticExpressionCheck$_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); +oncief_Distance$_productArity = $this => { + return 0; }, -oncias_SemanticExpressionCheck$_checkTypes = ($this, $expression, $signatures) => { - return oncias_SemanticAnalysisTooling_checkTypes$($this, $expression, $signatures); +oncief_Distance$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$_unionOfTypes = ($this, $iterable) => { - return oncias_SemanticAnalysisTooling_unionOfTypes$($this, $iterable); +oncief_Distance$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$_withScopedState = ($this, $check) => { - return oncias_SemanticAnalysisTooling_withScopedState$($this, $check); +oncief_Distance$_hashCode = $this => { + return 353103893; }, -oncias_SemanticExpressionCheck$_typeSwitch = ($this, $expr, $choice) => { - let var$3, var$4; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncias_SemanticAnalysisTooling$typeSwitch$lambda$_49_0; - var$4.$_0341 = $choice; - var$4.$_1123 = $expr; - return oncias_SemanticCheck$_fromState(var$3, var$4); +oncief_Distance$_toString = $this => { + return $rt_s(6107); }, -oncias_SemanticExpressionCheck$_validNumber = ($this, $long) => { - let var$2, $$je; - a: { - try { - var$2 = $long.$value1() instanceof jl_Long; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_NumberFormatException) { - } else { - throw $$e; - } - } - var$2 = 0; - } - return var$2; +oncief_Distance$_signatures1 = $this => { + return oncief_Distance$_signatures($this); }, -oncias_SemanticExpressionCheck$_validNumber0 = ($this, $double) => { - let var$2, $$je; - a: { - try { - var$2 = oncie_DecimalDoubleLiteral_value($double) instanceof jl_Double; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_NumberFormatException) { - } else { - throw $$e; - } - } - var$2 = 0; - } - return var$2; +oncief_E$ = $rt_classWithoutFields(oncief_Function), +oncief_E$_MODULE$ = null, +oncief_E$_signatures = null, +oncief_E$_$callClinit = () => { + oncief_E$_$callClinit = $rt_eraseClinit(oncief_E$); + oncief_E$__clinit_(); }, -oncias_SemanticExpressionCheck$_ensureDefined = ($this, $v) => { - return oncias_SemanticAnalysisTooling_ensureDefined$($this, $v); +oncief_E$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncief_E$; + oncief_E$_$callClinit(); + oncief_Function__init_(var$1); + oncief_E$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + var$5 = oncie_FunctionTypeSignature$_MODULE$; + var$6 = oncief_E$_MODULE$; + oncius_package$_$callClinit(); + var$7 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(6108), oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$)); + oncief_E$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncias_SemanticExpressionCheck$_types = ($this, $expression) => { - return oncias_SemanticAnalysisTooling_types$($this, $expression); +oncief_E$_name = $this => { + return $rt_s(6109); }, -oncias_SemanticExpressionCheck$_semanticCheckFallback0 = $this => { - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticExpressionCheck$_semanticCheckFallback; +oncief_E$_productArity = $this => { + return 0; }, -oncias_SemanticExpressionCheck$_simple = ($this, $expression) => { - oncie_Expression$SemanticContext$Simple$_$callClinit(); - return oncias_SemanticExpressionCheck$_check0($this, oncie_Expression$SemanticContext$Simple$_MODULE$, $expression); +oncief_E$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$_check0 = ($this, $ctx, $expression) => { - let var$3, var$4; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncias_SemanticExpressionCheck$$check$lambda$_48_0; - var$4.$_0227 = $expression; - var$4.$_187 = $ctx; - return oncias_SemanticCheck$_nestedCheck(var$3, var$4); +oncief_E$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$_stringifier0 = $this => { - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticExpressionCheck$_stringifier; +oncief_E$_hashCode = $this => { + return 69; }, -oncias_SemanticExpressionCheck$_checkLabelExpressionForLegacyRelationshipTypeDisjunction = ($this, $entity, $labelExpression) => { - let var$3, var$4, var$5, var$6; - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = $labelExpression.$folder(); - sr_ClassTag$_$callClinit(); - var$5 = onciu_Foldable$Folder_treeFindByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction))); - var$6 = new oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_50_0; - var$6.$_0795 = $entity; - var$6.$_1267 = $labelExpression; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$5, var$6); +oncief_E$_toString = $this => { + return $rt_s(4524); }, -oncias_SemanticExpressionCheck$_checkLabelExpression = ($this, $entityType, $labelExpression) => { - let $colonConjunctions$lzy, $colonDisjunctions$lzy, $legacySymbols$lzy, var$6, var$7, var$8; - $colonConjunctions$lzy = new sr_LazyRef; - $colonDisjunctions$lzy = new sr_LazyRef; - $legacySymbols$lzy = new sr_LazyRef; - oncias_SemanticCheck$_$callClinit(); - var$6 = oncias_SemanticCheck$_MODULE$; - var$7 = s_Option_contains($entityType, oncie_NODE_TYPE$_MODULE$) && sc_IterableOnceOps_nonEmpty$(oncias_SemanticExpressionCheck$_colonDisjunctions$1($colonDisjunctions$lzy, $labelExpression)) ? 1 : 0; - var$8 = new oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_0; - var$8.$_0499 = $colonDisjunctions$lzy; - var$8.$_1175 = $labelExpression; - var$8 = oncias_SemanticCheck$_when(var$6, var$7, var$8); - var$6 = oncias_SemanticCheck$_MODULE$; - var$7 = s_Option_contains($entityType, oncie_RELATIONSHIP_TYPE$_MODULE$) && sc_IterableOnceOps_nonEmpty$(oncias_SemanticExpressionCheck$_colonConjunctions$1($colonConjunctions$lzy, $labelExpression)) ? 1 : 0; - $entityType = new oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_1; - $entityType.$_01054 = $colonConjunctions$lzy; - $entityType.$_1360 = $labelExpression; - $entityType = var$8.$chain(oncias_SemanticCheck$_when(var$6, var$7, $entityType)); - var$8 = new oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_2; - var$8.$_0528 = $labelExpression; - var$8.$_1185 = $colonConjunctions$lzy; - var$8.$_261 = $legacySymbols$lzy; - var$8.$_318 = $colonDisjunctions$lzy; - var$8 = oncias_SemanticCheck_ifOkChain$($entityType, var$8); - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(var$8, oncias_SemanticPatternCheck$_checkValidLabels(oncias_SemanticPatternCheck$_MODULE$, $labelExpression.$flatten0(), $labelExpression.$position())); +oncief_E$_signatures0 = $this => { + oncief_E$_$callClinit(); + return oncief_E$_signatures; }, -oncias_SemanticExpressionCheck$_simple1 = ($this, $iterable) => { - oncie_Expression$SemanticContext$Simple$_$callClinit(); - return oncias_SemanticExpressionCheck$_check($this, oncie_Expression$SemanticContext$Simple$_MODULE$, $iterable); +oncief_ElementId$ = $rt_classWithoutFields(oncief_Function), +oncief_ElementId$_MODULE$ = null, +oncief_ElementId$_signatures = null, +oncief_ElementId$_$callClinit = () => { + oncief_ElementId$_$callClinit = $rt_eraseClinit(oncief_ElementId$); + oncief_ElementId$__clinit_(); }, -oncias_SemanticExpressionCheck$_check = ($this, $ctx, $iterable) => { - let var$3; - var$3 = new oncias_SemanticExpressionCheck$$check$lambda$_53_0; - var$3.$_0568 = $ctx; - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, var$3); +oncief_ElementId$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$10, $x$3, var$8, $x$2, $x$4, var$11, $x$8, var$13, var$14, var$15, $x$6; + var$1 = new oncief_ElementId$; + oncief_ElementId$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ElementId$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ElementId$_MODULE$; + $x$10 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + $x$10 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTNode(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + var$13 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$10, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = $x$10; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6110)); + var$13 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6111), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$13); + oncief_ElementId$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncias_SemanticExpressionCheck$_simple0 = ($this, $option) => { - oncie_Expression$SemanticContext$Simple$_$callClinit(); - return oncias_SemanticExpressionCheck$_check1($this, oncie_Expression$SemanticContext$Simple$_MODULE$, $option); +oncief_ElementId$_name = $this => { + return $rt_s(6112); }, -oncias_SemanticExpressionCheck$_check1 = ($this, $ctx, $option) => { - let var$3, var$4; - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = new oncias_SemanticExpressionCheck$$check$lambda$_55_0; - var$4.$_0792 = $ctx; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, $option, var$4); +oncief_ElementId$_productArity = $this => { + return 0; }, -oncias_SemanticExpressionCheck$_checkAddBoundary = ($this, $add) => { - let $r, $l, var$4, var$5, var$6; - $r = s_Tuple2__init_($add.$lhs10, $add.$rhs13); - $l = $r.$_10; - $r = $r.$_20; - if ($rt_isInstance($l, oncie_IntegerLiteral)) { - $l = $l; - if ($rt_isInstance($r, oncie_IntegerLiteral)) { - $r = $r; - var$4 = onciuh_Try$_MODULE$; - var$5 = new oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_56_0; - var$5.$_0317 = $l; - var$5.$_1118 = $r; - if ((onciuh_Try$_apply(var$4, var$5)).$isFailure()) { - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$5 = oncias_SemanticError$_MODULE$; - $l = $l.$stringVal(); - $r = $r.$stringVal(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6874)), $l), $rt_s(6875)), $r), $rt_s(6876)); - return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(var$5, jl_AbstractStringBuilder_toString(var$6), $add.$position131)); - } - } - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +oncief_ElementId$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$_checkSubtractBoundary = ($this, $subtract) => { - let $r, $l, var$4, var$5, var$6; - $r = s_Tuple2__init_($subtract.$lhs9, $subtract.$rhs10); - $l = $r.$_10; - $r = $r.$_20; - if ($rt_isInstance($l, oncie_IntegerLiteral)) { - $l = $l; - if ($rt_isInstance($r, oncie_IntegerLiteral)) { - $r = $r; - var$4 = onciuh_Try$_MODULE$; - var$5 = new oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_57_0; - var$5.$_0439 = $l; - var$5.$_1154 = $r; - if ((onciuh_Try$_apply(var$4, var$5)).$isFailure()) { - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$5 = oncias_SemanticError$_MODULE$; - $l = $l.$stringVal(); - $r = $r.$stringVal(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6874)), $l), $rt_s(3523)), $r), $rt_s(6876)); - return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(var$5, jl_AbstractStringBuilder_toString(var$6), $subtract.$position124)); - } - } - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +oncief_ElementId$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$_checkUnarySubtractBoundary = ($this, $subtract) => { - let var$2, var$3, var$4, var$5; - var$2 = $subtract.$rhs12; - if ($rt_isInstance(var$2, oncie_IntegerLiteral)) { - var$2 = var$2; - var$3 = onciuh_Try$_MODULE$; - var$4 = new oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_58_0; - var$4.$_0440 = var$2; - if ((onciuh_Try$_apply(var$3, var$4)).$isFailure()) { - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - var$2 = var$2.$stringVal(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6877)), var$2), $rt_s(6876)); - return oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$5), $subtract.$position134)); - } - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +oncief_ElementId$_hashCode = $this => { + return 1745451287; }, -oncias_SemanticExpressionCheck$_checkMultiplyBoundary = ($this, $multiply) => { - let $r, $l, var$4, var$5, var$6; - $r = s_Tuple2__init_($multiply.$lhs11, $multiply.$rhs11); - $l = $r.$_10; - $r = $r.$_20; - if ($rt_isInstance($l, oncie_IntegerLiteral)) { - $l = $l; - if ($rt_isInstance($r, oncie_IntegerLiteral)) { - $r = $r; - var$4 = onciuh_Try$_MODULE$; - var$5 = new oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_59_0; - var$5.$_0228 = $l; - var$5.$_188 = $r; - if ((onciuh_Try$_apply(var$4, var$5)).$isFailure()) { - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$5 = oncias_SemanticError$_MODULE$; - $l = $l.$stringVal(); - $r = $r.$stringVal(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6874)), $l), $rt_s(6878)), $r), $rt_s(6876)); - return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(var$5, jl_AbstractStringBuilder_toString(var$6), $multiply.$position174)); - } - } - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +oncief_ElementId$_toString = $this => { + return $rt_s(6113); }, -oncias_SemanticExpressionCheck$_infixAddRhsTypes = ($this, $lhs) => { - let var$2; - var$2 = new oncias_SemanticExpressionCheck$$infixAddRhsTypes$lambda$_60_0; - var$2.$_01042 = $lhs; - return var$2; +oncief_ElementId$_signatures0 = $this => { + oncief_ElementId$_$callClinit(); + return oncief_ElementId$_signatures; }, -oncias_SemanticExpressionCheck$_infixAddOutputTypes = ($this, $lhs, $rhs) => { - let var$3; - var$3 = new oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_61_0; - var$3.$_0789 = $lhs; - var$3.$_1265 = $rhs; - return var$3; +oncief_EndNode$ = $rt_classWithoutFields(oncief_Function), +oncief_EndNode$_MODULE$ = null, +oncief_EndNode$_signatures = null, +oncief_EndNode$_$callClinit = () => { + oncief_EndNode$_$callClinit = $rt_eraseClinit(oncief_EndNode$); + oncief_EndNode$__clinit_(); }, -oncias_SemanticExpressionCheck$_checkInnerListComprehension = ($this, $x) => { - let $e, var$3, $outerTypes; - $e = oncie_ListComprehension_extractExpression($x); - if (!($e instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, $e)) - $rt_throw(s_MatchError__init_($e)); - $e = new oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_2; - $e.$_01070 = $x; - var$3 = oncias_SemanticAnalysisTooling_withScopedState$($this, $e); - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$0($this, oncias_SemanticAnalysisTooling_types$($this, $x.$expression25), $x))); - } - $e = $e.$value5; - $outerTypes = new oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_0; - $outerTypes.$_01109 = $x; - $outerTypes.$_1372 = $e; - var$3 = oncias_SemanticAnalysisTooling_withScopedState$($this, $outerTypes); - $outerTypes = new oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_1; - $outerTypes.$_0481 = $e; - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$0($this, $outerTypes, $x))); +oncief_EndNode$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_EndNode$; + oncief_EndNode$_$callClinit(); + oncief_Function__init_(var$1); + oncief_EndNode$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_EndNode$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_RelationshipType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTNode(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6114)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6115), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_EndNode$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncias_SemanticExpressionCheck$_checkForShadowedVariables = ($this, $subqueryCallsToFilter) => { - let var$2, var$3; - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_63_0; - var$3.$_0822 = $subqueryCallsToFilter; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); +oncief_EndNode$_name = $this => { + return $rt_s(6116); }, -oncias_SemanticExpressionCheck$_possibleTypes$1 = $x72$1 => { - let var$2; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = new oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_135_0; - var$2.$_0252 = $x72$1; - return var$2; +oncief_EndNode$_productArity = $this => { + return 0; }, -oncias_SemanticExpressionCheck$_$anonfun$check$1 = ($expression$1, $ctx$1) => { - let $allowedTypes, $possibleTypes, $lhs, $rhs, $relationship, $relationshipList, $outerTypes, $stringVal; - oncias_SemanticExpressionCheck$_$callClinit(); - if ($expression$1 instanceof oncie_Add) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Add_lhs($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0__init_(), oncie_Add_lhs($expression$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Add_rhs($expression$1))); - $allowedTypes = oncias_SemanticExpressionCheck$_MODULE$; - $ctx$1 = oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticExpressionCheck$_expectType3($allowedTypes, oncias_SemanticExpressionCheck$_infixAddRhsTypes($allowedTypes, oncie_Add_lhs($expression$1)), oncie_Add_rhs($expression$1))); - oncias_package$_$callClinit(); - $allowedTypes = oncias_package$_MODULE$; - $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc($allowedTypes, oncias_SemanticExpressionCheck$_specifyType0($possibleTypes, oncias_SemanticExpressionCheck$_infixAddOutputTypes($possibleTypes, oncie_Add_lhs($expression$1), oncie_Add_rhs($expression$1)), $expression$1))), oncias_SemanticExpressionCheck$_checkAddBoundary(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); - } - if ($expression$1 instanceof oncie_Concatenate) { - $expression$1 = $expression$1; - $ctx$1 = (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Concatenate_signatures($expression$1))); - oncias_package$_$callClinit(); - $allowedTypes = oncias_package$_MODULE$; - $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc($allowedTypes, oncias_SemanticExpressionCheck$_specifyType0($possibleTypes, oncias_SemanticExpressionCheck$_infixAddOutputTypes($possibleTypes, oncie_Concatenate_lhs($expression$1), oncie_Concatenate_rhs($expression$1)), $expression$1))); - } - if ($expression$1 instanceof oncie_Subtract) { - $expression$1 = $expression$1; - return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Subtract_signatures($expression$1))), oncias_SemanticExpressionCheck$_checkSubtractBoundary(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); - } - if ($expression$1 instanceof oncie_UnarySubtract) { - $expression$1 = $expression$1; - return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_UnarySubtract_signatures($expression$1))), oncias_SemanticExpressionCheck$_checkUnarySubtractBoundary(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); - } - if ($expression$1 instanceof oncie_UnaryAdd) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_UnaryAdd_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Multiply) { - $expression$1 = $expression$1; - return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Multiply_signatures($expression$1))), oncias_SemanticExpressionCheck$_checkMultiplyBoundary(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); - } - if ($expression$1 instanceof oncie_Divide) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Divide_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Modulo) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Modulo_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Pow) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Pow_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Not) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Not_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Equals) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Equals_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_NotEquals) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_NotEquals_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_InvalidNotEquals) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - $ctx$1 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef($ctx$1, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6879), oncie_InvalidNotEquals_position($expression$1))); - } - if ($expression$1 instanceof oncie_RegexMatch) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_RegexMatch_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_And) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_And_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Or) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Or_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Xor) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Xor_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Ands) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Ands_exprs($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Ands_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Ors) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$exprs())).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, $expression$1.$signatures0())); - } - if ($expression$1 instanceof oncie_In) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_In_lhs($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1__init_(), oncie_In_lhs($expression$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, - oncie_In_rhs($expression$1))), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2__init_0(), oncie_In_rhs($expression$1))); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3__init_(), $expression$1))); - } - if ($expression$1 instanceof oncie_StartsWith) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_StartsWith_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_EndsWith) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_EndsWith_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_Contains) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Contains_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_IsNull) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_IsNull_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_IsNotNull) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_IsNotNull_signatures($expression$1))); - } - if ($expression$1 instanceof oncia_IsTyped) { - $expression$1 = $expression$1; - $expression$1 = oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncia_CypherTypeName_semanticCheck(oncia_CypherTypeName__init_(oncia_IsTyped_typeName($expression$1)))), oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncia_IsTyped_signatures($expression$1))); - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($expression$1, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$)); - } - if ($expression$1 instanceof oncia_IsNotTyped) { - $expression$1 = $expression$1; - $expression$1 = oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncia_CypherTypeName_semanticCheck(oncia_CypherTypeName__init_(oncia_IsNotTyped_typeName($expression$1)))), oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncia_IsNotTyped_signatures($expression$1))); - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($expression$1, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$)); - } - if ($expression$1 instanceof oncia_IsNormalized) { - $expression$1 = $expression$1; - $ctx$1 = (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncia_IsNormalized_signatures($expression$1))); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4__init_0(), $expression$1))); - } - if ($expression$1 instanceof oncia_IsNotNormalized) { - $expression$1 = $expression$1; - $ctx$1 = (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncia_IsNotNormalized_signatures($expression$1))); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5__init_0(), $expression$1))); - } - if ($expression$1 instanceof oncie_LessThan) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_LessThan_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_LessThanOrEqual) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_LessThanOrEqual_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_GreaterThan) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_GreaterThan_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_GreaterThanOrEqual) { - $expression$1 = $expression$1; - return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_GreaterThanOrEqual_signatures($expression$1))); - } - if ($expression$1 instanceof oncie_DifferentRelationships) { - $expression$1 = $expression$1; - $lhs = $expression$1.$rel1(); - $rhs = $expression$1.$rel2(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6__init_(), $lhs)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7__init_0(), $rhs)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8__init_(), $expression$1))); - } - if ($expression$1 instanceof oncie_NoneOfRelationships) { - $expression$1 = $expression$1; - $relationship = $expression$1.$relationship0(); - $relationshipList = $expression$1.$listOfRelationships(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9__init_(), $relationship)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10__init_(), $relationshipList)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11__init_(), $expression$1))); - } - if ($expression$1 instanceof oncie_Disjoint) { - $expression$1 = $expression$1; - $lhs = $expression$1.$lhs0(); - $rhs = $expression$1.$rhs0(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12__init_0(), $lhs)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13__init_0(), $rhs)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14__init_(), $expression$1))); - } - if ($expression$1 instanceof oncie_Unique) { - $expression$1 = $expression$1; - $rhs = $expression$1.$rhs0(); - $ctx$1 = (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15__init_0(), $rhs)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16__init_0(), $expression$1))); - } - if ($expression$1 instanceof oncie_VarLengthBound) { - $expression$1 = $expression$1; - $ctx$1 = (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17__init_(), $expression$1.$relName())); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18__init_(), $expression$1))); - } - if ($rt_isInstance($expression$1, oncie_PartialPredicate)) { - $expression$1 = $expression$1; - return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$coveredPredicate()); - } - if ($expression$1 instanceof oncie_CaseExpression) { - $expression$1 = $expression$1; - $possibleTypes = oncias_SemanticExpressionCheck$_unionOfTypes(oncias_SemanticExpressionCheck$_MODULE$, oncie_CaseExpression_possibleExpressions($expression$1)); - $allowedTypes = oncias_SemanticExpressionCheck$_check1(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_CaseExpression_candidate($expression$1)); - oncias_SemanticCheck$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes.$chain(oncias_SemanticCheck$_fromState(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19__init_($expression$1))), oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, (oncie_CaseExpression_alternatives($expression$1)).$flatMap(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20__init_0()))), oncias_SemanticExpressionCheck$_check1(oncias_SemanticExpressionCheck$_MODULE$, - $ctx$1, oncie_CaseExpression_default($expression$1))); - $allowedTypes = oncias_SemanticExpressionCheck$_MODULE$; - oncius_package$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticExpressionCheck$_expectType5($allowedTypes, oncius_BooleanType_covariant(oncius_package$_CTBoolean(oncius_package$_MODULE$)), (oncie_CaseExpression_alternatives($expression$1)).$map(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21__init_()))); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType0(oncias_SemanticExpressionCheck$_MODULE$, $possibleTypes, $expression$1))); - } - if ($expression$1 instanceof oncie_AndedPropertyInequalities) - return (($expression$1.$inequalities()).$map4(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_22__init_($ctx$1))).$reduceLeft(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_23__init_0()); - if ($expression$1 instanceof oncie_CoerceTo) { - $expression$1 = $expression$1; - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_CoerceTo_expr($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24__init_($expression$1), oncie_CoerceTo_expr($expression$1))); - } - if ($expression$1 instanceof oncie_Property) { - $expression$1 = $expression$1; - oncius_package$_$callClinit(); - $allowedTypes = oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))), oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$))), oncius_PointType_covariant(oncius_package$_CTPoint(oncius_package$_MODULE$))), - oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$))), oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$))), oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$))), oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$))), oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$))), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$))); - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Property_map($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25__init_0($allowedTypes), oncie_Property_map($expression$1))), oncias_SemanticExpressionCheck$_typeSwitch(oncias_SemanticExpressionCheck$_MODULE$, oncie_Property_map($expression$1), - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26__init_0($expression$1))); - } - if ($expression$1 instanceof oncie_CachedProperty) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27__init_0(), $expression$1)); - } - if ($expression$1 instanceof oncie_CachedHasProperty) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28__init_0(), $expression$1)); - } - if ($expression$1 instanceof oncie_Variable) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29__init_0($expression$1)); - } - if ($expression$1 instanceof oncie_FunctionInvocation) { - $expression$1 = $expression$1; - oncias_SemanticFunctionCheck$_$callClinit(); - return oncias_SemanticFunctionCheck$_check(oncias_SemanticFunctionCheck$_MODULE$, $ctx$1, $expression$1); - } - if ($expression$1 instanceof oncie_GetDegree) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$node()), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30__init_(), $expression$1.$node())); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31__init_0(), $expression$1))); - } - if ($rt_isInstance($expression$1, oncie_Parameter)) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32__init_0($expression$1), $expression$1)); - } - if ($expression$1 instanceof oncie_ImplicitProcedureArgument) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33__init_($expression$1), $expression$1)); - } - if ($expression$1 instanceof oncil_LabelExpressionPredicate) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncil_LabelExpressionPredicate_entity($expression$1)); - oncias_SemanticCheck$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, (oncil_LabelExpressionPredicate_labelExpression($expression$1)).$containsDynamicLabelOrTypeExpression(), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34__init_0($expression$1))), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35__init_0(), - oncil_LabelExpressionPredicate_entity($expression$1))), oncias_SemanticExpressionCheck$_checkLabelExpressionForLegacyRelationshipTypeDisjunction(oncias_SemanticExpressionCheck$_MODULE$, oncil_LabelExpressionPredicate_entity($expression$1), oncil_LabelExpressionPredicate_labelExpression($expression$1))), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36__init_0($expression$1)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37__init_(), $expression$1))); - } - if ($rt_isInstance($expression$1, oncie_LabelOrTypeCheckExpression)) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$entityExpression()), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38__init_0(), $expression$1.$entityExpression())); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39__init_0(), $expression$1))); - } - if ($rt_isInstance($expression$1, oncie_LabelCheckExpression)) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$expression()), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40__init_(), $expression$1.$expression())); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41__init_(), $expression$1))); - } - if ($expression$1 instanceof oncie_HasTypes) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$expression()), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42__init_(), $expression$1.$expression())); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43__init_(), $expression$1))); - } - if ($expression$1 instanceof oncie_ListComprehension) { - $expression$1 = $expression$1; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$FilteringExpressions$_semanticCheck(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, $ctx$1, $expression$1), oncias_SemanticExpressionCheck$_checkInnerListComprehension(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating0(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, oncie_ListComprehension_extractExpression($expression$1)))); - } - if ($expression$1 instanceof oncie_PatternComprehension) { - $expression$1 = $expression$1; - oncias_SemanticState$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44__init_0($expression$1))); - $outerTypes = oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45__init_0($expression$1); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType0(oncias_SemanticExpressionCheck$_MODULE$, $outerTypes, $expression$1))); - } - if ($expression$1 instanceof oncie_FilterScope) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($expression$1 instanceof oncie_ExtractScope) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($expression$1 instanceof oncie_ReduceScope) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($expression$1 instanceof oncie_CountStar) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46__init_0(), $expression$1)); - } - if ($expression$1 instanceof oncie_PathExpression) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_SemanticCheck$Leaf_chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47__init_(), $expression$1)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$step())); - } - if ($expression$1 instanceof oncie_NodePathStep) { - $expression$1 = $expression$1; - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_NodePathStep_node($expression$1)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_NodePathStep_next($expression$1))); - } - if ($expression$1 instanceof oncie_SingleRelationshipPathStep) { - $expression$1 = $expression$1; - $allowedTypes = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_SingleRelationshipPathStep_rel($expression$1)); - oncias_OptionSemanticChecking$_$callClinit(); - $possibleTypes = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_OptionSemanticChecking$_foldSemanticCheck$extension($possibleTypes, oncias_package$_optionSemanticChecking(oncias_package$_MODULE$, oncie_SingleRelationshipPathStep_toNode($expression$1)), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48__init_($ctx$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_SingleRelationshipPathStep_next($expression$1))); - } - if ($expression$1 instanceof oncie_MultiRelationshipPathStep) { - $expression$1 = $expression$1; - $allowedTypes = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_MultiRelationshipPathStep_rel($expression$1)); - oncias_OptionSemanticChecking$_$callClinit(); - $possibleTypes = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_OptionSemanticChecking$_foldSemanticCheck$extension($possibleTypes, oncias_package$_optionSemanticChecking(oncias_package$_MODULE$, oncie_MultiRelationshipPathStep_toNode($expression$1)), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49__init_0($ctx$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_MultiRelationshipPathStep_next($expression$1))); - } - if ($expression$1 instanceof oncie_RepeatPathStep) { - $expression$1 = $expression$1; - return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, (oncie_RepeatPathStep_variables($expression$1)).$flatMap(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_50__init_0()))).$chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_RepeatPathStep_toNode($expression$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_RepeatPathStep_next($expression$1))); - } - if ($expression$1 instanceof oncie_NilPathStep) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($expression$1 instanceof oncie_ShortestPathExpression) { - $expression$1 = $expression$1; - oncias_SemanticPatternCheck$_$callClinit(); - $ctx$1 = oncias_SemanticPatternCheck$_MODULE$; - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - $ctx$1 = (oncias_SemanticPatternCheck$_declareVariables0($ctx$1, oncie_Pattern$SemanticContext$Expression$_MODULE$, oncie_ShortestPathExpression_pattern($expression$1))).$chain(oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Expression$_MODULE$, oncie_ShortestPathExpression_pattern($expression$1))); - oncias_SemanticCheck$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, onciu_Foldable$Folder_treeExists(oncie_PatternElement_folder(oncie_ShortestPathsPatternPart_element(oncie_ShortestPathExpression_pattern($expression$1))), oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1__init_()), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51__init_0($expression$1))); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52__init_0($expression$1), $expression$1))); - } - if ($expression$1 instanceof oncie_PatternExpression) { - $expression$1 = $expression$1; - oncias_SemanticState$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53__init_($expression$1))); - oncias_package$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54__init_(), $expression$1))); - oncias_SemanticPatternCheck$_$callClinit(); - $allowedTypes = oncias_SemanticPatternCheck$_MODULE$; - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticPatternCheck$_check($allowedTypes, oncie_Pattern$SemanticContext$Expression$_MODULE$, oncie_RelationshipsPattern_element(oncie_PatternExpression_pattern($expression$1)))); - } - if ($rt_isInstance($expression$1, oncie_IterablePredicateExpression)) { - $expression$1 = $expression$1; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - $ctx$1 = (oncias_SemanticExpressionCheck$FilteringExpressions$_checkPredicateDefined(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, $expression$1)).$chain(oncias_SemanticExpressionCheck$FilteringExpressions$_semanticCheck(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, $ctx$1, $expression$1)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55__init_(), $expression$1))); - } - if ($expression$1 instanceof oncie_ReduceExpression) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ReduceExpression_init($expression$1)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ReduceExpression_list($expression$1))), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56__init_(), - oncie_ReduceExpression_list($expression$1))), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57__init_0($expression$1))), oncias_SemanticExpressionCheck$_expectType4(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_58__init_0($expression$1), oncie_ReduceExpression_expression($expression$1), oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator0(oncie_ReduceExpression$_MODULE$))); - oncias_package$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType0(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59__init_($expression$1), $expression$1))); - $allowedTypes = oncias_package$_MODULE$; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticErrorDefOption($allowedTypes, oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, oncie_ReduceExpression_expression($expression$1)))); - } - if ($expression$1 instanceof oncie_ListLiteral) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ListLiteral_expressions($expression$1)); - oncias_package$_$callClinit(); - return $ctx$1.$chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType0(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$_possibleTypes$1($expression$1), $expression$1))); - } - if ($expression$1 instanceof oncie_ListSlice) { - $expression$1 = $expression$1; - $allowedTypes = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ListSlice_list($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60__init_(), oncie_ListSlice_list($expression$1))); - oncias_SemanticCheck$_$callClinit(); - $allowedTypes = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, s_Option_isEmpty(oncie_ListSlice_from($expression$1)) && s_Option_isEmpty(oncie_ListSlice_to($expression$1)) ? 1 : 0, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61__init_0($expression$1))), oncias_SemanticExpressionCheck$_check1(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ListSlice_from($expression$1))); - $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; - oncius_package$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_SemanticExpressionCheck$_expectType1($possibleTypes, oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncie_ListSlice_from($expression$1))), oncias_SemanticExpressionCheck$_check1(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ListSlice_to($expression$1))), oncias_SemanticExpressionCheck$_expectType1(oncias_SemanticExpressionCheck$_MODULE$, - oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncie_ListSlice_to($expression$1))); - oncias_package$_$callClinit(); - $allowedTypes = oncias_package$_MODULE$; - $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc($allowedTypes, oncias_SemanticExpressionCheck$_specifyType0($possibleTypes, oncias_SemanticExpressionCheck$_types($possibleTypes, oncie_ListSlice_list($expression$1)), $expression$1))); - } - if ($expression$1 instanceof oncie_ContainerIndex) { - $expression$1 = $expression$1; - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ContainerIndex_expr($expression$1)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ContainerIndex_idx($expression$1))), oncias_SemanticExpressionCheck$_typeSwitch(oncias_SemanticExpressionCheck$_MODULE$, oncie_ContainerIndex_expr($expression$1), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62__init_0($expression$1))); - } - if ($expression$1 instanceof oncie_MapExpression) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, (oncie_MapExpression_items($expression$1)).$map(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63__init_0())); - oncias_package$_$callClinit(); - return $ctx$1.$chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64__init_0(), $expression$1))); - } - if ($expression$1 instanceof oncie_MapProjection) { - $expression$1 = $expression$1; - $ctx$1 = oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_MapProjection_items($expression$1)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($ctx$1.$chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_ensureDefined(oncias_SemanticExpressionCheck$_MODULE$, oncie_MapProjection_name($expression$1)))), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65__init_0(), oncie_MapProjection_name($expression$1))), - oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66__init_(), $expression$1))), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67__init_0($expression$1)); - } - if ($expression$1 instanceof oncie_LiteralEntry) { - $expression$1 = $expression$1; - return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_LiteralEntry_exp($expression$1)); - } - if ($expression$1 instanceof oncie_VariableSelector) { - $expression$1 = $expression$1; - return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_VariableSelector_id($expression$1)); - } - if ($expression$1 instanceof oncie_PropertySelector) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($expression$1 instanceof oncie_AllPropertiesSelector) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($expression$1 instanceof oncie_DesugaredMapProjection) { - $expression$1 = $expression$1; - $ctx$1 = (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$items())).$chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$entity())); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68__init_(), $expression$1))), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69__init_0($expression$1)); - } - if ($expression$1 instanceof oncie_DecimalIntegerLiteral) { - $expression$1 = $expression$1; - oncias_SemanticCheck$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$_validNumber(oncias_SemanticExpressionCheck$_MODULE$, $expression$1) ? 0 : 1, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70__init_($expression$1)); - oncias_package$_$callClinit(); - return $ctx$1.$chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71__init_0(), $expression$1))); - } - if ($expression$1 instanceof oncie_OctalIntegerLiteral) { - $expression$1 = $expression$1; - $stringVal = oncie_SignedOctalIntegerLiteral_stringVal($expression$1); - oncias_SemanticCheck$_$callClinit(); - $ctx$1 = (oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$_validNumber(oncias_SemanticExpressionCheck$_MODULE$, $expression$1) ? 0 : 1, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72__init_($stringVal, $expression$1))).$ifOkChain(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73__init_($stringVal, $expression$1)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74__init_(), $expression$1))); - } - if ($expression$1 instanceof oncie_HexIntegerLiteral) { - $expression$1 = $expression$1; - $stringVal = oncie_SignedHexIntegerLiteral_stringVal($expression$1); - oncias_SemanticCheck$_$callClinit(); - $ctx$1 = (oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$_validNumber(oncias_SemanticExpressionCheck$_MODULE$, $expression$1) ? 0 : 1, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75__init_0($stringVal, $expression$1))).$ifOkChain(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76__init_0($stringVal, $expression$1)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77__init_0(), $expression$1))); - } - if ($expression$1 instanceof oncie_DecimalDoubleLiteral) { - $expression$1 = $expression$1; - oncias_SemanticCheck$_$callClinit(); - $ctx$1 = (oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$_validNumber0(oncias_SemanticExpressionCheck$_MODULE$, $expression$1) ? 0 : 1, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78__init_($expression$1))).$ifOkChain(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79__init_0($expression$1)); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80__init_0(), $expression$1))); - } - if ($expression$1 instanceof oncie_StringLiteral) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81__init_0(), $expression$1)); - } - if ($expression$1 instanceof oncie_Null) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82__init_0(), $expression$1)); - } - if ($rt_isInstance($expression$1, oncie_BooleanLiteral)) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83__init_0(), $expression$1)); - } - if ($expression$1 instanceof oncie_Infinity) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84__init_0(), $expression$1)); - } - if ($expression$1 instanceof oncie_NaN) { - $expression$1 = $expression$1; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85__init_(), $expression$1)); - } - if ($rt_isInstance($expression$1, oncias_SemanticCheckableExpression)) - return oncifp_ResolvedFunctionInvocation_semanticCheck($expression$1, $ctx$1); - if ($expression$1 instanceof oncia_ExistsExpression) { - $expression$1 = $expression$1; - oncias_SemanticState$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86__init_($expression$1))); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87__init_(), $expression$1))); - } - if ($expression$1 instanceof oncia_CountExpression) { - $expression$1 = $expression$1; - oncias_SemanticState$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88__init_($expression$1))); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89__init_(), $expression$1))); - } - if (!($expression$1 instanceof oncia_CollectExpression)) { - if ($expression$1 instanceof oncie_CaseExpression$Placeholder) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if ($expression$1 === null) - $rt_throw(s_MatchError__init_($expression$1)); - return oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0_apply(oncias_SemanticExpressionCheck$_semanticCheckFallback0(oncias_SemanticExpressionCheck$_MODULE$), $ctx$1, $expression$1); - } - $expression$1 = $expression$1; - oncias_SemanticState$_$callClinit(); - $ctx$1 = oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90__init_0($expression$1))); - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91__init_(), $expression$1))); +oncief_EndNode$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$_colonConjunctions$1 = ($colonConjunctions$lzy$1, $labelExpression$2) => { - let var$3, $$je; - oncias_SemanticExpressionCheck$_$callClinit(); - if ($colonConjunctions$lzy$1.$_initialized) - return $colonConjunctions$lzy$1.$_value0; - jl_Object_monitorEnterSync($colonConjunctions$lzy$1); - a: { - try { - if (sr_LazyRef_initialized($colonConjunctions$lzy$1)) - $labelExpression$2 = sr_LazyRef_value($colonConjunctions$lzy$1); - else { - var$3 = $labelExpression$2.$folder(); - sr_ClassTag$_$callClinit(); - $labelExpression$2 = sr_LazyRef_initialize($colonConjunctions$lzy$1, onciu_Foldable$Folder_findAllByClass(var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonConjunction)))); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - $labelExpression$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($colonConjunctions$lzy$1); - return $labelExpression$2; - } - jl_Object_monitorExitSync($colonConjunctions$lzy$1); - $rt_throw($labelExpression$2); +oncief_EndNode$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$_colonDisjunctions$1 = ($colonDisjunctions$lzy$1, $labelExpression$2) => { - let var$3, $$je; - oncias_SemanticExpressionCheck$_$callClinit(); - if ($colonDisjunctions$lzy$1.$_initialized) - return $colonDisjunctions$lzy$1.$_value0; - jl_Object_monitorEnterSync($colonDisjunctions$lzy$1); - a: { - try { - if (sr_LazyRef_initialized($colonDisjunctions$lzy$1)) - $labelExpression$2 = sr_LazyRef_value($colonDisjunctions$lzy$1); - else { - var$3 = $labelExpression$2.$folder(); - sr_ClassTag$_$callClinit(); - $labelExpression$2 = sr_LazyRef_initialize($colonDisjunctions$lzy$1, onciu_Foldable$Folder_findAllByClass(var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction)))); - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - $labelExpression$2 = $$je; - break a; - - } - jl_Object_monitorExitSync($colonDisjunctions$lzy$1); - return $labelExpression$2; - } - jl_Object_monitorExitSync($colonDisjunctions$lzy$1); - $rt_throw($labelExpression$2); +oncief_EndNode$_hashCode = $this => { + return 57236829; }, -oncias_SemanticExpressionCheck$_$anonfun$infixAddRhsTypes$1 = ($lhs$1, $s) => { - let $lhsTypes, $valueTypes, $temporalTypes, $durationTypes, $listTypes, $lhsListTypes, $rhsListTypes; - oncias_SemanticExpressionCheck$_$callClinit(); - $lhsTypes = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, $lhs$1), $s); - oncius_package$_$callClinit(); - if (!oncius_TypeSpec_containsAny($lhsTypes, oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$))), oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$))))) { - oncius_TypeSpec$_$callClinit(); - $valueTypes = oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); - } else - $valueTypes = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)), oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$))), oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$))); - if (!oncius_TypeSpec_containsAny($lhsTypes, oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$)), oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$))), oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$))), oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$))), oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$))), - oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$))))) { - oncius_TypeSpec$_$callClinit(); - $temporalTypes = oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); - } else - $temporalTypes = oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)); - if (!oncius_TypeSpec_containsAny($lhsTypes, oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)))) { - oncius_TypeSpec$_$callClinit(); - $durationTypes = oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); - } else - $durationTypes = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$)), oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$))), oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$))), oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$))), oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$))), - oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$))); - $lhs$1 = oncius_package$_MODULE$; - $lhs$1 = oncius_TypeSpec_leastUpperBounds($lhsTypes, (oncius_package$_CTList($lhs$1, oncius_package$_CTAny($lhs$1))).$invariant()); - $s = oncius_package$_MODULE$; - $listTypes = oncius_TypeSpec_covariant(oncius_TypeSpec_constrain($lhs$1, oncius_package$_CTList($s, oncius_package$_CTAny($s)))); - $lhsListTypes = oncius_TypeSpec_union($listTypes, oncius_TypeSpec_unwrapLists($listTypes)); - $lhs$1 = oncius_package$_MODULE$; - $rhsListTypes = oncius_ListType_covariant(oncius_package$_CTList($lhs$1, oncius_package$_CTAny($lhs$1))); - return oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union($valueTypes, $lhsListTypes), $rhsListTypes), $temporalTypes), $durationTypes); +oncief_EndNode$_toString = $this => { + return $rt_s(6117); }, -oncias_SemanticExpressionCheck$_when$1 = ($fst, $snd, $result, $lhsTypes$1, $rhsTypes$1) => { - oncias_SemanticExpressionCheck$_$callClinit(); - a: { - if (!(oncius_TypeSpec_containsAny($lhsTypes$1, $fst) && oncius_TypeSpec_containsAny($rhsTypes$1, $snd))) { - if (!oncius_TypeSpec_containsAny($lhsTypes$1, $snd)) - break a; - if (!oncius_TypeSpec_containsAny($rhsTypes$1, $fst)) - break a; - } - return $result.$invariant(); - } - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); -}; -let oncias_SemanticExpressionCheck$_$anonfun$infixAddOutputTypes$1 = ($lhs$2, $rhs$1, $s) => { - let $lhsTypes, $rhsTypes, $stringTypes, $numberTypes, $temporalTypes, $lhsListTypes, $rhsListTypes, $lhsListInnerTypes, $rhsListInnerTypes, $lhsScalarTypes, $rhsScalarTypes, $bothListMergedLhTypes, $bothListMergedRhTypes, $lhListMergedTypes, $rhListMergedTypes, $listTypes; - oncias_SemanticExpressionCheck$_$callClinit(); - $lhsTypes = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, $lhs$2), $s); - $rhsTypes = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, $rhs$1), $s); - oncius_package$_$callClinit(); - $stringTypes = oncias_SemanticExpressionCheck$_when$1(oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)), oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$))), oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$))), oncius_package$_CTString(oncius_package$_MODULE$), $lhsTypes, $rhsTypes); - $numberTypes = oncius_TypeSpec_union(oncias_SemanticExpressionCheck$_when$1(oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncius_package$_CTInteger(oncius_package$_MODULE$), $lhsTypes, $rhsTypes), oncias_SemanticExpressionCheck$_when$1(oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$)), oncius_TypeSpec_union(oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$)), - oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$))), oncius_package$_CTFloat(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)); - $temporalTypes = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTDuration(oncius_package$_MODULE$), $lhsTypes, $rhsTypes), - oncias_SemanticExpressionCheck$_when$1(oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTDate(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$)), oncius_package$_CTDate(oncius_package$_MODULE$), - $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$)), oncius_package$_CTTime(oncius_package$_MODULE$), - $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTLocalTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$)), - oncius_package$_CTLocalTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTLocalDateTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$)), - oncius_package$_CTLocalDateTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTDateTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$)), - oncius_package$_CTDateTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)); - $lhs$2 = oncius_package$_MODULE$; - $lhsListTypes = oncius_TypeSpec_constrain($lhsTypes, oncius_package$_CTList($lhs$2, oncius_package$_CTAny($lhs$2))); - $lhs$2 = oncius_package$_MODULE$; - $rhsListTypes = oncius_TypeSpec_constrain($rhsTypes, oncius_package$_CTList($lhs$2, oncius_package$_CTAny($lhs$2))); - $lhsListInnerTypes = oncius_TypeSpec_unwrapLists($lhsListTypes); - $rhsListInnerTypes = oncius_TypeSpec_unwrapLists($rhsListTypes); - $lhs$2 = oncius_package$_MODULE$; - $lhsScalarTypes = oncius_TypeSpec_without($lhsTypes, oncius_package$_CTList($lhs$2, oncius_package$_CTAny($lhs$2))); - $lhs$2 = oncius_package$_MODULE$; - $rhsScalarTypes = oncius_TypeSpec_without($rhsTypes, oncius_package$_CTList($lhs$2, oncius_package$_CTAny($lhs$2))); - $bothListMergedLhTypes = oncius_TypeSpec_wrapInList(oncius_TypeSpec_coerceOrLeastUpperBound($lhsListInnerTypes, $rhsListInnerTypes)); - $bothListMergedRhTypes = oncius_TypeSpec_wrapInList(oncius_TypeSpec_coerceOrLeastUpperBound($rhsListInnerTypes, $lhsListInnerTypes)); - $lhListMergedTypes = oncius_TypeSpec_wrapInList(oncius_TypeSpec_coerceOrLeastUpperBound($rhsScalarTypes, $lhsListInnerTypes)); - $rhListMergedTypes = oncius_TypeSpec_wrapInList(oncius_TypeSpec_coerceOrLeastUpperBound($lhsScalarTypes, $rhsListInnerTypes)); - $listTypes = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union($bothListMergedLhTypes, $bothListMergedRhTypes), $lhListMergedTypes), $rhListMergedTypes); - return oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union($stringTypes, $numberTypes), $listTypes), $temporalTypes); -}; -function oncia_CreateConstraint$semanticCheck$lambda$_28_0() { - jl_Object.call(this); - this.$_0414 = null; -} -let oncia_CreateConstraint$semanticCheck$lambda$_28_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0414; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = var$1.$map16 instanceof oncie_Variable ? 0 : 1; - var$5 = new oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0; - var$5.$_0583 = var$2; - var$5.$_1200 = var$1; - return oncias_SemanticCheck$_when(var$3, var$4, var$5); +oncief_EndNode$_signatures0 = $this => { + oncief_EndNode$_$callClinit(); + return oncief_EndNode$_signatures; +}, +oncief_Exp$ = $rt_classWithoutFields(oncief_Function), +oncief_Exp$_MODULE$ = null, +oncief_Exp$_signatures = null, +oncief_Exp$_$callClinit = () => { + oncief_Exp$_$callClinit = $rt_eraseClinit(oncief_Exp$); + oncief_Exp$__clinit_(); +}, +oncief_Exp$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Exp$; + oncief_Exp$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Exp$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Exp$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6118)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6119), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Exp$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }; -function scm_ArraySeq$ofInt() { - scm_ArraySeq.call(this); - this.$array14 = null; -} -let scm_ArraySeq$ofInt_length = $this => { - return $this.$array14.data.length; +let oncief_Exp$_name = $this => { + return $rt_s(6120); }, -scm_ArraySeq$ofInt_apply = ($this, $index) => { - return $this.$array14.data[$index]; +oncief_Exp$_productArity = $this => { + return 0; }, -scm_ArraySeq$ofInt_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_arraySeqHash$mIc$sp(suh_MurmurHash3$_MODULE$, $this.$array14); +oncief_Exp$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -scm_ArraySeq$ofInt_equals = ($this, $that) => { - if (!($that instanceof scm_ArraySeq$ofInt)) - return scm_ArraySeq_equals($this, $that); - $that = $that; - return ju_Arrays_equals($this.$array14, $that.$array14); +oncief_Exp$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -scm_ArraySeq$ofInt_iterator = $this => { - return sc_ArrayOps$ArrayIterator$mcI$sp__init_($this.$array14); +oncief_Exp$_hashCode = $this => { + return 70141; }, -scm_ArraySeq$ofInt_apply1 = ($this, $v1) => { - return jl_Integer_valueOf(scm_ArraySeq$ofInt_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +oncief_Exp$_toString = $this => { + return $rt_s(6121); }, -scm_ArraySeq$ofInt_apply0 = ($this, $i) => { - return jl_Integer_valueOf(scm_ArraySeq$ofInt_apply($this, $i)); +oncief_Exp$_signatures0 = $this => { + oncief_Exp$_$callClinit(); + return oncief_Exp$_signatures; }, -scm_ArraySeq$ofInt_elemTag = $this => { - sr_ClassTag$_$callClinit(); - return sr_ClassTag$_Int(sr_ClassTag$_MODULE$); +oncief_File$ = $rt_classWithoutFields(oncief_Function), +oncief_File$_MODULE$ = null, +oncief_File$_signatures = null, +oncief_File$_$callClinit = () => { + oncief_File$_$callClinit = $rt_eraseClinit(oncief_File$); + oncief_File$__clinit_(); }, -scm_ArraySeq$ofInt_array = $this => { - return $this.$array14; -}; -function scm_ArraySeq$ofDouble() { - scm_ArraySeq.call(this); - this.$array8 = null; -} -let scm_ArraySeq$ofDouble_length = $this => { - return $this.$array8.data.length; +oncief_File$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncief_File$; + oncief_File$_$callClinit(); + oncief_Function__init_(var$1); + oncief_File$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + var$5 = oncie_FunctionTypeSignature$_MODULE$; + var$6 = oncief_File$_MODULE$; + oncius_package$_$callClinit(); + var$7 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(6122), oncief_Category$_SCALAR(oncief_Category$_MODULE$)); + oncief_File$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -scm_ArraySeq$ofDouble_apply = ($this, $index) => { - return $this.$array8.data[$index]; +oncief_File$_name = $this => { + return $rt_s(6123); }, -scm_ArraySeq$ofDouble_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_arraySeqHash$mDc$sp(suh_MurmurHash3$_MODULE$, $this.$array8); +oncief_File$_productArity = $this => { + return 0; }, -scm_ArraySeq$ofDouble_equals = ($this, $that) => { - if (!($that instanceof scm_ArraySeq$ofDouble)) - return scm_ArraySeq_equals($this, $that); - $that = $that; - return ju_Arrays_equals6($this.$array8, $that.$array8); +oncief_File$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -scm_ArraySeq$ofDouble_iterator = $this => { - return sc_ArrayOps$ArrayIterator$mcD$sp__init_($this.$array8); +oncief_File$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -scm_ArraySeq$ofDouble_apply0 = ($this, $v1) => { - return jl_Double_valueOf(scm_ArraySeq$ofDouble_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +oncief_File$_hashCode = $this => { + return 2189724; }, -scm_ArraySeq$ofDouble_apply1 = ($this, $i) => { - return jl_Double_valueOf(scm_ArraySeq$ofDouble_apply($this, $i)); +oncief_File$_toString = $this => { + return $rt_s(6124); }, -scm_ArraySeq$ofDouble_elemTag = $this => { - sr_ClassTag$_$callClinit(); - return sr_ClassTag$_Double(sr_ClassTag$_MODULE$); +oncief_File$_signatures0 = $this => { + oncief_File$_$callClinit(); + return oncief_File$_signatures; }, -scm_ArraySeq$ofDouble_array = $this => { - return $this.$array8; -}; -function scm_ArraySeq$ofLong() { - scm_ArraySeq.call(this); - this.$array7 = null; -} -let scm_ArraySeq$ofLong_length = $this => { - return $this.$array7.data.length; +oncief_Floor$ = $rt_classWithoutFields(oncief_Function), +oncief_Floor$_MODULE$ = null, +oncief_Floor$_signatures = null, +oncief_Floor$_$callClinit = () => { + oncief_Floor$_$callClinit = $rt_eraseClinit(oncief_Floor$); + oncief_Floor$__clinit_(); }, -scm_ArraySeq$ofLong_apply = ($this, $index) => { - return $this.$array7.data[$index]; +oncief_Floor$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Floor$; + oncief_Floor$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Floor$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Floor$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6125)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6126), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Floor$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -scm_ArraySeq$ofLong_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_arraySeqHash$mJc$sp(suh_MurmurHash3$_MODULE$, $this.$array7); +oncief_Floor$_name = $this => { + return $rt_s(6127); }, -scm_ArraySeq$ofLong_equals = ($this, $that) => { - if (!($that instanceof scm_ArraySeq$ofLong)) - return scm_ArraySeq_equals($this, $that); - $that = $that; - return ju_Arrays_equals5($this.$array7, $that.$array7); +oncief_Floor$_productArity = $this => { + return 0; }, -scm_ArraySeq$ofLong_iterator = $this => { - return sc_ArrayOps$ArrayIterator$mcJ$sp__init_($this.$array7); +oncief_Floor$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -scm_ArraySeq$ofLong_apply1 = ($this, $v1) => { - return jl_Long_valueOf(scm_ArraySeq$ofLong_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +oncief_Floor$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -scm_ArraySeq$ofLong_apply0 = ($this, $i) => { - return jl_Long_valueOf(scm_ArraySeq$ofLong_apply($this, $i)); +oncief_Floor$_hashCode = $this => { + return 67974124; }, -scm_ArraySeq$ofLong_elemTag = $this => { - sr_ClassTag$_$callClinit(); - return sr_ClassTag$_Long(sr_ClassTag$_MODULE$); +oncief_Floor$_toString = $this => { + return $rt_s(6128); }, -scm_ArraySeq$ofLong_array = $this => { - return $this.$array7; -}; -function scm_ArraySeq$ofFloat() { - scm_ArraySeq.call(this); - this.$array13 = null; -} -let scm_ArraySeq$ofFloat_length = $this => { - return $this.$array13.data.length; +oncief_Floor$_signatures0 = $this => { + oncief_Floor$_$callClinit(); + return oncief_Floor$_signatures; }, -scm_ArraySeq$ofFloat_apply = ($this, $index) => { - return $this.$array13.data[$index]; +oncief_GraphByName$ = $rt_classWithoutFields(oncief_Function), +oncief_GraphByName$_MODULE$ = null, +oncief_GraphByName$_signatures = null, +oncief_GraphByName$_$callClinit = () => { + oncief_GraphByName$_$callClinit = $rt_eraseClinit(oncief_GraphByName$); + oncief_GraphByName$__clinit_(); }, -scm_ArraySeq$ofFloat_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_arraySeqHash$mFc$sp(suh_MurmurHash3$_MODULE$, $this.$array13); +oncief_GraphByName$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_GraphByName$; + oncief_GraphByName$_$callClinit(); + oncief_Function__init_(var$1); + oncief_GraphByName$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_GraphByName$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(5567); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTGraphRef(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_GRAPH0(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5567), $rt_s(6129)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6130), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_GraphByName$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -scm_ArraySeq$ofFloat_equals = ($this, $that) => { - if (!($that instanceof scm_ArraySeq$ofFloat)) - return scm_ArraySeq_equals($this, $that); - $that = $that; - return ju_Arrays_equals3($this.$array13, $that.$array13); +oncief_GraphByName$_name = $this => { + return $rt_s(6131); }, -scm_ArraySeq$ofFloat_iterator = $this => { - return sc_ArrayOps$ArrayIterator$mcF$sp__init_($this.$array13); +oncief_GraphByName$_signatures0 = $this => { + oncief_GraphByName$_$callClinit(); + return oncief_GraphByName$_signatures; }, -scm_ArraySeq$ofFloat_apply1 = ($this, $v1) => { - return jl_Float_valueOf(scm_ArraySeq$ofFloat_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +oncief_GraphByElementId$ = $rt_classWithoutFields(oncief_Function), +oncief_GraphByElementId$_MODULE$ = null, +oncief_GraphByElementId$_signatures = null, +oncief_GraphByElementId$_$callClinit = () => { + oncief_GraphByElementId$_$callClinit = $rt_eraseClinit(oncief_GraphByElementId$); + oncief_GraphByElementId$__clinit_(); }, -scm_ArraySeq$ofFloat_apply0 = ($this, $i) => { - return jl_Float_valueOf(scm_ArraySeq$ofFloat_apply($this, $i)); +oncief_GraphByElementId$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_GraphByElementId$; + oncief_GraphByElementId$_$callClinit(); + oncief_Function__init_(var$1); + oncief_GraphByElementId$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_GraphByElementId$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(6112); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTGraphRef(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_GRAPH0(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6112), $rt_s(6132)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6133), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_GraphByElementId$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -scm_ArraySeq$ofFloat_elemTag = $this => { - sr_ClassTag$_$callClinit(); - return sr_ClassTag$_Float(sr_ClassTag$_MODULE$); +oncief_GraphByElementId$_name = $this => { + return $rt_s(6134); }, -scm_ArraySeq$ofFloat_array = $this => { - return $this.$array13; +oncief_GraphByElementId$_signatures0 = $this => { + oncief_GraphByElementId$_$callClinit(); + return oncief_GraphByElementId$_signatures; +}, +oncief_GraphByElementId$_signatures1 = $this => { + return oncief_GraphByElementId$_signatures0($this); +}, +oncief_Haversin$ = $rt_classWithoutFields(oncief_Function), +oncief_Haversin$_MODULE$ = null, +oncief_Haversin$_signatures = null, +oncief_Haversin$_$callClinit = () => { + oncief_Haversin$_$callClinit = $rt_eraseClinit(oncief_Haversin$); + oncief_Haversin$__clinit_(); }; -function scm_ArraySeq$ofByte() { - scm_ArraySeq.call(this); - this.$array9 = null; -} -let scm_ArraySeq$ofByte_length = $this => { - return $this.$array9.data.length; +let oncief_Haversin$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Haversin$; + oncief_Haversin$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Haversin$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Haversin$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6135), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Haversin$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -scm_ArraySeq$ofByte_apply = ($this, $index) => { - return $this.$array9.data[$index]; +oncief_Haversin$_name = $this => { + return $rt_s(6136); }, -scm_ArraySeq$ofByte_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_arraySeqHash$mBc$sp(suh_MurmurHash3$_MODULE$, $this.$array9); +oncief_Haversin$_productArity = $this => { + return 0; }, -scm_ArraySeq$ofByte_equals = ($this, $that) => { - if (!($that instanceof scm_ArraySeq$ofByte)) - return scm_ArraySeq_equals($this, $that); - $that = $that; - return ju_Arrays_equals1($this.$array9, $that.$array9); +oncief_Haversin$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -scm_ArraySeq$ofByte_iterator = $this => { - return sc_ArrayOps$ArrayIterator$mcB$sp__init_($this.$array9); +oncief_Haversin$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -scm_ArraySeq$ofByte_apply1 = ($this, $v1) => { - return jl_Byte_valueOf(scm_ArraySeq$ofByte_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +oncief_Haversin$_hashCode = $this => { + return 296861870; }, -scm_ArraySeq$ofByte_apply0 = ($this, $i) => { - return jl_Byte_valueOf(scm_ArraySeq$ofByte_apply($this, $i)); +oncief_Haversin$_toString = $this => { + return $rt_s(6137); }, -scm_ArraySeq$ofByte_elemTag = $this => { - sr_ClassTag$_$callClinit(); - return sr_ClassTag$_Byte(sr_ClassTag$_MODULE$); +oncief_Haversin$_signatures0 = $this => { + oncief_Haversin$_$callClinit(); + return oncief_Haversin$_signatures; }, -scm_ArraySeq$ofByte_array = $this => { - return $this.$array9; -}; -function scm_ArraySeq$ofShort() { - scm_ArraySeq.call(this); - this.$array11 = null; -} -let scm_ArraySeq$ofShort_length = $this => { - return $this.$array11.data.length; +oncief_Head$ = $rt_classWithoutFields(oncief_Function), +oncief_Head$_MODULE$ = null, +oncief_Head$_name = null, +oncief_Head$_signatures0 = null, +oncief_Head$_$callClinit = () => { + oncief_Head$_$callClinit = $rt_eraseClinit(oncief_Head$); + oncief_Head$__clinit_(); }, -scm_ArraySeq$ofShort_apply = ($this, $index) => { - return $this.$array11.data[$index]; +oncief_Head$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$3, var$8, $x$2, $x$8, $x$6, var$12, var$13, var$14, var$15, $x$10; + var$1 = new oncief_Head$; + oncief_Head$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Head$_MODULE$ = var$1; + oncief_Head$_name = $rt_s(6138); + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Head$_MODULE$; + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(5409); + $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$12 = $rt_createArray(oncius_ListType, 1); + var$8 = var$12.data; + oncius_package$_$callClinit(); + $x$3 = oncius_package$_MODULE$; + var$8[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$12)); + $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$13 = s_Predef$_Map(s_Predef$_MODULE$); + var$14 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5409), $rt_s(6139)); + var$15 = sci_Map$_from(var$13, sr_ScalaRunTime$_wrapRefArray(var$14, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6140), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$15); + oncief_Head$_signatures0 = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -scm_ArraySeq$ofShort_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_arraySeqHash$mSc$sp(suh_MurmurHash3$_MODULE$, $this.$array11); +oncief_Head$_name0 = $this => { + oncief_Head$_$callClinit(); + return oncief_Head$_name; }, -scm_ArraySeq$ofShort_equals = ($this, $that) => { - if (!($that instanceof scm_ArraySeq$ofShort)) - return scm_ArraySeq_equals($this, $that); - $that = $that; - return ju_Arrays_equals4($this.$array11, $that.$array11); +oncief_Head$_signatures = $this => { + oncief_Head$_$callClinit(); + return oncief_Head$_signatures0; }, -scm_ArraySeq$ofShort_iterator = $this => { - return sc_ArrayOps$ArrayIterator$mcS$sp__init_($this.$array11); +oncief_Head$_productArity = $this => { + return 0; }, -scm_ArraySeq$ofShort_apply0 = ($this, $v1) => { - return jl_Short_valueOf(scm_ArraySeq$ofShort_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +oncief_Head$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -scm_ArraySeq$ofShort_apply1 = ($this, $i) => { - return jl_Short_valueOf(scm_ArraySeq$ofShort_apply($this, $i)); +oncief_Head$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -scm_ArraySeq$ofShort_elemTag = $this => { - sr_ClassTag$_$callClinit(); - return sr_ClassTag$_Short(sr_ClassTag$_MODULE$); +oncief_Head$_hashCode = $this => { + return 2245120; }, -scm_ArraySeq$ofShort_array = $this => { - return $this.$array11; -}; -function scm_ArraySeq$ofBoolean() { - scm_ArraySeq.call(this); - this.$array12 = null; -} -let scm_ArraySeq$ofBoolean_length = $this => { - return $this.$array12.data.length; +oncief_Head$_toString = $this => { + return $rt_s(6141); }, -scm_ArraySeq$ofBoolean_apply = ($this, $index) => { - return $this.$array12.data[$index]; +oncief_Head$_signatures1 = $this => { + return oncief_Head$_signatures($this); }, -scm_ArraySeq$ofBoolean_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_arraySeqHash$mZc$sp(suh_MurmurHash3$_MODULE$, $this.$array12); +oncief_Id$ = $rt_classWithoutFields(oncief_Function), +oncief_Id$_MODULE$ = null, +oncief_Id$_signatures = null, +oncief_Id$_$callClinit = () => { + oncief_Id$_$callClinit = $rt_eraseClinit(oncief_Id$); + oncief_Id$__clinit_(); }, -scm_ArraySeq$ofBoolean_equals = ($this, $that) => { - if (!($that instanceof scm_ArraySeq$ofBoolean)) - return scm_ArraySeq_equals($this, $that); - $that = $that; - return ju_Arrays_equals2($this.$array12, $that.$array12); +oncief_Id$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$10, $x$3, var$8, $x$2, $x$4, var$11, $x$9, var$13, var$14, var$15, $x$6; + var$1 = new oncief_Id$; + oncief_Id$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Id$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Id$_MODULE$; + $x$10 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + $x$10 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$9 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTNode(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + var$13 = $x$9.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$10, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = $x$10; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6142)); + var$13 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); + $x$9 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6143), $x$6, $x$3, $x$9, 1, $x$10, 0, $x$10, $x$10, var$13); + oncief_Id$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -scm_ArraySeq$ofBoolean_iterator = $this => { - return sc_ArrayOps$ArrayIterator$mcZ$sp__init_($this.$array12); +oncief_Id$_name = $this => { + return $rt_s(6144); }, -scm_ArraySeq$ofBoolean_apply1 = ($this, $v1) => { - return jl_Boolean_valueOf(scm_ArraySeq$ofBoolean_apply($this, sr_BoxesRunTime_unboxToInt($v1))); +oncief_Id$_productArity = $this => { + return 0; }, -scm_ArraySeq$ofBoolean_apply0 = ($this, $i) => { - return jl_Boolean_valueOf(scm_ArraySeq$ofBoolean_apply($this, $i)); +oncief_Id$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -scm_ArraySeq$ofBoolean_elemTag = $this => { - sr_ClassTag$_$callClinit(); - return sr_ClassTag$_Boolean(sr_ClassTag$_MODULE$); +oncief_Id$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -scm_ArraySeq$ofBoolean_array = $this => { - return $this.$array12; -}; -function scm_ArraySeq$ofUnit() { - scm_ArraySeq.call(this); - this.$array15 = null; -} -let scm_ArraySeq$ofUnit_length = $this => { - return $this.$array15.data.length; +oncief_Id$_hashCode = $this => { + return 2363; }, -scm_ArraySeq$ofUnit_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_arraySeqHash$mVc$sp(suh_MurmurHash3$_MODULE$, $this.$array15); +oncief_Id$_toString = $this => { + return $rt_s(6145); }, -scm_ArraySeq$ofUnit_equals = ($this, $that) => { - if (!($that instanceof scm_ArraySeq$ofUnit)) - return scm_ArraySeq_equals($this, $that); - $that = $that; - if ($this.$array15.data.length != $that.$array15.data.length) - return 0; - return 1; +oncief_Id$_signatures0 = $this => { + oncief_Id$_$callClinit(); + return oncief_Id$_signatures; }, -scm_ArraySeq$ofUnit_iterator = $this => { - return sc_ArrayOps$ArrayIterator$mcV$sp__init_($this.$array15); +oncief_IsEmpty$ = $rt_classWithoutFields(oncief_Function), +oncief_IsEmpty$_MODULE$ = null, +oncief_IsEmpty$_name = null, +oncief_IsEmpty$_signatures = null, +oncief_IsEmpty$_$callClinit = () => { + oncief_IsEmpty$_$callClinit = $rt_eraseClinit(oncief_IsEmpty$); + oncief_IsEmpty$__clinit_(); }, -scm_ArraySeq$ofUnit_apply0 = ($this, $v1) => { - sr_BoxesRunTime_unboxToInt($v1); - return sr_BoxedUnit_UNIT; +oncief_IsEmpty$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$3, $x$4, var$8, $x$2, $x$8, var$11, var$12, var$13, var$14, var$15, $x$6, var$17, $x$10; + var$1 = new oncief_IsEmpty$; + oncief_IsEmpty$_$callClinit(); + oncief_Function__init_(var$1); + oncief_IsEmpty$_MODULE$ = var$1; + oncief_IsEmpty$_name = $rt_s(6146); + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_IsEmpty$_MODULE$; + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + $x$4 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + var$12 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 3); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$6 = oncius_package$_MODULE$; + var$15[1] = oncius_package$_CTList($x$6, oncius_package$_CTAny($x$6)); + var$15[2] = oncius_package$_CTMap(oncius_package$_MODULE$); + var$12 = var$12.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$4, var$12, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = $x$4; + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_PREDICATE0(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$12 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6147)); + var$17 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$12, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6148), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$17); + oncief_IsEmpty$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -scm_ArraySeq$ofUnit_apply = ($this, $i) => { - return sr_BoxedUnit_UNIT; +oncief_IsEmpty$_name0 = $this => { + oncief_IsEmpty$_$callClinit(); + return oncief_IsEmpty$_name; }, -scm_ArraySeq$ofUnit_elemTag = $this => { - sr_ClassTag$_$callClinit(); - return sr_ClassTag$_Unit(sr_ClassTag$_MODULE$); +oncief_IsEmpty$_productArity = $this => { + return 0; }, -scm_ArraySeq$ofUnit_array = $this => { - return $this.$array15; -}; -function sc_Iterator$$anon$15() { - let a = this; sc_AbstractIterator.call(a); - a.$thatIterator = null; - a.$$outer10 = null; - a.$thisElem$1 = null; - a.$thatElem$1 = null; -} -let sc_Iterator$$anon$15_knownSize = $this => { - let $thisSize, $thatSize; - $thisSize = $this.$$outer10.$knownSize(); - $thatSize = sc_ArrayOps$ArrayIterator_knownSize($this.$thatIterator); - if ($thisSize >= 0 && $thatSize >= 0) - return jl_Math_max($thisSize, $thatSize); - return (-1); +oncief_IsEmpty$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -sc_Iterator$$anon$15_hasNext = $this => { - if (!$this.$$outer10.$hasNext() && !sc_ArrayOps$ArrayIterator_hasNext($this.$thatIterator)) - return 0; - return 1; +oncief_IsEmpty$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -sc_Iterator$$anon$15_next = $this => { - let var$1, var$2, var$3; - var$1 = $this.$$outer10.$hasNext(); - var$2 = sc_ArrayOps$ArrayIterator_hasNext($this.$thatIterator); - if (!var$1 && !var$2) { - var$3 = new ju_NoSuchElementException; - jl_Throwable__init_(var$3); - $rt_throw(var$3); - } - return s_Tuple2__init_(!var$1 ? $this.$thisElem$1 : $this.$$outer10.$next(), !var$2 ? $this.$thatElem$1 : $this.$thatIterator.$next()); +oncief_IsEmpty$_hashCode = $this => { + return (-572274141); }, -onih_Exceptions = $rt_classWithoutFields(), -onih_Exceptions_SILENT_UNCAUGHT_EXCEPTION_HANDLER = null, -onih_Exceptions_chain = ($initial, $current) => { - if ($initial === null) - return $current; - if ($current !== null && $initial !== $current) - jl_Throwable_addSuppressed($initial, $current); - return $initial; +oncief_IsEmpty$_toString = $this => { + return $rt_s(6149); }, -onih_Exceptions__clinit_ = () => { - onih_Exceptions_SILENT_UNCAUGHT_EXCEPTION_HANDLER = new onih_Exceptions$_clinit_$lambda$_17_0; +oncief_IsEmpty$_signatures0 = $this => { + oncief_IsEmpty$_$callClinit(); + return oncief_IsEmpty$_signatures; }, -oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_106_0 = $rt_classWithoutFields(), -oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_106_0_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - var$1 = var$1; - if (var$1 instanceof oncie_StringLiteral) { - var$2 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - if (sc_StringOps$_nonEmpty$extension(var$2, var$1.$value8)) { - var$3 = 1; - break a; - } - } - var$3 = 0; - } - return jl_Boolean_valueOf(var$3); -}; -function oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0() { - jl_Object.call(this); - this.$_0985 = null; -} -let oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0__init_0 = (var$0, var$1) => { - var$0.$_0985 = var$1; +oncief_IsNaN$ = $rt_classWithoutFields(oncief_Function), +oncief_IsNaN$_MODULE$ = null, +oncief_IsNaN$_signatures = null; +let oncief_IsNaN$_$callClinit = () => { + oncief_IsNaN$_$callClinit = $rt_eraseClinit(oncief_IsNaN$); + oncief_IsNaN$__clinit_(); }, -oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0__init_ = var_0 => { - let var_1 = new oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0(); - oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0__init_0(var_1, var_0); - return var_1; +oncief_IsNaN$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$10, $x$3, var$8, $x$2, $x$4, var$11, $x$8, var$13, var$14, var$15, $x$6; + var$1 = new oncief_IsNaN$; + oncief_IsNaN$_$callClinit(); + oncief_Function__init_(var$1); + oncief_IsNaN$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_IsNaN$_MODULE$; + $x$10 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + $x$10 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$13 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$10, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = $x$10; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6150)); + var$13 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6151), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$13); + oncief_IsNaN$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0_apply = var$0 => { - return var$0.$_0985; -}; -function oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1() { - jl_Object.call(this); - this.$_0374 = null; -} -let oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1__init_0 = (var$0, var$1) => { - var$0.$_0374 = var$1; +oncief_IsNaN$_name = $this => { + return $rt_s(6152); }, -oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1__init_ = var_0 => { - let var_1 = new oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1(); - oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1__init_0(var_1, var_0); - return var_1; +oncief_IsNaN$_productArity = $this => { + return 0; }, -oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_0374.$appended(var$1); -}; -function oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_0() { - jl_Object.call(this); - this.$_01016 = null; -} -let oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_0_apply = var$0 => { - return var$0.$_01016; -}; -function oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_1() { - jl_Object.call(this); - this.$_0764 = null; -} -let oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_1_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_0764.$appended(var$1); +oncief_IsNaN$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncia_SubqueryCall$reportParams$lambda$_10_0 = $rt_classWithoutFields(), -oncia_SubqueryCall$reportParams$lambda$_10_0_apply = (var$0, var$1) => { - return var$1.$reportParams0; -}; -function oncia_Union$$anonfun$checkRecursively$6$lambda$_50_0() { - jl_Object.call(this); - this.$_0369 = null; -} -let oncia_Union$$anonfun$checkRecursively$6$lambda$_50_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0369; - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_recordWorkingGraph(var$1, var$2.$workingGraph)); -}; -function oncia_Union$$anonfun$checkRecursively$6$lambda$_50_1() { - jl_Object.call(this); - this.$_01004 = null; -} -let oncia_Union$$anonfun$checkRecursively$6$lambda$_50_1_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_01004; - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6880), (var$1.$lhs()).$position())); +oncief_IsNaN$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_newChildScope(var$1)); -}; -function oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1() { - jl_Object.call(this); - this.$_0560 = null; -} -let oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0560; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = var$1.$variable20; +oncief_IsNaN$_hashCode = $this => { + return 70921041; +}, +oncief_IsNaN$_toString = $this => { + return $rt_s(6153); +}, +oncief_IsNaN$_signatures0 = $this => { + oncief_IsNaN$_$callClinit(); + return oncief_IsNaN$_signatures; +}, +oncief_Labels$ = $rt_classWithoutFields(oncief_Function), +oncief_Labels$_MODULE$ = null, +oncief_Labels$_signatures = null, +oncief_Labels$_$callClinit = () => { + oncief_Labels$_$callClinit = $rt_eraseClinit(oncief_Labels$); + oncief_Labels$__clinit_(); +}, +oncief_Labels$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14; + var$1 = new oncief_Labels$; + oncief_Labels$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Labels$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Labels$_MODULE$; + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_NodeType, 1); + var$11 = var$8.data; oncius_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(var$3, var$2.$declareVariable(var$4, var$1.$cypherType0.$invariant())); -}; -function oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2() { - jl_Object.call(this); - this.$_01119 = null; -} -let oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_01119; - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0; - var$4.$_0558 = var$2; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$1, var$4); + var$11[0] = oncius_package$_CTNode(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTString($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$14 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(s_Tuple2, 1); + var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6154)); + var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$11)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6155), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Labels$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncias_OptionSemanticChecking$ = $rt_classWithoutFields(), -oncias_OptionSemanticChecking$_MODULE$ = null, -oncias_OptionSemanticChecking$_$callClinit = () => { - oncias_OptionSemanticChecking$_$callClinit = $rt_eraseClinit(oncias_OptionSemanticChecking$); - oncias_OptionSemanticChecking$__clinit_(); +oncief_Labels$_name = $this => { + return $rt_s(5261); }, -oncias_OptionSemanticChecking$__clinit_ = () => { - let var$1; - var$1 = new oncias_OptionSemanticChecking$; - oncias_OptionSemanticChecking$_$callClinit(); - oncias_OptionSemanticChecking$_MODULE$ = var$1; +oncief_Labels$_productArity = $this => { + return 0; }, -oncias_OptionSemanticChecking$_foldSemanticCheck$extension = ($this, $$this, $check) => { - return s_Option_fold($$this, new oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0, $check); -}; -function oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_76_0() { - jl_Object.call(this); - this.$_0291 = null; -} -let oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_76_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0291; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; +oncief_Labels$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Labels$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Labels$_hashCode = $this => { + return (-2026550241); +}, +oncief_Labels$_toString = $this => { + return $rt_s(6156); +}, +oncief_Labels$_signatures0 = $this => { + oncief_Labels$_$callClinit(); + return oncief_Labels$_signatures; +}, +oncief_Last$ = $rt_classWithoutFields(oncief_Function), +oncief_Last$_MODULE$ = null, +oncief_Last$_signatures = null, +oncief_Last$_$callClinit = () => { + oncief_Last$_$callClinit = $rt_eraseClinit(oncief_Last$); + oncief_Last$__clinit_(); +}, +oncief_Last$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, var$10, var$11, $x$4, $x$6, $x$10, var$15; + var$1 = new oncief_Last$; + oncief_Last$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Last$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Last$_MODULE$; + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(5409); + $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ListType, 1); + var$11 = var$8.data; oncius_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$(var$2, var$1, (oncius_package$_CTNode(oncius_package$_MODULE$)).$invariant())); + $x$3 = oncius_package$_MODULE$; + var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); + $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$15 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(s_Tuple2, 1); + var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5409), $rt_s(6157)); + var$15 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$15, var$11)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6158), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$15); + oncief_Last$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncie_Expression$SemanticContext = $rt_classWithoutFields(0), -oncie_Expression$SemanticContext$Results$ = $rt_classWithoutFields(), -oncie_Expression$SemanticContext$Results$_MODULE$ = null, -oncie_Expression$SemanticContext$Results$_$callClinit = () => { - oncie_Expression$SemanticContext$Results$_$callClinit = $rt_eraseClinit(oncie_Expression$SemanticContext$Results$); - oncie_Expression$SemanticContext$Results$__clinit_(); +oncief_Last$_name = $this => { + return $rt_s(6159); }, -oncie_Expression$SemanticContext$Results$__clinit_ = () => { - let var$1; - var$1 = new oncie_Expression$SemanticContext$Results$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - oncie_Expression$SemanticContext$Results$_MODULE$ = var$1; -}; -function sc_StrictOptimizedSeqOps$intersect$lambda$_15_0() { - let a = this; jl_Object.call(a); - a.$_0788 = null; - a.$_1264 = null; -} -let sc_StrictOptimizedSeqOps$intersect$lambda$_15_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_0788; - var$3 = var$0.$_1264; - var$4 = new sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0; - var$4.$_01012 = var$3; - var$4.$_1348 = var$1; - return scm_HashMap_updateWith(var$2, var$1, var$4); -}; -function oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0() { - jl_Object.call(this); - this.$_0686 = null; -} -let oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0686; - var$3 = var$1.$typ; - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - if (var$3 !== null) { - if (!var$3.$equals(var$4)) - break b; - else - break c; - } - if (var$4 !== null) - break b; - } - break a; - } - var$2 = oncie_CoerceTo__init_(var$2, var$1.$typ); - } - return var$2; -}; -function oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1() { - jl_Object.call(this); - this.$_0126 = null; -} -let oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1_apply = var$0 => { - return var$0.$_0126; +oncief_Last$_signatures0 = $this => { + oncief_Last$_$callClinit(); + return oncief_Last$_signatures; +}, +oncief_Last$_productArity = $this => { + return 0; }, -oncie_Expression$SemanticContext$Simple$ = $rt_classWithoutFields(), -oncie_Expression$SemanticContext$Simple$_MODULE$ = null, -oncie_Expression$SemanticContext$Simple$_$callClinit = () => { - oncie_Expression$SemanticContext$Simple$_$callClinit = $rt_eraseClinit(oncie_Expression$SemanticContext$Simple$); - oncie_Expression$SemanticContext$Simple$__clinit_(); +oncief_Last$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncie_Expression$SemanticContext$Simple$__clinit_ = () => { - let var$1; - var$1 = new oncie_Expression$SemanticContext$Simple$; - oncie_Expression$SemanticContext$Simple$_$callClinit(); - oncie_Expression$SemanticContext$Simple$_MODULE$ = var$1; -}; -function oncias_package$$liftSemanticEitherFunc$lambda$_2_0() { - jl_Object.call(this); - this.$_0518 = null; -} -let oncias_package$$liftSemanticEitherFunc$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0518; - oncias_package$_$callClinit(); - var$2 = var$2.$apply2(var$1); - var$3 = new oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_0; - var$3.$_0683 = var$1; - return su_Either_fold(var$2, var$3, new oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_1); -}; -function oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0() { - jl_Object.call(this); - this.$_0691 = null; -} -let oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(var$0.$_0691.$isSubtypeOf(var$1)); -}; -function oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0() { - jl_Object.call(this); - this.$_0740 = null; -} -let oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(var$0.$_0740.$isSubtypeOf(var$1)); +oncief_Last$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_Transition$1 = $rt_classWithoutFields(ju_HashMap), -oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_0 = $rt_classWithoutFields(), -oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_AdministrationCommand$_$callClinit(); - return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(4910), var$1); -}; -function oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_1() { - jl_Object.call(this); - this.$_0994 = null; -} -let oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_1_apply = var$0 => { - let var$1; - var$1 = var$0.$_0994; - return oncias_SemanticAnalysisTooling_error$(var$1, oncia_AuthImpl_missingRequiredClauseErrorMessage$(var$1, $rt_s(4860)), var$1.$position151); +oncief_Last$_hashCode = $this => { + return 2361014; }, -oncia_ProjectingUnionAll = $rt_classWithoutFields(), -oncia_ProjectingUnionDistinct = $rt_classWithoutFields(); -function oncia_Union$checkNestedQuery$1$lambda$_44_0() { - let a = this; jl_Object.call(a); - a.$_0146 = null; - a.$_157 = null; -} -let oncia_Union$checkNestedQuery$1$lambda$_44_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0146; - var$2 = var$0.$_157; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncia_Union$$anonfun$checkRecursively$2$lambda$_43_0; - var$4.$_0665 = var$1; - var$4.$_1231 = var$2; - return oncias_SemanticCheck$_nestedCheck(var$3, var$4); -}; -function oncia_Union$checkSingleQuery$1$lambda$_41_0() { - let a = this; jl_Object.call(a); - a.$_0919 = null; - a.$_1320 = null; - a.$_2107 = null; -} -let oncia_Union$checkSingleQuery$1$lambda$_41_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0919; - var$2 = var$0.$_1320; - var$3 = var$0.$_2107; - var$2 = var$2.$apply2(var$3); - oncias_OptionSemanticChecking$_$callClinit(); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$5 = var$3.$clauses0.$collectFirst(new oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1); - var$6 = new oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_36_0; - var$6.$_0482 = var$1; - var$5 = oncias_SemanticCheck_chain$(var$2, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$5, var$6)); - var$2 = oncias_OptionSemanticChecking$_MODULE$; - oncia_SubqueryCall$_$callClinit(); - var$3 = oncia_SubqueryCall$_findTransactionalSubquery(oncia_SubqueryCall$_MODULE$, var$3); - var$4 = new oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_38_0; - var$4.$_01143 = var$1; - return oncias_SemanticCheck_chain$(var$5, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4)); -}; -function oncia_Union$defineUnionVariables$lambda$_32_0() { - jl_Object.call(this); - this.$_035 = null; -} -let oncia_Union$defineUnionVariables$lambda$_32_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = var$1; - var$2 = var$0.$_035; - var$3 = new sr_LazyRef; - oncias_SemanticCheckResult$_$callClinit(); - var$4 = sr_ObjectRef_create(oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_newChildScope(var$1))); - var$5 = (var$2.$lhs()).$finalScope((oncias_SemanticState_scope(var$1, var$2.$lhs())).$get1()); - var$6 = oncia_SingleQuery_finalScope(var$2.$rhs(), (oncias_SemanticState_scope(var$1, var$2.$rhs())).$get1()); +oncief_Last$_toString = $this => { + return $rt_s(6160); +}, +oncief_Last$_signatures1 = $this => { + return oncief_Last$_signatures0($this); +}, +oncief_Left$ = $rt_classWithoutFields(oncief_Function), +oncief_Left$_MODULE$ = null, +oncief_Left$_signatures = null, +oncief_Left$_$callClinit = () => { + oncief_Left$_$callClinit = $rt_eraseClinit(oncief_Left$); + oncief_Left$__clinit_(); +}, +oncief_Left$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; + var$1 = new oncief_Left$; + oncief_Left$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Left$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Left$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6161), $rt_s(6162)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); s_Predef$_$callClinit(); - var$7 = sci_Set$_newBuilder(s_Predef$_Set(s_Predef$_MODULE$)); - var$8 = var$2.$unionMappings(); - var$1 = new oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_0; - var$1.$_062 = var$2; - var$1.$_127 = var$7; - var$1.$_214 = var$3; - sci_List_foreach(var$8, var$1); - if (((var$2.$lhs()).$returnVariables()).$includeExisting1) { - var$1 = oncias_Scope_symbolNames(var$5); - var$8 = new oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_1; - var$8.$_0738 = var$2; - var$8.$_1251 = var$7; - var$8.$_282 = var$3; - var$1.$foreach(var$8); - } - if ((oncia_SingleQuery_returnVariables(var$2.$rhs())).$includeExisting1) { - var$1 = oncias_Scope_symbolNames(var$6); - var$8 = new oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_3; - var$8.$_01124 = var$2; - var$8.$_1375 = var$7; - var$8.$_2124 = var$3; - var$1.$foreach(var$8); - } - var$1 = sci_SetBuilderImpl_result(var$7); - var$2 = new oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_2; - var$2.$_0459 = var$5; - var$2.$_1160 = var$6; - var$2.$_256 = var$4; - var$1.$flatMap(var$2); - return oncias_SemanticCheckResult__init_(oncias_SemanticState_popScope(var$4.$elem.$state), var$4.$elem.$errors0); + var$7 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6161), $rt_s(6163)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6162), $rt_s(6164)); + var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6165), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); + oncief_Left$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_0 = $rt_classWithoutFields(), -oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_0_apply = (var$0, var$1) => { - return var$1.$name4; +oncief_Left$_name = $this => { + return $rt_s(6166); }, -oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_1 = $rt_classWithoutFields(), -oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_1_apply = (var$0, var$1) => { - return var$1.$name4; +oncief_Left$_productArity = $this => { + return 0; }, -oncia_ReadAdministrationCommand$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_ReadAdministrationCommand$$anonfun$1_applyOrElse = ($this, $x, $default) => { - return !$rt_isInstance($x, oncie_SubqueryExpression) ? s_PartialFunction$_fallback_fn : jl_Boolean_valueOf(1); -}; -function oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0() { - jl_Object.call(this); - this.$_01163 = null; -} -let oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01163; - return var$1 instanceof oncia_ExistsExpression ? var$2.$error2($rt_s(6881), var$1.$position16) : var$1 instanceof oncia_CollectExpression ? var$2.$error2($rt_s(6882), var$1.$position15) : var$1 instanceof oncia_CountExpression ? var$2.$error2($rt_s(6883), var$1.$position17) : var$1 instanceof oncie_PatternExpression ? var$2.$error2($rt_s(6884), oncie_PatternExpression_position(var$1)) : !(var$1 instanceof oncie_PatternComprehension) ? var$2.$error2($rt_s(6885), var$1.$position()) : var$2.$error2($rt_s(6886), - var$1.$position37); +oncief_Left$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1 = $rt_classWithoutFields(), -oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1_apply = var$0 => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +oncief_Left$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0 = $rt_classWithoutFields(), -oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0_apply = var$0 => { - oncias_OptionSemanticChecking$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); -}; -function oncias_SemanticExpressionCheck$$check$lambda$_48_0() { - let a = this; jl_Object.call(a); - a.$_0227 = null; - a.$_187 = null; -} -let oncias_SemanticExpressionCheck$$check$lambda$_48_0_apply = var$0 => { - return oncias_SemanticExpressionCheck$_$anonfun$check$1(var$0.$_0227, var$0.$_187); +oncief_Left$_hashCode = $this => { + return 2364455; }, -oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0_apply = (var$0, var$1, var$2) => { - let var$3; - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = new jl_UnsupportedOperationException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6887)), var$2); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$1); -}; -function oncias_SemanticExpressionCheck$$check$lambda$_53_0() { - jl_Object.call(this); - this.$_0568 = null; -} -let oncias_SemanticExpressionCheck$$check$lambda$_53_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0568; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, var$2, var$1); +oncief_Left$_toString = $this => { + return $rt_s(3704); +}, +oncief_Left$_signatures0 = $this => { + oncief_Left$_$callClinit(); + return oncief_Left$_signatures; +}, +oncief_Length$ = $rt_classWithoutFields(oncief_Function), +oncief_Length$_MODULE$ = null, +oncief_Length$_signatures = null, +oncief_Length$_$callClinit = () => { + oncief_Length$_$callClinit = $rt_eraseClinit(oncief_Length$); + oncief_Length$__clinit_(); }; -function oavra_RangeTransition() { - let a = this; oavra_Transition.call(a); - a.$from19 = 0; - a.$to2 = 0; -} -let oavra_RangeTransition__init_0 = ($this, $target, $from, $to) => { - oavra_Transition__init_($this, $target); - $this.$from19 = $from; - $this.$to2 = $to; +let oncief_Length$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Length$; + oncief_Length$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Length$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Length$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_PathType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTPath(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6167)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6168), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Length$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavra_RangeTransition__init_ = (var_0, var_1, var_2) => { - let var_3 = new oavra_RangeTransition(); - oavra_RangeTransition__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncief_Length$_name = $this => { + return $rt_s(6162); }, -oavra_RangeTransition_getSerializationType = $this => { - return 2; +oncief_Length$_productArity = $this => { + return 0; }, -oavra_RangeTransition_label = $this => { - return oavrm_IntervalSet_of($this.$from19, $this.$to2); +oncief_Length$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_RangeTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { - return $symbol >= $this.$from19 && $symbol <= $this.$to2 ? 1 : 0; +oncief_Length$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_RangeTransition_toString = $this => { - let var$1; - var$1 = jl_StringBuilder_appendCodePoint(jl_StringBuilder__init_0($rt_s(4445)), $this.$from19); - jl_AbstractStringBuilder_append(var$1, $rt_s(6379)); - var$1 = jl_StringBuilder_appendCodePoint(var$1, $this.$to2); - jl_AbstractStringBuilder_append(var$1, $rt_s(4445)); - return jl_AbstractStringBuilder_toString(var$1); +oncief_Length$_hashCode = $this => { + return (-2022496506); }, -oavra_AbstractPredicateTransition = $rt_classWithoutFields(oavra_Transition); -function oavra_PredicateTransition() { - let a = this; oavra_AbstractPredicateTransition.call(a); - a.$ruleIndex1 = 0; - a.$predIndex = 0; - a.$isCtxDependent = 0; -} -let oavra_PredicateTransition_getSerializationType = $this => { - return 4; +oncief_Length$_toString = $this => { + return $rt_s(6169); }, -oavra_PredicateTransition_isEpsilon = $this => { - return 1; +oncief_Length$_signatures0 = $this => { + oncief_Length$_$callClinit(); + return oncief_Length$_signatures; }, -oavra_PredicateTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { +oncief_Linenumber$ = $rt_classWithoutFields(oncief_Function), +oncief_Linenumber$_MODULE$ = null, +oncief_Linenumber$_signatures = null, +oncief_Linenumber$_$callClinit = () => { + oncief_Linenumber$_$callClinit = $rt_eraseClinit(oncief_Linenumber$); + oncief_Linenumber$__clinit_(); +}, +oncief_Linenumber$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncief_Linenumber$; + oncief_Linenumber$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Linenumber$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + var$5 = oncie_FunctionTypeSignature$_MODULE$; + var$6 = oncief_Linenumber$_MODULE$; + oncius_package$_$callClinit(); + var$7 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(6170), oncief_Category$_SCALAR(oncief_Category$_MODULE$)); + oncief_Linenumber$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Linenumber$_name = $this => { + return $rt_s(6171); +}, +oncief_Linenumber$_productArity = $this => { return 0; }, -oavra_PredicateTransition_getPredicate = $this => { - let var$1, var$2, var$3, var$4; - var$1 = new oavra_SemanticContext$Predicate; - var$2 = $this.$ruleIndex1; - var$3 = $this.$predIndex; - var$4 = $this.$isCtxDependent; - var$1.$ruleIndex2 = var$2; - var$1.$predIndex0 = var$3; - var$1.$isCtxDependent0 = var$4; - return var$1; +oncief_Linenumber$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_PredicateTransition_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append(var$1, $rt_s(6888)); - var$1 = jl_StringBuilder_append0(var$1, $this.$ruleIndex1); - jl_AbstractStringBuilder_append(var$1, $rt_s(91)); - return jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$1, $this.$predIndex)); -}; -function oavra_ActionTransition() { - let a = this; oavra_Transition.call(a); - a.$ruleIndex4 = 0; - a.$actionIndex0 = 0; - a.$isCtxDependent1 = 0; -} -let oavra_ActionTransition_getSerializationType = $this => { - return 6; +oncief_Linenumber$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_ActionTransition_isEpsilon = $this => { - return 1; +oncief_Linenumber$_hashCode = $this => { + return (-1714511779); }, -oavra_ActionTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { - return 0; +oncief_Linenumber$_toString = $this => { + return $rt_s(6172); }, -oavra_ActionTransition_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append(var$1, $rt_s(6889)); - var$1 = jl_StringBuilder_append0(var$1, $this.$ruleIndex4); - jl_AbstractStringBuilder_append(var$1, $rt_s(91)); - return jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$1, $this.$actionIndex0)); -}; -function oavra_SetTransition() { - oavra_Transition.call(this); - this.$set3 = null; -} -let oavra_SetTransition__init_ = ($this, $target, $set) => { - oavra_Transition__init_($this, $target); - if ($set === null) - $set = oavrm_IntervalSet_of0(0); - $this.$set3 = $set; +oncief_Linenumber$_signatures0 = $this => { + oncief_Linenumber$_$callClinit(); + return oncief_Linenumber$_signatures; }, -oavra_SetTransition__init_0 = (var_0, var_1) => { - let var_2 = new oavra_SetTransition(); - oavra_SetTransition__init_(var_2, var_0, var_1); - return var_2; +oncief_Log$ = $rt_classWithoutFields(oncief_Function), +oncief_Log$_MODULE$ = null, +oncief_Log$_signatures = null, +oncief_Log$_$callClinit = () => { + oncief_Log$_$callClinit = $rt_eraseClinit(oncief_Log$); + oncief_Log$__clinit_(); }, -oavra_SetTransition_getSerializationType = $this => { - return 7; +oncief_Log$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Log$; + oncief_Log$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Log$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Log$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6173)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6174), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Log$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavra_SetTransition_label = $this => { - return $this.$set3; +oncief_Log$_name = $this => { + return $rt_s(6175); }, -oavra_SetTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { - return oavrm_IntervalSet_contains($this.$set3, $symbol); +oncief_Log$_productArity = $this => { + return 0; }, -oavra_SetTransition_toString = $this => { - return oavrm_IntervalSet_toString0($this.$set3); +oncief_Log$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_NotSetTransition = $rt_classWithoutFields(oavra_SetTransition), -oavra_NotSetTransition_getSerializationType = $this => { - return 8; +oncief_Log$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_NotSetTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { - return $symbol >= $minVocabSymbol && $symbol <= $maxVocabSymbol && !oavra_SetTransition_matches($this, $symbol, $minVocabSymbol, $maxVocabSymbol) ? 1 : 0; +oncief_Log$_hashCode = $this => { + return 76580; }, -oavra_NotSetTransition_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append0(var$1, 126); - jl_AbstractStringBuilder_append(var$1, oavra_SetTransition_toString($this)); - return jl_AbstractStringBuilder_toString(var$1); +oncief_Log$_toString = $this => { + return $rt_s(6176); }, -oavra_WildcardTransition = $rt_classWithoutFields(oavra_Transition), -oavra_WildcardTransition_getSerializationType = $this => { - return 9; +oncief_Log$_signatures0 = $this => { + oncief_Log$_$callClinit(); + return oncief_Log$_signatures; }, -oavra_WildcardTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { - return $symbol >= $minVocabSymbol && $symbol <= $maxVocabSymbol ? 1 : 0; +oncief_Log10$ = $rt_classWithoutFields(oncief_Function), +oncief_Log10$_MODULE$ = null, +oncief_Log10$_signatures = null, +oncief_Log10$_$callClinit = () => { + oncief_Log10$_$callClinit = $rt_eraseClinit(oncief_Log10$); + oncief_Log10$__clinit_(); }, -oavra_WildcardTransition_toString = $this => { - return $rt_s(403); -}; -function oavra_PrecedencePredicateTransition() { - oavra_AbstractPredicateTransition.call(this); - this.$precedence0 = 0; -} -let oavra_PrecedencePredicateTransition_getSerializationType = $this => { - return 10; +oncief_Log10$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Log10$; + oncief_Log10$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Log10$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Log10$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6177)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6178), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Log10$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oavra_PrecedencePredicateTransition_isEpsilon = $this => { - return 1; +oncief_Log10$_name = $this => { + return $rt_s(6179); }, -oavra_PrecedencePredicateTransition_matches = ($this, $symbol, $minVocabSymbol, $maxVocabSymbol) => { +oncief_Log10$_productArity = $this => { return 0; }, -oavra_PrecedencePredicateTransition_getPredicate = $this => { - let var$1; - var$1 = new oavra_SemanticContext$PrecedencePredicate; - var$1.$precedence = $this.$precedence0; - return var$1; +oncief_Log10$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oavra_PrecedencePredicateTransition_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - var$1 = jl_StringBuilder_append0(var$1, $this.$precedence0); - jl_AbstractStringBuilder_append(var$1, $rt_s(6890)); - return jl_AbstractStringBuilder_toString(var$1); +oncief_Log10$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onih_Exceptions$_clinit_$lambda$_17_0 = $rt_classWithoutFields(); -function oncias_package$$liftSemanticErrorDefOption$lambda$_7_0() { - jl_Object.call(this); - this.$_0774 = null; -} -let oncias_package$$liftSemanticErrorDefOption$lambda$_7_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0774; - oncias_package$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - var$3 = new oncias_SemanticCheckResult; - s_Option$_$callClinit(); - oncias_SemanticCheckResult__init_0(var$3, var$1, sc_AbstractIterable_toVector(s_Option$_option2Iterable(s_Option$_MODULE$, var$2))); - return var$3; +oncief_Log10$_hashCode = $this => { + return 73594947; }, -oncia_PrivilegeCommand$stringifyExpression$1$lambda$_78_0 = $rt_classWithoutFields(), -oncia_PrivilegeCommand$stringifyExpression$1$lambda$_78_0_apply = (var$0, var$1) => { - return var$1.$asCanonicalStringVal(); +oncief_Log10$_toString = $this => { + return $rt_s(6180); }, -oncia_PrivilegeCommand$checkTypesInList$1$lambda$_80_0 = $rt_classWithoutFields(), -oncia_PrivilegeCommand$checkTypesInList$1$lambda$_80_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(!($rt_isInstance(var$1, oncie_Literal) ? 1 : !(var$1 instanceof oncie_ExplicitParameter) ? 0 : 1) ? 0 : 1); +oncief_Log10$_signatures0 = $this => { + oncief_Log10$_$callClinit(); + return oncief_Log10$_signatures; }, -onciu_RewritableJavascript$PROXY$9_239 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_239_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_Lower$ = $rt_classWithoutFields(oncief_Function), +oncief_Lower$_MODULE$ = null, +oncief_Lower$_signatures = null, +oncief_Lower$_$callClinit = () => { + oncief_Lower$_$callClinit = $rt_eraseClinit(oncief_Lower$); + oncief_Lower$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_240 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_240_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncief_Lower$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Lower$; + oncief_Lower$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Lower$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Lower$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6181)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6182), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Lower$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_RewritableJavascript$PROXY$9_241 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_241_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncief_Lower$_name = $this => { + return $rt_s(3634); +}; +let oncief_Lower$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_242 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_242_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncief_Lower$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_243 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_243_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncief_Lower$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_244 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_244_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncief_Lower$_hashCode = $this => { + return 73612001; }, -onciu_RewritableJavascript$PROXY$9_245 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_245_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncief_Lower$_toString = $this => { + return $rt_s(175); }, -onciu_RewritableJavascript$PROXY$9_246 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_246_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_Lower$_signatures0 = $this => { + oncief_Lower$_$callClinit(); + return oncief_Lower$_signatures; }, -onciu_RewritableJavascript$PROXY$9_247 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_247_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_LTrim$ = $rt_classWithoutFields(oncief_Function), +oncief_LTrim$_MODULE$ = null, +oncief_LTrim$_signatures = null, +oncief_LTrim$_$callClinit = () => { + oncief_LTrim$_$callClinit = $rt_eraseClinit(oncief_LTrim$); + oncief_LTrim$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_248 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_248_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncief_LTrim$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$14, $x$16, $x$10, $x$15, $x$17, $x$19, $x$21, $x$23; + var$1 = new oncief_LTrim$; + oncief_LTrim$_$callClinit(); + oncief_Function__init_(var$1); + oncief_LTrim$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); + var$4 = var$3.data; + $x$1 = oncief_LTrim$_MODULE$; + $x$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + $x$14 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6183)); + $x$16 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$14, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6184), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$16); + $x$14 = oncief_LTrim$_MODULE$; + $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1183), $rt_s(5424)]))); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 2); + var$11 = var$8.data; + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$11[1] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$16 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); + $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$3 = s_Predef$_Map(s_Predef$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 2); + var$11 = var$8.data; + var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6185)); + var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5424), $rt_s(6186)); + $x$6 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$23 = s_None$_MODULE$; + var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(6187), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$6); + oncief_LTrim$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_RewritableJavascript$PROXY$9_249 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_249_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncief_LTrim$_name = $this => { + return $rt_s(6188); }, -onciu_RewritableJavascript$PROXY$9_250 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_250_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncief_LTrim$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$9_251 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_251_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_LTrim$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$9_252 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_252_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_LTrim$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$9_253 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_253_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncief_LTrim$_hashCode = $this => { + return 72802958; }, -onciu_RewritableJavascript$PROXY$9_254 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_254_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_LTrim$_toString = $this => { + return $rt_s(6189); }, -onciu_RewritableJavascript$PROXY$9_255 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_255_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncief_LTrim$_signatures0 = $this => { + oncief_LTrim$_$callClinit(); + return oncief_LTrim$_signatures; }, -onciu_RewritableJavascript$PROXY$9_256 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_256_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_Max$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_Max$_MODULE$ = null, +oncief_Max$_signatures = null, +oncief_Max$_$callClinit = () => { + oncief_Max$_$callClinit = $rt_eraseClinit(oncief_Max$); + oncief_Max$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_257 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_257_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_Max$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Max$; + oncief_Max$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Max$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Max$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6096)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6190), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Max$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_RewritableJavascript$PROXY$9_258 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_258_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +oncief_Max$_name = $this => { + return $rt_s(6191); }, -onciu_RewritableJavascript$PROXY$9_259 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_259_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncief_Max$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_239 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_239_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Max$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_240 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$11_240_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Max$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_241 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_241_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Max$_hashCode = $this => { + return 77124; }, -onciu_RewritableJavascript$PROXY$11_242 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_242_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Max$_toString = $this => { + return $rt_s(6192); }, -onciu_RewritableJavascript$PROXY$11_243 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_243_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Max$_signatures0 = $this => { + oncief_Max$_$callClinit(); + return oncief_Max$_signatures; }, -onciu_RewritableJavascript$PROXY$11_244 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_244_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_Min$_MODULE$ = null, +oncief_Min$_signatures = null, +oncief_Min$_$callClinit = () => { + oncief_Min$_$callClinit = $rt_eraseClinit(oncief_Min$); + oncief_Min$__clinit_(); }, -onciu_RewritableJavascript$PROXY$11_245 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_245_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Min$; + oncief_Min$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Min$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Min$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6096)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6193), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Min$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_RewritableJavascript$PROXY$11_246 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_246_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$_name = $this => { + return $rt_s(6194); }, -onciu_RewritableJavascript$PROXY$11_247 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_247_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_248 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_248_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -onciu_RewritableJavascript$PROXY$11_249 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_249_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_250 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_250_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$_hashCode = $this => { + return 77362; }, -onciu_RewritableJavascript$PROXY$11_251 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_251_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$_toString = $this => { + return $rt_s(6195); }, -onciu_RewritableJavascript$PROXY$11_252 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_252_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Min$_signatures0 = $this => { + oncief_Min$_$callClinit(); + return oncief_Min$_signatures; }, -onciu_RewritableJavascript$PROXY$11_253 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_253_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Nodes$ = $rt_classWithoutFields(oncief_Function), +oncief_Nodes$_MODULE$ = null, +oncief_Nodes$_signatures = null, +oncief_Nodes$_$callClinit = () => { + oncief_Nodes$_$callClinit = $rt_eraseClinit(oncief_Nodes$); + oncief_Nodes$__clinit_(); }, -onciu_RewritableJavascript$PROXY$11_254 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_254_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Nodes$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14; + var$1 = new oncief_Nodes$; + oncief_Nodes$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Nodes$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Nodes$_MODULE$; + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_PathType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTPath(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTNode($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$14 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(s_Tuple2, 1); + var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6196)); + var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$11)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6197), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Nodes$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_RewritableJavascript$PROXY$11_255 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_255_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Nodes$_name = $this => { + return $rt_s(6198); }, -onciu_RewritableJavascript$PROXY$11_256 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_256_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Nodes$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_257 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_257_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Nodes$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}; +let oncief_Nodes$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_RewritableJavascript$PROXY$11_258 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_258_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Nodes$_hashCode = $this => { + return 75440785; }, -onciu_RewritableJavascript$PROXY$11_259 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_259_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Nodes$_toString = $this => { + return $rt_s(6199); }, -onciu_RewritableJavascript$PROXY$7_607 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_607_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_AutoExtractedParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +oncief_Nodes$_signatures0 = $this => { + oncief_Nodes$_$callClinit(); + return oncief_Nodes$_signatures; }, -onciu_RewritableJavascript$PROXY$7_646 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_646_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +oncief_Normalize$ = $rt_classWithoutFields(oncief_Function), +oncief_Normalize$_MODULE$ = null, +oncief_Normalize$_signatures = null, +oncief_Normalize$_$callClinit = () => { + oncief_Normalize$_$callClinit = $rt_eraseClinit(oncief_Normalize$); + oncief_Normalize$__clinit_(); }, -onciu_RewritableJavascript$PROXY$9_260 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_260_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncief_Normalize$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$15, $x$17, $x$10, $x$14, $x$16, $x$19, $x$20, $x$21, $x$23; + var$1 = new oncief_Normalize$; + oncief_Normalize$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Normalize$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); + var$4 = var$3.data; + $x$1 = oncief_Normalize$_MODULE$; + $x$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + $x$15 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6200)); + $x$17 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$15, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6201), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$17); + $x$14 = oncief_Normalize$_MODULE$; + $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1183), $rt_s(4686)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 2); + var$11 = var$8.data; + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$11[1] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); + $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$20 = new s_Some; + $x$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($x$3); + jl_StringBuilder_append(jl_StringBuilder_append($x$3, $rt_s(426)), $rt_s(6202)); + s_Some__init_0($x$20, jl_AbstractStringBuilder_toString($x$3)); + $x$21 = new s_Some; + $x$3 = s_Predef$_Map(s_Predef$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(4686), $rt_s(6203)); + s_Some__init_0($x$21, sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8))); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + $x$23 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(s_Tuple2, 2); + var$8 = var$11.data; + var$8[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6200)); + var$8[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(4686), $rt_s(6204)); + $x$6 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$23, var$11)); + var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(6205), $x$19, $x$16, oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$), 0, s_None$_MODULE$, 0, $x$20, $x$21, $x$6); + oncief_Normalize$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -onciu_RewritableJavascript$PROXY$9_261 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_261_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncief_Normalize$_name = $this => { + return $rt_s(426); }, -onciu_RewritableJavascript$PROXY$11_260 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_260_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Normalize$_productArity = $this => { + return 0; }, -onciu_RewritableJavascript$PROXY$11_261 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$11_261_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncief_Normalize$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -ju_LinkedHashMapIterator$EntryIterator = $rt_classWithoutFields(ju_LinkedHashMapIterator), -ju_LinkedHashMapIterator$EntryIterator_next = $this => { - ju_LinkedHashMapIterator_makeNext($this); - return $this.$currentEntry1; +oncief_Normalize$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Normalize$_hashCode = $this => { + return (-2054390035); +}, +oncief_Normalize$_toString = $this => { + return $rt_s(6206); +}, +oncief_Normalize$_signatures0 = $this => { + oncief_Normalize$_$callClinit(); + return oncief_Normalize$_signatures; +}, +oncief_Pi$ = $rt_classWithoutFields(oncief_Function), +oncief_Pi$_MODULE$ = null, +oncief_Pi$_signatures = null, +oncief_Pi$_$callClinit = () => { + oncief_Pi$_$callClinit = $rt_eraseClinit(oncief_Pi$); + oncief_Pi$__clinit_(); }, -oncipv_Cypher5ParserListener = $rt_classWithoutFields(0), -oncipv_AbstractCypher5AstBuilder = $rt_classWithoutFields(), -oncipv_AbstractCypher5AstBuilder_exitEveryRule = ($this, $ctx) => { - let var$2, var$3; - a: { - switch ($ctx.$getRuleIndex()) { - case 0: - break; - case 1: - oncipvaf_Cypher5AstBuilder_exitStatement($this, $ctx); - break a; - case 2: - oncipvaf_Cypher5AstBuilder_exitPeriodicCommitQueryHintFailure($this, $ctx); - break a; - case 3: - oncipvaf_Cypher5AstBuilder_exitRegularQuery($this, $ctx); - break a; - case 4: - oncipvaf_Cypher5AstBuilder_exitSingleQuery($this, $ctx); - break a; - case 5: - oncipvaf_Cypher5AstBuilder_exitClause($this, $ctx); - break a; - case 6: - oncipvaf_Cypher5AstBuilder_exitUseClause($this, $ctx); - break a; - case 7: - oncipvaf_Cypher5AstBuilder_exitGraphReference($this, $ctx); - break a; - case 8: - oncipvaf_Cypher5AstBuilder_exitFinishClause($this, $ctx); - break a; - case 9: - oncipvaf_Cypher5AstBuilder_exitReturnClause($this, $ctx); - break a; - case 10: - oncipvaf_Cypher5AstBuilder_exitReturnBody($this, $ctx); - break a; - case 11: - oncipvaf_Cypher5AstBuilder_exitReturnItem($this, $ctx); - break a; - case 12: - oncipvaf_Cypher5AstBuilder_exitReturnItems($this, $ctx); - break a; - case 13: - oncipvaf_Cypher5AstBuilder_exitOrderItem($this, $ctx); - break a; - case 14: - oncipvaf_Cypher5AstBuilder_exitAscToken($this, $ctx); - break a; - case 15: - oncipvaf_Cypher5AstBuilder_exitDescToken($this, $ctx); - break a; - case 16: - oncipvaf_Cypher5AstBuilder_exitOrderBy($this, $ctx); - break a; - case 17: - oncipvaf_Cypher5AstBuilder_exitSkip($this, $ctx); - break a; - case 18: - oncipvaf_Cypher5AstBuilder_exitLimit($this, $ctx); - break a; - case 19: - oncipvaf_Cypher5AstBuilder_exitWhereClause($this, $ctx); - break a; - case 20: - oncipvaf_Cypher5AstBuilder_exitWithClause($this, $ctx); - break a; - case 21: - oncipvaf_Cypher5AstBuilder_exitCreateClause($this, $ctx); - break a; - case 22: - oncipvaf_Cypher5AstBuilder_exitInsertClause($this, $ctx); - break a; - case 23: - oncipvaf_Cypher5AstBuilder_exitSetClause($this, $ctx); - break a; - case 24: - oncipvaf_Cypher5AstBuilder_exitSetItem($this, $ctx); - break a; - case 25: - oncipvaf_Cypher5AstBuilder_exitRemoveClause($this, $ctx); - break a; - case 26: - oncipvaf_Cypher5AstBuilder_exitRemoveItem($this, $ctx); - break a; - case 27: - oncipvaf_Cypher5AstBuilder_exitDeleteClause($this, $ctx); - break a; - case 28: - oncipvaf_Cypher5AstBuilder_exitMatchClause($this, $ctx); - break a; - case 29: - oncipvaf_Cypher5AstBuilder_exitMatchMode($this, $ctx); - break a; - case 30: - oncipvaf_Cypher5AstBuilder_exitHint($this, $ctx); - break a; - case 31: - oncipvaf_Cypher5AstBuilder_exitMergeClause($this, $ctx); - break a; - case 32: - oncipvaf_Cypher5AstBuilder_exitMergeAction($this, $ctx); - break a; - case 33: - oncipvaf_Cypher5AstBuilder_exitUnwindClause($this, $ctx); - break a; - case 34: - oncipvaf_Cypher5AstBuilder_exitCallClause($this, $ctx); - break a; - case 35: - oncipvaf_Cypher5AstBuilder_exitProcedureName($this, $ctx); - break a; - case 36: - oncipvaf_Cypher5AstBuilder_exitProcedureArgument($this, $ctx); - break a; - case 37: - oncipvaf_Cypher5AstBuilder_exitProcedureResultItem($this, $ctx); - break a; - case 38: - oncipvaf_Cypher5AstBuilder_exitLoadCSVClause($this, $ctx); - break a; - case 39: - oncipvaf_Cypher5AstBuilder_exitForeachClause($this, $ctx); - break a; - case 40: - oncipvaf_Cypher5AstBuilder_exitSubqueryClause($this, $ctx); - break a; - case 41: - oncipvaf_Cypher5AstBuilder_exitSubqueryScope($this, $ctx); - break a; - case 42: - oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsParameters($this, $ctx); - break a; - case 43: - oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsBatchParameters($this, $ctx); - break a; - case 44: - oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsErrorParameters($this, $ctx); - break a; - case 45: - oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsReportParameters($this, $ctx); - break a; - case 46: - oncipvaf_Cypher5AstBuilder_exitOrderBySkipLimitClause($this, $ctx); - break a; - case 47: - oncipvaf_Cypher5AstBuilder_exitPatternList($this, $ctx); - break a; - case 48: - oncipvaf_Cypher5AstBuilder_exitInsertPatternList($this, $ctx); - break a; - case 49: - oncipvaf_Cypher5AstBuilder_exitPattern($this, $ctx); - break a; - case 50: - oncipvaf_Cypher5AstBuilder_exitInsertPattern($this, $ctx); - break a; - case 51: - oncipvaf_Cypher5AstBuilder_exitQuantifier($this, $ctx); - break a; - case 52: - oncipvaf_Cypher5AstBuilder_exitAnonymousPattern($this, $ctx); - break a; - case 53: - oncipvaf_Cypher5AstBuilder_exitShortestPathPattern($this, $ctx); - break a; - case 54: - oncipvaf_Cypher5AstBuilder_exitPatternElement($this, $ctx); - break a; - case 55: - oncipvaf_Cypher5AstBuilder_exitSelector($this, $ctx); - break a; - case 56: - oncipvaf_Cypher5AstBuilder_exitGroupToken($this, $ctx); - break a; - case 57: - oncipvaf_Cypher5AstBuilder_exitPathToken($this, $ctx); - break a; - case 58: - oncipvaf_Cypher5AstBuilder_exitPathPatternNonEmpty($this, $ctx); - break a; - case 59: - oncipvaf_Cypher5AstBuilder_exitNodePattern($this, $ctx); - break a; - case 60: - oncipvaf_Cypher5AstBuilder_exitInsertNodePattern($this, $ctx); - break a; - case 61: - oncipvaf_Cypher5AstBuilder_exitParenthesizedPath($this, $ctx); - break a; - case 62: - oncipvaf_Cypher5AstBuilder_exitNodeLabels($this, $ctx); - break a; - case 63: - oncipvaf_Cypher5AstBuilder_exitNodeLabelsIs($this, $ctx); - break a; - case 64: - oncipvaf_Cypher5AstBuilder_exitDynamicExpression($this, $ctx); - break a; - case 65: - oncipvaf_Cypher5AstBuilder_exitDynamicAnyAllExpression($this, $ctx); - break a; - case 66: - oncipvaf_Cypher5AstBuilder_exitDynamicLabelType($this, $ctx); - break a; - case 67: - oncipvaf_Cypher5AstBuilder_exitLabelType($this, $ctx); - break a; - case 68: - oncipvaf_Cypher5AstBuilder_exitRelType($this, $ctx); - break a; - case 69: - oncipvaf_Cypher5AstBuilder_exitLabelOrRelType($this, $ctx); - break a; - case 70: - oncipvaf_Cypher5AstBuilder_exitProperties($this, $ctx); - break a; - case 71: - oncipvaf_Cypher5AstBuilder_exitRelationshipPattern($this, $ctx); - break a; - case 72: - oncipvaf_Cypher5AstBuilder_exitInsertRelationshipPattern($this, $ctx); - break a; - case 73: - oncipvaf_Cypher5AstBuilder_exitLeftArrow($this, $ctx); - break a; - case 74: - oncipvaf_Cypher5AstBuilder_exitArrowLine($this, $ctx); - break a; - case 75: - oncipvaf_Cypher5AstBuilder_exitRightArrow($this, $ctx); - break a; - case 76: - oncipvaf_Cypher5AstBuilder_exitPathLength($this, $ctx); - break a; - case 77: - oncipvaf_Cypher5AstBuilder_exitLabelExpression($this, $ctx); - break a; - case 78: - oncipvaf_Cypher5AstBuilder_exitLabelExpression4($this, $ctx); - break a; - case 79: - oncipvaf_Cypher5AstBuilder_exitLabelExpression4Is($this, $ctx); - break a; - case 80: - oncipvaf_Cypher5AstBuilder_exitLabelExpression3($this, $ctx); - break a; - case 81: - oncipvaf_Cypher5AstBuilder_exitLabelExpression3Is($this, $ctx); - break a; - case 82: - oncipvaf_Cypher5AstBuilder_exitLabelExpression2($this, $ctx); - break a; - case 83: - oncipvaf_Cypher5AstBuilder_exitLabelExpression2Is($this, $ctx); - break a; - case 84: - oncipvaf_Cypher5AstBuilder_exitLabelExpression1($this, $ctx); - break a; - case 85: - oncipvaf_Cypher5AstBuilder_exitLabelExpression1Is($this, $ctx); - break a; - case 86: - oncipvaf_Cypher5AstBuilder_exitInsertNodeLabelExpression($this, $ctx); - break a; - case 87: - oncipvaf_Cypher5AstBuilder_exitInsertRelationshipLabelExpression($this, $ctx); - break a; - case 88: - oncipvaf_Cypher5AstBuilder_exitExpression($this, $ctx); - break a; - case 89: - oncipvaf_Cypher5AstBuilder_exitExpression11($this, $ctx); - break a; - case 90: - oncipvaf_Cypher5AstBuilder_exitExpression10($this, $ctx); - break a; - case 91: - oncipvaf_Cypher5AstBuilder_exitExpression9($this, $ctx); - break a; - case 92: - oncipvaf_Cypher5AstBuilder_exitExpression8($this, $ctx); - break a; - case 93: - oncipvaf_Cypher5AstBuilder_exitExpression7($this, $ctx); - break a; - case 94: - oncipvaf_Cypher5AstBuilder_exitComparisonExpression6($this, $ctx); - break a; - case 95: - oncipvaf_Cypher5AstBuilder_exitNormalForm($this, $ctx); - break a; - case 96: - oncipvaf_Cypher5AstBuilder_exitExpression6($this, $ctx); - break a; - case 97: - oncipvaf_Cypher5AstBuilder_exitExpression5($this, $ctx); - break a; - case 98: - oncipvaf_Cypher5AstBuilder_exitExpression4($this, $ctx); - break a; - case 99: - oncipvaf_Cypher5AstBuilder_exitExpression3($this, $ctx); - break a; - case 100: - oncipvaf_Cypher5AstBuilder_exitExpression2($this, $ctx); - break a; - case 101: - oncipvaf_Cypher5AstBuilder_exitPostFix($this, $ctx); - break a; - case 102: - oncipvaf_Cypher5AstBuilder_exitProperty($this, $ctx); - break a; - case 103: - oncipvaf_Cypher5AstBuilder_exitDynamicProperty($this, $ctx); - break a; - case 104: - oncipvaf_Cypher5AstBuilder_exitPropertyExpression($this, $ctx); - break a; - case 105: - oncipvaf_Cypher5AstBuilder_exitDynamicPropertyExpression($this, $ctx); - break a; - case 106: - oncipvaf_Cypher5AstBuilder_exitExpression1($this, $ctx); - break a; - case 107: - oncipvaf_Cypher5AstBuilder_exitLiteral($this, $ctx); - break a; - case 108: - oncipvaf_Cypher5AstBuilder_exitCaseExpression($this, $ctx); - break a; - case 109: - oncipvaf_Cypher5AstBuilder_exitCaseAlternative($this, $ctx); - break a; - case 110: - oncipvaf_Cypher5AstBuilder_exitExtendedCaseExpression($this, $ctx); - break a; - case 111: - oncipvaf_Cypher5AstBuilder_exitExtendedCaseAlternative($this, $ctx); - break a; - case 112: - oncipvaf_Cypher5AstBuilder_exitExtendedWhen($this, $ctx); - break a; - case 113: - oncipvaf_Cypher5AstBuilder_exitListComprehension($this, $ctx); - break a; - case 114: - oncipvaf_Cypher5AstBuilder_exitPatternComprehension($this, $ctx); - break a; - case 115: - oncipvaf_Cypher5AstBuilder_exitReduceExpression($this, $ctx); - break a; - case 116: - oncipvaf_Cypher5AstBuilder_exitListItemsPredicate($this, $ctx); - break a; - case 117: - oncipvaf_Cypher5AstBuilder_exitNormalizeFunction($this, $ctx); - break a; - case 118: - oncipvaf_Cypher5AstBuilder_exitTrimFunction($this, $ctx); - break a; - case 119: - oncipvaf_Cypher5AstBuilder_exitPatternExpression($this, $ctx); - break a; - case 120: - oncipvaf_Cypher5AstBuilder_exitShortestPathExpression($this, $ctx); - break a; - case 121: - oncipvaf_Cypher5AstBuilder_exitParenthesizedExpression($this, $ctx); - break a; - case 122: - oncipvaf_Cypher5AstBuilder_exitMapProjection($this, $ctx); - break a; - case 123: - oncipvaf_Cypher5AstBuilder_exitMapProjectionElement($this, $ctx); - break a; - case 124: - oncipvaf_Cypher5AstBuilder_exitCountStar($this, $ctx); - break a; - case 125: - oncipvaf_Cypher5AstBuilder_exitExistsExpression($this, $ctx); - break a; - case 126: - oncipvaf_Cypher5AstBuilder_exitCountExpression($this, $ctx); - break a; - case 127: - oncipvaf_Cypher5AstBuilder_exitCollectExpression($this, $ctx); - break a; - case 128: - oncipvaf_Cypher5AstBuilder_exitNumberLiteral($this, $ctx); - break a; - case 129: - oncipvaf_Cypher5AstBuilder_exitSignedIntegerLiteral($this, $ctx); - break a; - case 130: - oncipvaf_Cypher5AstBuilder_exitListLiteral($this, $ctx); - break a; - case 131: - oncipvaf_Cypher5AstBuilder_exitPropertyKeyName($this, $ctx); - break a; - case 132: - oncipvaf_Cypher5AstBuilder_exitParameter($this, $ctx); - break a; - case 133: - oncipvaf_Cypher5AstBuilder_exitParameterName($this, $ctx); - break a; - case 134: - oncipvaf_Cypher5AstBuilder_exitFunctionInvocation($this, $ctx); - break a; - case 135: - oncipvaf_Cypher5AstBuilder_exitFunctionArgument($this, $ctx); - break a; - case 136: - oncipvaf_Cypher5AstBuilder_exitFunctionName($this, $ctx); - break a; - case 137: - oncipvaf_Cypher5AstBuilder_exitNamespace($this, $ctx); - break a; - case 138: - oncipvaf_Cypher5AstBuilder_exitVariable($this, $ctx); - break a; - case 139: - oncipvaf_Cypher5AstBuilder_exitNonEmptyNameList($this, $ctx); - break a; - case 140: - oncipvaf_Cypher5AstBuilder_exitType($this, $ctx); - break a; - case 141: - oncipvaf_Cypher5AstBuilder_exitTypePart($this, $ctx); - break a; - case 142: - oncipvaf_Cypher5AstBuilder_exitTypeName($this, $ctx); - break a; - case 143: - oncipvaf_Cypher5AstBuilder_exitTypeNullability($this, $ctx); - break a; - case 144: - oncipvaf_Cypher5AstBuilder_exitTypeListSuffix($this, $ctx); - break a; - case 145: - oncipvaf_Cypher5AstBuilder_exitCommand($this, $ctx); - break a; - case 146: - oncipvaf_Cypher5AstBuilder_exitCreateCommand($this, $ctx); - break a; - case 147: - oncipvaf_Cypher5AstBuilder_exitDropCommand($this, $ctx); - break a; - case 148: - oncipvaf_Cypher5AstBuilder_exitShowCommand($this, $ctx); - break a; - case 149: - oncipvaf_Cypher5AstBuilder_exitShowCommandYield($this, $ctx); - break a; - case 150: - oncipvaf_Cypher5AstBuilder_exitYieldItem($this, $ctx); - break a; - case 151: - oncipvaf_Cypher5AstBuilder_exitYieldSkip($this, $ctx); - break a; - case 152: - oncipvaf_Cypher5AstBuilder_exitYieldLimit($this, $ctx); - break a; - case 153: - oncipvaf_Cypher5AstBuilder_exitYieldClause($this, $ctx); - break a; - case 154: - oncipvaf_Cypher5AstBuilder_exitCommandOptions($this, $ctx); - break a; - case 155: - oncipvaf_Cypher5AstBuilder_exitTerminateCommand($this, $ctx); - break a; - case 156: - oncipvaf_Cypher5AstBuilder_exitComposableCommandClauses($this, $ctx); - break a; - case 157: - oncipvaf_Cypher5AstBuilder_exitComposableShowCommandClauses($this, $ctx); - break a; - case 158: - oncipvaf_Cypher5AstBuilder_exitShowBriefAndYield($this, $ctx); - break a; - case 159: - oncipvaf_Cypher5AstBuilder_exitShowIndexCommand($this, $ctx); - break a; - case 160: - oncipvaf_Cypher5AstBuilder_exitShowIndexesAllowBrief($this, $ctx); - break a; - case 161: - oncipvaf_Cypher5AstBuilder_exitShowIndexesNoBrief($this, $ctx); - break a; - case 162: - oncipvaf_Cypher5AstBuilder_exitShowConstraintCommand($this, $ctx); - break a; - case 163: - oncipvaf_Cypher5AstBuilder_exitConstraintAllowYieldType($this, $ctx); - break a; - case 164: - oncipvaf_Cypher5AstBuilder_exitConstraintExistType($this, $ctx); - break a; - case 165: - oncipvaf_Cypher5AstBuilder_exitConstraintBriefAndYieldType($this, $ctx); - break a; - case 166: - oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowBriefAndYield($this, $ctx); - break a; - case 167: - oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowBrief($this, $ctx); - break a; - case 168: - oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowYield($this, $ctx); - break a; - case 169: - oncipvaf_Cypher5AstBuilder_exitShowProcedures($this, $ctx); - break a; - case 170: - oncipvaf_Cypher5AstBuilder_exitShowFunctions($this, $ctx); - break a; - case 171: - oncipvaf_Cypher5AstBuilder_exitFunctionToken($this, $ctx); - break a; - case 172: - oncipvaf_Cypher5AstBuilder_exitExecutableBy($this, $ctx); - break a; - case 173: - oncipvaf_Cypher5AstBuilder_exitShowFunctionsType($this, $ctx); - break a; - case 174: - oncipvaf_Cypher5AstBuilder_exitShowTransactions($this, $ctx); - break a; - case 175: - oncipvaf_Cypher5AstBuilder_exitTerminateTransactions($this, $ctx); - break a; - case 176: - oncipvaf_Cypher5AstBuilder_exitShowSettings($this, $ctx); - break a; - case 177: - oncipvaf_Cypher5AstBuilder_exitSettingToken($this, $ctx); - break a; - case 178: - oncipvaf_Cypher5AstBuilder_exitNamesAndClauses($this, $ctx); - break a; - case 179: - oncipvaf_Cypher5AstBuilder_exitStringsOrExpression($this, $ctx); - break a; - case 180: - oncipvaf_Cypher5AstBuilder_exitCommandNodePattern($this, $ctx); - break a; - case 181: - oncipvaf_Cypher5AstBuilder_exitCommandRelPattern($this, $ctx); - break a; - case 182: - oncipvaf_Cypher5AstBuilder_exitCreateConstraint($this, $ctx); - break a; - case 183: - oncipvaf_Cypher5AstBuilder_exitConstraintType($this, $ctx); - break a; - case 184: - oncipvaf_Cypher5AstBuilder_exitDropConstraint($this, $ctx); - break a; - case 185: - oncipvaf_Cypher5AstBuilder_exitCreateIndex($this, $ctx); - break a; - case 186: - oncipvaf_Cypher5AstBuilder_exitOldCreateIndex($this, $ctx); - break a; - case 187: - oncipvaf_Cypher5AstBuilder_exitCreateIndex_($this, $ctx); - break a; - case 188: - oncipvaf_Cypher5AstBuilder_exitCreateFulltextIndex($this, $ctx); - break a; - case 189: - oncipvaf_Cypher5AstBuilder_exitFulltextNodePattern($this, $ctx); - break a; - case 190: - oncipvaf_Cypher5AstBuilder_exitFulltextRelPattern($this, $ctx); - break a; - case 191: - oncipvaf_Cypher5AstBuilder_exitCreateLookupIndex($this, $ctx); - break a; - case 192: - oncipvaf_Cypher5AstBuilder_exitLookupIndexNodePattern($this, $ctx); - break a; - case 193: - oncipvaf_Cypher5AstBuilder_exitLookupIndexRelPattern($this, $ctx); - break a; - case 194: - oncipvaf_Cypher5AstBuilder_exitDropIndex($this, $ctx); - break a; - case 195: - oncipvaf_Cypher5AstBuilder_exitPropertyList($this, $ctx); - break a; - case 196: - oncipvaf_Cypher5AstBuilder_exitEnclosedPropertyList($this, $ctx); - break a; - case 197: - oncipvaf_Cypher5AstBuilder_exitAlterCommand($this, $ctx); - break a; - case 198: - oncipvaf_Cypher5AstBuilder_exitRenameCommand($this, $ctx); - break a; - case 199: - oncipvaf_Cypher5AstBuilder_exitGrantCommand($this, $ctx); - break a; - case 200: - oncipvaf_Cypher5AstBuilder_exitDenyCommand($this, $ctx); - break a; - case 201: - oncipvaf_Cypher5AstBuilder_exitRevokeCommand($this, $ctx); - break a; - case 202: - oncipvaf_Cypher5AstBuilder_exitUserNames($this, $ctx); - break a; - case 203: - oncipvaf_Cypher5AstBuilder_exitRoleNames($this, $ctx); - break a; - case 204: - oncipvaf_Cypher5AstBuilder_exitRoleToken($this, $ctx); - break a; - case 205: - oncipvaf_Cypher5AstBuilder_exitEnableServerCommand($this, $ctx); - break a; - case 206: - oncipvaf_Cypher5AstBuilder_exitAlterServer($this, $ctx); - break a; - case 207: - oncipvaf_Cypher5AstBuilder_exitRenameServer($this, $ctx); - break a; - case 208: - oncipvaf_Cypher5AstBuilder_exitDropServer($this, $ctx); - break a; - case 209: - oncipvaf_Cypher5AstBuilder_exitShowServers($this, $ctx); - break a; - case 210: - oncipvaf_Cypher5AstBuilder_exitAllocationCommand($this, $ctx); - break a; - case 211: - oncipvaf_Cypher5AstBuilder_exitDeallocateDatabaseFromServers($this, $ctx); - break a; - case 212: - oncipvaf_Cypher5AstBuilder_exitReallocateDatabases($this, $ctx); - break a; - case 213: - oncipvaf_Cypher5AstBuilder_exitCreateRole($this, $ctx); - break a; - case 214: - oncipvaf_Cypher5AstBuilder_exitDropRole($this, $ctx); - break a; - case 215: - oncipvaf_Cypher5AstBuilder_exitRenameRole($this, $ctx); - break a; - case 216: - oncipvaf_Cypher5AstBuilder_exitShowRoles($this, $ctx); - break a; - case 217: - oncipvaf_Cypher5AstBuilder_exitGrantRole($this, $ctx); - break a; - case 218: - oncipvaf_Cypher5AstBuilder_exitRevokeRole($this, $ctx); - break a; - case 219: - oncipvaf_Cypher5AstBuilder_exitCreateUser($this, $ctx); - break a; - case 220: - oncipvaf_Cypher5AstBuilder_exitDropUser($this, $ctx); - break a; - case 221: - oncipvaf_Cypher5AstBuilder_exitRenameUser($this, $ctx); - break a; - case 222: - oncipvaf_Cypher5AstBuilder_exitAlterCurrentUser($this, $ctx); - break a; - case 223: - oncipvaf_Cypher5AstBuilder_exitAlterUser($this, $ctx); - break a; - case 224: - oncipvaf_Cypher5AstBuilder_exitRemoveNamedProvider($this, $ctx); - break a; - case 225: - oncipvaf_Cypher5AstBuilder_exitPassword($this, $ctx); - break a; - case 226: - oncipvaf_Cypher5AstBuilder_exitPasswordOnly($this, $ctx); - break a; - case 227: - oncipvaf_Cypher5AstBuilder_exitPasswordExpression($this, $ctx); - break a; - case 228: - oncipvaf_Cypher5AstBuilder_exitPasswordChangeRequired($this, $ctx); - break a; - case 229: - oncipvaf_Cypher5AstBuilder_exitUserStatus($this, $ctx); - break a; - case 230: - oncipvaf_Cypher5AstBuilder_exitHomeDatabase($this, $ctx); - break a; - case 231: - oncipvaf_Cypher5AstBuilder_exitSetAuthClause($this, $ctx); - break a; - case 232: - oncipvaf_Cypher5AstBuilder_exitUserAuthAttribute($this, $ctx); - break a; - case 233: - oncipvaf_Cypher5AstBuilder_exitShowUsers($this, $ctx); - break a; - case 234: - oncipvaf_Cypher5AstBuilder_exitShowCurrentUser($this, $ctx); - break a; - case 235: - oncipvaf_Cypher5AstBuilder_exitShowSupportedPrivileges($this, $ctx); - break a; - case 236: - oncipvaf_Cypher5AstBuilder_exitShowPrivileges($this, $ctx); - break a; - case 237: - oncipvaf_Cypher5AstBuilder_exitShowRolePrivileges($this, $ctx); - break a; - case 238: - oncipvaf_Cypher5AstBuilder_exitShowUserPrivileges($this, $ctx); - break a; - case 239: - oncipvaf_Cypher5AstBuilder_exitPrivilegeAsCommand($this, $ctx); - break a; - case 240: - oncipvaf_Cypher5AstBuilder_exitPrivilegeToken($this, $ctx); - break a; - case 241: - oncipvaf_Cypher5AstBuilder_exitPrivilege($this, $ctx); - break a; - case 242: - oncipvaf_Cypher5AstBuilder_exitAllPrivilege($this, $ctx); - break a; - case 243: - oncipvaf_Cypher5AstBuilder_exitAllPrivilegeType($this, $ctx); - break a; - case 244: - oncipvaf_Cypher5AstBuilder_exitAllPrivilegeTarget($this, $ctx); - break a; - case 245: - oncipvaf_Cypher5AstBuilder_exitCreatePrivilege($this, $ctx); - break a; - case 246: - oncipvaf_Cypher5AstBuilder_exitCreatePrivilegeForDatabase($this, $ctx); - break a; - case 247: - oncipvaf_Cypher5AstBuilder_exitCreateNodePrivilegeToken($this, $ctx); - break a; - case 248: - oncipvaf_Cypher5AstBuilder_exitCreateRelPrivilegeToken($this, $ctx); - break a; - case 249: - oncipvaf_Cypher5AstBuilder_exitCreatePropertyPrivilegeToken($this, $ctx); - break a; - case 250: - oncipvaf_Cypher5AstBuilder_exitActionForDBMS($this, $ctx); - break a; - case 251: - oncipvaf_Cypher5AstBuilder_exitDropPrivilege($this, $ctx); - break a; - case 252: - oncipvaf_Cypher5AstBuilder_exitLoadPrivilege($this, $ctx); - break a; - case 253: - oncipvaf_Cypher5AstBuilder_exitShowPrivilege($this, $ctx); - break a; - case 254: - oncipvaf_Cypher5AstBuilder_exitSetPrivilege($this, $ctx); - break a; - case 255: - oncipvaf_Cypher5AstBuilder_exitPasswordToken($this, $ctx); - break a; - case 256: - oncipvaf_Cypher5AstBuilder_exitRemovePrivilege($this, $ctx); - break a; - case 257: - oncipvaf_Cypher5AstBuilder_exitWritePrivilege($this, $ctx); - break a; - case 258: - oncipvaf_Cypher5AstBuilder_exitDatabasePrivilege($this, $ctx); - break a; - case 259: - oncipvaf_Cypher5AstBuilder_exitDbmsPrivilege($this, $ctx); - break a; - case 260: - oncipvaf_Cypher5AstBuilder_exitDbmsPrivilegeExecute($this, $ctx); - break a; - case 261: - oncipvaf_Cypher5AstBuilder_exitAdminToken($this, $ctx); - break a; - case 262: - oncipvaf_Cypher5AstBuilder_exitProcedureToken($this, $ctx); - break a; - case 263: - oncipvaf_Cypher5AstBuilder_exitIndexToken($this, $ctx); - break a; - case 264: - oncipvaf_Cypher5AstBuilder_exitConstraintToken($this, $ctx); - break a; - case 265: - oncipvaf_Cypher5AstBuilder_exitTransactionToken($this, $ctx); - break a; - case 266: - oncipvaf_Cypher5AstBuilder_exitUserQualifier($this, $ctx); - break a; - case 267: - oncipvaf_Cypher5AstBuilder_exitExecuteFunctionQualifier($this, $ctx); - break a; - case 268: - oncipvaf_Cypher5AstBuilder_exitExecuteProcedureQualifier($this, $ctx); - break a; - case 269: - oncipvaf_Cypher5AstBuilder_exitSettingQualifier($this, $ctx); - break a; - case 270: - oncipvaf_Cypher5AstBuilder_exitGlobs($this, $ctx); - break a; - case 271: - oncipvaf_Cypher5AstBuilder_exitGlob($this, $ctx); - break a; - case 272: - oncipvaf_Cypher5AstBuilder_exitGlobRecursive($this, $ctx); - break a; - case 273: - oncipvaf_Cypher5AstBuilder_exitGlobPart($this, $ctx); - break a; - case 274: - oncipvaf_Cypher5AstBuilder_exitQualifiedGraphPrivilegesWithProperty($this, $ctx); - break a; - case 275: - oncipvaf_Cypher5AstBuilder_exitQualifiedGraphPrivileges($this, $ctx); - break a; - case 276: - oncipvaf_Cypher5AstBuilder_exitLabelsResource($this, $ctx); - break a; - case 277: - oncipvaf_Cypher5AstBuilder_exitPropertiesResource($this, $ctx); - break a; - case 278: - oncipvaf_Cypher5AstBuilder_exitNonEmptyStringList($this, $ctx); - break a; - case 279: - oncipvaf_Cypher5AstBuilder_exitGraphQualifier($this, $ctx); - break a; - case 280: - oncipvaf_Cypher5AstBuilder_exitGraphQualifierToken($this, $ctx); - break a; - case 281: - oncipvaf_Cypher5AstBuilder_exitRelToken($this, $ctx); - break a; - case 282: - oncipvaf_Cypher5AstBuilder_exitElementToken($this, $ctx); - break a; - case 283: - oncipvaf_Cypher5AstBuilder_exitNodeToken($this, $ctx); - break a; - case 284: - oncipvaf_Cypher5AstBuilder_exitDatabaseScope($this, $ctx); - break a; - case 285: - oncipvaf_Cypher5AstBuilder_exitGraphScope($this, $ctx); - break a; - case 286: - oncipvaf_Cypher5AstBuilder_exitCreateCompositeDatabase($this, $ctx); - break a; - case 287: - oncipvaf_Cypher5AstBuilder_exitCreateDatabase($this, $ctx); - break a; - case 288: - oncipvaf_Cypher5AstBuilder_exitPrimaryTopology($this, $ctx); - break a; - case 289: - oncipvaf_Cypher5AstBuilder_exitPrimaryToken($this, $ctx); - break a; - case 290: - oncipvaf_Cypher5AstBuilder_exitSecondaryTopology($this, $ctx); - break a; - case 291: - oncipvaf_Cypher5AstBuilder_exitSecondaryToken($this, $ctx); - break a; - case 292: - oncipvaf_Cypher5AstBuilder_exitDropDatabase($this, $ctx); - break a; - case 293: - oncipvaf_Cypher5AstBuilder_exitAliasAction($this, $ctx); - break a; - case 294: - oncipvaf_Cypher5AstBuilder_exitAlterDatabase($this, $ctx); - break a; - case 295: - oncipvaf_Cypher5AstBuilder_exitAlterDatabaseAccess($this, $ctx); - break a; - case 296: - oncipvaf_Cypher5AstBuilder_exitAlterDatabaseTopology($this, $ctx); - break a; - case 297: - oncipvaf_Cypher5AstBuilder_exitAlterDatabaseOption($this, $ctx); - break a; - case 298: - oncipvaf_Cypher5AstBuilder_exitStartDatabase($this, $ctx); - break a; - case 299: - oncipvaf_Cypher5AstBuilder_exitStopDatabase($this, $ctx); - break a; - case 300: - oncipvaf_Cypher5AstBuilder_exitWaitClause($this, $ctx); - break a; - case 301: - oncipvaf_Cypher5AstBuilder_exitSecondsToken($this, $ctx); - break a; - case 302: - oncipvaf_Cypher5AstBuilder_exitShowDatabase($this, $ctx); - break a; - case 303: - oncipvaf_Cypher5AstBuilder_exitAliasName($this, $ctx); - break a; - case 304: - oncipvaf_Cypher5AstBuilder_exitDatabaseName($this, $ctx); - break a; - case 305: - oncipvaf_Cypher5AstBuilder_exitCreateAlias($this, $ctx); - break a; - case 306: - oncipvaf_Cypher5AstBuilder_exitDropAlias($this, $ctx); - break a; - case 307: - oncipvaf_Cypher5AstBuilder_exitAlterAlias($this, $ctx); - break a; - case 308: - oncipvaf_Cypher5AstBuilder_exitAlterAliasTarget($this, $ctx); - break a; - case 309: - oncipvaf_Cypher5AstBuilder_exitAlterAliasUser($this, $ctx); - break a; - case 310: - oncipvaf_Cypher5AstBuilder_exitAlterAliasPassword($this, $ctx); - break a; - case 311: - oncipvaf_Cypher5AstBuilder_exitAlterAliasDriver($this, $ctx); - break a; - case 312: - oncipvaf_Cypher5AstBuilder_exitAlterAliasProperties($this, $ctx); - break a; - case 313: - oncipvaf_Cypher5AstBuilder_exitShowAliases($this, $ctx); - break a; - case 314: - oncipvaf_Cypher5AstBuilder_exitSymbolicNameOrStringParameter($this, $ctx); - break a; - case 315: - oncipvaf_Cypher5AstBuilder_exitCommandNameExpression($this, $ctx); - break a; - case 316: - oncipvaf_Cypher5AstBuilder_exitSymbolicNameOrStringParameterList($this, $ctx); - break a; - case 317: - oncipvaf_Cypher5AstBuilder_exitSymbolicAliasNameList($this, $ctx); - break a; - case 318: - oncipvaf_Cypher5AstBuilder_exitSymbolicAliasNameOrParameter($this, $ctx); - break a; - case 319: - oncipvaf_Cypher5AstBuilder_exitSymbolicAliasName($this, $ctx); - break a; - case 320: - oncipvaf_Cypher5AstBuilder_exitStringListLiteral($this, $ctx); - break a; - case 321: - oncipvaf_Cypher5AstBuilder_exitStringList($this, $ctx); - break a; - case 322: - oncipvaf_Cypher5AstBuilder_exitStringLiteral($this, $ctx); - break a; - case 323: - oncipvaf_Cypher5AstBuilder_exitStringOrParameterExpression($this, $ctx); - break a; - case 324: - oncipvaf_Cypher5AstBuilder_exitStringOrParameter($this, $ctx); - break a; - case 325: - oncipvaf_Cypher5AstBuilder_exitMapOrParameter($this, $ctx); - break a; - case 326: - oncipvaf_Cypher5AstBuilder_exitMap($this, $ctx); - break a; - case 327: - oncipvaf_Cypher5AstBuilder_exitSymbolicNameString($this, $ctx); - break a; - case 328: - oncipvaf_Cypher5AstBuilder_exitEscapedSymbolicNameString($this, $ctx); - break a; - case 329: - oncipvaf_Cypher5AstBuilder_exitUnescapedSymbolicNameString($this, $ctx); - break a; - case 330: - oncipvaf_Cypher5AstBuilder_exitSymbolicLabelNameString($this, $ctx); - break a; - case 331: - oncipvaf_Cypher5AstBuilder_exitUnescapedLabelSymbolicNameString($this, $ctx); - break a; - case 332: - oncipvaf_Cypher5AstBuilder_exitUnescapedLabelSymbolicNameString_($this, $ctx); - break a; - case 333: - oncipvaf_Cypher5AstBuilder_exitEndOfFile($this, $ctx); - break a; - default: - var$2 = new jl_IllegalStateException; - var$3 = $ctx.$getRuleIndex(); - $ctx = jl_StringBuilder__init_(); - jl_StringBuilder_append0(jl_StringBuilder_append($ctx, $rt_s(6891)), var$3); - jl_IllegalStateException__init_(var$2, jl_StringBuilder_toString($ctx)); - $rt_throw(var$2); - } - oncipvaf_Cypher5AstBuilder_exitStatements($this, $ctx); - } +oncief_Pi$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncief_Pi$; + oncief_Pi$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Pi$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + var$5 = oncie_FunctionTypeSignature$_MODULE$; + var$6 = oncief_Pi$_MODULE$; + oncius_package$_$callClinit(); + var$7 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(6207), oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$)); + oncief_Pi$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_LiteralBuilder0 = $rt_classWithoutFields(0), -oncipvaf_LabelExpressionBuilder = $rt_classWithoutFields(0), -oncipvaf_LabelExpressionBuilder_exitLabelExpression10 = ($this, $ctx) => { - let $parent, $parent_0, $isLabel, var$5, $isLabel_0, var$7, var$8; - a: { - if ($ctx instanceof oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext) - $parent = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelExpression4Context), 0)).$ast0; - else if ($ctx instanceof oncipv_Cypher5Parser$AnyLabelContext) { - $parent_0 = $ctx; - $parent = new oncil_LabelExpression$Wildcard; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Wildcard__init_($parent, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent_0)); - } else { - if (!($ctx instanceof oncipv_Cypher5Parser$LabelNameContext)) { - if (!($ctx instanceof oncipv_Cypher5Parser$DynamicLabelContext)) { - $parent_0 = new jl_IllegalStateException; - jl_Throwable__init_0($parent_0, $rt_s(6892)); - $rt_throw($parent_0); - } - $parent_0 = $ctx; - $parent = $parent_0.$parent; - $isLabel = 0; - while (!$isLabel) { - if ($parent !== null && $parent.$getRuleIndex() != 101) { - if ($parent.$getRuleIndex() == 59) - $isLabel = 1; - else if ($parent.$getRuleIndex() == 71) - $isLabel = 2; - else - $parent = $parent.$parent; - } else - $isLabel = 3; - } - switch ($isLabel) { - case 1: - $parent = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression((oncipv_Cypher5Parser$DynamicLabelContext_dynamicAnyAllExpression($parent_0)).$ast0), 0); - break a; - case 2: - $parent = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression((oncipv_Cypher5Parser$DynamicLabelContext_dynamicAnyAllExpression($parent_0)).$ast0), 0); - break a; - case 3: - $parent = oncil_LabelExpression$DynamicLeaf__init_((oncipv_Cypher5Parser$DynamicLabelContext_dynamicAnyAllExpression($parent_0)).$ast0, 0); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); - } - var$5 = $ctx; - $parent_0 = var$5.$parent; - $isLabel_0 = 0; - while (!$isLabel_0) { - if ($parent_0 !== null && $parent_0.$getRuleIndex() != 101) { - if ($parent_0.$getRuleIndex() == 59) - $isLabel_0 = 1; - else if ($parent_0.$getRuleIndex() == 71) - $isLabel_0 = 2; - else - $parent_0 = $parent_0.$parent; - } else - $isLabel_0 = 3; - } - switch ($isLabel_0) { - case 1: - $parent = new oncil_LabelExpression$Leaf; - var$7 = new oncie_LabelName; - var$8 = (oncipv_Cypher5Parser$LabelNameContext_symbolicNameString(var$5)).$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelName__init_0(var$7, var$8, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); - oncil_LabelExpression$Leaf__init_($parent, var$7, 0); - break a; - case 2: - $parent = new oncil_LabelExpression$Leaf; - $parent_0 = new oncie_RelTypeName; - var$7 = (oncipv_Cypher5Parser$LabelNameContext_symbolicNameString(var$5)).$ast0; - oncipau_Util$_$callClinit(); - oncie_RelTypeName__init_0($parent_0, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); - oncil_LabelExpression$Leaf__init_($parent, $parent_0, 0); - break a; - case 3: - $parent = new oncil_LabelExpression$Leaf; - $parent_0 = new oncie_LabelOrRelTypeName; - var$7 = (oncipv_Cypher5Parser$LabelNameContext_symbolicNameString(var$5)).$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelOrRelTypeName__init_0($parent_0, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); - oncil_LabelExpression$Leaf__init_($parent, $parent_0, 0); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel_0))); - } - } - $ctx.$ast0 = $parent; +oncief_Pi$_name = $this => { + return $rt_s(6208); }, -oncipvaf_DdlBuilder0 = $rt_classWithoutFields(0), -oncipvaf_DdlBuilder_exitAlterUser0 = ($this, $ctx) => { - let $username, $nativePassAttributes, $suspended, $nativeAuthAttr, $removeHome, $homeDatabaseAction, $userOptions, $nativeAuth, $removeAuth, $setAuth; - $username = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0; - $nativePassAttributes = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_00); +oncief_Pi$_productArity = $this => { + return 0; +}, +oncief_Pi$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Pi$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Pi$_hashCode = $this => { + return 2585; +}, +oncief_Pi$_toString = $this => { + return $rt_s(367); +}, +oncief_Pi$_signatures0 = $this => { + oncief_Pi$_$callClinit(); + return oncief_Pi$_signatures; +}, +oncief_PercentileCont$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_PercentileCont$_MODULE$ = null, +oncief_PercentileCont$_signatures = null, +oncief_PercentileCont$_$callClinit = () => { + oncief_PercentileCont$_$callClinit = $rt_eraseClinit(oncief_PercentileCont$); + oncief_PercentileCont$__clinit_(); +}, +oncief_PercentileCont$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; + var$1 = new oncief_PercentileCont$; + oncief_PercentileCont$_$callClinit(); + oncief_Function__init_(var$1); + oncief_PercentileCont$_MODULE$ = var$1; s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - $nativePassAttributes = sci_List_foldLeft($nativePassAttributes, sci_Nil$_MODULE$, new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_10); - $nativePassAttributes = sci_List_foldLeft(sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordChangeRequiredContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_20), $nativePassAttributes, new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_30); - $suspended = new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_40; + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_PercentileCont$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1183), $rt_s(6209)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_FloatType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$7 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6096)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6209), $rt_s(6210)); + var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6211), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); + oncief_PercentileCont$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_PercentileCont$_name = $this => { + return $rt_s(6212); +}, +oncief_PercentileCont$_productArity = $this => { + return 0; +}, +oncief_PercentileCont$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_PercentileCont$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_PercentileCont$_hashCode = $this => { + return 1231034927; +}, +oncief_PercentileCont$_toString = $this => { + return $rt_s(6213); +}, +oncief_PercentileCont$_signatures0 = $this => { + oncief_PercentileCont$_$callClinit(); + return oncief_PercentileCont$_signatures; +}, +oncief_PercentileDisc$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_PercentileDisc$_MODULE$ = null, +oncief_PercentileDisc$_signatures = null, +oncief_PercentileDisc$_$callClinit = () => { + oncief_PercentileDisc$_$callClinit = $rt_eraseClinit(oncief_PercentileDisc$); + oncief_PercentileDisc$__clinit_(); +}, +oncief_PercentileDisc$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$8, var$8, var$9, var$10, var$11, $x$3, var$13, var$14, var$15, $x$4, $x$6, $x$10; + var$1 = new oncief_PercentileDisc$; + oncief_PercentileDisc$_$callClinit(); + oncief_Function__init_(var$1); + oncief_PercentileDisc$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_PercentileDisc$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1183), $rt_s(6209)]))); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$11 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$3 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$13 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); onciu_InputPosition$_$callClinit(); - $nativeAuthAttr = $nativePassAttributes.$sortBy($suspended, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); - oncipau_Util$_$callClinit(); - $suspended = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterUserContext_userStatus($ctx), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_50); - if ((oncip_AstRuleCtx_getTokens($ctx, 126)).$isEmpty()) - $removeHome = s_None$_MODULE$; - else { - $removeHome = new s_Some; - oncia_RemoveHomeDatabaseAction$_$callClinit(); - s_Some__init_0($removeHome, oncia_RemoveHomeDatabaseAction$_MODULE$); - } - $nativePassAttributes = oncipau_Util$_MODULE$; - $homeDatabaseAction = oncipv_Cypher5Parser$AlterUserContext_homeDatabase($ctx); - $userOptions = new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_60; - $userOptions.$_058 = $removeHome; - $userOptions = oncia_UserOptions__init_($suspended, oncipau_Util$_astOptFromList($nativePassAttributes, $homeDatabaseAction, $userOptions)); - if (!sc_IterableOnceOps_nonEmpty$($nativeAuthAttr)) - $nativeAuth = s_None$_MODULE$; - else { - $nativeAuth = new s_Some; - $suspended = new oncia_Auth; - oncia_AdministrationCommand$_$callClinit(); - oncia_Auth__init_($suspended, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), $nativeAuthAttr, ($nativeAuthAttr.$head()).$position()); - s_Some__init_0($nativeAuth, $suspended); - } - $removeAuth = oncia_RemoveAuth__init_((oncip_AstRuleCtx_getTokens($ctx, 18)).$isEmpty() ? 0 : 1, sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$RemoveNamedProviderContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_70)); - $setAuth = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SetAuthClauseContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_80); - $ctx.$ast0 = oncia_AlterUser__init_($username, $userOptions, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1, $setAuth, $nativeAuth, $removeAuth, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + oncius_ClosedDynamicUnionType__init_(var$11, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$10[0] = var$11; + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)); + $x$4 = new oncius_ClosedDynamicUnionType; + $x$8 = s_Predef$_Set(s_Predef$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$10 = $rt_createArray(oncius_CypherType, 2); + var$9 = var$10.data; + var$9[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$9[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncius_ClosedDynamicUnionType__init_($x$4, $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$10)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$11 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6096)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6209), $rt_s(6210)); + var$11 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$11, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6214), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$11); + oncief_PercentileDisc$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_DdlCreateBuilder0 = $rt_classWithoutFields(0), -oncipvaf_DdlCreateBuilder_exitCreateConstraint0 = ($this, $ctx) => { - let $parent, $nodePattern, $isNode, $constraintName, $existsDo, $options, $cT, $propertyType, $variable, $properties, $label, $variable_0, $relType; - $parent = $ctx.$parent; - $nodePattern = oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx); - $isNode = $nodePattern === null ? 0 : 1; - oncipau_Util$_$callClinit(); - $constraintName = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0)); - $existsDo = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE($parent) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1); - $options = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0); - $cT = oncipv_Cypher5Parser$CreateConstraintContext_constraintType($ctx); - $propertyType = $cT.$ast0; - if ($propertyType === null) - $rt_throw(s_MatchError__init_($propertyType)); - $variable = s_Tuple2__init_($propertyType.$_1(), $propertyType.$_2()); - $properties = $variable.$_10; - $propertyType = $variable.$_20; - if ($isNode) { - $nodePattern = $nodePattern.$ast0; - if ($nodePattern === null) - $rt_throw(s_MatchError__init_($nodePattern)); - $label = s_Tuple2__init_($nodePattern.$_1(), $nodePattern.$_2()); - $variable_0 = $label.$_10; - $label = $label.$_20; - if ($cT instanceof oncipv_Cypher5Parser$ConstraintExistsContext ? 1 : !($cT instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) ? 0 : 1) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createNodePropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties.$apply1(0), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else if ($cT instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createNodePropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties.$apply1(0), $propertyType.$get1(), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else if ($cT instanceof oncipv_Cypher5Parser$ConstraintIsUniqueContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createNodePropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties, $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else { - if (!($cT instanceof oncipv_Cypher5Parser$ConstraintKeyContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6893)); - $rt_throw($ctx); - } - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createNodeKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties, $constraintName, $existsDo, $options, 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } - } else { - $nodePattern = (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx)).$ast0; - if ($nodePattern === null) - $rt_throw(s_MatchError__init_($nodePattern)); - $variable = s_Tuple2__init_($nodePattern.$_1(), $nodePattern.$_2()); - $variable_0 = $variable.$_10; - $relType = $variable.$_20; - if ($cT instanceof oncipv_Cypher5Parser$ConstraintExistsContext ? 1 : !($cT instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) ? 0 : 1) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $relType, $properties.$apply1(0), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else if ($cT instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $relType, $properties.$apply1(0), $propertyType.$get1(), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else if ($cT instanceof oncipv_Cypher5Parser$ConstraintIsUniqueContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $relType, $properties, $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else { - if (!($cT instanceof oncipv_Cypher5Parser$ConstraintKeyContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6894)); - $rt_throw($ctx); - } - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createRelationshipKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $relType, $properties, $constraintName, $existsDo, $options, 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } - } - $ctx.$ast0 = $nodePattern; +oncief_PercentileDisc$_name = $this => { + return $rt_s(6215); }, -oncipvaf_DdlCreateBuilder_exitCreateIndex_0 = ($this, $ctx) => { - let $indexName, $grandparent, $parent, $existsDo, $options, $nodePattern, $relPattern, $isNode, $propertyList, $labelOrRelType, $relType, $variable, $token, $label; - $indexName = $ctx.$parent; - $grandparent = $indexName.$parent; - $parent = $indexName; - oncipau_Util$_$callClinit(); - $existsDo = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE($grandparent) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1); - $options = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0); - $indexName = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0)); - $nodePattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNodePatternContext), 0); - $relPattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandRelPatternContext), 0); - $isNode = $nodePattern === null ? 0 : 1; - $propertyList = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0.$toList(); - $labelOrRelType = !$isNode ? $relPattern.$ast0 : $nodePattern.$ast0; - if ($labelOrRelType === null) - $rt_throw(s_MatchError__init_($labelOrRelType)); - a: { - $relType = s_Tuple2__init_($labelOrRelType.$_1(), $labelOrRelType.$_2()); - $variable = $relType.$_10; - $labelOrRelType = $relType.$_20; - $token = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $parent, 0)).$getSymbol()).$getType0(); - switch ($token) { - case 38: - break; - case 132: - case 215: - if (!$isNode) { - $relType = $labelOrRelType; - $parent = oncia_CreateIndex$_createRangeRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, $token != 132 ? 0 : 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - } - $label = $labelOrRelType; - $parent = oncia_CreateIndex$_createRangeNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, $token != 132 ? 0 : 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - case 201: - if (!$isNode) { - $relType = $labelOrRelType; - $parent = oncia_CreateIndex$_createPointRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - } - $label = $labelOrRelType; - $parent = oncia_CreateIndex$_createPointNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - case 268: - if (!$isNode) { - $relType = $labelOrRelType; - $parent = oncia_CreateIndex$_createTextRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - } - $label = $labelOrRelType; - $parent = oncia_CreateIndex$_createTextNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - case 296: - if (!$isNode) { - $relType = $labelOrRelType; - $parent = oncia_CreateIndex$_createVectorRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - } - $label = $labelOrRelType; - $parent = oncia_CreateIndex$_createVectorNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($token))); - } - $parent = null; - } - $ctx.$ast0 = $parent; +oncief_PercentileDisc$_productArity = $this => { + return 0; }, -oncipvaf_DdlShowBuilder = $rt_classWithoutFields(0), -oncipvaf_DdlShowBuilder_decomposeYield = ($this, $yieldOrWhere) => { - let $optR, $y, $yieldedItems, $optY, $yieldAll, $x$5, $where; - if (!s_Option_isDefined($yieldOrWhere)) { - $optR = new oncipvaf_DdlShowBuilder$ShowWrapper; - $y = s_None$_MODULE$; - $yieldedItems = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$); - $optY = s_None$_MODULE$; - oncipvaf_DdlShowBuilder$ShowWrapper__init_($optR, $y, $yieldedItems, 0, $optY, $optY, $optY, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); - return $optR; - } - $yieldOrWhere = $yieldOrWhere.$get1(); - if ($yieldOrWhere instanceof su_Left) { - $optR = $yieldOrWhere.$value6; - if ($optR !== null) { - $y = $optR.$_1(); - $optR = $optR.$_2(); - $yieldOrWhere = oncipvaf_DdlShowBuilder_getYieldAllAndYieldItems($this, $y); - if ($yieldOrWhere === null) - $rt_throw(s_MatchError__init_($yieldOrWhere)); - $yieldAll = sr_BoxesRunTime_unboxToBoolean($yieldOrWhere.$_11); - $yieldedItems = $yieldOrWhere.$_21; - $optY = $yieldOrWhere.$_30; - $yieldOrWhere = s_Tuple3__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems, $optY); - $yieldAll = sr_BoxesRunTime_unboxToBoolean($yieldOrWhere.$_11); - $yieldedItems = $yieldOrWhere.$_21; - $optY = $yieldOrWhere.$_30; - $x$5 = s_None$_MODULE$; - return oncipvaf_DdlShowBuilder$ShowWrapper__init_2($x$5, $yieldedItems, $yieldAll, $optY, $optR, $x$5, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); - } - } - if (!($yieldOrWhere instanceof su_Right)) - $rt_throw(s_MatchError__init_($yieldOrWhere)); - $where = $yieldOrWhere.$value7; - $yieldOrWhere = new oncipvaf_DdlShowBuilder$ShowWrapper; - $optR = s_Some__init_($where); - $y = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$); - $optY = s_None$_MODULE$; - oncipvaf_DdlShowBuilder$ShowWrapper__init_($yieldOrWhere, $optR, $y, 0, $optY, $optY, $optY, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); - return $yieldOrWhere; +oncief_PercentileDisc$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlShowBuilder_getYieldAllAndYieldItems = ($this, $yieldClause) => { - let $yieldAll, $yieldedItems; - s_Option$_$callClinit(); - $yieldAll = s_Option_exists(s_Option$_apply(s_Option$_MODULE$, $yieldClause), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_00); - $yieldedItems = s_Option_getOrElse(s_Option_map(s_Option$_apply(s_Option$_MODULE$, $yieldClause), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_10), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_20); - return s_Tuple3__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems, s_Some__init_($yieldClause)); +oncief_PercentileDisc$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_PercentileDisc$_hashCode = $this => { + return 1231059090; +}; +let oncief_PercentileDisc$_toString = $this => { + return $rt_s(6216); +}, +oncief_PercentileDisc$_signatures0 = $this => { + oncief_PercentileDisc$_$callClinit(); + return oncief_PercentileDisc$_signatures; +}, +oncief_Percentiles$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_Percentiles$_MODULE$ = null, +oncief_Percentiles$_signatures = null, +oncief_Percentiles$_$callClinit = () => { + oncief_Percentiles$_$callClinit = $rt_eraseClinit(oncief_Percentiles$); + oncief_Percentiles$__clinit_(); +}, +oncief_Percentiles$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$3, $x$8, var$9, var$10, $x$13, var$12, $x$6, var$14, var$15, $x$4, $x$10; + var$1 = new oncief_Percentiles$; + oncief_Percentiles$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Percentiles$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Percentiles$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1183), $rt_s(6217), $rt_s(6218), $rt_s(6219)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 4); + var$10 = var$9.data; + $x$13 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + var$12 = s_Predef$_Set(s_Predef$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$4 = var$12.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$13, $x$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$10[0] = $x$13; + $x$4 = oncius_package$_MODULE$; + var$10[1] = oncius_package$_CTList($x$4, oncius_package$_CTFloat($x$4)); + $x$4 = oncius_package$_MODULE$; + var$10[2] = oncius_package$_CTList($x$4, oncius_package$_CTString($x$4)); + $x$4 = oncius_package$_MODULE$; + var$10[3] = oncius_package$_CTList($x$4, oncius_package$_CTBoolean($x$4)); + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$4 = oncius_package$_CTMap(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6220), $x$6, $x$3, $x$8, 0, $x$10, 1, $x$10, $x$10, oncie_FunctionTypeSignature$_apply$default$13(oncie_FunctionTypeSignature$_MODULE$)); + oncief_Percentiles$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Percentiles$_name = $this => { + return $rt_s(6217); +}, +oncief_Percentiles$_productArity = $this => { + return 0; +}, +oncief_Percentiles$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Percentiles$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Percentiles$_hashCode = $this => { + return (-1138901322); +}, +oncief_Percentiles$_toString = $this => { + return $rt_s(6221); +}, +oncief_Percentiles$_signatures0 = $this => { + oncief_Percentiles$_$callClinit(); + return oncief_Percentiles$_signatures; +}, +oncief_Point$ = $rt_classWithoutFields(oncief_Function), +oncief_Point$_MODULE$ = null, +oncief_Point$_signatures = null, +oncief_Point$_$callClinit = () => { + oncief_Point$_$callClinit = $rt_eraseClinit(oncief_Point$); + oncief_Point$__clinit_(); +}, +oncief_Point$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Point$; + oncief_Point$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Point$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Point$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_MapType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTMap(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTPoint(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SPATIAL(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6222)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6223), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Point$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Point$_name = $this => { + return $rt_s(1249); +}, +oncief_Point$_productArity = $this => { + return 0; +}, +oncief_Point$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Point$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Point$_hashCode = $this => { + return 77292912; +}, +oncief_Point$_toString = $this => { + return $rt_s(733); +}, +oncief_Point$_signatures0 = $this => { + oncief_Point$_$callClinit(); + return oncief_Point$_signatures; +}, +oncief_Keys$ = $rt_classWithoutFields(oncief_Function), +oncief_Keys$_MODULE$ = null, +oncief_Keys$_signatures = null, +oncief_Keys$_$callClinit = () => { + oncief_Keys$_$callClinit = $rt_eraseClinit(oncief_Keys$); + oncief_Keys$__clinit_(); +}, +oncief_Keys$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$8, var$8, $x$2, var$10, var$11, var$12, $x$3, $x$10, var$15, var$16, $x$4, $x$6; + var$1 = new oncief_Keys$; + oncief_Keys$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Keys$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Keys$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + var$12 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$3 = s_Predef$_Set(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$15 = $rt_createArray(oncius_CypherType, 3); + var$16 = var$15.data; + oncius_package$_$callClinit(); + var$16[0] = oncius_package$_CTNode(oncius_package$_MODULE$); + var$16[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + var$16[2] = oncius_package$_CTMap(oncius_package$_MODULE$); + var$6 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$15)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_(var$12, var$6, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = var$12; + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); + $x$8 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$8, oncius_package$_CTString($x$8)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$12 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(s_Tuple2, 1); + var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6224)); + var$12 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$12, var$11)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6225), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); + oncief_Keys$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Keys$_name = $this => { + return $rt_s(6226); +}, +oncief_Keys$_productArity = $this => { + return 0; +}, +oncief_Keys$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Keys$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Keys$_hashCode = $this => { + return 2335252; +}, +oncief_Keys$_toString = $this => { + return $rt_s(6227); +}, +oncief_Keys$_signatures0 = $this => { + oncief_Keys$_$callClinit(); + return oncief_Keys$_signatures; +}, +oncief_Radians$ = $rt_classWithoutFields(oncief_Function), +oncief_Radians$_MODULE$ = null, +oncief_Radians$_signatures = null, +oncief_Radians$_$callClinit = () => { + oncief_Radians$_$callClinit = $rt_eraseClinit(oncief_Radians$); + oncief_Radians$__clinit_(); +}, +oncief_Radians$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Radians$; + oncief_Radians$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Radians$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Radians$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6228)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6229), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Radians$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Radians$_name = $this => { + return $rt_s(6230); +}, +oncief_Radians$_productArity = $this => { + return 0; +}, +oncief_Radians$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Radians$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Radians$_hashCode = $this => { + return (-1661504942); +}, +oncief_Radians$_toString = $this => { + return $rt_s(6231); +}, +oncief_Radians$_signatures0 = $this => { + oncief_Radians$_$callClinit(); + return oncief_Radians$_signatures; +}; +let oncief_Rand$ = $rt_classWithoutFields(oncief_Function), +oncief_Rand$_MODULE$ = null, +oncief_Rand$_name = null, +oncief_Rand$_signatures = null, +oncief_Rand$_$callClinit = () => { + oncief_Rand$_$callClinit = $rt_eraseClinit(oncief_Rand$); + oncief_Rand$__clinit_(); +}, +oncief_Rand$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncief_Rand$; + oncief_Rand$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Rand$_MODULE$ = var$1; + oncief_Rand$_name = $rt_s(6232); + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + var$5 = oncie_FunctionTypeSignature$_MODULE$; + var$6 = oncief_Rand$_MODULE$; + oncius_package$_$callClinit(); + var$7 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(6233), oncief_Category$_NUMERIC(oncief_Category$_MODULE$)); + oncief_Rand$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Rand$_name0 = $this => { + oncief_Rand$_$callClinit(); + return oncief_Rand$_name; +}, +oncief_Rand$_productArity = $this => { + return 0; +}, +oncief_Rand$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Rand$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Rand$_hashCode = $this => { + return 2539589; +}, +oncief_Rand$_toString = $this => { + return $rt_s(6234); +}, +oncief_Rand$_signatures0 = $this => { + oncief_Rand$_$callClinit(); + return oncief_Rand$_signatures; +}, +oncief_RandomUUID$ = $rt_classWithoutFields(oncief_Function), +oncief_RandomUUID$_MODULE$ = null, +oncief_RandomUUID$_signatures = null, +oncief_RandomUUID$_$callClinit = () => { + oncief_RandomUUID$_$callClinit = $rt_eraseClinit(oncief_RandomUUID$); + oncief_RandomUUID$__clinit_(); +}, +oncief_RandomUUID$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = new oncief_RandomUUID$; + oncief_RandomUUID$_$callClinit(); + oncief_Function__init_(var$1); + oncief_RandomUUID$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + var$5 = oncie_FunctionTypeSignature$_MODULE$; + var$6 = oncief_RandomUUID$_MODULE$; + oncius_package$_$callClinit(); + var$7 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + var$4[0] = oncie_FunctionTypeSignature$_noArg(var$5, var$6, var$7, $rt_s(6235), oncief_Category$_SCALAR(oncief_Category$_MODULE$)); + oncief_RandomUUID$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_RandomUUID$_name = $this => { + return $rt_s(6236); +}, +oncief_RandomUUID$_signatures0 = $this => { + oncief_RandomUUID$_$callClinit(); + return oncief_RandomUUID$_signatures; +}, +oncief_Range$ = $rt_classWithoutFields(oncief_Function), +oncief_Range$_MODULE$ = null, +oncief_Range$_signatures = null, +oncief_Range$_$callClinit = () => { + oncief_Range$_$callClinit = $rt_eraseClinit(oncief_Range$); + oncief_Range$__clinit_(); +}, +oncief_Range$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$6, $x$3, var$9, var$10, $x$4, $x$8, $x$23, $x$15, $x$10, $x$14, $x$16, $x$17, $x$19, $x$21; + var$1 = new oncief_Range$; + oncief_Range$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Range$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); + var$4 = var$3.data; + $x$1 = oncief_Range$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6237), $rt_s(6238)]))); + $x$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_IntegerType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + $x$3 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTInteger($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + $x$23 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6237), $rt_s(6239)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6238), $rt_s(6240)); + $x$15 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$23, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6241), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$15); + $x$14 = oncief_Range$_MODULE$; + $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6237), $rt_s(6238), $rt_s(6242)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_IntegerType, 3); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[2] = oncius_package$_CTInteger(oncius_package$_MODULE$); + $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); + $x$3 = oncius_package$_MODULE$; + $x$17 = oncius_package$_CTList($x$3, oncius_package$_CTInteger($x$3)); + $x$19 = oncief_Category$_LIST(oncief_Category$_MODULE$); + $x$3 = s_Predef$_Map(s_Predef$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 3); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6237), $rt_s(6239)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6238), $rt_s(6240)); + var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6242), $rt_s(6243)); + $x$4 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); + $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$23 = s_None$_MODULE$; + var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(6244), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$4); + oncief_Range$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Range$_name = $this => { + return $rt_s(1250); +}, +oncief_Range$_productArity = $this => { + return 0; +}, +oncief_Range$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Range$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Range$_hashCode = $this => { + return 78727453; +}, +oncief_Range$_toString = $this => { + return $rt_s(4092); +}, +oncief_Range$_signatures0 = $this => { + oncief_Range$_$callClinit(); + return oncief_Range$_signatures; +}, +oncief_Reduce$ = $rt_classWithoutFields(oncief_Function), +oncief_Reduce$_MODULE$ = null, +oncief_Reduce$_signatures = null, +oncief_Reduce$_$callClinit = () => { + oncief_Reduce$_$callClinit = $rt_eraseClinit(oncief_Reduce$); + oncief_Reduce$__clinit_(); +}, +oncief_Reduce$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$9, $x$4, $x$6, $x$7, var$15, var$16, $x$11; + var$1 = new oncief_Reduce$; + oncief_Reduce$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Reduce$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Reduce$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6245), $rt_s(1245)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$9 = oncius_package$_MODULE$; + var$10[1] = oncius_package$_CTList($x$9, oncius_package$_CTAny($x$9)); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTAny(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + $x$7 = new s_Some; + $x$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($x$9); + jl_StringBuilder_append(jl_StringBuilder_append($x$9, $rt_s(6246)), $rt_s(6247)); + s_Some__init_0($x$7, jl_AbstractStringBuilder_toString($x$9)); + s_Predef$_$callClinit(); + var$15 = s_Predef$_Map(s_Predef$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6245), $rt_s(6248)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1245), $rt_s(6249)); + var$16 = sci_Map$_from(var$15, sr_ScalaRunTime$_wrapRefArray(var$7, var$9)); + $x$9 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$11 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6250), $x$6, $x$3, $x$9, 0, $x$11, 0, $x$7, $x$11, var$16); + oncief_Reduce$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Reduce$_name = $this => { + return $rt_s(6246); +}, +oncief_Reduce$_productArity = $this => { + return 0; +}, +oncief_Reduce$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Reduce$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Reduce$_hashCode = $this => { + return (-1851006586); +}, +oncief_Reduce$_toString = $this => { + return $rt_s(6251); +}, +oncief_Reduce$_signatures0 = $this => { + oncief_Reduce$_$callClinit(); + return oncief_Reduce$_signatures; +}, +oncief_Relationships$ = $rt_classWithoutFields(oncief_Function), +oncief_Relationships$_MODULE$ = null, +oncief_Relationships$_signatures = null, +oncief_Relationships$_$callClinit = () => { + oncief_Relationships$_$callClinit = $rt_eraseClinit(oncief_Relationships$); + oncief_Relationships$__clinit_(); +}, +oncief_Relationships$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14; + var$1 = new oncief_Relationships$; + oncief_Relationships$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Relationships$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Relationships$_MODULE$; + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_PathType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTPath(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTRelationship($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$14 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(s_Tuple2, 1); + var$11.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6252)); + var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$11)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6253), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Relationships$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Relationships$_name = $this => { + return $rt_s(6254); +}; +let oncief_Relationships$_productArity = $this => { + return 0; +}, +oncief_Relationships$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Relationships$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Relationships$_hashCode = $this => { + return 1271496987; +}, +oncief_Relationships$_toString = $this => { + return $rt_s(6255); +}, +oncief_Relationships$_signatures0 = $this => { + oncief_Relationships$_$callClinit(); + return oncief_Relationships$_signatures; +}, +oncief_Replace$ = $rt_classWithoutFields(oncief_Function), +oncief_Replace$_MODULE$ = null, +oncief_Replace$_signatures = null, +oncief_Replace$_$callClinit = () => { + oncief_Replace$_$callClinit = $rt_eraseClinit(oncief_Replace$); + oncief_Replace$__clinit_(); +}, +oncief_Replace$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$3, $x$8, var$9, var$10, $x$4, $x$6, var$13, var$14, $x$10; + var$1 = new oncief_Replace$; + oncief_Replace$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Replace$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Replace$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6161), $rt_s(6256), $rt_s(6257)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_StringType, 3); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[2] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 3); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6161), $rt_s(6258)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6256), $rt_s(6259)); + var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6257), $rt_s(6260)); + var$14 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$13, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6261), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Replace$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_DdlShowBuilder_exitShowConstraintCommand = ($this, $ctx) => { - let $parentPos, var$3, $constraintType, $entityType; - oncipau_Util$_$callClinit(); - $parentPos = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - if ($ctx instanceof oncipv_Cypher5Parser$ShowConstraintMultiContext) { - var$3 = $ctx; - $constraintType = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext), 0)).$ast0; - $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext), 0)).$ast0, $constraintType, $parentPos); - } else if ($ctx instanceof oncipv_Cypher5Parser$ShowConstraintUniqueContext) { - var$3 = $ctx; - $entityType = oncip_AstRuleCtx_getToken(var$3, 173, 0) === null ? oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this) : oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this); - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), $entityType)) - $constraintType = oncia_NodeUniqueConstraintsCypher5$_MODULE$; - else { - if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), $entityType)) { - if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), $entityType)) - $rt_throw(s_MatchError__init_($entityType)); - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6895)); - $rt_throw($ctx); - } - $constraintType = oncia_RelUniqueConstraintsCypher5$_MODULE$; - } - $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext), 0)).$ast0, $constraintType, $parentPos); - } else if (!($ctx instanceof oncipv_Cypher5Parser$ShowConstraintKeyContext)) { - if ($ctx instanceof oncipv_Cypher5Parser$ShowConstraintRelExistContext) { - var$3 = $ctx; - $constraintType = oncia_RelExistsConstraints$_cypher5(oncia_RelExistsConstraints$_MODULE$); - $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext), 0)).$ast0, $constraintType, $parentPos); - } else if ($ctx instanceof oncipv_Cypher5Parser$ShowConstraintOldExistsContext) - $parentPos = null; - else { - if (!($ctx instanceof oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext)) { - $parentPos = new jl_IllegalStateException; - jl_Throwable__init_0($parentPos, $rt_s(6895)); - $rt_throw($parentPos); - } - var$3 = $ctx; - $constraintType = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext), 0), new oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0); - $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext), 0)).$ast0, $constraintType, $parentPos); - } - } else { - var$3 = $ctx; - $entityType = oncip_AstRuleCtx_getToken(var$3, 224, 0) === null && oncip_AstRuleCtx_getToken(var$3, 223, 0) === null ? oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this) : oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this); - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), $entityType)) - $constraintType = oncia_RelKeyConstraints$_MODULE$; - else { - if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), $entityType)) { - if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), $entityType)) - $rt_throw(s_MatchError__init_($entityType)); - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6895)); - $rt_throw($ctx); - } - $constraintType = oncia_KeyConstraints$_MODULE$; - } - $parentPos = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext), 0)).$ast0, $constraintType, $parentPos); - } - $ctx.$ast0 = $parentPos; +oncief_Replace$_name = $this => { + return $rt_s(6257); }, -oncipvaf_DdlShowBuilder_exitConstraintAllowYieldType = ($this, $ctx) => { - let $parent, $entityType, var$4, var$5, var$6, var$7; - $parent = $ctx.$parent; - $entityType = oncip_AstRuleCtx_getToken($parent, 173, 0) !== null ? oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this) : oncip_AstRuleCtx_getToken($parent, 224, 0) === null && oncip_AstRuleCtx_getToken($parent, 223, 0) === null ? oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this) : oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this); - $parent = new s_Tuple3; - var$4 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 211, 0) === null ? 0 : 1); - var$5 = oncip_AstRuleCtx_getToken($ctx, 287, 0) === null ? 0 : 1; - a: { - s_Tuple3__init_0($parent, $entityType, var$4, jl_Boolean_valueOf(var$5)); - var$4 = $parent.$_11; - var$5 = sr_BoxesRunTime_unboxToBoolean($parent.$_21); - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), var$4) && 1 == var$5) { - $parent = oncia_NodePropTypeConstraints$_MODULE$; - break a; - } - var$4 = $parent.$_11; - var$6 = sr_BoxesRunTime_unboxToBoolean($parent.$_21); - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), var$4) && 1 == var$6) { - $parent = oncia_RelPropTypeConstraints$_MODULE$; - break a; - } - var$7 = $parent.$_11; - var$5 = sr_BoxesRunTime_unboxToBoolean($parent.$_21); - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), var$7) && 1 == var$5) { - $parent = oncia_PropTypeConstraints$_MODULE$; - break a; - } - var$7 = $parent.$_11; - var$5 = sr_BoxesRunTime_unboxToBoolean($parent.$_30); - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), var$7) && 1 == var$5) { - $parent = oncia_NodeUniqueConstraintsCypher5$_MODULE$; - break a; - } - var$7 = $parent.$_11; - var$5 = sr_BoxesRunTime_unboxToBoolean($parent.$_30); - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), var$7) && 1 == var$5) { - $parent = oncia_RelUniqueConstraintsCypher5$_MODULE$; - break a; - } - var$7 = $parent.$_11; - var$5 = sr_BoxesRunTime_unboxToBoolean($parent.$_30); - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), var$7) && 1 == var$5) { - $parent = oncia_UniqueConstraintsCypher5$_MODULE$; - break a; - } - var$7 = $parent.$_11; - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node($this), var$7)) { - $parent = oncia_NodeExistsConstraints$_cypher5(oncia_NodeExistsConstraints$_MODULE$); - break a; - } - var$7 = $parent.$_11; - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel($this), var$7)) { - $parent = oncia_RelExistsConstraints$_cypher5(oncia_RelExistsConstraints$_MODULE$); - break a; - } - var$7 = $parent.$_11; - if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity($this), var$7)) - $rt_throw(s_MatchError__init_($parent)); - $parent = oncia_ExistsConstraints$_cypher5(oncia_ExistsConstraints$_MODULE$); - } - $ctx.$ast0 = $parent; +oncief_Replace$_productArity = $this => { + return 0; }, -oncipvaf_DdlPrivilegeBuilder0 = $rt_classWithoutFields(0), -oncipvaf_DdlPrivilegeBuilder_exitAllPrivilege0 = ($this, $ctx) => { - let var$2, $scope, var$4, var$5; - var$2 = oncipv_Cypher5Parser$AllPrivilegeContext_allPrivilegeTarget($ctx); - if (var$2 instanceof oncipv_Cypher5Parser$DefaultTargetContext) { - if (oncipv_Cypher5Parser$DefaultTargetContext_DATABASE(var$2) === null) { - var$2 = new oncia_GraphPrivilege; - $scope = oncia_AllGraphAction$_MODULE$; - var$4 = new oncia_HomeGraphScope; - oncipau_Util$_$callClinit(); - oncia_HomeGraphScope__init_(var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - oncia_GraphPrivilege__init_(var$2, $scope, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$2, s_None$_MODULE$); - } else { - var$2 = new oncia_DatabasePrivilege; - $scope = oncia_AllDatabaseAction$_MODULE$; - var$4 = new oncia_HomeDatabaseScope; - oncipau_Util$_$callClinit(); - oncia_HomeDatabaseScope__init_(var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - oncia_DatabasePrivilege__init_(var$2, $scope, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier0($this, var$2, s_None$_MODULE$); - } - } else if (var$2 instanceof oncipv_Cypher5Parser$DatabaseVariableTargetContext) { - var$2 = var$2; - if (oncip_AstRuleCtx_getToken(var$2, 271, 0) !== null) { - $scope = new oncia_AllDatabasesScope; - oncipau_Util$_$callClinit(); - oncia_AllDatabasesScope__init_($scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - $scope = new oncia_NamedDatabasesScope; - var$2 = (oavr_ParserRuleContext_getRuleContext(var$2, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_NamedDatabasesScope__init_($scope, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - var$2 = new oncia_DatabasePrivilege; - var$4 = oncia_AllDatabaseAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_DatabasePrivilege__init_(var$2, var$4, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier0($this, var$2, s_None$_MODULE$); - } else if (!(var$2 instanceof oncipv_Cypher5Parser$GraphVariableTargetContext)) { - if (!(var$2 instanceof oncipv_Cypher5Parser$DBMSTargetContext)) { - var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(6896)); - $rt_throw(var$2); - } - var$4 = new oncia_DbmsPrivilege; - var$2 = oncia_AllDbmsAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_DbmsPrivilege__init_0(var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$4, s_None$_MODULE$); - } else { - var$2 = var$2; - if (oncip_AstRuleCtx_getToken(var$2, 271, 0) !== null) { - $scope = new oncia_AllGraphsScope; - oncipau_Util$_$callClinit(); - oncia_AllGraphsScope__init_($scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - $scope = new oncia_NamedGraphsScope; - var$2 = (oavr_ParserRuleContext_getRuleContext(var$2, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_NamedGraphsScope__init_($scope, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - var$5 = new oncia_GraphPrivilege; - var$2 = oncia_AllGraphAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$5, var$2, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$5, s_None$_MODULE$); - } - $ctx.$ast0 = var$2; +oncief_Replace$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlPrivilegeBuilder_exitDbmsPrivilege0 = ($this, $ctx) => { - let $action, $qualifier, var$4, $action_0; - a: { - oncipau_Util$_$callClinit(); - $action = oncip_AstRuleCtx_getChild($ctx, 0); - if ($action instanceof oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext) - $qualifier = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext), 0)).$ast0; - else { - if (!$rt_isInstance($action, oavrt_TerminalNode)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - switch (($action.$getSymbol()).$getType0()) { - case 15: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllAliasManagementActions$_MODULE$); - break a; - case 19: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 15: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AlterAliasAction$_MODULE$); - break a; - case 65: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AlterDatabaseAction$_MODULE$); - break a; - case 291: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AlterUserAction$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - case 27: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 206: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AssignPrivilegeAction$_MODULE$); - break a; - case 235: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AssignRoleAction$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - case 53: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_CompositeDatabaseManagementActions$_MODULE$); - break a; - case 65: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllDatabaseManagementActions$_MODULE$); - break a; - case 129: - $qualifier = s_Tuple2__init_(oncia_ImpersonateUserAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserQualifierContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_00)); - break a; - case 206: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllPrivilegeActions$_MODULE$); - break a; - case 221: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 235: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_RenameRoleAction$_MODULE$); - break a; - case 291: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_RenameUserAction$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - case 235: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllRoleActions$_MODULE$); - break a; - case 248: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ServerManagementAction$_MODULE$); - break a; - case 291: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_AllUserActions$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - } - if ($qualifier === null) - $rt_throw(s_MatchError__init_($qualifier)); - $action = $qualifier.$_1(); - $qualifier = $qualifier.$_2(); - var$4 = s_Tuple2__init_($action, $qualifier); - $action_0 = var$4.$_10; - $qualifier = var$4.$_20; - $ctx.$ast0 = s_Tuple3__init_(oncia_DbmsPrivilege__init_($action_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$, $qualifier); +oncief_Replace$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlPrivilegeBuilder_exitShowPrivilege0 = ($this, $ctx) => { - let $p, $action, $action_0, $qualifier, $scope, $action_1; - oncipau_Util$_$callClinit(); - $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncipv_Cypher5Parser$ShowPrivilegeContext_databaseScope($ctx) !== null) { - $action = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - if ($action instanceof oncipv_Cypher5Parser$ConstraintTokenContext) - $action = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_ShowConstraintAction$_MODULE$); - else if ($action instanceof oncipv_Cypher5Parser$IndexTokenContext) - $action = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_ShowIndexAction$_MODULE$); - else { - if (!($action instanceof oncipv_Cypher5Parser$TransactionTokenContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - $action = s_Tuple2__init_(oncia_ShowTransactionAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserQualifierContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_00)); - } - if ($action === null) - $rt_throw(s_MatchError__init_($action)); - $action = s_Tuple2__init_($action.$_10, $action.$_20); - $action_0 = $action.$_10; - $qualifier = $action.$_20; - $scope = (oncipv_Cypher5Parser$ShowPrivilegeContext_databaseScope($ctx)).$ast0; - $action_1 = s_Tuple3__init_(oncia_DatabasePrivilege__init_0($action_0, $scope, $p), s_None$_MODULE$, $qualifier); - } else { - a: { - $action = oncip_AstRuleCtx_getChild($ctx, 1); - if (!$rt_isInstance($action, oavrt_TerminalNode)) { - if ($rt_isInstance($action, oavrt_RuleNode) && $action.$getRuleIndex() == 177) { - $qualifier = s_Tuple2__init_(oncia_ShowSettingAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SettingQualifierContext), 0)).$ast0); - break a; - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - switch (($action.$getSymbol()).$getType0()) { - case 15: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowAliasAction$_MODULE$); - break a; - case 206: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowPrivilegeAction$_MODULE$); - break a; - case 235: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowRoleAction$_MODULE$); - break a; - case 248: - case 249: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowServerAction$_MODULE$); - break a; - case 291: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ShowUserAction$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - if ($qualifier === null) - $rt_throw(s_MatchError__init_($qualifier)); - $action_1 = s_Tuple2__init_($qualifier.$_10, $qualifier.$_20); - $action = $action_1.$_10; - $qualifier = $action_1.$_20; - $action_1 = s_Tuple3__init_(oncia_DbmsPrivilege__init_($action, $p), s_None$_MODULE$, $qualifier); - } - $ctx.$ast0 = $action_1; +oncief_Replace$_hashCode = $this => { + return (-1535817068); }, -oncipvaf_DdlPrivilegeBuilder_exitGraphQualifier = ($this, $ctx) => { - let $token, $strings, $graphToken, $variable, $qualifiers, var$7, var$8, $isAll; - $token = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierTokenContext), 0); - if ($token === null) { - if (oncip_AstRuleCtx_getToken($ctx, 112, 0) === null) { - $strings = new sci_$colon$colon; - $graphToken = new oncia_ElementsAllQualifier; - oncipau_Util$_$callClinit(); - oncia_ElementsAllQualifier__init_($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); - } else { - oncipau_Util$_$callClinit(); - $variable = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)); - if ((oncipv_Cypher5Parser$GraphQualifierContext_symbolicNameString($ctx)).$isEmpty()) - $qualifiers = sci_$colon$colon__init_(oncia_LabelAllQualifier__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$); - else { - $graphToken = oncipau_Util$_MODULE$; - $token = oncipv_Cypher5Parser$GraphQualifierContext_symbolicNameString($ctx); - sr_ClassTag$_$callClinit(); - $token = oncipau_Util$_astSeq($graphToken, $token, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); - $graphToken = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3; - $graphToken.$_0935 = $ctx; - $qualifiers = sc_IterableOnceOps_toList$(sci_ArraySeq_map($token, $graphToken)); - } - $strings = new sci_$colon$colon; - var$7 = new oncia_PatternQualifier; - $graphToken = oncipau_Util$_MODULE$; - var$8 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); - $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4; - $token.$_0396 = $ctx; - oncia_PatternQualifier__init_(var$7, $qualifiers, $variable, oncipau_Util$_astOpt0($graphToken, var$8, $token)); - sci_$colon$colon__init_0($strings, var$7, sci_Nil$_MODULE$); - } - } else { - $isAll = oncip_AstRuleCtx_getToken($ctx, 271, 0) === null ? 0 : 1; - $strings = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NonEmptyStringListContext), 0); - $graphToken = $token.$ast0; - if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$RelGraphToken($this), $graphToken)) { - if (!$isAll) { - $graphToken = $strings.$ast0; - $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0; - $token.$_0751 = $ctx; - $strings = ($graphToken.$map($token)).$toList(); - } else { - $strings = new sci_$colon$colon; - $token = new oncia_RelationshipAllQualifier; - oncipau_Util$_$callClinit(); - oncia_RelationshipAllQualifier__init_($token, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - sci_$colon$colon__init_0($strings, $token, sci_Nil$_MODULE$); - } - } else if (jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken($this), $graphToken)) { - if (!$isAll) { - $graphToken = $strings.$ast0; - $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1; - $token.$_0265 = $ctx; - $strings = ($graphToken.$map($token)).$toList(); - } else { - $strings = new sci_$colon$colon; - $graphToken = new oncia_LabelAllQualifier; - oncipau_Util$_$callClinit(); - oncia_LabelAllQualifier__init_0($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); - } - } else { - if (!jl_Object_equals(oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken($this), $graphToken)) - $rt_throw(s_MatchError__init_($graphToken)); - if (!$isAll) { - $graphToken = $strings.$ast0; - $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2; - $token.$_0859 = $ctx; - $strings = ($graphToken.$map($token)).$toList(); - } else { - $strings = new sci_$colon$colon; - $graphToken = new oncia_ElementsAllQualifier; - oncipau_Util$_$callClinit(); - oncia_ElementsAllQualifier__init_($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); - } - } - } - $ctx.$ast0 = $strings; +oncief_Replace$_toString = $this => { + return $rt_s(6262); }, -oncipvaf_DdlPrivilegeBuilder_withQualifier1 = ($this, $action) => { - let var$2, var$3, var$4; - var$2 = new s_Tuple2; - var$3 = new sci_$colon$colon; - var$4 = new oncia_AllDatabasesQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllDatabasesQualifier__init_(var$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$3, var$4, sci_Nil$_MODULE$); - s_Tuple2__init_0(var$2, $action, var$3); - return var$2; +oncief_Replace$_signatures0 = $this => { + oncief_Replace$_$callClinit(); + return oncief_Replace$_signatures; }, -oncipvaf_DdlPrivilegeBuilder_withQualifier0 = ($this, $action) => { - let var$2, var$3, var$4; - var$2 = new s_Tuple2; - var$3 = new sci_$colon$colon; - var$4 = new oncia_AllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllQualifier__init_(var$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$3, var$4, sci_Nil$_MODULE$); - s_Tuple2__init_0(var$2, $action, var$3); - return var$2; +oncief_Reverse$ = $rt_classWithoutFields(oncief_Function), +oncief_Reverse$_MODULE$ = null, +oncief_Reverse$_signatures = null, +oncief_Reverse$_$callClinit = () => { + oncief_Reverse$_$callClinit = $rt_eraseClinit(oncief_Reverse$); + oncief_Reverse$__clinit_(); }, -oncipvaf_DdlPrivilegeBuilder_allDbQualifier0 = ($this, $privilege, $resource) => { - let var$3, var$4, var$5; - var$3 = new s_Tuple3; - var$4 = new sci_$colon$colon; - var$5 = new oncia_AllDatabasesQualifier; +oncief_Reverse$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$10, var$11, $x$8, $x$6, var$14, var$15, $x$4; + var$1 = new oncief_Reverse$; + oncief_Reverse$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Reverse$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Reverse$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + var$6 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Set(s_Predef$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$4 = oncius_package$_MODULE$; + var$15[1] = oncius_package$_CTList($x$4, oncius_package$_CTAny($x$4)); + $x$4 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$14)); onciu_InputPosition$_$callClinit(); - oncia_AllDatabasesQualifier__init_(var$5, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$4, var$5, sci_Nil$_MODULE$); - s_Tuple3__init_0(var$3, $privilege, $resource, var$4); - return var$3; + oncius_ClosedDynamicUnionType__init_(var$6, $x$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = var$6; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$4 = new oncius_ClosedDynamicUnionType; + $x$10 = s_Predef$_Set(s_Predef$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 2); + var$11 = var$8.data; + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$6 = oncius_package$_MODULE$; + var$11[1] = oncius_package$_CTList($x$6, oncius_package$_CTAny($x$6)); + oncius_ClosedDynamicUnionType__init_($x$4, $x$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6263)); + var$6 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6264), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$6); + oncief_Reverse$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_DdlPrivilegeBuilder_allQualifier0 = ($this, $privilege, $resource) => { - let var$3, var$4, var$5; - var$3 = new s_Tuple3; - var$4 = new sci_$colon$colon; - var$5 = new oncia_AllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllQualifier__init_(var$5, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$4, var$5, sci_Nil$_MODULE$); - s_Tuple3__init_0(var$3, $privilege, $resource, var$4); - return var$3; +oncief_Reverse$_name = $this => { + return $rt_s(6265); }, -oncipvaf_DdlPrivilegeBuilder_labelAllQualifier0 = ($this, $privilege, $resource, $pos) => { - return s_Tuple3__init_($privilege, $resource, sci_$colon$colon__init_(oncia_LabelAllQualifier__init_($pos), sci_Nil$_MODULE$)); +oncief_Reverse$_signatures0 = $this => { + oncief_Reverse$_$callClinit(); + return oncief_Reverse$_signatures; }, -oncipvaf_ExpressionBuilder0 = $rt_classWithoutFields(0), -oncipvaf_ExpressionBuilder_exitPatternElement = ($this, $ctx) => { - let $size, $p, $parts, $relPattern, $i, $part, var$8, $nodePattern, $lhs, $emptyNodePattern; - $size = $ctx.$children0.$size0; - if ($size == 1) { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - return; - } - oncipau_Util$_$callClinit(); - $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - $parts = scm_ArrayDeque__init_0(1); - $relPattern = null; - $i = 0; - while (true) { - if ($i >= $size) { - if ($parts.$length() == 1) - $part = sc_IndexedSeqOps_head$($parts); - else { - $part = new oncie_PathConcatenation; - $p = sci_ArraySeq$_MODULE$; - sr_ClassTag$_$callClinit(); - oncie_PathConcatenation__init_($part, sci_ArraySeq$_unsafeWrapArray($p, scm_ArrayDeque_toArray($parts, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PathFactor)))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = $part; - return; - } - var$8 = ju_ArrayList_get($ctx.$children0, $i); - if (var$8 instanceof oncipv_Cypher5Parser$NodePatternContext) { - $nodePattern = var$8.$ast0; - if ($relPattern === null) - scm_ArrayDeque_addOne($parts, $nodePattern); - else { - scm_ArrayDeque_addOne($parts, oncie_RelationshipChain__init_(scm_ArrayDeque_removeLast($parts, 0), $relPattern, $nodePattern, $p)); - $relPattern = null; - } - } else if (var$8 instanceof oncipv_Cypher5Parser$RelationshipPatternContext) - $relPattern = var$8.$ast0; - else if (!(var$8 instanceof oncipv_Cypher5Parser$QuantifierContext)) { - if (!(var$8 instanceof oncipv_Cypher5Parser$ParenthesizedPathContext)) - break; - scm_ArrayDeque_addOne($parts, var$8.$ast0); - } else { - $lhs = var$8; - $emptyNodePattern = new oncie_NodePattern; - $part = s_None$_MODULE$; - oncie_NodePattern__init_($emptyNodePattern, $part, $part, $part, $part, $relPattern.$position8); - $part = oncie_PathPatternPart__init_(oncie_RelationshipChain__init_($emptyNodePattern, $relPattern, $emptyNodePattern, $relPattern.$position8)); - scm_ArrayDeque_addOne($parts, oncie_QuantifiedPath$_apply(oncie_QuantifiedPath$_MODULE$, $part, $lhs.$ast0, s_None$_MODULE$, $relPattern.$position8)); - $relPattern = null; - } - $i = $i + 1 | 0; - } - $ctx = new jl_IllegalStateException; - $p = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($p); - jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(6897)), var$8); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString($p)); - $rt_throw($ctx); +oncief_Reverse$_productArity = $this => { + return 0; }, -oncipvaf_ExpressionBuilder_selectorCount0 = ($this, $node, $p) => { - let var$3, var$4; - if ($node === null) - return oncie_UnsignedDecimalIntegerLiteral__init_($rt_s(414), $p); - var$3 = new oncie_UnsignedDecimalIntegerLiteral; - var$4 = $node.$getText(); - oncipau_Util$_$callClinit(); - oncie_UnsignedDecimalIntegerLiteral__init_0(var$3, var$4, oncipau_Util$_pos1(oncipau_Util$_MODULE$, $node)); - return var$3; +oncief_Reverse$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_ExpressionBuilder_binaryPredicate0 = ($this, $lhs, $token, $rhs) => { - let var$4, var$5, var$6; - var$4 = ($token.$getSymbol()).$getType0(); - switch (var$4) { - case 100: - var$5 = new oncie_Equals; - var$6 = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_Equals__init_(var$5, $lhs, var$6, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 118: - var$5 = new oncie_GreaterThanOrEqual; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_GreaterThanOrEqual__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 124: - var$5 = new oncie_GreaterThan; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_GreaterThan__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 148: - var$5 = new oncie_LessThanOrEqual; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_LessThanOrEqual__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 156: - var$5 = new oncie_LessThan; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_LessThan__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 163: - var$5 = new oncie_InvalidNotEquals; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_InvalidNotEquals__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 164: - var$5 = new oncie_NotEquals; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_NotEquals__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); +oncief_Reverse$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_ExpressionBuilder_stringAndListComparisonExpression = ($this, $lhs, $ctx) => { - let $token, $rhs, var$5; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher5Parser$StringAndListComparisonContext) && !($ctx instanceof oncipv_Cypher5Parser$WhenStringOrListContext)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $token = (oncip_AstRuleCtx_getChild($ctx, 0)).$getSymbol(); - $rhs = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; - var$5 = $token.$getType0(); - switch (var$5) { - case 57: - break; - case 99: - return oncie_EndsWith__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); - case 131: - return oncie_In__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); - case 222: - return oncie_RegexMatch__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); - case 260: - return oncie_StartsWith__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$5))); - } - return oncie_Contains__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); +oncief_Reverse$_hashCode = $this => { + return (-1530467646); }, -oncipvaf_ExpressionBuilder_nullComparisonExpression = ($this, $lhs, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher5Parser$NullComparisonContext) && !($ctx instanceof oncipv_Cypher5Parser$WhenNullContext)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - if (oncipau_Util$_nodeChildType(oncipau_Util$_MODULE$, $ctx, 1) == 179) - return oncie_IsNotNull__init_($lhs, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - return oncie_IsNull__init_($lhs, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_Reverse$_toString = $this => { + return $rt_s(6266); }, -oncipvaf_ExpressionBuilder_typeComparisonExpression = ($this, $lhs, $ctx) => { - let $cypherType, var$4; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher5Parser$TypeComparisonContext) && !($ctx instanceof oncipv_Cypher5Parser$WhenTypeContext)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $cypherType = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; - var$4 = oncip_AstRuleCtx_getChild($ctx, 1); - if (!(!$rt_isInstance(var$4, oavrt_TerminalNode) ? 0 : (var$4.$getSymbol()).$getType0() != 179 ? 0 : 1)) - return oncia_IsTyped__init_($lhs, $cypherType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - return oncia_IsNotTyped__init_($lhs, $cypherType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_Reverse$_signatures1 = $this => { + return oncief_Reverse$_signatures0($this); }, -oncipvaf_ExpressionBuilder_normalFormComparisonExpression0 = ($this, $lhs, $nfCtx, $not, $p) => { - let $nf; - oncipau_Util$_$callClinit(); - $nf = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, $nfCtx, new oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0); - if (!$not) - return oncia_IsNormalized__init_($lhs, $nf, $p); - return oncia_IsNotNormalized__init_($lhs, $nf, $p); +oncief_Right$ = $rt_classWithoutFields(oncief_Function), +oncief_Right$_MODULE$ = null, +oncief_Right$_signatures = null, +oncief_Right$_$callClinit = () => { + oncief_Right$_$callClinit = $rt_eraseClinit(oncief_Right$); + oncief_Right$__clinit_(); }, -oncipvaf_ExpressionBuilder_subqueryBuilder = ($this, $regQuery, $matchMode, $whereClause, $patternList) => { - let $patternParts, $patternPos, $where, $finalMatchMode, var$9, var$10, var$11; - if ($regQuery !== null) - return $regQuery.$ast0; - $patternParts = sci_ArraySeq_map($patternList.$ast0, new oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0); - $patternPos = oncie_PatternPartWithSelector_position(sc_IndexedSeqOps_head$($patternParts)); - oncipau_Util$_$callClinit(); - $where = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $whereClause); - $regQuery = oncipau_Util$_MODULE$; - $whereClause = new oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1; - $whereClause.$_0169 = $patternPos; - $finalMatchMode = oncipau_Util$_astOpt0($regQuery, $matchMode, $whereClause); - $whereClause = new oncia_SingleQuery; - $patternList = sci_ArraySeq$_MODULE$; - $regQuery = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncia_Match, 1); - var$10 = var$9.data; - var$11 = new oncia_Match; - $matchMode = oncie_Pattern$ForMatch__init_($patternParts, $patternPos); +oncief_Right$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$8, $x$10; + var$1 = new oncief_Right$; + oncief_Right$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Right$_MODULE$ = var$1; s_package$_$callClinit(); - oncia_Match__init_(var$11, 0, $finalMatchMode, $matchMode, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), $where, $patternPos); - var$10[0] = var$11; - $regQuery = sr_ScalaRunTime$_wrapRefArray($regQuery, var$9); - sr_ClassTag$_$callClinit(); - oncia_SingleQuery__init_($whereClause, sci_ArraySeq$_from($patternList, $regQuery, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Match))), $patternPos); - return $whereClause; -}, -oncipvaf_ExpressionBuilder_exitTypeName0 = ($this, $ctx) => { - let $size, $p, $firstToken, var$5, var$6, var$7, var$8; - a: { - $size = ju_ArrayList_size($ctx.$children0); - oncipau_Util$_$callClinit(); - $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - $firstToken = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); - switch ($size) { - case 1: - switch ($firstToken) { - case 21: - var$5 = oncius_AnyType__init_(1, $p); - break a; - case 32: - case 33: - var$5 = oncius_BooleanType__init_(1, $p); - break a; - case 67: - var$5 = oncius_DateType__init_(1, $p); - break a; - case 90: - var$5 = oncius_DurationType__init_(1, $p); - break a; - case 92: - case 224: - var$5 = oncius_RelationshipType__init_(1, $p); - break a; - case 111: - var$5 = oncius_FloatType__init_(1, $p); - break a; - case 137: - case 138: - var$5 = oncius_IntegerType__init_(1, $p); - break a; - case 158: - var$5 = oncius_MapType__init_(1, $p); - break a; - case 173: - case 298: - var$5 = oncius_NodeType__init_(1, $p); - break a; - case 180: - break; - case 182: - var$5 = oncius_NullType__init_($p); - break a; - case 195: - case 196: - var$5 = oncius_PathType__init_(1, $p); - break a; - case 201: - var$5 = oncius_PointType__init_(1, $p); - break a; - case 263: - case 295: - var$5 = oncius_StringType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_NothingType__init_($p); - break a; - case 2: - switch ($firstToken) { - case 21: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 92: - case 224: - break; - case 158: - var$5 = oncius_MapType__init_(1, $p); - break a; - case 173: - case 298: - var$5 = oncius_NodeType__init_(1, $p); - break a; - case 294: - var$5 = oncius_AnyType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_RelationshipType__init_(1, $p); - break a; - case 153: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 68: - break; - case 270: - var$5 = oncius_LocalTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_LocalDateTimeType__init_(1, $p); - break a; - case 211: - break; - case 256: - var$5 = oncius_IntegerType__init_(1, $p); - break a; - case 308: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 68: - break; - case 270: - var$5 = oncius_ZonedTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ZonedDateTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_PropertyValueType__init_(1, $p); - break a; - case 3: - switch ($firstToken) { - case 21: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 211: - break; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_PropertyValueType__init_(1, $p); - break a; - case 270: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 302: - break; - case 303: - var$5 = oncius_LocalTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ZonedTimeType__init_(1, $p); - break a; - case 272: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 302: - break; - case 303: - var$5 = oncius_LocalDateTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ZonedDateTimeType__init_(1, $p); - break a; - default: - } - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - case 4: - switch ($firstToken) { - case 21: - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncipv_Cypher5Parser$TypeNameContext_LT($ctx) !== null && oncipv_Cypher5Parser$TypeNameContext_GT($ctx) !== null)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - $p = oncip_AstRuleCtx_ast(oncipv_Cypher5Parser$TypeNameContext_type($ctx)); - if ($p instanceof oncius_ClosedDynamicUnionType) { - var$5 = $p; - break a; - } - var$5 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - var$6 = s_Predef$_Set(s_Predef$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 1); - var$8.data[0] = $p; - oncius_ClosedDynamicUnionType__init_(var$5, sci_Set$_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)), $p.$position()); - break a; - case 22: - case 151: - break; - case 270: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 302: - break; - case 303: - var$5 = oncius_LocalTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ZonedTimeType__init_(1, $p); - break a; - case 272: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 302: - break; - case 303: - var$5 = oncius_LocalDateTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ZonedDateTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ListType__init_(oncip_AstRuleCtx_ast(oncipv_Cypher5Parser$TypeNameContext_type($ctx)), 1, $p); - break a; - default: - } - switch ($firstToken) { - case 21: - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncipv_Cypher5Parser$TypeNameContext_LT($ctx) !== null && oncipv_Cypher5Parser$TypeNameContext_GT($ctx) !== null)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - $p = oncip_AstRuleCtx_ast(oncipv_Cypher5Parser$TypeNameContext_type($ctx)); - if ($p instanceof oncius_ClosedDynamicUnionType) { - var$5 = $p; - break a; - } - var$5 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - var$6 = s_Predef$_Set(s_Predef$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 1); - var$8.data[0] = $p; - oncius_ClosedDynamicUnionType__init_(var$5, sci_Set$_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)), $p.$position()); - break a; - case 22: - case 151: - break; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ListType__init_(oncip_AstRuleCtx_ast(oncipv_Cypher5Parser$TypeNameContext_type($ctx)), 1, $p); - } - $ctx.$ast0 = var$5; + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Right$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6161), $rt_s(6162)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$7 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6161), $rt_s(6267)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6162), $rt_s(6268)); + var$7 = sci_Map$_from(var$7, sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6269), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); + oncief_Right$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_ExpressionBuilder_exitTrimFunction0 = ($this, $ctx) => { - let $trimSource, $trimCharacterString, $trimSpecification, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - $trimSource = $ctx.$trimSource.$ast0; - oncipau_Util$_$callClinit(); - $trimCharacterString = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$trimCharacterString0); - $trimSpecification = oncipcaf_ParserTrimSpecification_BOTH.$description1; - if (oncip_AstRuleCtx_getToken($ctx, 149, 0) !== null) - $trimSpecification = oncipcaf_ParserTrimSpecification_LEADING.$description1; - if (oncip_AstRuleCtx_getToken($ctx, 276, 0) !== null) - $trimSpecification = oncipcaf_ParserTrimSpecification_TRAILING.$description1; - if (s_Option_isEmpty($trimCharacterString)) { - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$6 = oncie_FunctionName$_MODULE$; - oncief_Trim$_$callClinit(); - var$7 = oncie_FunctionName$_apply(var$6, $rt_s(4012), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_package$_$callClinit(); - var$8 = s_package$_IndexedSeq(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($trimSpecification, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)), $trimSource]); - var$8 = sc_SeqFactory$Delegate_apply(var$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$9)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, var$7, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$8 = oncie_FunctionName$_MODULE$; - oncief_Trim$_$callClinit(); - var$10 = oncie_FunctionName$_apply(var$8, $rt_s(4012), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_package$_$callClinit(); - var$11 = s_package$_IndexedSeq(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($trimSpecification, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)), $trimCharacterString.$get1(), $trimSource]); - var$8 = sc_SeqFactory$Delegate_apply(var$11, sr_ScalaRunTime$_wrapRefArray(var$7, var$9)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, var$10, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$5; +oncief_Right$_name = $this => { + return $rt_s(6270); }, -oncipvaf_StatementBuilder = $rt_classWithoutFields(0), -oncipvaf_StatementBuilder_exitSetItem0 = ($this, $ctx) => { - let var$2, $dynamicProp, $dynamicLabels, $dynamicLabels_0, $labels; - if ($ctx instanceof oncipv_Cypher5Parser$SetPropContext) { - var$2 = new oncia_SetPropertyItem; - oncipau_Util$_$callClinit(); - oncia_SetPropertyItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if ($ctx instanceof oncipv_Cypher5Parser$SetDynamicPropContext) { - oncipau_Util$_$callClinit(); - $dynamicProp = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$2 = oncia_SetDynamicPropertyItem__init_($dynamicProp, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, $dynamicProp.$position39); - } else if ($ctx instanceof oncipv_Cypher5Parser$SetPropsContext) { - var$2 = new oncia_SetExactPropertiesFromMapItem; - oncipau_Util$_$callClinit(); - oncia_SetExactPropertiesFromMapItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if ($ctx instanceof oncipv_Cypher5Parser$AddPropContext) { - var$2 = new oncia_SetIncludingPropertiesFromMapItem; - oncipau_Util$_$callClinit(); - oncia_SetIncludingPropertiesFromMapItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if ($ctx instanceof oncipv_Cypher5Parser$SetLabelsContext) { - oncipau_Util$_$callClinit(); - $dynamicLabels = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if ($dynamicLabels === null) - $rt_throw(s_MatchError__init_($dynamicLabels)); - $dynamicLabels_0 = s_Tuple2__init_($dynamicLabels.$_1(), $dynamicLabels.$_2()); - $labels = $dynamicLabels_0.$_10; - $dynamicLabels = $dynamicLabels_0.$_20; - var$2 = oncia_SetLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, $labels, $dynamicLabels, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - if (!($ctx instanceof oncipv_Cypher5Parser$SetLabelsIsContext)) { - $dynamicLabels = new jl_IllegalStateException; - $labels = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($labels); - jl_StringBuilder_append(jl_StringBuilder_append($labels, $rt_s(6898)), $ctx); - jl_Throwable__init_0($dynamicLabels, jl_AbstractStringBuilder_toString($labels)); - $rt_throw($dynamicLabels); - } - oncipau_Util$_$callClinit(); - $dynamicLabels = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if ($dynamicLabels === null) - $rt_throw(s_MatchError__init_($dynamicLabels)); - $dynamicLabels_0 = s_Tuple2__init_($dynamicLabels.$_1(), $dynamicLabels.$_2()); - $labels = $dynamicLabels_0.$_10; - $dynamicLabels_0 = $dynamicLabels_0.$_20; - var$2 = oncia_SetLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, $labels, $dynamicLabels_0, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +oncief_Right$_productArity = $this => { + return 0; }, -oncipvaf_StatementBuilder_indexHint = ($this, $ctx, $hintType) => { - let $spec, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncip_AstRuleCtx_getToken($ctx, 132, 0) !== null && oncipv_Cypher5Parser$HintContext_LPAREN($ctx) !== null && oncipv_Cypher5Parser$HintContext_LPAREN($ctx) !== null && oavr_ParserRuleContext_getChildCount($ctx) <= 9)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - $spec = oncip_AstRuleCtx_getToken($ctx, 246, 0) === null ? oncia_UsingIndexHint$SeekOrScan$_MODULE$ : oncia_UsingIndexHint$SeekOnly$_MODULE$; - var$4 = new oncia_UsingIndexHint; - var$5 = (oncipv_Cypher5Parser$HintContext_variable($ctx)).$ast0; - var$6 = (oncipv_Cypher5Parser$HintContext_labelOrRelType($ctx)).$ast0; - var$7 = oncipv_Cypher5Parser$HintContext_nonEmptyNameList($ctx); - var$8 = sci_ArraySeq$_MODULE$; - var$9 = sc_StrictOptimizedIterableOps_collect$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher5Parser$NonEmptyNameListContext_symbolicNameString(var$7))), new oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1); - sr_ClassTag$_$callClinit(); - var$10 = sci_ArraySeq$_from(var$8, var$9, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PropertyKeyName))); - oncipau_Util$_$callClinit(); - oncia_UsingIndexHint__init_(var$4, var$5, var$6, var$10, $spec, $hintType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - return var$4; +oncief_Right$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Right$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Right$_hashCode = $this => { + return 78959100; +}, +oncief_Right$_toString = $this => { + return $rt_s(3709); +}, +oncief_Right$_signatures0 = $this => { + oncief_Right$_$callClinit(); + return oncief_Right$_signatures; +}, +oncief_Round$ = $rt_classWithoutFields(oncief_Function), +oncief_Round$_MODULE$ = null, +oncief_Round$_signatures = null, +oncief_Round$_$callClinit = () => { + oncief_Round$_$callClinit = $rt_eraseClinit(oncief_Round$); + oncief_Round$__clinit_(); +}, +oncief_Round$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$34, $x$23, $x$10, $x$14, $x$15, $x$16, $x$17, $x$19, $x$21, $x$27, $x$28, $x$29, $x$30, $x$32, $x$36; + var$1 = new oncief_Round$; + oncief_Round$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Round$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 3); + var$4 = var$3.data; + $x$1 = oncief_Round$_MODULE$; + $x$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1243); + $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + $x$34 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1243), $rt_s(6271)); + $x$23 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$34, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6272), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$23); + $x$14 = oncief_Round$_MODULE$; + $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1243), $rt_s(6273)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 2); + var$11 = var$8.data; + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$11[1] = oncius_package$_CTNumber(oncius_package$_MODULE$); + $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$17 = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$19 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); + $x$3 = s_Predef$_Map(s_Predef$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 2); + var$11 = var$8.data; + var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1243), $rt_s(6271)); + var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6273), $rt_s(6274)); + $x$3 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$23 = s_None$_MODULE$; + var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(6275), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$3); + $x$27 = oncief_Round$_MODULE$; + $x$28 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1243), $rt_s(6273), $rt_s(5586)]))); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 3); + var$11 = var$8.data; + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$11[1] = oncius_package$_CTNumber(oncius_package$_MODULE$); + var$11[2] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$29 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$30 = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$32 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); + $x$4 = s_Predef$_Map(s_Predef$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 3); + var$11 = var$8.data; + var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1243), $rt_s(6271)); + var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6273), $rt_s(6274)); + var$11[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5586), $rt_s(6276)); + $x$6 = sci_Map$_from($x$4, sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$34 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$36 = s_None$_MODULE$; + var$4[2] = oncie_FunctionTypeSignature__init_($x$27, $x$30, $x$28, $rt_s(6277), $x$32, $x$29, $x$34, 0, $x$36, 0, $x$36, $x$36, $x$6); + oncief_Round$_signatures = sci_Vector$_apply(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Round$_name = $this => { + return $rt_s(6278); +}, +oncief_Round$_productArity = $this => { + return 0; }; -function oncipvaf_Cypher5AstBuilder() { - let a = this; oncipv_AbstractCypher5AstBuilder.call(a); - a.$notificationLogger2 = null; - a.$exceptionFactory3 = null; - a.$RelGraphToken$module = null; - a.$NodeGraphToken$module = null; - a.$ElementGraphToken$module0 = null; - a.$Node$module = null; - a.$Rel$module0 = null; - a.$NoEntity$module = null; -} -let oncipvaf_Cypher5AstBuilder_exitStatements = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_Statements; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StatementContext)); - sr_ClassTag$_$callClinit(); - oncia_Statements__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))); - $ctx.$ast0 = var$2; +let oncief_Round$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitStatement = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +oncief_Round$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitRegularQuery = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$3 = $ctx.$children0.$size0; - if (var$3 != 1) { - var$4 = 1; - var$5 = 0; - var$6 = null; - while (var$4 < var$3) { - a: { - var$7 = ju_ArrayList_get($ctx.$children0, var$4); - if (var$7 instanceof oncipv_Cypher5Parser$SingleQueryContext) { - var$7 = var$7.$ast0; - var$8 = !var$5 ? oncia_UnionDistinct__init_(var$2, var$7, 1, var$6) : oncia_UnionAll__init_(var$2, var$7, 1, var$6); - var$5 = 0; - } else { - if (!$rt_isInstance(var$7, oavrt_TerminalNode)) { - var$2 = new jl_IllegalStateException; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(6900)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$7)); - $rt_throw(var$2); - } - var$8 = var$7; - switch ((var$8.$getSymbol()).$getType0()) { - case 18: - break; - case 81: - var$5 = 0; - var$8 = var$2; - break a; - case 285: - var$6 = oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$8); - var$8 = var$2; - break a; - default: - $ctx = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6901)), var$8); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw($ctx); - } - var$5 = 1; - var$8 = var$2; - } - } - var$4 = var$4 + 1 | 0; - var$2 = var$8; - } - } - $ctx.$ast0 = var$2; +oncief_Round$_hashCode = $this => { + return 79151470; }, -oncipvaf_Cypher5AstBuilder_exitSingleQuery = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_SingleQuery; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = $ctx.$children0; - sr_ClassTag$_$callClinit(); - oncia_SingleQuery__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Clause))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Round$_toString = $this => { + return $rt_s(6279); }, -oncipvaf_Cypher5AstBuilder_exitClause = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncief_Round$_signatures0 = $this => { + oncief_Round$_$callClinit(); + return oncief_Round$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitUseClause = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_UseGraph; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphReferenceContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_UseGraph__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_RTrim$ = $rt_classWithoutFields(oncief_Function), +oncief_RTrim$_MODULE$ = null, +oncief_RTrim$_signatures = null, +oncief_RTrim$_$callClinit = () => { + oncief_RTrim$_$callClinit = $rt_eraseClinit(oncief_RTrim$); + oncief_RTrim$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitGraphReference = ($this, $ctx) => { - let var$2, var$3; - if (oncipv_Cypher5Parser$GraphReferenceContext_graphReference($ctx) !== null) - var$2 = (oncipv_Cypher5Parser$GraphReferenceContext_graphReference($ctx)).$ast0; - else if (oncipv_Cypher5Parser$GraphReferenceContext_functionInvocation($ctx) !== null) { - var$2 = new oncia_GraphFunctionReference; - var$3 = (oncipv_Cypher5Parser$GraphReferenceContext_functionInvocation($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncia_GraphFunctionReference__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncia_GraphDirectReference; - var$3 = oncia_CatalogName$_apply(oncia_CatalogName$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameContext), 0)).$ast0); - oncipau_Util$_$callClinit(); - oncia_GraphDirectReference__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +oncief_RTrim$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$6, $x$3, var$8, $x$2, $x$4, var$11, $x$8, $x$14, $x$16, $x$10, $x$15, $x$17, $x$19, $x$21, $x$23; + var$1 = new oncief_RTrim$; + oncief_RTrim$_$callClinit(); + oncief_Function__init_(var$1); + oncief_RTrim$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); + var$4 = var$3.data; + $x$1 = oncief_RTrim$_MODULE$; + $x$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + $x$14 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(5422)); + $x$16 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$14, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6280), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$16); + $x$14 = oncief_RTrim$_MODULE$; + $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1183), $rt_s(5424)]))); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 2); + var$11 = var$8.data; + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$11[1] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$16 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); + $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$3 = s_Predef$_Map(s_Predef$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 2); + var$11 = var$8.data; + var$11[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6067)); + var$11[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(5424), $rt_s(6068)); + $x$6 = sci_Map$_from($x$3, sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$23 = s_None$_MODULE$; + var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(6281), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$6); + oncief_RTrim$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitSymbolicAliasName = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString($ctx); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +oncief_RTrim$_name = $this => { + return $rt_s(6282); }, -oncipvaf_Cypher5AstBuilder_exitReturnClause = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; - $ctx.$ast0 = oncia_Return_copy(var$2, var$2.$distinct1, var$2.$returnItems2, var$2.$orderBy2, var$2.$skip3, var$2.$limit3, var$2.$excludedNames, var$2.$addedInRewrite, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_RTrim$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitFinishClause = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Finish; - oncipau_Util$_$callClinit(); - oncia_Finish__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_RTrim$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitReturnBody = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = new oncia_Return; - var$3 = oncip_AstRuleCtx_getToken($ctx, 81, 0) === null ? 0 : 1; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnItemsContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$OrderByContext), 0)); - var$6 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SkipContext), 0)); - var$7 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LimitContext), 0)); - oncia_Return$_$callClinit(); - oncia_Return__init_(var$2, var$3, var$4, var$5, var$6, var$7, oncia_Return$_apply$default$6(oncia_Return$_MODULE$), 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_RTrim$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitReturnItems = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncia_ReturnItems; - var$3 = oncip_AstRuleCtx_getToken($ctx, 271, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnItemContext)); - sr_ClassTag$_$callClinit(); - var$4 = oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_(var$2, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_RTrim$_hashCode = $this => { + return 78344084; }, -oncipvaf_Cypher5AstBuilder_exitReturnItem = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0); - var$4 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); - $ctx.$ast0 = var$4 === null ? oncia_UnaliasedReturnItem__init_(var$3.$ast0, oncipau_Util$_inputText(oncipau_Util$_MODULE$, var$3), var$2) : oncia_AliasedReturnItem__init_(var$3.$ast0, var$4.$ast0, var$2); +oncief_RTrim$_toString = $this => { + return $rt_s(6283); }, -oncipvaf_Cypher5AstBuilder_exitOrderItem = ($this, $ctx) => { - let var$2; - if ($ctx.$children0.$size0 != 1 && oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AscTokenContext), 0) === null) { - var$2 = new oncia_DescSortItem; - oncipau_Util$_$callClinit(); - oncia_DescSortItem__init_0(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncia_AscSortItem; - oncipau_Util$_$callClinit(); - oncia_AscSortItem__init_0(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +oncief_RTrim$_signatures0 = $this => { + oncief_RTrim$_$callClinit(); + return oncief_RTrim$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitSkip = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Skip; - oncipau_Util$_$callClinit(); - oncia_Skip__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Sign$ = $rt_classWithoutFields(oncief_Function), +oncief_Sign$_MODULE$ = null, +oncief_Sign$_signatures = null, +oncief_Sign$_$callClinit = () => { + oncief_Sign$_$callClinit = $rt_eraseClinit(oncief_Sign$); + oncief_Sign$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitLimit = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Limit; - oncipau_Util$_$callClinit(); - oncia_Limit__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Sign$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$10, $x$3, var$8, $x$2, $x$4, var$11, $x$8, var$13, var$14, var$15, $x$6; + var$1 = new oncief_Sign$; + oncief_Sign$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Sign$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Sign$_MODULE$; + $x$10 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + $x$10 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$13 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$10, var$13, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = $x$10; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_NUMERIC(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6284)); + var$13 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6285), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$13); + oncief_Sign$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitWhereClause = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Where; - oncipau_Util$_$callClinit(); - oncia_Where__init_0(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Sign$_name = $this => { + return $rt_s(6286); }, -oncipvaf_Cypher5AstBuilder_exitWithClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnBodyContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)); - var$4 = new oncia_With; - var$5 = var$2.$distinct1; - var$6 = var$2.$returnItems2; - var$7 = var$2.$orderBy2; - var$8 = var$2.$skip3; - var$9 = var$2.$limit3; - oncia_With$_$callClinit(); - oncia_With__init_(var$4, var$5, var$6, var$7, var$8, var$9, var$3, oncia_DefaultWith$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$4; +oncief_Sign$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitCreateClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternListContext), 0); - var$3 = var$2.$ast0; - var$4 = new oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_00; - var$4.$_01102 = $this; - var$4.$_1370 = var$2; - var$5 = sci_ArraySeq_map(var$3, var$4); - var$6 = new oncia_Create; - var$3 = new oncie_Pattern$ForUpdate; - oncipau_Util$_$callClinit(); - oncie_Pattern$ForUpdate__init_(var$3, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - oncia_Create__init_(var$6, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$6; +oncief_Sign$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitInsertClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$InsertPatternListContext), 0); - var$3 = new oncia_Insert; - var$4 = new oncie_Pattern$ForUpdate; - var$5 = var$2.$ast0; - oncipau_Util$_$callClinit(); - oncie_Pattern$ForUpdate__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - oncia_Insert__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$3; +oncief_Sign$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitSetClause = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_SetClause; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = $ctx.$children0; - sr_ClassTag$_$callClinit(); - oncia_SetClause__init_(var$2, oncipau_Util$_astSeq0(var$3, var$4, 1, 2, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Sign$_hashCode = $this => { + return 2576861; }, -oncipvaf_Cypher5AstBuilder_exitSetItem = ($this, $ctx) => { - oncipvaf_StatementBuilder_exitSetItem0($this, $ctx); +oncief_Sign$_toString = $this => { + return $rt_s(6287); }, -oncipvaf_Cypher5AstBuilder_exitRemoveClause = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_Remove; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$RemoveItemContext)); - sr_ClassTag$_$callClinit(); - oncia_Remove__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Sign$_signatures0 = $this => { + oncief_Sign$_$callClinit(); + return oncief_Sign$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitRemoveItem = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - if ($ctx instanceof oncipv_Cypher5Parser$RemovePropContext) { - var$2 = $ctx; - var$3 = new oncia_RemovePropertyItem; - oncipau_Util$_$callClinit(); - oncia_RemovePropertyItem__init_(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0); - } else if ($ctx instanceof oncipv_Cypher5Parser$RemoveDynamicPropContext) { - var$2 = $ctx; - var$3 = new oncia_RemoveDynamicPropertyItem; - oncipau_Util$_$callClinit(); - oncia_RemoveDynamicPropertyItem__init_(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0); - } else if ($ctx instanceof oncipv_Cypher5Parser$RemoveLabelsContext) { - var$2 = $ctx; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if (var$4 === null) - $rt_throw(s_MatchError__init_(var$4)); - var$3 = s_Tuple2__init_(var$4.$_1(), var$4.$_2()); - var$4 = var$3.$_10; - var$5 = var$3.$_20; - var$3 = oncia_RemoveLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$4, var$5, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - if (!($ctx instanceof oncipv_Cypher5Parser$RemoveLabelsIsContext)) { - var$2 = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6898)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw(var$2); - } - var$2 = $ctx; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if (var$4 === null) - $rt_throw(s_MatchError__init_(var$4)); - var$3 = s_Tuple2__init_(var$4.$_1(), var$4.$_2()); - var$4 = var$3.$_10; - var$5 = var$3.$_20; - var$3 = oncia_RemoveLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$4, var$5, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$3; +oncief_Sin$ = $rt_classWithoutFields(oncief_Function), +oncief_Sin$_MODULE$ = null, +oncief_Sin$_signatures = null, +oncief_Sin$_$callClinit = () => { + oncief_Sin$_$callClinit = $rt_eraseClinit(oncief_Sin$); + oncief_Sin$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitDeleteClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oncip_AstRuleCtx_getToken($ctx, 78, 0) === null ? 0 : 1; - var$3 = new oncia_Delete; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext)); - sr_ClassTag$_$callClinit(); - oncia_Delete__init_(var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$3; +oncief_Sin$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Sin$; + oncief_Sin$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Sin$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Sin$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6288), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Sin$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitMatchClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = sci_ArraySeq_map((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternListContext), 0)).$ast0, new oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$4 = oncip_AstRuleCtx_getToken($ctx, 187, 0) === null ? oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1) : oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2); - var$5 = new oncia_Match; - var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0() != 187 ? 0 : 1; - var$7 = oncipau_Util$_MODULE$; - var$8 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MatchModeContext), 0); - var$9 = new oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1; - var$9.$_015 = var$3; - var$7 = oncipau_Util$_astOpt0(var$7, var$8, var$9); - var$10 = oncie_Pattern$ForMatch__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$4)); - var$8 = oncipau_Util$_MODULE$; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$HintContext)); - sr_ClassTag$_$callClinit(); - oncia_Match__init_(var$5, var$6, var$7, var$10, sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$8, var$2, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)), var$3); - $ctx.$ast0 = var$5; +oncief_Sin$_name = $this => { + return $rt_s(6289); }, -oncipvaf_Cypher5AstBuilder_exitMatchMode = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); - switch (var$2.$getType0()) { - case 79: - var$3 = oncie_MatchMode$DifferentRelationships__init_(0, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - break a; - case 227: - break; - default: - var$4 = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6898)), $ctx), $rt_s(6902)), var$2), 41); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$4); - } - var$3 = oncie_MatchMode$RepeatableElements__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - } - $ctx.$ast0 = var$3; +oncief_Sin$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitHint = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol(); - switch (var$2.$getType0()) { - case 38: - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory3, oncipcaf_ASTExceptionFactory_invalidHintIndexType(oncipcaf_HintIndexType_BTREE), oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2))); - case 132: - break; - case 140: - var$2 = new oncia_UsingJoinHint; - var$3 = oncipv_Cypher5Parser$HintContext_nonEmptyNameList($ctx); - oncia_UsingJoinHint__init_(var$2, onciu_NonEmptyList$_from(onciu_NonEmptyList$_MODULE$, sc_StrictOptimizedIterableOps_collect$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, var$3.$children0)), new oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 201: - var$2 = oncipvaf_StatementBuilder_indexHint($this, $ctx, oncia_UsingIndexHint$UsingPointIndexType$_MODULE$); - break a; - case 215: - var$2 = oncipvaf_StatementBuilder_indexHint($this, $ctx, oncia_UsingIndexHint$UsingRangeIndexType$_MODULE$); - break a; - case 240: - var$2 = oncia_UsingScanHint__init_((oncipv_Cypher5Parser$HintContext_variable($ctx)).$ast0, (oncipv_Cypher5Parser$HintContext_labelOrRelType($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 268: - var$2 = oncipvaf_StatementBuilder_indexHint($this, $ctx, oncia_UsingIndexHint$UsingTextIndexType$_MODULE$); - break a; - default: - $ctx = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6901)), var$2); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($ctx); - } - var$2 = oncipvaf_StatementBuilder_indexHint($this, $ctx, oncia_UsingIndexHint$UsingAnyIndexType$_MODULE$); - } - $ctx.$ast0 = var$2; +oncief_Sin$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitNonEmptyNameList = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncipv_Cypher5Parser$NonEmptyNameListContext_symbolicNameString($ctx); - var$4 = new oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_00; - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeqPositioned(var$2, var$3, var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PropertyKeyName))); +oncief_Sin$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitMergeClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - var$3 = var$2.$ast0; - if ($rt_isInstance(var$3, oncie_NonPrefixedPatternPart)) { - var$4 = var$3; - var$5 = new oncia_Merge; - var$2 = oncipau_Util$_MODULE$; - var$6 = $ctx.$children0; - sr_ClassTag$_$callClinit(); - oncia_Merge__init_(var$5, var$4, oncipau_Util$_astSeq(var$2, var$6, 2, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$5; - return; - } - if (!(var$3 instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_(var$3)); - $ctx = var$3; - var$5 = $this.$exceptionFactory3; - $ctx = $ctx.$selector1.$prettified(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3998)), $ctx), $rt_s(6903)); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$3), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2))); +oncief_Sin$_hashCode = $this => { + return 83128; }, -oncipvaf_Cypher5AstBuilder_exitMergeAction = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0(); - switch (var$2) { - case 61: - var$3 = oncia_OnCreate__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 159: - var$3 = oncia_OnMatch__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - $ctx.$ast0 = var$3; +oncief_Sin$_toString = $this => { + return $rt_s(6290); }, -oncipvaf_Cypher5AstBuilder_exitUnwindClause = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Unwind; - oncipau_Util$_$callClinit(); - oncia_Unwind__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Sin$_signatures0 = $this => { + oncief_Sin$_$callClinit(); + return oncief_Sin$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitCallClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ProcedureNameContext), 0)).$ast0; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$3 = s_Tuple2__init_(var$2.$_1(), var$2.$_2()); - var$4 = var$3.$_10; - var$3 = var$3.$_20; - if (oncip_AstRuleCtx_getToken($ctx, 239, 0) === null) - var$5 = s_None$_MODULE$; - else { - var$5 = new s_Some; - oncipau_Util$_$callClinit(); - var$6 = oncipau_Util$_MODULE$; - var$7 = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ProcedureArgumentContext))), new oncipvaf_StatementBuilder$exitCallClause$lambda$_68_00), jus_Collectors_toList()); - sr_ClassTag$_$callClinit(); - s_Some__init_0(var$5, oncipau_Util$_astSeq(var$6, var$7, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression)))); - } - var$8 = oncip_AstRuleCtx_getToken($ctx, 271, 0) === null ? 0 : 1; - if (oncipv_Cypher5Parser$CallClauseContext_YIELD($ctx) !== null && !var$8) { - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ProcedureResultItemContext)); - sr_ClassTag$_$callClinit(); - var$2 = oncipau_Util$_astSeq(var$2, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_ProcedureResultItem))); - var$9 = s_Some__init_(oncia_ProcedureResult__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncipv_Cypher5Parser$CallClauseContext_YIELD($ctx)).$getSymbol()))); - } else - var$9 = s_None$_MODULE$; - var$7 = new oncia_UnresolvedCall; - var$10 = oncip_AstRuleCtx_getToken($ctx, 187, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_UnresolvedCall__init_(var$7, var$4, var$3, var$5, var$9, var$8, var$10, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$7; +oncief_Size$ = $rt_classWithoutFields(oncief_Function), +oncief_Size$_MODULE$ = null, +oncief_Size$_signatures = null, +oncief_Size$_$callClinit = () => { + oncief_Size$_$callClinit = $rt_eraseClinit(oncief_Size$); + oncief_Size$__clinit_(); +}, +oncief_Size$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$3, var$8, $x$2, $x$4, var$11, $x$10, var$13, var$14, var$15, var$16, $x$6; + var$1 = new oncief_Size$; + oncief_Size$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Size$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Size$_MODULE$; + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + $x$10 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + var$13 = s_Predef$_Set(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$16 = oncius_package$_MODULE$; + var$15[1] = oncius_package$_CTList(var$16, oncius_package$_CTAny(var$16)); + $x$8 = var$13.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$10, $x$8, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = $x$10; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$16 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6291)); + var$13 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$16, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6292), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$13); + oncief_Size$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Size$_name = $this => { + return $rt_s(4173); +}, +oncief_Size$_productArity = $this => { + return 0; +}, +oncief_Size$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Size$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}; +let oncief_Size$_hashCode = $this => { + return 2577441; +}, +oncief_Size$_toString = $this => { + return $rt_s(6293); +}, +oncief_Size$_signatures0 = $this => { + oncief_Size$_$callClinit(); + return oncief_Size$_signatures; +}, +oncief_Sqrt$ = $rt_classWithoutFields(oncief_Function), +oncief_Sqrt$_MODULE$ = null, +oncief_Sqrt$_signatures = null, +oncief_Sqrt$_$callClinit = () => { + oncief_Sqrt$_$callClinit = $rt_eraseClinit(oncief_Sqrt$); + oncief_Sqrt$__clinit_(); +}, +oncief_Sqrt$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Sqrt$; + oncief_Sqrt$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Sqrt$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Sqrt$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LOGARITHMIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6294)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6295), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Sqrt$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Sqrt$_name = $this => { + return $rt_s(6296); +}, +oncief_Sqrt$_productArity = $this => { + return 0; +}, +oncief_Sqrt$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Sqrt$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Sqrt$_hashCode = $this => { + return 2584896; +}, +oncief_Sqrt$_toString = $this => { + return $rt_s(6297); +}, +oncief_Sqrt$_signatures0 = $this => { + oncief_Sqrt$_$callClinit(); + return oncief_Sqrt$_signatures; +}, +oncief_Split$ = $rt_classWithoutFields(oncief_Function), +oncief_Split$_MODULE$ = null, +oncief_Split$_signatures = null, +oncief_Split$_$callClinit = () => { + oncief_Split$_$callClinit = $rt_eraseClinit(oncief_Split$); + oncief_Split$__clinit_(); +}, +oncief_Split$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$3, $x$8, var$9, var$10, $x$10, var$12, $x$4, var$14, var$15, var$16, $x$6; + var$1 = new oncief_Split$; + oncief_Split$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Split$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Split$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6161), $rt_s(6298)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$10 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + var$12 = s_Predef$_Set(s_Predef$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 2); + var$15 = var$14.data; + var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$16 = oncius_package$_MODULE$; + var$15[1] = oncius_package$_CTList(var$16, oncius_package$_CTString(var$16)); + var$16 = var$12.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$10, var$16, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$10[1] = $x$10; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$9)); + $x$8 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$8, oncius_package$_CTString($x$8)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$12 = sr_ScalaRunTime$_MODULE$; + var$15 = $rt_createArray(s_Tuple2, 2); + var$9 = var$15.data; + var$9[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6161), $rt_s(6299)); + var$9[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6298), $rt_s(6300)); + var$12 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$12, var$15)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6301), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); + oncief_Split$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_Split$_name = $this => { + return $rt_s(6302); +}, +oncief_Split$_productArity = $this => { + return 0; +}, +oncief_Split$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncief_Split$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncief_Split$_hashCode = $this => { + return 80095994; +}, +oncief_Split$_toString = $this => { + return $rt_s(6303); }, -oncipvaf_Cypher5AstBuilder_exitProcedureName = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamespaceContext), 0)).$ast0; - var$3 = new oncie_ProcedureName; - var$4 = (oncipv_Cypher5Parser$ProcedureNameContext_symbolicNameString($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncie_ProcedureName__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$ProcedureNameContext_symbolicNameString($ctx))); - $ctx.$ast0 = s_Tuple2__init_(var$2, var$3); +oncief_Split$_signatures0 = $this => { + oncief_Split$_$callClinit(); + return oncief_Split$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitProcedureArgument = ($this, $ctx) => { - $ctx.$ast0 = oncipv_Cypher5Parser$ProcedureArgumentContext_expression($ctx); +oncief_StartNode$ = $rt_classWithoutFields(oncief_Function), +oncief_StartNode$_MODULE$ = null, +oncief_StartNode$_signatures = null, +oncief_StartNode$_$callClinit = () => { + oncief_StartNode$_$callClinit = $rt_eraseClinit(oncief_StartNode$); + oncief_StartNode$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitProcedureResultItem = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0)).$ast0; - if (oncipv_Cypher5Parser$ProcedureResultItemContext_variable($ctx) === null) { - var$3 = oncia_ProcedureResultItem$_MODULE$; - var$4 = new oncie_Variable; - oncipau_Util$_$callClinit(); - oncie_Variable__init_0(var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$3 = oncia_ProcedureResultItem$_apply(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$4 = (oncipv_Cypher5Parser$ProcedureResultItemContext_variable($ctx)).$ast0; - var$5 = oncia_ProcedureResultItem$_MODULE$; - var$3 = oncie_ProcedureOutput__init_(var$2, var$4.$position4); - oncipau_Util$_$callClinit(); - var$3 = oncia_ProcedureResultItem$_apply0(var$5, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$3; +oncief_StartNode$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_StartNode$; + oncief_StartNode$_$callClinit(); + oncief_Function__init_(var$1); + oncief_StartNode$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_StartNode$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_RelationshipType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTNode(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6114)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6304), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_StartNode$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitLoadCSVClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oncip_AstRuleCtx_getToken($ctx, 125, 0) === null ? 0 : 1; - oncia_LoadCSV$_$callClinit(); - var$3 = oncia_LoadCSV$_MODULE$; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0; - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_LoadCSV$_fromUrl(var$3, var$2, var$4, var$5, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_StartNode$_name = $this => { + return $rt_s(6305); }, -oncipvaf_Cypher5AstBuilder_exitForeachClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = new oncia_Foreach; - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; - var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 4)).$ast0; - var$5 = oncipau_Util$_MODULE$; - var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ClauseContext)); - sr_ClassTag$_$callClinit(); - oncia_Foreach__init_(var$2, var$3, var$4, oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_StartNode$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitSubqueryClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SubqueryScopeContext), 0); - if (var$2 === null) { - var$3 = new oncia_ImportingWithSubqueryCall; - var$4 = (oncipv_Cypher5Parser$SubqueryClauseContext_regularQuery($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncia_ImportingWithSubqueryCall__init_(var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$SubqueryClauseContext_subqueryInTransactionsParameters($ctx)), oncipv_Cypher5Parser$SubqueryClauseContext_OPTIONAL($ctx) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = var$2.$ast0; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$5 = var$2.$_1$mcZ$sp(); - var$2 = var$2.$_2(); - var$3 = s_Tuple2__init_(jl_Boolean_valueOf(var$5), var$2); - var$5 = s_Tuple2__1$mcZ$sp(var$3); - var$4 = var$3.$_20; - var$3 = new oncia_ScopeClauseSubqueryCall; - var$6 = (oncipv_Cypher5Parser$SubqueryClauseContext_regularQuery($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncia_ScopeClauseSubqueryCall__init_(var$3, var$6, var$5, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$SubqueryClauseContext_subqueryInTransactionsParameters($ctx)), oncipv_Cypher5Parser$SubqueryClauseContext_OPTIONAL($ctx) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$3; +oncief_StartNode$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitSubqueryScope = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new s_Tuple2; - var$3 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 271, 0) === null ? 0 : 1); - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext)); - sr_ClassTag$_$callClinit(); - s_Tuple2__init_0(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Variable)))); - $ctx.$ast0 = var$2; +oncief_StartNode$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsParameters = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters($ctx); - var$3 = oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters($ctx); - var$4 = oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters($ctx); - var$5 = var$2.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$2.$get0(0)).$ast0); - if (oncip_AstRuleCtx_getToken($ctx, 54, 0) === null) - var$6 = s_None$_MODULE$; - else { - var$6 = new s_Some; - var$7 = new oncia_SubqueryCall$InTransactionsConcurrencyParameters; - oncipau_Util$_$callClinit(); - oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_0(var$7, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 131, 0)).$getSymbol())); - s_Some__init_0(var$6, var$7); - } - var$7 = var$3.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$3.$get0(0)).$ast0); - var$3 = var$4.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$4.$get0(0)).$ast0); - var$4 = new oncia_SubqueryCall$InTransactionsParameters; - oncipau_Util$_$callClinit(); - oncia_SubqueryCall$InTransactionsParameters__init_(var$4, var$5, var$6, var$7, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 278, 0)).$getSymbol())); - $ctx.$ast0 = var$4; +oncief_StartNode$_hashCode = $this => { + return (-125500060); }, -oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsBatchParameters = ($this, $ctx) => { - let var$2; - var$2 = new oncia_SubqueryCall$InTransactionsBatchParameters; - oncipau_Util$_$callClinit(); - oncia_SubqueryCall$InTransactionsBatchParameters__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_StartNode$_toString = $this => { + return $rt_s(6306); }, -oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsErrorParameters = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 2)).$getSymbol()).$getType0(); - switch (var$2) { - case 36: - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_$callClinit(); - var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$; - break a; - case 59: - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_$callClinit(); - var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$; - break a; - case 107: - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit(); - var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$; - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - $ctx.$ast0 = oncia_SubqueryCall$InTransactionsErrorParameters__init_0(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_StartNode$_signatures0 = $this => { + oncief_StartNode$_$callClinit(); + return oncief_StartNode$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitSubqueryInTransactionsReportParameters = ($this, $ctx) => { - let var$2; - var$2 = new oncia_SubqueryCall$InTransactionsReportParameters; - oncipau_Util$_$callClinit(); - oncia_SubqueryCall$InTransactionsReportParameters__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_StdDev$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_StdDev$_MODULE$ = null, +oncief_StdDev$_signatures = null, +oncief_StdDev$_$callClinit = () => { + oncief_StdDev$_$callClinit = $rt_eraseClinit(oncief_StdDev$); + oncief_StdDev$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitOrderBySkipLimitClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = new oncia_With; - var$3 = new oncia_ReturnItems; +oncief_StdDev$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_StdDev$; + oncief_StdDev$_$callClinit(); + oncief_Function__init_(var$1); + oncief_StdDev$_MODULE$ = var$1; s_package$_$callClinit(); - var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - var$5 = s_None$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_ReturnItems__init_(var$3, 1, var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$6 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$OrderByContext), 0)); - var$4 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SkipContext), 0)); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LimitContext), 0)); - var$7 = s_None$_MODULE$; - oncia_With$_$callClinit(); - oncia_With__init_(var$2, 0, var$3, var$6, var$4, var$5, var$7, oncia_DefaultWith$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_StdDev$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6307)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6308), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_StdDev$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitPeriodicCommitQueryHintFailure = ($this, $ctx) => { - return; +oncief_StdDev$_name = $this => { + return $rt_s(6309); }, -oncipvaf_Cypher5AstBuilder_exitPatternList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PatternContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PatternPart))); +oncief_StdDev$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitPattern = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SelectorContext), 0); - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AnonymousPatternContext), 0)).$ast0; - if (var$2 === null) - var$2 = var$4; - else { - var$5 = var$2.$ast0; - var$2 = oncie_NamedPatternPart__init_(var$5, var$4, var$5.$position4); - } - $ctx.$ast0 = var$3 === null ? var$2 : oncie_PatternPartWithSelector__init_(var$3.$ast0, var$2); +oncief_StdDev$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitInsertPatternList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$InsertPatternContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PathPatternPart))); +oncief_StdDev$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitInsertPattern = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - if (oncipv_Cypher5Parser$InsertPatternContext_EQ($ctx) !== null) - $ctx.$ast0 = null; - else { - var$2 = $ctx.$children0.$size0; - if (var$2 == 1) { - var$3 = new oncie_PathPatternPart; - oncipau_Util$_$callClinit(); - oncie_PathPatternPart__init_0(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0); - $ctx.$ast0 = var$3; - } else { - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$4 = null; - var$5 = null; - var$6 = 0; - while (var$6 < var$2) { - var$7 = ju_ArrayList_get($ctx.$children0, var$6); - if (var$7 instanceof oncipv_Cypher5Parser$InsertNodePatternContext) { - var$7 = var$7.$ast0; - if (var$5 !== null) { - var$8 = oncie_RelationshipChain__init_(var$4, var$5, var$7, var$3); - var$5 = null; - var$7 = var$8; - } - } else { - if (!(var$7 instanceof oncipv_Cypher5Parser$InsertRelationshipPatternContext)) { - $ctx = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6897)), var$7); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($ctx); - } - var$5 = var$7.$ast0; - var$7 = var$4; - } - var$6 = var$6 + 1 | 0; - var$4 = var$7; - } - $ctx.$ast0 = oncie_PathPatternPart__init_(var$4); - } - } +oncief_StdDev$_hashCode = $this => { + return (-1808571630); +}, +oncief_StdDev$_toString = $this => { + return $rt_s(6310); }; -let oncipvaf_Cypher5AstBuilder_exitQuantifier = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - a: { - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); - var$3 = var$2.$getType0(); - switch (var$3) { - case 147: - if ($ctx.$from21 === null && $ctx.$to4 === null && oncip_AstRuleCtx_getToken($ctx, 49, 0) === null) { - var$4 = new oncie_FixedQuantifier; - var$5 = oncipau_Util$_MODULE$; - oncie_FixedQuantifier__init_(var$4, oncipau_Util$_unsignedDecimalInt(var$5, (oncipau_Util$_nodeChild(var$5, $ctx, 1)).$getSymbol()), oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - break a; - } - var$4 = oncie_IntervalQuantifier__init_(oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$from21), oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$to4), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 199: - var$4 = oncie_PlusQuantifier__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - break a; - case 271: - var$4 = oncie_StarQuantifier__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$3))); - } - $ctx.$ast0 = var$4; +let oncief_StdDev$_signatures0 = $this => { + oncief_StdDev$_$callClinit(); + return oncief_StdDev$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitAnonymousPattern = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0); - if (var$2 instanceof oncipv_Cypher5Parser$PatternElementContext) { - var$3 = var$2; - var$2 = oncie_PathPatternPart__init_(var$3.$ast0); - } else { - if (!(var$2 instanceof oncipv_Cypher5Parser$ShortestPathPatternContext)) { - var$2 = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6898)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); - } - var$2 = var$2.$ast0; - } - $ctx.$ast0 = var$2; +oncief_StdDevP$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_StdDevP$_MODULE$ = null, +oncief_StdDevP$_signatures = null, +oncief_StdDevP$_$callClinit = () => { + oncief_StdDevP$_$callClinit = $rt_eraseClinit(oncief_StdDevP$); + oncief_StdDevP$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitShortestPathPattern = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); - $ctx.$ast0 = oncie_ShortestPathsPatternPart__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternElementContext), 0)).$ast0, var$2.$getType0() == 17 ? 0 : 1, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); +oncief_StdDevP$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_StdDevP$; + oncief_StdDevP$_$callClinit(); + oncief_Function__init_(var$1); + oncief_StdDevP$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_StdDevP$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6311)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6312), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_StdDevP$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitPatternElement = ($this, $ctx) => { - oncipvaf_ExpressionBuilder_exitPatternElement($this, $ctx); +oncief_StdDevP$_name = $this => { + return $rt_s(6313); }, -oncipvaf_Cypher5AstBuilder_exitSelector = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if ($ctx instanceof oncipv_Cypher5Parser$AnyShortestPathContext) { - var$3 = $ctx; - var$4 = oncie_PatternPart$AnyShortestPath__init_(oncipvaf_ExpressionBuilder_selectorCount0($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); - } else if ($ctx instanceof oncipv_Cypher5Parser$AllShortestPathContext) { - var$2 = $ctx; - var$4 = oncie_PatternPart$AllShortestPaths__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } else if ($ctx instanceof oncipv_Cypher5Parser$AnyPathContext) { - var$3 = $ctx; - var$4 = oncie_PatternPart$AnyPath__init_(oncipvaf_ExpressionBuilder_selectorCount0($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); - } else if ($ctx instanceof oncipv_Cypher5Parser$ShortestGroupContext) { - var$3 = $ctx; - var$4 = oncie_PatternPart$ShortestGroups__init_(oncipvaf_ExpressionBuilder_selectorCount0($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); - } else { - if (!($ctx instanceof oncipv_Cypher5Parser$AllPathContext)) { - var$2 = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6898)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); - } - var$4 = oncie_PatternPart$AllPaths__init_(var$2); - } - $ctx.$ast0 = var$4; +oncief_StdDevP$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitParenthesizedPath = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$3 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if ($rt_isInstance(var$3, oncie_NonPrefixedPatternPart)) { - var$4 = var$3; - var$3 = oncipv_Cypher5Parser$ParenthesizedPathContext_quantifier($ctx); - $ctx.$ast0 = var$3 === null ? oncie_ParenthesizedPath__init_(var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$ParenthesizedPathContext_expression($ctx)), var$2) : oncie_QuantifiedPath$_apply(oncie_QuantifiedPath$_MODULE$, var$4, var$3.$ast0, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$ParenthesizedPathContext_expression($ctx)), var$2); - return; - } - if (!(var$3 instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_(var$3)); - var$2 = var$3; - $ctx = oncipv_Cypher5Parser$ParenthesizedPathContext_quantifier($ctx) !== null ? $rt_s(3996) : $rt_s(3997); - var$5 = $this.$exceptionFactory3; - var$3 = var$2.$selector1.$prettified(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3998)), var$3), $rt_s(3999)), $ctx), $rt_s(4000)); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$4), oncie_PatternPartWithSelector_position(var$2))); +oncief_StdDevP$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitProperties = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncief_StdDevP$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitPathLength = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - if (oncip_AstRuleCtx_getToken($ctx, 84, 0) !== null) { - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$from23); - var$3 = oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$to5); - var$4 = new s_Some; - var$5 = new oncie_Range; - var$6 = s_Option_map(var$2, new oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_00); - var$7 = new oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_10; - var$7.$_01021 = $ctx; - oncie_Range__init_0(var$5, var$2, var$3, s_Option_getOrElse(var$6, var$7)); - s_Some__init_0(var$4, var$5); - } else { - var$2 = $ctx.$single2; - if (var$2 === null) - var$4 = s_None$_MODULE$; - else { - var$3 = new s_Some; - var$4 = new oncie_UnsignedDecimalIntegerLiteral; - var$7 = var$2.$getText(); - oncipau_Util$_$callClinit(); - oncie_UnsignedDecimalIntegerLiteral__init_0(var$4, var$7, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $ctx.$single2)); - s_Some__init_0(var$3, var$4); - var$4 = s_Some__init_(oncie_Range__init_(var$3, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))); - } - } - $ctx.$ast0 = var$4; +oncief_StdDevP$_hashCode = $this => { + return (-231145602); }, -oncipvaf_Cypher5AstBuilder_exitExpression = ($this, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_00); +oncief_StdDevP$_toString = $this => { + return $rt_s(6314); }, -oncipvaf_Cypher5AstBuilder_exitExpression11 = ($this, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_00); +oncief_StdDevP$_signatures0 = $this => { + oncief_StdDevP$_$callClinit(); + return oncief_StdDevP$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitExpression10 = ($this, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_00); +oncief_Substring$ = $rt_classWithoutFields(oncief_Function), +oncief_Substring$_MODULE$ = null, +oncief_Substring$_signatures = null, +oncief_Substring$_$callClinit = () => { + oncief_Substring$_$callClinit = $rt_eraseClinit(oncief_Substring$); + oncief_Substring$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitExpression9 = ($this, $ctx) => { - let var$2, var$3; - a: { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED) { - b: { - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$Expression8Context), 0); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx); - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$3)) - break a; - else - break b; - } - if (var$3 === null) - break a; - } - $rt_throw(jl_AssertionError__init_($rt_s(35))); - } - } - c: { - switch ($ctx.$children0.$size0) { - case 1: - break; - case 2: - var$3 = new oncie_Not; - oncipau_Util$_$callClinit(); - oncie_Not__init_(var$3, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break c; - default: - var$3 = scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 179))); - oncipau_Util$_$callClinit(); - var$3 = sc_AbstractIterable_foldRight(var$3, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_00); - break c; - } - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$3; +oncief_Substring$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, $x$6, $x$3, var$9, var$10, $x$4, $x$8, $x$14, $x$16, $x$10, $x$15, $x$17, $x$19, $x$21, $x$23; + var$1 = new oncief_Substring$; + oncief_Substring$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Substring$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 2); + var$4 = var$3.data; + $x$1 = oncief_Substring$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6161), $rt_s(6237)]))); + $x$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + $x$3 = $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + $x$14 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6161), $rt_s(6315)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6237), $rt_s(6316)); + $x$16 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray($x$14, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6317), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, $x$16); + $x$14 = oncief_Substring$_MODULE$; + $x$15 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6161), $rt_s(6237), $rt_s(6162)]))); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 3); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[2] = oncius_package$_CTInteger(oncius_package$_MODULE$); + $x$16 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$9)); + $x$17 = oncius_package$_CTString(oncius_package$_MODULE$); + $x$19 = oncief_Category$_STRING(oncief_Category$_MODULE$); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 3); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6161), $rt_s(6315)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6237), $rt_s(6316)); + var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6162), $rt_s(6318)); + $x$6 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$21 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$23 = s_None$_MODULE$; + var$4[1] = oncie_FunctionTypeSignature__init_($x$14, $x$17, $x$15, $rt_s(6319), $x$19, $x$16, $x$21, 0, $x$23, 0, $x$23, $x$23, $x$6); + oncief_Substring$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitExpression8 = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - a: { - var$2 = $ctx.$children0; - switch (var$2.$size0) { - case 1: - break; - case 3: - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_ExpressionBuilder_binaryPredicate0($this, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, oncip_AstRuleCtx_getChild($ctx, 1), oncip_AstRuleCtx_getChild($ctx, 2)); - break a; - default: - var$3 = oncie_Ands$_MODULE$; - var$2 = (sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, var$2)))).$sliding(3, 2); - var$4 = new oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0; - var$4.$_01006 = $this; - var$4.$_1346 = $ctx; - var$5 = sc_Iterator_map$(var$2, var$4); - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$2 = oncie_Ands$_apply(var$3, var$5, oncipau_Util$_pos1(var$2, oncipau_Util$_nodeChild(var$2, $ctx, 1))); - break a; - } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$2; +oncief_Substring$_name = $this => { + return $rt_s(6320); }, -oncipvaf_Cypher5AstBuilder_exitExpression7 = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - default: - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$3 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - if (var$3 instanceof oncipv_Cypher5Parser$StringAndListComparisonContext) { - var$3 = oncipvaf_ExpressionBuilder_stringAndListComparisonExpression($this, var$2, var$3); - break a; - } - if (var$3 instanceof oncipv_Cypher5Parser$NullComparisonContext) { - var$3 = oncipvaf_ExpressionBuilder_nullComparisonExpression($this, var$2, var$3); - break a; - } - if (var$3 instanceof oncipv_Cypher5Parser$TypeComparisonContext) { - var$3 = oncipvaf_ExpressionBuilder_typeComparisonExpression($this, var$2, var$3); - break a; - } - if (!(var$3 instanceof oncipv_Cypher5Parser$NormalFormComparisonContext)) { - var$3 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6904)), $ctx); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$3); - } - var$4 = var$3; - var$3 = oncipvaf_ExpressionBuilder_normalFormComparisonExpression0($this, var$2, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher5Parser$NormalFormContext), 0), oncip_AstRuleCtx_getToken(var$4, 179, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$4)); - break a; - } - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$3; +oncief_Substring$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitComparisonExpression6 = ($this, $ctx) => { - return; +oncief_Substring$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitNormalForm = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncip_AstRuleCtx_getChild($ctx, 0)).$getSymbol()).$getType0(); - switch (var$2) { - case 168: - break; - case 169: - oncie_NFDNormalForm$_$callClinit(); - var$3 = oncie_NFDNormalForm$_MODULE$; - break a; - case 170: - oncie_NFKCNormalForm$_$callClinit(); - var$3 = oncie_NFKCNormalForm$_MODULE$; - break a; - case 171: - oncie_NFKDNormalForm$_$callClinit(); - var$3 = oncie_NFKDNormalForm$_MODULE$; - break a; - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - oncie_NFCNormalForm$_$callClinit(); - var$3 = oncie_NFCNormalForm$_MODULE$; - } - $ctx.$ast0 = var$3; +oncief_Substring$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitExpression6 = ($this, $ctx) => { - let var$2, var$3; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = new oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_00; - var$3.$_01179 = $this; - $ctx.$ast0 = oncipau_Util$_astBinaryFold(var$2, $ctx, var$3); +oncief_Substring$_hashCode = $this => { + return (-1760457167); }, -oncipvaf_Cypher5AstBuilder_exitExpression5 = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = new oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0; - var$3.$_01205 = $this; - $ctx.$ast0 = oncipau_Util$_astBinaryFold(var$2, $ctx, var$3); +oncief_Substring$_toString = $this => { + return $rt_s(6321); }, -oncipvaf_Cypher5AstBuilder_exitExpression4 = ($this, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0); +oncief_Substring$_signatures0 = $this => { + oncief_Substring$_$callClinit(); + return oncief_Substring$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitExpression3 = ($this, $ctx) => { - let var$2; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - default: - if (oncip_AstRuleCtx_getToken($ctx, 199, 0) === null) { - var$2 = new oncie_UnarySubtract; - oncipau_Util$_$callClinit(); - oncie_UnarySubtract__init_(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - } - var$2 = new oncie_UnaryAdd; - oncipau_Util$_$callClinit(); - oncie_UnaryAdd__init_(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$2; +oncief_Sum$ = $rt_classWithoutFields(oncief_AggregatingFunction), +oncief_Sum$_MODULE$ = null, +oncief_Sum$_signatures = null, +oncief_Sum$_$callClinit = () => { + oncief_Sum$_$callClinit = $rt_eraseClinit(oncief_Sum$); + oncief_Sum$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitExpression2 = ($this, $ctx) => { - let var$2, var$3; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - default: - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = new oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0; - var$3.$_01196 = $this; - var$2 = oncipau_Util$_astCtxReduce(var$2, $ctx, var$3); - break a; - } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$2; +oncief_Sum$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$8, $x$4, var$8, $x$2, $x$6, var$11, $x$10, var$13, var$14, var$15, var$16, $x$3, var$18; + var$1 = new oncief_Sum$; + oncief_Sum$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Sum$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Sum$_MODULE$; + $x$8 = s_package$_Vector(s_package$_MODULE$); + $x$4 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray($x$4, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + $x$8 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 3); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$15[2] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$16 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_($x$8, var$16, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = $x$8; + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$4 = new oncius_ClosedDynamicUnionType; + $x$6 = s_Predef$_Set(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_CypherType, 3); + var$15 = var$8.data; + var$15[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$15[2] = oncius_package$_CTDuration(oncius_package$_MODULE$); + oncius_ClosedDynamicUnionType__init_($x$4, $x$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_AGGREGATING(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$16 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6096)); + var$18 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$16, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6322), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$18); + oncief_Sum$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitPostFix = ($this, $ctx) => { - return; +oncief_Sum$_name = $this => { + return $rt_s(6323); }, -oncipvaf_Cypher5AstBuilder_exitProperty = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncief_Sum$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitDynamicProperty = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncief_Sum$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitPropertyExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = new oncie_Property; - oncipau_Util$_$callClinit(); - oncie_Property__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$3 = $ctx.$children0.$size0; - var$4 = 2; - while (var$4 < var$3) { - var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, var$4)).$ast0; - var$6 = oncie_Property__init_(var$2, var$5, var$5.$position26); - var$4 = var$4 + 1 | 0; - var$2 = var$6; - } - $ctx.$ast0 = var$2; +oncief_Sum$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitDynamicPropertyExpression = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; - $ctx.$ast0 = oncie_ContainerIndex__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, var$2, var$2.$position()); +oncief_Sum$_hashCode = $this => { + return 83499; }, -oncipvaf_Cypher5AstBuilder_exitExpression1 = ($this, $ctx) => { - switch ($ctx.$children0.$size0) { - case 1: - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - return; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6905)); - $rt_throw($ctx); +oncief_Sum$_toString = $this => { + return $rt_s(6324); }, -oncipvaf_Cypher5AstBuilder_exitCaseExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncie_CaseExpression; - var$3 = s_None$_MODULE$; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CaseAlternativeContext)); - sr_ClassTag$_$callClinit(); - oncie_CaseExpression__init_(var$2, var$3, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Sum$_signatures0 = $this => { + oncief_Sum$_$callClinit(); + return oncief_Sum$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitCaseAlternative = ($this, $ctx) => { - let var$2; - var$2 = new s_Tuple2; - oncipau_Util$_$callClinit(); - s_Tuple2__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0); - $ctx.$ast0 = var$2; +oncief_Tail$ = $rt_classWithoutFields(oncief_Function), +oncief_Tail$_MODULE$ = null, +oncief_Tail$_signatures0 = null, +oncief_Tail$_$callClinit = () => { + oncief_Tail$_$callClinit = $rt_eraseClinit(oncief_Tail$); + oncief_Tail$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitExtendedCaseExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - var$3 = new oncie_CaseExpression; - var$4 = s_Some__init_(var$2); - var$5 = s_None$_MODULE$; - var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ExtendedCaseAlternativeContext)); - var$7 = var$6.$size(); - var$8 = scm_ArrayBuffer__init_0(var$7); - var$9 = 0; - a: while (true) { - if (var$9 >= var$7) { - var$10 = sci_ArraySeq$_MODULE$; - sr_ClassTag$_$callClinit(); - oncie_CaseExpression__init_(var$3, var$4, var$5, sci_ArraySeq$_unsafeWrapArray(var$10, sc_IterableOnceOps_toArray$(var$8, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(s_Tuple2)))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$elseExp), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$3; - return; - } - var$11 = var$6.$get0(var$9); - var$12 = var$11.$children0.$size0; - var$13 = 1; - var$2 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, var$11)).$ast0; - while (var$13 < var$12) { - var$10 = ju_ArrayList_get(var$11.$children0, var$13); - if (var$10 instanceof oncipv_Cypher5Parser$ExtendedWhenContext) { - var$10 = var$10; - if (var$10 instanceof oncipv_Cypher5Parser$WhenEqualsContext) { - var$14 = new oncie_Equals; - oncie_CaseExpression$Placeholder$_$callClinit(); - var$15 = oncie_CaseExpression$Placeholder$_MODULE$; - var$10 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, var$10, 0); - var$16 = oncipau_Util$_MODULE$; - oncie_Equals__init_(var$14, var$15, var$10, oncipau_Util$_pos1(var$16, oncipau_Util$_nodeChild(var$16, var$11, var$13 - 1 | 0))); - } else if (var$10 instanceof oncipv_Cypher5Parser$WhenComparatorContext) { - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_binaryPredicate0($this, oncie_CaseExpression$Placeholder$_MODULE$, oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, var$10, 0), oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$10, 1)); - } else if (var$10 instanceof oncipv_Cypher5Parser$WhenStringOrListContext) { - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_stringAndListComparisonExpression($this, oncie_CaseExpression$Placeholder$_MODULE$, var$10); - } else if (var$10 instanceof oncipv_Cypher5Parser$WhenNullContext) { - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_nullComparisonExpression($this, oncie_CaseExpression$Placeholder$_MODULE$, var$10); - } else if (var$10 instanceof oncipv_Cypher5Parser$WhenTypeContext) { - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_typeComparisonExpression($this, oncie_CaseExpression$Placeholder$_MODULE$, var$10); - } else { - if (!(var$10 instanceof oncipv_Cypher5Parser$WhenFormContext)) - break a; - var$15 = var$10; - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_normalFormComparisonExpression0($this, oncie_CaseExpression$Placeholder$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$15, $rt_cls(oncipv_Cypher5Parser$NormalFormContext), 0), oncip_AstRuleCtx_getToken(var$15, 179, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$15)); - } - var$10 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - scm_ArrayBuffer_addOne(var$8, s_Predef$ArrowAssoc$_$minus$greater$extension(var$10, var$14, var$2)); - } - var$13 = var$13 + 1 | 0; - } - var$9 = var$9 + 1 | 0; - } - $ctx = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6898)), var$10); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw($ctx); +oncief_Tail$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; + var$1 = new oncief_Tail$; + oncief_Tail$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Tail$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Tail$_MODULE$; + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ListType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + $x$3 = oncius_package$_MODULE$; + var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTAny($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$14 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6325)); + var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6326), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Tail$_signatures0 = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitExtendedCaseAlternative = ($this, $ctx) => { - return; +oncief_Tail$_name = $this => { + return $rt_s(6327); }, -oncipvaf_Cypher5AstBuilder_exitExtendedWhen = ($this, $ctx) => { - return; +oncief_Tail$_signatures = $this => { + oncief_Tail$_$callClinit(); + return oncief_Tail$_signatures0; }, -oncipvaf_Cypher5AstBuilder_exitListComprehension = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oncie_ListComprehension$_MODULE$; - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; - var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0; - var$5 = $ctx.$whereExp0; - var$6 = var$5 === null ? s_None$_MODULE$ : s_Some__init_(var$5.$ast0); - var$5 = $ctx.$barExp2; - $ctx.$ast0 = oncie_ListComprehension$_apply(var$2, var$3, var$4, var$6, var$5 === null ? s_None$_MODULE$ : s_Some__init_(var$5.$ast0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_Tail$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitPatternComprehension = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = oncipv_Cypher5Parser$PatternComprehensionContext_variable($ctx) === null ? s_None$_MODULE$ : s_Some__init_((oncipv_Cypher5Parser$PatternComprehensionContext_variable($ctx)).$ast0); - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PathPatternNonEmptyContext), 0)).$ast0; - var$4 = $ctx.$whereExp2; - var$5 = var$4 === null ? s_None$_MODULE$ : s_Some__init_(var$4.$ast0); - var$6 = $ctx.$barExp1.$ast0; - var$7 = new oncie_PatternComprehension; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$8 = s_None$_MODULE$; - oncie_PatternComprehension__init_(var$7, var$2, var$3, var$5, var$6, var$4, var$8, var$8); - $ctx.$ast0 = var$7; +oncief_Tail$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitPathPatternNonEmpty = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$3 = $ctx.$children0.$size0; - var$4 = 1; - var$5 = null; - while (var$4 < var$3) { - var$6 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, var$4); - if (var$6 instanceof oncipv_Cypher5Parser$RelationshipPatternContext) - var$5 = var$6.$ast0; - else { - if (!(var$6 instanceof oncipv_Cypher5Parser$NodePatternContext)) { - $ctx = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6897)), var$6); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw($ctx); - } - var$6 = var$6; - var$2 = oncie_RelationshipChain__init_(var$2, var$5, var$6.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$6)); - } - var$4 = var$4 + 1 | 0; - } - $ctx.$ast0 = oncie_RelationshipsPattern__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_Tail$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitPatternExpression = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_PatternExpression; - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$4 = s_None$_MODULE$; - oncie_PatternExpression__init_(var$2, var$3, var$4, var$4); - $ctx.$ast0 = var$2; +oncief_Tail$_hashCode = $this => { + return 2599024; }, -oncipvaf_Cypher5AstBuilder_exitReduceExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 6)).$ast0; - var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 10)).$ast0; - var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 4)).$ast0; - var$6 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 8)).$ast0; - $ctx.$ast0 = oncie_ReduceExpression__init_(oncie_ReduceScope__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_Tail$_toString = $this => { + return $rt_s(6328); }, -oncipvaf_Cypher5AstBuilder_exitListItemsPredicate = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - a: { - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; - var$4 = $ctx.$inExp.$ast0; - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$whereExp3); - var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); - switch (var$6) { - case 18: - oncie_AllIterablePredicate$_$callClinit(); - var$2 = oncie_AllIterablePredicate$_apply(oncie_AllIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); - break a; - case 21: - oncie_AnyIterablePredicate$_$callClinit(); - var$2 = oncie_AnyIterablePredicate$_apply(oncie_AnyIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); - break a; - case 176: - oncie_NoneIterablePredicate$_$callClinit(); - var$2 = oncie_NoneIterablePredicate$_apply(oncie_NoneIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); - break a; - case 257: - oncie_SingleIterablePredicate$_$callClinit(); - var$2 = oncie_SingleIterablePredicate$_apply(oncie_SingleIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$6))); - } - $ctx.$ast0 = var$2; +oncief_Tail$_signatures1 = $this => { + return oncief_Tail$_signatures($this); +}; +let oncief_Tan$ = $rt_classWithoutFields(oncief_Function), +oncief_Tan$_MODULE$ = null, +oncief_Tan$_signatures = null, +oncief_Tan$_$callClinit = () => { + oncief_Tan$_$callClinit = $rt_eraseClinit(oncief_Tan$); + oncief_Tan$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitShortestPathExpression = ($this, $ctx) => { - let var$2; - var$2 = new oncie_ShortestPathExpression; - oncipau_Util$_$callClinit(); - oncie_ShortestPathExpression__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0)); - $ctx.$ast0 = var$2; +oncief_Tan$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Tan$; + oncief_Tan$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Tan$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Tan$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_FloatType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_TRIGONOMETRIC(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6046)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6329), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Tan$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitParenthesizedExpression = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncief_Tan$_name = $this => { + return $rt_s(6330); }, -oncipvaf_Cypher5AstBuilder_exitMapProjection = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncie_MapProjection; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$MapProjectionElementContext)); - sr_ClassTag$_$callClinit(); - oncie_MapProjection__init_(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getToken($ctx, 147, 0))); - $ctx.$ast0 = var$2; +oncief_Tan$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitMapProjectionElement = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oncip_AstRuleCtx_getToken($ctx, 47, 0); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0); - var$4 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyKeyNameContext), 0); - var$5 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyContext), 0); - if (var$2 !== null) { - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0; - var$2 = oncie_LiteralEntry__init_(var$4.$ast0, var$5, var$5.$position()); - } else if (var$3 !== null) { - var$2 = new oncie_VariableSelector; - var$5 = var$3.$ast0; - oncipau_Util$_$callClinit(); - oncie_VariableSelector__init_(var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (var$5 !== null) { - var$5 = var$5.$ast0; - var$2 = oncie_PropertySelector__init_(var$5, var$5.$position26); - } else { - var$2 = new oncie_AllPropertiesSelector; - oncipau_Util$_$callClinit(); - oncie_AllPropertiesSelector__init_(var$2, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 271, 0)).$getSymbol())); - } - $ctx.$ast0 = var$2; +oncief_Tan$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitCountStar = ($this, $ctx) => { - let var$2; - var$2 = new oncie_CountStar; - oncipau_Util$_$callClinit(); - oncie_CountStar__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Tan$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitExistsExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncia_ExistsExpression; - var$3 = oncipvaf_ExpressionBuilder_subqueryBuilder($this, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RegularQueryContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MatchModeContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternListContext), 0)); - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$5 = s_None$_MODULE$; - oncia_ExistsExpression__init_(var$2, var$3, var$4, var$5, var$5); - $ctx.$ast0 = var$2; +oncief_Tan$_hashCode = $this => { + return 83841; }, -oncipvaf_Cypher5AstBuilder_exitCountExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncia_CountExpression; - var$3 = oncipvaf_ExpressionBuilder_subqueryBuilder($this, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RegularQueryContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MatchModeContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PatternListContext), 0)); - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$5 = s_None$_MODULE$; - oncia_CountExpression__init_(var$2, var$3, var$4, var$5, var$5); - $ctx.$ast0 = var$2; +oncief_Tan$_toString = $this => { + return $rt_s(6331); }, -oncipvaf_Cypher5AstBuilder_exitCollectExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncia_CollectExpression; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RegularQueryContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$5 = s_None$_MODULE$; - oncia_CollectExpression__init_(var$2, var$3, var$4, var$5, var$5); - $ctx.$ast0 = var$2; +oncief_Tan$_signatures0 = $this => { + oncief_Tan$_$callClinit(); + return oncief_Tan$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitPropertyKeyName = ($this, $ctx) => { - let var$2; - var$2 = new oncie_PropertyKeyName; - oncipau_Util$_$callClinit(); - oncie_PropertyKeyName__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_ToBoolean$ = $rt_classWithoutFields(oncief_Function), +oncief_ToBoolean$_MODULE$ = null, +oncief_ToBoolean$_signatures = null, +oncief_ToBoolean$_$callClinit = () => { + oncief_ToBoolean$_$callClinit = $rt_eraseClinit(oncief_ToBoolean$); + oncief_ToBoolean$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitParameter = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterNameContext), 0)).$ast0; - var$3 = var$2.$name14; - var$4 = var$2.$parameterType0; - var$5 = var$2.$sizeHint2; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncie_ExplicitParameter_copy(var$2, var$3, var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToBoolean$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, var$7, var$8, $x$2, $x$8, var$11, var$12, $x$3, $x$10, var$15, var$16, $x$4, $x$6; + var$1 = new oncief_ToBoolean$; + oncief_ToBoolean$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToBoolean$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToBoolean$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + var$12 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$3 = s_Predef$_Set(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$15 = $rt_createArray(oncius_CypherType, 3); + var$16 = var$15.data; + oncius_package$_$callClinit(); + var$16[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$16[1] = oncius_package$_CTString(oncius_package$_MODULE$); + var$16[2] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$7 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$15)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_(var$12, var$7, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = var$12; + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6332)); + var$12 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6333), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); + oncief_ToBoolean$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitParameterName = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = $ctx.$paramType0; - var$3 = var$2 !== null ? jl_String_hashCode(var$2) : 0; - a: { - b: { - switch (var$3) { - case -1838656495: - if (jl_String_equals($rt_s(714), var$2)) { - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTString(oncius_package$_MODULE$); - break a; - } - break b; - case 76092: - if (jl_String_equals($rt_s(724), var$2)) { - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTMap(oncius_package$_MODULE$); - break a; - } - break b; - default: - } - } - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - } - oncipau_Util$_$callClinit(); - var$2 = oncip_AstRuleCtx_getChild($ctx, 0); - if (var$2 instanceof oncipv_Cypher5Parser$SymbolicNameStringContext) - var$5 = var$2.$ast0; - else { - if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { - var$2 = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6900)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw(var$2); - } - var$5 = var$2.$getText(); - } - $ctx.$ast0 = oncie_ExplicitParameter__init_(var$5, var$4, onciu_UnknownSize$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToBoolean$_name = $this => { + return $rt_s(6334); }, -oncipvaf_Cypher5AstBuilder_exitFunctionInvocation = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oncipv_Cypher5Parser$FunctionInvocationContext_functionName($ctx)).$ast0; - var$3 = oncip_AstRuleCtx_getToken($ctx, 81, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncipv_Cypher5Parser$FunctionInvocationContext_functionArgument($ctx)), new oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0), jus_Collectors_toList()); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncie_FunctionInvocation__init_0(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, $ctx.$parent instanceof oncipv_Cypher5Parser$GraphReferenceContext, var$2.$namespace3.$position97); -}; -let oncipvaf_Cypher5AstBuilder_exitFunctionName = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamespaceContext), 0)).$ast0; - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); - var$4 = var$3.$ast0; - var$5 = new oncie_FunctionName; - oncipau_Util$_$callClinit(); - oncie_FunctionName__init_(var$5, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - $ctx.$ast0 = var$5; +oncief_ToBoolean$_signatures0 = $this => { + oncief_ToBoolean$_$callClinit(); + return oncief_ToBoolean$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitFunctionArgument = ($this, $ctx) => { - $ctx.$ast0 = (oncipv_Cypher5Parser$FunctionArgumentContext_expression($ctx)).$ast0; +oncief_ToBoolean$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitNamespace = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_Namespace; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); - sr_ClassTag$_$callClinit(); - oncie_Namespace__init_(var$2, sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_ToBoolean$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitVariable = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncie_Variable; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncie_Variable__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_ToBoolean$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitType = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - default: - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$TypePartContext)); - sr_ClassTag$_$callClinit(); - var$4 = sc_AbstractIterable_toSet(oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncius_CypherType)))); - if (var$4.$size() == 1) { - var$5 = var$4.$head(); - break a; - } - var$5 = oncius_ClosedDynamicUnionType__init_0(var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - } - oncipau_Util$_$callClinit(); - var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$5.$simplify(); +oncief_ToBoolean$_hashCode = $this => { + return 405464333; }, -oncipvaf_Cypher5AstBuilder_exitTypePart = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = sr_ObjectRef_create((oncipv_Cypher5Parser$TypePartContext_typeName($ctx)).$ast0); - if (oncipv_Cypher5Parser$TypePartContext_typeNullability($ctx) !== null) - var$2.$elem = var$2.$elem.$withIsNullable1(0); - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$TypeListSuffixContext)); - var$4 = new oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0; - var$4.$_0548 = var$2; - var$4.$_1189 = $ctx; - var$3.$forEach(var$4); - $ctx.$ast0 = var$2.$elem; +oncief_ToBoolean$_toString = $this => { + return $rt_s(6335); }, -oncipvaf_Cypher5AstBuilder_exitTypeName = ($this, $ctx) => { - oncipvaf_ExpressionBuilder_exitTypeName0($this, $ctx); +oncief_ToBoolean$_signatures1 = $this => { + return oncief_ToBoolean$_signatures0($this); }, -oncipvaf_Cypher5AstBuilder_exitTypeNullability = ($this, $ctx) => { - return; +oncief_ToBooleanList$ = $rt_classWithoutFields(oncief_Function), +oncief_ToBooleanList$_MODULE$ = null, +oncief_ToBooleanList$_signatures = null, +oncief_ToBooleanList$_$callClinit = () => { + oncief_ToBooleanList$_$callClinit = $rt_eraseClinit(oncief_ToBooleanList$); + oncief_ToBooleanList$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitTypeListSuffix = ($this, $ctx) => { - $ctx.$ast0 = jl_Boolean_valueOf(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$TypeNullabilityContext), 0) !== null ? 0 : 1); +oncief_ToBooleanList$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; + var$1 = new oncief_ToBooleanList$; + oncief_ToBooleanList$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToBooleanList$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToBooleanList$_MODULE$; + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ListType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + $x$3 = oncius_package$_MODULE$; + var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTBoolean($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$14 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6336)); + var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6337), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToBooleanList$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitMap = ($this, $ctx) => { - let var$2; - var$2 = new oncie_MapExpression; - oncipau_Util$_$callClinit(); - oncie_MapExpression__init_(var$2, oncipau_Util$_astPairs(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyKeyNameContext)), oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_ToBooleanList$_name = $this => { + return $rt_s(6338); }, -oncipvaf_Cypher5AstBuilder_exitSymbolicNameString = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncief_ToBooleanList$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitEscapedSymbolicNameString = ($this, $ctx) => { - $ctx.$ast0 = jl_String_replace(($ctx.$start1.$getInputStream0()).$getText0(oavrm_Interval__init_($ctx.$start1.$getStartIndex() + 1 | 0, $ctx.$stop.$getStopIndex() - 1 | 0)), $rt_s(413), $rt_s(412)); +oncief_ToBooleanList$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitUnescapedSymbolicNameString = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oncip_AstRuleCtx_getText($ctx); - if (oncipcd_DeprecatedChars_containsDeprecatedChar(var$2)) { - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$4 = $this.$notificationLogger2; - var$5 = new oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_138_0; - var$5.$_01155 = var$2; - var$5.$_1386 = var$3; - s_Option_foreach(var$4, var$5); - } - $ctx.$ast0 = var$2; +oncief_ToBooleanList$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitSymbolicLabelNameString = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncief_ToBooleanList$_hashCode = $this => { + return (-1895056565); }, -oncipvaf_Cypher5AstBuilder_exitUnescapedLabelSymbolicNameString = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncief_ToBooleanList$_toString = $this => { + return $rt_s(6339); }, -oncipvaf_Cypher5AstBuilder_exitUnescapedLabelSymbolicNameString_ = ($this, $ctx) => { - $ctx.$ast0 = oncip_AstRuleCtx_getText($ctx); +oncief_ToBooleanList$_signatures0 = $this => { + oncief_ToBooleanList$_$callClinit(); + return oncief_ToBooleanList$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitNormalizeFunction = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0; - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NormalFormContext), 0); - oncipau_Util$_$callClinit(); - var$4 = (oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, var$3, new oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_148_0)).$formName(); - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$3 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, $rt_s(428), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToBooleanOrNull$ = $rt_classWithoutFields(oncief_Function), +oncief_ToBooleanOrNull$_MODULE$ = null, +oncief_ToBooleanOrNull$_signatures = null, +oncief_ToBooleanOrNull$_$callClinit = () => { + oncief_ToBooleanOrNull$_$callClinit = $rt_eraseClinit(oncief_ToBooleanOrNull$); + oncief_ToBooleanOrNull$__clinit_(); +}, +oncief_ToBooleanOrNull$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_ToBooleanOrNull$; + oncief_ToBooleanOrNull$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToBooleanOrNull$_MODULE$ = var$1; s_package$_$callClinit(); - var$6 = s_package$_IndexedSeq(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncie_Expression, 2); - var$9 = var$8.data; - var$9[0] = var$2; - var$9[1] = oncie_StringLiteral__init_(var$4, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)); - var$10 = sc_SeqFactory$Delegate_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, var$3, 0, var$10, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$5; + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToBooleanOrNull$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6340)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6341), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToBooleanOrNull$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitTrimFunction = ($this, $ctx) => { - oncipvaf_ExpressionBuilder_exitTrimFunction0($this, $ctx); +oncief_ToBooleanOrNull$_name = $this => { + return $rt_s(6342); }, -oncipvaf_Cypher5AstBuilder_exitGrantCommand = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncipv_Cypher5Parser$GrantCommandContext_privilege($ctx) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GrantRoleContext), 0)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$4 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); - var$4 = oncia_GrantRolesToUsers__init_(var$4.$_10, var$4.$_20, var$2); - } else { - var$3 = (oncipv_Cypher5Parser$GrantCommandContext_privilege($ctx)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$5 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); - var$3 = var$5.$_11; - var$6 = var$5.$_21; - var$5 = var$5.$_30; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0; - var$4 = oncia_GrantPrivilege__init_(var$3, oncip_AstRuleCtx_getToken($ctx, 130, 0) === null ? 0 : 1, var$6, var$5, var$7, var$2); - } - $ctx.$ast0 = var$4; +oncief_ToBooleanOrNull$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitDenyCommand = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PrivilegeContext), 0)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$4 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); - var$5 = var$4.$_11; - var$3 = var$4.$_21; - var$6 = var$4.$_30; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0; - $ctx.$ast0 = oncia_DenyPrivilege__init_(var$5, oncip_AstRuleCtx_getToken($ctx, 130, 0) === null ? 0 : 1, var$3, var$6, var$4, var$2); +oncief_ToBooleanOrNull$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitRevokeCommand = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncipv_Cypher5Parser$RevokeCommandContext_privilege($ctx) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RevokeRoleContext), 0)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$4 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); - var$4 = oncia_RevokeRolesFromUsers__init_(var$4.$_10, var$4.$_20, var$2); - } else { - var$3 = (oncipv_Cypher5Parser$RevokeCommandContext_privilege($ctx)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$5 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); - var$3 = var$5.$_11; - var$6 = var$5.$_21; - var$5 = var$5.$_30; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0; - var$8 = oncipv_Cypher5Parser$RevokeCommandContext_DENY($ctx) !== null ? oncia_RevokeDenyType__init_(oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$RevokeCommandContext_DENY($ctx))) : oncipv_Cypher5Parser$RevokeCommandContext_GRANT($ctx) === null ? oncia_RevokeBothType__init_(var$2) : oncia_RevokeGrantType__init_(oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$RevokeCommandContext_GRANT($ctx))); - var$4 = oncia_RevokePrivilege__init_0(var$3, oncip_AstRuleCtx_getToken($ctx, 130, 0) === null ? 0 : 1, var$6, var$5, var$7, var$8, var$2); - } - $ctx.$ast0 = var$4; +oncief_ToBooleanOrNull$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitGrantRole = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserNamesContext), 0)).$ast0); +oncief_ToBooleanOrNull$_hashCode = $this => { + return 9875831; }, -oncipvaf_Cypher5AstBuilder_exitRevokeRole = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserNamesContext), 0)).$ast0); +oncief_ToBooleanOrNull$_toString = $this => { + return $rt_s(6343); }, -oncipvaf_Cypher5AstBuilder_exitPrivilege = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncief_ToBooleanOrNull$_signatures0 = $this => { + oncief_ToBooleanOrNull$_$callClinit(); + return oncief_ToBooleanOrNull$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitAllPrivilege = ($this, $ctx) => { - oncipvaf_DdlPrivilegeBuilder_exitAllPrivilege0($this, $ctx); +oncief_ToFloat$ = $rt_classWithoutFields(oncief_Function); +let oncief_ToFloat$_MODULE$ = null, +oncief_ToFloat$_signatures = null, +oncief_ToFloat$_$callClinit = () => { + oncief_ToFloat$_$callClinit = $rt_eraseClinit(oncief_ToFloat$); + oncief_ToFloat$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitAllPrivilegeTarget = ($this, $ctx) => { - return; +oncief_ToFloat$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, var$7, var$8, $x$2, $x$8, var$11, var$12, $x$3, $x$10, var$15, var$16, $x$4, $x$6; + var$1 = new oncief_ToFloat$; + oncief_ToFloat$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToFloat$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToFloat$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + var$12 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$3 = s_Predef$_Set(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$15 = $rt_createArray(oncius_CypherType, 3); + var$16 = var$15.data; + oncius_package$_$callClinit(); + var$16[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$16[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$16[2] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$7 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$15)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_(var$12, var$7, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = var$12; + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6344)); + var$12 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6345), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); + oncief_ToFloat$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitAllPrivilegeType = ($this, $ctx) => { - return; +oncief_ToFloat$_name = $this => { + return $rt_s(6346); }, -oncipvaf_Cypher5AstBuilder_exitCreatePrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - if (oncipv_Cypher5Parser$CreatePrivilegeContext_databaseScope($ctx) !== null) { - var$2 = (oncipv_Cypher5Parser$CreatePrivilegeContext_databaseScope($ctx)).$ast0; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext), 0)).$ast0; - var$4 = new oncia_DatabasePrivilege; - oncipau_Util$_$callClinit(); - oncia_DatabasePrivilege__init_(var$4, var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$5 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier0($this, var$4, s_None$_MODULE$); - } else if (oncipv_Cypher5Parser$CreatePrivilegeContext_actionForDBMS($ctx) !== null) { - var$2 = (oncipv_Cypher5Parser$CreatePrivilegeContext_actionForDBMS($ctx)).$ast0; - var$3 = new oncia_DbmsPrivilege; - oncipau_Util$_$callClinit(); - oncia_DbmsPrivilege__init_0(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$5 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$3, s_None$_MODULE$); - } else { - var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierContext), 0)).$ast0; - var$5 = new s_Tuple3; - var$2 = new oncia_GraphPrivilege; - var$3 = oncia_CreateElementAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$2, var$3, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$5, var$2, s_None$_MODULE$, var$7); - } - $ctx.$ast0 = var$5; +oncief_ToFloat$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitCreatePrivilegeForDatabase = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncief_ToFloat$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitActionForDBMS = ($this, $ctx) => { - let var$2, var$3; - var$2 = $ctx.$parent.$getRuleIndex() != 245 ? 0 : 1; - a: { - oncipau_Util$_$callClinit(); - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0()) { - case 15: - if (!var$2) { - var$3 = oncia_DropAliasAction$_MODULE$; - break a; - } - var$3 = oncia_CreateAliasAction$_MODULE$; - break a; - case 53: - if (!var$2) { - var$3 = oncia_DropCompositeDatabaseAction$_MODULE$; - break a; - } - var$3 = oncia_CreateCompositeDatabaseAction$_MODULE$; - break a; - case 65: - if (!var$2) { - var$3 = oncia_DropDatabaseAction$_MODULE$; - break a; - } - var$3 = oncia_CreateDatabaseAction$_MODULE$; - break a; - case 235: - if (!var$2) { - var$3 = oncia_DropRoleAction$_MODULE$; - break a; - } - var$3 = oncia_CreateRoleAction$_MODULE$; - break a; - case 291: - if (!var$2) { - var$3 = oncia_DropUserAction$_MODULE$; - break a; - } - var$3 = oncia_CreateUserAction$_MODULE$; - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6906)); - $rt_throw($ctx); - } - $ctx.$ast0 = var$3; +oncief_ToFloat$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitDatabasePrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - a: { - oncipau_Util$_$callClinit(); - var$2 = oncip_AstRuleCtx_getChild($ctx, 0); - if (var$2 instanceof oncipv_Cypher5Parser$ConstraintTokenContext) - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_AllConstraintActions$_MODULE$); - else if (var$2 instanceof oncipv_Cypher5Parser$IndexTokenContext) - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_AllIndexActions$_MODULE$); - else { - if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6907)); - $rt_throw($ctx); - } - switch ((var$2.$getSymbol()).$getType0()) { - case 11: - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_AccessDatabaseAction$_MODULE$); - break a; - case 165: - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_AllTokenActions$_MODULE$); - break a; - case 259: - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_StartDatabaseAction$_MODULE$); - break a; - case 262: - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier1($this, oncia_StopDatabaseAction$_MODULE$); - break a; - case 267: - var$3 = s_Tuple2__init_(oncia_TerminateTransactionAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$DatabasePrivilegeContext_userQualifier($ctx), new oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0)); - break a; - case 277: - var$3 = s_Tuple2__init_(oncia_AllTransactionActions$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$DatabasePrivilegeContext_userQualifier($ctx), new oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1)); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - } - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$2 = var$3.$_10; - var$3 = var$3.$_20; - var$4 = s_Tuple2__init_(var$2, var$3); - var$3 = var$4.$_10; - var$4 = var$4.$_20; - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$DatabaseScopeContext), 0)).$ast0; - $ctx.$ast0 = s_Tuple3__init_(oncia_DatabasePrivilege__init_0(var$3, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$, var$4); +oncief_ToFloat$_hashCode = $this => { + return 486707329; }, -oncipvaf_Cypher5AstBuilder_exitDbmsPrivilege = ($this, $ctx) => { - oncipvaf_DdlPrivilegeBuilder_exitDbmsPrivilege0($this, $ctx); +oncief_ToFloat$_toString = $this => { + return $rt_s(6347); }, -oncipvaf_Cypher5AstBuilder_exitDbmsPrivilegeExecute = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AdminTokenContext), 0) !== null) - var$2 = oncipvaf_DdlPrivilegeBuilder_withQualifier0($this, oncia_ExecuteAdminProcedureAction$_MODULE$); - else if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ProcedureTokenContext), 0) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExecuteFunctionQualifierContext), 0)).$ast0; - var$2 = oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_BOOSTED($ctx) === null ? s_Tuple2__init_(oncia_ExecuteFunctionAction$_MODULE$, var$3) : s_Tuple2__init_(oncia_ExecuteBoostedFunctionAction$_MODULE$, var$3); - } else { - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExecuteProcedureQualifierContext), 0)).$ast0; - var$2 = oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_BOOSTED($ctx) === null ? s_Tuple2__init_(oncia_ExecuteProcedureAction$_MODULE$, var$4) : s_Tuple2__init_(oncia_ExecuteBoostedProcedureAction$_MODULE$, var$4); - } - $ctx.$ast0 = var$2; +oncief_ToFloat$_signatures0 = $this => { + oncief_ToFloat$_$callClinit(); + return oncief_ToFloat$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitDropPrivilege = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncipv_Cypher5Parser$DropPrivilegeContext_databaseScope($ctx) === null) { - var$2 = new oncia_DbmsPrivilege; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ActionForDBMSContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_DbmsPrivilege__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, var$2, s_None$_MODULE$); - } else { - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$IndexTokenContext), 0) === null ? oncia_DropConstraintAction$_MODULE$ : oncia_DropIndexAction$_MODULE$; - var$4 = (oncipv_Cypher5Parser$DropPrivilegeContext_databaseScope($ctx)).$ast0; - var$3 = new oncia_DatabasePrivilege; - oncipau_Util$_$callClinit(); - oncia_DatabasePrivilege__init_(var$3, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier0($this, var$3, s_None$_MODULE$); - } - $ctx.$ast0 = var$2; +oncief_ToFloatList$ = $rt_classWithoutFields(oncief_Function), +oncief_ToFloatList$_MODULE$ = null, +oncief_ToFloatList$_signatures = null, +oncief_ToFloatList$_$callClinit = () => { + oncief_ToFloatList$_$callClinit = $rt_eraseClinit(oncief_ToFloatList$); + oncief_ToFloatList$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitLoadPrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - if (oncip_AstRuleCtx_getToken($ctx, 18, 0) !== null) { - var$2 = new s_Tuple3; - var$3 = new oncia_LoadPrivilege; - oncia_LoadAllDataAction$_$callClinit(); - var$4 = oncia_LoadAllDataAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_LoadPrivilege__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$2, var$3, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadAllQualifier__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); - } else if (oncip_AstRuleCtx_getToken($ctx, 289, 0) === null) { - var$2 = new s_Tuple3; - var$4 = new oncia_LoadPrivilege; - oncia_LoadCidrAction$_$callClinit(); - var$5 = oncia_LoadCidrAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_LoadPrivilege__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$2, var$4, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadCidrQualifier__init_((oncipv_Cypher5Parser$LoadPrivilegeContext_stringOrParameter($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); - } else { - var$2 = new s_Tuple3; - var$5 = new oncia_LoadPrivilege; - oncia_LoadUrlAction$_$callClinit(); - var$4 = oncia_LoadUrlAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_LoadPrivilege__init_(var$5, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$2, var$5, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadUrlQualifier__init_((oncipv_Cypher5Parser$LoadPrivilegeContext_stringOrParameter($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); - } - $ctx.$ast0 = var$2; +oncief_ToFloatList$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; + var$1 = new oncief_ToFloatList$; + oncief_ToFloatList$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToFloatList$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToFloatList$_MODULE$; + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ListType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + $x$3 = oncius_package$_MODULE$; + var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTFloat($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$14 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6348)); + var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6349), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToFloatList$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitQualifiedGraphPrivileges = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = oncip_AstRuleCtx_getToken($ctx, 73, 0) !== null ? s_Tuple2__init_(oncia_DeleteElementAction$_MODULE$, s_None$_MODULE$) : s_Tuple2__init_(oncia_MergeAdminAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesResourceContext), 0)).$ast0); - var$3 = var$2.$_10; - var$2 = var$2.$_20; - var$4 = s_Tuple2__init_(var$3, var$2); - var$2 = var$4.$_10; - var$4 = var$4.$_20; - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; - var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierContext), 0)).$ast0; - var$7 = new s_Tuple3; - var$8 = new oncia_GraphPrivilege; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$8, var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$7, var$8, var$4, var$6); - $ctx.$ast0 = var$7; +oncief_ToFloatList$_name = $this => { + return $rt_s(6350); }, -oncipvaf_Cypher5AstBuilder_exitQualifiedGraphPrivilegesWithProperty = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = oncip_AstRuleCtx_getToken($ctx, 279, 0) !== null ? s_Tuple2__init_(oncia_TraverseAction$_MODULE$, s_None$_MODULE$) : s_Tuple2__init_(oncip_AstRuleCtx_getToken($ctx, 218, 0) === null ? oncia_MatchAction$_MODULE$ : oncia_ReadAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesResourceContext), 0)).$ast0); - var$3 = var$2.$_10; - var$2 = var$2.$_20; - var$4 = s_Tuple2__init_(var$3, var$2); - var$2 = var$4.$_10; - var$4 = var$4.$_20; - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; - var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierContext), 0)).$ast0; - var$7 = new s_Tuple3; - var$8 = new oncia_GraphPrivilege; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$8, var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$7, var$8, var$4, var$6); - $ctx.$ast0 = var$7; +oncief_ToFloatList$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitShowPrivilege = ($this, $ctx) => { - oncipvaf_DdlPrivilegeBuilder_exitShowPrivilege0($this, $ctx); +oncief_ToFloatList$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitSetPrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncip_AstRuleCtx_getToken($ctx, 69, 0) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; - if (oncip_AstRuleCtx_getToken($ctx, 142, 0) !== null) { - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelsResourceContext), 0)).$ast0; - var$5 = oncipvaf_DdlPrivilegeBuilder_labelAllQualifier0($this, oncia_GraphPrivilege__init_0(oncia_SetLabelAction$_MODULE$, var$3, var$2), var$4, var$2); - } else { - var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesResourceContext), 0)).$ast0; - var$5 = s_Tuple3__init_(oncia_GraphPrivilege__init_0(oncia_SetPropertyAction$_MODULE$, var$3, var$2), var$6, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphQualifierContext), 0)).$ast0); - } - } else - var$5 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, oncia_DbmsPrivilege__init_(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordTokenContext), 0) !== null ? oncia_SetPasswordsAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 261, 0) !== null ? oncia_SetUserStatusAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 126, 0) !== null ? oncia_SetUserHomeDatabaseAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 29, 0) === null ? oncia_SetDatabaseAccessAction$_MODULE$ : oncia_SetAuthAction$_MODULE$, - var$2), s_None$_MODULE$); - $ctx.$ast0 = var$5; +oncief_ToFloatList$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitRemovePrivilege = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncip_AstRuleCtx_getToken($ctx, 69, 0) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; - var$4 = oncipvaf_DdlPrivilegeBuilder_labelAllQualifier0($this, oncia_GraphPrivilege__init_0(oncia_RemoveLabelAction$_MODULE$, var$3, var$2), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelsResourceContext), 0)).$ast0, var$2); - } else - var$4 = oncipvaf_DdlPrivilegeBuilder_allQualifier0($this, oncia_DbmsPrivilege__init_(oncip_AstRuleCtx_getToken($ctx, 206, 0) === null ? oncia_RemoveRoleAction$_MODULE$ : oncia_RemovePrivilegeAction$_MODULE$, var$2), s_None$_MODULE$); - $ctx.$ast0 = var$4; +oncief_ToFloatList$_hashCode = $this => { + return (-1065841473); }, -oncipvaf_Cypher5AstBuilder_exitWritePrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GraphScopeContext), 0)).$ast0; - var$3 = new s_Tuple3; - var$4 = new oncia_GraphPrivilege; - var$5 = oncia_WriteAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$4, var$5, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$3, var$4, s_None$_MODULE$, sci_$colon$colon__init_(oncia_ElementsAllQualifier__init_0(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); - $ctx.$ast0 = var$3; +oncief_ToFloatList$_toString = $this => { + return $rt_s(6351); }, -oncipvaf_Cypher5AstBuilder_exitNonEmptyStringList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +oncief_ToFloatList$_signatures0 = $this => { + oncief_ToFloatList$_$callClinit(); + return oncief_ToFloatList$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitLabelsResource = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { - var$2 = new s_Some; - var$3 = new oncia_AllLabelResource; - oncipau_Util$_$callClinit(); - oncia_AllLabelResource__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Some__init_0(var$2, var$3); - } else { - var$2 = new s_Some; - var$3 = new oncia_LabelsResource; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NonEmptyStringListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_LabelsResource__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Some__init_0(var$2, var$3); - } - $ctx.$ast0 = var$2; +oncief_ToFloatOrNull$ = $rt_classWithoutFields(oncief_Function), +oncief_ToFloatOrNull$_MODULE$ = null, +oncief_ToFloatOrNull$_signatures = null, +oncief_ToFloatOrNull$_$callClinit = () => { + oncief_ToFloatOrNull$_$callClinit = $rt_eraseClinit(oncief_ToFloatOrNull$); + oncief_ToFloatOrNull$__clinit_(); +}, +oncief_ToFloatOrNull$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_ToFloatOrNull$; + oncief_ToFloatOrNull$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToFloatOrNull$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToFloatOrNull$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6352)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6353), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToFloatOrNull$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncief_ToFloatOrNull$_name = $this => { + return $rt_s(6354); +}, +oncief_ToFloatOrNull$_productArity = $this => { + return 0; +}, +oncief_ToFloatOrNull$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitPropertiesResource = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { - var$2 = new s_Some; - var$3 = new oncia_AllPropertyResource; - oncipau_Util$_$callClinit(); - oncia_AllPropertyResource__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Some__init_0(var$2, var$3); - } else { - var$2 = new s_Some; - var$3 = new oncia_PropertiesResource; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NonEmptyStringListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_PropertiesResource__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Some__init_0(var$2, var$3); - } - $ctx.$ast0 = var$2; +oncief_ToFloatOrNull$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitExecuteFunctionQualifier = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobsContext), 0)).$ast0; - var$3 = new oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0; - var$3.$_0559 = $ctx; - $ctx.$ast0 = (var$2.$map(var$3)).$toList(); +oncief_ToFloatOrNull$_hashCode = $this => { + return (-1978337813); }, -oncipvaf_Cypher5AstBuilder_exitExecuteProcedureQualifier = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobsContext), 0)).$ast0; - var$3 = new oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0; - var$3.$_0632 = $ctx; - $ctx.$ast0 = (var$2.$map(var$3)).$toList(); +oncief_ToFloatOrNull$_toString = $this => { + return $rt_s(6355); }, -oncipvaf_Cypher5AstBuilder_exitGlobs = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$GlobContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +oncief_ToFloatOrNull$_signatures0 = $this => { + oncief_ToFloatOrNull$_$callClinit(); + return oncief_ToFloatOrNull$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitGlob = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$GlobContext_escapedSymbolicNameString($ctx), new oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_00); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobRecursiveContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_10); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), var$3); - $ctx.$ast0 = jl_AbstractStringBuilder_toString(var$4); +oncief_ToInteger$ = $rt_classWithoutFields(oncief_Function), +oncief_ToInteger$_MODULE$ = null, +oncief_ToInteger$_signatures = null, +oncief_ToInteger$_$callClinit = () => { + oncief_ToInteger$_$callClinit = $rt_eraseClinit(oncief_ToInteger$); + oncief_ToInteger$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitGlobRecursive = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = (oncipv_Cypher5Parser$GlobRecursiveContext_globPart($ctx)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobRecursiveContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_00); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), var$3); - $ctx.$ast0 = jl_AbstractStringBuilder_toString(var$4); +oncief_ToInteger$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$3, $x$6, var$8, $x$2, var$10, var$11, $x$10, var$13, var$14, var$15, $x$8, $x$4, var$18; + var$1 = new oncief_ToInteger$; + oncief_ToInteger$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToInteger$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToInteger$_MODULE$; + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$3 = s_package$_Vector(s_package$_MODULE$); + $x$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$10 = var$8.data; + var$11 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Set(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$14 = $rt_createArray(oncius_CypherType, 4); + var$15 = var$14.data; + oncius_package$_$callClinit(); + var$15[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$15[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$15[2] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$15[3] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + $x$8 = $x$10.$from0(sr_ScalaRunTime$_wrapRefArray(var$13, var$14)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_(var$11, $x$8, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$10[0] = var$11; + $x$3 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$6, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$13 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6356)); + var$18 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$13, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6357), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$18); + oncief_ToInteger$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitGlobPart = ($this, $ctx) => { - let var$2, var$3; - if (oncipv_Cypher5Parser$GlobPartContext_DOT($ctx) !== null) { - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$GlobPartContext_escapedSymbolicNameString($ctx), new oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_00); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(var$3, 46); - jl_StringBuilder_append(var$3, var$2); - var$2 = jl_AbstractStringBuilder_toString(var$3); - } else - var$2 = oncip_AstRuleCtx_getToken($ctx, 214, 0) !== null ? $rt_s(4414) : oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null ? $rt_s(172) : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext), 0)).$ast0; - $ctx.$ast0 = var$2; -}; -let oncipvaf_Cypher5AstBuilder_exitGraphQualifier = ($this, $ctx) => { - oncipvaf_DdlPrivilegeBuilder_exitGraphQualifier($this, $ctx); +oncief_ToInteger$_name = $this => { + return $rt_s(6358); }, -oncipvaf_Cypher5AstBuilder_exitGraphQualifierToken = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0); - if (var$2 instanceof oncipv_Cypher5Parser$RelTokenContext) - var$2 = oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$RelGraphToken($this); - else if (var$2 instanceof oncipv_Cypher5Parser$NodeTokenContext) - var$2 = oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken($this); - else { - if (!(var$2 instanceof oncipv_Cypher5Parser$ElementTokenContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6908)); - $rt_throw($ctx); - } - var$2 = oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken($this); - } - $ctx.$ast0 = var$2; +oncief_ToInteger$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitSettingQualifier = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$GlobsContext), 0)).$ast0; - var$3 = new oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_00; - var$3.$_01137 = $ctx; - $ctx.$ast0 = sc_IterableOnceOps_toList$(sci_ArraySeq_map(var$2, var$3)); +oncief_ToInteger$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitUserQualifier = ($this, $ctx) => { - let var$2, var$3; - if (oncipv_Cypher5Parser$UserQualifierContext_userNames($ctx) === null) { - var$2 = new sci_$colon$colon; - var$3 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$3, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$2, var$3, sci_Nil$_MODULE$); - } else - var$2 = sc_IterableOnceOps_toList$(sci_ArraySeq_map((oncipv_Cypher5Parser$UserQualifierContext_userNames($ctx)).$ast0, new oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_00)); - $ctx.$ast0 = var$2; +oncief_ToInteger$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitRoleNames = ($this, $ctx) => { - $ctx.$ast0 = (oncipv_Cypher5Parser$RoleNamesContext_symbolicNameOrStringParameterList($ctx)).$ast0; +oncief_ToInteger$_hashCode = $this => { + return (-1996162525); }, -oncipvaf_Cypher5AstBuilder_exitUserNames = ($this, $ctx) => { - $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext), 0)).$ast0; +oncief_ToInteger$_toString = $this => { + return $rt_s(6359); }, -oncipvaf_Cypher5AstBuilder_exitDatabaseScope = ($this, $ctx) => { - let var$2, var$3; - if (oncip_AstRuleCtx_getToken($ctx, 126, 0) !== null) { - var$2 = new oncia_HomeDatabaseScope; - oncipau_Util$_$callClinit(); - oncia_HomeDatabaseScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { - var$2 = new oncia_AllDatabasesScope; - oncipau_Util$_$callClinit(); - oncia_AllDatabasesScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncia_NamedDatabasesScope; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_NamedDatabasesScope__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +oncief_ToInteger$_signatures0 = $this => { + oncief_ToInteger$_$callClinit(); + return oncief_ToInteger$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitGraphScope = ($this, $ctx) => { - let var$2, var$3; - if (oncip_AstRuleCtx_getToken($ctx, 126, 0) !== null) { - var$2 = new oncia_HomeGraphScope; - oncipau_Util$_$callClinit(); - oncia_HomeGraphScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { - var$2 = new oncia_AllGraphsScope; - oncipau_Util$_$callClinit(); - oncia_AllGraphsScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncia_NamedGraphsScope; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_NamedGraphsScope__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +oncief_ToIntegerList$ = $rt_classWithoutFields(oncief_Function), +oncief_ToIntegerList$_MODULE$ = null, +oncief_ToIntegerList$_signatures = null; +let oncief_ToIntegerList$_$callClinit = () => { + oncief_ToIntegerList$_$callClinit = $rt_eraseClinit(oncief_ToIntegerList$); + oncief_ToIntegerList$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitAdminToken = ($this, $ctx) => { - return; +oncief_ToIntegerList$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; + var$1 = new oncief_ToIntegerList$; + oncief_ToIntegerList$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToIntegerList$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToIntegerList$_MODULE$; + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ListType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + $x$3 = oncius_package$_MODULE$; + var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTInteger($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$14 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6360)); + var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6361), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToIntegerList$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitConstraintToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreateConstraintAction$_MODULE$; +oncief_ToIntegerList$_name = $this => { + return $rt_s(6362); }, -oncipvaf_Cypher5AstBuilder_exitCreateNodePrivilegeToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreateNodeLabelAction$_MODULE$; +oncief_ToIntegerList$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitCreatePropertyPrivilegeToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreatePropertyKeyAction$_MODULE$; +oncief_ToIntegerList$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitCreateRelPrivilegeToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreateRelationshipTypeAction$_MODULE$; +oncief_ToIntegerList$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitElementToken = ($this, $ctx) => { - return; +oncief_ToIntegerList$_hashCode = $this => { + return 738809185; }, -oncipvaf_Cypher5AstBuilder_exitIndexToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreateIndexAction$_MODULE$; +oncief_ToIntegerList$_toString = $this => { + return $rt_s(6363); }, -oncipvaf_Cypher5AstBuilder_exitNodeToken = ($this, $ctx) => { - return; +oncief_ToIntegerList$_signatures0 = $this => { + oncief_ToIntegerList$_$callClinit(); + return oncief_ToIntegerList$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitPasswordToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$ = $rt_classWithoutFields(oncief_Function), +oncief_ToIntegerOrNull$_MODULE$ = null, +oncief_ToIntegerOrNull$_signatures = null, +oncief_ToIntegerOrNull$_$callClinit = () => { + oncief_ToIntegerOrNull$_$callClinit = $rt_eraseClinit(oncief_ToIntegerOrNull$); + oncief_ToIntegerOrNull$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitPrivilegeToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_ToIntegerOrNull$; + oncief_ToIntegerOrNull$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToIntegerOrNull$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToIntegerOrNull$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTInteger(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6364)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6365), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToIntegerOrNull$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitProcedureToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$_name = $this => { + return $rt_s(6366); }, -oncipvaf_Cypher5AstBuilder_exitRelToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitRoleToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitTransactionToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitFunctionToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$_hashCode = $this => { + return 1419124237; }, -oncipvaf_Cypher5AstBuilder_exitAscToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$_toString = $this => { + return $rt_s(6367); }, -oncipvaf_Cypher5AstBuilder_exitDescToken = ($this, $ctx) => { - return; +oncief_ToIntegerOrNull$_signatures0 = $this => { + oncief_ToIntegerOrNull$_$callClinit(); + return oncief_ToIntegerOrNull$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitSettingToken = ($this, $ctx) => { - return; +oncief_ToLower$ = $rt_classWithoutFields(oncief_Function), +oncief_ToLower$_MODULE$ = null, +oncief_ToLower$_signatures = null, +oncief_ToLower$_$callClinit = () => { + oncief_ToLower$_$callClinit = $rt_eraseClinit(oncief_ToLower$); + oncief_ToLower$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitPrimaryToken = ($this, $ctx) => { - return; +oncief_ToLower$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_ToLower$; + oncief_ToLower$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToLower$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToLower$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6181)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6182), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToLower$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitSecondaryToken = ($this, $ctx) => { - return; +oncief_ToLower$_name = $this => { + return $rt_s(6368); }, -oncipvaf_Cypher5AstBuilder_exitSecondsToken = ($this, $ctx) => { - return; +oncief_ToLower$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitGroupToken = ($this, $ctx) => { - return; +oncief_ToLower$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitPathToken = ($this, $ctx) => { - return; +oncief_ToLower$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitShowCommand = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; - if ($rt_isInstance(var$2, sci_Seq)) - var$2 = oncia_SingleQuery__init_0(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_ToLower$_hashCode = $this => { + return 492345638; }, -oncipvaf_Cypher5AstBuilder_exitTerminateCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncief_ToLower$_toString = $this => { + return $rt_s(6369); }, -oncipvaf_Cypher5AstBuilder_exitYieldItem = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext)); - var$3 = (var$2.$get0(0)).$ast0; - if (var$2.$size() == 1) { - var$4 = new oncia_UnaliasedReturnItem; - oncipau_Util$_$callClinit(); - oncia_UnaliasedReturnItem__init_0(var$4, var$3, oncipau_Util$_inputText(oncipau_Util$_MODULE$, var$2.$get0(0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$4 = new oncia_AliasedReturnItem; - var$2 = (var$2.$get0(1)).$ast0; - oncipau_Util$_$callClinit(); - oncia_AliasedReturnItem__init_0(var$4, var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$4; +oncief_ToLower$_signatures0 = $this => { + oncief_ToLower$_$callClinit(); + return oncief_ToLower$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitYieldSkip = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_Skip; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SignedIntegerLiteralContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_Skip__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_ToString$ = $rt_classWithoutFields(oncief_Function), +oncief_ToString$_MODULE$ = null, +oncief_ToString$_validInputTypes = null, +oncief_ToString$_signatures = null, +oncief_ToString$_$callClinit = () => { + oncief_ToString$_$callClinit = $rt_eraseClinit(oncief_ToString$); + oncief_ToString$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitYieldLimit = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_Limit; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SignedIntegerLiteralContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_Limit__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_ToString$__clinit_ = () => { + let $x$8, var$2, var$3, var$4, var$5, var$6, var$7, $x$1, var$9, $x$2, $x$3, $x$4, $x$6, $x$10, var$15, var$16; + $x$8 = new oncief_ToString$; + oncief_ToString$_$callClinit(); + oncief_Function__init_($x$8); + oncief_ToString$_MODULE$ = $x$8; + s_package$_$callClinit(); + $x$8 = s_package$_Seq(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncius_CypherType, 11); + var$4 = var$3.data; + oncius_package$_$callClinit(); + var$4[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$4[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$4[2] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$4[3] = oncius_package$_CTString(oncius_package$_MODULE$); + var$4[4] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$4[5] = oncius_package$_CTDate(oncius_package$_MODULE$); + var$4[6] = oncius_package$_CTTime(oncius_package$_MODULE$); + var$4[7] = oncius_package$_CTDateTime(oncius_package$_MODULE$); + var$4[8] = oncius_package$_CTLocalTime(oncius_package$_MODULE$); + var$4[9] = oncius_package$_CTLocalDateTime(oncius_package$_MODULE$); + var$4[10] = oncius_package$_CTPoint(oncius_package$_MODULE$); + oncief_ToString$_validInputTypes = sc_SeqFactory$Delegate_apply($x$8, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); + var$5 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$7 = var$3.data; + $x$1 = oncief_ToString$_MODULE$; + var$9 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(jl_String, 1); + var$4.data[0] = $rt_s(1183); + $x$2 = var$9.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$4)); + var$2 = s_package$_Vector(s_package$_MODULE$); + var$9 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncius_AnyType, 1); + var$4.data[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$9, var$4)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$15 = sr_ScalaRunTime$_MODULE$; + var$16 = $rt_createArray(s_Tuple2, 1); + var$16.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6370)); + var$15 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$15, var$16)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$7[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6371), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$15); + oncief_ToString$_signatures = var$5.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitOrderBy = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_OrderBy; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$OrderItemContext)); - sr_ClassTag$_$callClinit(); - oncia_OrderBy__init_0(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SortItem))), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 191, 0)).$getSymbol())); - $ctx.$ast0 = var$2; +oncief_ToString$_name = $this => { + return $rt_s(6372); }, -oncipvaf_Cypher5AstBuilder_exitYieldClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - if (oncip_AstRuleCtx_getToken($ctx, 271, 0) !== null) { - var$2 = new oncia_ReturnItems; - s_package$_$callClinit(); - var$3 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - var$4 = s_None$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_ReturnItems__init_(var$2, 1, var$3, var$4, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 306, 0)).$getSymbol())); - } else { - var$2 = new oncia_ReturnItems; - oncipau_Util$_$callClinit(); - var$5 = oncipau_Util$_MODULE$; - var$6 = oncipv_Cypher5Parser$YieldClauseContext_yieldItem($ctx); - sr_ClassTag$_$callClinit(); - var$4 = oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_ReturnItem))); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_(var$2, 0, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, (oncipv_Cypher5Parser$YieldClauseContext_yieldItem($ctx)).$get0(0))); - } - var$4 = new oncia_Yield; - oncipau_Util$_$callClinit(); - oncia_Yield__init_(var$4, var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$OrderByContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$YieldSkipContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$YieldLimitContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, - $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$4; +oncief_ToString$_signatures0 = $this => { + oncief_ToString$_$callClinit(); + return oncief_ToString$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitShowBriefAndYield = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$YieldClauseContext), 0); - var$3 = var$2 !== null ? oncipvaf_DdlShowBuilder_getYieldAllAndYieldItems($this, var$2.$ast0) : s_Tuple3__init_(jl_Boolean_valueOf(0), sci_Nil$_MODULE$, s_None$_MODULE$); - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$4 = sr_BoxesRunTime_unboxToBoolean(var$3.$_11); - var$2 = var$3.$_21; - var$5 = var$3.$_30; - var$3 = s_Tuple3__init_(jl_Boolean_valueOf(var$4), var$2, var$5); - var$4 = sr_BoxesRunTime_unboxToBoolean(var$3.$_11); - var$5 = var$3.$_21; - var$3 = var$3.$_30; - var$6 = new oncipvaf_DdlShowBuilder$ShowWrapper; - oncipau_Util$_$callClinit(); - oncipvaf_DdlShowBuilder$ShowWrapper__init_(var$6, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0)), var$5, var$4, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnClauseContext), 0)), s_None$_MODULE$, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); - $ctx.$ast0 = var$6; +oncief_ToString$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitShowCommandYield = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$YieldClauseContext), 0); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WhereClauseContext), 0); - if (var$2 === null) { - s_package$_$callClinit(); - var$4 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), var$3.$ast0); - } else { - s_package$_$callClinit(); - var$3 = s_package$_Left(s_package$_MODULE$); - var$5 = new s_Tuple2; - var$6 = var$2.$ast0; - oncipau_Util$_$callClinit(); - s_Tuple2__init_0(var$5, var$6, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ReturnClauseContext), 0))); - var$4 = su_Left$_apply(var$3, var$5); - } - $ctx.$ast0 = var$4; +oncief_ToString$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitComposableCommandClauses = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncief_ToString$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitComposableShowCommandClauses = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncief_ToString$_hashCode = $this => { + return (-1712277876); }, -oncipvaf_Cypher5AstBuilder_exitShowIndexCommand = ($this, $ctx) => { - let var$2, var$3; - var$2 = oncipv_Cypher5Parser$ShowIndexCommandContext_showIndexesNoBrief($ctx); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - if (var$2 === null) - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildIndexClauses((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowIndexesAllowBriefContext), 0)).$ast0, oncia_AllIndexes$_MODULE$, var$3); - else { - a: { - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0()) { - case 115: - var$2 = oncia_FulltextIndexes$_MODULE$; - break a; - case 154: - var$2 = oncia_LookupIndexes$_MODULE$; - break a; - case 201: - var$2 = oncia_PointIndexes$_MODULE$; - break a; - case 215: - var$2 = oncia_RangeIndexes$_MODULE$; - break a; - case 268: - var$2 = oncia_TextIndexes$_MODULE$; - break a; - case 296: - var$2 = oncia_VectorIndexes$_MODULE$; - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6909)); - $rt_throw($ctx); - } - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildIndexClauses((oncipv_Cypher5Parser$ShowIndexCommandContext_showIndexesNoBrief($ctx)).$ast0, var$2, var$3); - } - $ctx.$ast0 = var$2; +oncief_ToString$_toString = $this => { + return $rt_s(6373); }, -oncipvaf_Cypher5AstBuilder_exitShowIndexesAllowBrief = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowBriefAndYieldContext), 0), new oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names1); +oncief_ToString$_signatures1 = $this => { + return oncief_ToString$_signatures0($this); }, -oncipvaf_Cypher5AstBuilder_exitShowIndexesNoBrief = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names1); +oncief_ToStringList$ = $rt_classWithoutFields(oncief_Function), +oncief_ToStringList$_MODULE$ = null, +oncief_ToStringList$_signatures = null; +let oncief_ToStringList$_$callClinit = () => { + oncief_ToStringList$_$callClinit = $rt_eraseClinit(oncief_ToStringList$); + oncief_ToStringList$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitShowConstraintCommand = ($this, $ctx) => { - oncipvaf_DdlShowBuilder_exitShowConstraintCommand($this, $ctx); +oncief_ToStringList$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$4, $x$8, var$8, $x$2, var$10, var$11, $x$3, $x$6, var$14, $x$10; + var$1 = new oncief_ToStringList$; + oncief_ToStringList$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToStringList$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToStringList$_MODULE$; + $x$4 = s_package$_Vector(s_package$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ListType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + $x$3 = oncius_package$_MODULE$; + var$11[0] = oncius_package$_CTList($x$3, oncius_package$_CTAny($x$3)); + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$8)); + $x$4 = oncius_package$_MODULE$; + $x$4 = oncius_package$_CTList($x$4, oncius_package$_CTString($x$4)); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_LIST(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$14 = s_Predef$_Map(s_Predef$_MODULE$); + $x$8 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6374)); + var$14 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray($x$8, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6375), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToStringList$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitConstraintAllowYieldType = ($this, $ctx) => { - oncipvaf_DdlShowBuilder_exitConstraintAllowYieldType($this, $ctx); +oncief_ToStringList$_name = $this => { + return $rt_s(6376); }, -oncipvaf_Cypher5AstBuilder_exitConstraintExistType = ($this, $ctx) => { - return; +oncief_ToStringList$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitConstraintBriefAndYieldType = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); - switch (var$2) { - case 18: - break; - case 103: - var$3 = oncia_ExistsConstraints$_cypher5(oncia_ExistsConstraints$_MODULE$); - break a; - case 173: - if (oncip_AstRuleCtx_getToken($ctx, 103, 0) === null) { - var$3 = oncia_NodeKeyConstraints$_MODULE$; - break a; - } - var$3 = oncia_NodeExistsConstraints$_cypher5(oncia_NodeExistsConstraints$_MODULE$); - break a; - case 224: - var$3 = oncia_RelExistsConstraints$_cypher5(oncia_RelExistsConstraints$_MODULE$); - break a; - case 286: - var$3 = oncia_UniqueConstraintsCypher5$_MODULE$; - break a; - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - var$3 = oncia_AllConstraints$_MODULE$; - } - $ctx.$ast0 = var$3; +oncief_ToStringList$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowBriefAndYield = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowBriefAndYieldContext), 0), new oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names1); -}; -let oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowBrief = ($this, $ctx) => { - return; +oncief_ToStringList$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitShowConstraintsAllowYield = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names1); +oncief_ToStringList$_hashCode = $this => { + return 780055882; }, -oncipvaf_Cypher5AstBuilder_exitShowProcedures = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names1); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExecutableByContext), 0)); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_ShowProceduresClause$_apply(oncia_ShowProceduresClause$_MODULE$, var$3, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$4)); +oncief_ToStringList$_toString = $this => { + return $rt_s(6377); }, -oncipvaf_Cypher5AstBuilder_exitShowFunctions = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$2.$names1); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowFunctionsTypeContext), 0), new oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0); - var$4 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExecutableByContext), 0)); - var$5 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_ShowFunctionsClause$_apply(oncia_ShowFunctionsClause$_MODULE$, var$3, var$4, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$5)); +oncief_ToStringList$_signatures0 = $this => { + oncief_ToStringList$_$callClinit(); + return oncief_ToStringList$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitShowFunctionsType = ($this, $ctx) => { - $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 39, 0) !== null ? oncia_BuiltInFunctions$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 291, 0) === null ? oncia_AllFunctions$_MODULE$ : oncia_UserDefinedFunctions$_MODULE$; +oncief_ToStringOrNull$ = $rt_classWithoutFields(oncief_Function), +oncief_ToStringOrNull$_MODULE$ = null, +oncief_ToStringOrNull$_signatures = null, +oncief_ToStringOrNull$_$callClinit = () => { + oncief_ToStringOrNull$_$callClinit = $rt_eraseClinit(oncief_ToStringOrNull$); + oncief_ToStringOrNull$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitExecutableBy = ($this, $ctx) => { - $ctx.$ast0 = oncipv_Cypher5Parser$ExecutableByContext_symbolicNameString($ctx) === null ? oncia_CurrentUser$_MODULE$ : oncia_User__init_((oncipv_Cypher5Parser$ExecutableByContext_symbolicNameString($ctx)).$ast0); +oncief_ToStringOrNull$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_ToStringOrNull$; + oncief_ToStringOrNull$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToStringOrNull$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToStringOrNull$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6378)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6379), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToStringOrNull$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitShowTransactions = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamesAndClausesContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_ShowTransactionsClause$_apply(oncia_ShowTransactionsClause$_MODULE$, var$2.$names1, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, 1, var$3)); +oncief_ToStringOrNull$_name = $this => { + return $rt_s(6380); }, -oncipvaf_Cypher5AstBuilder_exitTerminateTransactions = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamesAndClausesContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_TerminateTransactionsClause$_apply(oncia_TerminateTransactionsClause$_MODULE$, var$2.$names1, var$2.$yieldedItems, var$2.$yieldAll0, s_Option_map(var$2.$where0, new oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0), var$3)); +oncief_ToStringOrNull$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitShowSettings = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$NamesAndClausesContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0(var$2, oncia_ShowSettingsClause$_apply(oncia_ShowSettingsClause$_MODULE$, var$2.$names1, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$3)); +oncief_ToStringOrNull$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitNamesAndClauses = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ComposableCommandClausesContext), 0)); - var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringsOrExpressionContext), 0), new oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy(var$2, var$2.$where0, var$2.$yieldedItems, var$2.$yieldAll0, var$2.$yieldClause1, var$2.$returnClause2, var$3, var$4); +oncief_ToStringOrNull$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitStringsOrExpression = ($this, $ctx) => { - let var$2, var$3; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringListContext), 0); - if (var$2 === null) { - s_package$_$callClinit(); - var$3 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0); - } else { - s_package$_$callClinit(); - var$3 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (var$2.$ast0.$map(new oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0)).$toList()); - } - $ctx.$ast0 = var$3; +oncief_ToStringOrNull$_hashCode = $this => { + return (-1892472906); }, -oncipvaf_Cypher5AstBuilder_exitStringList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_StringLiteral))); +oncief_ToStringOrNull$_toString = $this => { + return $rt_s(6381); }, -oncipvaf_Cypher5AstBuilder_exitShowServers = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowServers$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowServers$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToStringOrNull$_signatures0 = $this => { + oncief_ToStringOrNull$_$callClinit(); + return oncief_ToStringOrNull$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitShowRoles = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncia_ShowRoles$_MODULE$; - var$3 = oncip_AstRuleCtx_getToken($ctx, 302, 0) === null ? 0 : 1; - var$4 = oncip_AstRuleCtx_getToken($ctx, 202, 0) !== null ? 0 : 1; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowRoles$_apply(var$2, var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToUpper$ = $rt_classWithoutFields(oncief_Function), +oncief_ToUpper$_MODULE$ = null, +oncief_ToUpper$_signatures = null, +oncief_ToUpper$_$callClinit = () => { + oncief_ToUpper$_$callClinit = $rt_eraseClinit(oncief_ToUpper$); + oncief_ToUpper$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitShowUsers = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowUsers$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowUsers$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncip_AstRuleCtx_getToken($ctx, 29, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToUpper$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_ToUpper$; + oncief_ToUpper$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ToUpper$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ToUpper$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6382)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6383), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ToUpper$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitShowCurrentUser = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowCurrentUser$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowCurrentUser$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToUpper$_name = $this => { + return $rt_s(6384); }, -oncipvaf_Cypher5AstBuilder_exitShowSupportedPrivileges = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowSupportedPrivilegeCommand$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowSupportedPrivilegeCommand$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToUpper$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitShowPrivileges = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0); - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); - var$3 = var$2.$_1$mcZ$sp0; - var$4 = var$2.$_2$mcZ$sp0; - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)); - $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, oncia_ShowAllPrivileges__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, oncia_ShowAllPrivileges__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToUpper$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitShowRolePrivileges = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0); - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); - var$3 = var$2.$_1$mcZ$sp0; - var$4 = var$2.$_2$mcZ$sp0; - var$2 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)); - var$5 = oncia_ShowRolesPrivileges__init_((oncipv_Cypher5Parser$RoleNamesContext_symbolicNameOrStringParameterList(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RoleNamesContext), 0))).$ast0.$toList(), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, var$5, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, var$5, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToUpper$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitShowUserPrivileges = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0); - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); - var$3 = var$2.$_1$mcZ$sp0; - var$4 = var$2.$_2$mcZ$sp0; - var$5 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UserNamesContext), 0); - var$2 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)); - var$6 = var$5 === null ? oncia_ShowUserPrivileges__init_(s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowUsersPrivileges__init_(var$5.$ast0.$toList(), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, var$6, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, var$6, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_ToUpper$_hashCode = $this => { + return 500680391; }, -oncipvaf_Cypher5AstBuilder_exitPrivilegeAsCommand = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2$mcZZ$sp__init_(oncip_AstRuleCtx_getToken($ctx, 23, 0) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 234, 0) === null ? 0 : 1); +oncief_ToUpper$_toString = $this => { + return $rt_s(6385); }, -oncipvaf_Cypher5AstBuilder_exitShowDatabase = ($this, $ctx) => { - let var$2, var$3; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0); - if (var$2 !== null) { - var$3 = new oncia_SingleNamedDatabaseScope; - var$2 = var$2.$ast0; - oncipau_Util$_$callClinit(); - oncia_SingleNamedDatabaseScope__init_(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (oncip_AstRuleCtx_getToken($ctx, 126, 0) !== null) { - var$3 = new oncia_HomeDatabaseScope; - oncipau_Util$_$callClinit(); - oncia_HomeDatabaseScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (oncip_AstRuleCtx_getToken($ctx, 71, 0) === null) { - var$3 = new oncia_AllDatabasesScope; - oncipau_Util$_$callClinit(); - oncia_AllDatabasesScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$3 = new oncia_DefaultDatabaseScope; - oncipau_Util$_$callClinit(); - oncia_DefaultDatabaseScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - var$2 = oncia_ShowDatabase$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowDatabase$_apply(var$2, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); +oncief_ToUpper$_signatures0 = $this => { + oncief_ToUpper$_$callClinit(); + return oncief_ToUpper$_signatures; +}, +oncief_Properties$ = $rt_classWithoutFields(oncief_Function), +oncief_Properties$_MODULE$ = null, +oncief_Properties$_signatures = null, +oncief_Properties$_$callClinit = () => { + oncief_Properties$_$callClinit = $rt_eraseClinit(oncief_Properties$); + oncief_Properties$__clinit_(); +}, +oncief_Properties$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, var$7, var$8, $x$2, $x$8, var$11, var$12, $x$3, $x$10, var$15, var$16, $x$4, $x$6; + var$1 = new oncief_Properties$; + oncief_Properties$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Properties$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Properties$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); + $x$8 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_ClosedDynamicUnionType, 1); + var$11 = var$8.data; + var$12 = new oncius_ClosedDynamicUnionType; + s_Predef$_$callClinit(); + $x$3 = s_Predef$_Set(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$15 = $rt_createArray(oncius_CypherType, 3); + var$16 = var$15.data; + oncius_package$_$callClinit(); + var$16[0] = oncius_package$_CTNode(oncius_package$_MODULE$); + var$16[1] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + var$16[2] = oncius_package$_CTMap(oncius_package$_MODULE$); + var$7 = $x$3.$from0(sr_ScalaRunTime$_wrapRefArray($x$10, var$15)); + onciu_InputPosition$_$callClinit(); + oncius_ClosedDynamicUnionType__init_(var$12, var$7, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$11[0] = var$12; + $x$3 = $x$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTMap(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + $x$8 = s_Predef$_Map(s_Predef$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6386)); + var$12 = sci_Map$_from($x$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6387), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$12); + oncief_Properties$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitShowAliases = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowAliases$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowAliases$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AliasNameContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_Properties$_name = $this => { + return $rt_s(4662); }, -oncipvaf_Cypher5AstBuilder_exitCreateCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +oncief_Properties$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitCreateConstraint = ($this, $ctx) => { - oncipvaf_DdlCreateBuilder_exitCreateConstraint0($this, $ctx); +oncief_Properties$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitConstraintType = ($this, $ctx) => { - let var$2, var$3, var$4; - if ($ctx instanceof oncipv_Cypher5Parser$ConstraintExistsContext) - var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); - else if ($ctx instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) - var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); - else if ($ctx instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { - var$3 = $ctx; - var$4 = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0; - var$3 = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher5Parser$TypeContext), 0)).$ast0; - var$2 = s_Tuple2__init_(var$4, s_Some__init_(var$3)); - } else if ($ctx instanceof oncipv_Cypher5Parser$ConstraintIsUniqueContext) - var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); - else { - if (!($ctx instanceof oncipv_Cypher5Parser$ConstraintKeyContext)) { - var$3 = new jl_IllegalStateException; - jl_Throwable__init_0(var$3, $rt_s(6893)); - $rt_throw(var$3); - } - var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); - } - $ctx.$ast0 = var$2; +oncief_Properties$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitCreateIndex = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +oncief_Properties$_hashCode = $this => { + return 1067411795; }, -oncipvaf_Cypher5AstBuilder_exitOldCreateIndex = ($this, $ctx) => { - return; +oncief_Properties$_toString = $this => { + return $rt_s(6388); }, -oncipvaf_Cypher5AstBuilder_exitCreateIndex_ = ($this, $ctx) => { - oncipvaf_DdlCreateBuilder_exitCreateIndex_0($this, $ctx); +oncief_Properties$_signatures0 = $this => { + oncief_Properties$_$callClinit(); + return oncief_Properties$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitCreateFulltextIndex = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = $ctx.$parent.$parent; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1); - var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0)); - var$6 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$FulltextNodePatternContext), 0); - var$7 = var$6 === null ? 0 : 1; - var$8 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$EnclosedPropertyListContext), 0)).$ast0.$toList(); - if (var$7) { - var$9 = var$6.$ast0; - if (var$9 === null) - $rt_throw(s_MatchError__init_(var$9)); - var$10 = s_Tuple2__init_(var$9.$_1(), var$9.$_2()); - var$9 = var$10.$_10; - var$6 = var$10.$_20; - var$9 = oncia_CreateIndex$_createFulltextNodeIndex(oncia_CreateIndex$_MODULE$, var$9, var$6, var$8, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } else { - var$9 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$FulltextRelPatternContext), 0)).$ast0; - if (var$9 === null) - $rt_throw(s_MatchError__init_(var$9)); - var$10 = s_Tuple2__init_(var$9.$_1(), var$9.$_2()); - var$6 = var$10.$_10; - var$10 = var$10.$_20; - var$9 = oncia_CreateIndex$_createFulltextRelationshipIndex(oncia_CreateIndex$_MODULE$, var$6, var$10, var$8, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } - $ctx.$ast0 = var$9; +oncief_Type$ = $rt_classWithoutFields(oncief_Function), +oncief_Type$_MODULE$ = null, +oncief_Type$_signatures = null, +oncief_Type$_$callClinit = () => { + oncief_Type$_$callClinit = $rt_eraseClinit(oncief_Type$); + oncief_Type$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitFulltextNodePattern = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = new s_Tuple2; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); - var$6 = new oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0; - sr_ClassTag$_$callClinit(); - s_Tuple2__init_0(var$2, var$3, sc_IterableOnceOps_toList$(oncipau_Util$_astSeqPositioned(var$4, var$5, var$6, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))))); - $ctx.$ast0 = var$2; +oncief_Type$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Type$; + oncief_Type$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Type$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Type$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_RelationshipType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6114)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6389), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Type$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}; +let oncief_Type$_name = $this => { + return $rt_s(4729); }, -oncipvaf_Cypher5AstBuilder_exitFulltextRelPattern = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = new s_Tuple2; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext)); - var$6 = new oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0; - sr_ClassTag$_$callClinit(); - s_Tuple2__init_0(var$2, var$3, sc_IterableOnceOps_toList$(oncipau_Util$_astSeqPositioned(var$4, var$5, var$6, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_RelTypeName))))); - $ctx.$ast0 = var$2; +oncief_Type$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitLookupIndexNodePattern = ($this, $ctx) => { - $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; +oncief_Type$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitLookupIndexRelPattern = ($this, $ctx) => { - $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; +oncief_Type$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitCreateLookupIndex = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; - var$2 = $ctx.$parent.$parent; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1); - var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext), 0)); - var$6 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LookupIndexNodePatternContext), 0); - var$7 = var$6 === null ? 0 : 1; - var$8 = oncipv_Cypher5Parser$CreateLookupIndexContext_symbolicNameString($ctx); - var$9 = oncipau_Util$_pos(oncipau_Util$_MODULE$, var$8); - var$10 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$11 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, var$8.$ast0, var$9); - s_package$_$callClinit(); - var$12 = s_package$_IndexedSeq(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$13 = $rt_createArray(oncie_Variable, 1); - var$13.data[0] = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; - var$8 = sc_SeqFactory$Delegate_apply(var$12, sr_ScalaRunTime$_wrapRefArray(var$8, var$13)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$10, var$11, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, var$9); - var$8 = var$7 ? var$6.$ast0 : (oncipv_Cypher5Parser$CreateLookupIndexContext_lookupIndexRelPattern($ctx)).$ast0; - $ctx.$ast0 = oncia_CreateIndex$_createLookupIndex(oncia_CreateIndex$_MODULE$, var$8, var$7, var$10, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +oncief_Type$_hashCode = $this => { + return 2622298; }, -oncipvaf_Cypher5AstBuilder_exitCreateRole = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = $ctx.$parent; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext)); - if (var$3.$size() <= 1) - var$4 = s_None$_MODULE$; - else { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && var$3.$size() != 2) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - var$4 = s_Some__init_((var$3.$get0(1)).$ast0); - } - var$5 = new oncia_CreateRole; - var$3 = (var$3.$get0(0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_CreateRole__init_(var$5, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - $ctx.$ast0 = var$5; +oncief_Type$_toString = $this => { + return $rt_s(6390); }, -oncipvaf_Cypher5AstBuilder_exitCreateUser = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $ctx.$parent; - var$3 = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0); - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - var$3 = sci_List_foldLeft(var$3, sci_Nil$_MODULE$, new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1); - var$3 = sci_List_foldLeft(sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordChangeRequiredContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2), var$3, new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3); - var$4 = new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4; - onciu_InputPosition$_$callClinit(); - var$5 = var$3.$sortBy(var$4, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); - if (!sc_IterableOnceOps_nonEmpty$(var$5)) - var$4 = s_None$_MODULE$; - else { - var$4 = new s_Some; - var$6 = new oncia_Auth; - oncia_AdministrationCommand$_$callClinit(); - oncia_Auth__init_(var$6, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), var$5, (var$5.$head()).$position()); - s_Some__init_0(var$4, var$6); - } - var$5 = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SetAuthClauseContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateUserContext_userStatus($ctx), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6); - var$6 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateUserContext_homeDatabase($ctx), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7); - $ctx.$ast0 = oncia_CreateUser__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0, oncia_UserOptions__init_(var$3, var$6), oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1), var$5, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +oncief_Type$_signatures0 = $this => { + oncief_Type$_$callClinit(); + return oncief_Type$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitCreateCompositeDatabase = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = $ctx.$parent; - var$3 = new oncia_CreateCompositeDatabase; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_CreateCompositeDatabase__init_(var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, - $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - $ctx.$ast0 = var$3; +oncief_Upper$ = $rt_classWithoutFields(oncief_Function), +oncief_Upper$_MODULE$ = null, +oncief_Upper$_signatures = null, +oncief_Upper$_$callClinit = () => { + oncief_Upper$_$callClinit = $rt_eraseClinit(oncief_Upper$); + oncief_Upper$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitCreateDatabase = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = $ctx.$parent; - if (oncip_AstRuleCtx_getToken($ctx, 275, 0) === null) - var$3 = s_None$_MODULE$; - else { - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateDatabaseContext_primaryTopology($ctx), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0); - var$5 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateDatabaseContext_secondaryTopology($ctx), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1); - var$3 = s_Some__init_(oncia_Topology__init_(var$4, var$5)); - } - var$6 = new oncia_CreateDatabase; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_CreateDatabase__init_(var$6, var$7, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, - $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3), var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - $ctx.$ast0 = var$6; +oncief_Upper$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_Upper$; + oncief_Upper$_$callClinit(); + oncief_Function__init_(var$1); + oncief_Upper$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_Upper$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_StringType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTString(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_STRING(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6382)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6383), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_Upper$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitCreateAlias = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = $ctx.$parent; - var$3 = (oncipv_Cypher5Parser$CreateAliasContext_aliasName($ctx)).$ast0; - var$4 = (oncipv_Cypher5Parser$CreateAliasContext_databaseName($ctx)).$ast0; - var$5 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; - var$6 = oncip_AstRuleCtx_getToken($ctx, 210, 0) === null ? s_None$_MODULE$ : oncipv_Cypher5Parser$CreateAliasContext_DRIVER($ctx) === null ? s_Some__init_((oncipv_Cypher5Parser$CreateAliasContext_mapOrParameter($ctx, 0)).$ast0) : s_Some__init_((oncipv_Cypher5Parser$CreateAliasContext_mapOrParameter($ctx, 1)).$ast0); - if (oncipv_Cypher5Parser$CreateAliasContext_AT($ctx) === null) { - var$7 = new oncia_CreateLocalDatabaseAlias; - oncipau_Util$_$callClinit(); - oncia_CreateLocalDatabaseAlias__init_(var$7, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, var$5), var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } else { - var$8 = oncipv_Cypher5Parser$CreateAliasContext_DRIVER($ctx) === null ? s_None$_MODULE$ : s_Some__init_((oncipv_Cypher5Parser$CreateAliasContext_mapOrParameter($ctx, 0)).$ast0); - var$7 = new oncia_CreateRemoteDatabaseAlias; - oncipau_Util$_$callClinit(); - oncia_CreateRemoteDatabaseAlias__init_(var$7, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, var$5), (oncipv_Cypher5Parser$CreateAliasContext_stringOrParameter($ctx)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordExpressionContext), 0)).$ast0, var$8, var$6, - oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } - $ctx.$ast0 = var$7; +oncief_Upper$_name = $this => { + return $rt_s(3637); }, -oncipvaf_Cypher5AstBuilder_exitCommandOptions = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MapOrParameterContext), 0)).$ast0; - if (var$2 instanceof su_Left) - var$3 = oncia_OptionsMap__init_(var$2.$value6); - else { - if (!(var$2 instanceof su_Right)) - $rt_throw(s_MatchError__init_(var$2)); - var$3 = oncia_OptionsParam__init_(var$2.$value7); - } - $ctx.$ast0 = var$3; +oncief_Upper$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitMapOrParameter = ($this, $ctx) => { - let var$2, var$3; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MapContext), 0); - if (var$2 === null) { - s_package$_$callClinit(); - var$3 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0); - } else { - s_package$_$callClinit(); - var$3 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), sc_AbstractIterable_toMap(var$2.$ast0.$items1.$map(new oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0), s_$less$colon$less$_singleton)); - } - $ctx.$ast0 = var$3; +oncief_Upper$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitCommand = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$UseClauseContext), 0); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx); - if (!(var$3 instanceof oncipv_Cypher5Parser$ShowCommandContext)) { - if (!(var$3 instanceof oncipv_Cypher5Parser$TerminateCommandContext)) - var$4 = var$3.$ast0.$withGraph0(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$2)); - else { - var$3 = var$3; - if (var$2 === null) - var$4 = oncia_SingleQuery__init_0(var$3.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - else { - var$4 = new oncia_SingleQuery; - var$2 = var$2.$ast0; - oncia_SingleQuery__init_(var$4, var$3.$ast0.$$plus$colon(var$2), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - } - } else { - var$4 = var$3.$ast0; - if (var$4 instanceof oncia_SingleQuery) { - var$3 = var$4; - if (var$2 !== null) { - var$4 = new oncia_SingleQuery; - var$2 = var$2.$ast0; - oncia_SingleQuery__init_(var$4, var$3.$clauses0.$prepended(var$2), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - } - } - if ($rt_isInstance(var$4, oncia_StatementWithGraph)) { - var$3 = var$4; - if (var$2 !== null) - var$4 = var$3.$withGraph0(s_Some__init_(var$2.$ast0)); - } - } - } - $ctx.$ast0 = var$4; +oncief_Upper$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitDropCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncief_Upper$_hashCode = $this => { + return 81946754; }, -oncipvaf_Cypher5AstBuilder_exitCommandNodePattern = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelTypeContext), 0)).$ast0); +oncief_Upper$_toString = $this => { + return $rt_s(176); }, -oncipvaf_Cypher5AstBuilder_exitCommandRelPattern = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RelTypeContext), 0)).$ast0); +oncief_Upper$_signatures0 = $this => { + oncief_Upper$_$callClinit(); + return oncief_Upper$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitDropConstraint = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - var$3 = oncipv_Cypher5Parser$DropConstraintContext_symbolicNameOrStringParameter($ctx); - if (var$3 !== null) - $ctx.$ast0 = oncia_DropConstraintOnName__init_(var$3.$ast0, oncipv_Cypher5Parser$DropConstraintContext_EXISTS($ctx) === null ? 0 : 1, s_None$_MODULE$, var$2); +oncief_ValueType$ = $rt_classWithoutFields(oncief_Function), +oncief_ValueType$_MODULE$ = null, +oncief_ValueType$_signatures = null, +oncief_ValueType$_$callClinit = () => { + oncief_ValueType$_$callClinit = $rt_eraseClinit(oncief_ValueType$); + oncief_ValueType$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitDropIndex = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oncipv_Cypher5Parser$DropIndexContext_symbolicNameOrStringParameter($ctx); - if (var$2 !== null) { - var$3 = new oncia_DropIndexOnName; - var$4 = var$2.$ast0; - var$5 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; - var$6 = s_None$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_DropIndexOnName__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$3; - } +oncief_ValueType$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, var$6, $x$3, var$8, $x$2, $x$4, var$11, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_ValueType$; + oncief_ValueType$_$callClinit(); + oncief_Function__init_(var$1); + oncief_ValueType$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_ValueType$_MODULE$; + var$6 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 1); + var$8.data[0] = $rt_s(1183); + $x$2 = var$6.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$8)); + $x$4 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncius_AnyType, 1); + var$11 = var$8.data; + oncius_package$_$callClinit(); + var$11[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + $x$3 = $x$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + $x$4 = oncius_package$_CTString(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SCALAR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$6 = s_Predef$_Map(s_Predef$_MODULE$); + $x$10 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(s_Tuple2, 1); + var$8.data[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1183), $rt_s(6391)); + var$14 = sci_Map$_from(var$6, sr_ScalaRunTime$_wrapRefArray($x$10, var$8)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6392), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_ValueType$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitPropertyList = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$EnclosedPropertyListContext), 0); - if (var$2 !== null) - var$2 = var$2.$ast0; - else { - var$3 = sci_ArraySeq$_MODULE$; - var$2 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_Property, 1); - var$5 = var$4.data; - var$6 = new oncie_Property; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)).$ast0; - var$8 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncie_Property__init_0(var$6, var$7, var$8, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$5[0] = var$6; - var$2 = sr_ScalaRunTime$_wrapRefArray(var$2, var$4); - sr_ClassTag$_$callClinit(); - var$2 = sci_ArraySeq$_from(var$3, var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property))); - } - $ctx.$ast0 = var$2; +oncief_ValueType$_name = $this => { + return $rt_s(1244); }, -oncipvaf_Cypher5AstBuilder_exitEnclosedPropertyList = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = sci_ArraySeq_map(oncipau_Util$_astPairs(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext)), oncipv_Cypher5Parser$EnclosedPropertyListContext_property($ctx)), new oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0); -}; -let oncipvaf_Cypher5AstBuilder_exitAlterCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncief_ValueType$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitRenameCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncief_ValueType$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitEnableServerCommand = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_EnableServer; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_EnableServer__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0), new oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_00), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_ValueType$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitAlterServer = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_AlterServer; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0)).$ast0; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandOptionsContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_AlterServer__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncief_ValueType$_hashCode = $this => { + return 1238275115; }, -oncipvaf_Cypher5AstBuilder_exitRenameServer = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext)); - var$3 = new oncia_RenameServer; - var$4 = (var$2.$get0(0)).$ast0; - var$2 = (var$2.$get0(1)).$ast0; - oncipau_Util$_$callClinit(); - oncia_RenameServer__init_(var$3, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$3; +oncief_ValueType$_toString = $this => { + return $rt_s(6393); }, -oncipvaf_Cypher5AstBuilder_exitDropServer = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_DropServer; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_DropServer__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncief_ValueType$_signatures0 = $this => { + oncief_ValueType$_$callClinit(); + return oncief_ValueType$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitAllocationCommand = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncip_AstRuleCtx_getToken($ctx, 88, 0) === null ? 0 : 1; - if (oncipv_Cypher5Parser$AllocationCommandContext_reallocateDatabases($ctx) !== null) { - var$3 = new oncia_ReallocateDatabases; - oncipau_Util$_$callClinit(); - oncia_ReallocateDatabases__init_(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AllocationCommandContext_reallocateDatabases($ctx))); - } else { - var$3 = new oncia_DeallocateServers; - var$4 = (oncipv_Cypher5Parser$AllocationCommandContext_deallocateDatabaseFromServers($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncia_DeallocateServers__init_(var$3, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AllocationCommandContext_deallocateDatabaseFromServers($ctx))); - } - $ctx.$ast0 = var$3; +oncief_WithinBBox$ = $rt_classWithoutFields(oncief_Function), +oncief_WithinBBox$_MODULE$ = null, +oncief_WithinBBox$_name = null, +oncief_WithinBBox$_signatures0 = null, +oncief_WithinBBox$_$callClinit = () => { + oncief_WithinBBox$_$callClinit = $rt_eraseClinit(oncief_WithinBBox$); + oncief_WithinBBox$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitDeallocateDatabaseFromServers = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(su_Either))); +oncief_WithinBBox$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$4, $x$6, $x$10, var$14, $x$8; + var$1 = new oncief_WithinBBox$; + oncief_WithinBBox$_$callClinit(); + oncief_Function__init_(var$1); + oncief_WithinBBox$_MODULE$ = var$1; + oncief_WithinBBox$_name = $rt_s(6394); + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_WithinBBox$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(1249), $rt_s(6395), $rt_s(6396)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_PointType, 3); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTPoint(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTPoint(oncius_package$_MODULE$); + var$10[2] = oncius_package$_CTPoint(oncius_package$_MODULE$); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTBoolean(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_SPATIAL(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + $x$10 = s_Predef$_Map(s_Predef$_MODULE$); + var$14 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 3); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(1249), $rt_s(6397)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6395), $rt_s(6398)); + var$10[2] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6396), $rt_s(6399)); + var$14 = sci_Map$_from($x$10, sr_ScalaRunTime$_wrapRefArray(var$14, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6400), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$14); + oncief_WithinBBox$_signatures0 = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitReallocateDatabases = ($this, $ctx) => { - return; +oncief_WithinBBox$_name0 = $this => { + oncief_WithinBBox$_$callClinit(); + return oncief_WithinBBox$_name; }, -oncipvaf_Cypher5AstBuilder_exitDropRole = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_DropRole; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_DropRole__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncief_WithinBBox$_signatures = $this => { + oncief_WithinBBox$_$callClinit(); + return oncief_WithinBBox$_signatures0; }, -oncipvaf_Cypher5AstBuilder_exitRenameRole = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext)); - var$3 = new oncia_RenameRole; - var$4 = (var$2.$get0(0)).$ast0; - var$5 = (var$2.$get0(1)).$ast0; - var$6 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_RenameRole__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$3; +oncief_WithinBBox$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitDropUser = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_DropUser; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_DropUser__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncief_WithinBBox$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitRenameUser = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext)); - var$3 = new oncia_RenameUser; - var$4 = (var$2.$get0(0)).$ast0; - var$5 = (var$2.$get0(1)).$ast0; - var$6 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_RenameUser__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$3; +oncief_WithinBBox$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitAlterCurrentUser = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_SetOwnPassword; - var$3 = (oncipv_Cypher5Parser$AlterCurrentUserContext_passwordExpression($ctx, 1)).$ast0; - var$4 = (oncipv_Cypher5Parser$AlterCurrentUserContext_passwordExpression($ctx, 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_SetOwnPassword__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncief_WithinBBox$_hashCode = $this => { + return 502356276; }, -oncipvaf_Cypher5AstBuilder_exitAlterUser = ($this, $ctx) => { - oncipvaf_DdlBuilder_exitAlterUser0($this, $ctx); +oncief_WithinBBox$_toString = $this => { + return $rt_s(6401); }, -oncipvaf_Cypher5AstBuilder_exitRemoveNamedProvider = ($this, $ctx) => { - $ctx.$ast0 = oncipv_Cypher5Parser$RemoveNamedProviderContext_stringLiteral($ctx) !== null ? (oncipv_Cypher5Parser$RemoveNamedProviderContext_stringLiteral($ctx)).$ast0 : oncipv_Cypher5Parser$RemoveNamedProviderContext_stringListLiteral($ctx) !== null ? (oncipv_Cypher5Parser$RemoveNamedProviderContext_stringListLiteral($ctx)).$ast0 : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; +oncief_WithinBBox$_signatures1 = $this => { + return oncief_WithinBBox$_signatures($this); }, -oncipvaf_Cypher5AstBuilder_exitSetAuthClause = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$UserAuthAttributeContext)); - sr_ClassTag$_$callClinit(); - var$3 = sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_AuthAttribute)))); - $ctx.$ast0 = oncia_Auth__init_0(var$2.$value8, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncief_VectorSimilarityEuclidean$ = $rt_classWithoutFields(oncief_Function), +oncief_VectorSimilarityEuclidean$_MODULE$ = null, +oncief_VectorSimilarityEuclidean$_signatures = null, +oncief_VectorSimilarityEuclidean$_$callClinit = () => { + oncief_VectorSimilarityEuclidean$_$callClinit = $rt_eraseClinit(oncief_VectorSimilarityEuclidean$); + oncief_VectorSimilarityEuclidean$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitUserAuthAttribute = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncipv_Cypher5Parser$UserAuthAttributeContext_ID($ctx) !== null) { - var$2 = new oncia_AuthId; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringOrParameterExpressionContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_AuthId__init_(var$2, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$UserAuthAttributeContext_ID($ctx))); - } else if (oncipv_Cypher5Parser$UserAuthAttributeContext_passwordOnly($ctx) !== null) - var$2 = (oncipv_Cypher5Parser$UserAuthAttributeContext_passwordOnly($ctx)).$ast0; - else { - var$2 = new oncia_PasswordChange; - var$4 = sr_BoxesRunTime_unboxToBoolean((oncipv_Cypher5Parser$UserAuthAttributeContext_passwordChangeRequired($ctx)).$ast0); - oncipau_Util$_$callClinit(); - oncia_PasswordChange__init_(var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$UserAuthAttributeContext_passwordChangeRequired($ctx))); - } - $ctx.$ast0 = var$2; +oncief_VectorSimilarityEuclidean$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$8, $x$4, $x$6, var$14, var$15, $x$10; + var$1 = new oncief_VectorSimilarityEuclidean$; + oncief_VectorSimilarityEuclidean$_$callClinit(); + oncief_Function__init_(var$1); + oncief_VectorSimilarityEuclidean$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_VectorSimilarityEuclidean$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6402), $rt_s(6403)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_ListType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + $x$8 = oncius_package$_MODULE$; + var$10[0] = oncius_package$_CTList($x$8, oncius_package$_CTNumber($x$8)); + $x$8 = oncius_package$_MODULE$; + var$10[1] = oncius_package$_CTList($x$8, oncius_package$_CTNumber($x$8)); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_VECTOR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$14 = s_Predef$_Map(s_Predef$_MODULE$); + var$15 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6402), $rt_s(6404)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6403), $rt_s(6405)); + var$7 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray(var$15, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6406), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); + oncief_VectorSimilarityEuclidean$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}; +let oncief_VectorSimilarityEuclidean$_name = $this => { + return $rt_s(6407); }, -oncipvaf_Cypher5AstBuilder_exitPasswordOnly = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_Password; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 97, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_Password__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_VectorSimilarityEuclidean$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitPassword = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_Password; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PasswordExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 97, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_Password__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = s_Tuple2__init_(var$2, oncipv_Cypher5Parser$PasswordContext_passwordChangeRequired($ctx) === null ? s_None$_MODULE$ : s_Some__init_(oncia_PasswordChange__init_0(sr_BoxesRunTime_unboxToBoolean((oncipv_Cypher5Parser$PasswordContext_passwordChangeRequired($ctx)).$ast0), oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$PasswordContext_passwordChangeRequired($ctx))))); +oncief_VectorSimilarityEuclidean$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitPasswordExpression = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext), 0); - if (var$2 !== null) { - var$2 = var$2.$ast0; - var$3 = new oncie_SensitiveStringLiteral; - var$4 = var$2.$value8; - jnc_StandardCharsets_$callClinit(); - oncie_SensitiveStringLiteral__init_(var$3, jl_String_getBytes(var$4, jnc_StandardCharsets_UTF_8), var$2.$position18); - } else { - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; - var$3 = new oncipvaf_DdlBuilder$$anon$1; - var$4 = var$2.$name(); - oncius_package$_$callClinit(); - oncie_ExplicitParameter__init_0(var$3, var$4, oncius_package$_CTString(oncius_package$_MODULE$), onciu_UnknownSize$_MODULE$, var$2.$position()); - } - $ctx.$ast0 = var$3; +oncief_VectorSimilarityEuclidean$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitPasswordChangeRequired = ($this, $ctx) => { - $ctx.$ast0 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 179, 0) !== null ? 0 : 1); +oncief_VectorSimilarityEuclidean$_hashCode = $this => { + return (-1341475624); }, -oncipvaf_Cypher5AstBuilder_exitUserStatus = ($this, $ctx) => { - $ctx.$ast0 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1); +oncief_VectorSimilarityEuclidean$_toString = $this => { + return $rt_s(6408); }, -oncipvaf_Cypher5AstBuilder_exitHomeDatabase = ($this, $ctx) => { - $ctx.$ast0 = oncia_SetHomeDatabaseAction__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0); +oncief_VectorSimilarityEuclidean$_signatures0 = $this => { + oncief_VectorSimilarityEuclidean$_$callClinit(); + return oncief_VectorSimilarityEuclidean$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitDropDatabase = ($this, $ctx) => { - let var$2, var$3; - var$2 = oncip_AstRuleCtx_getToken($ctx, 89, 0) === null ? oncia_DestroyData$_MODULE$ : oncia_DumpData$_MODULE$; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AliasActionContext), 0), new oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0); - $ctx.$ast0 = oncia_DropDatabase__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0, oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 53, 0) === null ? 0 : 1, var$3, var$2, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1), oncipau_Util$_pos(oncipau_Util$_MODULE$, - $ctx.$parent)); +oncief_VectorSimilarityCosine$ = $rt_classWithoutFields(oncief_Function), +oncief_VectorSimilarityCosine$_MODULE$ = null, +oncief_VectorSimilarityCosine$_signatures = null, +oncief_VectorSimilarityCosine$_$callClinit = () => { + oncief_VectorSimilarityCosine$_$callClinit = $rt_eraseClinit(oncief_VectorSimilarityCosine$); + oncief_VectorSimilarityCosine$__clinit_(); }, -oncipvaf_Cypher5AstBuilder_exitAliasAction = ($this, $ctx) => { - $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 42, 0) === null ? oncia_Restrict$_MODULE$ : oncia_CascadeAliases$_MODULE$; +oncief_VectorSimilarityCosine$__clinit_ = () => { + let var$1, var$2, var$3, var$4, $x$1, $x$2, var$7, $x$3, var$9, var$10, $x$8, $x$4, $x$6, var$14, var$15, $x$10; + var$1 = new oncief_VectorSimilarityCosine$; + oncief_VectorSimilarityCosine$_$callClinit(); + oncief_Function__init_(var$1); + oncief_VectorSimilarityCosine$_MODULE$ = var$1; + s_package$_$callClinit(); + var$1 = s_package$_Vector(s_package$_MODULE$); + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncie_FunctionTypeSignature, 1); + var$4 = var$3.data; + $x$1 = oncief_VectorSimilarityCosine$_MODULE$; + $x$2 = (s_package$_Vector(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(6402), $rt_s(6403)]))); + var$7 = s_package$_Vector(s_package$_MODULE$); + $x$3 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_ListType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + $x$8 = oncius_package$_MODULE$; + var$10[0] = oncius_package$_CTList($x$8, oncius_package$_CTNumber($x$8)); + $x$8 = oncius_package$_MODULE$; + var$10[1] = oncius_package$_CTList($x$8, oncius_package$_CTNumber($x$8)); + $x$3 = var$7.$from0(sr_ScalaRunTime$_wrapRefArray($x$3, var$9)); + $x$4 = oncius_package$_CTFloat(oncius_package$_MODULE$); + oncief_Category$_$callClinit(); + $x$6 = oncief_Category$_VECTOR(oncief_Category$_MODULE$); + s_Predef$_$callClinit(); + var$14 = s_Predef$_Map(s_Predef$_MODULE$); + var$15 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(s_Tuple2, 2); + var$10 = var$9.data; + var$10[0] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6402), $rt_s(6404)); + var$10[1] = s_Predef$ArrowAssoc$_$minus$greater$extension(s_Predef$ArrowAssoc$_MODULE$, $rt_s(6403), $rt_s(6405)); + var$7 = sci_Map$_from(var$14, sr_ScalaRunTime$_wrapRefArray(var$15, var$9)); + $x$8 = oncie_FunctionTypeSignature$_apply$default$7(oncie_FunctionTypeSignature$_MODULE$); + $x$10 = s_None$_MODULE$; + var$4[0] = oncie_FunctionTypeSignature__init_($x$1, $x$4, $x$2, $rt_s(6409), $x$6, $x$3, $x$8, 0, $x$10, 0, $x$10, $x$10, var$7); + oncief_VectorSimilarityCosine$_signatures = var$1.$from0(sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); }, -oncipvaf_Cypher5AstBuilder_exitAlterDatabase = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_00); - if (!(oncipv_Cypher5Parser$AlterDatabaseContext_REMOVE($ctx)).$isEmpty()) { - s_Predef$_$callClinit(); - var$4 = s_Predef$_Set(s_Predef$_MODULE$); - var$5 = oncipau_Util$_MODULE$; - var$6 = oncipv_Cypher5Parser$AlterDatabaseContext_symbolicNameString($ctx); - sr_ClassTag$_$callClinit(); - var$5 = sci_Set$_from(var$4, oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))); - var$7 = new oncia_AlterDatabase; - var$8 = oncipv_Cypher5Parser$AlterDatabaseContext_EXISTS($ctx) === null ? 0 : 1; - var$6 = s_None$_MODULE$; - oncia_NoOptions$_$callClinit(); - oncia_AlterDatabase__init_(var$7, var$2, var$8, var$6, var$6, oncia_NoOptions$_MODULE$, var$5, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - } else { - var$9 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseAccess($ctx), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_10); - var$10 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_20); - if ((oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption($ctx)).$isEmpty()) { - oncia_NoOptions$_$callClinit(); - var$11 = oncia_NoOptions$_MODULE$; - } else { - var$11 = new oncia_OptionsMap; - var$6 = oncipau_Util$_MODULE$; - var$7 = oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption($ctx); - sr_ClassTag$_$callClinit(); - oncia_OptionsMap__init_0(var$11, (oncipau_Util$_astSeq(var$6, var$7, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(sci_Map)))).$reduceLeft(new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_30)); - } - var$7 = new oncia_AlterDatabase; - var$8 = oncipv_Cypher5Parser$AlterDatabaseContext_EXISTS($ctx) === null ? 0 : 1; - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - oncia_AlterDatabase__init_(var$7, var$2, var$8, var$9, var$10, var$11, sci_Set$EmptySet$_MODULE$, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - } - $ctx.$ast0 = var$7; +oncief_VectorSimilarityCosine$_name = $this => { + return $rt_s(6410); }, -oncipvaf_Cypher5AstBuilder_exitAlterDatabaseAccess = ($this, $ctx) => { - let var$2; - if (oncip_AstRuleCtx_getToken($ctx, 186, 0) === null) { - oncia_ReadWriteAccess$_$callClinit(); - var$2 = oncia_ReadWriteAccess$_MODULE$; - } else { - oncia_ReadOnlyAccess$_$callClinit(); - var$2 = oncia_ReadOnlyAccess$_MODULE$; - } - $ctx.$ast0 = var$2; +oncief_VectorSimilarityCosine$_productArity = $this => { + return 0; }, -oncipvaf_Cypher5AstBuilder_exitAlterDatabaseTopology = ($this, $ctx) => { - let var$2; - if (oncip_AstRuleCtx_getToken($ctx, 275, 0) === null) - var$2 = s_None$_MODULE$; - else { - oncipau_Util$_$callClinit(); - var$2 = oncia_Topology__init_(oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterDatabaseTopologyContext_primaryTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0), oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterDatabaseTopologyContext_secondaryTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1)); - } - $ctx.$ast0 = var$2; +oncief_VectorSimilarityCosine$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher5AstBuilder_exitPrimaryTopology = ($this, $ctx) => { - s_Predef$_$callClinit(); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = jl_Integer_valueOf(jl_Integer_parseInt((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getText())); +oncief_VectorSimilarityCosine$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5AstBuilder_exitSecondaryTopology = ($this, $ctx) => { - s_Predef$_$callClinit(); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = jl_Integer_valueOf(jl_Integer_parseInt((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getText())); +oncief_VectorSimilarityCosine$_hashCode = $this => { + return (-548655809); }, -oncipvaf_Cypher5AstBuilder_exitAlterDatabaseOption = ($this, $ctx) => { - let var$2, var$3, var$4; - s_Predef$_$callClinit(); - var$2 = s_Predef$_Map(s_Predef$_MODULE$); - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(s_Tuple2, 1); - var$4.data[0] = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0); - $ctx.$ast0 = sci_Map$_from(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); +oncief_VectorSimilarityCosine$_toString = $this => { + return $rt_s(6411); }, -oncipvaf_Cypher5AstBuilder_exitStartDatabase = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_StartDatabase; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_StartDatabase__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_VectorSimilarityCosine$_signatures0 = $this => { + oncief_VectorSimilarityCosine$_$callClinit(); + return oncief_VectorSimilarityCosine$_signatures; }, -oncipvaf_Cypher5AstBuilder_exitStopDatabase = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_StopDatabase; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_StopDatabase__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_00), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_Function$$lookup$lzycompute$lambda$_2_0 = $rt_classWithoutFields(), +oncief_Function$$lookup$lzycompute$lambda$_2_0__init_ = var$0 => { + return; }, -oncipvaf_Cypher5AstBuilder_exitWaitClause = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); - switch (var$2) { - case 181: - break; - case 299: - var$3 = oncip_AstRuleCtx_getToken($ctx, 5, 0); - if (var$3 === null) { - oncia_IndefiniteWait$_$callClinit(); - var$4 = oncia_IndefiniteWait$_MODULE$; - break a; - } - var$4 = new oncia_TimeoutAfter; - s_Predef$_$callClinit(); - oncia_TimeoutAfter__init_(var$4, jl_Long_parseLong(var$3.$getText())); - break a; - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - oncia_NoWait$_$callClinit(); - var$4 = oncia_NoWait$_MODULE$; - } - $ctx.$ast0 = var$4; +oncief_Function$$lookup$lzycompute$lambda$_2_0__init_0 = () => { + let var_0 = new oncief_Function$$lookup$lzycompute$lambda$_2_0(); + oncief_Function$$lookup$lzycompute$lambda$_2_0__init_(var_0); + return var_0; }, -oncipvaf_Cypher5AstBuilder_exitDropAlias = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_DropDatabaseAlias; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AliasNameContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 105, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_DropDatabaseAlias__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncief_Function$$lookup$lzycompute$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + oncief_Function$_$callClinit(); + var$2 = new s_Tuple2; + var$3 = var$1.$name(); + ju_Locale_$callClinit(); + s_Tuple2__init_0(var$2, jl_String_toLowerCase(var$3, ju_Locale_ROOT), var$1); + return var$2; }, -oncipvaf_Cypher5AstBuilder_exitAlterAlias = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = (oncipv_Cypher5Parser$AlterAliasContext_aliasName($ctx)).$ast0; - var$3 = oncipv_Cypher5Parser$AlterAliasContext_alterAliasTarget($ctx); - if (var$3.$isEmpty()) { - var$4 = new s_Tuple2; - var$5 = s_None$_MODULE$; - s_Tuple2__init_0(var$4, var$5, var$5); - } else { - var$4 = new s_Tuple2; - var$5 = s_Some__init_((oncipv_Cypher5Parser$AlterAliasTargetContext_databaseName(var$3.$get0(0))).$ast0); - oncipau_Util$_$callClinit(); - s_Tuple2__init_0(var$4, var$5, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasTargetContext_stringOrParameter(var$3.$get0(0)))); - } - var$4 = s_Tuple2__init_(var$4.$_10, var$4.$_20); - var$3 = var$4.$_10; - var$6 = var$4.$_20; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasContext_alterAliasUser($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_00); - var$8 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasContext_alterAliasPassword($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_10); - var$9 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasContext_alterAliasDriver($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_20); - var$4 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasContext_alterAliasProperties($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_30); - $ctx.$ast0 = s_Option_isEmpty(var$6) && s_Option_isEmpty(var$7) && s_Option_isEmpty(var$8) && s_Option_isEmpty(var$9) ? oncia_AlterLocalDatabaseAlias__init_(var$2, var$3, oncipv_Cypher5Parser$AlterAliasContext_EXISTS($ctx) === null ? 0 : 1, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)) : oncia_AlterRemoteDatabaseAlias__init_(var$2, var$3, oncipv_Cypher5Parser$AlterAliasContext_EXISTS($ctx) === null ? 0 : 1, var$6, var$7, var$8, var$9, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); +oncia_FulltextCreateIndex$ = $rt_classWithoutFields(), +oncia_FulltextCreateIndex$_MODULE$ = null, +oncia_FulltextCreateIndex$_command = null, +oncia_FulltextCreateIndex$_nodeDescription = null, +oncia_FulltextCreateIndex$_relDescription = null, +oncia_FulltextCreateIndex$_allDescription = null, +oncia_FulltextCreateIndex$_singlePropertyOnly = 0, +oncia_FulltextCreateIndex$__clinit_ = () => { + oncia_FulltextCreateIndex$_MODULE$ = new oncia_FulltextCreateIndex$; + oncia_FulltextCreateIndex$_command = $rt_s(6412); + oncia_FulltextCreateIndex$_nodeDescription = $rt_s(6413); + oncia_FulltextCreateIndex$_relDescription = $rt_s(6414); + oncia_FulltextCreateIndex$_allDescription = $rt_s(6415); + oncia_FulltextCreateIndex$_singlePropertyOnly = 0; }, -oncipvaf_Cypher5AstBuilder_exitAlterAliasTarget = ($this, $ctx) => { - let var$2; - var$2 = (oncipv_Cypher5Parser$AlterAliasTargetContext_databaseName($ctx)).$ast0; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = s_Tuple2__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$AlterAliasTargetContext_stringOrParameter($ctx))); +oncia_LookupCreateIndex$ = $rt_classWithoutFields(), +oncia_LookupCreateIndex$_MODULE$ = null, +oncia_LookupCreateIndex$_command = null, +oncia_LookupCreateIndex$_nodeDescription = null, +oncia_LookupCreateIndex$_relDescription = null, +oncia_LookupCreateIndex$_allDescription = null, +oncia_LookupCreateIndex$_singlePropertyOnly = 0, +oncia_LookupCreateIndex$__clinit_ = () => { + oncia_LookupCreateIndex$_MODULE$ = new oncia_LookupCreateIndex$; + oncia_LookupCreateIndex$_command = $rt_s(6416); + oncia_LookupCreateIndex$_nodeDescription = $rt_s(6417); + oncia_LookupCreateIndex$_relDescription = $rt_s(6418); + oncia_LookupCreateIndex$_allDescription = $rt_s(6419); + oncia_LookupCreateIndex$_singlePropertyOnly = 0; +}; +function jnc_CoderResult() { + let a = this; jl_Object.call(a); + a.$kind = 0; + a.$length5 = 0; +} +let jnc_CoderResult_UNDERFLOW = null, +jnc_CoderResult_OVERFLOW = null, +jnc_CoderResult__init_0 = ($this, $kind, $length) => { + $this.$kind = $kind; + $this.$length5 = $length; }, -oncipvaf_Cypher5AstBuilder_exitAlterAliasUser = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +jnc_CoderResult__init_ = (var_0, var_1) => { + let var_2 = new jnc_CoderResult(); + jnc_CoderResult__init_0(var_2, var_0, var_1); + return var_2; }, -oncipvaf_Cypher5AstBuilder_exitAlterAliasPassword = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +jnc_CoderResult_isUnderflow = $this => { + return $this.$kind ? 0 : 1; }, -oncipvaf_Cypher5AstBuilder_exitAlterAliasDriver = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +jnc_CoderResult_isOverflow = $this => { + return $this.$kind != 1 ? 0 : 1; }, -oncipvaf_Cypher5AstBuilder_exitAlterAliasProperties = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +jnc_CoderResult_isError = $this => { + return !jnc_CoderResult_isMalformed($this) && !jnc_CoderResult_isUnmappable($this) ? 0 : 1; }, -oncipvaf_Cypher5AstBuilder_exitSymbolicNameOrStringParameter = ($this, $ctx) => { - let var$2; - if (oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_symbolicNameString($ctx) !== null) { - s_package$_$callClinit(); - var$2 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_symbolicNameString($ctx)).$ast0); - } else { - s_package$_$callClinit(); - var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0); - } - $ctx.$ast0 = var$2; +jnc_CoderResult_isMalformed = $this => { + return $this.$kind != 2 ? 0 : 1; }, -oncipvaf_Cypher5AstBuilder_exitCommandNameExpression = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncipv_Cypher5Parser$CommandNameExpressionContext_symbolicNameString($ctx); - if (var$2 === null) - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; - else { - var$3 = new oncie_StringLiteral; - var$4 = (oncipv_Cypher5Parser$CommandNameExpressionContext_symbolicNameString($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncie_StringLiteral__init_0(var$3, var$4, oncipau_Util$_rangePos(oncipau_Util$_MODULE$, var$2)); - } - $ctx.$ast0 = var$3; +jnc_CoderResult_isUnmappable = $this => { + return $this.$kind != 3 ? 0 : 1; }, -oncipvaf_Cypher5AstBuilder_exitSymbolicNameOrStringParameterList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNameExpressionContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); +jnc_CoderResult_length = $this => { + let var$1; + if (jnc_CoderResult_isError($this)) + return $this.$length5; + var$1 = new jl_UnsupportedOperationException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); }, -oncipvaf_Cypher5AstBuilder_exitSymbolicAliasNameList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_DatabaseName))); +jnc_CoderResult_malformedForLength = $length => { + return jnc_CoderResult__init_(2, $length); }, -oncipvaf_Cypher5AstBuilder_exitSymbolicAliasNameOrParameter = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($ctx); - if (var$2 !== null) { - var$2 = var$2.$ast0.$toList(); - var$3 = oncia_NamespacedName$_MODULE$; - oncipau_Util$_$callClinit(); - var$3 = oncia_NamespacedName$_apply(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$3 = new oncia_ParameterName; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_ParameterName__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +jnc_CoderResult_throwException = $this => { + let var$1, var$2; + switch ($this.$kind) { + case 0: + var$1 = new jnc_BufferUnderflowException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + case 1: + var$1 = new jnc_BufferOverflowException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + case 2: + var$1 = new jnc_MalformedInputException; + var$2 = $this.$length5; + jl_Throwable__init_0(var$1); + var$1.$length7 = var$2; + $rt_throw(var$1); + case 3: + var$1 = new jnc_UnmappableCharacterException; + var$2 = $this.$length5; + jl_Throwable__init_0(var$1); + var$1.$length8 = var$2; + $rt_throw(var$1); + default: } - $ctx.$ast0 = var$3; }, -oncipvaf_Cypher5AstBuilder_exitAliasName = ($this, $ctx) => { - $ctx.$ast0 = (oncipv_Cypher5Parser$AliasNameContext_symbolicAliasNameOrParameter($ctx)).$ast0; +jnc_CoderResult__clinit_ = () => { + jnc_CoderResult_UNDERFLOW = jnc_CoderResult__init_(0, 0); + jnc_CoderResult_OVERFLOW = jnc_CoderResult__init_(1, 0); }, -oncipvaf_Cypher5AstBuilder_exitDatabaseName = ($this, $ctx) => { - $ctx.$ast0 = (oncipv_Cypher5Parser$DatabaseNameContext_symbolicAliasNameOrParameter($ctx)).$ast0; +jnc_CoderMalfunctionError = $rt_classWithoutFields(jl_Error); +function onciu_NonEmptyList$IteratorConverter() { + jl_Object.call(this); + this.$iterator5 = null; +} +let onciu_RewritableJavascript$PROXY$9_58 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_58_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncipvaf_Cypher5AstBuilder_exitStringOrParameterExpression = ($this, $ctx) => { - $ctx.$ast0 = oncipv_Cypher5Parser$StringOrParameterExpressionContext_stringLiteral($ctx) !== null ? (oncipv_Cypher5Parser$StringOrParameterExpressionContext_stringLiteral($ctx)).$ast0 : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0; -}; -let oncipvaf_Cypher5AstBuilder_exitStringOrParameter = ($this, $ctx) => { - let var$2; - if (oncipv_Cypher5Parser$StringOrParameterContext_stringLiteral($ctx) !== null) { - s_package$_$callClinit(); - var$2 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (oncipv_Cypher5Parser$StringOrParameterContext_stringLiteral($ctx)).$ast0.$value8); - } else { - s_package$_$callClinit(); - var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ParameterContext), 0)).$ast0); - } - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$9_59 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_59_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; }, -oncipvaf_Cypher5AstBuilder_exitNodePattern = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncie_NodePattern__init_0(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, - oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +onciu_RewritableJavascript$PROXY$11_58 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_58_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncipvaf_Cypher5AstBuilder_exitRelationshipPattern = ($this, $ctx) => { - let var$2; - var$2 = new oncie_RelationshipPattern; - oncipau_Util$_$callClinit(); - oncie_RelationshipPattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PathLengthContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, - oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertiesContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)), oncipau_Util$_semanticDirection(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RightArrowContext), 0) === null ? 0 : 1, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LeftArrowContext), 0) === null - ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$11_59 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_59_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncipvaf_Cypher5AstBuilder_exitNodeLabels = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new s_Tuple2; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$LabelTypeContext)); - sr_ClassTag$_$callClinit(); - s_Tuple2__init_0(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))), oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$DynamicLabelTypeContext)), 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression)))); - $ctx.$ast0 = var$2; +oncie_MatchMode = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_165 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_165_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_MapExpression_copy(var$2, var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitNodeLabelsIs = ($this, $ctx) => { - let var$2, var$3; - var$2 = sci_ArraySeq$_MODULE$; - sr_ClassTag$_$callClinit(); - var$2 = sci_ArraySeq$_newBuilder(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))); - s_Option$_$callClinit(); - var$3 = scm_Builder$$anon$1_addAll(var$2, s_Option_map(s_Option$_apply(s_Option$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0)), new oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_00)); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = s_Tuple2__init_(scm_Builder$$anon$1_result(scm_Builder$$anon$1_addAll(var$3, oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$LabelTypeContext)), 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)))), scm_Builder$$anon$1_result(scm_Builder$$anon$1_addAll(scm_Builder$$anon$1_addAll(sci_ArraySeq$_newBuilder(sci_ArraySeq$_MODULE$, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, - oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$DynamicExpressionContext), 0))), oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$DynamicLabelTypeContext)), 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))))); +onciu_RewritableJavascript$PROXY$7_166 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_166_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpression$Leaf__init_0(var$3[0], var$3[1].$value3); }, -oncipvaf_Cypher5AstBuilder_exitDynamicExpression = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; +onciu_RewritableJavascript$PROXY$7_167 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_167_copyConstructor = (var$1, var$2, var$3) => { + return oncie_PlusQuantifier__init_(var$3.data[0]); }, -oncipvaf_Cypher5AstBuilder_exitDynamicAnyAllExpression = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_DynamicLabelOrRelTypeExpression; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 21, 0) !== null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncie_DynamicLabelOrRelTypeExpression__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_168 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_168_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DropDatabaseAlias__init_0(var$3[0], var$3[1].$value3, var$3[2]); }, -oncipvaf_Cypher5AstBuilder_exitDynamicLabelType = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +onciu_RewritableJavascript$PROXY$7_169 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_169_copyConstructor = (var$1, var$2, var$3) => { + return oncie_True_copy(var$2, var$3.data[0]); }, -oncipvaf_Cypher5AstBuilder_exitLabelType = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - $ctx.$ast0 = oncie_LabelName__init_(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +onciu_RewritableJavascript$PROXY$7_170 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_170_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Namespace__init_(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitRelType = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - $ctx.$ast0 = oncie_RelTypeName__init_(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +onciu_RewritableJavascript$PROXY$7_171 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_171_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Merge_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncipvaf_Cypher5AstBuilder_exitLabelOrRelType = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - $ctx.$ast0 = oncie_LabelOrRelTypeName__init_(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +onciu_RewritableJavascript$PROXY$7_172 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_172_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CollectExpression_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +onciu_RewritableJavascript$PROXY$7_174 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_174_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_MatchMode$DifferentRelationships__init_(var$3[0].$value3, var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression4 = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = $ctx.$children0; - var$3 = var$2.$size0; - var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; - var$5 = 0; - var$6 = 1; - while (var$6 < var$3) { - var$7 = ju_ArrayList_get(var$2, var$6); - if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 47) - var$5 = 1; - else if (var$7 instanceof oncipv_Cypher5Parser$LabelExpression3Context) { - var$8 = var$7.$ast0; - if (!var$5) { - oncil_LabelExpression$Disjunctions$_$callClinit(); - var$9 = oncil_LabelExpression$Disjunctions$_MODULE$; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_MODULE$; - var$4 = oncil_LabelExpression$Disjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 0); - } else { - var$7 = new oncil_LabelExpression$ColonDisjunction; - oncipau_Util$_$callClinit(); - var$9 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonDisjunction__init_(var$7, var$4, var$8, 0, oncipau_Util$_pos1(var$9, oncipau_Util$_nodeChild(var$9, $ctx, var$6 - 2 | 0))); - var$5 = 0; - var$4 = var$7; - } - } - var$6 = var$6 + 1 | 0; - } - $ctx.$ast0 = var$4; +onciu_RewritableJavascript$PROXY$7_175 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_175_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SubqueryCall$InTransactionsErrorParameters__init_(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression4Is = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = $ctx.$children0; - var$3 = var$2.$size0; - var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; - var$5 = 0; - var$6 = 1; - while (var$6 < var$3) { - var$7 = ju_ArrayList_get(var$2, var$6); - if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 47) - var$5 = 1; - else if (var$7 instanceof oncipv_Cypher5Parser$LabelExpression3IsContext) { - var$8 = var$7.$ast0; - if (!var$5) { - oncil_LabelExpression$Disjunctions$_$callClinit(); - var$9 = oncil_LabelExpression$Disjunctions$_MODULE$; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_MODULE$; - var$4 = oncil_LabelExpression$Disjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 1); - } else { - var$7 = new oncil_LabelExpression$ColonDisjunction; - oncipau_Util$_$callClinit(); - var$10 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonDisjunction__init_(var$7, var$4, var$8, 1, oncipau_Util$_pos1(var$10, oncipau_Util$_nodeChild(var$10, $ctx, var$6 - 2 | 0))); - var$5 = 0; - var$4 = var$7; - } - } - var$6 = var$6 + 1 | 0; - } - $ctx.$ast0 = var$4; +onciu_RewritableJavascript$PROXY$7_176 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_176_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Remove_copy(var$2, var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression3 = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = $ctx.$children0; - var$3 = var$2.$size0; - var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; - var$5 = 0; - var$6 = 1; - while (var$6 < var$3) { - var$7 = ju_ArrayList_get(var$2, var$6); - if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 47) - var$5 = 1; - else if (var$7 instanceof oncipv_Cypher5Parser$LabelExpression2Context) { - var$8 = var$7.$ast0; - if (!var$5) { - oncil_LabelExpression$Conjunctions$_$callClinit(); - var$9 = oncil_LabelExpression$Conjunctions$_MODULE$; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_MODULE$; - var$4 = oncil_LabelExpression$Conjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 0); - } else { - var$7 = new oncil_LabelExpression$ColonConjunction; - oncipau_Util$_$callClinit(); - var$9 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonConjunction__init_(var$7, var$4, var$8, 0, oncipau_Util$_pos1(var$9, oncipau_Util$_nodeChild(var$9, $ctx, var$6 - 1 | 0))); - var$5 = 0; - var$4 = var$7; - } - } - var$6 = var$6 + 1 | 0; - } - $ctx.$ast0 = var$4; +onciu_RewritableJavascript$PROXY$7_177 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_177_copyConstructor = (var$1, var$2, var$3) => { + return oncia_Statements__init_0(var$3.data[0]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression3Is = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = $ctx.$children0; - var$3 = var$2.$size0; - var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; - var$5 = 0; - var$6 = 1; - while (var$6 < var$3) { - var$7 = ju_ArrayList_get(var$2, var$6); - if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 47) - var$5 = 1; - else if (var$7 instanceof oncipv_Cypher5Parser$LabelExpression2IsContext) { - var$8 = var$7.$ast0; - if (!var$5) { - oncil_LabelExpression$Conjunctions$_$callClinit(); - var$9 = oncil_LabelExpression$Conjunctions$_MODULE$; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_MODULE$; - var$4 = oncil_LabelExpression$Conjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 1); - } else { - var$7 = new oncil_LabelExpression$ColonConjunction; - oncipau_Util$_$callClinit(); - var$10 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonConjunction__init_(var$7, var$4, var$8, 1, oncipau_Util$_pos1(var$10, oncipau_Util$_nodeChild(var$10, $ctx, var$6 - 1 | 0))); - var$5 = 0; - var$4 = var$7; - } - } - var$6 = var$6 + 1 | 0; - } - $ctx.$ast0 = var$4; +onciu_RewritableJavascript$PROXY$7_178 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_178_copyConstructor = (var$1, var$2, var$3) => { + return oncius_NothingType_copy(var$2, var$3.data[0]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression2 = ($this, $ctx) => { - let var$2; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - case 2: - var$2 = new oncil_LabelExpression$Negation; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Negation__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - var$2 = scc_AsScalaExtensions$CollectionHasAsScala_asScala(sj_CollectionConverters$_CollectionHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 145))); - oncipau_Util$_$callClinit(); - var$2 = sc_AbstractIterable_foldRight(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_00); - break a; - } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_179 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_179_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_UnaryAdd__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression2Is = ($this, $ctx) => { - let var$2; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - case 2: - var$2 = new oncil_LabelExpression$Negation; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Negation__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - var$2 = scc_AsScalaExtensions$CollectionHasAsScala_asScala(sj_CollectionConverters$_CollectionHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 145))); - oncipau_Util$_$callClinit(); - var$2 = sc_AbstractIterable_foldRight(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_00); - break a; - } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_180 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_180_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Not__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression1 = ($this, $ctx) => { - oncipvaf_LabelExpressionBuilder_exitLabelExpression10($this, $ctx); +onciu_RewritableJavascript$PROXY$7_181 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_181_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_StartDatabase__init_0(var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5AstBuilder_exitLabelExpression1Is = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - a: { - if ($ctx instanceof oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext) - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LabelExpression4IsContext), 0)).$ast0; - else if ($ctx instanceof oncipv_Cypher5Parser$AnyLabelIsContext) { - var$3 = $ctx; - var$2 = new oncil_LabelExpression$Wildcard; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Wildcard__init_(var$2, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - } else { - if (!($ctx instanceof oncipv_Cypher5Parser$LabelNameIsContext)) { - if (!($ctx instanceof oncipv_Cypher5Parser$DynamicLabelIsContext)) { - var$3 = new jl_IllegalStateException; - jl_Throwable__init_0(var$3, $rt_s(6910)); - $rt_throw(var$3); - } - var$3 = $ctx; - var$4 = oncipvaf_Cypher5AstBuilder_getIsLabel($this, var$3); - switch (var$4) { - case 1: - var$2 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression((oncipv_Cypher5Parser$DynamicLabelIsContext_dynamicAnyAllExpression(var$3)).$ast0), 1); - break a; - case 2: - var$2 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression((oncipv_Cypher5Parser$DynamicLabelIsContext_dynamicAnyAllExpression(var$3)).$ast0), 1); - break a; - case 3: - var$2 = oncil_LabelExpression$DynamicLeaf__init_((oncipv_Cypher5Parser$DynamicLabelIsContext_dynamicAnyAllExpression(var$3)).$ast0, 1); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); - } - var$3 = $ctx; - var$4 = oncipvaf_Cypher5AstBuilder_getIsLabel($this, var$3); - switch (var$4) { - case 1: - var$2 = new oncil_LabelExpression$Leaf; - var$5 = new oncie_LabelName; - var$6 = (oncipv_Cypher5Parser$LabelNameIsContext_symbolicLabelNameString(var$3)).$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelName__init_0(var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - oncil_LabelExpression$Leaf__init_(var$2, var$5, 1); - break a; - case 2: - var$2 = new oncil_LabelExpression$Leaf; - var$7 = new oncie_RelTypeName; - var$5 = (oncipv_Cypher5Parser$LabelNameIsContext_symbolicLabelNameString(var$3)).$ast0; - oncipau_Util$_$callClinit(); - oncie_RelTypeName__init_0(var$7, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - oncil_LabelExpression$Leaf__init_(var$2, var$7, 1); - break a; - case 3: - var$2 = new oncil_LabelExpression$Leaf; - var$7 = new oncie_LabelOrRelTypeName; - var$5 = (oncipv_Cypher5Parser$LabelNameIsContext_symbolicLabelNameString(var$3)).$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelOrRelTypeName__init_0(var$7, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - oncil_LabelExpression$Leaf__init_(var$2, var$7, 1); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); - } - } - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_182 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_182_copyConstructor = (var$1, var$2, var$3) => { + return oncius_NullType_copy(var$2, var$3.data[0]); }, -oncipvaf_Cypher5AstBuilder_getIsLabel = ($this, $ctx) => { - let var$2; - $ctx = $ctx.$parent; - var$2 = 0; - while (!var$2) { - if ($ctx !== null && $ctx.$getRuleIndex() != 101) { - if ($ctx.$getRuleIndex() == 59) - var$2 = 1; - else if ($ctx.$getRuleIndex() == 71) - var$2 = 2; - else - $ctx = $ctx.$parent; - } else - var$2 = 3; - } - return var$2; +onciu_RewritableJavascript$PROXY$7_183 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_183_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ProcedureOutput__init_(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitInsertNodePattern = ($this, $ctx) => { - let var$2; - var$2 = new oncie_NodePattern; - oncipau_Util$_$callClinit(); - oncie_NodePattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$InsertNodeLabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MapContext), 0)), s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, - $ctx)); - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_184 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_184_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SubqueryCall$InTransactionsParameters__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); }, -oncipvaf_Cypher5AstBuilder_exitInsertNodeLabelExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - var$2 = oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_IS($ctx) === null ? 0 : 1; - var$3 = $ctx.$children0; - var$4 = var$3.$size0; - oncipau_Util$_$callClinit(); - var$5 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - var$6 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_(var$5.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)), var$2); - if (var$4 > 2) { - var$7 = 0; - var$8 = 2; - while (var$8 < var$4) { - var$5 = ju_ArrayList_get(var$3, var$8); - if ($rt_isInstance(var$5, oavrt_TerminalNode) && (var$5.$getSymbol()).$getType0() == 47) - var$7 = 1; - else if (var$5 instanceof oncipv_Cypher5Parser$SymbolicNameStringContext) { - var$5 = var$5; - var$9 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_(var$5.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)), oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_IS($ctx) === null ? 0 : 1); - if (!var$7) { - oncil_LabelExpression$Conjunctions$_$callClinit(); - var$10 = oncil_LabelExpression$Conjunctions$_MODULE$; - var$11 = oncipau_Util$_MODULE$; - var$6 = oncil_LabelExpression$Conjunctions$_flat(var$10, var$6, var$9, oncipau_Util$_pos1(var$11, oncipau_Util$_nodeChild(var$11, $ctx, var$8 - 1 | 0)), var$2); - } else { - var$11 = new oncil_LabelExpression$ColonConjunction; - var$5 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonConjunction__init_(var$11, var$6, var$9, var$2, oncipau_Util$_pos1(var$5, oncipau_Util$_nodeChild(var$5, $ctx, var$8 - 1 | 0))); - var$7 = 0; - var$6 = var$11; - } - } - var$8 = var$8 + 1 | 0; - } - } - $ctx.$ast0 = var$6; +onciu_RewritableJavascript$PROXY$7_185 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_185_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpression$Wildcard__init_0(var$3[0].$value3, var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitInsertRelationshipPattern = ($this, $ctx) => { - let var$2; - var$2 = new oncie_RelationshipPattern; - oncipau_Util$_$callClinit(); - oncie_RelationshipPattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext), 0)), s_None$_MODULE$, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$MapContext), 0)), s_None$_MODULE$, - oncipau_Util$_semanticDirection(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$RightArrowContext), 0) === null ? 0 : 1, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$LeftArrowContext), 0) === null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_186 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_186_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ProcedureName__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitInsertRelationshipLabelExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), 0); - var$3 = new oncil_LabelExpression$Leaf; - var$4 = new oncie_RelTypeName; - var$5 = var$2.$ast0; - oncipau_Util$_$callClinit(); - oncie_RelTypeName__init_0(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - oncil_LabelExpression$Leaf__init_(var$3, var$4, oncip_AstRuleCtx_getToken($ctx, 139, 0) === null ? 0 : 1); - $ctx.$ast0 = var$3; +onciu_RewritableJavascript$PROXY$7_187 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_187_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_CoerceTo__init_(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitLeftArrow = ($this, $ctx) => { - return; +onciu_RewritableJavascript$PROXY$7_189 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_189_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ImportingWithSubqueryCall_copy(var$2, var$3[0], var$3[1], var$3[2].$value3, var$3[3]); }, -oncipvaf_Cypher5AstBuilder_exitArrowLine = ($this, $ctx) => { - return; +onciu_RewritableJavascript$PROXY$7_190 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_190_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Delete_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -oncipvaf_Cypher5AstBuilder_exitRightArrow = ($this, $ctx) => { - return; +onciu_RewritableJavascript$PROXY$7_191 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_191_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_NamedPatternPart_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5AstBuilder_exitLiteral = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - var$2 = ju_ArrayList_get($ctx.$children0, 0); - if (var$2 instanceof oncip_AstRuleCtx) - var$2 = var$2.$ast0; - else { - if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { - $ctx = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6897)), var$2); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($ctx); - } - var$4 = (var$2.$getSymbol()).$getType0(); - switch (var$4) { - case 108: - var$2 = new oncie_False; - oncipau_Util$_$callClinit(); - oncie_False__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 134: - case 135: - var$2 = new oncie_Infinity; - oncipau_Util$_$callClinit(); - oncie_Infinity__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 167: - var$2 = new oncie_NaN; - oncipau_Util$_$callClinit(); - oncie_NaN__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 182: - var$2 = new oncie_Null; - oncipau_Util$_$callClinit(); - oncie_Null__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 281: - var$2 = new oncie_True; - oncipau_Util$_$callClinit(); - oncie_True__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); - } - } - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_192 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_192_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_AuthId__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitNumberLiteral = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$getSymbol()).$getType0(); - switch (var$2) { - case 4: - var$3 = oncie_DecimalDoubleLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 5: - var$3 = oncie_SignedDecimalIntegerLiteral__init_0(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 6: - var$3 = oncie_SignedHexIntegerLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 7: - var$3 = oncie_SignedOctalIntegerLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - $ctx.$ast0 = var$3; +onciu_RewritableJavascript$PROXY$7_193 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_193_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpression$DynamicLeaf_copy(var$2, var$3[0], var$3[1].$value3); }, -oncipvaf_Cypher5AstBuilder_exitSignedIntegerLiteral = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncip_AstRuleCtx_getToken($ctx, 161, 0) === null) { - var$2 = new oncie_SignedDecimalIntegerLiteral; - var$3 = (oncipv_Cypher5Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText(); - oncipau_Util$_$callClinit(); - oncie_SignedDecimalIntegerLiteral__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncie_SignedDecimalIntegerLiteral; - var$4 = (oncipv_Cypher5Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(var$3, 45); - jl_StringBuilder_append(var$3, var$4); - var$3 = jl_AbstractStringBuilder_toString(var$3); - oncipau_Util$_$callClinit(); - oncie_SignedDecimalIntegerLiteral__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_194 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_194_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_LabelName__init_(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitStringListLiteral = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_ListLiteral; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$StringLiteralContext)); - sr_ClassTag$_$callClinit(); - oncie_ListLiteral__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_StringLiteral))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_195 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_195_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ProcedureResult_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5AstBuilder_exitListLiteral = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_ListLiteral; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher5Parser$ExpressionContext)); - sr_ClassTag$_$callClinit(); - oncie_ListLiteral__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +onciu_RewritableJavascript$PROXY$7_196 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_196_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SubqueryCall$InTransactionsReportParameters__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitStringLiteral = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - a: { - var$2 = ($ctx.$start1.$getInputStream0()).$getText0(oavrm_Interval__init_($ctx.$start1.$getStartIndex() + 1 | 0, $ctx.$stop.$getStopIndex() - 1 | 0)); - var$3 = new oncie_StringLiteral; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$5 = $this.$exceptionFactory3; - var$6 = jl_String_indexOf(var$2, 92); - if (var$6 != (-1)) { - var$7 = 0; - var$8 = var$2.$nativeString.length; - var$9 = null; - var$10 = var$8 - 1 | 0; - while (true) { - if (var$6 == (-1)) { - if (var$9 !== null && !jl_StringBuilder_isEmpty(var$9)) { - if (var$7 >= var$2.$nativeString.length) { - var$2 = jl_AbstractStringBuilder_toString(var$9); - break a; - } - jl_AbstractStringBuilder_append2(var$9, var$2, var$7, var$2.$nativeString.length); - var$2 = jl_AbstractStringBuilder_toString(var$9); - break a; - } - break a; - } - if (var$6 == var$10) - break; - b: { - switch (jl_String_charAt(var$2, var$6 + 1 | 0)) { - case 34: - break; - case 39: - var$11 = 39; - break b; - case 92: - var$11 = 92; - break b; - case 98: - var$11 = 8; - break b; - case 102: - var$11 = 12; - break b; - case 110: - var$11 = 10; - break b; - case 114: - var$11 = 13; - break b; - case 116: - var$11 = 9; - break b; - default: - var$11 = 0; - break b; - } - var$11 = 34; - } - if (var$11) { - if (var$9 === null) { - var$9 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$9, var$2.$nativeString.length); - } - jl_AbstractStringBuilder_append2(var$9, var$2, var$7, var$6); - jl_AbstractStringBuilder_append0(var$9, var$11); - var$7 = var$6 + 2 | 0; - } - var$6 = jl_String_indexOf0(var$2, 92, var$6 + 2 | 0); - } - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, oncip_CypherErrorStrategy$_quoteMismatchErrorMessage, var$4)); - } - } - oncie_StringLiteral__init_0(var$3, var$2, oncipau_Util$_rangePos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$3; +onciu_RewritableJavascript$PROXY$7_197 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_197_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ParameterName__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$RelGraphToken = $this => { - let var$1, $$je; - if ($this.$RelGraphToken$module === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$RelGraphToken$module !== null) - break a; - $this.$RelGraphToken$module = oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_1($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$RelGraphToken$module; +onciu_RewritableJavascript$PROXY$7_198 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_198_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_StringLiteral_copy(var$2, var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken = $this => { - let var$1, $$je; - if ($this.$NodeGraphToken$module === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$NodeGraphToken$module !== null) - break a; - $this.$NodeGraphToken$module = oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_0($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$NodeGraphToken$module; +onciu_RewritableJavascript$PROXY$7_199 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_199_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_SignedOctalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken = $this => { - let var$1, $$je; - if ($this.$ElementGraphToken$module0 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$ElementGraphToken$module0 !== null) - break a; - $this.$ElementGraphToken$module0 = oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_2($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$ElementGraphToken$module0; +onciu_RewritableJavascript$PROXY$7_200 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_200_copyConstructor = (var$1, var$2, var$3) => { + return oncia_Finish__init_0(var$3.data[0]); }, -oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Node = $this => { - let var$1, $$je; - if ($this.$Node$module === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$Node$module !== null) - break a; - $this.$Node$module = oncipvaf_DdlShowBuilder$Node$__init_2($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$Node$module; +onciu_RewritableJavascript$PROXY$7_201 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_201_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_GraphFunctionReference__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$Rel = $this => { - let var$1, $$je; - if ($this.$Rel$module0 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$Rel$module0 !== null) - break a; - $this.$Rel$module0 = oncipvaf_DdlShowBuilder$Rel$__init_1($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$Rel$module0; +onciu_RewritableJavascript$PROXY$7_202 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_202_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_RenameUser__init_0(var$3[0], var$3[1], var$3[2].$value3, var$3[3]); }, -oncipvaf_Cypher5AstBuilder_org$neo4j$cypher$internal$parser$v5$ast$factory$DdlShowBuilder$$NoEntity = $this => { - let var$1, $$je; - if ($this.$NoEntity$module === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$NoEntity$module !== null) - break a; - $this.$NoEntity$module = oncipvaf_DdlShowBuilder$NoEntity$__init_0($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$NoEntity$module; +onciu_RewritableJavascript$PROXY$7_203 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_203_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_UsingJoinHint__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5AstBuilder_exitEndOfFile = ($this, $ctx) => { - return; +onciu_RewritableJavascript$PROXY$7_204 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_204_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_UnaliasedReturnItem__init_(var$3[0], var$3[1], var$3[2]); }, -oncipa_SyntaxChecker = $rt_classWithoutFields(0); -function oncipvaf_Cypher5SyntaxChecker() { - let a = this; jl_Object.call(a); - a.$exceptionFactory0 = null; - a.$_errors = null; -} -let oncipvaf_Cypher5SyntaxChecker_errors = $this => { - return $this.$_errors; +onciu_RewritableJavascript$PROXY$7_206 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_206_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_UseGraph__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5SyntaxChecker_exitEveryRule = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - switch ($ctx.$getRuleIndex()) { - case 2: - oncipau_Util$_$callClinit(); - var$2 = (oncip_AstRuleCtx_getToken($ctx, 197, 0)).$getSymbol(); - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4378), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, var$2))); - return; - case 30: - a: { - oncipau_Util$_$callClinit(); - $ctx = $ctx; - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 38: - var$3 = $this.$_errors; - var$4 = $this.$exceptionFactory0; - var$5 = oncipcaf_ASTExceptionFactory_invalidHintIndexType(oncipcaf_HintIndexType_BTREE); - var$2 = oncipau_Util$_MODULE$; - $this.$_errors = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$4, var$5, oncipau_Util$_pos1(var$2, oncipau_Util$_nodeChild(var$2, $ctx, 1)))); - break a; - default: - } - } - return; - case 42: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters($ctx), $rt_s(6911), 1); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters($ctx), $rt_s(6912), 1); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters($ctx), $rt_s(6913), 1); - return; - case 50: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - if (oncipv_Cypher5Parser$InsertPatternContext_EQ($ctx) !== null) { - var$4 = $this.$_errors; - var$5 = $this.$exceptionFactory0; - var$3 = oncipau_Util$_MODULE$; - $this.$_errors = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, $rt_s(4389), oncipau_Util$_pos(var$3, oncipau_Util$_ctxChild(var$3, $ctx, 0)))); - } - return; - case 86: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - var$4 = oncip_AstRuleCtx_getTokens($ctx, 47); - var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0() != 47 ? 0 : 1; - if (var$6 && var$4.$size() > 1) - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4390), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (var$4.$get0(1)).$getSymbol()))); - else if (!var$6 && var$4.$size() > 0) - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4390), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (var$4.$get0(0)).$getSymbol()))); - return; - case 134: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkFunctionInvocation($this, $ctx); - return; - case 141: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - if ((oncipv_Cypher5Parser$TypePartContext_typeName($ctx)).$ast0 instanceof oncius_ClosedDynamicUnionType && oncipv_Cypher5Parser$TypePartContext_typeNullability($ctx) !== null) - $this.$_errors = sc_SeqOps_$colon$plus$($this.$_errors, onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4521), oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher5Parser$TypePartContext_typeNullability($ctx)))); - return; - case 146: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkCreateCommand($this, $ctx); - return; - case 158: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkBriefAndVerbose($this, $ctx); - return; - case 159: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkShowIndex($this, $ctx); - return; - case 162: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkShowConstraint($this, $ctx); - return; - case 182: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkCreateConstraint($this, $ctx); - return; - case 184: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkDropConstraint($this, $ctx); - return; - case 185: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkCreateIndex($this, $ctx); - return; - case 191: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkCreateLookupIndex($this, $ctx); - return; - case 194: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkDropIndex($this, $ctx); - return; - case 196: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkEnclosedPropertyList($this, $ctx); - return; - case 219: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkCreateUser($this, $ctx); - return; - case 223: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkAlterUser($this, $ctx); - return; - case 242: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkAllPrivilege($this, $ctx); - return; - case 273: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkGlobPart($this, $ctx); - return; - case 284: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkDatabaseScope($this, $ctx); - return; - case 285: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkGraphScope($this, $ctx); - return; - case 287: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkCreateDatabase($this, $ctx); - return; - case 294: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkAlterDatabase($this, $ctx); - return; - case 296: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkAlterDatabaseTopology($this, $ctx); - return; - case 305: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkCreateAlias($this, $ctx); - return; - case 307: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkAlterAlias($this, $ctx); - return; - case 318: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_checkSymbolicAliasNameOrParameter($this, $ctx); - return; - default: - } +onciu_RewritableJavascript$PROXY$7_207 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_207_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_UsingScanHint__init_(var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_check = ($this, $ctx) => { - oncipvaf_Cypher5SyntaxChecker_exitEveryRule($this, $ctx); - return $this.$_errors.$isEmpty(); +onciu_RewritableJavascript$PROXY$7_208 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_208_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5SyntaxChecker_inputPosition = ($this, $symbol) => { - onciu_InputPosition$_$callClinit(); - return onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $symbol.$getStartIndex(), $symbol.$getLine0(), $symbol.$getCharPositionInLine() + 1 | 0); +onciu_RewritableJavascript$PROXY$7_209 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_209_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CountExpression_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncipvaf_Cypher5SyntaxChecker_errorOnDuplicate = ($this, $token, $description, $isParam) => { - let var$4, var$5, var$6; - if (!$isParam) { - var$4 = $this.$_errors; - var$5 = $this.$exceptionFactory0; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6914)), $description), $rt_s(6915)); - $this.$_errors = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $token))); - return; - } - var$4 = $this.$_errors; - var$5 = $this.$exceptionFactory0; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6916)), $description), $rt_s(6917)); - $this.$_errors = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $token))); +onciu_RewritableJavascript$PROXY$7_210 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_210_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_RenameServer__init_0(var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx = ($this, $ctx, $description, $isParam) => { - if ($ctx.$size() <= 1) - return; - oncipau_Util$_$callClinit(); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicate($this, (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx.$get0(1), 0)).$getSymbol(), $description, $isParam); +onciu_RewritableJavascript$PROXY$7_211 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_211_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ShortestPathsPatternPart_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule = ($this, $params, $description, $isParam) => { - if ($params.$size() <= 1) - return; - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicate($this, ($params.$get0(1)).$start1, $description, $isParam); +onciu_RewritableJavascript$PROXY$7_213 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_213_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_DynamicLabelOrRelTypeExpression_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingDots = ($this, $aliasesNames) => { - let $aliasName, $start, var$4, var$5; - if ($aliasesNames.$size() <= 0) - return; - $aliasName = $aliasesNames.$get0(0); - if (oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName) !== null && (oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName))).$size() > oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS) { - $start = ((oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName))).$get0(0)).$start1; - $aliasesNames = $this.$_errors; - var$4 = $this.$exceptionFactory0; - $aliasName = oncip_AstRuleCtx_getText($aliasName); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6918)), $aliasName), $rt_s(6919)); - $this.$_errors = $aliasesNames.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$4, jl_AbstractStringBuilder_toString(var$5), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $start))); - return; - } +onciu_RewritableJavascript$PROXY$7_214 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_214_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PatternComprehension_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6]); }, -oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingTooManyComponents = ($this, $aliasesNames, $maxComponents, $errorTemplate) => { - let var$4; - if (!sc_IterableOnceOps_nonEmpty$($aliasesNames)) - return; - var$4 = sci_List_filter($aliasesNames, new oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0); - $aliasesNames = new oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1; - $aliasesNames.$_0735 = $this; - $aliasesNames.$_1249 = $maxComponents; - $aliasesNames.$_281 = $errorTemplate; - sci_List_foreach(var$4, $aliasesNames); +onciu_RewritableJavascript$PROXY$7_215 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_215_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DropIndexOnName_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3]); }, -oncipvaf_Cypher5SyntaxChecker_checkCreateAlias = ($this, $ctx) => { - if (oncipv_Cypher5Parser$CreateAliasContext_stringOrParameter($ctx) === null) - return; - if (oncipv_Cypher5Parser$CreateAliasContext_AT($ctx) === null && oncip_AstRuleCtx_getToken($ctx, 291, 0) === null && oncip_AstRuleCtx_getToken($ctx, 193, 0) === null && oncipv_Cypher5Parser$CreateAliasContext_DRIVER($ctx) === null) - return; - oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingDots($this, ju_List_of0(oncipv_Cypher5Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher5Parser$CreateAliasContext_aliasName($ctx)), oncipv_Cypher5Parser$DatabaseNameContext_symbolicAliasNameOrParameter(oncipv_Cypher5Parser$CreateAliasContext_databaseName($ctx)))); +onciu_RewritableJavascript$PROXY$7_216 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_216_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_AlterUser__init_(var$3[0], var$3[1], var$3[2].$value3, var$3[3], var$3[4], var$3[5], var$3[6]); }, -oncipvaf_Cypher5SyntaxChecker_checkAlterAlias = ($this, $ctx) => { - let $aliasTargets, $hasUrl, $usernames, $passwords, $driverSettings; - $aliasTargets = oncipv_Cypher5Parser$AlterAliasContext_alterAliasTarget($ctx); - $hasUrl = !$aliasTargets.$isEmpty() && oncip_AstRuleCtx_getToken($aliasTargets.$get0(0), 28, 0) !== null ? 1 : 0; - $usernames = oncipv_Cypher5Parser$AlterAliasContext_alterAliasUser($ctx); - $passwords = oncipv_Cypher5Parser$AlterAliasContext_alterAliasPassword($ctx); - $driverSettings = oncipv_Cypher5Parser$AlterAliasContext_alterAliasDriver($ctx); - if (!(!$hasUrl && $usernames.$isEmpty() && $passwords.$isEmpty() && $driverSettings.$isEmpty())) - oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingDots($this, ju_List_of(oncipv_Cypher5Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher5Parser$AlterAliasContext_aliasName($ctx)))); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, $driverSettings, $rt_s(535), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, $usernames, $rt_s(559), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, $passwords, $rt_s(558), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher5Parser$AlterAliasContext_alterAliasProperties($ctx), $rt_s(532), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, $aliasTargets, $rt_s(6315), 0); +onciu_RewritableJavascript$PROXY$7_217 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_217_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_RevokeRolesFromUsers__init_(var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_checkSymbolicAliasNameOrParameter = ($this, $ctx) => { - switch ($ctx.$parent.$getRuleIndex()) { - case 286: - break; - case 287: - oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingTooManyComponents($this, sci_$colon$colon__init_($ctx, sci_Nil$_MODULE$), oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS, $rt_s(4407)); - return; - default: - oncipvaf_Cypher5SyntaxChecker_errorOnAliasNameContainingTooManyComponents($this, sci_$colon$colon__init_($ctx, sci_Nil$_MODULE$), oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS, $rt_s(4520)); - return; - } +onciu_RewritableJavascript$PROXY$7_218 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_218_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_IntervalQuantifier_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_checkCreateUser = ($this, $ctx) => { - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$CreateUserContext_userStatus($ctx), $rt_s(6920), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$CreateUserContext_homeDatabase($ctx), $rt_s(6921), 0); +onciu_RewritableJavascript$PROXY$7_219 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_219_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_RenameRole__init_0(var$3[0], var$3[1], var$3[2].$value3, var$3[3]); }, -oncipvaf_Cypher5SyntaxChecker_checkAlterUser = ($this, $ctx) => { - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$AlterUserContext_userStatus($ctx), $rt_s(6920), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$AlterUserContext_homeDatabase($ctx), $rt_s(6921), 0); +onciu_RewritableJavascript$PROXY$7_220 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_220_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_AlterDatabase__init_0(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7]); }, -oncipvaf_Cypher5SyntaxChecker_checkGraphScope = ($this, $ctx) => { - if (oncipv_Cypher5Parser$GraphScopeContext_DEFAULT($ctx) === null) - return; - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6922), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$GraphScopeContext_DEFAULT($ctx)).$getSymbol()))); +onciu_RewritableJavascript$PROXY$7_222 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_222_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_LabelOrRelTypeName__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5SyntaxChecker_checkDatabaseScope = ($this, $ctx) => { - if (oncipv_Cypher5Parser$DatabaseScopeContext_DEFAULT($ctx) === null) - return; - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6923), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$DatabaseScopeContext_DEFAULT($ctx)).$getSymbol()))); +onciu_RewritableJavascript$PROXY$7_223 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_223_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncipvaf_Cypher5SyntaxChecker_checkAllPrivilege = ($this, $ctx) => { - let $privilegeType, $privilegeTarget, $privilege, $target, $symbol, var$7; - $privilegeType = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$AllPrivilegeTypeContext), 0); - $privilegeTarget = oncipv_Cypher5Parser$AllPrivilegeContext_allPrivilegeTarget($ctx); - if ($privilegeType !== null) { - $privilege = oncip_AstRuleCtx_getToken($privilegeType, 120, 0) !== null ? s_Some__init_($rt_s(761)) : oncip_AstRuleCtx_getToken($privilegeType, 69, 0) !== null ? s_Some__init_($rt_s(31)) : oncip_AstRuleCtx_getToken($privilegeType, 65, 0) === null ? s_None$_MODULE$ : s_Some__init_($rt_s(4404)); - if (!($privilegeTarget instanceof oncipv_Cypher5Parser$DefaultTargetContext)) { - if ($privilegeTarget instanceof oncipv_Cypher5Parser$DatabaseVariableTargetContext) { - $ctx = $privilegeTarget; - $target = oncipv_Cypher5Parser$DatabaseVariableTargetContext_DATABASE($ctx) !== null ? s_Tuple2__init_($rt_s(4404), (oncipv_Cypher5Parser$DatabaseVariableTargetContext_DATABASE($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(6174), (oncip_AstRuleCtx_getToken($ctx, 66, 0)).$getSymbol()); - } else if (!($privilegeTarget instanceof oncipv_Cypher5Parser$GraphVariableTargetContext)) { - if (!($privilegeTarget instanceof oncipv_Cypher5Parser$DBMSTargetContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6896)); - $rt_throw($ctx); - } - $ctx = $privilegeTarget; - $target = s_Tuple2__init_($rt_s(31), (oncip_AstRuleCtx_getToken($ctx, 69, 0)).$getSymbol()); - } else { - $ctx = $privilegeTarget; - $target = oncipv_Cypher5Parser$GraphVariableTargetContext_GRAPH($ctx) !== null ? s_Tuple2__init_($rt_s(761), (oncipv_Cypher5Parser$GraphVariableTargetContext_GRAPH($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(6212), (oncip_AstRuleCtx_getToken($ctx, 121, 0)).$getSymbol()); - } - } else { - $ctx = $privilegeTarget; - $target = $privilege instanceof s_Some && jl_String_equals($rt_s(31), $privilege.$value5) ? (oncipv_Cypher5Parser$DefaultTargetContext_HOME($ctx) === null ? s_Tuple2__init_($rt_s(588), (oncipv_Cypher5Parser$DefaultTargetContext_DEFAULT($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(589), (oncipv_Cypher5Parser$DefaultTargetContext_HOME($ctx)).$getSymbol())) : oncipv_Cypher5Parser$DefaultTargetContext_GRAPH($ctx) === null ? s_Tuple2__init_($rt_s(4404), (oncipv_Cypher5Parser$DefaultTargetContext_DATABASE($ctx)).$getSymbol()) - : s_Tuple2__init_($rt_s(761), (oncipv_Cypher5Parser$DefaultTargetContext_GRAPH($ctx)).$getSymbol()); - } - $ctx = s_Tuple2__init_($privilege, $target); - $target = $ctx.$_10; - $ctx = $ctx.$_20; - if ($target instanceof s_Some) { - $privilege = $target.$value5; - if ($ctx !== null) { - $target = $ctx.$_1(); - $symbol = $ctx.$_2(); - if (!jl_String_startsWith($target, $privilege)) { - $ctx = $this.$_errors; - $privilegeType = $this.$exceptionFactory0; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(3971)), $target), $rt_s(6924)), $privilege), 34); - $this.$_errors = $ctx.$appended(onciu_OpenCypherExceptionFactory_syntaxException($privilegeType, jl_AbstractStringBuilder_toString(var$7), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $symbol))); - } - } - } - } - if ($privilegeTarget instanceof oncipv_Cypher5Parser$DefaultTargetContext) { - $ctx = $privilegeTarget; - if (oncipv_Cypher5Parser$DefaultTargetContext_DEFAULT($ctx) !== null) { - $target = oncipv_Cypher5Parser$DefaultTargetContext_GRAPH($ctx) === null ? $rt_s(4404) : $rt_s(761); - $ctx = $this.$_errors; - $privilege = $this.$exceptionFactory0; - $symbol = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($symbol); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($symbol, $rt_s(6925)), $target), $rt_s(6926)), $target), $rt_s(985)); - $this.$_errors = $ctx.$appended(onciu_OpenCypherExceptionFactory_syntaxException($privilege, jl_AbstractStringBuilder_toString($symbol), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $privilegeTarget.$start1))); - return; - } - } +onciu_RewritableJavascript$PROXY$7_224 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_224_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_UsingIndexHint__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); }, -oncipvaf_Cypher5SyntaxChecker_checkGlobPart = ($this, $ctx) => { - let var$2; - if (oncipv_Cypher5Parser$GlobPartContext_DOT($ctx) !== null) - return; - var$2 = $ctx.$parent.$parent; - if (var$2 instanceof oncipv_Cypher5Parser$GlobRecursiveContext && oncipv_Cypher5Parser$GlobPartContext_escapedSymbolicNameString(oncipv_Cypher5Parser$GlobRecursiveContext_globPart(var$2)) !== null) - oncipvaf_Cypher5SyntaxChecker_addError$1($this, $ctx); - else if (var$2 instanceof oncipv_Cypher5Parser$GlobContext && oncipv_Cypher5Parser$GlobContext_escapedSymbolicNameString(var$2) !== null) - oncipvaf_Cypher5SyntaxChecker_addError$1($this, $ctx); +onciu_RewritableJavascript$PROXY$7_226 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_226_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ContainerIndex__init_0(var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_checkCreateConstraint = ($this, $ctx) => { - let var$2, $errorMessageForAssertExists, $errorMessageOnAssertExists, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = oncipv_Cypher5Parser$CreateConstraintContext_constraintType($ctx); - if (var$2 instanceof oncipv_Cypher5Parser$ConstraintIsUniqueContext) { - $errorMessageForAssertExists = var$2; - if (oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx) !== null && !(oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 224, 0) === null && oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 223, 0) === null)) { - $errorMessageOnAssertExists = $this.$_errors; - var$2 = $this.$exceptionFactory0; - var$5 = oncipcaf_ConstraintType_REL_UNIQUE.$description0; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(var$6, 39); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$5), $rt_s(6927)); - $this.$_errors = $errorMessageOnAssertExists.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$2, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx)).$start1))); - } - if (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx) !== null && oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 173, 0) !== null) { - $errorMessageOnAssertExists = $this.$_errors; - var$2 = $this.$exceptionFactory0; - var$5 = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(var$6, 39); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$5), $rt_s(6928)); - $this.$_errors = $errorMessageOnAssertExists.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$2, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx)).$start1))); - } - oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1($this, oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 26, 0), oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 230, 0), $ctx, $rt_s(3979), $rt_s(3980), $rt_s(3981)); - return; - } - if (var$2 instanceof oncipv_Cypher5Parser$ConstraintKeyContext) { - var$5 = var$2; - if (oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx) !== null && !(oncip_AstRuleCtx_getToken(var$5, 224, 0) === null && oncip_AstRuleCtx_getToken(var$5, 223, 0) === null)) { - var$6 = $this.$_errors; - var$7 = $this.$exceptionFactory0; - $errorMessageOnAssertExists = oncipcaf_ConstraintType_REL_KEY.$description0; - $errorMessageForAssertExists = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($errorMessageForAssertExists); - jl_AbstractStringBuilder_append0($errorMessageForAssertExists, 39); - jl_StringBuilder_append(jl_StringBuilder_append($errorMessageForAssertExists, $errorMessageOnAssertExists), $rt_s(6927)); - $this.$_errors = var$6.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$7, jl_AbstractStringBuilder_toString($errorMessageForAssertExists), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_commandNodePattern($ctx)).$start1))); - } - if (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx) !== null && oncip_AstRuleCtx_getToken(var$5, 173, 0) !== null) { - var$7 = $this.$_errors; - var$6 = $this.$exceptionFactory0; - $errorMessageOnAssertExists = oncipcaf_ConstraintType_NODE_KEY.$description0; - $errorMessageForAssertExists = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($errorMessageForAssertExists); - jl_AbstractStringBuilder_append0($errorMessageForAssertExists, 39); - jl_StringBuilder_append(jl_StringBuilder_append($errorMessageForAssertExists, $errorMessageOnAssertExists), $rt_s(6928)); - $this.$_errors = var$7.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, jl_AbstractStringBuilder_toString($errorMessageForAssertExists), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_commandRelPattern($ctx)).$start1))); - } - oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1($this, oncip_AstRuleCtx_getToken(var$5, 26, 0), oncip_AstRuleCtx_getToken(var$5, 230, 0), $ctx, $rt_s(3979), $rt_s(3980), $rt_s(3981)); - return; - } - if (var$2 instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { - $errorMessageForAssertExists = var$2; - oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1($this, oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 26, 0), oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 230, 0), $ctx, $rt_s(3979), $rt_s(3980), $rt_s(3981)); - return; - } - if (var$2 instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) { - $errorMessageForAssertExists = var$2; - oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1($this, oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 26, 0), oncip_AstRuleCtx_getToken($errorMessageForAssertExists, 230, 0), $ctx, $rt_s(3979), $rt_s(3980), $rt_s(3981)); - return; - } - if (!(var$2 instanceof oncipv_Cypher5Parser$ConstraintExistsContext)) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6929), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_constraintType($ctx)).$start1))); - return; - } - var$2 = oncip_AstRuleCtx_getToken(var$2, 26, 0); - var$8 = oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx) === null ? 0 : 1; - var$9 = oncipv_Cypher5Parser$CreateConstraintContext_FOR($ctx) === null ? 0 : 1; - var$10 = var$2 === null ? 0 : 1; - if (var$9 && var$10) - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(3982), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, var$2.$getSymbol()))); - else if (var$8 && var$10) - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(3983), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx)).$getSymbol()))); +onciu_RewritableJavascript$PROXY$7_228 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_228_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ParenthesizedPath_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_checkEnclosedPropertyList = ($this, $ctx) => { - let $secondProperty; - if ((oncipv_Cypher5Parser$EnclosedPropertyListContext_property($ctx)).$size() > 1 && $ctx.$parent !== null) { - $secondProperty = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$PropertyContext), 1)).$start1; - $ctx = $ctx.$parent.$parent; - if ($ctx instanceof oncipv_Cypher5Parser$ConstraintExistsContext) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6930), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $secondProperty))); - return; - } - if ($ctx instanceof oncipv_Cypher5Parser$ConstraintTypedContext) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6931), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $secondProperty))); - return; - } - if ($ctx instanceof oncipv_Cypher5Parser$ConstraintIsNotNullContext) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6932), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $secondProperty))); - return; - } - if ($ctx instanceof oncipv_Cypher5Parser$DropConstraintContext && oncipv_Cypher5Parser$DropConstraintContext_EXISTS($ctx) !== null) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6930), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $secondProperty))); - return; - } - return; - } +onciu_RewritableJavascript$PROXY$7_229 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_229_copyConstructor = (var$1, var$2, var$3) => { + return oncie_NaN_copy(var$2, var$3.data[0]); }, -oncipvaf_Cypher5SyntaxChecker_checkDropConstraint = ($this, $ctx) => { - let $relPattern, $alwaysInvalidDropCommand, $constraintName, var$5, var$6; - $relPattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandRelPatternContext), 0); - if ($relPattern !== null) { - if (oncipv_Cypher5Parser$DropConstraintContext_KEY($ctx) !== null) { - $alwaysInvalidDropCommand = $this.$_errors; - $constraintName = $this.$exceptionFactory0; - var$5 = oncipcaf_ConstraintType_NODE_KEY.$description0; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(var$6, 39); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$5), $rt_s(6933)), $rt_s(6934)); - $this.$_errors = $alwaysInvalidDropCommand.$appended(onciu_OpenCypherExceptionFactory_syntaxException($constraintName, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $relPattern.$start1))); - } else if (oncipv_Cypher5Parser$DropConstraintContext_UNIQUE($ctx) !== null) { - $alwaysInvalidDropCommand = $this.$_errors; - $constraintName = $this.$exceptionFactory0; - var$5 = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(var$6, 39); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$5), $rt_s(6933)), $rt_s(6934)); - $this.$_errors = $alwaysInvalidDropCommand.$appended(onciu_OpenCypherExceptionFactory_syntaxException($constraintName, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $relPattern.$start1))); - } - } - if (oncip_AstRuleCtx_getToken($ctx, 182, 0) !== null) - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(3989), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); - if (oncipv_Cypher5Parser$DropConstraintContext_symbolicNameOrStringParameter($ctx) !== null) - return; - if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CommandNodePatternContext), 0) === null) { - if (oncipv_Cypher5Parser$DropConstraintContext_EXISTS($ctx) === null) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(3989), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); - return; - } - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1($rt_s(3988)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); - return; - } - if (oncipv_Cypher5Parser$DropConstraintContext_EXISTS($ctx) !== null) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1($rt_s(3987)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); - return; - } - if (oncipv_Cypher5Parser$DropConstraintContext_UNIQUE($ctx) !== null) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1($rt_s(3984)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); - return; - } - if (oncipv_Cypher5Parser$DropConstraintContext_KEY($ctx) === null) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(3989), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); - return; - } - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1($rt_s(3986)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx.$start1))); +onciu_RewritableJavascript$PROXY$7_230 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_230_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpression$ColonConjunction_copy(var$2, var$3[0], var$3[1], var$3[2].$value3, var$3[3]); }, -oncipvaf_Cypher5SyntaxChecker_checkShowConstraint = ($this, $ctx) => { - let var$2; - if (!($ctx instanceof oncipv_Cypher5Parser$ShowConstraintOldExistsContext)) - return; - var$2 = $ctx; - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4400), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken(var$2, 105, 0)).$getSymbol()))); +onciu_RewritableJavascript$PROXY$7_231 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_231_copyConstructor = (var$1, var$2, var$3) => { + return oncia_RemoveDynamicPropertyItem_copy(var$2, var$3.data[0]); }, -oncipvaf_Cypher5SyntaxChecker_checkShowIndex = ($this, $ctx) => { - if (oncipv_Cypher5Parser$ShowIndexCommandContext_BTREE($ctx) === null) - return; - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4397), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$ShowIndexCommandContext_BTREE($ctx)).$getSymbol()))); +onciu_RewritableJavascript$PROXY$7_232 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_232_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Skip__init_0(var$3[0], var$3[1]); }, -oncipvaf_Cypher5SyntaxChecker_checkBriefAndVerbose = ($this, $ctx) => { - let $posSymbol, $command, var$4, var$5, var$6; - if (oncipv_Cypher5Parser$ShowBriefAndYieldContext_BRIEF($ctx) === null && oncipv_Cypher5Parser$ShowBriefAndYieldContext_VERBOSE($ctx) === null) - return; - $posSymbol = oncipv_Cypher5Parser$ShowBriefAndYieldContext_BRIEF($ctx) === null ? (oncipv_Cypher5Parser$ShowBriefAndYieldContext_VERBOSE($ctx)).$getSymbol() : (oncipv_Cypher5Parser$ShowBriefAndYieldContext_BRIEF($ctx)).$getSymbol(); - $ctx = $ctx.$parent; - $command = $ctx instanceof oncipv_Cypher5Parser$ShowIndexesAllowBriefContext ? $rt_s(4398) : !($ctx instanceof oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext) ? $rt_s(4) : $rt_s(4399); - var$4 = $this.$_errors; - var$5 = $this.$exceptionFactory0; - $ctx = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(var$6, 96); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, $command), $rt_s(6935)); - $this.$_errors = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, sc_StringOps$_stripMargin$extension($ctx, jl_AbstractStringBuilder_toString(var$6)), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $posSymbol))); +onciu_RewritableJavascript$PROXY$7_234 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_234_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_RevokePrivilege__init_(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5], var$3[6]); }, -oncipvaf_Cypher5SyntaxChecker_checkCreateDatabase = ($this, $ctx) => { - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$CreateDatabaseContext_primaryTopology($ctx), $rt_s(6269), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$CreateDatabaseContext_secondaryTopology($ctx), $rt_s(6297), 0); +onciu_RewritableJavascript$PROXY$7_236 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_236_copyConstructor = (var$1, var$2, var$3) => { + return oncie_PatternPart$AllShortestPaths__init_(var$3.data[0]); }, -oncipvaf_Cypher5SyntaxChecker_checkAlterDatabase = ($this, $ctx) => { - let $topology, $optionCtxs, $keyNames, $keySet, $i; - if (!(oncipv_Cypher5Parser$AlterDatabaseContext_REMOVE($ctx)).$isEmpty()) { - oncipau_Util$_$callClinit(); - $topology = oncipau_Util$_MODULE$; - $optionCtxs = oncipv_Cypher5Parser$AlterDatabaseContext_symbolicNameString($ctx); - sr_ClassTag$_$callClinit(); - $keyNames = oncipau_Util$_astSeq($topology, $optionCtxs, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); - scm_Set$_$callClinit(); - $keySet = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); - $i = sr_IntRef_create(0); - $topology = new oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0; - $topology.$_0101 = $this; - $topology.$_142 = $keySet; - $topology.$_221 = $ctx; - $topology.$_311 = $i; - sc_IterableOnceOps_foreach$($keyNames, $topology); - } - if (!(oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption($ctx)).$isEmpty()) { - oncipau_Util$_$callClinit(); - $optionCtxs = oncipau_Util$_MODULE$; - $keyNames = oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseOption($ctx); - sr_ClassTag$_$callClinit(); - $keyNames = sc_StrictOptimizedIterableOps_flatMap$(oncipau_Util$_astSeq($optionCtxs, $keyNames, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(sci_Map))), new oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1); - scm_Set$_$callClinit(); - $keySet = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); - $i = sr_IntRef_create(0); - $topology = new oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2; - $topology.$_020 = $this; - $topology.$_112 = $keySet; - $topology.$_29 = $ctx; - $topology.$_34 = $i; - sc_IterableOnceOps_foreach$($keyNames, $topology); - } - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseAccess($ctx), $rt_s(4550), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher5Parser$AlterDatabaseContext_alterDatabaseTopology($ctx), $rt_s(3517), 0); +onciu_RewritableJavascript$PROXY$7_237 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_237_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DeallocateServers__init_0(var$3[0].$value3, var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_checkAlterDatabaseTopology = ($this, $ctx) => { - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$AlterDatabaseTopologyContext_primaryTopology($ctx), $rt_s(6269), 0); - oncipvaf_Cypher5SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher5Parser$AlterDatabaseTopologyContext_secondaryTopology($ctx), $rt_s(6297), 0); +onciu_RewritableJavascript$PROXY$7_238 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_238_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DenyPrivilege__init_(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5]); }, -oncipvaf_Cypher5SyntaxChecker_checkCreateCommand = ($this, $ctx) => { - let $createIndex, $replace, $oldIndex; - $createIndex = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$CreateIndexContext), 0); - if ($createIndex === null) - return; - $replace = oncipv_Cypher5Parser$CreateCommandContext_REPLACE($ctx); - $oldIndex = oavr_ParserRuleContext_getRuleContext($createIndex, $rt_cls(oncipv_Cypher5Parser$OldCreateIndexContext), 0); - if ($replace !== null && $oldIndex !== null) - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4394), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $replace.$getSymbol()))); - if ($oldIndex === null) - return; - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4393), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken($createIndex, 185, 0)).$getSymbol()))); +onciu_RewritableJavascript$PROXY$7_239 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_239_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DropRole__init_0(var$3[0], var$3[1].$value3, var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_checkCreateLookupIndex = ($this, $ctx) => { - let $functionName, $relPattern, var$4; - $functionName = oncipv_Cypher5Parser$CreateLookupIndexContext_symbolicNameString($ctx); - $relPattern = oncipv_Cypher5Parser$CreateLookupIndexContext_lookupIndexRelPattern($ctx); - var$4 = jl_String_toUpperCase(oncip_AstRuleCtx_getText($functionName)); - if (var$4 !== null && jl_String_equals(var$4, $rt_s(6192)) && $relPattern !== null && oncip_AstRuleCtx_getToken($relPattern, 91, 0) === null) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6936), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken($ctx, 155, 0)).$getSymbol()))); - return; - } +onciu_RewritableJavascript$PROXY$7_241 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_241_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Match__init_0(var$3[0].$value3, var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); }, -oncipvaf_Cypher5SyntaxChecker_checkCreateIndex = ($this, $ctx) => { - if (oncipv_Cypher5Parser$CreateIndexContext_BTREE($ctx) === null) - return; - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4401), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateIndexContext_BTREE($ctx)).$getSymbol()))); +onciu_RewritableJavascript$PROXY$7_242 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_242_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ReduceExpression__init_(var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncipvaf_Cypher5SyntaxChecker_checkDropIndex = ($this, $ctx) => { - if (oncipv_Cypher5Parser$DropIndexContext_symbolicNameOrStringParameter($ctx) !== null) - return; - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(4395), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken($ctx, 185, 0)).$getSymbol()))); +onciu_RewritableJavascript$PROXY$7_243 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_243_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SetDynamicPropertyItem_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_checkFunctionInvocation = ($this, $ctx) => { - let $functionName, var$3; - $functionName = (oncipv_Cypher5Parser$FunctionInvocationContext_functionName($ctx)).$ast0; - var$3 = $functionName.$name7; - if (var$3 !== null && jl_String_equals(var$3, $rt_s(428)) && sci_List_isEmpty($functionName.$namespace3.$parts0) && (oncipv_Cypher5Parser$FunctionInvocationContext_functionArgument($ctx)).$size() == 2) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6937), (oncipv_Cypher5Parser$FunctionArgumentContext_expression(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher5Parser$FunctionArgumentContext), 1))).$ast0.$position())); - return; - } +onciu_RewritableJavascript$PROXY$7_244 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_244_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateLocalDatabaseAlias__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); }, -oncipvaf_Cypher5SyntaxChecker_addError$1 = ($this, $ctx$1) => { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $rt_s(6938), oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $ctx$1.$start1))); +onciu_RewritableJavascript$PROXY$7_245 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_245_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SetOwnPassword__init_0(var$3[0], var$3[1], var$3[2]); }, -oncipvaf_Cypher5SyntaxChecker_checkForInvalidOthers$1 = ($this, $assert, $require, $ctx$2, $errorMessageOnRequire$1, $errorMessageForAssert$1, $errorMessageOnAssert$1) => { - let $containsOn, $containsFor, $containsAssert, $containsRequire; - $containsOn = oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx$2) === null ? 0 : 1; - $containsFor = oncipv_Cypher5Parser$CreateConstraintContext_FOR($ctx$2) === null ? 0 : 1; - $containsAssert = $assert === null ? 0 : 1; - $containsRequire = $require === null ? 0 : 1; - if ($containsOn && $containsRequire) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $errorMessageOnRequire$1, oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx$2)).$getSymbol()))); - return; - } - if ($containsFor && $containsAssert) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $errorMessageForAssert$1, oncipvaf_Cypher5SyntaxChecker_inputPosition($this, $assert.$getSymbol()))); - return; - } - if ($containsOn && $containsAssert) { - $this.$_errors = $this.$_errors.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory0, $errorMessageOnAssert$1, oncipvaf_Cypher5SyntaxChecker_inputPosition($this, (oncipv_Cypher5Parser$CreateConstraintContext_ON($ctx$2)).$getSymbol()))); - return; - } +onciu_RewritableJavascript$PROXY$7_246 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_246_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PatternPart$AnyPath__init_(var$3[0], var$3[1]); }, -oncipvaf_Cypher5SyntaxChecker_invalidPreviouslyAllowedDropConstraint$1 = $constraintType => { - let var$2; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $constraintType), $rt_s(6939)); - return jl_AbstractStringBuilder_toString(var$2); -}; -function oavra_LL1Analyzer() { - jl_Object.call(this); - this.$atn1 = null; -} -let oavra_LL1Analyzer__LOOK = ($this, $s, $stopState, $ctx, $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF) => { - let $removed, $i, $n, $i_0, $t, $returnState, $newContext, $set, $$je; - if (!ju_HashSet_add($lookBusy, oavra_ATNConfig__init_6($s, 0, $ctx))) - return; - if ($s === $stopState) { - if ($ctx === null) { - oavrm_IntervalSet_add($look, (-2)); - return; - } - if ($ctx.$isEmpty() && $addEOF) { - oavrm_IntervalSet_add($look, (-1)); - return; - } - } - if ($s instanceof oavra_RuleStopState) { - if ($ctx === null) { - oavrm_IntervalSet_add($look, (-2)); - return; - } - if ($ctx.$isEmpty() && $addEOF) { - oavrm_IntervalSet_add($look, (-1)); - return; - } - oavra_EmptyPredictionContext_$callClinit(); - if ($ctx !== oavra_EmptyPredictionContext_Instance) { - $removed = ju_BitSet_get($calledRuleStack, $s.$ruleIndex); - a: { - try { - ju_BitSet_clear($calledRuleStack, $s.$ruleIndex); - $i = 0; - while ($i < $ctx.$size()) { - oavra_LL1Analyzer__LOOK($this, ju_ArrayList_get($this.$atn1.$states, $ctx.$getReturnState($i)), $stopState, $ctx.$getParent($i), $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF); - $i = $i + 1 | 0; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - $stopState = $$je; - break a; - - } - b: { - try { - if (!$removed) - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $stopState = $$je; - break a; - - } - ju_BitSet_set($calledRuleStack, $s.$ruleIndex); - } - return; - } - if ($removed) - ju_BitSet_set($calledRuleStack, $s.$ruleIndex); - $rt_throw($stopState); - } - } - $n = oavra_ATNState_getNumberOfTransitions($s); - $i_0 = 0; - while ($i_0 < $n) { - $t = oavra_ATNState_transition($s, $i_0); - if (jl_Object_getClass($t) === $rt_cls(oavra_RuleTransition)) { - $returnState = $t; - if (!ju_BitSet_get($calledRuleStack, $returnState.$target.$ruleIndex)) { - $newContext = oavra_SingletonPredictionContext_create($ctx, $returnState.$followState.$stateNumber); - try { - ju_BitSet_set($calledRuleStack, $returnState.$target.$ruleIndex); - oavra_LL1Analyzer__LOOK($this, $t.$target, $stopState, $newContext, $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF); - } catch ($$e) { - $$je = $rt_wrapException($$e); - $s = $$je; - ju_BitSet_clear($calledRuleStack, $returnState.$target.$ruleIndex); - $rt_throw($s); - - } - ju_BitSet_clear($calledRuleStack, $returnState.$target.$ruleIndex); - } - } else if ($t instanceof oavra_AbstractPredicateTransition) { - if (!$seeThruPreds) - oavrm_IntervalSet_add($look, 0); - else - oavra_LL1Analyzer__LOOK($this, $t.$target, $stopState, $ctx, $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF); - } else if ($t.$isEpsilon()) - oavra_LL1Analyzer__LOOK($this, $t.$target, $stopState, $ctx, $look, $lookBusy, $calledRuleStack, $seeThruPreds, $addEOF); - else if (jl_Object_getClass($t) === $rt_cls(oavra_WildcardTransition)) - oavrm_IntervalSet_addAll($look, oavrm_IntervalSet_of(1, $this.$atn1.$maxTokenType)); - else { - $set = $t.$label0(); - if ($set !== null) { - if ($t instanceof oavra_NotSetTransition) - $set = oavrm_IntervalSet_complement($set, oavrm_IntervalSet_of(1, $this.$atn1.$maxTokenType)); - oavrm_IntervalSet_addAll($look, $set); - } - } - $i_0 = $i_0 + 1 | 0; - } +onciu_RewritableJavascript$PROXY$7_247 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_247_copyConstructor = (var$1, var$2, var$3) => { + return oncia_RemovePropertyItem_copy(var$2, var$3.data[0]); }, -juc_CancellationException = $rt_classWithoutFields(jl_IllegalStateException), -oavrm_ParseCancellationException = $rt_classWithoutFields(juc_CancellationException), -oavrm_ParseCancellationException__init_0 = ($this, $cause) => { - let var$2; - jl_Throwable__init_($this); - var$2 = $this.$cause2; - if (var$2 !== $this && var$2 !== null) { - $cause = new jl_IllegalStateException; - jl_Throwable__init_0($cause, $rt_s(6940)); - $rt_throw($cause); - } - if ($cause !== $this) { - $this.$cause2 = $cause; - return; - } - var$2 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$2, $rt_s(6941)); - $rt_throw(var$2); +onciu_RewritableJavascript$PROXY$7_249 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_249_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SetLabelItem_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3, var$3[4]); }, -oavrm_ParseCancellationException__init_ = var_0 => { - let var_1 = new oavrm_ParseCancellationException(); - oavrm_ParseCancellationException__init_0(var_1, var_0); - return var_1; -}; -function sc_Iterator$$anon$22() { - let a = this; sc_AbstractIterator.call(a); - a.$i4 = 0; - a.$len$2 = 0; - a.$elem$4 = null; -} -let sc_Iterator$$anon$22_knownSize = $this => { - return jl_Math_max($this.$len$2 - $this.$i4 | 0, 0); +onciu_RewritableJavascript$PROXY$7_250 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_250_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DropDatabase__init_(var$3[0], var$3[1].$value3, var$3[2].$value3, var$3[3], var$3[4], var$3[5], var$3[6]); }, -sc_Iterator$$anon$22_hasNext = $this => { - if ($this.$i4 >= $this.$len$2) - return 0; - return 1; +onciu_RewritableJavascript$PROXY$7_253 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_253_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateDatabase__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); }, -sc_Iterator$$anon$22_next = $this => { - if (!sc_Iterator$$anon$22_hasNext($this)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - $this.$i4 = $this.$i4 + 1 | 0; - return $this.$elem$4.$_0552; -}; -function onciu_Fby$$anon$2() { - jl_Object.call(this); - this.$remaining3 = null; -} -let onciu_Fby$$anon$2_iterator = $this => { - return $this; +onciu_RewritableJavascript$PROXY$7_254 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_254_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_AlterRemoteDatabaseAlias__init_(var$3[0], var$3[1], var$3[2].$value3, var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); }, -onciu_Fby$$anon$2_isEmpty = $this => { - return sc_Iterator_isEmpty$($this); +onciu_RewritableJavascript$PROXY$7_255 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_255_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_RelationshipsPattern__init_(var$3[0], var$3[1]); }, -onciu_Fby$$anon$2_toString = $this => { - return $rt_s(818); +onciu_RewritableJavascript$PROXY$7_256 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_256_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_MapProjection__init_0(var$3[0], var$3[1], var$3[2]); }, -onciu_Fby$$anon$2_foreach = ($this, $f) => { - sc_IterableOnceOps_foreach$($this, $f); +onciu_RewritableJavascript$PROXY$7_257 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_257_copyConstructor = (var$1, var$2, var$3) => { + return oncie_StarQuantifier__init_(var$3.data[0]); }, -onciu_Fby$$anon$2_exists = ($this, $p) => { - return sc_IterableOnceOps_exists$($this, $p); +onciu_RewritableJavascript$PROXY$7_259 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_259_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SetClause_copy(var$2, var$3[0], var$3[1]); }, -onciu_Fby$$anon$2_find = ($this, $p) => { - return sc_IterableOnceOps_find$($this, $p); +onciu_RewritableJavascript$PROXY$7_260 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_260_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_EnableServer__init_0(var$3[0], var$3[1], var$3[2]); }, -onciu_Fby$$anon$2_foldLeft = ($this, $z, $op) => { - return sc_IterableOnceOps_foldLeft$($this, $z, $op); +onciu_RewritableJavascript$PROXY$7_261 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_261_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Auth__init_0(var$3[0], var$3[1], var$3[2]); }, -onciu_Fby$$anon$2_nonEmpty = $this => { - return sc_IterableOnceOps_nonEmpty$($this); +onciu_RewritableJavascript$PROXY$7_262 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_262_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_GrantRolesToUsers__init_(var$3[0], var$3[1], var$3[2]); }, -onciu_Fby$$anon$2_size = $this => { - return sc_IterableOnceOps_size$($this); +onciu_RewritableJavascript$PROXY$7_263 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_263_copyConstructor = (var$1, var$2, var$3) => { + return oncie_AllPropertiesSelector__init_0(var$3.data[0]); }, -onciu_Fby$$anon$2_copyToArray0 = ($this, $xs) => { - return sc_IterableOnceOps_copyToArray$($this, $xs); +onciu_RewritableJavascript$PROXY$7_264 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_264_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Insert_copy(var$2, var$3[0], var$3[1]); }, -onciu_Fby$$anon$2_copyToArray = ($this, $xs, $start) => { - return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); +onciu_RewritableJavascript$PROXY$7_266 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_266_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_UnresolvedCall_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4].$value3, var$3[5].$value3, var$3[6]); }, -onciu_Fby$$anon$2_copyToArray1 = ($this, $xs, $start, $len) => { - return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); +onciu_RewritableJavascript$PROXY$7_267 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_267_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PatternExpression_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -onciu_Fby$$anon$2_to = ($this, $factory) => { - return $factory.$fromSpecific($this); +onciu_RewritableJavascript$PROXY$7_268 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_268_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_RelTypeName__init_0(var$3[0], var$3[1]); }, -onciu_Fby$$anon$2_toList = $this => { - return sc_IterableOnceOps_toList$($this); +onciu_RewritableJavascript$PROXY$7_269 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_269_copyConstructor = (var$1, var$2, var$3) => { + return oncie_Infinity_copy(var$2, var$3.data[0]); }, -onciu_Fby$$anon$2_toSeq = $this => { - return sc_IterableOnceOps_toSeq$($this); +onciu_RewritableJavascript$PROXY$7_270 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_270_copyConstructor = (var$1, var$2, var$3) => { + return oncie_PatternPart$AllPaths__init_(var$3.data[0]); }, -onciu_Fby$$anon$2_toArray = ($this, $evidence$2) => { - return sc_IterableOnceOps_toArray$($this, $evidence$2); +onciu_RewritableJavascript$PROXY$7_272 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_272_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SetIncludingPropertiesFromMapItem_copy(var$2, var$3[0], var$3[1], var$3[2].$value3, var$3[3]); }, -onciu_Fby$$anon$2_knownSize = $this => { - return (-1); +onciu_RewritableJavascript$PROXY$7_274 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_274_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_DecimalDoubleLiteral_copy(var$2, var$3[0], var$3[1]); }, -onciu_Fby$$anon$2_hasNext = $this => { - return s_Option_isDefined($this.$remaining3); +onciu_RewritableJavascript$PROXY$7_276 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_276_copyConstructor = (var$1, var$2, var$3) => { + return oncie_ShortestPathExpression__init_0(var$3.data[0]); }, -onciu_Fby$$anon$2_next = $this => { - let $nel; - $nel = $this.$remaining3; - if ($nel instanceof s_Some) { - $nel = $nel.$value5; - $this.$remaining3 = $nel.$tailOption(); - return $nel.$head(); - } - if (!jl_Object_equals(s_None$_MODULE$, $nel)) - $rt_throw(s_MatchError__init_($nel)); - $nel = new ju_NoSuchElementException; - jl_Throwable__init_0($nel, $rt_s(821)); - $rt_throw($nel); -}; -function onciu_Last$$anon$3() { - jl_Object.call(this); - this.$remaining2 = null; -} -let onciu_Last$$anon$3_iterator = $this => { - return $this; +onciu_RewritableJavascript$PROXY$7_277 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_277_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ImplicitProcedureArgument__init_(var$3[0], var$3[1], var$3[2]); }, -onciu_Last$$anon$3_isEmpty = $this => { - return sc_Iterator_isEmpty$($this); +onciu_RewritableJavascript$PROXY$7_278 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_278_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ExistsExpression_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -onciu_Last$$anon$3_toString = $this => { - return $rt_s(818); +onciu_RewritableJavascript$PROXY$7_279 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_279_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -onciu_Last$$anon$3_foreach = ($this, $f) => { - sc_IterableOnceOps_foreach$($this, $f); +onciu_RewritableJavascript$PROXY$7_280 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_280_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_FunctionInvocation_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4].$value3, var$3[5]); }, -onciu_Last$$anon$3_exists = ($this, $p) => { - return sc_IterableOnceOps_exists$($this, $p); +onciu_RewritableJavascript$PROXY$7_281 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_281_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PatternPartWithSelector_copy(var$2, var$3[0], var$3[1]); }, -onciu_Last$$anon$3_find = ($this, $p) => { - return sc_IterableOnceOps_find$($this, $p); +onciu_RewritableJavascript$PROXY$7_282 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_282_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PatternPart$ShortestGroups__init_(var$3[0], var$3[1]); }, -onciu_Last$$anon$3_foldLeft = ($this, $z, $op) => { - return sc_IterableOnceOps_foldLeft$($this, $z, $op); +onciu_RewritableJavascript$PROXY$7_283 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_283_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_SignedDecimalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); }, -onciu_Last$$anon$3_nonEmpty = $this => { - return sc_IterableOnceOps_nonEmpty$($this); +onciu_RewritableJavascript$PROXY$7_284 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_284_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DropConstraintOnName_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3]); }, -onciu_Last$$anon$3_size = $this => { - return sc_IterableOnceOps_size$($this); +onciu_RewritableJavascript$PROXY$7_285 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_285_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_StopDatabase__init_0(var$3[0], var$3[1], var$3[2]); }, -onciu_Last$$anon$3_copyToArray1 = ($this, $xs) => { - return sc_IterableOnceOps_copyToArray$($this, $xs); +onciu_RewritableJavascript$PROXY$7_287 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_287_copyConstructor = (var$1, var$2, var$3) => { + return oncie_MatchMode$RepeatableElements__init_(var$3.data[0]); }, -onciu_Last$$anon$3_copyToArray0 = ($this, $xs, $start) => { - return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); +onciu_RewritableJavascript$PROXY$7_288 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_288_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DropUser__init_0(var$3[0], var$3[1].$value3, var$3[2]); }, -onciu_Last$$anon$3_copyToArray = ($this, $xs, $start, $len) => { - return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); +onciu_RewritableJavascript$PROXY$7_289 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_289_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -onciu_Last$$anon$3_to = ($this, $factory) => { - return $factory.$fromSpecific($this); +onciu_RewritableJavascript$PROXY$7_290 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_290_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Create_copy(var$2, var$3[0], var$3[1]); }, -onciu_Last$$anon$3_toList = $this => { - return sc_IterableOnceOps_toList$($this); +onciu_RewritableJavascript$PROXY$7_291 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_291_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpression$Negation_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -onciu_Last$$anon$3_toSeq = $this => { - return sc_IterableOnceOps_toSeq$($this); +onciu_RewritableJavascript$PROXY$7_292 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_292_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpression$ColonDisjunction_copy(var$2, var$3[0], var$3[1], var$3[2].$value3, var$3[3]); }, -onciu_Last$$anon$3_toArray = ($this, $evidence$2) => { - return sc_IterableOnceOps_toArray$($this, $evidence$2); +onciu_RewritableJavascript$PROXY$7_293 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_293_copyConstructor = (var$1, var$2, var$3) => { + return oncie_PathPatternPart_copy(var$2, var$3.data[0]); }, -onciu_Last$$anon$3_knownSize = $this => { - return (-1); +onciu_RewritableJavascript$PROXY$7_295 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_295_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Limit__init_0(var$3[0], var$3[1]); }, -onciu_Last$$anon$3_hasNext = $this => { - return s_Option_isDefined($this.$remaining2); +onciu_RewritableJavascript$PROXY$7_296 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_296_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SetExactPropertiesFromMapItem_copy(var$2, var$3[0], var$3[1], var$3[2].$value3, var$3[3]); }, -onciu_Last$$anon$3_next = $this => { - let $nel; - $nel = $this.$remaining2; - if ($nel instanceof s_Some) { - $nel = $nel.$value5; - $this.$remaining2 = s_None$_MODULE$; - return $nel.$head(); - } - if (!jl_Object_equals(s_None$_MODULE$, $nel)) - $rt_throw(s_MatchError__init_($nel)); - $nel = new ju_NoSuchElementException; - jl_Throwable__init_0($nel, $rt_s(821)); - $rt_throw($nel); -}; -function oavra_PredictionContext() { - let a = this; jl_Object.call(a); - a.$id5 = 0; - a.$cachedHashCode0 = 0; -} -let oavra_PredictionContext_globalNodeCount = null, -oavra_PredictionContext_$assertionsDisabled = 0, -oavra_PredictionContext__init_ = ($this, $cachedHashCode) => { - let var$2, var$3; - var$2 = oavra_PredictionContext_globalNodeCount; - var$2.$version2 = var$2.$version2 + 1 | 0; - var$3 = var$2.$value34; - var$2.$value34 = var$3 + 1 | 0; - $this.$id5 = var$3; - $this.$cachedHashCode0 = $cachedHashCode; +onciu_RewritableJavascript$PROXY$7_298 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_298_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_RelationshipPattern_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6]); }, -oavra_PredictionContext_fromRuleContext = ($atn, $outerContext) => { - let $state; - if ($outerContext === null) - $outerContext = oavr_ParserRuleContext_EMPTY; - $state = $outerContext.$parent; - if ($state !== null && $outerContext !== oavr_ParserRuleContext_EMPTY) - return oavra_SingletonPredictionContext_create(oavra_PredictionContext_fromRuleContext($atn, $state), (oavra_ATNState_transition(ju_ArrayList_get($atn.$states, $outerContext.$invokingState), 0)).$followState.$stateNumber); - oavra_EmptyPredictionContext_$callClinit(); - return oavra_EmptyPredictionContext_Instance; +onciu_RewritableJavascript$PROXY$7_299 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_299_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateUser__init_(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5]); }, -oavra_PredictionContext_isEmpty = $this => { - oavra_EmptyPredictionContext_$callClinit(); - return $this !== oavra_EmptyPredictionContext_Instance ? 0 : 1; +onciu_RewritableJavascript$PROXY$7_300 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_300_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_FunctionName__init_(var$3[0], var$3[1], var$3[2]); }, -oavra_PredictionContext_hasEmptyPath = $this => { - return $this.$getReturnState($this.$size() - 1 | 0) != 2147483647 ? 0 : 1; +onciu_RewritableJavascript$PROXY$7_301 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_301_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_OnMatch_copy(var$2, var$3[0], var$3[1]); }, -oavra_PredictionContext_hashCode = $this => { - return $this.$cachedHashCode0; +onciu_RewritableJavascript$PROXY$7_303 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_303_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_SignedHexIntegerLiteral_copy(var$2, var$3[0], var$3[1]); }, -oavra_PredictionContext_merge = ($a, $b, $rootIsWildcard, $mergeCache) => { - let var$5, var$6, var$7; - if (!oavra_PredictionContext_$assertionsDisabled && !($a !== null && $b !== null)) { - $a = new jl_AssertionError; - jl_Throwable__init_($a); - $rt_throw($a); - } - if ($a !== $b && !$a.$equals($b)) { - var$5 = $a instanceof oavra_SingletonPredictionContext; - if (var$5 && $b instanceof oavra_SingletonPredictionContext) - return oavra_PredictionContext_mergeSingletons($a, $b, $rootIsWildcard, $mergeCache); - if ($rootIsWildcard) { - if ($a instanceof oavra_EmptyPredictionContext) - return $a; - if ($b instanceof oavra_EmptyPredictionContext) - return $b; - } - var$6 = !var$5 ? $a : oavra_ArrayPredictionContext__init_0($a); - var$7 = !($b instanceof oavra_SingletonPredictionContext) ? $b : oavra_ArrayPredictionContext__init_0($b); - return oavra_PredictionContext_mergeArrays(var$6, var$7, $rootIsWildcard, $mergeCache); - } - return $a; +onciu_RewritableJavascript$PROXY$7_304 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_304_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PathConcatenation_copy(var$2, var$3[0], var$3[1]); }, -oavra_PredictionContext_mergeSingletons = ($a, $b, $rootIsWildcard, $mergeCache) => { - let $previous, $rootMerge, $payloads, $parent, $a_, $singleParent, $parents, var$12, var$13, $parents_0, var$15; - if ($mergeCache !== null) { - $previous = oavrm_DoubleKeyMap_get($mergeCache, $a, $b); - if ($previous !== null) - return $previous; - $previous = oavrm_DoubleKeyMap_get($mergeCache, $b, $a); - if ($previous !== null) - return $previous; - } - a: { - b: { - if ($rootIsWildcard) { - oavra_EmptyPredictionContext_$callClinit(); - $rootMerge = oavra_EmptyPredictionContext_Instance; - if ($a === $rootMerge) - break a; - if ($b !== $rootMerge) - break b; - break a; - } - oavra_EmptyPredictionContext_$callClinit(); - $rootMerge = oavra_EmptyPredictionContext_Instance; - if ($a === $rootMerge && $b === $rootMerge) - break a; - if ($a === $rootMerge) { - $payloads = $rt_createIntArrayFromData([$b.$returnState, 2147483647]); - $rootMerge = oavra_ArrayPredictionContext__init_($rt_wrapArray(oavra_PredictionContext, [$b.$parent1, null]), $payloads); - break a; - } - if ($b === $rootMerge) { - $payloads = $rt_createIntArrayFromData([$a.$returnState, 2147483647]); - $rootMerge = oavra_ArrayPredictionContext__init_($rt_wrapArray(oavra_PredictionContext, [$a.$parent1, null]), $payloads); - break a; - } - } - $rootMerge = null; - } - if ($rootMerge !== null) { - if ($mergeCache !== null) - oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $rootMerge); - return $rootMerge; - } - if ($a.$returnState == $b.$returnState) { - $parent = oavra_PredictionContext_merge($a.$parent1, $b.$parent1, $rootIsWildcard, $mergeCache); - if ($parent === $a.$parent1) - return $a; - if ($parent === $b.$parent1) - return $b; - $a_ = oavra_SingletonPredictionContext_create($parent, $a.$returnState); - if ($mergeCache !== null) - oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a_); - return $a_; - } - c: { - $singleParent = null; - if ($a !== $b) { - $previous = $a.$parent1; - if ($previous === null) - break c; - if (!$previous.$equals($b.$parent1)) - break c; - } - $singleParent = $a.$parent1; - } - if ($singleParent !== null) { - $payloads = $rt_createIntArray(2); - $parents = $payloads.data; - var$12 = $a.$returnState; - $parents[0] = var$12; - var$13 = $b.$returnState; - $parents[1] = var$13; - if (var$12 > var$13) { - $parents[0] = var$13; - $parents[1] = var$12; - } - $a_ = oavra_ArrayPredictionContext__init_($rt_wrapArray(oavra_PredictionContext, [$singleParent, $singleParent]), $payloads); - if ($mergeCache !== null) - oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a_); - return $a_; - } - $payloads = $rt_createIntArray(2); - $parents = $payloads.data; - var$12 = $a.$returnState; - $parents[0] = var$12; - var$13 = $b.$returnState; - $parents[1] = var$13; - $parents_0 = $rt_createArray(oavra_PredictionContext, 2); - var$15 = $parents_0.data; - $previous = $a.$parent1; - var$15[0] = $previous; - $rootMerge = $b.$parent1; - var$15[1] = $rootMerge; - if (var$12 > var$13) { - $parents[0] = var$13; - $parents[1] = var$12; - $parents_0 = $rt_wrapArray(oavra_PredictionContext, [$rootMerge, $previous]); - } - $a_ = oavra_ArrayPredictionContext__init_($parents_0, $payloads); - if ($mergeCache !== null) - oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a_); - return $a_; +onciu_RewritableJavascript$PROXY$7_305 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_305_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateRole__init_0(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4]); +}, +onciu_RewritableJavascript$PROXY$7_306 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_306_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_GrantPrivilege__init_(var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5]); +}, +onciu_RewritableJavascript$PROXY$7_307 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_307_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_RemoveLabelItem_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3, var$3[4]); +}, +onciu_RewritableJavascript$PROXY$7_308 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_308_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SubqueryCall$InTransactionsBatchParameters__init_0(var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_309 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_309_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_LiteralEntry__init_(var$3[0], var$3[1], var$3[2]); +}, +onciu_RewritableJavascript$PROXY$7_311 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_311_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_UnarySubtract__init_0(var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_313 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_313_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Password__init_0(var$3[0], var$3[1].$value3, var$3[2]); +}, +onciu_RewritableJavascript$PROXY$7_314 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_314_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_SetPropertyItem_copy(var$2, var$3[0], var$3[1], var$3[2]); +}, +onciu_RewritableJavascript$PROXY$7_317 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_317_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_NodePattern_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); +}, +onciu_RewritableJavascript$PROXY$7_318 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_318_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_OnCreate_copy(var$2, var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_319 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_319_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_AlterServer__init_0(var$3[0], var$3[1], var$3[2]); +}, +onciu_RewritableJavascript$PROXY$7_320 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_320_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PropertySelector__init_(var$3[0], var$3[1]); +}, +onciu_RewritableJavascript$PROXY$7_321 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_321_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncius_PropertyValueType_copy(var$2, var$3[0].$value3, var$3[1]); }, -oavra_PredictionContext_mergeArrays = ($a, $b, $rootIsWildcard, $mergeCache) => { - let $previous, $M, $p, $p_0, $k, $payload, $mergedReturnStates, var$12, $mergedParents, var$14, var$15, $both$, $ax_ax, var$18, $a_parent, $b_parent, $a_; - if ($mergeCache !== null) { - $previous = oavrm_DoubleKeyMap_get($mergeCache, $a, $b); - if ($previous !== null) { - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_trace_atn_sim) { - $mergeCache = jl_System_out(); - $M = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($M); - jl_AbstractStringBuilder_append($M, $rt_s(6942)); - $a = jl_StringBuilder_append($M, $a); - jl_AbstractStringBuilder_append($a, $rt_s(6943)); - $a = jl_StringBuilder_append($a, $b); - jl_AbstractStringBuilder_append($a, $rt_s(6944)); - otcic_JsConsolePrintStream_println($mergeCache, jl_AbstractStringBuilder_toString($a)); - } - return $previous; - } - $previous = oavrm_DoubleKeyMap_get($mergeCache, $b, $a); - if ($previous !== null) { - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_trace_atn_sim) - otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(6942)), $a), $rt_s(6943)), $b), $rt_s(6944)))); - return $previous; - } - } - $p = 0; - $p_0 = 0; - $k = 0; - $payload = $a.$returnStates.data.length + $b.$returnStates.data.length | 0; - $mergedReturnStates = $rt_createIntArray($payload); - var$12 = $mergedReturnStates.data; - $mergedParents = $rt_createArray(oavra_PredictionContext, $payload); - var$14 = $mergedParents.data; - while (true) { - var$15 = $a.$returnStates.data; - $both$ = var$15.length; - $ax_ax = $rt_compare($p, $both$); - if ($ax_ax >= 0) - break; - var$18 = $b.$returnStates.data; - if ($p_0 >= var$18.length) - break; - $a_parent = $a.$parents.data[$p]; - $b_parent = $b.$parents.data[$p_0]; - if (var$15[$p] != var$18[$p_0]) { - if (var$15[$p] >= var$18[$p_0]) { - var$14[$k] = $b_parent; - var$12[$k] = var$18[$p_0]; - $p_0 = $p_0 + 1 | 0; - } else { - var$14[$k] = $a_parent; - var$12[$k] = var$15[$p]; - $p = $p + 1 | 0; - } - } else { - $payload = var$15[$p]; - $both$ = $payload == 2147483647 && $a_parent === null && $b_parent === null ? 1 : 0; - $ax_ax = $a_parent !== null && $b_parent !== null && $a_parent.$equals($b_parent) ? 1 : 0; - if (!$both$ && !$ax_ax) { - var$14[$k] = oavra_PredictionContext_merge($a_parent, $b_parent, $rootIsWildcard, $mergeCache); - var$12[$k] = $payload; - } else { - var$14[$k] = $a_parent; - var$12[$k] = $payload; - } - $p = $p + 1 | 0; - $p_0 = $p_0 + 1 | 0; - } - $k = $k + 1 | 0; - } - if ($ax_ax < 0) - while ($p < $both$) { - var$14[$k] = $a.$parents.data[$p]; - var$12[$k] = var$15[$p]; - $k = $k + 1 | 0; - $p = $p + 1 | 0; - } - else - while (true) { - var$18 = $b.$returnStates.data; - if ($p_0 >= var$18.length) - break; - var$14[$k] = $b.$parents.data[$p_0]; - var$12[$k] = var$18[$p_0]; - $k = $k + 1 | 0; - $p_0 = $p_0 + 1 | 0; - } - if ($k < var$14.length) { - if ($k == 1) { - $a_ = oavra_SingletonPredictionContext_create(var$14[0], var$12[0]); - if ($mergeCache !== null) - oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a_); - return $a_; - } - $mergedParents = ju_Arrays_copyOf($mergedParents, $k); - $mergedReturnStates = ju_Arrays_copyOf0($mergedReturnStates, $k); - } - $M = oavra_ArrayPredictionContext__init_($mergedParents, $mergedReturnStates); - if (oavra_ArrayPredictionContext_equals($M, $a)) { - if ($mergeCache !== null) - oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $a); - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_trace_atn_sim) - otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(6942)), $a), $rt_s(6943)), $b), $rt_s(6945)))); - return $a; - } - if (oavra_ArrayPredictionContext_equals($M, $b)) { - if ($mergeCache !== null) - oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $b); - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_trace_atn_sim) - otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(6942)), $a), $rt_s(6943)), $b), $rt_s(6946)))); - return $b; - } - oavra_PredictionContext_combineCommonParents($mergedParents); - if ($mergeCache !== null) - oavrm_DoubleKeyMap_put($mergeCache, $a, $b, $M); - oavra_ParserATNSimulator_$callClinit(); - if (oavra_ParserATNSimulator_trace_atn_sim) - otcic_JsConsolePrintStream_println(jl_System_out(), jl_StringBuilder_toString(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder_append(jl_StringBuilder_append2(jl_StringBuilder__init_(), $rt_s(6942)), $a), $rt_s(6943)), $b), $rt_s(4771)), $M))); - return $M; +onciu_RewritableJavascript$PROXY$7_322 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_322_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_DropServer__init_0(var$3[0], var$3[1]); }, -oavra_PredictionContext_combineCommonParents = $parents => { - let $uniqueParents, $p, var$4, var$5, $parent; - $uniqueParents = ju_HashMap__init_(); - $p = 0; - while (true) { - var$4 = $parents.data; - var$5 = var$4.length; - if ($p >= var$5) - break; - $parent = var$4[$p]; - if (!ju_HashMap_containsKey($uniqueParents, $parent)) - ju_HashMap_put($uniqueParents, $parent, $parent); - $p = $p + 1 | 0; - } - $p = 0; - while ($p < var$5) { - var$4[$p] = ju_HashMap_get($uniqueParents, var$4[$p]); - $p = $p + 1 | 0; - } +onciu_RewritableJavascript$PROXY$7_323 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_323_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ReallocateDatabases__init_0(var$3[0].$value3, var$3[1]); }, -oavra_PredictionContext_getCachedContext = ($context, $contextCache, $visited) => { - let var$4, $arrayPredictionContext, $existing, $changed, $parents, $i, var$10, $j, $parent, $updated; - if ($context.$isEmpty()) - return $context; - var$4 = jl_Object_identity($context); - $arrayPredictionContext = ju_IdentityHashMap_findNonNullKeyEntry($visited, $context, var$4 & ($visited.$elementData1.data.length - 1 | 0), var$4); - $existing = $arrayPredictionContext === null ? null : $arrayPredictionContext.$value9; - if ($existing !== null) - return $existing; - $arrayPredictionContext = ju_HashMap_get($contextCache.$cache, $context); - if ($arrayPredictionContext !== null) { - ju_IdentityHashMap_put($visited, $context, $arrayPredictionContext); - return $arrayPredictionContext; - } - $changed = 0; - $parents = $rt_createArray(oavra_PredictionContext, $context.$size()); - $i = 0; - while (true) { - var$10 = $parents.data; - $j = var$10.length; - if ($i >= $j) - break; - $parent = oavra_PredictionContext_getCachedContext($context.$getParent($i), $contextCache, $visited); - if (!(!$changed && $parent === $context.$getParent($i))) { - if (!$changed) { - $parents = $rt_createArray(oavra_PredictionContext, $context.$size()); - var$10 = $parents.data; - $j = 0; - while ($j < $context.$size()) { - var$10[$j] = $context.$getParent($j); - $j = $j + 1 | 0; - } - $changed = 1; - } - $parents.data[$i] = $parent; - } - $i = $i + 1 | 0; - } - if (!$changed) { - oavra_PredictionContextCache_add($contextCache, $context); - ju_IdentityHashMap_put($visited, $context, $context); - return $context; - } - if (!$j) { - oavra_EmptyPredictionContext_$callClinit(); - $updated = oavra_EmptyPredictionContext_Instance; - } else if ($j != 1) { - $arrayPredictionContext = $context; - $updated = oavra_ArrayPredictionContext__init_($parents, $arrayPredictionContext.$returnStates); - } else - $updated = oavra_SingletonPredictionContext_create(var$10[0], $context.$getReturnState(0)); - oavra_PredictionContextCache_add($contextCache, $updated); - ju_IdentityHashMap_put($visited, $updated, $updated); - ju_IdentityHashMap_put($visited, $context, $updated); - return $updated; +onciu_RewritableJavascript$PROXY$7_324 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_324_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_VariableSelector__init_0(var$3[0], var$3[1]); }, -oavra_PredictionContext_toString = ($this, $recog) => { - return $this.$toString(); +onciu_RewritableJavascript$PROXY$7_325 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_325_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateCompositeDatabase__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); }, -oavra_PredictionContext__clinit_ = () => { - oavra_PredictionContext_$assertionsDisabled = 0; - oavra_PredictionContext_globalNodeCount = new juca_AtomicInteger; -}; -function oavrd_DFASerializer() { - let a = this; jl_Object.call(a); - a.$dfa = null; - a.$vocabulary2 = null; -} -let oavrd_DFASerializer_getStateString = ($this, $s) => { - let $n, var$3, $baseStateStr; - $n = $s.$stateNumber0; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append(var$3, !$s.$isAcceptState ? $rt_s(4) : $rt_s(91)); - jl_AbstractStringBuilder_append(var$3, $rt_s(220)); - var$3 = jl_StringBuilder_append0(var$3, $n); - jl_AbstractStringBuilder_append(var$3, !$s.$requiresFullContext ? $rt_s(4) : $rt_s(401)); - $baseStateStr = jl_AbstractStringBuilder_toString(var$3); - if (!$s.$isAcceptState) - return $baseStateStr; - if ($s.$predicates === null) { - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append(var$3, $baseStateStr); - jl_AbstractStringBuilder_append(var$3, $rt_s(6810)); - return jl_AbstractStringBuilder_toString(jl_StringBuilder_append0(var$3, $s.$prediction)); - } - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append(var$3, $baseStateStr); - jl_AbstractStringBuilder_append(var$3, $rt_s(6810)); - jl_AbstractStringBuilder_append(var$3, ju_Arrays_toString($s.$predicates)); - return jl_AbstractStringBuilder_toString(var$3); +onciu_RewritableJavascript$PROXY$7_327 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_327_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_Foreach_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciu_AnonymousVariableNameGenerator$_$callClinit(); - return jl_Boolean_valueOf(onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, var$1.$name4) ? 0 : 1); +onciu_RewritableJavascript$PROXY$7_329 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_329_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_PatternPart$AnyShortestPath__init_(var$3[0], var$3[1]); }, -oncir_Deprecations$ = $rt_classWithoutFields(), -oncir_Deprecations$_MODULE$ = null, -oncir_Deprecations$__clinit_ = () => { - oncir_Deprecations$_MODULE$ = new oncir_Deprecations$; +onciu_RewritableJavascript$PROXY$7_330 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_330_copyConstructor = (var$1, var$2, var$3) => { + return oncie_CountStar__init_0(var$3.data[0]); }, -oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$functionInvocationForSetProperties = ($this, $s, $e) => { - let var$3, var$4, var$5, var$6, var$7; - var$3 = new oncie_FunctionInvocation; - var$4 = oncie_FunctionName__init_0(oncie_Namespace__init_0(sci_Nil$_MODULE$, $e.$position4), $rt_s(4907), $e.$position4); - s_package$_$callClinit(); - var$5 = s_package$_Vector(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$7 = $rt_createArray(oncie_Variable, 1); - var$7.data[0] = $e; - var$5 = var$5.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$3, var$4, 0, var$5, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, $s.$position()); - return var$3; +onciu_RewritableJavascript$PROXY$7_331 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_331_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_PasswordChange__init_0(var$3[0].$value3, var$3[1]); }, -oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder = ($this, $lhs, $rhs) => { - return sc_IterableOnceOps_nonEmpty$(oncia_Query_returnColumns$($rhs)) && sc_IterableOnceOps_nonEmpty$($lhs.$returnColumns()) && !sci_List_equals(sci_List_map(oncia_Query_returnColumns$($rhs), new oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_0), sci_List_map($lhs.$returnColumns(), new oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_1)) ? 1 : 0; -}; -function oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0815 = null; -} -let oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0815; - return onciu_Foldable$SkipChildren__init_(var$1.$appended(onciu_LiteralOffset__init_((var$2.$position()).$offset(), (var$2.$position()).$line(), s_Some__init_(jl_Integer_valueOf(var$2.$literalLength()))))); -}; -function oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1() { - let a = this; jl_Object.call(a); - a.$_0178 = null; - a.$_167 = null; -} -let oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0178; - var$3 = var$0.$_167; - var$2 = var$2.$extractedParameters$1.$get2(var$3); - if (!(var$2 instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, var$2)) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = onciu_Foldable$SkipChildren__init_(var$1.$appended(onciu_LiteralOffset__init_(var$3.$position63.$offset(), var$3.$position63.$line(), s_None$_MODULE$))); - } else { - var$4 = onciu_Foldable_folder$(var$2.$value5); - sr_ClassTag$_$callClinit(); - var$3 = ((onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Literal)))).$map(new oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0)).$map(new oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1); - var$2 = onciu_Foldable$SkipChildren__init_(var$1.$concat(var$3)); - } - return var$2; +onciu_RewritableJavascript$PROXY$7_332 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_332_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_FixedQuantifier_copy(var$2, var$3[0], var$3[1]); }, -oncifp_DeprecationInfo = $rt_classWithoutFields(); -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_01033 = null; - a.$_1354 = null; - a.$_2117 = null; - a.$_330 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_01033; - var$3 = var$0.$_1354; - var$4 = var$0.$_2117; - var$5 = var$0.$_330; - var$6 = new onciu_Foldable$TraverseChildren; - var$7 = sc_StrictOptimizedIterableOps_filter$(var$2, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0); - var$2 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1; - var$2.$_0131 = var$3; - var$2.$_149 = var$4; - var$1 = var$1.$concat1(sc_AbstractIterable_toSet(var$7.$map(var$2))); - var$2 = new onn_DeprecatedProcedureNotification; - var$7 = var$3.$position9; - var$3 = oncifp_QualifiedName_toString(var$4); - var$2.$position51 = var$7; - var$2.$oldName0 = var$3; - var$2.$newName2 = var$5; - onciu_Foldable$TraverseChildren__init_0(var$6, var$1.$incl(var$2)); - return var$6; +onciu_RewritableJavascript$PROXY$7_336 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_336_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_GreaterThanOrEqual__init_0(var$3[0], var$3[1], var$3[2]); }, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$deprecated0); -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2() { - let a = this; jl_Object.call(a); - a.$_0129 = null; - a.$_148 = null; - a.$_224 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0129; - var$3 = var$0.$_148; - var$4 = var$0.$_224; - var$5 = new onciu_Foldable$TraverseChildren; - var$2 = sc_StrictOptimizedIterableOps_filter$(var$2, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0); - var$6 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1; - var$6.$_0893 = var$3; - var$6.$_1307 = var$4; - onciu_Foldable$TraverseChildren__init_0(var$5, var$1.$concat1(sc_AbstractIterable_toSet(var$2.$map(var$6)))); - return var$5; -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3() { - let a = this; jl_Object.call(a); - a.$_0614 = null; - a.$_1209 = null; - a.$_269 = null; - a.$_321 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_0614; - var$3 = var$0.$_1209; - var$4 = var$0.$_269; - var$5 = var$0.$_321; - var$6 = new onciu_Foldable$TraverseChildren; - var$7 = sc_StrictOptimizedIterableOps_filter$(var$2, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0); - var$2 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1; - var$2.$_0203 = var$3; - var$2.$_178 = var$4; - onciu_Foldable$TraverseChildren__init_0(var$6, (var$1.$concat1(sc_AbstractIterable_toSet(var$7.$map(var$2)))).$incl(onciu_DeprecatedFunctionNotification__init_(var$3.$position11, oncifp_QualifiedName_toString(var$4), var$5))); - return var$6; +onciu_RewritableJavascript$PROXY$7_339 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_339_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_AlterLocalDatabaseAlias__init_(var$3[0], var$3[1], var$3[2].$value3, var$3[3], var$3[4]); }, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$deprecated0); -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5() { - let a = this; jl_Object.call(a); - a.$_0871 = null; - a.$_1299 = null; - a.$_297 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0871; - var$3 = var$0.$_1299; - var$4 = var$0.$_297; - var$5 = new onciu_Foldable$TraverseChildren; - var$2 = sc_StrictOptimizedIterableOps_filter$(var$2, new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0); - var$6 = new oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1; - var$6.$_0804 = var$3; - var$6.$_1272 = var$4; - onciu_Foldable$TraverseChildren__init_0(var$5, var$1.$concat1(sc_AbstractIterable_toSet(var$2.$map(var$6)))); - return var$5; -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6() { - jl_Object.call(this); - this.$_0205 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0205; - if (!(var$1 instanceof oncie_FunctionTypeSignature)) - var$3 = 0; - else { - var$1 = var$1; - var$4 = var$1.$argumentTypes0; - var$3 = var$1.$deprecated1 && sci_Vector_length(var$4) == (oncie_Expression_arguments(var$2)).$length() ? 1 : 0; - } - return jl_Boolean_valueOf(var$3); +onciu_RewritableJavascript$PROXY$7_359 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_359_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_TopLevelBraces_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7 = $rt_classWithoutFields(), -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7_apply = (var$0, var$1) => { - return var$1; -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8() { - jl_Object.call(this); - this.$_0321 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0321; - return onciu_DeprecatedFunctionNotification__init_(var$2.$position7, var$2.$function1.$name(), var$1.$deprecatedBy0); -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9() { - jl_Object.call(this); - this.$_0926 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0926; - return onciu_Foldable$TraverseChildren__init_(var$1.$concat1(sc_AbstractIterable_toSet(var$2))); +onciu_RewritableJavascript$PROXY$7_361 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_361_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_IsTyped_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3); }, -one_InternalException = $rt_classWithoutFields(one_Neo4jException), -one_InternalException__init_0 = ($this, $message) => { - one_Neo4jException__init_($this, $message, null); +onciu_RewritableJavascript$PROXY$7_367 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_367_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Ands__init_0(var$3[0], var$3[1]); }, -one_InternalException__init_ = var_0 => { - let var_1 = new one_InternalException(); - one_InternalException__init_0(var_1, var_0); - return var_1; -}; -function oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_010 = null; - a.$_19 = null; - a.$_27 = null; -} -let oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_010; - var$3 = var$0.$_19; - var$4 = var$0.$_27; - var$5 = new onciu_Foldable$TraverseChildren; - var$6 = new onn_ProcedureWarningNotification; - var$7 = var$2.$position9; - var$2 = oncifp_QualifiedName_toString(var$3); - var$6.$position48 = var$7; - var$6.$procedure1 = var$2; - var$6.$warning1 = var$4; - onciu_Foldable$TraverseChildren__init_0(var$5, var$1.$incl(var$6)); - return var$5; +onciu_RewritableJavascript$PROXY$7_370 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_370_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_QuantifiedPath_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4]); }, -oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$deprecated0); -}; -function oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2() { - let a = this; jl_Object.call(a); - a.$_0135 = null; - a.$_151 = null; - a.$_225 = null; -} -let oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0135; - var$3 = var$0.$_151; - var$4 = var$0.$_225; - var$5 = new onciu_Foldable$TraverseChildren; - oncifp_ProcedureWarnings$_$callClinit(); - var$2 = oncifp_QualifiedName_toString(var$2); - var$6 = new oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0; - var$6.$_0971 = var$4; - var$3 = var$3.$filter1(var$6); - var$4 = new oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1; - var$4.$_0757 = var$2; - onciu_Foldable$TraverseChildren__init_0(var$5, var$1.$concat1(var$3.$map(var$4))); - return var$5; -}; -function oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_01115 = null; - a.$_1373 = null; -} -let oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_01115; - var$3 = var$0.$_1373; - var$4 = new onciu_Foldable$TraverseChildren; - var$5 = new onciu_RedundantOptionalProcedure; - var$6 = var$2.$position9; - var$2 = oncifp_QualifiedName_toString(var$3.$name10); - var$5.$position57 = var$6; - var$5.$proc0 = var$2; - onciu_Foldable$TraverseChildren__init_0(var$4, var$1.$incl(var$5)); - return var$4; +onciu_RewritableJavascript$PROXY$7_371 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_371_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_IsNotNormalized__init_(var$3[0], var$3[1], var$3[2]); }, -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = new onciu_Foldable$TraverseChildrenNewAccForSiblings; - var$3 = new oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0; - var$3.$_0453 = var$1; - onciu_Foldable$TraverseChildrenNewAccForSiblings__init_(var$2, var$1, var$3); - return var$2; -}; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1() { - let a = this; jl_Object.call(a); - a.$_0197 = null; - a.$_176 = null; - a.$_233 = null; -} -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0197; - var$3 = var$0.$_176; - var$4 = var$0.$_233; - if (!s_Option_isEmpty(var$1.$currentWorkGraph) && s_Option_contains(var$1.$currentWorkGraph, var$3)) { - var$2 = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_org$neo4j$cypher$internal$frontend$phases$RemoveDuplicateUseClauses$UseClauseRewriter$$State$3(var$2.$$outer28, var$2.$State$module$1); - var$5 = var$1.$useClausesToRemove; - onciu_Ref$_$callClinit(); - var$1 = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$_apply(var$2, var$5.$incl(onciu_Ref$_apply(onciu_Ref$_MODULE$, var$4)), var$1.$currentWorkGraph); - } else - var$1 = oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$_apply(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_org$neo4j$cypher$internal$frontend$phases$RemoveDuplicateUseClauses$UseClauseRewriter$$State$3(var$2.$$outer28, var$2.$State$module$1), var$1.$useClausesToRemove, s_Some__init_(var$3)); - return onciu_Foldable$SkipChildren__init_(var$1); -}; -function oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0357 = null; -} -let oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0357; - var$3 = new onciu_Foldable$TraverseChildren; - var$4 = sci_$colon$colon__init_(var$1, sci_$colon$colon__init_(var$2.$position(), sci_Nil$_MODULE$)); - onciu_InputPosition$_$callClinit(); - onciu_Foldable$TraverseChildren__init_0(var$3, sc_AbstractIterable_max(var$4, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$))); - return var$3; -}; -function oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_0921 = null; - a.$_1323 = null; - a.$_2110 = null; -} -let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0921; - var$3 = var$0.$_1323; - var$4 = var$0.$_2110; - var$5 = var$1.$get2(var$3); - var$6 = new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0; - var$6.$_0235 = var$2; - var$6.$_190 = var$4; - var$2 = s_Option_map(var$5, var$6); - var$5 = new oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1; - var$5.$_0863 = var$4; - var$4 = (s_Option_getOrElse(var$2, var$5)).$distinct0(); - var$5 = new onciu_Foldable$SkipChildren; - var$2 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - onciu_Foldable$SkipChildren__init_0(var$5, sci_AbstractMap_$plus(var$1, s_Predef$ArrowAssoc$_$minus$greater$extension(var$2, var$3, var$4))); - return var$5; +onciu_RewritableJavascript$PROXY$7_374 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_374_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Contains__init_(var$3[0], var$3[1], var$3[2]); }, -oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); -}; -function oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1() { - jl_Object.call(this); - this.$_082 = null; -} -let oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_082; - var$3 = new onciu_Foldable$SkipChildren; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - oncifp_PatternExpressionInNonExistenceCheck$_$callClinit(); - onciu_Foldable$SkipChildren__init_0(var$3, var$1.$appended(oncias_SemanticError$_apply(var$4, oncifp_PatternExpressionInNonExistenceCheck$_errorMessageForSizeFunction, oncie_PatternExpression_position(var$2)))); - return var$3; -}; -function oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2() { - jl_Object.call(this); - this.$_0732 = null; -} -let oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0732; - var$3 = new onciu_Foldable$SkipChildren; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - oncifp_PatternExpressionInNonExistenceCheck$_$callClinit(); - onciu_Foldable$SkipChildren__init_0(var$3, var$1.$appended(oncias_SemanticError$_apply(var$4, oncifp_PatternExpressionInNonExistenceCheck$_errorMessage, oncie_PatternExpression_position(var$2)))); - return var$3; -}; -function oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0856 = null; -} -let oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0856; - var$3 = new onciu_Foldable$SkipChildren; - oncias_SemanticError$_$callClinit(); - onciu_Foldable$SkipChildren__init_0(var$3, var$1.$appended(oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncifp_ListCoercedToBooleanCheck$_errorMessage, var$2.$position()))); - return var$3; -}; -function oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_0923 = null; - a.$_1324 = null; -} -let oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0923; - var$3 = var$0.$_1324; - var$2 = oncifp_SelfReferenceCheckWithinPatternPart_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern(var$2.$$outer16, var$3, var$3.$pattern5(), var$2.$semanticTable$10, var$2.$errorMessageProvider$1); - return onciu_Foldable$SkipChildren__init_(var$1.$concat(var$2)); +onciu_RewritableJavascript$PROXY$7_375 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_375_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_IsNotNull__init_(var$3[0], var$3[1]); }, -onciu_DeprecatedFeature = $rt_classWithoutFields(0), -onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6 = $rt_classWithoutFields(0), -onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6_deprecatedIn$ = ($$this, $cypherVersion) => { - let var$3; - a: { - b: { - c: { - $$this = onci_CypherVersion_Cypher5; - if ($cypherVersion !== null) { - if (!jl_Enum_equals($cypherVersion, $$this)) - break b; - else - break c; - } - if ($$this !== null) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; +onciu_RewritableJavascript$PROXY$7_381 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_381_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_IsNull__init_(var$3[0], var$3[1]); }, -onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6_errorIn$ = ($$this, $cypherVersion) => { - let var$3; - a: { - b: { - c: { - $$this = onci_CypherVersion_Cypher5; - if ($cypherVersion !== null) { - if (jl_Enum_equals($cypherVersion, $$this)) - break c; - else - break b; - } - if ($$this !== null) - break b; - } - var$3 = 0; - break a; - } - var$3 = 1; - } - return var$3; +onciu_RewritableJavascript$PROXY$7_384 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_384_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_IsNormalized__init_(var$3[0], var$3[1], var$3[2]); }, -oncia_Merge$SelfReference$ = $rt_classWithoutFields(), -oncia_Merge$SelfReference$_MODULE$ = null, -oncia_Merge$SelfReference$_$callClinit = () => { - oncia_Merge$SelfReference$_$callClinit = $rt_eraseClinit(oncia_Merge$SelfReference$); - oncia_Merge$SelfReference$__clinit_(); +onciu_RewritableJavascript$PROXY$7_386 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_386_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_EndsWith__init_(var$3[0], var$3[1], var$3[2]); }, -oncia_Merge$SelfReference$__clinit_ = () => { - let var$1; - var$1 = new oncia_Merge$SelfReference$; - oncia_Merge$SelfReference$_$callClinit(); - oncia_Merge$SelfReference$_MODULE$ = var$1; -}; -function oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1() { - let a = this; jl_Object.call(a); - a.$_0418 = null; - a.$_1153 = null; -} -let oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0418; - var$3 = var$0.$_1153; - var$4 = oncie_Pattern$ForUpdate__init_0(sci_$colon$colon__init_(var$3.$pattern8, sci_Nil$_MODULE$), var$3.$pattern8.$position()); - var$2 = oncifp_SelfReferenceCheckWithinPatternPart_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern(var$2.$$outer16, var$3, var$4, var$2.$semanticTable$10, var$2.$errorMessageProvider$1); - return onciu_Foldable$SkipChildren__init_(var$1.$concat(var$2)); -}; -function oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_0485 = null; - a.$_1170 = null; -} -let oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0485; - var$3 = var$0.$_1170; - var$2 = oncifp_SelfReferenceCheckAcrossPatternParts_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern(var$2.$$outer19, var$3, var$3.$pattern12, var$2.$semanticTable$4); - return onciu_Foldable$SkipChildren__init_(var$1.$concat(var$2)); +onciu_RewritableJavascript$PROXY$7_390 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_390_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_LessThan__init_0(var$3[0], var$3[1], var$3[2]); }, -oncia_Create$SelfReferenceAcrossPatterns$ = $rt_classWithoutFields(), -oncia_Create$SelfReferenceAcrossPatterns$_MODULE$ = null, -oncia_Create$SelfReferenceAcrossPatterns$_$callClinit = () => { - oncia_Create$SelfReferenceAcrossPatterns$_$callClinit = $rt_eraseClinit(oncia_Create$SelfReferenceAcrossPatterns$); - oncia_Create$SelfReferenceAcrossPatterns$__clinit_(); +onciu_RewritableJavascript$PROXY$7_391 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_391_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateLookupIndexCommand_copy(var$2, var$3[0], var$3[1].$value3, var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7]); }, -oncia_Create$SelfReferenceAcrossPatterns$__clinit_ = () => { - let var$1; - var$1 = new oncia_Create$SelfReferenceAcrossPatterns$; - oncia_Create$SelfReferenceAcrossPatterns$_$callClinit(); - oncia_Create$SelfReferenceAcrossPatterns$_MODULE$ = var$1; -}; -function oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1() { - let a = this; jl_Object.call(a); - a.$_01169 = null; - a.$_1391 = null; -} -let oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_01169; - var$3 = var$0.$_1391; - var$2 = oncifp_SelfReferenceCheckAcrossPatternParts_org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern(var$2.$$outer19, var$3, var$3.$pattern10, var$2.$semanticTable$4); - return onciu_Foldable$SkipChildren__init_(var$1.$concat(var$2)); +onciu_RewritableJavascript$PROXY$7_395 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_395_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_SensitiveStringLiteral__init_0(var$3[0], var$3[1]); }, -oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - sr_BoxesRunTime_unboxToBoolean(var$1); - return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(1)); +onciu_RewritableJavascript$PROXY$7_396 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_396_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_NotEquals__init_0(var$3[0], var$3[1], var$3[2]); }, -oavra_StarBlockStartState = $rt_classWithoutFields(oavra_BlockStartState), -oavra_StarBlockStartState_getStateType = $this => { - return 5; +onciu_RewritableJavascript$PROXY$7_397 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_397_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_NamespacedName__init_(var$3[0], var$3[1], var$3[2]); }, -oavra_ATNDeserializer$1 = $rt_classWithoutFields(), -oavra_ATNDeserializer$1_$SwitchMap$org$antlr$v4$runtime$atn$LexerActionType = null, -oavra_ATNDeserializer$1_$callClinit = () => { - oavra_ATNDeserializer$1_$callClinit = $rt_eraseClinit(oavra_ATNDeserializer$1); - oavra_ATNDeserializer$1__clinit_(); +onciu_RewritableJavascript$PROXY$7_406 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_406_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateRemoteDatabaseAlias__init_0(var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); }, -oavra_ATNDeserializer$1__clinit_ = () => { - let var$1, var$2; - var$1 = $rt_createIntArray((oavra_LexerActionType_values()).data.length); - var$2 = var$1.data; - oavra_ATNDeserializer$1_$SwitchMap$org$antlr$v4$runtime$atn$LexerActionType = var$1; - var$2[oavra_LexerActionType_CHANNEL.$ordinal] = 1; - var$2[oavra_LexerActionType_CUSTOM.$ordinal] = 2; - var$2[oavra_LexerActionType_MODE.$ordinal] = 3; - var$2[oavra_LexerActionType_MORE.$ordinal] = 4; - var$2[oavra_LexerActionType_POP_MODE.$ordinal] = 5; - var$2[oavra_LexerActionType_PUSH_MODE.$ordinal] = 6; - var$2[oavra_LexerActionType_SKIP.$ordinal] = 7; - var$2[oavra_LexerActionType_TYPE.$ordinal] = 8; -}; -function oavra_LexerChannelAction() { - jl_Object.call(this); - this.$channel = 0; -} -let oavra_LexerChannelAction_isPositionDependent = $this => { - return 0; +onciu_RewritableJavascript$PROXY$7_407 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_407_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateSingleLabelPropertyIndexCommand_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); }, -oavra_LexerChannelAction_execute = ($this, $lexer) => { - $lexer.$_channel = $this.$channel; +onciu_RewritableJavascript$PROXY$7_408 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_408_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_IsNotTyped__init_(var$3[0], var$3[1], var$3[2]); }, -oavra_LexerChannelAction_hashCode = $this => { - let $hash; - $hash = oavrm_MurmurHash_initialize(); - oavra_LexerActionType_$callClinit(); - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update($hash, oavra_LexerActionType_CHANNEL.$ordinal), $this.$channel), 2); +onciu_RewritableJavascript$PROXY$7_413 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_413_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_StartsWith__init_(var$3[0], var$3[1], var$3[2]); }, -oavra_LexerChannelAction_equals = ($this, $obj) => { - if ($obj === $this) - return 1; - if (!($obj instanceof oavra_LexerChannelAction)) - return 0; - return $this.$channel != $obj.$channel ? 0 : 1; +onciu_RewritableJavascript$PROXY$7_421 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_421_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_LoadCSV__init_(var$3[0].$value3, var$3[1], var$3[2], var$3[3], var$3[4]); }, -oavra_LexerChannelAction_toString = $this => { - let var$1; - var$1 = $rt_createArray(jl_Object, 1); - var$1.data[0] = jl_Integer_valueOf($this.$channel); - return jl_String_format($rt_s(6947), var$1); -}; -function oavra_LexerCustomAction() { - let a = this; jl_Object.call(a); - a.$ruleIndex3 = 0; - a.$actionIndex = 0; -} -let oavra_LexerCustomAction_isPositionDependent = $this => { - return 1; +onciu_RewritableJavascript$PROXY$7_436 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_436_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateFulltextIndexCommand_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7]); }, -oavra_LexerCustomAction_execute = ($this, $lexer) => { - return; +onciu_RewritableJavascript$PROXY$7_440 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_440_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_GreaterThan__init_0(var$3[0], var$3[1], var$3[2]); }, -oavra_LexerCustomAction_hashCode = $this => { - let $hash; - $hash = oavrm_MurmurHash_initialize(); - oavra_LexerActionType_$callClinit(); - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_update($hash, oavra_LexerActionType_CUSTOM.$ordinal), $this.$ruleIndex3), $this.$actionIndex), 3); +onciu_RewritableJavascript$PROXY$7_445 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_445_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ListComprehension__init_(var$3[0], var$3[1], var$3[2]); }, -oavra_LexerCustomAction_equals = ($this, $obj) => { - let $other; - if ($obj === $this) - return 1; - if (!($obj instanceof oavra_LexerCustomAction)) - return 0; - $other = $obj; - return $this.$ruleIndex3 == $other.$ruleIndex3 && $this.$actionIndex == $other.$actionIndex ? 1 : 0; -}; -function oavra_LexerModeAction() { - jl_Object.call(this); - this.$mode3 = 0; -} -let oavra_LexerModeAction_isPositionDependent = $this => { - return 0; +onciu_RewritableJavascript$PROXY$7_449 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_449_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_AllIterablePredicate__init_(var$3[0], var$3[1], var$3[2]); }, -oavra_LexerModeAction_execute = ($this, $lexer) => { - $lexer.$_mode = $this.$mode3; +onciu_RewritableJavascript$PROXY$7_450 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_450_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_LessThanOrEqual__init_0(var$3[0], var$3[1], var$3[2]); }, -oavra_LexerModeAction_hashCode = $this => { - let $hash; - $hash = oavrm_MurmurHash_initialize(); - oavra_LexerActionType_$callClinit(); - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update($hash, oavra_LexerActionType_MODE.$ordinal), $this.$mode3), 2); +onciu_RewritableJavascript$PROXY$7_451 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_451_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_In_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oavra_LexerModeAction_equals = ($this, $obj) => { - if ($obj === $this) - return 1; - if (!($obj instanceof oavra_LexerModeAction)) - return 0; - return $this.$mode3 != $obj.$mode3 ? 0 : 1; +onciu_RewritableJavascript$PROXY$7_460 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_460_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_InvalidNotEquals__init_0(var$3[0], var$3[1], var$3[2]); }, -oavra_LexerModeAction_toString = $this => { - let var$1; - var$1 = $rt_createArray(jl_Object, 1); - var$1.data[0] = jl_Integer_valueOf($this.$mode3); - return jl_String_format($rt_s(6948), var$1); +onciu_RewritableJavascript$PROXY$7_463 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_463_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_RegexMatch__init_(var$3[0], var$3[1], var$3[2]); }, -oavra_LexerMoreAction = $rt_classWithoutFields(), -oavra_LexerMoreAction_INSTANCE = null, -oavra_LexerMoreAction_isPositionDependent = $this => { - return 0; +onciu_RewritableJavascript$PROXY$7_481 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_481_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreateConstraintCommand_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); }, -oavra_LexerMoreAction_execute = ($this, $lexer) => { - oavr_Lexer_more($lexer); +onciu_RewritableJavascript$PROXY$9_60 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_60_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oavra_LexerMoreAction_hashCode = $this => { - let $hash; - $hash = oavrm_MurmurHash_initialize(); - oavra_LexerActionType_$callClinit(); - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update($hash, oavra_LexerActionType_MORE.$ordinal), 1); +onciu_RewritableJavascript$PROXY$9_61 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_61_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerMoreAction_equals = ($this, $obj) => { - return $obj !== $this ? 0 : 1; +onciu_RewritableJavascript$PROXY$9_62 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_62_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerMoreAction_toString = $this => { - return $rt_s(6949); +onciu_RewritableJavascript$PROXY$9_63 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_63_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oavra_LexerMoreAction__clinit_ = () => { - oavra_LexerMoreAction_INSTANCE = new oavra_LexerMoreAction; +onciu_RewritableJavascript$PROXY$9_64 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_64_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oavra_LexerPopModeAction = $rt_classWithoutFields(), -oavra_LexerPopModeAction_INSTANCE = null, -oavra_LexerPopModeAction_isPositionDependent = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_65 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_65_numParameters = var$1 => { + return (jl_Integer_valueOf(7)).$value4; }, -oavra_LexerPopModeAction_execute = ($this, $lexer) => { - oavr_Lexer_popMode($lexer); +onciu_RewritableJavascript$PROXY$9_66 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_66_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oavra_LexerPopModeAction_hashCode = $this => { - let $hash; - $hash = oavrm_MurmurHash_initialize(); - oavra_LexerActionType_$callClinit(); - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update($hash, oavra_LexerActionType_POP_MODE.$ordinal), 1); +onciu_RewritableJavascript$PROXY$9_67 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_67_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerPopModeAction_equals = ($this, $obj) => { - return $obj !== $this ? 0 : 1; +onciu_RewritableJavascript$PROXY$9_68 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_68_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oavra_LexerPopModeAction_toString = $this => { - return $rt_s(6950); +onciu_RewritableJavascript$PROXY$9_69 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_69_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerPopModeAction__clinit_ = () => { - oavra_LexerPopModeAction_INSTANCE = new oavra_LexerPopModeAction; -}; -function oavra_LexerPushModeAction() { - jl_Object.call(this); - this.$mode2 = 0; -} -let oavra_LexerPushModeAction_isPositionDependent = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_70 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_70_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oavra_LexerPushModeAction_execute = ($this, $lexer) => { - oavr_Lexer_pushMode($lexer, $this.$mode2); +onciu_RewritableJavascript$PROXY$9_71 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_71_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerPushModeAction_hashCode = $this => { - let $hash; - $hash = oavrm_MurmurHash_initialize(); - oavra_LexerActionType_$callClinit(); - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update($hash, oavra_LexerActionType_PUSH_MODE.$ordinal), $this.$mode2), 2); +onciu_RewritableJavascript$PROXY$9_72 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_72_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerPushModeAction_equals = ($this, $obj) => { - if ($obj === $this) - return 1; - if (!($obj instanceof oavra_LexerPushModeAction)) - return 0; - return $this.$mode2 != $obj.$mode2 ? 0 : 1; +onciu_RewritableJavascript$PROXY$9_73 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_73_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oavra_LexerPushModeAction_toString = $this => { - let var$1; - var$1 = $rt_createArray(jl_Object, 1); - var$1.data[0] = jl_Integer_valueOf($this.$mode2); - return jl_String_format($rt_s(6951), var$1); +onciu_RewritableJavascript$PROXY$9_74 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_74_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oavra_LexerSkipAction = $rt_classWithoutFields(), -oavra_LexerSkipAction_INSTANCE = null, -oavra_LexerSkipAction_isPositionDependent = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_75 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_75_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerSkipAction_execute = ($this, $lexer) => { - oavr_Lexer_skip($lexer); +onciu_RewritableJavascript$PROXY$9_76 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_76_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerSkipAction_hashCode = $this => { - let $hash; - $hash = oavrm_MurmurHash_initialize(); - oavra_LexerActionType_$callClinit(); - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update($hash, oavra_LexerActionType_SKIP.$ordinal), 1); +onciu_RewritableJavascript$PROXY$9_77 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_77_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oavra_LexerSkipAction_equals = ($this, $obj) => { - return $obj !== $this ? 0 : 1; +onciu_RewritableJavascript$PROXY$9_78 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_78_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; }, -oavra_LexerSkipAction_toString = $this => { - return $rt_s(6440); +onciu_RewritableJavascript$PROXY$9_79 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_79_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oavra_LexerSkipAction__clinit_ = () => { - oavra_LexerSkipAction_INSTANCE = new oavra_LexerSkipAction; -}; -function oavra_LexerTypeAction() { - jl_Object.call(this); - this.$type3 = 0; -} -let oavra_LexerTypeAction_isPositionDependent = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_80 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_80_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oavra_LexerTypeAction_execute = ($this, $lexer) => { - $lexer.$_type = $this.$type3; +onciu_RewritableJavascript$PROXY$9_81 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_81_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oavra_LexerTypeAction_hashCode = $this => { - let $hash; - $hash = oavrm_MurmurHash_initialize(); - oavra_LexerActionType_$callClinit(); - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update($hash, oavra_LexerActionType_TYPE.$ordinal), $this.$type3), 2); +onciu_RewritableJavascript$PROXY$9_82 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_82_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oavra_LexerTypeAction_equals = ($this, $obj) => { - if ($obj === $this) - return 1; - if (!($obj instanceof oavra_LexerTypeAction)) - return 0; - return $this.$type3 != $obj.$type3 ? 0 : 1; +onciu_RewritableJavascript$PROXY$9_83 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_83_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_84 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$9_84_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_85 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_85_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_86 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_86_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_87 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_87_numParameters = var$1 => { + return (jl_Integer_valueOf(7)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_88 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_88_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_89 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_89_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_90 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_90_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_91 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_91_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_92 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_92_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_93 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_93_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oavra_LexerTypeAction_toString = $this => { - let var$1; - var$1 = $rt_createArray(jl_Object, 1); - var$1.data[0] = jl_Integer_valueOf($this.$type3); - return jl_String_format($rt_s(6952), var$1); +onciu_RewritableJavascript$PROXY$11_60 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_60_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isAggregate); +onciu_RewritableJavascript$PROXY$11_61 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_61_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -oncifp_InternalSyntaxUsageStats = $rt_classWithoutFields(0), -oncifp_InternalSyntaxUsageStatsNoOp$ = $rt_classWithoutFields(), -oncifp_InternalSyntaxUsageStatsNoOp$_MODULE$ = null, -oncifp_InternalSyntaxUsageStatsNoOp$_$callClinit = () => { - oncifp_InternalSyntaxUsageStatsNoOp$_$callClinit = $rt_eraseClinit(oncifp_InternalSyntaxUsageStatsNoOp$); - oncifp_InternalSyntaxUsageStatsNoOp$__clinit_(); +onciu_RewritableJavascript$PROXY$11_62 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_62_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncifp_InternalSyntaxUsageStatsNoOp$__clinit_ = () => { - let var$1; - var$1 = new oncifp_InternalSyntaxUsageStatsNoOp$; - oncifp_InternalSyntaxUsageStatsNoOp$_$callClinit(); - oncifp_InternalSyntaxUsageStatsNoOp$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$11_63 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_63_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncipv_Cypher25ParserListener = $rt_classWithoutFields(0), -oncipv_AbstractCypher25AstBuilder = $rt_classWithoutFields(), -oncipv_AbstractCypher25AstBuilder_exitEveryRule = ($this, $ctx) => { - let var$2, var$3; - a: { - switch ($ctx.$getRuleIndex()) { - case 0: - break; - case 1: - oncipvaf_Cypher25AstBuilder_exitStatement($this, $ctx); - break a; - case 2: - oncipvaf_Cypher25AstBuilder_exitRegularQuery($this, $ctx); - break a; - case 3: - oncipvaf_Cypher25AstBuilder_exitSingleQuery($this, $ctx); - break a; - case 4: - oncipvaf_Cypher25AstBuilder_exitClause($this, $ctx); - break a; - case 5: - oncipvaf_Cypher25AstBuilder_exitUseClause($this, $ctx); - break a; - case 6: - oncipvaf_Cypher25AstBuilder_exitGraphReference($this, $ctx); - break a; - case 7: - oncipvaf_Cypher25AstBuilder_exitFinishClause($this, $ctx); - break a; - case 8: - oncipvaf_Cypher25AstBuilder_exitReturnClause($this, $ctx); - break a; - case 9: - oncipvaf_Cypher25AstBuilder_exitReturnBody($this, $ctx); - break a; - case 10: - oncipvaf_Cypher25AstBuilder_exitReturnItem($this, $ctx); - break a; - case 11: - oncipvaf_Cypher25AstBuilder_exitReturnItems($this, $ctx); - break a; - case 12: - oncipvaf_Cypher25AstBuilder_exitOrderItem($this, $ctx); - break a; - case 13: - oncipvaf_Cypher25AstBuilder_exitAscToken($this, $ctx); - break a; - case 14: - oncipvaf_Cypher25AstBuilder_exitDescToken($this, $ctx); - break a; - case 15: - oncipvaf_Cypher25AstBuilder_exitOrderBy($this, $ctx); - break a; - case 16: - oncipvaf_Cypher25AstBuilder_exitSkip($this, $ctx); - break a; - case 17: - oncipvaf_Cypher25AstBuilder_exitLimit($this, $ctx); - break a; - case 18: - oncipvaf_Cypher25AstBuilder_exitWhereClause($this, $ctx); - break a; - case 19: - oncipvaf_Cypher25AstBuilder_exitWithClause($this, $ctx); - break a; - case 20: - oncipvaf_Cypher25AstBuilder_exitCreateClause($this, $ctx); - break a; - case 21: - oncipvaf_Cypher25AstBuilder_exitInsertClause($this, $ctx); - break a; - case 22: - oncipvaf_Cypher25AstBuilder_exitSetClause($this, $ctx); - break a; - case 23: - oncipvaf_Cypher25AstBuilder_exitSetItem($this, $ctx); - break a; - case 24: - oncipvaf_Cypher25AstBuilder_exitRemoveClause($this, $ctx); - break a; - case 25: - oncipvaf_Cypher25AstBuilder_exitRemoveItem($this, $ctx); - break a; - case 26: - oncipvaf_Cypher25AstBuilder_exitDeleteClause($this, $ctx); - break a; - case 27: - oncipvaf_Cypher25AstBuilder_exitMatchClause($this, $ctx); - break a; - case 28: - oncipvaf_Cypher25AstBuilder_exitMatchMode($this, $ctx); - break a; - case 29: - oncipvaf_Cypher25AstBuilder_exitHint($this, $ctx); - break a; - case 30: - oncipvaf_Cypher25AstBuilder_exitMergeClause($this, $ctx); - break a; - case 31: - oncipvaf_Cypher25AstBuilder_exitMergeAction($this, $ctx); - break a; - case 32: - oncipvaf_Cypher25AstBuilder_exitUnwindClause($this, $ctx); - break a; - case 33: - oncipvaf_Cypher25AstBuilder_exitCallClause($this, $ctx); - break a; - case 34: - oncipvaf_Cypher25AstBuilder_exitProcedureName($this, $ctx); - break a; - case 35: - oncipvaf_Cypher25AstBuilder_exitProcedureArgument($this, $ctx); - break a; - case 36: - oncipvaf_Cypher25AstBuilder_exitProcedureResultItem($this, $ctx); - break a; - case 37: - oncipvaf_Cypher25AstBuilder_exitLoadCSVClause($this, $ctx); - break a; - case 38: - oncipvaf_Cypher25AstBuilder_exitForeachClause($this, $ctx); - break a; - case 39: - oncipvaf_Cypher25AstBuilder_exitSubqueryClause($this, $ctx); - break a; - case 40: - oncipvaf_Cypher25AstBuilder_exitSubqueryScope($this, $ctx); - break a; - case 41: - oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsParameters($this, $ctx); - break a; - case 42: - oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsBatchParameters($this, $ctx); - break a; - case 43: - oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsErrorParameters($this, $ctx); - break a; - case 44: - oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsReportParameters($this, $ctx); - break a; - case 45: - oncipvaf_Cypher25AstBuilder_exitOrderBySkipLimitClause($this, $ctx); - break a; - case 46: - oncipvaf_Cypher25AstBuilder_exitPatternList($this, $ctx); - break a; - case 47: - oncipvaf_Cypher25AstBuilder_exitInsertPatternList($this, $ctx); - break a; - case 48: - oncipvaf_Cypher25AstBuilder_exitPattern($this, $ctx); - break a; - case 49: - oncipvaf_Cypher25AstBuilder_exitInsertPattern($this, $ctx); - break a; - case 50: - oncipvaf_Cypher25AstBuilder_exitQuantifier($this, $ctx); - break a; - case 51: - oncipvaf_Cypher25AstBuilder_exitAnonymousPattern($this, $ctx); - break a; - case 52: - oncipvaf_Cypher25AstBuilder_exitShortestPathPattern($this, $ctx); - break a; - case 53: - oncipvaf_Cypher25AstBuilder_exitPatternElement($this, $ctx); - break a; - case 54: - oncipvaf_Cypher25AstBuilder_exitSelector($this, $ctx); - break a; - case 55: - oncipvaf_Cypher25AstBuilder_exitGroupToken($this, $ctx); - break a; - case 56: - oncipvaf_Cypher25AstBuilder_exitPathToken($this, $ctx); - break a; - case 57: - oncipvaf_Cypher25AstBuilder_exitPathPatternNonEmpty($this, $ctx); - break a; - case 58: - oncipvaf_Cypher25AstBuilder_exitNodePattern($this, $ctx); - break a; - case 59: - oncipvaf_Cypher25AstBuilder_exitInsertNodePattern($this, $ctx); - break a; - case 60: - oncipvaf_Cypher25AstBuilder_exitParenthesizedPath($this, $ctx); - break a; - case 61: - oncipvaf_Cypher25AstBuilder_exitNodeLabels($this, $ctx); - break a; - case 62: - oncipvaf_Cypher25AstBuilder_exitNodeLabelsIs($this, $ctx); - break a; - case 63: - oncipvaf_Cypher25AstBuilder_exitDynamicExpression($this, $ctx); - break a; - case 64: - oncipvaf_Cypher25AstBuilder_exitDynamicAnyAllExpression($this, $ctx); - break a; - case 65: - oncipvaf_Cypher25AstBuilder_exitDynamicLabelType($this, $ctx); - break a; - case 66: - oncipvaf_Cypher25AstBuilder_exitLabelType($this, $ctx); - break a; - case 67: - oncipvaf_Cypher25AstBuilder_exitRelType($this, $ctx); - break a; - case 68: - oncipvaf_Cypher25AstBuilder_exitLabelOrRelType($this, $ctx); - break a; - case 69: - oncipvaf_Cypher25AstBuilder_exitProperties($this, $ctx); - break a; - case 70: - oncipvaf_Cypher25AstBuilder_exitRelationshipPattern($this, $ctx); - break a; - case 71: - oncipvaf_Cypher25AstBuilder_exitInsertRelationshipPattern($this, $ctx); - break a; - case 72: - oncipvaf_Cypher25AstBuilder_exitLeftArrow($this, $ctx); - break a; - case 73: - oncipvaf_Cypher25AstBuilder_exitArrowLine($this, $ctx); - break a; - case 74: - oncipvaf_Cypher25AstBuilder_exitRightArrow($this, $ctx); - break a; - case 75: - oncipvaf_Cypher25AstBuilder_exitPathLength($this, $ctx); - break a; - case 76: - oncipvaf_Cypher25AstBuilder_exitLabelExpression($this, $ctx); - break a; - case 77: - oncipvaf_Cypher25AstBuilder_exitLabelExpression4($this, $ctx); - break a; - case 78: - oncipvaf_Cypher25AstBuilder_exitLabelExpression4Is($this, $ctx); - break a; - case 79: - oncipvaf_Cypher25AstBuilder_exitLabelExpression3($this, $ctx); - break a; - case 80: - oncipvaf_Cypher25AstBuilder_exitLabelExpression3Is($this, $ctx); - break a; - case 81: - oncipvaf_Cypher25AstBuilder_exitLabelExpression2($this, $ctx); - break a; - case 82: - oncipvaf_Cypher25AstBuilder_exitLabelExpression2Is($this, $ctx); - break a; - case 83: - oncipvaf_Cypher25AstBuilder_exitLabelExpression1($this, $ctx); - break a; - case 84: - oncipvaf_Cypher25AstBuilder_exitLabelExpression1Is($this, $ctx); - break a; - case 85: - oncipvaf_Cypher25AstBuilder_exitInsertNodeLabelExpression($this, $ctx); - break a; - case 86: - oncipvaf_Cypher25AstBuilder_exitInsertRelationshipLabelExpression($this, $ctx); - break a; - case 87: - oncipvaf_Cypher25AstBuilder_exitExpression($this, $ctx); - break a; - case 88: - oncipvaf_Cypher25AstBuilder_exitExpression11($this, $ctx); - break a; - case 89: - oncipvaf_Cypher25AstBuilder_exitExpression10($this, $ctx); - break a; - case 90: - oncipvaf_Cypher25AstBuilder_exitExpression9($this, $ctx); - break a; - case 91: - oncipvaf_Cypher25AstBuilder_exitExpression8($this, $ctx); - break a; - case 92: - oncipvaf_Cypher25AstBuilder_exitExpression7($this, $ctx); - break a; - case 93: - oncipvaf_Cypher25AstBuilder_exitComparisonExpression6($this, $ctx); - break a; - case 94: - oncipvaf_Cypher25AstBuilder_exitNormalForm($this, $ctx); - break a; - case 95: - oncipvaf_Cypher25AstBuilder_exitExpression6($this, $ctx); - break a; - case 96: - oncipvaf_Cypher25AstBuilder_exitExpression5($this, $ctx); - break a; - case 97: - oncipvaf_Cypher25AstBuilder_exitExpression4($this, $ctx); - break a; - case 98: - oncipvaf_Cypher25AstBuilder_exitExpression3($this, $ctx); - break a; - case 99: - oncipvaf_Cypher25AstBuilder_exitExpression2($this, $ctx); - break a; - case 100: - oncipvaf_Cypher25AstBuilder_exitPostFix($this, $ctx); - break a; - case 101: - oncipvaf_Cypher25AstBuilder_exitProperty($this, $ctx); - break a; - case 102: - oncipvaf_Cypher25AstBuilder_exitDynamicProperty($this, $ctx); - break a; - case 103: - oncipvaf_Cypher25AstBuilder_exitPropertyExpression($this, $ctx); - break a; - case 104: - oncipvaf_Cypher25AstBuilder_exitDynamicPropertyExpression($this, $ctx); - break a; - case 105: - oncipvaf_Cypher25AstBuilder_exitExpression1($this, $ctx); - break a; - case 106: - oncipvaf_Cypher25AstBuilder_exitLiteral($this, $ctx); - break a; - case 107: - oncipvaf_Cypher25AstBuilder_exitCaseExpression($this, $ctx); - break a; - case 108: - oncipvaf_Cypher25AstBuilder_exitCaseAlternative($this, $ctx); - break a; - case 109: - oncipvaf_Cypher25AstBuilder_exitExtendedCaseExpression($this, $ctx); - break a; - case 110: - oncipvaf_Cypher25AstBuilder_exitExtendedCaseAlternative($this, $ctx); - break a; - case 111: - oncipvaf_Cypher25AstBuilder_exitExtendedWhen($this, $ctx); - break a; - case 112: - oncipvaf_Cypher25AstBuilder_exitListComprehension($this, $ctx); - break a; - case 113: - oncipvaf_Cypher25AstBuilder_exitPatternComprehension($this, $ctx); - break a; - case 114: - oncipvaf_Cypher25AstBuilder_exitReduceExpression($this, $ctx); - break a; - case 115: - oncipvaf_Cypher25AstBuilder_exitListItemsPredicate($this, $ctx); - break a; - case 116: - oncipvaf_Cypher25AstBuilder_exitNormalizeFunction($this, $ctx); - break a; - case 117: - oncipvaf_Cypher25AstBuilder_exitTrimFunction($this, $ctx); - break a; - case 118: - oncipvaf_Cypher25AstBuilder_exitPatternExpression($this, $ctx); - break a; - case 119: - oncipvaf_Cypher25AstBuilder_exitShortestPathExpression($this, $ctx); - break a; - case 120: - oncipvaf_Cypher25AstBuilder_exitParenthesizedExpression($this, $ctx); - break a; - case 121: - oncipvaf_Cypher25AstBuilder_exitMapProjection($this, $ctx); - break a; - case 122: - oncipvaf_Cypher25AstBuilder_exitMapProjectionElement($this, $ctx); - break a; - case 123: - oncipvaf_Cypher25AstBuilder_exitCountStar($this, $ctx); - break a; - case 124: - oncipvaf_Cypher25AstBuilder_exitExistsExpression($this, $ctx); - break a; - case 125: - oncipvaf_Cypher25AstBuilder_exitCountExpression($this, $ctx); - break a; - case 126: - oncipvaf_Cypher25AstBuilder_exitCollectExpression($this, $ctx); - break a; - case 127: - oncipvaf_Cypher25AstBuilder_exitNumberLiteral($this, $ctx); - break a; - case 128: - oncipvaf_Cypher25AstBuilder_exitSignedIntegerLiteral($this, $ctx); - break a; - case 129: - oncipvaf_Cypher25AstBuilder_exitListLiteral($this, $ctx); - break a; - case 130: - oncipvaf_Cypher25AstBuilder_exitPropertyKeyName($this, $ctx); - break a; - case 131: - oncipvaf_Cypher25AstBuilder_exitParameter($this, $ctx); - break a; - case 132: - oncipvaf_Cypher25AstBuilder_exitParameterName($this, $ctx); - break a; - case 133: - oncipvaf_Cypher25AstBuilder_exitFunctionInvocation($this, $ctx); - break a; - case 134: - oncipvaf_Cypher25AstBuilder_exitFunctionArgument($this, $ctx); - break a; - case 135: - oncipvaf_Cypher25AstBuilder_exitFunctionName($this, $ctx); - break a; - case 136: - oncipvaf_Cypher25AstBuilder_exitNamespace($this, $ctx); - break a; - case 137: - oncipvaf_Cypher25AstBuilder_exitVariable($this, $ctx); - break a; - case 138: - oncipvaf_Cypher25AstBuilder_exitNonEmptyNameList($this, $ctx); - break a; - case 139: - oncipvaf_Cypher25AstBuilder_exitType($this, $ctx); - break a; - case 140: - oncipvaf_Cypher25AstBuilder_exitTypePart($this, $ctx); - break a; - case 141: - oncipvaf_Cypher25AstBuilder_exitTypeName($this, $ctx); - break a; - case 142: - oncipvaf_Cypher25AstBuilder_exitTypeNullability($this, $ctx); - break a; - case 143: - oncipvaf_Cypher25AstBuilder_exitTypeListSuffix($this, $ctx); - break a; - case 144: - oncipvaf_Cypher25AstBuilder_exitCommand($this, $ctx); - break a; - case 145: - oncipvaf_Cypher25AstBuilder_exitCreateCommand($this, $ctx); - break a; - case 146: - oncipvaf_Cypher25AstBuilder_exitDropCommand($this, $ctx); - break a; - case 147: - oncipvaf_Cypher25AstBuilder_exitShowCommand($this, $ctx); - break a; - case 148: - oncipvaf_Cypher25AstBuilder_exitShowCommandYield($this, $ctx); - break a; - case 149: - oncipvaf_Cypher25AstBuilder_exitYieldItem($this, $ctx); - break a; - case 150: - oncipvaf_Cypher25AstBuilder_exitYieldSkip($this, $ctx); - break a; - case 151: - oncipvaf_Cypher25AstBuilder_exitYieldLimit($this, $ctx); - break a; - case 152: - oncipvaf_Cypher25AstBuilder_exitYieldClause($this, $ctx); - break a; - case 153: - oncipvaf_Cypher25AstBuilder_exitCommandOptions($this, $ctx); - break a; - case 154: - oncipvaf_Cypher25AstBuilder_exitTerminateCommand($this, $ctx); - break a; - case 155: - oncipvaf_Cypher25AstBuilder_exitComposableCommandClauses($this, $ctx); - break a; - case 156: - oncipvaf_Cypher25AstBuilder_exitComposableShowCommandClauses($this, $ctx); - break a; - case 157: - oncipvaf_Cypher25AstBuilder_exitShowIndexCommand($this, $ctx); - break a; - case 158: - oncipvaf_Cypher25AstBuilder_exitShowIndexType($this, $ctx); - break a; - case 159: - oncipvaf_Cypher25AstBuilder_exitShowIndexesEnd($this, $ctx); - break a; - case 160: - oncipvaf_Cypher25AstBuilder_exitShowConstraintCommand($this, $ctx); - break a; - case 161: - oncipvaf_Cypher25AstBuilder_exitShowConstraintEntity($this, $ctx); - break a; - case 162: - oncipvaf_Cypher25AstBuilder_exitConstraintExistType($this, $ctx); - break a; - case 163: - oncipvaf_Cypher25AstBuilder_exitShowConstraintsEnd($this, $ctx); - break a; - case 164: - oncipvaf_Cypher25AstBuilder_exitShowProcedures($this, $ctx); - break a; - case 165: - oncipvaf_Cypher25AstBuilder_exitShowFunctions($this, $ctx); - break a; - case 166: - oncipvaf_Cypher25AstBuilder_exitFunctionToken($this, $ctx); - break a; - case 167: - oncipvaf_Cypher25AstBuilder_exitExecutableBy($this, $ctx); - break a; - case 168: - oncipvaf_Cypher25AstBuilder_exitShowFunctionsType($this, $ctx); - break a; - case 169: - oncipvaf_Cypher25AstBuilder_exitShowTransactions($this, $ctx); - break a; - case 170: - oncipvaf_Cypher25AstBuilder_exitTerminateTransactions($this, $ctx); - break a; - case 171: - oncipvaf_Cypher25AstBuilder_exitShowSettings($this, $ctx); - break a; - case 172: - oncipvaf_Cypher25AstBuilder_exitSettingToken($this, $ctx); - break a; - case 173: - oncipvaf_Cypher25AstBuilder_exitNamesAndClauses($this, $ctx); - break a; - case 174: - oncipvaf_Cypher25AstBuilder_exitStringsOrExpression($this, $ctx); - break a; - case 175: - oncipvaf_Cypher25AstBuilder_exitCommandNodePattern($this, $ctx); - break a; - case 176: - oncipvaf_Cypher25AstBuilder_exitCommandRelPattern($this, $ctx); - break a; - case 177: - oncipvaf_Cypher25AstBuilder_exitCreateConstraint($this, $ctx); - break a; - case 178: - oncipvaf_Cypher25AstBuilder_exitConstraintType($this, $ctx); - break a; - case 179: - oncipvaf_Cypher25AstBuilder_exitDropConstraint($this, $ctx); - break a; - case 180: - oncipvaf_Cypher25AstBuilder_exitCreateIndex($this, $ctx); - break a; - case 181: - oncipvaf_Cypher25AstBuilder_exitCreateIndex_($this, $ctx); - break a; - case 182: - oncipvaf_Cypher25AstBuilder_exitCreateFulltextIndex($this, $ctx); - break a; - case 183: - oncipvaf_Cypher25AstBuilder_exitFulltextNodePattern($this, $ctx); - break a; - case 184: - oncipvaf_Cypher25AstBuilder_exitFulltextRelPattern($this, $ctx); - break a; - case 185: - oncipvaf_Cypher25AstBuilder_exitCreateLookupIndex($this, $ctx); - break a; - case 186: - oncipvaf_Cypher25AstBuilder_exitLookupIndexNodePattern($this, $ctx); - break a; - case 187: - oncipvaf_Cypher25AstBuilder_exitLookupIndexRelPattern($this, $ctx); - break a; - case 188: - oncipvaf_Cypher25AstBuilder_exitDropIndex($this, $ctx); - break a; - case 189: - oncipvaf_Cypher25AstBuilder_exitPropertyList($this, $ctx); - break a; - case 190: - oncipvaf_Cypher25AstBuilder_exitEnclosedPropertyList($this, $ctx); - break a; - case 191: - oncipvaf_Cypher25AstBuilder_exitAlterCommand($this, $ctx); - break a; - case 192: - oncipvaf_Cypher25AstBuilder_exitRenameCommand($this, $ctx); - break a; - case 193: - oncipvaf_Cypher25AstBuilder_exitGrantCommand($this, $ctx); - break a; - case 194: - oncipvaf_Cypher25AstBuilder_exitDenyCommand($this, $ctx); - break a; - case 195: - oncipvaf_Cypher25AstBuilder_exitRevokeCommand($this, $ctx); - break a; - case 196: - oncipvaf_Cypher25AstBuilder_exitUserNames($this, $ctx); - break a; - case 197: - oncipvaf_Cypher25AstBuilder_exitRoleNames($this, $ctx); - break a; - case 198: - oncipvaf_Cypher25AstBuilder_exitRoleToken($this, $ctx); - break a; - case 199: - oncipvaf_Cypher25AstBuilder_exitEnableServerCommand($this, $ctx); - break a; - case 200: - oncipvaf_Cypher25AstBuilder_exitAlterServer($this, $ctx); - break a; - case 201: - oncipvaf_Cypher25AstBuilder_exitRenameServer($this, $ctx); - break a; - case 202: - oncipvaf_Cypher25AstBuilder_exitDropServer($this, $ctx); - break a; - case 203: - oncipvaf_Cypher25AstBuilder_exitShowServers($this, $ctx); - break a; - case 204: - oncipvaf_Cypher25AstBuilder_exitAllocationCommand($this, $ctx); - break a; - case 205: - oncipvaf_Cypher25AstBuilder_exitDeallocateDatabaseFromServers($this, $ctx); - break a; - case 206: - oncipvaf_Cypher25AstBuilder_exitReallocateDatabases($this, $ctx); - break a; - case 207: - oncipvaf_Cypher25AstBuilder_exitCreateRole($this, $ctx); - break a; - case 208: - oncipvaf_Cypher25AstBuilder_exitDropRole($this, $ctx); - break a; - case 209: - oncipvaf_Cypher25AstBuilder_exitRenameRole($this, $ctx); - break a; - case 210: - oncipvaf_Cypher25AstBuilder_exitShowRoles($this, $ctx); - break a; - case 211: - oncipvaf_Cypher25AstBuilder_exitGrantRole($this, $ctx); - break a; - case 212: - oncipvaf_Cypher25AstBuilder_exitRevokeRole($this, $ctx); - break a; - case 213: - oncipvaf_Cypher25AstBuilder_exitCreateUser($this, $ctx); - break a; - case 214: - oncipvaf_Cypher25AstBuilder_exitDropUser($this, $ctx); - break a; - case 215: - oncipvaf_Cypher25AstBuilder_exitRenameUser($this, $ctx); - break a; - case 216: - oncipvaf_Cypher25AstBuilder_exitAlterCurrentUser($this, $ctx); - break a; - case 217: - oncipvaf_Cypher25AstBuilder_exitAlterUser($this, $ctx); - break a; - case 218: - oncipvaf_Cypher25AstBuilder_exitRemoveNamedProvider($this, $ctx); - break a; - case 219: - oncipvaf_Cypher25AstBuilder_exitPassword($this, $ctx); - break a; - case 220: - oncipvaf_Cypher25AstBuilder_exitPasswordOnly($this, $ctx); - break a; - case 221: - oncipvaf_Cypher25AstBuilder_exitPasswordExpression($this, $ctx); - break a; - case 222: - oncipvaf_Cypher25AstBuilder_exitPasswordChangeRequired($this, $ctx); - break a; - case 223: - oncipvaf_Cypher25AstBuilder_exitUserStatus($this, $ctx); - break a; - case 224: - oncipvaf_Cypher25AstBuilder_exitHomeDatabase($this, $ctx); - break a; - case 225: - oncipvaf_Cypher25AstBuilder_exitSetAuthClause($this, $ctx); - break a; - case 226: - oncipvaf_Cypher25AstBuilder_exitUserAuthAttribute($this, $ctx); - break a; - case 227: - oncipvaf_Cypher25AstBuilder_exitShowUsers($this, $ctx); - break a; - case 228: - oncipvaf_Cypher25AstBuilder_exitShowCurrentUser($this, $ctx); - break a; - case 229: - oncipvaf_Cypher25AstBuilder_exitShowSupportedPrivileges($this, $ctx); - break a; - case 230: - oncipvaf_Cypher25AstBuilder_exitShowPrivileges($this, $ctx); - break a; - case 231: - oncipvaf_Cypher25AstBuilder_exitShowRolePrivileges($this, $ctx); - break a; - case 232: - oncipvaf_Cypher25AstBuilder_exitShowUserPrivileges($this, $ctx); - break a; - case 233: - oncipvaf_Cypher25AstBuilder_exitPrivilegeAsCommand($this, $ctx); - break a; - case 234: - oncipvaf_Cypher25AstBuilder_exitPrivilegeToken($this, $ctx); - break a; - case 235: - oncipvaf_Cypher25AstBuilder_exitPrivilege($this, $ctx); - break a; - case 236: - oncipvaf_Cypher25AstBuilder_exitAllPrivilege($this, $ctx); - break a; - case 237: - oncipvaf_Cypher25AstBuilder_exitAllPrivilegeType($this, $ctx); - break a; - case 238: - oncipvaf_Cypher25AstBuilder_exitAllPrivilegeTarget($this, $ctx); - break a; - case 239: - oncipvaf_Cypher25AstBuilder_exitCreatePrivilege($this, $ctx); - break a; - case 240: - oncipvaf_Cypher25AstBuilder_exitCreatePrivilegeForDatabase($this, $ctx); - break a; - case 241: - oncipvaf_Cypher25AstBuilder_exitCreateNodePrivilegeToken($this, $ctx); - break a; - case 242: - oncipvaf_Cypher25AstBuilder_exitCreateRelPrivilegeToken($this, $ctx); - break a; - case 243: - oncipvaf_Cypher25AstBuilder_exitCreatePropertyPrivilegeToken($this, $ctx); - break a; - case 244: - oncipvaf_Cypher25AstBuilder_exitActionForDBMS($this, $ctx); - break a; - case 245: - oncipvaf_Cypher25AstBuilder_exitDropPrivilege($this, $ctx); - break a; - case 246: - oncipvaf_Cypher25AstBuilder_exitLoadPrivilege($this, $ctx); - break a; - case 247: - oncipvaf_Cypher25AstBuilder_exitShowPrivilege($this, $ctx); - break a; - case 248: - oncipvaf_Cypher25AstBuilder_exitSetPrivilege($this, $ctx); - break a; - case 249: - oncipvaf_Cypher25AstBuilder_exitPasswordToken($this, $ctx); - break a; - case 250: - oncipvaf_Cypher25AstBuilder_exitRemovePrivilege($this, $ctx); - break a; - case 251: - oncipvaf_Cypher25AstBuilder_exitWritePrivilege($this, $ctx); - break a; - case 252: - oncipvaf_Cypher25AstBuilder_exitDatabasePrivilege($this, $ctx); - break a; - case 253: - oncipvaf_Cypher25AstBuilder_exitDbmsPrivilege($this, $ctx); - break a; - case 254: - oncipvaf_Cypher25AstBuilder_exitDbmsPrivilegeExecute($this, $ctx); - break a; - case 255: - oncipvaf_Cypher25AstBuilder_exitAdminToken($this, $ctx); - break a; - case 256: - oncipvaf_Cypher25AstBuilder_exitProcedureToken($this, $ctx); - break a; - case 257: - oncipvaf_Cypher25AstBuilder_exitIndexToken($this, $ctx); - break a; - case 258: - oncipvaf_Cypher25AstBuilder_exitConstraintToken($this, $ctx); - break a; - case 259: - oncipvaf_Cypher25AstBuilder_exitTransactionToken($this, $ctx); - break a; - case 260: - oncipvaf_Cypher25AstBuilder_exitUserQualifier($this, $ctx); - break a; - case 261: - oncipvaf_Cypher25AstBuilder_exitExecuteFunctionQualifier($this, $ctx); - break a; - case 262: - oncipvaf_Cypher25AstBuilder_exitExecuteProcedureQualifier($this, $ctx); - break a; - case 263: - oncipvaf_Cypher25AstBuilder_exitSettingQualifier($this, $ctx); - break a; - case 264: - oncipvaf_Cypher25AstBuilder_exitGlobs($this, $ctx); - break a; - case 265: - oncipvaf_Cypher25AstBuilder_exitGlob($this, $ctx); - break a; - case 266: - oncipvaf_Cypher25AstBuilder_exitGlobRecursive($this, $ctx); - break a; - case 267: - oncipvaf_Cypher25AstBuilder_exitGlobPart($this, $ctx); - break a; - case 268: - oncipvaf_Cypher25AstBuilder_exitQualifiedGraphPrivilegesWithProperty($this, $ctx); - break a; - case 269: - oncipvaf_Cypher25AstBuilder_exitQualifiedGraphPrivileges($this, $ctx); - break a; - case 270: - oncipvaf_Cypher25AstBuilder_exitLabelsResource($this, $ctx); - break a; - case 271: - oncipvaf_Cypher25AstBuilder_exitPropertiesResource($this, $ctx); - break a; - case 272: - oncipvaf_Cypher25AstBuilder_exitNonEmptyStringList($this, $ctx); - break a; - case 273: - oncipvaf_Cypher25AstBuilder_exitGraphQualifier($this, $ctx); - break a; - case 274: - oncipvaf_Cypher25AstBuilder_exitGraphQualifierToken($this, $ctx); - break a; - case 275: - oncipvaf_Cypher25AstBuilder_exitRelToken($this, $ctx); - break a; - case 276: - oncipvaf_Cypher25AstBuilder_exitElementToken($this, $ctx); - break a; - case 277: - oncipvaf_Cypher25AstBuilder_exitNodeToken($this, $ctx); - break a; - case 278: - oncipvaf_Cypher25AstBuilder_exitDatabaseScope($this, $ctx); - break a; - case 279: - oncipvaf_Cypher25AstBuilder_exitGraphScope($this, $ctx); - break a; - case 280: - oncipvaf_Cypher25AstBuilder_exitCreateCompositeDatabase($this, $ctx); - break a; - case 281: - oncipvaf_Cypher25AstBuilder_exitCreateDatabase($this, $ctx); - break a; - case 282: - oncipvaf_Cypher25AstBuilder_exitPrimaryTopology($this, $ctx); - break a; - case 283: - oncipvaf_Cypher25AstBuilder_exitPrimaryToken($this, $ctx); - break a; - case 284: - oncipvaf_Cypher25AstBuilder_exitSecondaryTopology($this, $ctx); - break a; - case 285: - oncipvaf_Cypher25AstBuilder_exitSecondaryToken($this, $ctx); - break a; - case 286: - oncipvaf_Cypher25AstBuilder_exitDropDatabase($this, $ctx); - break a; - case 287: - oncipvaf_Cypher25AstBuilder_exitAliasAction($this, $ctx); - break a; - case 288: - oncipvaf_Cypher25AstBuilder_exitAlterDatabase($this, $ctx); - break a; - case 289: - oncipvaf_Cypher25AstBuilder_exitAlterDatabaseAccess($this, $ctx); - break a; - case 290: - oncipvaf_Cypher25AstBuilder_exitAlterDatabaseTopology($this, $ctx); - break a; - case 291: - oncipvaf_Cypher25AstBuilder_exitAlterDatabaseOption($this, $ctx); - break a; - case 292: - oncipvaf_Cypher25AstBuilder_exitStartDatabase($this, $ctx); - break a; - case 293: - oncipvaf_Cypher25AstBuilder_exitStopDatabase($this, $ctx); - break a; - case 294: - oncipvaf_Cypher25AstBuilder_exitWaitClause($this, $ctx); - break a; - case 295: - oncipvaf_Cypher25AstBuilder_exitSecondsToken($this, $ctx); - break a; - case 296: - oncipvaf_Cypher25AstBuilder_exitShowDatabase($this, $ctx); - break a; - case 297: - oncipvaf_Cypher25AstBuilder_exitAliasName($this, $ctx); - break a; - case 298: - oncipvaf_Cypher25AstBuilder_exitDatabaseName($this, $ctx); - break a; - case 299: - oncipvaf_Cypher25AstBuilder_exitCreateAlias($this, $ctx); - break a; - case 300: - oncipvaf_Cypher25AstBuilder_exitDropAlias($this, $ctx); - break a; - case 301: - oncipvaf_Cypher25AstBuilder_exitAlterAlias($this, $ctx); - break a; - case 302: - oncipvaf_Cypher25AstBuilder_exitAlterAliasTarget($this, $ctx); - break a; - case 303: - oncipvaf_Cypher25AstBuilder_exitAlterAliasUser($this, $ctx); - break a; - case 304: - oncipvaf_Cypher25AstBuilder_exitAlterAliasPassword($this, $ctx); - break a; - case 305: - oncipvaf_Cypher25AstBuilder_exitAlterAliasDriver($this, $ctx); - break a; - case 306: - oncipvaf_Cypher25AstBuilder_exitAlterAliasProperties($this, $ctx); - break a; - case 307: - oncipvaf_Cypher25AstBuilder_exitShowAliases($this, $ctx); - break a; - case 308: - oncipvaf_Cypher25AstBuilder_exitSymbolicNameOrStringParameter($this, $ctx); - break a; - case 309: - oncipvaf_Cypher25AstBuilder_exitCommandNameExpression($this, $ctx); - break a; - case 310: - oncipvaf_Cypher25AstBuilder_exitSymbolicNameOrStringParameterList($this, $ctx); - break a; - case 311: - oncipvaf_Cypher25AstBuilder_exitSymbolicAliasNameList($this, $ctx); - break a; - case 312: - oncipvaf_Cypher25AstBuilder_exitSymbolicAliasNameOrParameter($this, $ctx); - break a; - case 313: - oncipvaf_Cypher25AstBuilder_exitSymbolicAliasName($this, $ctx); - break a; - case 314: - oncipvaf_Cypher25AstBuilder_exitStringListLiteral($this, $ctx); - break a; - case 315: - oncipvaf_Cypher25AstBuilder_exitStringList($this, $ctx); - break a; - case 316: - oncipvaf_Cypher25AstBuilder_exitStringLiteral($this, $ctx); - break a; - case 317: - oncipvaf_Cypher25AstBuilder_exitStringOrParameterExpression($this, $ctx); - break a; - case 318: - oncipvaf_Cypher25AstBuilder_exitStringOrParameter($this, $ctx); - break a; - case 319: - oncipvaf_Cypher25AstBuilder_exitMapOrParameter($this, $ctx); - break a; - case 320: - oncipvaf_Cypher25AstBuilder_exitMap($this, $ctx); - break a; - case 321: - oncipvaf_Cypher25AstBuilder_exitSymbolicNameString($this, $ctx); - break a; - case 322: - oncipvaf_Cypher25AstBuilder_exitEscapedSymbolicNameString($this, $ctx); - break a; - case 323: - oncipvaf_Cypher25AstBuilder_exitUnescapedSymbolicNameString($this, $ctx); - break a; - case 324: - oncipvaf_Cypher25AstBuilder_exitSymbolicLabelNameString($this, $ctx); - break a; - case 325: - oncipvaf_Cypher25AstBuilder_exitUnescapedLabelSymbolicNameString($this, $ctx); - break a; - case 326: - oncipvaf_Cypher25AstBuilder_exitUnescapedLabelSymbolicNameString_($this, $ctx); - break a; - case 327: - oncipvaf_Cypher25AstBuilder_exitEndOfFile($this, $ctx); - break a; - default: - var$2 = new jl_IllegalStateException; - var$3 = $ctx.$getRuleIndex(); - $ctx = jl_StringBuilder__init_(); - jl_StringBuilder_append0(jl_StringBuilder_append($ctx, $rt_s(6891)), var$3); - jl_IllegalStateException__init_(var$2, jl_StringBuilder_toString($ctx)); - $rt_throw(var$2); +onciu_RewritableJavascript$PROXY$11_64 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_64_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_65 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_65_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_66 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_66_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_67 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_67_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_68 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_68_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_69 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_69_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_70 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_70_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_71 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_71_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_72 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_72_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_73 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_73_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_74 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_74_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_75 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$11_75_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_76 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_76_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_77 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_77_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_78 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_78_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_79 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_79_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_80 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_80_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_81 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_81_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_82 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_82_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_83 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_83_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_84 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_84_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_85 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_85_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_86 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_86_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_87 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_87_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_88 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_88_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_89 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_89_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_90 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_90_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_91 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_91_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_92 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_92_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_93 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_93_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$7_492 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_492_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_NoneIterablePredicate__init_(var$3[0], var$3[1], var$3[2]); +}, +onciu_RewritableJavascript$PROXY$7_495 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_495_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_AnyIterablePredicate__init_(var$3[0], var$3[1], var$3[2]); +}, +onciu_RewritableJavascript$PROXY$7_528 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_528_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CreatePropertyTypeConstraint_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6], var$3[7], var$3[8]); +}, +onciu_RewritableJavascript$PROXY$7_540 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_540_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_SingleIterablePredicate__init_(var$3[0], var$3[1], var$3[2]); +}, +onciu_RewritableJavascript$PROXY$9_94 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_94_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_95 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_95_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_96 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$9_96_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_97 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_97_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_98 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_98_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_99 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_99_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_100 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_100_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_101 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_101_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_102 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_102_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_103 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_103_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_104 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_104_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_105 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_105_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_106 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_106_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_107 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_107_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_108 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_108_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_109 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_109_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_110 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_110_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_111 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_111_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_112 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_112_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_113 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_113_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_114 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_114_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_94 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_94_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_95 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_95_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_96 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_96_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_97 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_97_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_98 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_98_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_99 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_99_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_100 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$11_100_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_101 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_101_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_102 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_102_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_103 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_103_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_104 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_104_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_105 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_105_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_106 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_106_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_107 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_107_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_108 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_108_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_109 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_109_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_110 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_110_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_111 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_111_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_112 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_112_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_113 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_113_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_114 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_114_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$9_115 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_115_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_116 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_116_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_117 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_117_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_115 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_115_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_116 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_116_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_117 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_117_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$7_573 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_573_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_RelationshipChain_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +}; +function ju_GenericEnumSet$1() { + let a = this; jl_Object.call(a); + a.$index4 = 0; + a.$indexToRemove = 0; + a.$this$01 = null; +} +let ju_GenericEnumSet$1_find = $this => { + let $overflow, var$2, $next; + $overflow = $this.$this$01.$bits0.data.length * 32 | 0; + while (true) { + var$2 = $this.$index4; + if (var$2 >= $overflow) + break; + $next = jl_Integer_numberOfTrailingZeros($this.$this$01.$bits0.data[var$2 / 32 | 0] >>> (var$2 % 32 | 0) | 0); + if ($next < 32) { + $next = $this.$index4 + $next | 0; + $this.$index4 = $next; + return $next; } - oncipvaf_Cypher25AstBuilder_exitStatements($this, $ctx); + $this.$index4 = (($this.$index4 / 32 | 0) + 1 | 0) * 32 | 0; } + return var$2; }, -oncipvaf_LiteralBuilder = $rt_classWithoutFields(0), -oncipvaf_LabelExpressionBuilder0 = $rt_classWithoutFields(0), -oncipvaf_LabelExpressionBuilder_exitLabelExpression1 = ($this, $ctx) => { - let var$2, var$3, $isLabel, var$5, var$6, var$7; +ju_GenericEnumSet$1_hasNext = $this => { + return $this.$index4 >= ($this.$this$01.$bits0.data.length * 32 | 0) ? 0 : 1; +}, +ju_GenericEnumSet$1_next = $this => { + let var$1, var$2, var$3; + if (!ju_GenericEnumSet$1_hasNext($this)) { + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + } + $this.$indexToRemove = $this.$index4; + var$2 = (ju_GenericEnumSet_getConstants($this.$this$01.$cls)).data; + var$3 = $this.$index4; + $this.$index4 = var$3 + 1 | 0; + var$1 = var$2[var$3]; + $this.$index4 = ju_GenericEnumSet$1_find($this); + return var$1; +}, +ju_HashMap$ValueIterator = $rt_classWithoutFields(ju_HashMap$AbstractMapIterator), +ju_HashMap$ValueIterator_next = $this => { + ju_HashMap$AbstractMapIterator_makeNext($this); + return $this.$currentEntry.$value9; +}; +function jusi_FilteringStreamImpl$wrap$lambda$_1_0() { + let a = this; jl_Object.call(a); + a.$_01150 = null; + a.$_140 = null; +} +let jusi_FilteringStreamImpl$wrap$lambda$_1_0_test = (var$0, var$1) => { + let var$2, var$3; + var$2 = var$0.$_140; + var$3 = var$1; + return (var$3 !== oncipcaf_HintIndexType_BTREE && var$3 !== oncipcaf_HintIndexType_ANY ? 1 : 0) ? var$2.$test0(var$1) : 1; +}; +function oncias_ExpressionTypeInfo() { + let a = this; jl_Object.call(a); + a.$actual0 = null; + a.$specified = null; + a.$expected1 = null; + a.$bitmap$044 = 0; +} +let oncias_ExpressionTypeInfo_expected = $this => { + return $this.$expected1; +}, +oncias_ExpressionTypeInfo_actual = $this => { + let var$1, $$je; + if ($this.$bitmap$044) + return $this.$actual0; + jl_Object_monitorEnterSync($this); a: { - if ($ctx instanceof oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext) - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelExpression4Context), 0)).$ast0; - else if ($ctx instanceof oncipv_Cypher25Parser$AnyLabelContext) { - var$3 = $ctx; - var$2 = new oncil_LabelExpression$Wildcard; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Wildcard__init_(var$2, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - } else { - if (!($ctx instanceof oncipv_Cypher25Parser$LabelNameContext)) { - if (!($ctx instanceof oncipv_Cypher25Parser$DynamicLabelContext)) { - var$3 = new jl_IllegalStateException; - jl_Throwable__init_0(var$3, $rt_s(6892)); - $rt_throw(var$3); - } - var$3 = $ctx; - $isLabel = oncipvaf_Cypher25AstBuilder_getIsLabel($this, var$3); - switch ($isLabel) { - case 1: - var$2 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression((oncipv_Cypher25Parser$DynamicLabelContext_dynamicAnyAllExpression(var$3)).$ast0), 0); - break a; - case 2: - var$2 = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression((oncipv_Cypher25Parser$DynamicLabelContext_dynamicAnyAllExpression(var$3)).$ast0), 0); - break a; - case 3: - var$2 = oncil_LabelExpression$DynamicLeaf__init_((oncipv_Cypher25Parser$DynamicLabelContext_dynamicAnyAllExpression(var$3)).$ast0, 0); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); - } - var$3 = $ctx; - $isLabel = oncipvaf_Cypher25AstBuilder_getIsLabel($this, var$3); - switch ($isLabel) { - case 1: - var$2 = new oncil_LabelExpression$Leaf; - var$5 = new oncie_LabelName; - var$6 = (oncipv_Cypher25Parser$LabelNameContext_symbolicNameString(var$3)).$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelName__init_0(var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - oncil_LabelExpression$Leaf__init_(var$2, var$5, 0); - break a; - case 2: - var$2 = new oncil_LabelExpression$Leaf; - var$7 = new oncie_RelTypeName; - var$5 = (oncipv_Cypher25Parser$LabelNameContext_symbolicNameString(var$3)).$ast0; - oncipau_Util$_$callClinit(); - oncie_RelTypeName__init_0(var$7, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - oncil_LabelExpression$Leaf__init_(var$2, var$7, 0); - break a; - case 3: - var$2 = new oncil_LabelExpression$Leaf; - var$7 = new oncie_LabelOrRelTypeName; - var$5 = (oncipv_Cypher25Parser$LabelNameContext_symbolicNameString(var$3)).$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelOrRelTypeName__init_0(var$7, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - oncil_LabelExpression$Leaf__init_(var$2, var$7, 0); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); + try { + if ($this.$bitmap$044) + break a; + $this.$actual0 = s_Option_fold(oncias_ExpressionTypeInfo_expected($this), oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0__init_0($this), oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1__init_0($this)); + $this.$bitmap$044 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - $ctx.$ast0 = var$2; + jl_Object_monitorExitSync($this); + return $this.$actual0; }, -oncipvaf_LabelExpressionBuilder_exitLabelExpression1Is = ($this, $ctx) => { - let $parent, $parent_0, $isLabel, var$5, var$6, var$7; +oncias_ExpressionTypeInfo_productPrefix = $this => { + return $rt_s(6420); +}, +oncias_ExpressionTypeInfo_productArity = $this => { + return 2; +}, +oncias_ExpressionTypeInfo_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$specified; + case 1: + return $this.$expected1; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncias_ExpressionTypeInfo_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_ExpressionTypeInfo_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_ExpressionTypeInfo_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncias_ExpressionTypeInfo_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - if ($ctx instanceof oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext) - $parent = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelExpression4IsContext), 0)).$ast0; - else if ($ctx instanceof oncipv_Cypher25Parser$AnyLabelIsContext) { - $parent_0 = $ctx; - $parent = new oncil_LabelExpression$Wildcard; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Wildcard__init_($parent, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent_0)); - } else { - if (!($ctx instanceof oncipv_Cypher25Parser$LabelNameIsContext)) { - if (!($ctx instanceof oncipv_Cypher25Parser$DynamicLabelIsContext)) { - $parent_0 = new jl_IllegalStateException; - jl_Throwable__init_0($parent_0, $rt_s(6910)); - $rt_throw($parent_0); - } - $parent_0 = $ctx; - $parent = $parent_0.$parent; - $isLabel = 0; - while (!$isLabel) { - if ($parent !== null && $parent.$getRuleIndex() != 100) { - if ($parent.$getRuleIndex() == 58) - $isLabel = 1; - else if ($parent.$getRuleIndex() == 70) - $isLabel = 2; + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_ExpressionTypeInfo) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$specified; + var$3 = $x$1.$specified; + if (var$2 !== null) { + if (!oncius_TypeSpec_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$expected1; + $x$1 = $x$1.$expected1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; else - $parent = $parent.$parent; - } else - $isLabel = 3; - } - switch ($isLabel) { - case 1: - $parent = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicLabelExpression((oncipv_Cypher25Parser$DynamicLabelIsContext_dynamicAnyAllExpression($parent_0)).$ast0), 1); - break a; - case 2: - $parent = oncil_LabelExpression$DynamicLeaf__init_(oncie_DynamicLabelOrRelTypeExpression_asDynamicRelTypeExpression((oncipv_Cypher25Parser$DynamicLabelIsContext_dynamicAnyAllExpression($parent_0)).$ast0), 1); - break a; - case 3: - $parent = oncil_LabelExpression$DynamicLeaf__init_((oncipv_Cypher25Parser$DynamicLabelIsContext_dynamicAnyAllExpression($parent_0)).$ast0, 1); - break a; - default: + break c; + } + if ($x$1 !== null) + break b; } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); - } - var$5 = $ctx; - $parent_0 = var$5.$parent; - $isLabel = 0; - while (!$isLabel) { - if ($parent_0 !== null && $parent_0.$getRuleIndex() != 100) { - if ($parent_0.$getRuleIndex() == 58) - $isLabel = 1; - else if ($parent_0.$getRuleIndex() == 70) - $isLabel = 2; - else - $parent_0 = $parent_0.$parent; - } else - $isLabel = 3; - } - switch ($isLabel) { - case 1: - $parent = new oncil_LabelExpression$Leaf; - var$6 = new oncie_LabelName; - var$7 = (oncipv_Cypher25Parser$LabelNameIsContext_symbolicLabelNameString(var$5)).$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelName__init_0(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); - oncil_LabelExpression$Leaf__init_($parent, var$6, 1); - break a; - case 2: - $parent = new oncil_LabelExpression$Leaf; - $parent_0 = new oncie_RelTypeName; - var$6 = (oncipv_Cypher25Parser$LabelNameIsContext_symbolicLabelNameString(var$5)).$ast0; - oncipau_Util$_$callClinit(); - oncie_RelTypeName__init_0($parent_0, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); - oncil_LabelExpression$Leaf__init_($parent, $parent_0, 1); - break a; - case 3: - $parent = new oncil_LabelExpression$Leaf; - $parent_0 = new oncie_LabelOrRelTypeName; - var$6 = (oncipv_Cypher25Parser$LabelNameIsContext_symbolicLabelNameString(var$5)).$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelOrRelTypeName__init_0($parent_0, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)); - oncil_LabelExpression$Leaf__init_($parent, $parent_0, 1); - break a; - default: } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($isLabel))); + var$4 = 1; + break a; } + var$4 = 0; } - $ctx.$ast0 = $parent; + return var$4; }, -oncipvaf_DdlBuilder = $rt_classWithoutFields(0), -oncipvaf_DdlBuilder_exitAlterUser = ($this, $ctx) => { - let $username, $nativePassAttributes, $suspended, $nativeAuthAttr, $removeHome, $homeDatabaseAction, $userOptions, $nativeAuth, $removeAuth, $setAuth; - $username = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0; - $nativePassAttributes = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0); +oncia_ShowConstraintsClause$ = $rt_classWithoutFields(), +oncia_ShowConstraintsClause$_MODULE$ = null, +oncia_ShowConstraintsClause$_idColumn = null, +oncia_ShowConstraintsClause$_nameColumn = null, +oncia_ShowConstraintsClause$_typeColumn = null, +oncia_ShowConstraintsClause$_entityTypeColumn = null, +oncia_ShowConstraintsClause$_labelsOrTypesColumn = null, +oncia_ShowConstraintsClause$_propertiesColumn = null, +oncia_ShowConstraintsClause$_enforcedLabelColumn = null, +oncia_ShowConstraintsClause$_classificationColumn0 = null, +oncia_ShowConstraintsClause$_ownedIndexColumn = null, +oncia_ShowConstraintsClause$_propertyTypeColumn = null, +oncia_ShowConstraintsClause$_optionsColumn = null, +oncia_ShowConstraintsClause$_createStatementColumn = null, +oncia_ShowConstraintsClause$_$callClinit = () => { + oncia_ShowConstraintsClause$_$callClinit = $rt_eraseClinit(oncia_ShowConstraintsClause$); + oncia_ShowConstraintsClause$__clinit_(); +}, +oncia_ShowConstraintsClause$__clinit_ = () => { + let var$1; + var$1 = new oncia_ShowConstraintsClause$; + oncia_ShowConstraintsClause$_$callClinit(); + oncia_ShowConstraintsClause$_MODULE$ = var$1; + oncia_ShowConstraintsClause$_idColumn = $rt_s(6144); + oncia_ShowConstraintsClause$_nameColumn = $rt_s(5567); + oncia_ShowConstraintsClause$_typeColumn = $rt_s(4729); + oncia_ShowConstraintsClause$_entityTypeColumn = $rt_s(1165); + oncia_ShowConstraintsClause$_labelsOrTypesColumn = $rt_s(6421); + oncia_ShowConstraintsClause$_propertiesColumn = $rt_s(4662); + oncia_ShowConstraintsClause$_enforcedLabelColumn = $rt_s(6422); + oncia_ShowConstraintsClause$_classificationColumn0 = $rt_s(6423); + oncia_ShowConstraintsClause$_ownedIndexColumn = $rt_s(6424); + oncia_ShowConstraintsClause$_propertyTypeColumn = $rt_s(6425); + oncia_ShowConstraintsClause$_optionsColumn = $rt_s(5852); + oncia_ShowConstraintsClause$_createStatementColumn = $rt_s(6426); +}, +oncia_ShowConstraintsClause$_enforcedLabelColumn0 = $this => { + oncia_ShowConstraintsClause$_$callClinit(); + return oncia_ShowConstraintsClause$_enforcedLabelColumn; +}, +oncia_ShowConstraintsClause$_classificationColumn = $this => { + oncia_ShowConstraintsClause$_$callClinit(); + return oncia_ShowConstraintsClause$_classificationColumn0; +}, +oncia_ShowConstraintsClause$_apply = ($this, $constraintType, $where, $yieldItems, $yieldAll, $yieldWith, $returnCypher5Columns, $position) => { + let var$8, var$9, var$10, var$11, $allColumns, var$13, $columns, $briefColumns; s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - $nativePassAttributes = sci_List_foldLeft($nativePassAttributes, sci_Nil$_MODULE$, new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1); - $nativePassAttributes = sci_List_foldLeft(sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordChangeRequiredContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2), $nativePassAttributes, new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3); - $suspended = new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4; - onciu_InputPosition$_$callClinit(); - $nativeAuthAttr = $nativePassAttributes.$sortBy($suspended, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); - oncipau_Util$_$callClinit(); - $suspended = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterUserContext_userStatus($ctx), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5); - if ((oncip_AstRuleCtx_getTokens($ctx, 122)).$isEmpty()) - $removeHome = s_None$_MODULE$; - else { - $removeHome = new s_Some; - oncia_RemoveHomeDatabaseAction$_$callClinit(); - s_Some__init_0($removeHome, oncia_RemoveHomeDatabaseAction$_MODULE$); - } - $nativePassAttributes = oncipau_Util$_MODULE$; - $homeDatabaseAction = oncipv_Cypher25Parser$AlterUserContext_homeDatabase($ctx); - $userOptions = new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6; - $userOptions.$_0466 = $removeHome; - $userOptions = oncia_UserOptions__init_($suspended, oncipau_Util$_astOptFromList($nativePassAttributes, $homeDatabaseAction, $userOptions)); - if (!sc_IterableOnceOps_nonEmpty$($nativeAuthAttr)) - $nativeAuth = s_None$_MODULE$; - else { - $nativeAuth = new s_Some; - $suspended = new oncia_Auth; - oncia_AdministrationCommand$_$callClinit(); - oncia_Auth__init_($suspended, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), $nativeAuthAttr, ($nativeAuthAttr.$head()).$position()); - s_Some__init_0($nativeAuth, $suspended); - } - $removeAuth = oncia_RemoveAuth__init_((oncip_AstRuleCtx_getTokens($ctx, 18)).$isEmpty() ? 0 : 1, sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$RemoveNamedProviderContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7)); - $setAuth = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SetAuthClauseContext))))), new oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8); - $ctx.$ast0 = oncia_AlterUser__init_($username, $userOptions, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1, $setAuth, $nativeAuth, $removeAuth, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); + var$8 = s_package$_List(s_package$_MODULE$); + var$9 = sr_ScalaRunTime$_MODULE$; + var$10 = $rt_createArray(s_Tuple3, 12); + var$11 = var$10.data; + $allColumns = new s_Tuple3; + var$13 = new oncia_ShowAndTerminateColumn; + oncia_ShowConstraintsClause$_$callClinit(); + $columns = oncia_ShowConstraintsClause$_idColumn; + oncius_package$_$callClinit(); + oncia_ShowAndTerminateColumn__init_0(var$13, $columns, oncius_package$_CTInteger(oncius_package$_MODULE$)); + s_Tuple3__init_0($allColumns, var$13, jl_Boolean_valueOf(1), jl_Boolean_valueOf(1)); + var$11[0] = $allColumns; + var$11[1] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), jl_Boolean_valueOf(1), jl_Boolean_valueOf(1)); + var$11[2] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_typeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), jl_Boolean_valueOf(1), jl_Boolean_valueOf(1)); + var$11[3] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_entityTypeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), jl_Boolean_valueOf(1), jl_Boolean_valueOf(1)); + $allColumns = new s_Tuple3; + var$13 = new oncia_ShowAndTerminateColumn; + $columns = oncia_ShowConstraintsClause$_labelsOrTypesColumn; + $briefColumns = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$13, $columns, oncius_package$_CTList($briefColumns, oncius_package$_CTString($briefColumns))); + s_Tuple3__init_0($allColumns, var$13, jl_Boolean_valueOf(1), jl_Boolean_valueOf(1)); + var$11[4] = $allColumns; + $allColumns = new s_Tuple3; + var$13 = new oncia_ShowAndTerminateColumn; + $columns = oncia_ShowConstraintsClause$_propertiesColumn; + $briefColumns = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$13, $columns, oncius_package$_CTList($briefColumns, oncius_package$_CTString($briefColumns))); + s_Tuple3__init_0($allColumns, var$13, jl_Boolean_valueOf(1), jl_Boolean_valueOf(1)); + var$11[5] = $allColumns; + var$11[6] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_enforcedLabelColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), jl_Boolean_valueOf(1), jl_Boolean_valueOf(0)); + var$11[7] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_classificationColumn($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), jl_Boolean_valueOf(0), jl_Boolean_valueOf(0)); + var$11[8] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_ownedIndexColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), jl_Boolean_valueOf(1), jl_Boolean_valueOf(1)); + var$11[9] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_propertyTypeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), jl_Boolean_valueOf(1), jl_Boolean_valueOf(1)); + var$11[10] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_optionsColumn, oncius_package$_CTMap(oncius_package$_MODULE$)), jl_Boolean_valueOf(0), jl_Boolean_valueOf(1)); + var$11[11] = s_Tuple3__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowConstraintsClause$_createStatementColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), jl_Boolean_valueOf(0), jl_Boolean_valueOf(1)); + $columns = var$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$9, var$10)); + $briefColumns = sci_List_filter($columns, new oncia_ShowConstraintsClause$$apply$lambda$_13_0); + $allColumns = new oncia_ShowConstraintsClause$$apply$lambda$_13_1; + $allColumns.$_01061 = $returnCypher5Columns; + $briefColumns = sci_List_map(sci_List_filter($briefColumns, $allColumns), new oncia_ShowConstraintsClause$$apply$lambda$_13_2); + $allColumns = new oncia_ShowConstraintsClause$$apply$lambda$_13_3; + $allColumns.$_01122 = $returnCypher5Columns; + return oncia_ShowConstraintsClause__init_($briefColumns, sci_List_map(sci_List_filter($columns, $allColumns), new oncia_ShowConstraintsClause$$apply$lambda$_13_4), $constraintType, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_0() { + jl_Object.call(this); + this.$_0267 = null; +} +let oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_0_apply0 = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith0(var$0.$_0267, var$1); }, -oncipvaf_DdlCreateBuilder = $rt_classWithoutFields(0), -oncipvaf_DdlCreateBuilder_exitCreateConstraint = ($this, $ctx) => { - let $parent, $nodePattern, $isNode, $constraintName, $existsDo, $options, $cT, $propertyType, $variable, $properties, $relType, $variable_0, $label; - $parent = $ctx.$parent; - $nodePattern = oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx); - $isNode = $nodePattern === null ? 0 : 1; - oncipau_Util$_$callClinit(); - $constraintName = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)); - $existsDo = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE($parent) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1); - $options = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_00); - $cT = oncipv_Cypher25Parser$CreateConstraintContext_constraintType($ctx); - $propertyType = $cT.$ast0; - if ($propertyType === null) - $rt_throw(s_MatchError__init_($propertyType)); - $variable = s_Tuple2__init_($propertyType.$_1(), $propertyType.$_2()); - $properties = $variable.$_10; - $propertyType = $variable.$_20; - if ($isNode) { - $nodePattern = $nodePattern.$ast0; - if ($nodePattern === null) - $rt_throw(s_MatchError__init_($nodePattern)); - $relType = s_Tuple2__init_($nodePattern.$_1(), $nodePattern.$_2()); - $variable_0 = $relType.$_10; - $label = $relType.$_20; - if ($cT instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createNodePropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties.$apply1(0), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else if ($cT instanceof oncipv_Cypher25Parser$ConstraintTypedContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createNodePropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties.$apply1(0), $propertyType.$get1(), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else if ($cT instanceof oncipv_Cypher25Parser$ConstraintIsUniqueContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createNodePropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties, $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else { - if (!($cT instanceof oncipv_Cypher25Parser$ConstraintKeyContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6893)); - $rt_throw($ctx); - } - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createNodeKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable_0, $label, $properties, $constraintName, $existsDo, $options, 0, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } - } else { - $nodePattern = (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx)).$ast0; - if ($nodePattern === null) - $rt_throw(s_MatchError__init_($nodePattern)); - $variable_0 = s_Tuple2__init_($nodePattern.$_1(), $nodePattern.$_2()); - $variable = $variable_0.$_10; - $relType = $variable_0.$_20; - if ($cT instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyExistenceConstraint(oncia_CreateConstraint$_MODULE$, $variable, $relType, $properties.$apply1(0), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else if ($cT instanceof oncipv_Cypher25Parser$ConstraintTypedContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyTypeConstraint(oncia_CreateConstraint$_MODULE$, $variable, $relType, $properties.$apply1(0), $propertyType.$get1(), $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else if ($cT instanceof oncipv_Cypher25Parser$ConstraintIsUniqueContext) { - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createRelationshipPropertyUniquenessConstraint(oncia_CreateConstraint$_MODULE$, $variable, $relType, $properties, $constraintName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } else { - if (!($cT instanceof oncipv_Cypher25Parser$ConstraintKeyContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6894)); - $rt_throw($ctx); - } - oncia_CreateConstraint$_$callClinit(); - $nodePattern = oncia_CreateConstraint$_createRelationshipKeyConstraint(oncia_CreateConstraint$_MODULE$, $variable, $relType, $properties, $constraintName, $existsDo, $options, 0, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $parent)); - } - } - $ctx.$ast0 = $nodePattern; +oncia_ShowIndexesClause$ = $rt_classWithoutFields(), +oncia_ShowIndexesClause$_MODULE$ = null, +oncia_ShowIndexesClause$_idColumn = null, +oncia_ShowIndexesClause$_nameColumn = null, +oncia_ShowIndexesClause$_stateColumn = null, +oncia_ShowIndexesClause$_populationPercentColumn = null, +oncia_ShowIndexesClause$_typeColumn = null, +oncia_ShowIndexesClause$_entityTypeColumn = null, +oncia_ShowIndexesClause$_labelsOrTypesColumn = null, +oncia_ShowIndexesClause$_propertiesColumn = null, +oncia_ShowIndexesClause$_indexProviderColumn = null, +oncia_ShowIndexesClause$_owningConstraintColumn = null, +oncia_ShowIndexesClause$_lastReadColumn = null, +oncia_ShowIndexesClause$_readCountColumn = null, +oncia_ShowIndexesClause$_trackedSinceColumn = null, +oncia_ShowIndexesClause$_optionsColumn = null, +oncia_ShowIndexesClause$_failureMessageColumn = null, +oncia_ShowIndexesClause$_createStatementColumn = null, +oncia_ShowIndexesClause$__clinit_ = () => { + oncia_ShowIndexesClause$_MODULE$ = new oncia_ShowIndexesClause$; + oncia_ShowIndexesClause$_idColumn = $rt_s(6144); + oncia_ShowIndexesClause$_nameColumn = $rt_s(5567); + oncia_ShowIndexesClause$_stateColumn = $rt_s(5571); + oncia_ShowIndexesClause$_populationPercentColumn = $rt_s(6427); + oncia_ShowIndexesClause$_typeColumn = $rt_s(4729); + oncia_ShowIndexesClause$_entityTypeColumn = $rt_s(1165); + oncia_ShowIndexesClause$_labelsOrTypesColumn = $rt_s(6421); + oncia_ShowIndexesClause$_propertiesColumn = $rt_s(4662); + oncia_ShowIndexesClause$_indexProviderColumn = $rt_s(5505); + oncia_ShowIndexesClause$_owningConstraintColumn = $rt_s(6428); + oncia_ShowIndexesClause$_lastReadColumn = $rt_s(6429); + oncia_ShowIndexesClause$_readCountColumn = $rt_s(6430); + oncia_ShowIndexesClause$_trackedSinceColumn = $rt_s(6431); + oncia_ShowIndexesClause$_optionsColumn = $rt_s(5852); + oncia_ShowIndexesClause$_failureMessageColumn = $rt_s(6432); + oncia_ShowIndexesClause$_createStatementColumn = $rt_s(6426); +}, +oncia_ShowIndexesClause$_apply = ($this, $indexType, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + let var$7, var$8, var$9, var$10, $briefCols, var$12, var$13, $verboseCols; + s_package$_$callClinit(); + var$7 = s_package$_List(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncia_ShowAndTerminateColumn, 12); + var$10 = var$9.data; + $briefCols = new oncia_ShowAndTerminateColumn; + var$12 = oncia_ShowIndexesClause$_idColumn; + oncius_package$_$callClinit(); + oncia_ShowAndTerminateColumn__init_0($briefCols, var$12, oncius_package$_CTInteger(oncius_package$_MODULE$)); + var$10[0] = $briefCols; + var$10[1] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$10[2] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_stateColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$10[3] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_populationPercentColumn, oncius_package$_CTFloat(oncius_package$_MODULE$)); + var$10[4] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_typeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$10[5] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_entityTypeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + $briefCols = new oncia_ShowAndTerminateColumn; + var$13 = oncia_ShowIndexesClause$_labelsOrTypesColumn; + $verboseCols = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0($briefCols, var$13, oncius_package$_CTList($verboseCols, oncius_package$_CTString($verboseCols))); + var$10[6] = $briefCols; + $briefCols = new oncia_ShowAndTerminateColumn; + var$13 = oncia_ShowIndexesClause$_propertiesColumn; + $verboseCols = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0($briefCols, var$13, oncius_package$_CTList($verboseCols, oncius_package$_CTString($verboseCols))); + var$10[7] = $briefCols; + var$10[8] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_indexProviderColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$10[9] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_owningConstraintColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$10[10] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_lastReadColumn, oncius_package$_CTDateTime(oncius_package$_MODULE$)); + var$10[11] = oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_readCountColumn, oncius_package$_CTInteger(oncius_package$_MODULE$)); + $briefCols = var$7.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)); + $verboseCols = sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_trackedSinceColumn, oncius_package$_CTDateTime(oncius_package$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_optionsColumn, oncius_package$_CTMap(oncius_package$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_failureMessageColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), + sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowIndexesClause$_createStatementColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_Nil$_MODULE$)))); + return oncia_ShowIndexesClause__init_($briefCols, $briefCols.$concat($verboseCols), $indexType, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_0() { + jl_Object.call(this); + this.$_0522 = null; +} +let oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith0(var$0.$_0522, var$1); }, -oncipvaf_DdlCreateBuilder_exitCreateIndex_ = ($this, $ctx) => { - let $indexName, $grandparent, $parent, $existsDo, $options, $nodePattern, $relPattern, $isNode, $propertyList, $labelOrRelType, $relType, $variable, $token, $label; - $indexName = $ctx.$parent; - $grandparent = $indexName.$parent; - $parent = $indexName; - oncipau_Util$_$callClinit(); - $existsDo = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE($grandparent) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1); - $options = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0); - $indexName = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)); - $nodePattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNodePatternContext), 0); - $relPattern = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandRelPatternContext), 0); - $isNode = $nodePattern === null ? 0 : 1; - $propertyList = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0.$toList(); - $labelOrRelType = !$isNode ? $relPattern.$ast0 : $nodePattern.$ast0; - if ($labelOrRelType === null) - $rt_throw(s_MatchError__init_($labelOrRelType)); - a: { - $relType = s_Tuple2__init_($labelOrRelType.$_1(), $labelOrRelType.$_2()); - $variable = $relType.$_10; - $labelOrRelType = $relType.$_20; - $token = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $parent, 0)).$getSymbol()).$getType0(); - switch ($token) { - case 128: - case 209: - if (!$isNode) { - $relType = $labelOrRelType; - $parent = oncia_CreateIndex$_createRangeRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, $token != 128 ? 0 : 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - } - $label = $labelOrRelType; - $parent = oncia_CreateIndex$_createRangeNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, $token != 128 ? 0 : 1, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - case 195: - if (!$isNode) { - $relType = $labelOrRelType; - $parent = oncia_CreateIndex$_createPointRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - } - $label = $labelOrRelType; - $parent = oncia_CreateIndex$_createPointNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - case 262: - if (!$isNode) { - $relType = $labelOrRelType; - $parent = oncia_CreateIndex$_createTextRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - } - $label = $labelOrRelType; - $parent = oncia_CreateIndex$_createTextNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - case 290: - if (!$isNode) { - $relType = $labelOrRelType; - $parent = oncia_CreateIndex$_createVectorRelationshipIndex(oncia_CreateIndex$_MODULE$, $variable, $relType, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - } - $label = $labelOrRelType; - $parent = oncia_CreateIndex$_createVectorNodeIndex(oncia_CreateIndex$_MODULE$, $variable, $label, $propertyList, $indexName, $existsDo, $options, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $grandparent)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf($token))); - } - $ctx.$ast0 = $parent; +oncia_ShowSettingsClause$ = $rt_classWithoutFields(), +oncia_ShowSettingsClause$_MODULE$ = null, +oncia_ShowSettingsClause$_nameColumn = null, +oncia_ShowSettingsClause$_valueColumn = null, +oncia_ShowSettingsClause$_isDynamicColumn = null, +oncia_ShowSettingsClause$_defaultValueColumn = null, +oncia_ShowSettingsClause$_descriptionColumn = null, +oncia_ShowSettingsClause$_startupValueColumn = null, +oncia_ShowSettingsClause$_isExplicitlySetColumn = null, +oncia_ShowSettingsClause$_validValuesColumn = null, +oncia_ShowSettingsClause$_isDeprecatedColumn = null, +oncia_ShowSettingsClause$__clinit_ = () => { + oncia_ShowSettingsClause$_MODULE$ = new oncia_ShowSettingsClause$; + oncia_ShowSettingsClause$_nameColumn = $rt_s(5567); + oncia_ShowSettingsClause$_valueColumn = $rt_s(1243); + oncia_ShowSettingsClause$_isDynamicColumn = $rt_s(6433); + oncia_ShowSettingsClause$_defaultValueColumn = $rt_s(6434); + oncia_ShowSettingsClause$_descriptionColumn = $rt_s(5637); + oncia_ShowSettingsClause$_startupValueColumn = $rt_s(6435); + oncia_ShowSettingsClause$_isExplicitlySetColumn = $rt_s(6436); + oncia_ShowSettingsClause$_validValuesColumn = $rt_s(6437); + oncia_ShowSettingsClause$_isDeprecatedColumn = $rt_s(6438); +}, +oncia_ShowSettingsClause$_apply = ($this, $names, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + let $defaultCols, var$8, var$9, var$10, var$11, $verboseCols, var$13; + $defaultCols = new sci_$colon$colon; + var$8 = oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$9 = new sci_$colon$colon; + var$10 = oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_valueColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$11 = new sci_$colon$colon; + $verboseCols = new oncia_ShowAndTerminateColumn; + var$13 = oncia_ShowSettingsClause$_isDynamicColumn; + oncius_package$_$callClinit(); + oncia_ShowAndTerminateColumn__init_0($verboseCols, var$13, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + sci_$colon$colon__init_0(var$11, $verboseCols, sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_defaultValueColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_descriptionColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_Nil$_MODULE$))); + sci_$colon$colon__init_0(var$9, var$10, var$11); + sci_$colon$colon__init_0($defaultCols, var$8, var$9); + $verboseCols = sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_startupValueColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_isExplicitlySetColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_validValuesColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), + sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowSettingsClause$_isDeprecatedColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)), sci_Nil$_MODULE$)))); + return oncia_ShowSettingsClause__init_($defaultCols, $defaultCols.$concat($verboseCols), $names, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_00() { + jl_Object.call(this); + this.$_0698 = null; +} +let oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_0_apply0 = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith0(var$0.$_0698, var$1); +}, +oncia_ShowTransactionsClause$ = $rt_classWithoutFields(), +oncia_ShowTransactionsClause$_MODULE$ = null, +oncia_ShowTransactionsClause$_databaseColumn = null, +oncia_ShowTransactionsClause$_transactionIdColumn = null, +oncia_ShowTransactionsClause$_currentQueryIdColumn = null, +oncia_ShowTransactionsClause$_outerTransactionIdColumn = null, +oncia_ShowTransactionsClause$_connectionIdColumn = null, +oncia_ShowTransactionsClause$_clientAddressColumn = null, +oncia_ShowTransactionsClause$_usernameColumn = null, +oncia_ShowTransactionsClause$_metaDataColumn = null, +oncia_ShowTransactionsClause$_currentQueryColumn = null, +oncia_ShowTransactionsClause$_parametersColumn = null, +oncia_ShowTransactionsClause$_plannerColumn = null, +oncia_ShowTransactionsClause$_runtimeColumn = null, +oncia_ShowTransactionsClause$_indexesColumn = null, +oncia_ShowTransactionsClause$_startTimeColumn = null, +oncia_ShowTransactionsClause$_currentQueryStartTimeColumn = null, +oncia_ShowTransactionsClause$_protocolColumn = null, +oncia_ShowTransactionsClause$_requestUriColumn = null, +oncia_ShowTransactionsClause$_statusColumn = null, +oncia_ShowTransactionsClause$_currentQueryStatusColumn = null, +oncia_ShowTransactionsClause$_statusDetailsColumn = null, +oncia_ShowTransactionsClause$_resourceInformationColumn = null, +oncia_ShowTransactionsClause$_activeLockCountColumn = null, +oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn = null, +oncia_ShowTransactionsClause$_elapsedTimeColumn = null, +oncia_ShowTransactionsClause$_cpuTimeColumn = null, +oncia_ShowTransactionsClause$_waitTimeColumn = null, +oncia_ShowTransactionsClause$_idleTimeColumn = null, +oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn = null, +oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn = null, +oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn = null, +oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn = null, +oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn = null, +oncia_ShowTransactionsClause$_allocatedDirectBytesColumn = null, +oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn = null, +oncia_ShowTransactionsClause$_pageHitsColumn = null, +oncia_ShowTransactionsClause$_pageFaultsColumn = null, +oncia_ShowTransactionsClause$_currentQueryPageHitsColumn = null, +oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn = null, +oncia_ShowTransactionsClause$_initializationStackTraceColumn = null, +oncia_ShowTransactionsClause$_$callClinit = () => { + oncia_ShowTransactionsClause$_$callClinit = $rt_eraseClinit(oncia_ShowTransactionsClause$); + oncia_ShowTransactionsClause$__clinit_(); +}, +oncia_ShowTransactionsClause$__clinit_ = () => { + let var$1; + var$1 = new oncia_ShowTransactionsClause$; + oncia_ShowTransactionsClause$_$callClinit(); + oncia_ShowTransactionsClause$_MODULE$ = var$1; + oncia_ShowTransactionsClause$_databaseColumn = $rt_s(5581); + oncia_ShowTransactionsClause$_transactionIdColumn = $rt_s(1238); + oncia_ShowTransactionsClause$_currentQueryIdColumn = $rt_s(6439); + oncia_ShowTransactionsClause$_outerTransactionIdColumn = $rt_s(6440); + oncia_ShowTransactionsClause$_connectionIdColumn = $rt_s(6441); + oncia_ShowTransactionsClause$_clientAddressColumn = $rt_s(6442); + oncia_ShowTransactionsClause$_usernameColumn = $rt_s(5607); + oncia_ShowTransactionsClause$_metaDataColumn = $rt_s(6443); + oncia_ShowTransactionsClause$_currentQueryColumn = $rt_s(6444); + oncia_ShowTransactionsClause$_parametersColumn = $rt_s(6445); + oncia_ShowTransactionsClause$_plannerColumn = $rt_s(6446); + oncia_ShowTransactionsClause$_runtimeColumn = $rt_s(1223); + oncia_ShowTransactionsClause$_indexesColumn = $rt_s(6447); + oncia_ShowTransactionsClause$_startTimeColumn = $rt_s(6448); + oncia_ShowTransactionsClause$_currentQueryStartTimeColumn = $rt_s(6449); + oncia_ShowTransactionsClause$_protocolColumn = $rt_s(6450); + oncia_ShowTransactionsClause$_requestUriColumn = $rt_s(6451); + oncia_ShowTransactionsClause$_statusColumn = $rt_s(6452); + oncia_ShowTransactionsClause$_currentQueryStatusColumn = $rt_s(6453); + oncia_ShowTransactionsClause$_statusDetailsColumn = $rt_s(6454); + oncia_ShowTransactionsClause$_resourceInformationColumn = $rt_s(6455); + oncia_ShowTransactionsClause$_activeLockCountColumn = $rt_s(6456); + oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn = $rt_s(6457); + oncia_ShowTransactionsClause$_elapsedTimeColumn = $rt_s(6458); + oncia_ShowTransactionsClause$_cpuTimeColumn = $rt_s(6459); + oncia_ShowTransactionsClause$_waitTimeColumn = $rt_s(6460); + oncia_ShowTransactionsClause$_idleTimeColumn = $rt_s(6461); + oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn = $rt_s(6462); + oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn = $rt_s(6463); + oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn = $rt_s(6464); + oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn = $rt_s(6465); + oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn = $rt_s(6466); + oncia_ShowTransactionsClause$_allocatedDirectBytesColumn = $rt_s(6467); + oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn = $rt_s(6468); + oncia_ShowTransactionsClause$_pageHitsColumn = $rt_s(6469); + oncia_ShowTransactionsClause$_pageFaultsColumn = $rt_s(6470); + oncia_ShowTransactionsClause$_currentQueryPageHitsColumn = $rt_s(6471); + oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn = $rt_s(6472); + oncia_ShowTransactionsClause$_initializationStackTraceColumn = $rt_s(6473); +}, +oncia_ShowTransactionsClause$_databaseColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_databaseColumn; +}, +oncia_ShowTransactionsClause$_transactionIdColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_transactionIdColumn; +}, +oncia_ShowTransactionsClause$_currentQueryIdColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryIdColumn; +}, +oncia_ShowTransactionsClause$_outerTransactionIdColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_outerTransactionIdColumn; +}, +oncia_ShowTransactionsClause$_connectionIdColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_connectionIdColumn; +}, +oncia_ShowTransactionsClause$_clientAddressColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_clientAddressColumn; +}; +let oncia_ShowTransactionsClause$_usernameColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_usernameColumn; +}, +oncia_ShowTransactionsClause$_metaDataColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_metaDataColumn; +}, +oncia_ShowTransactionsClause$_currentQueryColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryColumn; +}, +oncia_ShowTransactionsClause$_parametersColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_parametersColumn; +}, +oncia_ShowTransactionsClause$_plannerColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_plannerColumn; +}, +oncia_ShowTransactionsClause$_runtimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_runtimeColumn; +}, +oncia_ShowTransactionsClause$_indexesColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_indexesColumn; +}, +oncia_ShowTransactionsClause$_startTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_startTimeColumn; +}, +oncia_ShowTransactionsClause$_currentQueryStartTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryStartTimeColumn; +}, +oncia_ShowTransactionsClause$_protocolColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_protocolColumn; +}, +oncia_ShowTransactionsClause$_requestUriColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_requestUriColumn; +}, +oncia_ShowTransactionsClause$_statusColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_statusColumn; +}, +oncia_ShowTransactionsClause$_currentQueryStatusColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryStatusColumn; +}, +oncia_ShowTransactionsClause$_statusDetailsColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_statusDetailsColumn; +}, +oncia_ShowTransactionsClause$_resourceInformationColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_resourceInformationColumn; +}, +oncia_ShowTransactionsClause$_activeLockCountColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_activeLockCountColumn; +}, +oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn; +}, +oncia_ShowTransactionsClause$_elapsedTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_elapsedTimeColumn; +}, +oncia_ShowTransactionsClause$_cpuTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_cpuTimeColumn; +}, +oncia_ShowTransactionsClause$_waitTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_waitTimeColumn; +}, +oncia_ShowTransactionsClause$_idleTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_idleTimeColumn; +}, +oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn; +}, +oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn; +}, +oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn; +}, +oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn; +}, +oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn; +}, +oncia_ShowTransactionsClause$_allocatedDirectBytesColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_allocatedDirectBytesColumn; +}, +oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn; +}, +oncia_ShowTransactionsClause$_pageHitsColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_pageHitsColumn; +}, +oncia_ShowTransactionsClause$_pageFaultsColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_pageFaultsColumn; +}, +oncia_ShowTransactionsClause$_currentQueryPageHitsColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryPageHitsColumn; +}, +oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn; +}, +oncia_ShowTransactionsClause$_initializationStackTraceColumn0 = $this => { + oncia_ShowTransactionsClause$_$callClinit(); + return oncia_ShowTransactionsClause$_initializationStackTraceColumn; +}, +oncia_ShowTransactionsClause$_apply = ($this, $ids, $where, $yieldItems, $yieldAll, $yieldWith, $returnCypher5Types, $position) => { + let var$8, var$9, var$10, var$11, $columns, $briefColumns, $allColumns, var$15; + s_package$_$callClinit(); + var$8 = s_package$_List(s_package$_MODULE$); + var$9 = sr_ScalaRunTime$_MODULE$; + var$10 = $rt_createArray(s_Tuple2, 39); + var$11 = var$10.data; + var$11[0] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_databaseColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[1] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_transactionIdColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[2] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryIdColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[3] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_outerTransactionIdColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[4] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_connectionIdColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[5] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_clientAddressColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[6] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_usernameColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + $columns = new s_Tuple2; + $briefColumns = new oncia_ShowAndTerminateColumn; + $allColumns = oncia_ShowTransactionsClause$_metaDataColumn0($this); + oncius_package$_$callClinit(); + oncia_ShowAndTerminateColumn__init_0($briefColumns, $allColumns, oncius_package$_CTMap(oncius_package$_MODULE$)); + s_Tuple2__init_0($columns, $briefColumns, sr_BoxesRunTime_boxToBoolean(0)); + var$11[7] = $columns; + var$11[8] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[9] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_parametersColumn0($this), oncius_package$_CTMap(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[10] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_plannerColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[11] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_runtimeColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + $columns = new s_Tuple2; + $briefColumns = new oncia_ShowAndTerminateColumn; + $allColumns = oncia_ShowTransactionsClause$_indexesColumn0($this); + var$15 = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0($briefColumns, $allColumns, oncius_package$_CTList(var$15, oncius_package$_CTMap(var$15))); + s_Tuple2__init_0($columns, $briefColumns, sr_BoxesRunTime_boxToBoolean(0)); + var$11[12] = $columns; + var$11[13] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_startTimeColumn0($this), !$returnCypher5Types ? oncius_package$_CTDateTime(oncius_package$_MODULE$) : oncius_package$_CTString(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[14] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryStartTimeColumn0($this), !$returnCypher5Types ? oncius_package$_CTDateTime(oncius_package$_MODULE$) : oncius_package$_CTString(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[15] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_protocolColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[16] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_requestUriColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[17] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_statusColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[18] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryStatusColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[19] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_statusDetailsColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[20] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_resourceInformationColumn0($this), oncius_package$_CTMap(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[21] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_activeLockCountColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[22] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryActiveLockCountColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[23] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_elapsedTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(1)); + var$11[24] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_cpuTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[25] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_waitTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[26] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_idleTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[27] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryElapsedTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[28] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryCpuTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[29] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryWaitTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[30] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryIdleTimeColumn0($this), oncius_package$_CTDuration(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[31] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryAllocatedBytesColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[32] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_allocatedDirectBytesColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[33] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_estimatedUsedHeapMemoryColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[34] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_pageHitsColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[35] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_pageFaultsColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[36] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryPageHitsColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[37] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_currentQueryPageFaultsColumn0($this), oncius_package$_CTInteger(oncius_package$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + var$11[38] = s_Tuple2__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowTransactionsClause$_initializationStackTraceColumn0($this), oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sr_BoxesRunTime_boxToBoolean(0)); + $columns = sci_List$_apply(var$8, sr_ScalaRunTime$_wrapRefArray(var$9, var$10)); + return oncia_ShowTransactionsClause__init_(sci_List_map(sci_List_filter($columns, oncia_ShowTransactionsClause$$apply$lambda$_40_0__init_0()), oncia_ShowTransactionsClause$$apply$lambda$_40_1__init_()), sci_List_map($columns, oncia_ShowTransactionsClause$$apply$lambda$_40_2__init_0()), $ids, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_00() { + jl_Object.call(this); + this.$_0553 = null; +} +let oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_0_apply0 = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith0(var$0.$_0553, var$1); +}, +oncia_RevokePrivilege$semanticCheck$lambda$_15_0 = $rt_classWithoutFields(), +oncia_RevokePrivilege$semanticCheck$lambda$_15_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5592), var$1); +}, +oncia_GrantPrivilege$semanticCheck$lambda$_14_0 = $rt_classWithoutFields(), +oncia_GrantPrivilege$semanticCheck$lambda$_14_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5592), var$1); +}, +oncia_CreateUser$semanticCheck$lambda$_88_0 = $rt_classWithoutFields(), +oncia_CreateUser$semanticCheck$lambda$_88_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$((var$1.$checkDuplicates()).$chain(var$1.$checkRequiredAttributes()), var$1.$checkNoUnsupportedAttributes()), var$1.$checkProviderName()); }, -oncipvaf_DdlShowBuilder0 = $rt_classWithoutFields(0), -oncipvaf_DdlShowBuilder_decomposeYield0 = ($this, $yieldOrWhere) => { - let $optR, $y, $yieldedItems, $optY, $yieldAll, $x$5, $where; - if (!s_Option_isDefined($yieldOrWhere)) { - $optR = new oncipvaf_DdlShowBuilder$ShowWrapper0; - $y = s_None$_MODULE$; - $yieldedItems = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$20(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0); - $optY = s_None$_MODULE$; - oncipvaf_DdlShowBuilder$ShowWrapper__init_0($optR, $y, $yieldedItems, 0, $optY, $optY, $optY, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$70(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0)); - return $optR; - } - $yieldOrWhere = $yieldOrWhere.$get1(); - if ($yieldOrWhere instanceof su_Left) { - $optR = $yieldOrWhere.$value6; - if ($optR !== null) { - $y = $optR.$_1(); - $optR = $optR.$_2(); - s_Option$_$callClinit(); - $yieldAll = s_Option_exists(s_Option$_apply(s_Option$_MODULE$, $y), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0); - $yieldedItems = s_Option_getOrElse(s_Option_map(s_Option$_apply(s_Option$_MODULE$, $y), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1), new oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2); - $optY = s_Tuple3__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems, s_Some__init_($y)); - $yieldAll = sr_BoxesRunTime_unboxToBoolean($optY.$_11); - $yieldedItems = $optY.$_21; - $optY = $optY.$_30; - $yieldOrWhere = s_Tuple3__init_(jl_Boolean_valueOf($yieldAll), $yieldedItems, $optY); - $yieldAll = sr_BoxesRunTime_unboxToBoolean($yieldOrWhere.$_11); - $yieldedItems = $yieldOrWhere.$_21; - $optY = $yieldOrWhere.$_30; - $x$5 = s_None$_MODULE$; - return oncipvaf_DdlShowBuilder$ShowWrapper__init_1($x$5, $yieldedItems, $yieldAll, $optY, $optR, $x$5, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$70(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0)); - } - } - if (!($yieldOrWhere instanceof su_Right)) - $rt_throw(s_MatchError__init_($yieldOrWhere)); - $where = $yieldOrWhere.$value7; - $yieldOrWhere = new oncipvaf_DdlShowBuilder$ShowWrapper0; - $optR = s_Some__init_($where); - $y = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$20(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0); - $optY = s_None$_MODULE$; - oncipvaf_DdlShowBuilder$ShowWrapper__init_0($yieldOrWhere, $optR, $y, 0, $optY, $optY, $optY, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$70(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0)); - return $yieldOrWhere; +s_DummyImplicit$ = $rt_classWithoutFields(), +s_DummyImplicit$_MODULE$ = null, +s_DummyImplicit$_dummyImplicit0 = null, +s_DummyImplicit$_$callClinit = () => { + s_DummyImplicit$_$callClinit = $rt_eraseClinit(s_DummyImplicit$); + s_DummyImplicit$__clinit_(); }, -oncipvaf_DdlShowBuilder_pickShowConstraintType = ($this, $enitityTypeContext, $nodeType, $relType, $allType) => { - let var$5; - oncipau_Util$_$callClinit(); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $enitityTypeContext); - $enitityTypeContext = new oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0; - $enitityTypeContext.$_0264 = $this; - var$5 = s_Option_getOrElse(var$5, $enitityTypeContext); - if (jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Node($this), var$5)) - return $nodeType; - if (!jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Rel($this), var$5)) - return $allType; - return $relType; +s_DummyImplicit$__clinit_ = () => { + let var$1; + var$1 = new s_DummyImplicit$; + s_DummyImplicit$_$callClinit(); + s_DummyImplicit$_MODULE$ = var$1; + s_DummyImplicit$_dummyImplicit0 = new s_DummyImplicit; }, -oncipvaf_DdlPrivilegeBuilder = $rt_classWithoutFields(0), -oncipvaf_DdlPrivilegeBuilder_exitAllPrivilege = ($this, $ctx) => { - let $scope, $scope_0, var$4, var$5; - $scope = oncipv_Cypher25Parser$AllPrivilegeContext_allPrivilegeTarget($ctx); - if ($scope instanceof oncipv_Cypher25Parser$DefaultTargetContext) { - if (oncipv_Cypher25Parser$DefaultTargetContext_DATABASE($scope) === null) { - $scope = new oncia_HomeGraphScope; - oncipau_Util$_$callClinit(); - oncia_HomeGraphScope__init_($scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $scope = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, oncia_GraphPrivilege__init_0(oncia_AllGraphAction$_MODULE$, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$); - } else { - $scope = new oncia_HomeDatabaseScope; - oncipau_Util$_$callClinit(); - oncia_HomeDatabaseScope__init_($scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $scope = oncipvaf_DdlPrivilegeBuilder_allDbQualifier($this, oncia_DatabasePrivilege__init_0(oncia_AllDatabaseAction$_MODULE$, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$); - } - } else if ($scope instanceof oncipv_Cypher25Parser$DatabaseVariableTargetContext) { - $scope = $scope; - if (oncip_AstRuleCtx_getToken($scope, 265, 0) !== null) { - $scope_0 = new oncia_AllDatabasesScope; - oncipau_Util$_$callClinit(); - oncia_AllDatabasesScope__init_($scope_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - $scope_0 = new oncia_NamedDatabasesScope; - $scope = (oavr_ParserRuleContext_getRuleContext($scope, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_NamedDatabasesScope__init_($scope_0, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $scope = new oncia_DatabasePrivilege; - var$4 = oncia_AllDatabaseAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_DatabasePrivilege__init_($scope, var$4, $scope_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $scope = oncipvaf_DdlPrivilegeBuilder_allDbQualifier($this, $scope, s_None$_MODULE$); - } else if (!($scope instanceof oncipv_Cypher25Parser$GraphVariableTargetContext)) { - if (!($scope instanceof oncipv_Cypher25Parser$DBMSTargetContext)) { - $scope = new jl_IllegalStateException; - jl_Throwable__init_0($scope, $rt_s(6896)); - $rt_throw($scope); - } - var$4 = new oncia_DbmsPrivilege; - $scope = oncia_AllDbmsAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_DbmsPrivilege__init_0(var$4, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $scope = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, var$4, s_None$_MODULE$); - } else { - $scope = $scope; - if (oncip_AstRuleCtx_getToken($scope, 265, 0) !== null) { - $scope_0 = new oncia_AllGraphsScope; - oncipau_Util$_$callClinit(); - oncia_AllGraphsScope__init_($scope_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - $scope_0 = new oncia_NamedGraphsScope; - $scope = (oavr_ParserRuleContext_getRuleContext($scope, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_NamedGraphsScope__init_($scope_0, $scope, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - var$5 = new oncia_GraphPrivilege; - $scope = oncia_AllGraphAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$5, $scope, $scope_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $scope = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, var$5, s_None$_MODULE$); - } - $ctx.$ast0 = $scope; +s_DummyImplicit$_dummyImplicit = $this => { + s_DummyImplicit$_$callClinit(); + return s_DummyImplicit$_dummyImplicit0; }, -oncipvaf_DdlPrivilegeBuilder_exitDbmsPrivilege = ($this, $ctx) => { - let $action, $qualifier, var$4, $action_0; - a: { - oncipau_Util$_$callClinit(); - $action = oncip_AstRuleCtx_getChild($ctx, 0); - if ($action instanceof oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext) - $qualifier = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext), 0)).$ast0; - else { - if (!$rt_isInstance($action, oavrt_TerminalNode)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - switch (($action.$getSymbol()).$getType0()) { - case 15: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllAliasManagementActions$_MODULE$); - break a; - case 19: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 15: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AlterAliasAction$_MODULE$); - break a; - case 61: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AlterDatabaseAction$_MODULE$); - break a; - case 285: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AlterUserAction$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - case 26: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 200: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AssignPrivilegeAction$_MODULE$); - break a; - case 229: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AssignRoleAction$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - case 49: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_CompositeDatabaseManagementActions$_MODULE$); - break a; - case 61: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllDatabaseManagementActions$_MODULE$); - break a; - case 125: - $qualifier = s_Tuple2__init_(oncia_ImpersonateUserAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserQualifierContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0)); - break a; - case 200: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllPrivilegeActions$_MODULE$); - break a; - case 215: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 229: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_RenameRoleAction$_MODULE$); - break a; - case 285: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_RenameUserAction$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - case 229: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllRoleActions$_MODULE$); - break a; - case 242: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ServerManagementAction$_MODULE$); - break a; - case 285: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_AllUserActions$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - } - if ($qualifier === null) - $rt_throw(s_MatchError__init_($qualifier)); - $action = $qualifier.$_1(); - $qualifier = $qualifier.$_2(); - var$4 = s_Tuple2__init_($action, $qualifier); - $action_0 = var$4.$_10; - $qualifier = var$4.$_20; - $ctx.$ast0 = s_Tuple3__init_(oncia_DbmsPrivilege__init_($action_0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$, $qualifier); +oncia_CreateRole$semanticCheck$lambda$_72_0 = $rt_classWithoutFields(), +oncia_CreateRole$semanticCheck$lambda$_72_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5597), var$1); }, -oncipvaf_DdlPrivilegeBuilder_exitShowPrivilege = ($this, $ctx) => { - let $p, $action, $action_0, $qualifier, $scope, $action_1; - oncipau_Util$_$callClinit(); - $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncipv_Cypher25Parser$ShowPrivilegeContext_databaseScope($ctx) !== null) { - $action = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - if ($action instanceof oncipv_Cypher25Parser$ConstraintTokenContext) - $action = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_ShowConstraintAction$_MODULE$); - else if ($action instanceof oncipv_Cypher25Parser$IndexTokenContext) - $action = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_ShowIndexAction$_MODULE$); - else { - if (!($action instanceof oncipv_Cypher25Parser$TransactionTokenContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - $action = s_Tuple2__init_(oncia_ShowTransactionAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserQualifierContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0)); - } - if ($action === null) - $rt_throw(s_MatchError__init_($action)); - $action = s_Tuple2__init_($action.$_10, $action.$_20); - $action_0 = $action.$_10; - $qualifier = $action.$_20; - $scope = (oncipv_Cypher25Parser$ShowPrivilegeContext_databaseScope($ctx)).$ast0; - $action_1 = s_Tuple3__init_(oncia_DatabasePrivilege__init_0($action_0, $scope, $p), s_None$_MODULE$, $qualifier); - } else { - a: { - $action = oncip_AstRuleCtx_getChild($ctx, 1); - if (!$rt_isInstance($action, oavrt_TerminalNode)) { - if ($rt_isInstance($action, oavrt_RuleNode) && $action.$getRuleIndex() == 172) { - $qualifier = s_Tuple2__init_(oncia_ShowSettingAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SettingQualifierContext), 0)).$ast0); - break a; - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - switch (($action.$getSymbol()).$getType0()) { - case 15: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowAliasAction$_MODULE$); - break a; - case 200: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowPrivilegeAction$_MODULE$); - break a; - case 229: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowRoleAction$_MODULE$); - break a; - case 242: - case 243: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowServerAction$_MODULE$); - break a; - case 285: - $qualifier = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ShowUserAction$_MODULE$); - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); - } - if ($qualifier === null) - $rt_throw(s_MatchError__init_($qualifier)); - $action_1 = s_Tuple2__init_($qualifier.$_10, $qualifier.$_20); - $action = $action_1.$_10; - $qualifier = $action_1.$_20; - $action_1 = s_Tuple3__init_(oncia_DbmsPrivilege__init_($action, $p), s_None$_MODULE$, $qualifier); +oncia_AlterUser$semanticCheck$lambda$_90_0 = $rt_classWithoutFields(), +oncia_AlterUser$semanticCheck$lambda$_90_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncias_SemanticCheck_chain$((var$1.$checkDuplicates()).$chain(var$1.$checkNoUnsupportedAttributes()), var$1.$checkProviderName()); +}, +oncia_AlterUser$semanticCheck$lambda$_90_1 = $rt_classWithoutFields(), +oncia_AlterUser$semanticCheck$lambda$_90_1_apply = (var$0, var$1) => { + return oncia_ExternalAuth_checkIdIsStringLiteralOrParameter(var$1); +}, +oncia_AliasDriverSettingsCheck$ = $rt_classWithoutFields(), +oncia_AliasDriverSettingsCheck$_MODULE$ = null, +oncia_AliasDriverSettingsCheck$_existsErrorMessage = null, +oncia_AliasDriverSettingsCheck$_countErrorMessage = null, +oncia_AliasDriverSettingsCheck$_collectErrorMessage = null, +oncia_AliasDriverSettingsCheck$_genericErrorMessage = null, +oncia_AliasDriverSettingsCheck$__clinit_ = () => { + oncia_AliasDriverSettingsCheck$_MODULE$ = new oncia_AliasDriverSettingsCheck$; + oncia_AliasDriverSettingsCheck$_existsErrorMessage = $rt_s(4979); + oncia_AliasDriverSettingsCheck$_countErrorMessage = $rt_s(4980); + oncia_AliasDriverSettingsCheck$_collectErrorMessage = $rt_s(4981); + oncia_AliasDriverSettingsCheck$_genericErrorMessage = $rt_s(4982); +}, +oncia_AliasDriverSettingsCheck$_findInvalidDriverSettings = ($this, $driverSettings) => { + if ($driverSettings instanceof s_Some) { + $driverSettings = $driverSettings.$value5; + if ($driverSettings instanceof su_Left) + return (sc_AbstractIterable_flatMap(sc_AbstractMap_values($driverSettings.$value6), new oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0)).$headOption(); } - $ctx.$ast0 = $action_1; + return s_None$_MODULE$; }, -oncipvaf_DdlPrivilegeBuilder_exitGraphQualifier0 = ($this, $ctx) => { - let $token, $strings, $graphToken, $variable, $qualifiers, var$7, var$8, $isAll; - $token = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierTokenContext), 0); - if ($token === null) { - if (oncip_AstRuleCtx_getToken($ctx, 108, 0) === null) { - $strings = new sci_$colon$colon; - $graphToken = new oncia_ElementsAllQualifier; - oncipau_Util$_$callClinit(); - oncia_ElementsAllQualifier__init_($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); - } else { - oncipau_Util$_$callClinit(); - $variable = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)); - if ((oncipv_Cypher25Parser$GraphQualifierContext_symbolicNameString($ctx)).$isEmpty()) - $qualifiers = sci_$colon$colon__init_(oncia_LabelAllQualifier__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$); - else { - $graphToken = oncipau_Util$_MODULE$; - $token = oncipv_Cypher25Parser$GraphQualifierContext_symbolicNameString($ctx); - sr_ClassTag$_$callClinit(); - $token = oncipau_Util$_astSeq($graphToken, $token, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); - $graphToken = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_30; - $graphToken.$_0585 = $ctx; - $qualifiers = sc_IterableOnceOps_toList$(sci_ArraySeq_map($token, $graphToken)); - } - $strings = new sci_$colon$colon; - var$7 = new oncia_PatternQualifier; - $graphToken = oncipau_Util$_MODULE$; - var$8 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); - $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_40; - $token.$_01061 = $ctx; - oncia_PatternQualifier__init_(var$7, $qualifiers, $variable, oncipau_Util$_astOpt0($graphToken, var$8, $token)); - sci_$colon$colon__init_0($strings, var$7, sci_Nil$_MODULE$); - } - } else { - $isAll = oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1; - $strings = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NonEmptyStringListContext), 0); - $graphToken = $token.$ast0; - if (jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$RelGraphToken($this), $graphToken)) { - if (!$isAll) { - $graphToken = $strings.$ast0; - $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_00; - $token.$_0986 = $ctx; - $strings = ($graphToken.$map($token)).$toList(); - } else { - $strings = new sci_$colon$colon; - $token = new oncia_RelationshipAllQualifier; - oncipau_Util$_$callClinit(); - oncia_RelationshipAllQualifier__init_($token, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - sci_$colon$colon__init_0($strings, $token, sci_Nil$_MODULE$); - } - } else if (jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken($this), $graphToken)) { - if (!$isAll) { - $graphToken = $strings.$ast0; - $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_10; - $token.$_0340 = $ctx; - $strings = ($graphToken.$map($token)).$toList(); - } else { - $strings = new sci_$colon$colon; - $graphToken = new oncia_LabelAllQualifier; - oncipau_Util$_$callClinit(); - oncia_LabelAllQualifier__init_0($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); - } - } else { - if (!jl_Object_equals(oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken($this), $graphToken)) - $rt_throw(s_MatchError__init_($graphToken)); - if (!$isAll) { - $graphToken = $strings.$ast0; - $token = new oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_20; - $token.$_01104 = $ctx; - $strings = ($graphToken.$map($token)).$toList(); - } else { - $strings = new sci_$colon$colon; - $graphToken = new oncia_ElementsAllQualifier; - oncipau_Util$_$callClinit(); - oncia_ElementsAllQualifier__init_($graphToken, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - sci_$colon$colon__init_0($strings, $graphToken, sci_Nil$_MODULE$); - } - } +oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_90_0 = $rt_classWithoutFields(), +oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_90_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5607), var$1); +}, +jnci_Iso8859Decoder = $rt_classWithoutFields(jnci_BufferedDecoder), +jnci_Iso8859Decoder_arrayDecode = ($this, $inArray, $inPos, $inSize, $outArray, $outPos, $outSize, $controller) => { + let $result, var$9, var$10, var$11, $b, var$13; + $result = null; + while ($inPos < $inSize && $outPos < $outSize) { + var$9 = $inArray.data; + var$10 = $outArray.data; + var$11 = $inPos + 1 | 0; + $b = var$9[$inPos] & 255; + var$13 = $outPos + 1 | 0; + var$10[$outPos] = $b & 65535; + $inPos = var$11; + $outPos = var$13; } - $ctx.$ast0 = $strings; + $controller.$inPosition = $inPos; + $controller.$outPosition = $outPos; + return $result; +}; +function oncius_TypeSpec() { + jl_Object.call(this); + this.$ranges = null; +} +let oncius_TypeSpec_contains0 = ($this, $that) => { + return oncius_TypeSpec_contains($this, $that, $this.$ranges); }, -oncipvaf_DdlPrivilegeBuilder_withQualifier2 = ($this, $action) => { - let var$2, var$3, var$4; - var$2 = new s_Tuple2; - var$3 = new sci_$colon$colon; - var$4 = new oncia_AllDatabasesQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllDatabasesQualifier__init_(var$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$3, var$4, sci_Nil$_MODULE$); - s_Tuple2__init_0(var$2, $action, var$3); - return var$2; +oncius_TypeSpec_contains = ($this, $that, $rs) => { + let var$3; + var$3 = new oncius_TypeSpec$contains$lambda$_9_0; + var$3.$_0792 = $that; + return $rs.$exists(var$3); }, -oncipvaf_DdlPrivilegeBuilder_withQualifier = ($this, $action) => { +oncius_TypeSpec_containsAny = ($this, $that) => { + let var$2, var$3; + var$2 = $this.$ranges; + var$3 = new oncius_TypeSpec$containsAny$lambda$_11_0; + var$3.$_0942 = $that; + return var$2.$exists(var$3); +}, +oncius_TypeSpec_containsAll = ($this, $that) => { + return oncius_TypeSpec_equals(oncius_TypeSpec_intersect($this, $that), $that); +}, +oncius_TypeSpec_union = ($this, $that) => { + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $this.$ranges.$concat($that.$ranges)); +}, +oncius_TypeSpec_$bar = ($this, $that) => { + return oncius_TypeSpec_union($this, $that); +}, +oncius_TypeSpec_intersect = ($this, $that) => { let var$2, var$3, var$4; - var$2 = new s_Tuple2; - var$3 = new sci_$colon$colon; - var$4 = new oncia_AllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllQualifier__init_(var$4, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$3, var$4, sci_Nil$_MODULE$); - s_Tuple2__init_0(var$2, $action, var$3); - return var$2; + oncius_TypeSpec$_$callClinit(); + var$2 = oncius_TypeSpec$_MODULE$; + var$3 = $this.$ranges; + var$4 = new oncius_TypeSpec$intersect$lambda$_15_0; + var$4.$_0136 = $that; + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(var$2, var$3.$flatMap(var$4)); }, -oncipvaf_DdlPrivilegeBuilder_allDbQualifier = ($this, $privilege, $resource) => { - let var$3, var$4, var$5; - var$3 = new s_Tuple3; - var$4 = new sci_$colon$colon; - var$5 = new oncia_AllDatabasesQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllDatabasesQualifier__init_(var$5, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$4, var$5, sci_Nil$_MODULE$); - s_Tuple3__init_0(var$3, $privilege, $resource, var$4); - return var$3; +oncius_TypeSpec_coerceOrLeastUpperBound = ($this, $that) => { + let $coerced; + $coerced = oncius_TypeSpec_intersect(oncius_TypeSpec_coercions($this), $that); + if (oncius_TypeSpec_nonEmpty($coerced)) + return $coerced; + return oncius_TypeSpec_leastUpperBounds($this, $that); }, -oncipvaf_DdlPrivilegeBuilder_allQualifier = ($this, $privilege, $resource) => { - let var$3, var$4, var$5; - var$3 = new s_Tuple3; - var$4 = new sci_$colon$colon; - var$5 = new oncia_AllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_AllQualifier__init_(var$5, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$4, var$5, sci_Nil$_MODULE$); - s_Tuple3__init_0(var$3, $privilege, $resource, var$4); - return var$3; +oncius_TypeSpec_without = ($this, $aType) => { + let var$2, var$3, var$4; + oncius_TypeSpec$_$callClinit(); + var$2 = oncius_TypeSpec$_MODULE$; + var$3 = $this.$ranges; + var$4 = new oncius_TypeSpec$without$lambda$_20_0; + var$4.$_0125 = $aType; + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(var$2, var$3.$flatMap(var$4)); }, -oncipvaf_DdlPrivilegeBuilder_labelAllQualifier = ($this, $privilege, $resource, $pos) => { - return s_Tuple3__init_($privilege, $resource, sci_$colon$colon__init_(oncia_LabelAllQualifier__init_($pos), sci_Nil$_MODULE$)); +oncius_TypeSpec_constrain = ($this, $that) => { + let var$2, var$3, var$4; + oncius_TypeSpec$_$callClinit(); + var$2 = oncius_TypeSpec$_MODULE$; + var$3 = $this.$ranges; + var$4 = new oncius_TypeSpec$constrain$lambda$_21_0; + var$4.$_0691 = $that; + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(var$2, var$3.$flatMap(var$4)); }, -oncipvaf_ExpressionBuilder = $rt_classWithoutFields(0), -oncipvaf_ExpressionBuilder_exitPatternElement0 = ($this, $ctx) => { - let $size, $p, $parts, $relPattern, $i, $part, var$8, $nodePattern, $lhs, $emptyNodePattern; - $size = $ctx.$children0.$size0; - if ($size == 1) { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - return; - } - oncipau_Util$_$callClinit(); - $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - $parts = scm_ArrayDeque__init_0(1); - $relPattern = null; - $i = 0; - while (true) { - if ($i >= $size) { - if ($parts.$length() == 1) - $part = sc_IndexedSeqOps_head$($parts); - else { - $part = new oncie_PathConcatenation; - $p = sci_ArraySeq$_MODULE$; - sr_ClassTag$_$callClinit(); - oncie_PathConcatenation__init_($part, sci_ArraySeq$_unsafeWrapArray($p, scm_ArrayDeque_toArray($parts, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PathFactor)))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = $part; - return; - } - var$8 = ju_ArrayList_get($ctx.$children0, $i); - if (var$8 instanceof oncipv_Cypher25Parser$NodePatternContext) { - $nodePattern = var$8.$ast0; - if ($relPattern === null) - scm_ArrayDeque_addOne($parts, $nodePattern); - else { - scm_ArrayDeque_addOne($parts, oncie_RelationshipChain__init_(scm_ArrayDeque_removeLast($parts, 0), $relPattern, $nodePattern, $p)); - $relPattern = null; - } - } else if (var$8 instanceof oncipv_Cypher25Parser$RelationshipPatternContext) - $relPattern = var$8.$ast0; - else if (!(var$8 instanceof oncipv_Cypher25Parser$QuantifierContext)) { - if (!(var$8 instanceof oncipv_Cypher25Parser$ParenthesizedPathContext)) - break; - scm_ArrayDeque_addOne($parts, var$8.$ast0); - } else { - $lhs = var$8; - $emptyNodePattern = new oncie_NodePattern; - $part = s_None$_MODULE$; - oncie_NodePattern__init_($emptyNodePattern, $part, $part, $part, $part, $relPattern.$position8); - $part = oncie_PathPatternPart__init_(oncie_RelationshipChain__init_($emptyNodePattern, $relPattern, $emptyNodePattern, $relPattern.$position8)); - scm_ArrayDeque_addOne($parts, oncie_QuantifiedPath$_apply(oncie_QuantifiedPath$_MODULE$, $part, $lhs.$ast0, s_None$_MODULE$, $relPattern.$position8)); - $relPattern = null; - } - $i = $i + 1 | 0; - } - $ctx = new jl_IllegalStateException; - $p = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($p); - jl_StringBuilder_append(jl_StringBuilder_append($p, $rt_s(6897)), var$8); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString($p)); - $rt_throw($ctx); +oncius_TypeSpec_leastUpperBounds = ($this, $that) => { + let var$2, var$3, var$4; + oncius_TypeSpec$_$callClinit(); + var$2 = oncius_TypeSpec$_MODULE$; + var$3 = $this.$ranges; + var$4 = new oncius_TypeSpec$leastUpperBounds$lambda$_23_0; + var$4.$_01098 = $that; + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(var$2, var$3.$flatMap(var$4)); }, -oncipvaf_ExpressionBuilder_selectorCount = ($this, $node, $p) => { - let var$3, var$4; - if ($node === null) - return oncie_UnsignedDecimalIntegerLiteral__init_($rt_s(414), $p); - var$3 = new oncie_UnsignedDecimalIntegerLiteral; - var$4 = $node.$getText(); - oncipau_Util$_$callClinit(); - oncie_UnsignedDecimalIntegerLiteral__init_0(var$3, var$4, oncipau_Util$_pos1(oncipau_Util$_MODULE$, $node)); - return var$3; +oncius_TypeSpec_wrapInList = $this => { + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $this.$ranges.$map(new oncius_TypeSpec$wrapInList$lambda$_24_0)); }, -oncipvaf_ExpressionBuilder_binaryPredicate = ($this, $lhs, $token, $rhs) => { - let var$4, var$5, var$6; - var$4 = ($token.$getSymbol()).$getType0(); - switch (var$4) { - case 96: - var$5 = new oncie_Equals; - var$6 = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_Equals__init_(var$5, $lhs, var$6, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 114: - var$5 = new oncie_GreaterThanOrEqual; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_GreaterThanOrEqual__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 120: - var$5 = new oncie_GreaterThan; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_GreaterThan__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 144: - var$5 = new oncie_LessThanOrEqual; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_LessThanOrEqual__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 152: - var$5 = new oncie_LessThan; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_LessThan__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 159: - var$5 = new oncie_InvalidNotEquals; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_InvalidNotEquals__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - case 160: - var$5 = new oncie_NotEquals; - $rhs = $rhs.$ast0; - oncipau_Util$_$callClinit(); - oncie_NotEquals__init_(var$5, $lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token.$getSymbol())); - return var$5; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); +oncius_TypeSpec_covariant = $this => { + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $this.$ranges.$map(new oncius_TypeSpec$covariant$lambda$_26_0)); }, -oncipvaf_ExpressionBuilder_stringAndListComparisonExpression0 = ($this, $lhs, $ctx) => { - let $token, $rhs, var$5; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher25Parser$StringAndListComparisonContext) && !($ctx instanceof oncipv_Cypher25Parser$WhenStringOrListContext)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $token = (oncip_AstRuleCtx_getChild($ctx, 0)).$getSymbol(); - $rhs = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; - var$5 = $token.$getType0(); - switch (var$5) { - case 53: - break; - case 95: - return oncie_EndsWith__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); - case 127: - return oncie_In__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); - case 216: - return oncie_RegexMatch__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); - case 254: - return oncie_StartsWith__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$5))); - } - return oncie_Contains__init_($lhs, $rhs, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $token)); +oncius_TypeSpec_unwrapLists = $this => { + let $unwrapped; + $unwrapped = $this.$ranges.$map(new oncius_TypeSpec$unwrapLists$lambda$_27_0); + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $unwrapped); }, -oncipvaf_ExpressionBuilder_nullComparisonExpression0 = ($this, $lhs, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher25Parser$NullComparisonContext) && !($ctx instanceof oncipv_Cypher25Parser$WhenNullContext)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - if (oncipau_Util$_nodeChildType(oncipau_Util$_MODULE$, $ctx, 1) == 175) - return oncie_IsNotNull__init_($lhs, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - return oncie_IsNull__init_($lhs, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncius_TypeSpec_unwrapPotentialLists = $this => { + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $this.$ranges.$map(new oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0)); }, -oncipvaf_ExpressionBuilder_typeComparisonExpression0 = ($this, $lhs, $ctx) => { - let $cypherType, var$4; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !($ctx instanceof oncipv_Cypher25Parser$TypeComparisonContext) && !($ctx instanceof oncipv_Cypher25Parser$WhenTypeContext)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $cypherType = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; - var$4 = oncip_AstRuleCtx_getChild($ctx, 1); - if (!(!$rt_isInstance(var$4, oavrt_TerminalNode) ? 0 : (var$4.$getSymbol()).$getType0() != 175 ? 0 : 1)) - return oncia_IsTyped__init_($lhs, $cypherType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - return oncia_IsNotTyped__init_($lhs, $cypherType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncius_TypeSpec_coercions = $this => { + let $simpleCoercions; + $simpleCoercions = $this.$ranges.$flatMap(new oncius_TypeSpec$coercions$lambda$_29_0); + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_exact(oncius_TypeSpec$_MODULE$, $simpleCoercions); }, -oncipvaf_ExpressionBuilder_normalFormComparisonExpression = ($this, $lhs, $nfCtx, $not, $p) => { - let $nf; - oncipau_Util$_$callClinit(); - $nf = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, $nfCtx, new oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_00); - if (!$not) - return oncia_IsNormalized__init_($lhs, $nf, $p); - return oncia_IsNotNormalized__init_($lhs, $nf, $p); +oncius_TypeSpec_nonEmpty = $this => { + return $this.$ranges.$isEmpty() ? 0 : 1; }, -oncipvaf_ExpressionBuilder_subqueryBuilder0 = ($this, $regQuery, $matchMode, $whereClause, $patternList) => { - let $patternParts, $patternPos, $where, $finalMatchMode, var$9, var$10, var$11; - if ($regQuery !== null) - return $regQuery.$ast0; - $patternParts = sci_ArraySeq_map($patternList.$ast0, new oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_00); - $patternPos = oncie_PatternPartWithSelector_position(sc_IndexedSeqOps_head$($patternParts)); - oncipau_Util$_$callClinit(); - $where = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $whereClause); - $regQuery = oncipau_Util$_MODULE$; - $whereClause = new oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_10; - $whereClause.$_0200 = $patternPos; - $finalMatchMode = oncipau_Util$_astOpt0($regQuery, $matchMode, $whereClause); - $whereClause = new oncia_SingleQuery; - $patternList = sci_ArraySeq$_MODULE$; - $regQuery = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncia_Match, 1); - var$10 = var$9.data; - var$11 = new oncia_Match; - $matchMode = oncie_Pattern$ForMatch__init_($patternParts, $patternPos); - s_package$_$callClinit(); - oncia_Match__init_(var$11, 0, $finalMatchMode, $matchMode, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), $where, $patternPos); - var$10[0] = var$11; - $regQuery = sr_ScalaRunTime$_wrapRefArray($regQuery, var$9); - sr_ClassTag$_$callClinit(); - oncia_SingleQuery__init_($whereClause, sci_ArraySeq$_from($patternList, $regQuery, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Match))), $patternPos); - return $whereClause; +oncius_TypeSpec_toStream = ($this, $rs) => { + let var$2, var$3, var$4; + if (($rs.$apply4()).$isEmpty()) { + s_package$_$callClinit(); + return s_package$_Stream.$from0(sci_Nil$_MODULE$); + } + oncius_TypeSpec$_$callClinit(); + var$2 = oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes0(oncius_TypeSpec$_MODULE$); + var$3 = new oncius_TypeSpec$toStream$lambda$_35_0; + var$3.$_0649 = $this; + var$3.$_1221 = $rs; + var$2 = sc_AbstractIterable_toStream(sc_StrictOptimizedIterableOps_filter$(var$2, var$3)); + var$3 = new oncius_TypeSpec$toStream$lambda$_35_1; + var$3.$_083 = $this; + var$3.$_130 = $rs; + if (var$2.$isEmpty()) + var$2 = sci_Stream$_from(sci_Stream$_MODULE$, oncius_TypeSpec$toStream$lambda$_35_1_apply(var$3)); + else { + $rs = var$2.$head(); + var$4 = new sci_Stream$append$lambda$_49_0; + var$4.$_0598 = var$2; + var$4.$_1201 = var$3; + var$2 = sci_Stream$Cons__init_($rs, var$4); + } + return var$2; }, -oncipvaf_ExpressionBuilder_exitTypeName = ($this, $ctx) => { - let $size, $p, $firstToken, var$5, var$6, var$7, var$8; +oncius_TypeSpec_hashCode = $this => { + return 41 * sc_AbstractSeq_hashCode($this.$ranges) | 0; +}, +oncius_TypeSpec_equals = ($this, $that) => { + let $infinite1, $finite2, $finite1, $infinite2, var$6; + if (!($that instanceof oncius_TypeSpec)) + return 0; + $that = $that; + if ($this.$ranges.$isEmpty()) + return $that.$ranges.$isEmpty(); a: { - $size = ju_ArrayList_size($ctx.$children0); - oncipau_Util$_$callClinit(); - $p = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - $firstToken = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); - switch ($size) { - case 1: - switch ($firstToken) { - case 21: - var$5 = oncius_AnyType__init_(1, $p); - break a; - case 31: - case 32: - var$5 = oncius_BooleanType__init_(1, $p); - break a; - case 63: - var$5 = oncius_DateType__init_(1, $p); - break a; - case 86: - var$5 = oncius_DurationType__init_(1, $p); - break a; - case 88: - case 218: - var$5 = oncius_RelationshipType__init_(1, $p); - break a; - case 107: - var$5 = oncius_FloatType__init_(1, $p); - break a; - case 133: - case 134: - var$5 = oncius_IntegerType__init_(1, $p); - break a; - case 154: - var$5 = oncius_MapType__init_(1, $p); - break a; - case 169: - case 291: - var$5 = oncius_NodeType__init_(1, $p); - break a; - case 176: - break; - case 178: - var$5 = oncius_NullType__init_($p); - break a; - case 190: - case 191: - var$5 = oncius_PathType__init_(1, $p); - break a; - case 195: - var$5 = oncius_PointType__init_(1, $p); - break a; - case 257: - case 289: - var$5 = oncius_StringType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_NothingType__init_($p); - break a; - case 2: - switch ($firstToken) { - case 21: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 88: - case 218: - break; - case 154: - var$5 = oncius_MapType__init_(1, $p); - break a; - case 169: - case 291: - var$5 = oncius_NodeType__init_(1, $p); - break a; - case 288: - var$5 = oncius_AnyType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_RelationshipType__init_(1, $p); - break a; - case 149: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 64: - break; - case 264: - var$5 = oncius_LocalTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_LocalDateTimeType__init_(1, $p); - break a; - case 205: - break; - case 250: - var$5 = oncius_IntegerType__init_(1, $p); - break a; - case 301: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 64: - break; - case 264: - var$5 = oncius_ZonedTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ZonedDateTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_PropertyValueType__init_(1, $p); - break a; - case 3: - switch ($firstToken) { - case 21: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 205: - break; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_PropertyValueType__init_(1, $p); - break a; - case 264: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 295: - break; - case 296: - var$5 = oncius_LocalTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ZonedTimeType__init_(1, $p); - break a; - case 266: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 295: - break; - case 296: - var$5 = oncius_LocalDateTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ZonedDateTimeType__init_(1, $p); - break a; - default: - } - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - case 4: - switch ($firstToken) { - case 21: - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncipv_Cypher25Parser$TypeNameContext_LT($ctx) !== null && oncipv_Cypher25Parser$TypeNameContext_GT($ctx) !== null)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - $p = oncip_AstRuleCtx_ast(oncipv_Cypher25Parser$TypeNameContext_type($ctx)); - if ($p instanceof oncius_ClosedDynamicUnionType) { - var$5 = $p; - break a; - } - var$5 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - var$6 = s_Predef$_Set(s_Predef$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 1); - var$8.data[0] = $p; - oncius_ClosedDynamicUnionType__init_(var$5, sci_Set$_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)), $p.$position()); - break a; - case 22: - case 147: - break; - case 264: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 295: - break; - case 296: - var$5 = oncius_LocalTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); + b: { + c: { + if ($this instanceof oncius_TypeSpec) { + $infinite1 = $this.$ranges.$partition(new oncius_TypeSpec$equals$lambda$_38_0); + if ($infinite1 === null) + $rt_throw(s_MatchError__init_($infinite1)); + $finite2 = s_Tuple2__init_($infinite1.$_10, $infinite1.$_20); + $finite1 = $finite2.$_10; + $infinite1 = $finite2.$_20; + $that = $that.$ranges.$partition(new oncius_TypeSpec$equals$lambda$_38_1); + if ($that === null) + $rt_throw(s_MatchError__init_($that)); + d: { + $that = s_Tuple2__init_($that.$_10, $that.$_20); + $finite2 = $that.$_10; + $infinite2 = $that.$_20; + if ($infinite1 !== null) { + if (!$infinite1.$equals($infinite2)) + break c; + else + break d; } - var$5 = oncius_ZonedTimeType__init_(1, $p); - break a; - case 266: - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0()) { - case 295: - break; - case 296: - var$5 = oncius_LocalDateTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); + if ($infinite2 !== null) + break c; + } + e: { + if ($finite1 !== null) { + if ($finite1.$equals($finite2)) + break b; + else + break e; } - var$5 = oncius_ZonedDateTimeType__init_(1, $p); - break a; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); - } - var$5 = oncius_ListType__init_(oncip_AstRuleCtx_ast(oncipv_Cypher25Parser$TypeNameContext_type($ctx)), 1, $p); - break a; - default: - } - switch ($firstToken) { - case 21: - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncipv_Cypher25Parser$TypeNameContext_LT($ctx) !== null && oncipv_Cypher25Parser$TypeNameContext_GT($ctx) !== null)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - $p = oncip_AstRuleCtx_ast(oncipv_Cypher25Parser$TypeNameContext_type($ctx)); - if ($p instanceof oncius_ClosedDynamicUnionType) { - var$5 = $p; - break a; + if ($finite2 === null) + break b; + } + $that = new oncius_TypeSpec$equals$lambda$_38_2; + $that.$_01059 = $finite1; + $infinite1 = oncius_TypeSpec_toStream($this, $that); + $that = new oncius_TypeSpec$equals$lambda$_38_3; + $that.$_0692 = $finite2; + $that = oncius_TypeSpec_toStream($this, $that); + if ($infinite1 === null) { + if ($that === null) + break b; + } else if (sc_Seq_equals$($infinite1, $that)) + break b; } - var$5 = new oncius_ClosedDynamicUnionType; - s_Predef$_$callClinit(); - var$6 = s_Predef$_Set(s_Predef$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncius_CypherType, 1); - var$8.data[0] = $p; - oncius_ClosedDynamicUnionType__init_(var$5, sci_Set$_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)), $p.$position()); - break a; - case 22: - case 147: - break; - default: - $p = new jl_IllegalStateException; - var$5 = jl_StringBuilder__init_(); - jl_StringBuilder_append1(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6898)), $ctx), $rt_s(6899)), $firstToken), 41); - jl_IllegalStateException__init_($p, jl_StringBuilder_toString(var$5)); - $rt_throw($p); + } + var$6 = 0; + break a; } - var$5 = oncius_ListType__init_(oncip_AstRuleCtx_ast(oncipv_Cypher25Parser$TypeNameContext_type($ctx)), 1, $p); - } - $ctx.$ast0 = var$5; -}, -oncipvaf_ExpressionBuilder_exitTrimFunction = ($this, $ctx) => { - let $trimSource, $trimCharacterString, $trimSpecification, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - $trimSource = $ctx.$trimSource0.$ast0; - oncipau_Util$_$callClinit(); - $trimCharacterString = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$trimCharacterString); - $trimSpecification = oncipcaf_ParserTrimSpecification_BOTH.$description1; - if (oncip_AstRuleCtx_getToken($ctx, 145, 0) !== null) - $trimSpecification = oncipcaf_ParserTrimSpecification_LEADING.$description1; - if (oncip_AstRuleCtx_getToken($ctx, 270, 0) !== null) - $trimSpecification = oncipcaf_ParserTrimSpecification_TRAILING.$description1; - if (s_Option_isEmpty($trimCharacterString)) { - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$6 = oncie_FunctionName$_MODULE$; - oncief_Trim$_$callClinit(); - var$7 = oncie_FunctionName$_apply(var$6, $rt_s(4012), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_package$_$callClinit(); - var$8 = s_package$_IndexedSeq(s_package$_MODULE$); - var$6 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($trimSpecification, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)), $trimSource]); - var$8 = sc_SeqFactory$Delegate_apply(var$8, sr_ScalaRunTime$_wrapRefArray(var$6, var$9)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, var$7, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$8 = oncie_FunctionName$_MODULE$; - oncief_Trim$_$callClinit(); - var$10 = oncie_FunctionName$_apply(var$8, $rt_s(4012), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_package$_$callClinit(); - var$11 = s_package$_IndexedSeq(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_wrapArray(oncie_Expression, [oncie_StringLiteral__init_($trimSpecification, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)), $trimCharacterString.$get1(), $trimSource]); - var$8 = sc_SeqFactory$Delegate_apply(var$11, sr_ScalaRunTime$_wrapRefArray(var$7, var$9)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, var$10, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + var$6 = 1; } - $ctx.$ast0 = var$5; + return var$6; }, -oncipvaf_StatementBuilder0 = $rt_classWithoutFields(0), -oncipvaf_StatementBuilder_exitSetItem = ($this, $ctx) => { - let var$2, $dynamicProp, $dynamicLabels, $dynamicLabels_0, $labels; - if ($ctx instanceof oncipv_Cypher25Parser$SetPropContext) { - var$2 = new oncia_SetPropertyItem; - oncipau_Util$_$callClinit(); - oncia_SetPropertyItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if ($ctx instanceof oncipv_Cypher25Parser$SetDynamicPropContext) { - oncipau_Util$_$callClinit(); - $dynamicProp = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$2 = oncia_SetDynamicPropertyItem__init_($dynamicProp, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, $dynamicProp.$position39); - } else if ($ctx instanceof oncipv_Cypher25Parser$SetPropsContext) { - var$2 = new oncia_SetExactPropertiesFromMapItem; - oncipau_Util$_$callClinit(); - oncia_SetExactPropertiesFromMapItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if ($ctx instanceof oncipv_Cypher25Parser$AddPropContext) { - var$2 = new oncia_SetIncludingPropertiesFromMapItem; - oncipau_Util$_$callClinit(); - oncia_SetIncludingPropertiesFromMapItem__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if ($ctx instanceof oncipv_Cypher25Parser$SetLabelsContext) { - oncipau_Util$_$callClinit(); - $dynamicLabels = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if ($dynamicLabels === null) - $rt_throw(s_MatchError__init_($dynamicLabels)); - $dynamicLabels_0 = s_Tuple2__init_($dynamicLabels.$_1(), $dynamicLabels.$_2()); - $labels = $dynamicLabels_0.$_10; - $dynamicLabels = $dynamicLabels_0.$_20; - var$2 = oncia_SetLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, $labels, $dynamicLabels, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - if (!($ctx instanceof oncipv_Cypher25Parser$SetLabelsIsContext)) { - $dynamicLabels = new jl_IllegalStateException; - $labels = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($labels); - jl_StringBuilder_append(jl_StringBuilder_append($labels, $rt_s(6898)), $ctx); - jl_Throwable__init_0($dynamicLabels, jl_AbstractStringBuilder_toString($labels)); - $rt_throw($dynamicLabels); +oncius_TypeSpec_toStrings = $this => { + let var$1, var$2, var$3, var$4, var$5; + s_package$_$callClinit(); + var$1 = sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)); + var$2 = $this.$ranges; + var$3 = new oncius_TypeSpec$toStrings$lambda$_40_0; + a: { + while (!var$2.$isEmpty()) { + if (var$2.$exists(new oncius_TypeSpec$toStrings$lambda$_41_0)) { + var$1 = var$1.$appended(var$3.$apply2($rt_s(4537))); + break a; + } + oncius_TypeSpec$_$callClinit(); + var$4 = oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes0(oncius_TypeSpec$_MODULE$); + var$5 = new oncius_TypeSpec$toStrings$lambda$_41_1; + var$5.$_0503 = $this; + var$5.$_1173 = var$2; + var$4 = sc_StrictOptimizedIterableOps_filter$(var$4, var$5); + var$5 = new oncius_TypeSpec$toStrings$lambda$_41_2; + var$5.$_0690 = var$3; + var$1 = var$1.$concat(var$4.$map(var$5)); + var$2 = oncius_TypeSpec_innerTypeRanges($this, var$2); + var$4 = new oncius_TypeSpec$toStrings$lambda$_41_3; + var$4.$_020 = var$3; + var$3 = var$4; } - oncipau_Util$_$callClinit(); - $dynamicLabels = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if ($dynamicLabels === null) - $rt_throw(s_MatchError__init_($dynamicLabels)); - $dynamicLabels_0 = s_Tuple2__init_($dynamicLabels.$_1(), $dynamicLabels.$_2()); - $labels = $dynamicLabels_0.$_10; - $dynamicLabels_0 = $dynamicLabels_0.$_20; - var$2 = oncia_SetLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, $labels, $dynamicLabels_0, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); } - $ctx.$ast0 = var$2; -}; -let oncipvaf_StatementBuilder_indexHint0 = ($this, $ctx, $hintType) => { - let $spec, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && !(oncip_AstRuleCtx_getToken($ctx, 128, 0) !== null && oncipv_Cypher25Parser$HintContext_LPAREN($ctx) !== null && oncipv_Cypher25Parser$HintContext_LPAREN($ctx) !== null && oavr_ParserRuleContext_getChildCount($ctx) <= 9)) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - $spec = oncip_AstRuleCtx_getToken($ctx, 240, 0) === null ? oncia_UsingIndexHint$SeekOrScan$_MODULE$ : oncia_UsingIndexHint$SeekOnly$_MODULE$; - var$4 = new oncia_UsingIndexHint; - var$5 = (oncipv_Cypher25Parser$HintContext_variable($ctx)).$ast0; - var$6 = (oncipv_Cypher25Parser$HintContext_labelOrRelType($ctx)).$ast0; - var$7 = oncipv_Cypher25Parser$HintContext_nonEmptyNameList($ctx); - var$8 = sci_ArraySeq$_MODULE$; - var$9 = sc_StrictOptimizedIterableOps_collect$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher25Parser$NonEmptyNameListContext_symbolicNameString(var$7))), new oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1); - sr_ClassTag$_$callClinit(); - var$10 = sci_ArraySeq$_from(var$8, var$9, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PropertyKeyName))); - oncipau_Util$_$callClinit(); - oncia_UsingIndexHint__init_(var$4, var$5, var$6, var$10, $spec, $hintType, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - return var$4; + return var$1; +}, +oncius_TypeSpec_mkString = ($this, $sep) => { + return oncius_TypeSpec_mkString0($this, $rt_s(4), $sep, $sep, $rt_s(4)); +}, +oncius_TypeSpec_mkString1 = ($this, $sep, $lastSep) => { + return oncius_TypeSpec_mkString0($this, $rt_s(4), $sep, $lastSep, $rt_s(4)); +}, +oncius_TypeSpec_mkString0 = ($this, $start, $sep, $lastSep, $end) => { + let var$5, var$6; + var$5 = scm_StringBuilder__init_(); + var$6 = oncius_TypeSpec_toStrings($this); + return scm_StringBuilder_result(var$6.$length() <= 1 ? var$6.$addString(var$5, $start, $sep, $end) : scm_StringBuilder_append(scm_StringBuilder_append(scm_StringBuilder_append((var$6.$dropRight0(1)).$addString(var$5, $start, $sep, $rt_s(4)), $lastSep), var$6.$last()), $end)); +}, +oncius_TypeSpec_toString = $this => { + return oncius_TypeSpec_mkString0($this, $rt_s(6474), $rt_s(45), $rt_s(45), $rt_s(42)); +}, +oncius_TypeSpec_toShortString = $this => { + return oncius_TypeSpec_mkString0($this, $rt_s(4), $rt_s(448), $rt_s(448), $rt_s(4)); +}, +oncius_TypeSpec_innerTypeRanges = ($this, $rs) => { + return $rs.$flatMap(new oncius_TypeSpec$innerTypeRanges$lambda$_49_0); +}, +oncius_TypeSpec__init_ = ($this, $ranges) => { + $this.$ranges = $ranges; +}, +oncius_TypeSpec__init_0 = var_0 => { + let var_1 = new oncius_TypeSpec(); + oncius_TypeSpec__init_(var_1, var_0); + return var_1; +}, +oncil_MultiOperatorLabelExpression = $rt_classWithoutFields(0), +oncil_MultiOperatorLabelExpression_flatten$ = $$this => { + return ($$this.$children()).$flatMap(new oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0); }; -function oncipvaf_Cypher25AstBuilder() { - let a = this; oncipv_AbstractCypher25AstBuilder.call(a); - a.$notificationLogger4 = null; - a.$exceptionFactory5 = null; - a.$RelGraphToken$module0 = null; - a.$NodeGraphToken$module0 = null; - a.$ElementGraphToken$module = null; - a.$Node$module0 = null; - a.$Rel$module = null; - a.$NoEntity$module0 = null; +function oncil_LabelExpression$Disjunctions() { + let a = this; jl_Object.call(a); + a.$children3 = null; + a.$containsIs2 = 0; + a.$position100 = null; } -let oncipvaf_Cypher25AstBuilder_exitStatements = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_Statements; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StatementContext)); - sr_ClassTag$_$callClinit(); - oncia_Statements__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))); - $ctx.$ast0 = var$2; +let oncil_LabelExpression$Disjunctions_flatten = $this => { + return oncil_MultiOperatorLabelExpression_flatten$($this); }, -oncipvaf_Cypher25AstBuilder_exitStatement = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +oncil_LabelExpression$Disjunctions_containsGpmSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); }, -oncipvaf_Cypher25AstBuilder_exitRegularQuery = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$3 = $ctx.$children0.$size0; - if (var$3 != 1) { - var$4 = 1; - var$5 = 0; - var$6 = null; - while (var$4 < var$3) { - a: { - var$7 = ju_ArrayList_get($ctx.$children0, var$4); - if (var$7 instanceof oncipv_Cypher25Parser$SingleQueryContext) { - var$7 = var$7.$ast0; - var$8 = !var$5 ? oncia_UnionDistinct__init_(var$2, var$7, 0, var$6) : oncia_UnionAll__init_(var$2, var$7, 0, var$6); - var$5 = 0; - } else { - if (!$rt_isInstance(var$7, oavrt_TerminalNode)) { - var$2 = new jl_IllegalStateException; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(6900)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$7)); - $rt_throw(var$2); - } - var$8 = var$7; - switch ((var$8.$getSymbol()).$getType0()) { - case 18: - break; - case 77: - var$5 = 0; - var$8 = var$2; - break a; - case 279: - var$6 = oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$8); - var$8 = var$2; - break a; - default: - $ctx = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6901)), var$8); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw($ctx); +oncil_LabelExpression$Disjunctions_containsGpmSpecificRelTypeExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +}, +oncil_LabelExpression$Disjunctions_containsMatchSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Disjunctions_containsDynamicLabelOrTypeExpression = $this => { + return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +}, +oncil_LabelExpression$Disjunctions_replaceColonSyntax = $this => { + return oncil_LabelExpression_replaceColonSyntax$($this); +}, +oncil_LabelExpression$Disjunctions_foldedOver = $this => { + return $this; +}, +oncil_LabelExpression$Disjunctions_folder0 = $this => { + return onciu_Foldable_folder$($this); +}, +oncil_LabelExpression$Disjunctions_folder = ($this, $cancellation) => { + return onciu_Foldable_folder$0($this, $cancellation); +}, +oncil_LabelExpression$Disjunctions_children = $this => { + return $this.$children3; +}, +oncil_LabelExpression$Disjunctions_containsIs = $this => { + return $this.$containsIs2; +}, +oncil_LabelExpression$Disjunctions_position = $this => { + return $this.$position100; +}, +oncil_LabelExpression$Disjunctions_unnestDisjunctions = $this => { + if (!$this.$children3.$exists(new oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_0)) + return $this; + return oncil_LabelExpression$Disjunctions_copy($this, $this.$children3.$flatMap(new oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_1), $this.$containsIs2, $this.$position100); +}, +oncil_LabelExpression$Disjunctions_copy = ($this, $children, $containsIs, $position) => { + return oncil_LabelExpression$Disjunctions__init_0($children, $containsIs, $position); +}, +oncil_LabelExpression$Disjunctions_productPrefix = $this => { + return $rt_s(6475); +}, +oncil_LabelExpression$Disjunctions_productArity = $this => { + return 2; +}, +oncil_LabelExpression$Disjunctions_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$children3; + case 1: + return jl_Boolean_valueOf($this.$containsIs2); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncil_LabelExpression$Disjunctions_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Disjunctions_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6475))), sr_Statics_anyHash($this.$children3)), !$this.$containsIs2 ? 1237 : 1231), 2); +}, +oncil_LabelExpression$Disjunctions_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Disjunctions_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_LabelExpression$Disjunctions) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs2 != $x$1.$containsIs2) + break b; + var$2 = $this.$children3; + $x$1 = $x$1.$children3; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; } - var$5 = 1; - var$8 = var$2; + if ($x$1 !== null) + break b; } } - var$4 = var$4 + 1 | 0; - var$2 = var$8; + var$3 = 1; + break a; } + var$3 = 0; } - $ctx.$ast0 = var$2; -}, -oncipvaf_Cypher25AstBuilder_exitSingleQuery = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_SingleQuery; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = $ctx.$children0; - sr_ClassTag$_$callClinit(); - oncia_SingleQuery__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Clause))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; + return var$3; }, -oncipvaf_Cypher25AstBuilder_exitClause = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncil_LabelExpression$Disjunctions_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipvaf_Cypher25AstBuilder_exitUseClause = ($this, $ctx) => { +oncil_LabelExpression$Disjunctions_mapExpressions = ($this, $f) => { let var$2, var$3; - var$2 = new oncia_UseGraph; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphReferenceContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_UseGraph__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; + var$2 = $this.$children3; + var$3 = new oncil_LabelExpression$Disjunctions$mapExpressions$lambda$_17_0; + var$3.$_01073 = $f; + return oncil_LabelExpression$Disjunctions_copy($this, var$2.$map(var$3), $this.$containsIs2, $this.$position100); }, -oncipvaf_Cypher25AstBuilder_exitGraphReference = ($this, $ctx) => { +oncil_LabelExpression$Disjunctions__init_ = ($this, $children, $containsIs, $position) => { + $this.$children3 = $children; + $this.$containsIs2 = $containsIs; + $this.$position100 = $position; +}, +oncil_LabelExpression$Disjunctions__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncil_LabelExpression$Disjunctions(); + oncil_LabelExpression$Disjunctions__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncil_LabelExpression$Conjunctions() { + let a = this; jl_Object.call(a); + a.$children4 = null; + a.$containsIs5 = 0; + a.$position117 = null; +} +let oncil_LabelExpression$Conjunctions_flatten = $this => { + return oncil_MultiOperatorLabelExpression_flatten$($this); +}, +oncil_LabelExpression$Conjunctions_containsGpmSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Conjunctions_containsGpmSpecificRelTypeExpression = $this => { + return oncil_LabelExpression_containsGpmSpecificRelTypeExpression$($this); +}, +oncil_LabelExpression$Conjunctions_containsMatchSpecificLabelExpression = $this => { + return oncil_LabelExpression_containsMatchSpecificLabelExpression$($this); +}, +oncil_LabelExpression$Conjunctions_containsDynamicLabelOrTypeExpression = $this => { + return oncil_LabelExpression_containsDynamicLabelOrTypeExpression$($this); +}, +oncil_LabelExpression$Conjunctions_replaceColonSyntax = $this => { + return oncil_LabelExpression_replaceColonSyntax$($this); +}, +oncil_LabelExpression$Conjunctions_foldedOver = $this => { + return $this; +}, +oncil_LabelExpression$Conjunctions_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncil_LabelExpression$Conjunctions_folder0 = ($this, $cancellation) => { + return onciu_Foldable_folder$0($this, $cancellation); +}, +oncil_LabelExpression$Conjunctions_children = $this => { + return $this.$children4; +}, +oncil_LabelExpression$Conjunctions_containsIs = $this => { + return $this.$containsIs5; +}, +oncil_LabelExpression$Conjunctions_position = $this => { + return $this.$position117; +}, +oncil_LabelExpression$Conjunctions_unnestConjunctions = $this => { + if (!$this.$children4.$exists(new oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_0)) + return $this; + return oncil_LabelExpression$Conjunctions_copy($this, $this.$children4.$flatMap(new oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_1), $this.$containsIs5, $this.$position117); +}, +oncil_LabelExpression$Conjunctions_copy = ($this, $children, $containsIs, $position) => { + return oncil_LabelExpression$Conjunctions__init_0($children, $containsIs, $position); +}, +oncil_LabelExpression$Conjunctions_productPrefix = $this => { + return $rt_s(6476); +}, +oncil_LabelExpression$Conjunctions_productArity = $this => { + return 2; +}, +oncil_LabelExpression$Conjunctions_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$children4; + case 1: + return jl_Boolean_valueOf($this.$containsIs5); + default: + } + return sr_Statics_ioobe($x$1); +}, +oncil_LabelExpression$Conjunctions_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Conjunctions_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6476))), sr_Statics_anyHash($this.$children4)), !$this.$containsIs5 ? 1237 : 1231), 2); +}, +oncil_LabelExpression$Conjunctions_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_LabelExpression$Conjunctions_equals = ($this, $x$1) => { let var$2, var$3; - if (oncipv_Cypher25Parser$GraphReferenceContext_graphReference($ctx) !== null) - var$2 = (oncipv_Cypher25Parser$GraphReferenceContext_graphReference($ctx)).$ast0; - else if (oncipv_Cypher25Parser$GraphReferenceContext_functionInvocation($ctx) !== null) { - var$2 = new oncia_GraphFunctionReference; - var$3 = (oncipv_Cypher25Parser$GraphReferenceContext_functionInvocation($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncia_GraphFunctionReference__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncia_GraphDirectReference; - var$3 = oncia_CatalogName$_apply(oncia_CatalogName$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameContext), 0)).$ast0); - oncipau_Util$_$callClinit(); - oncia_GraphDirectReference__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_LabelExpression$Conjunctions) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$containsIs5 != $x$1.$containsIs5) + break b; + c: { + var$2 = $this.$children4; + $x$1 = $x$1.$children4; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncil_LabelExpression$Conjunctions)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; } - $ctx.$ast0 = var$2; + return var$3; }, -oncipvaf_Cypher25AstBuilder_exitSymbolicAliasName = ($this, $ctx) => { +oncil_LabelExpression$Conjunctions_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncil_LabelExpression$Conjunctions_mapExpressions = ($this, $f) => { let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString($ctx); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); + var$2 = $this.$children4; + var$3 = new oncil_LabelExpression$Conjunctions$mapExpressions$lambda$_17_0; + var$3.$_0647 = $f; + return oncil_LabelExpression$Conjunctions_copy($this, var$2.$map(var$3), $this.$containsIs5, $this.$position117); }, -oncipvaf_Cypher25AstBuilder_exitReturnClause = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; - $ctx.$ast0 = oncia_Return_copy(var$2, var$2.$distinct1, var$2.$returnItems2, var$2.$orderBy2, var$2.$skip3, var$2.$limit3, var$2.$excludedNames, var$2.$addedInRewrite, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncil_LabelExpression$Conjunctions__init_ = ($this, $children, $containsIs, $position) => { + $this.$children4 = $children; + $this.$containsIs5 = $containsIs; + $this.$position117 = $position; }, -oncipvaf_Cypher25AstBuilder_exitFinishClause = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Finish; - oncipau_Util$_$callClinit(); - oncia_Finish__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncil_LabelExpression$Conjunctions__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncil_LabelExpression$Conjunctions(); + oncil_LabelExpression$Conjunctions__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncipvaf_Cypher25AstBuilder_exitReturnBody = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = new oncia_Return; - var$3 = oncip_AstRuleCtx_getToken($ctx, 77, 0) === null ? 0 : 1; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ReturnItemsContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$OrderByContext), 0)); - var$6 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SkipContext), 0)); - var$7 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LimitContext), 0)); - oncia_Return$_$callClinit(); - oncia_Return__init_(var$2, var$3, var$4, var$5, var$6, var$7, oncia_Return$_apply$default$6(oncia_Return$_MODULE$), 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0 = $rt_classWithoutFields(), +onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0_apply = (var$0, var$1) => { + return var$1.$reverse4(); }, -oncipvaf_Cypher25AstBuilder_exitReturnItems = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncia_ReturnItems; - var$3 = oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ReturnItemContext)); - sr_ClassTag$_$callClinit(); - var$4 = oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_(var$2, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +jnc_BufferUnderflowException = $rt_classWithoutFields(jl_RuntimeException), +jnc_BufferOverflowException = $rt_classWithoutFields(jl_RuntimeException); +function jnc_MalformedInputException() { + jnc_CharacterCodingException.call(this); + this.$length7 = 0; +} +let jnc_MalformedInputException_getMessage = $this => { + let var$1, var$2; + var$1 = $this.$length7; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(6477)), var$1); + return jl_AbstractStringBuilder_toString(var$2); +}; +function jnc_UnmappableCharacterException() { + jnc_CharacterCodingException.call(this); + this.$length8 = 0; +} +let jnc_UnmappableCharacterException_getMessage = $this => { + let var$1, var$2; + var$1 = $this.$length8; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append0(jl_StringBuilder_append(var$2, $rt_s(6478)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipvaf_Cypher25AstBuilder_exitReturnItem = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0); - var$4 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); - $ctx.$ast0 = var$4 === null ? oncia_UnaliasedReturnItem__init_(var$3.$ast0, oncipau_Util$_inputText(oncipau_Util$_MODULE$, var$3), var$2) : oncia_AliasedReturnItem__init_(var$3.$ast0, var$4.$ast0, var$2); +oncief_UnresolvedFunction$ = $rt_classWithoutFields(oncief_Function), +oncief_UnresolvedFunction$_MODULE$ = null, +oncief_UnresolvedFunction$__clinit_ = () => { + let var$1; + var$1 = new oncief_UnresolvedFunction$; + oncief_Function__init_(var$1); + oncief_UnresolvedFunction$_MODULE$ = var$1; }, -oncipvaf_Cypher25AstBuilder_exitOrderItem = ($this, $ctx) => { - let var$2; - if ($ctx.$children0.$size0 != 1 && oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AscTokenContext), 0) === null) { - var$2 = new oncia_DescSortItem; - oncipau_Util$_$callClinit(); - oncia_DescSortItem__init_0(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncia_AscSortItem; - oncipau_Util$_$callClinit(); - oncia_AscSortItem__init_0(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +oncief_UnresolvedFunction$_name = $this => { + return $rt_s(3583); }, -oncipvaf_Cypher25AstBuilder_exitSkip = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Skip; - oncipau_Util$_$callClinit(); - oncia_Skip__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_UnresolvedFunction$_productArity = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitLimit = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Limit; - oncipau_Util$_$callClinit(); - oncia_Limit__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_UnresolvedFunction$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitWhereClause = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Where; - oncipau_Util$_$callClinit(); - oncia_Where__init_0(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncief_UnresolvedFunction$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitWithClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ReturnBodyContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0)); - var$4 = new oncia_With; - var$5 = var$2.$distinct1; - var$6 = var$2.$returnItems2; - var$7 = var$2.$orderBy2; - var$8 = var$2.$skip3; - var$9 = var$2.$limit3; - oncia_With$_$callClinit(); - oncia_With__init_(var$4, var$5, var$6, var$7, var$8, var$9, var$3, oncia_DefaultWith$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$4; +oncief_UnresolvedFunction$_hashCode = $this => { + return 933205161; }, -oncipvaf_Cypher25AstBuilder_exitCreateClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternListContext), 0); - var$3 = var$2.$ast0; - var$4 = new oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0; - var$4.$_0798 = $this; - var$4.$_1269 = var$2; - var$5 = sci_ArraySeq_map(var$3, var$4); - var$6 = new oncia_Create; - var$3 = new oncie_Pattern$ForUpdate; - oncipau_Util$_$callClinit(); - oncie_Pattern$ForUpdate__init_(var$3, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - oncia_Create__init_(var$6, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$6; +oncief_UnresolvedFunction$_toString = $this => { + return $rt_s(6479); }, -oncipvaf_Cypher25AstBuilder_exitInsertClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$InsertPatternListContext), 0); - var$3 = new oncia_Insert; - var$4 = new oncie_Pattern$ForUpdate; - var$5 = var$2.$ast0; - oncipau_Util$_$callClinit(); - oncie_Pattern$ForUpdate__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - oncia_Insert__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$3; +oncia_UnresolvedCall$returnVariables$lambda$_17_0 = $rt_classWithoutFields(), +oncia_UnresolvedCall$returnVariables$lambda$_17_0_apply = (var$0, var$1) => { + return sc_IterableOnceOps_toList$(var$1.$items2.$map(new oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0)); }, -oncipvaf_Cypher25AstBuilder_exitSetClause = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_SetClause; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = $ctx.$children0; - sr_ClassTag$_$callClinit(); - oncia_SetClause__init_(var$2, oncipau_Util$_astSeq0(var$3, var$4, 1, 2, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_UnresolvedCall$returnVariables$lambda$_17_1 = $rt_classWithoutFields(), +oncia_UnresolvedCall$returnVariables$lambda$_17_1_apply = var$0 => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; }, -oncipvaf_Cypher25AstBuilder_exitSetItem = ($this, $ctx) => { - oncipvaf_StatementBuilder_exitSetItem($this, $ctx); +oncie_DecimalDoubleLiteral$$anon$5 = $rt_classWithoutFields(oncie_DecimalDoubleLiteral), +oncie_DecimalDoubleLiteral$$anon$5_literalLength = $this => { + return $this.$stringVal2.$nativeString.length; }, -oncipvaf_Cypher25AstBuilder_exitRemoveClause = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_Remove; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$RemoveItemContext)); - sr_ClassTag$_$callClinit(); - oncia_Remove__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncie_SignedDecimalIntegerLiteral$$anon$1 = $rt_classWithoutFields(oncie_SignedDecimalIntegerLiteral), +oncie_SignedDecimalIntegerLiteral$$anon$1_literalLength = $this => { + return $this.$stringVal4.$nativeString.length; }, -oncipvaf_Cypher25AstBuilder_exitRemoveItem = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - if ($ctx instanceof oncipv_Cypher25Parser$RemovePropContext) { - var$2 = $ctx; - var$3 = new oncia_RemovePropertyItem; - oncipau_Util$_$callClinit(); - oncia_RemovePropertyItem__init_(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0); - } else if ($ctx instanceof oncipv_Cypher25Parser$RemoveDynamicPropContext) { - var$2 = $ctx; - var$3 = new oncia_RemoveDynamicPropertyItem; - oncipau_Util$_$callClinit(); - oncia_RemoveDynamicPropertyItem__init_(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0); - } else if ($ctx instanceof oncipv_Cypher25Parser$RemoveLabelsContext) { - var$2 = $ctx; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if (var$4 === null) - $rt_throw(s_MatchError__init_(var$4)); - var$3 = s_Tuple2__init_(var$4.$_1(), var$4.$_2()); - var$4 = var$3.$_10; - var$5 = var$3.$_20; - var$3 = oncia_RemoveLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$4, var$5, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - if (!($ctx instanceof oncipv_Cypher25Parser$RemoveLabelsIsContext)) { - var$2 = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6898)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw(var$2); - } - var$2 = $ctx; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if (var$4 === null) - $rt_throw(s_MatchError__init_(var$4)); - var$3 = s_Tuple2__init_(var$4.$_1(), var$4.$_2()); - var$4 = var$3.$_10; - var$5 = var$3.$_20; - var$3 = oncia_RemoveLabelItem__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$4, var$5, 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncie_NaN$$anon$9 = $rt_classWithoutFields(oncie_NaN), +oncie_NaN$$anon$9_literalLength = $this => { + return 3; +}, +oncie_True$$anon$10 = $rt_classWithoutFields(oncie_True), +oncie_True$$anon$10_literalLength = $this => { + return 4; +}, +oncie_Infinity$$anon$8 = $rt_classWithoutFields(oncie_Infinity), +oncie_Infinity$$anon$8_literalLength = $this => { + return 8; +}, +oncie_StringLiteral$$anon$6 = $rt_classWithoutFields(oncie_StringLiteral), +oncie_StringLiteral$$anon$6_literalLength = $this => { + return $this.$position18.$inputLength; +}, +oncie_StringLiteral$$anon$6_position = $this => { + return $this.$position18; +}, +oncia_GrantRolesToUsers$semanticCheck$lambda$_70_0 = $rt_classWithoutFields(), +oncia_GrantRolesToUsers$semanticCheck$lambda$_70_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5592), var$1); +}, +oncia_GrantRolesToUsers$semanticCheck$lambda$_70_1 = $rt_classWithoutFields(), +oncia_GrantRolesToUsers$semanticCheck$lambda$_70_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5607), var$1); +}, +oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_0 = $rt_classWithoutFields(), +oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5592), var$1); +}, +oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_1 = $rt_classWithoutFields(), +oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(5607), var$1); +}; +function onciu_InputPosition$Range() { + let a = this; jl_Object.call(a); + a.$offset1 = 0; + a.$line2 = 0; + a.$column1 = 0; + a.$inputLength = 0; +} +let onciu_InputPosition$Range_withOffset = ($this, $pos) => { + return onciu_InputPosition_withOffset$($this, $pos); +}, +onciu_InputPosition$Range_toString = $this => { + return onciu_InputPosition_toString$($this); +}, +onciu_InputPosition$Range_offset = $this => { + return $this.$offset1; +}, +onciu_InputPosition$Range_line = $this => { + return $this.$line2; +}, +onciu_InputPosition$Range_column = $this => { + return $this.$column1; +}, +onciu_InputPosition$Range_productArity = $this => { + return 4; +}, +onciu_InputPosition$Range_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Integer_valueOf($this.$offset1); + case 1: + return jl_Integer_valueOf($this.$line2); + case 2: + return jl_Integer_valueOf($this.$column1); + case 3: + return jl_Integer_valueOf($this.$inputLength); + default: } - $ctx.$ast0 = var$3; + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitDeleteClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oncip_AstRuleCtx_getToken($ctx, 74, 0) === null ? 0 : 1; - var$3 = new oncia_Delete; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext)); - sr_ClassTag$_$callClinit(); - oncia_Delete__init_(var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$3; +onciu_InputPosition$Range_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitMatchClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = sci_ArraySeq_map((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternListContext), 0)).$ast0, new oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_00); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$4 = oncip_AstRuleCtx_getToken($ctx, 183, 0) === null ? oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1) : oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2); - var$5 = new oncia_Match; - var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0() != 183 ? 0 : 1; - var$7 = oncipau_Util$_MODULE$; - var$8 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MatchModeContext), 0); - var$9 = new oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_10; - var$9.$_0111 = var$3; - var$7 = oncipau_Util$_astOpt0(var$7, var$8, var$9); - var$10 = oncie_Pattern$ForMatch__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$4)); - var$8 = oncipau_Util$_MODULE$; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$HintContext)); - sr_ClassTag$_$callClinit(); - oncia_Match__init_(var$5, var$6, var$7, var$10, sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$8, var$2, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0)), var$3); - $ctx.$ast0 = var$5; +onciu_InputPosition$Range_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(4092))), $this.$offset1), $this.$line2), $this.$column1), $this.$inputLength), 4); }, -oncipvaf_Cypher25AstBuilder_exitMatchMode = ($this, $ctx) => { - let var$2, var$3, var$4; +onciu_InputPosition$Range_equals = ($this, $x$1) => { + let var$2; a: { - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); - switch (var$2.$getType0()) { - case 75: - var$3 = oncie_MatchMode$DifferentRelationships__init_(0, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - break a; - case 221: - break; - default: - var$4 = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6898)), $ctx), $rt_s(6902)), var$2), 41); - jl_Throwable__init_0(var$4, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$4); + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_InputPosition$Range) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$offset1 != $x$1.$offset1) + break b; + if ($this.$line2 != $x$1.$line2) + break b; + if ($this.$column1 != $x$1.$column1) + break b; + if ($this.$inputLength != $x$1.$inputLength) + break b; + if (!($this instanceof onciu_InputPosition$Range)) + break b; + } + var$2 = 1; + break a; } - var$3 = oncie_MatchMode$RepeatableElements__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); + var$2 = 0; } - $ctx.$ast0 = var$3; + return var$2; }, -oncipvaf_Cypher25AstBuilder_exitHint = ($this, $ctx) => { +oncie_SignedOctalIntegerLiteral$$anon$3 = $rt_classWithoutFields(oncie_SignedOctalIntegerLiteral), +oncie_SignedOctalIntegerLiteral$$anon$3_literalLength = $this => { + return $this.$stringVal1.$nativeString.length; +}, +oncie_SignedHexIntegerLiteral$$anon$4 = $rt_classWithoutFields(oncie_SignedHexIntegerLiteral), +oncie_SignedHexIntegerLiteral$$anon$4_literalLength = $this => { + return $this.$stringVal3.$nativeString.length; +}; +function ju_LinkedList$SequentialListIterator() { + let a = this; jl_Object.call(a); + a.$nextEntry = null; + a.$prevEntry = null; + a.$currentEntry0 = null; + a.$index5 = 0; + a.$version0 = 0; + a.$this$00 = null; +} +let ju_LinkedList$SequentialListIterator__init_0 = ($this, var$1, $nextEntry, $prevEntry, $index) => { + $this.$this$00 = var$1; + $this.$version0 = var$1.$modCount; + $this.$nextEntry = $nextEntry; + $this.$prevEntry = $prevEntry; + $this.$index5 = $index; +}, +ju_LinkedList$SequentialListIterator__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new ju_LinkedList$SequentialListIterator(); + ju_LinkedList$SequentialListIterator__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; +}, +ju_LinkedList$SequentialListIterator_hasNext = $this => { + return $this.$nextEntry === null ? 0 : 1; +}, +ju_LinkedList$SequentialListIterator_next = $this => { + let var$1, $result; + ju_LinkedList$SequentialListIterator_checkConcurrentModification($this); + var$1 = $this.$nextEntry; + if (var$1 === null) { + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); + } + $result = var$1.$item; + $this.$currentEntry0 = var$1; + $this.$prevEntry = var$1; + $this.$nextEntry = var$1.$next7; + $this.$index5 = $this.$index5 + 1 | 0; + return $result; +}, +ju_LinkedList$SequentialListIterator_nextIndex = $this => { + return $this.$index5; +}, +ju_LinkedList$SequentialListIterator_checkConcurrentModification = $this => { + let var$1; + if ($this.$version0 >= $this.$this$00.$modCount) + return; + var$1 = new ju_ConcurrentModificationException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); +}; +function onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0() { + jl_Object.call(this); + this.$_0228 = null; +} +let onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0_apply = (var$0, var$1) => { let var$2, var$3; + var$1 = var$0.$_0228.$apply2(var$1); + if (var$1 instanceof onciu_Foldable$SkipChildren) + var$1 = s_Tuple2__init_(var$1.$acc, s_None$_MODULE$); + else if (var$1 instanceof onciu_Foldable$TraverseChildren) + var$1 = s_Tuple2__init_(var$1.$acc0, s_Some__init_(new onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0)); + else { + if (!(var$1 instanceof onciu_Foldable$TraverseChildrenNewAccForSiblings)) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = var$1; + var$2 = var$1.$accumulatorForChildren; + var$3 = var$1.$forSiblings; + var$1 = s_Tuple2__init_(var$2, s_Some__init_(var$3)); + } + return var$1; +}; +function oncia_Union$Mapping$1() { + let a = this; jl_Object.call(a); + a.$unionVariable0 = null; + a.$variableInLhsName = null; + a.$variableInRhsName = null; + a.$$outer73 = null; +} +let oncia_Union$Mapping$1_productPrefix = $this => { + return $rt_s(6480); +}, +oncia_Union$Mapping$1_productArity = $this => { + return 3; +}, +oncia_Union$Mapping$1_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$unionVariable0; + case 1: + return $this.$variableInLhsName; + case 2: + return $this.$variableInRhsName; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Union$Mapping$1_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Union$Mapping$1_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Union$Mapping$1_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Union$Mapping$1_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol(); - switch (var$2.$getType0()) { - case 128: - break; - case 136: - var$2 = new oncia_UsingJoinHint; - var$3 = oncipv_Cypher25Parser$HintContext_nonEmptyNameList($ctx); - oncia_UsingJoinHint__init_(var$2, onciu_NonEmptyList$_from(onciu_NonEmptyList$_MODULE$, sc_StrictOptimizedIterableOps_collect$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, var$3.$children0)), new oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$10)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 195: - var$2 = oncipvaf_StatementBuilder_indexHint0($this, $ctx, oncia_UsingIndexHint$UsingPointIndexType$_MODULE$); - break a; - case 209: - var$2 = oncipvaf_StatementBuilder_indexHint0($this, $ctx, oncia_UsingIndexHint$UsingRangeIndexType$_MODULE$); - break a; - case 234: - var$2 = oncia_UsingScanHint__init_((oncipv_Cypher25Parser$HintContext_variable($ctx)).$ast0, (oncipv_Cypher25Parser$HintContext_labelOrRelType($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 262: - var$2 = oncipvaf_StatementBuilder_indexHint0($this, $ctx, oncia_UsingIndexHint$UsingTextIndexType$_MODULE$); - break a; - default: - $ctx = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6901)), var$2); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($ctx); + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Union$Mapping$1) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$unionVariable0; + var$3 = $x$1.$unionVariable0; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$variableInLhsName; + var$3 = $x$1.$variableInLhsName; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$variableInRhsName; + $x$1 = $x$1.$variableInRhsName; + if (var$3 !== null) { + if (!jl_String_equals(var$3, $x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_Union$Mapping$1)) + break b; + } + var$4 = 1; + break a; } - var$2 = oncipvaf_StatementBuilder_indexHint0($this, $ctx, oncia_UsingIndexHint$UsingAnyIndexType$_MODULE$); + var$4 = 0; + } + return var$4; +}; +function ju_IdentityHashMap$HashEntry() { + let a = this; ju_MapEntry.call(a); + a.$origKeyHash0 = 0; + a.$next11 = null; +} +function jnci_BufferedDecoder$Controller() { + let a = this; jl_Object.call(a); + a.$in = null; + a.$out2 = null; + a.$inPosition = 0; + a.$outPosition = 0; +} +let jnci_BufferedDecoder$Controller_hasMoreInput = ($this, $sz) => { + return jn_Buffer_remaining($this.$in) < $sz ? 0 : 1; +}; +function oavr_CommonToken() { + let a = this; jl_Object.call(a); + a.$type5 = 0; + a.$line4 = 0; + a.$charPositionInLine0 = 0; + a.$channel0 = 0; + a.$source = null; + a.$text0 = null; + a.$index6 = 0; + a.$start7 = 0; + a.$stop0 = 0; +} +let oavr_CommonToken_EMPTY_SOURCE = null, +oavr_CommonToken__init_ = ($this, $source, $type, $channel, $start, $stop) => { + let var$6; + $this.$charPositionInLine0 = (-1); + $this.$channel0 = 0; + $this.$index6 = (-1); + $this.$source = $source; + $this.$type5 = $type; + $this.$channel0 = $channel; + $this.$start7 = $start; + $this.$stop0 = $stop; + var$6 = $source.$a7; + if (var$6 !== null) { + $this.$line4 = oavr_Lexer_getLine(var$6); + $this.$charPositionInLine0 = oavr_Lexer_getCharPositionInLine($source.$a7); } - $ctx.$ast0 = var$2; }, -oncipvaf_Cypher25AstBuilder_exitNonEmptyNameList = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncipv_Cypher25Parser$NonEmptyNameListContext_symbolicNameString($ctx); - var$4 = new oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0; - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeqPositioned(var$2, var$3, var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PropertyKeyName))); +oavr_CommonToken__init_0 = (var_0, var_1, var_2, var_3, var_4) => { + let var_5 = new oavr_CommonToken(); + oavr_CommonToken__init_(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; }, -oncipvaf_Cypher25AstBuilder_exitMergeClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - var$3 = var$2.$ast0; - if ($rt_isInstance(var$3, oncie_NonPrefixedPatternPart)) { - var$4 = var$3; - var$5 = new oncia_Merge; - var$2 = oncipau_Util$_MODULE$; - var$6 = $ctx.$children0; - sr_ClassTag$_$callClinit(); - oncia_Merge__init_(var$5, var$4, oncipau_Util$_astSeq(var$2, var$6, 2, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$5; - return; - } - if (!(var$3 instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_(var$3)); - $ctx = var$3; - var$5 = $this.$exceptionFactory5; - $ctx = $ctx.$selector1.$prettified(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(3998)), $ctx), $rt_s(6903)); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$3), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2))); +oavr_CommonToken_getType = $this => { + return $this.$type5; }, -oncipvaf_Cypher25AstBuilder_exitMergeAction = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 1)).$getSymbol()).$getType0(); - switch (var$2) { - case 57: - var$3 = oncia_OnCreate__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 155: - var$3 = oncia_OnMatch__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); +oavr_CommonToken_getText = $this => { + let $input, $n, var$3, var$4; + $input = $this.$text0; + if ($input !== null) + return $input; + $input = oavr_CommonToken_getInputStream($this); + if ($input === null) + return null; + $n = $input.$size4; + var$3 = $this.$start7; + if (var$3 < $n) { + var$4 = $this.$stop0; + if (var$4 < $n) + return $input.$getText0(oavrm_Interval_of(var$3, var$4)); } - $ctx.$ast0 = var$3; + return $rt_s(4236); }, -oncipvaf_Cypher25AstBuilder_exitUnwindClause = ($this, $ctx) => { - let var$2; - var$2 = new oncia_Unwind; - oncipau_Util$_$callClinit(); - oncia_Unwind__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oavr_CommonToken_getLine = $this => { + return $this.$line4; }, -oncipvaf_Cypher25AstBuilder_exitCallClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ProcedureNameContext), 0)).$ast0; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$3 = s_Tuple2__init_(var$2.$_1(), var$2.$_2()); - var$4 = var$3.$_10; - var$3 = var$3.$_20; - if (oncip_AstRuleCtx_getToken($ctx, 233, 0) === null) - var$5 = s_None$_MODULE$; - else { - var$5 = new s_Some; - oncipau_Util$_$callClinit(); - var$6 = oncipau_Util$_MODULE$; - var$7 = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ProcedureArgumentContext))), new oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0), jus_Collectors_toList()); - sr_ClassTag$_$callClinit(); - s_Some__init_0(var$5, oncipau_Util$_astSeq(var$6, var$7, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression)))); - } - var$8 = oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1; - if (oncipv_Cypher25Parser$CallClauseContext_YIELD($ctx) !== null && !var$8) { - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ProcedureResultItemContext)); - sr_ClassTag$_$callClinit(); - var$2 = oncipau_Util$_astSeq(var$2, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_ProcedureResultItem))); - var$9 = s_Some__init_(oncia_ProcedureResult__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0)), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncipv_Cypher25Parser$CallClauseContext_YIELD($ctx)).$getSymbol()))); - } else - var$9 = s_None$_MODULE$; - var$7 = new oncia_UnresolvedCall; - var$10 = oncip_AstRuleCtx_getToken($ctx, 183, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_UnresolvedCall__init_(var$7, var$4, var$3, var$5, var$9, var$8, var$10, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$7; +oavr_CommonToken_getCharPositionInLine = $this => { + return $this.$charPositionInLine0; }, -oncipvaf_Cypher25AstBuilder_exitProcedureName = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamespaceContext), 0)).$ast0; - var$3 = new oncie_ProcedureName; - var$4 = (oncipv_Cypher25Parser$ProcedureNameContext_symbolicNameString($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncie_ProcedureName__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$ProcedureNameContext_symbolicNameString($ctx))); - $ctx.$ast0 = s_Tuple2__init_(var$2, var$3); +oavr_CommonToken_getChannel = $this => { + return $this.$channel0; }, -oncipvaf_Cypher25AstBuilder_exitProcedureArgument = ($this, $ctx) => { - $ctx.$ast0 = oncipv_Cypher25Parser$ProcedureArgumentContext_expression($ctx); +oavr_CommonToken_getStartIndex = $this => { + return $this.$start7; }, -oncipvaf_Cypher25AstBuilder_exitProcedureResultItem = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0)).$ast0; - if (oncipv_Cypher25Parser$ProcedureResultItemContext_variable($ctx) === null) { - var$3 = oncia_ProcedureResultItem$_MODULE$; - var$4 = new oncie_Variable; - oncipau_Util$_$callClinit(); - oncie_Variable__init_0(var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$3 = oncia_ProcedureResultItem$_apply(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$4 = (oncipv_Cypher25Parser$ProcedureResultItemContext_variable($ctx)).$ast0; - var$5 = oncia_ProcedureResultItem$_MODULE$; - var$3 = oncie_ProcedureOutput__init_(var$2, var$4.$position4); - oncipau_Util$_$callClinit(); - var$3 = oncia_ProcedureResultItem$_apply0(var$5, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$3; +oavr_CommonToken_getStopIndex = $this => { + return $this.$stop0; }, -oncipvaf_Cypher25AstBuilder_exitLoadCSVClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oncip_AstRuleCtx_getToken($ctx, 121, 0) === null ? 0 : 1; - oncia_LoadCSV$_$callClinit(); - var$3 = oncia_LoadCSV$_MODULE$; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0; - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_LoadCSV$_fromUrl(var$3, var$2, var$4, var$5, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oavr_CommonToken_getTokenIndex = $this => { + return $this.$index6; }, -oncipvaf_Cypher25AstBuilder_exitForeachClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = new oncia_Foreach; - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; - var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 4)).$ast0; - var$5 = oncipau_Util$_MODULE$; - var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ClauseContext)); - sr_ClassTag$_$callClinit(); - oncia_Foreach__init_(var$2, var$3, var$4, oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oavr_CommonToken_setTokenIndex = ($this, $index) => { + $this.$index6 = $index; }, -oncipvaf_Cypher25AstBuilder_exitSubqueryClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SubqueryScopeContext), 0); - if (var$2 === null) { - var$3 = new oncia_ImportingWithSubqueryCall; - var$4 = (oncipv_Cypher25Parser$SubqueryClauseContext_regularQuery($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncia_ImportingWithSubqueryCall__init_(var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$SubqueryClauseContext_subqueryInTransactionsParameters($ctx)), oncipv_Cypher25Parser$SubqueryClauseContext_OPTIONAL($ctx) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = var$2.$ast0; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$5 = var$2.$_1$mcZ$sp(); - var$2 = var$2.$_2(); - var$3 = s_Tuple2__init_(jl_Boolean_valueOf(var$5), var$2); - var$5 = s_Tuple2__1$mcZ$sp(var$3); - var$4 = var$3.$_20; - var$3 = new oncia_ScopeClauseSubqueryCall; - var$6 = (oncipv_Cypher25Parser$SubqueryClauseContext_regularQuery($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncia_ScopeClauseSubqueryCall__init_(var$3, var$6, var$5, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$SubqueryClauseContext_subqueryInTransactionsParameters($ctx)), oncipv_Cypher25Parser$SubqueryClauseContext_OPTIONAL($ctx) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$3; +oavr_CommonToken_getTokenSource = $this => { + return $this.$source.$a7; }, -oncipvaf_Cypher25AstBuilder_exitSubqueryScope = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new s_Tuple2; - var$3 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 265, 0) === null ? 0 : 1); - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext)); - sr_ClassTag$_$callClinit(); - s_Tuple2__init_0(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Variable)))); - $ctx.$ast0 = var$2; +oavr_CommonToken_getInputStream = $this => { + return $this.$source.$b0; }, -oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsParameters = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters($ctx); - var$3 = oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters($ctx); - var$4 = oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters($ctx); - var$5 = var$2.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$2.$get0(0)).$ast0); - if (oncip_AstRuleCtx_getToken($ctx, 50, 0) === null) - var$6 = s_None$_MODULE$; - else { - var$6 = new s_Some; - var$7 = new oncia_SubqueryCall$InTransactionsConcurrencyParameters; - oncipau_Util$_$callClinit(); - oncia_SubqueryCall$InTransactionsConcurrencyParameters__init_0(var$7, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 127, 0)).$getSymbol())); - s_Some__init_0(var$6, var$7); +oavr_CommonToken_toString0 = $this => { + return oavr_CommonToken_toString($this, null); +}, +oavr_CommonToken_toString = ($this, $r) => { + let $channelStr, $txt, var$4, $typeString; + $channelStr = $rt_s(4); + if ($this.$channel0 > 0) { + $channelStr = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($channelStr); + jl_AbstractStringBuilder_append($channelStr, $rt_s(6481)); + $channelStr = jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($channelStr, $this.$channel0)); } - var$7 = var$3.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$3.$get0(0)).$ast0); - var$3 = var$4.$isEmpty() ? s_None$_MODULE$ : s_Some__init_((var$4.$get0(0)).$ast0); - var$4 = new oncia_SubqueryCall$InTransactionsParameters; - oncipau_Util$_$callClinit(); - oncia_SubqueryCall$InTransactionsParameters__init_(var$4, var$5, var$6, var$7, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 272, 0)).$getSymbol())); - $ctx.$ast0 = var$4; + $txt = oavr_CommonToken_getText($this); + var$4 = $txt === null ? $rt_s(6482) : jl_String_replace(jl_String_replace(jl_String_replace($txt, $rt_s(94), $rt_s(4246)), $rt_s(4247), $rt_s(4248)), $rt_s(4249), $rt_s(4250)); + $typeString = jl_String_valueOf0($this.$type5); + if ($r !== null) + $typeString = ($r.$getVocabulary()).$getDisplayName($this.$type5); + $r = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($r); + jl_AbstractStringBuilder_append($r, $rt_s(6483)); + $r = jl_StringBuilder_append0($r, $this.$index6); + jl_AbstractStringBuilder_append($r, $rt_s(41)); + $r = jl_StringBuilder_append0($r, $this.$start7); + jl_AbstractStringBuilder_append($r, $rt_s(92)); + $r = jl_StringBuilder_append0($r, $this.$stop0); + jl_AbstractStringBuilder_append($r, $rt_s(6484)); + jl_AbstractStringBuilder_append($r, var$4); + jl_AbstractStringBuilder_append($r, $rt_s(6485)); + jl_AbstractStringBuilder_append($r, $typeString); + jl_AbstractStringBuilder_append($r, $rt_s(604)); + jl_AbstractStringBuilder_append($r, $channelStr); + jl_AbstractStringBuilder_append($r, $rt_s(41)); + $r = jl_StringBuilder_append0($r, $this.$line4); + jl_AbstractStringBuilder_append($r, $rt_s(92)); + $r = jl_StringBuilder_append0($r, $this.$charPositionInLine0); + jl_AbstractStringBuilder_append($r, $rt_s(425)); + return jl_AbstractStringBuilder_toString($r); }, -oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsBatchParameters = ($this, $ctx) => { - let var$2; - var$2 = new oncia_SubqueryCall$InTransactionsBatchParameters; - oncipau_Util$_$callClinit(); - oncia_SubqueryCall$InTransactionsBatchParameters__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oavr_CommonToken__clinit_ = () => { + oavr_CommonToken_EMPTY_SOURCE = oavrm_Pair__init_(null, null); }, -oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsErrorParameters = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 2)).$getSymbol()).$getType0(); - switch (var$2) { - case 35: - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_$callClinit(); - var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_MODULE$; - break a; - case 55: - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_$callClinit(); - var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_MODULE$; - break a; - case 103: - oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit(); - var$3 = oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_MODULE$; - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - $ctx.$ast0 = oncia_SubqueryCall$InTransactionsErrorParameters__init_0(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipl_FullCypherToken = $rt_classWithoutFields(oavr_CommonToken), +oncipl_FullCypherToken_position = $this => { + return oncipl_CypherToken_position$($this); }, -oncipvaf_Cypher25AstBuilder_exitSubqueryInTransactionsReportParameters = ($this, $ctx) => { - let var$2; - var$2 = new oncia_SubqueryCall$InTransactionsReportParameters; - oncipau_Util$_$callClinit(); - oncia_SubqueryCall$InTransactionsReportParameters__init_(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncipl_FullCypherToken_inputOffset = ($this, $parserOffset) => { + return oncipl_CypherToken_inputOffset$($this, $parserOffset); +}; +function oncipl_ThinCypherToken() { + let a = this; jl_Object.call(a); + a.$source0 = null; + a.$getType1 = 0; + a.$getChannel0 = 0; + a.$getStartIndex0 = 0; + a.$getStopIndex0 = 0; + a.$getLine0 = 0; + a.$getCharPositionInLine0 = 0; +} +let oncipl_ThinCypherToken_position = $this => { + return oncipl_CypherToken_position$($this); }, -oncipvaf_Cypher25AstBuilder_exitOrderBySkipLimitClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = new oncia_With; - var$3 = new oncia_ReturnItems; - s_package$_$callClinit(); - var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - var$5 = s_None$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_ReturnItems__init_(var$3, 1, var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$6 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$OrderByContext), 0)); - var$4 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SkipContext), 0)); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LimitContext), 0)); - var$7 = s_None$_MODULE$; - oncia_With$_$callClinit(); - oncia_With__init_(var$2, 0, var$3, var$6, var$4, var$5, var$7, oncia_DefaultWith$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncipl_ThinCypherToken_inputOffset = ($this, $parserOffset) => { + return oncipl_CypherToken_inputOffset$($this, $parserOffset); }, -oncipvaf_Cypher25AstBuilder_exitPatternList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PatternContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PatternPart))); +oncipl_ThinCypherToken_getType = $this => { + return $this.$getType1; }, -oncipvaf_Cypher25AstBuilder_exitPattern = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SelectorContext), 0); - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AnonymousPatternContext), 0)).$ast0; - if (var$2 === null) - var$2 = var$4; - else { - var$5 = var$2.$ast0; - var$2 = oncie_NamedPatternPart__init_(var$5, var$4, var$5.$position4); - } - $ctx.$ast0 = var$3 === null ? var$2 : oncie_PatternPartWithSelector__init_(var$3.$ast0, var$2); +oncipl_ThinCypherToken_getChannel = $this => { + return $this.$getChannel0; }, -oncipvaf_Cypher25AstBuilder_exitInsertPatternList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$InsertPatternContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_PathPatternPart))); +oncipl_ThinCypherToken_getStartIndex = $this => { + return $this.$getStartIndex0; }, -oncipvaf_Cypher25AstBuilder_exitInsertPattern = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - if (oncipv_Cypher25Parser$InsertPatternContext_EQ($ctx) !== null) - $ctx.$ast0 = null; - else { - var$2 = $ctx.$children0.$size0; - if (var$2 == 1) { - var$3 = new oncie_PathPatternPart; - oncipau_Util$_$callClinit(); - oncie_PathPatternPart__init_0(var$3, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0); - $ctx.$ast0 = var$3; - } else { - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$4 = null; - var$5 = null; - var$6 = 0; - while (var$6 < var$2) { - var$7 = ju_ArrayList_get($ctx.$children0, var$6); - if (var$7 instanceof oncipv_Cypher25Parser$InsertNodePatternContext) { - var$7 = var$7.$ast0; - if (var$5 !== null) { - var$8 = oncie_RelationshipChain__init_(var$4, var$5, var$7, var$3); - var$5 = null; - var$7 = var$8; - } - } else { - if (!(var$7 instanceof oncipv_Cypher25Parser$InsertRelationshipPatternContext)) { - $ctx = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6897)), var$7); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($ctx); - } - var$5 = var$7.$ast0; - var$7 = var$4; - } - var$6 = var$6 + 1 | 0; - var$4 = var$7; - } - $ctx.$ast0 = oncie_PathPatternPart__init_(var$4); - } - } +oncipl_ThinCypherToken_getStopIndex = $this => { + return $this.$getStopIndex0; }, -oncipvaf_Cypher25AstBuilder_exitQuantifier = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - a: { - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); - var$3 = var$2.$getType0(); - switch (var$3) { - case 143: - if ($ctx.$from20 === null && $ctx.$to3 === null && oncip_AstRuleCtx_getToken($ctx, 46, 0) === null) { - var$4 = new oncie_FixedQuantifier; - var$5 = oncipau_Util$_MODULE$; - oncie_FixedQuantifier__init_(var$4, oncipau_Util$_unsignedDecimalInt(var$5, (oncipau_Util$_nodeChild(var$5, $ctx, 1)).$getSymbol()), oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - break a; - } - var$4 = oncie_IntervalQuantifier__init_(oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$from20), oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$to3), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 193: - var$4 = oncie_PlusQuantifier__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - break a; - case 265: - var$4 = oncie_StarQuantifier__init_(oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$3))); - } - $ctx.$ast0 = var$4; -}; -let oncipvaf_Cypher25AstBuilder_exitAnonymousPattern = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0); - if (var$2 instanceof oncipv_Cypher25Parser$PatternElementContext) { - var$3 = var$2; - var$2 = oncie_PathPatternPart__init_(var$3.$ast0); - } else { - if (!(var$2 instanceof oncipv_Cypher25Parser$ShortestPathPatternContext)) { - var$2 = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6898)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); - } - var$2 = var$2.$ast0; - } - $ctx.$ast0 = var$2; +oncipl_ThinCypherToken_getLine = $this => { + return $this.$getLine0; }, -oncipvaf_Cypher25AstBuilder_exitShortestPathPattern = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol(); - $ctx.$ast0 = oncie_ShortestPathsPatternPart__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternElementContext), 0)).$ast0, var$2.$getType0() == 17 ? 0 : 1, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2)); +oncipl_ThinCypherToken_getCharPositionInLine = $this => { + return $this.$getCharPositionInLine0; }, -oncipvaf_Cypher25AstBuilder_exitPatternElement = ($this, $ctx) => { - oncipvaf_ExpressionBuilder_exitPatternElement0($this, $ctx); +oncipl_ThinCypherToken_getText = $this => { + let $input, var$2; + $input = oncipl_ThinCypherToken_getInputStream($this); + if ($input === null) + return null; + var$2 = $this.$getStopIndex0; + if (var$2 >= $input.$size4) + return $rt_s(4236); + return $input.$getText0(oavrm_Interval_of($this.$getStartIndex0, var$2)); }, -oncipvaf_Cypher25AstBuilder_exitSelector = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if ($ctx instanceof oncipv_Cypher25Parser$AnyShortestPathContext) { - var$3 = $ctx; - var$4 = oncie_PatternPart$AnyShortestPath__init_(oncipvaf_ExpressionBuilder_selectorCount($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); - } else if ($ctx instanceof oncipv_Cypher25Parser$AllShortestPathContext) { - var$2 = $ctx; - var$4 = oncie_PatternPart$AllShortestPaths__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } else if ($ctx instanceof oncipv_Cypher25Parser$AnyPathContext) { - var$3 = $ctx; - var$4 = oncie_PatternPart$AnyPath__init_(oncipvaf_ExpressionBuilder_selectorCount($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); - } else if ($ctx instanceof oncipv_Cypher25Parser$ShortestGroupContext) { - var$3 = $ctx; - var$4 = oncie_PatternPart$ShortestGroups__init_(oncipvaf_ExpressionBuilder_selectorCount($this, oncip_AstRuleCtx_getToken(var$3, 5, 0), var$2), var$2); - } else { - if (!($ctx instanceof oncipv_Cypher25Parser$AllPathContext)) { - var$2 = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6898)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); - } - var$4 = oncie_PatternPart$AllPaths__init_(var$2); - } - $ctx.$ast0 = var$4; +oncipl_ThinCypherToken_getTokenSource = $this => { + return $this.$source0.$a7; }, -oncipvaf_Cypher25AstBuilder_exitParenthesizedPath = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$3 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - if ($rt_isInstance(var$3, oncie_NonPrefixedPatternPart)) { - var$4 = var$3; - var$3 = oncipv_Cypher25Parser$ParenthesizedPathContext_quantifier($ctx); - $ctx.$ast0 = var$3 === null ? oncie_ParenthesizedPath__init_(var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$ParenthesizedPathContext_expression($ctx)), var$2) : oncie_QuantifiedPath$_apply(oncie_QuantifiedPath$_MODULE$, var$4, var$3.$ast0, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$ParenthesizedPathContext_expression($ctx)), var$2); - return; - } - if (!(var$3 instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_(var$3)); - var$2 = var$3; - $ctx = oncipv_Cypher25Parser$ParenthesizedPathContext_quantifier($ctx) !== null ? $rt_s(3996) : $rt_s(3997); - var$5 = $this.$exceptionFactory5; - var$3 = var$2.$selector1.$prettified(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3998)), var$3), $rt_s(3999)), $ctx), $rt_s(4000)); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$4), oncie_PatternPartWithSelector_position(var$2))); +oncipl_ThinCypherToken_getInputStream = $this => { + return $this.$source0.$b0; }, -oncipvaf_Cypher25AstBuilder_exitProperties = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncipl_ThinCypherToken_getTokenIndex = $this => { + return (-1); }, -oncipvaf_Cypher25AstBuilder_exitPathLength = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - if (oncip_AstRuleCtx_getToken($ctx, 80, 0) !== null) { - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$from22); - var$3 = oncipau_Util$_optUnsignedDecimalInt(oncipau_Util$_MODULE$, $ctx.$to6); - var$4 = new s_Some; - var$5 = new oncie_Range; - var$6 = s_Option_map(var$2, new oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0); - var$7 = new oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1; - var$7.$_0254 = $ctx; - oncie_Range__init_0(var$5, var$2, var$3, s_Option_getOrElse(var$6, var$7)); - s_Some__init_0(var$4, var$5); - } else { - var$2 = $ctx.$single1; - if (var$2 === null) - var$4 = s_None$_MODULE$; - else { - var$3 = new s_Some; - var$4 = new oncie_UnsignedDecimalIntegerLiteral; - var$7 = var$2.$getText(); - oncipau_Util$_$callClinit(); - oncie_UnsignedDecimalIntegerLiteral__init_0(var$4, var$7, oncipau_Util$_pos0(oncipau_Util$_MODULE$, $ctx.$single1)); - s_Some__init_0(var$3, var$4); - var$4 = s_Some__init_(oncie_Range__init_(var$3, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))); - } +oncipl_ThinCypherToken_getSymbol = $this => { + return $this; +}, +oncipl_ThinCypherToken_setParent = ($this, $parent) => { + return; +}; +function oncia_ShowAndTerminateColumn() { + let a = this; jl_Object.call(a); + a.$name8 = null; + a.$cypherType = null; +} +let oncia_ShowAndTerminateColumn_productPrefix = $this => { + return $rt_s(6486); +}, +oncia_ShowAndTerminateColumn_productArity = $this => { + return 2; +}, +oncia_ShowAndTerminateColumn_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$name8; + case 1: + return $this.$cypherType; + default: } - $ctx.$ast0 = var$4; + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitExpression = ($this, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0); +oncia_ShowAndTerminateColumn_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitExpression11 = ($this, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0); +oncia_ShowAndTerminateColumn_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitExpression10 = ($this, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0); +oncia_ShowAndTerminateColumn_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitExpression9 = ($this, $ctx) => { - let var$2, var$3; +oncia_ShowAndTerminateColumn_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED) { - b: { - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$Expression8Context), 0); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx); - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$3)) - break a; - else + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowAndTerminateColumn) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$name8; + var$3 = $x$1.$name8; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) break b; } - if (var$3 === null) - break a; + d: { + var$3 = $this.$cypherType; + $x$1 = $x$1.$cypherType; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ShowAndTerminateColumn)) + break b; } - $rt_throw(jl_AssertionError__init_($rt_s(35))); - } - } - c: { - switch ($ctx.$children0.$size0) { - case 1: - break; - case 2: - var$3 = new oncie_Not; - oncipau_Util$_$callClinit(); - oncie_Not__init_(var$3, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break c; - default: - var$3 = scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 175))); - oncipau_Util$_$callClinit(); - var$3 = sc_AbstractIterable_foldRight(var$3, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0); - break c; + var$4 = 1; + break a; } - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$4 = 0; } - $ctx.$ast0 = var$3; + return var$4; }, -oncipvaf_Cypher25AstBuilder_exitExpression8 = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); +oncia_ShowAndTerminateColumn__init_0 = ($this, $name, $cypherType) => { + $this.$name8 = $name; + $this.$cypherType = $cypherType; +}, +oncia_ShowAndTerminateColumn__init_ = (var_0, var_1) => { + let var_2 = new oncia_ShowAndTerminateColumn(); + oncia_ShowAndTerminateColumn__init_0(var_2, var_0, var_1); + return var_2; +}, +oncia_ShowAndTerminateColumn$ = $rt_classWithoutFields(sr_AbstractFunction2), +oncia_ShowAndTerminateColumn$_MODULE$ = null, +oncia_ShowAndTerminateColumn$__clinit_ = () => { + oncia_ShowAndTerminateColumn$_MODULE$ = new oncia_ShowAndTerminateColumn$; +}, +oncia_ShowAndTerminateColumn$_apply$default$2 = $this => { + oncius_package$_$callClinit(); + return oncius_package$_CTString(oncius_package$_MODULE$); +}, +oncia_ShowConstraintsClause$$apply$lambda$_13_0 = $rt_classWithoutFields(), +oncia_ShowConstraintsClause$$apply$lambda$_13_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ShowConstraintsClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$1.$_21)); +}; +function oncia_ShowConstraintsClause$$apply$lambda$_13_1() { + jl_Object.call(this); + this.$_01061 = 0; +} +let oncia_ShowConstraintsClause$$apply$lambda$_13_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01061; + oncia_ShowConstraintsClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$_30); + return jl_Boolean_valueOf(var$2 && !var$3 ? 0 : 1); +}, +oncia_ShowConstraintsClause$$apply$lambda$_13_2 = $rt_classWithoutFields(), +oncia_ShowConstraintsClause$$apply$lambda$_13_2_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ShowConstraintsClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return var$1.$_11; +}; +function oncia_ShowConstraintsClause$$apply$lambda$_13_3() { + jl_Object.call(this); + this.$_01122 = 0; +} +let oncia_ShowConstraintsClause$$apply$lambda$_13_3_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01122; + oncia_ShowConstraintsClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$_30); + return jl_Boolean_valueOf(var$2 && !var$3 ? 0 : 1); +}, +oncia_ShowConstraintsClause$$apply$lambda$_13_4 = $rt_classWithoutFields(), +oncia_ShowConstraintsClause$$apply$lambda$_13_4_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ShowConstraintsClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return var$1.$_11; +}; +function oncia_ShowConstraintsClause() { + let a = this; jl_Object.call(a); + a.$briefConstraintColumns0 = null; + a.$allConstraintColumns0 = null; + a.$constraintType2 = null; + a.$where7 = null; + a.$yieldItems0 = null; + a.$yieldAll4 = 0; + a.$yieldWith5 = null; + a.$position45 = null; + a.$useAllColumns0 = 0; + a.$originalColumns6 = null; + a.$briefColumns2 = null; + a.$allColumns4 = null; + a.$unfilteredColumns0 = null; + a.$columnsAsMap3 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier16 = null; + a.$SetExtractor$module11 = null; + a.$bitmap$040 = 0; +} +let oncia_ShowConstraintsClause_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); +}, +oncia_ShowConstraintsClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_ShowConstraintsClause_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_ShowConstraintsClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowConstraintsClause_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_ShowConstraintsClause_foldedOver = $this => { + return $this; +}, +oncia_ShowConstraintsClause_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowConstraintsClause_columnsAsMap = $this => { + let var$1, $$je; + if ($this.$bitmap$040) + return $this.$columnsAsMap3; + jl_Object_monitorEnterSync($this); a: { - var$2 = $ctx.$children0; - switch (var$2.$size0) { - case 1: - break; - case 3: - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_ExpressionBuilder_binaryPredicate($this, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, oncip_AstRuleCtx_getChild($ctx, 1), oncip_AstRuleCtx_getChild($ctx, 2)); - break a; - default: - var$3 = oncie_Ands$_MODULE$; - var$2 = (sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, var$2)))).$sliding(3, 2); - var$4 = new oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_00; - var$4.$_0644 = $this; - var$4.$_1221 = $ctx; - var$5 = sc_Iterator_map$(var$2, var$4); - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$2 = oncie_Ands$_apply(var$3, var$5, oncipau_Util$_pos1(var$2, oncipau_Util$_nodeChild(var$2, $ctx, 1))); + try { + if ($this.$bitmap$040) break a; + $this.$columnsAsMap3 = oncia_CommandClause_columnsAsMap$($this); + $this.$bitmap$040 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - $ctx.$ast0 = var$2; + jl_Object_monitorExitSync($this); + return $this.$columnsAsMap3; }, -oncipvaf_Cypher25AstBuilder_exitExpression7 = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - default: - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$3 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - if (var$3 instanceof oncipv_Cypher25Parser$StringAndListComparisonContext) { - var$3 = oncipvaf_ExpressionBuilder_stringAndListComparisonExpression0($this, var$2, var$3); - break a; - } - if (var$3 instanceof oncipv_Cypher25Parser$NullComparisonContext) { - var$3 = oncipvaf_ExpressionBuilder_nullComparisonExpression0($this, var$2, var$3); - break a; - } - if (var$3 instanceof oncipv_Cypher25Parser$TypeComparisonContext) { - var$3 = oncipvaf_ExpressionBuilder_typeComparisonExpression0($this, var$2, var$3); +oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier16; +}, +oncia_ShowConstraintsClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module11 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module11 !== null) break a; - } - if (!(var$3 instanceof oncipv_Cypher25Parser$NormalFormComparisonContext)) { - var$3 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6904)), $ctx); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$3); - } - var$4 = var$3; - var$3 = oncipvaf_ExpressionBuilder_normalFormComparisonExpression($this, var$2, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$NormalFormContext), 0), oncip_AstRuleCtx_getToken(var$4, 175, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$4)); + $this.$SetExtractor$module11 = oncia_Clause$SetExtractor$__init_($this); break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + jl_Object_monitorExitSync($this); } - $ctx.$ast0 = var$3; + return $this.$SetExtractor$module11; }, -oncipvaf_Cypher25AstBuilder_exitComparisonExpression6 = ($this, $ctx) => { - return; +oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier16 = $x$1; }, -oncipvaf_Cypher25AstBuilder_exitNormalForm = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncip_AstRuleCtx_getChild($ctx, 0)).$getSymbol()).$getType0(); - switch (var$2) { - case 164: - break; - case 165: - oncie_NFDNormalForm$_$callClinit(); - var$3 = oncie_NFDNormalForm$_MODULE$; - break a; - case 166: - oncie_NFKCNormalForm$_$callClinit(); - var$3 = oncie_NFKCNormalForm$_MODULE$; - break a; - case 167: - oncie_NFKDNormalForm$_$callClinit(); - var$3 = oncie_NFKDNormalForm$_MODULE$; - break a; - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - oncie_NFCNormalForm$_$callClinit(); - var$3 = oncie_NFCNormalForm$_MODULE$; +oncia_ShowConstraintsClause_where = $this => { + return $this.$where7; +}, +oncia_ShowConstraintsClause_yieldAll = $this => { + return $this.$yieldAll4; +}, +oncia_ShowConstraintsClause_yieldWith = $this => { + return $this.$yieldWith5; +}, +oncia_ShowConstraintsClause_position = $this => { + return $this.$position45; +}, +oncia_ShowConstraintsClause_name = $this => { + return $rt_s(5183); +}, +oncia_ShowConstraintsClause_originalColumns = $this => { + return $this.$originalColumns6; +}, +oncia_ShowConstraintsClause_unfilteredColumns = $this => { + return $this.$unfilteredColumns0; +}, +oncia_ShowConstraintsClause_moveWhereToProjection = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowConstraintsClause_copy($this, $this.$briefConstraintColumns0, $this.$allConstraintColumns0, $this.$constraintType2, $x$1, $this.$yieldItems0, $this.$yieldAll4, $this.$yieldWith5, $this.$position45); +}, +oncia_ShowConstraintsClause_moveOutWith = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowConstraintsClause_copy($this, $this.$briefConstraintColumns0, $this.$allConstraintColumns0, $this.$constraintType2, $this.$where7, $this.$yieldItems0, $this.$yieldAll4, $x$1, $this.$position45); +}, +oncia_ShowConstraintsClause_clauseSpecificSemanticCheck = $this => { + let var$1, var$2; + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_MODULE$; + var$2 = new oncia_ShowConstraintsClause$clauseSpecificSemanticCheck$lambda$_93_0; + var$2.$_0583 = $this; + return oncias_SemanticCheck$_fromState(var$1, var$2); +}, +oncia_ShowConstraintsClause_copy = ($this, $briefConstraintColumns, $allConstraintColumns, $constraintType, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + return oncia_ShowConstraintsClause__init_($briefConstraintColumns, $allConstraintColumns, $constraintType, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}, +oncia_ShowConstraintsClause_productPrefix = $this => { + return $rt_s(6487); +}, +oncia_ShowConstraintsClause_productArity = $this => { + return 7; +}, +oncia_ShowConstraintsClause_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$briefConstraintColumns0; + case 1: + return $this.$allConstraintColumns0; + case 2: + return $this.$constraintType2; + case 3: + return $this.$where7; + case 4: + return $this.$yieldItems0; + case 5: + return jl_Boolean_valueOf($this.$yieldAll4); + case 6: + return $this.$yieldWith5; + default: } - $ctx.$ast0 = var$3; + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitExpression6 = ($this, $ctx) => { - let var$2, var$3; - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = new oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0; - var$3.$_01183 = $this; - $ctx.$ast0 = oncipau_Util$_astBinaryFold(var$2, $ctx, var$3); +oncia_ShowConstraintsClause_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitExpression5 = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = new oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_00; - var$3.$_01193 = $this; - $ctx.$ast0 = oncipau_Util$_astBinaryFold(var$2, $ctx, var$3); +oncia_ShowConstraintsClause_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6487))), sr_Statics_anyHash($this.$briefConstraintColumns0)), sr_Statics_anyHash($this.$allConstraintColumns0)), sr_Statics_anyHash($this.$constraintType2)), sr_Statics_anyHash($this.$where7)), sr_Statics_anyHash($this.$yieldItems0)), !$this.$yieldAll4 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldWith5)), 7); }, -oncipvaf_Cypher25AstBuilder_exitExpression4 = ($this, $ctx) => { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && (oavr_ParserRuleContext_getChildCount($ctx) % 2 | 0) != 1) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astBinaryFold(oncipau_Util$_MODULE$, $ctx, new oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_00); +oncia_ShowConstraintsClause_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitExpression3 = ($this, $ctx) => { - let var$2; +oncia_ShowConstraintsClause_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - default: - if (oncip_AstRuleCtx_getToken($ctx, 193, 0) === null) { - var$2 = new oncie_UnarySubtract; - oncipau_Util$_$callClinit(); - oncie_UnarySubtract__init_(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowConstraintsClause) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll4 != $x$1.$yieldAll4) + break b; + c: { + var$2 = $this.$briefConstraintColumns0; + var$3 = $x$1.$briefConstraintColumns0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; } - var$2 = new oncie_UnaryAdd; - oncipau_Util$_$callClinit(); - oncie_UnaryAdd__init_(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; + d: { + var$2 = $this.$allConstraintColumns0; + var$3 = $x$1.$allConstraintColumns0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$constraintType2; + var$3 = $x$1.$constraintType2; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$where7; + var$3 = $x$1.$where7; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$yieldItems0; + var$3 = $x$1.$yieldItems0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$yieldWith5; + $x$1 = $x$1.$yieldWith5; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break h; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ShowConstraintsClause)) + break b; + } + var$4 = 1; + break a; } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + var$4 = 0; } - $ctx.$ast0 = var$2; + return var$4; }, -oncipvaf_Cypher25AstBuilder_exitExpression2 = ($this, $ctx) => { - let var$2, var$3; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - default: - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = new oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_00; - var$3.$_01201 = $this; - var$2 = oncipau_Util$_astCtxReduce(var$2, $ctx, var$3); - break a; - } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$2; +oncia_ShowConstraintsClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipvaf_Cypher25AstBuilder_exitPostFix = ($this, $ctx) => { - return; +oncia_ShowConstraintsClause_filterOutGraphTypeColumns$1 = $name => { + let var$2; + var$2 = new sci_$colon$colon; + oncia_ShowConstraintsClause$_$callClinit(); + sci_$colon$colon__init_0(var$2, oncia_ShowConstraintsClause$_enforcedLabelColumn0(oncia_ShowConstraintsClause$_MODULE$), sci_$colon$colon__init_(oncia_ShowConstraintsClause$_classificationColumn(oncia_ShowConstraintsClause$_MODULE$), sci_Nil$_MODULE$)); + return sci_List_contains(var$2, $name); }, -oncipvaf_Cypher25AstBuilder_exitProperty = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncia_ShowConstraintsClause__init_0 = ($this, $briefConstraintColumns, $allConstraintColumns, $constraintType, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + $this.$briefConstraintColumns0 = $briefConstraintColumns; + $this.$allConstraintColumns0 = $allConstraintColumns; + $this.$constraintType2 = $constraintType; + $this.$where7 = $where; + $this.$yieldItems0 = $yieldItems; + $this.$yieldAll4 = $yieldAll; + $this.$yieldWith5 = $yieldWith; + $this.$position45 = $position; + oncia_Clause_$init$($this); + $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; + $this.$useAllColumns0 = $yieldAll; + $this.$originalColumns6 = !$yieldAll ? $briefConstraintColumns : $allConstraintColumns; + $constraintType = new oncia_ShowConstraintsClause$_init_$lambda$_121_0; + $constraintType.$_0759 = $this; + $this.$briefColumns2 = sci_List_map($briefConstraintColumns, $constraintType); + $briefConstraintColumns = new oncia_ShowConstraintsClause$_init_$lambda$_121_1; + $briefConstraintColumns.$_0282 = $this; + $briefConstraintColumns = sci_List_map($allConstraintColumns, $briefConstraintColumns); + $this.$allColumns4 = $briefConstraintColumns; + oncia_DefaultOrAllShowColumns$_$callClinit(); + $this.$unfilteredColumns0 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns0, $this.$briefColumns2, $briefConstraintColumns); }, -oncipvaf_Cypher25AstBuilder_exitDynamicProperty = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncia_ShowConstraintsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_ShowConstraintsClause(); + oncia_ShowConstraintsClause__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; }, -oncipvaf_Cypher25AstBuilder_exitPropertyExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = new oncie_Property; - oncipau_Util$_$callClinit(); - oncie_Property__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$3 = $ctx.$children0.$size0; - var$4 = 2; - while (var$4 < var$3) { - var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, var$4)).$ast0; - var$6 = oncie_Property__init_(var$2, var$5, var$5.$position26); - var$4 = var$4 + 1 | 0; - var$2 = var$6; - } - $ctx.$ast0 = var$2; +oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_00 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0_apply = var$0 => { + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +}; +function oncia_ShowIndexesClause() { + let a = this; jl_Object.call(a); + a.$briefConstraintColumns = null; + a.$allConstraintColumns = null; + a.$indexType2 = null; + a.$where5 = null; + a.$yieldItems5 = null; + a.$yieldAll8 = 0; + a.$yieldWith2 = null; + a.$position54 = null; + a.$useAllColumns5 = 0; + a.$originalColumns4 = null; + a.$briefColumns0 = null; + a.$allColumns0 = null; + a.$unfilteredColumns2 = null; + a.$columnsAsMap0 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier4 = null; + a.$SetExtractor$module23 = null; + a.$bitmap$035 = 0; +} +let oncia_ShowIndexesClause_clauseSpecificSemanticCheck = $this => { + return oncia_CommandClause_clauseSpecificSemanticCheck$($this); }, -oncipvaf_Cypher25AstBuilder_exitDynamicPropertyExpression = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; - $ctx.$ast0 = oncie_ContainerIndex__init_((oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, var$2, var$2.$position()); +oncia_ShowIndexesClause_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -oncipvaf_Cypher25AstBuilder_exitExpression1 = ($this, $ctx) => { - switch ($ctx.$children0.$size0) { - case 1: - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - return; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6905)); - $rt_throw($ctx); +oncia_ShowIndexesClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncipvaf_Cypher25AstBuilder_exitCaseExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncie_CaseExpression; - var$3 = s_None$_MODULE$; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CaseAlternativeContext)); - sr_ClassTag$_$callClinit(); - oncie_CaseExpression__init_(var$2, var$3, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_shouldRunQPPChecks = $this => { + return 1; }, -oncipvaf_Cypher25AstBuilder_exitCaseAlternative = ($this, $ctx) => { - let var$2; - var$2 = new s_Tuple2; - oncipau_Util$_$callClinit(); - s_Tuple2__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -oncipvaf_Cypher25AstBuilder_exitExtendedCaseExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1); - var$3 = new oncie_CaseExpression; - var$4 = s_Some__init_(var$2); - var$5 = s_None$_MODULE$; - var$6 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ExtendedCaseAlternativeContext)); - var$7 = var$6.$size(); - var$8 = scm_ArrayBuffer__init_0(var$7); - var$9 = 0; - a: while (true) { - if (var$9 >= var$7) { - var$10 = sci_ArraySeq$_MODULE$; - sr_ClassTag$_$callClinit(); - oncie_CaseExpression__init_(var$3, var$4, var$5, sci_ArraySeq$_unsafeWrapArray(var$10, sc_IterableOnceOps_toArray$(var$8, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(s_Tuple2)))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$elseExp0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$3; - return; - } - var$11 = var$6.$get0(var$9); - var$12 = var$11.$children0.$size0; - var$13 = 1; - var$2 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, var$11)).$ast0; - while (var$13 < var$12) { - var$10 = ju_ArrayList_get(var$11.$children0, var$13); - if (var$10 instanceof oncipv_Cypher25Parser$ExtendedWhenContext) { - var$10 = var$10; - if (var$10 instanceof oncipv_Cypher25Parser$WhenEqualsContext) { - var$14 = new oncie_Equals; - oncie_CaseExpression$Placeholder$_$callClinit(); - var$15 = oncie_CaseExpression$Placeholder$_MODULE$; - var$10 = oncipau_Util$_astChild(oncipau_Util$_MODULE$, var$10, 0); - var$16 = oncipau_Util$_MODULE$; - oncie_Equals__init_(var$14, var$15, var$10, oncipau_Util$_pos1(var$16, oncipau_Util$_nodeChild(var$16, var$11, var$13 - 1 | 0))); - } else if (var$10 instanceof oncipv_Cypher25Parser$WhenComparatorContext) { - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_binaryPredicate($this, oncie_CaseExpression$Placeholder$_MODULE$, oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, var$10, 0), oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$10, 1)); - } else if (var$10 instanceof oncipv_Cypher25Parser$WhenStringOrListContext) { - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_stringAndListComparisonExpression0($this, oncie_CaseExpression$Placeholder$_MODULE$, var$10); - } else if (var$10 instanceof oncipv_Cypher25Parser$WhenNullContext) { - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_nullComparisonExpression0($this, oncie_CaseExpression$Placeholder$_MODULE$, var$10); - } else if (var$10 instanceof oncipv_Cypher25Parser$WhenTypeContext) { - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_typeComparisonExpression0($this, oncie_CaseExpression$Placeholder$_MODULE$, var$10); - } else { - if (!(var$10 instanceof oncipv_Cypher25Parser$WhenFormContext)) - break a; - var$15 = var$10; - oncie_CaseExpression$Placeholder$_$callClinit(); - var$14 = oncipvaf_ExpressionBuilder_normalFormComparisonExpression($this, oncie_CaseExpression$Placeholder$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$15, $rt_cls(oncipv_Cypher25Parser$NormalFormContext), 0), oncip_AstRuleCtx_getToken(var$15, 175, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$15)); - } - var$10 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - scm_ArrayBuffer_addOne(var$8, s_Predef$ArrowAssoc$_$minus$greater$extension(var$10, var$14, var$2)); - } - var$13 = var$13 + 1 | 0; - } - var$9 = var$9 + 1 | 0; - } - $ctx = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6898)), var$10); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw($ctx); +oncia_ShowIndexesClause_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oncipvaf_Cypher25AstBuilder_exitExtendedCaseAlternative = ($this, $ctx) => { - return; +oncia_ShowIndexesClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipvaf_Cypher25AstBuilder_exitExtendedWhen = ($this, $ctx) => { - return; +oncia_ShowIndexesClause_asCanonicalStringVal = $this => { + return $this.$toString(); }, -oncipvaf_Cypher25AstBuilder_exitListComprehension = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oncie_ListComprehension$_MODULE$; - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; - var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 3)).$ast0; - var$5 = $ctx.$whereExp; - var$6 = var$5 === null ? s_None$_MODULE$ : s_Some__init_(var$5.$ast0); - var$5 = $ctx.$barExp; - $ctx.$ast0 = oncie_ListComprehension$_apply(var$2, var$3, var$4, var$6, var$5 === null ? s_None$_MODULE$ : s_Some__init_(var$5.$ast0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncia_ShowIndexesClause_foldedOver = $this => { + return $this; }, -oncipvaf_Cypher25AstBuilder_exitPatternComprehension = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = oncipv_Cypher25Parser$PatternComprehensionContext_variable($ctx) === null ? s_None$_MODULE$ : s_Some__init_((oncipv_Cypher25Parser$PatternComprehensionContext_variable($ctx)).$ast0); - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PathPatternNonEmptyContext), 0)).$ast0; - var$4 = $ctx.$whereExp1; - var$5 = var$4 === null ? s_None$_MODULE$ : s_Some__init_(var$4.$ast0); - var$6 = $ctx.$barExp0.$ast0; - var$7 = new oncie_PatternComprehension; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$8 = s_None$_MODULE$; - oncie_PatternComprehension__init_(var$7, var$2, var$3, var$5, var$6, var$4, var$8, var$8); - $ctx.$ast0 = var$7; +oncia_ShowIndexesClause_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipvaf_Cypher25AstBuilder_exitPathPatternNonEmpty = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$3 = $ctx.$children0.$size0; - var$4 = 1; - var$5 = null; - while (var$4 < var$3) { - var$6 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, var$4); - if (var$6 instanceof oncipv_Cypher25Parser$RelationshipPatternContext) - var$5 = var$6.$ast0; - else { - if (!(var$6 instanceof oncipv_Cypher25Parser$NodePatternContext)) { - $ctx = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6897)), var$6); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw($ctx); - } - var$6 = var$6; - var$2 = oncie_RelationshipChain__init_(var$2, var$5, var$6.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$6)); +oncia_ShowIndexesClause_columnsAsMap = $this => { + let var$1, $$je; + if ($this.$bitmap$035) + return $this.$columnsAsMap0; + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$bitmap$035) + break a; + $this.$columnsAsMap0 = oncia_CommandClause_columnsAsMap$($this); + $this.$bitmap$035 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - var$4 = var$4 + 1 | 0; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - $ctx.$ast0 = oncie_RelationshipsPattern__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); -}, -oncipvaf_Cypher25AstBuilder_exitPatternExpression = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_PatternExpression; - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - var$4 = s_None$_MODULE$; - oncie_PatternExpression__init_(var$2, var$3, var$4, var$4); - $ctx.$ast0 = var$2; + jl_Object_monitorExitSync($this); + return $this.$columnsAsMap0; }, -oncipvaf_Cypher25AstBuilder_exitReduceExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 6)).$ast0; - var$4 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 10)).$ast0; - var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 4)).$ast0; - var$6 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 8)).$ast0; - $ctx.$ast0 = oncie_ReduceExpression__init_(oncie_ReduceScope__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier4; }, -oncipvaf_Cypher25AstBuilder_exitListItemsPredicate = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - a: { - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; - var$4 = $ctx.$inExp0.$ast0; - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, $ctx.$whereExp4); - var$6 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); - switch (var$6) { - case 18: - oncie_AllIterablePredicate$_$callClinit(); - var$2 = oncie_AllIterablePredicate$_apply(oncie_AllIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); - break a; - case 21: - oncie_AnyIterablePredicate$_$callClinit(); - var$2 = oncie_AnyIterablePredicate$_apply(oncie_AnyIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); - break a; - case 172: - oncie_NoneIterablePredicate$_$callClinit(); - var$2 = oncie_NoneIterablePredicate$_apply(oncie_NoneIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); - break a; - case 251: - oncie_SingleIterablePredicate$_$callClinit(); - var$2 = oncie_SingleIterablePredicate$_apply(oncie_SingleIterablePredicate$_MODULE$, var$3, var$4, var$5, var$2); +oncia_ShowIndexesClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module23 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module23 !== null) + break a; + $this.$SetExtractor$module23 = oncia_Clause$SetExtractor$__init_($this); break a; - default: + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$6))); + jl_Object_monitorExitSync($this); } - $ctx.$ast0 = var$2; + return $this.$SetExtractor$module23; }, -oncipvaf_Cypher25AstBuilder_exitShortestPathExpression = ($this, $ctx) => { - let var$2; - var$2 = new oncie_ShortestPathExpression; - oncipau_Util$_$callClinit(); - oncie_ShortestPathExpression__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 0)); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier4 = $x$1; }, -oncipvaf_Cypher25AstBuilder_exitParenthesizedExpression = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncia_ShowIndexesClause_where = $this => { + return $this.$where5; }, -oncipvaf_Cypher25AstBuilder_exitMapProjection = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncie_MapProjection; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$MapProjectionElementContext)); - sr_ClassTag$_$callClinit(); - oncie_MapProjection__init_(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)), oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getToken($ctx, 143, 0))); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_yieldItems = $this => { + return $this.$yieldItems5; }, -oncipvaf_Cypher25AstBuilder_exitMapProjectionElement = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oncip_AstRuleCtx_getToken($ctx, 44, 0); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0); - var$4 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyKeyNameContext), 0); - var$5 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyContext), 0); - if (var$2 !== null) { - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0; - var$2 = oncie_LiteralEntry__init_(var$4.$ast0, var$5, var$5.$position()); - } else if (var$3 !== null) { - var$2 = new oncie_VariableSelector; - var$5 = var$3.$ast0; - oncipau_Util$_$callClinit(); - oncie_VariableSelector__init_(var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (var$5 !== null) { - var$5 = var$5.$ast0; - var$2 = oncie_PropertySelector__init_(var$5, var$5.$position26); - } else { - var$2 = new oncie_AllPropertiesSelector; - oncipau_Util$_$callClinit(); - oncie_AllPropertiesSelector__init_(var$2, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 265, 0)).$getSymbol())); - } - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_yieldAll = $this => { + return $this.$yieldAll8; }, -oncipvaf_Cypher25AstBuilder_exitCountStar = ($this, $ctx) => { - let var$2; - var$2 = new oncie_CountStar; - oncipau_Util$_$callClinit(); - oncie_CountStar__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_yieldWith = $this => { + return $this.$yieldWith2; }, -oncipvaf_Cypher25AstBuilder_exitExistsExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncia_ExistsExpression; - var$3 = oncipvaf_ExpressionBuilder_subqueryBuilder0($this, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MatchModeContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternListContext), 0)); - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$5 = s_None$_MODULE$; - oncia_ExistsExpression__init_(var$2, var$3, var$4, var$5, var$5); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_position = $this => { + return $this.$position54; }, -oncipvaf_Cypher25AstBuilder_exitCountExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncia_CountExpression; - var$3 = oncipvaf_ExpressionBuilder_subqueryBuilder0($this, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MatchModeContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0), oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PatternListContext), 0)); - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$5 = s_None$_MODULE$; - oncia_CountExpression__init_(var$2, var$3, var$4, var$5, var$5); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_name = $this => { + return $rt_s(5182); }, -oncipvaf_Cypher25AstBuilder_exitCollectExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = new oncia_CollectExpression; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RegularQueryContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$5 = s_None$_MODULE$; - oncia_CollectExpression__init_(var$2, var$3, var$4, var$5, var$5); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_originalColumns = $this => { + return $this.$originalColumns4; }, -oncipvaf_Cypher25AstBuilder_exitPropertyKeyName = ($this, $ctx) => { - let var$2; - var$2 = new oncie_PropertyKeyName; - oncipau_Util$_$callClinit(); - oncie_PropertyKeyName__init_0(var$2, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_ShowIndexesClause_unfilteredColumns = $this => { + return $this.$unfilteredColumns2; }, -oncipvaf_Cypher25AstBuilder_exitParameter = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterNameContext), 0)).$ast0; - var$3 = var$2.$name14; - var$4 = var$2.$parameterType0; - var$5 = var$2.$sizeHint2; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncie_ExplicitParameter_copy(var$2, var$3, var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncia_ShowIndexesClause_moveWhereToProjection = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowIndexesClause_copy($this, $this.$briefConstraintColumns, $this.$allConstraintColumns, $this.$indexType2, $x$1, $this.$yieldItems5, $this.$yieldAll8, $this.$yieldWith2, $this.$position54); }, -oncipvaf_Cypher25AstBuilder_exitParameterName = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = $ctx.$paramType; - var$3 = var$2 !== null ? jl_String_hashCode(var$2) : 0; +oncia_ShowIndexesClause_moveOutWith = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowIndexesClause_copy($this, $this.$briefConstraintColumns, $this.$allConstraintColumns, $this.$indexType2, $this.$where5, $this.$yieldItems5, $this.$yieldAll8, $x$1, $this.$position54); +}, +oncia_ShowIndexesClause_copy = ($this, $briefConstraintColumns, $allConstraintColumns, $indexType, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + return oncia_ShowIndexesClause__init_($briefConstraintColumns, $allConstraintColumns, $indexType, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}, +oncia_ShowIndexesClause_productPrefix = $this => { + return $rt_s(6488); +}, +oncia_ShowIndexesClause_productArity = $this => { + return 7; +}, +oncia_ShowIndexesClause_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$briefConstraintColumns; + case 1: + return $this.$allConstraintColumns; + case 2: + return $this.$indexType2; + case 3: + return $this.$where5; + case 4: + return $this.$yieldItems5; + case 5: + return jl_Boolean_valueOf($this.$yieldAll8); + case 6: + return $this.$yieldWith2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_ShowIndexesClause_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowIndexesClause_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6488))), sr_Statics_anyHash($this.$briefConstraintColumns)), sr_Statics_anyHash($this.$allConstraintColumns)), sr_Statics_anyHash($this.$indexType2)), sr_Statics_anyHash($this.$where5)), sr_Statics_anyHash($this.$yieldItems5)), !$this.$yieldAll8 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldWith2)), 7); +}, +oncia_ShowIndexesClause_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowIndexesClause_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - switch (var$3) { - case -1838656495: - if (jl_String_equals($rt_s(714), var$2)) { - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTString(oncius_package$_MODULE$); - break a; - } + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowIndexesClause) ? 0 : 1)) break b; - case 76092: - if (jl_String_equals($rt_s(724), var$2)) { - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTMap(oncius_package$_MODULE$); - break a; + $x$1 = $x$1; + if ($this.$yieldAll8 != $x$1.$yieldAll8) + break b; + c: { + var$2 = $this.$briefConstraintColumns; + var$3 = $x$1.$briefConstraintColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$allConstraintColumns; + var$3 = $x$1.$allConstraintColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$indexType2; + var$3 = $x$1.$indexType2; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$where5; + var$3 = $x$1.$where5; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$yieldItems5; + var$3 = $x$1.$yieldItems5; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break g; } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$yieldWith2; + $x$1 = $x$1.$yieldWith2; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break h; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ShowIndexesClause)) break b; - default: } + var$4 = 1; + break a; } - oncius_package$_$callClinit(); - var$4 = oncius_package$_CTAny(oncius_package$_MODULE$); - } - oncipau_Util$_$callClinit(); - var$2 = oncip_AstRuleCtx_getChild($ctx, 0); - if (var$2 instanceof oncipv_Cypher25Parser$SymbolicNameStringContext) - var$5 = var$2.$ast0; - else { - if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { - var$2 = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6900)), $ctx); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw(var$2); - } - var$5 = var$2.$getText(); + var$4 = 0; } - $ctx.$ast0 = oncie_ExplicitParameter__init_(var$5, var$4, onciu_UnknownSize$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + return var$4; }, -oncipvaf_Cypher25AstBuilder_exitFunctionInvocation = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oncipv_Cypher25Parser$FunctionInvocationContext_functionName($ctx)).$ast0; - var$3 = oncip_AstRuleCtx_getToken($ctx, 77, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(oncipv_Cypher25Parser$FunctionInvocationContext_functionArgument($ctx)), new oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_00), jus_Collectors_toList()); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncie_FunctionInvocation__init_0(var$2, var$3, oncipau_Util$_astSeq(var$4, var$5, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, $ctx.$parent instanceof oncipv_Cypher25Parser$GraphReferenceContext, var$2.$namespace3.$position97); +oncia_ShowIndexesClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipvaf_Cypher25AstBuilder_exitFunctionName = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamespaceContext), 0)).$ast0; - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); - var$4 = var$3.$ast0; - var$5 = new oncie_FunctionName; - oncipau_Util$_$callClinit(); - oncie_FunctionName__init_(var$5, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - $ctx.$ast0 = var$5; +oncia_ShowIndexesClause__init_0 = ($this, $briefConstraintColumns, $allConstraintColumns, $indexType, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + $this.$briefConstraintColumns = $briefConstraintColumns; + $this.$allConstraintColumns = $allConstraintColumns; + $this.$indexType2 = $indexType; + $this.$where5 = $where; + $this.$yieldItems5 = $yieldItems; + $this.$yieldAll8 = $yieldAll; + $this.$yieldWith2 = $yieldWith; + $this.$position54 = $position; + oncia_Clause_$init$($this); + $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; + $this.$useAllColumns5 = $yieldAll; + $this.$originalColumns4 = !$yieldAll ? $briefConstraintColumns : $allConstraintColumns; + $indexType = new oncia_ShowIndexesClause$_init_$lambda$_119_0; + $indexType.$_0231 = $this; + $this.$briefColumns0 = sci_List_map($briefConstraintColumns, $indexType); + $briefConstraintColumns = new oncia_ShowIndexesClause$_init_$lambda$_119_1; + $briefConstraintColumns.$_0847 = $this; + $briefConstraintColumns = sci_List_map($allConstraintColumns, $briefConstraintColumns); + $this.$allColumns0 = $briefConstraintColumns; + oncia_DefaultOrAllShowColumns$_$callClinit(); + $this.$unfilteredColumns2 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns5, $this.$briefColumns0, $briefConstraintColumns); +}, +oncia_ShowIndexesClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_ShowIndexesClause(); + oncia_ShowIndexesClause__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; }; -let oncipvaf_Cypher25AstBuilder_exitFunctionArgument = ($this, $ctx) => { - $ctx.$ast0 = (oncipv_Cypher25Parser$FunctionArgumentContext_expression($ctx)).$ast0; +function oncia_ShowSettingsClause() { + let a = this; jl_Object.call(a); + a.$briefSettingColumns = null; + a.$allSettingColumns = null; + a.$names3 = null; + a.$where11 = null; + a.$yieldItems4 = null; + a.$yieldAll3 = 0; + a.$yieldWith4 = null; + a.$position33 = null; + a.$useAllColumns2 = 0; + a.$originalColumns5 = null; + a.$briefColumns4 = null; + a.$allColumns = null; + a.$unfilteredColumns4 = null; + a.$columnsAsMap1 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier15 = null; + a.$SetExtractor$module16 = null; + a.$bitmap$045 = 0; +} +let oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck = $this => { + return oncia_CommandClause_clauseSpecificSemanticCheck$($this); }, -oncipvaf_Cypher25AstBuilder_exitNamespace = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_Namespace; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); - sr_ClassTag$_$callClinit(); - oncie_Namespace__init_(var$2, sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_ShowSettingsClause_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -oncipvaf_Cypher25AstBuilder_exitVariable = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncie_Variable; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncie_Variable__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_ShowSettingsClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncipvaf_Cypher25AstBuilder_exitType = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; +oncia_ShowSettingsClause_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_ShowSettingsClause_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowSettingsClause_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowSettingsClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowSettingsClause_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_ShowSettingsClause_foldedOver = $this => { + return $this; +}, +oncia_ShowSettingsClause_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowSettingsClause_columnsAsMap = $this => { + let var$1, $$je; + if ($this.$bitmap$045) + return $this.$columnsAsMap1; + jl_Object_monitorEnterSync($this); a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - default: - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$TypePartContext)); - sr_ClassTag$_$callClinit(); - var$4 = sc_AbstractIterable_toSet(oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncius_CypherType)))); - if (var$4.$size() == 1) { - var$5 = var$4.$head(); - break a; - } - var$5 = oncius_ClosedDynamicUnionType__init_0(var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + try { + if ($this.$bitmap$045) break a; + $this.$columnsAsMap1 = oncia_CommandClause_columnsAsMap$($this); + $this.$bitmap$045 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - oncipau_Util$_$callClinit(); - var$5 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - $ctx.$ast0 = var$5.$simplify(); -}, -oncipvaf_Cypher25AstBuilder_exitTypePart = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = sr_ObjectRef_create((oncipv_Cypher25Parser$TypePartContext_typeName($ctx)).$ast0); - if (oncipv_Cypher25Parser$TypePartContext_typeNullability($ctx) !== null) - var$2.$elem = var$2.$elem.$withIsNullable1(0); - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$TypeListSuffixContext)); - var$4 = new oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_00; - var$4.$_0954 = var$2; - var$4.$_1335 = $ctx; - var$3.$forEach(var$4); - $ctx.$ast0 = var$2.$elem; -}, -oncipvaf_Cypher25AstBuilder_exitTypeName = ($this, $ctx) => { - oncipvaf_ExpressionBuilder_exitTypeName($this, $ctx); + jl_Object_monitorExitSync($this); + return $this.$columnsAsMap1; }, -oncipvaf_Cypher25AstBuilder_exitTypeNullability = ($this, $ctx) => { - return; +oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier15; }, -oncipvaf_Cypher25AstBuilder_exitTypeListSuffix = ($this, $ctx) => { - $ctx.$ast0 = jl_Boolean_valueOf(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$TypeNullabilityContext), 0) !== null ? 0 : 1); +oncia_ShowSettingsClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module16 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module16 !== null) + break a; + $this.$SetExtractor$module16 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + } + return $this.$SetExtractor$module16; }, -oncipvaf_Cypher25AstBuilder_exitMap = ($this, $ctx) => { - let var$2; - var$2 = new oncie_MapExpression; - oncipau_Util$_$callClinit(); - oncie_MapExpression__init_(var$2, oncipau_Util$_astPairs(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyKeyNameContext)), oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier15 = $x$1; }, -oncipvaf_Cypher25AstBuilder_exitSymbolicNameString = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncia_ShowSettingsClause_names = $this => { + return $this.$names3; }, -oncipvaf_Cypher25AstBuilder_exitEscapedSymbolicNameString = ($this, $ctx) => { - $ctx.$ast0 = jl_String_replace(($ctx.$start1.$getInputStream0()).$getText0(oavrm_Interval__init_($ctx.$start1.$getStartIndex() + 1 | 0, $ctx.$stop.$getStopIndex() - 1 | 0)), $rt_s(413), $rt_s(412)); +oncia_ShowSettingsClause_where = $this => { + return $this.$where11; }, -oncipvaf_Cypher25AstBuilder_exitUnescapedSymbolicNameString = ($this, $ctx) => { - $ctx.$ast0 = oncip_AstRuleCtx_getText($ctx); +oncia_ShowSettingsClause_yieldItems = $this => { + return $this.$yieldItems4; }, -oncipvaf_Cypher25AstBuilder_exitSymbolicLabelNameString = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncia_ShowSettingsClause_yieldAll = $this => { + return $this.$yieldAll3; }, -oncipvaf_Cypher25AstBuilder_exitUnescapedLabelSymbolicNameString = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncia_ShowSettingsClause_yieldWith = $this => { + return $this.$yieldWith4; }, -oncipvaf_Cypher25AstBuilder_exitUnescapedLabelSymbolicNameString_ = ($this, $ctx) => { - $ctx.$ast0 = oncip_AstRuleCtx_getText($ctx); +oncia_ShowSettingsClause_position = $this => { + return $this.$position33; }, -oncipvaf_Cypher25AstBuilder_exitNormalizeFunction = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0; - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NormalFormContext), 0); - oncipau_Util$_$callClinit(); - var$4 = (oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, var$3, new oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0)).$formName(); - var$5 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$3 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, $rt_s(428), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_package$_$callClinit(); - var$6 = s_package$_IndexedSeq(s_package$_MODULE$); - var$7 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(oncie_Expression, 2); - var$9 = var$8.data; - var$9[0] = var$2; - var$9[1] = oncie_StringLiteral__init_(var$4, onciu_InputPosition$Simple_withInputLength(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx), 0)); - var$10 = sc_SeqFactory$Delegate_apply(var$6, sr_ScalaRunTime$_wrapRefArray(var$7, var$8)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$5, var$3, 0, var$10, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$5; +oncia_ShowSettingsClause_name = $this => { + return $rt_s(657); }, -oncipvaf_Cypher25AstBuilder_exitTrimFunction = ($this, $ctx) => { - oncipvaf_ExpressionBuilder_exitTrimFunction($this, $ctx); +oncia_ShowSettingsClause_originalColumns = $this => { + return $this.$originalColumns5; }, -oncipvaf_Cypher25AstBuilder_exitGrantCommand = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncipv_Cypher25Parser$GrantCommandContext_privilege($ctx) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GrantRoleContext), 0)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$4 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); - var$4 = oncia_GrantRolesToUsers__init_(var$4.$_10, var$4.$_20, var$2); - } else { - var$3 = (oncipv_Cypher25Parser$GrantCommandContext_privilege($ctx)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$5 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); - var$3 = var$5.$_11; - var$6 = var$5.$_21; - var$5 = var$5.$_30; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0; - var$4 = oncia_GrantPrivilege__init_(var$3, oncip_AstRuleCtx_getToken($ctx, 126, 0) === null ? 0 : 1, var$6, var$5, var$7, var$2); - } - $ctx.$ast0 = var$4; +oncia_ShowSettingsClause_unfilteredColumns = $this => { + return $this.$unfilteredColumns4; }, -oncipvaf_Cypher25AstBuilder_exitDenyCommand = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PrivilegeContext), 0)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$4 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); - var$5 = var$4.$_11; - var$3 = var$4.$_21; - var$6 = var$4.$_30; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0; - $ctx.$ast0 = oncia_DenyPrivilege__init_(var$5, oncip_AstRuleCtx_getToken($ctx, 126, 0) === null ? 0 : 1, var$3, var$6, var$4, var$2); +oncia_ShowSettingsClause_moveWhereToProjection = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowSettingsClause_copy($this, $this.$briefSettingColumns, $this.$allSettingColumns, $this.$names3, $x$1, $this.$yieldItems4, $this.$yieldAll3, $this.$yieldWith4, $this.$position33); }, -oncipvaf_Cypher25AstBuilder_exitRevokeCommand = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncipv_Cypher25Parser$RevokeCommandContext_privilege($ctx) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RevokeRoleContext), 0)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$4 = s_Tuple2__init_(var$3.$_1(), var$3.$_2()); - var$4 = oncia_RevokeRolesFromUsers__init_(var$4.$_10, var$4.$_20, var$2); - } else { - var$3 = (oncipv_Cypher25Parser$RevokeCommandContext_privilege($ctx)).$ast0; - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$5 = s_Tuple3__init_(var$3.$_11, var$3.$_21, var$3.$_30); - var$3 = var$5.$_11; - var$6 = var$5.$_21; - var$5 = var$5.$_30; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0; - var$8 = oncipv_Cypher25Parser$RevokeCommandContext_DENY($ctx) !== null ? oncia_RevokeDenyType__init_(oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$RevokeCommandContext_DENY($ctx))) : oncipv_Cypher25Parser$RevokeCommandContext_GRANT($ctx) === null ? oncia_RevokeBothType__init_(var$2) : oncia_RevokeGrantType__init_(oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$RevokeCommandContext_GRANT($ctx))); - var$4 = oncia_RevokePrivilege__init_0(var$3, oncip_AstRuleCtx_getToken($ctx, 126, 0) === null ? 0 : 1, var$6, var$5, var$7, var$8, var$2); - } - $ctx.$ast0 = var$4; +oncia_ShowSettingsClause_moveOutWith = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowSettingsClause_copy($this, $this.$briefSettingColumns, $this.$allSettingColumns, $this.$names3, $this.$where11, $this.$yieldItems4, $this.$yieldAll3, $x$1, $this.$position33); }, -oncipvaf_Cypher25AstBuilder_exitGrantRole = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserNamesContext), 0)).$ast0); +oncia_ShowSettingsClause_clauseSpecificSemanticCheck = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(1002)), $rt_s(657)), $rt_s(4060)); + return oncias_SemanticCheck_chain$(oncias_SemanticAnalysisTooling_requireFeatureSupport$($this, jl_AbstractStringBuilder_toString(var$1), oncias_SemanticFeature$ShowSetting$_MODULE$, $this.$position33), oncia_CommandClauseWithNames_clauseSpecificSemanticCheck$($this)); }, -oncipvaf_Cypher25AstBuilder_exitRevokeRole = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserNamesContext), 0)).$ast0); +oncia_ShowSettingsClause_copy = ($this, $briefSettingColumns, $allSettingColumns, $names, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + return oncia_ShowSettingsClause__init_($briefSettingColumns, $allSettingColumns, $names, $where, $yieldItems, $yieldAll, $yieldWith, $position); }, -oncipvaf_Cypher25AstBuilder_exitPrivilege = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncia_ShowSettingsClause_productPrefix = $this => { + return $rt_s(6489); }, -oncipvaf_Cypher25AstBuilder_exitAllPrivilege = ($this, $ctx) => { - oncipvaf_DdlPrivilegeBuilder_exitAllPrivilege($this, $ctx); +oncia_ShowSettingsClause_productArity = $this => { + return 7; }, -oncipvaf_Cypher25AstBuilder_exitAllPrivilegeTarget = ($this, $ctx) => { - return; +oncia_ShowSettingsClause_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$briefSettingColumns; + case 1: + return $this.$allSettingColumns; + case 2: + return $this.$names3; + case 3: + return $this.$where11; + case 4: + return $this.$yieldItems4; + case 5: + return jl_Boolean_valueOf($this.$yieldAll3); + case 6: + return $this.$yieldWith4; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitAllPrivilegeType = ($this, $ctx) => { - return; +oncia_ShowSettingsClause_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitCreatePrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - if (oncipv_Cypher25Parser$CreatePrivilegeContext_databaseScope($ctx) !== null) { - var$2 = (oncipv_Cypher25Parser$CreatePrivilegeContext_databaseScope($ctx)).$ast0; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext), 0)).$ast0; - var$4 = new oncia_DatabasePrivilege; - oncipau_Util$_$callClinit(); - oncia_DatabasePrivilege__init_(var$4, var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$5 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier($this, var$4, s_None$_MODULE$); - } else if (oncipv_Cypher25Parser$CreatePrivilegeContext_actionForDBMS($ctx) !== null) { - var$2 = (oncipv_Cypher25Parser$CreatePrivilegeContext_actionForDBMS($ctx)).$ast0; - var$3 = new oncia_DbmsPrivilege; - oncipau_Util$_$callClinit(); - oncia_DbmsPrivilege__init_0(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$5 = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, var$3, s_None$_MODULE$); - } else { - var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierContext), 0)).$ast0; - var$5 = new s_Tuple3; - var$2 = new oncia_GraphPrivilege; - var$3 = oncia_CreateElementAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$2, var$3, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$5, var$2, s_None$_MODULE$, var$7); - } - $ctx.$ast0 = var$5; +oncia_ShowSettingsClause_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6489))), sr_Statics_anyHash($this.$briefSettingColumns)), sr_Statics_anyHash($this.$allSettingColumns)), sr_Statics_anyHash($this.$names3)), sr_Statics_anyHash($this.$where11)), sr_Statics_anyHash($this.$yieldItems4)), !$this.$yieldAll3 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldWith4)), 7); }, -oncipvaf_Cypher25AstBuilder_exitCreatePrivilegeForDatabase = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncia_ShowSettingsClause_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitActionForDBMS = ($this, $ctx) => { - let var$2, var$3; - var$2 = $ctx.$parent.$getRuleIndex() != 239 ? 0 : 1; +oncia_ShowSettingsClause_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - oncipau_Util$_$callClinit(); - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0()) { - case 15: - if (!var$2) { - var$3 = oncia_DropAliasAction$_MODULE$; - break a; - } - var$3 = oncia_CreateAliasAction$_MODULE$; - break a; - case 49: - if (!var$2) { - var$3 = oncia_DropCompositeDatabaseAction$_MODULE$; - break a; - } - var$3 = oncia_CreateCompositeDatabaseAction$_MODULE$; - break a; - case 61: - if (!var$2) { - var$3 = oncia_DropDatabaseAction$_MODULE$; - break a; - } - var$3 = oncia_CreateDatabaseAction$_MODULE$; - break a; - case 229: - if (!var$2) { - var$3 = oncia_DropRoleAction$_MODULE$; - break a; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowSettingsClause) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll3 != $x$1.$yieldAll3) + break b; + c: { + var$2 = $this.$briefSettingColumns; + var$3 = $x$1.$briefSettingColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; } - var$3 = oncia_CreateRoleAction$_MODULE$; - break a; - case 285: - if (!var$2) { - var$3 = oncia_DropUserAction$_MODULE$; - break a; + d: { + var$2 = $this.$allSettingColumns; + var$3 = $x$1.$allSettingColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; } - var$3 = oncia_CreateUserAction$_MODULE$; - break a; - default: - } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6906)); - $rt_throw($ctx); - } - $ctx.$ast0 = var$3; -}, -oncipvaf_Cypher25AstBuilder_exitDatabasePrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - a: { - oncipau_Util$_$callClinit(); - var$2 = oncip_AstRuleCtx_getChild($ctx, 0); - if (var$2 instanceof oncipv_Cypher25Parser$ConstraintTokenContext) - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_AllConstraintActions$_MODULE$); - else if (var$2 instanceof oncipv_Cypher25Parser$IndexTokenContext) - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_AllIndexActions$_MODULE$); - else { - if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6907)); - $rt_throw($ctx); - } - switch ((var$2.$getSymbol()).$getType0()) { - case 11: - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_AccessDatabaseAction$_MODULE$); - break a; - case 161: - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_AllTokenActions$_MODULE$); - break a; - case 253: - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_StartDatabaseAction$_MODULE$); - break a; - case 256: - var$3 = oncipvaf_DdlPrivilegeBuilder_withQualifier2($this, oncia_StopDatabaseAction$_MODULE$); - break a; - case 261: - var$3 = s_Tuple2__init_(oncia_TerminateTransactionAction$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$DatabasePrivilegeContext_userQualifier($ctx), new oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_00)); - break a; - case 271: - var$3 = s_Tuple2__init_(oncia_AllTransactionActions$_MODULE$, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$DatabasePrivilegeContext_userQualifier($ctx), new oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_10)); - break a; - default: + e: { + var$2 = $this.$names3; + var$3 = $x$1.$names3; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$where11; + var$3 = $x$1.$where11; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$yieldItems4; + var$3 = $x$1.$yieldItems4; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$yieldWith4; + $x$1 = $x$1.$yieldWith4; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break h; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ShowSettingsClause)) + break b; } - $ctx = new jl_IllegalStateException; - jl_Throwable__init_($ctx); - $rt_throw($ctx); + var$4 = 1; + break a; } + var$4 = 0; } - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$2 = var$3.$_10; - var$3 = var$3.$_20; - var$4 = s_Tuple2__init_(var$2, var$3); - var$3 = var$4.$_10; - var$4 = var$4.$_20; - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$DatabaseScopeContext), 0)).$ast0; - $ctx.$ast0 = s_Tuple3__init_(oncia_DatabasePrivilege__init_0(var$3, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), s_None$_MODULE$, var$4); + return var$4; }, -oncipvaf_Cypher25AstBuilder_exitDbmsPrivilege = ($this, $ctx) => { - oncipvaf_DdlPrivilegeBuilder_exitDbmsPrivilege($this, $ctx); +oncia_ShowSettingsClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipvaf_Cypher25AstBuilder_exitDbmsPrivilegeExecute = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AdminTokenContext), 0) !== null) - var$2 = oncipvaf_DdlPrivilegeBuilder_withQualifier($this, oncia_ExecuteAdminProcedureAction$_MODULE$); - else if (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ProcedureTokenContext), 0) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExecuteFunctionQualifierContext), 0)).$ast0; - var$2 = oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_BOOSTED($ctx) === null ? s_Tuple2__init_(oncia_ExecuteFunctionAction$_MODULE$, var$3) : s_Tuple2__init_(oncia_ExecuteBoostedFunctionAction$_MODULE$, var$3); - } else { - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExecuteProcedureQualifierContext), 0)).$ast0; - var$2 = oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_BOOSTED($ctx) === null ? s_Tuple2__init_(oncia_ExecuteProcedureAction$_MODULE$, var$4) : s_Tuple2__init_(oncia_ExecuteBoostedProcedureAction$_MODULE$, var$4); - } - $ctx.$ast0 = var$2; +oncia_ShowSettingsClause__init_0 = ($this, $briefSettingColumns, $allSettingColumns, $names, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + $this.$briefSettingColumns = $briefSettingColumns; + $this.$allSettingColumns = $allSettingColumns; + $this.$names3 = $names; + $this.$where11 = $where; + $this.$yieldItems4 = $yieldItems; + $this.$yieldAll3 = $yieldAll; + $this.$yieldWith4 = $yieldWith; + $this.$position33 = $position; + oncia_Clause_$init$($this); + $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; + $this.$useAllColumns2 = $yieldAll; + $this.$originalColumns5 = !$yieldAll ? $briefSettingColumns : $allSettingColumns; + $names = new oncia_ShowSettingsClause$_init_$lambda$_113_0; + $names.$_0292 = $this; + $this.$briefColumns4 = sci_List_map($briefSettingColumns, $names); + $briefSettingColumns = new oncia_ShowSettingsClause$_init_$lambda$_113_1; + $briefSettingColumns.$_0761 = $this; + $briefSettingColumns = sci_List_map($allSettingColumns, $briefSettingColumns); + $this.$allColumns = $briefSettingColumns; + oncia_DefaultOrAllShowColumns$_$callClinit(); + $this.$unfilteredColumns4 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns2, $this.$briefColumns4, $briefSettingColumns); }, -oncipvaf_Cypher25AstBuilder_exitDropPrivilege = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncipv_Cypher25Parser$DropPrivilegeContext_databaseScope($ctx) === null) { - var$2 = new oncia_DbmsPrivilege; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ActionForDBMSContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_DbmsPrivilege__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, var$2, s_None$_MODULE$); - } else { - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$IndexTokenContext), 0) === null ? oncia_DropConstraintAction$_MODULE$ : oncia_DropIndexAction$_MODULE$; - var$4 = (oncipv_Cypher25Parser$DropPrivilegeContext_databaseScope($ctx)).$ast0; - var$3 = new oncia_DatabasePrivilege; - oncipau_Util$_$callClinit(); - oncia_DatabasePrivilege__init_(var$3, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$2 = oncipvaf_DdlPrivilegeBuilder_allDbQualifier($this, var$3, s_None$_MODULE$); - } - $ctx.$ast0 = var$2; +oncia_ShowSettingsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_ShowSettingsClause(); + oncia_ShowSettingsClause__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; }, -oncipvaf_Cypher25AstBuilder_exitLoadPrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - if (oncip_AstRuleCtx_getToken($ctx, 18, 0) !== null) { - var$2 = new s_Tuple3; - var$3 = new oncia_LoadPrivilege; - oncia_LoadAllDataAction$_$callClinit(); - var$4 = oncia_LoadAllDataAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_LoadPrivilege__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$2, var$3, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadAllQualifier__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); - } else if (oncip_AstRuleCtx_getToken($ctx, 283, 0) === null) { - var$2 = new s_Tuple3; - var$4 = new oncia_LoadPrivilege; - oncia_LoadCidrAction$_$callClinit(); - var$5 = oncia_LoadCidrAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_LoadPrivilege__init_(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$2, var$4, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadCidrQualifier__init_((oncipv_Cypher25Parser$LoadPrivilegeContext_stringOrParameter($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); - } else { - var$2 = new s_Tuple3; - var$5 = new oncia_LoadPrivilege; - oncia_LoadUrlAction$_$callClinit(); - var$4 = oncia_LoadUrlAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_LoadPrivilege__init_(var$5, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$2, var$5, s_Some__init_(oncia_FileResource__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx))), sci_$colon$colon__init_(oncia_LoadUrlQualifier__init_((oncipv_Cypher25Parser$LoadPrivilegeContext_stringOrParameter($ctx)).$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); - } - $ctx.$ast0 = var$2; +oncia_ShowTransactionsClause$$apply$lambda$_40_0 = $rt_classWithoutFields(), +oncia_ShowTransactionsClause$$apply$lambda$_40_0__init_ = var$0 => { + return; }, -oncipvaf_Cypher25AstBuilder_exitQualifiedGraphPrivileges = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = oncip_AstRuleCtx_getToken($ctx, 69, 0) !== null ? s_Tuple2__init_(oncia_DeleteElementAction$_MODULE$, s_None$_MODULE$) : s_Tuple2__init_(oncia_MergeAdminAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesResourceContext), 0)).$ast0); - var$3 = var$2.$_10; - var$2 = var$2.$_20; - var$4 = s_Tuple2__init_(var$3, var$2); - var$2 = var$4.$_10; - var$4 = var$4.$_20; - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; - var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierContext), 0)).$ast0; - var$7 = new s_Tuple3; - var$8 = new oncia_GraphPrivilege; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$8, var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$7, var$8, var$4, var$6); - $ctx.$ast0 = var$7; +oncia_ShowTransactionsClause$$apply$lambda$_40_0__init_0 = () => { + let var_0 = new oncia_ShowTransactionsClause$$apply$lambda$_40_0(); + oncia_ShowTransactionsClause$$apply$lambda$_40_0__init_(var_0); + return var_0; }, -oncipvaf_Cypher25AstBuilder_exitQualifiedGraphPrivilegesWithProperty = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = oncip_AstRuleCtx_getToken($ctx, 273, 0) !== null ? s_Tuple2__init_(oncia_TraverseAction$_MODULE$, s_None$_MODULE$) : s_Tuple2__init_(oncip_AstRuleCtx_getToken($ctx, 212, 0) === null ? oncia_MatchAction$_MODULE$ : oncia_ReadAction$_MODULE$, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesResourceContext), 0)).$ast0); - var$3 = var$2.$_10; - var$2 = var$2.$_20; - var$4 = s_Tuple2__init_(var$3, var$2); - var$2 = var$4.$_10; - var$4 = var$4.$_20; - var$5 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; - var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierContext), 0)).$ast0; - var$7 = new s_Tuple3; - var$8 = new oncia_GraphPrivilege; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$8, var$2, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$7, var$8, var$4, var$6); - $ctx.$ast0 = var$7; +oncia_ShowTransactionsClause$$apply$lambda$_40_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ShowTransactionsClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return jl_Boolean_valueOf(var$1.$_2$mcZ$sp()); }, -oncipvaf_Cypher25AstBuilder_exitShowPrivilege = ($this, $ctx) => { - oncipvaf_DdlPrivilegeBuilder_exitShowPrivilege($this, $ctx); +oncia_ShowTransactionsClause$$apply$lambda$_40_1 = $rt_classWithoutFields(), +oncia_ShowTransactionsClause$$apply$lambda$_40_1__init_0 = var$0 => { + return; }, -oncipvaf_Cypher25AstBuilder_exitSetPrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncip_AstRuleCtx_getToken($ctx, 65, 0) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; - if (oncip_AstRuleCtx_getToken($ctx, 138, 0) !== null) { - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelsResourceContext), 0)).$ast0; - var$5 = oncipvaf_DdlPrivilegeBuilder_labelAllQualifier($this, oncia_GraphPrivilege__init_0(oncia_SetLabelAction$_MODULE$, var$3, var$2), var$4, var$2); - } else { - var$6 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesResourceContext), 0)).$ast0; - var$5 = s_Tuple3__init_(oncia_GraphPrivilege__init_0(oncia_SetPropertyAction$_MODULE$, var$3, var$2), var$6, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphQualifierContext), 0)).$ast0); - } - } else - var$5 = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, oncia_DbmsPrivilege__init_(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordTokenContext), 0) !== null ? oncia_SetPasswordsAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 255, 0) !== null ? oncia_SetUserStatusAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 122, 0) !== null ? oncia_SetUserHomeDatabaseAction$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 28, 0) === null ? oncia_SetDatabaseAccessAction$_MODULE$ : oncia_SetAuthAction$_MODULE$, - var$2), s_None$_MODULE$); - $ctx.$ast0 = var$5; +oncia_ShowTransactionsClause$$apply$lambda$_40_1__init_ = () => { + let var_0 = new oncia_ShowTransactionsClause$$apply$lambda$_40_1(); + oncia_ShowTransactionsClause$$apply$lambda$_40_1__init_0(var_0); + return var_0; }, -oncipvaf_Cypher25AstBuilder_exitRemovePrivilege = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - if (oncip_AstRuleCtx_getToken($ctx, 65, 0) === null) { - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; - var$4 = oncipvaf_DdlPrivilegeBuilder_labelAllQualifier($this, oncia_GraphPrivilege__init_0(oncia_RemoveLabelAction$_MODULE$, var$3, var$2), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelsResourceContext), 0)).$ast0, var$2); - } else - var$4 = oncipvaf_DdlPrivilegeBuilder_allQualifier($this, oncia_DbmsPrivilege__init_(oncip_AstRuleCtx_getToken($ctx, 200, 0) === null ? oncia_RemoveRoleAction$_MODULE$ : oncia_RemovePrivilegeAction$_MODULE$, var$2), s_None$_MODULE$); - $ctx.$ast0 = var$4; +oncia_ShowTransactionsClause$$apply$lambda$_40_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ShowTransactionsClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return var$1.$_1(); }, -oncipvaf_Cypher25AstBuilder_exitWritePrivilege = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GraphScopeContext), 0)).$ast0; - var$3 = new s_Tuple3; - var$4 = new oncia_GraphPrivilege; - var$5 = oncia_WriteAction$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_GraphPrivilege__init_(var$4, var$5, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Tuple3__init_0(var$3, var$4, s_None$_MODULE$, sci_$colon$colon__init_(oncia_ElementsAllQualifier__init_0(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), sci_Nil$_MODULE$)); - $ctx.$ast0 = var$3; +oncia_ShowTransactionsClause$$apply$lambda$_40_2 = $rt_classWithoutFields(), +oncia_ShowTransactionsClause$$apply$lambda$_40_2__init_ = var$0 => { + return; }, -oncipvaf_Cypher25AstBuilder_exitNonEmptyStringList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +oncia_ShowTransactionsClause$$apply$lambda$_40_2__init_0 = () => { + let var_0 = new oncia_ShowTransactionsClause$$apply$lambda$_40_2(); + oncia_ShowTransactionsClause$$apply$lambda$_40_2__init_(var_0); + return var_0; }, -oncipvaf_Cypher25AstBuilder_exitLabelsResource = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { - var$2 = new s_Some; - var$3 = new oncia_AllLabelResource; - oncipau_Util$_$callClinit(); - oncia_AllLabelResource__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Some__init_0(var$2, var$3); - } else { - var$2 = new s_Some; - var$3 = new oncia_LabelsResource; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NonEmptyStringListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_LabelsResource__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Some__init_0(var$2, var$3); - } - $ctx.$ast0 = var$2; +oncia_ShowTransactionsClause$$apply$lambda$_40_2_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_ShowTransactionsClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return var$1.$_1(); +}; +function oncia_ShowTransactionsClause() { + let a = this; jl_Object.call(a); + a.$briefTransactionColumns = null; + a.$allTransactionColumns = null; + a.$names2 = null; + a.$where8 = null; + a.$yieldItems2 = null; + a.$yieldAll6 = 0; + a.$yieldWith1 = null; + a.$position55 = null; + a.$useAllColumns4 = 0; + a.$originalColumns2 = null; + a.$briefColumns = null; + a.$allColumns3 = null; + a.$unfilteredColumns6 = null; + a.$columnsAsMap5 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier14 = null; + a.$SetExtractor$module = null; + a.$bitmap$032 = 0; +} +let oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck = $this => { + return oncia_CommandClause_clauseSpecificSemanticCheck$($this); }, -oncipvaf_Cypher25AstBuilder_exitPropertiesResource = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { - var$2 = new s_Some; - var$3 = new oncia_AllPropertyResource; - oncipau_Util$_$callClinit(); - oncia_AllPropertyResource__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Some__init_0(var$2, var$3); - } else { - var$2 = new s_Some; - var$3 = new oncia_PropertiesResource; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NonEmptyStringListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_PropertiesResource__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - s_Some__init_0(var$2, var$3); - } - $ctx.$ast0 = var$2; +oncia_ShowTransactionsClause_clauseSpecificSemanticCheck = $this => { + return oncia_CommandClauseWithNames_clauseSpecificSemanticCheck$($this); }, -oncipvaf_Cypher25AstBuilder_exitExecuteFunctionQualifier = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobsContext), 0)).$ast0; - var$3 = new oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_00; - var$3.$_0867 = $ctx; - $ctx.$ast0 = (var$2.$map(var$3)).$toList(); +oncia_ShowTransactionsClause_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -oncipvaf_Cypher25AstBuilder_exitExecuteProcedureQualifier = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobsContext), 0)).$ast0; - var$3 = new oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_00; - var$3.$_0967 = $ctx; - $ctx.$ast0 = (var$2.$map(var$3)).$toList(); +oncia_ShowTransactionsClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncipvaf_Cypher25AstBuilder_exitGlobs = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$GlobContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); +oncia_ShowTransactionsClause_shouldRunQPPChecks = $this => { + return 1; }, -oncipvaf_Cypher25AstBuilder_exitGlob = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$GlobContext_escapedSymbolicNameString($ctx), new oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobRecursiveContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), var$3); - $ctx.$ast0 = jl_AbstractStringBuilder_toString(var$4); +oncia_ShowTransactionsClause_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -oncipvaf_Cypher25AstBuilder_exitGlobRecursive = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = (oncipv_Cypher25Parser$GlobRecursiveContext_globPart($ctx)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobRecursiveContext), 0), new oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$2), var$3); - $ctx.$ast0 = jl_AbstractStringBuilder_toString(var$4); +oncia_ShowTransactionsClause_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oncipvaf_Cypher25AstBuilder_exitGlobPart = ($this, $ctx) => { - let var$2, var$3; - if (oncipv_Cypher25Parser$GlobPartContext_DOT($ctx) !== null) { - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$GlobPartContext_escapedSymbolicNameString($ctx), new oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(var$3, 46); - jl_StringBuilder_append(var$3, var$2); - var$2 = jl_AbstractStringBuilder_toString(var$3); - } else - var$2 = oncip_AstRuleCtx_getToken($ctx, 208, 0) !== null ? $rt_s(4414) : oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null ? $rt_s(172) : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext), 0)).$ast0; - $ctx.$ast0 = var$2; +oncia_ShowTransactionsClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipvaf_Cypher25AstBuilder_exitGraphQualifier = ($this, $ctx) => { - oncipvaf_DdlPrivilegeBuilder_exitGraphQualifier0($this, $ctx); -}; -let oncipvaf_Cypher25AstBuilder_exitGraphQualifierToken = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0); - if (var$2 instanceof oncipv_Cypher25Parser$RelTokenContext) - var$2 = oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$RelGraphToken($this); - else if (var$2 instanceof oncipv_Cypher25Parser$NodeTokenContext) - var$2 = oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken($this); - else { - if (!(var$2 instanceof oncipv_Cypher25Parser$ElementTokenContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6908)); - $rt_throw($ctx); - } - var$2 = oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken($this); - } - $ctx.$ast0 = var$2; +oncia_ShowTransactionsClause_asCanonicalStringVal = $this => { + return $this.$toString(); }, -oncipvaf_Cypher25AstBuilder_exitSettingQualifier = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$GlobsContext), 0)).$ast0; - var$3 = new oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0; - var$3.$_0457 = $ctx; - $ctx.$ast0 = sc_IterableOnceOps_toList$(sci_ArraySeq_map(var$2, var$3)); +oncia_ShowTransactionsClause_foldedOver = $this => { + return $this; }, -oncipvaf_Cypher25AstBuilder_exitUserQualifier = ($this, $ctx) => { - let var$2, var$3; - if (oncipv_Cypher25Parser$UserQualifierContext_userNames($ctx) === null) { - var$2 = new sci_$colon$colon; - var$3 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$3, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$2, var$3, sci_Nil$_MODULE$); - } else - var$2 = sc_IterableOnceOps_toList$(sci_ArraySeq_map((oncipv_Cypher25Parser$UserQualifierContext_userNames($ctx)).$ast0, new oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0)); - $ctx.$ast0 = var$2; +oncia_ShowTransactionsClause_folder = $this => { + return onciu_Foldable_folder$($this); }, -oncipvaf_Cypher25AstBuilder_exitRoleNames = ($this, $ctx) => { - $ctx.$ast0 = (oncipv_Cypher25Parser$RoleNamesContext_symbolicNameOrStringParameterList($ctx)).$ast0; +oncia_ShowTransactionsClause_columnsAsMap = $this => { + let var$1, $$je; + if ($this.$bitmap$032) + return $this.$columnsAsMap5; + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$bitmap$032) + break a; + $this.$columnsAsMap5 = oncia_CommandClause_columnsAsMap$($this); + $this.$bitmap$032 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$columnsAsMap5; }, -oncipvaf_Cypher25AstBuilder_exitUserNames = ($this, $ctx) => { - $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext), 0)).$ast0; +oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier14; }, -oncipvaf_Cypher25AstBuilder_exitDatabaseScope = ($this, $ctx) => { - let var$2, var$3; - if (oncip_AstRuleCtx_getToken($ctx, 122, 0) !== null) { - var$2 = new oncia_HomeDatabaseScope; - oncipau_Util$_$callClinit(); - oncia_HomeDatabaseScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { - var$2 = new oncia_AllDatabasesScope; - oncipau_Util$_$callClinit(); - oncia_AllDatabasesScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncia_NamedDatabasesScope; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_NamedDatabasesScope__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncia_ShowTransactionsClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module !== null) + break a; + $this.$SetExtractor$module = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); } - $ctx.$ast0 = var$2; + return $this.$SetExtractor$module; }, -oncipvaf_Cypher25AstBuilder_exitGraphScope = ($this, $ctx) => { - let var$2, var$3; - if (oncip_AstRuleCtx_getToken($ctx, 122, 0) !== null) { - var$2 = new oncia_HomeGraphScope; - oncipau_Util$_$callClinit(); - oncia_HomeGraphScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { - var$2 = new oncia_AllGraphsScope; - oncipau_Util$_$callClinit(); - oncia_AllGraphsScope__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncia_NamedGraphsScope; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameListContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_NamedGraphsScope__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier14 = $x$1; }, -oncipvaf_Cypher25AstBuilder_exitAdminToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_names = $this => { + return $this.$names2; }, -oncipvaf_Cypher25AstBuilder_exitConstraintToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreateConstraintAction$_MODULE$; +oncia_ShowTransactionsClause_where = $this => { + return $this.$where8; }, -oncipvaf_Cypher25AstBuilder_exitCreateNodePrivilegeToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreateNodeLabelAction$_MODULE$; +oncia_ShowTransactionsClause_yieldItems = $this => { + return $this.$yieldItems2; }, -oncipvaf_Cypher25AstBuilder_exitCreatePropertyPrivilegeToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreatePropertyKeyAction$_MODULE$; +oncia_ShowTransactionsClause_yieldAll = $this => { + return $this.$yieldAll6; }, -oncipvaf_Cypher25AstBuilder_exitCreateRelPrivilegeToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreateRelationshipTypeAction$_MODULE$; +oncia_ShowTransactionsClause_yieldWith = $this => { + return $this.$yieldWith1; }, -oncipvaf_Cypher25AstBuilder_exitElementToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_position = $this => { + return $this.$position55; }, -oncipvaf_Cypher25AstBuilder_exitIndexToken = ($this, $ctx) => { - $ctx.$ast0 = oncia_CreateIndexAction$_MODULE$; +oncia_ShowTransactionsClause_name = $this => { + return $rt_s(655); }, -oncipvaf_Cypher25AstBuilder_exitNodeToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_originalColumns = $this => { + return $this.$originalColumns2; }, -oncipvaf_Cypher25AstBuilder_exitPasswordToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_unfilteredColumns = $this => { + return $this.$unfilteredColumns6; }, -oncipvaf_Cypher25AstBuilder_exitPrivilegeToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_moveWhereToProjection = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowTransactionsClause_copy($this, $this.$briefTransactionColumns, $this.$allTransactionColumns, $this.$names2, $x$1, $this.$yieldItems2, $this.$yieldAll6, $this.$yieldWith1, $this.$position55); }, -oncipvaf_Cypher25AstBuilder_exitProcedureToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_moveOutWith = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowTransactionsClause_copy($this, $this.$briefTransactionColumns, $this.$allTransactionColumns, $this.$names2, $this.$where8, $this.$yieldItems2, $this.$yieldAll6, $x$1, $this.$position55); }, -oncipvaf_Cypher25AstBuilder_exitRelToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_copy = ($this, $briefTransactionColumns, $allTransactionColumns, $names, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + return oncia_ShowTransactionsClause__init_($briefTransactionColumns, $allTransactionColumns, $names, $where, $yieldItems, $yieldAll, $yieldWith, $position); }, -oncipvaf_Cypher25AstBuilder_exitRoleToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_productPrefix = $this => { + return $rt_s(6490); }, -oncipvaf_Cypher25AstBuilder_exitTransactionToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_productArity = $this => { + return 7; }, -oncipvaf_Cypher25AstBuilder_exitFunctionToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$briefTransactionColumns; + case 1: + return $this.$allTransactionColumns; + case 2: + return $this.$names2; + case 3: + return $this.$where8; + case 4: + return $this.$yieldItems2; + case 5: + return jl_Boolean_valueOf($this.$yieldAll6); + case 6: + return $this.$yieldWith1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitAscToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitDescToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6490))), sr_Statics_anyHash($this.$briefTransactionColumns)), sr_Statics_anyHash($this.$allTransactionColumns)), sr_Statics_anyHash($this.$names2)), sr_Statics_anyHash($this.$where8)), sr_Statics_anyHash($this.$yieldItems2)), !$this.$yieldAll6 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldWith1)), 7); }, -oncipvaf_Cypher25AstBuilder_exitSettingToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitPrimaryToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowTransactionsClause) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll6 != $x$1.$yieldAll6) + break b; + c: { + var$2 = $this.$briefTransactionColumns; + var$3 = $x$1.$briefTransactionColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$allTransactionColumns; + var$3 = $x$1.$allTransactionColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$names2; + var$3 = $x$1.$names2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$where8; + var$3 = $x$1.$where8; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$yieldItems2; + var$3 = $x$1.$yieldItems2; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$yieldWith1; + $x$1 = $x$1.$yieldWith1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break h; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ShowTransactionsClause)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncipvaf_Cypher25AstBuilder_exitSecondaryToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipvaf_Cypher25AstBuilder_exitSecondsToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause__init_0 = ($this, $briefTransactionColumns, $allTransactionColumns, $names, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + $this.$briefTransactionColumns = $briefTransactionColumns; + $this.$allTransactionColumns = $allTransactionColumns; + $this.$names2 = $names; + $this.$where8 = $where; + $this.$yieldItems2 = $yieldItems; + $this.$yieldAll6 = $yieldAll; + $this.$yieldWith1 = $yieldWith; + $this.$position55 = $position; + oncia_Clause_$init$($this); + $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; + $this.$useAllColumns4 = $yieldAll; + $this.$originalColumns2 = !$yieldAll ? $briefTransactionColumns : $allTransactionColumns; + $names = new oncia_ShowTransactionsClause$_init_$lambda$_143_0; + $names.$_0710 = $this; + $this.$briefColumns = sci_List_map($briefTransactionColumns, $names); + $briefTransactionColumns = new oncia_ShowTransactionsClause$_init_$lambda$_143_1; + $briefTransactionColumns.$_043 = $this; + $briefTransactionColumns = sci_List_map($allTransactionColumns, $briefTransactionColumns); + $this.$allColumns3 = $briefTransactionColumns; + oncia_DefaultOrAllShowColumns$_$callClinit(); + $this.$unfilteredColumns6 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns4, $this.$briefColumns, $briefTransactionColumns); }, -oncipvaf_Cypher25AstBuilder_exitGroupToken = ($this, $ctx) => { - return; +oncia_ShowTransactionsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_ShowTransactionsClause(); + oncia_ShowTransactionsClause__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; }, -oncipvaf_Cypher25AstBuilder_exitPathToken = ($this, $ctx) => { - return; +onu_Stringifier = $rt_classWithoutFields(), +onu_Stringifier_backtick = $txt => { + return onu_Stringifier_backtick0($txt, 0, 0); }, -oncipvaf_Cypher25AstBuilder_exitShowCommand = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; - if ($rt_isInstance(var$2, sci_Seq)) - var$2 = oncia_SingleQuery__init_0(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +onu_Stringifier_backtick0 = ($txt, $alwaysBacktick, $globbing) => { + let var$4, var$5, $isJavaIdentifier; + if ($alwaysBacktick) { + $txt = onu_Stringifier_escaped($txt); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(var$4, 96); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, $txt), 96); + return jl_AbstractStringBuilder_toString(var$4); + } + a: { + var$4 = onih_Strings_codePoints($txt); + var$5 = new jusi_LimitingIntStreamImpl; + var$5.$sourceStream1 = var$4; + var$5.$limit6 = 1; + var$5.$remaining0 = 1; + var$4 = new onu_Stringifier$backtick$lambda$_3_0; + var$4.$_01108 = $globbing; + if (jusi_SimpleIntStreamImpl_allMatch(var$5, var$4)) { + var$4 = onih_Strings_codePoints($txt); + var$5 = new jusi_SkippingIntStreamImpl; + var$5.$sourceStream = var$4; + var$5.$skip6 = 1; + var$5.$remaining1 = 1; + var$4 = new onu_Stringifier$backtick$lambda$_3_1; + var$4.$_0329 = $globbing; + if (jusi_SimpleIntStreamImpl_allMatch(var$5, var$4)) { + $isJavaIdentifier = 1; + break a; + } + } + $isJavaIdentifier = 0; + } + if ($isJavaIdentifier) + return $txt; + $txt = onu_Stringifier_escaped($txt); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(var$4, 96); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, $txt), 96); + return jl_AbstractStringBuilder_toString(var$4); }, -oncipvaf_Cypher25AstBuilder_exitTerminateCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +onu_Stringifier_escaped = $txt => { + return jl_String_replace($txt, $rt_s(1135), $rt_s(1136)); }, -oncipvaf_Cypher25AstBuilder_exitYieldItem = ($this, $ctx) => { +onu_Stringifier_orGlobbedCharacter = ($globbing, $p) => { + a: { + b: { + if ($globbing) { + if ($p == 42) + break b; + if ($p == 63) + break b; + } + $globbing = 0; + break a; + } + $globbing = 1; + } + return $globbing; +}; +function oncia_AlterUser$checkRemoveAuth$lambda$_89_0() { + jl_Object.call(this); + this.$_0494 = null; +} +let oncia_AlterUser$checkRemoveAuth$lambda$_89_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext)); - var$3 = (var$2.$get0(0)).$ast0; - if (var$2.$size() == 1) { - var$4 = new oncia_UnaliasedReturnItem; - oncipau_Util$_$callClinit(); - oncia_UnaliasedReturnItem__init_0(var$4, var$3, oncipau_Util$_inputText(oncipau_Util$_MODULE$, var$2.$get0(0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$4 = new oncia_AliasedReturnItem; - var$2 = (var$2.$get0(1)).$ast0; - oncipau_Util$_$callClinit(); - oncia_AliasedReturnItem__init_0(var$4, var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + a: { + var$1 = var$1; + var$2 = var$0.$_0494; + if (var$1 instanceof oncie_StringLiteral) { + var$3 = var$1; + var$4 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + if (sc_StringOps$_nonEmpty$extension(var$4, var$3.$value8)) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + break a; + } + } + if ($rt_isInstance(var$1, oncie_Parameter)) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + if (var$1 instanceof oncie_ListLiteral) { + var$3 = var$1; + if (var$3.$expressions0.$forall(new oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_111_0) && sc_IterableOnceOps_nonEmpty$(var$3.$expressions0)) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + break a; + } + } + var$1 = oncias_SemanticAnalysisTooling_error$(var$2, $rt_s(6491), var$1.$position()); + } } - $ctx.$ast0 = var$4; + return var$1; }, -oncipvaf_Cypher25AstBuilder_exitYieldSkip = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_Skip; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SignedIntegerLiteralContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_Skip__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0 = $rt_classWithoutFields(), +oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0_apply = (var$0, var$1) => { + let var$2; + var$2 = onciu_Foldable_folder$(var$1); + var$1 = new oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1; + sr_ClassTag$_$callClinit(); + return onciu_Foldable$Folder_treeFind(var$2, var$1, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); }, -oncipvaf_Cypher25AstBuilder_exitYieldLimit = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_Limit; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SignedIntegerLiteralContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_Limit__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_0 = $rt_classWithoutFields(), +oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncil_LabelExpression$Disjunctions); }, -oncipvaf_Cypher25AstBuilder_exitOrderBy = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_OrderBy; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$OrderItemContext)); - sr_ClassTag$_$callClinit(); - oncia_OrderBy__init_0(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SortItem))), oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 187, 0)).$getSymbol())); - $ctx.$ast0 = var$2; +oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_1 = $rt_classWithoutFields(), +oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_1_apply = (var$0, var$1) => { + var$1 = var$1; + return !(var$1 instanceof oncil_LabelExpression$Disjunctions) ? sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$) : var$1.$children3; }, -oncipvaf_Cypher25AstBuilder_exitYieldClause = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - if (oncip_AstRuleCtx_getToken($ctx, 265, 0) !== null) { - var$2 = new oncia_ReturnItems; - s_package$_$callClinit(); - var$3 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - oncia_ReturnItems$_$callClinit(); - var$4 = s_None$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_ReturnItems__init_(var$2, 1, var$3, var$4, oncipau_Util$_pos0(oncipau_Util$_MODULE$, (oncip_AstRuleCtx_getToken($ctx, 299, 0)).$getSymbol())); - } else { - var$2 = new oncia_ReturnItems; - oncipau_Util$_$callClinit(); - var$5 = oncipau_Util$_MODULE$; - var$6 = oncipv_Cypher25Parser$YieldClauseContext_yieldItem($ctx); - sr_ClassTag$_$callClinit(); - var$4 = oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_ReturnItem))); - oncia_ReturnItems$_$callClinit(); - oncia_ReturnItems__init_(var$2, 0, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, (oncipv_Cypher25Parser$YieldClauseContext_yieldItem($ctx)).$get0(0))); +oavra_SemanticContext$Operator = $rt_classWithoutFields(oavra_SemanticContext); +function oavra_SemanticContext$OR() { + oavra_SemanticContext$Operator.call(this); + this.$opnds0 = null; +} +let oavra_SemanticContext$OR_equals = ($this, $obj) => { + let $other; + if ($this === $obj) + return 1; + if (!($obj instanceof oavra_SemanticContext$OR)) + return 0; + $other = $obj; + return ju_Arrays_equals0($this.$opnds0, $other.$opnds0); +}, +oavra_SemanticContext$OR_hashCode = $this => { + return oavrm_MurmurHash_hashCode($this.$opnds0, jl_Object_identity($rt_cls(oavra_SemanticContext$OR))); +}, +oavra_SemanticContext$OR_eval = ($this, $parser, $parserCallStack) => { + let var$3, var$4, var$5; + var$3 = $this.$opnds0.data; + var$4 = var$3.length; + var$5 = 0; + while (var$5 < var$4) { + if (var$3[var$5].$eval($parser, $parserCallStack)) + return 1; + var$5 = var$5 + 1 | 0; } - var$4 = new oncia_Yield; - oncipau_Util$_$callClinit(); - oncia_Yield__init_(var$4, var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$OrderByContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$YieldSkipContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$YieldLimitContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, - $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$4; + return 0; }, -oncipvaf_Cypher25AstBuilder_exitShowCommandYield = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$YieldClauseContext), 0); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WhereClauseContext), 0); - if (var$2 === null) { - s_package$_$callClinit(); - var$4 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), var$3.$ast0); - } else { - s_package$_$callClinit(); - var$3 = s_package$_Left(s_package$_MODULE$); - var$5 = new s_Tuple2; - var$6 = var$2.$ast0; - oncipau_Util$_$callClinit(); - s_Tuple2__init_0(var$5, var$6, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ReturnClauseContext), 0))); - var$4 = su_Left$_apply(var$3, var$5); +oavra_SemanticContext$OR_evalPrecedence = ($this, $parser, $parserCallStack) => { + let $differs, $operands, var$5, var$6, var$7, $result, $i, $context, $evaluated; + $differs = 0; + $operands = ju_ArrayList__init_(); + var$5 = $this.$opnds0.data; + var$6 = var$5.length; + var$7 = 0; + while (true) { + if (var$7 >= var$6) { + if (!$differs) + return $this; + if (ju_AbstractCollection_isEmpty($operands)) + return null; + $result = ju_ArrayList_get($operands, 0); + $i = 1; + while ($i < $operands.$size0) { + $result = oavra_SemanticContext_or($result, ju_ArrayList_get($operands, $i)); + $i = $i + 1 | 0; + } + return $result; + } + $context = var$5[var$7]; + $evaluated = $context.$evalPrecedence($parser, $parserCallStack); + $differs = $differs | ($evaluated === $context ? 0 : 1); + $result = oavra_SemanticContext$Empty_Instance; + if ($evaluated === $result) + break; + if ($evaluated !== null) + ju_ArrayList_add($operands, $evaluated); + var$7 = var$7 + 1 | 0; } - $ctx.$ast0 = var$4; + return $result; }, -oncipvaf_Cypher25AstBuilder_exitComposableCommandClauses = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oavra_SemanticContext$OR_toString = $this => { + return oavrm_Utils_join0(ju_AbstractList_iterator(ju_Arrays_asList($this.$opnds0)), $rt_s(6492)); }, -oncipvaf_Cypher25AstBuilder_exitComposableShowCommandClauses = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncipvaf_DdlShowBuilder$ConstraintEntity0 = $rt_classWithoutFields(0), +oncipvaf_DdlShowBuilder$Rel$ = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$Rel$_productArity0 = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitShowIndexCommand = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - var$3 = s_Option_getOrElse(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowIndexTypeContext), 0)), new oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0); - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowIndexesEndContext), 0)).$ast0; - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$4, oncia_ShowIndexesClause$_apply(oncia_ShowIndexesClause$_MODULE$, var$3, var$4.$where1, var$4.$yieldedItems0, var$4.$yieldAll1, var$2)); +oncipvaf_DdlShowBuilder$Rel$_productElement0 = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitShowIndexType = ($this, $ctx) => { - let var$2; - a: { - oncipau_Util$_$callClinit(); - switch (((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0()) { - case 18: - break; - case 111: - var$2 = oncia_FulltextIndexes$_MODULE$; - break a; - case 150: - var$2 = oncia_LookupIndexes$_MODULE$; - break a; - case 195: - var$2 = oncia_PointIndexes$_MODULE$; - break a; - case 209: - var$2 = oncia_RangeIndexes$_MODULE$; - break a; - case 262: - var$2 = oncia_TextIndexes$_MODULE$; - break a; - case 290: - var$2 = oncia_VectorIndexes$_MODULE$; - break a; - default: - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6909)); - $rt_throw($ctx); - } - var$2 = oncia_AllIndexes$_MODULE$; - } - $ctx.$ast0 = var$2; +oncipvaf_DdlShowBuilder$Rel$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitShowIndexesEnd = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$2.$names2); +oncipvaf_DdlShowBuilder$Rel$_hashCode = $this => { + return 82041; }, -oncipvaf_Cypher25AstBuilder_exitShowConstraintCommand = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - if ($ctx instanceof oncipv_Cypher25Parser$ShowConstraintAllContext) { - var$3 = $ctx; - var$4 = oncia_AllConstraints$_MODULE$; - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$4, var$2); - } else if ($ctx instanceof oncipv_Cypher25Parser$ShowConstraintExistContext) { - var$5 = $ctx; - var$6 = oavr_ParserRuleContext_getRuleContext(var$5, $rt_cls(oncipv_Cypher25Parser$ShowConstraintEntityContext), 0); - oncia_NodeExistsConstraintsCypher25$_$callClinit(); - var$3 = oncia_NodeExistsConstraintsCypher25$_MODULE$; - oncia_RelExistsConstraintsCypher25$_$callClinit(); - var$4 = oncia_RelExistsConstraintsCypher25$_MODULE$; - oncia_ExistsConstraintsCypher25$_$callClinit(); - var$4 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, var$6, var$3, var$4, oncia_ExistsConstraintsCypher25$_MODULE$); - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$5, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$4, var$2); - } else if ($ctx instanceof oncipv_Cypher25Parser$ShowConstraintKeyContext) { - var$3 = $ctx; - var$4 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$ShowConstraintEntityContext), 0), oncia_NodeKeyConstraints$_MODULE$, oncia_RelKeyConstraints$_MODULE$, oncia_KeyConstraints$_MODULE$); - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$4, var$2); - } else if ($ctx instanceof oncipv_Cypher25Parser$ShowConstraintPropTypeContext) { - var$4 = $ctx; - var$7 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$ShowConstraintEntityContext), 0), oncia_NodePropTypeConstraints$_MODULE$, oncia_RelPropTypeConstraints$_MODULE$, oncia_PropTypeConstraints$_MODULE$); - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$7, var$2); - } else { - if (!($ctx instanceof oncipv_Cypher25Parser$ShowConstraintUniqueContext)) { - var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(6895)); - $rt_throw(var$2); - } - var$7 = $ctx; - var$4 = oncipvaf_DdlShowBuilder_pickShowConstraintType($this, oavr_ParserRuleContext_getRuleContext(var$7, $rt_cls(oncipv_Cypher25Parser$ShowConstraintEntityContext), 0), oncia_NodeUniqueConstraintsCypher25$_MODULE$, oncia_RelUniqueConstraintsCypher25$_MODULE$, oncia_UniqueConstraintsCypher25$_MODULE$); - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses((oavr_ParserRuleContext_getRuleContext(var$7, $rt_cls(oncipv_Cypher25Parser$ShowConstraintsEndContext), 0)).$ast0, var$4, var$2); - } - $ctx.$ast0 = var$2; +oncipvaf_DdlShowBuilder$Rel$_toString = $this => { + return $rt_s(6493); }, -oncipvaf_Cypher25AstBuilder_exitConstraintExistType = ($this, $ctx) => { +oncipvaf_DdlShowBuilder$Rel$__init_0 = ($this, $$outer) => { return; }, -oncipvaf_Cypher25AstBuilder_exitShowConstraintEntity = ($this, $ctx) => { - $ctx.$ast0 = $ctx instanceof oncipv_Cypher25Parser$NodeEntityContext ? oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Node($this) : !($ctx instanceof oncipv_Cypher25Parser$RelEntityContext) ? oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$NoEntity($this) : oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Rel($this); -}, -oncipvaf_Cypher25AstBuilder_exitShowConstraintsEnd = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$2.$names2); +oncipvaf_DdlShowBuilder$Rel$__init_1 = var_0 => { + let var_1 = new oncipvaf_DdlShowBuilder$Rel$(); + oncipvaf_DdlShowBuilder$Rel$__init_0(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitShowProcedures = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$2.$names2); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExecutableByContext), 0)); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_ShowProceduresClause$_apply(oncia_ShowProceduresClause$_MODULE$, var$3, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$4)); +oncipvaf_DdlShowBuilder$Node$0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$Node$_productArity0 = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitShowFunctions = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); - var$2 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$2.$names2); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowFunctionsTypeContext), 0), new oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0); - var$4 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExecutableByContext), 0)); - var$5 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_ShowFunctionsClause$_apply(oncia_ShowFunctionsClause$_MODULE$, var$3, var$4, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$5)); +oncipvaf_DdlShowBuilder$Node$_productElement0 = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitShowFunctionsType = ($this, $ctx) => { - $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 36, 0) !== null ? oncia_BuiltInFunctions$_MODULE$ : oncip_AstRuleCtx_getToken($ctx, 285, 0) === null ? oncia_AllFunctions$_MODULE$ : oncia_UserDefinedFunctions$_MODULE$; -}; -let oncipvaf_Cypher25AstBuilder_exitExecutableBy = ($this, $ctx) => { - $ctx.$ast0 = oncipv_Cypher25Parser$ExecutableByContext_symbolicNameString($ctx) === null ? oncia_CurrentUser$_MODULE$ : oncia_User__init_((oncipv_Cypher25Parser$ExecutableByContext_symbolicNameString($ctx)).$ast0); +oncipvaf_DdlShowBuilder$Node$_productIterator0 = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitShowTransactions = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamesAndClausesContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_ShowTransactionsClause$_apply(oncia_ShowTransactionsClause$_MODULE$, var$2.$names2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, 0, var$3)); +oncipvaf_DdlShowBuilder$Node$_hashCode = $this => { + return 2433570; }, -oncipvaf_Cypher25AstBuilder_exitTerminateTransactions = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamesAndClausesContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_TerminateTransactionsClause$_apply(oncia_TerminateTransactionsClause$_MODULE$, var$2.$names2, var$2.$yieldedItems0, var$2.$yieldAll1, s_Option_map(var$2.$where1, new oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_00), var$3)); +oncipvaf_DdlShowBuilder$Node$_toString0 = $this => { + return $rt_s(726); }, -oncipvaf_Cypher25AstBuilder_exitShowSettings = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$NamesAndClausesContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses(var$2, oncia_ShowSettingsClause$_apply(oncia_ShowSettingsClause$_MODULE$, var$2.$names2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$3)); +oncipvaf_DdlShowBuilder$Node$__init_1 = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitNamesAndClauses = ($this, $ctx) => { - let var$2, var$3, var$4; - oncipau_Util$_$callClinit(); - var$2 = oncipvaf_DdlShowBuilder_decomposeYield0($this, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0))); - var$3 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ComposableCommandClausesContext), 0)); - var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringsOrExpressionContext), 0), new oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0); - $ctx.$ast0 = oncipvaf_DdlShowBuilder$ShowWrapper_copy0(var$2, var$2.$where1, var$2.$yieldedItems0, var$2.$yieldAll1, var$2.$yieldClause2, var$2.$returnClause3, var$3, var$4); +oncipvaf_DdlShowBuilder$Node$__init_2 = var_0 => { + let var_1 = new oncipvaf_DdlShowBuilder$Node$0(); + oncipvaf_DdlShowBuilder$Node$__init_1(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitStringsOrExpression = ($this, $ctx) => { - let var$2, var$3; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringListContext), 0); - if (var$2 === null) { - s_package$_$callClinit(); - var$3 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0); - } else { - s_package$_$callClinit(); - var$3 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (var$2.$ast0.$map(new oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0)).$toList()); - } - $ctx.$ast0 = var$3; +oncipvaf_DdlShowBuilder$NoEntity$0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$NoEntity$_productArity0 = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitStringList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_StringLiteral))); +oncipvaf_DdlShowBuilder$NoEntity$_productElement0 = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitShowServers = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowServers$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowServers$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlShowBuilder$NoEntity$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitShowRoles = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncia_ShowRoles$_MODULE$; - var$3 = oncip_AstRuleCtx_getToken($ctx, 295, 0) === null ? 0 : 1; - var$4 = oncip_AstRuleCtx_getToken($ctx, 196, 0) !== null ? 0 : 1; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowRoles$_apply(var$2, var$3, var$4, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlShowBuilder$NoEntity$_hashCode0 = $this => { + return 309472548; }, -oncipvaf_Cypher25AstBuilder_exitShowUsers = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowUsers$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowUsers$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncip_AstRuleCtx_getToken($ctx, 28, 0) === null ? 0 : 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlShowBuilder$NoEntity$_toString0 = $this => { + return $rt_s(6494); }, -oncipvaf_Cypher25AstBuilder_exitShowCurrentUser = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowCurrentUser$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowCurrentUser$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlShowBuilder$NoEntity$__init_2 = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitShowSupportedPrivileges = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowSupportedPrivilegeCommand$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowSupportedPrivilegeCommand$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlShowBuilder$NoEntity$__init_0 = var_0 => { + let var_1 = new oncipvaf_DdlShowBuilder$NoEntity$0(); + oncipvaf_DdlShowBuilder$NoEntity$__init_2(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitShowPrivileges = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0); - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); - var$3 = var$2.$_1$mcZ$sp0; - var$4 = var$2.$_2$mcZ$sp0; - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)); - $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, oncia_ShowAllPrivileges__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, oncia_ShowAllPrivileges__init_(oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)), var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productArity = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitShowRolePrivileges = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0); - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); - var$3 = var$2.$_1$mcZ$sp0; - var$4 = var$2.$_2$mcZ$sp0; - var$2 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)); - var$5 = oncia_ShowRolesPrivileges__init_((oncipv_Cypher25Parser$RoleNamesContext_symbolicNameOrStringParameterList(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RoleNamesContext), 0))).$ast0.$toList(), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, var$5, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, var$5, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productElement0 = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitShowUserPrivileges = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PrivilegeAsCommandContext), 0), new oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0); - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = s_Tuple2$mcZZ$sp__init_(var$2.$_1$mcZ$sp(), var$2.$_2$mcZ$sp()); - var$3 = var$2.$_1$mcZ$sp0; - var$4 = var$2.$_2$mcZ$sp0; - var$5 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UserNamesContext), 0); - var$2 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)); - var$6 = var$5 === null ? oncia_ShowUserPrivileges__init_(s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowUsersPrivileges__init_(var$5.$ast0.$toList(), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = !var$3 ? oncia_ShowPrivileges$_apply(oncia_ShowPrivileges$_MODULE$, var$6, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)) : oncia_ShowPrivilegeCommands$_apply(oncia_ShowPrivilegeCommands$_MODULE$, var$6, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productIterator0 = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitPrivilegeAsCommand = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2$mcZZ$sp__init_(oncip_AstRuleCtx_getToken($ctx, 23, 0) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 228, 0) === null ? 0 : 1); +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_hashCode = $this => { + return 1035551396; }, -oncipvaf_Cypher25AstBuilder_exitShowDatabase = ($this, $ctx) => { - let var$2, var$3; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0); - if (var$2 !== null) { - var$3 = new oncia_SingleNamedDatabaseScope; - var$2 = var$2.$ast0; - oncipau_Util$_$callClinit(); - oncia_SingleNamedDatabaseScope__init_(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (oncip_AstRuleCtx_getToken($ctx, 122, 0) !== null) { - var$3 = new oncia_HomeDatabaseScope; - oncipau_Util$_$callClinit(); - oncia_HomeDatabaseScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else if (oncip_AstRuleCtx_getToken($ctx, 67, 0) === null) { - var$3 = new oncia_AllDatabasesScope; - oncipau_Util$_$callClinit(); - oncia_AllDatabasesScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$3 = new oncia_DefaultDatabaseScope; - oncipau_Util$_$callClinit(); - oncia_DefaultDatabaseScope__init_(var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - var$2 = oncia_ShowDatabase$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowDatabase$_apply(var$2, var$3, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_toString0 = $this => { + return $rt_s(6495); }, -oncipvaf_Cypher25AstBuilder_exitShowAliases = ($this, $ctx) => { - let var$2; - var$2 = oncia_ShowAliases$_MODULE$; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncia_ShowAliases$_apply(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AliasNameContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ShowCommandYieldContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_ = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitCreateCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_1 = var_0 => { + let var_1 = new oncipvaf_DdlPrivilegeBuilder$RelGraphToken$0(); + oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitCreateConstraint = ($this, $ctx) => { - oncipvaf_DdlCreateBuilder_exitCreateConstraint($this, $ctx); +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productArity = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitConstraintType = ($this, $ctx) => { - let var$2, var$3, var$4; - if ($ctx instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) - var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); - else if ($ctx instanceof oncipv_Cypher25Parser$ConstraintTypedContext) { - var$3 = $ctx; - var$4 = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0; - var$3 = (oavr_ParserRuleContext_getRuleContext(var$3, $rt_cls(oncipv_Cypher25Parser$TypeContext), 0)).$ast0; - var$2 = s_Tuple2__init_(var$4, s_Some__init_(var$3)); - } else if ($ctx instanceof oncipv_Cypher25Parser$ConstraintIsUniqueContext) - var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); - else { - if (!($ctx instanceof oncipv_Cypher25Parser$ConstraintKeyContext)) { - var$3 = new jl_IllegalStateException; - jl_Throwable__init_0(var$3, $rt_s(6893)); - $rt_throw(var$3); - } - var$2 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyListContext), 0)).$ast0, s_None$_MODULE$); - } - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitCreateIndex = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0; +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productIterator0 = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitCreateIndex_ = ($this, $ctx) => { - oncipvaf_DdlCreateBuilder_exitCreateIndex_($this, $ctx); +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_hashCode0 = $this => { + return (-97393395); }, -oncipvaf_Cypher25AstBuilder_exitCreateFulltextIndex = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = $ctx.$parent.$parent; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1); - var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)); - var$6 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$FulltextNodePatternContext), 0); - var$7 = var$6 === null ? 0 : 1; - var$8 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$EnclosedPropertyListContext), 0)).$ast0.$toList(); - if (var$7) { - var$9 = var$6.$ast0; - if (var$9 === null) - $rt_throw(s_MatchError__init_(var$9)); - var$10 = s_Tuple2__init_(var$9.$_1(), var$9.$_2()); - var$9 = var$10.$_10; - var$6 = var$10.$_20; - var$9 = oncia_CreateIndex$_createFulltextNodeIndex(oncia_CreateIndex$_MODULE$, var$9, var$6, var$8, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } else { - var$9 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$FulltextRelPatternContext), 0)).$ast0; - if (var$9 === null) - $rt_throw(s_MatchError__init_(var$9)); - var$10 = s_Tuple2__init_(var$9.$_1(), var$9.$_2()); - var$6 = var$10.$_10; - var$10 = var$10.$_20; - var$9 = oncia_CreateIndex$_createFulltextRelationshipIndex(oncia_CreateIndex$_MODULE$, var$6, var$10, var$8, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } - $ctx.$ast0 = var$9; +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_toString = $this => { + return $rt_s(6496); }, -oncipvaf_Cypher25AstBuilder_exitFulltextNodePattern = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = new s_Tuple2; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); - var$6 = new oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0; - sr_ClassTag$_$callClinit(); - s_Tuple2__init_0(var$2, var$3, sc_IterableOnceOps_toList$(oncipau_Util$_astSeqPositioned(var$4, var$5, var$6, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))))); - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_2 = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitFulltextRelPattern = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = new s_Tuple2; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_MODULE$; - var$5 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext)); - var$6 = new oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0; - sr_ClassTag$_$callClinit(); - s_Tuple2__init_0(var$2, var$3, sc_IterableOnceOps_toList$(oncipau_Util$_astSeqPositioned(var$4, var$5, var$6, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_RelTypeName))))); - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_0 = var_0 => { + let var_1 = new oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$0(); + oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_2(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitLookupIndexNodePattern = ($this, $ctx) => { - $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$0 = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productArity0 = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitLookupIndexRelPattern = ($this, $ctx) => { - $ctx.$ast0 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitCreateLookupIndex = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; - var$2 = $ctx.$parent.$parent; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1); - var$4 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0); - var$5 = oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0)); - var$6 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LookupIndexNodePatternContext), 0); - var$7 = var$6 === null ? 0 : 1; - var$8 = oncipv_Cypher25Parser$CreateLookupIndexContext_symbolicNameString($ctx); - var$9 = oncipau_Util$_pos(oncipau_Util$_MODULE$, var$8); - var$10 = new oncie_FunctionInvocation; - oncie_FunctionName$_$callClinit(); - var$11 = oncie_FunctionName$_apply(oncie_FunctionName$_MODULE$, var$8.$ast0, var$9); - s_package$_$callClinit(); - var$12 = s_package$_IndexedSeq(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$13 = $rt_createArray(oncie_Variable, 1); - var$13.data[0] = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; - var$8 = sc_SeqFactory$Delegate_apply(var$12, sr_ScalaRunTime$_wrapRefArray(var$8, var$13)); - oncie_FunctionInvocation$_$callClinit(); - oncie_FunctionInvocation__init_(var$10, var$11, 0, var$8, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, var$9); - var$8 = var$7 ? var$6.$ast0 : (oncipv_Cypher25Parser$CreateLookupIndexContext_lookupIndexRelPattern($ctx)).$ast0; - $ctx.$ast0 = oncia_CreateIndex$_createLookupIndex(oncia_CreateIndex$_MODULE$, var$8, var$7, var$10, var$5, var$3, var$4, s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productIterator0 = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}; +let oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_hashCode0 = $this => { + return 1680431431; }, -oncipvaf_Cypher25AstBuilder_exitCreateRole = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = $ctx.$parent; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext)); - if (var$3.$size() <= 1) - var$4 = s_None$_MODULE$; - else { - onciu_AssertionRunner_$callClinit(); - if (onciu_AssertionRunner_ASSERTIONS_ENABLED && var$3.$size() != 2) - $rt_throw(jl_AssertionError__init_($rt_s(35))); - var$4 = s_Some__init_((var$3.$get0(1)).$ast0); - } - var$5 = new oncia_CreateRole; - var$3 = (var$3.$get0(0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_CreateRole__init_(var$5, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - $ctx.$ast0 = var$5; +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_toString = $this => { + return $rt_s(6497); }, -oncipvaf_Cypher25AstBuilder_exitCreateUser = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = $ctx.$parent; - var$3 = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0); - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - var$3 = sci_List_foldLeft(var$3, sci_Nil$_MODULE$, new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1); - var$3 = sci_List_foldLeft(sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordChangeRequiredContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2), var$3, new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3); - var$4 = new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4; - onciu_InputPosition$_$callClinit(); - var$5 = var$3.$sortBy(var$4, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); - if (!sc_IterableOnceOps_nonEmpty$(var$5)) - var$4 = s_None$_MODULE$; - else { - var$4 = new s_Some; - var$6 = new oncia_Auth; - oncia_AdministrationCommand$_$callClinit(); - oncia_Auth__init_(var$6, oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$), var$5, (var$5.$head()).$position()); - s_Some__init_0(var$4, var$6); - } - var$5 = sci_List_map(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SetAuthClauseContext))))), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateUserContext_userStatus($ctx), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6); - var$6 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateUserContext_homeDatabase($ctx), new oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7); - $ctx.$ast0 = oncia_CreateUser__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0, oncia_UserOptions__init_(var$3, var$6), oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1), var$5, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_0 = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitCreateCompositeDatabase = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = $ctx.$parent; - var$3 = new oncia_CreateCompositeDatabase; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_CreateCompositeDatabase__init_(var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, - $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - $ctx.$ast0 = var$3; +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_2 = var_0 => { + let var_1 = new oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$0(); + oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_0(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitCreateDatabase = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = $ctx.$parent; - if (oncip_AstRuleCtx_getToken($ctx, 269, 0) === null) - var$3 = s_None$_MODULE$; - else { - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateDatabaseContext_primaryTopology($ctx), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0); - var$5 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateDatabaseContext_secondaryTopology($ctx), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1); - var$3 = s_Some__init_(oncia_Topology__init_(var$4, var$5)); - } - var$6 = new oncia_CreateDatabase; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_CreateDatabase__init_(var$6, var$7, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2), oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, - $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3), var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - $ctx.$ast0 = var$6; +oncipvaf_DdlShowBuilder$Node$ = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$Node$_productArity = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitCreateAlias = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = $ctx.$parent; - var$3 = (oncipv_Cypher25Parser$CreateAliasContext_aliasName($ctx)).$ast0; - var$4 = (oncipv_Cypher25Parser$CreateAliasContext_databaseName($ctx)).$ast0; - var$5 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; - var$6 = oncip_AstRuleCtx_getToken($ctx, 204, 0) === null ? s_None$_MODULE$ : oncipv_Cypher25Parser$CreateAliasContext_DRIVER($ctx) === null ? s_Some__init_((oncipv_Cypher25Parser$CreateAliasContext_mapOrParameter($ctx, 0)).$ast0) : s_Some__init_((oncipv_Cypher25Parser$CreateAliasContext_mapOrParameter($ctx, 1)).$ast0); - if (oncipv_Cypher25Parser$CreateAliasContext_AT($ctx) === null) { - var$7 = new oncia_CreateLocalDatabaseAlias; - oncipau_Util$_$callClinit(); - oncia_CreateLocalDatabaseAlias__init_(var$7, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, var$5), var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } else { - var$8 = oncipv_Cypher25Parser$CreateAliasContext_DRIVER($ctx) === null ? s_None$_MODULE$ : s_Some__init_((oncipv_Cypher25Parser$CreateAliasContext_mapOrParameter($ctx, 0)).$ast0); - var$7 = new oncia_CreateRemoteDatabaseAlias; - oncipau_Util$_$callClinit(); - oncia_CreateRemoteDatabaseAlias__init_(var$7, var$3, var$4, oncipau_Util$_ifExistsDo(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$CreateCommandContext_REPLACE(var$2) === null ? 0 : 1, var$5), (oncipv_Cypher25Parser$CreateAliasContext_stringOrParameter($ctx)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordExpressionContext), 0)).$ast0, var$8, var$6, - oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } - $ctx.$ast0 = var$7; +oncipvaf_DdlShowBuilder$Node$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitCommandOptions = ($this, $ctx) => { - let var$2, var$3; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MapOrParameterContext), 0)).$ast0; - if (var$2 instanceof su_Left) - var$3 = oncia_OptionsMap__init_(var$2.$value6); - else { - if (!(var$2 instanceof su_Right)) - $rt_throw(s_MatchError__init_(var$2)); - var$3 = oncia_OptionsParam__init_(var$2.$value7); - } - $ctx.$ast0 = var$3; +oncipvaf_DdlShowBuilder$Node$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitMapOrParameter = ($this, $ctx) => { - let var$2, var$3; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MapContext), 0); - if (var$2 === null) { - s_package$_$callClinit(); - var$3 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0); - } else { - s_package$_$callClinit(); - var$3 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), sc_AbstractIterable_toMap(var$2.$ast0.$items1.$map(new oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_00), s_$less$colon$less$_singleton)); - } - $ctx.$ast0 = var$3; +oncipvaf_DdlShowBuilder$Node$_hashCode0 = $this => { + return 2433570; }, -oncipvaf_Cypher25AstBuilder_exitCommand = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$UseClauseContext), 0); - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx); - if (!(var$3 instanceof oncipv_Cypher25Parser$ShowCommandContext)) { - if (!(var$3 instanceof oncipv_Cypher25Parser$TerminateCommandContext)) - var$4 = var$3.$ast0.$withGraph0(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$2)); - else { - var$3 = var$3; - if (var$2 === null) - var$4 = oncia_SingleQuery__init_0(var$3.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - else { - var$4 = new oncia_SingleQuery; - var$2 = var$2.$ast0; - oncia_SingleQuery__init_(var$4, var$3.$ast0.$$plus$colon(var$2), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - } - } else { - var$4 = var$3.$ast0; - if (var$4 instanceof oncia_SingleQuery) { - var$3 = var$4; - if (var$2 !== null) { - var$4 = new oncia_SingleQuery; - var$2 = var$2.$ast0; - oncia_SingleQuery__init_(var$4, var$3.$clauses0.$prepended(var$2), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - } - } - if ($rt_isInstance(var$4, oncia_StatementWithGraph)) { - var$3 = var$4; - if (var$2 !== null) - var$4 = var$3.$withGraph0(s_Some__init_(var$2.$ast0)); - } - } - } - $ctx.$ast0 = var$4; +oncipvaf_DdlShowBuilder$Node$_toString = $this => { + return $rt_s(726); }, -oncipvaf_Cypher25AstBuilder_exitDropCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncipvaf_DdlShowBuilder$Node$__init_0 = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitCommandNodePattern = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelTypeContext), 0)).$ast0); +oncipvaf_DdlShowBuilder$Node$__init_ = var_0 => { + let var_1 = new oncipvaf_DdlShowBuilder$Node$(); + oncipvaf_DdlShowBuilder$Node$__init_0(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitCommandRelPattern = ($this, $ctx) => { - $ctx.$ast0 = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RelTypeContext), 0)).$ast0); +oncipvaf_DdlShowBuilder$Rel$0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$Rel$_productArity = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitDropConstraint = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent); - var$3 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0); - $ctx.$ast0 = oncia_DropConstraintOnName__init_(var$3.$ast0, oncipv_Cypher25Parser$DropConstraintContext_EXISTS($ctx) === null ? 0 : 1, s_None$_MODULE$, var$2); +oncipvaf_DdlShowBuilder$Rel$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitDropIndex = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext), 0); - var$3 = new oncia_DropIndexOnName; - var$4 = var$2.$ast0; - var$5 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; - var$6 = s_None$_MODULE$; - oncipau_Util$_$callClinit(); - oncia_DropIndexOnName__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$3; +oncipvaf_DdlShowBuilder$Rel$_productIterator0 = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitPropertyList = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$EnclosedPropertyListContext), 0); - if (var$2 !== null) - var$2 = var$2.$ast0; - else { - var$3 = sci_ArraySeq$_MODULE$; - var$2 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncie_Property, 1); - var$5 = var$4.data; - var$6 = new oncie_Property; - var$7 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)).$ast0; - var$8 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncie_Property__init_0(var$6, var$7, var$8, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - var$5[0] = var$6; - var$2 = sr_ScalaRunTime$_wrapRefArray(var$2, var$4); - sr_ClassTag$_$callClinit(); - var$2 = sci_ArraySeq$_from(var$3, var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property))); - } - $ctx.$ast0 = var$2; +oncipvaf_DdlShowBuilder$Rel$_hashCode0 = $this => { + return 82041; }, -oncipvaf_Cypher25AstBuilder_exitEnclosedPropertyList = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = sci_ArraySeq_map(oncipau_Util$_astPairs(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext)), oncipv_Cypher25Parser$EnclosedPropertyListContext_property($ctx)), new oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_00); +oncipvaf_DdlShowBuilder$Rel$_toString0 = $this => { + return $rt_s(6493); }, -oncipvaf_Cypher25AstBuilder_exitAlterCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncipvaf_DdlShowBuilder$Rel$__init_2 = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitRenameCommand = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncipvaf_DdlShowBuilder$Rel$__init_ = var_0 => { + let var_1 = new oncipvaf_DdlShowBuilder$Rel$0(); + oncipvaf_DdlShowBuilder$Rel$__init_2(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitEnableServerCommand = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_EnableServer; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_EnableServer__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0), new oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncipvaf_DdlShowBuilder$NoEntity$ = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$NoEntity$_productArity = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitAlterServer = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_AlterServer; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0)).$ast0; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandOptionsContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_AlterServer__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncipvaf_DdlShowBuilder$NoEntity$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitRenameServer = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext)); - var$3 = new oncia_RenameServer; - var$4 = (var$2.$get0(0)).$ast0; - var$2 = (var$2.$get0(1)).$ast0; - oncipau_Util$_$callClinit(); - oncia_RenameServer__init_(var$3, var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$3; +oncipvaf_DdlShowBuilder$NoEntity$_productIterator0 = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitDropServer = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_DropServer; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_DropServer__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; -}; -let oncipvaf_Cypher25AstBuilder_exitAllocationCommand = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncip_AstRuleCtx_getToken($ctx, 84, 0) === null ? 0 : 1; - if (oncipv_Cypher25Parser$AllocationCommandContext_reallocateDatabases($ctx) !== null) { - var$3 = new oncia_ReallocateDatabases; - oncipau_Util$_$callClinit(); - oncia_ReallocateDatabases__init_(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AllocationCommandContext_reallocateDatabases($ctx))); - } else { - var$3 = new oncia_DeallocateServers; - var$4 = (oncipv_Cypher25Parser$AllocationCommandContext_deallocateDatabaseFromServers($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncia_DeallocateServers__init_(var$3, var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AllocationCommandContext_deallocateDatabaseFromServers($ctx))); - } - $ctx.$ast0 = var$3; +oncipvaf_DdlShowBuilder$NoEntity$_hashCode = $this => { + return 309472548; }, -oncipvaf_Cypher25AstBuilder_exitDeallocateDatabaseFromServers = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(su_Either))); +oncipvaf_DdlShowBuilder$NoEntity$_toString = $this => { + return $rt_s(6494); }, -oncipvaf_Cypher25AstBuilder_exitReallocateDatabases = ($this, $ctx) => { +oncipvaf_DdlShowBuilder$NoEntity$__init_1 = ($this, $$outer) => { return; }, -oncipvaf_Cypher25AstBuilder_exitDropRole = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_DropRole; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_DropRole__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncipvaf_DdlShowBuilder$NoEntity$__init_ = var_0 => { + let var_1 = new oncipvaf_DdlShowBuilder$NoEntity$(); + oncipvaf_DdlShowBuilder$NoEntity$__init_1(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitRenameRole = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext)); - var$3 = new oncia_RenameRole; - var$4 = (var$2.$get0(0)).$ast0; - var$5 = (var$2.$get0(1)).$ast0; - var$6 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_RenameRole__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$3; +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$ = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productArity0 = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitDropUser = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_DropUser; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_DropUser__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitRenameUser = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext)); - var$3 = new oncia_RenameUser; - var$4 = (var$2.$get0(0)).$ast0; - var$5 = (var$2.$get0(1)).$ast0; - var$6 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_RenameUser__init_(var$3, var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$3; +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitAlterCurrentUser = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_SetOwnPassword; - var$3 = (oncipv_Cypher25Parser$AlterCurrentUserContext_passwordExpression($ctx, 1)).$ast0; - var$4 = (oncipv_Cypher25Parser$AlterCurrentUserContext_passwordExpression($ctx, 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_SetOwnPassword__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_hashCode0 = $this => { + return 1035551396; }, -oncipvaf_Cypher25AstBuilder_exitAlterUser = ($this, $ctx) => { - oncipvaf_DdlBuilder_exitAlterUser($this, $ctx); +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_toString = $this => { + return $rt_s(6495); }, -oncipvaf_Cypher25AstBuilder_exitRemoveNamedProvider = ($this, $ctx) => { - $ctx.$ast0 = oncipv_Cypher25Parser$RemoveNamedProviderContext_stringLiteral($ctx) !== null ? (oncipv_Cypher25Parser$RemoveNamedProviderContext_stringLiteral($ctx)).$ast0 : oncipv_Cypher25Parser$RemoveNamedProviderContext_stringListLiteral($ctx) !== null ? (oncipv_Cypher25Parser$RemoveNamedProviderContext_stringListLiteral($ctx)).$ast0 : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_2 = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitSetAuthClause = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$UserAuthAttributeContext)); - sr_ClassTag$_$callClinit(); - var$3 = sc_IterableOnceOps_toList$(oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_AuthAttribute)))); - $ctx.$ast0 = oncia_Auth__init_0(var$2.$value8, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_0 = var_0 => { + let var_1 = new oncipvaf_DdlPrivilegeBuilder$RelGraphToken$(); + oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_2(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitUserAuthAttribute = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncipv_Cypher25Parser$UserAuthAttributeContext_ID($ctx) !== null) { - var$2 = new oncia_AuthId; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringOrParameterExpressionContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_AuthId__init_(var$2, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$UserAuthAttributeContext_ID($ctx))); - } else if (oncipv_Cypher25Parser$UserAuthAttributeContext_passwordOnly($ctx) !== null) - var$2 = (oncipv_Cypher25Parser$UserAuthAttributeContext_passwordOnly($ctx)).$ast0; - else { - var$2 = new oncia_PasswordChange; - var$4 = sr_BoxesRunTime_unboxToBoolean((oncipv_Cypher25Parser$UserAuthAttributeContext_passwordChangeRequired($ctx)).$ast0); - oncipau_Util$_$callClinit(); - oncia_PasswordChange__init_(var$2, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$UserAuthAttributeContext_passwordChangeRequired($ctx))); - } - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$ = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productArity0 = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitPasswordOnly = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_Password; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 93, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_Password__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productElement0 = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitPassword = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_Password; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PasswordExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 93, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_Password__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = s_Tuple2__init_(var$2, oncipv_Cypher25Parser$PasswordContext_passwordChangeRequired($ctx) === null ? s_None$_MODULE$ : s_Some__init_(oncia_PasswordChange__init_0(sr_BoxesRunTime_unboxToBoolean((oncipv_Cypher25Parser$PasswordContext_passwordChangeRequired($ctx)).$ast0), oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$PasswordContext_passwordChangeRequired($ctx))))); +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitPasswordExpression = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext), 0); - if (var$2 !== null) { - var$2 = var$2.$ast0; - var$3 = new oncie_SensitiveStringLiteral; - var$4 = var$2.$value8; - jnc_StandardCharsets_$callClinit(); - oncie_SensitiveStringLiteral__init_(var$3, jl_String_getBytes(var$4, jnc_StandardCharsets_UTF_8), var$2.$position18); - } else { - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; - var$3 = new oncipvaf_DdlBuilder$$anon$10; - var$4 = var$2.$name(); - oncius_package$_$callClinit(); - oncie_ExplicitParameter__init_0(var$3, var$4, oncius_package$_CTString(oncius_package$_MODULE$), onciu_UnknownSize$_MODULE$, var$2.$position()); - } - $ctx.$ast0 = var$3; +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_hashCode = $this => { + return (-97393395); }, -oncipvaf_Cypher25AstBuilder_exitPasswordChangeRequired = ($this, $ctx) => { - $ctx.$ast0 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 175, 0) !== null ? 0 : 1); +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_toString0 = $this => { + return $rt_s(6496); }, -oncipvaf_Cypher25AstBuilder_exitUserStatus = ($this, $ctx) => { - $ctx.$ast0 = jl_Boolean_valueOf(oncip_AstRuleCtx_getToken($ctx, 259, 0) === null ? 0 : 1); +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_ = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitHomeDatabase = ($this, $ctx) => { - $ctx.$ast0 = oncia_SetHomeDatabaseAction__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0); +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_1 = var_0 => { + let var_1 = new oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$(); + oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitDropDatabase = ($this, $ctx) => { - let var$2, var$3; - var$2 = oncip_AstRuleCtx_getToken($ctx, 85, 0) === null ? oncia_DestroyData$_MODULE$ : oncia_DumpData$_MODULE$; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AliasActionContext), 0), new oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_00); - $ctx.$ast0 = oncia_DropDatabase__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0, oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1, oncip_AstRuleCtx_getToken($ctx, 49, 0) === null ? 0 : 1, var$3, var$2, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_10), oncipau_Util$_pos(oncipau_Util$_MODULE$, - $ctx.$parent)); +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$ = $rt_classWithoutFields(), +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productArity = $this => { + return 0; }, -oncipvaf_Cypher25AstBuilder_exitAliasAction = ($this, $ctx) => { - $ctx.$ast0 = oncip_AstRuleCtx_getToken($ctx, 39, 0) === null ? oncia_Restrict$_MODULE$ : oncia_CascadeAliases$_MODULE$; +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productElement0 = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitAlterDatabase = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - var$2 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0); - if (!(oncipv_Cypher25Parser$AlterDatabaseContext_REMOVE($ctx)).$isEmpty()) { - s_Predef$_$callClinit(); - var$4 = s_Predef$_Set(s_Predef$_MODULE$); - var$5 = oncipau_Util$_MODULE$; - var$6 = oncipv_Cypher25Parser$AlterDatabaseContext_symbolicNameString($ctx); - sr_ClassTag$_$callClinit(); - var$5 = sci_Set$_from(var$4, oncipau_Util$_astSeq(var$5, var$6, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String)))); - var$7 = new oncia_AlterDatabase; - var$8 = oncipv_Cypher25Parser$AlterDatabaseContext_EXISTS($ctx) === null ? 0 : 1; - var$6 = s_None$_MODULE$; - oncia_NoOptions$_$callClinit(); - oncia_AlterDatabase__init_(var$7, var$2, var$8, var$6, var$6, oncia_NoOptions$_MODULE$, var$5, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - } else { - var$9 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseAccess($ctx), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1); - var$10 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2); - if ((oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption($ctx)).$isEmpty()) { - oncia_NoOptions$_$callClinit(); - var$11 = oncia_NoOptions$_MODULE$; - } else { - var$11 = new oncia_OptionsMap; - var$6 = oncipau_Util$_MODULE$; - var$7 = oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption($ctx); - sr_ClassTag$_$callClinit(); - oncia_OptionsMap__init_0(var$11, (oncipau_Util$_astSeq(var$6, var$7, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(sci_Map)))).$reduceLeft(new oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3)); - } - var$7 = new oncia_AlterDatabase; - var$8 = oncipv_Cypher25Parser$AlterDatabaseContext_EXISTS($ctx) === null ? 0 : 1; - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - oncia_AlterDatabase__init_(var$7, var$2, var$8, var$9, var$10, var$11, sci_Set$EmptySet$_MODULE$, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - } - $ctx.$ast0 = var$7; +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitAlterDatabaseAccess = ($this, $ctx) => { - let var$2; - if (oncip_AstRuleCtx_getToken($ctx, 182, 0) === null) { - oncia_ReadWriteAccess$_$callClinit(); - var$2 = oncia_ReadWriteAccess$_MODULE$; - } else { - oncia_ReadOnlyAccess$_$callClinit(); - var$2 = oncia_ReadOnlyAccess$_MODULE$; - } - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_hashCode = $this => { + return 1680431431; }, -oncipvaf_Cypher25AstBuilder_exitAlterDatabaseTopology = ($this, $ctx) => { - let var$2; - if (oncip_AstRuleCtx_getToken($ctx, 269, 0) === null) - var$2 = s_None$_MODULE$; - else { - oncipau_Util$_$callClinit(); - var$2 = oncia_Topology__init_(oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterDatabaseTopologyContext_primaryTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_00), oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterDatabaseTopologyContext_secondaryTopology($ctx), new oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_10)); - } - $ctx.$ast0 = var$2; +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_toString0 = $this => { + return $rt_s(6497); +}; +let oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_ = ($this, $$outer) => { + return; }, -oncipvaf_Cypher25AstBuilder_exitPrimaryTopology = ($this, $ctx) => { - s_Predef$_$callClinit(); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = jl_Integer_valueOf(jl_Integer_parseInt((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getText())); +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_1 = var_0 => { + let var_1 = new oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$(); + oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_(var_1, var_0); + return var_1; }, -oncipvaf_Cypher25AstBuilder_exitSecondaryTopology = ($this, $ctx) => { - s_Predef$_$callClinit(); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = jl_Integer_valueOf(jl_Integer_parseInt((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getText())); +oncie_LogicalProperty$ = $rt_classWithoutFields(), +oncie_LogicalProperty$_MODULE$ = null, +oncie_LogicalProperty$__clinit_ = () => { + oncie_LogicalProperty$_MODULE$ = new oncie_LogicalProperty$; }, -oncipvaf_Cypher25AstBuilder_exitAlterDatabaseOption = ($this, $ctx) => { - let var$2, var$3, var$4; - s_Predef$_$callClinit(); - var$2 = s_Predef$_Map(s_Predef$_MODULE$); - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(s_Tuple2, 1); - var$4.data[0] = s_Tuple2__init_((oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0)).$ast0, (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0); - $ctx.$ast0 = sci_Map$_from(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); +oncie_LogicalProperty$_unapply = ($this, $p) => { + return s_Some__init_(s_Tuple2__init_($p.$map15, $p.$propertyKey0)); }, -oncipvaf_Cypher25AstBuilder_exitStartDatabase = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_StartDatabase; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_StartDatabase__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_00), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncie_LogicalVariable$ = $rt_classWithoutFields(), +oncie_LogicalVariable$_MODULE$ = null, +oncie_LogicalVariable$__clinit_ = () => { + oncie_LogicalVariable$_MODULE$ = new oncie_LogicalVariable$; }, -oncipvaf_Cypher25AstBuilder_exitStopDatabase = ($this, $ctx) => { - let var$2, var$3; - var$2 = new oncia_StopDatabase; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_StopDatabase__init_(var$2, var$3, oncipau_Util$_astOpt0(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$WaitClauseContext), 0), new oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +sc_View$ = $rt_classWithoutFields(), +sc_View$_MODULE$ = null, +sc_View$__clinit_ = () => { + sc_View$_MODULE$ = new sc_View$; }, -oncipvaf_Cypher25AstBuilder_exitWaitClause = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0(); - switch (var$2) { - case 177: - break; - case 292: - var$3 = oncip_AstRuleCtx_getToken($ctx, 5, 0); - if (var$3 === null) { - oncia_IndefiniteWait$_$callClinit(); - var$4 = oncia_IndefiniteWait$_MODULE$; - break a; - } - var$4 = new oncia_TimeoutAfter; - s_Predef$_$callClinit(); - oncia_TimeoutAfter__init_(var$4, jl_Long_parseLong(var$3.$getText())); - break a; - default: - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); - } - oncia_NoWait$_$callClinit(); - var$4 = oncia_NoWait$_MODULE$; +sc_View$_from = ($this, $it) => { + let $view_this, $fromIteratorProvider_it; + if ($rt_isInstance($it, sc_View)) + return $it; + if (!$rt_isInstance($it, sc_Iterable)) { + sci_LazyList$_$callClinit(); + $view_this = sci_LazyList$_from(sci_LazyList$_MODULE$, $it); + if ($view_this === null) + $rt_throw(null); + return sc_SeqView$Id__init_0($view_this); } - $ctx.$ast0 = var$4; + $it = $it; + $fromIteratorProvider_it = new sc_View$$from$lambda$_18_0; + $fromIteratorProvider_it.$_0181 = $it; + $it = new sc_View$$anon$1; + $it.$it$1 = $fromIteratorProvider_it; + return $it; }, -oncipvaf_Cypher25AstBuilder_exitDropAlias = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncia_DropDatabaseAlias; - var$3 = (oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AliasNameContext), 0))).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 101, 0) === null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncia_DropDatabaseAlias__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); - $ctx.$ast0 = var$2; +sc_View$_newBuilder = $this => { + return scm_Builder_mapResult$(scm_ArrayBuffer$$anon$1__init_(), new sc_View$$newBuilder$lambda$_20_0); }, -oncipvaf_Cypher25AstBuilder_exitAlterAlias = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = (oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$AlterAliasContext_aliasName($ctx))).$ast0; - var$3 = oncipv_Cypher25Parser$AlterAliasContext_alterAliasTarget($ctx); - if (var$3.$isEmpty()) { - var$4 = new s_Tuple2; - var$5 = s_None$_MODULE$; - s_Tuple2__init_0(var$4, var$5, var$5); - } else { - var$4 = new s_Tuple2; - var$5 = s_Some__init_((oncipv_Cypher25Parser$DatabaseNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$AlterAliasTargetContext_databaseName(var$3.$get0(0)))).$ast0); - oncipau_Util$_$callClinit(); - s_Tuple2__init_0(var$4, var$5, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasTargetContext_stringOrParameter(var$3.$get0(0)))); - } - var$6 = s_Tuple2__init_(var$4.$_10, var$4.$_20); - var$3 = var$6.$_10; - var$4 = var$6.$_20; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasContext_alterAliasUser($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0); - var$8 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasContext_alterAliasPassword($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1); - var$9 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasContext_alterAliasDriver($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2); - var$10 = oncipau_Util$_astOptFromList(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasContext_alterAliasProperties($ctx), new oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3); - $ctx.$ast0 = s_Option_isEmpty(var$4) && s_Option_isEmpty(var$7) && s_Option_isEmpty(var$8) && s_Option_isEmpty(var$9) ? oncia_AlterLocalDatabaseAlias__init_(var$2, var$3, oncipv_Cypher25Parser$AlterAliasContext_EXISTS($ctx) === null ? 0 : 1, var$10, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)) : oncia_AlterRemoteDatabaseAlias__init_(var$2, var$3, oncipv_Cypher25Parser$AlterAliasContext_EXISTS($ctx) === null ? 0 : 1, var$4, var$7, var$8, var$9, var$10, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx.$parent)); +sc_View$_from0 = ($this, $source) => { + return sc_View$_from($this, $source); }, -oncipvaf_Cypher25AstBuilder_exitAlterAliasTarget = ($this, $ctx) => { +srj_JFunction1$mcZI$sp = $rt_classWithoutFields(0), +srj_JFunction1$mcZI$sp_apply = ($this, $t) => { + return jl_Boolean_valueOf($this.$apply$mcZI$sp(sr_BoxesRunTime_unboxToInt($t))); +}; +function oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0() { + jl_Object.call(this); + this.$_059 = null; +} +let oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0_apply$mcZI$sp = (var$0, var$1) => { let var$2; - var$2 = (oncipv_Cypher25Parser$DatabaseNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$AlterAliasTargetContext_databaseName($ctx))).$ast0; - oncipau_Util$_$callClinit(); - $ctx.$ast0 = s_Tuple2__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$AlterAliasTargetContext_stringOrParameter($ctx))); + var$2 = var$0.$_059; + return var$1 == (-2) && var$1 == var$2.$conf.$errorCharTokenType() ? 0 : 1; +}; +function oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1() { + jl_Object.call(this); + this.$_0864 = null; +} +let oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1_apply = (var$0, var$1) => { + return oncip_CypherErrorVocabulary_getDisplayName(var$0.$_0864, sr_BoxesRunTime_unboxToInt(var$1)); +}; +function oncia_Union$$anonfun$checkRecursively$2$lambda$_41_0() { + let a = this; jl_Object.call(a); + a.$_0162 = null; + a.$_157 = null; +} +let oncia_Union$$anonfun$checkRecursively$2$lambda$_41_0_apply = var$0 => { + return oncia_Union_checkRecursively(var$0.$_0162, var$0.$_157); +}; +function oncie_Xor() { + let a = this; oncie_Expression.call(a); + a.$lhs22 = null; + a.$rhs19 = null; + a.$position300 = null; + a.$signatures24 = null; +} +let oncie_Xor_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipvaf_Cypher25AstBuilder_exitAlterAliasUser = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncie_Xor_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipvaf_Cypher25AstBuilder_exitAlterAliasPassword = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncie_Xor_canonicalOperatorSymbol = $this => { + return oncie_OperatorExpression_canonicalOperatorSymbol$($this); }, -oncipvaf_Cypher25AstBuilder_exitAlterAliasDriver = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncie_Xor_lhs = $this => { + return $this.$lhs22; }, -oncipvaf_Cypher25AstBuilder_exitAlterAliasProperties = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncie_Xor_rhs = $this => { + return $this.$rhs19; }, -oncipvaf_Cypher25AstBuilder_exitSymbolicNameOrStringParameter = ($this, $ctx) => { - let var$2; - if (oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_symbolicNameString($ctx) !== null) { - s_package$_$callClinit(); - var$2 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_symbolicNameString($ctx)).$ast0); - } else { - s_package$_$callClinit(); - var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0); - } - $ctx.$ast0 = var$2; +oncie_Xor_position = $this => { + return $this.$position300; }, -oncipvaf_Cypher25AstBuilder_exitCommandNameExpression = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = oncipv_Cypher25Parser$CommandNameExpressionContext_symbolicNameString($ctx); - if (var$2 === null) - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; - else { - var$3 = new oncie_StringLiteral; - var$4 = (oncipv_Cypher25Parser$CommandNameExpressionContext_symbolicNameString($ctx)).$ast0; - oncipau_Util$_$callClinit(); - oncie_StringLiteral__init_0(var$3, var$4, oncipau_Util$_rangePos(oncipau_Util$_MODULE$, var$2)); +oncie_Xor_signatures = $this => { + return $this.$signatures24; +}, +oncie_Xor_productPrefix = $this => { + return $rt_s(6498); +}, +oncie_Xor_productArity = $this => { + return 2; +}, +oncie_Xor_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs22; + case 1: + return $this.$rhs19; + default: } - $ctx.$ast0 = var$3; + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitSymbolicNameOrStringParameterList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$CommandNameExpressionContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))); +oncie_Xor_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitSymbolicAliasNameList = ($this, $ctx) => { - let var$2, var$3; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_MODULE$; - var$3 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext)); - sr_ClassTag$_$callClinit(); - $ctx.$ast0 = oncipau_Util$_astSeq(var$2, var$3, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_DatabaseName))); +oncie_Xor_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitSymbolicAliasNameOrParameter = ($this, $ctx) => { +oncie_Xor_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Xor_equals = ($this, $x$1) => { let var$2, var$3, var$4; - var$2 = oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($ctx); - if (var$2 !== null) { - var$2 = var$2.$ast0.$toList(); - var$3 = oncia_NamespacedName$_MODULE$; - oncipau_Util$_$callClinit(); - var$3 = oncia_NamespacedName$_apply(var$3, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$3 = new oncia_ParameterName; - var$4 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; - oncipau_Util$_$callClinit(); - oncia_ParameterName__init_(var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Xor) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs22; + var$3 = $x$1.$lhs22; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs19; + $x$1 = $x$1.$rhs19; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Xor)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; } - $ctx.$ast0 = var$3; + return var$4; }, -oncipvaf_Cypher25AstBuilder_exitAliasName = ($this, $ctx) => { - $ctx.$ast0 = (oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter($ctx)).$ast0; +oncie_Xor__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs22 = $lhs; + $this.$rhs19 = $rhs; + $this.$position300 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_BooleanType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTBoolean(oncius_package$_MODULE$)); + $this.$signatures24 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncipvaf_Cypher25AstBuilder_exitDatabaseName = ($this, $ctx) => { - $ctx.$ast0 = (oncipv_Cypher25Parser$DatabaseNameContext_symbolicAliasNameOrParameter($ctx)).$ast0; +oncie_Xor__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Xor(); + oncie_Xor__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_Pow() { + let a = this; oncie_Expression.call(a); + a.$lhs13 = null; + a.$rhs22 = null; + a.$position263 = null; + a.$signatures26 = null; +} +let oncie_Pow_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncipvaf_Cypher25AstBuilder_exitStringOrParameterExpression = ($this, $ctx) => { - $ctx.$ast0 = oncipv_Cypher25Parser$StringOrParameterExpressionContext_stringLiteral($ctx) !== null ? (oncipv_Cypher25Parser$StringOrParameterExpressionContext_stringLiteral($ctx)).$ast0 : (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0; +oncie_Pow_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncipvaf_Cypher25AstBuilder_exitStringOrParameter = ($this, $ctx) => { - let var$2; - if (oncipv_Cypher25Parser$StringOrParameterContext_stringLiteral($ctx) !== null) { - s_package$_$callClinit(); - var$2 = su_Left$_apply(s_package$_Left(s_package$_MODULE$), (oncipv_Cypher25Parser$StringOrParameterContext_stringLiteral($ctx)).$ast0.$value8); - } else { - s_package$_$callClinit(); - var$2 = su_Right$_apply(s_package$_Right(s_package$_MODULE$), (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ParameterContext), 0)).$ast0); - } - $ctx.$ast0 = var$2; +oncie_Pow_lhs = $this => { + return $this.$lhs13; }, -oncipvaf_Cypher25AstBuilder_exitNodePattern = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = oncie_NodePattern__init_0(oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, - oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); +oncie_Pow_rhs = $this => { + return $this.$rhs22; }, -oncipvaf_Cypher25AstBuilder_exitRelationshipPattern = ($this, $ctx) => { - let var$2; - var$2 = new oncie_RelationshipPattern; - oncipau_Util$_$callClinit(); - oncie_RelationshipPattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PathLengthContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, - oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertiesContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)), oncipau_Util$_semanticDirection(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RightArrowContext), 0) === null ? 0 : 1, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LeftArrowContext), 0) === - null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncie_Pow_position = $this => { + return $this.$position263; }, -oncipvaf_Cypher25AstBuilder_exitNodeLabels = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new s_Tuple2; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$LabelTypeContext)); - sr_ClassTag$_$callClinit(); - s_Tuple2__init_0(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))), oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$DynamicLabelTypeContext)), 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression)))); - $ctx.$ast0 = var$2; +oncie_Pow_signatures = $this => { + return $this.$signatures26; }, -oncipvaf_Cypher25AstBuilder_exitNodeLabelsIs = ($this, $ctx) => { - let var$2, var$3; - var$2 = sci_ArraySeq$_MODULE$; - sr_ClassTag$_$callClinit(); - var$2 = sci_ArraySeq$_newBuilder(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_LabelName))); - s_Option$_$callClinit(); - var$3 = scm_Builder$$anon$1_addAll(var$2, s_Option_map(s_Option$_apply(s_Option$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0)), new oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0)); - oncipau_Util$_$callClinit(); - $ctx.$ast0 = s_Tuple2__init_(scm_Builder$$anon$1_result(scm_Builder$$anon$1_addAll(var$3, oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$LabelTypeContext)), 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$)))), scm_Builder$$anon$1_result(scm_Builder$$anon$1_addAll(scm_Builder$$anon$1_addAll(sci_ArraySeq$_newBuilder(sci_ArraySeq$_MODULE$, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, - oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$DynamicExpressionContext), 0))), oncipau_Util$_astSeq(oncipau_Util$_MODULE$, oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$DynamicLabelTypeContext)), 0, sr_ClassTag$_Nothing(sr_ClassTag$_MODULE$))))); +oncie_Pow_canonicalOperatorSymbol = $this => { + return $rt_s(387); }, -oncipvaf_Cypher25AstBuilder_exitDynamicExpression = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 2)).$ast0; -}; -let oncipvaf_Cypher25AstBuilder_exitDynamicAnyAllExpression = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_DynamicLabelOrRelTypeExpression; - var$3 = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext), 0)).$ast0; - var$4 = oncip_AstRuleCtx_getToken($ctx, 21, 0) !== null ? 0 : 1; - oncipau_Util$_$callClinit(); - oncie_DynamicLabelOrRelTypeExpression__init_(var$2, var$3, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncie_Pow_productPrefix = $this => { + return $rt_s(6499); }, -oncipvaf_Cypher25AstBuilder_exitDynamicLabelType = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncie_Pow_productArity = $this => { + return 2; }, -oncipvaf_Cypher25AstBuilder_exitLabelType = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - $ctx.$ast0 = oncie_LabelName__init_(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +oncie_Pow_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs13; + case 1: + return $this.$rhs22; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitRelType = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - $ctx.$ast0 = oncie_RelTypeName__init_(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +oncie_Pow_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitLabelOrRelType = ($this, $ctx) => { - let var$2; - oncipau_Util$_$callClinit(); - var$2 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - $ctx.$ast0 = oncie_LabelOrRelTypeName__init_(var$2.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); +oncie_Pow_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitLabelExpression = ($this, $ctx) => { - oncipau_Util$_$callClinit(); - $ctx.$ast0 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1)).$ast0; +oncie_Pow_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitLabelExpression4 = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = $ctx.$children0; - var$3 = var$2.$size0; - var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; - var$5 = 0; - var$6 = 1; - while (var$6 < var$3) { - var$7 = ju_ArrayList_get(var$2, var$6); - if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 44) - var$5 = 1; - else if (var$7 instanceof oncipv_Cypher25Parser$LabelExpression3Context) { - var$8 = var$7.$ast0; - if (!var$5) { - oncil_LabelExpression$Disjunctions$_$callClinit(); - var$9 = oncil_LabelExpression$Disjunctions$_MODULE$; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_MODULE$; - var$4 = oncil_LabelExpression$Disjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 0); - } else { - var$7 = new oncil_LabelExpression$ColonDisjunction; - oncipau_Util$_$callClinit(); - var$9 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonDisjunction__init_(var$7, var$4, var$8, 0, oncipau_Util$_pos1(var$9, oncipau_Util$_nodeChild(var$9, $ctx, var$6 - 2 | 0))); - var$5 = 0; - var$4 = var$7; +oncie_Pow_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Pow) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs13; + var$3 = $x$1.$lhs13; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs22; + $x$1 = $x$1.$rhs22; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Pow)) + break b; } + var$4 = 1; + break a; } - var$6 = var$6 + 1 | 0; + var$4 = 0; } - $ctx.$ast0 = var$4; + return var$4; }, -oncipvaf_Cypher25AstBuilder_exitLabelExpression4Is = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = $ctx.$children0; - var$3 = var$2.$size0; - var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; - var$5 = 0; - var$6 = 1; - while (var$6 < var$3) { - var$7 = ju_ArrayList_get(var$2, var$6); - if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 44) - var$5 = 1; - else if (var$7 instanceof oncipv_Cypher25Parser$LabelExpression3IsContext) { - var$8 = var$7.$ast0; - if (!var$5) { - oncil_LabelExpression$Disjunctions$_$callClinit(); - var$9 = oncil_LabelExpression$Disjunctions$_MODULE$; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_MODULE$; - var$4 = oncil_LabelExpression$Disjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 1); - } else { - var$7 = new oncil_LabelExpression$ColonDisjunction; - oncipau_Util$_$callClinit(); - var$10 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonDisjunction__init_(var$7, var$4, var$8, 1, oncipau_Util$_pos1(var$10, oncipau_Util$_nodeChild(var$10, $ctx, var$6 - 2 | 0))); - var$5 = 0; - var$4 = var$7; - } - } - var$6 = var$6 + 1 | 0; - } - $ctx.$ast0 = var$4; +oncie_Pow__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs13 = $lhs; + $this.$rhs22 = $rhs; + $this.$position263 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 1); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_FloatType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $this.$signatures26 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncipvaf_Cypher25AstBuilder_exitLabelExpression3 = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$2 = $ctx.$children0; - var$3 = var$2.$size0; - var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; - var$5 = 0; - var$6 = 1; - while (var$6 < var$3) { - var$7 = ju_ArrayList_get(var$2, var$6); - if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 44) - var$5 = 1; - else if (var$7 instanceof oncipv_Cypher25Parser$LabelExpression2Context) { - var$8 = var$7.$ast0; - if (!var$5) { - oncil_LabelExpression$Conjunctions$_$callClinit(); - var$9 = oncil_LabelExpression$Conjunctions$_MODULE$; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_MODULE$; - var$4 = oncil_LabelExpression$Conjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 0); +oncie_Pow__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Pow(); + oncie_Pow__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_ShowConstraintsClause$_init_$lambda$_121_0() { + jl_Object.call(this); + this.$_0759 = null; +} +let oncia_ShowConstraintsClause$_init_$lambda$_121_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0759; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position45); +}; +function oncia_ShowConstraintsClause$_init_$lambda$_121_1() { + jl_Object.call(this); + this.$_0282 = null; +} +let oncia_ShowConstraintsClause$_init_$lambda$_121_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0282; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position45); +}; +function oncia_ShowIndexesClause$_init_$lambda$_119_0() { + jl_Object.call(this); + this.$_0231 = null; +} +let oncia_ShowIndexesClause$_init_$lambda$_119_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0231; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position54); +}; +function oncia_ShowIndexesClause$_init_$lambda$_119_1() { + jl_Object.call(this); + this.$_0847 = null; +} +let oncia_ShowIndexesClause$_init_$lambda$_119_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0847; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position54); +}; +function oncia_ShowSettingsClause$_init_$lambda$_113_0() { + jl_Object.call(this); + this.$_0292 = null; +} +let oncia_ShowSettingsClause$_init_$lambda$_113_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0292; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position33); +}; +function oncia_ShowSettingsClause$_init_$lambda$_113_1() { + jl_Object.call(this); + this.$_0761 = null; +} +let oncia_ShowSettingsClause$_init_$lambda$_113_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0761; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position33); +}; +function oncia_ShowTransactionsClause$_init_$lambda$_143_0() { + jl_Object.call(this); + this.$_0710 = null; +} +let oncia_ShowTransactionsClause$_init_$lambda$_143_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0710; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position55); +}; +function oncia_ShowTransactionsClause$_init_$lambda$_143_1() { + jl_Object.call(this); + this.$_043 = null; +} +let oncia_ShowTransactionsClause$_init_$lambda$_143_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_043; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position55); +}; +function oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0() { + jl_Object.call(this); + this.$_0900 = null; +} +let oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0_apply = (var$0, var$1) => { + return oncie_LabelName__init_(var$0.$_0900, var$1); +}; +function oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0() { + jl_Object.call(this); + this.$_0793 = null; +} +let oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0_apply = (var$0, var$1) => { + return oncie_RelTypeName__init_0(var$0.$_0793, var$1); +}; +function oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_73_0() { + jl_Object.call(this); + this.$_0445 = null; +} +let oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_73_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17; + var$1 = var$1; + var$2 = var$2; + var$3 = var$0.$_0445; + if (!(var$2 instanceof oncia_PatternQualifier)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$2 = var$2; + var$4 = var$2.$variable21; + var$5 = var$2.$expression36; + oncias_OptionSemanticChecking$_$callClinit(); + var$2 = oncias_OptionSemanticChecking$_MODULE$; + var$6 = new oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_80_0; + var$6.$_0355 = var$3; + var$2 = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$2, var$4, var$6); + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = var$2.$chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Results$_MODULE$, var$5)); + var$6 = var$3.$privilege5; + if (!(var$6 instanceof oncia_GraphPrivilege)) { + oncias_SemanticCheck$_$callClinit(); + var$7 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(oncias_SemanticErrorDef, 1); + oncias_SemanticError$_$callClinit(); + var$4 = oncias_SemanticError$_MODULE$; + var$9 = var$3.$position84; + var$4 = jl_Class_getSimpleName(jl_Object_getClass(var$4)); + var$10 = var$9.$offset(); + var$11 = var$9.$line(); + var$12 = var$9.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + var$4 = ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_50N00), ong_GqlParams$StringParam_msgTitle, var$4), ong_GqlParams$StringParam_msg, $rt_s(6500)); + if (var$10 >= 0) + ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(var$4, var$10, var$11, var$12); + var$8.data[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(var$4), $rt_s(6500), var$9); + var$6 = oncias_SemanticCheck$_error(var$7, sr_ScalaRunTime$_wrapRefArray(var$6, var$8)); + } else { + var$7 = var$6.$action0; + if (jl_Object_equals(oncia_ReadAction$_MODULE$, var$7) ? 1 : jl_Object_equals(oncia_TraverseAction$_MODULE$, var$7) ? 1 : !jl_Object_equals(oncia_MatchAction$_MODULE$, var$7) ? 0 : 1) { + oncias_SemanticCheck$_$callClinit(); + var$6 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } else { - var$7 = new oncil_LabelExpression$ColonConjunction; - oncipau_Util$_$callClinit(); - var$9 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonConjunction__init_(var$7, var$4, var$8, 0, oncipau_Util$_pos1(var$9, oncipau_Util$_nodeChild(var$9, $ctx, var$6 - 1 | 0))); - var$5 = 0; - var$4 = var$7; + oncias_SemanticCheck$_$callClinit(); + var$6 = oncias_SemanticCheck$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$13 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$14 = var$13.data; + oncias_SemanticError$_$callClinit(); + var$15 = var$7.$name13; + var$16 = oncia_ReadAction$_MODULE$.$name13; + var$17 = oncia_TraverseAction$_MODULE$.$name13; + var$9 = oncia_MatchAction$_MODULE$.$name13; + ju_Objects_requireNonNull(var$16); + ju_Objects_requireNonNull(var$17); + ju_Objects_requireNonNull(var$9); + var$7 = ju_TemplateCollections$ImmutableArrayList__init_($rt_wrapArray(jl_Object, [var$16, var$17, var$9])); + var$9 = var$3.$position84; + var$7 = ong_GqlHelper_getGql42001_22N04(var$15, $rt_s(6501), var$7, var$9.$offset(), var$9.$line(), var$9.$column()); + var$17 = new oncias_SemanticError; + var$16 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$16); + jl_StringBuilder_append(jl_StringBuilder_append(var$16, var$15), $rt_s(6502)); + oncias_SemanticError__init_(var$17, var$7, jl_AbstractStringBuilder_toString(var$16), var$9); + var$14[0] = var$17; + var$6 = oncias_SemanticCheck$_error(var$6, sr_ScalaRunTime$_wrapRefArray(var$4, var$13)); } } - var$6 = var$6 + 1 | 0; + var$2 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, var$6), oncia_PrivilegeCommand_checkExpression(var$3, var$5)); } - $ctx.$ast0 = var$4; + return var$1.$chain(var$2); }, -oncipvaf_Cypher25AstBuilder_exitLabelExpression3Is = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$2 = $ctx.$children0; - var$3 = var$2.$size0; - var$4 = (ju_ArrayList_get(var$2, 0)).$ast0; - var$5 = 0; - var$6 = 1; - while (var$6 < var$3) { - var$7 = ju_ArrayList_get(var$2, var$6); - if ($rt_isInstance(var$7, oavrt_TerminalNode) && (var$7.$getSymbol()).$getType0() == 44) - var$5 = 1; - else if (var$7 instanceof oncipv_Cypher25Parser$LabelExpression2IsContext) { - var$8 = var$7.$ast0; - if (!var$5) { - oncil_LabelExpression$Conjunctions$_$callClinit(); - var$9 = oncil_LabelExpression$Conjunctions$_MODULE$; - oncipau_Util$_$callClinit(); - var$7 = oncipau_Util$_MODULE$; - var$4 = oncil_LabelExpression$Conjunctions$_flat(var$9, var$4, var$8, oncipau_Util$_pos1(var$7, oncipau_Util$_nodeChild(var$7, $ctx, var$6 - 1 | 0)), 1); - } else { - var$7 = new oncil_LabelExpression$ColonConjunction; - oncipau_Util$_$callClinit(); - var$10 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonConjunction__init_(var$7, var$4, var$8, 1, oncipau_Util$_pos1(var$10, oncipau_Util$_nodeChild(var$10, $ctx, var$6 - 1 | 0))); - var$5 = 0; - var$4 = var$7; - } - } - var$6 = var$6 + 1 | 0; - } - $ctx.$ast0 = var$4; +oncia_ExecutePrivilegeQualifier = $rt_classWithoutFields(0), +oncia_ProcedurePrivilegeQualifier = $rt_classWithoutFields(0); +function oncia_ProcedureQualifier() { + let a = this; jl_Object.call(a); + a.$glob3 = null; + a.$position232 = null; +} +let oncia_ProcedureQualifier_productPrefix = $this => { + return $rt_s(6503); }, -oncipvaf_Cypher25AstBuilder_exitLabelExpression2 = ($this, $ctx) => { - let var$2; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - case 2: - var$2 = new oncil_LabelExpression$Negation; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Negation__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), 0, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - var$2 = scc_AsScalaExtensions$CollectionHasAsScala_asScala(sj_CollectionConverters$_CollectionHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 141))); - oncipau_Util$_$callClinit(); - var$2 = sc_AbstractIterable_foldRight(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0); - break a; - } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; - } - $ctx.$ast0 = var$2; +oncia_ProcedureQualifier_productArity = $this => { + return 1; }, -oncipvaf_Cypher25AstBuilder_exitLabelExpression2Is = ($this, $ctx) => { - let var$2; - a: { - switch ($ctx.$children0.$size0) { - case 1: - break; - case 2: - var$2 = new oncil_LabelExpression$Negation; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Negation__init_(var$2, oncipau_Util$_astChild(oncipau_Util$_MODULE$, $ctx, 1), 1, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - var$2 = scc_AsScalaExtensions$CollectionHasAsScala_asScala(sj_CollectionConverters$_CollectionHasAsScala(sj_CollectionConverters$_MODULE$, oncip_AstRuleCtx_getTokens($ctx, 141))); - oncipau_Util$_$callClinit(); - var$2 = sc_AbstractIterable_foldRight(var$2, (oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$ast0, new oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0); - break a; - } - oncipau_Util$_$callClinit(); - var$2 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 0)).$ast0; +oncia_ProcedureQualifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$glob3; + default: } - $ctx.$ast0 = var$2; -}, -oncipvaf_Cypher25AstBuilder_exitLabelExpression1 = ($this, $ctx) => { - oncipvaf_LabelExpressionBuilder_exitLabelExpression1($this, $ctx); + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_getIsLabel = ($this, $ctx) => { - let var$2; - $ctx = $ctx.$parent; - var$2 = 0; - while (!var$2) { - if ($ctx !== null && $ctx.$getRuleIndex() != 100) { - if ($ctx.$getRuleIndex() == 58) - var$2 = 1; - else if ($ctx.$getRuleIndex() == 70) - var$2 = 2; - else - $ctx = $ctx.$parent; - } else - var$2 = 3; - } - return var$2; +oncia_ProcedureQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitLabelExpression1Is = ($this, $ctx) => { - oncipvaf_LabelExpressionBuilder_exitLabelExpression1Is($this, $ctx); +oncia_ProcedureQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitInsertNodePattern = ($this, $ctx) => { - let var$2; - var$2 = new oncie_NodePattern; - oncipau_Util$_$callClinit(); - oncie_NodePattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$InsertNodeLabelExpressionContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MapContext), 0)), s_None$_MODULE$, oncipau_Util$_pos(oncipau_Util$_MODULE$, - $ctx)); - $ctx.$ast0 = var$2; +oncia_ProcedureQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitInsertNodeLabelExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; - var$2 = oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_IS($ctx) === null ? 0 : 1; - var$3 = $ctx.$children0; - var$4 = var$3.$size0; - oncipau_Util$_$callClinit(); - var$5 = oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, $ctx, 1); - var$6 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_(var$5.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)), var$2); - if (var$4 > 2) { - var$7 = 0; - var$8 = 2; - while (var$8 < var$4) { - var$5 = ju_ArrayList_get(var$3, var$8); - if ($rt_isInstance(var$5, oavrt_TerminalNode) && (var$5.$getSymbol()).$getType0() == 44) - var$7 = 1; - else if (var$5 instanceof oncipv_Cypher25Parser$SymbolicNameStringContext) { - var$5 = var$5; - var$9 = oncil_LabelExpression$Leaf__init_0(oncie_LabelName__init_(var$5.$ast0, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$5)), oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_IS($ctx) === null ? 0 : 1); - if (!var$7) { - oncil_LabelExpression$Conjunctions$_$callClinit(); - var$10 = oncil_LabelExpression$Conjunctions$_MODULE$; - var$11 = oncipau_Util$_MODULE$; - var$6 = oncil_LabelExpression$Conjunctions$_flat(var$10, var$6, var$9, oncipau_Util$_pos1(var$11, oncipau_Util$_nodeChild(var$11, $ctx, var$8 - 1 | 0)), var$2); - } else { - var$11 = new oncil_LabelExpression$ColonConjunction; - var$5 = oncipau_Util$_MODULE$; - oncil_LabelExpression$ColonConjunction__init_(var$11, var$6, var$9, var$2, oncipau_Util$_pos1(var$5, oncipau_Util$_nodeChild(var$5, $ctx, var$8 - 1 | 0))); - var$7 = 0; - var$6 = var$11; +oncia_ProcedureQualifier_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ProcedureQualifier) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$glob3; + $x$1 = $x$1.$glob3; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; } } - var$8 = var$8 + 1 | 0; + var$3 = 1; + break a; } + var$3 = 0; } - $ctx.$ast0 = var$6; -}, -oncipvaf_Cypher25AstBuilder_exitInsertRelationshipPattern = ($this, $ctx) => { - let var$2; - var$2 = new oncie_RelationshipPattern; - oncipau_Util$_$callClinit(); - oncie_RelationshipPattern__init_(var$2, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$VariableContext), 0)), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext), 0)), s_None$_MODULE$, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$MapContext), 0)), s_None$_MODULE$, - oncipau_Util$_semanticDirection(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$RightArrowContext), 0) === null ? 0 : 1, oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$LeftArrowContext), 0) === null ? 0 : 1), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; -}, -oncipvaf_Cypher25AstBuilder_exitInsertRelationshipLabelExpression = ($this, $ctx) => { - let var$2, var$3, var$4, var$5; - var$2 = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), 0); - var$3 = new oncil_LabelExpression$Leaf; - var$4 = new oncie_RelTypeName; - var$5 = var$2.$ast0; - oncipau_Util$_$callClinit(); - oncie_RelTypeName__init_0(var$4, var$5, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - oncil_LabelExpression$Leaf__init_(var$3, var$4, oncip_AstRuleCtx_getToken($ctx, 135, 0) === null ? 0 : 1); - $ctx.$ast0 = var$3; + return var$3; }, -oncipvaf_Cypher25AstBuilder_exitLeftArrow = ($this, $ctx) => { - return; +oncia_ProcedureQualifier_dup = ($this, $children) => { + return oncia_ProcedureQualifier__init_0($children.$head(), $this.$position232); }, -oncipvaf_Cypher25AstBuilder_exitArrowLine = ($this, $ctx) => { - return; +oncia_ProcedureQualifier__init_ = ($this, $glob, $position) => { + $this.$glob3 = $glob; + $this.$position232 = $position; }, -oncipvaf_Cypher25AstBuilder_exitRightArrow = ($this, $ctx) => { - return; +oncia_ProcedureQualifier__init_0 = (var_0, var_1) => { + let var_2 = new oncia_ProcedureQualifier(); + oncia_ProcedureQualifier__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_LabelQualifier() { + let a = this; jl_Object.call(a); + a.$label1 = null; + a.$position228 = null; +} +let oncia_LabelQualifier_productPrefix = $this => { + return $rt_s(6504); }, -oncipvaf_Cypher25AstBuilder_exitLiteral = ($this, $ctx) => { - let var$2, var$3, var$4; - a: { - var$2 = ju_ArrayList_get($ctx.$children0, 0); - if (var$2 instanceof oncip_AstRuleCtx) - var$2 = var$2.$ast0; - else { - if (!$rt_isInstance(var$2, oavrt_TerminalNode)) { - $ctx = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6897)), var$2); - jl_Throwable__init_0($ctx, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw($ctx); - } - var$4 = (var$2.$getSymbol()).$getType0(); - switch (var$4) { - case 104: - var$2 = new oncie_False; - oncipau_Util$_$callClinit(); - oncie_False__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 130: - case 131: - var$2 = new oncie_Infinity; - oncipau_Util$_$callClinit(); - oncie_Infinity__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 163: - var$2 = new oncie_NaN; - oncipau_Util$_$callClinit(); - oncie_NaN__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 178: - var$2 = new oncie_Null; - oncipau_Util$_$callClinit(); - oncie_Null__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 275: - var$2 = new oncie_True; - oncipau_Util$_$callClinit(); - oncie_True__init_(var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); - } - } - $ctx.$ast0 = var$2; +oncia_LabelQualifier_productArity = $this => { + return 1; }, -oncipvaf_Cypher25AstBuilder_exitNumberLiteral = ($this, $ctx) => { - let var$2, var$3; - a: { - oncipau_Util$_$callClinit(); - var$2 = ((oncipau_Util$_lastChild(oncipau_Util$_MODULE$, $ctx)).$getSymbol()).$getType0(); - switch (var$2) { - case 4: - var$3 = oncie_DecimalDoubleLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 5: - var$3 = oncie_SignedDecimalIntegerLiteral__init_0(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 6: - var$3 = oncie_SignedHexIntegerLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - case 7: - var$3 = oncie_SignedOctalIntegerLiteral__init_(oncip_AstRuleCtx_getText($ctx), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$2))); +oncia_LabelQualifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$label1; + default: } - $ctx.$ast0 = var$3; + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25AstBuilder_exitSignedIntegerLiteral = ($this, $ctx) => { - let var$2, var$3, var$4; - if (oncip_AstRuleCtx_getToken($ctx, 157, 0) === null) { - var$2 = new oncie_SignedDecimalIntegerLiteral; - var$3 = (oncipv_Cypher25Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText(); - oncipau_Util$_$callClinit(); - oncie_SignedDecimalIntegerLiteral__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } else { - var$2 = new oncie_SignedDecimalIntegerLiteral; - var$4 = (oncipv_Cypher25Parser$SignedIntegerLiteralContext_UNSIGNED_DECIMAL_INTEGER($ctx)).$getText(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(var$3, 45); - jl_StringBuilder_append(var$3, var$4); - var$3 = jl_AbstractStringBuilder_toString(var$3); - oncipau_Util$_$callClinit(); - oncie_SignedDecimalIntegerLiteral__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - } - $ctx.$ast0 = var$2; +oncia_LabelQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitStringListLiteral = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_ListLiteral; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$StringLiteralContext)); - sr_ClassTag$_$callClinit(); - oncie_ListLiteral__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_StringLiteral))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_LabelQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitListLiteral = ($this, $ctx) => { - let var$2, var$3, var$4; - var$2 = new oncie_ListLiteral; - oncipau_Util$_$callClinit(); - var$3 = oncipau_Util$_MODULE$; - var$4 = oncip_AstRuleCtx_getRuleContexts($ctx, $rt_cls(oncipv_Cypher25Parser$ExpressionContext)); - sr_ClassTag$_$callClinit(); - oncie_ListLiteral__init_(var$2, oncipau_Util$_astSeq(var$3, var$4, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Expression))), oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$2; +oncia_LabelQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25AstBuilder_exitStringLiteral = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; +oncia_LabelQualifier_equals = ($this, $x$1) => { + let var$2, var$3; a: { - var$2 = ($ctx.$start1.$getInputStream0()).$getText0(oavrm_Interval__init_($ctx.$start1.$getStartIndex() + 1 | 0, $ctx.$stop.$getStopIndex() - 1 | 0)); - var$3 = new oncie_StringLiteral; - oncipau_Util$_$callClinit(); - var$4 = oncipau_Util$_pos(oncipau_Util$_MODULE$, $ctx); - var$5 = $this.$exceptionFactory5; - var$6 = jl_String_indexOf(var$2, 92); - if (var$6 != (-1)) { - var$7 = 0; - var$8 = var$2.$nativeString.length; - var$9 = null; - var$10 = var$8 - 1 | 0; - while (true) { - if (var$6 == (-1)) { - if (var$9 !== null && !jl_StringBuilder_isEmpty(var$9)) { - if (var$7 >= var$2.$nativeString.length) { - var$2 = jl_AbstractStringBuilder_toString(var$9); - break a; - } - jl_AbstractStringBuilder_append2(var$9, var$2, var$7, var$2.$nativeString.length); - var$2 = jl_AbstractStringBuilder_toString(var$9); - break a; - } - break a; - } - if (var$6 == var$10) - break; - b: { - switch (jl_String_charAt(var$2, var$6 + 1 | 0)) { - case 34: - break; - case 39: - var$11 = 39; - break b; - case 92: - var$11 = 92; - break b; - case 98: - var$11 = 8; - break b; - case 102: - var$11 = 12; - break b; - case 110: - var$11 = 10; - break b; - case 114: - var$11 = 13; - break b; - case 116: - var$11 = 9; - break b; - default: - var$11 = 0; + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_LabelQualifier) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$label1; + $x$1 = $x$1.$label1; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) break b; + else + break c; } - var$11 = 34; - } - if (var$11) { - if (var$9 === null) { - var$9 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$9, var$2.$nativeString.length); - } - jl_AbstractStringBuilder_append2(var$9, var$2, var$7, var$6); - jl_AbstractStringBuilder_append0(var$9, var$11); - var$7 = var$6 + 2 | 0; + if ($x$1 !== null) + break b; } - var$6 = jl_String_indexOf0(var$2, 92, var$6 + 2 | 0); } - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$5, oncip_CypherErrorStrategy$_quoteMismatchErrorMessage, var$4)); + var$3 = 1; + break a; } + var$3 = 0; } - oncie_StringLiteral__init_0(var$3, var$2, oncipau_Util$_rangePos(oncipau_Util$_MODULE$, $ctx)); - $ctx.$ast0 = var$3; + return var$3; }, -oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$RelGraphToken = $this => { - let var$1, $$je; - if ($this.$RelGraphToken$module0 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$RelGraphToken$module0 !== null) - break a; - $this.$RelGraphToken$module0 = oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_0($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$RelGraphToken$module0; +oncia_LabelQualifier_dup = ($this, $children) => { + return oncia_LabelQualifier__init_0($children.$head(), $this.$position228); }, -oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$NodeGraphToken = $this => { - let var$1, $$je; - if ($this.$NodeGraphToken$module0 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$NodeGraphToken$module0 !== null) - break a; - $this.$NodeGraphToken$module0 = oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_1($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$NodeGraphToken$module0; +oncia_LabelQualifier__init_ = ($this, $label, $position) => { + $this.$label1 = $label; + $this.$position228 = $position; }, -oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlPrivilegeBuilder$$ElementGraphToken = $this => { - let var$1, $$je; - if ($this.$ElementGraphToken$module === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$ElementGraphToken$module !== null) - break a; - $this.$ElementGraphToken$module = oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_1($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - } - return $this.$ElementGraphToken$module; +oncia_LabelQualifier__init_0 = (var_0, var_1) => { + let var_2 = new oncia_LabelQualifier(); + oncia_LabelQualifier__init_(var_2, var_0, var_1); + return var_2; }, -oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Node = $this => { - let var$1, $$je; - if ($this.$Node$module0 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$Node$module0 !== null) +s_DummyImplicit = $rt_classWithoutFields(), +oncie_MatchMode$ = $rt_classWithoutFields(), +oncie_MatchMode$_MODULE$ = null, +oncie_MatchMode$__clinit_ = () => { + oncie_MatchMode$_MODULE$ = new oncie_MatchMode$; +}, +oncie_MatchMode$_default = ($this, $position) => { + return oncie_MatchMode$DifferentRelationships__init_(1, $position); +}; +function oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0() { + jl_Object.call(this); + this.$_0206 = null; +} +let oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0_apply = (var$0, var$1) => { + return oncie_PropertyKeyName__init_0(var$0.$_0206, var$1); +}; +function oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0() { + jl_Object.call(this); + this.$_023 = null; +} +let oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0_apply = (var$0, var$1) => { + return oncie_LabelName__init_(var$0.$_023, var$1); +}; +function oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0() { + jl_Object.call(this); + this.$_0584 = null; +} +let oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0_apply = (var$0, var$1) => { + return oncie_RelTypeName__init_0(var$0.$_0584, var$1); +}; +function oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_159_0() { + let a = this; jl_Object.call(a); + a.$_0416 = null; + a.$_1146 = 0; + a.$_253 = 0; +} +let oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_159_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + a: { + var$1 = var$1; + var$2 = var$0.$_0416; + var$3 = var$0.$_1146; + var$4 = var$0.$_253; + if ($rt_isInstance(var$2, oncia_UpdateClause) && var$3 == var$4) + var$2 = oncias_SemanticState_newSiblingScope(var$1.$state); + else { + if (var$2 instanceof oncia_CallClause) { + var$2 = var$2; + if ((var$2.$returnVariables()).$explicitVariables.$isEmpty() && !var$2.$yieldAll() && var$3 == var$4) { + var$2 = oncias_SemanticState_newSiblingScope(var$1.$state); break a; - $this.$Node$module0 = oncipvaf_DdlShowBuilder$Node$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - + } } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); + var$2 = var$1.$state; } - jl_Object_monitorExitSync($this); } - return $this.$Node$module0; + return oncias_SemanticCheckResult__init_(var$2, var$1.$errors0); +}; +function oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0() { + let a = this; jl_Object.call(a); + a.$_0803 = null; + a.$_1268 = null; +} +let oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0803; + var$3 = var$0.$_1268; + var$4 = new oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0; + var$4.$_0176 = var$2; + var$4.$_163 = var$1; + return jl_Boolean_valueOf(sc_IterableOnceOps_exists$(var$3, var$4)); +}, +oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$1.$expression0(); + var$3 = var$1.$alias(); + var$4 = new oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0; + var$4.$_0704 = var$2; + var$3 = s_Option_getOrElse(var$3, var$4); + return oncia_CommandResultItem__init_(var$2.$name4, var$3, var$1.$position()); +}, +oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0 = $rt_classWithoutFields(), +oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 39); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 39); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$Rel = $this => { - let var$1, $$je; - if ($this.$Rel$module === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$Rel$module !== null) - break a; - $this.$Rel$module = oncipvaf_DdlShowBuilder$Rel$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); +oncia_AuthImpl = $rt_classWithoutFields(0), +oncia_AuthImpl_checkDuplicates$ = $$this => { + return s_Option_getOrElse(sc_AbstractIterable_collectFirst(sc_AbstractIterable_groupBy($$this.$authAttributes(), new oncia_AuthImpl$checkDuplicates$lambda$_5_0), new oncia_AuthImpl$$anonfun$checkDuplicates$2), new oncia_AuthImpl$checkDuplicates$lambda$_5_1); +}, +oncia_AuthImpl_checkProviderName$ = $$this => { + if (!jl_String_isEmpty($$this.$provider())) { + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else + $$this = $$this.$error4($rt_s(6505), $$this.$position()); + return $$this; +}, +oncia_AuthImpl_requiredAttributes$ = ($$this, $func, $name) => { + $func = sci_List_find($$this.$authAttributes(), $func); + if ($func instanceof s_Some) { + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + if (!jl_Object_equals(s_None$_MODULE$, $func)) + $rt_throw(s_MatchError__init_($func)); + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + $$this = oncia_AdministrationCommandSemanticAnalysis$_missingMandatoryAuthClauseError(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $name, $$this.$provider(), $$this.$missingRequiredClauseErrorMessage($name), $$this.$position()); } - return $this.$Rel$module; + return $$this; }, -oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$NoEntity = $this => { - let var$1, $$je; - if ($this.$NoEntity$module0 === null) { - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$NoEntity$module0 !== null) - break a; - $this.$NoEntity$module0 = oncipvaf_DdlShowBuilder$NoEntity$__init_($this); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); +oncia_AuthImpl_noUnsupportedAttributes$ = ($$this, $func) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$3 = sci_List_find($$this.$authAttributes(), $func); + if (!(var$3 instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, var$3)) + $rt_throw(s_MatchError__init_(var$3)); + oncias_SemanticCheck$_$callClinit(); + $$this = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$3 = var$3.$value5; + var$4 = new oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_0; + var$4.$_0333 = $func; + oncia_allAuthAttr$_$callClinit(); + $func = sci_List_map(sci_List_filter(oncia_allAuthAttr$_allAuthsAttributes, var$4), new oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_1); + var$4 = var$3.$position(); + var$5 = sci_List_isEmpty($func) ? ju_List_of($rt_s(6506)) : scc_AsJavaExtensions$SeqHasAsJava_asJava(sj_CollectionConverters$_SeqHasAsJava(sj_CollectionConverters$_MODULE$, sci_List_map($func, new oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_2))); + oncias_SemanticCheck$_$callClinit(); + $func = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$8 = var$7.data; + oncias_SemanticError$_$callClinit(); + var$9 = $$this.$provider(); + var$10 = var$3.$name(); + $$this = ong_GqlParams$StringParam_process(ong_GqlParams$StringParam_input, var$9); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6507)), $$this), $rt_s(6508)); + var$3 = ong_GqlHelper_getGql42001_22N04(var$10, jl_AbstractStringBuilder_toString(var$3), var$5, var$4.$offset(), var$4.$line(), var$4.$column()); + var$5 = new oncias_SemanticError; + var$11 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$11); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$11, $rt_s(6509)), var$9), $rt_s(6510)), var$10), $rt_s(6511)); + oncias_SemanticError__init_(var$5, var$3, jl_AbstractStringBuilder_toString(var$11), var$4); + var$8[0] = var$5; + $$this = oncias_SemanticCheck$_error($func, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); } - return $this.$NoEntity$module0; + return $$this; }, -oncipvaf_Cypher25AstBuilder_exitEndOfFile = ($this, $ctx) => { - return; +oncia_AuthImpl_missingRequiredClauseErrorMessage$ = ($$this, $name) => { + let var$3; + $$this = $$this.$provider(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6512)), $name), $rt_s(6513)), $$this), $rt_s(901)); + return jl_AbstractStringBuilder_toString(var$3); }; -function oncipvaf_Cypher25SyntaxChecker() { +function oncia_ExternalAuth() { let a = this; jl_Object.call(a); - a.$exceptionFactory2 = null; - a.$_errors0 = null; + a.$provider1 = null; + a.$authAttributes2 = null; + a.$position160 = null; + a.$maybeId = null; } -let oncipvaf_Cypher25SyntaxChecker_errors = $this => { - return $this.$_errors0; +let oncia_ExternalAuth_checkDuplicates = $this => { + return oncia_AuthImpl_checkDuplicates$($this); }, -oncipvaf_Cypher25SyntaxChecker_exitEveryRule = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - switch ($ctx.$getRuleIndex()) { - case 41: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsBatchParameters($ctx), $rt_s(6911), 1); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsErrorParameters($ctx), $rt_s(6912), 1); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_subqueryInTransactionsReportParameters($ctx), $rt_s(6913), 1); - return; - case 49: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - if (oncipv_Cypher25Parser$InsertPatternContext_EQ($ctx) !== null) { - var$2 = $this.$_errors0; - var$3 = $this.$exceptionFactory2; - var$4 = oncipau_Util$_MODULE$; - $this.$_errors0 = var$2.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$3, $rt_s(4389), oncipau_Util$_pos(var$4, oncipau_Util$_ctxChild(var$4, $ctx, 0)))); - } - return; - case 85: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - var$2 = oncip_AstRuleCtx_getTokens($ctx, 44); - var$5 = ((oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx, 0)).$getSymbol()).$getType0() != 44 ? 0 : 1; - if (var$5 && var$2.$size() > 1) - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(4390), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (var$2.$get0(1)).$getSymbol()))); - else if (!var$5 && var$2.$size() > 0) - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(4390), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (var$2.$get0(0)).$getSymbol()))); - return; - case 133: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - var$4 = (oncipv_Cypher25Parser$FunctionInvocationContext_functionName($ctx)).$ast0; - var$2 = var$4.$name7; - if (var$2 !== null && jl_String_equals(var$2, $rt_s(428)) && sci_List_isEmpty(var$4.$namespace3.$parts0) && (oncipv_Cypher25Parser$FunctionInvocationContext_functionArgument($ctx)).$size() == 2) - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(6937), (oncipv_Cypher25Parser$FunctionArgumentContext_expression(oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$FunctionArgumentContext), 1))).$ast0.$position())); - return; - case 140: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - if ((oncipv_Cypher25Parser$TypePartContext_typeName($ctx)).$ast0 instanceof oncius_ClosedDynamicUnionType && oncipv_Cypher25Parser$TypePartContext_typeNullability($ctx) !== null) - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(4521), oncipau_Util$_pos(oncipau_Util$_MODULE$, oncipv_Cypher25Parser$TypePartContext_typeNullability($ctx)))); - return; - case 177: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkCreateConstraint($this, $ctx); - return; - case 185: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - var$6 = oncipv_Cypher25Parser$CreateLookupIndexContext_symbolicNameString($ctx); - var$4 = oncipv_Cypher25Parser$CreateLookupIndexContext_lookupIndexRelPattern($ctx); - var$2 = jl_String_toUpperCase(oncip_AstRuleCtx_getText(var$6)); - if (var$2 !== null && jl_String_equals(var$2, $rt_s(6192)) && var$4 !== null && oncip_AstRuleCtx_getToken(var$4, 87, 0) === null) - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(6936), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncip_AstRuleCtx_getToken($ctx, 151, 0)).$getSymbol()))); - return; - case 190: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkEnclosedPropertyList($this, $ctx); - return; - case 213: - oncipau_Util$_$callClinit(); - $ctx = $ctx; - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$CreateUserContext_userStatus($ctx), $rt_s(6920), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$CreateUserContext_homeDatabase($ctx), $rt_s(6921), 0); - return; - case 217: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkAlterUser($this, $ctx); - return; - case 236: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkAllPrivilege($this, $ctx); - return; - case 267: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkGlobPart($this, $ctx); - return; - case 281: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkCreateDatabase($this, $ctx); - return; - case 288: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkAlterDatabase($this, $ctx); - return; - case 290: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkAlterDatabaseTopology($this, $ctx); - return; - case 299: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkCreateAlias($this, $ctx); - return; - case 301: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkAlterAlias($this, $ctx); - return; - case 312: - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_checkSymbolicAliasNameOrParameter($this, $ctx); - return; - default: - } +oncia_ExternalAuth_checkProviderName = $this => { + return oncia_AuthImpl_checkProviderName$($this); }, -oncipvaf_Cypher25SyntaxChecker_check = ($this, $ctx) => { - oncipvaf_Cypher25SyntaxChecker_exitEveryRule($this, $ctx); - return $this.$_errors0.$isEmpty(); +oncia_ExternalAuth_missingRequiredClauseErrorMessage = ($this, $name) => { + return oncia_AuthImpl_missingRequiredClauseErrorMessage$($this, $name); }, -oncipvaf_Cypher25SyntaxChecker_inputPosition = ($this, $symbol) => { - onciu_InputPosition$_$callClinit(); - return onciu_InputPosition$_apply(onciu_InputPosition$_MODULE$, $symbol.$getStartIndex(), $symbol.$getLine0(), $symbol.$getCharPositionInLine() + 1 | 0); +oncia_ExternalAuth_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncipvaf_Cypher25SyntaxChecker_errorOnDuplicate = ($this, $token, $description, $isParam) => { - let var$4, var$5, var$6; - if (!$isParam) { - var$4 = $this.$_errors0; - var$5 = $this.$exceptionFactory2; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6914)), $description), $rt_s(6915)); - $this.$_errors0 = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $token))); - return; - } - var$4 = $this.$_errors0; - var$5 = $this.$exceptionFactory2; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6916)), $description), $rt_s(6917)); - $this.$_errors0 = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$5, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $token))); +oncia_ExternalAuth_provider = $this => { + return $this.$provider1; }, -oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx = ($this, $ctx, $description, $isParam) => { - if ($ctx.$size() <= 1) - return; - oncipau_Util$_$callClinit(); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicate($this, (oncipau_Util$_nodeChild(oncipau_Util$_MODULE$, $ctx.$get0(1), 0)).$getSymbol(), $description, $isParam); +oncia_ExternalAuth_authAttributes = $this => { + return $this.$authAttributes2; }, -oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule = ($this, $params, $description, $isParam) => { - if ($params.$size() <= 1) - return; - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicate($this, ($params.$get0(1)).$start1, $description, $isParam); +oncia_ExternalAuth_position = $this => { + return $this.$position160; }, -oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingDots = ($this, $aliasesNames) => { - let $aliasName, $start, var$4, var$5; - if ($aliasesNames.$size() <= 0) - return; - $aliasName = $aliasesNames.$get0(0); - if (oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName) !== null && (oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName))).$size() > oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS) { - $start = ((oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName($aliasName))).$get0(0)).$start1; - $aliasesNames = $this.$_errors0; - var$4 = $this.$exceptionFactory2; - $aliasName = oncip_AstRuleCtx_getText($aliasName); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6918)), $aliasName), $rt_s(6919)); - $this.$_errors0 = $aliasesNames.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$4, jl_AbstractStringBuilder_toString(var$5), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $start))); - return; - } +oncia_ExternalAuth_checkRequiredAttributes = $this => { + let var$1, var$2; + var$1 = oncia_AuthImpl_requiredAttributes$($this, new oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_0, $rt_s(5629)); + var$2 = new oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_1; + var$2.$_0324 = $this; + return oncias_SemanticCheck_ifOkChain$(var$1, var$2); }, -oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingTooManyComponents = ($this, $aliasesNames, $maxComponents, $errorTemplate) => { - let var$4; - if (!sc_IterableOnceOps_nonEmpty$($aliasesNames)) - return; - var$4 = sci_List_filter($aliasesNames, new oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0); - $aliasesNames = new oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1; - $aliasesNames.$_0854 = $this; - $aliasesNames.$_1293 = $maxComponents; - $aliasesNames.$_295 = $errorTemplate; - sci_List_foreach(var$4, $aliasesNames); +oncia_ExternalAuth_checkNoUnsupportedAttributes = $this => { + return oncia_AuthImpl_noUnsupportedAttributes$($this, new oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_66_0); }, -oncipvaf_Cypher25SyntaxChecker_checkCreateAlias = ($this, $ctx) => { - if (oncipv_Cypher25Parser$CreateAliasContext_stringOrParameter($ctx) === null) - return; - if (oncipv_Cypher25Parser$CreateAliasContext_AT($ctx) === null && oncip_AstRuleCtx_getToken($ctx, 285, 0) === null && oncip_AstRuleCtx_getToken($ctx, 188, 0) === null && oncipv_Cypher25Parser$CreateAliasContext_DRIVER($ctx) === null) - return; - oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingDots($this, ju_List_of0(oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$CreateAliasContext_aliasName($ctx)), oncipv_Cypher25Parser$DatabaseNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$CreateAliasContext_databaseName($ctx)))); +oncia_ExternalAuth_checkIdIsStringLiteralOrParameter = $this => { + let var$1, var$2; + var$1 = s_Option_map($this.$maybeId, new oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_0); + var$2 = new oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_1; + var$2.$_0141 = $this; + return s_Option_getOrElse(var$1, var$2); }, -oncipvaf_Cypher25SyntaxChecker_checkAlterAlias = ($this, $ctx) => { - let $aliasTargets, $hasUrl, $usernames, $passwords, $driverSettings; - $aliasTargets = oncipv_Cypher25Parser$AlterAliasContext_alterAliasTarget($ctx); - $hasUrl = !$aliasTargets.$isEmpty() && oncip_AstRuleCtx_getToken($aliasTargets.$get0(0), 27, 0) !== null ? 1 : 0; - $usernames = oncipv_Cypher25Parser$AlterAliasContext_alterAliasUser($ctx); - $passwords = oncipv_Cypher25Parser$AlterAliasContext_alterAliasPassword($ctx); - $driverSettings = oncipv_Cypher25Parser$AlterAliasContext_alterAliasDriver($ctx); - if (!(!$hasUrl && $usernames.$isEmpty() && $passwords.$isEmpty() && $driverSettings.$isEmpty())) - oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingDots($this, ju_List_of(oncipv_Cypher25Parser$AliasNameContext_symbolicAliasNameOrParameter(oncipv_Cypher25Parser$AlterAliasContext_aliasName($ctx)))); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, $driverSettings, $rt_s(535), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, $usernames, $rt_s(559), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, $passwords, $rt_s(558), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher25Parser$AlterAliasContext_alterAliasProperties($ctx), $rt_s(532), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, $aliasTargets, $rt_s(6315), 0); +oncia_ExternalAuth_productPrefix = $this => { + return $rt_s(6514); }, -oncipvaf_Cypher25SyntaxChecker_checkSymbolicAliasNameOrParameter = ($this, $ctx) => { - switch ($ctx.$parent.$getRuleIndex()) { - case 280: - break; - case 281: - oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingTooManyComponents($this, sci_$colon$colon__init_($ctx, sci_Nil$_MODULE$), oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS, $rt_s(4407)); - return; +oncia_ExternalAuth_productArity = $this => { + return 2; +}, +oncia_ExternalAuth_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$provider1; + case 1: + return $this.$authAttributes2; default: - oncipvaf_Cypher25SyntaxChecker_errorOnAliasNameContainingTooManyComponents($this, sci_$colon$colon__init_($ctx, sci_Nil$_MODULE$), oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS, $rt_s(4520)); - return; } + return sr_Statics_ioobe($x$1); }, -oncipvaf_Cypher25SyntaxChecker_checkAlterUser = ($this, $ctx) => { - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$AlterUserContext_userStatus($ctx), $rt_s(6920), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$AlterUserContext_homeDatabase($ctx), $rt_s(6921), 0); +oncia_ExternalAuth_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25SyntaxChecker_checkAllPrivilege = ($this, $ctx) => { - let $privilegeType, $privilegeTarget, $privilege, $target, $symbol; - $privilegeType = oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$AllPrivilegeTypeContext), 0); - $privilegeTarget = oncipv_Cypher25Parser$AllPrivilegeContext_allPrivilegeTarget($ctx); - if ($privilegeType === null) - return; - $privilege = oncip_AstRuleCtx_getToken($privilegeType, 116, 0) !== null ? s_Some__init_($rt_s(761)) : oncip_AstRuleCtx_getToken($privilegeType, 65, 0) !== null ? s_Some__init_($rt_s(31)) : oncip_AstRuleCtx_getToken($privilegeType, 61, 0) === null ? s_None$_MODULE$ : s_Some__init_($rt_s(4404)); - if ($privilegeTarget instanceof oncipv_Cypher25Parser$DefaultTargetContext) { - $ctx = $privilegeTarget; - $target = $privilege instanceof s_Some && jl_String_equals($rt_s(31), $privilege.$value5) ? s_Tuple2__init_($rt_s(589), (oncip_AstRuleCtx_getToken($ctx, 122, 0)).$getSymbol()) : oncipv_Cypher25Parser$DefaultTargetContext_GRAPH($ctx) === null ? s_Tuple2__init_($rt_s(4404), (oncipv_Cypher25Parser$DefaultTargetContext_DATABASE($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(761), (oncipv_Cypher25Parser$DefaultTargetContext_GRAPH($ctx)).$getSymbol()); - } else if ($privilegeTarget instanceof oncipv_Cypher25Parser$DatabaseVariableTargetContext) { - $ctx = $privilegeTarget; - $target = oncipv_Cypher25Parser$DatabaseVariableTargetContext_DATABASE($ctx) !== null ? s_Tuple2__init_($rt_s(4404), (oncipv_Cypher25Parser$DatabaseVariableTargetContext_DATABASE($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(6174), (oncip_AstRuleCtx_getToken($ctx, 62, 0)).$getSymbol()); - } else if (!($privilegeTarget instanceof oncipv_Cypher25Parser$GraphVariableTargetContext)) { - if (!($privilegeTarget instanceof oncipv_Cypher25Parser$DBMSTargetContext)) { - $ctx = new jl_IllegalStateException; - jl_Throwable__init_0($ctx, $rt_s(6896)); - $rt_throw($ctx); - } - $ctx = $privilegeTarget; - $target = s_Tuple2__init_($rt_s(31), (oncip_AstRuleCtx_getToken($ctx, 65, 0)).$getSymbol()); - } else { - $ctx = $privilegeTarget; - $target = oncipv_Cypher25Parser$GraphVariableTargetContext_GRAPH($ctx) !== null ? s_Tuple2__init_($rt_s(761), (oncipv_Cypher25Parser$GraphVariableTargetContext_GRAPH($ctx)).$getSymbol()) : s_Tuple2__init_($rt_s(6212), (oncip_AstRuleCtx_getToken($ctx, 117, 0)).$getSymbol()); - } - $ctx = s_Tuple2__init_($privilege, $target); - $privilegeTarget = $ctx.$_10; - $ctx = $ctx.$_20; - if ($privilegeTarget instanceof s_Some) { - $privilege = $privilegeTarget.$value5; - if ($ctx !== null) { - $target = $ctx.$_1(); - $symbol = $ctx.$_2(); - if (jl_String_startsWith($target, $privilege)) - return; - $ctx = $this.$_errors0; - $privilegeTarget = $this.$exceptionFactory2; - $privilegeType = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($privilegeType); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($privilegeType, $rt_s(3971)), $target), $rt_s(6924)), $privilege), 34); - $this.$_errors0 = $ctx.$appended(onciu_OpenCypherExceptionFactory_syntaxException($privilegeTarget, jl_AbstractStringBuilder_toString($privilegeType), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $symbol))); - return; - } - } +oncia_ExternalAuth_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25SyntaxChecker_checkGlobPart = ($this, $ctx) => { - let var$2; - if (oncipv_Cypher25Parser$GlobPartContext_DOT($ctx) !== null) - return; - var$2 = $ctx.$parent.$parent; - if (var$2 instanceof oncipv_Cypher25Parser$GlobRecursiveContext && oncipv_Cypher25Parser$GlobPartContext_escapedSymbolicNameString(oncipv_Cypher25Parser$GlobRecursiveContext_globPart(var$2)) !== null) - oncipvaf_Cypher25SyntaxChecker_addError$1($this, $ctx); - else if (var$2 instanceof oncipv_Cypher25Parser$GlobContext && oncipv_Cypher25Parser$GlobContext_escapedSymbolicNameString(var$2) !== null) - oncipvaf_Cypher25SyntaxChecker_addError$1($this, $ctx); +oncia_ExternalAuth_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher25SyntaxChecker_checkCreateConstraint = ($this, $ctx) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = oncipv_Cypher25Parser$CreateConstraintContext_constraintType($ctx); - if (var$2 instanceof oncipv_Cypher25Parser$ConstraintIsUniqueContext) { - var$2 = var$2; - if (oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx) !== null && !(oncip_AstRuleCtx_getToken(var$2, 218, 0) === null && oncip_AstRuleCtx_getToken(var$2, 217, 0) === null)) { - var$3 = $this.$_errors0; - var$4 = $this.$exceptionFactory2; - var$5 = oncipcaf_ConstraintType_REL_UNIQUE.$description0; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(var$6, 39); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$5), $rt_s(6927)); - $this.$_errors0 = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$4, jl_AbstractStringBuilder_toString(var$6), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx)).$start1))); - } - if (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx) !== null && oncip_AstRuleCtx_getToken(var$2, 169, 0) !== null) { - var$2 = $this.$_errors0; - var$3 = $this.$exceptionFactory2; - var$6 = oncipcaf_ConstraintType_NODE_UNIQUE.$description0; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(var$4, 39); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$6), $rt_s(6928)); - $this.$_errors0 = var$2.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$3, jl_AbstractStringBuilder_toString(var$4), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx)).$start1))); - return; +oncia_ExternalAuth_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ExternalAuth) ? 0 : 1)) + break b; + d: { + $x$1 = $x$1; + var$2 = $this.$provider1; + var$3 = $x$1.$provider1; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + var$3 = $this.$authAttributes2; + $x$1 = $x$1.$authAttributes2; + if (var$3 !== null) { + if (!sci_List_equals(var$3, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$4 = 1; + break a; } - return; - } - if (!(var$2 instanceof oncipv_Cypher25Parser$ConstraintKeyContext)) { - if (var$2 instanceof oncipv_Cypher25Parser$ConstraintTypedContext ? 1 : !(var$2 instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) ? 0 : 1) - return; - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(6929), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_constraintType($ctx)).$start1))); - return; - } - var$2 = var$2; - if (oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx) !== null && !(oncip_AstRuleCtx_getToken(var$2, 218, 0) === null && oncip_AstRuleCtx_getToken(var$2, 217, 0) === null)) { - var$4 = $this.$_errors0; - var$6 = $this.$exceptionFactory2; - var$3 = oncipcaf_ConstraintType_REL_KEY.$description0; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_AbstractStringBuilder_append0(var$5, 39); - jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$3), $rt_s(6927)); - $this.$_errors0 = var$4.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, jl_AbstractStringBuilder_toString(var$5), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_commandNodePattern($ctx)).$start1))); - } - if (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx) !== null && oncip_AstRuleCtx_getToken(var$2, 169, 0) !== null) { - var$2 = $this.$_errors0; - var$3 = $this.$exceptionFactory2; - var$6 = oncipcaf_ConstraintType_NODE_KEY.$description0; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(var$4, 39); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$6), $rt_s(6928)); - $this.$_errors0 = var$2.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$3, jl_AbstractStringBuilder_toString(var$4), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, (oncipv_Cypher25Parser$CreateConstraintContext_commandRelPattern($ctx)).$start1))); - return; + var$4 = 0; } + return var$4; }, -oncipvaf_Cypher25SyntaxChecker_checkEnclosedPropertyList = ($this, $ctx) => { - let $secondProperty; - if ((oncipv_Cypher25Parser$EnclosedPropertyListContext_property($ctx)).$size() > 1 && $ctx.$parent !== null) { - $secondProperty = (oavr_ParserRuleContext_getRuleContext($ctx, $rt_cls(oncipv_Cypher25Parser$PropertyContext), 1)).$start1; - $ctx = $ctx.$parent.$parent; - if ($ctx instanceof oncipv_Cypher25Parser$ConstraintTypedContext) { - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(6931), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $secondProperty))); - return; - } - if ($ctx instanceof oncipv_Cypher25Parser$ConstraintIsNotNullContext) { - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(6932), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $secondProperty))); - return; - } - if ($ctx instanceof oncipv_Cypher25Parser$DropConstraintContext && oncipv_Cypher25Parser$DropConstraintContext_EXISTS($ctx) !== null) { - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(6930), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $secondProperty))); - return; - } - return; - } +oncia_ExternalAuth_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipvaf_Cypher25SyntaxChecker_checkCreateDatabase = ($this, $ctx) => { - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$CreateDatabaseContext_primaryTopology($ctx), $rt_s(6269), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$CreateDatabaseContext_secondaryTopology($ctx), $rt_s(6297), 0); +oncia_ExternalAuth__init_0 = ($this, $provider, $authAttributes, $position) => { + $this.$provider1 = $provider; + $this.$authAttributes2 = $authAttributes; + $this.$position160 = $position; + $this.$maybeId = sc_AbstractIterable_collectFirst($authAttributes, new oncia_ExternalAuth$$anonfun$2); }, -oncipvaf_Cypher25SyntaxChecker_checkAlterDatabase = ($this, $ctx) => { - let $topology, $optionCtxs, $keyNames, $keySet, $i; - if (!(oncipv_Cypher25Parser$AlterDatabaseContext_REMOVE($ctx)).$isEmpty()) { - oncipau_Util$_$callClinit(); - $topology = oncipau_Util$_MODULE$; - $optionCtxs = oncipv_Cypher25Parser$AlterDatabaseContext_symbolicNameString($ctx); - sr_ClassTag$_$callClinit(); - $keyNames = oncipau_Util$_astSeq($topology, $optionCtxs, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(jl_String))); - scm_Set$_$callClinit(); - $keySet = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); - $i = sr_IntRef_create(0); - $topology = new oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0; - $topology.$_096 = $this; - $topology.$_139 = $keySet; - $topology.$_219 = $ctx; - $topology.$_39 = $i; - sc_IterableOnceOps_foreach$($keyNames, $topology); - } - if (!(oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption($ctx)).$isEmpty()) { - oncipau_Util$_$callClinit(); - $optionCtxs = oncipau_Util$_MODULE$; - $keyNames = oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseOption($ctx); - sr_ClassTag$_$callClinit(); - $keyNames = sc_StrictOptimizedIterableOps_flatMap$(oncipau_Util$_astSeq($optionCtxs, $keyNames, 0, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(sci_Map))), new oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1); - scm_Set$_$callClinit(); - $keySet = sc_IterableFactory$Delegate_empty(scm_Set$_MODULE$); - $i = sr_IntRef_create(0); - $topology = new oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2; - $topology.$_0567 = $this; - $topology.$_1194 = $keySet; - $topology.$_263 = $ctx; - $topology.$_319 = $i; - sc_IterableOnceOps_foreach$($keyNames, $topology); - } - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseAccess($ctx), $rt_s(4550), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateCtx($this, oncipv_Cypher25Parser$AlterDatabaseContext_alterDatabaseTopology($ctx), $rt_s(3517), 0); +oncia_ExternalAuth__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_ExternalAuth(); + oncia_ExternalAuth__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncia_NativeAuth() { + let a = this; jl_Object.call(a); + a.$authAttributes1 = null; + a.$position262 = null; + a.$provider2 = null; +} +let oncia_NativeAuth_checkDuplicates = $this => { + return oncia_AuthImpl_checkDuplicates$($this); }, -oncipvaf_Cypher25SyntaxChecker_checkAlterDatabaseTopology = ($this, $ctx) => { - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$AlterDatabaseTopologyContext_primaryTopology($ctx), $rt_s(6269), 0); - oncipvaf_Cypher25SyntaxChecker_errorOnDuplicateRule($this, oncipv_Cypher25Parser$AlterDatabaseTopologyContext_secondaryTopology($ctx), $rt_s(6297), 0); +oncia_NativeAuth_checkProviderName = $this => { + return oncia_AuthImpl_checkProviderName$($this); }, -oncipvaf_Cypher25SyntaxChecker_addError$1 = ($this, $ctx$1) => { - $this.$_errors0 = $this.$_errors0.$appended(onciu_OpenCypherExceptionFactory_syntaxException($this.$exceptionFactory2, $rt_s(6938), oncipvaf_Cypher25SyntaxChecker_inputPosition($this, $ctx$1.$start1))); +oncia_NativeAuth_missingRequiredClauseErrorMessage = ($this, $name) => { + return oncia_AuthImpl_missingRequiredClauseErrorMessage$($this, $name); }, -oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_0 = $rt_classWithoutFields(), -oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncia_AuthId); -}; -function oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_1() { - jl_Object.call(this); - this.$_0668 = null; -} -let oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_1_apply = var$0 => { - return oncia_ExternalAuth_checkIdIsStringLiteralOrParameter(var$0.$_0668); +oncia_NativeAuth_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncia_NativeAuth$checkRequiredAttributes$lambda$_59_0 = $rt_classWithoutFields(), -oncia_NativeAuth$checkRequiredAttributes$lambda$_59_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncia_Password); +oncia_NativeAuth_authAttributes = $this => { + return $this.$authAttributes1; }, -oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_61_0 = $rt_classWithoutFields(), -oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_61_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_ExternalAuthAttribute) ? 0 : 1); +oncia_NativeAuth_position = $this => { + return $this.$position262; }, -oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_60_0 = $rt_classWithoutFields(), -oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_60_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_NativeAuthAttribute) ? 0 : 1); +oncia_NativeAuth_provider = $this => { + return $this.$provider2; }, -oavrm_MurmurHash = $rt_classWithoutFields(), -oavrm_MurmurHash_initialize = () => { - return 0; +oncia_NativeAuth_checkRequiredAttributes = $this => { + return oncia_AuthImpl_requiredAttributes$($this, new oncia_NativeAuth$checkRequiredAttributes$lambda$_64_0, $rt_s(555)); }, -oavrm_MurmurHash_update = ($hash, $value) => { - let var$3; - var$3 = $rt_imul($value, (-862048943)); - $hash = $hash ^ $rt_imul(var$3 << 15 | (var$3 >>> 17 | 0), 461845907); - return (($hash << 13 | ($hash >>> 19 | 0)) * 5 | 0) + (-430675100) | 0; +oncia_NativeAuth_checkNoUnsupportedAttributes = $this => { + return oncia_AuthImpl_noUnsupportedAttributes$($this, new oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_65_0); }, -oavrm_MurmurHash_update0 = ($hash, $value) => { - return oavrm_MurmurHash_update($hash, $value === null ? 0 : $value.$hashCode()); +oncia_NativeAuth_password = $this => { + return sc_AbstractIterable_collectFirst($this.$authAttributes1, new oncia_NativeAuth$$anonfun$password$1); }, -oavrm_MurmurHash_finish = ($hash, $numberOfWords) => { - $hash = $hash ^ ($numberOfWords * 4 | 0); - $hash = $rt_imul($hash ^ ($hash >>> 16 | 0), (-2048144789)); - $hash = $rt_imul($hash ^ ($hash >>> 13 | 0), (-1028477387)); - return $hash ^ ($hash >>> 16 | 0); +oncia_NativeAuth_changeRequired = $this => { + return sc_AbstractIterable_collectFirst($this.$authAttributes1, new oncia_NativeAuth$$anonfun$changeRequired$1); }, -oavrm_MurmurHash_hashCode = ($data, $hash) => { - let var$3, var$4; - $data = $data.data; - var$3 = $data.length; - var$4 = 0; - while (var$4 < var$3) { - $hash = oavrm_MurmurHash_update0($hash, $data[var$4]); - var$4 = var$4 + 1 | 0; - } - return oavrm_MurmurHash_finish($hash, var$3); -}; -function sc_StringView() { - sc_AbstractIndexedSeqView.call(this); - this.$s1 = null; -} -let sc_StringView_length = $this => { - return $this.$s1.$nativeString.length; +oncia_NativeAuth_productPrefix = $this => { + return $rt_s(6515); }, -sc_StringView_apply = ($this, $i) => { - return jl_Character_valueOf(jl_String_charAt($this.$s1, $i)); +oncia_NativeAuth_productArity = $this => { + return 1; }, -oncip_CypherErrorStrategy$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$_MODULE$ = null, -oncip_CypherErrorStrategy$_quoteMismatchErrorMessage = null, -oncip_CypherErrorStrategy$_commentMismatchErrorMessage = null, -oncip_CypherErrorStrategy$__clinit_ = () => { - oncip_CypherErrorStrategy$_MODULE$ = new oncip_CypherErrorStrategy$; - oncip_CypherErrorStrategy$_quoteMismatchErrorMessage = $rt_s(2308); - oncip_CypherErrorStrategy$_commentMismatchErrorMessage = $rt_s(3966); +oncia_NativeAuth_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$authAttributes1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncip_CypherErrorStrategy$message$lambda$_7_0 = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$message$lambda$_7_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(var$1.$getType0() != (-1) && var$1.$getType0() != (-2) && var$1.$getType0() ? 1 : 0); +oncia_NativeAuth_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncip_CypherErrorStrategy$message$lambda$_7_1 = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$message$lambda$_7_1_apply = (var$0, var$1) => { - var$1 = var$1; - s_Option$_$callClinit(); - return s_Option$_apply(s_Option$_MODULE$, var$1.$getText()); +oncia_NativeAuth_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncip_CypherErrorStrategy$message$lambda$_7_2 = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$message$lambda$_7_2_apply = (var$0, var$1) => { - return jl_String_replace(jl_String_replace(jl_String_replace(var$1, $rt_s(93), $rt_s(4417)), $rt_s(4448), $rt_s(4419)), $rt_s(4449), $rt_s(4416)); +oncia_NativeAuth_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncip_CypherErrorStrategy$message$lambda$_7_3 = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$message$lambda$_7_3_apply = var$0 => { - return $rt_s(4); -}; -function oavra_SingletonPredictionContext() { - let a = this; oavra_PredictionContext.call(a); - a.$parent1 = null; - a.$returnState = 0; -} -let oavra_SingletonPredictionContext_$assertionsDisabled = 0, -oavra_SingletonPredictionContext__init_ = ($this, $parent, $returnState) => { - oavra_PredictionContext__init_($this, $parent === null ? oavrm_MurmurHash_finish(1, 0) : oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update0(1, $parent), $returnState), 2)); - if (!oavra_SingletonPredictionContext_$assertionsDisabled && $returnState == (-1)) { - $parent = new jl_AssertionError; - jl_Throwable__init_($parent); - $rt_throw($parent); +oncia_NativeAuth_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_NativeAuth) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$authAttributes1; + $x$1 = $x$1.$authAttributes1; + if (var$2 !== null) { + if (!sci_List_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$3 = 1; + break a; + } + var$3 = 0; } - $this.$parent1 = $parent; - $this.$returnState = $returnState; + return var$3; }, -oavra_SingletonPredictionContext__init_0 = (var_0, var_1) => { - let var_2 = new oavra_SingletonPredictionContext(); - oavra_SingletonPredictionContext__init_(var_2, var_0, var_1); +oncia_NativeAuth_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_NativeAuth__init_0 = ($this, $authAttributes, $position) => { + $this.$authAttributes1 = $authAttributes; + $this.$position262 = $position; + oncia_AdministrationCommand$_$callClinit(); + $this.$provider2 = oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$); +}, +oncia_NativeAuth__init_ = (var_0, var_1) => { + let var_2 = new oncia_NativeAuth(); + oncia_NativeAuth__init_0(var_2, var_0, var_1); return var_2; }, -oavra_SingletonPredictionContext_create = ($parent, $returnState) => { - if ($returnState == 2147483647 && $parent === null) { - oavra_EmptyPredictionContext_$callClinit(); - return oavra_EmptyPredictionContext_Instance; - } - return oavra_SingletonPredictionContext__init_0($parent, $returnState); +oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$1.$expression0(); + var$3 = var$1.$alias(); + var$4 = new oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0; + var$4.$_0367 = var$2; + var$3 = s_Option_getOrElse(var$3, var$4); + return oncia_CommandResultItem__init_(var$2.$name4, var$3, var$1.$position()); +}; +function scc_JavaCollectionWrappers$JCollectionWrapper() { + sc_AbstractIterable.call(this); + this.$underlying34 = null; +} +let scc_JavaCollectionWrappers$JCollectionWrapper_iterator = $this => { + return scc_AsScalaExtensions$IteratorHasAsScala_asScala(scc_AsScalaExtensions$IteratorHasAsScala__init_(sj_CollectionConverters$_MODULE$, $this.$underlying34.$iterator())); +}; +function oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0() { + jl_Object.call(this); + this.$_01030 = null; +} +let oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_01030; + var$3 = new oncie_Variable; + var$4 = var$2.$position(); + oncie_Variable$_$callClinit(); + oncie_Variable__init_(var$3, var$1, var$4, oncie_Variable$_isIsolatedDefault(oncie_Variable$_MODULE$)); + return var$3; +}; +function oncia_RelationshipQualifier() { + let a = this; jl_Object.call(a); + a.$reltype = null; + a.$position196 = null; +} +let oncia_RelationshipQualifier_productPrefix = $this => { + return $rt_s(6516); }, -oavra_SingletonPredictionContext_size = $this => { +oncia_RelationshipQualifier_productArity = $this => { return 1; }, -oavra_SingletonPredictionContext_getParent = ($this, $index) => { - let var$2; - if (!oavra_SingletonPredictionContext_$assertionsDisabled && $index) { - var$2 = new jl_AssertionError; - jl_Throwable__init_(var$2); - $rt_throw(var$2); +oncia_RelationshipQualifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$reltype; + default: } - return $this.$parent1; + return sr_Statics_ioobe($x$1); }, -oavra_SingletonPredictionContext_getReturnState = ($this, $index) => { - let var$2; - if (!oavra_SingletonPredictionContext_$assertionsDisabled && $index) { - var$2 = new jl_AssertionError; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - return $this.$returnState; +oncia_RelationshipQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_SingletonPredictionContext_equals = ($this, $o) => { - let $s, var$3; - if ($this === $o) - return 1; - if (!($o instanceof oavra_SingletonPredictionContext)) - return 0; - if ($this.$cachedHashCode0 != $o.$hashCode()) - return 0; +oncia_RelationshipQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RelationshipQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_RelationshipQualifier_equals = ($this, $x$1) => { + let var$2, var$3; a: { - $s = $o; - if ($this.$returnState == $s.$returnState) { - $o = $this.$parent1; - if ($o !== null && $o.$equals($s.$parent1)) { - var$3 = 1; - break a; + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_RelationshipQualifier) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$reltype; + $x$1 = $x$1.$reltype; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } } + var$3 = 1; + break a; } var$3 = 0; } return var$3; }, -oavra_SingletonPredictionContext_toString = $this => { - let $up, var$2, var$3; - $up = $this.$parent1; - $up = $up === null ? $rt_s(4) : $up.$toString(); - if (!$up.$nativeString.length) { - var$2 = $this.$returnState; - if (var$2 != 2147483647) - return jl_String_valueOf0(var$2); - return $rt_s(4451); - } - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append(var$3, jl_String_valueOf0($this.$returnState)); - jl_AbstractStringBuilder_append(var$3, $rt_s(384)); - jl_AbstractStringBuilder_append(var$3, $up); - return jl_AbstractStringBuilder_toString(var$3); +oncia_RelationshipQualifier_dup = ($this, $children) => { + return oncia_RelationshipQualifier__init_0($children.$head(), $this.$position196); }, -oavra_SingletonPredictionContext__clinit_ = () => { - oavra_SingletonPredictionContext_$assertionsDisabled = 0; +oncia_RelationshipQualifier__init_ = ($this, $reltype, $position) => { + $this.$reltype = $reltype; + $this.$position196 = $position; }, -oavra_EmptyPredictionContext = $rt_classWithoutFields(oavra_SingletonPredictionContext), -oavra_EmptyPredictionContext_Instance = null, -oavra_EmptyPredictionContext_$callClinit = () => { - oavra_EmptyPredictionContext_$callClinit = $rt_eraseClinit(oavra_EmptyPredictionContext); - oavra_EmptyPredictionContext__clinit_(); +oncia_RelationshipQualifier__init_0 = (var_0, var_1) => { + let var_2 = new oncia_RelationshipQualifier(); + oncia_RelationshipQualifier__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_UserQualifier() { + let a = this; jl_Object.call(a); + a.$username2 = null; + a.$position222 = null; +} +let oncia_UserQualifier_username = $this => { + return $this.$username2; }, -oavra_EmptyPredictionContext_isEmpty = $this => { - return 1; +oncia_UserQualifier_productPrefix = $this => { + return $rt_s(6517); }, -oavra_EmptyPredictionContext_size = $this => { +oncia_UserQualifier_productArity = $this => { return 1; }, -oavra_EmptyPredictionContext_getParent = ($this, $index) => { - return null; -}, -oavra_EmptyPredictionContext_getReturnState = ($this, $index) => { - return $this.$returnState; -}, -oavra_EmptyPredictionContext_equals = ($this, $o) => { - return $this !== $o ? 0 : 1; +oncia_UserQualifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$username2; + default: + } + return sr_Statics_ioobe($x$1); }, -oavra_EmptyPredictionContext_toString = $this => { - return $rt_s(4451); +oncia_UserQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_EmptyPredictionContext__clinit_ = () => { - let var$1; - var$1 = new oavra_EmptyPredictionContext; - oavra_EmptyPredictionContext_$callClinit(); - oavra_SingletonPredictionContext__init_(var$1, null, 2147483647); - oavra_EmptyPredictionContext_Instance = var$1; +oncia_UserQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_SemanticContext = $rt_classWithoutFields(), -oavra_SemanticContext_evalPrecedence = ($this, $parser, $parserCallStack) => { - return $this; +oncia_UserQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oavra_SemanticContext_and = ($a, $b) => { - let $result, var$4, var$5, var$6, var$7, var$8; - if ($a !== null) { - $result = oavra_SemanticContext$Empty_Instance; - if ($a !== $result) { - if ($b !== null && $b !== $result) { - $result = new oavra_SemanticContext$AND; - var$4 = ju_HashSet__init_(); - if (!($a instanceof oavra_SemanticContext$AND)) - ju_HashSet_add(var$4, $a); - else - ju_AbstractCollection_addAll(var$4, ju_Arrays_asList($a.$opnds)); - if (!($b instanceof oavra_SemanticContext$AND)) - ju_HashSet_add(var$4, $b); - else - ju_AbstractCollection_addAll(var$4, ju_Arrays_asList($b.$opnds)); - $a = oavra_SemanticContext_access$000(var$4); - if (!$a.$isEmpty()) { - $b = ju_Comparator$NaturalOrder_INSTANCE; - $a = $a.$iterator(); - var$5 = $a.$next(); - while ($a.$hasNext()) { - var$6 = $a.$next(); - if (ju_Comparator$NaturalOrder_compare($b, var$6, var$5) < 0) - var$5 = var$6; +oncia_UserQualifier_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_UserQualifier) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$username2; + $x$1 = $x$1.$username2; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; } - ju_HashSet_add(var$4, var$5); + if ($x$1 !== null) + break b; } - var$7 = ju_AbstractCollection_toArray(var$4, $rt_createArray(oavra_SemanticContext, 0)); - var$8 = var$7.data; - $result.$opnds = var$7; - if (var$8.length != 1) - return $result; - return var$8[0]; } - return $a; + var$3 = 1; + break a; } + var$3 = 0; } - return $b; + return var$3; }, -oavra_SemanticContext_or = ($a, $b) => { - let $result, var$4, var$5, var$6, var$7, var$8; - if ($a === null) - return $b; - if ($b === null) - return $a; - $result = oavra_SemanticContext$Empty_Instance; - if ($a !== $result && $b !== $result) { - $result = new oavra_SemanticContext$OR; - var$4 = ju_HashSet__init_(); - if (!($a instanceof oavra_SemanticContext$OR)) - ju_HashSet_add(var$4, $a); - else - ju_AbstractCollection_addAll(var$4, ju_Arrays_asList($a.$opnds0)); - if (!($b instanceof oavra_SemanticContext$OR)) - ju_HashSet_add(var$4, $b); - else - ju_AbstractCollection_addAll(var$4, ju_Arrays_asList($b.$opnds0)); - $a = oavra_SemanticContext_access$000(var$4); - if (!$a.$isEmpty()) { - $b = ju_Comparator$NaturalOrder_INSTANCE; - $a = $a.$iterator(); - var$5 = $a.$next(); - while ($a.$hasNext()) { - var$6 = $a.$next(); - if (ju_Comparator$NaturalOrder_compare($b, var$6, var$5) > 0) - var$5 = var$6; +oncia_UserQualifier_dup = ($this, $children) => { + return oncia_UserQualifier__init_0($children.$head(), $this.$position222); +}, +oncia_UserQualifier__init_ = ($this, $username, $position) => { + $this.$username2 = $username; + $this.$position222 = $position; +}, +oncia_UserQualifier__init_0 = (var_0, var_1) => { + let var_2 = new oncia_UserQualifier(); + oncia_UserQualifier__init_(var_2, var_0, var_1); + return var_2; +}; +function oncia_ElementQualifier() { + let a = this; jl_Object.call(a); + a.$value23 = null; + a.$position248 = null; +} +let oncia_ElementQualifier_productPrefix = $this => { + return $rt_s(6518); +}, +oncia_ElementQualifier_productArity = $this => { + return 1; +}, +oncia_ElementQualifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$value23; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_ElementQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ElementQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ElementQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ElementQualifier_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ElementQualifier) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$value23; + $x$1 = $x$1.$value23; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } } - ju_HashSet_add(var$4, var$5); + var$3 = 1; + break a; } - var$7 = ju_AbstractCollection_toArray(var$4, $rt_createArray(oavra_SemanticContext, 0)); - var$8 = var$7.data; - $result.$opnds0 = var$7; - if (var$8.length != 1) - return $result; - return var$8[0]; + var$3 = 0; } - return $result; + return var$3; }, -oavra_SemanticContext_access$000 = $x0 => { +oncia_ElementQualifier_dup = ($this, $children) => { + return oncia_ElementQualifier__init_0($children.$head(), $this.$position248); +}, +oncia_ElementQualifier__init_ = ($this, $value, $position) => { + $this.$value23 = $value; + $this.$position248 = $position; +}, +oncia_ElementQualifier__init_0 = (var_0, var_1) => { + let var_2 = new oncia_ElementQualifier(); + oncia_ElementQualifier__init_(var_2, var_0, var_1); + return var_2; +}, +oncia_SettingPrivilegeQualifier = $rt_classWithoutFields(0); +function oncia_SettingQualifier() { + let a = this; jl_Object.call(a); + a.$glob2 = null; + a.$position302 = null; +} +let oncia_SettingQualifier_productPrefix = $this => { + return $rt_s(6519); +}, +oncia_SettingQualifier_productArity = $this => { + return 1; +}, +oncia_SettingQualifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$glob2; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_SettingQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SettingQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SettingQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_SettingQualifier_equals = ($this, $x$1) => { let var$2, var$3; - var$2 = null; - $x0 = ju_HashSet_iterator($x0); - while ($x0.$hasNext()) { - var$3 = $x0.$next(); - if (var$3 instanceof oavra_SemanticContext$PrecedencePredicate) { - if (var$2 === null) - var$2 = ju_ArrayList__init_(); - ju_ArrayList_add(var$2, var$3); - $x0.$remove2(); + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_SettingQualifier) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$glob2; + $x$1 = $x$1.$glob2; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + } + var$3 = 1; + break a; } + var$3 = 0; } - if (var$2 === null) - var$2 = ju_Collections_EMPTY_LIST; - return var$2; + return var$3; }, -oavra_SemanticContext$Empty = $rt_classWithoutFields(oavra_SemanticContext), -oavra_SemanticContext$Empty_Instance = null, -oavra_SemanticContext$Empty_eval = ($this, $parser, $parserCallStack) => { - return 0; +oncia_SettingQualifier_dup = ($this, $children) => { + return oncia_SettingQualifier__init_0($children.$head(), $this.$position302); }, -oavra_SemanticContext$Empty__clinit_ = () => { - oavra_SemanticContext$Empty_Instance = new oavra_SemanticContext$Empty; +oncia_SettingQualifier__init_ = ($this, $glob, $position) => { + $this.$glob2 = $glob; + $this.$position302 = $position; }, -oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_0 = $rt_classWithoutFields(), -oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_0_apply = (var$0, var$1) => { - return var$1.$name4; +oncia_SettingQualifier__init_0 = (var_0, var_1) => { + let var_2 = new oncia_SettingQualifier(); + oncia_SettingQualifier__init_(var_2, var_0, var_1); + return var_2; }, -oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_1 = $rt_classWithoutFields(), -oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_1_apply = (var$0, var$1) => { - return var$1.$name4; -}; -function oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0() { +oncia_FunctionPrivilegeQualifier = $rt_classWithoutFields(0); +function oncia_FunctionQualifier() { let a = this; jl_Object.call(a); - a.$_0332 = null; - a.$_1120 = null; -} -let oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0332; - var$3 = var$0.$_1120; - oncius_package$_$callClinit(); - var$4 = oncius_package$_MODULE$; - return jl_Boolean_valueOf(oncius_TypeSpec_containsAll(oncius_ListType_covariant(oncius_package$_CTList(var$4, oncius_package$_CTAny(var$4))), var$1.$specified) && oncifp_ExpectedBooleanTypeCheck_isExpectedTypeBoolean$(oncifp_ListCoercedToBooleanCheck$_MODULE$, var$2, var$3) ? 1 : 0); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_0() { - jl_Object.call(this); - this.$_0598 = null; + a.$glob1 = null; + a.$position306 = null; } -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_0__init_ = (var$0, var$1) => { - var$0.$_0598 = var$1; +let oncia_FunctionQualifier_productPrefix = $this => { + return $rt_s(6520); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_0__init_0 = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_0(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_0__init_(var_1, var_0); - return var_1; +oncia_FunctionQualifier_productArity = $this => { + return 1; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0598, var$1); +oncia_FunctionQualifier_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$glob1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncie_NormalForm$ = $rt_classWithoutFields(), -oncie_NormalForm$_MODULE$ = null, -oncie_NormalForm$__clinit_ = () => { - oncie_NormalForm$_MODULE$ = new oncie_NormalForm$; +oncia_FunctionQualifier_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_NormalForm$_unapply = ($this, $name) => { - let var$2; +oncia_FunctionQualifier_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_FunctionQualifier_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_FunctionQualifier_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { - oncie_NFCNormalForm$_$callClinit(); - var$2 = oncie_NFCNormalForm$_formName(oncie_NFCNormalForm$_MODULE$); - if (var$2 !== null) { - if (!jl_String_equals(var$2, $name)) - break a; - else - break b; - } - if ($name !== null) - break a; - } - return s_Some__init_(oncie_NFCNormalForm$_MODULE$); - } - c: { - d: { - oncie_NFDNormalForm$_$callClinit(); - var$2 = oncie_NFDNormalForm$_formName(oncie_NFDNormalForm$_MODULE$); - if (var$2 !== null) { - if (!jl_String_equals(var$2, $name)) - break c; - else - break d; - } - if ($name !== null) - break c; - } - return s_Some__init_(oncie_NFDNormalForm$_MODULE$); - } - e: { - f: { - oncie_NFKCNormalForm$_$callClinit(); - var$2 = oncie_NFKCNormalForm$_formName0(oncie_NFKCNormalForm$_MODULE$); - if (var$2 !== null) { - if (!jl_String_equals(var$2, $name)) - break e; - else - break f; - } - if ($name !== null) - break e; - } - return s_Some__init_(oncie_NFKCNormalForm$_MODULE$); - } - g: { - h: { - oncie_NFKDNormalForm$_$callClinit(); - var$2 = oncie_NFKDNormalForm$_formName0(oncie_NFKDNormalForm$_MODULE$); - if (var$2 !== null) { - if (!jl_String_equals(var$2, $name)) - break h; - else - break g; + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_FunctionQualifier) ? 0 : 1)) + break b; + $x$1 = $x$1; + var$2 = $this.$glob1; + $x$1 = $x$1.$glob1; + if (var$2 !== null) { + if (!jl_String_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } } - if ($name === null) - break g; + var$3 = 1; + break a; } - return s_None$_MODULE$; + var$3 = 0; } - return s_Some__init_(oncie_NFKDNormalForm$_MODULE$); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_1() { - let a = this; jl_Object.call(a); - a.$_01162 = null; - a.$_1388 = null; - a.$_2126 = 0; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_1__init_ = (var$0, var$1, var$2, var$3) => { - var$0.$_01162 = var$1; - var$0.$_1388 = var$2; - var$0.$_2126 = var$3; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_1__init_0 = (var_0, var_1, var_2) => { - let var_3 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_1(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_1__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_inner(var$0.$_01162, var$0.$_1388, var$0.$_2126, var$1); -}, -oncie_FunctionInvocation$ArgumentAsc$ = $rt_classWithoutFields(), -oncie_FunctionInvocation$ArgumentAsc$_MODULE$ = null, -oncie_FunctionInvocation$ArgumentAsc$__clinit_ = () => { - oncie_FunctionInvocation$ArgumentAsc$_MODULE$ = new oncie_FunctionInvocation$ArgumentAsc$; + return var$3; }, -oncie_FunctionInvocation$ArgumentDesc$ = $rt_classWithoutFields(), -oncie_FunctionInvocation$ArgumentDesc$_MODULE$ = null, -oncie_FunctionInvocation$ArgumentDesc$__clinit_ = () => { - oncie_FunctionInvocation$ArgumentDesc$_MODULE$ = new oncie_FunctionInvocation$ArgumentDesc$; -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_2() { - jl_Object.call(this); - this.$_0489 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_2__init_ = (var$0, var$1) => { - var$0.$_0489 = var$1; +oncia_FunctionQualifier_dup = ($this, $children) => { + return oncia_FunctionQualifier__init_0($children.$head(), $this.$position306); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_2__init_0 = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_2(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_2__init_(var_1, var_0); - return var_1; +oncia_FunctionQualifier__init_ = ($this, $glob, $position) => { + $this.$glob1 = $glob; + $this.$position306 = $position; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_2_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0489; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = onciap_DefaultExpressionStringifier_apply0(var$2, var$3); - var$1 = onciap_DefaultExpressionStringifier_apply(var$2, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(9)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +oncia_FunctionQualifier__init_0 = (var_0, var_1) => { + let var_2 = new oncia_FunctionQualifier(); + oncia_FunctionQualifier__init_(var_2, var_0, var_1); + return var_2; }, -oncie_Parameter$ = $rt_classWithoutFields(), -oncie_Parameter$_MODULE$ = null, -oncie_Parameter$__clinit_ = () => { - oncie_Parameter$_MODULE$ = new oncie_Parameter$; +oncias_SemanticExpressionCheck$ = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$_MODULE$ = null, +oncias_SemanticExpressionCheck$_crashOnUnknownExpression = null, +oncias_SemanticExpressionCheck$_semanticCheckFallback = null, +oncias_SemanticExpressionCheck$_stringifier = null, +oncias_SemanticExpressionCheck$_$callClinit = () => { + oncias_SemanticExpressionCheck$_$callClinit = $rt_eraseClinit(oncias_SemanticExpressionCheck$); + oncias_SemanticExpressionCheck$__clinit_(); }, -oncie_Parameter$_unapply = ($this, $p) => { - return s_Some__init_(s_Tuple3__init_($p.$name(), $p.$parameterType(), $p.$sizeHint1())); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_3() { - let a = this; jl_Object.call(a); - a.$_01038 = null; - a.$_1355 = null; - a.$_2118 = 0; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_3__init_ = (var$0, var$1, var$2, var$3) => { - var$0.$_01038 = var$1; - var$0.$_1355 = var$2; - var$0.$_2118 = var$3; +oncias_SemanticExpressionCheck$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticExpressionCheck$; + oncias_SemanticExpressionCheck$_$callClinit(); + oncias_SemanticExpressionCheck$_MODULE$ = var$1; + var$1 = new oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0; + oncias_SemanticExpressionCheck$_crashOnUnknownExpression = var$1; + oncias_SemanticExpressionCheck$_semanticCheckFallback = var$1; + onciap_ExpressionStringifier$_$callClinit(); + var$1 = onciap_ExpressionStringifier$_MODULE$; + oncias_SemanticExpressionCheck$_stringifier = onciap_ExpressionStringifier$_apply(var$1, onciap_ExpressionStringifier$_apply$default$1(var$1), 0, 0, 0, 0); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_3__init_0 = (var_0, var_1, var_2) => { - let var_3 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_3(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_3__init_(var_3, var_0, var_1, var_2); - return var_3; +oncias_SemanticExpressionCheck$_specifyType0 = ($this, $typeGen, $expression) => { + return oncias_SemanticAnalysisTooling_specifyType$0($this, $typeGen, $expression); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_3_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_inner(var$0.$_01038, var$0.$_1355, var$0.$_2118, var$1); +oncias_SemanticExpressionCheck$_specifyType = ($this, $possibleTypes, $expression) => { + return oncias_SemanticAnalysisTooling_specifyType$($this, $possibleTypes, $expression); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_4 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_4__init_ = var$0 => { - return; +oncias_SemanticExpressionCheck$_expectType2 = ($this, $typeGen, $expression) => { + let var$3, var$4; + var$3 = oncias_package$_MODULE$; + var$4 = new oncias_SemanticAnalysisTooling$expectType$lambda$_13_0; + var$4.$_0927 = $this; + var$4.$_1319 = $typeGen; + var$4.$_2108 = $expression; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_4__init_0 = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_4(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_4__init_(var_0); - return var_0; +oncias_SemanticExpressionCheck$_expectType1 = ($this, $possibleTypes, $opt) => { + return oncias_SemanticAnalysisTooling_expectType$3($this, $possibleTypes, $opt); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_4_apply = var$0 => { - return $rt_s(4); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_5() { - let a = this; jl_Object.call(a); - a.$_0927 = null; - a.$_1325 = null; - a.$_2111 = 0; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_5__init_0 = (var$0, var$1, var$2, var$3) => { - var$0.$_0927 = var$1; - var$0.$_1325 = var$2; - var$0.$_2111 = var$3; +oncias_SemanticExpressionCheck$_expectType6 = ($this, $typeGen, $expression, $typeMismatch, $messageGen) => { + let var$5, var$6; + var$5 = oncias_package$_MODULE$; + var$6 = new oncias_SemanticAnalysisTooling$expectType$lambda$_17_0; + var$6.$_0185 = $this; + var$6.$_168 = $typeGen; + var$6.$_225 = $expression; + var$6.$_310 = $typeMismatch; + var$6.$_44 = $messageGen; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$5, var$6); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_5__init_ = (var_0, var_1, var_2) => { - let var_3 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_5(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_5__init_0(var_3, var_0, var_1, var_2); - return var_3; +oncias_SemanticExpressionCheck$_expectType4 = ($this, $possibleTypes, $expressions) => { + return oncias_SemanticAnalysisTooling_expectType$1($this, $possibleTypes, $expressions); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_5_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_inner(var$0.$_0927, var$0.$_1325, var$0.$_2111, var$1); +oncias_SemanticExpressionCheck$_expectType5 = ($this, $possibleTypes, $expressions, $typeMismatchContext) => { + return oncias_SemanticAnalysisTooling_expectType$2($this, $possibleTypes, $expressions, $typeMismatchContext); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_6 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_6__init_ = var$0 => { - return; +oncias_SemanticExpressionCheck$_expectType = ($this, $possibleTypes, $expression) => { + return oncias_SemanticAnalysisTooling_expectType$($this, $possibleTypes, $expression); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_6__init_0 = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_6(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_6__init_(var_0); - return var_0; +oncias_SemanticExpressionCheck$_expectType0 = ($this, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + let var$5, var$6; + var$5 = oncias_package$_MODULE$; + var$6 = new oncias_SemanticAnalysisTooling$expectType$lambda$_27_0; + var$6.$_0396 = $this; + var$6.$_1140 = $possibleTypes; + var$6.$_249 = $expression; + var$6.$_316 = $typeMismatchVal; + var$6.$_45 = $messageGen; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$5, var$6); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_6_apply = var$0 => { - return $rt_s(4); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_7() { - let a = this; jl_Object.call(a); - a.$_0830 = null; - a.$_1282 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_7__init_0 = (var$0, var$1, var$2) => { - var$0.$_0830 = var$1; - var$0.$_1282 = var$2; +oncias_SemanticExpressionCheck$_expectType3 = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_7__init_ = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_7(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_7__init_0(var_2, var_0, var_1); - return var_2; +oncias_SemanticExpressionCheck$_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_7_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$1 = onciap_DefaultExpressionStringifier_inner(var$0.$_0830, var$0.$_1282, 0, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6953)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +oncias_SemanticExpressionCheck$_checkTypes = ($this, $expression, $signatures) => { + return oncias_SemanticAnalysisTooling_checkTypes$($this, $expression, $signatures); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_8 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_8__init_ = var$0 => { - return; +oncias_SemanticExpressionCheck$_unionOfTypes = ($this, $iterable) => { + return oncias_SemanticAnalysisTooling_unionOfTypes$($this, $iterable); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_8__init_0 = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_8(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_8__init_(var_0); - return var_0; +oncias_SemanticExpressionCheck$_withScopedState = ($this, $check) => { + return oncias_SemanticAnalysisTooling_withScopedState$($this, $check); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_8_apply = var$0 => { - return $rt_s(4); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_9() { - let a = this; jl_Object.call(a); - a.$_0716 = null; - a.$_1244 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_9__init_0 = (var$0, var$1, var$2) => { - var$0.$_0716 = var$1; - var$0.$_1244 = var$2; +oncias_SemanticExpressionCheck$_typeSwitch = ($this, $expr, $choice) => { + let var$3, var$4; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncias_SemanticAnalysisTooling$typeSwitch$lambda$_51_0; + var$4.$_0104 = $choice; + var$4.$_134 = $expr; + return oncias_SemanticCheck$_fromState(var$3, var$4); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_9__init_ = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_9(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_9__init_0(var_2, var_0, var_1); - return var_2; +oncias_SemanticExpressionCheck$_validNumber = ($this, $long) => { + let var$2, $$je; + a: { + try { + var$2 = $long.$value1() instanceof jl_Long; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_NumberFormatException) { + } else { + throw $$e; + } + } + var$2 = 0; + } + return var$2; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_9_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$1 = onciap_DefaultExpressionStringifier_inner(var$0.$_0716, var$0.$_1244, 0, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(450)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +oncias_SemanticExpressionCheck$_validNumber0 = ($this, $double) => { + let var$2, $$je; + a: { + try { + var$2 = oncie_DecimalDoubleLiteral_value($double) instanceof jl_Double; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_NumberFormatException) { + } else { + throw $$e; + } + } + var$2 = 0; + } + return var$2; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_10 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_10__init_0 = var$0 => { - return; +oncias_SemanticExpressionCheck$_ensureDefined = ($this, $v) => { + return oncias_SemanticAnalysisTooling_ensureDefined$($this, $v); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_10__init_ = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_10(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_10__init_0(var_0); - return var_0; +oncias_SemanticExpressionCheck$_types = ($this, $expression) => { + return oncias_SemanticAnalysisTooling_types$($this, $expression); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_10_apply = var$0 => { - return $rt_s(4); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_11() { - jl_Object.call(this); - this.$_01 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_11__init_ = (var$0, var$1) => { - var$0.$_01 = var$1; +oncias_SemanticExpressionCheck$_semanticCheckFallback0 = $this => { + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_semanticCheckFallback; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_11__init_0 = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_11(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_11__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$_simple = ($this, $expression) => { + return oncias_SemanticExpressionCheck$_check0($this, oncie_Expression$SemanticContext$Simple$_MODULE$, $expression); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_11_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_01, var$1); +oncias_SemanticExpressionCheck$_check0 = ($this, $ctx, $expression) => { + let var$3, var$4; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncias_SemanticExpressionCheck$$check$lambda$_53_0; + var$4.$_0550 = $expression; + var$4.$_1184 = $ctx; + return oncias_SemanticCheck$_nestedCheck(var$3, var$4); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_12 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_12__init_ = var$0 => { - return; +oncias_SemanticExpressionCheck$_stringifier0 = $this => { + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_stringifier; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_12__init_0 = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_12(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_12__init_(var_0); - return var_0; +oncias_SemanticExpressionCheck$_checkLabelExpressionForLegacyRelationshipTypeDisjunction = ($this, $entity, $labelExpression) => { + let var$3, var$4, var$5, var$6; + oncias_OptionSemanticChecking$_$callClinit(); + var$3 = oncias_OptionSemanticChecking$_MODULE$; + var$4 = $labelExpression.$folder(); + sr_ClassTag$_$callClinit(); + var$5 = onciu_Foldable$Folder_treeFindByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction))); + var$6 = new oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_55_0; + var$6.$_0346 = $entity; + var$6.$_1122 = $labelExpression; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$5, var$6); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_12_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(168)); - return jl_AbstractStringBuilder_toString(var$2); +oncias_SemanticExpressionCheck$_checkLabelExpression = ($this, $entityType, $labelExpression) => { + let $colonConjunctions$lzy, $colonDisjunctions$lzy, $legacySymbols$lzy, var$6, var$7, var$8; + $colonConjunctions$lzy = new sr_LazyRef; + $colonDisjunctions$lzy = new sr_LazyRef; + $legacySymbols$lzy = new sr_LazyRef; + oncias_SemanticCheck$_$callClinit(); + var$6 = oncias_SemanticCheck$_MODULE$; + var$7 = s_Option_contains($entityType, oncie_NODE_TYPE$_MODULE$) && sc_IterableOnceOps_nonEmpty$(oncias_SemanticExpressionCheck$_colonDisjunctions$1($colonDisjunctions$lzy, $labelExpression)) ? 1 : 0; + var$8 = new oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_0; + var$8.$_0975 = $colonDisjunctions$lzy; + var$8.$_1333 = $labelExpression; + var$8 = oncias_SemanticCheck$_when(var$6, var$7, var$8); + var$6 = oncias_SemanticCheck$_MODULE$; + var$7 = s_Option_contains($entityType, oncie_RELATIONSHIP_TYPE$_MODULE$) && sc_IterableOnceOps_nonEmpty$(oncias_SemanticExpressionCheck$_colonConjunctions$1($colonConjunctions$lzy, $labelExpression)) ? 1 : 0; + $entityType = new oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_1; + $entityType.$_0356 = $colonConjunctions$lzy; + $entityType.$_1126 = $labelExpression; + $entityType = var$8.$chain(oncias_SemanticCheck$_when(var$6, var$7, $entityType)); + var$8 = new oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_2; + var$8.$_0870 = $labelExpression; + var$8.$_1293 = $colonConjunctions$lzy; + var$8.$_293 = $legacySymbols$lzy; + var$8.$_329 = $colonDisjunctions$lzy; + var$8 = oncias_SemanticCheck_ifOkChain$($entityType, var$8); + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(var$8, oncias_SemanticPatternCheck$_checkValidLabels(oncias_SemanticPatternCheck$_MODULE$, $labelExpression.$flatten0(), $labelExpression.$position())); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_13 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_13__init_ = var$0 => { - return; +oncias_SemanticExpressionCheck$_simple1 = ($this, $iterable) => { + return oncias_SemanticExpressionCheck$_check($this, oncie_Expression$SemanticContext$Simple$_MODULE$, $iterable); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_13__init_0 = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_13(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_13__init_(var_0); - return var_0; +oncias_SemanticExpressionCheck$_check = ($this, $ctx, $iterable) => { + let var$3; + var$3 = new oncias_SemanticExpressionCheck$$check$lambda$_58_0; + var$3.$_0287 = $ctx; + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, var$3); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_13_apply = var$0 => { - return $rt_s(4); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_14() { - let a = this; jl_Object.call(a); - a.$_0805 = null; - a.$_1273 = null; - a.$_289 = 0; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_14__init_ = (var$0, var$1, var$2, var$3) => { - var$0.$_0805 = var$1; - var$0.$_1273 = var$2; - var$0.$_289 = var$3; +oncias_SemanticExpressionCheck$_simple0 = ($this, $option) => { + return oncias_SemanticExpressionCheck$_check1($this, oncie_Expression$SemanticContext$Simple$_MODULE$, $option); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_14__init_0 = (var_0, var_1, var_2) => { - let var_3 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_14(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_14__init_(var_3, var_0, var_1, var_2); - return var_3; +oncias_SemanticExpressionCheck$_check1 = ($this, $ctx, $option) => { + let var$3, var$4; + oncias_OptionSemanticChecking$_$callClinit(); + var$3 = oncias_OptionSemanticChecking$_MODULE$; + var$4 = new oncias_SemanticExpressionCheck$$check$lambda$_60_0; + var$4.$_0719 = $ctx; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, $option, var$4); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_14_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_inner(var$0.$_0805, var$0.$_1273, var$0.$_289, var$1); +oncias_SemanticExpressionCheck$_checkAddBoundary = ($this, $add) => { + let $r, $l, var$4, var$5, var$6; + $r = s_Tuple2__init_($add.$lhs8, $add.$rhs9); + $l = $r.$_10; + $r = $r.$_20; + if ($rt_isInstance($l, oncie_IntegerLiteral)) { + $l = $l; + if ($rt_isInstance($r, oncie_IntegerLiteral)) { + $r = $r; + var$4 = onciuh_Try$_MODULE$; + var$5 = new oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_61_0; + var$5.$_01019 = $l; + var$5.$_1349 = $r; + if ((onciuh_Try$_apply(var$4, var$5)).$isFailure()) { + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$5 = oncias_SemanticError$_MODULE$; + $l = $l.$stringVal(); + $r = $r.$stringVal(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $l), $rt_s(6521)), $r); + return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_integerOperationCannotBeRepresented(var$5, jl_AbstractStringBuilder_toString(var$6), $add.$position103)); + } + } + } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_15 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_15__init_0 = var$0 => { - return; +oncias_SemanticExpressionCheck$_checkSubtractBoundary = ($this, $subtract) => { + let $r, $l, var$4, var$5, var$6; + $r = s_Tuple2__init_($subtract.$lhs7, $subtract.$rhs7); + $l = $r.$_10; + $r = $r.$_20; + if ($rt_isInstance($l, oncie_IntegerLiteral)) { + $l = $l; + if ($rt_isInstance($r, oncie_IntegerLiteral)) { + $r = $r; + var$4 = onciuh_Try$_MODULE$; + var$5 = new oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_62_0; + var$5.$_047 = $l; + var$5.$_119 = $r; + if ((onciuh_Try$_apply(var$4, var$5)).$isFailure()) { + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$5 = oncias_SemanticError$_MODULE$; + $l = $l.$stringVal(); + $r = $r.$stringVal(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $l), $rt_s(1128)), $r); + return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_integerOperationCannotBeRepresented(var$5, jl_AbstractStringBuilder_toString(var$6), $subtract.$position99)); + } + } + } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_15__init_ = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_15(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_15__init_0(var_0); - return var_0; +oncias_SemanticExpressionCheck$_checkUnarySubtractBoundary = ($this, $subtract) => { + let var$2, var$3, var$4, var$5; + var$2 = $subtract.$rhs13; + if ($rt_isInstance(var$2, oncie_IntegerLiteral)) { + var$2 = var$2; + var$3 = onciuh_Try$_MODULE$; + var$4 = new oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_63_0; + var$4.$_0508 = var$2; + if ((onciuh_Try$_apply(var$3, var$4)).$isFailure()) { + var$3 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$4 = oncias_SemanticError$_MODULE$; + var$2 = var$2.$stringVal(); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_AbstractStringBuilder_append0(var$5, 45); + jl_StringBuilder_append(var$5, var$2); + return oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_integerOperationCannotBeRepresented(var$4, jl_AbstractStringBuilder_toString(var$5), $subtract.$position142)); + } + } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_15_apply = (var$0, var$1) => { +oncias_SemanticExpressionCheck$_checkMultiplyBoundary = ($this, $multiply) => { + let $r, $l, var$4, var$5, var$6; + $r = s_Tuple2__init_($multiply.$lhs12, $multiply.$rhs12); + $l = $r.$_10; + $r = $r.$_20; + if ($rt_isInstance($l, oncie_IntegerLiteral)) { + $l = $l; + if ($rt_isInstance($r, oncie_IntegerLiteral)) { + $r = $r; + var$4 = onciuh_Try$_MODULE$; + var$5 = new oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_64_0; + var$5.$_01086 = $l; + var$5.$_1368 = $r; + if ((onciuh_Try$_apply(var$4, var$5)).$isFailure()) { + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$5 = oncias_SemanticError$_MODULE$; + $l = $l.$stringVal(); + $r = $r.$stringVal(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $l), $rt_s(6522)), $r); + return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_integerOperationCannotBeRepresented(var$5, jl_AbstractStringBuilder_toString(var$6), $multiply.$position181)); + } + } + } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}; +let oncias_SemanticExpressionCheck$_infixAddRhsTypes = ($this, $lhs) => { let var$2; - var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6953)), var$1); - return jl_AbstractStringBuilder_toString(var$2); -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_16 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_16__init_0 = var$0 => { - return; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_16__init_ = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_16(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_16__init_0(var_0); - return var_0; + var$2 = new oncias_SemanticExpressionCheck$$infixAddRhsTypes$lambda$_65_0; + var$2.$_0114 = $lhs; + return var$2; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_16_apply = var$0 => { - return $rt_s(4); +oncias_SemanticExpressionCheck$_infixAddOutputTypes = ($this, $lhs, $rhs) => { + let var$3; + var$3 = new oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_66_0; + var$3.$_0643 = $lhs; + var$3.$_1218 = $rhs; + return var$3; }, -oncie_LabelOrTypeCheckExpression = $rt_classWithoutFields(0), -oncie_HasLabelsOrTypes = $rt_classWithoutFields(oncie_Expression), -oncie_LabelCheckExpression = $rt_classWithoutFields(0), -oncie_HasLabels = $rt_classWithoutFields(oncie_Expression); -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_17() { - jl_Object.call(this); - this.$_01180 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_17__init_0 = (var$0, var$1) => { - var$0.$_01180 = var$1; +oncias_SemanticExpressionCheck$_checkInnerListComprehension = ($this, $x) => { + let $e, $outerTypes, var$4; + $e = oncie_ListComprehension_extractExpression($x); + if (!($e instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, $e)) + $rt_throw(s_MatchError__init_($e)); + $e = new oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_2; + $e.$_0925 = $x; + return oncias_SemanticCheck_chain$(oncias_SemanticAnalysisTooling_withScopedState$($this, $e), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$0($this, oncias_SemanticAnalysisTooling_types$($this, $x.$expression27), $x))); + } + $e = $e.$value5; + $outerTypes = new oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_0; + $outerTypes.$_0155 = $x; + $outerTypes.$_153 = $e; + var$4 = oncias_SemanticAnalysisTooling_withScopedState$($this, $outerTypes); + $outerTypes = new oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_1; + $outerTypes.$_0838 = $e; + return oncias_SemanticCheck_chain$(var$4, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$0($this, $outerTypes, $x))); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_17__init_ = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_17(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_17__init_0(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$_checkForShadowedVariables = ($this, $subqueryCallsToFilter) => { + let var$2, var$3; + var$2 = oncias_package$_MODULE$; + var$3 = new oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_68_0; + var$3.$_01143 = $subqueryCallsToFilter; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); }, -oncie_HasAnyLabel = $rt_classWithoutFields(oncie_Expression); -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_18() { - jl_Object.call(this); - this.$_01208 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_18__init_ = (var$0, var$1) => { - var$0.$_01208 = var$1; +oncias_SemanticExpressionCheck$_possibleTypes$1 = $x74$1 => { + let var$2; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = new oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_142_0; + var$2.$_0956 = $x74$1; + return var$2; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_18__init_0 = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_18(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_18__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$_$anonfun$check$77 = ($x1$1, $x76$1, $idxT) => { + let $mapT, $listT, $nodeT, $relT, $exprIsList, $exprIsNodeOrRel, $exprIsMap, $idxIsInteger, $idxIsString; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + $mapT = oncius_package$_MODULE$; + $listT = oncius_TypeSpec_intersect(oncius_ListType_covariant(oncius_package$_CTList($mapT, oncius_package$_CTAny($mapT))), $x1$1); + $nodeT = oncius_TypeSpec_intersect(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), $x1$1); + $relT = oncius_TypeSpec_intersect(oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$)), $x1$1); + $mapT = oncius_TypeSpec_intersect(oncius_MapType_invariant(oncius_package$_CTMap(oncius_package$_MODULE$)), $x1$1); + $exprIsList = oncius_TypeSpec_nonEmpty($listT); + $exprIsNodeOrRel = !oncius_TypeSpec_nonEmpty($nodeT) && !oncius_TypeSpec_nonEmpty($relT) ? 0 : 1; + $exprIsMap = oncius_TypeSpec_nonEmpty($mapT); + $idxIsInteger = oncius_TypeSpec_nonEmpty(oncius_TypeSpec_intersect(oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), $idxT)); + $idxIsString = oncius_TypeSpec_nonEmpty(oncius_TypeSpec_intersect(oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)), $idxT)); + if ($exprIsList) { + $idxT = oncias_package$_MODULE$; + $mapT = oncias_SemanticExpressionCheck$_MODULE$; + $x1$1 = new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_0; + $x1$1.$_0866 = $listT; + $x1$1 = oncias_package$_liftSemanticEitherFunc($idxT, oncias_SemanticAnalysisTooling_specifyType$($mapT, $x1$1, $x76$1)); + $idxT = oncias_SemanticExpressionCheck$_MODULE$; + $mapT = new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_1; + $nodeT = $x76$1.$idx0; + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + return oncias_SemanticCheck_chain$($x1$1, oncias_SemanticExpressionCheck$_expectType0($idxT, $mapT, $nodeT, oncias_SemanticExpressionCheck$TypeMismatchContext$_LIST_INDEX, new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_2)); + } + if ($exprIsMap) { + $x1$1 = oncias_SemanticExpressionCheck$_MODULE$; + $idxT = new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_3; + $relT = $x76$1.$idx0; + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + return oncias_SemanticExpressionCheck$_expectType0($x1$1, $idxT, $relT, oncias_SemanticExpressionCheck$TypeMismatchContext$_MAP_KEY, new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_4); + } + if ($exprIsNodeOrRel) { + $x1$1 = oncias_SemanticExpressionCheck$_MODULE$; + $idxT = new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_5; + $relT = $x76$1.$idx0; + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + return oncias_SemanticExpressionCheck$_expectType0($x1$1, $idxT, $relT, oncias_SemanticExpressionCheck$TypeMismatchContext$_NODE_OR_RELATIONSHIP_PROPERTY_KEY, new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_6); + } + if ($idxIsString) + return oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_7, $x76$1.$expr2); + if (!$idxIsInteger) + return oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_8, $x76$1.$expr2); + return oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_9, $x76$1.$expr2); }, -oncie_HasALabel = $rt_classWithoutFields(oncie_Expression); -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_19() { - jl_Object.call(this); - this.$_01187 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_19__init_ = (var$0, var$1) => { - var$0.$_01187 = var$1; +oncias_SemanticExpressionCheck$_$anonfun$check$1 = ($expression$1, $ctx$1) => { + let $allowedTypes, $possibleTypes, $lhs, $rhs, $relationship, $relationshipList, $outerTypes, $stringVal; + oncias_SemanticExpressionCheck$_$callClinit(); + if ($expression$1 instanceof oncie_Add) { + $expression$1 = $expression$1; + $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Add_lhs($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0__init_0(), oncie_Add_lhs($expression$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Add_rhs($expression$1))); + $allowedTypes = oncias_SemanticExpressionCheck$_MODULE$; + $ctx$1 = oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticExpressionCheck$_expectType2($allowedTypes, oncias_SemanticExpressionCheck$_infixAddRhsTypes($allowedTypes, oncie_Add_lhs($expression$1)), oncie_Add_rhs($expression$1))); + $allowedTypes = oncias_package$_MODULE$; + $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc($allowedTypes, oncias_SemanticExpressionCheck$_specifyType0($possibleTypes, oncias_SemanticExpressionCheck$_infixAddOutputTypes($possibleTypes, oncie_Add_lhs($expression$1), oncie_Add_rhs($expression$1)), $expression$1))), oncias_SemanticExpressionCheck$_checkAddBoundary(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); + } + if ($expression$1 instanceof oncie_Concatenate) { + $expression$1 = $expression$1; + $ctx$1 = (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Concatenate_signatures($expression$1))); + $allowedTypes = oncias_package$_MODULE$; + $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; + return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc($allowedTypes, oncias_SemanticExpressionCheck$_specifyType0($possibleTypes, oncias_SemanticExpressionCheck$_infixAddOutputTypes($possibleTypes, oncie_Concatenate_lhs($expression$1), oncie_Concatenate_rhs($expression$1)), $expression$1))); + } + if ($expression$1 instanceof oncie_Subtract) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Subtract_signatures($expression$1))), oncias_SemanticExpressionCheck$_checkSubtractBoundary(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); + } + if ($expression$1 instanceof oncie_UnarySubtract) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_UnarySubtract_signatures($expression$1))), oncias_SemanticExpressionCheck$_checkUnarySubtractBoundary(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); + } + if ($expression$1 instanceof oncie_UnaryAdd) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_UnaryAdd_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Multiply) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Multiply_signatures($expression$1))), oncias_SemanticExpressionCheck$_checkMultiplyBoundary(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)); + } + if ($expression$1 instanceof oncie_Divide) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Divide_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Modulo) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Modulo_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Pow) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Pow_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Not) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Not_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Equals) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Equals_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_NotEquals) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_NotEquals_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_InvalidNotEquals) { + $expression$1 = $expression$1; + $ctx$1 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef($ctx$1, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6523), oncie_InvalidNotEquals_position($expression$1))); + } + if ($expression$1 instanceof oncie_RegexMatch) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_RegexMatch_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_And) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_And_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Or) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Or_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Xor) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Xor_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Ands) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Ands_exprs($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Ands_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Ors) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$exprs())).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, $expression$1.$signatures0())); + } + if ($expression$1 instanceof oncie_In) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_In_lhs($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1__init_0(), oncie_In_lhs($expression$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, + $ctx$1, oncie_In_rhs($expression$1))), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2__init_(), oncie_In_rhs($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3__init_(), $expression$1))); + } + if ($expression$1 instanceof oncie_StartsWith) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_StartsWith_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_EndsWith) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_EndsWith_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_Contains) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_Contains_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_IsNull) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_IsNull_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_IsNotNull) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_IsNotNull_signatures($expression$1))); + } + if ($expression$1 instanceof oncia_IsTyped) { + $expression$1 = $expression$1; + $expression$1 = oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncia_CypherTypeName_semanticCheck(oncia_CypherTypeName__init_(oncia_IsTyped_typeName($expression$1)))), oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncia_IsTyped_signatures($expression$1))); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain($expression$1, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$)); + } + if ($expression$1 instanceof oncia_IsNotTyped) { + $expression$1 = $expression$1; + $expression$1 = oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncia_CypherTypeName_semanticCheck(oncia_CypherTypeName__init_(oncia_IsNotTyped_typeName($expression$1)))), oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncia_IsNotTyped_signatures($expression$1))); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain($expression$1, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$)); + } + if ($expression$1 instanceof oncia_IsNormalized) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncia_IsNormalized_signatures($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4__init_0(), + $expression$1))); + } + if ($expression$1 instanceof oncia_IsNotNormalized) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncia_IsNotNormalized_signatures($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5__init_0(), + $expression$1))); + } + if ($expression$1 instanceof oncie_LessThan) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_LessThan_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_LessThanOrEqual) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_LessThanOrEqual_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_GreaterThan) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_GreaterThan_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_GreaterThanOrEqual) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Expression_arguments($expression$1))).$chain(oncias_SemanticExpressionCheck$_checkTypes(oncias_SemanticExpressionCheck$_MODULE$, $expression$1, oncie_GreaterThanOrEqual_signatures($expression$1))); + } + if ($expression$1 instanceof oncie_DifferentRelationships) { + $expression$1 = $expression$1; + $lhs = $expression$1.$rel1(); + $rhs = $expression$1.$rel2(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6__init_0(), $lhs)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7__init_(), + $rhs)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8__init_(), $expression$1))); + } + if ($expression$1 instanceof oncie_NoneOfRelationships) { + $expression$1 = $expression$1; + $relationship = $expression$1.$relationship0(); + $relationshipList = $expression$1.$listOfRelationships(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9__init_0(), $relationship)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10__init_0(), + $relationshipList)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11__init_0(), $expression$1))); + } + if ($expression$1 instanceof oncie_Disjoint) { + $expression$1 = $expression$1; + $lhs = $expression$1.$lhs0(); + $rhs = $expression$1.$rhs(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12__init_0(), $lhs)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13__init_0(), + $rhs)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14__init_(), $expression$1))); + } + if ($expression$1 instanceof oncie_Unique) { + $expression$1 = $expression$1; + $rhs = $expression$1.$rhs(); + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15__init_(), $rhs)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16__init_(), + $expression$1))); + } + if ($expression$1 instanceof oncie_VarLengthBound) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$arguments())).$chain(oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17__init_(), $expression$1.$relName())), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18__init_(), + $expression$1))); + } + if ($rt_isInstance($expression$1, oncie_PartialPredicate)) { + $expression$1 = $expression$1; + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$coveredPredicate()); + } + if ($expression$1 instanceof oncie_CaseExpression) { + $expression$1 = $expression$1; + $possibleTypes = oncias_SemanticExpressionCheck$_unionOfTypes(oncias_SemanticExpressionCheck$_MODULE$, oncie_CaseExpression_possibleExpressions($expression$1)); + $ctx$1 = oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check1(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_CaseExpression_expression($expression$1))).$chain(oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, (oncie_CaseExpression_alternatives($expression$1)).$flatMap(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19__init_0()))), oncias_SemanticExpressionCheck$_check1(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_CaseExpression_default($expression$1))); + $allowedTypes = oncias_SemanticExpressionCheck$_MODULE$; + oncius_package$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticExpressionCheck$_expectType4($allowedTypes, oncius_BooleanType_covariant(oncius_package$_CTBoolean(oncius_package$_MODULE$)), (oncie_CaseExpression_alternatives($expression$1)).$map(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20__init_()))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType0(oncias_SemanticExpressionCheck$_MODULE$, + $possibleTypes, $expression$1))); + } + if ($expression$1 instanceof oncie_AndedPropertyInequalities) + return (($expression$1.$inequalities()).$map4(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_21__init_($ctx$1))).$reduceLeft(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_22__init_()); + if ($expression$1 instanceof oncie_CoerceTo) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_CoerceTo_expr($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23__init_0($expression$1), oncie_CoerceTo_expr($expression$1))); + } + if ($expression$1 instanceof oncie_Property) { + $expression$1 = $expression$1; + oncius_package$_$callClinit(); + $allowedTypes = oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_TypeSpec_$bar(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))), oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$))), oncius_PointType_covariant(oncius_package$_CTPoint(oncius_package$_MODULE$))), + oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$))), oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$))), oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$))), oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$))), oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$))), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$))); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_Property_map($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24__init_0($allowedTypes), oncie_Property_map($expression$1))), oncias_SemanticExpressionCheck$_typeSwitch(oncias_SemanticExpressionCheck$_MODULE$, oncie_Property_map($expression$1), + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25__init_0($expression$1))); + } + if ($expression$1 instanceof oncie_CachedProperty) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26__init_(), $expression$1)); + } + if ($expression$1 instanceof oncie_CachedHasProperty) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27__init_0(), $expression$1)); + } + if ($expression$1 instanceof oncie_Variable) { + $expression$1 = $expression$1; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28__init_0($expression$1)); + } + if ($expression$1 instanceof oncie_FunctionInvocation) { + $expression$1 = $expression$1; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_SemanticFunctionCheck$_check(oncias_SemanticFunctionCheck$_MODULE$, $ctx$1, $expression$1); + } + if ($expression$1 instanceof oncie_GetDegree) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$node()), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29__init_(), $expression$1.$node())), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30__init_(), $expression$1))); + } + if ($rt_isInstance($expression$1, oncie_Parameter)) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31__init_($expression$1), $expression$1)); + } + if ($expression$1 instanceof oncie_ImplicitProcedureArgument) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32__init_($expression$1), $expression$1)); + } + if ($expression$1 instanceof oncil_LabelExpressionPredicate) { + $expression$1 = $expression$1; + $ctx$1 = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncil_LabelExpressionPredicate_entity($expression$1)); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, (oncil_LabelExpressionPredicate_labelExpression($expression$1)).$containsDynamicLabelOrTypeExpression(), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33__init_0($expression$1))), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34__init_(), oncil_LabelExpressionPredicate_entity($expression$1))), oncias_SemanticExpressionCheck$_checkLabelExpressionForLegacyRelationshipTypeDisjunction(oncias_SemanticExpressionCheck$_MODULE$, oncil_LabelExpressionPredicate_entity($expression$1), oncil_LabelExpressionPredicate_labelExpression($expression$1))), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35__init_0($expression$1)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, + oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36__init_(), $expression$1))); + } + if ($rt_isInstance($expression$1, oncie_LabelOrTypeCheckExpression)) { + $expression$1 = $expression$1; + $allowedTypes = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$entityExpression()), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37__init_(), $expression$1.$entityExpression())), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38__init_0(), $expression$1))); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, $rt_isInstance($expression$1, oncie_DynamicLabelsOrTypeExpressions), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39__init_($ctx$1, $expression$1))); + } + if ($rt_isInstance($expression$1, oncie_LabelCheckExpression)) { + $expression$1 = $expression$1; + $allowedTypes = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$expression0()), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40__init_(), $expression$1.$expression0())), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41__init_(), $expression$1))); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, $rt_isInstance($expression$1, oncie_DynamicLabelsExpressions), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42__init_0($ctx$1, $expression$1))); + } + if ($expression$1 instanceof oncie_HasTypes) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$expression0()), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43__init_0(), $expression$1.$expression0())), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44__init_0(), $expression$1))); + } + if ($expression$1 instanceof oncie_HasDynamicType) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$expression0()), oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$types())), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45__init_(), $expression$1.$expression0())), + oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46__init_0(), $expression$1))); + } + if ($expression$1 instanceof oncie_HasAnyDynamicType) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$expression0()), oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$types())), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47__init_(), $expression$1.$expression0())), + oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48__init_(), $expression$1))); + } + if ($expression$1 instanceof oncie_ListComprehension) { + $expression$1 = $expression$1; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$FilteringExpressions$_semanticCheck(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, $ctx$1, $expression$1), oncias_SemanticExpressionCheck$_checkInnerListComprehension(oncias_SemanticExpressionCheck$_MODULE$, $expression$1)), oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating0(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, + oncie_ListComprehension_extractExpression($expression$1)))); + } + if ($expression$1 instanceof oncie_PatternComprehension) { + $expression$1 = $expression$1; + oncias_SemanticState$_$callClinit(); + $ctx$1 = oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49__init_($expression$1))); + $outerTypes = oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50__init_0($expression$1); + return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType0(oncias_SemanticExpressionCheck$_MODULE$, $outerTypes, $expression$1))); + } + if ($expression$1 instanceof oncie_FilterScope) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($expression$1 instanceof oncie_ExtractScope) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($expression$1 instanceof oncie_ReduceScope) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($expression$1 instanceof oncie_CountStar) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51__init_(), $expression$1)); + } + if ($expression$1 instanceof oncie_PathExpression) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$Leaf_chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52__init_(), $expression$1)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$step())); + } + if ($expression$1 instanceof oncie_NodePathStep) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_NodePathStep_node($expression$1)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_NodePathStep_next($expression$1))); + } + if ($expression$1 instanceof oncie_SingleRelationshipPathStep) { + $expression$1 = $expression$1; + $allowedTypes = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_SingleRelationshipPathStep_rel($expression$1)); + oncias_OptionSemanticChecking$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, oncias_package$_optionSemanticChecking(oncias_package$_MODULE$, oncie_SingleRelationshipPathStep_toNode($expression$1)), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53__init_0($ctx$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_SingleRelationshipPathStep_next($expression$1))); + } + if ($expression$1 instanceof oncie_MultiRelationshipPathStep) { + $expression$1 = $expression$1; + $allowedTypes = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_MultiRelationshipPathStep_rel($expression$1)); + oncias_OptionSemanticChecking$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, oncias_package$_optionSemanticChecking(oncias_package$_MODULE$, oncie_MultiRelationshipPathStep_toNode($expression$1)), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54__init_0($ctx$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_MultiRelationshipPathStep_next($expression$1))); + } + if ($expression$1 instanceof oncie_RepeatPathStep) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, (oncie_RepeatPathStep_variables($expression$1)).$flatMap(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_55__init_0()))).$chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_RepeatPathStep_toNode($expression$1))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_RepeatPathStep_next($expression$1))); + } + if ($expression$1 instanceof oncie_NilPathStep) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($expression$1 instanceof oncie_ShortestPathExpression) { + $expression$1 = $expression$1; + oncias_SemanticPatternCheck$_$callClinit(); + $ctx$1 = (oncias_SemanticPatternCheck$_declareVariables0(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Expression$_MODULE$, oncie_ShortestPathExpression_pattern($expression$1))).$chain(oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Expression$_MODULE$, oncie_ShortestPathExpression_pattern($expression$1))); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, onciu_Foldable$Folder_treeExists(oncie_PatternElement_folder(oncie_ShortestPathsPatternPart_element(oncie_ShortestPathExpression_pattern($expression$1))), oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1__init_()), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56__init_0($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, + oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57__init_($expression$1), $expression$1))); + } + if ($expression$1 instanceof oncie_PatternExpression) { + $expression$1 = $expression$1; + oncias_SemanticState$_$callClinit(); + $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58__init_($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59__init_(), + $expression$1))); + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_SemanticPatternCheck$_check(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Expression$_MODULE$, oncie_RelationshipsPattern_element(oncie_PatternExpression_pattern($expression$1)))); + } + if ($rt_isInstance($expression$1, oncie_IterablePredicateExpression)) { + $expression$1 = $expression$1; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$FilteringExpressions$_checkPredicateDefined(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, $expression$1)).$chain(oncias_SemanticExpressionCheck$FilteringExpressions$_semanticCheck(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, $ctx$1, $expression$1)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60__init_(), $expression$1))); + } + if ($expression$1 instanceof oncie_ReduceExpression) { + $expression$1 = $expression$1; + $allowedTypes = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ReduceExpression_init($expression$1)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ReduceExpression_list($expression$1))), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61__init_0(), + oncie_ReduceExpression_list($expression$1))), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62__init_0($expression$1))); + $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; + $relationship = oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_63__init_0($expression$1); + $rhs = oncie_ReduceExpression_expression($expression$1); + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_SemanticExpressionCheck$_expectType6($possibleTypes, $relationship, $rhs, oncias_SemanticExpressionCheck$TypeMismatchContext$_ACCUMULATOR0(oncias_SemanticExpressionCheck$TypeMismatchContext$_MODULE$), oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator0(oncie_ReduceExpression$_MODULE$))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType0(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64__init_0($expression$1), $expression$1))); + $allowedTypes = oncias_package$_MODULE$; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticErrorDefOption($allowedTypes, oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, oncie_ReduceExpression_expression($expression$1)))); + } + if ($expression$1 instanceof oncie_ListLiteral) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ListLiteral_expressions($expression$1))).$chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType0(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$_possibleTypes$1($expression$1), $expression$1))); + } + if ($expression$1 instanceof oncie_ListSlice) { + $expression$1 = $expression$1; + $allowedTypes = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ListSlice_list($expression$1)), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65__init_0(), oncie_ListSlice_list($expression$1))); + oncias_SemanticCheck$_$callClinit(); + $allowedTypes = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, s_Option_isEmpty(oncie_ListSlice_from($expression$1)) && s_Option_isEmpty(oncie_ListSlice_to($expression$1)) ? 1 : 0, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66__init_0($expression$1))), oncias_SemanticExpressionCheck$_check1(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ListSlice_from($expression$1))); + $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; + oncius_package$_$callClinit(); + $ctx$1 = oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($allowedTypes, oncias_SemanticExpressionCheck$_expectType1($possibleTypes, oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncie_ListSlice_from($expression$1))), oncias_SemanticExpressionCheck$_check1(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ListSlice_to($expression$1))), oncias_SemanticExpressionCheck$_expectType1(oncias_SemanticExpressionCheck$_MODULE$, + oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncie_ListSlice_to($expression$1))); + $allowedTypes = oncias_package$_MODULE$; + $possibleTypes = oncias_SemanticExpressionCheck$_MODULE$; + return oncias_SemanticCheck$FlatMap_chain($ctx$1, oncias_package$_liftSemanticEitherFunc($allowedTypes, oncias_SemanticExpressionCheck$_specifyType0($possibleTypes, oncias_SemanticExpressionCheck$_types($possibleTypes, oncie_ListSlice_list($expression$1)), $expression$1))); + } + if ($expression$1 instanceof oncie_ContainerIndex) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ContainerIndex_expr($expression$1)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_ContainerIndex_idx($expression$1))), oncias_SemanticExpressionCheck$_typeSwitch(oncias_SemanticExpressionCheck$_MODULE$, oncie_ContainerIndex_expr($expression$1), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67__init_($expression$1))); + } + if ($expression$1 instanceof oncie_MapExpression) { + $expression$1 = $expression$1; + return (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, (oncie_MapExpression_items($expression$1)).$map(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68__init_0()))).$chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69__init_0(), $expression$1))); + } + if ($expression$1 instanceof oncie_MapProjection) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_MapProjection_items($expression$1))).$chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_ensureDefined(oncias_SemanticExpressionCheck$_MODULE$, oncie_MapProjection_name($expression$1)))), oncias_SemanticExpressionCheck$_expectType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70__init_(), oncie_MapProjection_name($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71__init_(), $expression$1))), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72__init_($expression$1)); + } + if ($expression$1 instanceof oncie_LiteralEntry) { + $expression$1 = $expression$1; + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_LiteralEntry_exp($expression$1)); + } + if ($expression$1 instanceof oncie_VariableSelector) { + $expression$1 = $expression$1; + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, oncie_VariableSelector_id($expression$1)); + } + if ($expression$1 instanceof oncie_PropertySelector) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($expression$1 instanceof oncie_AllPropertiesSelector) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + if ($expression$1 instanceof oncie_DesugaredMapProjection) { + $expression$1 = $expression$1; + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$FlatMap_chain((oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$items())).$chain(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx$1, $expression$1.$entity())), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73__init_0(), + $expression$1))), oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74__init_0($expression$1)); + } + if ($expression$1 instanceof oncie_DecimalIntegerLiteral) { + $expression$1 = $expression$1; + oncias_SemanticCheck$_$callClinit(); + return (oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$_validNumber(oncias_SemanticExpressionCheck$_MODULE$, $expression$1) ? 0 : 1, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75__init_($expression$1))).$chain(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76__init_0(), $expression$1))); + } + if ($expression$1 instanceof oncie_OctalIntegerLiteral) { + $expression$1 = $expression$1; + $stringVal = oncie_SignedOctalIntegerLiteral_stringVal($expression$1); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$_validNumber(oncias_SemanticExpressionCheck$_MODULE$, $expression$1) ? 0 : 1, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77__init_0($stringVal, $expression$1))).$ifOkChain(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78__init_($stringVal, $expression$1)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79__init_(), $expression$1))); + } + if ($expression$1 instanceof oncie_HexIntegerLiteral) { + $expression$1 = $expression$1; + $stringVal = oncie_SignedHexIntegerLiteral_stringVal($expression$1); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$_validNumber(oncias_SemanticExpressionCheck$_MODULE$, $expression$1) ? 0 : 1, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80__init_($stringVal, $expression$1))).$ifOkChain(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81__init_0($stringVal, $expression$1)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82__init_(), $expression$1))); + } + if ($expression$1 instanceof oncie_DecimalDoubleLiteral) { + $expression$1 = $expression$1; + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain((oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, oncias_SemanticExpressionCheck$_validNumber0(oncias_SemanticExpressionCheck$_MODULE$, $expression$1) ? 0 : 1, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83__init_($expression$1))).$ifOkChain(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84__init_0($expression$1)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85__init_(), $expression$1))); + } + if ($expression$1 instanceof oncie_StringLiteral) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86__init_(), $expression$1)); + } + if ($expression$1 instanceof oncie_Null) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87__init_0(), $expression$1)); + } + if ($rt_isInstance($expression$1, oncie_BooleanLiteral)) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88__init_0(), $expression$1)); + } + if ($expression$1 instanceof oncie_Infinity) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89__init_(), $expression$1)); + } + if ($expression$1 instanceof oncie_NaN) { + $expression$1 = $expression$1; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90__init_(), $expression$1)); + } + if ($rt_isInstance($expression$1, oncias_SemanticCheckableExpression)) + return oncifp_ResolvedFunctionInvocation_semanticCheck($expression$1, $ctx$1); + if ($expression$1 instanceof oncia_ExistsExpression) { + $expression$1 = $expression$1; + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91__init_0($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92__init_0(), + $expression$1))); + } + if ($expression$1 instanceof oncia_CountExpression) { + $expression$1 = $expression$1; + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93__init_0($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94__init_(), + $expression$1))); + } + if (!($expression$1 instanceof oncia_CollectExpression)) { + if ($expression$1 === null) + $rt_throw(s_MatchError__init_($expression$1)); + return oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0_apply(oncias_SemanticExpressionCheck$_semanticCheckFallback0(oncias_SemanticExpressionCheck$_MODULE$), $ctx$1, $expression$1); + } + $expression$1 = $expression$1; + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$Leaf_chain(oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, $expression$1), oncias_SemanticExpressionCheck$_withScopedState(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95__init_0($expression$1))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$_specifyType(oncias_SemanticExpressionCheck$_MODULE$, oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96__init_(), + $expression$1))); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_19__init_0 = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_19(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_19__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$_colonConjunctions$1 = ($colonConjunctions$lzy$1, $labelExpression$2) => { + let var$3, $$je; + oncias_SemanticExpressionCheck$_$callClinit(); + if ($colonConjunctions$lzy$1.$_initialized) + return $colonConjunctions$lzy$1.$_value0; + jl_Object_monitorEnterSync($colonConjunctions$lzy$1); + a: { + try { + if (sr_LazyRef_initialized($colonConjunctions$lzy$1)) + $labelExpression$2 = sr_LazyRef_value($colonConjunctions$lzy$1); + else { + var$3 = $labelExpression$2.$folder(); + sr_ClassTag$_$callClinit(); + $labelExpression$2 = sr_LazyRef_initialize($colonConjunctions$lzy$1, onciu_Foldable$Folder_findAllByClass(var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonConjunction)))); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + $labelExpression$2 = $$je; + break a; + + } + jl_Object_monitorExitSync($colonConjunctions$lzy$1); + return $labelExpression$2; + } + jl_Object_monitorExitSync($colonConjunctions$lzy$1); + $rt_throw($labelExpression$2); }, -oncie_HasALabelOrType = $rt_classWithoutFields(oncie_Expression), -oncie_HasTypes = $rt_classWithoutFields(oncie_Expression); -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_20() { - jl_Object.call(this); - this.$_01184 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_20__init_0 = (var$0, var$1) => { - var$0.$_01184 = var$1; +oncias_SemanticExpressionCheck$_colonDisjunctions$1 = ($colonDisjunctions$lzy$1, $labelExpression$2) => { + let var$3, $$je; + oncias_SemanticExpressionCheck$_$callClinit(); + if ($colonDisjunctions$lzy$1.$_initialized) + return $colonDisjunctions$lzy$1.$_value0; + jl_Object_monitorEnterSync($colonDisjunctions$lzy$1); + a: { + try { + if (sr_LazyRef_initialized($colonDisjunctions$lzy$1)) + $labelExpression$2 = sr_LazyRef_value($colonDisjunctions$lzy$1); + else { + var$3 = $labelExpression$2.$folder(); + sr_ClassTag$_$callClinit(); + $labelExpression$2 = sr_LazyRef_initialize($colonDisjunctions$lzy$1, onciu_Foldable$Folder_findAllByClass(var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction)))); + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + $labelExpression$2 = $$je; + break a; + + } + jl_Object_monitorExitSync($colonDisjunctions$lzy$1); + return $labelExpression$2; + } + jl_Object_monitorExitSync($colonDisjunctions$lzy$1); + $rt_throw($labelExpression$2); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_20__init_ = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_20(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_20__init_0(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$_legacySymbols$1 = ($legacySymbols$lzy$1, $colonConjunctions$lzy$1, $labelExpression$2, $colonDisjunctions$lzy$1) => { + let $$je; + oncias_SemanticExpressionCheck$_$callClinit(); + if ($legacySymbols$lzy$1.$_initialized) + return $legacySymbols$lzy$1.$_value0; + jl_Object_monitorEnterSync($legacySymbols$lzy$1); + a: { + try { + $colonConjunctions$lzy$1 = sr_LazyRef_initialized($legacySymbols$lzy$1) ? sr_LazyRef_value($legacySymbols$lzy$1) : sr_LazyRef_initialize($legacySymbols$lzy$1, sc_AbstractIterable_$plus$plus(oncias_SemanticExpressionCheck$_colonConjunctions$1($colonConjunctions$lzy$1, $labelExpression$2), oncias_SemanticExpressionCheck$_colonDisjunctions$1($colonDisjunctions$lzy$1, $labelExpression$2))); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $colonConjunctions$lzy$1 = $$je; + break a; + + } + jl_Object_monitorExitSync($legacySymbols$lzy$1); + return $colonConjunctions$lzy$1; + } + jl_Object_monitorExitSync($legacySymbols$lzy$1); + $rt_throw($colonConjunctions$lzy$1); }, -oncie_DesugaredMapProjection = $rt_classWithoutFields(oncie_Expression); -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_21() { - jl_Object.call(this); - this.$_01056 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_21__init_ = (var$0, var$1) => { - var$0.$_01056 = var$1; +oncias_SemanticExpressionCheck$_$anonfun$infixAddRhsTypes$1 = ($lhs$1, $s) => { + let $lhsTypes, $valueTypes, $temporalTypes, $durationTypes, $listTypes, $lhsListTypes, $rhsListTypes; + oncias_SemanticExpressionCheck$_$callClinit(); + $lhsTypes = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, $lhs$1), $s); + oncius_package$_$callClinit(); + if (!oncius_TypeSpec_containsAny($lhsTypes, oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$))), oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$))))) { + oncius_TypeSpec$_$callClinit(); + $valueTypes = oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); + } else + $valueTypes = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)), oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$))), oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$))); + if (!oncius_TypeSpec_containsAny($lhsTypes, oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$)), oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$))), oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$))), oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$))), oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$))), + oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$))))) { + oncius_TypeSpec$_$callClinit(); + $temporalTypes = oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); + } else + $temporalTypes = oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)); + if (!oncius_TypeSpec_containsAny($lhsTypes, oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)))) { + oncius_TypeSpec$_$callClinit(); + $durationTypes = oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); + } else + $durationTypes = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$)), oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$))), oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$))), oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$))), oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$))), + oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$))); + $lhs$1 = oncius_package$_MODULE$; + $lhs$1 = oncius_TypeSpec_leastUpperBounds($lhsTypes, (oncius_package$_CTList($lhs$1, oncius_package$_CTAny($lhs$1))).$invariant()); + $s = oncius_package$_MODULE$; + $listTypes = oncius_TypeSpec_covariant(oncius_TypeSpec_constrain($lhs$1, oncius_package$_CTList($s, oncius_package$_CTAny($s)))); + $lhsListTypes = oncius_TypeSpec_union($listTypes, oncius_TypeSpec_unwrapLists($listTypes)); + $lhs$1 = oncius_package$_MODULE$; + $rhsListTypes = oncius_ListType_covariant(oncius_package$_CTList($lhs$1, oncius_package$_CTAny($lhs$1))); + return oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union($valueTypes, $lhsListTypes), $rhsListTypes), $temporalTypes), $durationTypes); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_21__init_0 = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_21(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_21__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$_when$1 = ($fst, $snd, $result, $lhsTypes$1, $rhsTypes$1) => { + oncias_SemanticExpressionCheck$_$callClinit(); + a: { + if (!(oncius_TypeSpec_containsAny($lhsTypes$1, $fst) && oncius_TypeSpec_containsAny($rhsTypes$1, $snd))) { + if (!oncius_TypeSpec_containsAny($lhsTypes$1, $snd)) + break a; + if (!oncius_TypeSpec_containsAny($rhsTypes$1, $fst)) + break a; + } + return $result.$invariant(); + } + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_21_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_01056, var$1); +oncias_SemanticExpressionCheck$_$anonfun$infixAddOutputTypes$1 = ($lhs$2, $rhs$1, $s) => { + let $lhsTypes, $rhsTypes, $stringTypes, $numberTypes, $temporalTypes, $lhsListTypes, $rhsListTypes, $lhsListInnerTypes, $rhsListInnerTypes, $lhsScalarTypes, $rhsScalarTypes, $bothListMergedLhTypes, $bothListMergedRhTypes, $lhListMergedTypes, $rhListMergedTypes, $listTypes; + oncias_SemanticExpressionCheck$_$callClinit(); + $lhsTypes = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, $lhs$2), $s); + $rhsTypes = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, $rhs$1), $s); + oncius_package$_$callClinit(); + $stringTypes = oncias_SemanticExpressionCheck$_when$1(oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)), oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$))), oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$))), oncius_package$_CTString(oncius_package$_MODULE$), $lhsTypes, $rhsTypes); + $numberTypes = oncius_TypeSpec_union(oncias_SemanticExpressionCheck$_when$1(oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), oncius_package$_CTInteger(oncius_package$_MODULE$), $lhsTypes, $rhsTypes), oncias_SemanticExpressionCheck$_when$1(oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$)), oncius_TypeSpec_union(oncius_FloatType_covariant(oncius_package$_CTFloat(oncius_package$_MODULE$)), + oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$))), oncius_package$_CTFloat(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)); + $temporalTypes = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTDuration(oncius_package$_MODULE$), $lhsTypes, $rhsTypes), + oncias_SemanticExpressionCheck$_when$1(oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTDate(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_DateType_covariant(oncius_package$_CTDate(oncius_package$_MODULE$)), oncius_package$_CTDate(oncius_package$_MODULE$), + $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_ZonedTimeType_covariant(oncius_package$_CTTime(oncius_package$_MODULE$)), oncius_package$_CTTime(oncius_package$_MODULE$), + $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTLocalTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_LocalTimeType_covariant(oncius_package$_CTLocalTime(oncius_package$_MODULE$)), + oncius_package$_CTLocalTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTLocalDateTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_LocalDateTimeType_covariant(oncius_package$_CTLocalDateTime(oncius_package$_MODULE$)), + oncius_package$_CTLocalDateTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$)), oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_package$_CTDateTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)), oncias_SemanticExpressionCheck$_when$1(oncius_DurationType_covariant(oncius_package$_CTDuration(oncius_package$_MODULE$)), oncius_ZonedDateTimeType_covariant(oncius_package$_CTDateTime(oncius_package$_MODULE$)), + oncius_package$_CTDateTime(oncius_package$_MODULE$), $lhsTypes, $rhsTypes)); + $lhs$2 = oncius_package$_MODULE$; + $lhsListTypes = oncius_TypeSpec_constrain($lhsTypes, oncius_package$_CTList($lhs$2, oncius_package$_CTAny($lhs$2))); + $lhs$2 = oncius_package$_MODULE$; + $rhsListTypes = oncius_TypeSpec_constrain($rhsTypes, oncius_package$_CTList($lhs$2, oncius_package$_CTAny($lhs$2))); + $lhsListInnerTypes = oncius_TypeSpec_unwrapLists($lhsListTypes); + $rhsListInnerTypes = oncius_TypeSpec_unwrapLists($rhsListTypes); + $lhs$2 = oncius_package$_MODULE$; + $lhsScalarTypes = oncius_TypeSpec_without($lhsTypes, oncius_package$_CTList($lhs$2, oncius_package$_CTAny($lhs$2))); + $lhs$2 = oncius_package$_MODULE$; + $rhsScalarTypes = oncius_TypeSpec_without($rhsTypes, oncius_package$_CTList($lhs$2, oncius_package$_CTAny($lhs$2))); + $bothListMergedLhTypes = oncius_TypeSpec_wrapInList(oncius_TypeSpec_coerceOrLeastUpperBound($lhsListInnerTypes, $rhsListInnerTypes)); + $bothListMergedRhTypes = oncius_TypeSpec_wrapInList(oncius_TypeSpec_coerceOrLeastUpperBound($rhsListInnerTypes, $lhsListInnerTypes)); + $lhListMergedTypes = oncius_TypeSpec_wrapInList(oncius_TypeSpec_coerceOrLeastUpperBound($rhsScalarTypes, $lhsListInnerTypes)); + $rhListMergedTypes = oncius_TypeSpec_wrapInList(oncius_TypeSpec_coerceOrLeastUpperBound($lhsScalarTypes, $rhsListInnerTypes)); + $listTypes = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union($bothListMergedLhTypes, $bothListMergedRhTypes), $lhListMergedTypes), $rhListMergedTypes); + return oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union($stringTypes, $numberTypes), $listTypes), $temporalTypes); }; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_22() { +function oncia_CreateConstraint$semanticCheck$lambda$_28_0() { jl_Object.call(this); - this.$_01195 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_22__init_0 = (var$0, var$1) => { - var$0.$_01195 = var$1; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_22__init_ = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_22(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_22__init_0(var_1, var_0); - return var_1; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_23 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_23__init_0 = var$0 => { - return; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_23__init_ = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_23(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_23__init_0(var_0); - return var_0; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_23_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 === null ? 0 : 1); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_24() { - let a = this; jl_Object.call(a); - a.$_0835 = null; - a.$_1286 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_24__init_0 = (var$0, var$1, var$2) => { - var$0.$_0835 = var$1; - var$0.$_1286 = var$2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_24__init_ = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_24(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_24__init_0(var_2, var_0, var_1); - return var_2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_24_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0835; - var$3 = var$0.$_1286; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$4 = var$1.$_1(); - var$1 = var$1.$_2(); - var$5 = new sci_$colon$colon; - var$6 = var$2.$prettifier0.$BASE_INDENT; - var$4 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$4); - var$1 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$6), $rt_s(6954)), var$4), $rt_s(6955)), var$1); - sci_$colon$colon__init_0(var$5, jl_AbstractStringBuilder_toString(var$2), sci_Nil$_MODULE$); - return sci_List_map(var$5, new onciap_DefaultExpressionStringifier$$anonfun$stringify$25$lambda$_52_0); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_25() { - let a = this; jl_Object.call(a); - a.$_0284 = null; - a.$_1109 = null; + this.$_0404 = null; } -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_25__init_0 = (var$0, var$1, var$2) => { - var$0.$_0284 = var$1; - var$0.$_1109 = var$2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_25__init_ = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_25(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_25__init_0(var_2, var_0, var_1); - return var_2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_25_apply = (var$0, var$1) => { +let oncia_CreateConstraint$semanticCheck$lambda$_28_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0284; - var$3 = var$0.$_1109; - var$4 = new sci_$colon$colon; - var$5 = var$2.$prettifier0.$BASE_INDENT; - var$1 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$5), $rt_s(6956)), var$1); - sci_$colon$colon__init_0(var$4, jl_AbstractStringBuilder_toString(var$2), sci_Nil$_MODULE$); - return sci_List_map(var$4, new onciap_DefaultExpressionStringifier$$anonfun$stringify$27$lambda$_54_0); + var$2 = var$0.$_0404; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = var$1.$map15 instanceof oncie_Variable ? 0 : 1; + var$5 = new oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0; + var$5.$_0563 = var$2; + var$5.$_1192 = var$1; + return oncias_SemanticCheck$_when(var$3, var$4, var$5); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_26 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$stringify$lambda$_11_26__init_0 = var$0 => { +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0 = $rt_classWithoutFields(), +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0__init_0 = var$0 => { return; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_26__init_ = () => { - let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_26(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_26__init_0(var_0); +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0__init_ = () => { + let var_0 = new oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0(); + oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0__init_0(var_0); return var_0; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_26_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 === null ? 0 : 1); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_27() { - let a = this; jl_Object.call(a); - a.$_0412 = null; - a.$_1149 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_27__init_ = (var$0, var$1, var$2) => { - var$0.$_0412 = var$1; - var$0.$_1149 = var$2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_27__init_0 = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_27(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_27__init_(var_2, var_0, var_1); - return var_2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_27_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0412; - var$3 = var$0.$_1149; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$4 = var$1.$_1(); - var$1 = var$1.$_2(); - var$5 = new sci_$colon$colon; - var$6 = var$2.$prettifier0.$BASE_INDENT; - var$4 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 1, var$4); - var$1 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$6), $rt_s(6954)), var$4), $rt_s(6955)), var$1); - sci_$colon$colon__init_0(var$5, jl_AbstractStringBuilder_toString(var$2), sci_Nil$_MODULE$); - return sci_List_map(var$5, new onciap_DefaultExpressionStringifier$$anonfun$stringify$30$lambda$_57_0); -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_28() { - let a = this; jl_Object.call(a); - a.$_0992 = null; - a.$_1344 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_28__init_0 = (var$0, var$1, var$2) => { - var$0.$_0992 = var$1; - var$0.$_1344 = var$2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_28__init_ = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_28(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_28__init_0(var_2, var_0, var_1); - return var_2; + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + onciu_AnonymousVariableNameGenerator$_$callClinit(); + return jl_Boolean_valueOf(onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, var$1.$name4) ? 0 : 1); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_28_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0992; - var$3 = var$0.$_1344; - var$4 = new sci_$colon$colon; - var$5 = var$2.$prettifier0.$BASE_INDENT; - var$1 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$5), $rt_s(6956)), var$1); - sci_$colon$colon__init_0(var$4, jl_AbstractStringBuilder_toString(var$2), sci_Nil$_MODULE$); - return sci_List_map(var$4, new onciap_DefaultExpressionStringifier$$anonfun$stringify$32$lambda$_59_0); +oncie_NodePattern$WhereVariableInNodePatterns$ = $rt_classWithoutFields(), +oncie_NodePattern$WhereVariableInNodePatterns$_MODULE$ = null, +oncie_NodePattern$WhereVariableInNodePatterns$__clinit_ = () => { + oncie_NodePattern$WhereVariableInNodePatterns$_MODULE$ = new oncie_NodePattern$WhereVariableInNodePatterns$; }, -oncie_AndsReorderable = $rt_classWithoutFields(oncie_Expression); -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_29() { - let a = this; jl_Object.call(a); - a.$_0388 = null; - a.$_1143 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_29__init_ = (var$0, var$1, var$2) => { - var$0.$_0388 = var$1; - var$0.$_1143 = var$2; +oncie_NodePattern$WhereVariableInNodePatterns$_deprecatedIn = ($this, $cypherVersion) => { + return onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_deprecatedIn$($this, $cypherVersion); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_29__init_0 = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_29(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_29__init_(var_2, var_0, var_1); - return var_2; +oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$ = $rt_classWithoutFields(), +oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$_MODULE$ = null, +oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$__clinit_ = () => { + oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$_MODULE$ = new oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$; }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_29_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0388; - var$3 = var$0.$_1143; - return sci_$colon$colon__init_(var$1.$canonicalOperatorSymbol(), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1.$rhs0()), sci_Nil$_MODULE$)); +oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$_deprecatedIn = ($this, $cypherVersion) => { + return onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_deprecatedIn$($this, $cypherVersion); }; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_30() { - let a = this; jl_Object.call(a); - a.$_0382 = null; - a.$_1140 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_30__init_ = (var$0, var$1, var$2) => { - var$0.$_0382 = var$1; - var$0.$_1140 = var$2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_30__init_0 = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_30(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_30__init_(var_2, var_0, var_1); - return var_2; -}, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_30_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_inner(var$0.$_0382, var$0.$_1140, 0, var$1); -}, -oncie_AndedPropertyInequalities = $rt_classWithoutFields(oncie_Expression), -oncie_Ors = $rt_classWithoutFields(oncie_Expression); -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_31() { - jl_Object.call(this); - this.$_01209 = null; +function oncie_Add() { + let a = this; oncie_Expression.call(a); + a.$lhs8 = null; + a.$rhs9 = null; + a.$position103 = null; } -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_31__init_0 = (var$0, var$1) => { - var$0.$_01209 = var$1; +let oncie_Add_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_31__init_ = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_31(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_31__init_0(var_1, var_0); - return var_1; -}; -function onciap_DefaultExpressionStringifier$stringify$lambda$_11_32() { - let a = this; jl_Object.call(a); - a.$_01185 = null; - a.$_1395 = null; -} -let onciap_DefaultExpressionStringifier$stringify$lambda$_11_32__init_0 = (var$0, var$1, var$2) => { - var$0.$_01185 = var$1; - var$0.$_1395 = var$2; +oncie_Add_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_32__init_ = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_32(); - onciap_DefaultExpressionStringifier$stringify$lambda$_11_32__init_0(var_2, var_0, var_1); - return var_2; +oncie_Add_lhs = $this => { + return $this.$lhs8; }, -oncie_PathExpression = $rt_classWithoutFields(oncie_Expression); -function oncie_CoerceTo() { - let a = this; oncie_Expression.call(a); - a.$expr5 = null; - a.$typ0 = null; -} -let oncie_CoerceTo_expr = $this => { - return $this.$expr5; +oncie_Add_rhs = $this => { + return $this.$rhs9; }, -oncie_CoerceTo_position = $this => { - return $this.$expr5.$position(); +oncie_Add_position = $this => { + return $this.$position103; }, -oncie_CoerceTo_isConstantForQuery = $this => { - return $this.$expr5.$isConstantForQuery(); +oncie_Add_canonicalOperatorSymbol = $this => { + return $rt_s(600); }, -oncie_CoerceTo_productPrefix = $this => { - return $rt_s(6957); +oncie_Add_productPrefix = $this => { + return $rt_s(6524); }, -oncie_CoerceTo_productArity = $this => { +oncie_Add_productArity = $this => { return 2; }, -oncie_CoerceTo_productElement = ($this, $x$1) => { +oncie_Add_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$expr5; + return $this.$lhs8; case 1: - return $this.$typ0; + return $this.$rhs9; default: } return sr_Statics_ioobe($x$1); }, -oncie_CoerceTo_productIterator = $this => { +oncie_Add_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_CoerceTo_hashCode = $this => { +oncie_Add_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_CoerceTo_toString = $this => { +oncie_Add_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_CoerceTo_equals = ($this, $x$1) => { +oncie_Add_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_CoerceTo) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_Add) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$expr5; - var$3 = $x$1.$expr5; + var$2 = $this.$lhs8; + var$3 = $x$1.$lhs8; if (var$2 !== null) { if (!var$2.$equals(var$3)) break b; @@ -328410,8 +255833,8 @@ oncie_CoerceTo_equals = ($this, $x$1) => { break b; } d: { - var$3 = $this.$typ0; - $x$1 = $x$1.$typ0; + var$3 = $this.$rhs9; + $x$1 = $x$1.$rhs9; if (var$3 !== null) { if (!var$3.$equals($x$1)) break b; @@ -328421,7 +255844,7 @@ oncie_CoerceTo_equals = ($this, $x$1) => { if ($x$1 !== null) break b; } - if (!($this instanceof oncie_CoerceTo)) + if (!($this instanceof oncie_Add)) break b; } var$4 = 1; @@ -328431,699 +255854,463 @@ oncie_CoerceTo_equals = ($this, $x$1) => { } return var$4; }, -oncie_CoerceTo__init_0 = ($this, $expr, $typ) => { - $this.$expr5 = $expr; - $this.$typ0 = $typ; +oncie_Add__init_ = ($this, $lhs, $rhs, $position) => { + $this.$lhs8 = $lhs; + $this.$rhs9 = $rhs; + $this.$position103 = $position; oncie_Expression__init_($this); }, -oncie_CoerceTo__init_ = (var_0, var_1) => { - let var_2 = new oncie_CoerceTo(); - oncie_CoerceTo__init_0(var_2, var_0, var_1); - return var_2; -}, -oncilp_CoerceToPredicate = $rt_classWithoutFields(oncie_Expression), -oncie_AssertIsNode = $rt_classWithoutFields(oncie_Expression), -oncie_ElementIdToLongId = $rt_classWithoutFields(oncie_Expression), -oncie_RelationshipUniquenessPredicate = $rt_classWithoutFields(0), -oncie_NoneOfRelationships = $rt_classWithoutFields(oncie_Expression), -oncie_EntityType = $rt_classWithoutFields(0), -oncie_NODE_TYPE$ = $rt_classWithoutFields(), -oncie_NODE_TYPE$_MODULE$ = null, -oncie_NODE_TYPE$__clinit_ = () => { - oncie_NODE_TYPE$_MODULE$ = new oncie_NODE_TYPE$; -}, -oncie_NODE_TYPE$_productArity = $this => { - return 0; -}, -oncie_NODE_TYPE$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncie_Add__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Add(); + oncie_Add__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncie_NODE_TYPE$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$ = $rt_classWithoutFields(), +oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$_MODULE$ = null, +oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$__clinit_ = () => { + oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$_MODULE$ = new oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$; }, -oncie_NODE_TYPE$_hashCode = $this => { - return (-1012987049); +oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$_deprecatedIn = ($this, $cypherVersion) => { + return onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_deprecatedIn$($this, $cypherVersion); }, -oncie_NODE_TYPE$_toString = $this => { - return $rt_s(6958); +oncie_CaseExpression$KeywordVariablesInWhenOperand$ = $rt_classWithoutFields(), +oncie_CaseExpression$KeywordVariablesInWhenOperand$_MODULE$ = null, +oncie_CaseExpression$KeywordVariablesInWhenOperand$__clinit_ = () => { + oncie_CaseExpression$KeywordVariablesInWhenOperand$_MODULE$ = new oncie_CaseExpression$KeywordVariablesInWhenOperand$; }, -oncie_ElementIdToLongId$Mode = $rt_classWithoutFields(0), -oncie_ElementIdToLongId$Mode$Single$ = $rt_classWithoutFields(), -oncie_ElementIdToLongId$Mode$Single$_MODULE$ = null, -oncie_ElementIdToLongId$Mode$Single$__clinit_ = () => { - oncie_ElementIdToLongId$Mode$Single$_MODULE$ = new oncie_ElementIdToLongId$Mode$Single$; +oncie_CaseExpression$KeywordVariablesInWhenOperand$_deprecatedIn = ($this, $cypherVersion) => { + return onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25_deprecatedIn$($this, $cypherVersion); }, -oncie_ElementIdToLongId$Mode$Many$ = $rt_classWithoutFields(), -oncie_ElementIdToLongId$Mode$Many$_MODULE$ = null, -oncie_ElementIdToLongId$Mode$Many$__clinit_ = () => { - oncie_ElementIdToLongId$Mode$Many$_MODULE$ = new oncie_ElementIdToLongId$Mode$Many$; +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1_applyOrElse = ($this, $x1, $default) => { + let $subtract, $it, $variable, $variable_0, $cypherType, $add, $rhs, $containerIndex, $index; + if ($x1 !== null) { + $subtract = $x1.$_1(); + if ($subtract instanceof oncie_Equals) { + $it = $subtract.$rhs6; + if ($it instanceof oncia_IsTyped) { + $variable = $it; + $variable_0 = $variable.$lhs9; + $cypherType = $variable.$typeName2; + if ($variable_0 instanceof oncie_Variable) { + $add = $variable_0; + if (!$add.$isIsolated0 && jl_String_equalsIgnoreCase($add.$name4, $rt_s(6525)) && $variable.$withDoubleColonOnly) { + $variable_0 = new oncir_Deprecation; + $x1 = s_None$_MODULE$; + $default = new s_Some; + $subtract = new onciu_DeprecatedKeywordVariableInWhenOperand; + $variable = $variable.$position90; + $add = $add.$name4; + $rhs = $cypherType.$normalizedCypherTypeString(); + $cypherType = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($cypherType); + jl_StringBuilder_append(jl_StringBuilder_append($cypherType, $rt_s(688)), $rhs); + onciu_DeprecatedKeywordVariableInWhenOperand__init_($subtract, $variable, $add, jl_AbstractStringBuilder_toString($cypherType)); + s_Some__init_0($default, $subtract); + oncir_Deprecation__init_($variable_0, $x1, $default); + return $variable_0; + } + } + } + } + } + if ($x1 !== null) { + $subtract = $x1.$_1(); + if ($subtract instanceof oncie_Equals) { + $add = $subtract.$rhs6; + if ($add instanceof oncie_Add) { + $subtract = $add; + $variable = $subtract.$lhs8; + $rhs = $subtract.$rhs9; + if ($variable instanceof oncie_Variable) { + $variable = $variable; + if (!$variable.$isIsolated0 && jl_String_equalsIgnoreCase($variable.$name4, $rt_s(6526))) { + $x1 = new oncir_Deprecation; + $default = s_None$_MODULE$; + $add = new s_Some; + $variable_0 = new onciu_DeprecatedKeywordVariableInWhenOperand; + $subtract = $subtract.$position103; + $it = $variable.$name4; + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + $variable = onciap_DefaultExpressionStringifier_apply(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$), $rhs); + $rhs = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($rhs); + jl_AbstractStringBuilder_append0($rhs, 32); + $cypherType = jl_StringBuilder_append($rhs, $rt_s(600)); + jl_AbstractStringBuilder_append0($cypherType, 32); + jl_StringBuilder_append($cypherType, $variable); + onciu_DeprecatedKeywordVariableInWhenOperand__init_($variable_0, $subtract, $it, jl_AbstractStringBuilder_toString($rhs)); + s_Some__init_0($add, $variable_0); + oncir_Deprecation__init_($x1, $default, $add); + return $x1; + } + } + } + } + } + if ($x1 !== null) { + $subtract = $x1.$_1(); + if ($subtract instanceof oncie_Equals) { + $subtract = $subtract.$rhs6; + if ($subtract instanceof oncie_Subtract) { + $subtract = $subtract; + $variable = $subtract.$lhs7; + $rhs = $subtract.$rhs7; + if ($variable instanceof oncie_Variable) { + $variable = $variable; + if (!$variable.$isIsolated0 && jl_String_equalsIgnoreCase($variable.$name4, $rt_s(6526))) { + $x1 = new oncir_Deprecation; + $default = s_None$_MODULE$; + $add = new s_Some; + $variable_0 = new onciu_DeprecatedKeywordVariableInWhenOperand; + $subtract = $subtract.$position99; + $it = $variable.$name4; + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + $variable = onciap_DefaultExpressionStringifier_apply(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$), $rhs); + $rhs = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($rhs); + jl_AbstractStringBuilder_append0($rhs, 32); + $cypherType = jl_StringBuilder_append($rhs, $rt_s(3665)); + jl_AbstractStringBuilder_append0($cypherType, 32); + jl_StringBuilder_append($cypherType, $variable); + onciu_DeprecatedKeywordVariableInWhenOperand__init_($variable_0, $subtract, $it, jl_AbstractStringBuilder_toString($rhs)); + s_Some__init_0($add, $variable_0); + oncir_Deprecation__init_($x1, $default, $add); + return $x1; + } + } + } + } + } + if ($x1 !== null) { + $x1 = $x1.$_1(); + if ($x1 instanceof oncie_Equals) { + $containerIndex = $x1.$rhs6; + if ($containerIndex instanceof oncie_ContainerIndex) { + $x1 = $containerIndex; + $variable = $x1.$expr2; + $index = $x1.$idx0; + if ($variable instanceof oncie_Variable) { + $subtract = $variable; + if (!$subtract.$isIsolated0 && jl_String_equalsIgnoreCase($subtract.$name4, $rt_s(6527))) { + $default = new oncir_Deprecation; + $variable = s_None$_MODULE$; + $variable_0 = new s_Some; + $rhs = new onciu_DeprecatedKeywordVariableInWhenOperand; + $add = $x1.$position48; + $subtract = $subtract.$name4; + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + $cypherType = onciap_DefaultExpressionStringifier_apply(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_stringifier(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_MODULE$), $index); + $x1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($x1); + jl_AbstractStringBuilder_append0($x1, 91); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append($x1, $cypherType), 93); + onciu_DeprecatedKeywordVariableInWhenOperand__init_($rhs, $add, $subtract, jl_AbstractStringBuilder_toString($x1)); + s_Some__init_0($variable_0, $rhs); + oncir_Deprecation__init_($default, $variable, $variable_0); + return $default; + } + } + } + } + } + return $default; }, -oncie_RELATIONSHIP_TYPE$ = $rt_classWithoutFields(), -oncie_RELATIONSHIP_TYPE$_MODULE$ = null, -oncie_RELATIONSHIP_TYPE$__clinit_ = () => { - oncie_RELATIONSHIP_TYPE$_MODULE$ = new oncie_RELATIONSHIP_TYPE$; +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1_applyOrElse0 = ($this, $x, $default) => { + return oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1_applyOrElse($this, $x, $default); }, -oncie_RELATIONSHIP_TYPE$_productArity = $this => { - return 0; +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1__init_0 = $this => { + return; }, -oncie_RELATIONSHIP_TYPE$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1__init_ = () => { + let var_0 = new oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1(); + oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1__init_0(var_0); + return var_0; }, -oncie_RELATIONSHIP_TYPE$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncir_Deprecations$ = $rt_classWithoutFields(), +oncir_Deprecations$_MODULE$ = null, +oncir_Deprecations$__clinit_ = () => { + oncir_Deprecations$_MODULE$ = new oncir_Deprecations$; }, -oncie_RELATIONSHIP_TYPE$_hashCode = $this => { - return 1809384673; +oncir_Deprecations$_org$neo4j$cypher$internal$rewriting$Deprecations$$functionInvocationForSetProperties = ($this, $s, $e) => { + let var$3, var$4, var$5, var$6, var$7; + var$3 = new oncie_FunctionInvocation; + var$4 = oncie_FunctionName__init_(oncie_Namespace__init_(sci_Nil$_MODULE$, $e.$position4), $rt_s(4662), $e.$position4); + s_package$_$callClinit(); + var$5 = s_package$_Vector(s_package$_MODULE$); + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncie_Variable, 1); + var$7.data[0] = $e; + var$5 = var$5.$from0(sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); + oncie_FunctionInvocation$_$callClinit(); + oncie_FunctionInvocation__init_(var$3, var$4, 0, var$5, oncie_FunctionInvocation$ArgumentUnordered$_MODULE$, 0, $s.$position()); + return var$3; }, -oncie_RELATIONSHIP_TYPE$_toString = $this => { - return $rt_s(6959); +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$1_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5, var$6; + $x = $x; + var$3 = new oncir_Deprecation; + $default = s_None$_MODULE$; + var$4 = new s_Some; + var$5 = new onciu_DeprecatedPropertyReferenceInCreate; + var$6 = $x.$position4; + $x = $x.$name4; + var$5.$position85 = var$6; + var$5.$varName1 = $x; + s_Some__init_0(var$4, var$5); + oncir_Deprecation__init_(var$3, $default, var$4); + return var$3; }, -oncie_DifferentRelationships = $rt_classWithoutFields(oncie_Expression), -oncie_Disjoint = $rt_classWithoutFields(oncie_Expression), -oncie_Unique = $rt_classWithoutFields(oncie_Expression), -oncie_VarLengthBound = $rt_classWithoutFields(oncie_Expression), -oncie_VarLengthLowerBound = $rt_classWithoutFields(oncie_VarLengthBound), -oncie_VarLengthUpperBound = $rt_classWithoutFields(oncie_VarLengthBound), -oncie_IsRepeatTrailUnique = $rt_classWithoutFields(oncie_Expression); -function oncias_SemanticAnalysisTooling$declareVariable$lambda$_57_0() { - let a = this; jl_Object.call(a); - a.$_080 = null; - a.$_134 = null; -} -let oncias_SemanticAnalysisTooling$declareVariable$lambda$_57_0_apply = (var$0, var$1) => { - return oncias_SemanticState_declareVariable(var$1, var$0.$_080, var$0.$_134, s_None$_MODULE$, 0, 0); +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$2_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5, var$6; + $x = $x; + var$3 = new oncir_Deprecation; + $default = s_None$_MODULE$; + var$4 = new s_Some; + var$5 = new onciu_DeprecatedPropertyReferenceInMerge; + var$6 = $x.$position4; + $x = $x.$name4; + var$5.$position80 = var$6; + var$5.$varName0 = $x; + s_Some__init_0(var$4, var$5); + oncir_Deprecation__init_(var$3, $default, var$4); + return var$3; }; -function sc_Iterator$$anon$16() { - let a = this; sc_AbstractIterator.call(a); - a.$idx1 = 0; - a.$$outer14 = null; +function oavra_SemanticContext$PrecedencePredicate() { + oavra_SemanticContext.call(this); + this.$precedence = 0; } -let sc_Iterator$$anon$16_knownSize = $this => { - return $this.$$outer14.$scala$collection$IndexedSeqView$IndexedSeqViewIterator$$remainder; +let oavra_SemanticContext$PrecedencePredicate_eval = ($this, $parser, $parserCallStack) => { + return oavr_Parser_precpred($parser, $parserCallStack, $this.$precedence); }, -sc_Iterator$$anon$16_hasNext = $this => { - return $this.$$outer14.$hasNext(); +oavra_SemanticContext$PrecedencePredicate_evalPrecedence = ($this, $parser, $parserCallStack) => { + if (!oavr_Parser_precpred($parser, $parserCallStack, $this.$precedence)) + return null; + return oavra_SemanticContext$Empty_Instance; +}, +oavra_SemanticContext$PrecedencePredicate_hashCode = $this => { + return 31 + $this.$precedence | 0; +}, +oavra_SemanticContext$PrecedencePredicate_equals = ($this, $obj) => { + let $other; + if (!($obj instanceof oavra_SemanticContext$PrecedencePredicate)) + return 0; + if ($this === $obj) + return 1; + $other = $obj; + return $this.$precedence != $other.$precedence ? 0 : 1; }, -sc_Iterator$$anon$16_next = $this => { +oavra_SemanticContext$PrecedencePredicate_toString = $this => { let var$1; - var$1 = s_Tuple2__init_(sc_IndexedSeqView$IndexedSeqViewIterator_next($this.$$outer14), jl_Integer_valueOf($this.$idx1)); - $this.$idx1 = $this.$idx1 + 1 | 0; - return var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append(var$1, $rt_s(430)); + var$1 = jl_StringBuilder_append0(var$1, $this.$precedence); + jl_AbstractStringBuilder_append(var$1, $rt_s(6528)); + return jl_AbstractStringBuilder_toString(var$1); }, -oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0 = $rt_classWithoutFields(), -oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +oavra_SemanticContext$PrecedencePredicate_compareTo = ($this, var$1) => { var$1 = var$1; - var$2 = s_Tuple2__1$mcI$sp(var$1); - var$1 = var$1.$_2(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = jl_StringBuilder_append0(var$3, var$2); - jl_AbstractStringBuilder_append0(var$4, 40); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, var$1), 41); - return jl_AbstractStringBuilder_toString(var$3); -}; -function sc_SeqOps$occCounts$lambda$_124_0() { - jl_Object.call(this); - this.$_01011 = null; -} -let sc_SeqOps$occCounts$lambda$_124_0_apply = (var$0, var$1) => { - return scm_HashMap_updateWith(var$0.$_01011, var$1, new sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0); -}; -function sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0() { - let a = this; jl_Object.call(a); - a.$_01012 = null; - a.$_1348 = null; -} -let sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_01012; - var$3 = var$0.$_1348; + return $this.$precedence - var$1.$precedence | 0; +}, +sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0 = $rt_classWithoutFields(), +sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0_apply = (var$0, var$1) => { + let var$2; if (jl_Object_equals(s_None$_MODULE$, var$1)) - var$1 = s_None$_MODULE$; + var$1 = s_Some__init_(jl_Integer_valueOf(1)); else { if (!(var$1 instanceof s_Some)) $rt_throw(s_MatchError__init_(var$1)); - var$4 = sr_BoxesRunTime_unboxToInt(var$1.$value5); - var$2.$addOne(var$3); - var$1 = var$4 == 1 ? s_None$_MODULE$ : s_Some__init_(jl_Integer_valueOf(var$4 - 1 | 0)); + var$2 = sr_BoxesRunTime_unboxToInt(var$1.$value5); + var$1 = s_Some__init_(jl_Integer_valueOf(var$2 + 1 | 0)); } return var$1; }; -function oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0() { - jl_Object.call(this); - this.$_0679 = null; +function oncia_Union$$anonfun$defineUnionVariables$5$lambda$_57_0() { + let a = this; jl_Object.call(a); + a.$_0203 = null; + a.$_175 = null; + a.$_227 = null; } -let oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0679; - oncia_CommandClause$_$callClinit(); - return oncie_Variable_copyId(var$1); +let oncia_Union$$anonfun$defineUnionVariables$5$lambda$_57_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0203; + var$3 = var$0.$_175; + var$4 = var$0.$_227; + var$2 = oncias_Scope_symbol(var$2, var$3.$variableInRhsName); + var$5 = new oncia_Union$$anonfun$defineUnionVariables$6$lambda$_56_0; + var$5.$_01132 = var$1; + var$5.$_1386 = var$4; + var$5.$_2125 = var$3; + return s_Option_map(var$2, var$5); }; -function onciafnc_CodeCompletionCore() { - let a = this; jl_Object.call(a); - a.$ignoredTokens0 = null; - a.$preferredRules0 = null; - a.$parser0 = null; - a.$atn0 = null; - a.$vocabulary3 = null; - a.$ruleNames = null; - a.$tokens1 = null; - a.$tokenStartIndex = 0; - a.$statesProcessed = 0; - a.$shortcutMap = null; - a.$candidates = null; +function sc_IterableOnceOps$foldRight$lambda$_36_0() { + jl_Object.call(this); + this.$_0750 = null; } -let onciafnc_CodeCompletionCore_followSetsByATN = null, -onciafnc_CodeCompletionCore__init_ = ($this, $parser, $preferredRules, $ignoredTokens) => { - let var$4; - $this.$ignoredTokens0 = ju_HashSet__init_(); - $this.$preferredRules0 = ju_HashSet__init_(); - $this.$tokenStartIndex = 0; - $this.$statesProcessed = 0; - $this.$shortcutMap = ju_HashMap__init_(); - var$4 = new onciafnc_CodeCompletionCore$CandidatesCollection; - var$4.$tokens0 = ju_HashMap__init_(); - var$4.$rules = ju_HashMap__init_(); - $this.$candidates = var$4; - $this.$parser0 = $parser; - $this.$atn0 = $parser.$getATN(); - $this.$vocabulary3 = $parser.$getVocabulary(); - $this.$ruleNames = $parser.$getRuleNames(); - if ($preferredRules !== null) - $this.$preferredRules0 = $preferredRules; - if ($ignoredTokens !== null) - $this.$ignoredTokens0 = $ignoredTokens; -}, -onciafnc_CodeCompletionCore__init_0 = (var_0, var_1, var_2) => { - let var_3 = new onciafnc_CodeCompletionCore(); - onciafnc_CodeCompletionCore__init_(var_3, var_0, var_1, var_2); - return var_3; -}, -onciafnc_CodeCompletionCore_collectCandidates = ($this, $caretTokenIndex, $context) => { - let $startRule, var$4, $currentIndex, $offset, $offset_0, $token, $callStack; - ju_HashMap_clear($this.$shortcutMap); - ju_HashMap_clear($this.$candidates.$rules); - ju_HashMap_clear($this.$candidates.$tokens0); - $this.$statesProcessed = 0; - $startRule = $context === null ? 0 : $context.$start1.$getTokenIndex(); - $this.$tokenStartIndex = $startRule; - var$4 = $this.$parser0.$_input; - $currentIndex = var$4.$p; - oavr_BufferedTokenStream_seek(var$4, $startRule); - $this.$tokens1 = new ju_LinkedList; - $offset = 1; - a: { - while (true) { - $offset_0 = $offset + 1 | 0; - $token = oavr_CommonTokenStream_LT(var$4, $offset); - ju_AbstractList_add($this.$tokens1, $token); - if ($token.$getTokenIndex() >= $caretTokenIndex) - break a; - if ($token.$getType0() == (-1)) - break; - $offset = $offset_0; - } - } - oavr_BufferedTokenStream_seek(var$4, $currentIndex); - $callStack = new ju_LinkedList; - $startRule = $context === null ? 0 : $context.$getRuleIndex(); - onciafnc_CodeCompletionCore_processRule($this, $this.$atn0.$ruleToStartState.data[$startRule], 0, $callStack, $rt_s(93)); - oavr_BufferedTokenStream_seek(var$4, $currentIndex); - return $this.$candidates; -}, -onciafnc_CodeCompletionCore_checkPredicate = ($this, $transition) => { - return oavra_SemanticContext$Predicate_eval(oavra_PredicateTransition_getPredicate($transition), $this.$parser0, oavr_ParserRuleContext_EMPTY); +let sc_IterableOnceOps$foldRight$lambda$_36_0_apply = (var$0, var$1, var$2) => { + return var$0.$_0750.$apply3(var$2, var$1); }, -onciafnc_CodeCompletionCore_translateToRuleIndex = ($this, $ruleStack) => { - let $i, $current, $ruleIndex, $startTokenIndex, $path, $addNew, $entry; - if ($this.$preferredRules0.$isEmpty()) - return 0; - $i = 0; - while ($i < $ruleStack.$size5) { - $current = ju_AbstractSequentialList_get($ruleStack, $i); - $ruleIndex = $current.$ruleIndex0; - $startTokenIndex = $current.$startTokenIndex; - if ($this.$preferredRules0.$contains(jl_Integer_valueOf($ruleIndex))) { - $path = jusi_SimpleStreamImpl_collect(jusi_SimpleStreamImpl_map(ju_Collection_stream(ju_AbstractList_subList($ruleStack, 0, $i)), new onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0), jus_Collectors_toCollection(new onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1)); - $addNew = 1; - $ruleStack = ju_HashMap$HashMapEntrySet_iterator(ju_HashMap_entrySet($this.$candidates.$rules)); - a: { - while (ju_HashMap$AbstractMapIterator_hasNext($ruleStack)) { - $entry = ju_HashMap$EntryIterator_next($ruleStack); - if (!jl_Integer_equals($entry.$key0, jl_Integer_valueOf($current.$ruleIndex0))) - continue; - if ($entry.$value9.$ruleList.$size() != $path.$size()) - continue; - if (ju_AbstractList_equals($path, $entry.$value9.$ruleList)) { - $addNew = 0; - break a; - } - } - } - if ($addNew) { - $ruleStack = $this.$candidates.$rules; - $current = jl_Integer_valueOf($ruleIndex); - $entry = new onciafnc_CodeCompletionCore$CandidateRule; - $entry.$startTokenIndex0 = $startTokenIndex; - $entry.$ruleList = $path; - ju_HashMap_put($ruleStack, $current, $entry); - } - return 1; - } - $i = $i + 1 | 0; - } - return 0; +oncia_AmbiguousAggregation$ = $rt_classWithoutFields(), +oncia_AmbiguousAggregation$_MODULE$ = null, +oncia_AmbiguousAggregation$__clinit_ = () => { + oncia_AmbiguousAggregation$_MODULE$ = new oncia_AmbiguousAggregation$; +}; +function sc_View$Drop() { + let a = this; sc_AbstractView.call(a); + a.$underlying19 = null; + a.$n4 = 0; + a.$normN = 0; +} +let sc_View$Drop_iterator = $this => { + return ($this.$underlying19.$iterator0()).$drop1($this.$n4); }, -onciafnc_CodeCompletionCore_getFollowingTokens = ($this, $initialTransition) => { - let $result, $pipeline, var$4, var$5, var$6, $transition, $list; - $result = new ju_LinkedList; - $pipeline = new ju_LinkedList; - ju_AbstractList_add($pipeline, $initialTransition.$target); - while (!ju_AbstractCollection_isEmpty($pipeline)) { - var$4 = (oavra_ATNState_getTransitions(ju_LinkedList_removeLast($pipeline))).data; - var$5 = var$4.length; - var$6 = 0; - while (var$6 < var$5) { - $transition = var$4[var$6]; - if ($transition.$getSerializationType() == 5) { - if ($transition.$isEpsilon()) - ju_LinkedList_addLast($pipeline, $transition.$target); - else { - $list = oavrm_IntervalSet_toList($transition.$label0()); - if ($list.$size0 == 1 && !$this.$ignoredTokens0.$contains(ju_ArrayList_get($list, 0))) { - ju_LinkedList_addLast($result, ju_ArrayList_get($list, 0)); - ju_LinkedList_addLast($pipeline, $transition.$target); - } - } - } - var$6 = var$6 + 1 | 0; - } - } - return $result; +sc_View$Drop_normN = $this => { + return $this.$normN; }, -onciafnc_CodeCompletionCore_determineFollowSets = ($this, $start, $stop) => { - let $result; - $result = new ju_LinkedList; - onciafnc_CodeCompletionCore_collectFollowSets($this, $start, $stop, $result, ju_HashSet__init_(), new ju_LinkedList); - return $result; +sc_View$Drop_knownSize = $this => { + let $size; + $size = $this.$underlying19.$knownSize(); + if ($size < 0) + return (-1); + return jl_Math_max($size - $this.$normN | 0, 0); }, -onciafnc_CodeCompletionCore_collectFollowSets = ($this, $s, $stopState, $followSets, $seen, $ruleStack) => { - let var$6, var$7, var$8, $transition, $ruleTransition, var$11, var$12, $set, $label; - if (ju_HashSet_contains($seen, $s)) - return; - ju_HashSet_add($seen, $s); - if (!oavra_ATNState_equals($s, $stopState) && $s.$getStateType() != 7) { - var$6 = (oavra_ATNState_getTransitions($s)).data; - var$7 = var$6.length; - var$8 = 0; - while (var$8 < var$7) { - $transition = var$6[var$8]; - if ($transition.$getSerializationType() == 3) { - $ruleTransition = $transition; - $s = jl_Integer_valueOf($ruleTransition.$target.$ruleIndex); - var$11 = $ruleStack.$size5; - var$12 = 0; - a: { - while (true) { - if (var$12 >= var$11) { - var$12 = (-1); - break a; - } - if (ju_Objects_equals($s, ju_AbstractSequentialList_get($ruleStack, var$12))) - break; - var$12 = var$12 + 1 | 0; - } - } - if (var$12 == (-1)) { - ju_LinkedList_addLast($ruleStack, jl_Integer_valueOf($ruleTransition.$target.$ruleIndex)); - onciafnc_CodeCompletionCore_collectFollowSets($this, $transition.$target, $stopState, $followSets, $seen, $ruleStack); - ju_LinkedList_removeLast($ruleStack); - } - } else if ($transition.$getSerializationType() == 4) { - if (onciafnc_CodeCompletionCore_checkPredicate($this, $transition)) - onciafnc_CodeCompletionCore_collectFollowSets($this, $transition.$target, $stopState, $followSets, $seen, $ruleStack); - } else if ($transition.$isEpsilon()) - onciafnc_CodeCompletionCore_collectFollowSets($this, $transition.$target, $stopState, $followSets, $seen, $ruleStack); - else if ($transition.$getSerializationType() == 9) { - $set = new onciafnc_CodeCompletionCore$FollowSetWithPath; - $set.$intervals0 = oavrm_IntervalSet_of(1, $this.$atn0.$maxTokenType); - $set.$path = ju_LinkedList__init_0($ruleStack); - $set.$following = new ju_LinkedList; - ju_LinkedList_addLast($followSets, $set); - } else { - $label = $transition.$label0(); - if ($label !== null && oavrm_IntervalSet_size($label) > 0) { - if ($transition.$getSerializationType() == 8) - $label = oavrm_IntervalSet_complement($label, oavrm_IntervalSet_of(1, $this.$atn0.$maxTokenType)); - $set = new onciafnc_CodeCompletionCore$FollowSetWithPath; - $set.$intervals0 = $label; - $set.$path = ju_LinkedList__init_0($ruleStack); - $set.$following = onciafnc_CodeCompletionCore_getFollowingTokens($this, $transition); - ju_LinkedList_addLast($followSets, $set); - } - } - var$8 = var$8 + 1 | 0; - } - return; - } - $set = new onciafnc_CodeCompletionCore$FollowSetWithPath; - $set.$intervals0 = oavrm_IntervalSet_of0((-2)); - $set.$path = ju_LinkedList__init_0($ruleStack); - $set.$following = new ju_LinkedList; - ju_LinkedList_addLast($followSets, $set); +sc_View$Drop_isEmpty = $this => { + return ($this.$iterator0()).$isEmpty(); }, -onciafnc_CodeCompletionCore_processRule = ($this, $startState, $tokenIndex, $callStack, $indentation) => { - let $positionMap, $result, $setsPerState, $followSets, $combined, $statePipeline, $startTokenIndex, $currentSymbol, $set, $fullPath, $symbol, $currentEntry, $atCaret, $transitions, var$19, var$20, $transition, $token, $position, $list, $addFollowing, $symbol_0; - $positionMap = ju_HashMap_get($this.$shortcutMap, jl_Integer_valueOf($startState.$ruleIndex)); - if ($positionMap === null) { - $positionMap = ju_HashMap__init_(); - ju_HashMap_put($this.$shortcutMap, jl_Integer_valueOf($startState.$ruleIndex), $positionMap); - } else if ($positionMap.$containsKey(jl_Integer_valueOf($tokenIndex))) - return $positionMap.$get6(jl_Integer_valueOf($tokenIndex)); - $result = ju_HashSet__init_(); - $setsPerState = ju_HashMap_get(onciafnc_CodeCompletionCore_followSetsByATN, jl_Class_getName(jl_Object_getClass($this.$parser0))); - if ($setsPerState === null) { - $setsPerState = ju_HashMap__init_(); - ju_HashMap_put(onciafnc_CodeCompletionCore_followSetsByATN, jl_Class_getName(jl_Object_getClass($this.$parser0)), $setsPerState); - } - $followSets = $setsPerState.$get6(jl_Integer_valueOf($startState.$stateNumber)); - if ($followSets === null) { - $followSets = onciafnc_CodeCompletionCore$FollowSetsHolder__init_(); - $setsPerState.$put(jl_Integer_valueOf($startState.$stateNumber), $followSets); - $followSets.$sets = onciafnc_CodeCompletionCore_determineFollowSets($this, $startState, $this.$atn0.$ruleToStopState.data[$startState.$ruleIndex]); - $combined = oavrm_IntervalSet__init_($rt_createIntArray(0)); - $statePipeline = ju_AbstractSequentialList_iterator($followSets.$sets); - while (ju_LinkedList$SequentialListIterator_hasNext($statePipeline)) { - oavrm_IntervalSet_addAll($combined, (ju_LinkedList$SequentialListIterator_next($statePipeline)).$intervals0); - } - $followSets.$combined = $combined; - } - $startTokenIndex = (ju_AbstractSequentialList_get($this.$tokens1, $tokenIndex)).$getTokenIndex(); - ju_LinkedList_addLast($callStack, onciafnc_CodeCompletionCore$RuleWithStartToken__init_($startTokenIndex, $startState.$ruleIndex)); - $currentSymbol = (ju_AbstractSequentialList_get($this.$tokens1, $tokenIndex)).$getType0(); - if ($tokenIndex >= (ju_LinkedList_size($this.$tokens1) - 1 | 0)) { - a: { - if ($this.$preferredRules0.$contains(jl_Integer_valueOf($startState.$ruleIndex))) - onciafnc_CodeCompletionCore_translateToRuleIndex($this, $callStack); - else { - $startState = ju_AbstractSequentialList_iterator($followSets.$sets); - while (true) { - if (!ju_LinkedList$SequentialListIterator_hasNext($startState)) - break a; - b: { - $set = ju_LinkedList$SequentialListIterator_next($startState); - $fullPath = ju_LinkedList__init_0($callStack); - ju_AbstractCollection_addAll($fullPath, jus_Stream_toList(jusi_SimpleStreamImpl_map(ju_Collection_stream($set.$path), onciafnc_CodeCompletionCore$processRule$lambda$_9_0__init_($startTokenIndex)))); - if (!onciafnc_CodeCompletionCore_translateToRuleIndex($this, $fullPath)) { - $indentation = ju_AbstractList_iterator(oavrm_IntervalSet_toList($set.$intervals0)); - while (true) { - if (!ju_AbstractList$1_hasNext($indentation)) - break b; - $symbol = jl_Integer_intValue(ju_AbstractList$1_next($indentation)); - if (!$this.$ignoredTokens0.$contains(jl_Integer_valueOf($symbol))) { - if (!ju_HashMap_containsKey($this.$candidates.$tokens0, jl_Integer_valueOf($symbol))) - ju_HashMap_put($this.$candidates.$tokens0, jl_Integer_valueOf($symbol), $set.$following); - else if (!ju_AbstractList_equals(ju_HashMap_get($this.$candidates.$tokens0, jl_Integer_valueOf($symbol)), $set.$following)) - ju_HashMap_put($this.$candidates.$tokens0, jl_Integer_valueOf($symbol), ju_LinkedList__init_()); - } - } - } - } - } - } - } - ju_LinkedList_removeLast($callStack); - return $result; - } - if (!oavrm_IntervalSet_contains($followSets.$combined, (-2)) && !oavrm_IntervalSet_contains($followSets.$combined, $currentSymbol)) { - ju_LinkedList_removeLast($callStack); - return $result; - } - $statePipeline = ju_LinkedList__init_(); - ju_AbstractList_add($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($startState, jl_Integer_valueOf($tokenIndex))); - c: while (!ju_AbstractCollection_isEmpty($statePipeline)) { - $currentEntry = ju_LinkedList_removeLast($statePipeline); - $this.$statesProcessed = $this.$statesProcessed + 1 | 0; - $symbol = (ju_AbstractSequentialList_get($this.$tokens1, jl_Integer_intValue($currentEntry.$tokenIndex))).$getType0(); - $atCaret = jl_Integer_intValue($currentEntry.$tokenIndex) < (ju_LinkedList_size($this.$tokens1) - 1 | 0) ? 0 : 1; - d: { - switch ($currentEntry.$state4.$getStateType()) { - case 2: - $startState = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append($startState, $indentation), $rt_s(82)); - $indentation = jl_StringBuilder_toString($startState); - break d; - case 7: - break; - default: - break d; - } - ju_HashSet_add($result, $currentEntry.$tokenIndex); - continue c; - } - $transitions = (oavra_ATNState_getTransitions($currentEntry.$state4)).data; - var$19 = $transitions.length; - var$20 = 0; - while (var$20 < var$19) { - e: { - f: { - g: { - $transition = $transitions[var$20]; - switch ($transition.$getSerializationType()) { - case 3: - break g; - case 4: - break; - case 9: - if (!$atCaret) { - ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($transition.$target, jl_Integer_valueOf(jl_Integer_intValue($currentEntry.$tokenIndex) + 1 | 0))); - break e; - } - if (onciafnc_CodeCompletionCore_translateToRuleIndex($this, $callStack)) - break e; - $startState = ju_AbstractList_iterator(oavrm_IntervalSet_toList(oavrm_IntervalSet_of(1, $this.$atn0.$maxTokenType))); - while (ju_AbstractList$1_hasNext($startState)) { - $token = ju_AbstractList$1_next($startState); - if (!$this.$ignoredTokens0.$contains($token)) - ju_HashMap_put($this.$candidates.$tokens0, $token, ju_LinkedList__init_()); - } - break e; - default: - break f; - } - if (!onciafnc_CodeCompletionCore_checkPredicate($this, $transition)) - break e; - ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($transition.$target, $currentEntry.$tokenIndex)); - break e; - } - $startState = (onciafnc_CodeCompletionCore_processRule($this, $transition.$target, jl_Integer_intValue($currentEntry.$tokenIndex), $callStack, $indentation)).$iterator(); - $followSets = $transition; - while ($startState.$hasNext()) { - $position = $startState.$next(); - ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($followSets.$followState, $position)); - } - break e; - } - if ($transition.$isEpsilon()) - ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($transition.$target, $currentEntry.$tokenIndex)); - else { - $set = $transition.$label0(); - if ($set !== null && oavrm_IntervalSet_size($set) > 0) { - if ($transition.$getSerializationType() == 8) - $set = oavrm_IntervalSet_complement($set, oavrm_IntervalSet_of(1, $this.$atn0.$maxTokenType)); - if (!$atCaret) { - if (oavrm_IntervalSet_contains($set, $symbol)) - ju_LinkedList_addLast($statePipeline, onciafnc_CodeCompletionCore$PipelineEntry__init_($transition.$target, jl_Integer_valueOf(jl_Integer_intValue($currentEntry.$tokenIndex) + 1 | 0))); - } else if (!onciafnc_CodeCompletionCore_translateToRuleIndex($this, $callStack)) { - $list = oavrm_IntervalSet_toList($set); - $addFollowing = ju_ArrayList_size($list) != 1 ? 0 : 1; - $set = ju_AbstractList_iterator($list); - while (ju_AbstractList$1_hasNext($set)) { - $symbol_0 = ju_AbstractList$1_next($set); - if (!$this.$ignoredTokens0.$contains($symbol_0)) { - if ($addFollowing) - ju_HashMap_put($this.$candidates.$tokens0, $symbol_0, onciafnc_CodeCompletionCore_getFollowingTokens($this, $transition)); - else - ju_HashMap_put($this.$candidates.$tokens0, $symbol_0, ju_LinkedList__init_()); - } - } - } - } - } - } - var$20 = var$20 + 1 | 0; - } - } - ju_LinkedList_removeLast($callStack); - $positionMap.$put(jl_Integer_valueOf($tokenIndex), $result); - return $result; +sc_View$Drop__init_ = ($this, $underlying, $n) => { + $this.$underlying19 = $underlying; + $this.$n4 = $n; + $this.$normN = jl_Math_max($n, 0); }, -onciafnc_CodeCompletionCore__clinit_ = () => { - onciafnc_CodeCompletionCore_followSetsByATN = ju_HashMap__init_(); +sc_View$Drop__init_0 = (var_0, var_1) => { + let var_2 = new sc_View$Drop(); + sc_View$Drop__init_(var_2, var_0, var_1); + return var_2; }; -function scm_Builder$$anon$1() { - let a = this; jl_Object.call(a); - a.$$outer13 = null; - a.$f$12 = null; +function oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0() { + jl_Object.call(this); + this.$_0873 = null; } -let scm_Builder$$anon$1_sizeHint0 = ($this, $coll, $delta) => { - scm_Builder_sizeHint$($this, $coll, $delta); -}, -scm_Builder$$anon$1_sizeHint = ($this, $size) => { - $this.$$outer13.$sizeHint($size); -}, -scm_Builder$$anon$1_result = $this => { - return $this.$f$12.$apply2($this.$$outer13.$result()); -}, -scm_Builder$$anon$1_addAll = ($this, $xs) => { - let var$2; - var$2 = $this.$$outer13; - if (var$2 !== null) { - var$2.$addAll0($xs); - return $this; - } - $rt_throw(null); +let oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0_apply = (var$0, var$1) => { + return oncie_PropertyKeyName__init_0(var$0.$_0873, var$1); }, -scm_Builder$$anon$1_addOne = ($this, $elem) => { - let var$2; - var$2 = $this.$$outer13; - if (var$2 !== null) { - var$2.$addOne($elem); - return $this; - } - $rt_throw(null); +oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !($x instanceof oncia_InputDataStream) ? $default.$apply2($x) : $x; +}; +function oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_34_0() { + jl_Object.call(this); + this.$_0984 = null; +} +let oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_34_0_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_0984.$error4($rt_s(6529), var$1.$position()); +}; +function oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_36_0() { + jl_Object.call(this); + this.$_0612 = null; +} +let oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_36_0_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_0612.$error4($rt_s(6530), var$1.$position()); +}; +function oncia_Union$Mapping$2$() { + sr_AbstractFunction3.call(this); + this.$$outer42 = null; +} +let oncia_Union$Mapping$2$_apply = ($this, $unionVariable, $variableInLhsName, $variableInRhsName) => { + let var$4, var$5; + var$4 = new oncia_Union$Mapping$1; + var$5 = $this.$$outer42; + var$4.$unionVariable0 = $unionVariable; + var$4.$variableInLhsName = $variableInLhsName; + var$4.$variableInRhsName = $variableInRhsName; + if (var$5 === null) + $rt_throw(null); + var$4.$$outer73 = var$5; + return var$4; }, -scm_Builder$$anon$1__init_0 = ($this, $$outer, $f$1) => { +oncia_Union$Mapping$2$__init_0 = ($this, $$outer) => { if ($$outer === null) $rt_throw(null); - $this.$$outer13 = $$outer; - $this.$f$12 = $f$1; + $this.$$outer42 = $$outer; }, -scm_Builder$$anon$1__init_ = (var_0, var_1) => { - let var_2 = new scm_Builder$$anon$1(); - scm_Builder$$anon$1__init_0(var_2, var_0, var_1); - return var_2; +oncia_Union$Mapping$2$__init_ = var_0 => { + let var_1 = new oncia_Union$Mapping$2$(); + oncia_Union$Mapping$2$__init_0(var_1, var_0); + return var_1; +}; +function oncie_Concatenate() { + let a = this; oncie_Expression.call(a); + a.$lhs33 = null; + a.$rhs28 = null; + a.$position267 = null; + a.$signatures3 = null; +} +let oncie_Concatenate_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -sc_View$ = $rt_classWithoutFields(), -sc_View$_MODULE$ = null, -sc_View$__clinit_ = () => { - sc_View$_MODULE$ = new sc_View$; +oncie_Concatenate_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -sc_View$_from = ($this, $it) => { - let $view_this, $fromIteratorProvider_it; - if ($rt_isInstance($it, sc_View)) - return $it; - if (!$rt_isInstance($it, sc_Iterable)) { - sci_LazyList$_$callClinit(); - $view_this = sci_LazyList$_from(sci_LazyList$_MODULE$, $it); - if ($view_this === null) - $rt_throw(null); - return sc_SeqView$Id__init_0($view_this); - } - $it = $it; - $fromIteratorProvider_it = new sc_View$$from$lambda$_18_0; - $fromIteratorProvider_it.$_0187 = $it; - $it = new sc_View$$anon$1; - $it.$it$1 = $fromIteratorProvider_it; - return $it; +oncie_Concatenate_lhs = $this => { + return $this.$lhs33; }, -sc_View$_newBuilder = $this => { - return scm_Builder_mapResult$(scm_ArrayBuffer$$anon$1__init_(), new sc_View$$newBuilder$lambda$_20_0); +oncie_Concatenate_rhs = $this => { + return $this.$rhs28; }, -sc_View$_from0 = ($this, $source) => { - return sc_View$_from($this, $source); -}; -function oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_154_0() { - let a = this; jl_Object.call(a); - a.$_0140 = null; - a.$_153 = 0; - a.$_226 = 0; -} -let oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_154_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - var$1 = var$1; - var$2 = var$0.$_0140; - var$3 = var$0.$_153; - var$4 = var$0.$_226; - if ($rt_isInstance(var$2, oncia_UpdateClause) && var$3 == var$4) - var$2 = oncias_SemanticState_newSiblingScope(var$1.$state); - else { - if (var$2 instanceof oncia_CallClause) { - var$2 = var$2; - if ((var$2.$returnVariables()).$explicitVariables.$isEmpty() && !var$2.$yieldAll() && var$3 == var$4) { - var$2 = oncias_SemanticState_newSiblingScope(var$1.$state); - break a; - } - } - var$2 = var$1.$state; - } - } - return oncias_SemanticCheckResult__init_(var$2, var$1.$errors0); -}; -function oncie_ImplicitProcedureArgument() { - let a = this; oncie_Expression.call(a); - a.$name32 = null; - a.$parameterType2 = null; - a.$defaultValue0 = null; -} -let oncie_ImplicitProcedureArgument_asCanonicalStringVal = $this => { - let var$1, var$2; - var$1 = $this.$name32; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 36); - jl_StringBuilder_append(var$2, var$1); - return jl_AbstractStringBuilder_toString(var$2); +oncie_Concatenate_position = $this => { + return $this.$position267; }, -oncie_ImplicitProcedureArgument_position = $this => { - onciu_InputPosition$_$callClinit(); - return onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$); +oncie_Concatenate_signatures = $this => { + return $this.$signatures3; }, -oncie_ImplicitProcedureArgument_isConstantForQuery = $this => { - return 0; +oncie_Concatenate_canonicalOperatorSymbol = $this => { + return $rt_s(6492); }, -oncie_ImplicitProcedureArgument_productPrefix = $this => { - return $rt_s(6960); +oncie_Concatenate_productPrefix = $this => { + return $rt_s(6531); }, -oncie_ImplicitProcedureArgument_productArity = $this => { - return 3; +oncie_Concatenate_productArity = $this => { + return 2; }, -oncie_ImplicitProcedureArgument_productElement = ($this, $x$1) => { +oncie_Concatenate_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$name32; + return $this.$lhs33; case 1: - return $this.$parameterType2; - case 2: - return $this.$defaultValue0; + return $this.$rhs28; default: } return sr_Statics_ioobe($x$1); }, -oncie_ImplicitProcedureArgument_productIterator = $this => { +oncie_Concatenate_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ImplicitProcedureArgument_hashCode = $this => { +oncie_Concatenate_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ImplicitProcedureArgument_toString = $this => { +oncie_Concatenate_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_ImplicitProcedureArgument_equals = ($this, $x$1) => { +oncie_Concatenate_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_ImplicitProcedureArgument) ? 0 : 1)) + if (!(!($x$1 instanceof oncie_Concatenate) ? 0 : 1)) break b; c: { $x$1 = $x$1; - var$2 = $this.$name32; - var$3 = $x$1.$name32; + var$2 = $this.$lhs33; + var$3 = $x$1.$lhs33; if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) + if (!var$2.$equals(var$3)) break b; else break c; @@ -329132,20 +256319,18 @@ oncie_ImplicitProcedureArgument_equals = ($this, $x$1) => { break b; } d: { - var$2 = $this.$parameterType2; - var$3 = $x$1.$parameterType2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) + var$3 = $this.$rhs28; + $x$1 = $x$1.$rhs28; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) break b; else break d; } - if (var$3 !== null) + if ($x$1 !== null) break b; } - if (!sr_BoxesRunTime_equals($this.$defaultValue0, $x$1.$defaultValue0)) - break b; - if (!($this instanceof oncie_ImplicitProcedureArgument)) + if (!($this instanceof oncie_Concatenate)) break b; } var$4 = 1; @@ -329155,719 +256340,637 @@ oncie_ImplicitProcedureArgument_equals = ($this, $x$1) => { } return var$4; }, -oncie_ImplicitProcedureArgument__init_0 = ($this, $name, $parameterType, $defaultValue) => { - $this.$name32 = $name; - $this.$parameterType2 = $parameterType; - $this.$defaultValue0 = $defaultValue; +oncie_Concatenate__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs33 = $lhs; + $this.$rhs28 = $rhs; + $this.$position267 = $position; oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 2); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + var$8 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_StringType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTString(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTString(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTString(oncius_package$_MODULE$)); + $rhs = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$10 = $rt_createArray(oncius_ListType, 2); + var$9 = var$10.data; + var$8 = oncius_package$_MODULE$; + var$9[0] = oncius_package$_CTList(var$8, oncius_package$_CTAny(var$8)); + var$8 = oncius_package$_MODULE$; + var$9[1] = oncius_package$_CTList(var$8, oncius_package$_CTAny(var$8)); + $position = $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$10)); + var$7 = oncius_package$_MODULE$; + var$6[1] = oncie_TypeSignature$_apply($rhs, $position, oncius_package$_CTList(var$7, oncius_package$_CTAny(var$7))); + $this.$signatures3 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncie_ImplicitProcedureArgument__init_ = (var_0, var_1, var_2) => { - let var_3 = new oncie_ImplicitProcedureArgument(); - oncie_ImplicitProcedureArgument__init_0(var_3, var_0, var_1, var_2); +oncie_Concatenate__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Concatenate(); + oncie_Concatenate__init_(var_3, var_0, var_1, var_2); return var_3; }; -function oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0() { - jl_Object.call(this); - this.$_0558 = null; -} -let oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0558; - var$3 = var$1.$semanticCheck(); - var$4 = new oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0; - var$4.$_0305 = var$1; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_flatMap$(var$3, var$4), var$2.$recordCurrentScope(var$1)); -}; -function oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_0() { - jl_Object.call(this); - this.$_0683 = null; -} -let oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_1 = $rt_classWithoutFields(); -function oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_0() { - let a = this; jl_Object.call(a); - a.$_062 = null; - a.$_127 = null; - a.$_214 = null; -} -let oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_062; - return sci_SetBuilderImpl_addOne(var$0.$_127, oncia_Union$Mapping$2$_apply(oncia_Union_Mapping$3(var$2, var$0.$_214), var$1.$unionVariable, var$1.$variableInLhs.$name4, var$1.$variableInRhs.$name4)); -}; -function oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_1() { - let a = this; jl_Object.call(a); - a.$_0738 = null; - a.$_1251 = null; - a.$_282 = null; -} -let oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0738; - return sci_SetBuilderImpl_addOne(var$0.$_1251, oncia_Union$Mapping$2$_apply(oncia_Union_Mapping$3(var$2, var$0.$_282), oncie_Variable__init_(var$1, var$2.$position()), var$1, var$1)); -}; -function oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_2() { - let a = this; jl_Object.call(a); - a.$_0459 = null; - a.$_1160 = null; - a.$_256 = null; -} -let oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0459; - var$3 = var$0.$_1160; - var$4 = var$0.$_256; - var$2 = oncias_Scope_symbol(var$2, var$1.$variableInLhsName); - var$5 = new oncia_Union$$anonfun$defineUnionVariables$5$lambda$_64_0; - var$5.$_0495 = var$3; - var$5.$_1173 = var$1; - var$5.$_258 = var$4; - return s_Option_flatMap(var$2, var$5); -}; -function oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_3() { - let a = this; jl_Object.call(a); - a.$_01124 = null; - a.$_1375 = null; - a.$_2124 = null; +function oncie_Subtract() { + let a = this; oncie_Expression.call(a); + a.$lhs7 = null; + a.$rhs7 = null; + a.$position99 = null; + a.$signatures25 = null; } -let oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_3_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01124; - return sci_SetBuilderImpl_addOne(var$0.$_1375, oncia_Union$Mapping$2$_apply(oncia_Union_Mapping$3(var$2, var$0.$_2124), oncie_Variable__init_(var$1, var$2.$position()), var$1, var$1)); +let oncie_Subtract_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0__init_0 = var$0 => { - return; +oncie_Subtract_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0__init_0(var_0); - return var_0; +oncie_Subtract_lhs = $this => { + return $this.$lhs7; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_all(oncius_TypeSpec$_MODULE$); +oncie_Subtract_rhs = $this => { + return $this.$rhs7; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1__init_0 = var$0 => { - return; +oncie_Subtract_position = $this => { + return $this.$position99; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1__init_0(var_0); - return var_0; +oncie_Subtract_signatures = $this => { + return $this.$signatures25; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); +oncie_Subtract_canonicalOperatorSymbol = $this => { + return $rt_s(3665); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2__init_ = var$0 => { - return; +oncie_Subtract_productPrefix = $this => { + return $rt_s(6532); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2__init_(var_0); - return var_0; +oncie_Subtract_productArity = $this => { + return 2; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +oncie_Subtract_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs7; + case 1: + return $this.$rhs7; + default: + } + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3__init_0 = var$0 => { - return; +oncie_Subtract_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3__init_0(var_0); - return var_0; +oncie_Subtract_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); -}; -function oncia_CypherTypeName() { - jl_Object.call(this); - this.$cypherType1 = null; -} -let oncia_CypherTypeName_semanticCheck = $this => { - return oncia_CypherTypeName_cypherTypeSemanticCheck($this, $this.$cypherType1); +oncie_Subtract_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_CypherTypeName_cypherTypeSemanticCheck = ($this, $cypherType) => { - let $innerType; +oncie_Subtract_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - while ($cypherType instanceof oncius_ListType) { - $innerType = $cypherType.$innerType; - if (!($innerType instanceof oncius_ClosedDynamicUnionType)) - break a; - $cypherType = $innerType; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Subtract) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs7; + var$3 = $x$1.$lhs7; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs7; + $x$1 = $x$1.$rhs7; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Subtract)) + break b; + } + var$4 = 1; + break a; } + var$4 = 0; } - if (!($cypherType instanceof oncius_ClosedDynamicUnionType)) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - $cypherType = $cypherType; - if (!sci_List_forall($cypherType.$sortedInnerTypes, new oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_0) && !sci_List_forall($cypherType.$sortedInnerTypes, new oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_2)) - return oncias_SemanticAnalysisTooling_error$($this, $rt_s(6961), $cypherType.$position46); - $innerType = $cypherType.$sortedInnerTypes; - $cypherType = new oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_1; - $cypherType.$_057 = $this; - return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $innerType, $cypherType); -}, -oncia_CypherTypeName__init_0 = ($this, $cypherType) => { - $this.$cypherType1 = $cypherType; -}, -oncia_CypherTypeName__init_ = var_0 => { - let var_1 = new oncia_CypherTypeName(); - oncia_CypherTypeName__init_0(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTRelationship(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTRelationship(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTRelationship(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return (oncius_package$_CTList(var$1, oncius_package$_CTRelationship(var$1))).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11__init_0(var_0); - return var_0; + return var$4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); +oncie_Subtract__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs7 = $lhs; + $this.$rhs7 = $rhs; + $this.$position99 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 10); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + var$8 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_IntegerType, 2); + var$10 = var$9.data; oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12__init_(var_0); - return var_0; + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTInteger(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[1] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_FloatType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[2] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[3] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_DurationType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[4] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTLocalTime(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[5] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTLocalTime(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTTime(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[6] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTTime(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTDate(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[7] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDate(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTLocalDateTime(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[8] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTLocalDateTime(oncius_package$_MODULE$)); + var$7 = oncie_TypeSignature$_MODULE$; + var$8 = s_package$_Vector(s_package$_MODULE$); + $rhs = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTDateTime(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[9] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$9)), oncius_package$_CTDateTime(oncius_package$_MODULE$)); + $this.$signatures25 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +oncie_Subtract__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Subtract(); + oncie_Subtract__init_(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncie_Divide() { + let a = this; oncie_Expression.call(a); + a.$lhs20 = null; + a.$rhs18 = null; + a.$position221 = null; + a.$signatures29 = null; +} +let oncie_Divide_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13__init_ = var$0 => { - return; +oncie_Divide_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13__init_(var_0); - return var_0; +oncie_Divide_lhs = $this => { + return $this.$lhs20; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +oncie_Divide_rhs = $this => { + return $this.$rhs18; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14__init_0 = var$0 => { - return; +oncie_Divide_position = $this => { + return $this.$position221; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14__init_0(var_0); - return var_0; +oncie_Divide_signatures = $this => { + return $this.$signatures29; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +oncie_Divide_canonicalOperatorSymbol = $this => { + return $rt_s(90); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15__init_ = var$0 => { - return; -}; -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15__init_(var_0); - return var_0; +oncie_Divide_productPrefix = $this => { + return $rt_s(6533); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +oncie_Divide_productArity = $this => { + return 2; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16__init_ = var$0 => { - return; +oncie_Divide_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs20; + case 1: + return $this.$rhs18; + default: + } + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16__init_(var_0); - return var_0; +oncie_Divide_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +oncie_Divide_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_PartialPredicate = $rt_classWithoutFields(0), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17__init_0 = var$0 => { - return; +oncie_Divide_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17__init_0(var_0); - return var_0; +oncie_Divide_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Divide) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs20; + var$3 = $x$1.$lhs20; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$rhs18; + $x$1 = $x$1.$rhs18; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Divide)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); +oncie_Divide__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs20 = $lhs; + $this.$rhs18 = $rhs; + $this.$position221 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 6); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + var$8 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_IntegerType, 2); + var$10 = var$9.data; oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTRelationship(var$1))); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18__init_0(var_0); - return var_0; + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTInteger(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[1] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_FloatType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[2] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[3] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + var$7 = s_package$_Vector(s_package$_MODULE$); + $rhs = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[4] = oncie_TypeSignature$_apply($position, var$7.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); + $rhs = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[5] = oncie_TypeSignature$_apply($rhs, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); + $this.$signatures29 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +oncie_Divide__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Divide(); + oncie_Divide__init_(var_3, var_0, var_1, var_2); + return var_3; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19() { - jl_Object.call(this); - this.$_01078 = null; +function oncie_Modulo() { + let a = this; oncie_Expression.call(a); + a.$lhs29 = null; + a.$rhs24 = null; + a.$position287 = null; + a.$signatures23 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19__init_0 = (var$0, var$1) => { - var$0.$_01078 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19__init_0(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_01078; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = var$2.$candidate0; - var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_0; - var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_1; - var$5.$_01031 = var$1; - var$1 = s_Option_fold(var$3, var$4, var$5); - oncias_OptionSemanticChecking$_$callClinit(); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$5 = var$2.$candidateVarName; - var$2 = new oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_2; - var$2.$_0115 = var$1; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$5, var$2); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - return sci_$colon$colon__init_(var$1.$_1(), sci_$colon$colon__init_(var$1.$_2(), sci_Nil$_MODULE$)); +let oncie_Modulo_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21__init_0 = var$0 => { - return; +oncie_Modulo_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21__init_0(var_0); - return var_0; +oncie_Modulo_lhs = $this => { + return $this.$lhs29; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - return var$1.$_1(); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_22() { - jl_Object.call(this); - this.$_01172 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_22__init_0 = (var$0, var$1) => { - var$0.$_01172 = var$1; +oncie_Modulo_rhs = $this => { + return $this.$rhs24; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_22__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_22(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_22__init_0(var_1, var_0); - return var_1; +oncie_Modulo_position = $this => { + return $this.$position287; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_23 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_23__init_ = var$0 => { - return; +oncie_Modulo_signatures = $this => { + return $this.$signatures23; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_23__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_23(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_23__init_(var_0); - return var_0; -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24() { - jl_Object.call(this); - this.$_0270 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24__init_0 = (var$0, var$1) => { - var$0.$_0270 = var$1; +oncie_Modulo_canonicalOperatorSymbol = $this => { + return $rt_s(487); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24__init_0(var_1, var_0); - return var_1; +oncie_Modulo_productPrefix = $this => { + return $rt_s(6534); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24_apply = var$0 => { - let var$1; - var$1 = var$0.$_0270; - oncias_SemanticExpressionCheck$_$callClinit(); - return var$1.$typ0.$covariant(); +oncie_Modulo_productArity = $this => { + return 2; }, -oncie_ASTCachedProperty = $rt_classWithoutFields(0), -oncie_CachedProperty = $rt_classWithoutFields(oncie_LogicalProperty); -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25() { - jl_Object.call(this); - this.$_0752 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25__init_ = (var$0, var$1) => { - var$0.$_0752 = var$1; +oncie_Modulo_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs29; + case 1: + return $this.$rhs24; + default: + } + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25__init_(var_1, var_0); - return var_1; +oncie_Modulo_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25_apply = var$0 => { - let var$1; - var$1 = var$0.$_0752; - oncias_SemanticExpressionCheck$_$callClinit(); - return var$1; -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26() { - jl_Object.call(this); - this.$_0222 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26__init_ = (var$0, var$1) => { - var$0.$_0222 = var$1; +oncie_Modulo_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26__init_(var_1, var_0); - return var_1; +oncie_Modulo_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26_apply = (var$0, var$1) => { +oncie_Modulo_equals = ($this, $x$1) => { let var$2, var$3, var$4; a: { b: { - c: { - var$2 = var$0.$_0222; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$3 = oncius_NodeType_invariant(oncius_package$_CTNode(oncius_package$_MODULE$)); - if (var$3 !== null) { - if (!oncius_TypeSpec_equals(var$3, var$1)) + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Modulo) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs29; + var$3 = $x$1.$lhs29; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) break b; - else - break c; } - if (var$1 !== null) - break b; - } - var$4 = 1; - break a; - } - d: { - e: { - var$3 = oncius_RelationshipType_invariant(oncius_package$_CTRelationship(oncius_package$_MODULE$)); - if (var$3 !== null) { - if (!oncius_TypeSpec_equals(var$3, var$1)) - break d; - else - break e; + d: { + var$3 = $this.$rhs24; + $x$1 = $x$1.$rhs24; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; } - if (var$1 !== null) - break d; + if (!($this instanceof oncie_Modulo)) + break b; } var$4 = 1; break a; } var$4 = 0; } - if (!var$4) { - oncias_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_1, var$2)); - } else { - oncias_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_0, var$2)); - } - return var$1; -}, -oncie_CachedHasProperty = $rt_classWithoutFields(oncie_LogicalProperty), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27__init_(var_0); - return var_0; + return var$4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); +oncie_Modulo__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs29 = $lhs; + $this.$rhs24 = $rhs; + $this.$position287 = $position; + oncie_Expression__init_($this); + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 4); + var$6 = var$5.data; + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + var$8 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_IntegerType, 2); + var$10 = var$9.data; oncius_package$_$callClinit(); - return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28__init_(var_0); - return var_0; + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTInteger(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[1] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[2] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $rhs = oncie_TypeSignature$_MODULE$; + $position = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_FloatType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[3] = oncie_TypeSignature$_apply($rhs, $position.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $this.$signatures23 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); +oncie_Modulo__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Modulo(); + oncie_Modulo__init_(var_3, var_0, var_1, var_2); + return var_3; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29() { - jl_Object.call(this); - this.$_01097 = null; +function oncie_Multiply() { + let a = this; oncie_Expression.call(a); + a.$lhs12 = null; + a.$rhs12 = null; + a.$position181 = null; + a.$signatures28 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29__init_ = (var$0, var$1) => { - var$0.$_01097 = var$1; +let oncie_Multiply_asCanonicalStringVal = $this => { + return oncie_BinaryOperatorExpression_asCanonicalStringVal$($this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29__init_(var_1, var_0); - return var_1; +oncie_Multiply_isConstantForQuery = $this => { + return oncie_BinaryOperatorExpression_isConstantForQuery$($this); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_01097; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticState_ensureVariableDefined(var$1, var$2); - if (var$3 instanceof su_Right) { - var$1 = var$3.$value7; - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } else { - if (!(var$3 instanceof su_Left)) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = var$3.$value6; - if (!var$1.$declareVariablesToSuppressDuplicateErrors) { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, var$1, var$3); - } else { - oncius_package$_$callClinit(); - var$2 = oncias_SemanticState_declareVariable(var$1, var$2, oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)), s_None$_MODULE$, 0, 0); - if (var$2 instanceof su_Right) { - var$1 = var$2.$value7; - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, var$1, var$3); - } else { - if (!(var$2 instanceof su_Left)) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = var$2.$value6; - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, var$1, var$2); - } - } - } - return var$1; +oncie_Multiply_lhs = $this => { + return $this.$lhs12; }, -oncie_GetDegree = $rt_classWithoutFields(oncie_Expression), -oncias_SemanticFunctionCheck$ = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$_MODULE$ = null, -oncias_SemanticFunctionCheck$_$callClinit = () => { - oncias_SemanticFunctionCheck$_$callClinit = $rt_eraseClinit(oncias_SemanticFunctionCheck$); - oncias_SemanticFunctionCheck$__clinit_(); +oncie_Multiply_rhs = $this => { + return $this.$rhs12; }, -oncias_SemanticFunctionCheck$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticFunctionCheck$; - oncias_SemanticFunctionCheck$_$callClinit(); - oncias_SemanticFunctionCheck$_MODULE$ = var$1; +oncie_Multiply_position = $this => { + return $this.$position181; }, -oncias_SemanticFunctionCheck$_specifyType = ($this, $possibleTypes, $expression) => { - return oncias_SemanticAnalysisTooling_specifyType$($this, $possibleTypes, $expression); +oncie_Multiply_signatures = $this => { + return $this.$signatures28; }, -oncias_SemanticFunctionCheck$_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); +oncie_Multiply_canonicalOperatorSymbol = $this => { + return $rt_s(171); }, -oncias_SemanticFunctionCheck$_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); +oncie_Multiply_productPrefix = $this => { + return $rt_s(6535); }, -oncias_SemanticFunctionCheck$_types = ($this, $expression) => { - return oncias_SemanticAnalysisTooling_types$($this, $expression); +oncie_Multiply_productArity = $this => { + return 2; }, -oncias_SemanticFunctionCheck$_check = ($this, $ctx, $invocation) => { - let var$3, var$4, var$5, var$6, var$7; - var$3 = $invocation.$function1; - if (!(var$3 instanceof oncief_AggregatingFunction)) { - oncief_Reduce$_$callClinit(); - if (jl_Object_equals(oncief_Reduce$_MODULE$, var$3)) { - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(5833)), $rt_s(6962)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$3), $invocation.$position7); - } - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = $invocation.$distinct3; - var$5 = new oncias_SemanticFunctionCheck$$check$lambda$_44_1; - var$5.$_0946 = $invocation; - var$3 = oncias_SemanticCheck$_when(var$3, var$4, var$5); - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3.$chain(oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx, oncie_Expression_arguments($invocation))), oncias_SemanticFunctionCheck$_semanticCheck($this, $ctx, $invocation)); +oncie_Multiply_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$lhs12; + case 1: + return $this.$rhs12; + default: } + return sr_Statics_ioobe($x$1); +}, +oncie_Multiply_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Multiply_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Multiply_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncie_Multiply_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - var$3 = var$3; - oncias_SemanticCheck$_$callClinit(); - var$5 = oncias_SemanticCheck$_MODULE$; - oncie_Expression$SemanticContext$Simple$_$callClinit(); - var$6 = oncie_Expression$SemanticContext$Simple$_MODULE$; - if ($ctx !== null) { - if (!jl_Object_equals($ctx, var$6)) + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Multiply) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lhs12; + var$3 = $x$1.$lhs12; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) break b; - else - break c; } - if (var$6 !== null) + d: { + var$3 = $this.$rhs12; + $x$1 = $x$1.$rhs12; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_Multiply)) break b; } var$4 = 1; @@ -329875,231 +256978,146 @@ oncias_SemanticFunctionCheck$_check = ($this, $ctx, $invocation) => { } var$4 = 0; } - var$6 = new oncias_SemanticFunctionCheck$$check$lambda$_44_0; - var$6.$_0349 = var$3; - var$6.$_1125 = $invocation; - var$7 = oncias_SemanticCheck$_when(var$5, var$4, var$6); - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, sc_AbstractIterable_collectFirst($invocation.$args0, new oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1), new oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_45_0); - oncias_SemanticExpressionCheck$_$callClinit(); - return var$7.$chain(oncias_SemanticCheck_chain$(var$3.$chain(oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx, oncie_Expression_arguments($invocation))), oncias_SemanticFunctionCheck$_semanticCheck($this, $ctx, $invocation))); -}, -oncias_SemanticFunctionCheck$_semanticCheck = ($this, $ctx, $invocation) => { - let var$3, var$4, var$5; - var$3 = 0; - var$4 = $invocation.$function1; - oncief_Coalesce$_$callClinit(); - if (jl_Object_equals(oncief_Coalesce$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - $ctx = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkMinArgs($this, $invocation, 1)); - oncius_package$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$($ctx, oncias_SemanticAnalysisTooling_expectType$1($this, oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)), oncie_Expression_arguments($invocation))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$0($this, oncias_SemanticAnalysisTooling_unionOfTypes$($this, oncie_Expression_arguments($invocation)), $invocation))); - } - oncief_Collect$_$callClinit(); - if (jl_Object_equals(oncief_Collect$_MODULE$, var$4)) { - $ctx = oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_Collect$_MODULE$, $invocation); - var$5 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_0; - var$5.$_0498 = $invocation; - return oncias_SemanticCheck_ifOkChain$($ctx, var$5); - } - oncief_Exists$_$callClinit(); - if (jl_Object_equals(oncief_Exists$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - $ctx = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1)); - var$5 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_1; - var$5.$_01035 = $invocation; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_ifOkChain$($ctx, var$5), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$($this, new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_2, $invocation))); - } - oncief_Head$_$callClinit(); - if (jl_Object_equals(oncief_Head$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - return oncias_SemanticCheck_ifOkChain$(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3__init_0($invocation)); - } - oncief_GraphByName$_$callClinit(); - if (jl_Object_equals(oncief_GraphByName$_MODULE$, var$4)) - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_GraphByName$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4__init_($invocation)); - oncief_GraphByElementId$_$callClinit(); - if (jl_Object_equals(oncief_GraphByElementId$_MODULE$, var$4)) - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_GraphByElementId$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5__init_0($invocation)); - oncief_Last$_$callClinit(); - if (jl_Object_equals(oncief_Last$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6__init_0($invocation)); - } - oncief_Max$_$callClinit(); - if (jl_Object_equals(oncief_Max$_MODULE$, var$4)) - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_Max$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7__init_0($invocation)); - oncief_IsEmpty$_$callClinit(); - if (jl_Object_equals(oncief_IsEmpty$_MODULE$, var$4)) - return oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_IsEmpty$_MODULE$, $invocation); - oncief_Min$_$callClinit(); - if (jl_Object_equals(oncief_Min$_MODULE$, var$4)) - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_Min$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8__init_($invocation)); - oncief_PercentileCont$_$callClinit(); - if (jl_Object_equals(oncief_PercentileCont$_MODULE$, var$4)) - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_PercentileCont$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9__init_($invocation)); - oncief_PercentileDisc$_$callClinit(); - if (jl_Object_equals(oncief_PercentileDisc$_MODULE$, var$4)) - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_PercentileDisc$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10__init_0($invocation)); - oncief_Point$_$callClinit(); - if (jl_Object_equals(oncief_Point$_MODULE$, var$4)) - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_Point$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11__init_0($invocation)); - oncief_Reverse$_$callClinit(); - if (jl_Object_equals(oncief_Reverse$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12__init_0($invocation)); - } - oncief_Tail$_$callClinit(); - if (jl_Object_equals(oncief_Tail$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13__init_0($invocation)); - } - oncief_ToBoolean$_$callClinit(); - if (jl_Object_equals(oncief_ToBoolean$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14__init_0($invocation)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15__init_0($invocation)); - } - oncief_ToString$_$callClinit(); - if (jl_Object_equals(oncief_ToString$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16__init_0($invocation)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17__init_($invocation)); - } - oncief_UnresolvedFunction$_$callClinit(); - if (jl_Object_equals(oncief_UnresolvedFunction$_MODULE$, var$4)) { - var$3 = 1; - if (sci_List_isEmpty(oncie_Namespace_parts(oncie_FunctionName_namespace(oncie_FunctionInvocation_functionName($invocation))))) { - var$5 = oncie_FunctionName_name(oncie_FunctionInvocation_functionName($invocation)); - ju_Locale_$callClinit(); - var$5 = jl_String_toLowerCase0(var$5, ju_Locale_ROOT); - if (var$5 !== null && jl_String_equals(var$5, $rt_s(6963))) { - oncias_package$_$callClinit(); - var$5 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$5, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6964), oncie_FunctionInvocation_position($invocation))); - } - } - } - oncief_Distance$_$callClinit(); - if (jl_Object_equals(oncief_Distance$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 2)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18__init_($invocation)); - } - oncief_WithinBBox$_$callClinit(); - if (jl_Object_equals(oncief_WithinBBox$_MODULE$, var$4)) { - oncias_package$_$callClinit(); - return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 3)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19__init_($invocation)); - } - if (var$3) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - if (var$4 !== null) - return oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, var$4, $invocation); - $rt_throw(s_MatchError__init_(var$4)); -}, -oncias_SemanticFunctionCheck$_checkTypeSignatures = ($this, $ctx, $f, $invocation) => { - let var$4; - oncias_package$_$callClinit(); - $ctx = oncias_package$_MODULE$; - var$4 = oncief_Function_signatureLengths($f); - sm_Ordering$Int$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_package$_liftSemanticErrorDefOption($ctx, oncias_SemanticFunctionCheck$_checkMinArgs($this, $invocation, sr_BoxesRunTime_unboxToInt(sc_AbstractIterable_min(var$4, sm_Ordering$Int$_MODULE$)))), oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkMaxArgs($this, $invocation, sr_BoxesRunTime_unboxToInt(sc_AbstractIterable_max(oncief_Function_signatureLengths($f), sm_Ordering$Int$_MODULE$))))), - oncias_SemanticAnalysisTooling_checkTypes$($this, $invocation, $f.$signatures())); + return var$4; }, -oncias_SemanticFunctionCheck$_checkArgs = ($this, $invocation, $n) => { - let var$3, var$4, var$5, var$6; +oncie_Multiply__init_ = ($this, $lhs, $rhs, $position) => { + let var$4, var$5, var$6, var$7, var$8, var$9, var$10; + $this.$lhs12 = $lhs; + $this.$rhs12 = $rhs; + $this.$position181 = $position; + oncie_Expression__init_($this); s_package$_$callClinit(); - var$3 = s_package$_Vector(s_package$_MODULE$); - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(s_Option, 2); + var$4 = s_package$_Vector(s_package$_MODULE$); + $lhs = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncie_ExpressionTypeSignature, 8); var$6 = var$5.data; - var$6[0] = oncias_SemanticFunctionCheck$_checkMinArgs($this, $invocation, $n); - var$6[1] = oncias_SemanticFunctionCheck$_checkMaxArgs($this, $invocation, $n); - $invocation = var$3.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); - s_Predef$_$callClinit(); - return ($invocation.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$))).$headOption(); + oncie_TypeSignature$_$callClinit(); + var$7 = oncie_TypeSignature$_MODULE$; + var$8 = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_IntegerType, 2); + var$10 = var$9.data; + oncius_package$_$callClinit(); + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[0] = oncie_TypeSignature$_apply(var$7, var$8.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTInteger(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$10 = $rt_createArray(oncius_CypherType, 2); + var$9 = var$10.data; + var$9[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$9[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[1] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$10)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_FloatType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[2] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[3] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTFloat(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[4] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[5] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); + $position = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + var$7 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[6] = oncie_TypeSignature$_apply($position, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray(var$7, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); + var$8 = oncie_TypeSignature$_MODULE$; + $rhs = s_package$_Vector(s_package$_MODULE$); + $position = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_CypherType, 2); + var$10 = var$9.data; + var$10[0] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$10[1] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[7] = oncie_TypeSignature$_apply(var$8, $rhs.$from0(sr_ScalaRunTime$_wrapRefArray($position, var$9)), oncius_package$_CTDuration(oncius_package$_MODULE$)); + $this.$signatures28 = var$4.$from0(sr_ScalaRunTime$_wrapRefArray($lhs, var$5)); }, -oncias_SemanticFunctionCheck$_checkMaxArgs = ($this, $invocation, $n) => { - let var$3, var$4, var$5, var$6; - if ((oncie_Expression_arguments($invocation)).$length() <= $n) - return s_None$_MODULE$; - var$3 = new s_Some; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - var$5 = $invocation.$function1.$name(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6965)), var$5), 39); - s_Some__init_0(var$3, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$6), $invocation.$position7)); - return var$3; +oncie_Multiply__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oncie_Multiply(); + oncie_Multiply__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncias_SemanticFunctionCheck$_checkMinArgs = ($this, $invocation, $n) => { - let var$3, var$4, var$5, var$6; - if ((oncie_Expression_arguments($invocation)).$length() >= $n) - return s_None$_MODULE$; - var$3 = new s_Some; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - var$5 = $invocation.$function1.$name(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6966)), var$5), 39); - s_Some__init_0(var$3, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$6), $invocation.$position7)); - return var$3; +oncia_UserAuth$checkDuplicateAuth$lambda$_12_0 = $rt_classWithoutFields(), +oncia_UserAuth$checkDuplicateAuth$lambda$_12_0_apply = (var$0, var$1) => { + return var$1.$provider0; }, -oncias_SemanticFunctionCheck$_checkPercentileRange = ($this, $expression) => { - let var$2, var$3, var$4, var$5; - var$2 = 0; - var$3 = null; - if ($rt_isInstance($expression, oncie_DoubleLiteral)) { - var$2 = 1; - var$3 = $expression; - s_Predef$_$callClinit(); - if (sr_BoxesRunTime_unboxToDouble(oncie_DecimalDoubleLiteral_value(var$3)) >= 0.0 && sr_BoxesRunTime_unboxToDouble(oncie_DecimalDoubleLiteral_value(var$3)) <= 1.0) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - } - if ($rt_isInstance($expression, oncie_IntegerLiteral)) { - var$4 = $expression; - if (!(!sr_BoxesRunTime_equalsNumObject(var$4.$value1(), jl_Long_valueOf(Long_ZERO)) && !sr_BoxesRunTime_equalsNumObject(var$4.$value1(), jl_Long_valueOf(Long_fromInt(1))))) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +oncia_UserAuth$$anonfun$checkDuplicateAuth$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_UserAuth$$anonfun$checkDuplicateAuth$2_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5; + $x = $x; + if ($x !== null) { + $x = $x.$_2(); + if ($x !== null) { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x); + if ($x.$lengthCompare(2) >= 0) { + $x = $x.$apply1(1); + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + $default = oncia_AdministrationCommandSemanticAnalysis$_MODULE$; + var$3 = $x.$provider0; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6536)), var$3), 39); + var$5 = jl_AbstractStringBuilder_toString(var$4); + var$3 = $x.$provider0; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6537)), var$3), $rt_s(6538)); + $default = oncia_AdministrationCommandSemanticAnalysis$_duplicateClauseError($default, var$5, jl_AbstractStringBuilder_toString(var$4), $x.$position69); + } } } - if (var$2) { - $expression = oncie_DecimalDoubleLiteral_value(var$3); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(3971)), $expression), $rt_s(6967)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$4), var$3.$position38); - } - if (!$rt_isInstance($expression, oncie_Literal)) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - $expression = $expression; - var$3 = $expression.$asCanonicalStringVal(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(3971)), var$3), $rt_s(6967)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$5), $expression.$position()); + return $default; }, -oncias_SemanticFunctionCheck$_withKey = ($this, $key, $kv) => { - let var$3; +oncia_UserAuth$checkDuplicateAuth$lambda$_12_1 = $rt_classWithoutFields(), +oncia_UserAuth$checkDuplicateAuth$lambda$_12_1_apply = var$0 => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}, +oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0 = $rt_classWithoutFields(), +oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0_apply = (var$0, var$1) => { + let var$2, var$3; a: { b: { c: { - $kv = ($kv.$_1()).$name5; - if ($kv !== null) { - if (!jl_String_equals($kv, $key)) + var$2 = var$1.$provider0; + oncia_AdministrationCommand$_$callClinit(); + var$1 = oncia_AdministrationCommand$_NATIVE_AUTH(oncia_AdministrationCommand$_MODULE$); + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$1)) break b; else break c; } - if ($key !== null) + if (var$1 !== null) break b; } var$3 = 1; @@ -330107,15609 +257125,14367 @@ oncias_SemanticFunctionCheck$_withKey = ($this, $key, $kv) => { } var$3 = 0; } - return var$3; -}, -oncias_SemanticFunctionCheck$_checkToSpecifiedTypeOfArgument = ($this, $invocation, $allowedTypes) => { - let var$3, var$4; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = new oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_54_0; - var$4.$_059 = $invocation; - var$4.$_126 = $allowedTypes; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)), oncius_AnyType_invariant(oncius_package$_CTAny(oncius_package$_MODULE$))); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); + return jl_Boolean_valueOf(var$3); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32() { - jl_Object.call(this); - this.$_01072 = null; +function oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0() { + let a = this; jl_Object.call(a); + a.$_0940 = null; + a.$_1322 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32__init_ = (var$0, var$1) => { - var$0.$_01072 = var$1; +let oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11; + var$1 = var$1; + var$2 = var$0.$_0940; + var$3 = var$0.$_1322; + if (!s_Option_exists(s_Option_flatMap(var$1.$primaries, new oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_0), new oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_1)) { + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$5 = sr_BoxesRunTime_unboxToInt((s_Option_flatMap(var$1.$primaries, new oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_2)).$get1()); + onciap_Prettifier$_$callClinit(); + var$6 = jl_String_trim(onciap_Prettifier$_extractTopology(onciap_Prettifier$_MODULE$, var$1)); + oncias_SemanticError$_$callClinit(); + var$4 = var$2.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + var$7 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22003), var$4.$offset(), var$4.$line(), var$4.$column()); + var$8 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_51N52), var$4.$offset(), var$4.$line(), var$4.$column()); + var$9 = ong_GqlParams$NumberParam_count; + s_Predef$_$callClinit(); + var$7 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(var$7, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(var$8, var$9, jl_Integer_valueOf(var$5)), ong_GqlParams$NumberParam_upper, jl_Integer_valueOf(11))))); + var$8 = new oncias_SemanticError; + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(5003)), var$3), $rt_s(6539)), var$6), $rt_s(6540)); + oncias_SemanticError__init_(var$8, var$7, jl_AbstractStringBuilder_toString(var$9), var$4); + var$4 = var$2.$error5(var$8); + } + if (!s_Option_exists(s_Option_flatMap(var$1.$secondaries, new oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_0), new oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_1)) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$10 = sr_BoxesRunTime_unboxToInt((s_Option_flatMap(var$1.$secondaries, new oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_2)).$get1()); + onciap_Prettifier$_$callClinit(); + var$1 = jl_String_trim(onciap_Prettifier$_extractTopology(onciap_Prettifier$_MODULE$, var$1)); + oncias_SemanticError$_$callClinit(); + var$7 = var$2.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + var$8 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22003), var$7.$offset(), var$7.$line(), var$7.$column()); + var$9 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_51N53), var$7.$offset(), var$7.$line(), var$7.$column()); + var$11 = ong_GqlParams$NumberParam_count; + s_Predef$_$callClinit(); + var$8 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(var$8, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(var$9, var$11, jl_Integer_valueOf(var$10)), ong_GqlParams$NumberParam_upper, jl_Integer_valueOf(20))))); + var$9 = new oncias_SemanticError; + var$11 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$11); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$11, $rt_s(5003)), var$3), $rt_s(6539)), var$1), $rt_s(6541)); + oncias_SemanticError__init_(var$9, var$8, jl_AbstractStringBuilder_toString(var$11), var$7); + var$1 = var$2.$error5(var$9); + } + return oncias_SemanticCheck_chain$(var$4, var$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32__init_(var_1, var_0); - return var_1; +oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1 = $rt_classWithoutFields(), +oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1_apply = var$0 => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32_apply = var$0 => { - let var$1; - var$1 = var$0.$_01072; - oncias_SemanticExpressionCheck$_$callClinit(); - return (var$1.$parameterType()).$covariant(); +onih_Strings = $rt_classWithoutFields(), +onih_Strings_codePoints = $s => { + let $iterable, var$3, var$4, var$5, var$6, var$7; + $iterable = new onih_Strings$codePoints$lambda$_5_0; + $iterable.$_01170 = $s; + var$3 = new onih_Strings$CodePointsIterator; + var$3.$s = $s; + var$4 = 0; + var$5 = $s.$nativeString.length; + var$6 = $s.$nativeString.length; + if (var$4 <= var$5 && var$5 <= var$6) { + var$6 = var$5 - var$4 | 0; + var$5 = var$5 + (-1) | 0; + while (var$4 < var$5) { + if (!jl_Character_isHighSurrogate(jl_String_charAt($s, var$4))) + var$7 = var$4; + else { + var$7 = var$4 + 1 | 0; + if (!jl_Character_isLowSurrogate(jl_String_charAt($s, var$7))) + var$7 = var$4; + else + var$6 = var$6 + (-1) | 0; + } + var$4 = var$7 + 1 | 0; + } + var$3.$numCodePoints = var$6; + var$3.$charIndex = 0; + var$3.$codePointIndex = 0; + $s = new jl_Iterable$1; + $s.$this$023 = $iterable; + $s.$val$iterator = var$3; + return jusi_SimpleStreamImpl_mapToInt(jusi_StreamOverSpliterator__init_($s), new onih_Strings$codePoints$lambda$_5_1); + } + $s = new jl_IndexOutOfBoundsException; + jl_RuntimeException__init_($s); + $rt_throw($s); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33() { +function onu_Stringifier$backtick$lambda$_3_0() { jl_Object.call(this); - this.$_0699 = null; + this.$_01108 = 0; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33__init_0 = (var$0, var$1) => { - var$0.$_0699 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33__init_0(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33_apply = var$0 => { - let var$1; - var$1 = var$0.$_0699; - oncias_SemanticExpressionCheck$_$callClinit(); - return var$1.$parameterType2.$covariant(); +let onu_Stringifier$backtick$lambda$_3_0_test = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_01108; + var$3 = jl_Integer_valueOf(var$1); + var$4 = onu_CypherVersion_Cypher25; + var$4 = jl_Enum_equals(var$4, var$4) ? onu_UnicodeHelper_identifierStartUnicodesCypher25 : jus_Stream_toList(jus_Stream_concat(ju_Collection_stream(onu_UnicodeHelper_deprecatedIdentifierStartUnicodes), ju_Collection_stream(onu_UnicodeHelper_identifierStartUnicodesCypher25))); + return !onu_UnicodeHelper_isAllowedUnicode(var$3, var$4) && !onu_Stringifier_orGlobbedCharacter(var$2, var$1) ? 0 : 1; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34() { +function onu_Stringifier$backtick$lambda$_3_1() { jl_Object.call(this); - this.$_014 = null; + this.$_0329 = 0; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34__init_ = (var$0, var$1) => { - var$0.$_014 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34_apply = var$0 => { - let var$1; - var$1 = var$0.$_014; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling_error$(oncias_SemanticExpressionCheck$_MODULE$, $rt_s(6968), var$1.$position158); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); +let onu_Stringifier$backtick$lambda$_3_1_test = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0329; + var$3 = jl_Integer_valueOf(var$1); + var$4 = onu_CypherVersion_Cypher25; + var$4 = jl_Enum_equals(var$4, var$4) ? onu_UnicodeHelper_identifierPartUnicodesCypher25 : jus_Stream_toList(jus_Stream_concat(ju_Collection_stream(onu_UnicodeHelper_deprecatedIdentifierPartUnicodes), ju_Collection_stream(onu_UnicodeHelper_identifierPartUnicodesCypher25))); + return !onu_UnicodeHelper_isAllowedUnicode(var$3, var$4) && !onu_Stringifier_orGlobbedCharacter(var$2, var$1) ? 0 : 1; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36() { - jl_Object.call(this); - this.$_0267 = null; +function oncie_ListSlice() { + let a = this; oncie_Expression.call(a); + a.$list2 = null; + a.$from18 = null; + a.$to1 = null; + a.$position179 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36__init_ = (var$0, var$1) => { - var$0.$_0267 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36_apply = var$0 => { - let var$1; - var$1 = var$0.$_0267; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticExpressionCheck$_checkLabelExpression(oncias_SemanticExpressionCheck$_MODULE$, s_None$_MODULE$, var$1.$labelExpression8); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41__init_0 = var$0 => { - return; +let oncie_ListSlice_list = $this => { + return $this.$list2; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41__init_0(var_0); - return var_0; +oncie_ListSlice_from = $this => { + return $this.$from18; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +oncie_ListSlice_to = $this => { + return $this.$to1; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42__init_0 = var$0 => { - return; +oncie_ListSlice_position = $this => { + return $this.$position179; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42__init_0(var_0); - return var_0; +oncie_ListSlice_isConstantForQuery = $this => { + return $this.$list2.$isConstantForQuery() && s_Option_forall($this.$from18, new oncie_ListSlice$isConstantForQuery$lambda$_6_0) ? 1 : 0; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$)); +oncie_ListSlice_productPrefix = $this => { + return $rt_s(6542); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43__init_0 = var$0 => { - return; +oncie_ListSlice_productArity = $this => { + return 3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43__init_0(var_0); - return var_0; +oncie_ListSlice_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$list2; + case 1: + return $this.$from18; + case 2: + return $this.$to1; + default: + } + return sr_Statics_ioobe($x$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +oncie_ListSlice_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$FilteringExpressions$ = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$ = null, -oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit = () => { - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit = $rt_eraseClinit(oncias_SemanticExpressionCheck$FilteringExpressions$); - oncias_SemanticExpressionCheck$FilteringExpressions$__clinit_(); +oncie_ListSlice_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$FilteringExpressions$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticExpressionCheck$FilteringExpressions$; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$ = var$1; +oncie_ListSlice_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticExpressionCheck$FilteringExpressions$_semanticCheck = ($this, $ctx, $e) => { - let var$3, var$4, var$5; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx, $e.$expression()), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0, $e.$expression())); - $ctx = $e.$innerPredicate(); - if (!($ctx instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, $ctx)) - $rt_throw(s_MatchError__init_($ctx)); - oncias_SemanticCheck$_$callClinit(); - $ctx = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - $ctx = $ctx.$value5; - var$4 = oncias_SemanticExpressionCheck$_MODULE$; - var$5 = new oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0; - var$5.$_0381 = $e; - var$5.$_1139 = $ctx; - $ctx = oncias_SemanticAnalysisTooling_withScopedState$(var$4, var$5); +oncie_ListSlice_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_ListSlice) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$list2; + var$3 = $x$1.$list2; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$from18; + var$3 = $x$1.$from18; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$3 = $this.$to1; + $x$1 = $x$1.$to1; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break e; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_ListSlice)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; } - var$4 = oncias_SemanticCheck_chain$(var$3, $ctx); - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(var$4, oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating0($this, $e.$innerPredicate()))); -}, -oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating0 = ($this, $expression) => { - return s_Option_flatMap($expression, new oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0); -}, -oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating = ($this, $expression) => { - return s_Option_map(oncie_Expression_findAggregate($expression), new oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0); + return var$4; }, -oncias_SemanticExpressionCheck$FilteringExpressions$_checkPredicateDefined = ($this, $e) => { - let var$2, var$3, var$4; - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = s_Option_isEmpty($e.$innerPredicate()); - var$4 = new oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0; - var$4.$_01093 = $e; - return oncias_SemanticCheck$_when(var$2, var$3, var$4); +oncie_ListSlice__init_ = ($this, $list, $from, $to, $position) => { + $this.$list2 = $list; + $this.$from18 = $from; + $this.$to1 = $to; + $this.$position179 = $position; + oncie_Expression__init_($this); }, -oncias_SemanticExpressionCheck$FilteringExpressions$_possibleInnerTypes = ($this, $e) => { - let var$2; - var$2 = new oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0; - var$2.$_0775 = $e; - return var$2; +oncie_ListSlice__init_0 = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncie_ListSlice(); + oncie_ListSlice__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44() { - jl_Object.call(this); - this.$_01068 = null; +function oncia_SingleQuery$checkHorizon$lambda$_88_0() { + let a = this; jl_Object.call(a); + a.$_026 = null; + a.$_114 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44__init_ = (var$0, var$1) => { - var$0.$_01068 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_01068; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticPatternCheck$_check2(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Match$_MODULE$, var$1.$pattern11); - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$1.$namedPath0, new oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_0)), oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, var$1.$predicate3, new oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_1)), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, - var$1.$projection0)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$pattern11)); +let oncia_SingleQuery$checkHorizon$lambda$_88_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_026; + var$3 = var$0.$_114; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$2 = var$2.$semanticCheckContinuation(var$1.$state.$currentScope.$elem0, var$3); + var$3 = new oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_162_0; + var$3.$_042 = var$1; + return var$2.$map11(var$3); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45() { +function oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0() { jl_Object.call(this); - this.$_0696 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45__init_ = (var$0, var$1) => { - var$0.$_0696 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0696; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncius_TypeSpec_wrapInList(oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2.$projection0), var$1)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); -}, -oncie_PathStep = $rt_classWithoutFields(0); -function oncie_NodePathStep() { - let a = this; oncie_Expression.call(a); - a.$node4 = null; - a.$next15 = null; + this.$_0295 = null; } -let oncie_NodePathStep_node = $this => { - return $this.$node4; -}, -oncie_NodePathStep_next = $this => { - return $this.$next15; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTPath(oncius_package$_MODULE$)).$invariant(); +let oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0295; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$2 = var$2.$semanticCheckContinuation(var$1.$state.$currentScope.$elem0, var$2.$semanticCheckContinuation$default$2()); + var$3 = new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0; + var$3.$_0450 = var$1; + return oncias_SemanticCheck_map$(var$2, var$3); }; -function oncie_SingleRelationshipPathStep() { - let a = this; oncie_Expression.call(a); - a.$rel0 = null; - a.$direction2 = null; - a.$toNode3 = null; - a.$next16 = null; +function oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_174_0() { + let a = this; jl_Object.call(a); + a.$_01147 = null; + a.$_1391 = null; + a.$_2128 = null; } -let oncie_SingleRelationshipPathStep_rel = $this => { - return $this.$rel0; +let oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_174_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_01147; + var$3 = var$0.$_1391; + var$4 = var$0.$_2128; + if (!sr_BoxesRunTime_equals(var$1, jl_Character_valueOf(133))) { + var$5 = new onciu_DeprecatedIdentifierUnicode; + s_Predef$_$callClinit(); + var$6 = sr_BoxesRunTime_unboxToChar(var$1); + var$5.$position50 = var$3; + var$5.$unicode1 = var$6; + var$5.$identifier0 = var$4; + onciu_RecordingNotificationLogger_log(var$2, var$5); + } else { + var$5 = new onciu_DeprecatedIdentifierWhitespaceUnicode; + s_Predef$_$callClinit(); + var$6 = sr_BoxesRunTime_unboxToChar(var$1); + var$5.$position44 = var$3; + var$5.$unicode0 = var$6; + var$5.$identifier1 = var$4; + onciu_RecordingNotificationLogger_log(var$2, var$5); + } + return sr_BoxedUnit_UNIT; }, -oncie_SingleRelationshipPathStep_toNode = $this => { - return $this.$toNode3; +oncia_ExternalAuth$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_ExternalAuth$$anonfun$2_applyOrElse = ($this, $x, $default) => { + $x = $x; + if ($x instanceof oncia_AuthId) + $default = $x.$id1; + return $default; }, -oncie_SingleRelationshipPathStep_next = $this => { - return $this.$next16; +oncie_Expression$SemanticContext = $rt_classWithoutFields(0), +oncie_Expression$SemanticContext$Simple$ = $rt_classWithoutFields(), +oncie_Expression$SemanticContext$Simple$_MODULE$ = null, +oncie_Expression$SemanticContext$Simple$__clinit_ = () => { + oncie_Expression$SemanticContext$Simple$_MODULE$ = new oncie_Expression$SemanticContext$Simple$; }; -function oncie_MultiRelationshipPathStep() { - let a = this; oncie_Expression.call(a); - a.$rel3 = null; - a.$direction1 = null; - a.$toNode2 = null; - a.$next18 = null; +function oncias_package$$liftSemanticEitherFunc$lambda$_2_0() { + jl_Object.call(this); + this.$_0505 = null; } -let oncie_MultiRelationshipPathStep_rel = $this => { - return $this.$rel3; -}, -oncie_MultiRelationshipPathStep_toNode = $this => { - return $this.$toNode2; +let oncias_package$$liftSemanticEitherFunc$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0505.$apply2(var$1); + var$3 = new oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_0; + var$3.$_0677 = var$1; + return su_Either_fold(var$2, var$3, new oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_1); }, -oncie_MultiRelationshipPathStep_next = $this => { - return $this.$next18; -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48() { - jl_Object.call(this); - this.$_0266 = null; +jlr_AccessibleObject = $rt_classWithoutFields(), +jlr_Member = $rt_classWithoutFields(0); +function jlr_Method() { + let a = this; jlr_AccessibleObject.call(a); + a.$declaringClass = null; + a.$name34 = null; + a.$flags2 = 0; + a.$accessLevel = 0; + a.$returnType = null; + a.$parameterTypes = null; + a.$callable = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48__init_0 = (var$0, var$1) => { - var$0.$_0266 = var$1; +let jlr_Method_getModifiers = $this => { + return otcir_Flags_getModifiers($this.$flags2, $this.$accessLevel); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48__init_0(var_1, var_0); - return var_1; +jlr_Method_getParameterTypes = $this => { + return $this.$parameterTypes.$clone0(); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0266; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, var$2, var$1); -}; -function oncie_RepeatPathStep() { - let a = this; oncie_Expression.call(a); - a.$variables2 = null; - a.$toNode1 = null; - a.$next14 = null; -} -let oncie_RepeatPathStep_variables = $this => { - return $this.$variables2; +jlr_Method_toString = $this => { + let $sb, $parameterTypes, var$3, $i; + $sb = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($sb); + jl_AbstractStringBuilder_append($sb, jlr_Modifier_toString(jlr_Method_getModifiers($this))); + if ($sb.$length1 > 0) + jl_AbstractStringBuilder_append0($sb, 32); + a: { + jl_AbstractStringBuilder_append($sb, jl_Class_getName($this.$returnType)); + jl_AbstractStringBuilder_append0($sb, 32); + jl_AbstractStringBuilder_append($sb, jl_Class_getName($this.$declaringClass)); + jl_AbstractStringBuilder_append0($sb, 46); + jl_AbstractStringBuilder_append($sb, $this.$name34); + jl_AbstractStringBuilder_append0($sb, 40); + $parameterTypes = (jlr_Method_getParameterTypes($this)).data; + var$3 = $parameterTypes.length; + if (var$3 > 0) { + jl_AbstractStringBuilder_append($sb, jl_Class_getName($parameterTypes[0])); + $i = 1; + while (true) { + if ($i >= var$3) + break a; + jl_AbstractStringBuilder_append0($sb, 44); + jl_AbstractStringBuilder_append($sb, jl_Class_getName($parameterTypes[$i])); + $i = $i + 1 | 0; + } + } + } + jl_AbstractStringBuilder_append0($sb, 41); + return jl_AbstractStringBuilder_toString($sb); }, -oncie_RepeatPathStep_toNode = $this => { - return $this.$toNode1; +jlr_Method_invoke = ($this, $obj, $args) => { + let var$3, var$4, $i, $jsArgs; + if ($this.$callable === null) { + $obj = new jl_IllegalAccessException; + jl_Throwable__init_0($obj); + $rt_throw($obj); + } + var$3 = $args.data; + var$4 = var$3.length; + if (var$4 != $this.$parameterTypes.data.length) { + $obj = new jl_IllegalArgumentException; + jl_Throwable__init_0($obj); + $rt_throw($obj); + } + if ($this.$flags2 & 512) + $this.$declaringClass.$platformClass.$clinit(); + else if (!jl_Class_isInstance($this.$declaringClass, $obj)) { + $obj = new jl_IllegalArgumentException; + jl_Throwable__init_0($obj); + $rt_throw($obj); + } + $i = 0; + while (true) { + if ($i >= var$4) { + $jsArgs = $args.data; + return $this.$callable.call($obj, $jsArgs); + } + if (!jl_Class_isPrimitive($this.$parameterTypes.data[$i]) && var$3[$i] !== null && !jl_Class_isInstance($this.$parameterTypes.data[$i], var$3[$i])) { + $obj = new jl_IllegalArgumentException; + jl_Throwable__init_0($obj); + $rt_throw($obj); + } + if (jl_Class_isPrimitive($this.$parameterTypes.data[$i]) && var$3[$i] === null) + break; + $i = $i + 1 | 0; + } + $obj = new jl_IllegalArgumentException; + jl_Throwable__init_0($obj); + $rt_throw($obj); }, -oncie_RepeatPathStep_next = $this => { - return $this.$next14; +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0 = $rt_classWithoutFields(), +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + a: { + var$1 = var$1; + oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit(); + if (var$1 !== null) { + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + if (var$1 instanceof oncie_StringLiteral) { + var$3 = var$1; + if (jl_String_equalsIgnoreCase(var$2, $rt_s(5505))) { + var$4 = jl_String_equalsIgnoreCase(var$3.$value8, $rt_s(6543)); + break a; + } + } + } + var$4 = 0; + } + return jl_Boolean_valueOf(var$4); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49() { +function oncias_SemanticTable$TypeGetter() { jl_Object.call(this); - this.$_0745 = null; + this.$typeInfo = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49__init_ = (var$0, var$1) => { - var$0.$_0745 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49_apply = (var$0, var$1) => { +let oncias_SemanticTable$TypeGetter_isAnyOf = ($this, $cypherTypes) => { let var$2; - var$1 = var$1; - var$2 = var$0.$_0745; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, var$2, var$1); -}, -oncie_NilPathStep = $rt_classWithoutFields(oncie_Expression), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_50 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_50__init_ = var$0 => { - return; + var$2 = new oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0; + var$2.$_0256 = $this; + return sc_IterableOnceOps_exists$($cypherTypes, var$2); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_50__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_50(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_50__init_(var_0); - return var_0; +oncias_SemanticTable$typeFor$lambda$_25_0 = $rt_classWithoutFields(), +oncias_SemanticTable$typeFor$lambda$_25_0_apply = (var$0, var$1) => { + return oncias_ExpressionTypeInfo_actual(var$1); }, -oncias_SemanticPatternCheck$ = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$_MODULE$ = null, -oncias_SemanticPatternCheck$_stringifier0 = null, -oncias_SemanticPatternCheck$_$callClinit = () => { - oncias_SemanticPatternCheck$_$callClinit = $rt_eraseClinit(oncias_SemanticPatternCheck$); - oncias_SemanticPatternCheck$__clinit_(); +oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_0 = $rt_classWithoutFields(), +oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + return jl_Boolean_valueOf(var$1.$returnItems3.$includeExisting0); }, -oncias_SemanticPatternCheck$__clinit_ = () => { - let var$1; - var$1 = new oncias_SemanticPatternCheck$; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticPatternCheck$_MODULE$ = var$1; - oncias_SemanticPatternCheck$_stringifier0 = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_ExpressionStringifier$_failingExtender, 0, 0, 0, 0); +oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_1 = $rt_classWithoutFields(), +oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + return jl_Boolean_valueOf(var$1.$returnItems3.$includeExisting0); +}; +function oncie_Expression$TreeAcc() { + let a = this; jl_Object.call(a); + a.$data1 = null; + a.$list0 = null; +} +let oncie_Expression$TreeAcc_mapData = ($this, $f) => { + return oncie_Expression$TreeAcc_copy($this, $f.$apply2($this.$data1), $this.$list0); }, -oncias_SemanticPatternCheck$_expectType0 = ($this, $possibleTypes, $expression) => { - return oncias_SemanticAnalysisTooling_expectType$($this, $possibleTypes, $expression); +oncie_Expression$TreeAcc_inScope = ($this, $variable) => { + let var$2, var$3; + var$2 = $this.$list0; + var$3 = new oncie_Expression$TreeAcc$inScope$lambda$_4_0; + var$3.$_0129 = $variable; + return sci_List_exists(var$2, var$3); }, -oncias_SemanticPatternCheck$_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); +oncie_Expression$TreeAcc_pushScope = ($this, $newVariables) => { + let $x$1; + $x$1 = sci_List_$colon$colon($this.$list0, $newVariables); + return oncie_Expression$TreeAcc_copy($this, $this.$data1, $x$1); }, -oncias_SemanticPatternCheck$_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); +oncie_Expression$TreeAcc_popScope = $this => { + let $x$1; + $x$1 = $this.$list0.$tail(); + return oncie_Expression$TreeAcc_copy($this, $this.$data1, $x$1); }, -oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope = ($this, $astNode, $exclude, $check) => { - let var$4, var$5; - oncias_SemanticAnalysisTooling$_$callClinit(); - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = new oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0; - var$5.$_0386 = $astNode; - var$5.$_1141 = $exclude; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5), $check.$apply4()), oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope0(oncias_SemanticAnalysisTooling$_MODULE$)); +oncie_Expression$TreeAcc_copy = ($this, $data, $list) => { + return oncie_Expression$TreeAcc__init_0($data, $list); }, -oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope$default$2 = $this => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; +oncie_Expression$TreeAcc_productPrefix = $this => { + return $rt_s(6544); }, -oncias_SemanticPatternCheck$_implicitVariable = ($this, $v, $possibleType) => { - let var$3; - var$3 = new oncias_SemanticAnalysisTooling$implicitVariable$lambda$_67_0; - var$3.$_0302 = $v; - var$3.$_1113 = $possibleType; - return var$3; +oncie_Expression$TreeAcc_productArity = $this => { + return 2; }, -oncias_SemanticPatternCheck$_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +oncie_Expression$TreeAcc_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$data1; + case 1: + return $this.$list0; + default: + } + return sr_Statics_ioobe($x$1); }, -oncias_SemanticPatternCheck$_check1 = ($this, $ctx, $pattern) => { - let var$3, var$4, var$5; - var$3 = $pattern.$patternParts(); - var$4 = new oncias_SemanticPatternCheck$$check$lambda$_44_0; - var$4.$_0723 = $ctx; - var$5 = oncias_SemanticAnalysisTooling_semanticCheckFold$($this, var$3, var$4); - var$3 = $pattern.$patternParts(); - var$4 = new oncias_SemanticPatternCheck$$check$lambda$_44_1; - var$4.$_01025 = $ctx; - var$3 = var$5.$chain(oncias_SemanticAnalysisTooling_semanticCheckFold$($this, var$3, var$4)); - var$4 = new oncias_SemanticPatternCheck$$check$lambda$_44_2; - var$4.$_0541 = $pattern; - var$4 = oncias_SemanticCheck_ifOkChain$(var$3, var$4); - var$3 = new oncias_SemanticPatternCheck$$check$lambda$_44_3; - var$3.$_01167 = $ctx; - var$3.$_1390 = $pattern; - return oncias_SemanticCheck_ifOkChain$(var$4, var$3); +oncie_Expression$TreeAcc_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticPatternCheck$_check2 = ($this, $ctx, $pattern) => { - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$((oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $pattern.$element5)).$chain(oncias_SemanticPatternCheck$_check($this, $ctx, $pattern.$element5)), oncias_SemanticPatternCheck$_ensureNoRepeatedRelationships($this, $pattern)), oncias_SemanticPatternCheck$_ensureNoRepeatedVarLengthRelationships($this, $pattern)); +oncie_Expression$TreeAcc_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticPatternCheck$_declareVariables0 = ($this, $ctx, $part) => { - let $n, var$4; - while ($part instanceof oncie_PatternPartWithSelector) { - $part = $part.$part1; - } - if ($part instanceof oncie_NamedPatternPart) { - $part = $part; - $n = oncias_SemanticPatternCheck$_declareVariables0($this, $ctx, $part.$patternPart); - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - $part = $part.$variable7; - oncius_package$_$callClinit(); - return $n.$chain(oncias_package$_liftSemanticEitherFunc(var$4, oncias_SemanticAnalysisTooling_declareVariable$($this, $part, (oncius_package$_CTPath(oncius_package$_MODULE$)).$invariant()))); - } - if (!($part instanceof oncie_PathPatternPart)) { - if (!($part instanceof oncie_ShortestPathsPatternPart)) - $rt_throw(s_MatchError__init_($part)); - return oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $part.$element2); - } - $part = $part; - $n = s_Tuple2__init_($part.$element3, $ctx); - var$4 = $n.$_20; - if ($n.$_10 instanceof oncie_NodePattern && jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, var$4)) - return oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $part.$element3); - $n = $n.$_10; - if (!($n instanceof oncie_NodePattern)) - return oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $part.$element3); - $part = $n; - oncias_OptionSemanticChecking$_$callClinit(); - $n = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return (oncias_OptionSemanticChecking$_foldSemanticCheck$extension($n, $part.$variable6, new oncias_SemanticPatternCheck$$declareVariables$lambda$_46_0)).$chain(oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $part)); +oncie_Expression$TreeAcc_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticPatternCheck$_check0 = ($this, $ctx, $part) => { - let var$3, var$4, var$5, var$6, var$7, var$8; - while (!($part instanceof oncie_PatternPartWithSelector)) { - if (!($part instanceof oncie_NamedPatternPart)) { - if ($part instanceof oncie_PathPatternPart) - return oncias_SemanticPatternCheck$_check($this, $ctx, $part.$element3); - if (!($part instanceof oncie_ShortestPathsPatternPart)) - $rt_throw(s_MatchError__init_($part)); - a: { - $part = $part; - var$3 = $part.$name11; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$3), $rt_s(6969)); - var$5 = oncias_SemanticPatternCheck$_checkContext($this, $ctx, jl_AbstractStringBuilder_toString(var$4), $part.$position10); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$6 = onciu_Foldable_folder$($part.$element2); - var$4 = new oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1; - var$4.$x5$1 = $part; - var$7 = oncias_SemanticCheck_chain$(var$5, oncias_package$_liftSemanticErrorDefs(var$3, onciu_Foldable$Folder_treeCollect(var$6, var$4))); - var$3 = $part.$element2; - if (var$3 instanceof oncie_RelationshipChain) { - var$3 = var$3; - var$6 = var$3.$relationship1; - if (var$3.$element4 instanceof oncie_NodePattern && var$3.$rightNode0 !== null) { - var$3 = oncias_package$_MODULE$; - var$6 = var$6.$properties4; - var$4 = new oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_95_0; - var$4.$_0467 = $part; - var$3 = oncias_package$_liftSemanticErrorDefOption(var$3, s_Option_map(var$6, var$4)); - break a; - } - } - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - var$5 = $part.$name11; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$5), $rt_s(6970)); - var$3 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$6), $part.$position10)); - } - b: { - var$7 = oncias_SemanticCheck_chain$(var$7, var$3); - var$4 = s_Tuple2__init_($ctx, $part.$element2); - var$3 = var$4.$_10; - if (jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, var$3)) - var$3 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - else { - var$3 = var$4.$_20; - if (var$3 instanceof oncie_RelationshipChain) { - var$4 = var$3; - var$3 = var$4.$element4; - var$4 = var$4.$rightNode0; - if (var$3 instanceof oncie_NodePattern) { - var$3 = var$3; - if (var$4 !== null) { - if (s_Option_isEmpty(var$3.$variable6)) { - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - var$8 = $part.$name11; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6971)), var$8), $rt_s(6972)); - var$3 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$6), $part.$position10)); - break b; - } - if (!s_Option_isEmpty(var$4.$variable6)) { - var$3 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - break b; - } - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - var$8 = $part.$name11; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6971)), var$8), $rt_s(6972)); - var$3 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$6), $part.$position10)); - break b; - } - } +oncie_Expression$TreeAcc_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + c: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_Expression$TreeAcc) ? 0 : 1)) + break b; + $x$1 = $x$1; + if (!sr_BoxesRunTime_equals($this.$data1, $x$1.$data1)) + break b; + var$2 = $this.$list0; + $x$1 = $x$1.$list0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, $x$1)) + break b; + else + break c; } - var$3 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + if ($x$1 !== null) + break b; } } - var$6 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$7, var$3), oncias_SemanticPatternCheck$_checkLength$1($this, $part)); - var$3 = oncias_package$_MODULE$; - var$4 = new oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_100_0; - var$4.$_01147 = $part; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$6, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4)), oncias_SemanticPatternCheck$_check($this, $ctx, $part.$element2)); - } - $part = $part.$patternPart; - } - $part = $part; - var$3 = $part.$selector1; - if (!$rt_isInstance(var$3, oncie_PatternPart$CountedSelector)) { - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$3 = var$3; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, var$3.$count0()); + var$3 = 1; + break a; + } + var$3 = 0; } - var$4 = new oncias_SemanticPatternCheck$$check$lambda$_47_0; - var$4.$_0244 = $part; - var$4.$_194 = $ctx; - return var$3.$ifOkChain(var$4); + return var$3; }, -oncias_SemanticPatternCheck$_checkContext = ($this, $ctx, $name, $pos) => { - let var$4, var$5, var$6; - if (!(jl_Object_equals(oncie_Pattern$SemanticContext$Merge$_MODULE$, $ctx) ? 1 : !jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, $ctx) ? 0 : 1)) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$5 = oncias_SemanticError$_MODULE$; - $ctx = $ctx.$description(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $name), $rt_s(6973)), $ctx), $rt_s(6974)); - return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(var$5, jl_AbstractStringBuilder_toString(var$6), $pos)); +oncie_Expression$TreeAcc__init_ = ($this, $data, $list) => { + $this.$data1 = $data; + $this.$list0 = $list; }, -oncias_SemanticPatternCheck$_stringifier = $this => { - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticPatternCheck$_stringifier0; +oncie_Expression$TreeAcc__init_0 = (var_0, var_1) => { + let var_2 = new oncie_Expression$TreeAcc(); + oncie_Expression$TreeAcc__init_(var_2, var_0, var_1); + return var_2; }, -oncias_SemanticPatternCheck$_check = ($this, $ctx, $element) => { - let var$3, $variable, $factors, $pattern, $quantifier, $patternPart, $where, var$10, var$11, var$12, var$13; +oncie_Expression$TreeAcc$ = $rt_classWithoutFields(), +oncie_Expression$TreeAcc$_MODULE$ = null, +oncie_Expression$TreeAcc$__clinit_ = () => { + oncie_Expression$TreeAcc$_MODULE$ = new oncie_Expression$TreeAcc$; +}, +oncie_Expression$TreeAcc$_apply$default$2 = $this => { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + return sci_Nil$_MODULE$; +}; +function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$variablesUsedForGrouping$1 = null; + a.$nonNestedPropertiesUsedForGrouping$1 = null; +} +let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4, var$5, $v; var$3 = 0; - $variable = null; - if (!($element instanceof oncie_RelationshipChain)) { - if ($element instanceof oncie_NodePattern) { - $element = $element; - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticPatternCheck$_checkNodeProperties($this, $ctx, oncie_NodePattern_properties($element)), oncias_SemanticPatternCheck$_checkLabelExpressions($this, $ctx, oncie_NodePattern_labelExpression($element))), oncias_SemanticPatternCheck$_checkDynamicLabels($this, $ctx, oncie_NodePattern_labelExpression($element))), oncias_SemanticPatternCheck$_checkPredicate($this, $ctx, $element)); - } - if ($element instanceof oncie_PathConcatenation) { - $factors = oncie_PathConcatenation_factors($element); - return (sc_AbstractIterable_reduce($factors.$map(oncias_SemanticPatternCheck$$check$lambda$_53_0__init_($ctx)), oncias_SemanticPatternCheck$$check$lambda$_53_1__init_())).$chain(oncias_SemanticPatternCheck$_checkValidJuxtaposition($this, $factors)); - } - if ($element instanceof oncie_QuantifiedPath) { - $variable = $element; - $pattern = oncie_QuantifiedPath_part($variable); - $quantifier = oncie_QuantifiedPath_quantifier($variable); - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$Leaf_chain(oncias_SemanticPatternCheck$_checkContext($this, $ctx, $rt_s(6975), $element.$position()), oncias_SemanticPatternCheck$_checkContainedPatterns$1($pattern)), oncias_SemanticPatternCheck$_checkRelCount$1($pattern, $variable)), oncias_SemanticPatternCheck$_checkQuantifier($this, $quantifier)), oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope($this, - $variable, oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope$default$2($this), oncias_SemanticPatternCheck$$check$lambda$_53_2__init_0($ctx, $pattern, $variable))); - } - if ($element instanceof oncie_ParenthesizedPath) { - var$3 = 1; - $variable = $element; - $patternPart = oncie_ParenthesizedPath_part($variable); - if ($patternPart instanceof oncie_NamedPatternPart) - return oncias_SemanticPatternCheck$_error($this, $rt_s(6976), oncie_Variable_position(oncie_NamedPatternPart_variable($patternPart))); - } - if (!var$3) - $rt_throw(s_MatchError__init_($element)); - $patternPart = oncie_ParenthesizedPath_part($variable); - $where = oncie_ParenthesizedPath_optionalWhereClause($variable); - return oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope($this, $variable, oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope$default$2($this), oncias_SemanticPatternCheck$$check$lambda$_53_3__init_0($ctx, $patternPart, $where, $variable)); + var$4 = null; + if ($rt_isInstance($x1, oncie_ScopeExpression)) { + $x1 = $x1; + $default = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0; + $default.$_0420 = $x1; + return $default; } - $element = $element; - $variable = oncias_SemanticPatternCheck$_check($this, $ctx, $element.$element4); - $factors = $element.$relationship1; - $patternPart = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_ExpressionStringifier$_failingExtender, 0, 0, 0, 0); - oncias_SemanticCheck$_$callClinit(); - $where = oncias_SemanticCheck$_MODULE$; - var$3 = s_Option_isEmpty($factors.$length3) ? 0 : 1; - a: { - $pattern = new oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_118_0; - $pattern.$_0373 = $ctx; - $pattern.$_1136 = $factors; - var$10 = oncias_SemanticCheck$_when($where, var$3, $pattern); - $where = $factors.$length3; - if ($where instanceof s_Some) { - $where = $where.$value5; - if ($where instanceof s_Some) { - $where = $where.$value5; - if ($where !== null) { - $pattern = $where.$lower2; - $quantifier = $where.$upper2; - oncias_SemanticExpressionCheck$_$callClinit(); - $where = (oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, $pattern)).$chain(oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, $quantifier)); - break a; - } + if ($x1 !== null) { + oncie_IsAggregate$_$callClinit(); + if (!s_Option_isEmpty(oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x1))) + return new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1; + } + if ($x1 instanceof oncie_LogicalVariable) { + var$5 = $x1; + if (!$this.$variablesUsedForGrouping$1.$contains(var$5)) { + onciu_AnonymousVariableNameGenerator$_$callClinit(); + if (onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, var$5.$name4)) { + $x1 = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2; + $x1.$_0245 = var$5; + return $x1; } } - $where = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - $where = var$10.$chain($where); - var$11 = $factors.$variable5; - var$12 = $factors.$labelExpression6; - var$13 = $factors.$length3; - var$10 = $factors.$properties4; - $quantifier = $factors.$predicate1; - if (jl_Object_equals(s_None$_MODULE$, var$13) && jl_Object_equals(s_None$_MODULE$, var$10) && jl_Object_equals(s_None$_MODULE$, $quantifier) && !s_Option_exists(var$11, new oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_0) && s_Option_forall(var$12, new oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_1)) - $pattern = s_None$_MODULE$; - else { - $pattern = $factors.$labelExpression6; - $pattern = !($pattern instanceof s_Some) ? s_None$_MODULE$ : s_Some__init_($pattern.$value5); + if ($x1 instanceof oncie_LogicalProperty) { + var$3 = 1; + var$4 = $x1; + if ($this.$nonNestedPropertiesUsedForGrouping$1.$contains(var$4)) + return new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3; } - b: { - $quantifier = s_Option_flatMap($pattern, new oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_2); - oncias_OptionSemanticChecking$_$callClinit(); - var$10 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$13 = new oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_3; - var$13.$_053 = $patternPart; - var$13.$_123 = $pattern; - var$10 = oncias_SemanticCheck_chain$($where, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$10, $quantifier, var$13)); - $where = $factors.$labelExpression6; - $pattern = $factors.$length3; - if ($where instanceof s_Some) { - $quantifier = $where.$value5; - if ($pattern instanceof s_Some && $quantifier.$containsGpmSpecificRelTypeExpression()) { - $where = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - $where = oncias_SemanticAnalysisTooling_error$($this, sc_StringOps$_stripMargin$extension($where, $rt_s(6977)), $quantifier.$position()); - break b; + if (var$3) { + $v = oncie_LogicalProperty$_unapply(oncie_LogicalProperty$_MODULE$, var$4); + if (!s_Option_isEmpty($v)) { + $v = $v.$value5.$_1(); + if ($v instanceof oncie_LogicalVariable) { + $x1 = $v; + $default = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4; + $default.$_0213 = $this; + $default.$_181 = $x1; + $default.$_231 = var$4; + return $default; } } - $where = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - $quantifier = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$10, $where), oncias_checkNoParamMapsWhenMatching$_apply(oncias_checkNoParamMapsWhenMatching$_MODULE$, $factors.$properties4, $ctx)); + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}, +oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !oncia_SubqueryCall$_isTransactionalSubquery(oncia_SubqueryCall$_MODULE$, $x) ? s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x) : jl_Boolean_valueOf(1); +}; +function onih_Strings$codePoints$lambda$_5_0() { + jl_Object.call(this); + this.$_01170 = null; +} +let jus_StreamSupport = $rt_classWithoutFields(), +onih_Strings$codePoints$lambda$_5_1 = $rt_classWithoutFields(), +onih_Strings$codePoints$lambda$_5_1_applyAsInt = (var$0, var$1) => { + return var$1.$value4; +}, +oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0_apply = (var$0, var$1, var$2) => { + let var$3; oncias_SemanticExpressionCheck$_$callClinit(); - $pattern = oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, $factors.$properties4); - oncius_package$_$callClinit(); - return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($variable.$chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck_chain$($quantifier, $pattern.$chain(oncias_SemanticAnalysisTooling_expectType$2($this, oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)), $factors.$properties4))), oncias_checkValidPropertyKeyNamesInPattern$_apply(oncias_checkValidPropertyKeyNamesInPattern$_MODULE$, - oncie_RelationshipPattern_properties($factors))), oncias_SemanticPatternCheck$_checkLabelExpressions$1($ctx, oncie_RelationshipPattern_labelExpression($factors), $patternPart)), oncias_SemanticPatternCheck$_checkPredicate$1($ctx, $factors)), oncias_SemanticPatternCheck$_checkNotUndirectedWhenCreating$1($this, $ctx, $factors))), oncias_SemanticPatternCheck$_checkDynamicLabels($this, $ctx, oncie_RelationshipPattern_labelExpression(oncie_RelationshipChain_relationship($element)))), oncias_SemanticPatternCheck$_check($this, - $ctx, oncie_RelationshipChain_rightNode($element))); + var$1 = new jl_UnsupportedOperationException; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6545)), var$2); + jl_Throwable__init_(var$1, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$1); +}; +function oncias_SemanticExpressionCheck$$check$lambda$_53_0() { + let a = this; jl_Object.call(a); + a.$_0550 = null; + a.$_1184 = null; +} +let oncias_SemanticExpressionCheck$$check$lambda$_53_0_apply = var$0 => { + return oncias_SemanticExpressionCheck$_$anonfun$check$1(var$0.$_0550, var$0.$_1184); +}; +function oncias_SemanticExpressionCheck$$check$lambda$_58_0() { + jl_Object.call(this); + this.$_0287 = null; +} +let oncias_SemanticExpressionCheck$$check$lambda$_58_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0287; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, var$2, var$1); +}; +function jlr_Field() { + let a = this; jlr_AccessibleObject.call(a); + a.$declaringClass0 = null; + a.$name43 = null; + a.$modifiers = 0; + a.$accessLevel0 = 0; + a.$type6 = null; + a.$getter = null; + a.$setter = null; +} +let jlr_Field_toString = $this => { + let $sb; + $sb = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($sb); + jl_AbstractStringBuilder_append($sb, jlr_Modifier_toString(otcir_Flags_getModifiers($this.$modifiers, $this.$accessLevel0))); + if ($sb.$length1 > 0) + jl_AbstractStringBuilder_append0($sb, 32); + jl_AbstractStringBuilder_append($sb, jl_Class_getName($this.$type6)); + jl_AbstractStringBuilder_append0($sb, 32); + jl_AbstractStringBuilder_append($sb, jl_Class_getName($this.$declaringClass0)); + jl_AbstractStringBuilder_append($sb, $rt_s(389)); + jl_AbstractStringBuilder_append($sb, $this.$name43); + return jl_AbstractStringBuilder_toString($sb); }, -oncias_SemanticPatternCheck$_getTypeString = ($this, $factor) => { - if ($factor instanceof oncie_ParenthesizedPath) - return $rt_s(6978); - if ($factor instanceof oncie_QuantifiedPath) - return $rt_s(6979); - if ($factor instanceof oncie_RelationshipChain) - return $rt_s(6980); - if ($factor instanceof oncie_NodePattern) - return $rt_s(6981); - $rt_throw(s_MatchError__init_($factor)); +onciu_RewritableJavascript$PROXY$9_118 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_118_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticPatternCheck$_checkValidJuxtaposition = ($this, $factors) => { - return (sc_Iterator_map$(sc_AbstractIterable_sliding($factors, 2), new oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_0)).$reduceLeft(new oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_1); +onciu_RewritableJavascript$PROXY$9_119 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_119_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticPatternCheck$_checkQuantifier = ($this, $quantifier) => { - let var$2, var$3, var$4; - if ($quantifier instanceof oncie_FixedQuantifier) { - var$2 = $quantifier.$value17; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, var$2); - } else if (!($quantifier instanceof oncie_IntervalQuantifier)) { - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$3 = $quantifier; - var$2 = var$3.$lower1; - var$4 = var$3.$upper1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = (oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, var$2)).$chain(oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, var$4)); - } - var$2 = new oncias_SemanticPatternCheck$$checkQuantifier$lambda$_56_0; - var$2.$_0841 = $quantifier; - return var$3.$ifOkChain(var$2); +onciu_RewritableJavascript$PROXY$9_120 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_120_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -oncias_SemanticPatternCheck$_legacyRelationshipDisjunctionError = ($this, $sanitizedLabelExpression, $containsIs, $isNode) => { - let $isOrColon, var$5, var$6; - $isOrColon = !$containsIs ? $rt_s(91) : $rt_s(443); - if (!$isNode) { - var$5 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6982)), $isOrColon), $sanitizedLabelExpression), $rt_s(985)); - return sc_StringOps$_stripMargin$extension(var$5, jl_AbstractStringBuilder_toString(var$6)); - } - var$5 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6983)), $isOrColon), $sanitizedLabelExpression), $rt_s(6984)); - return sc_StringOps$_stripMargin$extension(var$5, jl_AbstractStringBuilder_toString(var$6)); +onciu_RewritableJavascript$PROXY$9_121 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_121_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticPatternCheck$_declareVariables = ($this, $ctx, $element) => { - let $normalized, $factors, $entityBindings, $pattern, $pattern_0; - if ($element instanceof oncie_RelationshipChain) { - $element = $element; - $normalized = oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $element.$element4); - $factors = $element.$relationship1; - oncias_OptionSemanticChecking$_$callClinit(); - $entityBindings = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - $pattern = $factors.$variable5; - $pattern_0 = new oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0; - $pattern_0.$_0973 = $factors; - $pattern_0.$_1337 = $ctx; - return oncias_SemanticCheck_chain$($normalized.$chain(oncias_OptionSemanticChecking$_foldSemanticCheck$extension($entityBindings, $pattern, $pattern_0)), oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $element.$rightNode0)); - } - if ($element instanceof oncie_NodePattern) { - $element = $element; - oncias_OptionSemanticChecking$_$callClinit(); - $normalized = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - $entityBindings = $element.$variable6; - $element = new oncias_SemanticPatternCheck$$declareVariables$lambda$_62_0; - $element.$_0413 = $ctx; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension($normalized, $entityBindings, $element); - } - if ($element instanceof oncie_PathConcatenation) { - $factors = $element.$factors0; - $element = new oncias_SemanticPatternCheck$$declareVariables$lambda$_62_1; - $element.$_0177 = $ctx; - return ($factors.$map($element)).$reduceLeft(new oncias_SemanticPatternCheck$$declareVariables$lambda$_62_2); - } - if ($element instanceof oncie_QuantifiedPath) { - $element = $element; - $pattern_0 = $element.$part2; - $entityBindings = $element.$variableGroupings; - $normalized = new oncias_SemanticPatternCheck$$declareVariables$lambda$_62_3; - $normalized.$_056 = $ctx; - $normalized.$_125 = $pattern_0; - $normalized.$_213 = $entityBindings; - $normalized.$_37 = $element; - $normalized = oncias_SemanticAnalysisTooling_withScopedState$($this, $normalized); - oncias_IterableOnceSemanticChecking$_$callClinit(); - $ctx = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$($normalized, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension($ctx, $entityBindings, new oncias_SemanticPatternCheck$$declareVariables$lambda$_62_4)); - } - if (!($element instanceof oncie_ParenthesizedPath)) - $rt_throw(s_MatchError__init_($element)); - $element = $element; - $pattern = $element.$part0; - $normalized = oncias_SemanticPatternCheck$_normalizeParenthesizedPath($this, $element); - if (!($pattern instanceof oncie_NamedPatternPart)) { - oncias_SemanticCheck$_$callClinit(); - $element = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - $element = $pattern; - oncias_package$_$callClinit(); - $entityBindings = oncias_package$_MODULE$; - $pattern_0 = $element.$variable7; - oncius_package$_$callClinit(); - $element = oncias_package$_liftSemanticEitherFunc($entityBindings, oncias_SemanticAnalysisTooling_declareVariable$($this, $pattern_0, (oncius_package$_CTPath(oncius_package$_MODULE$)).$invariant())); - } - $entityBindings = new oncias_SemanticPatternCheck$$declareVariables$lambda$_62_5; - $entityBindings.$_079 = $normalized; - $entityBindings.$_133 = $ctx; - $entityBindings.$_217 = $pattern; - $entityBindings = oncias_SemanticCheck_chain$($element, oncias_SemanticAnalysisTooling_withScopedState$($this, $entityBindings)); - oncias_package$_$callClinit(); - $ctx = oncias_package$_MODULE$; - $element = new oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_73_0; - $element.$_01160 = $normalized; - return oncias_SemanticCheck_chain$($entityBindings, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($ctx, $element)); +onciu_RewritableJavascript$PROXY$9_122 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_122_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticPatternCheck$_ensureNoReferencesOutFromPatternElement = ($this, $pattern, $patternElement, $dependencies, $patternElementErrorMessageDescription) => { - let var$5, var$6; - oncias_package$_$callClinit(); - var$5 = oncias_package$_MODULE$; - var$6 = new oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_69_0; - var$6.$_0902 = $pattern; - var$6.$_1313 = $dependencies; - var$6.$_2103 = $patternElement; - var$6.$_326 = $patternElementErrorMessageDescription; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$5, var$6); +onciu_RewritableJavascript$PROXY$9_123 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_123_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticPatternCheck$_ensureNoRepeatedRelationships = ($this, $astNode) => { - let var$2, var$3, var$4; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_findRepeatedRelationships($this, $astNode, 0); - var$4 = new oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_70_0; - var$4.$_0933 = $astNode; - return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4); +onciu_RewritableJavascript$PROXY$9_124 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_124_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticPatternCheck$_ensureNoRepeatedVarLengthRelationships = ($this, $astNode) => { - let var$2, var$3, var$4; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_findRepeatedRelationships($this, $astNode, 1); - var$4 = new oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_71_0; - var$4.$_0509 = $astNode; - return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4); +onciu_RewritableJavascript$PROXY$9_125 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_125_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticPatternCheck$_extractPattern = ($this, $astNode) => { - let $patternStringifier, $expressionStringifier, $pattern; - $patternStringifier = onciap_ExpressionStringifier$_failingExtender; - $expressionStringifier = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, $patternStringifier, 0, 0, 1, 0); - onciap_PatternStringifier$_$callClinit(); - $patternStringifier = onciap_PatternStringifier$_apply(onciap_PatternStringifier$_MODULE$, $expressionStringifier); - if ($rt_isInstance($astNode, oncie_Pattern)) - $pattern = onciap_DefaultPatternStringifier_apply1($patternStringifier, $astNode); - else { - if (!($astNode instanceof oncie_RelationshipsPattern)) { - $expressionStringifier = new jl_IllegalArgumentException; - $astNode = jl_Object_getClass($astNode); - $patternStringifier = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($patternStringifier); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($patternStringifier, $rt_s(6985)), $astNode), 46); - jl_Throwable__init_0($expressionStringifier, jl_AbstractStringBuilder_toString($patternStringifier)); - $rt_throw($expressionStringifier); - } - $pattern = onciap_DefaultPatternStringifier_apply2($patternStringifier, $astNode.$element5); - } - return $pattern; +onciu_RewritableJavascript$PROXY$9_126 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_126_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticPatternCheck$_findRepeatedRelationships = ($this, $treeNode, $varLength) => { - let $relVariables, $repetitions; - $relVariables = $treeNode.$folder(); - s_Predef$_$callClinit(); - $treeNode = sci_AbstractMap_withDefaultValue(sci_Map$_from(s_Predef$_Map(s_Predef$_MODULE$), sci_Nil$_MODULE$), sci_Nil$_MODULE$); - $repetitions = new oncias_SemanticPatternCheck$$anonfun$2; - $repetitions.$varLength$1 = $varLength; - return ((sc_AbstractIterable_filter(sc_AbstractMap_values(onciu_Foldable$Folder_fold($relVariables, $treeNode, $repetitions)), new oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_0)).$map(new oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_1)).$toSeq(); +onciu_RewritableJavascript$PROXY$11_118 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_118_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_checkNodeProperties = ($this, $ctx, $properties) => { - let var$3; - var$3 = oncias_SemanticCheck_chain$(oncias_checkNoParamMapsWhenMatching$_apply(oncias_checkNoParamMapsWhenMatching$_MODULE$, $properties, $ctx), oncias_checkValidPropertyKeyNamesInPattern$_apply(oncias_checkValidPropertyKeyNamesInPattern$_MODULE$, $properties)); - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(var$3, oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, $properties)); - oncius_package$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_expectType$2($this, oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)), $properties)); +onciu_RewritableJavascript$PROXY$11_119 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_119_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_checkPredicate = ($this, $ctx, $pattern) => { - let var$3, var$4; - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = $pattern.$predicate2; - $pattern = new oncias_SemanticPatternCheck$$checkPredicate$lambda$_75_0; - $pattern.$_0121 = $ctx; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, $pattern); +onciu_RewritableJavascript$PROXY$11_120 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_120_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_checkLabelExpressions = ($this, $ctx, $labelExpression) => { - let var$3, var$4; - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = new oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_76_0; - var$4.$_01151 = $ctx; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, $labelExpression, var$4); +onciu_RewritableJavascript$PROXY$11_121 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_121_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_checkDynamicLabels = ($this, $ctx, $labelExpression) => { - let var$3, var$4; - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = new oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_77_0; - var$4.$_01019 = $ctx; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, $labelExpression, var$4); +onciu_RewritableJavascript$PROXY$11_122 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_122_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_checkValidPropertyKeyNamesInReturnItems = ($this, $returnItems) => { - $returnItems = $returnItems.$items0.$collect(new oncias_SemanticPatternCheck$$anonfun$3); - s_Predef$_$callClinit(); - return oncias_SemanticPatternCheck$_checkValidPropertyKeyNames($this, $returnItems.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$))); +onciu_RewritableJavascript$PROXY$11_123 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_123_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_checkValidPropertyKeyNames = ($this, $propertyKeys) => { - let $error; - $error = $propertyKeys.$collectFirst(new oncias_SemanticPatternCheck$$anonfun$4); - if (!s_Option_isDefined($error)) { - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } - oncias_package$_$callClinit(); - $propertyKeys = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef($propertyKeys, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, ($error.$get1()).$_1(), ($error.$get1()).$_2())); +onciu_RewritableJavascript$PROXY$11_124 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_124_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_checkValidLabels = ($this, $labelNames, $pos) => { - let var$3, var$4; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - $labelNames = (sc_AbstractIterable_flatMap($labelNames.$view1(), new oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_0)).$headOption(); - var$4 = new oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_1; - var$4.$_086 = $pos; - return oncias_package$_liftSemanticErrorDefOption(var$3, s_Option_map($labelNames, var$4)); +onciu_RewritableJavascript$PROXY$11_125 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_125_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_checkValidDynamicLabels = ($this, $labelNames, $pos) => { - let var$3, var$4; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - $labelNames = (sc_AbstractIterable_flatMap($labelNames.$view1(), new oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_0)).$headOption(); - var$4 = new oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_1; - var$4.$_0422 = $pos; - return oncias_package$_liftSemanticErrorDefOption(var$3, s_Option_map($labelNames, var$4)); +onciu_RewritableJavascript$PROXY$11_126 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_126_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName = ($this, $name) => { - let var$2, var$3, var$4; - if ($name !== null && !jl_String_isEmpty($name) && !jl_String_contains($name, $rt_s(6986))) - return s_None$_MODULE$; - var$2 = new s_Some; - var$3 = $rt_createArray(jl_Object, 1); - if ($name === null) - $name = $rt_s(133); - else { - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(var$4, 39); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, $name), 39); - $name = jl_AbstractStringBuilder_toString(var$4); - } - var$3.data[0] = $name; - s_Some__init_0(var$2, jl_String_format($rt_s(6987), var$3)); - return var$2; +onciu_RewritableJavascript$PROXY$7_574 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_574_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_StringLiteral_copy(var$2, var$3[0], var$3[1]); }, -oncias_SemanticPatternCheck$_normalizeParenthesizedPath = ($this, $ppp) => { - let var$2, $optionalWhereClause; - if ($ppp !== null) { - var$2 = $ppp.$part0; - $optionalWhereClause = $ppp.$optionalWhereClause0; - if (var$2 instanceof oncie_NamedPatternPart) - return oncie_ParenthesizedPath__init_(var$2.$patternPart, $optionalWhereClause, $ppp.$position33); - } - return $ppp; +onciu_RewritableJavascript$PROXY$7_575 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_575_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_SignedDecimalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); }, -oncias_SemanticPatternCheck$_checkLength$1 = ($this, $x5$1) => { - let $rel, var$3, $expressionStringifier, $min, $pattern; - $rel = $x5$1.$element2; - if (!($rel instanceof oncie_RelationshipChain)) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - $rel = $rel.$relationship1; - var$3 = 0; - $expressionStringifier = null; - $rel = $rel.$length3; - if ($rel instanceof s_Some) { - var$3 = 1; - $expressionStringifier = $rel; - $rel = $expressionStringifier.$value5; - if ($rel instanceof s_Some) { - $rel = $rel.$value5; - if ($rel !== null) { - $rel = $rel.$lower2; - if ($rel instanceof s_Some) { - $min = $rel.$value5; - s_Predef$_$callClinit(); - if (!(Long_ge(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value($min)), Long_ZERO) && Long_le(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value($min)), Long_fromInt(1)))) { - $rel = $x5$1.$name11; - $x5$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($x5$1); - jl_StringBuilder_append(jl_StringBuilder_append($x5$1, $rel), $rt_s(6988)); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString($x5$1), $min.$position22); - } - } - } - } - } - if (var$3) { - $rel = $expressionStringifier.$value5; - if (jl_Object_equals(s_None$_MODULE$, $rel)) { - $expressionStringifier = onciap_ExpressionStringifier$_failingExtender; - $expressionStringifier = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, $expressionStringifier, 0, 0, 1, 0); - onciap_PatternStringifier$_$callClinit(); - $pattern = onciap_DefaultPatternStringifier_apply0(onciap_PatternStringifier$_apply(onciap_PatternStringifier$_MODULE$, $expressionStringifier), $x5$1.$element2); - $rel = new onciu_UnboundedShortestPathNotification; - $rel.$position55 = $x5$1.$element2.$position(); - $rel.$pattern16 = $pattern; - return oncias_SemanticAnalysisTooling_warn$($this, $rel); - } - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +onciu_RewritableJavascript$PROXY$7_577 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_577_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowConstraintsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6], var$3[7]); }, -oncias_SemanticPatternCheck$_checkContainedPatterns$1 = $pattern$2 => { - let var$2; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = onciu_Foldable_folder$($pattern$2); - oncias_SemanticCheck$_$callClinit(); - return onciu_Foldable$Folder_treeFold(var$2, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$), new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1); +onciu_RewritableJavascript$PROXY$7_578 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_578_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_DecimalDoubleLiteral_copy(var$2, var$3[0], var$3[1]); }, -oncias_SemanticPatternCheck$_checkRelCount$1 = ($pattern$2, $x5$2) => { - let var$3, var$4, var$5, var$6; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = onciu_Foldable_folder$($pattern$2); - sr_ClassTag$_$callClinit(); - var$5 = s_Option_isEmpty(onciu_Foldable$Folder_treeFindByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_RelationshipPattern)))); - var$6 = new oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_107_0; - var$6.$_0117 = $x5$2; - var$6.$_145 = $pattern$2; - return oncias_SemanticCheck$_when(var$3, var$5, var$6); +onciu_RewritableJavascript$PROXY$7_579 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_579_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_SignedOctalIntegerLiteral_copy(var$2, var$3[0], var$3[1]); }, -oncias_SemanticPatternCheck$_$anonfun$checkValidJuxtaposition$1 = $x0$1 => { - let $a, $b, $aString, $aTypeString, $bString, $bTypeString, $inThisCase; - oncias_SemanticPatternCheck$_$callClinit(); - if ($x0$1 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x0$1); - if (!$x0$1.$lengthCompare(2) && $x0$1.$apply1(1) instanceof oncie_QuantifiedPath) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - } - if ($x0$1 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x0$1); - if (!$x0$1.$lengthCompare(2) && $x0$1.$apply1(0) instanceof oncie_QuantifiedPath) { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - } - if ($x0$1 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x0$1); - if (!$x0$1.$lengthCompare(2)) { - a: { - b: { - c: { - $a = $x0$1.$apply1(0); - $b = $x0$1.$apply1(1); - $aString = onciap_DefaultPatternStringifier_apply0((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, $a); - $aTypeString = oncias_SemanticPatternCheck$_getTypeString(oncias_SemanticPatternCheck$_MODULE$, $a); - $bString = onciap_DefaultPatternStringifier_apply0((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, $b); - $bTypeString = oncias_SemanticPatternCheck$_getTypeString(oncias_SemanticPatternCheck$_MODULE$, $b); - if ($aTypeString !== null) { - if (!jl_String_equals($aTypeString, $bTypeString)) - break b; - else - break c; - } - if ($bTypeString !== null) - break b; - } - $x0$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($x0$1); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($x0$1, $rt_s(6989)), $aString), $rt_s(119)), $bString), $rt_s(6990)), $aTypeString), $rt_s(6991)); - $inThisCase = jl_AbstractStringBuilder_toString($x0$1); - break a; - } - $x0$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($x0$1); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($x0$1, $rt_s(6992)), $aString), $rt_s(6993)), $aTypeString), $rt_s(119)), $bString), $rt_s(6993)), $bTypeString), 46); - $inThisCase = jl_AbstractStringBuilder_toString($x0$1); - } - $x0$1 = oncias_SemanticPatternCheck$_MODULE$; - $a = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - $aString = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($aString); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($aString, $rt_s(6994)), $inThisCase), $rt_s(6995)); - return oncias_SemanticAnalysisTooling_error$($x0$1, sc_StringOps$_stripMargin$extension($a, jl_AbstractStringBuilder_toString($aString)), $b.$position()); - } - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); -}; -let oncias_SemanticPatternCheck$_checkNotUndirectedWhenCreating$1 = ($this, $ctx$4, $x$23) => { - let var$3, var$4, var$5; - var$3 = jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, $ctx$4) ? 1 : !jl_Object_equals(oncie_Pattern$SemanticContext$Insert$_MODULE$, $ctx$4) ? 0 : 1; - a: { - b: { - if (var$3) { - var$4 = $x$23.$direction0; - var$5 = oncie_SemanticDirection$BOTH$_MODULE$; - if (var$4 !== null) { - if (!jl_Object_equals(var$4, var$5)) - break b; - else - break a; - } - if (var$5 === null) - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - oncie_Pattern$SemanticContext$_$callClinit(); - $ctx$4 = oncie_Pattern$SemanticContext$_name(oncie_Pattern$SemanticContext$_MODULE$, $ctx$4); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6996)), $ctx$4); - return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$5), $x$23.$position8); +onciu_RewritableJavascript$PROXY$7_580 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_580_copyConstructor = (var$1, var$2, var$3) => { + return oncie_Infinity_copy(var$2, var$3.data[0]); }, -oncias_SemanticPatternCheck$_checkLabelExpressions$1 = ($ctx, $labelExpression, $stringifier$1) => { - let var$4, var$5; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_OptionSemanticChecking$_$callClinit(); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$5 = new oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_131_0; - var$5.$_0247 = $ctx; - var$5.$_196 = $stringifier$1; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, $labelExpression, var$5); +onciu_RewritableJavascript$PROXY$7_581 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_581_copyConstructor = (var$1, var$2, var$3) => { + return oncie_True_copy(var$2, var$3.data[0]); }, -oncias_SemanticPatternCheck$_checkPredicate$1 = ($ctx, $relationshipPattern) => { - let var$3, var$4, var$5; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_OptionSemanticChecking$_$callClinit(); - var$3 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = $relationshipPattern.$predicate1; - var$5 = new oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_137_0; - var$5.$_0136 = $ctx; - var$5.$_152 = $relationshipPattern; - return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, var$5); +onciu_RewritableJavascript$PROXY$7_582 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_582_copyConstructor = (var$1, var$2, var$3) => { + return oncie_NaN_copy(var$2, var$3.data[0]); }, -oncie_Pattern$SemanticContext = $rt_classWithoutFields(0), -oncie_Pattern$SemanticContext_name$ = $$this => { - oncie_Pattern$SemanticContext$_$callClinit(); - return oncie_Pattern$SemanticContext$_name(oncie_Pattern$SemanticContext$_MODULE$, $$this); +onciu_RewritableJavascript$PROXY$7_584 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_584_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_SignedHexIntegerLiteral_copy(var$2, var$3[0], var$3[1]); }, -oncie_Pattern$SemanticContext_description$ = $$this => { - oncie_Pattern$SemanticContext$_$callClinit(); - if (jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, $$this)) - $$this = $rt_s(6997); - else if (jl_Object_equals(oncie_Pattern$SemanticContext$Merge$_MODULE$, $$this)) - $$this = $rt_s(6998); - else if (jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, $$this)) - $$this = $rt_s(6999); - else if (jl_Object_equals(oncie_Pattern$SemanticContext$Insert$_MODULE$, $$this)) - $$this = $rt_s(7000); - else { - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - if (!jl_Object_equals(oncie_Pattern$SemanticContext$Expression$_MODULE$, $$this)) - $rt_throw(s_MatchError__init_($$this)); - $$this = $rt_s(4442); - } - return $$this; +onciu_RewritableJavascript$PROXY$7_591 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_591_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowIndexesClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6], var$3[7]); }, -oncie_Pattern$SemanticContext$Expression$ = $rt_classWithoutFields(), -oncie_Pattern$SemanticContext$Expression$_MODULE$ = null, -oncie_Pattern$SemanticContext$Expression$_$callClinit = () => { - oncie_Pattern$SemanticContext$Expression$_$callClinit = $rt_eraseClinit(oncie_Pattern$SemanticContext$Expression$); - oncie_Pattern$SemanticContext$Expression$__clinit_(); +onciu_RewritableJavascript$PROXY$7_593 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_593_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_NativeAuth__init_(var$3[0], var$3[1]); }, -oncie_Pattern$SemanticContext$Expression$__clinit_ = () => { - let var$1; - var$1 = new oncie_Pattern$SemanticContext$Expression$; - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - oncie_Pattern$SemanticContext$Expression$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$7_599 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_599_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowTransactionsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6], var$3[7]); }, -oncie_Pattern$SemanticContext$Expression$_name = $this => { - return oncie_Pattern$SemanticContext_name$($this); +onciu_RewritableJavascript$PROXY$7_625 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_625_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpression$Disjunctions_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -oncie_Pattern$SemanticContext$Expression$_description = $this => { - return oncie_Pattern$SemanticContext_description$($this); +onciu_RewritableJavascript$PROXY$7_626 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_626_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_AutoExtractedParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncie_Pattern$SemanticContext$Expression$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$7_627 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_627_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ExternalAuth__init_(var$3[0], var$3[1], var$3[2]); }, -oncie_Pattern$SemanticContext$Expression$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$7_643 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_643_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowSettingsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6], var$3[7]); }, -oncie_Pattern$SemanticContext$Expression$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$9_127 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_127_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncie_Pattern$SemanticContext$Expression$_hashCode = $this => { - return 198012600; +onciu_RewritableJavascript$PROXY$9_128 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_128_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncie_Pattern$SemanticContext$Expression$_toString = $this => { - return $rt_s(7001); +onciu_RewritableJavascript$PROXY$9_129 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_129_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1_applyOrElse = ($this, $x1, $default) => { - if (!($x1 instanceof oncie_NodePattern)) - return s_PartialFunction$_fallback_fn; - return jl_Boolean_valueOf(s_Option_exists($x1.$labelExpression7, new oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0)); +onciu_RewritableJavascript$PROXY$9_130 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_130_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1__init_0 = $this => { - return; +onciu_RewritableJavascript$PROXY$9_131 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_131_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1(); - oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1__init_0(var_0); - return var_0; -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51() { - jl_Object.call(this); - this.$_0219 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51__init_ = (var$0, var$1) => { - var$0.$_0219 = var$1; +onciu_RewritableJavascript$PROXY$9_132 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_132_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$9_133 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_133_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51_apply = var$0 => { - let var$1; - var$1 = var$0.$_0219; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling_error$(oncias_SemanticExpressionCheck$_MODULE$, $rt_s(7002), oncie_ShortestPathExpression_position(var$1)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52() { - jl_Object.call(this); - this.$_0982 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52__init_ = (var$0, var$1) => { - var$0.$_0982 = var$1; +onciu_RewritableJavascript$PROXY$9_134 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_134_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_127 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_127_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52_apply = var$0 => { - let var$1; - var$1 = var$0.$_0982; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - if (var$1.$pattern13.$single0) - var$1 = oncius_package$_CTPath(oncius_package$_MODULE$); - else { - var$1 = oncius_package$_MODULE$; - var$1 = oncius_package$_CTList(var$1, oncius_package$_CTPath(var$1)); - } - return var$1.$invariant(); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53() { - jl_Object.call(this); - this.$_0355 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53__init_0 = (var$0, var$1) => { - var$0.$_0355 = var$1; +onciu_RewritableJavascript$PROXY$11_128 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_128_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_129 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_129_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0355; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticPatternCheck$_check2(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Match$_MODULE$, var$1.$pattern9); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$62$lambda$_126_0; - var$4.$_0769 = var$1; - var$3 = oncias_SemanticCheck_chain$(var$2, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4)); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$pattern9)); +onciu_RewritableJavascript$PROXY$11_130 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_130_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_131 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_131_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_132 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_132_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return (oncius_package$_CTList(var$1, oncius_package$_CTPath(var$1))).$invariant(); +onciu_RewritableJavascript$PROXY$11_133 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_133_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_134 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$11_134_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$7_649 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_649_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Subtract__init_0(var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +onciu_RewritableJavascript$PROXY$7_650 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_650_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Concatenate__init_0(var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$7_652 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_652_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Pow__init_0(var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$7_653 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_653_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Add__init_0(var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57() { - jl_Object.call(this); - this.$_0695 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57__init_ = (var$0, var$1) => { - var$0.$_0695 = var$1; +onciu_RewritableJavascript$PROXY$7_656 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_656_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Xor__init_0(var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$7_660 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_660_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Multiply__init_0(var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0695; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = new oncias_SemanticExpressionCheck$$$anonfun$check$67$lambda$_131_0; - var$2.$_0342 = var$1; - var$3 = oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$1.$init3); - oncias_package$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(oncias_SemanticExpressionCheck$_MODULE$, var$1.$scope7.$variable28, var$2, s_None$_MODULE$, 0)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(oncias_SemanticExpressionCheck$_MODULE$, var$1.$scope7.$accumulator0, var$3, s_None$_MODULE$, 0))); - var$4 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Simple$_$callClinit(); - return oncias_SemanticCheck_chain$(var$2, oncias_SemanticExpressionCheck$_check0(var$4, oncie_Expression$SemanticContext$Simple$_MODULE$, oncie_ReduceExpression_expression(var$1))); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_58() { - jl_Object.call(this); - this.$_0147 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_58__init_ = (var$0, var$1) => { - var$0.$_0147 = var$1; +onciu_RewritableJavascript$PROXY$7_661 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_661_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Or_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_58__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_58(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_58__init_(var_1, var_0); - return var_1; -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59() { - jl_Object.call(this); - this.$_0630 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59__init_0 = (var$0, var$1) => { - var$0.$_0630 = var$1; +onciu_RewritableJavascript$PROXY$7_662 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_662_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Modulo__init_0(var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$7_665 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_665_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ListSlice__init_0(var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0630; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncius_TypeSpec_leastUpperBounds(oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2.$init3), var$1), oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, oncie_ReduceExpression_expression(var$2)), var$1)); +onciu_RewritableJavascript$PROXY$7_666 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_666_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpressionPredicate_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$7_667 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_667_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Divide__init_0(var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$7_669 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_669_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_And_copy(var$2, var$3[0], var$3[1], var$3[2]); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61() { - jl_Object.call(this); - this.$_0274 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61__init_ = (var$0, var$1) => { - var$0.$_0274 = var$1; +onciu_RewritableJavascript$PROXY$9_135 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_135_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_135 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_135_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0274; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7003), var$1.$position171)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62() { - jl_Object.call(this); - this.$_0761 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62__init_ = (var$0, var$1) => { - var$0.$_0761 = var$1; +onciu_RewritableJavascript$PROXY$9_136 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_136_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$9_137 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_137_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0761; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - if (oncius_TypeSpec_contains0(var$1, oncius_package$_CTAny(oncius_package$_MODULE$))) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - var$4 = var$2.$idx0; - var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$74$lambda$_149_0; - var$5.$_0896 = var$1; - var$5.$_1308 = var$2; - var$1 = oncias_SemanticExpressionCheck$_typeSwitch(var$3, var$4, var$5); - } - return var$1; +onciu_RewritableJavascript$PROXY$9_138 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_138_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$9_139 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_139_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$9_140 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_140_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - return var$1.$_2(); +onciu_RewritableJavascript$PROXY$9_141 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_141_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$9_142 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_142_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$9_143 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_143_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant(); +onciu_RewritableJavascript$PROXY$9_144 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_144_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$9_145 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_145_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$9_146 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$9_146_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); +onciu_RewritableJavascript$PROXY$9_147 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_147_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_136 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_136_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_137 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_137_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant(); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67() { - jl_Object.call(this); - this.$_0579 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67__init_ = (var$0, var$1) => { - var$0.$_0579 = var$1; +onciu_RewritableJavascript$PROXY$11_138 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_138_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_139 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_139_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67_apply = var$0 => { - let var$1; - var$1 = var$0.$_0579; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1); +onciu_RewritableJavascript$PROXY$11_140 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_140_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_141 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_141_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_142 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_142_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant(); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69() { - jl_Object.call(this); - this.$_0692 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69__init_ = (var$0, var$1) => { - var$0.$_0692 = var$1; +onciu_RewritableJavascript$PROXY$11_143 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_143_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_144 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_144_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69_apply = var$0 => { - let var$1; - var$1 = var$0.$_0692; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70() { - jl_Object.call(this); - this.$_0673 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70__init_0 = (var$0, var$1) => { - var$0.$_0673 = var$1; +onciu_RewritableJavascript$PROXY$11_145 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_145_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_146 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_146_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0673; - oncias_SemanticExpressionCheck$_$callClinit(); - if (!jl_String_matches(var$1.$stringVal(), $rt_s(7004))) { - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7005), var$1.$position())); - } else { - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7006), var$1.$position())); - } - return var$1; +onciu_RewritableJavascript$PROXY$11_147 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_147_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71__init_ = var$0 => { - return; +s_Enumeration$ValueOrdering$ = $rt_classWithoutFields(), +sc_SpecificIterableFactory = $rt_classWithoutFields(0), +s_Enumeration$ValueSet$ = $rt_classWithoutFields(), +s_Enumeration$ValueSet = $rt_classWithoutFields(sci_AbstractSet), +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71__init_(var_0); - return var_0; +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72() { +function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3() { let a = this; jl_Object.call(a); - a.$_0638 = null; - a.$_1217 = null; + a.$_0861 = null; + a.$_1290 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72__init_0 = (var$0, var$1, var$2) => { - var$0.$_0638 = var$1; - var$0.$_1217 = var$2; +let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0861; + var$3 = var$0.$_1290; + var$4 = new onciu_Foldable$SkipChildren; + var$2 = var$2.$context$12; + var$5 = var$3.$position(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6546)), var$3), $rt_s(6547)), var$2), $rt_s(6548)), var$5); + onciu_Foldable$SkipChildren__init_0(var$4, var$1.$appended(jl_AbstractStringBuilder_toString(var$6))); + return var$4; }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72__init_ = (var_0, var_1) => { - let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72__init_0(var_2, var_0, var_1); - return var_2; +oncia_ShowProceduresClause$ = $rt_classWithoutFields(), +oncia_ShowProceduresClause$_MODULE$ = null, +oncia_ShowProceduresClause$_nameColumn = null, +oncia_ShowProceduresClause$_descriptionColumn = null, +oncia_ShowProceduresClause$_modeColumn = null, +oncia_ShowProceduresClause$_worksOnSystemColumn = null, +oncia_ShowProceduresClause$_signatureColumn = null, +oncia_ShowProceduresClause$_argumentDescriptionColumn = null, +oncia_ShowProceduresClause$_returnDescriptionColumn = null, +oncia_ShowProceduresClause$_adminColumn = null, +oncia_ShowProceduresClause$_rolesExecutionColumn = null, +oncia_ShowProceduresClause$_rolesBoostedExecutionColumn = null, +oncia_ShowProceduresClause$_isDeprecatedColumn = null, +oncia_ShowProceduresClause$_deprecatedByColumn = null, +oncia_ShowProceduresClause$_optionColumn = null, +oncia_ShowProceduresClause$__clinit_ = () => { + oncia_ShowProceduresClause$_MODULE$ = new oncia_ShowProceduresClause$; + oncia_ShowProceduresClause$_nameColumn = $rt_s(5567); + oncia_ShowProceduresClause$_descriptionColumn = $rt_s(5637); + oncia_ShowProceduresClause$_modeColumn = $rt_s(5586); + oncia_ShowProceduresClause$_worksOnSystemColumn = $rt_s(6549); + oncia_ShowProceduresClause$_signatureColumn = $rt_s(6550); + oncia_ShowProceduresClause$_argumentDescriptionColumn = $rt_s(6551); + oncia_ShowProceduresClause$_returnDescriptionColumn = $rt_s(6552); + oncia_ShowProceduresClause$_adminColumn = $rt_s(6553); + oncia_ShowProceduresClause$_rolesExecutionColumn = $rt_s(6554); + oncia_ShowProceduresClause$_rolesBoostedExecutionColumn = $rt_s(6555); + oncia_ShowProceduresClause$_isDeprecatedColumn = $rt_s(6438); + oncia_ShowProceduresClause$_deprecatedByColumn = $rt_s(6556); + oncia_ShowProceduresClause$_optionColumn = $rt_s(1196); +}, +oncia_ShowProceduresClause$_apply = ($this, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + let $briefCols, var$8, var$9, var$10, var$11, var$12, $verboseCols, var$14, var$15, var$16, var$17, var$18; + $briefCols = new sci_$colon$colon; + var$8 = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$9 = new sci_$colon$colon; + var$10 = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_descriptionColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$11 = new sci_$colon$colon; + var$12 = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_modeColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + $verboseCols = new sci_$colon$colon; + var$14 = new oncia_ShowAndTerminateColumn; + var$15 = oncia_ShowProceduresClause$_worksOnSystemColumn; + oncius_package$_$callClinit(); + oncia_ShowAndTerminateColumn__init_0(var$14, var$15, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + sci_$colon$colon__init_0($verboseCols, var$14, sci_Nil$_MODULE$); + sci_$colon$colon__init_0(var$11, var$12, $verboseCols); + sci_$colon$colon__init_0(var$9, var$10, var$11); + sci_$colon$colon__init_0($briefCols, var$8, var$9); + s_package$_$callClinit(); + $verboseCols = s_package$_List(s_package$_MODULE$); + var$14 = sr_ScalaRunTime$_MODULE$; + var$16 = $rt_createArray(oncia_ShowAndTerminateColumn, 9); + var$17 = var$16.data; + var$17[0] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_signatureColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$8 = new oncia_ShowAndTerminateColumn; + var$10 = oncia_ShowProceduresClause$_argumentDescriptionColumn; + var$9 = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$8, var$10, oncius_package$_CTList(var$9, oncius_package$_CTMap(var$9))); + var$17[1] = var$8; + var$18 = new oncia_ShowAndTerminateColumn; + var$10 = oncia_ShowProceduresClause$_returnDescriptionColumn; + var$8 = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$18, var$10, oncius_package$_CTList(var$8, oncius_package$_CTMap(var$8))); + var$17[2] = var$18; + var$17[3] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_adminColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + var$18 = new oncia_ShowAndTerminateColumn; + var$10 = oncia_ShowProceduresClause$_rolesExecutionColumn; + var$8 = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$18, var$10, oncius_package$_CTList(var$8, oncius_package$_CTString(var$8))); + var$17[4] = var$18; + var$18 = new oncia_ShowAndTerminateColumn; + var$10 = oncia_ShowProceduresClause$_rolesBoostedExecutionColumn; + var$8 = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$18, var$10, oncius_package$_CTList(var$8, oncius_package$_CTString(var$8))); + var$17[5] = var$18; + var$17[6] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_isDeprecatedColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + var$17[7] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_deprecatedByColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$17[8] = oncia_ShowAndTerminateColumn__init_(oncia_ShowProceduresClause$_optionColumn, oncius_package$_CTMap(oncius_package$_MODULE$)); + $verboseCols = $verboseCols.$from0(sr_ScalaRunTime$_wrapRefArray(var$14, var$16)); + return oncia_ShowProceduresClause__init_($briefCols, $briefCols.$concat($verboseCols), $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_00() { + jl_Object.call(this); + this.$_0874 = null; +} +let oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith0(var$0.$_0874, var$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0638; - var$2 = var$0.$_1217; - oncias_SemanticExpressionCheck$_$callClinit(); - if (!jl_String_matches(var$1, $rt_s(7007))) { - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7005), var$2.$position32)); - } else { - oncias_package$_$callClinit(); - var$1 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDef(var$1, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7006), var$2.$position32)); - } - return var$1; -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73() { - let a = this; jl_Object.call(a); - a.$_0278 = null; - a.$_1105 = null; +oncia_ShowFunctionsClause$ = $rt_classWithoutFields(), +oncia_ShowFunctionsClause$_MODULE$ = null, +oncia_ShowFunctionsClause$_nameColumn = null, +oncia_ShowFunctionsClause$_categoryColumn = null, +oncia_ShowFunctionsClause$_descriptionColumn = null, +oncia_ShowFunctionsClause$_signatureColumn = null, +oncia_ShowFunctionsClause$_isBuiltInColumn = null, +oncia_ShowFunctionsClause$_argumentDescriptionColumn = null, +oncia_ShowFunctionsClause$_returnDescriptionColumn = null, +oncia_ShowFunctionsClause$_aggregatingColumn = null, +oncia_ShowFunctionsClause$_rolesExecutionColumn = null, +oncia_ShowFunctionsClause$_rolesBoostedExecutionColumn = null, +oncia_ShowFunctionsClause$_isDeprecatedColumn = null, +oncia_ShowFunctionsClause$_deprecatedByColumn = null, +oncia_ShowFunctionsClause$__clinit_ = () => { + oncia_ShowFunctionsClause$_MODULE$ = new oncia_ShowFunctionsClause$; + oncia_ShowFunctionsClause$_nameColumn = $rt_s(5567); + oncia_ShowFunctionsClause$_categoryColumn = $rt_s(6557); + oncia_ShowFunctionsClause$_descriptionColumn = $rt_s(5637); + oncia_ShowFunctionsClause$_signatureColumn = $rt_s(6550); + oncia_ShowFunctionsClause$_isBuiltInColumn = $rt_s(6558); + oncia_ShowFunctionsClause$_argumentDescriptionColumn = $rt_s(6551); + oncia_ShowFunctionsClause$_returnDescriptionColumn = $rt_s(6552); + oncia_ShowFunctionsClause$_aggregatingColumn = $rt_s(6559); + oncia_ShowFunctionsClause$_rolesExecutionColumn = $rt_s(6554); + oncia_ShowFunctionsClause$_rolesBoostedExecutionColumn = $rt_s(6555); + oncia_ShowFunctionsClause$_isDeprecatedColumn = $rt_s(6438); + oncia_ShowFunctionsClause$_deprecatedByColumn = $rt_s(6556); +}, +oncia_ShowFunctionsClause$_apply = ($this, $functionType, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + let $briefCols, $verboseCols, var$10, var$11, var$12, var$13, var$14, var$15, var$16; + $briefCols = sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_nameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_categoryColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_descriptionColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), + sci_Nil$_MODULE$))); + s_package$_$callClinit(); + $verboseCols = s_package$_List(s_package$_MODULE$); + var$10 = sr_ScalaRunTime$_MODULE$; + var$11 = $rt_createArray(oncia_ShowAndTerminateColumn, 9); + var$12 = var$11.data; + var$12[0] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_signatureColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$13 = new oncia_ShowAndTerminateColumn; + var$14 = oncia_ShowFunctionsClause$_isBuiltInColumn; + oncius_package$_$callClinit(); + oncia_ShowAndTerminateColumn__init_0(var$13, var$14, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + var$12[1] = var$13; + var$15 = new oncia_ShowAndTerminateColumn; + var$16 = oncia_ShowFunctionsClause$_argumentDescriptionColumn; + var$14 = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$15, var$16, oncius_package$_CTList(var$14, oncius_package$_CTMap(var$14))); + var$12[2] = var$15; + var$12[3] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_returnDescriptionColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + var$12[4] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_aggregatingColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + var$15 = new oncia_ShowAndTerminateColumn; + var$16 = oncia_ShowFunctionsClause$_rolesExecutionColumn; + var$14 = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$15, var$16, oncius_package$_CTList(var$14, oncius_package$_CTString(var$14))); + var$12[5] = var$15; + var$15 = new oncia_ShowAndTerminateColumn; + var$16 = oncia_ShowFunctionsClause$_rolesBoostedExecutionColumn; + var$14 = oncius_package$_MODULE$; + oncia_ShowAndTerminateColumn__init_0(var$15, var$16, oncius_package$_CTList(var$14, oncius_package$_CTString(var$14))); + var$12[6] = var$15; + var$12[7] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_isDeprecatedColumn, oncius_package$_CTBoolean(oncius_package$_MODULE$)); + var$12[8] = oncia_ShowAndTerminateColumn__init_(oncia_ShowFunctionsClause$_deprecatedByColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)); + $verboseCols = $verboseCols.$from0(sr_ScalaRunTime$_wrapRefArray(var$10, var$11)); + return oncia_ShowFunctionsClause__init_($briefCols, $briefCols.$concat($verboseCols), $functionType, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_0() { + jl_Object.call(this); + this.$_0850 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73__init_0 = (var$0, var$1, var$2) => { - var$0.$_0278 = var$1; - var$0.$_1105 = var$2; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73__init_ = (var_0, var_1) => { - let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73__init_0(var_2, var_0, var_1); - return var_2; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0278; - var$2 = var$0.$_1105; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$96$lambda$_161_0; - var$4.$_0651 = var$1; - var$4.$_1223 = var$2; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74__init_0 = var$0 => { - return; +let oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith0(var$0.$_0850, var$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74__init_0(var_0); - return var_0; +oncia_TerminateTransactionsClause$ = $rt_classWithoutFields(), +oncia_TerminateTransactionsClause$_MODULE$ = null, +oncia_TerminateTransactionsClause$_transactionIdColumn = null, +oncia_TerminateTransactionsClause$_usernameColumn = null, +oncia_TerminateTransactionsClause$_messageColumn = null, +oncia_TerminateTransactionsClause$__clinit_ = () => { + oncia_TerminateTransactionsClause$_MODULE$ = new oncia_TerminateTransactionsClause$; + oncia_TerminateTransactionsClause$_transactionIdColumn = $rt_s(1238); + oncia_TerminateTransactionsClause$_usernameColumn = $rt_s(5607); + oncia_TerminateTransactionsClause$_messageColumn = $rt_s(5807); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); +oncia_TerminateTransactionsClause$_apply = ($this, $ids, $yieldItems, $yieldAll, $yieldWith, $wherePos, $position) => { + return oncia_TerminateTransactionsClause__init_(sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_TerminateTransactionsClause$_transactionIdColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_TerminateTransactionsClause$_usernameColumn, oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_$colon$colon__init_(oncia_ShowAndTerminateColumn__init_(oncia_TerminateTransactionsClause$_messageColumn, + oncia_ShowAndTerminateColumn$_apply$default$2(oncia_ShowAndTerminateColumn$_MODULE$)), sci_Nil$_MODULE$))), $ids, $yieldItems, $yieldAll, $yieldWith, $wherePos, $position); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75() { - let a = this; jl_Object.call(a); - a.$_0238 = null; - a.$_191 = null; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0() { + jl_Object.call(this); + this.$_040 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75__init_ = (var$0, var$1, var$2) => { - var$0.$_0238 = var$1; - var$0.$_191 = var$2; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75__init_0 = (var_0, var_1) => { - let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75__init_(var_2, var_0, var_1); - return var_2; +let oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0_apply0 = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith0(var$0.$_040, var$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0238; - var$2 = var$0.$_191; - oncias_SemanticExpressionCheck$_$callClinit(); - if (!jl_String_matches(var$1, $rt_s(7008))) { - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7005), var$2.$position42)); - } else { - oncias_package$_$callClinit(); - var$1 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDef(var$1, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7006), var$2.$position42)); - } - return var$1; +oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_1 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_1_apply = (var$0, var$1) => { + return var$1.$position14; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76() { - let a = this; jl_Object.call(a); - a.$_0983 = null; - a.$_1341 = null; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_0() { + jl_Object.call(this); + this.$_0311 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76__init_ = (var$0, var$1, var$2) => { - var$0.$_0983 = var$1; - var$0.$_1341 = var$2; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76__init_0 = (var_0, var_1) => { - let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76__init_(var_2, var_0, var_1); - return var_2; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0983; - var$2 = var$0.$_1341; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$100$lambda$_165_0; - var$4.$_0408 = var$1; - var$4.$_1147 = var$2; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); +let oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_0_apply0 = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith(var$0.$_0311, var$1); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78() { +function oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_00() { jl_Object.call(this); - this.$_01103 = null; + this.$_069 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78__init_0 = (var$0, var$1) => { - var$0.$_01103 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78__init_0(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_01103; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7005), var$1.$position38)); +let oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_0_apply0 = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith(var$0.$_069, var$1); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79() { +function oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_00() { jl_Object.call(this); - this.$_0581 = null; + this.$_0473 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79__init_ = (var$0, var$1) => { - var$0.$_0581 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0581; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = !isFinite((oncie_DecimalDoubleLiteral_value(var$1)).$value12) ? 1 : 0; - var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$104$lambda$_169_0; - var$4.$_0755 = var$1; - return oncias_SemanticCheck$_when(var$2, var$3, var$4); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTFloat(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTString(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84__init_ = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84__init_0 = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84__init_(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTFloat(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85__init_0(var_0); - return var_0; +let oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith(var$0.$_0473, var$1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTFloat(oncius_package$_MODULE$)).$invariant(); +oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_10 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_1_apply0 = (var$0, var$1) => { + return var$1.$position14; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86() { +function oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0() { jl_Object.call(this); - this.$_0766 = null; + this.$_0256 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86__init_0 = (var$0, var$1) => { - var$0.$_0766 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86__init_0(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0766; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = var$1.$query2.$semanticCheckInSubqueryExpressionContext(1); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = var$1.$query2.$containsUpdates(); - var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_0; - var$5.$_0204 = var$1; - var$5 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_when(var$3, var$4, var$5)); - var$2 = oncias_SemanticCheck$_MODULE$; - var$4 = var$1.$query2.$endsWithFinish(); - var$3 = new oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_1; - var$3.$_0771 = var$1; - var$6 = oncias_SemanticCheck_chain$(var$5, oncias_SemanticCheck$_when(var$2, var$4, var$3)); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - var$5 = var$1.$query2.$folder(); - sr_ClassTag$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(var$6, oncias_SemanticExpressionCheck$_checkForShadowedVariables(var$3, onciu_Foldable$Folder_findAllByClass(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SubqueryCall))))); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$query2)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +let oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(s_Option_contains(var$0.$_0256.$typeInfo, var$1.$invariant())); +}; +function jusi_LimitingIntStreamImpl() { + let a = this; jusi_SimpleIntStreamImpl.call(a); + a.$sourceStream1 = null; + a.$limit6 = 0; + a.$remaining0 = 0; +} +let jusi_LimitingIntStreamImpl_next = ($this, $consumer) => { + let var$2, var$3; + if (!$this.$remaining0) + return 0; + var$2 = $this.$sourceStream1; + var$3 = new jusi_LimitingIntStreamImpl$next$lambda$_1_0; + var$3.$_01079 = $this; + var$3.$_1366 = $consumer; + if (!jusi_MappingToIntStreamImpl_next(var$2, var$3)) + $this.$remaining0 = 0; + return $this.$remaining0 <= 0 ? 0 : 1; +}; +function jusi_SkippingIntStreamImpl() { + let a = this; jusi_SimpleIntStreamImpl.call(a); + a.$sourceStream = null; + a.$skip6 = 0; + a.$remaining1 = 0; +} +let jusi_SkippingIntStreamImpl_next = ($this, $consumer) => { + let var$2, var$3; + while (true) { + if ($this.$remaining1 <= 0) + return jusi_MappingToIntStreamImpl_next($this.$sourceStream, $consumer); + var$2 = $this.$sourceStream; + var$3 = new jusi_SkippingIntStreamImpl$next$lambda$_1_0; + var$3.$_01034 = $this; + if (jusi_MappingToIntStreamImpl_next(var$2, var$3)) + continue; + else + break; + } + return 0; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88() { +function oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_00() { jl_Object.call(this); - this.$_0984 = null; + this.$_01066 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88__init_0 = (var$0, var$1) => { - var$0.$_0984 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88__init_ = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88__init_0(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0984; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = var$1.$query3; - var$2 = var$2.$semanticCheckInSubqueryExpressionContext(var$2 instanceof oncia_UnionDistinct ? 0 : 1); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = var$1.$query3.$containsUpdates(); - var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_0; - var$5.$_0881 = var$1; - var$5 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_when(var$3, var$4, var$5)); - var$2 = oncias_SemanticCheck$_MODULE$; - var$4 = var$1.$query3.$endsWithFinish(); - var$3 = new oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_1; - var$3.$_0255 = var$1; - var$6 = oncias_SemanticCheck_chain$(var$5, oncias_SemanticCheck$_when(var$2, var$4, var$3)); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - var$5 = var$1.$query3.$folder(); - sr_ClassTag$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(var$6, oncias_SemanticExpressionCheck$_checkForShadowedVariables(var$3, onciu_Foldable$Folder_findAllByClass(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SubqueryCall))))); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$query3)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); +let oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith(var$0.$_01066, var$1); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90() { +function oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_0() { jl_Object.call(this); - this.$_0344 = null; + this.$_01058 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90__init_ = (var$0, var$1) => { - var$0.$_0344 = var$1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90__init_0 = var_0 => { - let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0344; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = var$1.$query1.$semanticCheckInSubqueryExpressionContext(0); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = var$1.$query1.$containsUpdates(); - var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_0; - var$5.$_0484 = var$1; - var$5 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_when(var$3, var$4, var$5)); - var$2 = oncias_SemanticCheck$_MODULE$; - var$4 = !(var$1.$query1.$returnVariables()).$includeExisting1 && (var$1.$query1.$returnColumns()).$length() == 1 ? 0 : 1; - var$3 = new oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_1; - var$3.$_0951 = var$1; - var$6 = oncias_SemanticCheck_chain$(var$5, oncias_SemanticCheck$_when(var$2, var$4, var$3)); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - var$5 = var$1.$query1.$folder(); - sr_ClassTag$_$callClinit(); - var$3 = oncias_SemanticCheck_chain$(var$6, oncias_SemanticExpressionCheck$_checkForShadowedVariables(var$3, onciu_Foldable$Folder_findAllByClass(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SubqueryCall))))); - oncias_SemanticState$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$query1)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91__init_0 = var$0 => { - return; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91__init_ = () => { - let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91(); - oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91__init_0(var_0); - return var_0; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +let oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith(var$0.$_01058, var$1); }; -function oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0() { +function oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_0() { jl_Object.call(this); - this.$_0828 = null; + this.$_0807 = null; } -let oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = sc_AbstractIterable_toSet(((var$0.$_0828.$returnItems()).$items0.$filter1(new oncia_OrderBy$checkIllegalOrdering$lambda$_11_0)).$map(new oncia_OrderBy$checkIllegalOrdering$lambda$_11_1)); - if (!sc_IterableOnceOps_nonEmpty$(var$2)) - var$1 = s_None$_MODULE$; - else { - var$3 = var$1.$sortItems; - var$1 = new oncia_OrderBy$checkIllegalOrdering$lambda$_11_2; - var$1.$_0959 = var$2; - var$3 = var$3.$flatMap(var$1); - if (!sc_IterableOnceOps_nonEmpty$(var$3)) - var$1 = s_None$_MODULE$; - else { - var$1 = new s_Some; - oncias_SemanticError$_$callClinit(); - var$2 = oncias_SemanticError$_MODULE$; - var$4 = sc_AbstractIterable_mkString(var$3.$map(new oncia_OrderBy$checkIllegalOrdering$lambda$_11_3), $rt_s(45)); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(7009)), var$4), $rt_s(7010)); - s_Some__init_0(var$1, oncias_SemanticError$_apply(var$2, jl_AbstractStringBuilder_toString(var$5), (var$3.$head()).$position())); - } - } - return var$1; -}, -onciu_NonEmptyList$reverse$lambda$_66_0 = $rt_classWithoutFields(), -onciu_NonEmptyList$reverse$lambda$_66_0_apply = (var$0, var$1) => { - s_Predef$_$callClinit(); - return var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith(var$0.$_0807, var$1); }; -function juca_AtomicInteger() { - let a = this; jl_Number.call(a); - a.$value34 = 0; - a.$version2 = 0; +function oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_00() { + jl_Object.call(this); + this.$_01115 = null; } -function oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0() { +let oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_0_apply0 = (var$0, var$1) => { + var$1 = var$1; + return oncipvaf_DdlShowBuilder$ShowWrapper_turnYieldToWith(var$0.$_01115, var$1); +}; +function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0() { jl_Object.call(this); - this.$_0721 = null; + this.$_0420 = null; } -let oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0_apply = (var$0, var$1) => { - return var$1.$incl(var$0.$_0721); +let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return onciu_Foldable$TraverseChildrenNewAccForSiblings__init_0(oncie_Expression$TreeAcc_pushScope(var$1, var$0.$_0420.$introducedVariables()), new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0); +}, +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); }; -function oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0() { +function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2() { jl_Object.call(this); - this.$_0449 = null; + this.$_0245 = null; } -let oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0_apply = (var$0, var$1) => { - return var$1.$incl(var$0.$_0449); +let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0245; + if (oncie_Expression$TreeAcc_inScope(var$1, var$2)) + var$3 = onciu_Foldable$SkipChildren__init_(var$1); + else { + var$3 = new onciu_Foldable$SkipChildren; + var$4 = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0; + var$4.$_0186 = var$2; + onciu_Foldable$SkipChildren__init_0(var$3, oncie_Expression$TreeAcc_mapData(var$1, var$4)); + } + return var$3; +}, +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); }; -function oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0() { +function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4() { let a = this; jl_Object.call(a); - a.$_078 = null; - a.$_132 = null; + a.$_0213 = null; + a.$_181 = null; + a.$_231 = null; } -let oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; +let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { var$1 = var$1; - var$2 = var$0.$_078; - var$3 = var$0.$_132; - if (var$1 !== null) { - var$4 = var$1.$errors0; - if (sci_List_equals(sci_Nil$_MODULE$, var$4)) + var$2 = var$0.$_0213; + var$3 = var$0.$_181; + var$4 = var$0.$_231; + if (!var$2.$variablesUsedForGrouping$1.$contains(var$3) && !oncie_Expression$TreeAcc_inScope(var$1, var$3)) { + onciu_AnonymousVariableNameGenerator$_$callClinit(); + if (onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, var$3.$name4)) { + var$2 = new onciu_Foldable$SkipChildren; + var$3 = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0; + var$3.$_0737 = var$4; + onciu_Foldable$SkipChildren__init_0(var$2, oncie_Expression$TreeAcc_mapData(var$1, var$3)); break a; + } } - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$5 = var$1.$state; - var$1 = new oncias_SemanticCheckResult; - var$6 = new sci_$colon$colon; - oncias_SemanticError$_$callClinit(); - var$7 = oncias_SemanticError$_MODULE$; - var$4 = var$2.$constraintType4.$description(); - var$8 = var$3.$description(); - var$9 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$9); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(5302)), var$4), $rt_s(5531)), var$8), $rt_s(158)); - sci_$colon$colon__init_0(var$6, oncias_SemanticError$_apply(var$7, jl_AbstractStringBuilder_toString(var$9), var$3.$position()), sci_Nil$_MODULE$); - oncias_SemanticCheckResult__init_0(var$1, var$5, var$6); + var$2 = onciu_Foldable$SkipChildren__init_(var$1); } - return var$1; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$State = $rt_classWithoutFields(0), -oncifp_IsolateSubqueriesInMutatingPatterns$State_foundSubquery$ = $$this => { - oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_$callClinit(); - return oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$; + return var$2; +}; +function juc_CopyOnWriteArrayList$ListIteratorImpl() { + let a = this; jl_Object.call(a); + a.$arr = null; + a.$current3 = 0; + a.$size10 = 0; +} +let juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext = $this => { + return $this.$current3 >= $this.$size10 ? 0 : 1; }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$ = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_MODULE$ = null, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_$callClinit = () => { - oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_$callClinit = $rt_eraseClinit(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$); - oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$__clinit_(); +juc_CopyOnWriteArrayList$ListIteratorImpl_next = $this => { + let var$1, var$2, var$3, var$4, var$5; + if (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext($this)) { + var$1 = $this.$arr.data; + var$2 = $this.$current3; + $this.$current3 = var$2 + 1 | 0; + return var$1[var$2]; + } + var$3 = new ju_NoSuchElementException; + var$4 = $this.$current3; + var$2 = $this.$size10; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$5, $rt_s(6560)), var$4), $rt_s(6561)), var$2); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$5)); + $rt_throw(var$3); +}; +function ju_AbstractList$SubAbstractList$SubAbstractListIterator() { + let a = this; jl_Object.call(a); + a.$subList0 = null; + a.$iterator4 = null; + a.$start12 = 0; + a.$end2 = 0; +} +let ju_AbstractList$SubAbstractList$SubAbstractListIterator_hasNext = $this => { + return $this.$iterator4.$nextIndex() >= $this.$end2 ? 0 : 1; }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$__clinit_ = () => { +ju_AbstractList$SubAbstractList$SubAbstractListIterator_next = $this => { let var$1; - var$1 = new oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$; - oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_$callClinit(); - oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_MODULE$ = var$1; + if ($this.$iterator4.$nextIndex() < $this.$end2) + return $this.$iterator4.$next(); + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_0(var$1); + $rt_throw(var$1); }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_foundSubquery = $this => { - return oncifp_IsolateSubqueriesInMutatingPatterns$State_foundSubquery$($this); +oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_0 = $rt_classWithoutFields(), +oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncil_LabelExpression$Conjunctions); }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_foundCrossReference = $this => { - return oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$; +oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_1 = $rt_classWithoutFields(), +oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_1_apply = (var$0, var$1) => { + var$1 = var$1; + return !(var$1 instanceof oncil_LabelExpression$Conjunctions) ? sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$) : var$1.$children4; +}; +function onciu_Last() { + jl_Object.call(this); + this.$head4 = null; +} +let onciu_Last_map = ($this, $f) => { + return onciu_NonEmptyList_map$($this, $f); }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productArity = $this => { - return 0; +onciu_Last_mapAndPrependReversedTo = ($this, $f, $acc) => { + return onciu_NonEmptyList_mapAndPrependReversedTo$($this, $f, $acc); }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_Last_reverse = $this => { + return onciu_NonEmptyList_reverse$($this); }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_Last_toIterable = $this => { + return onciu_NonEmptyList_toIterable$($this); }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_hashCode = $this => { - return (-562500651); +onciu_Last_toIndexedSeq = $this => { + return onciu_NonEmptyList_toIndexedSeq$($this); }, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_toString = $this => { - return $rt_s(7011); -}; -function oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$semanticTable$11 = null; - a.$x8$1 = null; - a.$previousClause$1 = null; -} -let oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4, var$5, var$6, var$7; - var$3 = 0; - if ($x1 instanceof oncie_CaseExpression) - return new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0; - if ($rt_isInstance($x1, oncie_SubqueryExpression)) { - var$3 = 1; - $x1 = $x1; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - $default = $this.$semanticTable$11; - var$4 = $this.$x8$1; - var$5 = $this.$previousClause$1; - if (!$rt_isInstance(var$4, oncia_CreateOrInsert)) - var$6 = 0; - else { - var$4 = var$4; - var$7 = new oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0; - var$7.$_0846 = $default; - var$5 = s_Option_getOrElse(s_Option_map(var$5, var$7), new oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1); - var$6 = sc_IterableOnceOps_nonEmpty$(((oncifp_IsolateSubqueriesInMutatingPatterns$_getDefinedSymbols$1(var$4.$pattern5(), $default)).$removedAll(var$5)).$intersect($x1.$scopeDependencies())); - } - if (var$6) - return new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1; - } - if (!var$3) - return new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3; - return new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2; +onciu_Last_knownSize = $this => { + return (-1); }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$ = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$ = null, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_$callClinit = () => { - oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_$callClinit = $rt_eraseClinit(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$); - oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$__clinit_(); +onciu_Last_head = $this => { + return $this.$head4; }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$__clinit_ = () => { - let var$1; - var$1 = new oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$; - oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_$callClinit(); - oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$ = var$1; +onciu_Last_tailOption = $this => { + return s_None$_MODULE$; }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_foundSubquery = $this => { - return oncifp_IsolateSubqueriesInMutatingPatterns$State_foundSubquery$($this); +onciu_Last_toString = $this => { + return jl_String_valueOf($this.$head4.$toString()); }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_foundCrossReference = $this => { - return oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$; +onciu_Last_iterator = $this => { + let var$1; + var$1 = new onciu_Last$$anon$3; + var$1.$remaining2 = s_Some__init_($this); + return var$1; }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productArity = $this => { - return 0; +onciu_Last_productPrefix = $this => { + return $rt_s(6160); }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productElement = ($this, $x$1) => { +onciu_Last_productArity = $this => { + return 1; +}, +onciu_Last_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$head4; + default: + } return sr_Statics_ioobe($x$1); }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productIterator = $this => { +onciu_Last_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_hashCode = $this => { - return (-858789446); -}, -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_toString = $this => { - return $rt_s(7012); -}, -oncia_SchemaCommand$checkOptionsMap$lambda$_6_0 = $rt_classWithoutFields(); -function oncia_CreateIndex$semanticCheck$lambda$_31_0() { - jl_Object.call(this); - this.$_0627 = null; -} -let oncia_CreateIndex$semanticCheck$lambda$_31_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0627; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = var$1.$map16 instanceof oncie_Variable ? 0 : 1; - var$5 = new oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0; - var$5.$_01010 = var$2; - var$5.$_1347 = var$1; - return oncias_SemanticCheck$_when(var$3, var$4, var$5); -}; -function oncia_SchemaCommand$checkSingleProperty$lambda$_8_0() { - let a = this; jl_Object.call(a); - a.$_0141 = null; - a.$_154 = null; - a.$_227 = null; -} -let oncia_SchemaCommand$checkSingleProperty$lambda$_8_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0141; - var$2 = var$0.$_154; - var$3 = var$0.$_227; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7013)), var$2), $rt_s(7014)); - return oncias_SemanticAnalysisTooling_error$(var$1, jl_AbstractStringBuilder_toString(var$4), (sc_LinearSeqOps_apply$(var$3, 1)).$position14); -}, -oncia_AuthImpl$checkDuplicates$lambda$_5_0 = $rt_classWithoutFields(), -oncia_AuthImpl$checkDuplicates$lambda$_5_0_apply = (var$0, var$1) => { - return var$1.$name(); -}; -function oncia_AuthImpl$$anonfun$checkDuplicates$2() { - sr_AbstractPartialFunction.call(this); - this.$$outer47 = null; -} -let oncia_AuthImpl$$anonfun$checkDuplicates$2_applyOrElse = ($this, $x, $default) => { - let var$3, var$4; - $x = $x; - if ($x !== null) { - $x = $x.$_2(); - if ($x !== null) { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x); - if ($x.$lengthCompare(2) >= 0) { - $x = $x.$apply1(1); - $default = $this.$$outer47; - var$3 = $x.$name(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7015)), var$3), $rt_s(6034)); - $default = $default.$error2(jl_AbstractStringBuilder_toString(var$4), $x.$position()); - } - } - } - return $default; +onciu_Last_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_AuthImpl$checkDuplicates$lambda$_5_1 = $rt_classWithoutFields(), -oncia_AuthImpl$checkDuplicates$lambda$_5_1_apply = var$0 => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); -}; -function oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0() { - jl_Object.call(this); - this.$_0242 = null; -} -let oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0242; - var$3 = var$1.$currentScope.$elem0; - if (!(var$2.$lhs()).$isReturning()) { - oncias_Scope$_$callClinit(); - var$4 = oncias_Scope$_empty(oncias_Scope$_MODULE$); - } else - var$4 = (var$2.$lhs()).$finalScope(var$3.$children2.$head()); - if (!oncia_SingleQuery_isReturning(var$2.$rhs())) { - oncias_Scope$_$callClinit(); - var$5 = oncias_Scope$_empty(oncias_Scope$_MODULE$); - } else - var$5 = oncia_SingleQuery_finalScope(var$2.$rhs(), var$3.$children2.$last()); +onciu_Last_equals = ($this, $x$1) => { + let var$2; a: { b: { - c: { - var$4 = oncias_Scope_symbolNames(var$4); - var$5 = oncias_Scope_symbolNames(var$5); - if (var$4 === null) { - if (var$5 === null) - break c; + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_Last) ? 0 : 1)) break b; - } - if (!sc_Set_equals$(var$4, var$5)) + $x$1 = $x$1; + if (!sr_BoxesRunTime_equals($this.$head4, $x$1.$head4)) break b; } - s_package$_$callClinit(); - var$3 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + var$2 = 1; break a; } - var$3 = new sci_$colon$colon; - oncias_SemanticError$_$callClinit(); - sci_$colon$colon__init_0(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7016), var$2.$position()), sci_Nil$_MODULE$); + var$2 = 0; } - return oncias_SemanticCheckResult__init_(var$1, var$3); + return var$2; }, -onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0_apply = (var$0, var$1) => { - return var$1; -}; -function onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1() { - let a = this; jl_Object.call(a); - a.$_0476 = null; - a.$_1166 = null; -} -let onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0476; - var$3 = var$0.$_1166; - return sci_List_map(sci_$colon$colon__init_($rt_s(6338), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1), sci_Nil$_MODULE$)), new onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_70_0); +onciu_Last__init_0 = ($this, $head) => { + $this.$head4 = $head; }, -onciap_DefaultExpressionStringifier$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -onciap_DefaultExpressionStringifier$$anonfun$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - if (!$rt_isInstance($x, oncie_ChainableBinaryOperatorExpression)) - $x = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); - return $x; +onciu_Last__init_ = var_0 => { + let var_1 = new onciu_Last(); + onciu_Last__init_0(var_1, var_0); + return var_1; }; -function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$symbolicNamePredicate$1 = null; - a.$context$12 = null; +function oncia_Remove$mapExpressions$lambda$_68_0() { + jl_Object.call(this); + this.$_0768 = null; } -let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1_applyOrElse = ($this, $x1, $default) => { - if ($x1 instanceof oncie_DynamicRelTypeExpression) - return new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0; - if ($x1 instanceof oncie_DynamicLabelExpression) - return new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1; - if ($x1 instanceof oncie_DynamicLabelOrRelTypeExpression) - return new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2; - if ($rt_isInstance($x1, oncie_SymbolicName)) { - $x1 = $x1; - if (!sr_BoxesRunTime_unboxToBoolean($this.$symbolicNamePredicate$1.$apply2($x1))) { - $default = new oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3; - $default.$_0878 = $this; - $default.$_1302 = $x1; - return $default; - } - } - return s_PartialFunction$_fallback_fn; -}, -oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0 = $rt_classWithoutFields(), -oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0_apply = (var$0, var$1) => { - return oncias_SymbolUse_positionsAndUniqueIdString(var$1); +let oncia_Remove$mapExpressions$lambda$_68_0_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_0768); }; -function sm_Ordering$Tuple2Ordering() { - let a = this; jl_Object.call(a); - a.$ord10 = null; - a.$ord2 = null; +function oncia_SetClause$mapExpressions$lambda$_68_0() { + jl_Object.call(this); + this.$_0746 = null; } -let sm_Ordering$Tuple2Ordering_on = ($this, $f) => { - return sm_Ordering_on$($this, $f); -}, -sm_Ordering$Tuple2Ordering_compare = ($this, $x, $y) => { - let var$3; - $x = $x; - $y = $y; - var$3 = sm_Ordering$Int$_compare($this.$ord10, $x.$_1(), $y.$_1()); - if (!var$3) - var$3 = $this.$ord2.$compare2($x.$_2(), $y.$_2()); - return var$3; +let oncia_SetClause$mapExpressions$lambda$_68_0_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_0746); }; -function onciafnc_CodeCompletionCore$CandidatesCollection() { - let a = this; jl_Object.call(a); - a.$tokens0 = null; - a.$rules = null; -} -function oncip_CypherErrorVocabulary$expected$lambda$_0_0() { +function oncia_Foreach$mapExpressions$lambda$_69_0() { jl_Object.call(this); - this.$_0545 = null; + this.$_0406 = null; } -let oncip_CypherErrorVocabulary$expected$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0545; - s_Predef$_$callClinit(); - var$3 = sr_BoxesRunTime_unboxToInt(var$1.$getKey()); - var$1 = scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, (var$1.$getValue0()).$ruleList)); - var$4 = (var$2.$conf.$ruleGroups()).$get2(jl_Integer_valueOf(var$3)); - var$5 = new oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3; - var$5.$$outer18 = var$2; - var$5.$ruleCallStack$1 = var$1; - return s_Option_collect(var$4, var$5); -}, -oncip_CypherErrorVocabulary$expected$lambda$_0_1 = $rt_classWithoutFields(), -oncip_CypherErrorVocabulary$expected$lambda$_0_1_apply = (var$0, var$1) => { +let oncia_Foreach$mapExpressions$lambda$_69_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$1.$getKey(); - return (sc_IterableOnceOps_toSeq$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, var$1.$getValue0())))).$prepended(var$2); + var$2 = var$0.$_0406; + if ($rt_isInstance(var$1, oncia_UpdateClause)) + return var$1.$mapExpressions(var$2); + var$2 = new jl_IllegalStateException; + jl_Throwable__init_(var$2, $rt_s(6562)); + $rt_throw(var$2); }; -function oncip_CypherErrorVocabulary$expected$lambda$_0_2() { +function oncia_Merge$mapExpressions$lambda$_73_0() { jl_Object.call(this); - this.$_0505 = null; + this.$_0288 = null; } -let oncip_CypherErrorVocabulary$expected$lambda$_0_2_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0505; - var$1 = var$1.$reverse1(); - var$3 = new oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0; - var$3.$_0520 = var$2; - return var$1.$map(var$3); -}, -sm_Ordering$ExtraImplicits = $rt_classWithoutFields(0), -sm_Ordering$Implicits$ = $rt_classWithoutFields(), -sm_Ordering$Implicits$_MODULE$ = null, -sm_Ordering$Implicits$__clinit_ = () => { - sm_Ordering$Implicits$_MODULE$ = new sm_Ordering$Implicits$; +let oncia_Merge$mapExpressions$lambda$_73_0_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_0288); }; -function oncip_CypherErrorVocabulary$expected$lambda$_0_3() { +function oncia_Merge$mapExpressions$lambda$_73_1() { jl_Object.call(this); - this.$_0955 = null; + this.$_0729 = null; } -let oncip_CypherErrorVocabulary$expected$lambda$_0_3_apply = (var$0, var$1) => { - let var$2, var$3; +let oncia_Merge$mapExpressions$lambda$_73_1_apply = (var$0, var$1) => { + return oncia_Where_mapExpressions(var$1, var$0.$_0729); +}; +function ong_ErrorGqlStatusObjectImplementation$adjustPosition$lambda$_8_0() { + let a = this; jl_Object.call(a); + a.$_0401 = 0; + a.$_1143 = 0; + a.$_251 = 0; + a.$_317 = 0; + a.$_46 = 0; + a.$_53 = 0; +} +let ong_ErrorGqlStatusObjectImplementation$adjustPosition$lambda$_8_0_accept = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; var$1 = var$1; - var$2 = var$0.$_0955; - var$3 = new oncip_CypherErrorVocabulary$displayName$lambda$_5_0; - var$3.$_0524 = var$2; - if (!var$1.$forall(var$3)) { - s_Predef$_$callClinit(); - var$1 = oncip_CypherErrorVocabulary_getDisplayName(var$2, sr_BoxesRunTime_unboxToInt(var$1.$head())); - } else { - var$3 = new oncip_CypherErrorVocabulary$displayName$lambda$_5_1; - var$3.$_01048 = var$2; - var$1 = sc_IterableOnceOps_mkString$(var$1.$map(var$3), $rt_s(4445), $rt_s(384), $rt_s(4445)); + var$2 = var$0.$_0401; + var$3 = var$0.$_1143; + var$4 = var$0.$_251; + var$5 = var$0.$_317; + var$6 = var$0.$_46; + var$7 = var$0.$_53; + if (var$1 instanceof ong_ErrorGqlStatusObjectImplementation) + ong_ErrorGqlStatusObjectImplementation_adjustPosition(var$1, var$2, var$3, var$4, var$5, var$6, var$7); +}, +oncie_QuantifiedPath$allVariables$lambda$_9_0 = $rt_classWithoutFields(), +oncie_QuantifiedPath$allVariables$lambda$_9_0_apply = (var$0, var$1) => { + return var$1.$group0; +}, +oncie_PathConcatenation$allVariables$lambda$_4_0 = $rt_classWithoutFields(), +oncie_PathConcatenation$allVariables$lambda$_4_0_apply = (var$0, var$1) => { + return var$1.$allVariables(); +}, +oncia_SingleQuery$isCorrelated$lambda$_67_0 = $rt_classWithoutFields(), +oncia_SingleQuery$isCorrelated$lambda$_67_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1.$graphReference1.$dependencies())); +}, +oncia_SingleQuery$importColumns$lambda$_70_0 = $rt_classWithoutFields(), +oncia_SingleQuery$importColumns$lambda$_70_0_apply = (var$0, var$1) => { + return var$1.$name(); +}; +function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1() { + sr_AbstractPartialFunction.call(this); + this.$allSymbolDefinitions$1 = null; +} +let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let $maybeVariable, $maybeProperties, $variable; + if ($x1 instanceof oncie_NodePattern) { + $x1 = $x1; + $maybeVariable = $x1.$variable6; + $maybeProperties = $x1.$properties6; + $x1 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0; + $x1.$_01100 = $this; + $x1.$_1373 = $maybeVariable; + $x1.$_2123 = $maybeProperties; + return $x1; } - return var$1; + if (!($x1 instanceof oncie_RelationshipPattern)) { + if (!($x1 instanceof oncie_NamedPatternPart)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $variable = $x1.$variable7; + $x1 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_2; + $x1.$_0869 = $variable; + return $x1; + } + $x1 = $x1; + $maybeVariable = $x1.$variable5; + $maybeProperties = $x1.$properties5; + $x1 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_1; + $x1.$_0359 = $this; + $x1.$_1128 = $maybeVariable; + $x1.$_246 = $maybeProperties; + return $x1; +}, +oncia_OrderBy$checkIllegalOrdering$lambda$_11_0 = $rt_classWithoutFields(), +oncia_OrderBy$checkIllegalOrdering$lambda$_11_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncie_Expression_containsAggregate(var$1.$expression0())); +}, +oncia_OrderBy$checkIllegalOrdering$lambda$_11_1 = $rt_classWithoutFields(), +oncia_OrderBy$checkIllegalOrdering$lambda$_11_1_apply = (var$0, var$1) => { + return var$1.$expression0(); }; -function oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0() { +function oncia_OrderBy$checkIllegalOrdering$lambda$_11_2() { jl_Object.call(this); - this.$_088 = null; + this.$_0950 = null; } -let oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncia_OrderBy$checkIllegalOrdering$lambda$_11_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_088; + var$2 = var$0.$_0950; + var$3 = onciu_Foldable_folder$(var$1.$expression0()); + var$1 = new oncie_Expression$TreeAcc; s_package$_$callClinit(); - var$3 = var$1.$a0; - var$4 = var$1.$b; - var$5 = new sci_Range$Inclusive; - sci_Range__init_(var$5, var$3, var$4, 1); - var$1 = new oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0; - var$1.$_060 = var$2; - var$1 = sc_StrictOptimizedIterableOps_filter$(var$5, var$1); - var$5 = new oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1; - var$5.$_0883 = var$2; - return var$1.$map(var$5); -}; -function oncia_SingleQuery$checkHorizon$lambda$_82_0() { - let a = this; jl_Object.call(a); - a.$_025 = null; - a.$_114 = null; -} -let oncia_SingleQuery$checkHorizon$lambda$_82_0_apply = (var$0, var$1) => { + oncie_Expression$TreeAcc__init_(var$1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), oncie_Expression$TreeAcc$_apply$default$2(oncie_Expression$TreeAcc$_MODULE$)); + var$4 = new oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1; + var$4.$aggregationGroupingExpressions$1 = var$2; + return (onciu_Foldable$Folder_treeFold(var$3, var$1, var$4)).$data1; +}, +oncia_Order$ = $rt_classWithoutFields(), +oncia_Order$_MODULE$ = null, +oncia_Order$__clinit_ = () => { + oncia_Order$_MODULE$ = new oncia_Order$; +}, +oncia_OrderBy$checkIllegalOrdering$lambda$_11_3 = $rt_classWithoutFields(), +oncia_OrderBy$checkIllegalOrdering$lambda$_11_3_apply = (var$0, var$1) => { + return var$1.$asCanonicalStringVal(); +}, +oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0 = $rt_classWithoutFields(), +oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0_apply = (var$0, var$1) => { + return var$1.$asCanonicalStringVal(); +}, +oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0 = $rt_classWithoutFields(), +oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0_apply = (var$0, var$1) => { + return var$1.$asCanonicalStringVal(); +}, +oncie_MapExpression$asCanonicalStringVal$lambda$_5_0 = $rt_classWithoutFields(), +oncie_MapExpression$asCanonicalStringVal$lambda$_5_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_025; - var$3 = var$0.$_114; - var$2 = var$2.$semanticCheckContinuation(var$1.$state.$currentScope.$elem0, var$3); - var$3 = new oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_157_0; - var$3.$_01007 = var$1; - return var$2.$map11(var$3); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = var$2.$name5; + var$1 = var$1.$asCanonicalStringVal(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(9)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }; -function oncias_SemanticCheck$$setState$lambda$_7_0() { - jl_Object.call(this); - this.$_0714 = null; +function jl_Iterable$1() { + let a = this; jl_Object.call(a); + a.$val$iterator = null; + a.$this$023 = null; } -let oncias_SemanticCheck$$setState$lambda$_7_0_apply = (var$0, var$1) => { - var$1 = var$0.$_0714; - oncias_SemanticCheck$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); +let jl_Iterable$1_tryAdvance = ($this, $action) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$2 = $this.$val$iterator; + if (!(var$2.$codePointIndex >= var$2.$numCodePoints ? 0 : 1)) + return 0; + var$3 = jl_String_codePointAt(var$2.$s, var$2.$charIndex); + var$4 = var$2.$s; + var$5 = var$2.$charIndex; + var$6 = 0; + while (true) { + var$7 = $rt_compare(var$6, 1); + if (var$7 >= 0) + break; + if (var$5 >= var$4.$nativeString.length) + break; + var$5 = var$5 < (var$4.$nativeString.length - 1 | 0) && jl_Character_isHighSurrogate(jl_String_charAt(var$4, var$5)) && jl_Character_isLowSurrogate(jl_String_charAt(var$4, var$5 + 1 | 0)) ? var$5 + 2 | 0 : var$5 + 1 | 0; + var$6 = var$6 + 1 | 0; + } + if (var$7 < 0) { + $action = new jl_IndexOutOfBoundsException; + jl_Throwable__init_0($action); + $rt_throw($action); + } + var$2.$charIndex = var$5; + var$2.$codePointIndex = var$2.$codePointIndex + 1 | 0; + jusi_StreamOverSpliterator$AdapterAction_accept($action, jl_Integer_valueOf(var$3)); + return 1; +}, +jl_Iterable$1_estimateSize = $this => { + return Long_fromInt(-1); }; -function oncias_package$$liftSemanticErrorDef$lambda$_6_0() { - jl_Object.call(this); - this.$_0395 = null; +function ju_LinkedHashMapEntrySet() { + let a = this; ju_AbstractSet.call(a); + a.$base2 = null; + a.$reversed1 = 0; } -let oncias_package$$liftSemanticErrorDef$lambda$_6_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0395; - oncias_package$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, var$1, var$2); +let ju_LinkedHashMapEntrySet_iterator = $this => { + let var$1; + var$1 = new ju_LinkedHashMapIterator$EntryIterator; + ju_LinkedHashMapIterator__init_(var$1, $this.$base2, $this.$reversed1); + return var$1; }; -function oncias_SemanticExpressionCheck$$infixAddRhsTypes$lambda$_60_0() { - jl_Object.call(this); - this.$_01042 = null; -} -function oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_61_0() { +function oncia_ShowProceduresClause() { let a = this; jl_Object.call(a); - a.$_0789 = null; - a.$_1265 = null; + a.$briefProcedureColumns = null; + a.$allProcedureColumns = null; + a.$executable = null; + a.$where9 = null; + a.$yieldItems1 = null; + a.$yieldAll7 = 0; + a.$yieldWith3 = null; + a.$position43 = null; + a.$useAllColumns3 = 0; + a.$originalColumns3 = null; + a.$briefColumns1 = null; + a.$allColumns1 = null; + a.$unfilteredColumns1 = null; + a.$columnsAsMap2 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier12 = null; + a.$SetExtractor$module22 = null; + a.$bitmap$041 = 0; } -let oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_61_0_apply = (var$0, var$1) => { - return oncias_SemanticExpressionCheck$_$anonfun$infixAddOutputTypes$1(var$0.$_0789, var$0.$_1265, var$1); +let oncia_ShowProceduresClause_clauseSpecificSemanticCheck = $this => { + return oncia_CommandClause_clauseSpecificSemanticCheck$($this); }, -onciuh_Try$ = $rt_classWithoutFields(), -onciuh_Try$_MODULE$ = null, -onciuh_Try$__clinit_ = () => { - onciuh_Try$_MODULE$ = new onciuh_Try$; +oncia_ShowProceduresClause_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -onciuh_Try$_apply = ($this, $value) => { - let var$2, $$je; +oncia_ShowProceduresClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_ShowProceduresClause_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_ShowProceduresClause_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowProceduresClause_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowProceduresClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowProceduresClause_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_ShowProceduresClause_foldedOver = $this => { + return $this; +}, +oncia_ShowProceduresClause_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowProceduresClause_columnsAsMap = $this => { + let var$1, $$je; + if ($this.$bitmap$041) + return $this.$columnsAsMap2; + jl_Object_monitorEnterSync($this); a: { - b: { - c: { - d: { - e: { - try { - var$2 = onciuh_Success__init_(srj_JFunction0$mcJ$sp_apply($value)); + try { + if ($this.$bitmap$041) + break a; + $this.$columnsAsMap2 = oncia_CommandClause_columnsAsMap$($this); + $this.$bitmap$041 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$columnsAsMap2; +}, +oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier12; +}, +oncia_ShowProceduresClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module22 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module22 !== null) + break a; + $this.$SetExtractor$module22 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + } + return $this.$SetExtractor$module22; +}, +oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier12 = $x$1; +}, +oncia_ShowProceduresClause_where = $this => { + return $this.$where9; +}, +oncia_ShowProceduresClause_yieldItems = $this => { + return $this.$yieldItems1; +}, +oncia_ShowProceduresClause_yieldAll = $this => { + return $this.$yieldAll7; +}, +oncia_ShowProceduresClause_yieldWith = $this => { + return $this.$yieldWith3; +}, +oncia_ShowProceduresClause_position = $this => { + return $this.$position43; +}, +oncia_ShowProceduresClause_name = $this => { + return $rt_s(651); +}, +oncia_ShowProceduresClause_originalColumns = $this => { + return $this.$originalColumns3; +}, +oncia_ShowProceduresClause_unfilteredColumns = $this => { + return $this.$unfilteredColumns1; +}, +oncia_ShowProceduresClause_moveWhereToProjection = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowProceduresClause_copy($this, $this.$briefProcedureColumns, $this.$allProcedureColumns, $this.$executable, $x$1, $this.$yieldItems1, $this.$yieldAll7, $this.$yieldWith3, $this.$position43); +}, +oncia_ShowProceduresClause_moveOutWith = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowProceduresClause_copy($this, $this.$briefProcedureColumns, $this.$allProcedureColumns, $this.$executable, $this.$where9, $this.$yieldItems1, $this.$yieldAll7, $x$1, $this.$position43); +}, +oncia_ShowProceduresClause_copy = ($this, $briefProcedureColumns, $allProcedureColumns, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + return oncia_ShowProceduresClause__init_($briefProcedureColumns, $allProcedureColumns, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position); +}, +oncia_ShowProceduresClause_productPrefix = $this => { + return $rt_s(6563); +}, +oncia_ShowProceduresClause_productArity = $this => { + return 7; +}, +oncia_ShowProceduresClause_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$briefProcedureColumns; + case 1: + return $this.$allProcedureColumns; + case 2: + return $this.$executable; + case 3: + return $this.$where9; + case 4: + return $this.$yieldItems1; + case 5: + return jl_Boolean_valueOf($this.$yieldAll7); + case 6: + return $this.$yieldWith3; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_ShowProceduresClause_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowProceduresClause_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6563))), sr_Statics_anyHash($this.$briefProcedureColumns)), sr_Statics_anyHash($this.$allProcedureColumns)), sr_Statics_anyHash($this.$executable)), sr_Statics_anyHash($this.$where9)), sr_Statics_anyHash($this.$yieldItems1)), !$this.$yieldAll7 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldWith3)), 7); +}, +oncia_ShowProceduresClause_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowProceduresClause_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowProceduresClause) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll7 != $x$1.$yieldAll7) + break b; + c: { + var$2 = $this.$briefProcedureColumns; + var$3 = $x$1.$briefProcedureColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_VirtualMachineError) { - $value = $$je; - break b; - } else if ($$je instanceof jl_InterruptedException) { - $value = $$je; - break d; - } else if ($$je instanceof jl_LinkageError) { - $value = $$je; - break e; - } else if ($$je instanceof suc_ControlThrowable) { - $value = $$je; - } else if ($$je instanceof jl_Throwable) { - var$2 = new onciuh_Failure; - break a; - } else { - throw $$e; - } - } - $rt_throw($value); } - $rt_throw($value); + if (var$3 !== null) + break b; } - $rt_throw($value); + d: { + var$2 = $this.$allProcedureColumns; + var$3 = $x$1.$allProcedureColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$executable; + var$3 = $x$1.$executable; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$where9; + var$3 = $x$1.$where9; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$yieldItems1; + var$3 = $x$1.$yieldItems1; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$3 = $this.$yieldWith3; + $x$1 = $x$1.$yieldWith3; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break h; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_ShowProceduresClause)) + break b; } + var$4 = 1; break a; } - $rt_throw($value); + var$4 = 0; } - return var$2; + return var$4; +}, +oncia_ShowProceduresClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_ShowProceduresClause__init_0 = ($this, $briefProcedureColumns, $allProcedureColumns, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + $this.$briefProcedureColumns = $briefProcedureColumns; + $this.$allProcedureColumns = $allProcedureColumns; + $this.$executable = $executable; + $this.$where9 = $where; + $this.$yieldItems1 = $yieldItems; + $this.$yieldAll7 = $yieldAll; + $this.$yieldWith3 = $yieldWith; + $this.$position43 = $position; + oncia_Clause_$init$($this); + $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; + $this.$useAllColumns3 = $yieldAll; + $this.$originalColumns3 = !$yieldAll ? $briefProcedureColumns : $allProcedureColumns; + $executable = new oncia_ShowProceduresClause$_init_$lambda$_116_0; + $executable.$_0372 = $this; + $this.$briefColumns1 = sci_List_map($briefProcedureColumns, $executable); + $briefProcedureColumns = new oncia_ShowProceduresClause$_init_$lambda$_116_1; + $briefProcedureColumns.$_0958 = $this; + $briefProcedureColumns = sci_List_map($allProcedureColumns, $briefProcedureColumns); + $this.$allColumns1 = $briefProcedureColumns; + oncia_DefaultOrAllShowColumns$_$callClinit(); + $this.$unfilteredColumns1 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns3, $this.$briefColumns1, $briefProcedureColumns); +}, +oncia_ShowProceduresClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7) => { + let var_8 = new oncia_ShowProceduresClause(); + oncia_ShowProceduresClause__init_0(var_8, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7); + return var_8; }; -function oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_56_0() { +function oncia_ShowFunctionsClause() { let a = this; jl_Object.call(a); - a.$_0317 = null; - a.$_1118 = null; + a.$briefFunctionColumns = null; + a.$allFunctionColumns = null; + a.$functionType = null; + a.$executable0 = null; + a.$where6 = null; + a.$yieldItems3 = null; + a.$yieldAll9 = 0; + a.$yieldWith0 = null; + a.$position58 = null; + a.$useAllColumns1 = 0; + a.$originalColumns1 = null; + a.$briefColumns3 = null; + a.$allColumns2 = null; + a.$unfilteredColumns3 = null; + a.$columnsAsMap4 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier6 = null; + a.$SetExtractor$module0 = null; + a.$bitmap$031 = 0; } -let oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_56_0_apply$mcJ$sp = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$0.$_0317; - var$2 = var$0.$_1118; - oncias_SemanticExpressionCheck$_$callClinit(); - s_Predef$_$callClinit(); - var$3 = sr_BoxesRunTime_unboxToLong(var$1.$value1()); - var$4 = sr_BoxesRunTime_unboxToLong(var$2.$value1()); - var$5 = Long_add(var$3, var$4); - var$6 = Long_ge(var$5, Long_ZERO) ? 0 : 1; - var$7 = Long_ge(var$3, Long_ZERO) ? 0 : 1; - if (var$6 != var$7 && var$6 != (Long_ge(var$4, Long_ZERO) ? 0 : 1)) { - var$1 = new jl_ArithmeticException; - jl_Throwable__init_0(var$1, $rt_s(7017)); +let oncia_ShowFunctionsClause_clauseSpecificSemanticCheck = $this => { + return oncia_CommandClause_clauseSpecificSemanticCheck$($this); +}, +oncia_ShowFunctionsClause_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); +}, +oncia_ShowFunctionsClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); +}, +oncia_ShowFunctionsClause_shouldRunQPPChecks = $this => { + return 1; +}, +oncia_ShowFunctionsClause_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); +}, +oncia_ShowFunctionsClause_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); +}, +oncia_ShowFunctionsClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +}, +oncia_ShowFunctionsClause_asCanonicalStringVal = $this => { + return $this.$toString(); +}, +oncia_ShowFunctionsClause_foldedOver = $this => { + return $this; +}, +oncia_ShowFunctionsClause_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_ShowFunctionsClause_columnsAsMap = $this => { + let var$1, $$je; + if ($this.$bitmap$031) + return $this.$columnsAsMap4; + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$bitmap$031) + break a; + $this.$columnsAsMap4 = oncia_CommandClause_columnsAsMap$($this); + $this.$bitmap$031 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); $rt_throw(var$1); } - return var$5; -}; -function oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_57_0() { - let a = this; jl_Object.call(a); - a.$_0439 = null; - a.$_1154 = null; -} -let oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_57_0_apply$mcJ$sp = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0439; - var$2 = var$0.$_1154; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = onciuh_Math$_MODULE$; - s_Predef$_$callClinit(); - return onciuh_Math$_subtractExact(var$3, sr_BoxesRunTime_unboxToLong(var$1.$value1()), sr_BoxesRunTime_unboxToLong(var$2.$value1())); -}; -function oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_58_0() { - jl_Object.call(this); - this.$_0440 = null; -} -let oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_58_0_apply$mcJ$sp = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0440; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = onciuh_Math$_MODULE$; - s_Predef$_$callClinit(); - return onciuh_Math$_subtractExact(var$2, Long_ZERO, sr_BoxesRunTime_unboxToLong(var$1.$value1())); -}; -function oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_59_0() { - let a = this; jl_Object.call(a); - a.$_0228 = null; - a.$_188 = null; -} -let oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_59_0_apply$mcJ$sp = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_0228; - var$2 = var$0.$_188; - oncias_SemanticExpressionCheck$_$callClinit(); - s_Predef$_$callClinit(); - var$3 = sr_BoxesRunTime_unboxToLong(var$1.$value1()); - var$4 = sr_BoxesRunTime_unboxToLong(var$2.$value1()); - if (Long_gt(var$4, Long_ZERO)) - var$5 = Long_le(var$3, Long_div(Long_create(4294967295, 2147483647), var$4)) && Long_ge(var$3, Long_div(Long_create(0, 2147483648), var$4)) ? 0 : 1; - else { - var$5 = Long_compare(var$4, Long_fromInt(-1)); - var$5 = var$5 >= 0 ? (var$5 ? 0 : Long_ne(var$3, Long_create(0, 2147483648)) ? 0 : 1) : Long_le(var$3, Long_div(Long_create(0, 2147483648), var$4)) && Long_ge(var$3, Long_div(Long_create(4294967295, 2147483647), var$4)) ? 0 : 1; - } - if (!var$5) - return Long_mul(var$3, var$4); - var$1 = new jl_ArithmeticException; - jl_Throwable__init_0(var$1, $rt_s(7017)); - $rt_throw(var$1); -}; -function oncias_SemanticExpressionCheck$$check$lambda$_55_0() { - jl_Object.call(this); - this.$_0792 = null; -} -let oncias_SemanticExpressionCheck$$check$lambda$_55_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0792; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, var$2, var$1); -}; -function oncius_TypeSpec() { - jl_Object.call(this); - this.$ranges = null; -} -let oncius_TypeSpec_contains0 = ($this, $that) => { - return oncius_TypeSpec_contains($this, $that, $this.$ranges); + jl_Object_monitorExitSync($this); + return $this.$columnsAsMap4; }, -oncius_TypeSpec_contains = ($this, $that, $rs) => { - let var$3; - var$3 = new oncius_TypeSpec$contains$lambda$_9_0; - var$3.$_0818 = $that; - return $rs.$exists(var$3); +oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier6; }, -oncius_TypeSpec_containsAny = ($this, $that) => { - let var$2, var$3; - var$2 = $this.$ranges; - var$3 = new oncius_TypeSpec$containsAny$lambda$_11_0; - var$3.$_0953 = $that; - return var$2.$exists(var$3); +oncia_ShowFunctionsClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module0 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module0 !== null) + break a; + $this.$SetExtractor$module0 = oncia_Clause$SetExtractor$__init_($this); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + } + return $this.$SetExtractor$module0; }, -oncius_TypeSpec_containsAll = ($this, $that) => { - return oncius_TypeSpec_equals(oncius_TypeSpec_intersect($this, $that), $that); +oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier6 = $x$1; }, -oncius_TypeSpec_union = ($this, $that) => { - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $this.$ranges.$concat($that.$ranges)); +oncia_ShowFunctionsClause_where = $this => { + return $this.$where6; }, -oncius_TypeSpec_$bar = ($this, $that) => { - return oncius_TypeSpec_union($this, $that); +oncia_ShowFunctionsClause_yieldItems = $this => { + return $this.$yieldItems3; }, -oncius_TypeSpec_intersect = ($this, $that) => { - let var$2, var$3, var$4; - oncius_TypeSpec$_$callClinit(); - var$2 = oncius_TypeSpec$_MODULE$; - var$3 = $this.$ranges; - var$4 = new oncius_TypeSpec$intersect$lambda$_15_0; - var$4.$_0144 = $that; - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(var$2, var$3.$flatMap(var$4)); +oncia_ShowFunctionsClause_yieldAll = $this => { + return $this.$yieldAll9; }, -oncius_TypeSpec_coerceOrLeastUpperBound = ($this, $that) => { - let $coerced; - $coerced = oncius_TypeSpec_intersect(oncius_TypeSpec_coercions($this), $that); - if (oncius_TypeSpec_nonEmpty($coerced)) - return $coerced; - return oncius_TypeSpec_leastUpperBounds($this, $that); +oncia_ShowFunctionsClause_yieldWith = $this => { + return $this.$yieldWith0; }, -oncius_TypeSpec_without = ($this, $aType) => { - let var$2, var$3, var$4; - oncius_TypeSpec$_$callClinit(); - var$2 = oncius_TypeSpec$_MODULE$; - var$3 = $this.$ranges; - var$4 = new oncius_TypeSpec$without$lambda$_20_0; - var$4.$_0134 = $aType; - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(var$2, var$3.$flatMap(var$4)); +oncia_ShowFunctionsClause_position = $this => { + return $this.$position58; }, -oncius_TypeSpec_constrain = ($this, $that) => { - let var$2, var$3, var$4; - oncius_TypeSpec$_$callClinit(); - var$2 = oncius_TypeSpec$_MODULE$; - var$3 = $this.$ranges; - var$4 = new oncius_TypeSpec$constrain$lambda$_21_0; - var$4.$_0707 = $that; - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(var$2, var$3.$flatMap(var$4)); +oncia_ShowFunctionsClause_name = $this => { + return $rt_s(6564); }, -oncius_TypeSpec_leastUpperBounds = ($this, $that) => { - let var$2, var$3, var$4; - oncius_TypeSpec$_$callClinit(); - var$2 = oncius_TypeSpec$_MODULE$; - var$3 = $this.$ranges; - var$4 = new oncius_TypeSpec$leastUpperBounds$lambda$_23_0; - var$4.$_01122 = $that; - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(var$2, var$3.$flatMap(var$4)); +oncia_ShowFunctionsClause_originalColumns = $this => { + return $this.$originalColumns1; }, -oncius_TypeSpec_wrapInList = $this => { - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $this.$ranges.$map(new oncius_TypeSpec$wrapInList$lambda$_24_0)); +oncia_ShowFunctionsClause_unfilteredColumns = $this => { + return $this.$unfilteredColumns3; }, -oncius_TypeSpec_covariant = $this => { - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $this.$ranges.$map(new oncius_TypeSpec$covariant$lambda$_26_0)); +oncia_ShowFunctionsClause_moveWhereToProjection = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowFunctionsClause_copy($this, $this.$briefFunctionColumns, $this.$allFunctionColumns, $this.$functionType, $this.$executable0, $x$1, $this.$yieldItems3, $this.$yieldAll9, $this.$yieldWith0, $this.$position58); }, -oncius_TypeSpec_unwrapLists = $this => { - let $unwrapped; - $unwrapped = $this.$ranges.$map(new oncius_TypeSpec$unwrapLists$lambda$_27_0); - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $unwrapped); +oncia_ShowFunctionsClause_moveOutWith = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_ShowFunctionsClause_copy($this, $this.$briefFunctionColumns, $this.$allFunctionColumns, $this.$functionType, $this.$executable0, $this.$where6, $this.$yieldItems3, $this.$yieldAll9, $x$1, $this.$position58); }, -oncius_TypeSpec_unwrapPotentialLists = $this => { - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, $this.$ranges.$map(new oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0)); +oncia_ShowFunctionsClause_copy = ($this, $briefFunctionColumns, $allFunctionColumns, $functionType, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + return oncia_ShowFunctionsClause__init_($briefFunctionColumns, $allFunctionColumns, $functionType, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position); }, -oncius_TypeSpec_coercions = $this => { - let $simpleCoercions; - $simpleCoercions = $this.$ranges.$flatMap(new oncius_TypeSpec$coercions$lambda$_29_0); - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_exact(oncius_TypeSpec$_MODULE$, $simpleCoercions); +oncia_ShowFunctionsClause_productPrefix = $this => { + return $rt_s(6565); }, -oncius_TypeSpec_nonEmpty = $this => { - return $this.$ranges.$isEmpty() ? 0 : 1; +oncia_ShowFunctionsClause_productArity = $this => { + return 8; }, -oncius_TypeSpec_toStream = ($this, $rs) => { - let var$2, var$3, var$4; - if (($rs.$apply4()).$isEmpty()) { - s_package$_$callClinit(); - return s_package$_Stream.$from0(sci_Nil$_MODULE$); - } - oncius_TypeSpec$_$callClinit(); - var$2 = oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes0(oncius_TypeSpec$_MODULE$); - var$3 = new oncius_TypeSpec$toStream$lambda$_35_0; - var$3.$_0657 = $this; - var$3.$_1227 = $rs; - var$2 = sc_AbstractIterable_toStream(sc_StrictOptimizedIterableOps_filter$(var$2, var$3)); - var$3 = new oncius_TypeSpec$toStream$lambda$_35_1; - var$3.$_093 = $this; - var$3.$_137 = $rs; - if (var$2.$isEmpty()) - var$2 = sci_Stream$_from(sci_Stream$_MODULE$, oncius_TypeSpec$toStream$lambda$_35_1_apply(var$3)); - else { - $rs = var$2.$head(); - var$4 = new sci_Stream$append$lambda$_49_0; - var$4.$_0608 = var$2; - var$4.$_1206 = var$3; - var$2 = sci_Stream$Cons__init_($rs, var$4); +oncia_ShowFunctionsClause_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$briefFunctionColumns; + case 1: + return $this.$allFunctionColumns; + case 2: + return $this.$functionType; + case 3: + return $this.$executable0; + case 4: + return $this.$where6; + case 5: + return $this.$yieldItems3; + case 6: + return jl_Boolean_valueOf($this.$yieldAll9); + case 7: + return $this.$yieldWith0; + default: } - return var$2; + return sr_Statics_ioobe($x$1); }, -oncius_TypeSpec_hashCode = $this => { - return 41 * sc_AbstractSeq_hashCode($this.$ranges) | 0; +oncia_ShowFunctionsClause_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncius_TypeSpec_equals = ($this, $that) => { - let $infinite1, $finite2, $finite1, $infinite2, var$6; - if (!($that instanceof oncius_TypeSpec)) - return 0; - $that = $that; - if ($this.$ranges.$isEmpty()) - return $that.$ranges.$isEmpty(); +oncia_ShowFunctionsClause_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6565))), sr_Statics_anyHash($this.$briefFunctionColumns)), sr_Statics_anyHash($this.$allFunctionColumns)), sr_Statics_anyHash($this.$functionType)), sr_Statics_anyHash($this.$executable0)), sr_Statics_anyHash($this.$where6)), sr_Statics_anyHash($this.$yieldItems3)), !$this.$yieldAll9 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldWith0)), + 8); +}, +oncia_ShowFunctionsClause_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_ShowFunctionsClause_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { b: { - c: { - if ($this instanceof oncius_TypeSpec) { - $infinite1 = $this.$ranges.$partition(new oncius_TypeSpec$equals$lambda$_38_0); - if ($infinite1 === null) - $rt_throw(s_MatchError__init_($infinite1)); - $finite2 = s_Tuple2__init_($infinite1.$_10, $infinite1.$_20); - $finite1 = $finite2.$_10; - $infinite1 = $finite2.$_20; - $that = $that.$ranges.$partition(new oncius_TypeSpec$equals$lambda$_38_1); - if ($that === null) - $rt_throw(s_MatchError__init_($that)); - d: { - $that = s_Tuple2__init_($that.$_10, $that.$_20); - $finite2 = $that.$_10; - $infinite2 = $that.$_20; - if ($infinite1 !== null) { - if (!$infinite1.$equals($infinite2)) - break c; - else - break d; - } - if ($infinite2 !== null) + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_ShowFunctionsClause) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll9 != $x$1.$yieldAll9) + break b; + c: { + var$2 = $this.$briefFunctionColumns; + var$3 = $x$1.$briefFunctionColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else break c; } - e: { - if ($finite1 !== null) { - if ($finite1.$equals($finite2)) - break b; - else - break e; - } - if ($finite2 === null) + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$allFunctionColumns; + var$3 = $x$1.$allFunctionColumns; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$functionType; + var$3 = $x$1.$functionType; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$3)) break b; + else + break e; } - $that = new oncius_TypeSpec$equals$lambda$_38_2; - $that.$_01080 = $finite1; - $infinite1 = oncius_TypeSpec_toStream($this, $that); - $that = new oncius_TypeSpec$equals$lambda$_38_3; - $that.$_0708 = $finite2; - $that = oncius_TypeSpec_toStream($this, $that); - if ($infinite1 === null) { - if ($that === null) + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$executable0; + var$3 = $x$1.$executable0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) break b; - } else if (sc_Seq_equals$($infinite1, $that)) + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$2 = $this.$where6; + var$3 = $x$1.$where6; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break g; + } + if (var$3 !== null) + break b; + } + h: { + var$2 = $this.$yieldItems3; + var$3 = $x$1.$yieldItems3; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break h; + } + if (var$3 !== null) + break b; + } + i: { + var$3 = $this.$yieldWith0; + $x$1 = $x$1.$yieldWith0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break i; + } + if ($x$1 !== null) break b; } + if (!($this instanceof oncia_ShowFunctionsClause)) + break b; } - var$6 = 0; + var$4 = 1; break a; } - var$6 = 1; + var$4 = 0; } - return var$6; -}, -oncius_TypeSpec_mkString1 = ($this, $sep) => { - return oncius_TypeSpec_mkString($this, $rt_s(4), $sep, $sep, $rt_s(4)); -}, -oncius_TypeSpec_mkString0 = ($this, $sep, $lastSep) => { - return oncius_TypeSpec_mkString($this, $rt_s(4), $sep, $lastSep, $rt_s(4)); -}, -oncius_TypeSpec_mkString = ($this, $start, $sep, $lastSep, $end) => { - let var$5, var$6, var$7, var$8, var$9, var$10; - var$5 = scm_StringBuilder__init_(); - s_package$_$callClinit(); - var$6 = sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)); - var$7 = $this.$ranges; - var$8 = new oncius_TypeSpec$toStrings$lambda$_40_0; - a: { - while (!var$7.$isEmpty()) { - if (var$7.$exists(new oncius_TypeSpec$toStrings$lambda$_41_0)) { - var$6 = var$6.$appended(var$8.$apply2($rt_s(6365))); - break a; - } - oncius_TypeSpec$_$callClinit(); - var$9 = oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes0(oncius_TypeSpec$_MODULE$); - var$10 = new oncius_TypeSpec$toStrings$lambda$_41_1; - var$10.$_0516 = $this; - var$10.$_1181 = var$7; - var$10 = sc_StrictOptimizedIterableOps_filter$(var$9, var$10); - var$9 = new oncius_TypeSpec$toStrings$lambda$_41_2; - var$9.$_0705 = var$8; - var$6 = var$6.$concat(var$10.$map(var$9)); - var$7 = oncius_TypeSpec_innerTypeRanges($this, var$7); - var$10 = new oncius_TypeSpec$toStrings$lambda$_41_3; - var$10.$_022 = var$8; - var$8 = var$10; - } - } - return scm_StringBuilder_result(var$6.$length() <= 1 ? var$6.$addString(var$5, $start, $sep, $end) : scm_StringBuilder_append(scm_StringBuilder_append(scm_StringBuilder_append((var$6.$dropRight(1)).$addString(var$5, $start, $sep, $rt_s(4)), $lastSep), var$6.$last()), $end)); -}, -oncius_TypeSpec_toString = $this => { - return oncius_TypeSpec_mkString($this, $rt_s(7018), $rt_s(45), $rt_s(45), $rt_s(42)); -}, -oncius_TypeSpec_toShortString = $this => { - return oncius_TypeSpec_mkString($this, $rt_s(4), $rt_s(450), $rt_s(450), $rt_s(4)); + return var$4; }, -oncius_TypeSpec_innerTypeRanges = ($this, $rs) => { - return $rs.$flatMap(new oncius_TypeSpec$innerTypeRanges$lambda$_49_0); +oncia_ShowFunctionsClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncius_TypeSpec__init_ = ($this, $ranges) => { - $this.$ranges = $ranges; +oncia_ShowFunctionsClause__init_0 = ($this, $briefFunctionColumns, $allFunctionColumns, $functionType, $executable, $where, $yieldItems, $yieldAll, $yieldWith, $position) => { + $this.$briefFunctionColumns = $briefFunctionColumns; + $this.$allFunctionColumns = $allFunctionColumns; + $this.$functionType = $functionType; + $this.$executable0 = $executable; + $this.$where6 = $where; + $this.$yieldItems3 = $yieldItems; + $this.$yieldAll9 = $yieldAll; + $this.$yieldWith0 = $yieldWith; + $this.$position58 = $position; + oncia_Clause_$init$($this); + $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; + $this.$useAllColumns1 = $yieldAll; + $this.$originalColumns1 = !$yieldAll ? $briefFunctionColumns : $allFunctionColumns; + $functionType = new oncia_ShowFunctionsClause$_init_$lambda$_117_0; + $functionType.$_0391 = $this; + $this.$briefColumns3 = sci_List_map($briefFunctionColumns, $functionType); + $briefFunctionColumns = new oncia_ShowFunctionsClause$_init_$lambda$_117_1; + $briefFunctionColumns.$_0893 = $this; + $briefFunctionColumns = sci_List_map($allFunctionColumns, $briefFunctionColumns); + $this.$allColumns2 = $briefFunctionColumns; + oncia_DefaultOrAllShowColumns$_$callClinit(); + $this.$unfilteredColumns3 = oncia_DefaultOrAllShowColumns$_apply(oncia_DefaultOrAllShowColumns$_MODULE$, $this.$useAllColumns1, $this.$briefColumns3, $briefFunctionColumns); }, -oncius_TypeSpec__init_0 = var_0 => { - let var_1 = new oncius_TypeSpec(); - oncius_TypeSpec__init_(var_1, var_0); - return var_1; -}; -function oncias_SemanticFunctionCheck$$check$lambda$_44_0() { - let a = this; jl_Object.call(a); - a.$_0349 = null; - a.$_1125 = null; -} -let oncias_SemanticFunctionCheck$$check$lambda$_44_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0349; - var$2 = var$0.$_1125; - oncias_SemanticFunctionCheck$_$callClinit(); - var$3 = oncias_SemanticFunctionCheck$_MODULE$; - var$1 = var$1.$name(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7019)), var$1), $rt_s(7020)); - return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position7); -}; -function oncias_SemanticFunctionCheck$$check$lambda$_44_1() { - jl_Object.call(this); - this.$_0946 = null; -} -let oncias_SemanticFunctionCheck$$check$lambda$_44_1_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0946; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticFunctionCheck$_MODULE$; - var$3 = var$1.$functionName2.$name7; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7021)), var$3), 39); - return oncias_SemanticAnalysisTooling_error$(var$2, jl_AbstractStringBuilder_toString(var$4), var$1.$position7); -}; -function oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_50_0() { - let a = this; jl_Object.call(a); - a.$_0795 = null; - a.$_1267 = null; -} -let oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_50_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0795; - var$3 = var$0.$_1267; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$5 = new oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_190_0; - var$5.$_0149 = var$2; - var$5.$_158 = var$3; - var$5.$_229 = var$1; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); +oncia_ShowFunctionsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) => { + let var_9 = new oncia_ShowFunctionsClause(); + oncia_ShowFunctionsClause__init_0(var_9, var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); + return var_9; }; -function oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_0() { +function oncia_TerminateTransactionsClause() { let a = this; jl_Object.call(a); - a.$_01109 = null; - a.$_1372 = null; -} -let oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_01109; - var$2 = var$0.$_1372; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = oncias_SemanticExpressionCheck$_MODULE$; - var$5 = oncie_ListComprehension_variable(var$1); - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$0(var$4, var$5, oncias_SemanticExpressionCheck$FilteringExpressions$_possibleInnerTypes(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1), s_None$_MODULE$, 0)); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Simple$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1, oncias_SemanticExpressionCheck$_check0(var$3, oncie_Expression$SemanticContext$Simple$_MODULE$, var$2)); -}; -function oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_1() { - jl_Object.call(this); - this.$_0481 = null; -} -let oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_1_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0481; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncius_TypeSpec_wrapInList(oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2), var$1)); -}; -function oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_2() { - jl_Object.call(this); - this.$_01070 = null; + a.$originalColumns0 = null; + a.$names4 = null; + a.$yieldItems6 = null; + a.$yieldAll10 = 0; + a.$yieldWith6 = null; + a.$wherePos = null; + a.$position112 = null; + a.$columns0 = null; + a.$unfilteredColumns5 = null; + a.$columnsAsMap6 = null; + a.$org$neo4j$cypher$internal$ast$Clause$$stringifier19 = null; + a.$SetExtractor$module15 = null; + a.$bitmap$046 = 0; } -let oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_2_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_01070; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - var$4 = oncie_ListComprehension_variable(var$1); - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_declareVariable$0(var$3, var$4, oncias_SemanticExpressionCheck$FilteringExpressions$_possibleInnerTypes(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1), s_None$_MODULE$, 0)); +let oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck = $this => { + return oncia_CommandClause_clauseSpecificSemanticCheck$($this); }, -oncie_Pattern$SemanticContext$Match$ = $rt_classWithoutFields(), -oncie_Pattern$SemanticContext$Match$_MODULE$ = null, -oncie_Pattern$SemanticContext$Match$__clinit_ = () => { - oncie_Pattern$SemanticContext$Match$_MODULE$ = new oncie_Pattern$SemanticContext$Match$; +oncia_TerminateTransactionsClause_returnVariables = $this => { + return oncia_Clause_returnVariables$($this); }, -oncie_Pattern$SemanticContext$Match$_name = $this => { - return oncie_Pattern$SemanticContext_name$($this); +oncia_TerminateTransactionsClause_semanticCheck = $this => { + return oncia_Clause_semanticCheck$($this); }, -oncie_Pattern$SemanticContext$Match$_description = $this => { - return oncie_Pattern$SemanticContext_description$($this); +oncia_TerminateTransactionsClause_shouldRunQPPChecks = $this => { + return 1; }, -oncie_Pattern$SemanticContext$Match$_productArity = $this => { - return 0; +oncia_TerminateTransactionsClause_semanticCheckFold = ($this, $iterable, $f) => { + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $iterable, $f); }, -oncie_Pattern$SemanticContext$Match$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_TerminateTransactionsClause_declareVariable = ($this, $v, $possibleTypes) => { + return oncias_SemanticAnalysisTooling_declareVariable$($this, $v, $possibleTypes); }, -oncie_Pattern$SemanticContext$Match$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_TerminateTransactionsClause_error = ($this, $msg, $position) => { + return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); }, -oncie_Pattern$SemanticContext$Match$_hashCode = $this => { - return 74115493; +oncia_TerminateTransactionsClause_asCanonicalStringVal = $this => { + return $this.$toString(); }, -oncie_Pattern$SemanticContext$Match$_toString = $this => { - return $rt_s(5093); +oncia_TerminateTransactionsClause_foldedOver = $this => { + return $this; }, -oncias_SemanticPatternCheck$$declareVariables$lambda$_46_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$declareVariables$lambda$_46_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = oncias_SemanticPatternCheck$_MODULE$; - oncius_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_declareVariable$(var$3, var$1, (oncius_package$_CTNode(oncius_package$_MODULE$)).$invariant())); -}; -function oncias_SemanticPatternCheck$$check$lambda$_47_0() { - let a = this; jl_Object.call(a); - a.$_0244 = null; - a.$_194 = null; -} -let oncias_SemanticPatternCheck$$check$lambda$_47_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0244; - var$2 = var$0.$_194; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_0; - var$3.$_0236 = var$1; - var$4 = var$1.$part1; - if (!(var$4 instanceof oncie_NamedPatternPart)) { - if (!$rt_isInstance(var$4, oncie_AnonymousPatternPart)) - $rt_throw(s_MatchError__init_(var$4)); - var$3 = oncie_PatternPartWithSelector_replaceInAnonymous$1(var$4, var$3); - } else { - var$4 = var$4; - var$3 = oncie_PatternPartWithSelector_replaceInAnonymous$1(var$4.$patternPart, var$3); - var$3 = oncie_NamedPatternPart_copy(var$4, var$4.$variable7, var$3, var$4.$position80); - } +oncia_TerminateTransactionsClause_folder = $this => { + return onciu_Foldable_folder$($this); +}, +oncia_TerminateTransactionsClause_columnsAsMap = $this => { + let var$1, $$je; + if ($this.$bitmap$046) + return $this.$columnsAsMap6; + jl_Object_monitorEnterSync($this); a: { - var$5 = oncie_PatternPartWithSelector_copy(var$1, var$1.$selector1, var$3); - var$1 = oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, var$2, var$5.$part1); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$6 = oncie_PatternPartWithSelector_isSelective(var$5); - var$4 = new oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_1; - var$4.$_0861 = var$2; - var$4.$_1295 = var$5; - var$1 = var$1.$chain(oncias_SemanticCheck$_when(var$3, var$6, var$4)); - var$2 = oncias_SemanticPatternCheck$_MODULE$; - var$5 = var$5.$selector1; - if (var$5 instanceof oncie_PatternPart$ShortestGroups) { - var$4 = var$5.$count2; - s_Predef$_$callClinit(); - if (Long_le(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value(var$4)), Long_ZERO)) { - var$2 = oncias_SemanticAnalysisTooling_error$(var$2, $rt_s(7022), var$4.$position22); + try { + if ($this.$bitmap$046) break a; - } + $this.$columnsAsMap6 = oncia_CommandClause_columnsAsMap$($this); + $this.$bitmap$046 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } - if ($rt_isInstance(var$5, oncie_PatternPart$CountedSelector)) { - var$3 = var$5; - s_Predef$_$callClinit(); - if (Long_le(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value(var$3.$count0())), Long_ZERO)) { - var$2 = oncias_SemanticAnalysisTooling_error$(var$2, $rt_s(7023), (var$3.$count0()).$position22); + jl_Object_monitorExitSync($this); + $rt_throw(var$1); + } + jl_Object_monitorExitSync($this); + return $this.$columnsAsMap6; +}, +oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier = $this => { + return $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier19; +}, +oncia_TerminateTransactionsClause_SetExtractor = $this => { + let var$1, $$je; + if ($this.$SetExtractor$module15 === null) { + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$SetExtractor$module15 !== null) + break a; + $this.$SetExtractor$module15 = oncia_Clause$SetExtractor$__init_($this); break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + jl_Object_monitorExitSync($this); } - return oncias_SemanticCheck_chain$(var$1, var$2); -}; -function oncias_SemanticPatternCheck$$check$lambda$_53_0() { - jl_Object.call(this); - this.$_0781 = null; -} -let oncias_SemanticPatternCheck$$check$lambda$_53_0__init_0 = (var$0, var$1) => { - var$0.$_0781 = var$1; + return $this.$SetExtractor$module15; }, -oncias_SemanticPatternCheck$$check$lambda$_53_0__init_ = var_0 => { - let var_1 = new oncias_SemanticPatternCheck$$check$lambda$_53_0(); - oncias_SemanticPatternCheck$$check$lambda$_53_0__init_0(var_1, var_0); - return var_1; +oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq = ($this, $x$1) => { + $this.$org$neo4j$cypher$internal$ast$Clause$$stringifier19 = $x$1; }, -oncias_SemanticPatternCheck$$check$lambda$_53_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0781; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticPatternCheck$_check(oncias_SemanticPatternCheck$_MODULE$, var$2, var$1); +oncia_TerminateTransactionsClause_originalColumns = $this => { + return $this.$originalColumns0; }, -oncias_SemanticPatternCheck$$check$lambda$_53_1 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$check$lambda$_53_1__init_0 = var$0 => { - return; +oncia_TerminateTransactionsClause_names = $this => { + return $this.$names4; }, -oncias_SemanticPatternCheck$$check$lambda$_53_1__init_ = () => { - let var_0 = new oncias_SemanticPatternCheck$$check$lambda$_53_1(); - oncias_SemanticPatternCheck$$check$lambda$_53_1__init_0(var_0); - return var_0; +oncia_TerminateTransactionsClause_yieldItems = $this => { + return $this.$yieldItems6; }, -oncias_SemanticPatternCheck$$check$lambda$_53_1_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - oncias_SemanticPatternCheck$_$callClinit(); - return var$1.$chain(var$2); -}; -function oncias_SemanticPatternCheck$$check$lambda$_53_2() { - let a = this; jl_Object.call(a); - a.$_0725 = null; - a.$_1247 = null; - a.$_279 = null; -} -let oncias_SemanticPatternCheck$$check$lambda$_53_2__init_ = (var$0, var$1, var$2, var$3) => { - var$0.$_0725 = var$1; - var$0.$_1247 = var$2; - var$0.$_279 = var$3; +oncia_TerminateTransactionsClause_yieldAll = $this => { + return $this.$yieldAll10; }, -oncias_SemanticPatternCheck$$check$lambda$_53_2__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oncias_SemanticPatternCheck$$check$lambda$_53_2(); - oncias_SemanticPatternCheck$$check$lambda$_53_2__init_(var_3, var_0, var_1, var_2); - return var_3; +oncia_TerminateTransactionsClause_yieldWith = $this => { + return $this.$yieldWith6; +}, +oncia_TerminateTransactionsClause_position = $this => { + return $this.$position112; +}, +oncia_TerminateTransactionsClause_name = $this => { + return $rt_s(656); +}, +oncia_TerminateTransactionsClause_unfilteredColumns = $this => { + return $this.$unfilteredColumns5; }, -oncias_SemanticPatternCheck$$check$lambda$_53_2_apply = var$0 => { +oncia_TerminateTransactionsClause_clauseSpecificSemanticCheck = $this => { let var$1, var$2, var$3; - var$1 = var$0.$_0725; - var$2 = var$0.$_1247; - var$3 = var$0.$_279; - oncias_SemanticPatternCheck$_$callClinit(); - var$1 = oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, var$1, var$2); - oncias_OptionSemanticChecking$_$callClinit(); - var$2 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(var$1.$chain(oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$2, var$3.$optionalWhereExpression, new oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_109_0)), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, var$3)); -}; -function oncias_SemanticPatternCheck$$check$lambda$_53_3() { - let a = this; jl_Object.call(a); - a.$_041 = null; - a.$_117 = null; - a.$_210 = null; - a.$_35 = null; -} -let oncias_SemanticPatternCheck$$check$lambda$_53_3__init_ = (var$0, var$1, var$2, var$3, var$4) => { - var$0.$_041 = var$1; - var$0.$_117 = var$2; - var$0.$_210 = var$3; - var$0.$_35 = var$4; + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_MODULE$; + var$2 = s_Option_isDefined($this.$wherePos); + var$3 = new oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_79_0; + var$3.$_0364 = $this; + return (oncias_SemanticCheck$_when(var$1, var$2, var$3)).$chain(oncia_CommandClauseWithNames_clauseSpecificSemanticCheck$($this)); }, -oncias_SemanticPatternCheck$$check$lambda$_53_3__init_0 = (var_0, var_1, var_2, var_3) => { - let var_4 = new oncias_SemanticPatternCheck$$check$lambda$_53_3(); - oncias_SemanticPatternCheck$$check$lambda$_53_3__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; +oncia_TerminateTransactionsClause_where = $this => { + return s_None$_MODULE$; }, -oncias_SemanticPatternCheck$$check$lambda$_53_3_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = var$0.$_041; - var$2 = var$0.$_117; - var$3 = var$0.$_210; - var$4 = var$0.$_35; - oncias_SemanticPatternCheck$_$callClinit(); - var$1 = oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, var$1, var$2); - if (!(var$2 instanceof oncie_ShortestPathsPatternPart)) { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$5 = var$2; - oncias_package$_$callClinit(); - var$6 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$2 = oncias_SemanticError$_MODULE$; - var$7 = var$5.$name11; - var$8 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$8); - jl_StringBuilder_append(jl_StringBuilder_append(var$8, var$7), $rt_s(7024)); - var$2 = oncias_package$_liftSemanticErrorDef(var$6, oncias_SemanticError$_apply(var$2, jl_AbstractStringBuilder_toString(var$8), var$5.$position10)); - } - var$1 = var$1.$chain(var$2); - oncias_OptionSemanticChecking$_$callClinit(); - var$2 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, new oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_112_0)), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, var$4)); -}; -function oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_135_0() { - jl_Object.call(this); - this.$_0252 = null; -} -let oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_135_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - var$2 = var$0.$_0252; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = var$2.$expressions0; - if (var$3 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$3); - if (!var$3.$lengthCompare(0)) { - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - var$1 = oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); - break a; - } - } - var$4 = oncias_SemanticExpressionCheck$_MODULE$; - var$3 = var$2.$expressions0; - if ((var$3.$iterator0()).$isEmpty()) - var$2 = new oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_1; - else { - var$2 = new oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_0; - var$2.$_0659 = var$4; - var$2.$_1229 = var$3; - } - var$1 = var$2.$apply2(var$1); - oncius_TypeSpec$_$callClinit(); - var$1 = oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, var$1.$ranges.$map(new oncius_TypeSpec$wrapInCovariantList$lambda$_25_0)); +oncia_TerminateTransactionsClause_moveWhereToProjection = $this => { + return $this; +}, +oncia_TerminateTransactionsClause_moveOutWith = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncia_TerminateTransactionsClause_copy($this, $this.$originalColumns0, $this.$names4, $this.$yieldItems6, $this.$yieldAll10, $x$1, $this.$wherePos, $this.$position112); +}, +oncia_TerminateTransactionsClause_copy = ($this, $originalColumns, $names, $yieldItems, $yieldAll, $yieldWith, $wherePos, $position) => { + return oncia_TerminateTransactionsClause__init_($originalColumns, $names, $yieldItems, $yieldAll, $yieldWith, $wherePos, $position); +}, +oncia_TerminateTransactionsClause_productPrefix = $this => { + return $rt_s(6566); +}, +oncia_TerminateTransactionsClause_productArity = $this => { + return 6; +}, +oncia_TerminateTransactionsClause_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$originalColumns0; + case 1: + return $this.$names4; + case 2: + return $this.$yieldItems6; + case 3: + return jl_Boolean_valueOf($this.$yieldAll10); + case 4: + return $this.$yieldWith6; + case 5: + return $this.$wherePos; + default: } - return var$1; + return sr_Statics_ioobe($x$1); }, -oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_0 = $rt_classWithoutFields(), -oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_ReturnItems$_$callClinit(); - return var$1.$expression(); +oncia_TerminateTransactionsClause_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ReturnItems$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_ReturnItems$$anonfun$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - if (!(oncie_Expression_containsAggregate($x) && !$rt_isInstance($x, oncia_FullSubqueryExpression))) - $x = $default.$apply2($x); - return $x; +oncia_TerminateTransactionsClause_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6566))), sr_Statics_anyHash($this.$originalColumns0)), sr_Statics_anyHash($this.$names4)), sr_Statics_anyHash($this.$yieldItems6)), !$this.$yieldAll10 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldWith6)), sr_Statics_anyHash($this.$wherePos)), 6); }, -oncia_ReturnItems$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_ReturnItems$$anonfun$2_applyOrElse = ($this, $x, $default) => { - $x = $x; - return !($x instanceof oncie_LogicalVariable) ? $default.$apply2($x) : $x; +oncia_TerminateTransactionsClause_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ReturnItems$$anonfun$3 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_ReturnItems$$anonfun$3_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5; +oncia_TerminateTransactionsClause_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - $x = $x; - if ($x instanceof oncie_LogicalProperty) { - var$3 = $x; - oncie_LogicalProperty$_$callClinit(); - var$4 = oncie_LogicalProperty$_unapply(oncie_LogicalProperty$_MODULE$, var$3); - if (!s_Option_isEmpty(var$4)) { - var$4 = var$4.$value5.$_1(); - if (var$4 instanceof oncie_LogicalVariable) { - var$5 = var$4; - if (!s_Option_isEmpty(s_Some__init_(var$5.$name4))) - break a; + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_TerminateTransactionsClause) ? 0 : 1)) + break b; + $x$1 = $x$1; + if ($this.$yieldAll10 != $x$1.$yieldAll10) + break b; + c: { + var$2 = $this.$originalColumns0; + var$3 = $x$1.$originalColumns0; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$2 = $this.$names4; + var$3 = $x$1.$names4; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break d; + } + if (var$3 !== null) + break b; + } + e: { + var$2 = $this.$yieldItems6; + var$3 = $x$1.$yieldItems6; + if (var$2 !== null) { + if (!sci_List_equals(var$2, var$3)) + break b; + else + break e; + } + if (var$3 !== null) + break b; + } + f: { + var$2 = $this.$yieldWith6; + var$3 = $x$1.$yieldWith6; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break f; + } + if (var$3 !== null) + break b; + } + g: { + var$3 = $this.$wherePos; + $x$1 = $x$1.$wherePos; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break g; + } + if ($x$1 !== null) + break b; } + if (!($this instanceof oncia_TerminateTransactionsClause)) + break b; } + var$4 = 1; + break a; } - var$3 = $default.$apply2($x); + var$4 = 0; } - return var$3; -}; -function oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_1() { - let a = this; jl_Object.call(a); - a.$_0746 = null; - a.$_1253 = null; -} -let oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0746; - var$3 = var$0.$_1253; - oncia_ReturnItems$_$callClinit(); - oncia_AmbiguousAggregation$_$callClinit(); - var$4 = onciu_Foldable_folder$(var$1); - var$1 = new oncie_Expression$TreeAcc; - s_package$_$callClinit(); - oncie_Expression$TreeAcc__init_(var$1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), oncie_Expression$TreeAcc$_apply$default$2(oncie_Expression$TreeAcc$_MODULE$)); - var$5 = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1; - var$5.$variablesUsedForGrouping$1 = var$2; - var$5.$nonNestedPropertiesUsedForGrouping$1 = var$3; - return (onciu_Foldable$Folder_treeFold(var$4, var$1, var$5)).$data1; + return var$4; }, -oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_2 = $rt_classWithoutFields(), -oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_2_apply = (var$0, var$1) => { - var$1 = var$1; - oncia_ReturnItems$_$callClinit(); - return var$1.$asCanonicalStringVal(); +oncia_TerminateTransactionsClause_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -jlr_AccessibleObject = $rt_classWithoutFields(), -jlr_Member = $rt_classWithoutFields(0); -function jlr_Method() { - let a = this; jlr_AccessibleObject.call(a); - a.$declaringClass = null; - a.$name33 = null; - a.$flags2 = 0; - a.$accessLevel = 0; - a.$returnType = null; - a.$parameterTypes = null; - a.$callable = null; +oncia_TerminateTransactionsClause__init_0 = ($this, $originalColumns, $names, $yieldItems, $yieldAll, $yieldWith, $wherePos, $position) => { + $this.$originalColumns0 = $originalColumns; + $this.$names4 = $names; + $this.$yieldItems6 = $yieldItems; + $this.$yieldAll10 = $yieldAll; + $this.$yieldWith6 = $yieldWith; + $this.$wherePos = $wherePos; + $this.$position112 = $position; + oncia_Clause_$init$($this); + $names = new oncia_TerminateTransactionsClause$_init_$lambda$_103_0; + $names.$_0796 = $this; + $this.$columns0 = sci_List_map($originalColumns, $names); + oncia_DefaultOrAllShowColumns$_$callClinit(); + $originalColumns = oncia_DefaultOrAllShowColumns$_MODULE$; + $yieldAll = !sc_IterableOnceOps_nonEmpty$($yieldItems) && !$yieldAll ? 0 : 1; + $names = $this.$columns0; + $this.$unfilteredColumns5 = oncia_DefaultOrAllShowColumns$_apply($originalColumns, $yieldAll, $names, $names); +}, +oncia_TerminateTransactionsClause__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new oncia_TerminateTransactionsClause(); + oncia_TerminateTransactionsClause__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; +}; +function jnc_CharsetEncoder() { + let a = this; jl_Object.call(a); + a.$charset0 = null; + a.$replacement5 = null; + a.$averageBytesPerChar = 0.0; + a.$maxBytesPerChar = 0.0; + a.$malformedAction0 = null; + a.$unmappableAction0 = null; + a.$status = 0; } -let jlr_Method_getModifiers = $this => { - return otcir_Flags_getModifiers($this.$flags2, $this.$accessLevel); +let jnc_CharsetEncoder_onMalformedInput = ($this, $newAction) => { + let var$2; + if ($newAction !== null) { + $this.$malformedAction0 = $newAction; + return $this; + } + var$2 = new jl_IllegalArgumentException; + jl_Throwable__init_(var$2, $rt_s(6567)); + $rt_throw(var$2); }, -jlr_Method_getParameterTypes = $this => { - return $this.$parameterTypes.$clone0(); +jnc_CharsetEncoder_onUnmappableCharacter = ($this, $newAction) => { + let var$2; + if ($newAction !== null) { + $this.$unmappableAction0 = $newAction; + return $this; + } + var$2 = new jl_IllegalArgumentException; + jl_Throwable__init_(var$2, $rt_s(6567)); + $rt_throw(var$2); }, -jlr_Method_toString = $this => { - let $sb, $parameterTypes, var$3, $i; - $sb = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($sb); - jl_AbstractStringBuilder_append($sb, jlr_Modifier_toString(jlr_Method_getModifiers($this))); - if ($sb.$length1 > 0) - jl_AbstractStringBuilder_append0($sb, 32); +jnc_CharsetEncoder_encode = ($this, $in, $out, $endOfInput) => { + let var$4, $result, $e, $remaining, $action, var$9, $$je; a: { - jl_AbstractStringBuilder_append($sb, jl_Class_getName($this.$returnType)); - jl_AbstractStringBuilder_append0($sb, 32); - jl_AbstractStringBuilder_append($sb, jl_Class_getName($this.$declaringClass)); - jl_AbstractStringBuilder_append0($sb, 46); - jl_AbstractStringBuilder_append($sb, $this.$name33); - jl_AbstractStringBuilder_append0($sb, 40); - $parameterTypes = (jlr_Method_getParameterTypes($this)).data; - var$3 = $parameterTypes.length; - if (var$3 > 0) { - jl_AbstractStringBuilder_append($sb, jl_Class_getName($parameterTypes[0])); - $i = 1; - while (true) { - if ($i >= var$3) - break a; - jl_AbstractStringBuilder_append0($sb, 44); - jl_AbstractStringBuilder_append($sb, jl_Class_getName($parameterTypes[$i])); - $i = $i + 1 | 0; + var$4 = $this.$status; + if (var$4 != 3) { + if ($endOfInput) + break a; + if (var$4 != 2) + break a; + } + $in = new jl_IllegalStateException; + jl_Throwable__init_0($in); + $rt_throw($in); + } + $this.$status = !$endOfInput ? 1 : 2; + while (true) { + try { + $result = jnci_BufferedEncoder_encodeLoop($this, $in, $out); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_RuntimeException) { + $e = $$je; + $in = new jnc_CoderMalfunctionError; + jl_Throwable__init_2($in, $e); + $rt_throw($in); + } else { + throw $$e; + } + } + if (jnc_CoderResult_isUnderflow($result)) { + if (!$endOfInput) + return $result; + $remaining = jn_Buffer_remaining($in); + if ($remaining <= 0) + return $result; + $result = jnc_CoderResult_malformedForLength($remaining); + } else if (jnc_CoderResult_isOverflow($result)) + break; + $action = !jnc_CoderResult_isUnmappable($result) ? $this.$malformedAction0 : $this.$unmappableAction0; + b: { + if ($action !== jnc_CodingErrorAction_REPLACE) { + if ($action === jnc_CodingErrorAction_IGNORE) + break b; + else + return $result; } + $remaining = jn_Buffer_remaining($out); + var$9 = $this.$replacement5; + var$4 = var$9.data.length; + if ($remaining < var$4) + return jnc_CoderResult_OVERFLOW; + jn_ByteBuffer_put($out, var$9, 0, var$4); } + jn_Buffer_position($in, $in.$position3 + jnc_CoderResult_length($result) | 0); } - jl_AbstractStringBuilder_append0($sb, 41); - return jl_AbstractStringBuilder_toString($sb); + return $result; }, -jlr_Method_invoke = ($this, $obj, $args) => { - let var$3, var$4, $i, $jsArgs; - if ($this.$callable === null) { - $obj = new jl_IllegalAccessException; - jl_Throwable__init_($obj); - $rt_throw($obj); - } - var$3 = $args.data; - var$4 = var$3.length; - if (var$4 != $this.$parameterTypes.data.length) { - $obj = new jl_IllegalArgumentException; - jl_Throwable__init_($obj); - $rt_throw($obj); - } - if ($this.$flags2 & 512) - $this.$declaringClass.$platformClass.$clinit(); - else if (!jl_Class_isInstance($this.$declaringClass, $obj)) { - $obj = new jl_IllegalArgumentException; - jl_Throwable__init_($obj); - $rt_throw($obj); - } - $i = 0; +jnc_CharsetEncoder_encode0 = ($this, $in) => { + let $output, $result, var$4; + if (!jn_Buffer_remaining($in)) + return jn_ByteBuffer_allocate(0); + $this.$status = 0; + $output = jn_ByteBuffer_allocate(jn_Buffer_remaining($in) * $this.$averageBytesPerChar | 0); while (true) { - if ($i >= var$4) { - $jsArgs = $args.data; - return $this.$callable.call($obj, $jsArgs); + $result = jnc_CharsetEncoder_encode($this, $in, $output, 0); + if ($result === jnc_CoderResult_UNDERFLOW) + break; + if ($result === jnc_CoderResult_OVERFLOW) { + $output = jnc_CharsetEncoder_allocateMore($this, $output); + continue; } - if (!jl_Class_isPrimitive($this.$parameterTypes.data[$i]) && var$3[$i] !== null && !jl_Class_isInstance($this.$parameterTypes.data[$i], var$3[$i])) { - $obj = new jl_IllegalArgumentException; - jl_Throwable__init_($obj); - $rt_throw($obj); + if (!jnc_CoderResult_isError($result)) + continue; + jnc_CoderResult_throwException($result); + } + $in = jnc_CharsetEncoder_encode($this, $in, $output, 1); + if (jnc_CoderResult_isError($in)) + jnc_CoderResult_throwException($in); + while (true) { + var$4 = $this.$status; + if (var$4 != 2 && var$4 != 4) { + $in = new jl_IllegalStateException; + jl_Throwable__init_0($in); + $rt_throw($in); } - if (jl_Class_isPrimitive($this.$parameterTypes.data[$i]) && var$3[$i] === null) + $in = jnc_CoderResult_UNDERFLOW; + if ($in === $in) + $this.$status = 3; + if (jnc_CoderResult_isUnderflow($in)) break; - $i = $i + 1 | 0; + if (!jnc_CoderResult_isOverflow($in)) + continue; + $output = jnc_CharsetEncoder_allocateMore($this, $output); } - $obj = new jl_IllegalArgumentException; - jl_Throwable__init_($obj); - $rt_throw($obj); + jn_Buffer_flip($output); + return $output; }, -oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0 = $rt_classWithoutFields(), -oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0_apply = (var$0, var$1) => { - return var$1.$expected2; +jnc_CharsetEncoder_allocateMore = ($this, $buffer) => { + let $array, $result; + $array = $buffer.$array6; + $result = jn_ByteBuffer_wrap0(ju_Arrays_copyOf2($array, $array.data.length * 2 | 0)); + jn_Buffer_position($result, $buffer.$position3); + return $result; }, -oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1 = $rt_classWithoutFields(), -oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1_apply = (var$0, var$1) => { - var$1 = var$1; - oncius_package$_$callClinit(); - return jl_Boolean_valueOf(oncius_TypeSpec_containsAll(oncius_BooleanType_covariant(oncius_package$_CTBoolean(oncius_package$_MODULE$)), var$1)); +oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0_apply0 = var$0 => { + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); }; -function oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0() { +function sc_View$$from$lambda$_18_0() { jl_Object.call(this); - this.$_01044 = null; + this.$_0181 = null; } -let oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01044.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes; - onciu_InputPosition$_$callClinit(); - return jl_Boolean_valueOf(sci_List_contains(var$2, var$1.$withPosition(onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)))); +function sc_View$$anon$1() { + sc_AbstractView.call(this); + this.$it$1 = null; +} +let sc_View$$anon$1_iterator = $this => { + return $this.$it$1.$_0181.$iterator0(); +}; +function onciu_Fby() { + let a = this; jl_Object.call(a); + a.$head3 = null; + a.$nonEmptyTail = null; +} +let onciu_Fby_map = ($this, $f) => { + return onciu_NonEmptyList_map$($this, $f); }, -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$ = $rt_classWithoutFields(sr_AbstractFunction2), -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$__init_ = $this => { - return; +onciu_Fby_mapAndPrependReversedTo = ($this, $f, $acc) => { + return onciu_NonEmptyList_mapAndPrependReversedTo$($this, $f, $acc); }, -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$__init_0 = () => { - let var_0 = new oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$(); - oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$__init_(var_0); - return var_0; +onciu_Fby_reverse = $this => { + return onciu_NonEmptyList_reverse$($this); }, -onciap_DefaultExpressionStringifier$Binding = $rt_classWithoutFields(0); -function onciap_DefaultExpressionStringifier$Precedence() { - let a = this; jl_Object.call(a); - a.$level = 0; - a.$$outer24 = null; -} -let onciap_DefaultExpressionStringifier$Precedence_productPrefix = $this => { - return $rt_s(7025); +onciu_Fby_toIterable = $this => { + return onciu_NonEmptyList_toIterable$($this); }, -onciap_DefaultExpressionStringifier$Precedence_productArity = $this => { - return 1; +onciu_Fby_toIndexedSeq = $this => { + return onciu_NonEmptyList_toIndexedSeq$($this); }, -onciap_DefaultExpressionStringifier$Precedence_productElement = ($this, $x$1) => { +onciu_Fby_knownSize = $this => { + return (-1); +}, +onciu_Fby_head = $this => { + return $this.$head3; +}, +onciu_Fby_tailOption = $this => { + return s_Some__init_($this.$nonEmptyTail); +}, +onciu_Fby_toString = $this => { + let var$1, var$2, var$3; + var$1 = $this.$head3.$toString(); + var$2 = $this.$nonEmptyTail.$toString(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(45)), var$2); + return jl_AbstractStringBuilder_toString(var$3); +}, +onciu_Fby_iterator = $this => { + let var$1; + var$1 = new onciu_Fby$$anon$2; + var$1.$remaining3 = s_Some__init_($this); + return var$1; +}, +onciu_Fby_productPrefix = $this => { + return $rt_s(6568); +}, +onciu_Fby_productArity = $this => { + return 2; +}, +onciu_Fby_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return jl_Integer_valueOf($this.$level); + return $this.$head3; + case 1: + return $this.$nonEmptyTail; default: } return sr_Statics_ioobe($x$1); }, -onciap_DefaultExpressionStringifier$Precedence_productIterator = $this => { +onciu_Fby_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciap_DefaultExpressionStringifier$Precedence_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(7025))), $this.$level), 1); -}, -onciap_DefaultExpressionStringifier$Precedence_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -onciap_DefaultExpressionStringifier$Precedence_equals = ($this, $x$1) => { - let var$2; - a: { - b: { - if ($this !== $x$1) { - if (!($x$1 instanceof onciap_DefaultExpressionStringifier$Precedence && $x$1.$$outer24 === $this.$$outer24 ? 1 : 0)) - break b; - $x$1 = $x$1; - if ($this.$level != $x$1.$level) - break b; - if (!($this instanceof onciap_DefaultExpressionStringifier$Precedence)) - break b; - } - var$2 = 1; - break a; - } - var$2 = 0; - } - return var$2; -}, -onciap_DefaultExpressionStringifier$Precedence__init_0 = ($this, $$outer, $level) => { - $this.$level = $level; - if ($$outer === null) - $rt_throw(null); - $this.$$outer24 = $$outer; -}, -onciap_DefaultExpressionStringifier$Precedence__init_ = (var_0, var_1) => { - let var_2 = new onciap_DefaultExpressionStringifier$Precedence(); - onciap_DefaultExpressionStringifier$Precedence__init_0(var_2, var_0, var_1); - return var_2; +onciu_Fby_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciap_DefaultExpressionStringifier$formsChain$1$lambda$_62_0 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$formsChain$1$lambda$_62_0_apply = (var$0, var$1) => { +onciu_Fby_equals = ($this, $x$1) => { let var$2, var$3; a: { b: { c: { - var$1 = var$1; - var$2 = (sc_AbstractIterable_head(var$1)).$rhs0(); - var$1 = (sc_AbstractIterable_last(var$1)).$lhs0(); - if (var$2 !== null) { - if (!var$2.$equals(var$1)) + if ($this !== $x$1) { + if (!(!($x$1 instanceof onciu_Fby) ? 0 : 1)) + break b; + $x$1 = $x$1; + if (!sr_BoxesRunTime_equals($this.$head3, $x$1.$head3)) + break b; + var$2 = $this.$nonEmptyTail; + $x$1 = $x$1.$nonEmptyTail; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) break b; - else - break c; } - if (var$1 !== null) - break b; } var$3 = 1; break a; } var$3 = 0; } - return jl_Boolean_valueOf(var$3); -}; -function scc_AsScalaExtensions$IterableHasAsScala() { - let a = this; jl_Object.call(a); - a.$i7 = null; - a.$$outer68 = null; -} -let scc_AsScalaExtensions$IterableHasAsScala_asScala = $this => { - let var$1, var$2; - var$1 = $this.$i7; - if (var$1 === null) - var$2 = null; - else if (var$1 instanceof scc_JavaCollectionWrappers$IterableWrapper) - var$2 = var$1.$underlying5(); - else { - var$2 = new scc_JavaCollectionWrappers$JIterableWrapper; - var$2.$underlying38 = var$1; - } - return var$2; + return var$3; }, -onciuh_Try = $rt_classWithoutFields(0); -function onciuh_Success() { +onciu_Fby__init_0 = ($this, $head, $nonEmptyTail) => { + $this.$head3 = $head; + $this.$nonEmptyTail = $nonEmptyTail; +}, +onciu_Fby__init_ = (var_0, var_1) => { + let var_2 = new onciu_Fby(); + onciu_Fby__init_0(var_2, var_0, var_1); + return var_2; +}; +function oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0() { jl_Object.call(this); - this.$value43 = null; + this.$_0441 = null; } -let onciuh_Success_isFailure = $this => { - return 0; -}, -onciuh_Success__init_0 = ($this, $value) => { - $this.$value43 = $value; -}, -onciuh_Success__init_ = var_0 => { - let var_1 = new onciuh_Success(); - onciuh_Success__init_0(var_1, var_0); - return var_1; +let oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_0441); }, -onciuh_Failure = $rt_classWithoutFields(), -onciuh_Failure_isFailure = $this => { - return 1; +jlr_Modifier = $rt_classWithoutFields(), +jlr_Modifier_modifierNames = null, +jlr_Modifier_canonicalOrder = null, +jlr_Modifier_toString = $mod => { + let $sb, $modifierNames, $index, var$5, var$6, var$7; + $sb = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($sb); + if (jlr_Modifier_modifierNames === null) + jlr_Modifier_modifierNames = $rt_wrapArray(jl_String, [$rt_s(6569), $rt_s(6570), $rt_s(6571), $rt_s(6572), $rt_s(6573), $rt_s(6574), $rt_s(6575), $rt_s(6576), $rt_s(6577), $rt_s(5603), $rt_s(6578), $rt_s(6579)]); + $modifierNames = jlr_Modifier_modifierNames; + $index = 0; + var$5 = jlr_Modifier_canonicalOrder.data; + var$6 = var$5.length; + var$7 = 0; + while (var$7 < var$6) { + if ($mod & var$5[var$7]) { + if ($sb.$length1 > 0) + jl_AbstractStringBuilder_append0($sb, 32); + jl_AbstractStringBuilder_append($sb, $modifierNames.data[$index]); + } + $index = $index + 1 | 0; + var$7 = var$7 + 1 | 0; + } + return jl_AbstractStringBuilder_toString($sb); }, -oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - if (oncie_Expression_containsAggregate($x)) - $default = (oncie_Expression_findAggregate($x)).$get1(); - return $default; +jlr_Modifier__clinit_ = () => { + jlr_Modifier_canonicalOrder = $rt_createIntArrayFromData([1, 4, 2, 1024, 8, 16, 128, 64, 32, 256, 2048, 512]); +}; +function jl_Class$MethodSignature() { + let a = this; jl_Object.call(a); + a.$name42 = null; + a.$parameterTypes0 = null; + a.$returnType0 = null; +} +let jl_Class$MethodSignature_equals = ($this, $o) => { + let $that; + if ($this === $o) + return 1; + if (!($o instanceof jl_Class$MethodSignature)) + return 0; + $that = $o; + return ju_Objects_equals($this.$name42, $that.$name42) && ju_Arrays_equals0($this.$parameterTypes0, $that.$parameterTypes0) && ju_Objects_equals($this.$returnType0, $that.$returnType0) ? 1 : 0; }, -oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_45_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_45_0_apply = (var$0, var$1) => { +jl_Class$MethodSignature_hashCode = $this => { + let var$1, var$2; + var$1 = $rt_createArray(jl_Object, 3); + var$2 = var$1.data; + var$2[0] = $this.$name42; + var$2[1] = jl_Integer_valueOf(ju_Arrays_hashCode($this.$parameterTypes0)); + var$2[2] = $this.$returnType0; + return ju_Arrays_hashCode(var$1); +}; +function oncia_ShowProceduresClause$_init_$lambda$_116_0() { + jl_Object.call(this); + this.$_0372 = null; +} +let oncia_ShowProceduresClause$_init_$lambda$_116_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling_error$(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(7026), var$1.$position()); + var$2 = var$0.$_0372; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position43); }; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_0() { +function oncia_ShowProceduresClause$_init_$lambda$_116_1() { jl_Object.call(this); - this.$_0498 = null; + this.$_0958 = null; } -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0498; - oncias_SemanticFunctionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = oncias_SemanticFunctionCheck$_MODULE$; - var$4 = new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_59_0; - var$4.$_0375 = var$1; - return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_specifyType$0(var$3, var$4, var$1)); +let oncia_ShowProceduresClause$_init_$lambda$_116_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0958; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position43); }; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_1() { +function oncia_ShowFunctionsClause$_init_$lambda$_117_0() { jl_Object.call(this); - this.$_01035 = null; + this.$_0391 = null; } -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_1_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = var$0.$_01035; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_61_0, (oncie_Expression_arguments(var$1)).$head()); - var$3 = (oncie_Expression_arguments(var$1)).$head(); - if (var$3 instanceof oncie_PatternExpression) { - oncias_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } else if (var$3 instanceof oncie_Property ? 1 : !(var$3 instanceof oncie_ContainerIndex) ? 0 : 1) { - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - var$3 = new s_Some; - oncias_SemanticError$_$callClinit(); - s_Some__init_0(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7027), var$1.$position7)); - var$1 = oncias_package$_liftSemanticErrorDefOption(var$4, var$3); - } else { - oncias_package$_$callClinit(); - var$5 = oncias_package$_MODULE$; - var$6 = new s_Some; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - var$7 = var$1.$name40; - var$8 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$8); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$8, $rt_s(7028)), var$7), $rt_s(7029)); - s_Some__init_0(var$6, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$8), var$3.$position())); - var$1 = oncias_package$_liftSemanticErrorDefOption(var$5, var$6); - } - return oncias_SemanticCheck_chain$(var$2, var$1); -}, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_2 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_2_apply = var$0 => { - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +let oncia_ShowFunctionsClause$_init_$lambda$_117_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0391; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position58); }; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3() { +function oncia_ShowFunctionsClause$_init_$lambda$_117_1() { jl_Object.call(this); - this.$_069 = null; + this.$_0893 = null; } -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3__init_ = (var$0, var$1) => { - var$0.$_069 = var$1; -}, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_069; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_64_0, (oncie_Expression_arguments(var$1)).$head()); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = oncias_SemanticFunctionCheck$_MODULE$; - var$5 = (oncie_Expression_arguments(var$1)).$head(); - var$6 = new oncias_SemanticAnalysisTooling$possibleTypes$lambda$_83_0; - var$6.$_0143 = var$4; - var$6.$_156 = var$5; - return oncias_SemanticCheck_chain$(var$2, oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_specifyType$0(var$4, var$6, var$1))); +let oncia_ShowFunctionsClause$_init_$lambda$_117_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0893; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position58); }; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4() { +function oncia_TerminateTransactionsClause$_init_$lambda$_103_0() { jl_Object.call(this); - this.$_0853 = null; + this.$_0796 = null; } -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4__init_0 = (var$0, var$1) => { - var$0.$_0853 = var$1; -}, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4__init_ = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4__init_0(var_1, var_0); - return var_1; +let oncia_TerminateTransactionsClause$_init_$lambda$_103_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0796; + return oncia_ShowColumn$_apply(oncia_ShowColumn$_MODULE$, var$1.$name8, var$1.$cypherType, var$2.$position112); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_0853; - oncias_SemanticFunctionCheck$_$callClinit(); - if (var$1.$calledFromUseClause) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); - var$5 = var$4.data; - oncias_SemanticError$_$callClinit(); - var$5[0] = oncias_SemanticError$_invalidUseOfGraphFunction(oncias_SemanticError$_MODULE$, $rt_s(5726), var$1.$position7); - var$1 = oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); - } - return var$1; +oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0 = $rt_classWithoutFields(), +oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0_apply = (var$0, var$1) => { + return var$1.$variable8; }; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5() { - jl_Object.call(this); - this.$_0269 = null; +function oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0() { + let a = this; jl_Object.call(a); + a.$_0785 = null; + a.$_1262 = null; } -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5__init_ = (var$0, var$1) => { - var$0.$_0269 = var$1; +let oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0_apply = (var$0, var$1) => { + return oncias_SemanticState_declareVariable(var$1, var$0.$_0785, var$0.$_1262, s_None$_MODULE$, 0, 0); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5__init_(var_1, var_0); - return var_1; +onih_NameUtil = $rt_classWithoutFields(), +onih_NameUtil_BACKTICK_UNICODE_ESCAPED = null, +onih_NameUtil_ALPHA_NUMERIC = null, +onih_NameUtil_GLOB = null, +onih_NameUtil_$callClinit = () => { + onih_NameUtil_$callClinit = $rt_eraseClinit(onih_NameUtil); + onih_NameUtil__clinit_(); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_0269; - oncias_SemanticFunctionCheck$_$callClinit(); - if (var$1.$calledFromUseClause) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +onih_NameUtil_forceEscapeName = $string => { + let var$2; + onih_NameUtil_$callClinit(); + var$2 = jl_String_replace(jur_Matcher_replaceAll(jur_Pattern_matcher(onih_NameUtil_BACKTICK_UNICODE_ESCAPED, $string), $rt_s(1135)), $rt_s(1135), $rt_s(1136)); + $string = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($string); + jl_AbstractStringBuilder_append0($string, 96); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append($string, var$2), 96); + return jl_AbstractStringBuilder_toString($string); +}, +onih_NameUtil__clinit_ = () => { + onih_NameUtil_BACKTICK_UNICODE_ESCAPED = jur_Pattern_compile($rt_s(6580)); + onih_NameUtil_ALPHA_NUMERIC = jur_Pattern_compile($rt_s(6581)); + onih_NameUtil_GLOB = jur_Pattern_compile($rt_s(6582)); +}, +sc_IterableOnceOps$$anon$1 = $rt_classWithoutFields(sr_AbstractFunction1), +sc_IterableOnceOps$$anon$1_apply = ($this, $v1) => { + return $this; +}, +oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_111_0 = $rt_classWithoutFields(), +oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_111_0_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + var$1 = var$1; + if (var$1 instanceof oncie_StringLiteral) { + var$2 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + if (sc_StringOps$_nonEmpty$extension(var$2, var$1.$value8)) { + var$3 = 1; + break a; + } + } + var$3 = 0; + } + return jl_Boolean_valueOf(var$3); +}; +function oncia_Union$$anonfun$defineUnionVariables$6$lambda$_56_0() { + let a = this; jl_Object.call(a); + a.$_01132 = null; + a.$_1386 = null; + a.$_2125 = null; +} +let oncia_Union$$anonfun$defineUnionVariables$6$lambda$_56_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_01132; + var$3 = var$0.$_1386; + var$4 = var$0.$_2125; + var$1 = oncius_TypeSpec_union(var$2.$types2, var$1.$types2); + var$1 = oncias_SemanticState_declareVariable(var$3.$elem.$state, var$4.$unionVariable0, var$1, s_None$_MODULE$, 0, 1); + if (!(var$1 instanceof su_Left)) { + if (!(var$1 instanceof su_Right)) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = oncias_SemanticCheckResult__init_(var$1.$value7, var$3.$elem.$errors0); } else { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); - var$5 = var$4.data; - oncias_SemanticError$_$callClinit(); - var$5[0] = oncias_SemanticError$_invalidUseOfGraphFunction(oncias_SemanticError$_MODULE$, $rt_s(5729), var$1.$position7); - var$1 = oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + var$1 = var$1.$value6; + var$2 = new oncias_SemanticCheckResult; + var$4 = var$3.$elem; + oncias_SemanticCheckResult__init_0(var$2, var$4.$state, var$4.$errors0.$prepended(var$1)); } - return var$1; + var$3.$elem = var$2; + return sr_BoxedUnit_UNIT; }; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6() { +function oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_0() { jl_Object.call(this); - this.$_0806 = null; + this.$_0677 = null; } -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6__init_ = (var$0, var$1) => { - var$0.$_0806 = var$1; -}, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6__init_(var_1, var_0); - return var_1; -}, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0806; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_70_0, (oncie_Expression_arguments(var$1)).$head()); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = oncias_SemanticFunctionCheck$_MODULE$; - var$5 = (oncie_Expression_arguments(var$1)).$head(); - var$6 = new oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_68_0; - var$6.$_0109 = var$5; - return oncias_SemanticCheck_chain$(var$2, oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_specifyType$0(var$4, var$6, var$1))); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7() { +let oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_1 = $rt_classWithoutFields(); +function sci_LazyList$$from$lambda$_25_0() { jl_Object.call(this); - this.$_0429 = null; + this.$_081 = null; } -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7__init_ = (var$0, var$1) => { - var$0.$_0429 = var$1; +let sci_LazyList$$from$lambda$_25_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_081; + sci_LazyList$_$callClinit(); + return sci_LazyList$_scala$collection$immutable$LazyList$$stateFromIterator(sci_LazyList$_MODULE$, var$1.$iterator0()); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0__init_ = var$0 => { + return; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0429; - oncias_SemanticFunctionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = oncias_SemanticFunctionCheck$_MODULE$; - var$4 = new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_72_0; - var$4.$_0566 = var$1; - return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_specifyType$0(var$3, var$4, var$1)); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8() { - jl_Object.call(this); - this.$_0975 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8__init_0 = (var$0, var$1) => { - var$0.$_0975 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0__init_(var_0); + return var_0; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8__init_ = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8__init_0(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_all(oncius_TypeSpec$_MODULE$); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0975; - oncias_SemanticFunctionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = oncias_SemanticFunctionCheck$_MODULE$; - var$4 = new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_74_0; - var$4.$_0329 = var$1; - return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_specifyType$0(var$3, var$4, var$1)); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9() { - jl_Object.call(this); - this.$_0335 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9__init_0 = (var$0, var$1) => { - var$0.$_0335 = var$1; +oncie_Ors = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1__init_ = var$0 => { + return; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9__init_ = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9__init_0(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1__init_(var_0); + return var_0; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9_apply = var$0 => { - let var$1; - var$1 = var$0.$_0335; - oncias_SemanticFunctionCheck$_$callClinit(); - return oncias_SemanticFunctionCheck$_checkPercentileRange(oncias_SemanticFunctionCheck$_MODULE$, var$1.$args0.$apply1(1)); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10() { - jl_Object.call(this); - this.$_0759 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10__init_ = (var$0, var$1) => { - var$0.$_0759 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2__init_0 = var$0 => { + return; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10_apply = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2_apply = var$0 => { let var$1; - var$1 = var$0.$_0759; - oncias_SemanticFunctionCheck$_$callClinit(); - return oncias_SemanticFunctionCheck$_checkPercentileRange(oncias_SemanticFunctionCheck$_MODULE$, var$1.$args0.$apply1(1)); + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11() { +function oncia_CypherTypeName() { jl_Object.call(this); - this.$_0272 = null; + this.$cypherType1 = null; } -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11__init_ = (var$0, var$1) => { - var$0.$_0272 = var$1; -}, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11__init_(var_1, var_0); - return var_1; +let oncia_CypherTypeName_semanticCheck = $this => { + return oncia_CypherTypeName_cypherTypeSemanticCheck($this, $this.$cypherType1); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; +oncia_CypherTypeName_cypherTypeSemanticCheck = ($this, $cypherType) => { + let $innerType; a: { - var$1 = var$0.$_0272; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticFunctionCheck$_MODULE$; - var$1 = var$1.$args0.$apply1(0); - var$3 = 0; - var$4 = null; - if (var$1 instanceof oncie_MapExpression) { - var$3 = 1; - var$4 = var$1; - if (var$4.$items1.$exists(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_0) && var$4.$items1.$exists(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_1)) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + while ($cypherType instanceof oncius_ListType) { + $innerType = $cypherType.$innerType; + if (!($innerType instanceof oncius_ClosedDynamicUnionType)) break a; - } - } - if (var$3 && var$4.$items1.$exists(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_2) && var$4.$items1.$exists(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_3)) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else if (!var$3) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$1 = sc_AbstractIterable_mkString(var$4.$items1.$map(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_4), $rt_s(45)); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(7030)), var$1), $rt_s(7031)); - var$1 = oncias_SemanticAnalysisTooling_error$(var$2, jl_AbstractStringBuilder_toString(var$5), var$4.$position106); + $cypherType = $innerType; } } - return var$1; -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12() { - jl_Object.call(this); - this.$_0855 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12__init_ = (var$0, var$1) => { - var$0.$_0855 = var$1; + if (!($cypherType instanceof oncius_ClosedDynamicUnionType)) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + $cypherType = $cypherType; + if (!sci_List_forall($cypherType.$sortedInnerTypes, new oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_0) && !sci_List_forall($cypherType.$sortedInnerTypes, new oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_2)) + return oncias_SemanticAnalysisTooling_error$($this, $rt_s(6583), $cypherType.$position56); + $innerType = $cypherType.$sortedInnerTypes; + $cypherType = new oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_1; + $cypherType.$_0331 = $this; + return oncias_SemanticAnalysisTooling_semanticCheckFold$($this, $innerType, $cypherType); +}, +oncia_CypherTypeName__init_0 = ($this, $cypherType) => { + $this.$cypherType1 = $cypherType; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12__init_(var_1, var_0); +oncia_CypherTypeName__init_ = var_0 => { + let var_1 = new oncia_CypherTypeName(); + oncia_CypherTypeName__init_0(var_1, var_0); return var_1; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0855; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_79_0, (oncie_Expression_arguments(var$1)).$head()); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = oncias_SemanticFunctionCheck$_MODULE$; - return oncias_SemanticCheck_chain$(var$2, oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_specifyType$0(var$4, oncias_SemanticAnalysisTooling_types$(var$4, (oncie_Expression_arguments(var$1)).$head()), var$1))); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13() { - jl_Object.call(this); - this.$_071 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13__init_ = (var$0, var$1) => { - var$0.$_071 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4__init_ = var$0 => { + return; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4__init_(var_0); + return var_0; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_071; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_81_0, (oncie_Expression_arguments(var$1)).$apply1(0)); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = oncias_SemanticFunctionCheck$_MODULE$; - return oncias_SemanticCheck_chain$(var$2, oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_specifyType$0(var$4, oncias_SemanticAnalysisTooling_types$(var$4, (oncie_Expression_arguments(var$1)).$apply1(0)), var$1))); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14() { - jl_Object.call(this); - this.$_0671 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14__init_ = (var$0, var$1) => { - var$0.$_0671 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5__init_ = var$0 => { + return; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0671; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticFunctionCheck$_MODULE$; - var$3 = new sci_$colon$colon; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); oncius_package$_$callClinit(); - sci_$colon$colon__init_0(var$3, oncius_package$_CTString(oncius_package$_MODULE$), sci_$colon$colon__init_(oncius_package$_CTBoolean(oncius_package$_MODULE$), sci_$colon$colon__init_(oncius_package$_CTInteger(oncius_package$_MODULE$), sci_Nil$_MODULE$))); - return oncias_SemanticFunctionCheck$_checkToSpecifiedTypeOfArgument(var$2, var$1, var$3); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15() { - jl_Object.call(this); - this.$_0470 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15__init_ = (var$0, var$1) => { - var$0.$_0470 = var$1; + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15__init_(var_1, var_0); - return var_1; +oncie_RelationshipUniquenessPredicate = $rt_classWithoutFields(0), +oncie_DifferentRelationships = $rt_classWithoutFields(oncie_Expression), +oncie_NoneOfRelationships = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6__init_ = var$0 => { + return; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15_apply = var$0 => { - let var$1; - var$1 = var$0.$_0470; - oncias_SemanticFunctionCheck$_$callClinit(); - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_84_0, var$1)); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16() { - jl_Object.call(this); - this.$_01057 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16__init_ = (var$0, var$1) => { - var$0.$_01057 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6__init_(var_0); + return var_0; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16__init_0 = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16__init_(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTRelationship(oncius_package$_MODULE$)).$invariant(); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_01057; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = oncias_SemanticFunctionCheck$_MODULE$; - oncief_ToString$_$callClinit(); - return oncias_SemanticFunctionCheck$_checkToSpecifiedTypeOfArgument(var$2, var$1, oncief_ToString$_validInputTypes); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17() { - jl_Object.call(this); - this.$_0575 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17__init_0 = (var$0, var$1) => { - var$0.$_0575 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7__init_0 = var$0 => { + return; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17__init_ = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17__init_0(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7__init_0(var_0); + return var_0; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17_apply = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTRelationship(oncius_package$_MODULE$)).$invariant(); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +}, +oncie_Disjoint = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTRelationship(oncius_package$_MODULE$)).$invariant(); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10_apply = var$0 => { let var$1; - var$1 = var$0.$_0575; - oncias_SemanticFunctionCheck$_$callClinit(); - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_87_0, var$1)); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18() { - jl_Object.call(this); - this.$_0907 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18__init_0 = (var$0, var$1) => { - var$0.$_0907 = var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return (oncius_package$_CTList(var$1, oncius_package$_CTRelationship(var$1))).$invariant(); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18__init_ = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18__init_0(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +}, +oncie_Unique = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12__init_(var_0); + return var_0; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18_apply = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12_apply = var$0 => { let var$1; - var$1 = var$0.$_0907; - oncias_SemanticFunctionCheck$_$callClinit(); - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_89_0, var$1)); -}; -function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19() { - jl_Object.call(this); - this.$_0370 = null; -} -let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19__init_0 = (var$0, var$1) => { - var$0.$_0370 = var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19__init_ = var_0 => { - let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19(); - oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19__init_0(var_1, var_0); - return var_1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13__init_(var_0); + return var_0; }, -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19_apply = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13_apply = var$0 => { let var$1; - var$1 = var$0.$_0370; - oncias_SemanticFunctionCheck$_$callClinit(); - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_91_0, var$1)); -}; -function oncias_SemanticPatternCheck$$declareVariables$lambda$_62_0() { - jl_Object.call(this); - this.$_0413 = null; -} -let oncias_SemanticPatternCheck$$declareVariables$lambda$_62_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0413; - oncias_SemanticPatternCheck$_$callClinit(); - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - if (!jl_Object_equals(oncie_Pattern$SemanticContext$Expression$_MODULE$, var$2)) { - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = oncias_SemanticPatternCheck$_MODULE$; - oncius_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticPatternCheck$_implicitVariable(var$4, var$1, oncius_package$_CTNode(oncius_package$_MODULE$))); - } else { - oncias_package$_$callClinit(); - var$1 = oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_ensureDefined$(oncias_SemanticPatternCheck$_MODULE$, var$1)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticPatternCheck$_MODULE$, new oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_139_0, var$1)); - } - return var$1; -}; -function oncias_SemanticPatternCheck$$declareVariables$lambda$_62_1() { - jl_Object.call(this); - this.$_0177 = null; -} -let oncias_SemanticPatternCheck$$declareVariables$lambda$_62_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0177; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticPatternCheck$_declareVariables(oncias_SemanticPatternCheck$_MODULE$, var$2, var$1); + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); }, -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_2 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_2_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - oncias_SemanticPatternCheck$_$callClinit(); - return var$1.$chain(var$2); -}; -function oncias_SemanticPatternCheck$$declareVariables$lambda$_62_3() { - let a = this; jl_Object.call(a); - a.$_056 = null; - a.$_125 = null; - a.$_213 = null; - a.$_37 = null; -} -let oncias_SemanticPatternCheck$$declareVariables$lambda$_62_3_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_056; - var$2 = var$0.$_125; - var$3 = var$0.$_213; - var$4 = var$0.$_37; - oncias_SemanticPatternCheck$_$callClinit(); - var$1 = oncias_SemanticPatternCheck$_declareVariables(oncias_SemanticPatternCheck$_MODULE$, var$1, var$2.$element()); - var$5 = oncias_SemanticPatternCheck$_MODULE$; - if (!(var$2 instanceof oncie_NamedPatternPart)) { - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else - var$2 = oncias_SemanticAnalysisTooling_error$(var$5, $rt_s(7032), var$2.$position80); - var$1 = var$1.$chain(var$2); - var$2 = new oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_144_0; - var$2.$_01075 = var$3; - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_ifOkChain$(var$1, var$2), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, var$4)); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14 = $rt_classWithoutFields(); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14__init_0 = var$0 => { + return; }, -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_4 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_4_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = var$1.$group0; - var$5 = new oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_146_0; - var$5.$_0239 = var$1; - return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_declareVariable$0(var$3, var$4, var$5, s_None$_MODULE$, 0)); -}; -function oncias_SemanticPatternCheck$$declareVariables$lambda$_62_5() { - let a = this; jl_Object.call(a); - a.$_079 = null; - a.$_133 = null; - a.$_217 = null; -} -let oncias_SemanticPatternCheck$$declareVariables$lambda$_62_5_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_079; - var$2 = var$0.$_133; - var$3 = var$0.$_217; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_(var$1)), oncias_SemanticPatternCheck$_declareVariables(oncias_SemanticPatternCheck$_MODULE$, var$2, var$3.$element())), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, var$1)), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, - oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_(var$1))); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14__init_0(var_0); + return var_0; }, -oncie_Pattern$SemanticContext$Merge$ = $rt_classWithoutFields(), -oncie_Pattern$SemanticContext$Merge$_MODULE$ = null, -oncie_Pattern$SemanticContext$Merge$__clinit_ = () => { - oncie_Pattern$SemanticContext$Merge$_MODULE$ = new oncie_Pattern$SemanticContext$Merge$; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncie_Pattern$SemanticContext$Merge$_name = $this => { - return oncie_Pattern$SemanticContext_name$($this); +oncie_VarLengthBound = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15__init_0 = var$0 => { + return; }, -oncie_Pattern$SemanticContext$Merge$_description = $this => { - return oncie_Pattern$SemanticContext_description$($this); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15__init_0(var_0); + return var_0; }, -oncie_Pattern$SemanticContext$Merge$_productArity = $this => { - return 0; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15_apply = var$0 => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); }, -oncie_Pattern$SemanticContext$Merge$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16__init_0 = var$0 => { + return; }, -oncie_Pattern$SemanticContext$Merge$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16__init_0(var_0); + return var_0; }, -oncie_Pattern$SemanticContext$Merge$_hashCode = $this => { - return 74232856; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncie_Pattern$SemanticContext$Merge$_toString = $this => { - return $rt_s(5120); +oncie_PartialPredicate = $rt_classWithoutFields(0), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17__init_0 = var$0 => { + return; }, -oncie_Pattern$SemanticContext$Create$ = $rt_classWithoutFields(), -oncie_Pattern$SemanticContext$Create$_MODULE$ = null, -oncie_Pattern$SemanticContext$Create$__clinit_ = () => { - oncie_Pattern$SemanticContext$Create$_MODULE$ = new oncie_Pattern$SemanticContext$Create$; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17__init_0(var_0); + return var_0; }, -oncie_Pattern$SemanticContext$Create$_name = $this => { - return oncie_Pattern$SemanticContext_name$($this); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17_apply = var$0 => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTRelationship(var$1))); }, -oncie_Pattern$SemanticContext$Create$_description = $this => { - return oncie_Pattern$SemanticContext_description$($this); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18__init_0 = var$0 => { + return; }, -oncie_Pattern$SemanticContext$Create$_productArity = $this => { - return 0; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18__init_0(var_0); + return var_0; }, -oncie_Pattern$SemanticContext$Create$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncie_Pattern$SemanticContext$Create$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_AndedPropertyInequalities = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19__init_ = var$0 => { + return; }, -oncie_Pattern$SemanticContext$Create$_hashCode = $this => { - return 2026540316; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19__init_(var_0); + return var_0; }, -oncie_Pattern$SemanticContext$Create$_toString = $this => { - return $rt_s(5081); -}; -function oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1() { - sr_AbstractPartialFunction.call(this); - this.$x5$1 = null; -} -let oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4; - if (!($x1 instanceof oncie_QuantifiedPath)) - return s_PartialFunction$$anon$1_apply($default, $x1); - $x1 = $x1; - oncias_SemanticError$_$callClinit(); - $default = oncias_SemanticError$_MODULE$; - var$3 = $this.$x5$1.$name11; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$3), $rt_s(7033)); - return oncias_SemanticError$_apply($default, jl_AbstractStringBuilder_toString(var$4), $x1.$position34); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + return sci_$colon$colon__init_(var$1.$_1(), sci_$colon$colon__init_(var$1.$_2(), sci_Nil$_MODULE$)); }, -oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1_isDefinedAt = ($this, $x1) => { - if (!($x1 instanceof oncie_QuantifiedPath)) - return 0; - return 1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + return var$1.$_1(); }; -function oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_95_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_21() { jl_Object.call(this); - this.$_0467 = null; + this.$_01158 = null; } -let oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_95_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0467; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = var$2.$name11; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$4), $rt_s(7034)), var$1), $rt_s(7035)); - return oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$5), var$2.$position10); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_21__init_0 = (var$0, var$1) => { + var$0.$_01158 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_21__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_21(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_21__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_22 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_22__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_22__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_22(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_22__init_0(var_0); + return var_0; }; -function oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_100_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23() { jl_Object.call(this); - this.$_01147 = null; + this.$_0472 = null; } -let oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_100_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_01147; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = var$2.$element2; - if (!(var$3 instanceof oncie_RelationshipChain)) { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } else { - var$4 = var$3.$relationship1; - var$5 = var$4.$variable5; - var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_99_0; - var$3.$_01121 = var$1; - var$3 = s_Option_flatMap(var$5, var$3); - if (var$3 instanceof s_Some && (oncias_Symbol_references(var$3.$value5)).$size() > 1) { - oncias_SemanticCheckResult$_$callClinit(); - var$5 = oncias_SemanticCheckResult$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$6 = var$2.$name11; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7036)), var$6), $rt_s(6969)); - var$1 = oncias_SemanticCheckResult$_error(var$5, var$1, oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$2), var$4.$position8)); - } else { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } - } - return var$1; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23__init_ = (var$0, var$1) => { + var$0.$_0472 = var$1; }, -oncias_checkNoParamMapsWhenMatching$ = $rt_classWithoutFields(), -oncias_checkNoParamMapsWhenMatching$_MODULE$ = null, -oncias_checkNoParamMapsWhenMatching$__clinit_ = () => { - oncias_checkNoParamMapsWhenMatching$_MODULE$ = new oncias_checkNoParamMapsWhenMatching$; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23__init_(var_1, var_0); + return var_1; }, -oncias_checkNoParamMapsWhenMatching$_apply = ($this, $properties, $ctx) => { - let $e, var$4, var$5, var$6; - a: { - $e = s_Tuple2__init_($properties, $ctx); - $properties = $e.$_10; - $ctx = $e.$_20; - if ($properties instanceof s_Some) { - $e = $properties.$value5; - if ($rt_isInstance($e, oncie_Parameter)) { - b: { - $properties = $e; - $e = oncie_Pattern$SemanticContext$Match$_MODULE$; - if ($ctx !== null) { - if (jl_Object_equals($ctx, $e)) - break a; - else - break b; - } - if ($e === null) - break a; - } - c: { - $e = oncie_Pattern$SemanticContext$Merge$_MODULE$; - if ($ctx !== null) { - if (!jl_Object_equals($ctx, $e)) - break c; - else - break a; - } - if ($e === null) - break a; - } - } - } - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } - oncias_package$_$callClinit(); - $e = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - $ctx = $ctx.$name(); - var$5 = $properties.$name(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(7037)), $ctx), $rt_s(7038)), var$5), $rt_s(7039)); - return oncias_package$_liftSemanticErrorDef($e, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$6), $properties.$position())); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23_apply = var$0 => { + let var$1; + var$1 = var$0.$_0472; + oncias_SemanticExpressionCheck$_$callClinit(); + return var$1.$typ0.$covariant(); }, -oncias_checkValidPropertyKeyNamesInPattern$ = $rt_classWithoutFields(), -oncias_checkValidPropertyKeyNamesInPattern$_MODULE$ = null, -oncias_checkValidPropertyKeyNamesInPattern$__clinit_ = () => { - oncias_checkValidPropertyKeyNamesInPattern$_MODULE$ = new oncias_checkValidPropertyKeyNamesInPattern$; +oncie_ASTCachedProperty = $rt_classWithoutFields(0), +oncie_CachedProperty = $rt_classWithoutFields(oncie_LogicalProperty); +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24() { + jl_Object.call(this); + this.$_01031 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24__init_ = (var$0, var$1) => { + var$0.$_01031 = var$1; }, -oncias_checkValidPropertyKeyNamesInPattern$_apply = ($this, $properties) => { - let $e; - if ($properties instanceof s_Some) { - $e = $properties.$value5; - if ($e instanceof oncie_MapExpression) { - $properties = $e; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(oncias_SemanticPatternCheck$_MODULE$, $properties.$items1.$map(new oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0)); - } - } - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24_apply = var$0 => { + let var$1; + var$1 = var$0.$_01031; + oncias_SemanticExpressionCheck$_$callClinit(); + return var$1; }; -function oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_77_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25() { jl_Object.call(this); - this.$_01019 = null; + this.$_0510 = null; } -let oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_77_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25__init_ = (var$0, var$1) => { + var$0.$_0510 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { b: { c: { - d: { - var$1 = var$1; - var$2 = var$0.$_01019; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = var$1.$folder(); - sr_ClassTag$_$callClinit(); - var$4 = onciu_Foldable$Folder_findAllByClass(var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpressionDynamicLeafExpression))); - var$5 = var$4.$map(new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_0); - var$6 = new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_1; - var$7 = new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_2; - var$7.$_01018 = var$5; - var$8 = new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_3; - var$8.$_0406 = var$6; - var$7 = oncias_SemanticAnalysisTooling_whenState$(oncias_SemanticPatternCheck$_MODULE$, var$6, var$7, var$8); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$6 = oncie_Pattern$SemanticContext$Match$_MODULE$; - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$6)) - break c; - else - break d; - } - if (var$6 === null) + var$2 = var$0.$_0510; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$3 = oncius_NodeType_invariant(oncius_package$_CTNode(oncius_package$_MODULE$)); + if (var$3 !== null) { + if (!oncius_TypeSpec_equals(var$3, var$1)) + break b; + else break c; } - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - var$6 = oncie_Pattern$SemanticContext$Expression$_MODULE$; - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$6)) - break c; + if (var$1 !== null) + break b; + } + var$4 = 1; + break a; + } + d: { + e: { + var$3 = oncius_RelationshipType_invariant(oncius_package$_CTRelationship(oncius_package$_MODULE$)); + if (var$3 !== null) { + if (!oncius_TypeSpec_equals(var$3, var$1)) + break d; else - break b; + break e; } - if (var$6 !== null) - break b; + if (var$1 !== null) + break d; } - var$9 = 0; + var$4 = 1; break a; } - var$9 = 1; + var$4 = 0; } - var$2 = new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_4; - var$2.$_0988 = var$4; - var$4 = oncias_SemanticCheck_chain$(var$7, oncias_SemanticCheck$_when(var$3, var$9, var$2)); + return !var$4 ? oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_1, var$2)) : oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_0, var$2)); +}, +oncie_CachedHasProperty = $rt_classWithoutFields(oncie_LogicalProperty), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$4, oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, var$5)), oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, var$5, var$1.$position())); - var$2 = oncias_SemanticExpressionCheck$_MODULE$; oncius_package$_$callClinit(); - var$1 = oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); - var$3 = oncius_package$_MODULE$; - return oncias_SemanticCheck_chain$(var$4, oncias_SemanticAnalysisTooling_expectType$1(var$2, oncius_TypeSpec_union(var$1, oncius_ListType_covariant(oncius_package$_CTList(var$3, oncius_package$_CTString(var$3)))), var$5)); + return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); }; -function oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_76_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28() { jl_Object.call(this); - this.$_01151 = null; + this.$_0662 = null; } -let oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_76_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_01151; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - if (var$1.$containsMatchSpecificLabelExpression()) { - d: { - var$4 = oncie_Pattern$SemanticContext$Match$_MODULE$; - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$4)) - break c; - else - break d; - } - if (var$4 === null) - break c; - } - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - var$4 = oncie_Pattern$SemanticContext$Expression$_MODULE$; - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$4)) - break c; - else - break b; - } - if (var$4 !== null) - break b; - } +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28__init_ = (var$0, var$1) => { + var$0.$_0662 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0662; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_SemanticState_ensureVariableDefined(var$1, var$2); + if (var$3 instanceof su_Right) { + var$1 = var$3.$value7; + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + } else { + if (!(var$3 instanceof su_Left)) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = var$3.$value6; + if (!var$1.$declareVariablesToSuppressDuplicateErrors) + var$1 = oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, var$1, var$3); + else { + oncius_package$_$callClinit(); + var$2 = oncias_SemanticState_declareVariable(var$1, var$2, oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)), s_None$_MODULE$, 0, 0); + if (var$2 instanceof su_Right) { + var$1 = var$2.$value7; + var$1 = oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, var$1, var$3); + } else { + if (!(var$2 instanceof su_Left)) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = var$2.$value6; + var$1 = oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, var$1, var$2); } - var$5 = 0; - break a; } - var$5 = 1; } - var$4 = new oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_168_0; - var$4.$_0543 = var$2; - var$4.$_1188 = var$1; - var$3 = oncias_SemanticCheck$_when(var$3, var$5, var$4); - oncias_SemanticExpressionCheck$_$callClinit(); - return var$3.$chain(oncias_SemanticExpressionCheck$_checkLabelExpression(oncias_SemanticExpressionCheck$_MODULE$, s_Some__init_(oncie_NODE_TYPE$_MODULE$), var$1)); -}; -function oncias_SemanticPatternCheck$$checkPredicate$lambda$_75_0() { - jl_Object.call(this); - this.$_0121 = null; -} -let oncias_SemanticPatternCheck$$checkPredicate$lambda$_75_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; + return var$1; +}, +oncie_GetDegree = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticFunctionCheck$ = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$_MODULE$ = null, +oncias_SemanticFunctionCheck$_$callClinit = () => { + oncias_SemanticFunctionCheck$_$callClinit = $rt_eraseClinit(oncias_SemanticFunctionCheck$); + oncias_SemanticFunctionCheck$__clinit_(); +}, +oncias_SemanticFunctionCheck$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticFunctionCheck$; + oncias_SemanticFunctionCheck$_$callClinit(); + oncias_SemanticFunctionCheck$_MODULE$ = var$1; +}, +oncias_SemanticFunctionCheck$_specifyType = ($this, $possibleTypes, $expression) => { + return oncias_SemanticAnalysisTooling_specifyType$($this, $possibleTypes, $expression); +}, +oncias_SemanticFunctionCheck$_expectType0 = ($this, $possibleTypes, $expressions, $typeMismatchContext) => { + return oncias_SemanticAnalysisTooling_expectType$2($this, $possibleTypes, $expressions, $typeMismatchContext); +}, +oncias_SemanticFunctionCheck$_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncias_SemanticFunctionCheck$_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncias_SemanticFunctionCheck$_types = ($this, $expression) => { + return oncias_SemanticAnalysisTooling_types$($this, $expression); +}, +oncias_SemanticFunctionCheck$_check = ($this, $ctx, $invocation) => { + let var$3, var$4, var$5, var$6, var$7; + var$3 = $invocation.$function1; + if (!(var$3 instanceof oncief_AggregatingFunction)) { + oncief_Reduce$_$callClinit(); + if (jl_Object_equals(oncief_Reduce$_MODULE$, var$3)) { + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6246)), $rt_s(6584)); + return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$4), $invocation.$position7); + } + if (var$3 !== null && !(!jl_String_equalsIgnoreCase($invocation.$name11, $rt_s(6585)) && !jl_String_equalsIgnoreCase($invocation.$name11, $rt_s(6586)))) { + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncias_SemanticFunctionCheck$$check$lambda$_49_1; + var$3.$_0442 = $invocation; + var$3.$_1152 = $ctx; + return oncias_SemanticCheck$_fromState(var$4, var$3); + } + if (var$3 === null) + $rt_throw(s_MatchError__init_(var$3)); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$5 = $invocation.$distinct3; + var$4 = new oncias_SemanticFunctionCheck$$check$lambda$_49_2; + var$4.$_0963 = $invocation; + var$4 = oncias_SemanticCheck$_when(var$3, var$5, var$4); + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(var$4.$chain(oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx, oncie_Expression_arguments($invocation))), oncias_SemanticFunctionCheck$_semanticCheck($this, $ctx, $invocation)); + } a: { b: { c: { - var$1 = var$1; - var$2 = var$0.$_0121; - oncias_SemanticPatternCheck$_$callClinit(); + var$4 = var$3; oncias_SemanticCheck$_$callClinit(); var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = oncie_Pattern$SemanticContext$Match$_MODULE$; - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$4)) - break c; - else + var$6 = oncie_Expression$SemanticContext$Simple$_MODULE$; + if ($ctx !== null) { + if (!jl_Object_equals($ctx, var$6)) break b; + else + break c; } - if (var$4 !== null) + if (var$6 !== null) break b; } - var$5 = 0; + var$5 = 1; break a; } - var$5 = 1; + var$5 = 0; } - var$4 = new oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_0; - var$4.$_0314 = var$2; - var$4.$_1117 = var$1; - var$2 = oncias_SemanticCheck$_when(var$3, var$5, var$4); - var$3 = new oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_1; - var$3.$_0760 = var$1; - return var$2.$ifOkChain(var$3); -}, -oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_0_apply = (var$0, var$1) => { - return oncias_SemanticPatternCheck$_$anonfun$checkValidJuxtaposition$1(var$1); -}, -oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_1 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_1_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - oncias_SemanticPatternCheck$_$callClinit(); - return var$1.$chain(var$2); + var$6 = new oncias_SemanticFunctionCheck$$check$lambda$_49_0; + var$6.$_01060 = var$4; + var$6.$_1360 = $invocation; + var$7 = oncias_SemanticCheck$_when(var$3, var$5, var$6); + oncias_OptionSemanticChecking$_$callClinit(); + var$4 = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, sc_AbstractIterable_collectFirst($invocation.$args0, new oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1), new oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_50_0); + oncias_SemanticExpressionCheck$_$callClinit(); + return var$7.$chain(oncias_SemanticCheck_chain$(var$4.$chain(oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, $ctx, oncie_Expression_arguments($invocation))), oncias_SemanticFunctionCheck$_semanticCheck($this, $ctx, $invocation))); }, -oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1_applyOrElse = ($this, $x1, $default) => { - if ($x1 instanceof oncie_QuantifiedPath) { - $x1 = $x1; - $default = new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0; - $default.$_0572 = $x1; - return $default; - } - if ($x1 instanceof oncie_ShortestPathsPatternPart) { - $x1 = $x1; - $default = new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1; - $default.$_01094 = $x1; - return $default; - } - if ($x1 instanceof oncie_RelationshipPattern) { - $default = $x1; - if ($default.$length3 instanceof s_Some) { - $x1 = new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2; - $x1.$_0451 = $default; - return $x1; - } +oncias_SemanticFunctionCheck$_semanticCheck = ($this, $ctx, $invocation) => { + let var$3, var$4, var$5; + var$3 = 0; + var$4 = $invocation.$function1; + oncief_Coalesce$_$callClinit(); + if (jl_Object_equals(oncief_Coalesce$_MODULE$, var$4)) { + $ctx = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkMinArgs($this, $invocation, 1, oncief_Coalesce$_signatures(oncief_Coalesce$_MODULE$))); + oncius_package$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$($ctx, oncias_SemanticAnalysisTooling_expectType$1($this, oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)), oncie_Expression_arguments($invocation))), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$0($this, oncias_SemanticAnalysisTooling_unionOfTypes$($this, oncie_Expression_arguments($invocation)), $invocation))); } - if (!$rt_isInstance($x1, oncia_FullSubqueryExpression)) - return s_PartialFunction$_fallback_fn; - return new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3; -}; -function oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_107_0() { - let a = this; jl_Object.call(a); - a.$_0117 = null; - a.$_145 = null; -} -let oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_107_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - a: { - var$1 = var$0.$_0117; - var$2 = var$0.$_145; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = onciap_DefaultPatternStringifier_apply4((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, var$1); - var$4 = onciu_Foldable_folder$(var$2); - sr_ClassTag$_$callClinit(); - switch ((onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_NodePattern)))).$length()) { - case 1: - break; - default: - var$2 = $rt_s(5792); - break a; - } - var$2 = $rt_s(7040); + oncief_Collect$_$callClinit(); + if (jl_Object_equals(oncief_Collect$_MODULE$, var$4)) { + $ctx = oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_Collect$_MODULE$, $invocation); + var$5 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_0; + var$5.$_0725 = $invocation; + return oncias_SemanticCheck$FlatMap_ifOkChain($ctx, var$5); } - var$5 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(7041)), var$3), $rt_s(7042)), var$2), 46); - return oncias_SemanticAnalysisTooling_error$(var$5, sc_StringOps$_stripMargin$extension(var$4, jl_AbstractStringBuilder_toString(var$6)), var$1.$position34); -}; -function oncias_SemanticPatternCheck$$checkQuantifier$lambda$_56_0() { - jl_Object.call(this); - this.$_0841 = null; -} -let oncias_SemanticPatternCheck$$checkQuantifier$lambda$_56_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - a: { - var$1 = var$0.$_0841; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = 0; - var$3 = null; - if (var$1 instanceof oncie_FixedQuantifier) { - var$4 = var$1.$value17; - if (var$4 instanceof oncie_UnsignedDecimalIntegerLiteral && jl_String_equals($rt_s(21), var$4.$stringVal0)) { - var$1 = oncias_SemanticAnalysisTooling_error$(oncias_SemanticPatternCheck$_MODULE$, $rt_s(7043), var$1.$position()); - break a; - } - } - if (var$1 instanceof oncie_IntervalQuantifier) { - var$2 = 1; - var$3 = var$1; - var$4 = var$3.$lower1; - var$5 = var$3.$upper1; - if (var$4 instanceof s_Some) { - var$4 = var$4.$value5; - if (var$5 instanceof s_Some) { - var$5 = var$5.$value5; - s_Predef$_$callClinit(); - if (Long_lt(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value(var$5)), sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value(var$4)))) { - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$6 = sc_StringOps$_MODULE$; - var$4 = oncie_DecimalIntegerLiteral_value(var$4); - var$5 = oncie_DecimalIntegerLiteral_value(var$5); - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(7044)), var$4), $rt_s(7045)), var$5), 46); - var$1 = oncias_SemanticAnalysisTooling_error$(var$3, sc_StringOps$_stripMargin$extension(var$6, jl_AbstractStringBuilder_toString(var$7)), var$1.$position()); - break a; - } - } - } - } - if (var$2) { - var$3 = var$3.$upper1; - if (var$3 instanceof s_Some) { - var$3 = var$3.$value5; - if (var$3 instanceof oncie_UnsignedDecimalIntegerLiteral && jl_String_equals($rt_s(21), var$3.$stringVal0)) { - var$1 = oncias_SemanticAnalysisTooling_error$(oncias_SemanticPatternCheck$_MODULE$, $rt_s(7043), var$1.$position()); - break a; - } + oncief_Exists$_$callClinit(); + if (jl_Object_equals(oncief_Exists$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1, oncief_Exists$_signatures(oncief_Exists$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1__init_0($invocation)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_specifyType($this, oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2__init_(), + $invocation))); + oncief_Head$_$callClinit(); + if (jl_Object_equals(oncief_Head$_MODULE$, var$4)) + return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1, oncief_Head$_signatures(oncief_Head$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3__init_0($invocation)); + oncief_GraphByName$_$callClinit(); + if (jl_Object_equals(oncief_GraphByName$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_GraphByName$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4__init_($invocation)); + oncief_GraphByElementId$_$callClinit(); + if (jl_Object_equals(oncief_GraphByElementId$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_GraphByElementId$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5__init_0($invocation)); + oncief_Last$_$callClinit(); + if (jl_Object_equals(oncief_Last$_MODULE$, var$4)) + return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1, oncief_Last$_signatures0(oncief_Last$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6__init_($invocation)); + oncief_Max$_$callClinit(); + if (jl_Object_equals(oncief_Max$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_Max$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7__init_($invocation)); + oncief_IsEmpty$_$callClinit(); + if (jl_Object_equals(oncief_IsEmpty$_MODULE$, var$4)) + return oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_IsEmpty$_MODULE$, $invocation); + oncief_Min$_$callClinit(); + if (jl_Object_equals(oncief_Min$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_Min$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8__init_($invocation)); + oncief_PercentileCont$_$callClinit(); + if (jl_Object_equals(oncief_PercentileCont$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_PercentileCont$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9__init_0($invocation)); + oncief_PercentileDisc$_$callClinit(); + if (jl_Object_equals(oncief_PercentileDisc$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_PercentileDisc$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10__init_0($invocation)); + oncief_Point$_$callClinit(); + if (jl_Object_equals(oncief_Point$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, oncief_Point$_MODULE$, $invocation), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11__init_($invocation)); + oncief_Reverse$_$callClinit(); + if (jl_Object_equals(oncief_Reverse$_MODULE$, var$4)) + return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1, oncief_Reverse$_signatures0(oncief_Reverse$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12__init_($invocation)); + oncief_Tail$_$callClinit(); + if (jl_Object_equals(oncief_Tail$_MODULE$, var$4)) + return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1, oncief_Tail$_signatures(oncief_Tail$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13__init_($invocation)); + oncief_ToBoolean$_$callClinit(); + if (jl_Object_equals(oncief_ToBoolean$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1, oncief_ToBoolean$_signatures0(oncief_ToBoolean$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14__init_($invocation)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15__init_0($invocation)); + oncief_ToString$_$callClinit(); + if (jl_Object_equals(oncief_ToString$_MODULE$, var$4)) + return oncias_SemanticCheck$FlatMap_ifOkChain(oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 1, oncief_ToString$_signatures0(oncief_ToString$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16__init_($invocation)), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17__init_0($invocation)); + if (jl_Object_equals(oncief_UnresolvedFunction$_MODULE$, var$4)) { + var$3 = 1; + if (sci_List_isEmpty(oncie_Namespace_parts(oncie_FunctionName_namespace(oncie_FunctionInvocation_functionName($invocation))))) { + var$5 = oncie_FunctionName_name(oncie_FunctionInvocation_functionName($invocation)); + ju_Locale_$callClinit(); + var$5 = jl_String_toLowerCase(var$5, ju_Locale_ROOT); + if (var$5 !== null && jl_String_equals(var$5, $rt_s(6587))) { + var$5 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef(var$5, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6588), oncie_FunctionInvocation_position($invocation))); } } + } + oncief_Distance$_$callClinit(); + if (jl_Object_equals(oncief_Distance$_MODULE$, var$4)) + return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 2, oncief_Distance$_signatures(oncief_Distance$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18__init_($invocation)); + oncief_WithinBBox$_$callClinit(); + if (jl_Object_equals(oncief_WithinBBox$_MODULE$, var$4)) + return oncias_SemanticCheck$Leaf_ifOkChain(oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkArgs($this, $invocation, 3, oncief_WithinBBox$_signatures(oncief_WithinBBox$_MODULE$))), oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19__init_0($invocation)); + if (var$3) { oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - return var$1; -}; -function jlr_Field() { - let a = this; jlr_AccessibleObject.call(a); - a.$declaringClass0 = null; - a.$name43 = null; - a.$modifiers = 0; - a.$accessLevel0 = 0; - a.$type6 = null; - a.$getter = null; - a.$setter = null; -} -let jlr_Field_toString = $this => { - let $sb; - $sb = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($sb); - jl_AbstractStringBuilder_append($sb, jlr_Modifier_toString(otcir_Flags_getModifiers($this.$modifiers, $this.$accessLevel0))); - if ($sb.$length1 > 0) - jl_AbstractStringBuilder_append0($sb, 32); - jl_AbstractStringBuilder_append($sb, jl_Class_getName($this.$type6)); - jl_AbstractStringBuilder_append0($sb, 32); - jl_AbstractStringBuilder_append($sb, jl_Class_getName($this.$declaringClass0)); - jl_AbstractStringBuilder_append($sb, $rt_s(403)); - jl_AbstractStringBuilder_append($sb, $this.$name43); - return jl_AbstractStringBuilder_toString($sb); -}; -function oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0() { - jl_Object.call(this); - this.$_0647 = null; -} -let oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(oncia_CreateConstraint_anyPropertyValueType$1(var$0.$_0647, var$1)); -}, -oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1 = $rt_classWithoutFields(), -oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$1)); + if (var$4 !== null) + return oncias_SemanticFunctionCheck$_checkTypeSignatures($this, $ctx, var$4, $invocation); + $rt_throw(s_MatchError__init_(var$4)); }, -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0 = $rt_classWithoutFields(), -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncius_ListType); +oncias_SemanticFunctionCheck$_checkTypeSignatures = ($this, $ctx, $f, $invocation) => { + let var$4; + $ctx = oncias_package$_MODULE$; + var$4 = oncief_Function_signatureLengths($f); + sm_Ordering$Int$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_package$_liftSemanticErrorDefOption($ctx, oncias_SemanticFunctionCheck$_checkMinArgs($this, $invocation, sr_BoxesRunTime_unboxToInt(sc_AbstractIterable_min(var$4, sm_Ordering$Int$_MODULE$)), $f.$signatures())), oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticFunctionCheck$_checkMaxArgs($this, $invocation, sr_BoxesRunTime_unboxToInt(sc_AbstractIterable_max(oncief_Function_signatureLengths($f), sm_Ordering$Int$_MODULE$)), + $f.$signatures()))), oncias_SemanticAnalysisTooling_checkTypes$($this, $invocation, $f.$signatures())); }, -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1 = $rt_classWithoutFields(), -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncius_ListType); +oncias_SemanticFunctionCheck$_checkArgs = ($this, $invocation, $n, $signatures) => { + let var$4, var$5, var$6, var$7; + s_package$_$callClinit(); + var$4 = s_package$_Vector(s_package$_MODULE$); + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(s_Option, 2); + var$7 = var$6.data; + var$7[0] = oncias_SemanticFunctionCheck$_checkMinArgs($this, $invocation, $n, $signatures); + var$7[1] = oncias_SemanticFunctionCheck$_checkMaxArgs($this, $invocation, $n, $signatures); + $invocation = var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6)); + s_Predef$_$callClinit(); + return ($invocation.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$))).$headOption(); }, -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2 = $rt_classWithoutFields(), -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2_apply = (var$0, var$1) => { - return oncia_CreateConstraint_additionalErrorInfo$1(var$1); +oncias_SemanticFunctionCheck$_checkMaxArgs = ($this, $invocation, $n, $signatures) => { + let var$4, var$5, var$6, var$7, var$8, var$9; + if ((oncie_Expression_arguments($invocation)).$length() <= $n) + return s_None$_MODULE$; + var$4 = new s_Some; + oncias_SemanticError$_$callClinit(); + var$5 = oncias_SemanticError$_MODULE$; + var$6 = (oncie_Expression_arguments($invocation)).$length(); + var$7 = $invocation.$name11; + $signatures = sc_AbstractIterable_mkString($signatures.$map(new oncias_SemanticFunctionCheck$$checkMaxArgs$lambda$_54_0), $rt_s(870)); + var$8 = $invocation.$function1.$name(); + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(6589)), var$8), 39); + s_Some__init_0(var$4, oncias_SemanticError$_invalidNumberOfProcedureOrFunctionArguments(var$5, $n, var$6, var$7, $signatures, jl_AbstractStringBuilder_toString(var$9), $invocation.$position7)); + return var$4; }, -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3 = $rt_classWithoutFields(), -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - return jl_Boolean_valueOf(sc_StringOps$_nonEmpty$extension(var$2, var$1)); +oncias_SemanticFunctionCheck$_checkMinArgs = ($this, $invocation, $n, $signatures) => { + let var$4, var$5, var$6, var$7, var$8, var$9; + if ((oncie_Expression_arguments($invocation)).$length() >= $n) + return s_None$_MODULE$; + var$4 = new s_Some; + oncias_SemanticError$_$callClinit(); + var$5 = oncias_SemanticError$_MODULE$; + var$6 = (oncie_Expression_arguments($invocation)).$length(); + var$7 = $invocation.$name11; + $signatures = sc_AbstractIterable_mkString($signatures.$map(new oncias_SemanticFunctionCheck$$checkMinArgs$lambda$_55_0), $rt_s(870)); + var$8 = $invocation.$function1.$name(); + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(6590)), var$8), 39); + s_Some__init_0(var$4, oncias_SemanticError$_invalidNumberOfProcedureOrFunctionArguments(var$5, $n, var$6, var$7, $signatures, jl_AbstractStringBuilder_toString(var$9), $invocation.$position7)); + return var$4; }, -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4 = $rt_classWithoutFields(), -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4_apply = var$0 => { - return $rt_s(4); -}; -function oncias_SemanticAnalysisTooling$expectType$lambda$_23_0() { - let a = this; jl_Object.call(a); - a.$_0240 = null; - a.$_192 = null; - a.$_237 = null; -} -let oncias_SemanticAnalysisTooling$expectType$lambda$_23_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0240; - return var$2.$expectType4(var$1, var$0.$_192, var$0.$_237, var$2.$expectType$default$4()); -}; -function oncias_SemanticAnalysisTooling$expectType$lambda$_13_0() { - let a = this; jl_Object.call(a); - a.$_0937 = null; - a.$_1329 = null; - a.$_2113 = null; -} -let oncias_SemanticAnalysisTooling$expectType$lambda$_13_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0937; - var$3 = var$0.$_1329; - var$4 = var$0.$_2113; - var$5 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_95_0; - var$5.$_0811 = var$3; - var$5.$_1276 = var$1; - return oncias_SemanticAnalysisTooling_expectType$0(var$2, var$1, var$5, var$4, oncias_SemanticAnalysisTooling_expectType$default$4$(var$2)); -}; -function oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0() { - let a = this; jl_Object.call(a); - a.$_0285 = null; - a.$_1108 = null; - a.$_241 = null; -} -let oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0285; - var$3 = var$0.$_1108; - var$4 = var$0.$_241; - var$5 = new oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_92_0; - var$5.$_0130 = var$3; - var$5.$_150 = var$1; - return oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0_apply(var$2.$specifyType0(var$5, var$4), var$1); -}; -function oncias_SemanticAnalysisTooling$checkTypes$lambda$_31_0() { - let a = this; jl_Object.call(a); - a.$_0531 = null; - a.$_1186 = null; - a.$_262 = null; -} -let oncias_SemanticAnalysisTooling$checkTypes$lambda$_31_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_0531; - var$3 = var$0.$_1186; - var$4 = var$0.$_262; - var$5 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_0; - var$5.$_0561 = var$4; - var$5 = var$3.$filter1(var$5); - var$6 = oncie_Expression_arguments(var$4); - var$7 = new s_Tuple2; - oncias_SemanticCheckResult$_$callClinit(); - s_Tuple2__init_0(var$7, var$5, oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1)); - var$1 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_1; - var$1.$_01113 = var$2; - var$1 = var$6.$foldLeft(var$7, var$1); - if (var$1 !== null) { - var$3 = var$1.$_1(); - var$5 = var$1.$_2(); - if (var$3 !== null) { - a: { - var$1 = s_Tuple2__init_(var$3, var$5); - var$3 = var$1.$_10; - var$1 = var$1.$_20; - if (var$3 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$3); - if (!var$3.$lengthCompare(0)) { - oncius_TypeSpec$_$callClinit(); - var$3 = oncius_TypeSpec$_all(oncius_TypeSpec$_MODULE$); - break a; - } - } - oncius_TypeSpec$_$callClinit(); - var$3 = var$3.$foldLeft(oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$), new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_3); - } - var$5 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_2; - var$5.$_0320 = var$3; - var$2 = oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0_apply(var$2.$specifyType0(var$5, var$4), var$1.$state); - if (!(var$2 instanceof su_Left)) { - if (!(var$2 instanceof su_Right)) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = oncias_SemanticCheckResult__init_(var$2.$value7, var$1.$errors0); - } else { - var$3 = var$2.$value6; - var$2 = oncias_SemanticCheckResult__init_(var$1.$state, var$1.$errors0.$appended(var$3)); - } - return var$2; +oncias_SemanticFunctionCheck$_checkPercentileRange = ($this, $expression) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$2 = 0; + var$3 = null; + if ($rt_isInstance($expression, oncie_DoubleLiteral)) { + var$2 = 1; + var$3 = $expression; + s_Predef$_$callClinit(); + if (sr_BoxesRunTime_unboxToDouble(oncie_DecimalDoubleLiteral_value(var$3)) >= 0.0 && sr_BoxesRunTime_unboxToDouble(oncie_DecimalDoubleLiteral_value(var$3)) <= 1.0) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } } - $rt_throw(s_MatchError__init_(var$1)); -}; -function oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0() { - let a = this; jl_Object.call(a); - a.$_032 = null; - a.$_116 = null; -} -let oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_032; - var$3 = var$0.$_116.$apply4(); - if (var$2 instanceof oncie_Variable) - var$1 = oncias_SemanticState_implicitVariable(var$1, var$2, var$3); - else { - s_package$_$callClinit(); - var$4 = s_package$_Right(s_package$_MODULE$); - var$5 = var$1.$typeTable0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - var$2 = var$5.$updated0(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$2), oncias_ExpressionTypeInfo$_apply(oncias_ExpressionTypeInfo$_MODULE$, var$3, s_None$_MODULE$)); - var$1 = su_Right$_apply(var$4, oncias_SemanticState_copy(var$1, var$1.$currentScope, var$2, var$1.$recordedScopes0, var$1.$notifications, var$1.$features, var$1.$declareVariablesToSuppressDuplicateErrors, var$1.$semanticCheckHasRunOnce, var$1.$targetGraph, var$1.$workingGraph)); - } - return var$1; -}; -function oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_39_0() { - let a = this; jl_Object.call(a); - a.$_0214 = null; - a.$_181 = null; -} -let oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_39_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0214; - var$3 = var$0.$_181; - oncius_TypeSpec$_$callClinit(); - var$4 = oncius_TypeSpec$_MODULE$; - var$3 = var$3.$iterator0(); - var$5 = new oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_116_0; - var$5.$_0865 = var$2; - var$5.$_1297 = var$1; - return oncius_TypeSpec$_union(var$4, sc_IterableOnceOps_toSeq$(var$3.$map5(var$5))); -}; -function oncias_SemanticAnalysisTooling$expectType$lambda$_19_0() { - let a = this; jl_Object.call(a); - a.$_01084 = null; - a.$_1365 = null; - a.$_2120 = null; -} -let oncias_SemanticAnalysisTooling$expectType$lambda$_19_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_01084; - var$3 = var$0.$_1365; - var$4 = var$0.$_2120; - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - var$5 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_102_0; - var$5.$_0452 = var$2; - var$5.$_1157 = var$4; - return var$3.$foldLeft(var$1, var$5); -}; -function oncias_SemanticAnalysisTooling$typeSwitch$lambda$_49_0() { - let a = this; jl_Object.call(a); - a.$_0341 = null; - a.$_1123 = null; -} -let oncias_SemanticAnalysisTooling$typeSwitch$lambda$_49_0_apply = (var$0, var$1) => { - return var$0.$_0341.$apply2(oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$1, var$0.$_1123))); -}; -function oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0() { - let a = this; jl_Object.call(a); - a.$_0973 = null; - a.$_1337 = null; -} -let oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0973; - var$3 = var$0.$_1337; - oncias_SemanticPatternCheck$_$callClinit(); - if (s_Option_isEmpty(var$2.$length3)) { - oncius_package$_$callClinit(); - var$2 = oncius_package$_CTRelationship(oncius_package$_MODULE$); - } else { - oncius_package$_$callClinit(); - var$2 = oncius_package$_MODULE$; - var$2 = oncius_package$_CTList(var$2, oncius_package$_CTRelationship(var$2)); - } - if (jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, var$3)) { - oncias_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticPatternCheck$_implicitVariable(oncias_SemanticPatternCheck$_MODULE$, var$1, var$2)); - } else { - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - if (!jl_Object_equals(oncie_Pattern$SemanticContext$Expression$_MODULE$, var$3)) { - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = oncias_SemanticPatternCheck$_MODULE$; - oncius_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$(var$4, var$1, var$2.$invariant())); - } else { - oncias_package$_$callClinit(); - var$3 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_ensureDefined$(oncias_SemanticPatternCheck$_MODULE$, var$1)); - var$4 = oncias_SemanticPatternCheck$_MODULE$; - var$5 = new oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_149_0; - var$5.$_0850 = var$2; - var$1 = oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_expectType$(var$4, var$5, var$1)); + if ($rt_isInstance($expression, oncie_IntegerLiteral)) { + var$4 = $expression; + if (!(!sr_BoxesRunTime_equalsNumObject(var$4.$value1(), jl_Long_valueOf(Long_ZERO)) && !sr_BoxesRunTime_equalsNumObject(var$4.$value1(), jl_Long_valueOf(Long_fromInt(1))))) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } } - return var$1; -}; -function oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_118_0() { - let a = this; jl_Object.call(a); - a.$_0373 = null; - a.$_1136 = null; -} -let oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_118_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0373; - var$2 = var$0.$_1136; - oncias_SemanticPatternCheck$_$callClinit(); - if (!(jl_Object_equals(oncie_Pattern$SemanticContext$Merge$_MODULE$, var$1) ? 1 : !jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, var$1) ? 0 : 1)) { - oncias_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); - } else { - var$3 = oncias_SemanticPatternCheck$_MODULE$; - oncie_Pattern$SemanticContext$_$callClinit(); - var$1 = oncie_Pattern$SemanticContext$_name(oncie_Pattern$SemanticContext$_MODULE$, var$1); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7046)), var$1); - var$1 = oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position8); + if (var$2) { + s_Predef$_$callClinit(); + $expression = jl_Double_valueOf(0.0); + var$5 = jl_Double_valueOf(1.0); + var$6 = jl_String_valueOf(oncie_DecimalDoubleLiteral_value(var$3)); + var$7 = oncie_DecimalDoubleLiteral_value(var$3); + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$8, $rt_s(3713)), var$7), $rt_s(6591)); + return oncias_SemanticAnalysisTooling_specifiedNumberOutOfRangeError$($this, $rt_s(6592), $rt_s(719), $expression, var$5, var$6, jl_AbstractStringBuilder_toString(var$8), var$3.$position47); } - return var$1; -}, -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - onciu_AnonymousVariableNameGenerator$_$callClinit(); - return jl_Boolean_valueOf(onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, var$1.$name4)); -}, -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_1 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_1_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - return jl_Boolean_valueOf(var$1.$containsGpmSpecificRelTypeExpression() ? 0 : 1); -}, -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_2 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_2_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = var$1.$folder(); - sr_ClassTag$_$callClinit(); - return onciu_Foldable$Folder_treeFindByClass(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction))); -}; -function oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_3() { - let a = this; jl_Object.call(a); - a.$_053 = null; - a.$_123 = null; -} -let oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_3_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_053; - var$3 = var$0.$_123; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$2, (var$3.$get1()).$replaceColonSyntax()); - var$4 = oncias_SemanticPatternCheck$_MODULE$; - return oncias_SemanticAnalysisTooling_error$(var$4, oncias_SemanticPatternCheck$_legacyRelationshipDisjunctionError(var$4, var$2, (var$3.$get1()).$containsIs(), 0), var$1.$position40); + if (!$rt_isInstance($expression, oncie_Literal)) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + $expression = $expression; + s_Predef$_$callClinit(); + var$5 = jl_Double_valueOf(0.0); + var$9 = jl_Double_valueOf(1.0); + var$4 = $expression.$asCanonicalStringVal(); + var$6 = $expression.$asCanonicalStringVal(); + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(3713)), var$6), $rt_s(6591)); + return oncias_SemanticAnalysisTooling_specifiedNumberOutOfRangeError$($this, $rt_s(6592), $rt_s(719), var$5, var$9, var$4, jl_AbstractStringBuilder_toString(var$7), $expression.$position()); }, -oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0 = $rt_classWithoutFields(), -oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0_apply = (var$0, var$1) => { - return var$1.$_1(); -}; -function oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_131_0() { - let a = this; jl_Object.call(a); - a.$_0247 = null; - a.$_196 = null; -} -let oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_131_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; +oncias_SemanticFunctionCheck$_withKey = ($this, $key, $kv) => { + let var$3; a: { b: { c: { - d: { - var$1 = var$1; - var$2 = var$0.$_0247; - var$3 = var$0.$_196; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_MODULE$; - var$5 = oncie_Pattern$SemanticContext$Merge$_MODULE$; - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$5)) - break c; - else - break d; - } - if (var$5 === null) - break c; - } - var$5 = oncie_Pattern$SemanticContext$Create$_MODULE$; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, var$5)) + $kv = ($kv.$_1()).$name5; + if ($kv !== null) { + if (!jl_String_equals($kv, $key)) break b; else break c; } - if (var$5 !== null) - break b; - } - if (var$1.$containsGpmSpecificRelTypeExpression()) { - var$6 = 1; - break a; - } - } - var$6 = 0; - } - var$5 = new oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_130_0; - var$5.$_0620 = var$2; - var$5.$_1211 = var$1; - var$2 = oncias_SemanticCheck$_when(var$4, var$6, var$5); - oncil_SolvableLabelExpression$_$callClinit(); - var$7 = oncil_SolvableLabelExpression$_extractLabelExpressionRec(oncil_SolvableLabelExpression$_MODULE$, var$1); - while (true) { - if (var$7 instanceof suc_TailCalls$Done) { - var$8 = var$7.$value21; - var$6 = ((sc_AbstractIterable_toSet(var$8.$allLabels.$map(new oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0))).$incl(oncil_NodeLabels$SomeUnknownLabels$_MODULE$)).$exists(var$8.$matches4); - var$4 = oncias_SemanticCheck$_MODULE$; - var$6 = var$6 ? 0 : 1; - var$5 = new oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_128_0; - var$5.$_0393 = var$1; - var$5.$_1144 = var$3; - var$3 = var$2.$chain(oncias_SemanticCheck$_when(var$4, var$6, var$5)); - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticExpressionCheck$_checkLabelExpression(oncias_SemanticExpressionCheck$_MODULE$, s_Some__init_(oncie_RELATIONSHIP_TYPE$_MODULE$), var$1)); - } - if (var$7 instanceof suc_TailCalls$Call) { - var$7 = var$7.$rest.$apply4(); - continue; - } - if (!(var$7 instanceof suc_TailCalls$Cont)) - $rt_throw(s_MatchError__init_(var$7)); - var$4 = var$7; - var$5 = var$4.$a8; - var$9 = var$4.$f0; - if (var$5 instanceof suc_TailCalls$Done) { - var$7 = var$9.$apply2(var$5.$value0()); - continue; - } - if (var$5 instanceof suc_TailCalls$Call) { - var$7 = suc_TailCalls$TailRec_flatMap(var$5.$rest.$apply4(), var$9); - continue; - } - if (!(var$5 instanceof suc_TailCalls$Cont)) - $rt_throw(s_MatchError__init_(var$5)); - var$4 = var$5; - var$5 = var$4.$a(); - var$4 = var$4.$f(); - var$8 = new suc_TailCalls$TailRec$result$lambda$_3_0; - var$8.$_0563 = var$4; - var$8.$_1192 = var$9; - if (var$5 === null) - break; - if (var$5 instanceof suc_TailCalls$Done) { - var$4 = var$5.$value0(); - var$7 = new suc_TailCalls$Call; - var$5 = new suc_TailCalls$TailRec$result$lambda$_3_1; - var$5.$_0645 = var$8; - var$5.$_1224 = var$4; - suc_TailCalls$Call__init_(var$7, var$5); - } else if (var$5 instanceof suc_TailCalls$Call) - var$7 = suc_TailCalls$Cont__init_0(var$5, var$8); - else { - if (!(var$5 instanceof suc_TailCalls$Cont)) - $rt_throw(s_MatchError__init_(var$5)); - var$7 = new suc_TailCalls$Cont; - var$4 = var$5.$a(); - var$9 = new suc_TailCalls$TailRec$result$lambda$_3_2; - var$9.$_02 = var$5; - var$9.$_15 = var$8; - suc_TailCalls$Cont__init_(var$7, var$4, var$9); - } - } - $rt_throw(null); -}; -function oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_137_0() { - let a = this; jl_Object.call(a); - a.$_0136 = null; - a.$_152 = null; -} -let oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_137_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0136; - var$3 = var$0.$_152; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_MODULE$; - var$5 = oncie_Pattern$SemanticContext$Match$_MODULE$; - if (var$2 !== null) { - if (jl_Object_equals(var$2, var$5)) - break c; - else - break b; - } - if (var$5 !== null) + if ($key !== null) break b; } - var$6 = 0; + var$3 = 1; break a; } - var$6 = 1; + var$3 = 0; } - var$5 = new oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_0; - var$5.$_0261 = var$2; - var$5.$_1102 = var$1; - var$2 = oncias_SemanticCheck$_when(var$4, var$6, var$5); - oncias_OptionSemanticChecking$_$callClinit(); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$5 = var$3.$length3; - var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_1; - var$3.$_0323 = var$1; - var$2 = var$2.$chain(oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$5, var$3)); - var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_2; - var$3.$_01008 = var$1; - return oncias_SemanticCheck_ifOkChain$(var$2, var$3); -}, -oncie_Pattern$SemanticContext$Insert$ = $rt_classWithoutFields(), -oncie_Pattern$SemanticContext$Insert$_MODULE$ = null, -oncie_Pattern$SemanticContext$Insert$__clinit_ = () => { - oncie_Pattern$SemanticContext$Insert$_MODULE$ = new oncie_Pattern$SemanticContext$Insert$; -}, -oncie_Pattern$SemanticContext$Insert$_name = $this => { - return oncie_Pattern$SemanticContext_name$($this); -}, -oncie_Pattern$SemanticContext$Insert$_description = $this => { - return oncie_Pattern$SemanticContext_description$($this); + return var$3; }, -oncie_Pattern$SemanticContext$Insert$_productArity = $this => { - return 0; +oncias_SemanticFunctionCheck$_checkToSpecifiedTypeOfArgument = ($this, $invocation, $allowedTypes) => { + let var$3, var$4; + var$3 = oncias_package$_MODULE$; + var$4 = new oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_59_0; + var$4.$_0376 = $invocation; + var$4.$_1134 = $allowedTypes; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); }, -oncie_Pattern$SemanticContext$Insert$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncias_SemanticFunctionCheck$_$anonfun$checkToSpecifiedTypeOfArgument$1 = ($invocation$3, $allowedTypes$1, $s) => { + let $argument, $specifiedType, $error, var$7, var$8, var$9, var$10; + oncias_SemanticFunctionCheck$_$callClinit(); + $argument = $invocation$3.$args0.$head(); + $specifiedType = (oncias_SemanticState_expressionType($s, $argument)).$specified; + $error = jl_Boolean_valueOf(0); + var$7 = new oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_106_0; + var$7.$_0204 = $specifiedType; + if (sr_BoxesRunTime_unboxToBoolean($allowedTypes$1.$foldLeft($error, var$7))) + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, $s); + $allowedTypes$1 = $invocation$3.$function1; + oncief_ToString$_$callClinit(); + if (!jl_Object_equals(oncief_ToString$_MODULE$, $allowedTypes$1)) { + oncief_ToBoolean$_$callClinit(); + if (!jl_Object_equals(oncief_ToBoolean$_MODULE$, $allowedTypes$1)) { + $error = oncias_SemanticCheckResult$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$7 = oncias_SemanticError$_MODULE$; + $allowedTypes$1 = oncius_TypeSpec_mkString($specifiedType, $rt_s(45)); + var$8 = $invocation$3.$function1.$name(); + $invocation$3 = sci_$colon$colon__init_($rt_s(129), sci_$colon$colon__init_($rt_s(713), sci_Nil$_MODULE$)); + $specifiedType = oncius_TypeSpec_mkString($specifiedType, $rt_s(45)); + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(6593)), $specifiedType); + $error = oncias_SemanticCheckResult$_error($error, $s, oncias_SemanticError$_invalidEntityType(var$7, $allowedTypes$1, var$8, $invocation$3, jl_AbstractStringBuilder_toString(var$9), $argument.$position())); + } else { + $error = oncias_SemanticCheckResult$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$7 = oncias_SemanticError$_MODULE$; + var$9 = oncius_TypeSpec_mkString($specifiedType, $rt_s(45)); + var$10 = sci_$colon$colon__init_($rt_s(129), sci_$colon$colon__init_($rt_s(721), sci_$colon$colon__init_($rt_s(713), sci_Nil$_MODULE$))); + $invocation$3 = oncius_TypeSpec_mkString($specifiedType, $rt_s(45)); + $allowedTypes$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($allowedTypes$1); + jl_StringBuilder_append(jl_StringBuilder_append($allowedTypes$1, $rt_s(6594)), $invocation$3); + $error = oncias_SemanticCheckResult$_error($error, $s, oncias_SemanticError$_invalidEntityType(var$7, var$9, $rt_s(6595), var$10, jl_AbstractStringBuilder_toString($allowedTypes$1), $argument.$position())); + } + } else { + $allowedTypes$1 = oncias_SemanticCheckResult$_MODULE$; + oncias_SemanticError$_$callClinit(); + $error = oncias_SemanticError$_MODULE$; + var$7 = oncius_TypeSpec_mkString($specifiedType, $rt_s(45)); + s_package$_$callClinit(); + var$9 = (s_package$_List(s_package$_MODULE$)).$from0(sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(129), $rt_s(127), $rt_s(721), $rt_s(733), $rt_s(713), $rt_s(751), $rt_s(742), $rt_s(745), $rt_s(748), $rt_s(739), $rt_s(736)]))); + $invocation$3 = oncius_TypeSpec_mkString($specifiedType, $rt_s(45)); + $specifiedType = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($specifiedType); + jl_StringBuilder_append(jl_StringBuilder_append($specifiedType, $rt_s(6596)), $invocation$3); + $error = oncias_SemanticCheckResult$_error($allowedTypes$1, $s, oncias_SemanticError$_invalidEntityType($error, var$7, $rt_s(6597), var$9, jl_AbstractStringBuilder_toString($specifiedType), $argument.$position())); + } + return $error; }, -oncie_Pattern$SemanticContext$Insert$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29__init_0 = var$0 => { + return; }, -oncie_Pattern$SemanticContext$Insert$_hashCode = $this => { - return (-2099925287); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29__init_0(var_0); + return var_0; }, -oncie_Pattern$SemanticContext$Insert$_toString = $this => { - return $rt_s(5087); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)), oncius_AnyType_invariant(oncius_package$_CTAny(oncius_package$_MODULE$))); }, -oncie_Pattern$SemanticContext$ = $rt_classWithoutFields(), -oncie_Pattern$SemanticContext$_MODULE$ = null, -oncie_Pattern$SemanticContext$_$callClinit = () => { - oncie_Pattern$SemanticContext$_$callClinit = $rt_eraseClinit(oncie_Pattern$SemanticContext$); - oncie_Pattern$SemanticContext$__clinit_(); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30__init_0 = var$0 => { + return; }, -oncie_Pattern$SemanticContext$__clinit_ = () => { - let var$1; - var$1 = new oncie_Pattern$SemanticContext$; - oncie_Pattern$SemanticContext$_$callClinit(); - oncie_Pattern$SemanticContext$_MODULE$ = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30__init_0(var_0); + return var_0; }, -oncie_Pattern$SemanticContext$_name = ($this, $ctx) => { - if (jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, $ctx)) - return $rt_s(5092); - if (jl_Object_equals(oncie_Pattern$SemanticContext$Merge$_MODULE$, $ctx)) - return $rt_s(4382); - if (jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, $ctx)) - return $rt_s(5070); - if (jl_Object_equals(oncie_Pattern$SemanticContext$Insert$_MODULE$, $ctx)) - return $rt_s(5086); - oncie_Pattern$SemanticContext$Expression$_$callClinit(); - if (jl_Object_equals(oncie_Pattern$SemanticContext$Expression$_MODULE$, $ctx)) - return $rt_s(943); - $rt_throw(s_MatchError__init_($ctx)); -}; -function oncias_SemanticAnalysisTooling$expectType$lambda$_17_0() { - let a = this; jl_Object.call(a); - a.$_0193 = null; - a.$_175 = null; - a.$_232 = null; - a.$_312 = null; -} -let oncias_SemanticAnalysisTooling$expectType$lambda$_17_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0193; - var$3 = var$0.$_175; - var$4 = var$0.$_232; - var$5 = var$0.$_312; - var$6 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_99_0; - var$6.$_049 = var$3; - var$6.$_121 = var$1; - return oncias_SemanticAnalysisTooling_expectType$0(var$2, var$1, var$6, var$4, var$5); -}; -function oncias_SemanticAnalysisTooling$expectType$lambda$_15_0() { - let a = this; jl_Object.call(a); - a.$_0571 = null; - a.$_1195 = null; -} -let oncias_SemanticAnalysisTooling$expectType$lambda$_15_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0571; - var$3 = var$0.$_1195; - var$4 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_97_0; - var$4.$_0947 = var$3; - return var$2.$expectType(var$4, var$1); -}; -function oncias_SemanticAnalysisTooling$types$lambda$_85_0() { - jl_Object.call(this); - this.$_0152 = null; -} -let oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply = (var$0, var$1) => { - return oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$1, var$0.$_0152)); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); }; -function oncias_SemanticAnalysisTooling$ensureDefined$lambda$_55_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31() { jl_Object.call(this); - this.$_0820 = null; + this.$_0836 = null; } -let oncias_SemanticAnalysisTooling$ensureDefined$lambda$_55_0_apply = (var$0, var$1) => { - return oncias_SemanticState_ensureVariableDefined(var$1, var$0.$_0820); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31__init_0 = (var$0, var$1) => { + var$0.$_0836 = var$1; }, -oncias_SemanticPatternCheck$$anonfun$4 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncias_SemanticPatternCheck$$anonfun$4_applyOrElse = ($this, $x, $default) => { - $x = $x; - oncias_SemanticPatternCheck$_$callClinit(); - return !s_Option_isDefined(oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, $x.$name5)) ? $default.$apply2($x) : s_Tuple2__init_((oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, $x.$name5)).$get1(), $x.$position26); -}; -function oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_73_0() { - jl_Object.call(this); - this.$_01160 = null; -} -let oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_73_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = (oncias_SemanticState_scope(var$1, var$0.$_01160)).$get1(); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_importValuesFromScope(var$1, var$2, oncias_SemanticState_importValuesFromScope$default$2(var$1))); -}; -function sc_StringOps$$anon$1() { - let a = this; sc_AbstractIterator.call(a); - a.$scala$collection$StringOps$$anon$$len = 0; - a.$scala$collection$StringOps$$anon$$index = 0; - a.$$this$2 = null; - a.$stripped$1 = 0; -} -let sc_StringOps$$anon$1_hasNext = $this => { - if ($this.$scala$collection$StringOps$$anon$$index < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1) - return 0; - return 1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31__init_0(var_1, var_0); + return var_1; }, -sc_StringOps$$anon$1_next = $this => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = $this.$scala$collection$StringOps$$anon$$index; - if (var$1 < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1) - var$2 = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - else { - while (true) { - var$3 = $this.$scala$collection$StringOps$$anon$$index; - if (var$3 < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1) - break; - var$3 = jl_String_charAt($this.$$this$2, var$3); - if (var$3 != 13 && var$3 != 10 ? 0 : 1) - break; - $this.$scala$collection$StringOps$$anon$$index = $this.$scala$collection$StringOps$$anon$$index + 1 | 0; - } - var$3 = $this.$scala$collection$StringOps$$anon$$index; - if (!(var$3 < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1)) { - var$4 = jl_String_charAt($this.$$this$2, var$3); - var$5 = $this.$scala$collection$StringOps$$anon$$index + 1 | 0; - $this.$scala$collection$StringOps$$anon$$index = var$5; - if (!(var$5 < $this.$scala$collection$StringOps$$anon$$len ? 0 : 1)) { - var$5 = jl_String_charAt($this.$$this$2, var$5); - if (var$4 == 13 && var$5 == 10 ? 1 : 0) - $this.$scala$collection$StringOps$$anon$$index = $this.$scala$collection$StringOps$$anon$$index + 1 | 0; - } - if (!$this.$stripped$1) - var$3 = $this.$scala$collection$StringOps$$anon$$index; - } - var$2 = jl_String_substring($this.$$this$2, var$1, var$3); - } - return var$2; -}; -function sc_StringOps$$stripMargin$extension$lambda$_68_0() { - let a = this; jl_Object.call(a); - a.$_0670 = 0; - a.$_1234 = null; -} -let sc_StringOps$$stripMargin$extension$lambda$_68_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0670; - var$3 = var$0.$_1234; - var$4 = var$1.$nativeString.length; - var$5 = 0; - while (true) { - var$6 = $rt_compare(var$5, var$4); - if (var$6 >= 0) - break; - if (jl_String_charAt(var$1, var$5) > 32) - break; - var$5 = var$5 + 1 | 0; - } - if (var$6 < 0 && jl_String_charAt(var$1, var$5) == var$2) - var$1 = jl_String_substring0(var$1, var$5 + 1 | 0); - jl_AbstractStringBuilder_append(var$3, var$1); - return var$3; -}; -function oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0() { - let a = this; jl_Object.call(a); - a.$_0386 = null; - a.$_1141 = null; -} -let oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0386; - var$3 = var$0.$_1141; - oncias_SemanticAnalysisTooling$_$callClinit(); - var$4 = var$1.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - var$5 = (var$4.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$2))).$location.$elem0; - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_importValuesFromScope(oncias_SemanticState_newChildScope(var$1), var$5, var$3)); -}; -function oncias_SemanticCheck$$warn$lambda$_4_0() { - jl_Object.call(this); - this.$_0877 = null; -} -let oncias_SemanticCheck$$warn$lambda$_4_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0877; - oncias_SemanticCheck$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); - var$2 = oncias_SemanticState_addNotification(var$1, var$2); - var$3 = new oncias_SemanticCheckResult; - s_package$_$callClinit(); - oncias_SemanticCheckResult__init_0(var$3, var$2, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); - return var$3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31_apply = var$0 => { + let var$1; + var$1 = var$0.$_0836; + oncias_SemanticExpressionCheck$_$callClinit(); + return (var$1.$parameterType()).$covariant(); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32() { + jl_Object.call(this); + this.$_0258 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32__init_0 = (var$0, var$1) => { + var$0.$_0258 = var$1; }, -onciu_RewritableJavascript$PROXY$9_262 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_262_numParameters = var$1 => { - return (jl_Integer_valueOf(8)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32__init_0(var_1, var_0); + return var_1; }, -onciu_RewritableJavascript$PROXY$9_263 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_263_numParameters = var$1 => { - return (jl_Integer_valueOf(9)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32_apply = var$0 => { + let var$1; + var$1 = var$0.$_0258; + oncias_SemanticExpressionCheck$_$callClinit(); + return var$1.$parameterType2.$covariant(); }, -onciu_RewritableJavascript$PROXY$9_264 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_264_numParameters = var$1 => { - return (jl_Integer_valueOf(7)).$value4; +oncie_LabelOrTypeCheckExpression = $rt_classWithoutFields(0); +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33() { + jl_Object.call(this); + this.$_0314 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33__init_ = (var$0, var$1) => { + var$0.$_0314 = var$1; }, -onciu_RewritableJavascript$PROXY$9_265 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_265_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33__init_(var_1, var_0); + return var_1; }, -onciu_RewritableJavascript$PROXY$9_266 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_266_numParameters = var$1 => { - return (jl_Integer_valueOf(9)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33_apply = var$0 => { + let var$1; + var$1 = var$0.$_0314; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticAnalysisTooling_error$(oncias_SemanticExpressionCheck$_MODULE$, $rt_s(6598), var$1.$position49); }, -onciu_RewritableJavascript$PROXY$9_267 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_267_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34__init_0 = var$0 => { + return; }, -onciu_RewritableJavascript$PROXY$9_268 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_268_numParameters = var$1 => { - return (jl_Integer_valueOf(8)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34__init_0(var_0); + return var_0; }, -onciu_RewritableJavascript$PROXY$9_269 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_269_numParameters = var$1 => { - return (jl_Integer_valueOf(9)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35() { + jl_Object.call(this); + this.$_0470 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35__init_ = (var$0, var$1) => { + var$0.$_0470 = var$1; }, -onciu_RewritableJavascript$PROXY$9_270 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_270_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35__init_(var_1, var_0); + return var_1; }, -onciu_RewritableJavascript$PROXY$9_271 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_271_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35_apply = var$0 => { + let var$1; + var$1 = var$0.$_0470; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_checkLabelExpression(oncias_SemanticExpressionCheck$_MODULE$, s_None$_MODULE$, var$1.$labelExpression8); }, -onciu_RewritableJavascript$PROXY$9_272 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_272_numParameters = var$1 => { - return (jl_Integer_valueOf(6)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36__init_0 = var$0 => { + return; }, -onciu_RewritableJavascript$PROXY$11_262 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_262_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36__init_0(var_0); + return var_0; }, -onciu_RewritableJavascript$PROXY$11_263 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_263_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -onciu_RewritableJavascript$PROXY$11_264 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_264_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncie_LabelCheckExpression = $rt_classWithoutFields(0), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37__init_0 = var$0 => { + return; }, -onciu_RewritableJavascript$PROXY$11_265 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_265_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37__init_0(var_0); + return var_0; }, -onciu_RewritableJavascript$PROXY$11_266 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_266_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); }, -onciu_RewritableJavascript$PROXY$11_267 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_267_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38__init_ = var$0 => { + return; }, -onciu_RewritableJavascript$PROXY$11_268 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_268_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38__init_(var_0); + return var_0; }, -onciu_RewritableJavascript$PROXY$11_269 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_269_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -onciu_RewritableJavascript$PROXY$11_270 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_270_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncie_DynamicLabelsOrTypeExpressions = $rt_classWithoutFields(0); +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39() { + let a = this; jl_Object.call(a); + a.$_038 = null; + a.$_118 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39__init_0 = (var$0, var$1, var$2) => { + var$0.$_038 = var$1; + var$0.$_118 = var$2; }, -onciu_RewritableJavascript$PROXY$11_271 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_271_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39__init_ = (var_0, var_1) => { + let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39__init_0(var_2, var_0, var_1); + return var_2; }, -onciu_RewritableJavascript$PROXY$11_272 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_272_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_038; + var$2 = var$0.$_118; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, var$1, var$2.$labelsOrTypes()); }, -onciu_RewritableJavascript$PROXY$7_673 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_673_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_CoerceTo__init_(var$3[0], var$3[1]); +oncie_HasTypes = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40__init_0 = var$0 => { + return; }, -onciu_RewritableJavascript$PROXY$7_674 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_674_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ImplicitProcedureArgument__init_(var$3[0], var$3[1], var$3[2]); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40__init_0(var_0); + return var_0; }, -onciu_RewritableJavascript$PROXY$9_273 = $rt_classWithoutFields(); -let onciu_RewritableJavascript$PROXY$9_273_numParameters = var$1 => { - return (jl_Integer_valueOf(3)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); }, -onciu_RewritableJavascript$PROXY$9_274 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_274_numParameters = var$1 => { - return (jl_Integer_valueOf(2)).$value4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41__init_0 = var$0 => { + return; }, -onciu_RewritableJavascript$PROXY$11_273 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_273_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41__init_0(var_0); + return var_0; }, -onciu_RewritableJavascript$PROXY$11_274 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_274_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -s_Enumeration$ValueOrdering$ = $rt_classWithoutFields(), -sc_SpecificIterableFactory = $rt_classWithoutFields(0), -s_Enumeration$ValueSet$ = $rt_classWithoutFields(), -s_Enumeration$ValueSet = $rt_classWithoutFields(sci_AbstractSet), -oncipv_Cypher5Parser$EndOfFileContext = $rt_classWithoutFields(oncip_AstRuleCtx), -oncipau_Util$ = $rt_classWithoutFields(), -oncipau_Util$_MODULE$ = null, -oncipau_Util$_$callClinit = () => { - oncipau_Util$_$callClinit = $rt_eraseClinit(oncipau_Util$); - oncipau_Util$__clinit_(); +oncie_DynamicLabelsExpressions = $rt_classWithoutFields(0); +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42() { + let a = this; jl_Object.call(a); + a.$_0221 = null; + a.$_184 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42__init_ = (var$0, var$1, var$2) => { + var$0.$_0221 = var$1; + var$0.$_184 = var$2; }, -oncipau_Util$__clinit_ = () => { - let var$1; - var$1 = new oncipau_Util$; - oncipau_Util$_$callClinit(); - oncipau_Util$_MODULE$ = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42__init_0 = (var_0, var_1) => { + let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42__init_(var_2, var_0, var_1); + return var_2; }, -oncipau_Util$_astOpt = ($this, $ctx) => { - if ($ctx === null) - return s_None$_MODULE$; - return s_Some__init_($ctx.$ast0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0221; + var$2 = var$0.$_184; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, var$1, var$2.$labels()); }, -oncipau_Util$_astOpt0 = ($this, $ctx, $default) => { - if ($ctx === null) - return $default.$apply4(); - return $ctx.$ast0; +oncie_HasDynamicType = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43__init_ = var$0 => { + return; }, -oncipau_Util$_astOptFromList = ($this, $list, $default) => { - let $size; - $size = $list.$size(); - if (!$size) - return $default.$apply4(); - if ($size == 1) - return s_Some__init_(($list.$get0(0)).$ast0); - $list = new jl_IllegalArgumentException; - $default = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($default); - jl_StringBuilder_append0(jl_StringBuilder_append($default, $rt_s(7047)), $size); - jl_Throwable__init_0($list, jl_AbstractStringBuilder_toString($default)); - $rt_throw($list); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43__init_(var_0); + return var_0; }, -oncipau_Util$_optUnsignedDecimalInt = ($this, $token) => { - if ($token === null) - return s_None$_MODULE$; - return s_Some__init_(oncipau_Util$_unsignedDecimalInt($this, $token)); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$)); }, -oncipau_Util$_unsignedDecimalInt = ($this, $token) => { - return oncie_UnsignedDecimalIntegerLiteral__init_($token.$getText(), oncipau_Util$_pos0($this, $token)); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44__init_ = var$0 => { + return; }, -oncipau_Util$_ctxChild = ($this, $ctx, $index) => { - return oncip_AstRuleCtx_getChild($ctx, $index); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44__init_(var_0); + return var_0; }, -oncipau_Util$_astChild = ($this, $ctx, $index) => { - return (oncip_AstRuleCtx_getChild($ctx, $index)).$ast0; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncipau_Util$_astSeq = ($this, $list, $from, $evidence$1) => { - let $size, $result, $dest; - $size = $list.$size(); - $result = $evidence$1.$newArray($size - $from | 0); - $dest = 0; - while ($from < $size) { - sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, $result, $dest, ($list.$get0($from)).$ast0); - $from = $from + 1 | 0; - $dest = $dest + 1 | 0; - } - return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, $result); +oncie_HasAnyDynamicType = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45__init_0 = var$0 => { + return; }, -oncipau_Util$_astSeq0 = ($this, $list, $offset, $step, $evidence$2) => { - let $size, var$6, $dest; - $size = $list.$size0; - var$6 = $rt_createArray(jl_Object, $size / $step | 0); - $dest = 0; - while ($offset < $size) { - sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, var$6, $dest, (ju_ArrayList_get($list, $offset)).$ast0); - $offset = $offset + $step | 0; - $dest = $dest + 1 | 0; - } - return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, var$6); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45__init_0(var_0); + return var_0; }, -oncipau_Util$_astSeqPositioned = ($this, $list, $func, $evidence$3) => { - let $size, $result, $i, $item; - $size = $list.$size(); - $result = $evidence$3.$newArray($size); - $i = 0; - while ($i < $size) { - $item = $list.$get0($i); - sr_ScalaRunTime$_array_update(sr_ScalaRunTime$_MODULE$, $result, $i, ($func.$apply2($item.$ast0)).$apply2(oncipau_Util$_pos($this, $item))); - $i = $i + 1 | 0; - } - return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, $result); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$)); }, -oncipau_Util$_astCtxReduce = ($this, $ctx, $f) => { - let $children, $size, $result, $i; - $children = $ctx.$children0; - $size = $children.$size0; - $result = (ju_ArrayList_get($children, 0)).$ast0; - $i = 1; - while ($i < $size) { - $result = $f.$apply3($result, ju_ArrayList_get($children, $i)); - $i = $i + 1 | 0; - } - return $result; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46__init_ = var$0 => { + return; }, -oncipau_Util$_astBinaryFold = ($this, $ctx, $f) => { - let var$3, $z, var$5, var$6; - var$3 = $ctx.$children0.$size0; - switch (var$3) { - case 1: - break; - default: - $z = $f.$apply39((oncipau_Util$_ctxChild($this, $ctx, 0)).$ast0, oncip_AstRuleCtx_getChild($ctx, 1), (oncipau_Util$_ctxChild($this, $ctx, 2)).$ast0); - if (var$3 == 3) - return $z; - var$5 = ((sc_IterableOps_drop$(scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, $ctx.$children0)), 3)).$toSeq()).$grouped0(2); - var$6 = new oncipau_Util$$astBinaryFold$lambda$_16_0; - var$6.$_0312 = $f; - var$6.$_1115 = $ctx; - return sc_IterableOnceOps_foldLeft$(var$5, $z, var$6); - } - return (oncipau_Util$_ctxChild($this, $ctx, 0)).$ast0; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46__init_(var_0); + return var_0; }, -oncipau_Util$_nodeChild = ($this, $ctx, $index) => { - return oncip_AstRuleCtx_getChild($ctx, $index); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncipau_Util$_nodeChildType = ($this, $ctx, $index) => { - return ((oncip_AstRuleCtx_getChild($ctx, $index)).$getSymbol()).$getType0(); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47__init_0 = var$0 => { + return; }, -oncipau_Util$_lastChild = ($this, $ctx) => { - $ctx = $ctx.$children0; - return ju_ArrayList_get($ctx, $ctx.$size0 - 1 | 0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47__init_0(var_0); + return var_0; }, -oncipau_Util$_astPairs = ($this, $as, $bs) => { - let $result, var$4, $i, $length; - $result = $rt_createArray(s_Tuple2, $as.$size()); - var$4 = $result.data; - $i = 0; - $length = $as.$size(); - while ($i < $length) { - var$4[$i] = s_Tuple2__init_(($as.$get0($i)).$ast0, ($bs.$get0($i)).$ast0); - $i = $i + 1 | 0; - } - return sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, $result); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$)); }, -oncipau_Util$_pos0 = ($this, $token) => { - return $token.$position(); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48__init_0 = var$0 => { + return; }, -oncipau_Util$_pos = ($this, $ctx) => { - return oncipau_Util$_pos0($this, $ctx.$start1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48__init_0(var_0); + return var_0; }, -oncipau_Util$_pos1 = ($this, $node) => { - return oncipau_Util$_pos0($this, $node.$getSymbol()); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncipau_Util$_inputText = ($this, $ctx) => { - return oncipl_CypherQueryAccess_inputText($ctx.$stop.$getTokenSource(), $ctx.$start1, $ctx.$stop); +oncias_SemanticExpressionCheck$FilteringExpressions$ = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$ = null, +oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit = () => { + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit = $rt_eraseClinit(oncias_SemanticExpressionCheck$FilteringExpressions$); + oncias_SemanticExpressionCheck$FilteringExpressions$__clinit_(); }, -oncipau_Util$_rangePos = ($this, $ctx) => { - let $start, $stopToken; - $start = oncipau_Util$_pos($this, $ctx); - $stopToken = $ctx.$stop; - return onciu_InputPosition$Simple_withInputLength($start, ($stopToken.$inputOffset($stopToken.$getStopIndex()) - $start.$offset0 | 0) + 1 | 0); +oncias_SemanticExpressionCheck$FilteringExpressions$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticExpressionCheck$FilteringExpressions$; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$ = var$1; }, -oncipau_Util$_ifExistsDo = ($this, $replace, $ifNotExists) => { +oncias_SemanticExpressionCheck$FilteringExpressions$_semanticCheck = ($this, $ctx, $e) => { let var$3, var$4, var$5; - var$3 = s_Tuple2$mcZZ$sp__init_($replace, $ifNotExists); - var$4 = var$3.$_1$mcZ$sp0; - var$5 = var$3.$_2$mcZ$sp0; - $replace = $rt_compare(1, var$4); - if (!$replace && 1 == var$5) { - oncia_IfExistsInvalidSyntax$_$callClinit(); - return oncia_IfExistsInvalidSyntax$_MODULE$; - } - if (!$replace && 0 == var$5) { - oncia_IfExistsReplace$_$callClinit(); - return oncia_IfExistsReplace$_MODULE$; - } - $replace = $rt_compare(0, var$4); - if (!$replace && 1 == var$5) { - oncia_IfExistsDoNothing$_$callClinit(); - return oncia_IfExistsDoNothing$_MODULE$; - } - if (!$replace && 0 == var$5) { - oncia_IfExistsThrowError$_$callClinit(); - return oncia_IfExistsThrowError$_MODULE$; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_SemanticCheck_chain$(oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, $ctx, $e.$expression0()), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0, $e.$expression0())); + $ctx = $e.$innerPredicate(); + if (!($ctx instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, $ctx)) + $rt_throw(s_MatchError__init_($ctx)); + oncias_SemanticCheck$_$callClinit(); + $ctx = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + $ctx = $ctx.$value5; + var$4 = oncias_SemanticExpressionCheck$_MODULE$; + var$5 = new oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0; + var$5.$_0369 = $e; + var$5.$_1131 = $ctx; + $ctx = oncias_SemanticAnalysisTooling_withScopedState$(var$4, var$5); } - $rt_throw(s_MatchError__init_(var$3)); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$3, $ctx), oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating0($this, $e.$innerPredicate()))); }, -oncipau_Util$_semanticDirection = ($this, $hasRightArrow, $hasLeftArrow) => { - if ($hasRightArrow && !$hasLeftArrow) { - oncie_SemanticDirection$OUTGOING$_$callClinit(); - return oncie_SemanticDirection$OUTGOING$_MODULE$; - } - if ($hasLeftArrow && !$hasRightArrow) { - oncie_SemanticDirection$INCOMING$_$callClinit(); - return oncie_SemanticDirection$INCOMING$_MODULE$; - } - return oncie_SemanticDirection$BOTH$_MODULE$; +oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating0 = ($this, $expression) => { + return s_Option_flatMap($expression, new oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0); +}, +oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating = ($this, $expression) => { + return s_Option_map(oncie_Expression_findAggregate($expression), new oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0); +}, +oncias_SemanticExpressionCheck$FilteringExpressions$_checkPredicateDefined = ($this, $e) => { + let var$2, var$3, var$4; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = s_Option_isEmpty($e.$innerPredicate()); + var$4 = new oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0; + var$4.$_01076 = $e; + return oncias_SemanticCheck$_when(var$2, var$3, var$4); +}, +oncias_SemanticExpressionCheck$FilteringExpressions$_possibleInnerTypes = ($this, $e) => { + let var$2; + var$2 = new oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0; + var$2.$_0754 = $e; + return var$2; }; -function oavr_Parser$TraceListener() { - jl_Object.call(this); - this.$this$021 = null; -} -let oncipv_Cypher25Parser$EndOfFileContext = $rt_classWithoutFields(oncip_AstRuleCtx); -function oavr_ProxyErrorListener() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49() { jl_Object.call(this); - this.$delegates = null; + this.$_0571 = null; } -let oavr_ProxyErrorListener_syntaxError = ($this, $recognizer, $offendingSymbol, $line, $charPositionInLine, $msg, $e) => { - let var$7; - var$7 = juc_CopyOnWriteArrayList_iterator($this.$delegates); - while (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext(var$7)) { - (juc_CopyOnWriteArrayList$ListIteratorImpl_next(var$7)).$syntaxError($recognizer, $offendingSymbol, $line, $charPositionInLine, $msg, $e); - } +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49__init_0 = (var$0, var$1) => { + var$0.$_0571 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0571; + oncias_SemanticExpressionCheck$_$callClinit(); + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_SemanticPatternCheck$_check2(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Match$_MODULE$, var$1.$pattern11); + oncias_OptionSemanticChecking$_$callClinit(); + var$3 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, var$1.$namedPath0, new oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_0)), oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, var$1.$predicate3, new oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_1)), oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, + var$1.$projection0)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$pattern11)); }; -function oncias_ExpressionTypeInfo() { - let a = this; jl_Object.call(a); - a.$actual0 = null; - a.$specified = null; - a.$expected2 = null; - a.$bitmap$044 = 0; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50() { + jl_Object.call(this); + this.$_0570 = null; } -let oncias_ExpressionTypeInfo_expected = $this => { - return $this.$expected2; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50__init_ = (var$0, var$1) => { + var$0.$_0570 = var$1; }, -oncias_ExpressionTypeInfo_actual = $this => { - let var$1, $$je; - if ($this.$bitmap$044) - return $this.$actual0; - jl_Object_monitorEnterSync($this); - a: { - try { - if ($this.$bitmap$044) - break a; - $this.$actual0 = s_Option_fold(oncias_ExpressionTypeInfo_expected($this), oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0__init_0($this), oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1__init_0($this)); - $this.$bitmap$044 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); - } - jl_Object_monitorExitSync($this); - return $this.$actual0; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50__init_(var_1, var_0); + return var_1; }, -oncias_ExpressionTypeInfo_productPrefix = $this => { - return $rt_s(7048); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0570; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncius_TypeSpec_wrapInList(oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2.$projection0), var$1)); }, -oncias_ExpressionTypeInfo_productArity = $this => { - return 2; +oncie_PathExpression = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51__init_0 = var$0 => { + return; }, -oncias_ExpressionTypeInfo_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$specified; - case 1: - return $this.$expected2; - default: - } - return sr_Statics_ioobe($x$1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51__init_0(var_0); + return var_0; }, -oncias_ExpressionTypeInfo_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); }, -oncias_ExpressionTypeInfo_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncie_PathStep = $rt_classWithoutFields(0); +function oncie_NodePathStep() { + let a = this; oncie_Expression.call(a); + a.$node4 = null; + a.$next13 = null; +} +let oncie_NodePathStep_node = $this => { + return $this.$node4; }, -oncias_ExpressionTypeInfo_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncie_NodePathStep_next = $this => { + return $this.$next13; }, -oncias_ExpressionTypeInfo_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_ExpressionTypeInfo) ? 0 : 1)) - break b; - d: { - $x$1 = $x$1; - var$2 = $this.$specified; - var$3 = $x$1.$specified; - if (var$2 !== null) { - if (!oncius_TypeSpec_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - var$3 = $this.$expected2; - $x$1 = $x$1.$expected2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52__init_0 = var$0 => { + return; }, -oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52__init_0(var_0); + return var_0; }, -oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - return oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTPath(oncius_package$_MODULE$)).$invariant(); }; -function oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0() { - jl_Object.call(this); - this.$_01093 = null; +function oncie_SingleRelationshipPathStep() { + let a = this; oncie_Expression.call(a); + a.$rel0 = null; + a.$direction2 = null; + a.$toNode3 = null; + a.$next14 = null; } -let oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_01093; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = var$1.$name(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$4), $rt_s(7049)); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$5), var$1.$position())); +let oncie_SingleRelationshipPathStep_rel = $this => { + return $this.$rel0; }, -oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - oncias_SemanticError$_$callClinit(); - return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7050), var$1.$position()); +oncie_SingleRelationshipPathStep_toNode = $this => { + return $this.$toNode3; }, -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciu_Foldable$TraverseChildren__init_(var$1.$foundSubquery()); +oncie_SingleRelationshipPathStep_next = $this => { + return $this.$next14; +}; +function oncie_MultiRelationshipPathStep() { + let a = this; oncie_Expression.call(a); + a.$rel3 = null; + a.$direction1 = null; + a.$toNode2 = null; + a.$next16 = null; +} +let oncie_MultiRelationshipPathStep_rel = $this => { + return $this.$rel3; }, -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciu_Foldable$SkipChildren__init_(var$1.$foundCrossReference()); +oncie_MultiRelationshipPathStep_toNode = $this => { + return $this.$toNode2; }, -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - return onciu_Foldable$TraverseChildren__init_(var$1); +oncie_MultiRelationshipPathStep_next = $this => { + return $this.$next16; +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53() { + jl_Object.call(this); + this.$_0663 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53__init_ = (var$0, var$1) => { + var$0.$_0663 = var$1; }, -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return onciu_Foldable$SkipChildren__init_(var$1.$foundSubquery()); + var$2 = var$0.$_0663; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, var$2, var$1); }; -function ju_AbstractList$SubAbstractList$SubAbstractListIterator() { - let a = this; jl_Object.call(a); - a.$subList0 = null; - a.$iterator4 = null; - a.$start12 = 0; - a.$end2 = 0; +function oncie_RepeatPathStep() { + let a = this; oncie_Expression.call(a); + a.$variables2 = null; + a.$toNode1 = null; + a.$next12 = null; } -let ju_AbstractList$SubAbstractList$SubAbstractListIterator_hasNext = $this => { - return $this.$iterator4.$nextIndex() >= $this.$end2 ? 0 : 1; +let oncie_RepeatPathStep_variables = $this => { + return $this.$variables2; }, -ju_AbstractList$SubAbstractList$SubAbstractListIterator_next = $this => { - let var$1; - if ($this.$iterator4.$nextIndex() < $this.$end2) - return $this.$iterator4.$next(); - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); +oncie_RepeatPathStep_toNode = $this => { + return $this.$toNode1; +}, +oncie_RepeatPathStep_next = $this => { + return $this.$next12; }; -function oavrd_DFAState$PredPrediction() { - let a = this; jl_Object.call(a); - a.$pred = null; - a.$alt1 = 0; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54() { + jl_Object.call(this); + this.$_0222 = null; } -let oavrd_DFAState$PredPrediction_toString = $this => { +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54__init_ = (var$0, var$1) => { + var$0.$_0222 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0222; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, var$2, var$1); +}, +oncie_NilPathStep = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_55 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_55__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_55__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_55(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_55__init_(var_0); + return var_0; +}, +oncias_SemanticPatternCheck$ = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$_MODULE$ = null, +oncias_SemanticPatternCheck$_stringifier0 = null, +oncias_SemanticPatternCheck$_$callClinit = () => { + oncias_SemanticPatternCheck$_$callClinit = $rt_eraseClinit(oncias_SemanticPatternCheck$); + oncias_SemanticPatternCheck$__clinit_(); +}, +oncias_SemanticPatternCheck$__clinit_ = () => { let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append(var$1, $rt_s(40)); - var$1 = jl_StringBuilder_append(var$1, $this.$pred); - jl_AbstractStringBuilder_append(var$1, $rt_s(45)); - var$1 = jl_StringBuilder_append0(var$1, $this.$alt1); - jl_AbstractStringBuilder_append(var$1, $rt_s(42)); - return jl_AbstractStringBuilder_toString(var$1); + var$1 = new oncias_SemanticPatternCheck$; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticPatternCheck$_MODULE$ = var$1; + onciap_ExpressionStringifier$_$callClinit(); + var$1 = onciap_ExpressionStringifier$_MODULE$; + oncias_SemanticPatternCheck$_stringifier0 = onciap_ExpressionStringifier$_apply(var$1, onciap_ExpressionStringifier$_apply$default$1(var$1), 0, 0, 0, 0); }, -oavr_WritableToken = $rt_classWithoutFields(0), -oncir_Deprecations$syntacticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$syntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0 = $rt_classWithoutFields(), -oncir_Deprecations$syntacticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$syntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +oncias_SemanticPatternCheck$_expectType1 = ($this, $possibleTypes, $opt) => { + return oncias_SemanticAnalysisTooling_expectType$3($this, $possibleTypes, $opt); +}, +oncias_SemanticPatternCheck$_expectType0 = ($this, $possibleTypes, $expression) => { + return oncias_SemanticAnalysisTooling_expectType$($this, $possibleTypes, $expression); +}, +oncias_SemanticPatternCheck$_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); +}, +oncias_SemanticPatternCheck$_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); +}, +oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope = ($this, $astNode, $exclude, $check) => { + let var$4, var$5; + oncias_SemanticAnalysisTooling$_$callClinit(); + var$4 = oncias_package$_MODULE$; + var$5 = new oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0; + var$5.$_0374 = $astNode; + var$5.$_1132 = $exclude; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5), $check.$apply4()), oncias_SemanticAnalysisTooling$_org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$popStateScope0(oncias_SemanticAnalysisTooling$_MODULE$)); +}, +oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope$default$2 = $this => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; +}, +oncias_SemanticPatternCheck$_implicitVariable = ($this, $v, $possibleType) => { + let var$3; + var$3 = new oncias_SemanticAnalysisTooling$implicitVariable$lambda$_69_0; + var$3.$_01106 = $v; + var$3.$_1378 = $possibleType; + return var$3; +}, +oncias_SemanticPatternCheck$_error = ($this, $semanticError) => { + return oncias_SemanticAnalysisTooling_error$1($this, $semanticError); +}, +oncias_SemanticPatternCheck$_check1 = ($this, $ctx, $pattern) => { + let var$3, var$4, var$5; + var$3 = $pattern.$patternParts(); + var$4 = new oncias_SemanticPatternCheck$$check$lambda$_49_0; + var$4.$_01011 = $ctx; + var$5 = oncias_SemanticAnalysisTooling_semanticCheckFold$($this, var$3, var$4); + var$3 = $pattern.$patternParts(); + var$4 = new oncias_SemanticPatternCheck$$check$lambda$_49_1; + var$4.$_093 = $ctx; + var$3 = var$5.$chain(oncias_SemanticAnalysisTooling_semanticCheckFold$($this, var$3, var$4)); + var$4 = new oncias_SemanticPatternCheck$$check$lambda$_49_2; + var$4.$_0619 = $pattern; + var$4 = oncias_SemanticCheck_ifOkChain$(var$3, var$4); + var$3 = new oncias_SemanticPatternCheck$$check$lambda$_49_3; + var$3.$_0289 = $ctx; + var$3.$_1105 = $pattern; + return oncias_SemanticCheck_ifOkChain$(var$4, var$3); +}, +oncias_SemanticPatternCheck$_check2 = ($this, $ctx, $pattern) => { + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$((oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $pattern.$element5)).$chain(oncias_SemanticPatternCheck$_check($this, $ctx, $pattern.$element5)), oncias_SemanticPatternCheck$_ensureNoRepeatedRelationships($this, $pattern)), oncias_SemanticPatternCheck$_ensureNoRepeatedVarLengthRelationships($this, $pattern)); +}, +oncias_SemanticPatternCheck$_declareVariables0 = ($this, $ctx, $part) => { + let $n, var$4; + while ($part instanceof oncie_PatternPartWithSelector) { + $part = $part.$part1; + } + if ($part instanceof oncie_NamedPatternPart) { + $part = $part; + $n = oncias_SemanticPatternCheck$_declareVariables0($this, $ctx, $part.$patternPart); + var$4 = oncias_package$_MODULE$; + $part = $part.$variable7; + oncius_package$_$callClinit(); + return $n.$chain(oncias_package$_liftSemanticEitherFunc(var$4, oncias_SemanticAnalysisTooling_declareVariable$($this, $part, (oncius_package$_CTPath(oncius_package$_MODULE$)).$invariant()))); + } + if (!($part instanceof oncie_PathPatternPart)) { + if (!($part instanceof oncie_ShortestPathsPatternPart)) + $rt_throw(s_MatchError__init_($part)); + return oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $part.$element2); + } + $part = $part; + $n = s_Tuple2__init_($part.$element4, $ctx); + var$4 = $n.$_20; + if ($n.$_10 instanceof oncie_NodePattern && jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, var$4)) + return oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $part.$element4); + $n = $n.$_10; + if (!($n instanceof oncie_NodePattern)) + return oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $part.$element4); + $part = $n; + oncias_OptionSemanticChecking$_$callClinit(); + return (oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, $part.$variable6, new oncias_SemanticPatternCheck$$declareVariables$lambda$_51_0)).$chain(oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $part)); +}, +oncias_SemanticPatternCheck$_check0 = ($this, $ctx, $part) => { + let var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; + while (!($part instanceof oncie_PatternPartWithSelector)) { + if (!($part instanceof oncie_NamedPatternPart)) { + if ($part instanceof oncie_PathPatternPart) + return oncias_SemanticPatternCheck$_check($this, $ctx, $part.$element4); + if (!($part instanceof oncie_ShortestPathsPatternPart)) + $rt_throw(s_MatchError__init_($part)); + a: { + $part = $part; + var$3 = $part.$name14; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$3), $rt_s(6599)); + var$4 = oncias_SemanticPatternCheck$_checkContext($this, $ctx, jl_AbstractStringBuilder_toString(var$4), $part.$position10); + var$3 = oncias_package$_MODULE$; + var$5 = onciu_Foldable_folder$($part.$element2); + var$6 = new oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1; + var$6.$x5$1 = $part; + var$7 = oncias_SemanticCheck_chain$(var$4, oncias_package$_liftSemanticErrorDefs(var$3, onciu_Foldable$Folder_treeCollect(var$5, var$6))); + var$4 = $part.$element2; + if (var$4 instanceof oncie_RelationshipChain) { + var$4 = var$4; + var$6 = var$4.$relationship1; + if (var$4.$element3 instanceof oncie_NodePattern && var$4.$rightNode0 !== null) { + var$4 = oncias_package$_MODULE$; + var$6 = var$6.$properties5; + var$3 = new oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_98_0; + var$3.$_01047 = $part; + var$4 = oncias_package$_liftSemanticErrorDefOption(var$4, s_Option_map(var$6, var$3)); + break a; + } + } + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$5 = $part.$name14; + var$6 = $part.$position10; + var$8 = var$6.$offset(); + var$9 = var$6.$line(); + var$10 = var$6.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + var$11 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$8, var$9, var$10), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N40), + var$8, var$9, var$10), ong_GqlParams$StringParam_fun, var$5)))); + var$3 = new oncias_SemanticError; + var$12 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$12); + jl_StringBuilder_append(jl_StringBuilder_append(var$12, var$5), $rt_s(6600)); + oncias_SemanticError__init_(var$3, var$11, jl_AbstractStringBuilder_toString(var$12), var$6); + var$4 = oncias_package$_liftSemanticErrorDef(var$4, var$3); + } + b: { + var$11 = oncias_SemanticCheck_chain$(var$7, var$4); + var$3 = s_Tuple2__init_($ctx, $part.$element2); + var$4 = var$3.$_10; + if (jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, var$4)) + var$4 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + else { + var$4 = var$3.$_20; + if (var$4 instanceof oncie_RelationshipChain) { + var$3 = var$4; + var$4 = var$3.$element3; + var$3 = var$3.$rightNode0; + if (var$4 instanceof oncie_NodePattern) { + var$4 = var$4; + if (var$3 !== null) { + if (!s_Option_isEmpty(var$4.$variable6) && !s_Option_isEmpty(var$3.$variable6)) { + var$4 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + break b; + } + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$12 = $part.$name14; + var$13 = $part.$position10; + ong_GqlStatusInfoCodes_$callClinit(); + var$3 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$13.$offset(), var$13.$line(), var$13.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N65), + var$13.$offset(), var$13.$line(), var$13.$column()), ong_GqlParams$StringParam_fun, var$12)))); + var$6 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(4992)), var$12), $rt_s(6601)); + oncias_SemanticError__init_(var$6, var$3, jl_AbstractStringBuilder_toString(var$5), var$13); + var$4 = oncias_package$_liftSemanticErrorDef(var$4, var$6); + break b; + } + } + } + var$4 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + } + } + var$6 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$11, var$4), oncias_SemanticPatternCheck$_checkLength$1($this, $part)); + var$4 = oncias_package$_MODULE$; + var$3 = new oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_103_0; + var$3.$_0477 = $part; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$6, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$3)), oncias_SemanticPatternCheck$_check($this, $ctx, $part.$element2)); + } + $part = $part.$patternPart; + } + $part = $part; + var$4 = $part.$selector1; + if (!$rt_isInstance(var$4, oncie_PatternPart$CountedSelector)) { + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$4 = var$4; + oncias_SemanticExpressionCheck$_$callClinit(); + var$4 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, var$4.$count0()); + } + var$3 = new oncias_SemanticPatternCheck$$check$lambda$_52_0; + var$3.$_0430 = $part; + var$3.$_1150 = $ctx; + return var$4.$ifOkChain(var$3); +}, +oncias_SemanticPatternCheck$_checkContext = ($this, $ctx, $name, $pos) => { + let var$4, var$5, var$6; + if (!(jl_Object_equals(oncie_Pattern$SemanticContext$Merge$_MODULE$, $ctx) ? 1 : !jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, $ctx) ? 0 : 1)) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$5 = oncias_SemanticError$_MODULE$; + $ctx = $ctx.$description(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $name), $rt_s(6602)), $ctx), $rt_s(6603)); + return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(var$5, jl_AbstractStringBuilder_toString(var$6), $pos)); +}, +oncias_SemanticPatternCheck$_stringifier = $this => { + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticPatternCheck$_stringifier0; +}, +oncias_SemanticPatternCheck$_check = ($this, $ctx, $element) => { + let var$3, $variable, $factors, $pattern, $quantifier, $patternPart, $where, var$10, var$11, var$12, var$13; + var$3 = 0; + $variable = null; + if (!($element instanceof oncie_RelationshipChain)) { + if ($element instanceof oncie_NodePattern) { + $element = $element; + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticPatternCheck$_checkNodeProperties($this, $ctx, oncie_NodePattern_properties($element)), oncias_SemanticPatternCheck$_checkLabelExpressions($this, $ctx, oncie_NodePattern_labelExpression($element))), oncias_SemanticPatternCheck$_checkDynamicLabels($this, $ctx, oncie_NodePattern_labelExpression($element), 1)), oncias_SemanticPatternCheck$_checkPredicate($this, $ctx, $element)); + } + if ($element instanceof oncie_PathConcatenation) { + $factors = oncie_PathConcatenation_factors($element); + return (sc_AbstractIterable_reduce($factors.$map(oncias_SemanticPatternCheck$$check$lambda$_58_0__init_0($ctx)), oncias_SemanticPatternCheck$$check$lambda$_58_1__init_0())).$chain(oncias_SemanticPatternCheck$_checkValidJuxtaposition($this, $factors)); + } + if ($element instanceof oncie_QuantifiedPath) { + $variable = $element; + $pattern = oncie_QuantifiedPath_part($variable); + $quantifier = oncie_QuantifiedPath_quantifier($variable); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$Leaf_chain(oncias_SemanticPatternCheck$_checkContext($this, $ctx, $rt_s(6604), $element.$position()), oncias_SemanticPatternCheck$_checkContainedPatterns$1($pattern)), oncias_SemanticPatternCheck$_checkRelCount$1($pattern, $variable)), oncias_SemanticPatternCheck$_checkQuantifier($this, $quantifier)), oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope($this, + $variable, oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope$default$2($this), oncias_SemanticPatternCheck$$check$lambda$_58_2__init_($ctx, $pattern, $variable))); + } + if ($element instanceof oncie_ParenthesizedPath) { + var$3 = 1; + $variable = $element; + $patternPart = oncie_ParenthesizedPath_part($variable); + if ($patternPart instanceof oncie_NamedPatternPart) { + $variable = oncie_NamedPatternPart_variable($patternPart); + oncias_SemanticError$_$callClinit(); + return oncias_SemanticPatternCheck$_error($this, oncias_SemanticError$_subPathAssignmentNotSupported(oncias_SemanticError$_MODULE$, oncie_Variable_position($variable))); + } + } + if (!var$3) + $rt_throw(s_MatchError__init_($element)); + $patternPart = oncie_ParenthesizedPath_part($variable); + $where = oncie_ParenthesizedPath_optionalWhereClause($variable); + return oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope($this, $variable, oncias_SemanticPatternCheck$_withScopedStateWithVariablesFromRecordedScope$default$2($this), oncias_SemanticPatternCheck$$check$lambda$_58_3__init_($ctx, $patternPart, $where, $variable)); + } + $element = $element; + $variable = oncias_SemanticPatternCheck$_check($this, $ctx, $element.$element3); + $factors = $element.$relationship1; + onciap_ExpressionStringifier$_$callClinit(); + $patternPart = onciap_ExpressionStringifier$_MODULE$; + $patternPart = onciap_ExpressionStringifier$_apply($patternPart, onciap_ExpressionStringifier$_apply$default$1($patternPart), 0, 0, 0, 0); + oncias_SemanticCheck$_$callClinit(); + $where = oncias_SemanticCheck$_MODULE$; + var$3 = s_Option_isEmpty($factors.$length3) ? 0 : 1; a: { - var$1 = var$1; - oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit(); - if (var$1 !== null) { - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - if (var$1 instanceof oncie_StringLiteral) { - var$3 = var$1; - if (jl_String_equalsIgnoreCase(var$2, $rt_s(4914))) { - var$4 = jl_String_equalsIgnoreCase(var$3.$value8, $rt_s(7051)); + $pattern = new oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_121_0; + $pattern.$_01088 = $ctx; + $pattern.$_1369 = $factors; + var$10 = oncias_SemanticCheck$_when($where, var$3, $pattern); + $where = $factors.$length3; + if ($where instanceof s_Some) { + $where = $where.$value5; + if ($where instanceof s_Some) { + $where = $where.$value5; + if ($where !== null) { + $pattern = $where.$lower2; + $quantifier = $where.$upper2; + oncias_SemanticExpressionCheck$_$callClinit(); + $where = (oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, $pattern)).$chain(oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, $quantifier)); break a; } } } - var$4 = 0; + $where = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - return jl_Boolean_valueOf(var$4); -}; -function onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0() { - jl_Object.call(this); - this.$_0234 = null; -} -let onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$0.$_0234.$apply2(var$1); - if (var$1 instanceof onciu_Foldable$SkipChildren) - var$1 = s_Tuple2__init_(var$1.$acc, s_None$_MODULE$); - else if (var$1 instanceof onciu_Foldable$TraverseChildren) - var$1 = s_Tuple2__init_(var$1.$acc0, s_Some__init_(new onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0)); + $where = var$10.$chain($where); + var$11 = $factors.$variable5; + var$12 = $factors.$labelExpression6; + var$13 = $factors.$length3; + var$10 = $factors.$properties5; + $quantifier = $factors.$predicate1; + if (jl_Object_equals(s_None$_MODULE$, var$13) && jl_Object_equals(s_None$_MODULE$, var$10) && jl_Object_equals(s_None$_MODULE$, $quantifier) && !s_Option_exists(var$11, new oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_0) && s_Option_forall(var$12, new oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_1)) + $pattern = s_None$_MODULE$; else { - if (!(var$1 instanceof onciu_Foldable$TraverseChildrenNewAccForSiblings)) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = var$1; - var$2 = var$1.$accumulatorForChildren; - var$3 = var$1.$forSiblings; - var$1 = s_Tuple2__init_(var$2, s_Some__init_(var$3)); + $pattern = $factors.$labelExpression6; + $pattern = !($pattern instanceof s_Some) ? s_None$_MODULE$ : s_Some__init_($pattern.$value5); } - return var$1; -}; -function onciap_DefaultExpressionStringifier$apply$lambda$_8_0() { - jl_Object.call(this); - this.$_01030 = null; -} -let onciap_DefaultExpressionStringifier$apply$lambda$_8_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_backtick(var$0.$_01030, var$1); -}; -function onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0() { - jl_Object.call(this); - this.$_01110 = null; -} -let onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom(var$0.$_01110, var$1); -}; -function onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1() { - jl_Object.call(this); - this.$_0609 = null; -} -let onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom(var$0.$_0609, var$1); -}; -function oncie_Expression$$anonfun$replaceAllOccurrencesBy$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$occurrencesToReplace$1 = null; - a.$replacement$1 = null; - a.$skipExpressionsWithComputedDependencies$1 = 0; -} -let oncie_Expression$$anonfun$replaceAllOccurrencesBy$1_applyOrElse = ($this, $x1, $default) => { - let $newScopeDependencies, var$4, var$5; - if ($x1 instanceof oncie_Variable) { - $newScopeDependencies = $x1; - var$4 = $this.$occurrencesToReplace$1; - onciu_Ref$_$callClinit(); - if (var$4.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, $newScopeDependencies))) - return oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0_apply($this.$replacement$1); + b: { + $quantifier = s_Option_flatMap($pattern, new oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_2); + oncias_OptionSemanticChecking$_$callClinit(); + var$10 = oncias_OptionSemanticChecking$_MODULE$; + var$13 = new oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_3; + var$13.$_0716 = $patternPart; + var$13.$_1242 = $pattern; + var$10 = oncias_SemanticCheck_chain$($where, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$10, $quantifier, var$13)); + $where = $factors.$labelExpression6; + $pattern = $factors.$length3; + if ($where instanceof s_Some) { + $quantifier = $where.$value5; + if ($pattern instanceof s_Some && $quantifier.$containsGpmSpecificRelTypeExpression()) { + $where = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $where = oncias_SemanticAnalysisTooling_error$($this, sc_StringOps$_stripMargin$extension($where, $rt_s(6605)), $quantifier.$position()); + break b; + } + } + $where = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - if ($rt_isInstance($x1, oncie_ExpressionWithComputedDependencies)) { - var$5 = $x1; - if (!$this.$skipExpressionsWithComputedDependencies$1) { - $x1 = var$5.$scopeDependencies(); - $default = new oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0; - $default.$_0943 = $this; - return var$5.$withComputedScopeDependencies($x1.$map($default)); + $quantifier = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$10, $where), oncias_checkNoParamMapsWhenMatching$_apply(oncias_checkNoParamMapsWhenMatching$_MODULE$, $factors.$properties5, $ctx)); + oncias_SemanticExpressionCheck$_$callClinit(); + $pattern = oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, $factors.$properties5); + oncius_package$_$callClinit(); + $where = oncias_SemanticCheck$FlatMap_chain($quantifier, $pattern.$chain(oncias_SemanticPatternCheck$_expectType1($this, oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)), oncie_RelationshipPattern_properties($factors)))); + oncias_checkValidPropertyKeyNamesInPattern$_$callClinit(); + return oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($variable.$chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain(oncias_SemanticCheck$FlatMap_chain($where, oncias_checkValidPropertyKeyNamesInPattern$_apply(oncias_checkValidPropertyKeyNamesInPattern$_MODULE$, oncie_RelationshipPattern_properties($factors))), oncias_SemanticPatternCheck$_checkLabelExpressions$1($ctx, oncie_RelationshipPattern_labelExpression($factors), $patternPart)), + oncias_SemanticPatternCheck$_checkPredicate$1($ctx, $factors)), oncias_SemanticPatternCheck$_checkNotUndirectedWhenCreating$1($this, $ctx, $factors))), oncias_SemanticPatternCheck$_checkDynamicLabels($this, $ctx, oncie_RelationshipPattern_labelExpression(oncie_RelationshipChain_relationship($element)), 0)), oncias_SemanticPatternCheck$_check($this, $ctx, oncie_RelationshipChain_rightNode($element))); +}, +oncias_SemanticPatternCheck$_getTypeString = ($this, $factor) => { + if ($factor instanceof oncie_ParenthesizedPath) + return $rt_s(6606); + if ($factor instanceof oncie_QuantifiedPath) + return $rt_s(6607); + if ($factor instanceof oncie_RelationshipChain) + return $rt_s(6608); + if ($factor instanceof oncie_NodePattern) + return $rt_s(6609); + $rt_throw(s_MatchError__init_($factor)); +}, +oncias_SemanticPatternCheck$_checkValidJuxtaposition = ($this, $factors) => { + return (sc_Iterator_map$(sc_AbstractIterable_sliding($factors, 2), new oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_0)).$reduceLeft(new oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_1); +}, +oncias_SemanticPatternCheck$_checkQuantifier = ($this, $quantifier) => { + let var$2, var$3, var$4; + if ($quantifier instanceof oncie_FixedQuantifier) { + var$2 = $quantifier.$value17; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, var$2); + } else if (!($quantifier instanceof oncie_IntervalQuantifier)) { + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$3 = $quantifier; + var$2 = var$3.$lower1; + var$4 = var$3.$upper1; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = (oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, var$2)).$chain(oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, var$4)); + } + var$2 = new oncias_SemanticPatternCheck$$checkQuantifier$lambda$_61_0; + var$2.$_0699 = $quantifier; + return var$3.$ifOkChain(var$2); +}, +oncias_SemanticPatternCheck$_declareVariables = ($this, $ctx, $element) => { + let $normalized, $factors, $entityBindings, $pattern, $pattern_0; + if ($element instanceof oncie_RelationshipChain) { + $element = $element; + $normalized = oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $element.$element3); + $factors = $element.$relationship1; + oncias_OptionSemanticChecking$_$callClinit(); + $entityBindings = oncias_OptionSemanticChecking$_MODULE$; + $pattern = $factors.$variable5; + $pattern_0 = new oncias_SemanticPatternCheck$$declareVariables$lambda$_68_0; + $pattern_0.$_0527 = $factors; + $pattern_0.$_1175 = $ctx; + return oncias_SemanticCheck_chain$($normalized.$chain(oncias_OptionSemanticChecking$_foldSemanticCheck$extension($entityBindings, $pattern, $pattern_0)), oncias_SemanticPatternCheck$_declareVariables($this, $ctx, $element.$rightNode0)); + } + if ($element instanceof oncie_NodePattern) { + $element = $element; + oncias_OptionSemanticChecking$_$callClinit(); + $normalized = oncias_OptionSemanticChecking$_MODULE$; + $entityBindings = $element.$variable6; + $element = new oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0; + $element.$_0969 = $ctx; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension($normalized, $entityBindings, $element); + } + if ($element instanceof oncie_PathConcatenation) { + $factors = $element.$factors0; + $element = new oncias_SemanticPatternCheck$$declareVariables$lambda$_65_1; + $element.$_0744 = $ctx; + return ($factors.$map($element)).$reduceLeft(new oncias_SemanticPatternCheck$$declareVariables$lambda$_65_2); + } + if ($element instanceof oncie_QuantifiedPath) { + $element = $element; + $pattern_0 = $element.$part2; + $entityBindings = $element.$variableGroupings; + $normalized = new oncias_SemanticPatternCheck$$declareVariables$lambda$_65_3; + $normalized.$_0844 = $ctx; + $normalized.$_1284 = $pattern_0; + $normalized.$_290 = $entityBindings; + $normalized.$_328 = $element; + return oncias_SemanticCheck_chain$(oncias_SemanticAnalysisTooling_withScopedState$($this, $normalized), oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, $entityBindings, new oncias_SemanticPatternCheck$$declareVariables$lambda$_65_4)); + } + if (!($element instanceof oncie_ParenthesizedPath)) + $rt_throw(s_MatchError__init_($element)); + $element = $element; + $pattern = $element.$part0; + $normalized = oncias_SemanticPatternCheck$_normalizeParenthesizedPath($this, $element); + if (!($pattern instanceof oncie_NamedPatternPart)) { + oncias_SemanticCheck$_$callClinit(); + $element = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + $element = $pattern; + $entityBindings = oncias_package$_MODULE$; + $pattern_0 = $element.$variable7; + oncius_package$_$callClinit(); + $element = oncias_package$_liftSemanticEitherFunc($entityBindings, oncias_SemanticAnalysisTooling_declareVariable$($this, $pattern_0, (oncius_package$_CTPath(oncius_package$_MODULE$)).$invariant())); + } + $entityBindings = new oncias_SemanticPatternCheck$$declareVariables$lambda$_65_5; + $entityBindings.$_0633 = $normalized; + $entityBindings.$_1214 = $ctx; + $entityBindings.$_272 = $pattern; + $entityBindings = oncias_SemanticCheck_chain$($element, oncias_SemanticAnalysisTooling_withScopedState$($this, $entityBindings)); + $ctx = oncias_package$_MODULE$; + $element = new oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_75_0; + $element.$_0241 = $normalized; + return oncias_SemanticCheck_chain$($entityBindings, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck($ctx, $element)); +}, +oncias_SemanticPatternCheck$_ensureNoReferencesOutFromPatternElement = ($this, $pattern, $patternElement, $dependencies, $patternElementErrorMessageDescription) => { + let var$5, var$6; + var$5 = oncias_package$_MODULE$; + var$6 = new oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_72_0; + var$6.$_0209 = $pattern; + var$6.$_177 = $dependencies; + var$6.$_228 = $patternElement; + var$6.$_311 = $patternElementErrorMessageDescription; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$5, var$6); +}, +oncias_SemanticPatternCheck$_ensureNoRepeatedRelationships = ($this, $astNode) => { + let var$2, var$3, var$4; + var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$3 = oncias_SemanticPatternCheck$_findRepeatedRelationships($this, $astNode, 0); + var$4 = new oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_73_0; + var$4.$_0435 = $astNode; + return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4); +}, +oncias_SemanticPatternCheck$_ensureNoRepeatedVarLengthRelationships = ($this, $astNode) => { + let var$2, var$3, var$4; + var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$3 = oncias_SemanticPatternCheck$_findRepeatedRelationships($this, $astNode, 1); + var$4 = new oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_74_0; + var$4.$_01083 = $astNode; + return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$3, var$4); +}, +oncias_SemanticPatternCheck$_extractPattern = ($this, $astNode) => { + let $x$2, $expressionStringifier, $patternStringifier, $pattern; + onciap_ExpressionStringifier$_$callClinit(); + $x$2 = onciap_ExpressionStringifier$_apply$default$1(onciap_ExpressionStringifier$_MODULE$); + $expressionStringifier = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, $x$2, 0, 0, 1, 0); + $patternStringifier = onciap_PatternStringifier$_apply(onciap_PatternStringifier$_MODULE$, $expressionStringifier); + if ($rt_isInstance($astNode, oncie_Pattern)) + $pattern = onciap_DefaultPatternStringifier_apply1($patternStringifier, $astNode); + else { + if (!($astNode instanceof oncie_RelationshipsPattern)) { + $x$2 = new jl_IllegalArgumentException; + $astNode = jl_Object_getClass($astNode); + $expressionStringifier = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($expressionStringifier); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($expressionStringifier, $rt_s(6610)), $astNode), 46); + jl_Throwable__init_($x$2, jl_AbstractStringBuilder_toString($expressionStringifier)); + $rt_throw($x$2); } + $pattern = onciap_DefaultPatternStringifier_apply2($patternStringifier, $astNode.$element5); } - return $default.$apply2($x1); -}; -function oncia_Union$Mapping$1() { - let a = this; jl_Object.call(a); - a.$unionVariable0 = null; - a.$variableInLhsName = null; - a.$variableInRhsName = null; - a.$$outer82 = null; -} -let oncia_Union$Mapping$1_productPrefix = $this => { - return $rt_s(7052); + return $pattern; +}, +oncias_SemanticPatternCheck$_findRepeatedRelationships = ($this, $treeNode, $varLength) => { + let $relVariables, $repetitions; + $relVariables = $treeNode.$folder(); + s_Predef$_$callClinit(); + $treeNode = sci_AbstractMap_withDefaultValue(sci_Map$_from(s_Predef$_Map(s_Predef$_MODULE$), sci_Nil$_MODULE$), sci_Nil$_MODULE$); + $repetitions = new oncias_SemanticPatternCheck$$anonfun$2; + $repetitions.$varLength$1 = $varLength; + return ((sc_AbstractIterable_filter(sc_AbstractMap_values(onciu_Foldable$Folder_fold($relVariables, $treeNode, $repetitions)), new oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_0)).$map(new oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_1)).$toSeq(); }, -oncia_Union$Mapping$1_productArity = $this => { - return 3; +oncias_SemanticPatternCheck$_checkNodeProperties = ($this, $ctx, $properties) => { + let var$3; + $ctx = oncias_checkNoParamMapsWhenMatching$_apply(oncias_checkNoParamMapsWhenMatching$_MODULE$, $properties, $ctx); + oncias_checkValidPropertyKeyNamesInPattern$_$callClinit(); + var$3 = oncias_SemanticCheck_chain$($ctx, oncias_checkValidPropertyKeyNamesInPattern$_apply(oncias_checkValidPropertyKeyNamesInPattern$_MODULE$, $properties)); + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_SemanticCheck_chain$(var$3, oncias_SemanticExpressionCheck$_simple0(oncias_SemanticExpressionCheck$_MODULE$, $properties)); + oncius_package$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_expectType$3($this, oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)), $properties)); }, -oncia_Union$Mapping$1_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$unionVariable0; - case 1: - return $this.$variableInLhsName; - case 2: - return $this.$variableInRhsName; - default: - } - return sr_Statics_ioobe($x$1); +oncias_SemanticPatternCheck$_checkPredicate = ($this, $ctx, $pattern) => { + let var$3, var$4; + oncias_OptionSemanticChecking$_$callClinit(); + var$3 = oncias_OptionSemanticChecking$_MODULE$; + var$4 = $pattern.$predicate2; + $pattern = new oncias_SemanticPatternCheck$$checkPredicate$lambda$_78_0; + $pattern.$_0630 = $ctx; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, $pattern); }, -oncia_Union$Mapping$1_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticPatternCheck$_checkLabelExpressions = ($this, $ctx, $labelExpression) => { + let var$3, var$4; + oncias_OptionSemanticChecking$_$callClinit(); + var$3 = oncias_OptionSemanticChecking$_MODULE$; + var$4 = new oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_79_0; + var$4.$_0382 = $ctx; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, $labelExpression, var$4); }, -oncia_Union$Mapping$1_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticPatternCheck$_checkDynamicLabels = ($this, $ctx, $labelExpression, $isLabels) => { + let var$4, var$5; + oncias_OptionSemanticChecking$_$callClinit(); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$5 = new oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_80_0; + var$5.$_0548 = $ctx; + var$5.$_1182 = $isLabels; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, $labelExpression, var$5); }, -oncia_Union$Mapping$1_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticPatternCheck$_checkValidPropertyKeyNamesInReturnItems = ($this, $returnItems) => { + $returnItems = $returnItems.$items0.$collect(new oncias_SemanticPatternCheck$$anonfun$3); + s_Predef$_$callClinit(); + return oncias_SemanticPatternCheck$_checkValidPropertyKeyNames($this, $returnItems.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$))); }, -oncia_Union$Mapping$1_equals = ($this, $x$1) => { +oncias_SemanticPatternCheck$_checkValidPropertyKeyNames = ($this, $propertyKeys) => { + let $error; + $error = $propertyKeys.$collectFirst(new oncias_SemanticPatternCheck$$anonfun$4); + if (!s_Option_isDefined($error)) + return oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + $propertyKeys = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef($propertyKeys, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, ($error.$get1()).$_1(), ($error.$get1()).$_2())); +}, +oncias_SemanticPatternCheck$_checkValidLabels = ($this, $labelNames, $pos) => { + let var$3, var$4; + var$3 = oncias_package$_MODULE$; + $labelNames = (sc_AbstractIterable_flatMap($labelNames.$view1(), new oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_0)).$headOption(); + var$4 = new oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_1; + var$4.$_0808 = $pos; + return oncias_package$_liftSemanticErrorDefOption(var$3, s_Option_map($labelNames, var$4)); +}, +oncias_SemanticPatternCheck$_checkValidDynamicLabels = ($this, $labelNames, $pos) => { + let var$3, var$4; + var$3 = oncias_package$_MODULE$; + $labelNames = (sc_AbstractIterable_flatMap($labelNames.$view1(), new oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_0)).$headOption(); + var$4 = new oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_1; + var$4.$_0938 = $pos; + return oncias_package$_liftSemanticErrorDefOption(var$3, s_Option_map($labelNames, var$4)); +}, +oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName = ($this, $name) => { let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Union$Mapping$1) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$unionVariable0; - var$3 = $x$1.$unionVariable0; - if (var$2 !== null) { - if (!oncie_Variable_equals(var$2, var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$variableInLhsName; - var$3 = $x$1.$variableInLhsName; - if (var$2 !== null) { - if (!jl_String_equals(var$2, var$3)) - break b; - else - break d; + if ($name !== null && !jl_String_isEmpty($name) && !jl_String_contains($name, $rt_s(6611))) + return s_None$_MODULE$; + var$2 = new s_Some; + var$3 = $rt_createArray(jl_Object, 1); + if ($name === null) + $name = $rt_s(134); + else { + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(var$4, 39); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$4, $name), 39); + $name = jl_AbstractStringBuilder_toString(var$4); + } + var$3.data[0] = $name; + s_Some__init_0(var$2, jl_String_format($rt_s(6612), var$3)); + return var$2; +}, +oncias_SemanticPatternCheck$_normalizeParenthesizedPath = ($this, $ppp) => { + let var$2, $optionalWhereClause; + if ($ppp !== null) { + var$2 = $ppp.$part0; + $optionalWhereClause = $ppp.$optionalWhereClause0; + if (var$2 instanceof oncie_NamedPatternPart) + return oncie_ParenthesizedPath__init_(var$2.$patternPart, $optionalWhereClause, $ppp.$position41); + } + return $ppp; +}, +oncias_SemanticPatternCheck$_checkLength$1 = ($this, $x5$1) => { + let $x$2, $rel, var$4, $min, $expressionStringifier, $pattern; + $x$2 = $x5$1.$element2; + if (!($x$2 instanceof oncie_RelationshipChain)) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + $rel = $x$2.$relationship1; + var$4 = 0; + $x$2 = null; + $rel = $rel.$length3; + if ($rel instanceof s_Some) { + var$4 = 1; + $x$2 = $rel; + $rel = $x$2.$value5; + if ($rel instanceof s_Some) { + $rel = $rel.$value5; + if ($rel !== null) { + $rel = $rel.$lower2; + if ($rel instanceof s_Some) { + $min = $rel.$value5; + s_Predef$_$callClinit(); + if (!(Long_ge(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value($min)), Long_ZERO) && Long_le(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value($min)), Long_fromInt(1)))) { + oncias_SemanticError$_$callClinit(); + $x5$1 = $x5$1.$name14; + $expressionStringifier = $min.$position22; + ong_GqlStatusInfoCodes_$callClinit(); + $x$2 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), $expressionStringifier.$offset(), $expressionStringifier.$line(), $expressionStringifier.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I08), + $expressionStringifier.$offset(), $expressionStringifier.$line(), $expressionStringifier.$column()), ong_GqlParams$StringParam_fun, $x5$1)))); + $rel = new oncias_SemanticError; + $min = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($min); + jl_StringBuilder_append(jl_StringBuilder_append($min, $x5$1), $rt_s(6613)); + oncias_SemanticError__init_($rel, $x$2, jl_AbstractStringBuilder_toString($min), $expressionStringifier); + return oncias_SemanticAnalysisTooling_error$1($this, $rel); } - if (var$3 !== null) - break b; } - e: { - var$3 = $this.$variableInRhsName; - $x$1 = $x$1.$variableInRhsName; - if (var$3 !== null) { - if (!jl_String_equals(var$3, $x$1)) + } + } + } + if (var$4) { + $x$2 = $x$2.$value5; + if (jl_Object_equals(s_None$_MODULE$, $x$2)) { + onciap_ExpressionStringifier$_$callClinit(); + $x$2 = onciap_ExpressionStringifier$_apply$default$1(onciap_ExpressionStringifier$_MODULE$); + $expressionStringifier = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, $x$2, 0, 0, 1, 0); + $pattern = onciap_DefaultPatternStringifier_apply0(onciap_PatternStringifier$_apply(onciap_PatternStringifier$_MODULE$, $expressionStringifier), $x5$1.$element2); + $x$2 = new onciu_UnboundedShortestPathNotification; + $x$2.$position65 = $x5$1.$element2.$position(); + $x$2.$pattern16 = $pattern; + return oncias_SemanticAnalysisTooling_warn$($this, $x$2); + } + } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}, +oncias_SemanticPatternCheck$_checkContainedPatterns$1 = $pattern$2 => { + let var$2; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = onciu_Foldable_folder$($pattern$2); + oncias_SemanticCheck$_$callClinit(); + return onciu_Foldable$Folder_treeFold(var$2, oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$), new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1); +}, +oncias_SemanticPatternCheck$_checkRelCount$1 = ($pattern$2, $x5$2) => { + let var$3, var$4, var$5, var$6; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = onciu_Foldable_folder$($pattern$2); + sr_ClassTag$_$callClinit(); + var$5 = s_Option_isEmpty(onciu_Foldable$Folder_treeFindByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_RelationshipPattern)))); + var$6 = new oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_110_0; + var$6.$_0227 = $x5$2; + var$6.$_185 = $pattern$2; + return oncias_SemanticCheck$_when(var$3, var$5, var$6); +}, +oncias_SemanticPatternCheck$_$anonfun$checkValidJuxtaposition$1 = $x0$1 => { + let $a, $b, $aString, $aTypeString, $bString, $bTypeString, $inThisCase; + oncias_SemanticPatternCheck$_$callClinit(); + if ($x0$1 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x0$1); + if (!$x0$1.$lengthCompare(2) && $x0$1.$apply1(1) instanceof oncie_QuantifiedPath) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + } + if ($x0$1 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x0$1); + if (!$x0$1.$lengthCompare(2) && $x0$1.$apply1(0) instanceof oncie_QuantifiedPath) { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + } + if ($x0$1 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x0$1); + if (!$x0$1.$lengthCompare(2)) { + a: { + b: { + c: { + $a = $x0$1.$apply1(0); + $b = $x0$1.$apply1(1); + $aString = onciap_DefaultPatternStringifier_apply0((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, $a); + $aTypeString = oncias_SemanticPatternCheck$_getTypeString(oncias_SemanticPatternCheck$_MODULE$, $a); + $bString = onciap_DefaultPatternStringifier_apply0((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, $b); + $bTypeString = oncias_SemanticPatternCheck$_getTypeString(oncias_SemanticPatternCheck$_MODULE$, $b); + if ($aTypeString !== null) { + if (!jl_String_equals($aTypeString, $bTypeString)) + break b; + else + break c; + } + if ($bTypeString !== null) break b; - else - break e; } - if ($x$1 !== null) - break b; + $x0$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($x0$1); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($x0$1, $rt_s(6614)), $aString), $rt_s(120)), $bString), $rt_s(6615)), $aTypeString), $rt_s(6616)); + $inThisCase = jl_AbstractStringBuilder_toString($x0$1); + break a; } - if (!($this instanceof oncia_Union$Mapping$1)) - break b; + $x0$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($x0$1); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($x0$1, $rt_s(6617)), $aString), $rt_s(6618)), $aTypeString), $rt_s(120)), $bString), $rt_s(6618)), $bTypeString), 46); + $inThisCase = jl_AbstractStringBuilder_toString($x0$1); } - var$4 = 1; - break a; + $x0$1 = oncias_SemanticPatternCheck$_MODULE$; + $a = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + $aString = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($aString); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($aString, $rt_s(6619)), $inThisCase), $rt_s(6620)); + return oncias_SemanticAnalysisTooling_error$($x0$1, sc_StringOps$_stripMargin$extension($a, jl_AbstractStringBuilder_toString($aString)), $b.$position()); } - var$4 = 0; } - return var$4; + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }; -function oncie_Expression$$anonfun$arguments$1() { - sr_AbstractPartialFunction.call(this); - this.$$outer37 = null; -} -let oncie_Expression$$anonfun$arguments$1_applyOrElse = ($this, $x1, $default) => { +let oncias_SemanticPatternCheck$_$anonfun$checkQuantifier$1 = $quantifier$1 => { + let var$2, var$3, $lower, $upper, var$6, var$7, var$8; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = 0; + var$3 = null; + if ($quantifier$1 instanceof oncie_FixedQuantifier) { + $lower = $quantifier$1.$value17; + if ($lower instanceof oncie_UnsignedDecimalIntegerLiteral && jl_String_equals($rt_s(21), $lower.$stringVal0)) { + $upper = oncias_SemanticPatternCheck$_MODULE$; + s_Predef$_$callClinit(); + return oncias_SemanticAnalysisTooling_specifiedNumberOutOfRangeError$($upper, $rt_s(6621), $rt_s(722), jl_Integer_valueOf(1), jl_Long_valueOf(Long_create(4294967295, 2147483647)), $rt_s(21), $rt_s(6622), $quantifier$1.$position()); + } + } + if ($quantifier$1 instanceof oncie_IntervalQuantifier) { + var$2 = 1; + var$3 = $quantifier$1; + $lower = var$3.$lower1; + $upper = var$3.$upper1; + if ($lower instanceof s_Some) { + $lower = $lower.$value5; + if ($upper instanceof s_Some) { + $upper = $upper.$value5; + s_Predef$_$callClinit(); + if (Long_lt(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value($upper)), sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value($lower)))) { + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$6 = sc_StringOps$_MODULE$; + var$7 = oncie_DecimalIntegerLiteral_value($lower); + var$8 = oncie_DecimalIntegerLiteral_value($upper); + $lower = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($lower); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append($lower, $rt_s(6623)), var$7), $rt_s(6624)), var$8), 46); + return oncias_SemanticAnalysisTooling_error$(var$3, sc_StringOps$_stripMargin$extension(var$6, jl_AbstractStringBuilder_toString($lower)), $quantifier$1.$position()); + } + } + } + } + if (var$2) { + var$3 = var$3.$upper1; + if (var$3 instanceof s_Some) { + var$3 = var$3.$value5; + if (var$3 instanceof oncie_UnsignedDecimalIntegerLiteral && jl_String_equals($rt_s(21), var$3.$stringVal0)) { + var$3 = oncias_SemanticPatternCheck$_MODULE$; + s_Predef$_$callClinit(); + return oncias_SemanticAnalysisTooling_specifiedNumberOutOfRangeError$(var$3, $rt_s(6625), $rt_s(722), jl_Integer_valueOf(1), jl_Long_valueOf(Long_create(4294967295, 2147483647)), $rt_s(21), $rt_s(6622), $quantifier$1.$position()); + } + } + } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}, +oncias_SemanticPatternCheck$_checkNotUndirectedWhenCreating$1 = ($this, $ctx$4, $x$22) => { + let var$3, var$4, var$5; + var$3 = jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, $ctx$4) ? 1 : !jl_Object_equals(oncie_Pattern$SemanticContext$Insert$_MODULE$, $ctx$4) ? 0 : 1; a: { - if ($x1 instanceof oncie_Expression) - b: { - $x1 = $x1; - $default = $this.$$outer37; - if ($x1 !== null) { - if ($x1.$equals($default)) + b: { + if (var$3) { + var$4 = $x$22.$direction0; + oncie_SemanticDirection$BOTH$_$callClinit(); + var$5 = oncie_SemanticDirection$BOTH$_MODULE$; + if (var$4 !== null) { + if (!jl_Object_equals(var$4, var$5)) break b; else break a; } - if ($default !== null) + if (var$5 === null) break a; } - return s_PartialFunction$_fallback_fn; + } + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - $default = new oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0; - $default.$_01130 = $x1; - return $default; -}, -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0_apply = (var$0, var$1) => { - return var$1.$default2; -}, -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - var$3 = oncias_SemanticExpressionCheck$_check0(var$3, oncie_Expression$SemanticContext$Results$_MODULE$, var$1); - var$4 = oncias_SemanticExpressionCheck$_MODULE$; - var$5 = new oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0; - var$5.$_0415 = var$2; - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_expectType$(var$4, var$5, var$1)); -}, -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2_apply = (var$0, var$1, var$2) => { - return var$1.$chain(var$2); -}; -function oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3() { - jl_Object.call(this); - this.$_0233 = null; -} -let oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3_apply = var$0 => { - return var$0.$_0233.$outputType1.$covariant(); -}, -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(93)), $rt_s(7053)), var$1); - return jl_AbstractStringBuilder_toString(var$2); + $ctx$4 = oncie_Pattern$SemanticContext$_name(oncie_Pattern$SemanticContext$_MODULE$, $ctx$4); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6626)), $ctx$4); + return oncias_SemanticAnalysisTooling_error$($this, jl_AbstractStringBuilder_toString(var$5), $x$22.$position8); }, -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5_apply = var$0 => { - return $rt_s(4); -}; -function oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6() { - let a = this; jl_Object.call(a); - a.$_0918 = null; - a.$_1319 = 0; - a.$_2106 = 0; - a.$_328 = null; - a.$_46 = null; -} -let oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; - var$1 = var$1; - var$2 = var$0.$_0918; - var$3 = var$0.$_1319; - var$4 = var$0.$_2106; - var$5 = var$0.$_328; - var$6 = var$0.$_46; - oncias_SemanticCheckResult$_$callClinit(); - var$7 = oncias_SemanticCheckResult$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$8 = oncias_SemanticError$_MODULE$; - var$9 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - var$10 = var$5.$name15; - var$11 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$11); - var$12 = jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$11, $rt_s(7054)), var$3), $rt_s(7055)), var$4), $rt_s(7056)), var$10), $rt_s(4729)), var$5), $rt_s(7057)), var$3); - jl_AbstractStringBuilder_append0(var$12, 32); - jl_StringBuilder_append(var$12, var$6); - return oncias_SemanticCheckResult$_error(var$7, var$1, oncias_SemanticError$_apply(var$8, sc_StringOps$_stripMargin$extension(var$9, jl_AbstractStringBuilder_toString(var$11)), var$2.$position11)); +oncias_SemanticPatternCheck$_checkLabelExpressions$1 = ($ctx, $labelExpression, $stringifier$1) => { + let var$4, var$5; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_OptionSemanticChecking$_$callClinit(); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$5 = new oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_134_0; + var$5.$_0696 = $ctx; + var$5.$_1236 = $stringifier$1; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, $labelExpression, var$5); }, -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7 = $rt_classWithoutFields(), -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7_apply = (var$0, var$1) => { - return var$1.$typ.$normalizedCypherTypeString(); -}; -function sr_IntRef() { - jl_Object.call(this); - this.$elem5 = 0; -} -let sr_IntRef__init_0 = ($this, $elem) => { - $this.$elem5 = $elem; +oncias_SemanticPatternCheck$_checkPredicate$1 = ($ctx, $relationshipPattern) => { + let var$3, var$4, var$5; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_OptionSemanticChecking$_$callClinit(); + var$3 = oncias_OptionSemanticChecking$_MODULE$; + var$4 = $relationshipPattern.$predicate1; + var$5 = new oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_140_0; + var$5.$_0167 = $ctx; + var$5.$_159 = $relationshipPattern; + return oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, var$5); }, -sr_IntRef__init_ = var_0 => { - let var_1 = new sr_IntRef(); - sr_IntRef__init_0(var_1, var_0); - return var_1; +oncie_Pattern$SemanticContext = $rt_classWithoutFields(0), +oncie_Pattern$SemanticContext_name$ = $$this => { + return oncie_Pattern$SemanticContext$_name(oncie_Pattern$SemanticContext$_MODULE$, $$this); }, -sr_IntRef_create = $e => { - return sr_IntRef__init_($e); -}; -function oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0() { - let a = this; jl_Object.call(a); - a.$_0101 = null; - a.$_142 = null; - a.$_221 = null; - a.$_311 = null; -} -let oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_0101; - var$3 = var$0.$_142; - var$4 = var$0.$_221; - var$5 = var$0.$_311; - if (!scm_HashSet_contains(var$3, var$1)) { - scm_HashSet_add(var$3, var$1); - var$5.$elem5 = var$5.$elem5 + 1 | 0; - } else { - var$3 = var$2.$_errors; - var$6 = var$2.$exceptionFactory0; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(4408)), var$1), $rt_s(4409)); - var$7 = jl_AbstractStringBuilder_toString(var$7); - oncipau_Util$_$callClinit(); - var$2.$_errors = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher5Parser$SymbolicNameStringContext), var$5.$elem5)))); +oncie_Pattern$SemanticContext_description$ = $$this => { + if (jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, $$this)) + $$this = $rt_s(6627); + else if (jl_Object_equals(oncie_Pattern$SemanticContext$Merge$_MODULE$, $$this)) + $$this = $rt_s(6628); + else if (jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, $$this)) + $$this = $rt_s(6629); + else if (jl_Object_equals(oncie_Pattern$SemanticContext$Insert$_MODULE$, $$this)) + $$this = $rt_s(6630); + else { + if (!jl_Object_equals(oncie_Pattern$SemanticContext$Expression$_MODULE$, $$this)) + $rt_throw(s_MatchError__init_($$this)); + $$this = $rt_s(5885); } - return sr_BoxedUnit_UNIT; + return $$this; }, -oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1 = $rt_classWithoutFields(), -oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1_apply = (var$0, var$1) => { - var$1 = var$1; - if (var$1 === null) { - s_package$_$callClinit(); - var$1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - } else - var$1 = var$1.$keySet(); - return var$1; -}; -function oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2() { - let a = this; jl_Object.call(a); - a.$_020 = null; - a.$_112 = null; - a.$_29 = null; - a.$_34 = null; -} -let oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_020; - var$3 = var$0.$_112; - var$4 = var$0.$_29; - var$5 = var$0.$_34; - if (!scm_HashSet_contains(var$3, var$1)) { - scm_HashSet_add(var$3, var$1); - var$5.$elem5 = var$5.$elem5 + 1 | 0; - } else { - var$3 = var$2.$_errors; - var$6 = var$2.$exceptionFactory0; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(4412)), var$1), $rt_s(4409)); - var$7 = jl_AbstractStringBuilder_toString(var$7); - oncipau_Util$_$callClinit(); - var$2.$_errors = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher5Parser$AlterDatabaseOptionContext), var$5.$elem5)))); - } - return sr_BoxedUnit_UNIT; +oncie_Pattern$SemanticContext$Expression$ = $rt_classWithoutFields(), +oncie_Pattern$SemanticContext$Expression$_MODULE$ = null, +oncie_Pattern$SemanticContext$Expression$__clinit_ = () => { + oncie_Pattern$SemanticContext$Expression$_MODULE$ = new oncie_Pattern$SemanticContext$Expression$; }, -oncipvaf_Cypher5SyntaxChecker$ = $rt_classWithoutFields(), -oncipvaf_Cypher5SyntaxChecker$_MODULE$ = null, -oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS = 0, -oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS = 0, -oncipvaf_Cypher5SyntaxChecker$__clinit_ = () => { - oncipvaf_Cypher5SyntaxChecker$_MODULE$ = new oncipvaf_Cypher5SyntaxChecker$; - oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS = 2; - oncipvaf_Cypher5SyntaxChecker$_org$neo4j$cypher$internal$parser$v5$ast$factory$Cypher5SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS = 1; +oncie_Pattern$SemanticContext$Expression$_name = $this => { + return oncie_Pattern$SemanticContext_name$($this); }, -oncius_TypeSpec$ = $rt_classWithoutFields(), -oncius_TypeSpec$_MODULE$ = null, -oncius_TypeSpec$_all0 = null, -oncius_TypeSpec$_none0 = null, -oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes = null, -oncius_TypeSpec$_$callClinit = () => { - oncius_TypeSpec$_$callClinit = $rt_eraseClinit(oncius_TypeSpec$); - oncius_TypeSpec$__clinit_(); +oncie_Pattern$SemanticContext$Expression$_description = $this => { + return oncie_Pattern$SemanticContext_description$($this); }, -oncius_TypeSpec$__clinit_ = () => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = new oncius_TypeSpec$; - oncius_TypeSpec$_$callClinit(); - oncius_TypeSpec$_MODULE$ = var$1; - var$2 = new oncius_TypeRange; - oncius_package$_$callClinit(); - oncius_TypeRange__init_0(var$2, oncius_package$_CTAny(oncius_package$_MODULE$), s_None$_MODULE$); - var$1 = new oncius_TypeSpec; - s_package$_$callClinit(); - var$3 = s_package$_Vector(s_package$_MODULE$); - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncius_TypeRange, 1); - var$5.data[0] = var$2; - oncius_TypeSpec__init_(var$1, var$3.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5))); - oncius_TypeSpec$_all0 = var$1; - oncius_TypeSpec$_none0 = oncius_TypeSpec__init_0(sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$))); - var$2 = s_package$_Vector(s_package$_MODULE$); - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(oncius_CypherType, 19); - var$6 = var$5.data; - var$6[0] = oncius_package$_CTAny(oncius_package$_MODULE$); - var$6[1] = oncius_package$_CTBoolean(oncius_package$_MODULE$); - var$6[2] = oncius_package$_CTFloat(oncius_package$_MODULE$); - var$6[3] = oncius_package$_CTInteger(oncius_package$_MODULE$); - var$6[4] = oncius_package$_CTMap(oncius_package$_MODULE$); - var$6[5] = oncius_package$_CTNode(oncius_package$_MODULE$); - var$6[6] = oncius_package$_CTNumber(oncius_package$_MODULE$); - var$6[7] = oncius_package$_CTPath(oncius_package$_MODULE$); - var$6[8] = oncius_package$_CTRelationship(oncius_package$_MODULE$); - var$6[9] = oncius_package$_CTPoint(oncius_package$_MODULE$); - var$6[10] = oncius_package$_CTGeometry(oncius_package$_MODULE$); - var$6[11] = oncius_package$_CTString(oncius_package$_MODULE$); - var$6[12] = oncius_package$_CTGraphRef(oncius_package$_MODULE$); - var$6[13] = oncius_package$_CTDuration(oncius_package$_MODULE$); - var$6[14] = oncius_package$_CTDate(oncius_package$_MODULE$); - var$6[15] = oncius_package$_CTTime(oncius_package$_MODULE$); - var$6[16] = oncius_package$_CTLocalTime(oncius_package$_MODULE$); - var$6[17] = oncius_package$_CTLocalDateTime(oncius_package$_MODULE$); - var$6[18] = oncius_package$_CTDateTime(oncius_package$_MODULE$); - oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes = var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); +oncie_Pattern$SemanticContext$Expression$_productArity = $this => { + return 0; }, -oncius_TypeSpec$_exact = ($this, $iterableOnce) => { - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply($this, ($iterableOnce.$iterator0()).$map5(new oncius_TypeSpec$$exact$lambda$_4_0)); +oncie_Pattern$SemanticContext$Expression$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncius_TypeSpec$_all = $this => { - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_all0; +oncie_Pattern$SemanticContext$Expression$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncius_TypeSpec$_none = $this => { - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_none0; +oncie_Pattern$SemanticContext$Expression$_hashCode = $this => { + return 198012600; }, -oncius_TypeSpec$_union = ($this, $typeSpecs) => { - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply($this, $typeSpecs.$flatMap(new oncius_TypeSpec$$union$lambda$_7_0)); +oncie_Pattern$SemanticContext$Expression$_toString = $this => { + return $rt_s(6631); }, -oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes0 = $this => { - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes; +oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1_applyOrElse = ($this, $x1, $default) => { + if (!($x1 instanceof oncie_NodePattern)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return jl_Boolean_valueOf(s_Option_exists($x1.$labelExpression7, new oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0)); }, -oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply = ($this, $ranges) => { - let var$2, var$3; - var$2 = new oncius_TypeSpec; - var$3 = $ranges.$iterator0(); - s_package$_$callClinit(); - oncius_TypeSpec__init_(var$2, var$3.$foldLeft(sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)), new oncius_TypeSpec$$minimalRanges$lambda$_12_0)); - return var$2; +oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1__init_0 = $this => { + return; +}, +oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1(); + oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1__init_0(var_0); + return var_0; }; -function oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0() { - let a = this; jl_Object.call(a); - a.$_096 = null; - a.$_139 = null; - a.$_219 = null; - a.$_39 = null; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56() { + jl_Object.call(this); + this.$_0253 = null; } -let oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_096; - var$3 = var$0.$_139; - var$4 = var$0.$_219; - var$5 = var$0.$_39; - if (!scm_HashSet_contains(var$3, var$1)) { - scm_HashSet_add(var$3, var$1); - var$5.$elem5 = var$5.$elem5 + 1 | 0; - } else { - var$3 = var$2.$_errors0; - var$6 = var$2.$exceptionFactory2; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(4408)), var$1), $rt_s(4409)); - var$7 = jl_AbstractStringBuilder_toString(var$7); - oncipau_Util$_$callClinit(); - var$2.$_errors0 = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$SymbolicNameStringContext), var$5.$elem5)))); - } - return sr_BoxedUnit_UNIT; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56__init_ = (var$0, var$1) => { + var$0.$_0253 = var$1; }, -oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1 = $rt_classWithoutFields(), -oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1_apply = (var$0, var$1) => { - var$1 = var$1; - if (var$1 === null) { - s_package$_$callClinit(); - var$1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - } else - var$1 = var$1.$keySet(); - return var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56_apply = var$0 => { + let var$1; + var$1 = var$0.$_0253; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticAnalysisTooling_error$(oncias_SemanticExpressionCheck$_MODULE$, $rt_s(6632), oncie_ShortestPathExpression_position(var$1)); }; -function oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2() { - let a = this; jl_Object.call(a); - a.$_0567 = null; - a.$_1194 = null; - a.$_263 = null; - a.$_319 = null; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57() { + jl_Object.call(this); + this.$_0319 = null; } -let oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_0567; - var$3 = var$0.$_1194; - var$4 = var$0.$_263; - var$5 = var$0.$_319; - if (!scm_HashSet_contains(var$3, var$1)) { - scm_HashSet_add(var$3, var$1); - var$5.$elem5 = var$5.$elem5 + 1 | 0; - } else { - var$3 = var$2.$_errors0; - var$6 = var$2.$exceptionFactory2; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(4412)), var$1), $rt_s(4409)); - var$7 = jl_AbstractStringBuilder_toString(var$7); - oncipau_Util$_$callClinit(); - var$2.$_errors0 = var$3.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$6, var$7, oncipau_Util$_pos(oncipau_Util$_MODULE$, oavr_ParserRuleContext_getRuleContext(var$4, $rt_cls(oncipv_Cypher25Parser$AlterDatabaseOptionContext), var$5.$elem5)))); - } - return sr_BoxedUnit_UNIT; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57__init_0 = (var$0, var$1) => { + var$0.$_0319 = var$1; }, -oncipvaf_Cypher25SyntaxChecker$ = $rt_classWithoutFields(), -oncipvaf_Cypher25SyntaxChecker$_MODULE$ = null, -oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS = 0, -oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS = 0, -oncipvaf_Cypher25SyntaxChecker$__clinit_ = () => { - oncipvaf_Cypher25SyntaxChecker$_MODULE$ = new oncipvaf_Cypher25SyntaxChecker$; - oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_ALIAS_NAME_COMPONENTS = 2; - oncipvaf_Cypher25SyntaxChecker$_org$neo4j$cypher$internal$parser$v25$ast$factory$Cypher25SyntaxChecker$$MAX_DATABASE_NAME_COMPONENTS = 1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57__init_0(var_1, var_0); + return var_1; }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0 = $rt_classWithoutFields(), -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0__init_ = var$0 => { - return; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57_apply = var$0 => { + let var$1; + var$1 = var$0.$_0319; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + if (var$1.$pattern13.$single0) + var$1 = oncius_package$_CTPath(oncius_package$_MODULE$); + else { + var$1 = oncius_package$_MODULE$; + var$1 = oncius_package$_CTList(var$1, oncius_package$_CTPath(var$1)); + } + return var$1.$invariant(); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58() { + jl_Object.call(this); + this.$_0992 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58__init_0 = (var$0, var$1) => { + var$0.$_0992 = var$1; }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0__init_0 = () => { - let var_0 = new oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0(); - oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0__init_(var_0); - return var_0; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58__init_0(var_1, var_0); + return var_1; }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 95 ? 0 : 1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0992; + oncias_SemanticExpressionCheck$_$callClinit(); + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_SemanticPatternCheck$_check2(oncias_SemanticPatternCheck$_MODULE$, oncie_Pattern$SemanticContext$Match$_MODULE$, var$1.$pattern9); + var$3 = oncias_package$_MODULE$; + var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$64$lambda$_133_0; + var$4.$_0199 = var$1; + var$3 = oncias_SemanticCheck_chain$(var$2, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4)); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$pattern9)); }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2 = $rt_classWithoutFields(), -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2__init_0 = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59__init_0 = var$0 => { return; }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2__init_ = () => { - let var_0 = new oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2(); - oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2__init_0(var_0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59__init_0(var_0); return var_0; }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 111 ? 0 : 1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59_apply = var$0 => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return (oncius_package$_CTList(var$1, oncius_package$_CTPath(var$1))).$invariant(); }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1 = $rt_classWithoutFields(), -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1__init_ = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60__init_0 = var$0 => { return; }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1__init_0 = () => { - let var_0 = new oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1(); - oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1__init_(var_0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60__init_0(var_0); return var_0; }, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 111 ? 0 : 1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0 = $rt_classWithoutFields(), -oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0__init_0 = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61__init_ = var$0 => { return; }, -oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0__init_ = () => { - let var_0 = new oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0(); - oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0__init_0(var_0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61__init_(var_0); return var_0; }, -oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 95 ? 0 : 1); -}, -onciuh_Math$ = $rt_classWithoutFields(), -onciuh_Math$_MODULE$ = null, -onciuh_Math$__clinit_ = () => { - onciuh_Math$_MODULE$ = new onciuh_Math$; -}, -onciuh_Math$_subtractExact = ($this, $a, $b) => { - let $res, $resSgnBit, var$5, var$6; - $res = Long_sub($a, $b); - $resSgnBit = Long_ge($res, Long_ZERO) ? 0 : 1; - var$5 = Long_ge($a, Long_ZERO) ? 0 : 1; - if ($resSgnBit != var$5 && $resSgnBit != (Long_le($b, Long_ZERO) ? 0 : 1)) { - var$6 = new jl_ArithmeticException; - jl_Throwable__init_0(var$6, $rt_s(7017)); - $rt_throw(var$6); - } - return $res; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61_apply = var$0 => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); }; -function sc_View$$from$lambda$_18_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62() { jl_Object.call(this); - this.$_0187 = null; -} -function sc_View$$anon$1() { - sc_AbstractView.call(this); - this.$it$1 = null; -} -let sc_View$$anon$1_iterator = $this => { - return $this.$it$1.$_0187.$iterator0(); -}; -function oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0() { - let a = this; jl_Object.call(a); - a.$_0381 = null; - a.$_1139 = null; + this.$_0572 = null; } -let oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0_apply = var$0 => { +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62__init_ = (var$0, var$1) => { + var$0.$_0572 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62_apply = var$0 => { let var$1, var$2, var$3; - var$1 = var$0.$_0381; - var$2 = var$0.$_1139; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; + var$1 = var$0.$_0572; oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$0(oncias_SemanticExpressionCheck$_MODULE$, var$1.$variable0(), oncias_SemanticExpressionCheck$FilteringExpressions$_possibleInnerTypes(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1), s_None$_MODULE$, 0)); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Simple$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_SemanticExpressionCheck$_check0(var$3, oncie_Expression$SemanticContext$Simple$_MODULE$, var$2)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0, var$2)); + var$2 = new oncias_SemanticExpressionCheck$$$anonfun$check$69$lambda$_138_0; + var$2.$_0170 = var$1; + var$3 = oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$1.$init3); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(oncias_SemanticExpressionCheck$_MODULE$, var$1.$scope7.$variable28, var$2, s_None$_MODULE$, 0)), oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(oncias_SemanticExpressionCheck$_MODULE$, var$1.$scope7.$accumulator0, var$3, s_None$_MODULE$, 0))), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, + oncie_Expression$SemanticContext$Simple$_MODULE$, oncie_ReduceExpression_expression(var$1))); }; -function oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_63() { jl_Object.call(this); - this.$_0846 = null; -} -let oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0846; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - return oncifp_IsolateSubqueriesInMutatingPatterns$_getDefinedSymbols$1(var$1, var$2); -}, -oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1 = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1_apply = var$0 => { - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}; -function oavrm_FlexibleHashMap() { - let a = this; jl_Object.call(a); - a.$comparator = null; - a.$buckets = null; - a.$n0 = 0; - a.$currentPrime = 0; - a.$threshold1 = 0; - a.$initialCapacity0 = 0; - a.$initialBucketCapacity0 = 0; -} -let oavrm_FlexibleHashMap_getBucket = ($this, $key) => { - return $this.$comparator.$hashCode2($key) & ($this.$buckets.data.length - 1 | 0); -}, -oavrm_FlexibleHashMap_put = ($this, $key, $value) => { - let var$3, var$4, $b, var$6, $bucket, $prev, $e; - if ($key === null) - return null; - var$3 = $this.$n0; - if (var$3 > $this.$threshold1) { - var$4 = $this.$buckets.data; - $this.$currentPrime = $this.$currentPrime + 4 | 0; - $b = var$4.length; - var$6 = $b * 2 | 0; - $this.$buckets = $rt_createArray(ju_LinkedList, var$6); - $this.$threshold1 = var$6 * 0.75 | 0; - var$6 = 0; - while (var$6 < $b) { - a: { - $bucket = var$4[var$6]; - if ($bucket !== null) { - $bucket = ju_AbstractSequentialList_iterator($bucket); - while (true) { - if (!ju_LinkedList$SequentialListIterator_hasNext($bucket)) - break a; - $prev = ju_LinkedList$SequentialListIterator_next($bucket); - if ($prev === null) - break; - oavrm_FlexibleHashMap_put($this, $prev.$key6, $prev.$value19); - } - } - } - var$6 = var$6 + 1 | 0; - } - $this.$n0 = var$3; - } - $b = oavrm_FlexibleHashMap_getBucket($this, $key); - var$4 = $this.$buckets.data; - $bucket = var$4[$b]; - if ($bucket === null) { - $bucket = new ju_LinkedList; - var$4[$b] = $bucket; - } - $prev = ju_AbstractSequentialList_iterator($bucket); - while (true) { - if (!ju_LinkedList$SequentialListIterator_hasNext($prev)) { - $prev = new oavrm_FlexibleHashMap$Entry; - $prev.$key6 = $key; - $prev.$value19 = $value; - ju_AbstractList_add($bucket, $prev); - $this.$n0 = $this.$n0 + 1 | 0; - return null; - } - $e = ju_LinkedList$SequentialListIterator_next($prev); - if ($this.$comparator.$equals0($e.$key6, $key)) - break; - } - $prev = $e.$value19; - $e.$value19 = $value; - $this.$n0 = $this.$n0 + 1 | 0; - return $prev; -}, -oavra_PredictionMode$AltAndContextMap = $rt_classWithoutFields(oavrm_FlexibleHashMap); -function oavra_ArrayPredictionContext() { - let a = this; oavra_PredictionContext.call(a); - a.$parents = null; - a.$returnStates = null; + this.$_0629 = null; } -let oavra_ArrayPredictionContext_$assertionsDisabled = 0, -oavra_ArrayPredictionContext__init_2 = ($this, $a) => { - let var$2, var$3; - var$2 = $rt_createArray(oavra_PredictionContext, 1); - var$2.data[0] = $a.$parent1; - var$3 = $rt_createIntArray(1); - var$3.data[0] = $a.$returnState; - oavra_ArrayPredictionContext__init_1($this, var$2, var$3); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_63__init_ = (var$0, var$1) => { + var$0.$_0629 = var$1; }, -oavra_ArrayPredictionContext__init_0 = var_0 => { - let var_1 = new oavra_ArrayPredictionContext(); - oavra_ArrayPredictionContext__init_2(var_1, var_0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_63__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_63(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_63__init_(var_1, var_0); return var_1; }, -oavra_ArrayPredictionContext__init_1 = ($this, $parents, $returnStates) => { - let var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$3 = $parents.data; - var$4 = 1; - var$5 = var$3.length; - var$6 = 0; - while (var$6 < var$5) { - var$4 = oavrm_MurmurHash_update0(var$4, var$3[var$6]); - var$6 = var$6 + 1 | 0; - } - var$3 = $returnStates.data; - var$6 = var$3.length; - var$7 = 0; - while (var$7 < var$6) { - var$4 = oavrm_MurmurHash_update(var$4, var$3[var$7]); - var$7 = var$7 + 1 | 0; - } - oavra_PredictionContext__init_($this, oavrm_MurmurHash_finish(var$4, 2 * var$5 | 0)); - var$8 = oavra_ArrayPredictionContext_$assertionsDisabled; - if (!var$8 && var$5 <= 0) { - var$9 = new jl_AssertionError; - jl_Throwable__init_(var$9); - $rt_throw(var$9); - } - if (!var$8 && var$6 <= 0) { - var$9 = new jl_AssertionError; - jl_Throwable__init_(var$9); - $rt_throw(var$9); - } - $this.$parents = $parents; - $this.$returnStates = $returnStates; -}, -oavra_ArrayPredictionContext__init_ = (var_0, var_1) => { - let var_2 = new oavra_ArrayPredictionContext(); - oavra_ArrayPredictionContext__init_1(var_2, var_0, var_1); - return var_2; -}, -oavra_ArrayPredictionContext_isEmpty = $this => { - return $this.$returnStates.data[0] != 2147483647 ? 0 : 1; -}, -oavra_ArrayPredictionContext_size = $this => { - return $this.$returnStates.data.length; -}, -oavra_ArrayPredictionContext_getParent = ($this, $index) => { - return $this.$parents.data[$index]; -}, -oavra_ArrayPredictionContext_getReturnState = ($this, $index) => { - return $this.$returnStates.data[$index]; -}, -oavra_ArrayPredictionContext_equals = ($this, $o) => { - let $a; - if ($this === $o) - return 1; - if (!($o instanceof oavra_ArrayPredictionContext)) - return 0; - if ($this.$cachedHashCode0 != $o.$hashCode()) - return 0; - $a = $o; - return ju_Arrays_equals($this.$returnStates, $a.$returnStates) && ju_Arrays_equals0($this.$parents, $a.$parents) ? 1 : 0; -}, -oavra_ArrayPredictionContext_toString = $this => { - let $buf, $i, var$3; - if (oavra_ArrayPredictionContext_isEmpty($this)) - return $rt_s(5); - $buf = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($buf); - jl_AbstractStringBuilder_append($buf, $rt_s(426)); - $i = 0; - while ($i < $this.$returnStates.data.length) { - if ($i > 0) - jl_AbstractStringBuilder_append($buf, $rt_s(45)); - var$3 = $this.$returnStates.data; - if (var$3[$i] == 2147483647) - jl_AbstractStringBuilder_append($buf, $rt_s(4451)); - else { - jl_StringBuilder_append0($buf, var$3[$i]); - if ($this.$parents.data[$i] === null) - jl_AbstractStringBuilder_append($buf, $rt_s(10)); - else { - jl_AbstractStringBuilder_append0($buf, 32); - jl_AbstractStringBuilder_append($buf, $this.$parents.data[$i].$toString()); - } - } - $i = $i + 1 | 0; - } - jl_AbstractStringBuilder_append($buf, $rt_s(427)); - return jl_AbstractStringBuilder_toString($buf); -}, -oavra_ArrayPredictionContext__clinit_ = () => { - oavra_ArrayPredictionContext_$assertionsDisabled = 0; +oncias_SemanticExpressionCheck$TypeMismatchContext$ = $rt_classWithoutFields(s_Enumeration), +oncias_SemanticExpressionCheck$TypeMismatchContext$_MODULE$ = null, +oncias_SemanticExpressionCheck$TypeMismatchContext$_ACCUMULATOR = null, +oncias_SemanticExpressionCheck$TypeMismatchContext$_LIST_INDEX = null, +oncias_SemanticExpressionCheck$TypeMismatchContext$_MAP_KEY = null, +oncias_SemanticExpressionCheck$TypeMismatchContext$_DYNAMIC_LABEL = null, +oncias_SemanticExpressionCheck$TypeMismatchContext$_DYNAMIC_TYPE = null, +oncias_SemanticExpressionCheck$TypeMismatchContext$_NODE_OR_RELATIONSHIP_PROPERTY_KEY = null, +oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY0 = null, +oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit = () => { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit = $rt_eraseClinit(oncias_SemanticExpressionCheck$TypeMismatchContext$); + oncias_SemanticExpressionCheck$TypeMismatchContext$__clinit_(); +}, +oncias_SemanticExpressionCheck$TypeMismatchContext$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticExpressionCheck$TypeMismatchContext$; + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + s_Enumeration__init_(var$1); + oncias_SemanticExpressionCheck$TypeMismatchContext$_MODULE$ = var$1; + oncias_SemanticExpressionCheck$TypeMismatchContext$_ACCUMULATOR = oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_($rt_s(6245)); + oncias_SemanticExpressionCheck$TypeMismatchContext$_LIST_INDEX = oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_($rt_s(6633)); + oncias_SemanticExpressionCheck$TypeMismatchContext$_MAP_KEY = oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_($rt_s(6634)); + oncias_SemanticExpressionCheck$TypeMismatchContext$_DYNAMIC_LABEL = oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_($rt_s(6635)); + oncias_SemanticExpressionCheck$TypeMismatchContext$_DYNAMIC_TYPE = oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_($rt_s(6636)); + oncias_SemanticExpressionCheck$TypeMismatchContext$_NODE_OR_RELATIONSHIP_PROPERTY_KEY = oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_($rt_s(6637)); + oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY0 = oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_($rt_s(4)); +}, +oncias_SemanticExpressionCheck$TypeMismatchContext$_ACCUMULATOR0 = $this => { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + return oncias_SemanticExpressionCheck$TypeMismatchContext$_ACCUMULATOR; +}, +oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY = $this => { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + return oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY0; }, -onciu_UnicodeHelper$ = $rt_classWithoutFields(), -onciu_UnicodeHelper$_MODULE$ = null, -onciu_UnicodeHelper$_deprecatedIdentifierStartUnicodes = null, -onciu_UnicodeHelper$_identifierStartUnicodesCypher250 = null, -onciu_UnicodeHelper$_deprecatedIdentifierPartUnicodes = null, -onciu_UnicodeHelper$_identifierPartUnicodesCypher250 = null, -onciu_UnicodeHelper$_$callClinit = () => { - onciu_UnicodeHelper$_$callClinit = $rt_eraseClinit(onciu_UnicodeHelper$); - onciu_UnicodeHelper$__clinit_(); -}, -onciu_UnicodeHelper$__clinit_ = () => { - onciu_UnicodeHelper$_MODULE$ = onciu_UnicodeHelper$__init_(); - onciu_UnicodeHelper$_deprecatedIdentifierStartUnicodes = sci_$colon$colon__init_($rt_s(7058), sci_Nil$_MODULE$); - s_package$_$callClinit(); - onciu_UnicodeHelper$_identifierStartUnicodesCypher250 = sc_SeqFactory$Delegate_apply(s_package$_Seq(s_package$_MODULE$), sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(7059), $rt_s(5410), $rt_s(7060), $rt_s(7061), $rt_s(7062), $rt_s(7063), $rt_s(7064), $rt_s(7065), $rt_s(7066), $rt_s(7067), $rt_s(7068), $rt_s(7069), $rt_s(7070), $rt_s(7071), $rt_s(7072), $rt_s(7073), $rt_s(7074), $rt_s(7075), $rt_s(7076), $rt_s(7077), $rt_s(7078), $rt_s(7079), $rt_s(7080), $rt_s(7081), - $rt_s(7082), $rt_s(7083), $rt_s(7084), $rt_s(7085), $rt_s(7086), $rt_s(7087), $rt_s(7088), $rt_s(7089), $rt_s(7090), $rt_s(7091), $rt_s(7092), $rt_s(7093), $rt_s(7094), $rt_s(7095), $rt_s(7096), $rt_s(7097), $rt_s(7098), $rt_s(7099), $rt_s(7100), $rt_s(7101), $rt_s(7102), $rt_s(7103), $rt_s(7104), $rt_s(7105), $rt_s(7106), $rt_s(7107), $rt_s(7108), $rt_s(7109), $rt_s(7110), $rt_s(7111), $rt_s(7112), $rt_s(7113), $rt_s(7114), $rt_s(7115), $rt_s(7116), $rt_s(7117), $rt_s(7118), $rt_s(7119), $rt_s(7120), $rt_s(7121), - $rt_s(7122), $rt_s(7123), $rt_s(7124), $rt_s(7125), $rt_s(7126), $rt_s(7127), $rt_s(7128), $rt_s(7129), $rt_s(7130), $rt_s(7131), $rt_s(7132), $rt_s(7133), $rt_s(7134), $rt_s(7135), $rt_s(7136), $rt_s(7137), $rt_s(7138), $rt_s(7139), $rt_s(7140), $rt_s(7141), $rt_s(7142), $rt_s(7143), $rt_s(7144), $rt_s(7145), $rt_s(7146), $rt_s(7147), $rt_s(7148), $rt_s(7149), $rt_s(7150), $rt_s(7151), $rt_s(7152), $rt_s(7153), $rt_s(7154), $rt_s(7155), $rt_s(7156), $rt_s(7157), $rt_s(7158), $rt_s(7159), $rt_s(7160), $rt_s(7161), - $rt_s(7162), $rt_s(7163), $rt_s(7164), $rt_s(7165), $rt_s(7166), $rt_s(7167), $rt_s(7168), $rt_s(7169), $rt_s(7170), $rt_s(7171), $rt_s(7172), $rt_s(7173), $rt_s(7174), $rt_s(7175), $rt_s(7176), $rt_s(7177), $rt_s(7178), $rt_s(7179), $rt_s(7180), $rt_s(7181), $rt_s(7182), $rt_s(7183), $rt_s(7184), $rt_s(7185), $rt_s(7186), $rt_s(7187), $rt_s(7188), $rt_s(7189), $rt_s(7190), $rt_s(7191), $rt_s(7192), $rt_s(7193), $rt_s(7194), $rt_s(7195), $rt_s(7196), $rt_s(7197), $rt_s(7198), $rt_s(7199), $rt_s(7200), $rt_s(7201), - $rt_s(7202), $rt_s(7203), $rt_s(7204), $rt_s(7205), $rt_s(7206), $rt_s(7207), $rt_s(7208), $rt_s(7209), $rt_s(7210), $rt_s(7211), $rt_s(7212), $rt_s(7213), $rt_s(7214), $rt_s(7215), $rt_s(7216), $rt_s(7217), $rt_s(7218), $rt_s(7219), $rt_s(7220), $rt_s(7221), $rt_s(7222), $rt_s(7223), $rt_s(7224), $rt_s(7225), $rt_s(7226), $rt_s(7227), $rt_s(7228), $rt_s(7229), $rt_s(7230), $rt_s(7231), $rt_s(7232), $rt_s(7233), $rt_s(7234), $rt_s(7235), $rt_s(7236), $rt_s(7237), $rt_s(7238), $rt_s(7239), $rt_s(7240), $rt_s(7241), - $rt_s(7242), $rt_s(7243), $rt_s(7244), $rt_s(7245), $rt_s(7246), $rt_s(7247), $rt_s(7248), $rt_s(7249), $rt_s(7250), $rt_s(7251), $rt_s(7252), $rt_s(7253), $rt_s(7254), $rt_s(7255), $rt_s(7256), $rt_s(7257), $rt_s(7258), $rt_s(7259), $rt_s(7260), $rt_s(7261), $rt_s(7262), $rt_s(7263), $rt_s(7264), $rt_s(7265), $rt_s(7266), $rt_s(7267), $rt_s(7268), $rt_s(7269), $rt_s(7270), $rt_s(7271), $rt_s(7272), $rt_s(7273), $rt_s(7274), $rt_s(7275), $rt_s(7276), $rt_s(7277), $rt_s(7278), $rt_s(7279), $rt_s(7280), $rt_s(7281), - $rt_s(7282), $rt_s(7283), $rt_s(7284), $rt_s(7285), $rt_s(7286), $rt_s(7287), $rt_s(7288), $rt_s(7289), $rt_s(7290), $rt_s(7291), $rt_s(7292), $rt_s(7293), $rt_s(7294), $rt_s(7295), $rt_s(7296), $rt_s(7297), $rt_s(7298), $rt_s(7299), $rt_s(7300), $rt_s(7301), $rt_s(7302), $rt_s(7303), $rt_s(7304), $rt_s(7305), $rt_s(7306), $rt_s(7307), $rt_s(7308), $rt_s(7309), $rt_s(7310), $rt_s(7311), $rt_s(7312), $rt_s(7313), $rt_s(7314), $rt_s(7315), $rt_s(7316), $rt_s(7317), $rt_s(7318), $rt_s(7319), $rt_s(7320), $rt_s(7321), - $rt_s(7322), $rt_s(7323), $rt_s(7324), $rt_s(7325), $rt_s(7326), $rt_s(7327), $rt_s(7328), $rt_s(7329), $rt_s(7330), $rt_s(7331), $rt_s(7332), $rt_s(7333), $rt_s(7334), $rt_s(7335), $rt_s(7336), $rt_s(7337), $rt_s(7338), $rt_s(7339), $rt_s(7340), $rt_s(7341), $rt_s(7342), $rt_s(7343), $rt_s(7344), $rt_s(7345), $rt_s(7346), $rt_s(7347), $rt_s(7348), $rt_s(7349), $rt_s(7350), $rt_s(7351), $rt_s(7352), $rt_s(7353), $rt_s(7354), $rt_s(7355), $rt_s(7356), $rt_s(7357), $rt_s(7358), $rt_s(7359), $rt_s(7360), $rt_s(7361), - $rt_s(7362), $rt_s(7363), $rt_s(7364), $rt_s(7365), $rt_s(7366), $rt_s(7367), $rt_s(7368), $rt_s(7369), $rt_s(7370), $rt_s(7371), $rt_s(7372), $rt_s(7373), $rt_s(7374), $rt_s(7375), $rt_s(7376), $rt_s(7377), $rt_s(7378), $rt_s(7379), $rt_s(7380), $rt_s(7381), $rt_s(7382), $rt_s(7383), $rt_s(7384), $rt_s(7385), $rt_s(7386), $rt_s(7387), $rt_s(7388), $rt_s(7389), $rt_s(7390), $rt_s(7391), $rt_s(7392), $rt_s(7393), $rt_s(7394), $rt_s(7395), $rt_s(7396), $rt_s(7397), $rt_s(7398), $rt_s(7399), $rt_s(7400), $rt_s(7401), - $rt_s(7402), $rt_s(7403), $rt_s(7404), $rt_s(7405), $rt_s(7406), $rt_s(7407), $rt_s(7408), $rt_s(7409), $rt_s(7410), $rt_s(7411), $rt_s(7412), $rt_s(7413), $rt_s(7414), $rt_s(7415), $rt_s(7416), $rt_s(7417), $rt_s(7418), $rt_s(7419), $rt_s(7420), $rt_s(7421), $rt_s(7422), $rt_s(7423), $rt_s(7424), $rt_s(7425), $rt_s(7426), $rt_s(7427), $rt_s(7428), $rt_s(7429), $rt_s(7430), $rt_s(7431), $rt_s(7432), $rt_s(7433), $rt_s(7434), $rt_s(7435), $rt_s(7436), $rt_s(7437), $rt_s(7438), $rt_s(7439), $rt_s(7440), $rt_s(7441), - $rt_s(7442), $rt_s(7443)]))); - onciu_UnicodeHelper$_deprecatedIdentifierPartUnicodes = sc_SeqFactory$Delegate_apply(s_package$_Seq(s_package$_MODULE$), sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(7444), $rt_s(7445), $rt_s(7446), $rt_s(4451), $rt_s(7447), $rt_s(7448), $rt_s(7449), $rt_s(7450), $rt_s(7451), $rt_s(7452), $rt_s(7453), $rt_s(7454), $rt_s(7455), $rt_s(7456), $rt_s(7457), $rt_s(7458), $rt_s(7459), $rt_s(7460), $rt_s(7461), $rt_s(7058), $rt_s(7462), $rt_s(7463)]))); - onciu_UnicodeHelper$_identifierPartUnicodesCypher250 = sc_SeqFactory$Delegate_apply(s_package$_Seq(s_package$_MODULE$), sr_ScalaRunTime$_wrapRefArray(sr_ScalaRunTime$_MODULE$, $rt_wrapArray(jl_String, [$rt_s(7464), $rt_s(7059), $rt_s(5410), $rt_s(7060), $rt_s(7061), $rt_s(7062), $rt_s(7063), $rt_s(7064), $rt_s(7065), $rt_s(7066), $rt_s(7067), $rt_s(7068), $rt_s(7069), $rt_s(7070), $rt_s(7465), $rt_s(7072), $rt_s(7073), $rt_s(7074), $rt_s(7075), $rt_s(7076), $rt_s(7077), $rt_s(7078), $rt_s(7079), $rt_s(7080), - $rt_s(7466), $rt_s(7081), $rt_s(7082), $rt_s(7083), $rt_s(7084), $rt_s(7467), $rt_s(7468), $rt_s(7469), $rt_s(7470), $rt_s(7471), $rt_s(7472), $rt_s(7085), $rt_s(7086), $rt_s(7473), $rt_s(7474), $rt_s(7475), $rt_s(7476), $rt_s(7477), $rt_s(7478), $rt_s(7479), $rt_s(7094), $rt_s(7480), $rt_s(7481), $rt_s(7482), $rt_s(7101), $rt_s(7483), $rt_s(7484), $rt_s(7107), $rt_s(7108), $rt_s(7109), $rt_s(7485), $rt_s(7486), $rt_s(7487), $rt_s(7488), $rt_s(7115), $rt_s(7116), $rt_s(7117), $rt_s(7118), $rt_s(7119), $rt_s(7120), - $rt_s(7489), $rt_s(7490), $rt_s(7491), $rt_s(7492), $rt_s(7123), $rt_s(7493), $rt_s(7494), $rt_s(7495), $rt_s(7496), $rt_s(7497), $rt_s(7127), $rt_s(7128), $rt_s(7129), $rt_s(7130), $rt_s(7131), $rt_s(7132), $rt_s(7133), $rt_s(7498), $rt_s(7499), $rt_s(7500), $rt_s(7501), $rt_s(7502), $rt_s(7134), $rt_s(7135), $rt_s(7503), $rt_s(7504), $rt_s(7137), $rt_s(7138), $rt_s(7139), $rt_s(7140), $rt_s(7141), $rt_s(7142), $rt_s(7505), $rt_s(7506), $rt_s(7507), $rt_s(7144), $rt_s(7508), $rt_s(7509), $rt_s(7510), $rt_s(7511), - $rt_s(7512), $rt_s(7147), $rt_s(7148), $rt_s(7149), $rt_s(7150), $rt_s(7151), $rt_s(7152), $rt_s(7513), $rt_s(7514), $rt_s(7515), $rt_s(7516), $rt_s(7154), $rt_s(7517), $rt_s(7518), $rt_s(7156), $rt_s(7519), $rt_s(7158), $rt_s(7159), $rt_s(7160), $rt_s(7161), $rt_s(7162), $rt_s(7163), $rt_s(7164), $rt_s(7165), $rt_s(7166), $rt_s(7520), $rt_s(7521), $rt_s(7522), $rt_s(7167), $rt_s(7523), $rt_s(7524), $rt_s(7525), $rt_s(7526), $rt_s(7169), $rt_s(7170), $rt_s(7171), $rt_s(7527), $rt_s(7528), $rt_s(7529), $rt_s(7530), - $rt_s(7173), $rt_s(7531), $rt_s(7532), $rt_s(7533), $rt_s(7176), $rt_s(7177), $rt_s(7178), $rt_s(7179), $rt_s(7180), $rt_s(7534), $rt_s(7535), $rt_s(7536), $rt_s(7537), $rt_s(7182), $rt_s(7538), $rt_s(7539), $rt_s(7184), $rt_s(7540), $rt_s(7186), $rt_s(7541), $rt_s(7542), $rt_s(7543), $rt_s(7544), $rt_s(7545), $rt_s(7546), $rt_s(7192), $rt_s(7547), $rt_s(7193), $rt_s(7194), $rt_s(7195), $rt_s(7196), $rt_s(7197), $rt_s(7548), $rt_s(7549), $rt_s(7550), $rt_s(7551), $rt_s(7552), $rt_s(7553), $rt_s(7554), $rt_s(7555), - $rt_s(7556), $rt_s(7201), $rt_s(7202), $rt_s(7203), $rt_s(7204), $rt_s(7205), $rt_s(7557), $rt_s(7209), $rt_s(7210), $rt_s(7558), $rt_s(7559), $rt_s(7211), $rt_s(7212), $rt_s(7560), $rt_s(7561), $rt_s(7562), $rt_s(7563), $rt_s(7564), $rt_s(7565), $rt_s(7214), $rt_s(7566), $rt_s(7567), $rt_s(7568), $rt_s(7569), $rt_s(7570), $rt_s(7571), $rt_s(7225), $rt_s(7226), $rt_s(7227), $rt_s(7228), $rt_s(7229), $rt_s(7230), $rt_s(7231), $rt_s(7232), $rt_s(7233), $rt_s(7234), $rt_s(7235), $rt_s(7236), $rt_s(7237), $rt_s(7238), - $rt_s(7239), $rt_s(7240), $rt_s(7241), $rt_s(7242), $rt_s(7243), $rt_s(7244), $rt_s(7572), $rt_s(7245), $rt_s(7246), $rt_s(7247), $rt_s(7248), $rt_s(7249), $rt_s(7250), $rt_s(7251), $rt_s(7252), $rt_s(7253), $rt_s(7573), $rt_s(7574), $rt_s(7575), $rt_s(7257), $rt_s(7258), $rt_s(7576), $rt_s(7577), $rt_s(7260), $rt_s(7578), $rt_s(7579), $rt_s(7580), $rt_s(7581), $rt_s(7262), $rt_s(7582), $rt_s(7266), $rt_s(7267), $rt_s(7583), $rt_s(7584), $rt_s(7585), $rt_s(7269), $rt_s(7270), $rt_s(7271), $rt_s(7586), $rt_s(7587), - $rt_s(7588), $rt_s(7589), $rt_s(7590), $rt_s(7591), $rt_s(7274), $rt_s(7592), $rt_s(7593), $rt_s(7594), $rt_s(7595), $rt_s(7596), $rt_s(7597), $rt_s(7598), $rt_s(7599), $rt_s(7600), $rt_s(7283), $rt_s(7284), $rt_s(7285), $rt_s(7601), $rt_s(7602), $rt_s(7603), $rt_s(7604), $rt_s(7292), $rt_s(7293), $rt_s(7294), $rt_s(7295), $rt_s(7296), $rt_s(7297), $rt_s(7298), $rt_s(7299), $rt_s(7300), $rt_s(7301), $rt_s(7302), $rt_s(7303), $rt_s(7304), $rt_s(7305), $rt_s(7306), $rt_s(7307), $rt_s(7308), $rt_s(7309), $rt_s(7310), - $rt_s(7311), $rt_s(7312), $rt_s(7313), $rt_s(7314), $rt_s(7605), $rt_s(7606), $rt_s(7607), $rt_s(7608), $rt_s(7315), $rt_s(7316), $rt_s(7317), $rt_s(7318), $rt_s(7319), $rt_s(7320), $rt_s(7321), $rt_s(7322), $rt_s(7323), $rt_s(7324), $rt_s(7325), $rt_s(7326), $rt_s(7327), $rt_s(7328), $rt_s(7329), $rt_s(7330), $rt_s(7331), $rt_s(7609), $rt_s(7334), $rt_s(7335), $rt_s(7336), $rt_s(7337), $rt_s(7338), $rt_s(7610), $rt_s(7340), $rt_s(7341), $rt_s(7342), $rt_s(7343), $rt_s(7344), $rt_s(7345), $rt_s(7346), $rt_s(7347), - $rt_s(7611), $rt_s(7348), $rt_s(7612), $rt_s(7350), $rt_s(7351), $rt_s(7352), $rt_s(7613), $rt_s(7353), $rt_s(7354), $rt_s(7355), $rt_s(7356), $rt_s(7357), $rt_s(7358), $rt_s(7359), $rt_s(7360), $rt_s(7361), $rt_s(7362), $rt_s(7363), $rt_s(7364), $rt_s(7614), $rt_s(7615), $rt_s(7616), $rt_s(7617), $rt_s(7370), $rt_s(7371), $rt_s(7372), $rt_s(7373), $rt_s(7618), $rt_s(7619), $rt_s(7620), $rt_s(7378), $rt_s(7621), $rt_s(7622), $rt_s(7623), $rt_s(7381), $rt_s(7624), $rt_s(7625), $rt_s(7385), $rt_s(7626), $rt_s(7627), - $rt_s(7628), $rt_s(7629), $rt_s(7630), $rt_s(7631), $rt_s(7394), $rt_s(7632), $rt_s(7402), $rt_s(7633), $rt_s(7634), $rt_s(7405), $rt_s(7406), $rt_s(7407), $rt_s(7408), $rt_s(7409), $rt_s(7410), $rt_s(7411), $rt_s(7635), $rt_s(7636), $rt_s(7637), $rt_s(7413), $rt_s(7414), $rt_s(7415), $rt_s(7416), $rt_s(7417), $rt_s(7418), $rt_s(7419), $rt_s(7638), $rt_s(7422), $rt_s(7423), $rt_s(7424), $rt_s(7425), $rt_s(7426), $rt_s(7427), $rt_s(7428), $rt_s(7429), $rt_s(7430), $rt_s(7639), $rt_s(7640), $rt_s(7641), $rt_s(7432), - $rt_s(7433), $rt_s(7642), $rt_s(7434), $rt_s(7435), $rt_s(7643), $rt_s(7644), $rt_s(7436), $rt_s(7437), $rt_s(7438), $rt_s(7439), $rt_s(7440), $rt_s(7441), $rt_s(7442), $rt_s(7443), $rt_s(7645), $rt_s(7646)]))); -}, -onciu_UnicodeHelper$_isAllowedUnicode = ($this, $p, $unicodes) => { - let var$3; - var$3 = new onciu_UnicodeHelper$$isAllowedUnicode$lambda$_5_0; - var$3.$_01112 = $p; - return $unicodes.$exists(var$3); +oncie_ReduceExpression$ = $rt_classWithoutFields(), +oncie_ReduceExpression$_MODULE$ = null, +oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator = null, +oncie_ReduceExpression$__clinit_ = () => { + oncie_ReduceExpression$_MODULE$ = new oncie_ReduceExpression$; + oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator = new oncie_ReduceExpression$$_clinit_$lambda$_0_0; }, -onciu_UnicodeHelper$_identifierStartUnicodesCypher25 = $this => { - onciu_UnicodeHelper$_$callClinit(); - return onciu_UnicodeHelper$_identifierStartUnicodesCypher250; +oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator0 = $this => { + return oncie_ReduceExpression$_AccumulatorExpressionTypeMismatchMessageGenerator; +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64() { + jl_Object.call(this); + this.$_032 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64__init_ = (var$0, var$1) => { + var$0.$_032 = var$1; }, -onciu_UnicodeHelper$_identifierPartUnicodesCypher25 = $this => { - onciu_UnicodeHelper$_$callClinit(); - return onciu_UnicodeHelper$_identifierPartUnicodesCypher250; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64__init_(var_1, var_0); + return var_1; }, -onciu_UnicodeHelper$__init_0 = $this => { - onciu_UnicodeHelper$_$callClinit(); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_032; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncius_TypeSpec_leastUpperBounds(oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2.$init3), var$1), oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, oncie_ReduceExpression_expression(var$2)), var$1)); }, -onciu_UnicodeHelper$__init_ = () => { - let var_0 = new onciu_UnicodeHelper$(); - onciu_UnicodeHelper$__init_0(var_0); - return var_0; -}; -function ju_TemplateCollections$TwoElementsSet() { - let a = this; ju_TemplateCollections$AbstractImmutableSet.call(a); - a.$first7 = null; - a.$second0 = null; -} -let ju_TemplateCollections$TwoElementsSet_contains = ($this, $o) => { - return !ju_Objects_equals($o, $this.$first7) && !ju_Objects_equals($o, $this.$second0) ? 0 : 1; -}; -function onciafnc_CodeCompletionCore$FollowSetsHolder() { - let a = this; jl_Object.call(a); - a.$sets = null; - a.$combined = null; -} -let onciafnc_CodeCompletionCore$FollowSetsHolder__init_0 = $this => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65__init_ = var$0 => { return; }, -onciafnc_CodeCompletionCore$FollowSetsHolder__init_ = () => { - let var_0 = new onciafnc_CodeCompletionCore$FollowSetsHolder(); - onciafnc_CodeCompletionCore$FollowSetsHolder__init_0(var_0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65__init_(var_0); return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65_apply = var$0 => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); }; -function onciafnc_CodeCompletionCore$RuleWithStartToken() { - let a = this; jl_Record.call(a); - a.$startTokenIndex = 0; - a.$ruleIndex0 = 0; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66() { + jl_Object.call(this); + this.$_0225 = null; } -let onciafnc_CodeCompletionCore$RuleWithStartToken__init_0 = ($this, $startTokenIndex, $ruleIndex) => { - $this.$startTokenIndex = $startTokenIndex; - $this.$ruleIndex0 = $ruleIndex; -}, -onciafnc_CodeCompletionCore$RuleWithStartToken__init_ = (var_0, var_1) => { - let var_2 = new onciafnc_CodeCompletionCore$RuleWithStartToken(); - onciafnc_CodeCompletionCore$RuleWithStartToken__init_0(var_2, var_0, var_1); - return var_2; -}, -onciafnc_CodeCompletionCore$RuleWithStartToken_toString = $this => { - let var$1, var$2; - var$1 = jl_StringBuilder__init_0($rt_s(7647)); - jl_AbstractStringBuilder_append(var$1, $rt_s(7648)); - var$2 = jl_StringBuilder_append0(var$1, $this.$startTokenIndex); - jl_AbstractStringBuilder_append(var$2, $rt_s(7649)); - var$2 = jl_StringBuilder_append0(var$2, $this.$ruleIndex0); - jl_AbstractStringBuilder_append(var$2, $rt_s(427)); - return jl_AbstractStringBuilder_toString(var$2); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66__init_ = (var$0, var$1) => { + var$0.$_0225 = var$1; }, -onciafnc_CodeCompletionCore$RuleWithStartToken_hashCode = $this => { - return ((31 + $this.$startTokenIndex | 0) * 31 | 0) + $this.$ruleIndex0 | 0; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66__init_(var_1, var_0); + return var_1; }, -onciafnc_CodeCompletionCore$RuleWithStartToken_equals = ($this, $o) => { - let var$2; - if ($this === $o) - var$2 = 1; - else if ($o !== null && jl_Object_getClass($o) === $rt_cls(onciafnc_CodeCompletionCore$RuleWithStartToken)) { - $o = $o; - var$2 = $this.$startTokenIndex != $o.$startTokenIndex ? 0 : $this.$ruleIndex0 == $o.$ruleIndex0 ? 1 : 0; - } else - var$2 = 0; - return var$2; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0225; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$3 = var$1.$position179; + ong_GqlStatusInfoCodes_$callClinit(); + return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$3.$offset(), var$3.$line(), var$3.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N20), + var$3.$offset(), var$3.$line(), var$3.$column())))), $rt_s(6638), var$3)); }; -function onciafnc_CodeCompletionCore$FollowSetWithPath() { - let a = this; jl_Object.call(a); - a.$intervals0 = null; - a.$path = null; - a.$following = null; -} -function onciafnc_CodeCompletionCore$processRule$lambda$_9_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67() { jl_Object.call(this); - this.$_0132 = 0; + this.$_0828 = null; } -let onciafnc_CodeCompletionCore$processRule$lambda$_9_0__init_0 = (var$0, var$1) => { - var$0.$_0132 = var$1; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67__init_0 = (var$0, var$1) => { + var$0.$_0828 = var$1; }, -onciafnc_CodeCompletionCore$processRule$lambda$_9_0__init_ = var_0 => { - let var_1 = new onciafnc_CodeCompletionCore$processRule$lambda$_9_0(); - onciafnc_CodeCompletionCore$processRule$lambda$_9_0__init_0(var_1, var_0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67__init_0(var_1, var_0); return var_1; }, -onciafnc_CodeCompletionCore$processRule$lambda$_9_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciafnc_CodeCompletionCore$RuleWithStartToken__init_(var$0.$_0132, var$1.$value4); -}; -function onciafnc_CodeCompletionCore$PipelineEntry() { - let a = this; jl_Object.call(a); - a.$state4 = null; - a.$tokenIndex = null; -} -let onciafnc_CodeCompletionCore$PipelineEntry__init_0 = ($this, $state, $tokenIndex) => { - $this.$state4 = $state; - $this.$tokenIndex = $tokenIndex; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_0828; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + if (oncius_TypeSpec_contains0(var$1, oncius_package$_CTAny(oncius_package$_MODULE$))) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$3 = oncias_SemanticExpressionCheck$_MODULE$; + var$4 = var$2.$idx0; + var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$76$lambda$_156_0; + var$5.$_0829 = var$1; + var$5.$_1278 = var$2; + var$1 = oncias_SemanticExpressionCheck$_typeSwitch(var$3, var$4, var$5); + } + return var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68__init_ = var$0 => { + return; }, -onciafnc_CodeCompletionCore$PipelineEntry__init_ = (var_0, var_1) => { - let var_2 = new onciafnc_CodeCompletionCore$PipelineEntry(); - onciafnc_CodeCompletionCore$PipelineEntry__init_0(var_2, var_0, var_1); - return var_2; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68__init_(var_0); + return var_0; }, -oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_0 = $rt_classWithoutFields(), -oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(!var$1.$isNullable() && !(var$1 instanceof oncius_NothingType) ? 0 : 1); -}; -function oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_1() { - jl_Object.call(this); - this.$_057 = null; -} -let oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_1_apply = (var$0, var$1) => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68_apply = (var$0, var$1) => { var$1 = var$1; - return oncia_CypherTypeName_cypherTypeSemanticCheck(var$0.$_057, var$1); -}, -oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_2 = $rt_classWithoutFields(), -oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_2_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isNullable() ? 0 : 1); + oncias_SemanticExpressionCheck$_$callClinit(); + return var$1.$_2(); }, -oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0 = $rt_classWithoutFields(), -oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0__init_ = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69__init_ = var$0 => { return; }, -oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0__init_0 = () => { - let var_0 = new oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0(); - oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0__init_(var_0); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69__init_(var_0); return var_0; }, -oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0_apply = (var$0, var$1) => { - return var$1.$_2(); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant(); }, -oncie_LogicalProperty$ = $rt_classWithoutFields(), -oncie_LogicalProperty$_MODULE$ = null, -oncie_LogicalProperty$_$callClinit = () => { - oncie_LogicalProperty$_$callClinit = $rt_eraseClinit(oncie_LogicalProperty$); - oncie_LogicalProperty$__clinit_(); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70__init_0 = var$0 => { + return; }, -oncie_LogicalProperty$__clinit_ = () => { - let var$1; - var$1 = new oncie_LogicalProperty$; - oncie_LogicalProperty$_$callClinit(); - oncie_LogicalProperty$_MODULE$ = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70__init_0(var_0); + return var_0; }, -oncie_LogicalProperty$_unapply = ($this, $p) => { - return s_Some__init_(s_Tuple2__init_($p.$map16, $p.$propertyKey0)); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); }, -oncie_LogicalVariable$ = $rt_classWithoutFields(), -oncie_LogicalVariable$_MODULE$ = null, -oncie_LogicalVariable$__clinit_ = () => { - oncie_LogicalVariable$_MODULE$ = new oncie_LogicalVariable$; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71__init_0 = var$0 => { + return; }, -jlr_Modifier = $rt_classWithoutFields(), -jlr_Modifier_modifierNames = null, -jlr_Modifier_canonicalOrder = null, -jlr_Modifier_toString = $mod => { - let $sb, $modifierNames, $index, var$5, var$6, var$7; - $sb = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($sb); - if (jlr_Modifier_modifierNames === null) - jlr_Modifier_modifierNames = $rt_wrapArray(jl_String, [$rt_s(7650), $rt_s(7651), $rt_s(7652), $rt_s(7653), $rt_s(7654), $rt_s(7655), $rt_s(7656), $rt_s(7657), $rt_s(7658), $rt_s(4846), $rt_s(7659), $rt_s(7660)]); - $modifierNames = jlr_Modifier_modifierNames; - $index = 0; - var$5 = jlr_Modifier_canonicalOrder.data; - var$6 = var$5.length; - var$7 = 0; - while (var$7 < var$6) { - if ($mod & var$5[var$7]) { - if ($sb.$length1 > 0) - jl_AbstractStringBuilder_append0($sb, 32); - jl_AbstractStringBuilder_append($sb, $modifierNames.data[$index]); - } - $index = $index + 1 | 0; - var$7 = var$7 + 1 | 0; - } - return jl_AbstractStringBuilder_toString($sb); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71__init_0(var_0); + return var_0; }, -jlr_Modifier__clinit_ = () => { - jlr_Modifier_canonicalOrder = $rt_createIntArrayFromData([1, 4, 2, 1024, 8, 16, 128, 64, 32, 256, 2048, 512]); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant(); }; -function jl_Class$MethodSignature() { - let a = this; jl_Object.call(a); - a.$name42 = null; - a.$parameterTypes0 = null; - a.$returnType0 = null; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72() { + jl_Object.call(this); + this.$_0475 = null; } -let jl_Class$MethodSignature_equals = ($this, $o) => { - let $that; - if ($this === $o) - return 1; - if (!($o instanceof jl_Class$MethodSignature)) - return 0; - $that = $o; - return ju_Objects_equals($this.$name42, $that.$name42) && ju_Arrays_equals0($this.$parameterTypes0, $that.$parameterTypes0) && ju_Objects_equals($this.$returnType0, $that.$returnType0) ? 1 : 0; -}, -jl_Class$MethodSignature_hashCode = $this => { - let var$1, var$2; - var$1 = $rt_createArray(jl_Object, 3); - var$2 = var$1.data; - var$2[0] = $this.$name42; - var$2[1] = jl_Integer_valueOf(ju_Arrays_hashCode($this.$parameterTypes0)); - var$2[2] = $this.$returnType0; - return ju_Arrays_hashCode(var$1); -}, -onciap_DefaultExpressionStringifier$Syntactic$ = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$Syntactic$_productArity = $this => { - return 0; -}, -onciap_DefaultExpressionStringifier$Syntactic$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -onciap_DefaultExpressionStringifier$Syntactic$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72__init_0 = (var$0, var$1) => { + var$0.$_0475 = var$1; }, -onciap_DefaultExpressionStringifier$Syntactic$_hashCode = $this => { - return (-1308395040); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72__init_0(var_1, var_0); + return var_1; }, -onciap_DefaultExpressionStringifier$Syntactic$_toString = $this => { - return $rt_s(7661); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72_apply = var$0 => { + let var$1; + var$1 = var$0.$_0475; + oncias_SemanticExpressionCheck$_$callClinit(); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1); }, -onciap_DefaultExpressionStringifier$Syntactic$__init_ = ($this, $$outer) => { +oncie_DesugaredMapProjection = $rt_classWithoutFields(oncie_Expression), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73__init_ = var$0 => { return; }, -onciap_DefaultExpressionStringifier$Syntactic$__init_0 = var_0 => { - let var_1 = new onciap_DefaultExpressionStringifier$Syntactic$(); - onciap_DefaultExpressionStringifier$Syntactic$__init_(var_1, var_0); - return var_1; -}; -function oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0() { - let a = this; jl_Object.call(a); - a.$_0583 = null; - a.$_1200 = null; -} -let oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0_apply = var$0 => { - return var$0.$_0583.$error2($rt_s(7662), var$0.$_1200.$position14); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant(); }; -function ju_TemplateCollections$TwoElementsList() { - let a = this; ju_TemplateCollections$AbstractImmutableList.call(a); - a.$first6 = null; - a.$second1 = null; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74() { + jl_Object.call(this); + this.$_0576 = null; } -let ju_TemplateCollections$TwoElementsList_size = $this => { - return 2; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74__init_ = (var$0, var$1) => { + var$0.$_0576 = var$1; }, -ju_TemplateCollections$TwoElementsList_get = ($this, $index) => { - let var$2; - if (!$index) - return $this.$first6; - if ($index == 1) - return $this.$second1; - var$2 = new jl_IndexOutOfBoundsException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74__init_(var_1, var_0); + return var_1; }, -oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0 = $rt_classWithoutFields(), -oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1) === null ? 0 : 1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74_apply = var$0 => { + let var$1; + var$1 = var$0.$_0576; + oncias_SemanticExpressionCheck$_$callClinit(); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1); }; -function oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1() { - let a = this; jl_Object.call(a); - a.$_0735 = null; - a.$_1249 = 0; - a.$_281 = null; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75() { + jl_Object.call(this); + this.$_0624 = null; } -let oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = var$1; - var$2 = var$0.$_0735; - var$3 = var$0.$_1249; - var$4 = var$0.$_281; - if (sr_BoxesRunTime_unboxToInt(sc_IterableOnceOps_foldLeft$(sc_AbstractIterable_sliding0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1))))), 2, 1), jl_Integer_valueOf(1), new oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0)) - > var$3) { - var$5 = ((oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1))).$get0(0)).$start1; - var$6 = var$2.$_errors; - var$7 = var$2.$exceptionFactory0; - var$8 = $rt_createArray(jl_Object, 1); - var$8.data[0] = sc_AbstractIterable_mkString(sc_StrictOptimizedIterableOps_map$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher5Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1)))), new oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1), $rt_s(403)); - var$2.$_errors = var$6.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$7, jl_String_format(var$4, var$8), oncipvaf_Cypher5SyntaxChecker_inputPosition(var$2, var$5))); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75__init_0 = (var$0, var$1) => { + var$0.$_0624 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0624; + oncias_SemanticExpressionCheck$_$callClinit(); + if (!jl_String_matches(var$1.$stringVal(), $rt_s(6639))) { + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$1 = oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6640), var$1.$position())); + } else { + var$3 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$1 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_numberTooLarge(oncias_SemanticError$_MODULE$, $rt_s(6641), var$1.$stringVal(), var$1.$position())); } - return sr_BoxedUnit_UNIT; + return var$1; }, -oncius_TypeSpec$$exact$lambda$_4_0 = $rt_classWithoutFields(), -oncius_TypeSpec$$exact$lambda$_4_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncius_TypeSpec$_$callClinit(); - oncius_TypeRange$_$callClinit(); - return oncius_TypeRange$_apply(oncius_TypeRange$_MODULE$, var$1, var$1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76__init_ = var$0 => { + return; }, -oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0 = $rt_classWithoutFields(), -oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1) === null ? 0 : 1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); }; -function oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77() { let a = this; jl_Object.call(a); - a.$_0854 = null; - a.$_1293 = 0; - a.$_295 = null; + a.$_0671 = null; + a.$_1227 = null; } -let oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = var$1; - var$2 = var$0.$_0854; - var$3 = var$0.$_1293; - var$4 = var$0.$_295; - if (sr_BoxesRunTime_unboxToInt(sc_IterableOnceOps_foldLeft$(sc_AbstractIterable_sliding0(sc_IterableOnceOps_toList$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1))))), 2, 1), jl_Integer_valueOf(1), new oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0)) - > var$3) { - var$5 = ((oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1))).$get0(0)).$start1; - var$6 = var$2.$_errors0; - var$7 = var$2.$exceptionFactory2; - var$8 = $rt_createArray(jl_Object, 1); - var$8.data[0] = sc_AbstractIterable_mkString(sc_StrictOptimizedIterableOps_map$(scc_AsScalaExtensions$ListHasAsScala_asScala(sj_CollectionConverters$_ListHasAsScala(sj_CollectionConverters$_MODULE$, oncipv_Cypher25Parser$SymbolicAliasNameContext_symbolicNameString(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_symbolicAliasName(var$1)))), new oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1), $rt_s(403)); - var$2.$_errors0 = var$6.$appended(onciu_OpenCypherExceptionFactory_syntaxException(var$7, jl_String_format(var$4, var$8), oncipvaf_Cypher25SyntaxChecker_inputPosition(var$2, var$5))); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77__init_ = (var$0, var$1, var$2) => { + var$0.$_0671 = var$1; + var$0.$_1227 = var$2; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77__init_0 = (var_0, var_1) => { + let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77__init_(var_2, var_0, var_1); + return var_2; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0671; + var$2 = var$0.$_1227; + oncias_SemanticExpressionCheck$_$callClinit(); + if (!jl_String_matches(var$1, $rt_s(6642))) { + var$3 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$1 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6640), var$2.$position40)); + } else { + var$1 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$1 = oncias_package$_liftSemanticErrorDef(var$1, oncias_SemanticError$_numberTooLarge(oncias_SemanticError$_MODULE$, $rt_s(6641), var$2.$stringVal1, var$2.$position40)); } - return sr_BoxedUnit_UNIT; + return var$1; }; -function oncia_Union$$anonfun$checkRecursively$2$lambda$_43_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78() { let a = this; jl_Object.call(a); - a.$_0665 = null; - a.$_1231 = null; + a.$_0216 = null; + a.$_182 = null; } -let oncia_Union$$anonfun$checkRecursively$2$lambda$_43_0_apply = var$0 => { - return oncia_Union_checkRecursively(var$0.$_0665, var$0.$_1231); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78__init_0 = (var$0, var$1, var$2) => { + var$0.$_0216 = var$1; + var$0.$_182 = var$2; }, -oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_0_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_TypeSpec$_$callClinit(); - return oncius_TypeSpec$_all(oncius_TypeSpec$_MODULE$); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_1() { - jl_Object.call(this); - this.$_01031 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01031; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78__init_ = (var_0, var_1) => { + let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78__init_0(var_2, var_0, var_1); + return var_2; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0216; + var$2 = var$0.$_182; oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$1), var$2); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_2() { - jl_Object.call(this); - this.$_0115 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_2_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0115; + var$3 = oncias_package$_MODULE$; + var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$98$lambda$_168_0; + var$4.$_0672 = var$1; + var$4.$_1228 = var$2; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$(oncias_SemanticExpressionCheck$_MODULE$, var$1, var$2)); + oncius_package$_$callClinit(); + return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); }; -function oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_190_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80() { let a = this; jl_Object.call(a); - a.$_0149 = null; - a.$_158 = null; - a.$_229 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_190_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0149; - var$3 = var$0.$_158; - var$4 = var$0.$_229; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$1, var$2)); - oncius_package$_$callClinit(); - var$5 = oncius_NodeType_invariant(oncius_package$_CTNode(oncius_package$_MODULE$)); - if (var$2 !== null) { - if (!oncius_TypeSpec_equals(var$2, var$5)) - break b; - else - break c; - } - if (var$5 !== null) - break b; - } - var$6 = 1; - break a; - } - var$6 = 0; - } - var$2 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(oncias_SemanticExpressionCheck$_stringifier0(oncias_SemanticExpressionCheck$_MODULE$), var$3.$replaceColonSyntax()); - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticPatternCheck$_legacyRelationshipDisjunctionError(oncias_SemanticPatternCheck$_MODULE$, var$2, var$3.$containsIs(), var$6); - oncias_SemanticCheckResult$_$callClinit(); - var$3 = oncias_SemanticCheckResult$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_SemanticCheckResult$_error(var$3, var$1, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$2, var$4.$position40)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$67$lambda$_131_0() { - jl_Object.call(this); - this.$_0342 = null; + a.$_0832 = null; + a.$_1281 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$67$lambda$_131_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0342; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80__init_0 = (var$0, var$1, var$2) => { + var$0.$_0832 = var$1; + var$0.$_1281 = var$2; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80__init_ = (var_0, var_1) => { + let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80__init_0(var_2, var_0, var_1); + return var_2; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0832; + var$2 = var$0.$_1281; oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2.$list1), var$1); - oncius_package$_$callClinit(); - var$2 = oncius_package$_MODULE$; - return oncius_TypeSpec_unwrapLists(oncius_TypeSpec_constrain(var$1, oncius_package$_CTList(var$2, oncius_package$_CTAny(var$2)))); + if (!jl_String_matches(var$1, $rt_s(6643))) { + var$3 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$1 = oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6640), var$2.$position51)); + } else { + var$1 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$1 = oncias_package$_liftSemanticErrorDef(var$1, oncias_SemanticError$_numberTooLarge(oncias_SemanticError$_MODULE$, $rt_s(6641), var$2.$stringVal3, var$2.$position51)); + } + return var$1; }; -function oncias_SemanticExpressionCheck$$$anonfun$check$62$lambda$_126_0() { - jl_Object.call(this); - this.$_0769 = null; +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81() { + let a = this; jl_Object.call(a); + a.$_0247 = null; + a.$_194 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$62$lambda$_126_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0769; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81__init_ = (var$0, var$1, var$2) => { + var$0.$_0247 = var$1; + var$0.$_194 = var$2; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81__init_0 = (var_0, var_1) => { + let var_2 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81__init_(var_2, var_0, var_1); + return var_2; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0247; + var$2 = var$0.$_194; oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = sc_IterableOnceOps_toSeq$(oncie_RelationshipChain_allVariables(var$2.$pattern9.$element5)); - var$4 = new oncias_SemanticExpressionCheck$$anonfun$1; - var$4.$state$2 = var$1; - var$4.$x69$1 = var$2; - return oncias_SemanticCheckResult__init_(var$1, var$3.$collect(var$4)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_0() { - jl_Object.call(this); - this.$_0484 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0484; + var$3 = oncias_package$_MODULE$; + var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$102$lambda$_172_0; + var$4.$_0551 = var$1; + var$4.$_1185 = var$2; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7663), var$1.$position15)); + oncius_package$_$callClinit(); + return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_1() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83() { jl_Object.call(this); - this.$_0951 = null; + this.$_0995 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_1_apply = var$0 => { +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83__init_0 = (var$0, var$1) => { + var$0.$_0995 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83_apply = var$0 => { let var$1, var$2; - var$1 = var$0.$_0951; + var$1 = var$0.$_0995; oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); var$2 = oncias_package$_MODULE$; oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7664), var$1.$position15)); + return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6640), var$1.$position47)); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84() { jl_Object.call(this); - this.$_0881 = null; + this.$_0409 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0881; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84__init_ = (var$0, var$1) => { + var$0.$_0409 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0409; oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7665), var$1.$position17)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_1() { - jl_Object.call(this); - this.$_0255 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_1_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0255; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = !isFinite((oncie_DecimalDoubleLiteral_value(var$1)).$value11) ? 1 : 0; + var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$106$lambda$_176_0; + var$4.$_0468 = var$1; + return oncias_SemanticCheck$_when(var$2, var$3, var$4); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7666), var$1.$position17)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_0() { - jl_Object.call(this); - this.$_0204 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0204; + oncius_package$_$callClinit(); + return (oncius_package$_CTFloat(oncius_package$_MODULE$)).$invariant(); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7667), var$1.$position16)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_1() { - jl_Object.call(this); - this.$_0771 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_1_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0771; + oncius_package$_$callClinit(); + return (oncius_package$_CTString(oncius_package$_MODULE$)).$invariant(); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7668), var$1.$position16)); + oncius_package$_$callClinit(); + return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); }, -oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = oncias_SemanticExpressionCheck$_MODULE$; oncius_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_declareVariable$(var$3, var$1, (oncius_package$_CTPath(oncius_package$_MODULE$)).$invariant())); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }, -oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_1 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_1_apply = (var$0, var$1) => { - var$1 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); + oncius_package$_$callClinit(); + return (oncius_package$_CTFloat(oncius_package$_MODULE$)).$invariant(); }, -oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_112_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_112_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTFloat(oncius_package$_MODULE$)).$invariant(); }; -function oncias_SemanticCheck$ifOkChain$lambda$_17_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91() { jl_Object.call(this); - this.$_0722 = null; + this.$_0217 = null; } -let oncias_SemanticCheck$ifOkChain$lambda$_17_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0722; +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91__init_ = (var$0, var$1) => { + var$0.$_0217 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0217; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = var$1.$query3.$semanticCheckInSubqueryExpressionContext(1); oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, var$1.$errors0.$isEmpty(), var$2); - var$3 = new oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0; - var$3.$_0906 = var$1; - return var$2.$map11(var$3); -}; -function sci_LazyList$$from$lambda$_25_0() { - jl_Object.call(this); - this.$_092 = null; -} -let sci_LazyList$$from$lambda$_25_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_092; - sci_LazyList$_$callClinit(); - return sci_LazyList$_scala$collection$immutable$LazyList$$stateFromIterator(sci_LazyList$_MODULE$, var$1.$iterator0()); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = var$1.$query3.$containsUpdates(); + var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_0; + var$5.$_01134 = var$1; + var$5 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_when(var$3, var$4, var$5)); + var$2 = oncias_SemanticCheck$_MODULE$; + var$4 = var$1.$query3.$endsWithFinish(); + var$3 = new oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_1; + var$3.$_0474 = var$1; + var$6 = oncias_SemanticCheck_chain$(var$5, oncias_SemanticCheck$_when(var$2, var$4, var$3)); + var$3 = oncias_SemanticExpressionCheck$_MODULE$; + var$5 = var$1.$query3.$folder(); + sr_ClassTag$_$callClinit(); + var$3 = oncias_SemanticCheck_chain$(var$6, oncias_SemanticExpressionCheck$_checkForShadowedVariables(var$3, onciu_Foldable$Folder_findAllByClass(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SubqueryCall))))); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$query3)); }, -oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_139_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_139_0_apply = var$0 => { - oncias_SemanticPatternCheck$_$callClinit(); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92__init_ = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92__init_0 = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92__init_(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); oncius_package$_$callClinit(); - return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); -}; -function oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_146_0() { - jl_Object.call(this); - this.$_0239 = null; -} -let oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_146_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0239; - oncias_SemanticPatternCheck$_$callClinit(); - return oncius_TypeSpec_wrapInList(oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$1, var$2.$singleton))); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }; -function oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_99_0() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93() { jl_Object.call(this); - this.$_01121 = null; + this.$_0246 = null; } -let oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_99_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01121; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticState_symbol(var$2, var$1.$name4); +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93__init_ = (var$0, var$1) => { + var$0.$_0246 = var$1; }, -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - return var$1.$expression(); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93__init_(var_1, var_0); + return var_1; }, -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_1 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_1_apply = (var$0, var$1) => { - oncias_SemanticPatternCheck$_$callClinit(); - return jl_Boolean_valueOf(var$1.$features.$contains(oncias_SemanticFeature$DynamicLabelsAndTypes$_MODULE$) ? 0 : 1); +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0246; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = var$1.$query4; + var$2 = var$2.$semanticCheckInSubqueryExpressionContext(var$2 instanceof oncia_UnionDistinct ? 0 : 1); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = var$1.$query4.$containsUpdates(); + var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_0; + var$5.$_01123 = var$1; + var$5 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_when(var$3, var$4, var$5)); + var$2 = oncias_SemanticCheck$_MODULE$; + var$4 = var$1.$query4.$endsWithFinish(); + var$3 = new oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_1; + var$3.$_0530 = var$1; + var$6 = oncias_SemanticCheck_chain$(var$5, oncias_SemanticCheck$_when(var$2, var$4, var$3)); + var$3 = oncias_SemanticExpressionCheck$_MODULE$; + var$5 = var$1.$query4.$folder(); + sr_ClassTag$_$callClinit(); + var$3 = oncias_SemanticCheck_chain$(var$6, oncias_SemanticExpressionCheck$_checkForShadowedVariables(var$3, onciu_Foldable$Folder_findAllByClass(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SubqueryCall))))); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$query4)); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTInteger(oncius_package$_MODULE$)).$invariant(); }; -function oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_2() { +function oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95() { jl_Object.call(this); - this.$_01018 = null; + this.$_0985 = null; } -let oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_2_apply = var$0 => { +let oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95__init_ = (var$0, var$1) => { + var$0.$_0985 = var$1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95__init_0 = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0985; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = var$1.$query2.$semanticCheckInSubqueryExpressionContext(0); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = var$1.$query2.$containsUpdates(); + var$5 = new oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_0; + var$5.$_0713 = var$1; + var$5 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck$_when(var$3, var$4, var$5)); + var$2 = oncias_SemanticCheck$_MODULE$; + var$4 = !(var$1.$query2.$returnVariables()).$includeExisting1 && (var$1.$query2.$returnColumns()).$length() == 1 ? 0 : 1; + var$3 = new oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_1; + var$3.$_049 = var$1; + var$6 = oncias_SemanticCheck_chain$(var$5, oncias_SemanticCheck$_when(var$2, var$4, var$3)); + var$3 = oncias_SemanticExpressionCheck$_MODULE$; + var$5 = var$1.$query2.$folder(); + sr_ClassTag$_$callClinit(); + var$3 = oncias_SemanticCheck_chain$(var$6, oncias_SemanticExpressionCheck$_checkForShadowedVariables(var$3, onciu_Foldable$Folder_findAllByClass(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_SubqueryCall))))); + oncias_SemanticState$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticState$_recordCurrentScope(oncias_SemanticState$_MODULE$, var$1.$query2)); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96__init_0 = var$0 => { + return; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96__init_ = () => { + let var_0 = new oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96(); + oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96__init_0(var_0); + return var_0; +}, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96_apply = var$0 => { let var$1; - var$1 = var$0.$_01018; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticErrorDefs(oncias_package$_MODULE$, var$1.$map(new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_172_0)); -}; -function oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_3() { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +}, +oncia_AliasedReturnItem$ = $rt_classWithoutFields(), +oncia_AliasedReturnItem$_MODULE$ = null, +oncia_AliasedReturnItem$__clinit_ = () => { + oncia_AliasedReturnItem$_MODULE$ = new oncia_AliasedReturnItem$; +}, +onciu_Foldable$FoldingBehavior = $rt_classWithoutFields(0); +function onciu_Foldable$SkipChildren() { jl_Object.call(this); - this.$_0406 = null; + this.$acc = null; } -let oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_3_apply = var$0 => { - let var$1; - var$1 = var$0.$_0406; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling_whenState$default$3$(oncias_SemanticPatternCheck$_MODULE$, var$1); +let onciu_Foldable$SkipChildren_productPrefix = $this => { + return $rt_s(6644); +}, +onciu_Foldable$SkipChildren_productArity = $this => { + return 1; +}, +onciu_Foldable$SkipChildren_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$acc; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_Foldable$SkipChildren_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_Foldable$SkipChildren_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_Foldable$SkipChildren__init_0 = ($this, $acc) => { + $this.$acc = $acc; +}, +onciu_Foldable$SkipChildren__init_ = var_0 => { + let var_1 = new onciu_Foldable$SkipChildren(); + onciu_Foldable$SkipChildren__init_0(var_1, var_0); + return var_1; }; -function oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_4() { +function onciu_Foldable$TraverseChildren() { jl_Object.call(this); - this.$_0988 = null; -} -let oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_4_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0988; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$7$lambda$_177_0; - var$3.$_0944 = var$1; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); -}; -function oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_168_0() { - let a = this; jl_Object.call(a); - a.$_0543 = null; - a.$_1188 = null; + this.$acc0 = null; } -let oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_168_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0543; - var$2 = var$0.$_1188; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$1 = var$1.$description(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7669)), var$1), $rt_s(7670)); - return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); +let onciu_Foldable$TraverseChildren_productPrefix = $this => { + return $rt_s(6645); +}, +onciu_Foldable$TraverseChildren_productArity = $this => { + return 1; +}, +onciu_Foldable$TraverseChildren_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$acc0; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_Foldable$TraverseChildren_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_Foldable$TraverseChildren_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_Foldable$TraverseChildren__init_0 = ($this, $acc) => { + $this.$acc0 = $acc; +}, +onciu_Foldable$TraverseChildren__init_ = var_0 => { + let var_1 = new onciu_Foldable$TraverseChildren(); + onciu_Foldable$TraverseChildren__init_0(var_1, var_0); + return var_1; }; -function oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_0() { +function onciu_Foldable$TraverseChildrenNewAccForSiblings() { let a = this; jl_Object.call(a); - a.$_0314 = null; - a.$_1117 = null; + a.$accumulatorForChildren = null; + a.$forSiblings = null; } -let oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0314; - var$2 = var$0.$_1117; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$1 = var$1.$description(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7671)), var$1), $rt_s(7672)); - return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); +let onciu_Foldable$TraverseChildrenNewAccForSiblings_productPrefix = $this => { + return $rt_s(6646); +}, +onciu_Foldable$TraverseChildrenNewAccForSiblings_productArity = $this => { + return 2; +}, +onciu_Foldable$TraverseChildrenNewAccForSiblings_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$accumulatorForChildren; + case 1: + return $this.$forSiblings; + default: + } + return sr_Statics_ioobe($x$1); +}, +onciu_Foldable$TraverseChildrenNewAccForSiblings_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_Foldable$TraverseChildrenNewAccForSiblings_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciu_Foldable$TraverseChildrenNewAccForSiblings__init_ = ($this, $accumulatorForChildren, $forSiblings) => { + $this.$accumulatorForChildren = $accumulatorForChildren; + $this.$forSiblings = $forSiblings; +}, +onciu_Foldable$TraverseChildrenNewAccForSiblings__init_0 = (var_0, var_1) => { + let var_2 = new onciu_Foldable$TraverseChildrenNewAccForSiblings(); + onciu_Foldable$TraverseChildrenNewAccForSiblings__init_(var_2, var_0, var_1); + return var_2; +}, +onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0 = $rt_classWithoutFields(), +onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0_apply = (var$0, var$1) => { + s_Predef$_$callClinit(); + return var$1; +}, +onciuh_NameDeduplicator$ = $rt_classWithoutFields(), +onciuh_NameDeduplicator$_MODULE$ = null, +onciuh_NameDeduplicator$_UNNAMED_PATTERN = null, +onciuh_NameDeduplicator$_UNNAMED_PARAMS_PATTERN = null, +onciuh_NameDeduplicator$_DEDUP_PATTERN = null, +onciuh_NameDeduplicator$_deduplicateVariableNames = null, +onciuh_NameDeduplicator$_$callClinit = () => { + onciuh_NameDeduplicator$_$callClinit = $rt_eraseClinit(onciuh_NameDeduplicator$); + onciuh_NameDeduplicator$__clinit_(); +}, +onciuh_NameDeduplicator$__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new onciuh_NameDeduplicator$; + onciuh_NameDeduplicator$_$callClinit(); + onciuh_NameDeduplicator$_MODULE$ = var$1; + onciu_AnonymousVariableNameGenerator$_$callClinit(); + var$1 = onciu_AnonymousVariableNameGenerator$_generatorName(onciu_AnonymousVariableNameGenerator$_MODULE$); + var$2 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6647)), var$1), $rt_s(6648)); + onciuh_NameDeduplicator$_UNNAMED_PATTERN = sc_StringOps$_r$extension(var$2, jl_AbstractStringBuilder_toString(var$3)); + onciuh_NameDeduplicator$_UNNAMED_PARAMS_PATTERN = sc_StringOps$_r$extension(sc_StringOps$_MODULE$, $rt_s(6649)); + onciuh_NameDeduplicator$_DEDUP_PATTERN = sc_StringOps$_r$extension(sc_StringOps$_MODULE$, $rt_s(6650)); + var$1 = new onciuh_NameDeduplicator$$_clinit_$lambda$_0_0; + var$2 = new onciuh_fixedPoint$$apply$lambda$_1_0; + var$2.$_01171 = var$1; + onciuh_NameDeduplicator$_deduplicateVariableNames = var$2; }; -function oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_1() { +function oncia_Clause$semanticCheck$lambda$_6_0() { jl_Object.call(this); - this.$_0760 = null; + this.$_0307 = null; } -let oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_1_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0760; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticPatternCheck$_MODULE$; - var$3 = new oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_165_0; - var$3.$_0826 = var$1; - return oncias_SemanticAnalysisTooling_withScopedState$(var$2, var$3); +let oncia_Clause$semanticCheck$lambda$_6_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; + var$2 = var$0.$_0307; + var$3 = new sr_LazyRef; + var$4 = new sr_LazyRef; + var$5 = new sr_LazyRef; + var$6 = new sr_LazyRef; + var$7 = new sr_LazyRef; + var$8 = new sr_LazyRef; + var$9 = var$2.$folder(); + var$10 = oncia_Clause_Acc$3(var$2, var$8, var$7, var$3, var$4, var$5, var$6); + var$11 = oncia_Clause_Acc$3(var$2, var$8, var$7, var$3, var$4, var$5, var$6); + var$12 = oncia_Clause$LabelExpressionsPartitions$2$_apply(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1), oncia_Clause$LabelExpressionsPartitions$2$_apply$default$1(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1)), oncia_Clause$LabelExpressionsPartitions$2$_apply$default$2(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, + var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1))); + var$11 = oncia_Clause_Acc$3(var$2, var$8, var$7, var$3, var$4, var$5, var$6); + var$11 = oncia_Clause$LabelExpressionsPartitions$2$_apply(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1), oncia_Clause$LabelExpressionsPartitions$2$_apply$default$1(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1)), oncia_Clause$LabelExpressionsPartitions$2$_apply$default$2(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, + var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1))); + var$2 = oncia_Clause_Acc$3(var$2, var$8, var$7, var$3, var$4, var$5, var$6); + var$13 = oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$Read$2(var$2.$$outer2, var$2.$Read$module$10); + var$2 = oncia_Clause$Acc$1__init_(var$10.$$outer2, var$12, var$11, var$13, var$10.$Read$module$10, var$10.$Write$module$10, var$10.$ReadWrite$module$10); + var$3 = new oncia_Clause$$anonfun$1; + var$3.$state$11 = var$1; + var$1 = onciu_Foldable$Folder_treeFold(var$9, var$2, var$3); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$readPartitions; + var$2 = var$1.$writePartitions; + var$1 = s_Tuple2__init_(var$3, var$2); + var$2 = var$1.$_10; + var$1 = var$1.$_20; + return (oncia_Clause$LabelExpressionsPartitions$1_semanticCheck(var$2)).$chain(oncia_Clause$LabelExpressionsPartitions$1_semanticCheck(var$1)); }; -function sm_Ordering$IterableOrdering() { +function oncia_Clause$semanticCheck$lambda$_6_1() { jl_Object.call(this); - this.$ord0 = null; + this.$_0801 = null; } -let sm_Ordering$IterableOrdering_on = ($this, $f) => { - return sm_Ordering_on$($this, $f); +let oncia_Clause$semanticCheck$lambda$_6_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0801; + var$2 = var$1.$folder(); + s_package$_$callClinit(); + var$3 = onciu_Foldable$Folder_treeFold(var$2, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), new oncia_Clause$$anonfun$2); + var$4 = sr_BoxesRunTime_unboxToBoolean(onciu_Foldable$Folder_treeFold(var$1.$folder(), jl_Boolean_valueOf(0), new oncia_Clause$$anonfun$3)); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$5 = new oncia_Clause$checkIfMixingLegacyVarLengthWithQPPs$lambda$_11_0; + var$5.$_0863 = var$1; + var$5.$_1291 = var$3; + var$6 = oncias_SemanticCheck$_when(var$2, var$4, var$5); + var$5 = var$1.$folder(); + sr_ClassTag$_$callClinit(); + var$3 = onciu_Foldable$Folder_findAllByClass(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_ShortestPathsPatternPart))); + var$4 = sr_BoxesRunTime_unboxToBoolean(onciu_Foldable$Folder_treeFold(var$1.$folder(), jl_Boolean_valueOf(0), new oncia_Clause$$anonfun$4)); + var$2 = oncias_SemanticCheck$_MODULE$; + var$5 = new oncia_Clause$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$lambda$_12_0; + var$5.$_0968 = var$1; + var$5.$_1330 = var$3; + return var$6.$chain(oncias_SemanticCheck$_when(var$2, var$4, var$5)); }, -sm_Ordering$IterableOrdering_compare = ($this, $x, $y) => { - let var$3; - $x = $x; - $y = $y; - $x = $x.$iterator0(); - $y = $y.$iterator0(); - a: { - b: { - while (true) { - if (!$x.$hasNext()) - break b; - if (!$y.$hasNext()) - break b; - var$3 = sm_Ordering$String$_compare($this.$ord0, $x.$next(), $y.$next()); - if (!var$3) - continue; - else - break; - } - break a; - } - var$3 = jl_Boolean_compare($x.$hasNext(), $y.$hasNext()); +oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0 = $rt_classWithoutFields(), +oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$containsGpmSpecificRelTypeExpression()); +}, +oncil_LabelExpression$replaceColonSyntax$lambda$_13_0 = $rt_classWithoutFields(), +oncil_LabelExpression$replaceColonSyntax$lambda$_13_0_apply = (var$0, var$1) => { + let var$2, var$3; + if (var$1 instanceof oncil_LabelExpression$ColonDisjunction) { + var$1 = var$1; + var$2 = var$1.$lhs3; + var$3 = var$1.$rhs3; + var$1 = oncil_LabelExpression$Disjunctions$_flat(oncil_LabelExpression$Disjunctions$_MODULE$, var$2, var$3, var$1.$position32, var$1.$containsIs3); + } else if (!(var$1 instanceof oncil_LabelExpression$ColonConjunction)) { + if (var$1 instanceof oncil_LabelExpression$Disjunctions) + var$1 = oncil_LabelExpression$Disjunctions_unnestDisjunctions(var$1); + else if (var$1 instanceof oncil_LabelExpression$Conjunctions) + var$1 = oncil_LabelExpression$Conjunctions_unnestConjunctions(var$1); + } else { + var$1 = var$1; + var$2 = var$1.$lhs2; + var$3 = var$1.$rhs2; + var$1 = oncil_LabelExpression$Conjunctions$_flat(oncil_LabelExpression$Conjunctions$_MODULE$, var$2, var$3, var$1.$position70, var$1.$containsIs4); } - return var$3; + return var$1; }; -function oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_95_0() { +function oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0() { let a = this; jl_Object.call(a); - a.$_0811 = null; - a.$_1276 = null; -} -let oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_95_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0811; - var$2 = var$0.$_1276; - return oncias_SemanticExpressionCheck$_$anonfun$infixAddRhsTypes$1(var$1.$_01042, var$2); -}; -function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_0() { - jl_Object.call(this); - this.$_0561 = null; -} -let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0561; - return jl_Boolean_valueOf(sci_Vector_length(var$1.$argumentTypes()) != (oncie_Expression_arguments(var$2)).$length() ? 0 : 1); -}; -function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_1() { - jl_Object.call(this); - this.$_01113 = null; + a.$_074 = null; + a.$_127 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_1_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6, var$7; +let oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; a: { var$1 = var$1; - var$2 = var$2; - var$3 = var$0.$_01113; - var$4 = s_Tuple2__init_(var$1, var$2); - var$1 = var$4.$_10; + var$2 = var$0.$_074; + var$3 = var$0.$_127; if (var$1 !== null) { - var$2 = var$1.$_1(); - if (var$2 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$2); - if (!var$2.$lengthCompare(0)) - break a; - } + var$4 = var$1.$errors0; + if (sci_List_equals(sci_Nil$_MODULE$, var$4)) + break a; } - var$1 = var$4.$_10; - var$2 = var$4.$_20; if (var$1 === null) - $rt_throw(s_MatchError__init_(var$4)); - var$4 = var$1.$_1(); - var$5 = var$1.$_2(); - oncius_TypeSpec$_$callClinit(); - var$6 = var$4.$foldLeft(oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$), new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_0); - var$1 = var$5.$state; - var$7 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_1; - var$7.$_013 = var$6; - var$6 = var$3.$expectType4(var$1, var$7, var$2, var$3.$expectType$default$4()); - var$1 = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(var$3.$types0(var$2), var$6.$state); - var$2 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_2; - var$2.$_0698 = var$1; - var$2 = (var$4.$filter1(var$2)).$map(new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_3); - var$1 = s_Tuple2__init_(var$2, oncias_SemanticCheckResult__init_(var$6.$state, var$5.$errors0.$concat(var$6.$errors0))); + $rt_throw(s_MatchError__init_(var$1)); + var$5 = var$1.$state; + var$1 = new oncias_SemanticCheckResult; + var$6 = new sci_$colon$colon; + oncias_SemanticError$_$callClinit(); + var$7 = var$2.$constraintType4.$description(); + ong_GqlStatusInfoCodes_$callClinit(); + var$8 = ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_50N11); + var$9 = ong_GqlParams$StringParam_constrDescrOrName; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$7), $rt_s(5958)); + var$2 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(var$8, var$9, jl_AbstractStringBuilder_toString(var$2)), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N90), ong_GqlParams$StringParam_item, var$3.$description())))); + var$4 = new oncias_SemanticError; + var$10 = var$3.$description(); + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(5507)), var$7), $rt_s(5968)), var$10), $rt_s(901)); + oncias_SemanticError__init_(var$4, var$2, jl_AbstractStringBuilder_toString(var$9), var$3.$position()); + sci_$colon$colon__init_0(var$6, var$4, sci_Nil$_MODULE$); + oncias_SemanticCheckResult__init_0(var$1, var$5, var$6); } return var$1; +}, +oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return $x instanceof oncia_ExistsExpression ? jl_Boolean_valueOf(1) : $x instanceof oncia_CollectExpression ? jl_Boolean_valueOf(1) : !($x instanceof oncia_CountExpression) ? s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x) : jl_Boolean_valueOf(1); }; -function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_2() { +function oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_80_0() { jl_Object.call(this); - this.$_0320 = null; + this.$_0355 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_2_apply = var$0 => { - return var$0.$_0320; +let oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_80_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0355; + var$3 = oncias_package$_MODULE$; + oncius_package$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$(var$2, var$1, (oncius_package$_CTNode(oncius_package$_MODULE$)).$invariant())); }, -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_3 = $rt_classWithoutFields(), -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_3_apply = (var$0, var$1, var$2) => { - return oncius_TypeSpec_union(var$1, (var$2.$outputType()).$invariant()); +oncie_Expression$SemanticContext$Results$ = $rt_classWithoutFields(), +oncie_Expression$SemanticContext$Results$_MODULE$ = null, +oncie_Expression$SemanticContext$Results$__clinit_ = () => { + oncie_Expression$SemanticContext$Results$_MODULE$ = new oncie_Expression$SemanticContext$Results$; +}, +oncia_SchemaCommand$checkOptionsMap$lambda$_6_0 = $rt_classWithoutFields(); +function oncia_CreateIndex$semanticCheck$lambda$_31_0() { + jl_Object.call(this); + this.$_0616 = null; +} +let oncia_CreateIndex$semanticCheck$lambda$_31_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0616; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = var$1.$map15 instanceof oncie_Variable ? 0 : 1; + var$5 = new oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0; + var$5.$_01002 = var$2; + var$5.$_1342 = var$1; + return oncias_SemanticCheck$_when(var$3, var$4, var$5); }; -function oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_102_0() { +function oncia_SchemaCommand$checkSingleProperty$lambda$_8_0() { let a = this; jl_Object.call(a); - a.$_0452 = null; - a.$_1157 = null; + a.$_0134 = null; + a.$_146 = null; + a.$_223 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_102_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$2; - var$3 = var$0.$_0452; - var$4 = var$0.$_1157; - var$5 = var$1.$state; - var$6 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_101_0; - var$6.$_0209 = var$4; - var$2 = var$3.$expectType4(var$5, var$6, var$2, var$3.$expectType$default$4()); - return oncias_SemanticCheckResult__init_(var$2.$state, var$1.$errors0.$concat(var$2.$errors0)); +let oncia_SchemaCommand$checkSingleProperty$lambda$_8_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0134; + var$2 = var$0.$_146; + var$3 = var$0.$_223; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6651)), var$2), $rt_s(6652)); + return oncias_SemanticAnalysisTooling_error$(var$1, jl_AbstractStringBuilder_toString(var$4), (sc_LinearSeqOps_apply$(var$3, 1)).$position19); }; -function oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_149_0() { +function sc_IterableOps$grouped$lambda$_60_0() { jl_Object.call(this); - this.$_0850 = null; + this.$_0425 = null; } -let oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_149_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0850; - oncias_SemanticPatternCheck$_$callClinit(); - return var$1.$covariant(); +let sc_IterableOps$grouped$lambda$_60_0_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_0425.$fromSpecific(var$1); +}, +oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0 = $rt_classWithoutFields(), +oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0_apply = (var$0, var$1) => { + return var$1.$asCanonicalStringVal(); +}, +oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0 = $rt_classWithoutFields(), +oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1.$asCanonicalStringVal(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6653)), var$1); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1 = $rt_classWithoutFields(), +oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1_apply = var$0 => { + return $rt_s(4); }; -function oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath() { +function oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0() { jl_Object.call(this); - this.$p1 = null; + this.$_0704 = null; } -let oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_position = $this => { - return $this.$p1.$position33; +let oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0_apply = var$0 => { + return var$0.$_0704; +}; +function oncia_CommandResultItem() { + let a = this; jl_Object.call(a); + a.$originalName = null; + a.$aliasedVariable = null; + a.$position183 = null; +} +let oncia_CommandResultItem_position = $this => { + return $this.$position183; }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productPrefix = $this => { - return $rt_s(7673); +oncia_CommandResultItem_semanticCheck = ($this, $columns) => { + let var$2, var$3; + var$2 = $columns.$get2($this.$originalName); + var$3 = new oncia_CommandResultItem$semanticCheck$lambda$_59_0; + var$3.$_0120 = $this; + var$2 = s_Option_map(var$2, var$3); + var$3 = new oncia_CommandResultItem$semanticCheck$lambda$_59_1; + var$3.$_0780 = $this; + var$3.$_1260 = $columns; + return s_Option_getOrElse(var$2, var$3); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productArity = $this => { - return 1; +oncia_CommandResultItem_productPrefix = $this => { + return $rt_s(6654); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productElement = ($this, $x$1) => { +oncia_CommandResultItem_productArity = $this => { + return 2; +}, +oncia_CommandResultItem_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$p1; + return $this.$originalName; + case 1: + return $this.$aliasedVariable; default: } return sr_Statics_ioobe($x$1); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productIterator = $this => { +oncia_CommandResultItem_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_hashCode = $this => { +oncia_CommandResultItem_hashCode = $this => { return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_toString = $this => { +oncia_CommandResultItem_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_equals = ($this, $x$1) => { - let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$p1; - $x$1 = $x$1.$p1; - if (var$2 !== null) { - if (!oncie_ParenthesizedPath_equals(var$2, $x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; +oncia_CommandResultItem_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_CommandResultItem) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$originalName; + var$3 = $x$1.$originalName; + if (var$2 !== null) { + if (!jl_String_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$aliasedVariable; + $x$1 = $x$1.$aliasedVariable; + if (var$3 !== null) { + if (!oncie_Variable_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_CommandResultItem)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}, +oncia_CommandResultItem_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncia_CommandResultItem__init_0 = ($this, $originalName, $aliasedVariable, $position) => { + $this.$originalName = $originalName; + $this.$aliasedVariable = $aliasedVariable; + $this.$position183 = $position; +}, +oncia_CommandResultItem__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncia_CommandResultItem(); + oncia_CommandResultItem__init_0(var_3, var_0, var_1, var_2); + return var_3; +}; +function oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0() { + jl_Object.call(this); + this.$_0367 = null; +} +let oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0_apply = var$0 => { + return var$0.$_0367; +}; +function oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0() { + jl_Object.call(this); + this.$_0658 = null; +} +let oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0_apply = var$0 => { + return (var$0.$_0658.$items0.$map(new oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_00)).$toList(); +}, +oncia_CommandClause$ = $rt_classWithoutFields(), +oncia_CommandClause$_MODULE$ = null, +oncia_CommandClause$_$callClinit = () => { + oncia_CommandClause$_$callClinit = $rt_eraseClinit(oncia_CommandClause$); + oncia_CommandClause$__clinit_(); +}, +oncia_CommandClause$__clinit_ = () => { + let var$1; + var$1 = new oncia_CommandClause$; + oncia_CommandClause$_$callClinit(); + oncia_CommandClause$_MODULE$ = var$1; +}, +oncia_CommandClause$_updateAliasedVariablesFromYieldInOrderByAndWhere = ($this, $yieldClause) => { + let $returnAliasesMap, $where, $orderBy; + $returnAliasesMap = sc_AbstractIterable_toMap($yieldClause.$returnItems4.$items0.$map(new oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0), s_$less$colon$less$_singleton); + $where = $yieldClause.$orderBy3; + $orderBy = new oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1; + $orderBy.$_0434 = $returnAliasesMap; + $orderBy = s_Option_map($where, $orderBy); + $where = $yieldClause.$where3; + $yieldClause = new oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2; + $yieldClause.$_0964 = $returnAliasesMap; + return s_Tuple2__init_($orderBy, s_Option_map($where, $yieldClause)); +}, +oncia_CommandClause$_updateExpression$1 = ($e, $returnAliasesMap$1) => { + let var$3; + oncia_CommandClause$_$callClinit(); + var$3 = new oncia_CommandClause$$updateExpression$1$lambda$_8_0; + var$3.$_0702 = $returnAliasesMap$1; + return (($returnAliasesMap$1.$filter1(var$3)).$map12(new oncia_CommandClause$$updateExpression$1$lambda$_8_1)).$foldLeft($e, new oncia_CommandClause$$updateExpression$1$lambda$_8_2); +}, +oncia_ParsedAsYield$ = $rt_classWithoutFields(), +oncia_ParsedAsYield$_MODULE$ = null, +oncia_ParsedAsYield$__clinit_ = () => { + oncia_ParsedAsYield$_MODULE$ = new oncia_ParsedAsYield$; +}, +oncia_ParsedAsYield$_productArity = $this => { + return 0; +}, +oncia_ParsedAsYield$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_ParsedAsYield$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); +oncia_ParsedAsYield$_hashCode = $this => { + return (-925484790); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_0 = ($this, $p) => { - $this.$p1 = $p; +oncia_ParsedAsYield$_toString = $this => { + return $rt_s(6655); }, -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_ = var_0 => { - let var_1 = new oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath(); - oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_0(var_1, var_0); - return var_1; +oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_0 = $rt_classWithoutFields(), +oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_AdministrationCommand$_$callClinit(); + return oncia_AdministrationCommand$_checkIsStringLiteralOrParameter(oncia_AdministrationCommand$_MODULE$, $rt_s(6144), var$1); }; -function oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath() { +function oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_1() { jl_Object.call(this); - this.$p0 = null; + this.$_0141 = null; } -let oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_position = $this => { - return $this.$p0.$position33; +let oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_1_apply = var$0 => { + let var$1; + var$1 = var$0.$_0141; + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + return oncia_AdministrationCommandSemanticAnalysis$_missingMandatoryAuthClauseError(oncia_AdministrationCommandSemanticAnalysis$_MODULE$, $rt_s(5629), var$1.$provider1, oncia_AuthImpl_missingRequiredClauseErrorMessage$(var$1, $rt_s(5629)), var$1.$position160); }, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productPrefix = $this => { - return $rt_s(7674); +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_0 = $rt_classWithoutFields(), +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_0_apply = (var$0, var$1) => { + return su_Either$LeftProjection_toOption(su_Either_left(var$1)); }, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productArity = $this => { - return 1; +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_1 = $rt_classWithoutFields(), +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_1_apply$mcZI$sp = (var$0, var$1) => { + return var$1 >= 1 ? 0 : 1; }, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$p0; - default: - } - return sr_Statics_ioobe($x$1); +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_2 = $rt_classWithoutFields(), +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_2_apply = (var$0, var$1) => { + return su_Either$LeftProjection_toOption(su_Either_left(var$1)); }, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_0 = $rt_classWithoutFields(), +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_0_apply = (var$0, var$1) => { + return su_Either$LeftProjection_toOption(su_Either_left(var$1)); }, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_1 = $rt_classWithoutFields(), +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_1_apply$mcZI$sp = (var$0, var$1) => { + return var$1 >= 0 ? 0 : 1; }, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_2 = $rt_classWithoutFields(), +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_2_apply = (var$0, var$1) => { + return su_Either$LeftProjection_toOption(su_Either_left(var$1)); +}; +function oncias_SemanticExpressionCheck$$infixAddRhsTypes$lambda$_65_0() { + jl_Object.call(this); + this.$_0114 = null; +} +function oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_66_0() { + let a = this; jl_Object.call(a); + a.$_0643 = null; + a.$_1218 = null; +} +let oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_66_0_apply = (var$0, var$1) => { + return oncias_SemanticExpressionCheck$_$anonfun$infixAddOutputTypes$1(var$0.$_0643, var$0.$_1218, var$1); }, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_equals = ($this, $x$1) => { - let var$2, var$3; +onciuh_Try$ = $rt_classWithoutFields(), +onciuh_Try$_MODULE$ = null, +onciuh_Try$__clinit_ = () => { + onciuh_Try$_MODULE$ = new onciuh_Try$; +}, +onciuh_Try$_apply = ($this, $value) => { + let var$2, $$je; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$p0; - $x$1 = $x$1.$p0; - if (var$2 !== null) { - if (!oncie_ParenthesizedPath_equals(var$2, $x$1)) - break b; - else + c: { + d: { + e: { + try { + var$2 = onciuh_Success__init_(srj_JFunction0$mcJ$sp_apply($value)); break c; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_VirtualMachineError) { + $value = $$je; + break b; + } else if ($$je instanceof jl_InterruptedException) { + $value = $$je; + break d; + } else if ($$je instanceof jl_LinkageError) { + $value = $$je; + break e; + } else if ($$je instanceof suc_ControlThrowable) { + $value = $$je; + } else if ($$je instanceof jl_Throwable) { + var$2 = new onciuh_Failure; + break a; + } else { + throw $$e; + } + } + $rt_throw($value); } - if ($x$1 !== null) - break b; + $rt_throw($value); } - if (!($this instanceof oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath)) - break b; + $rt_throw($value); } - var$3 = 1; break a; } - var$3 = 0; + $rt_throw($value); } - return var$3; -}, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_dup = ($this, $children) => { - return onciu_ASTNode_dup$($this, $children); -}, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_0 = ($this, $p) => { - $this.$p0 = $p; -}, -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_ = var_0 => { - let var_1 = new oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath(); - oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_0(var_1, var_0); - return var_1; + return var$2; +}; +function oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_61_0() { + let a = this; jl_Object.call(a); + a.$_01019 = null; + a.$_1349 = null; +} +let oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_61_0_apply$mcJ$sp = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$0.$_01019; + var$2 = var$0.$_1349; + oncias_SemanticExpressionCheck$_$callClinit(); + onciuh_Math$_$callClinit(); + s_Predef$_$callClinit(); + var$3 = sr_BoxesRunTime_unboxToLong(var$1.$value1()); + var$4 = sr_BoxesRunTime_unboxToLong(var$2.$value1()); + var$5 = Long_add(var$3, var$4); + var$6 = Long_ge(var$5, Long_ZERO) ? 0 : 1; + var$7 = Long_ge(var$3, Long_ZERO) ? 0 : 1; + if (var$6 != var$7 && var$6 != (Long_ge(var$4, Long_ZERO) ? 0 : 1)) { + var$1 = new jl_ArithmeticException; + jl_Throwable__init_(var$1, $rt_s(6656)); + $rt_throw(var$1); + } + return var$5; }; -function oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_144_0() { +function oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_62_0() { + let a = this; jl_Object.call(a); + a.$_047 = null; + a.$_119 = null; +} +let oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_62_0_apply$mcJ$sp = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_047; + var$2 = var$0.$_119; + oncias_SemanticExpressionCheck$_$callClinit(); + onciuh_Math$_$callClinit(); + var$3 = onciuh_Math$_MODULE$; + s_Predef$_$callClinit(); + return onciuh_Math$_subtractExact(var$3, sr_BoxesRunTime_unboxToLong(var$1.$value1()), sr_BoxesRunTime_unboxToLong(var$2.$value1())); +}; +function oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_63_0() { jl_Object.call(this); - this.$_01075 = null; + this.$_0508 = null; } -let oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_144_0_apply = var$0 => { +let oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_63_0_apply$mcJ$sp = var$0 => { let var$1, var$2; - var$1 = var$0.$_01075; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$1, new oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_143_0); + var$1 = var$0.$_0508; + oncias_SemanticExpressionCheck$_$callClinit(); + onciuh_Math$_$callClinit(); + var$2 = onciuh_Math$_MODULE$; + s_Predef$_$callClinit(); + return onciuh_Math$_subtractExact(var$2, Long_ZERO, sr_BoxesRunTime_unboxToLong(var$1.$value1())); }; -function oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_130_0() { +function oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_64_0() { let a = this; jl_Object.call(a); - a.$_0620 = null; - a.$_1211 = null; + a.$_01086 = null; + a.$_1368 = null; } -let oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_130_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0620; - var$2 = var$0.$_1211; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$1 = var$1.$description(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7675)), var$1), $rt_s(7676)); - return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); +let oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_64_0_apply$mcJ$sp = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_01086; + var$2 = var$0.$_1368; + oncias_SemanticExpressionCheck$_$callClinit(); + onciuh_Math$_$callClinit(); + s_Predef$_$callClinit(); + var$3 = sr_BoxesRunTime_unboxToLong(var$1.$value1()); + var$4 = sr_BoxesRunTime_unboxToLong(var$2.$value1()); + if (Long_gt(var$4, Long_ZERO)) + var$5 = Long_le(var$3, Long_div(Long_create(4294967295, 2147483647), var$4)) && Long_ge(var$3, Long_div(Long_create(0, 2147483648), var$4)) ? 0 : 1; + else { + var$5 = Long_compare(var$4, Long_fromInt(-1)); + var$5 = var$5 >= 0 ? (var$5 ? 0 : Long_ne(var$3, Long_create(0, 2147483648)) ? 0 : 1) : Long_le(var$3, Long_div(Long_create(0, 2147483648), var$4)) && Long_ge(var$3, Long_div(Long_create(4294967295, 2147483647), var$4)) ? 0 : 1; + } + if (!var$5) + return Long_mul(var$3, var$4); + var$1 = new jl_ArithmeticException; + jl_Throwable__init_(var$1, $rt_s(6656)); + $rt_throw(var$1); +}; +function oncias_package$$liftSemanticErrorDef$lambda$_6_0() { + jl_Object.call(this); + this.$_0381 = null; +} +let oncias_package$$liftSemanticErrorDef$lambda$_6_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0381; + return oncias_SemanticCheckResult$_error(oncias_SemanticCheckResult$_MODULE$, var$1, var$2); +}; +function oncias_SemanticExpressionCheck$$check$lambda$_60_0() { + jl_Object.call(this); + this.$_0719 = null; +} +let oncias_SemanticExpressionCheck$$check$lambda$_60_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0719; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, var$2, var$1); }; -function oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_0() { +function oncias_SemanticFunctionCheck$$check$lambda$_49_0() { let a = this; jl_Object.call(a); - a.$_0261 = null; - a.$_1102 = null; + a.$_01060 = null; + a.$_1360 = null; } -let oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_0_apply = var$0 => { +let oncias_SemanticFunctionCheck$$check$lambda$_49_0_apply = var$0 => { let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0261; - var$2 = var$0.$_1102; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$1 = var$1.$description(); + var$1 = var$0.$_01060; + var$2 = var$0.$_1360; + oncias_SemanticFunctionCheck$_$callClinit(); + var$3 = oncias_SemanticFunctionCheck$_MODULE$; + var$1 = var$1.$name(); var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7677)), var$1), $rt_s(7672)); - return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6657)), var$1), $rt_s(6658)); + return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position7); }; -function oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_1() { - jl_Object.call(this); - this.$_0323 = null; +function oncias_SemanticFunctionCheck$$check$lambda$_49_1() { + let a = this; jl_Object.call(a); + a.$_0442 = null; + a.$_1152 = null; } -let oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_1_apply = (var$0, var$1) => { - var$1 = var$0.$_0323; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling_error$(oncias_SemanticPatternCheck$_MODULE$, $rt_s(7678), var$1.$position()); +let oncias_SemanticFunctionCheck$$check$lambda$_49_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0442; + var$3 = var$0.$_1152; + oncias_SemanticFunctionCheck$_$callClinit(); + if (!s_Option_isDefined(var$1.$workingGraph)) { + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = (oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, var$3, oncie_Expression_arguments(var$2))).$chain(oncias_SemanticFunctionCheck$_semanticCheck(oncias_SemanticFunctionCheck$_MODULE$, var$3, var$2)); + } else { + var$1 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$3 = oncias_SemanticError$_MODULE$; + var$4 = $rt_createArray(jl_Object, 1); + var$4.data[0] = var$2.$name11; + var$1 = oncias_package$_liftSemanticErrorDef(var$1, oncias_SemanticError$_apply(var$3, jl_String_format($rt_s(6659), var$4), var$2.$position7)); + } + return var$1; }; -function oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_2() { +function oncias_SemanticFunctionCheck$$check$lambda$_49_2() { jl_Object.call(this); - this.$_01008 = null; + this.$_0963 = null; } -let oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_2_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_01008; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = oncias_SemanticPatternCheck$_MODULE$; - var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_135_0; - var$3.$_01168 = var$1; - return oncias_SemanticAnalysisTooling_withScopedState$(var$2, var$3); +let oncias_SemanticFunctionCheck$$check$lambda$_49_2_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0963; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticFunctionCheck$_MODULE$; + var$3 = var$1.$functionName2.$name6; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6660)), var$3), 39); + return oncias_SemanticAnalysisTooling_error$(var$2, jl_AbstractStringBuilder_toString(var$4), var$1.$position7); }; -function oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_97_0() { - jl_Object.call(this); - this.$_0947 = null; -} -let oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_97_0_apply = var$0 => { - return var$0.$_0947; -}, -scc_JavaCollectionWrappers$IterableWrapper = $rt_classWithoutFields(ju_AbstractCollection); -function scc_JavaCollectionWrappers$JIterableWrapper() { - sc_AbstractIterable.call(this); - this.$underlying38 = null; +function oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_55_0() { + let a = this; jl_Object.call(a); + a.$_0346 = null; + a.$_1122 = null; } -let scc_JavaCollectionWrappers$JIterableWrapper_iterator = $this => { - return scc_AsScalaExtensions$IteratorHasAsScala_asScala(scc_AsScalaExtensions$IteratorHasAsScala__init_(sj_CollectionConverters$_MODULE$, $this.$underlying38.$iterator())); -}, -scc_JavaCollectionWrappers$JIterableWrapper_iterableFactory = $this => { - return scm_ArrayBuffer$_MODULE$; +let oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_55_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0346; + var$3 = var$0.$_1122; + oncias_SemanticExpressionCheck$_$callClinit(); + var$4 = oncias_package$_MODULE$; + var$5 = new oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_197_0; + var$5.$_0103 = var$2; + var$5.$_137 = var$3; + var$5.$_218 = var$1; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5); }; -function oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_92_0() { +function oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_0() { let a = this; jl_Object.call(a); - a.$_0130 = null; - a.$_150 = null; + a.$_0155 = null; + a.$_153 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_92_0_apply = var$0 => { - return var$0.$_0130.$apply2(var$0.$_150); +let oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0155; + var$2 = var$0.$_153; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_package$_MODULE$; + var$4 = oncias_SemanticExpressionCheck$_MODULE$; + var$5 = oncie_ListComprehension_variable(var$1); + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$0(var$4, var$5, oncias_SemanticExpressionCheck$FilteringExpressions$_possibleInnerTypes(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1), s_None$_MODULE$, 0)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Simple$_MODULE$, var$2)); }; -function oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_99_0() { - let a = this; jl_Object.call(a); - a.$_049 = null; - a.$_121 = null; +function oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_1() { + jl_Object.call(this); + this.$_0838 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_99_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_049; - var$2 = var$0.$_121; - var$1 = var$1.$_0147; +let oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_1_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0838; oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$1.$init3), var$2); - var$1 = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, oncie_ReduceExpression_expression(var$1)), var$2); - if (oncius_TypeSpec_equals(oncius_TypeSpec_coerceOrLeastUpperBound(var$3, var$1), var$1)) - var$3 = var$1; - return var$3; + return oncius_TypeSpec_wrapInList(oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2), var$1)); +}; +function oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_2() { + jl_Object.call(this); + this.$_0925 = null; +} +let oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_2_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0925; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + var$3 = oncias_SemanticExpressionCheck$_MODULE$; + var$4 = oncie_ListComprehension_variable(var$1); + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_declareVariable$0(var$3, var$4, oncias_SemanticExpressionCheck$FilteringExpressions$_possibleInnerTypes(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1), s_None$_MODULE$, 0)); }, -oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0 = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); - return var$1.$use.$value20; +oncie_Pattern$SemanticContext$Match$ = $rt_classWithoutFields(), +oncie_Pattern$SemanticContext$Match$_MODULE$ = null, +oncie_Pattern$SemanticContext$Match$__clinit_ = () => { + oncie_Pattern$SemanticContext$Match$_MODULE$ = new oncie_Pattern$SemanticContext$Match$; }, -oavra_PredictionMode$AltAndContextConfigEqualityComparator = $rt_classWithoutFields(oavrm_AbstractEqualityComparator), -oavra_PredictionMode$AltAndContextConfigEqualityComparator_INSTANCE = null, -oavra_PredictionMode$AltAndContextConfigEqualityComparator_equals = ($this, var$1, var$2) => { - return var$1 === var$2 ? 1 : var$1 !== null && var$2 !== null ? (var$1.$state0.$stateNumber == var$2.$state0.$stateNumber && var$1.$context.$equals(var$2.$context) ? 1 : 0) : 0; +oncie_Pattern$SemanticContext$Match$_name = $this => { + return oncie_Pattern$SemanticContext_name$($this); }, -oavra_PredictionMode$AltAndContextConfigEqualityComparator_hashCode = ($this, var$1) => { - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(7, var$1.$state0.$stateNumber), var$1.$context), 2); +oncie_Pattern$SemanticContext$Match$_description = $this => { + return oncie_Pattern$SemanticContext_description$($this); }, -oavra_PredictionMode$AltAndContextConfigEqualityComparator__clinit_ = () => { - oavra_PredictionMode$AltAndContextConfigEqualityComparator_INSTANCE = new oavra_PredictionMode$AltAndContextConfigEqualityComparator; +oncie_Pattern$SemanticContext$Match$_productArity = $this => { + return 0; }, -oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0 = $rt_classWithoutFields(), -oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$containsGpmSpecificRelTypeExpression()); +oncie_Pattern$SemanticContext$Match$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncil_LabelExpression$replaceColonSyntax$lambda$_13_0 = $rt_classWithoutFields(), -oncil_LabelExpression$replaceColonSyntax$lambda$_13_0_apply = (var$0, var$1) => { - let var$2, var$3; - if (var$1 instanceof oncil_LabelExpression$ColonDisjunction) { - var$1 = var$1; - var$2 = var$1.$lhs3; - var$3 = var$1.$rhs3; - oncil_LabelExpression$Disjunctions$_$callClinit(); - var$1 = oncil_LabelExpression$Disjunctions$_flat(oncil_LabelExpression$Disjunctions$_MODULE$, var$2, var$3, var$1.$position40, var$1.$containsIs3); - } else if (!(var$1 instanceof oncil_LabelExpression$ColonConjunction)) { - if (var$1 instanceof oncil_LabelExpression$Disjunctions) - var$1 = oncil_LabelExpression$Disjunctions_unnestDisjunctions(var$1); - else if (var$1 instanceof oncil_LabelExpression$Conjunctions) - var$1 = oncil_LabelExpression$Conjunctions_unnestConjunctions(var$1); - } else { - var$1 = var$1; - var$2 = var$1.$lhs2; - var$3 = var$1.$rhs2; - oncil_LabelExpression$Conjunctions$_$callClinit(); - var$1 = oncil_LabelExpression$Conjunctions$_flat(oncil_LabelExpression$Conjunctions$_MODULE$, var$2, var$3, var$1.$position98, var$1.$containsIs4); - } - return var$1; +oncie_Pattern$SemanticContext$Match$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5, var$6; - $x = $x; - var$3 = new oncir_Deprecation; - $default = s_None$_MODULE$; - var$4 = new s_Some; - var$5 = new onciu_DeprecatedPropertyReferenceInCreate; - var$6 = $x.$position4; - $x = $x.$name4; - var$5.$position73 = var$6; - var$5.$varName1 = $x; - s_Some__init_0(var$4, var$5); - oncir_Deprecation__init_(var$3, $default, var$4); - return var$3; +oncie_Pattern$SemanticContext$Match$_hashCode = $this => { + return 74115493; }, -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$2_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5, var$6; - $x = $x; - var$3 = new oncir_Deprecation; - $default = s_None$_MODULE$; - var$4 = new s_Some; - var$5 = new onciu_DeprecatedPropertyReferenceInMerge; - var$6 = $x.$position4; - $x = $x.$name4; - var$5.$position67 = var$6; - var$5.$varName0 = $x; - s_Some__init_0(var$4, var$5); - oncir_Deprecation__init_(var$3, $default, var$4); - return var$3; +oncie_Pattern$SemanticContext$Match$_toString = $this => { + return $rt_s(5258); +}, +oncias_SemanticPatternCheck$$declareVariables$lambda$_51_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$declareVariables$lambda$_51_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + var$3 = oncias_SemanticPatternCheck$_MODULE$; + oncius_package$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_declareVariable$(var$3, var$1, (oncius_package$_CTNode(oncius_package$_MODULE$)).$invariant())); }; -function jusi_ArrayIntStreamImpl() { - let a = this; jusi_SimpleIntStreamImpl.call(a); - a.$array19 = null; - a.$index7 = 0; - a.$end4 = 0; - a.$size15 = 0; +function oncias_SemanticPatternCheck$$check$lambda$_52_0() { + let a = this; jl_Object.call(a); + a.$_0430 = null; + a.$_1150 = null; } -let jusi_ArrayIntStreamImpl_next = ($this, $consumer) => { - let var$2, var$3; +let oncias_SemanticPatternCheck$$check$lambda$_52_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$0.$_0430; + var$2 = var$0.$_1150; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_0; + var$3.$_0722 = var$1; + var$4 = var$1.$part1; + if (!(var$4 instanceof oncie_NamedPatternPart)) { + if (!$rt_isInstance(var$4, oncie_AnonymousPatternPart)) + $rt_throw(s_MatchError__init_(var$4)); + var$3 = oncie_PatternPartWithSelector_replaceInAnonymous$1(var$4, var$3); + } else { + var$4 = var$4; + var$3 = oncie_PatternPartWithSelector_replaceInAnonymous$1(var$4.$patternPart, var$3); + var$3 = oncie_NamedPatternPart_copy(var$4, var$4.$variable7, var$3, var$4.$position92); + } a: { - while (true) { - var$2 = $this.$index7; - if (var$2 >= $this.$end4) + var$5 = oncie_PatternPartWithSelector_copy(var$1, var$1.$selector1, var$3); + var$1 = oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, var$2, var$5.$part1); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$6 = oncie_PatternPartWithSelector_isSelective(var$5); + var$4 = new oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_1; + var$4.$_0200 = var$2; + var$4.$_173 = var$5; + var$1 = var$1.$chain(oncias_SemanticCheck$_when(var$3, var$6, var$4)); + var$2 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = var$5.$selector1; + if (var$4 instanceof oncie_PatternPart$ShortestGroups) { + var$7 = var$4.$count2; + s_Predef$_$callClinit(); + if (Long_le(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value(var$7)), Long_ZERO)) { + var$2 = oncias_SemanticAnalysisTooling_specifiedNumberOutOfRangeError$(var$2, $rt_s(6661), $rt_s(722), jl_Integer_valueOf(1), jl_Long_valueOf(Long_create(4294967295, 2147483647)), jl_String_valueOf(oncie_DecimalIntegerLiteral_value(var$7)), $rt_s(6662), var$7.$position22); break a; - var$3 = $this.$array19.data; - $this.$index7 = var$2 + 1 | 0; - if ($consumer.$test(var$3[var$2])) - continue; - else - break; + } + } + if ($rt_isInstance(var$4, oncie_PatternPart$CountedSelector)) { + var$3 = var$4; + s_Predef$_$callClinit(); + if (Long_le(sr_BoxesRunTime_unboxToLong(oncie_DecimalIntegerLiteral_value(var$3.$count0())), Long_ZERO)) { + var$2 = oncias_SemanticAnalysisTooling_specifiedNumberOutOfRangeError$(var$2, $rt_s(6663), $rt_s(722), jl_Integer_valueOf(1), jl_Long_valueOf(Long_create(4294967295, 2147483647)), jl_String_valueOf(oncie_DecimalIntegerLiteral_value(var$3.$count0())), $rt_s(6664), (var$3.$count0()).$position22); + break a; + } } + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - return $this.$index7 >= $this.$end4 ? 0 : 1; -}, -onciap_DefaultExpressionStringifier$$anonfun$stringify$27$lambda$_54_0 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$$anonfun$stringify$27$lambda$_54_0_apply = (var$0, var$1) => { - return var$1; + return oncias_SemanticCheck_chain$(var$1, var$2); +}; +function oncias_SemanticPatternCheck$$check$lambda$_58_0() { + jl_Object.call(this); + this.$_0512 = null; +} +let oncias_SemanticPatternCheck$$check$lambda$_58_0__init_ = (var$0, var$1) => { + var$0.$_0512 = var$1; }, -onciap_DefaultExpressionStringifier$$anonfun$stringify$32$lambda$_59_0 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$$anonfun$stringify$32$lambda$_59_0_apply = (var$0, var$1) => { - return var$1; +oncias_SemanticPatternCheck$$check$lambda$_58_0__init_0 = var_0 => { + let var_1 = new oncias_SemanticPatternCheck$$check$lambda$_58_0(); + oncias_SemanticPatternCheck$$check$lambda$_58_0__init_(var_1, var_0); + return var_1; }, -sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0 = $rt_classWithoutFields(), -sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0_apply = (var$0, var$1) => { +oncias_SemanticPatternCheck$$check$lambda$_58_0_apply = (var$0, var$1) => { let var$2; - if (jl_Object_equals(s_None$_MODULE$, var$1)) - var$1 = s_Some__init_(jl_Integer_valueOf(1)); - else { - if (!(var$1 instanceof s_Some)) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = sr_BoxesRunTime_unboxToInt(var$1.$value5); - var$1 = s_Some__init_(jl_Integer_valueOf(var$2 + 1 | 0)); - } - return var$1; -}, -oncip_CypherErrorStrategy$CypherRuleGroup = $rt_classWithoutFields(0), -oncip_CypherErrorStrategy$ExpressionRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$ExpressionRule$_MODULE$ = null, -oncip_CypherErrorStrategy$ExpressionRule$_$callClinit = () => { - oncip_CypherErrorStrategy$ExpressionRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$ExpressionRule$); - oncip_CypherErrorStrategy$ExpressionRule$__clinit_(); -}, -oncip_CypherErrorStrategy$ExpressionRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$ExpressionRule$; - oncip_CypherErrorStrategy$ExpressionRule$_$callClinit(); - oncip_CypherErrorStrategy$ExpressionRule$_MODULE$ = var$1; -}, -oncip_CypherErrorStrategy$ExpressionRule$_productArity = $this => { - return 0; -}, -oncip_CypherErrorStrategy$ExpressionRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncip_CypherErrorStrategy$ExpressionRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncip_CypherErrorStrategy$ExpressionRule$_hashCode = $this => { - return 1974361556; -}, -oncip_CypherErrorStrategy$ExpressionRule$_toString = $this => { - return $rt_s(7679); -}, -oncip_CypherErrorStrategy$StringLiteralRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$ = null, -oncip_CypherErrorStrategy$StringLiteralRule$_$callClinit = () => { - oncip_CypherErrorStrategy$StringLiteralRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$StringLiteralRule$); - oncip_CypherErrorStrategy$StringLiteralRule$__clinit_(); -}, -oncip_CypherErrorStrategy$StringLiteralRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$StringLiteralRule$; - oncip_CypherErrorStrategy$StringLiteralRule$_$callClinit(); - oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$ = var$1; -}, -oncip_CypherErrorStrategy$StringLiteralRule$_productArity = $this => { - return 0; -}, -oncip_CypherErrorStrategy$StringLiteralRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncip_CypherErrorStrategy$StringLiteralRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncip_CypherErrorStrategy$StringLiteralRule$_hashCode = $this => { - return 1688321882; + var$1 = var$1; + var$2 = var$0.$_0512; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticPatternCheck$_check(oncias_SemanticPatternCheck$_MODULE$, var$2, var$1); }, -oncip_CypherErrorStrategy$StringLiteralRule$_toString = $this => { - return $rt_s(7680); +oncias_SemanticPatternCheck$$check$lambda$_58_1 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$check$lambda$_58_1__init_ = var$0 => { + return; }, -oncip_CypherErrorStrategy$NumberLiteralRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$ = null, -oncip_CypherErrorStrategy$NumberLiteralRule$_$callClinit = () => { - oncip_CypherErrorStrategy$NumberLiteralRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$NumberLiteralRule$); - oncip_CypherErrorStrategy$NumberLiteralRule$__clinit_(); +oncias_SemanticPatternCheck$$check$lambda$_58_1__init_0 = () => { + let var_0 = new oncias_SemanticPatternCheck$$check$lambda$_58_1(); + oncias_SemanticPatternCheck$$check$lambda$_58_1__init_(var_0); + return var_0; }, -oncip_CypherErrorStrategy$NumberLiteralRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$NumberLiteralRule$; - oncip_CypherErrorStrategy$NumberLiteralRule$_$callClinit(); - oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$ = var$1; +oncias_SemanticPatternCheck$$check$lambda$_58_1_apply = (var$0, var$1, var$2) => { + var$1 = var$1; + var$2 = var$2; + oncias_SemanticPatternCheck$_$callClinit(); + return var$1.$chain(var$2); +}; +function oncias_SemanticPatternCheck$$check$lambda$_58_2() { + let a = this; jl_Object.call(a); + a.$_0427 = null; + a.$_1148 = null; + a.$_254 = null; +} +let oncias_SemanticPatternCheck$$check$lambda$_58_2__init_0 = (var$0, var$1, var$2, var$3) => { + var$0.$_0427 = var$1; + var$0.$_1148 = var$2; + var$0.$_254 = var$3; }, -oncip_CypherErrorStrategy$NumberLiteralRule$_productArity = $this => { - return 0; +oncias_SemanticPatternCheck$$check$lambda$_58_2__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncias_SemanticPatternCheck$$check$lambda$_58_2(); + oncias_SemanticPatternCheck$$check$lambda$_58_2__init_0(var_3, var_0, var_1, var_2); + return var_3; }, -oncip_CypherErrorStrategy$NumberLiteralRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncias_SemanticPatternCheck$$check$lambda$_58_2_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0427; + var$2 = var$0.$_1148; + var$3 = var$0.$_254; + oncias_SemanticPatternCheck$_$callClinit(); + var$1 = oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, var$1, var$2); + oncias_OptionSemanticChecking$_$callClinit(); + return oncias_SemanticCheck_chain$(var$1.$chain(oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, var$3.$optionalWhereExpression, new oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_112_0)), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, var$3)); +}; +function oncias_SemanticPatternCheck$$check$lambda$_58_3() { + let a = this; jl_Object.call(a); + a.$_0973 = null; + a.$_1332 = null; + a.$_2115 = null; + a.$_334 = null; +} +let oncias_SemanticPatternCheck$$check$lambda$_58_3__init_0 = (var$0, var$1, var$2, var$3, var$4) => { + var$0.$_0973 = var$1; + var$0.$_1332 = var$2; + var$0.$_2115 = var$3; + var$0.$_334 = var$4; }, -oncip_CypherErrorStrategy$NumberLiteralRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticPatternCheck$$check$lambda$_58_3__init_ = (var_0, var_1, var_2, var_3) => { + let var_4 = new oncias_SemanticPatternCheck$$check$lambda$_58_3(); + oncias_SemanticPatternCheck$$check$lambda$_58_3__init_0(var_4, var_0, var_1, var_2, var_3); + return var_4; }, -oncip_CypherErrorStrategy$NumberLiteralRule$_hashCode = $this => { - return (-1232105182); +oncias_SemanticPatternCheck$$check$lambda$_58_3_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = var$0.$_0973; + var$2 = var$0.$_1332; + var$3 = var$0.$_2115; + var$4 = var$0.$_334; + oncias_SemanticPatternCheck$_$callClinit(); + var$1 = oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, var$1, var$2); + if (!(var$2 instanceof oncie_ShortestPathsPatternPart)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$5 = var$2; + var$6 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$2 = oncias_SemanticError$_MODULE$; + var$7 = var$5.$name14; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + jl_StringBuilder_append(jl_StringBuilder_append(var$8, var$7), $rt_s(6665)); + var$2 = oncias_package$_liftSemanticErrorDef(var$6, oncias_SemanticError$_apply(var$2, jl_AbstractStringBuilder_toString(var$8), var$5.$position10)); + } + var$1 = var$1.$chain(var$2); + oncias_OptionSemanticChecking$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$1, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, var$3, new oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_115_0)), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, var$4)); +}; +function oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_142_0() { + jl_Object.call(this); + this.$_0956 = null; +} +let oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_142_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + a: { + var$2 = var$0.$_0956; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = var$2.$expressions0; + if (var$3 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$3); + if (!var$3.$lengthCompare(0)) { + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + var$1 = oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); + break a; + } + } + var$4 = oncias_SemanticExpressionCheck$_MODULE$; + var$3 = var$2.$expressions0; + if ((var$3.$iterator0()).$isEmpty()) + var$2 = new oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_1; + else { + var$2 = new oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_0; + var$2.$_0982 = var$4; + var$2.$_1337 = var$3; + } + var$1 = var$2.$apply2(var$1); + oncius_TypeSpec$_$callClinit(); + var$1 = oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply(oncius_TypeSpec$_MODULE$, var$1.$ranges.$map(new oncius_TypeSpec$wrapInCovariantList$lambda$_25_0)); + } + return var$1; +}; +function oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0() { + jl_Object.call(this); + this.$_01032 = null; +} +let oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_01032.$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes; + onciu_InputPosition$_$callClinit(); + return jl_Boolean_valueOf(sci_List_contains(var$2, var$1.$withPosition(onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)))); }, -oncip_CypherErrorStrategy$NumberLiteralRule$_toString = $this => { - return $rt_s(7681); +oncia_PrivilegeCommand$checkExpression$lambda$_74_0 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_0__init_0 = var$0 => { + return; }, -oncip_CypherErrorStrategy$ParameterRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$ParameterRule$_MODULE$ = null, -oncip_CypherErrorStrategy$ParameterRule$_$callClinit = () => { - oncip_CypherErrorStrategy$ParameterRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$ParameterRule$); - oncip_CypherErrorStrategy$ParameterRule$__clinit_(); +oncia_PrivilegeCommand$checkExpression$lambda$_74_0__init_ = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_0(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_0__init_0(var_0); + return var_0; }, -oncip_CypherErrorStrategy$ParameterRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$ParameterRule$; - oncip_CypherErrorStrategy$ParameterRule$_$callClinit(); - oncip_CypherErrorStrategy$ParameterRule$_MODULE$ = var$1; +oncia_PrivilegeCommand$checkExpression$lambda$_74_0_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA5(var$1); }, -oncip_CypherErrorStrategy$ParameterRule$_productArity = $this => { - return 0; +oncia_PrivilegeCommand$checkExpression$lambda$_74_1 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_1__init_0 = var$0 => { + return; }, -oncip_CypherErrorStrategy$ParameterRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_PrivilegeCommand$checkExpression$lambda$_74_1__init_ = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_1(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_1__init_0(var_0); + return var_0; }, -oncip_CypherErrorStrategy$ParameterRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_PrivilegeCommand$checkExpression$lambda$_74_1_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA6(var$1); }, -oncip_CypherErrorStrategy$ParameterRule$_hashCode = $this => { - return 419492389; +oncia_PrivilegeCommand$checkExpression$lambda$_74_2 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_2__init_ = var$0 => { + return; }, -oncip_CypherErrorStrategy$ParameterRule$_toString = $this => { - return $rt_s(7682); +oncia_PrivilegeCommand$checkExpression$lambda$_74_2__init_0 = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_2(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_2__init_(var_0); + return var_0; }, -oncip_CypherErrorStrategy$VariableRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$VariableRule$_MODULE$ = null, -oncip_CypherErrorStrategy$VariableRule$_$callClinit = () => { - oncip_CypherErrorStrategy$VariableRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$VariableRule$); - oncip_CypherErrorStrategy$VariableRule$__clinit_(); +oncia_PrivilegeCommand$checkExpression$lambda$_74_2_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA4(var$1); }, -oncip_CypherErrorStrategy$VariableRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$VariableRule$; - oncip_CypherErrorStrategy$VariableRule$_$callClinit(); - oncip_CypherErrorStrategy$VariableRule$_MODULE$ = var$1; +oncia_PrivilegeCommand$checkExpression$lambda$_74_3 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_3__init_0 = var$0 => { + return; }, -oncip_CypherErrorStrategy$VariableRule$_productArity = $this => { - return 0; +oncia_PrivilegeCommand$checkExpression$lambda$_74_3__init_ = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_3(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_3__init_0(var_0); + return var_0; }, -oncip_CypherErrorStrategy$VariableRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}; -let oncip_CypherErrorStrategy$VariableRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_PrivilegeCommand$checkExpression$lambda$_74_3_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA4(var$1); }, -oncip_CypherErrorStrategy$VariableRule$_hashCode = $this => { - return (-208563272); +oncia_PrivilegeCommand$checkExpression$lambda$_74_4 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_4__init_ = var$0 => { + return; }, -oncip_CypherErrorStrategy$VariableRule$_toString = $this => { - return $rt_s(7683); +oncia_PrivilegeCommand$checkExpression$lambda$_74_4__init_0 = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_4(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_4__init_(var_0); + return var_0; }, -oncip_CypherErrorStrategy$IdentifierRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$IdentifierRule$_MODULE$ = null, -oncip_CypherErrorStrategy$IdentifierRule$_$callClinit = () => { - oncip_CypherErrorStrategy$IdentifierRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$IdentifierRule$); - oncip_CypherErrorStrategy$IdentifierRule$__clinit_(); +oncia_PrivilegeCommand$checkExpression$lambda$_74_4_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA4(var$1); }, -oncip_CypherErrorStrategy$IdentifierRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$IdentifierRule$; - oncip_CypherErrorStrategy$IdentifierRule$_$callClinit(); - oncip_CypherErrorStrategy$IdentifierRule$_MODULE$ = var$1; +oncia_PrivilegeCommand$checkExpression$lambda$_74_5 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_5__init_ = var$0 => { + return; }, -oncip_CypherErrorStrategy$IdentifierRule$_productArity = $this => { - return 0; +oncia_PrivilegeCommand$checkExpression$lambda$_74_5__init_0 = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_5(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_5__init_(var_0); + return var_0; }, -oncip_CypherErrorStrategy$IdentifierRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_PrivilegeCommand$checkExpression$lambda$_74_5_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA4(var$1); }, -oncip_CypherErrorStrategy$IdentifierRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_PrivilegeCommand$checkExpression$lambda$_74_6 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_6__init_0 = var$0 => { + return; }, -oncip_CypherErrorStrategy$IdentifierRule$_hashCode = $this => { - return (-519174299); +oncia_PrivilegeCommand$checkExpression$lambda$_74_6__init_ = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_6(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_6__init_0(var_0); + return var_0; }, -oncip_CypherErrorStrategy$IdentifierRule$_toString = $this => { - return $rt_s(7684); +oncia_PrivilegeCommand$checkExpression$lambda$_74_6_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA5(var$1); }, -oncip_CypherErrorStrategy$DatabaseNameRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$ = null, -oncip_CypherErrorStrategy$DatabaseNameRule$_$callClinit = () => { - oncip_CypherErrorStrategy$DatabaseNameRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$DatabaseNameRule$); - oncip_CypherErrorStrategy$DatabaseNameRule$__clinit_(); +oncia_PrivilegeCommand$checkExpression$lambda$_74_7 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_7__init_0 = var$0 => { + return; }, -oncip_CypherErrorStrategy$DatabaseNameRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$DatabaseNameRule$; - oncip_CypherErrorStrategy$DatabaseNameRule$_$callClinit(); - oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$ = var$1; +oncia_PrivilegeCommand$checkExpression$lambda$_74_7__init_ = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_7(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_7__init_0(var_0); + return var_0; }, -oncip_CypherErrorStrategy$DatabaseNameRule$_productArity = $this => { - return 0; +oncia_PrivilegeCommand$checkExpression$lambda$_74_7_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA6(var$1); }, -oncip_CypherErrorStrategy$DatabaseNameRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_PrivilegeCommand$checkExpression$lambda$_74_8 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_8__init_ = var$0 => { + return; }, -oncip_CypherErrorStrategy$DatabaseNameRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_PrivilegeCommand$checkExpression$lambda$_74_8__init_0 = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_8(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_8__init_(var_0); + return var_0; }, -oncip_CypherErrorStrategy$DatabaseNameRule$_hashCode = $this => { - return (-1187227934); +oncia_PrivilegeCommand$checkExpression$lambda$_74_8_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA4(var$1); }, -oncip_CypherErrorStrategy$DatabaseNameRule$_toString = $this => { - return $rt_s(7685); +oncia_PrivilegeCommand$checkExpression$lambda$_74_9 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_9__init_0 = var$0 => { + return; }, -oncip_CypherErrorStrategy$GraphPatternRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$ = null, -oncip_CypherErrorStrategy$GraphPatternRule$_$callClinit = () => { - oncip_CypherErrorStrategy$GraphPatternRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$GraphPatternRule$); - oncip_CypherErrorStrategy$GraphPatternRule$__clinit_(); +oncia_PrivilegeCommand$checkExpression$lambda$_74_9__init_ = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_9(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_9__init_0(var_0); + return var_0; }, -oncip_CypherErrorStrategy$GraphPatternRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$GraphPatternRule$; - oncip_CypherErrorStrategy$GraphPatternRule$_$callClinit(); - oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$ = var$1; +oncia_PrivilegeCommand$checkExpression$lambda$_74_9_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA4(var$1); }, -oncip_CypherErrorStrategy$GraphPatternRule$_productArity = $this => { - return 0; +oncia_PrivilegeCommand$checkExpression$lambda$_74_10 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_10__init_ = var$0 => { + return; }, -oncip_CypherErrorStrategy$GraphPatternRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_PrivilegeCommand$checkExpression$lambda$_74_10__init_0 = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_10(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_10__init_(var_0); + return var_0; }, -oncip_CypherErrorStrategy$GraphPatternRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_PrivilegeCommand$checkExpression$lambda$_74_10_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA4(var$1); }, -oncip_CypherErrorStrategy$GraphPatternRule$_hashCode = $this => { - return (-1583702882); +oncia_PrivilegeCommand$checkExpression$lambda$_74_11 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$checkExpression$lambda$_74_11__init_ = var$0 => { + return; }, -oncip_CypherErrorStrategy$GraphPatternRule$_toString = $this => { - return $rt_s(7686); -}; -function oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1() { - sr_AbstractPartialFunction.call(this); - this.$preferredGroups$1 = null; -} -let oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1_applyOrElse = ($this, $x, $default) => { - let var$3; - a: { - $x = $x; - if ($x !== null) { - var$3 = s_Tuple2__1$mcI$sp($x); - $x = $x.$_2(); - if ($this.$preferredGroups$1.$contains($x)) { - $x = jl_Integer_valueOf(var$3); - break a; - } - } - $x = sr_Statics_pfMarker; - } - return $x; +oncia_PrivilegeCommand$checkExpression$lambda$_74_11__init_0 = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_11(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_11__init_(var_0); + return var_0; }, -onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0 = $rt_classWithoutFields(), -onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0_apply = (var$0, var$1) => { - return jl_Integer_valueOf(var$1.$ruleIndex0); +oncia_PrivilegeCommand$checkExpression$lambda$_74_11_apply = (var$0, var$1) => { + return ong_GqlHelper_getGql22NA0_22NA4(var$1); }, -onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1 = $rt_classWithoutFields(), -onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1_get = var$0 => { - return new ju_LinkedList; -}; -function onciafnc_CodeCompletionCore$CandidateRule() { - let a = this; jl_Record.call(a); - a.$startTokenIndex0 = 0; - a.$ruleList = null; -} -let onciafnc_CodeCompletionCore$CandidateRule_toString = $this => { - let var$1, var$2; - var$1 = jl_StringBuilder__init_0($rt_s(7687)); - jl_AbstractStringBuilder_append(var$1, $rt_s(7648)); - var$2 = jl_StringBuilder_append0(var$1, $this.$startTokenIndex0); - jl_AbstractStringBuilder_append(var$2, $rt_s(7688)); - var$2 = jl_StringBuilder_append(var$2, $this.$ruleList); - jl_AbstractStringBuilder_append(var$2, $rt_s(427)); - return jl_AbstractStringBuilder_toString(var$2); +oncia_PrivilegeCommand$checkExpression$lambda$_74_12 = $rt_classWithoutFields(); +let oncia_PrivilegeCommand$checkExpression$lambda$_74_12__init_ = var$0 => { + return; }, -onciafnc_CodeCompletionCore$CandidateRule_hashCode = $this => { - return ((31 + $this.$startTokenIndex0 | 0) * 31 | 0) + ju_Objects_hashCode($this.$ruleList) | 0; +oncia_PrivilegeCommand$checkExpression$lambda$_74_12__init_0 = () => { + let var_0 = new oncia_PrivilegeCommand$checkExpression$lambda$_74_12(); + oncia_PrivilegeCommand$checkExpression$lambda$_74_12__init_(var_0); + return var_0; }, -onciafnc_CodeCompletionCore$CandidateRule_equals = ($this, $o) => { - let var$2; - if ($this === $o) - var$2 = 1; - else if ($o !== null && jl_Object_getClass($o) === $rt_cls(onciafnc_CodeCompletionCore$CandidateRule)) { - $o = $o; - var$2 = $this.$startTokenIndex0 != $o.$startTokenIndex0 ? 0 : ju_Objects_equals($this.$ruleList, $o.$ruleList) ? 1 : 0; - } else - var$2 = 0; - return var$2; -}; -function oncia_Clause$semanticCheck$lambda$_6_0() { - jl_Object.call(this); - this.$_0316 = null; -} -let oncia_Clause$semanticCheck$lambda$_6_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13; - var$2 = var$0.$_0316; - var$3 = new sr_LazyRef; - var$4 = new sr_LazyRef; - var$5 = new sr_LazyRef; - var$6 = new sr_LazyRef; - var$7 = new sr_LazyRef; - var$8 = new sr_LazyRef; - var$9 = var$2.$folder(); - var$10 = oncia_Clause_Acc$3(var$2, var$8, var$7, var$3, var$4, var$5, var$6); - var$11 = oncia_Clause_Acc$3(var$2, var$8, var$7, var$3, var$4, var$5, var$6); - var$12 = oncia_Clause$LabelExpressionsPartitions$2$_apply(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1), oncia_Clause$LabelExpressionsPartitions$2$_apply$default$1(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1)), oncia_Clause$LabelExpressionsPartitions$2$_apply$default$2(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, - var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1))); - var$11 = oncia_Clause_Acc$3(var$2, var$8, var$7, var$3, var$4, var$5, var$6); - var$11 = oncia_Clause$LabelExpressionsPartitions$2$_apply(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1), oncia_Clause$LabelExpressionsPartitions$2$_apply$default$1(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1)), oncia_Clause$LabelExpressionsPartitions$2$_apply$default$2(oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LabelExpressionsPartitions$3(var$11.$$outer2, - var$11.$LabelExpressionsPartitions$module$1, var$11.$LegacyLabelExpression$module$1))); - var$2 = oncia_Clause_Acc$3(var$2, var$8, var$7, var$3, var$4, var$5, var$6); - var$13 = oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$Read$2(var$2.$$outer2, var$2.$Read$module$10); - var$2 = oncia_Clause$Acc$1__init_(var$10.$$outer2, var$12, var$11, var$13, var$10.$Read$module$10, var$10.$Write$module$10, var$10.$ReadWrite$module$10); - var$3 = new oncia_Clause$$anonfun$1; - var$3.$state$10 = var$1; - var$1 = onciu_Foldable$Folder_treeFold(var$9, var$2, var$3); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$readPartitions; - var$2 = var$1.$writePartitions; - var$1 = s_Tuple2__init_(var$3, var$2); - var$2 = var$1.$_10; - var$1 = var$1.$_20; - return (oncia_Clause$LabelExpressionsPartitions$1_semanticCheck(var$2)).$chain(oncia_Clause$LabelExpressionsPartitions$1_semanticCheck(var$1)); -}; -function oncia_Clause$semanticCheck$lambda$_6_1() { - jl_Object.call(this); - this.$_0829 = null; -} -let oncia_Clause$semanticCheck$lambda$_6_1_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0829; - var$2 = var$1.$folder(); - s_package$_$callClinit(); - var$3 = onciu_Foldable$Folder_treeFold(var$2, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), new oncia_Clause$$anonfun$2); - var$4 = sr_BoxesRunTime_unboxToBoolean(onciu_Foldable$Folder_treeFold(var$1.$folder(), jl_Boolean_valueOf(0), new oncia_Clause$$anonfun$3)); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$5 = new oncia_Clause$checkIfMixingLegacyVarLengthWithQPPs$lambda$_11_0; - var$5.$_0882 = var$1; - var$5.$_1303 = var$3; - var$6 = oncias_SemanticCheck$_when(var$2, var$4, var$5); - var$5 = var$1.$folder(); - sr_ClassTag$_$callClinit(); - var$3 = onciu_Foldable$Folder_findAllByClass(var$5, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_ShortestPathsPatternPart))); - var$4 = sr_BoxesRunTime_unboxToBoolean(onciu_Foldable$Folder_treeFold(var$1.$folder(), jl_Boolean_valueOf(0), new oncia_Clause$$anonfun$4)); - var$2 = oncias_SemanticCheck$_MODULE$; - var$5 = new oncia_Clause$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$lambda$_12_0; - var$5.$_0972 = var$1; - var$5.$_1338 = var$3; - return var$6.$chain(oncias_SemanticCheck$_when(var$2, var$4, var$5)); +oncia_PrivilegeCommand$checkExpression$lambda$_74_12_apply = (var$0, var$1) => { + ong_GqlStatusInfoCodes_$callClinit(); + return ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NA0), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22NB0), ong_GqlParams$StringParam_pred, var$1)))); }; -function oncia_Union$$anonfun$defineUnionVariables$5$lambda$_64_0() { +function oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0() { let a = this; jl_Object.call(a); - a.$_0495 = null; - a.$_1173 = null; - a.$_258 = null; + a.$_0176 = null; + a.$_163 = null; } -let oncia_Union$$anonfun$defineUnionVariables$5$lambda$_64_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0495; - var$3 = var$0.$_1173; - var$4 = var$0.$_258; - var$2 = oncias_Scope_symbol(var$2, var$3.$variableInRhsName); - var$5 = new oncia_Union$$anonfun$defineUnionVariables$6$lambda$_63_0; - var$5.$_0156 = var$1; - var$5.$_160 = var$4; - var$5.$_230 = var$3; - return s_Option_map(var$2, var$5); -}, -oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0 = $rt_classWithoutFields(), -oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$containsDynamicLabelOrTypeExpression()); -}; -function sc_MapView$FilterKeys() { - let a = this; sc_AbstractMapView.call(a); - a.$underlying24 = null; - a.$p4 = null; -} -let sc_MapView$FilterKeys_iterator = $this => { - let var$1, var$2; - var$1 = sc_MapView$Id_iterator($this.$underlying24); - var$2 = new sc_MapView$FilterKeys$iterator$lambda$_0_0; - var$2.$_01207 = $this; - return var$1.$filter(var$2); + var$2 = var$0.$_0176; + var$3 = var$0.$_163; + var$2 = var$2.$conf.$ruleGroups(); + s_Predef$_$callClinit(); + return jl_Boolean_valueOf(s_Option_contains(var$2.$get2(jl_Integer_valueOf(sr_BoxesRunTime_unboxToInt(var$1))), var$3)); }, -sc_MapView$FilterKeys_knownSize = $this => { - if (sc_MapView$Id_knownSize($this.$underlying24)) - return (-1); - return 0; +oncius_TypeSpec$ = $rt_classWithoutFields(), +oncius_TypeSpec$_MODULE$ = null, +oncius_TypeSpec$_all0 = null, +oncius_TypeSpec$_none0 = null, +oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes = null, +oncius_TypeSpec$_$callClinit = () => { + oncius_TypeSpec$_$callClinit = $rt_eraseClinit(oncius_TypeSpec$); + oncius_TypeSpec$__clinit_(); }, -sc_MapView$FilterKeys_isEmpty = $this => { - return sc_Iterator_isEmpty$(sc_MapView$FilterKeys_iterator($this)); +oncius_TypeSpec$__clinit_ = () => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = new oncius_TypeSpec$; + oncius_TypeSpec$_$callClinit(); + oncius_TypeSpec$_MODULE$ = var$1; + var$2 = new oncius_TypeRange; + oncius_package$_$callClinit(); + oncius_TypeRange__init_0(var$2, oncius_package$_CTAny(oncius_package$_MODULE$), s_None$_MODULE$); + var$1 = new oncius_TypeSpec; + s_package$_$callClinit(); + var$3 = s_package$_Vector(s_package$_MODULE$); + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncius_TypeRange, 1); + var$5.data[0] = var$2; + oncius_TypeSpec__init_(var$1, var$3.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5))); + oncius_TypeSpec$_all0 = var$1; + oncius_TypeSpec$_none0 = oncius_TypeSpec__init_0(sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$))); + var$2 = s_package$_Vector(s_package$_MODULE$); + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncius_CypherType, 19); + var$6 = var$5.data; + var$6[0] = oncius_package$_CTAny(oncius_package$_MODULE$); + var$6[1] = oncius_package$_CTBoolean(oncius_package$_MODULE$); + var$6[2] = oncius_package$_CTFloat(oncius_package$_MODULE$); + var$6[3] = oncius_package$_CTInteger(oncius_package$_MODULE$); + var$6[4] = oncius_package$_CTMap(oncius_package$_MODULE$); + var$6[5] = oncius_package$_CTNode(oncius_package$_MODULE$); + var$6[6] = oncius_package$_CTNumber(oncius_package$_MODULE$); + var$6[7] = oncius_package$_CTPath(oncius_package$_MODULE$); + var$6[8] = oncius_package$_CTRelationship(oncius_package$_MODULE$); + var$6[9] = oncius_package$_CTPoint(oncius_package$_MODULE$); + var$6[10] = oncius_package$_CTGeometry(oncius_package$_MODULE$); + var$6[11] = oncius_package$_CTString(oncius_package$_MODULE$); + var$6[12] = oncius_package$_CTGraphRef(oncius_package$_MODULE$); + var$6[13] = oncius_package$_CTDuration(oncius_package$_MODULE$); + var$6[14] = oncius_package$_CTDate(oncius_package$_MODULE$); + var$6[15] = oncius_package$_CTTime(oncius_package$_MODULE$); + var$6[16] = oncius_package$_CTLocalTime(oncius_package$_MODULE$); + var$6[17] = oncius_package$_CTLocalDateTime(oncius_package$_MODULE$); + var$6[18] = oncius_package$_CTDateTime(oncius_package$_MODULE$); + oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes = var$2.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); }, -onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_70_0 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_70_0_apply = (var$0, var$1) => { - return var$1; +oncius_TypeSpec$_exact = ($this, $iterableOnce) => { + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply($this, ($iterableOnce.$iterator0()).$map5(new oncius_TypeSpec$$exact$lambda$_4_0)); }, -oncia_AmbiguousAggregation$ = $rt_classWithoutFields(), -oncia_AmbiguousAggregation$_MODULE$ = null, -oncia_AmbiguousAggregation$_$callClinit = () => { - oncia_AmbiguousAggregation$_$callClinit = $rt_eraseClinit(oncia_AmbiguousAggregation$); - oncia_AmbiguousAggregation$__clinit_(); +oncius_TypeSpec$_all = $this => { + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_all0; }, -oncia_AmbiguousAggregation$__clinit_ = () => { - let var$1; - var$1 = new oncia_AmbiguousAggregation$; - oncia_AmbiguousAggregation$_$callClinit(); - oncia_AmbiguousAggregation$_MODULE$ = var$1; +oncius_TypeSpec$_none = $this => { + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_none0; }, -otcit_DoubleSynthesizer = $rt_classWithoutFields(), -otcit_DoubleSynthesizer_mantissa10Table = null, -otcit_DoubleSynthesizer_exp10Table = null, -otcit_DoubleSynthesizer_synthesizeDouble = ($mantissa, $exp, $negative) => { - let $indexInTable, var$5, $binMantissa, $binExp, $binMantissaShift, $error, $correction, $binMantissaWithoutError, $cmp, $iee754; - $indexInTable = 330 + $exp | 0; - if (Long_ne($mantissa, Long_ZERO) && $indexInTable >= 0) { - var$5 = otcit_DoubleSynthesizer_mantissa10Table.data; - if ($indexInTable >= var$5.length) - return !$negative ? Infinity : (-Infinity); - $binMantissa = otcit_DoubleAnalyzer_mulAndShiftRight($mantissa, var$5[$indexInTable], 0); - $binExp = otcit_DoubleSynthesizer_exp10Table.data[$indexInTable]; - $binMantissaShift = (64 - jl_Long_numberOfLeadingZeros($binMantissa) | 0) - 58 | 0; - $binMantissa = $binMantissaShift >= 0 ? Long_shru($binMantissa, $binMantissaShift) : Long_shl($binMantissa, -$binMantissaShift | 0); - $binExp = $binExp + $binMantissaShift | 0; - if ($binExp >= 2047) - return !$negative ? Infinity : (-Infinity); - $error = Long_lo(Long_and($binMantissa, Long_fromInt(31))); - $correction = 16; - if (jl_Math_abs($error - 16 | 0) <= 1) { - $binMantissaWithoutError = Long_and($binMantissa, Long_fromInt(-32)); - $cmp = jl_Long_compareUnsigned(Long_sub($mantissa, otcit_DoubleSynthesizer_calcDecMantissa($binMantissaWithoutError, 32, $indexInTable, $binExp)), Long_sub(otcit_DoubleSynthesizer_calcDecMantissa(Long_add($binMantissaWithoutError, Long_fromInt(32)), 32, $indexInTable, $binExp), $mantissa)); - if ($cmp < 0) - $correction = -$error | 0; - else if ($cmp > 0) - $correction = 32 - $error | 0; - } - $mantissa = Long_add($binMantissa, Long_fromInt($correction)); - if (Long_ne(Long_and($mantissa, Long_create(0, 4227858432)), Long_ZERO)) { - $mantissa = Long_shru($mantissa, 1); - $binExp = $binExp + 1 | 0; - } - if ($binExp <= 0) { - $mantissa = Long_shr($mantissa, jl_Math_min(( -$binExp | 0) + 1 | 0, 64)); - $binExp = 0; - } - $iee754 = Long_or(Long_and(Long_shru($mantissa, 5), Long_create(4294967295, 1048575)), Long_shl(Long_fromInt($binExp), 52)); - if ($negative) - $iee754 = Long_xor($iee754, Long_create(0, 2147483648)); - return $rt_longBitsToDouble($iee754); - } - return $rt_longBitsToDouble((!$negative ? Long_ZERO : Long_create(0, 2147483648))); +oncius_TypeSpec$_union = ($this, $typeSpecs) => { + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply($this, $typeSpecs.$flatMap(new oncius_TypeSpec$$union$lambda$_7_0)); }, -otcit_DoubleSynthesizer_calcDecMantissa = ($mantissa, $lowerBit, $indexInTable, $binExp) => { - let $half, $shift, $decMantissa, $lowerPos, $decMantissaHi, $upperPos, $posCmp; - $half = $lowerBit >>> 1 | 0; - $shift = 7 - (otcit_DoubleAnalyzer_exp10Table.data[$indexInTable] - $binExp | 0) | 0; - $decMantissa = otcit_DoubleAnalyzer_mulAndShiftRight($mantissa, otcit_DoubleAnalyzer_mantissa10Table.data[$indexInTable], $shift); - $lowerPos = Long_fromInt($half); - $decMantissaHi = otcit_DoubleAnalyzer_mulAndShiftRight(Long_add($mantissa, $lowerPos), otcit_DoubleAnalyzer_mantissa10Table.data[$indexInTable], $shift); - $lowerPos = otcit_DoubleAnalyzer_findLowerDistance($decMantissa, otcit_DoubleAnalyzer_mulAndShiftRight(Long_sub($mantissa, $lowerPos), otcit_DoubleAnalyzer_mantissa10Table.data[$indexInTable], $shift)); - $upperPos = otcit_DoubleAnalyzer_findUpperDistance($decMantissa, $decMantissaHi); - $posCmp = jl_Long_compareUnsigned($lowerPos, $upperPos); - return $posCmp > 0 ? Long_mul(jl_Long_divideUnsigned($decMantissa, $lowerPos), $lowerPos) : $posCmp < 0 ? Long_add(Long_mul(jl_Long_divideUnsigned($decMantissa, $upperPos), $upperPos), $upperPos) : Long_mul(jl_Long_divideUnsigned(Long_add($decMantissa, Long_div($upperPos, Long_fromInt(2))), $upperPos), $upperPos); +oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes0 = $this => { + oncius_TypeSpec$_$callClinit(); + return oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$simpleTypes; }, -otcit_DoubleSynthesizer__clinit_ = () => { - otcit_DoubleSynthesizer_mantissa10Table = $rt_createLongArrayFromData([Long_create(136053384, 4203730336), Long_create(85033365, 2627331460), Long_create(106291706, 3284164325), Long_create(1206606457, 4105205406), Long_create(3975354508, 2565753378), Long_create(2821709486, 3207191723), Long_create(2453395034, 4008989654), Long_create(459630072, 2505618534), Long_create(2722021238, 3132023167), Long_create(2328784724, 3915028959), Long_create(3066103188, 2446893099), Long_create(2758887162, 3058616374), - Long_create(1301125304, 3823270468), Long_create(2960686963, 2389544042), Long_create(1553375056, 2986930053), Long_create(3015460644, 3733662566), Long_create(810921078, 2333539104), Long_create(1013651348, 2916923880), Long_create(1267064185, 3646154850), Long_create(1865656940, 2278846781), Long_create(3405812998, 2848558476), Long_create(4257266248, 3560698095), Long_create(4271404141, 2225436309), Long_create(2118029704, 2781795387), Long_create(1573795306, 3477244234), Long_create(2057363890, 2173277646), - Long_create(424221215, 2716597058), Long_create(2677760167, 3395746322), Long_create(1199716561, 4244682903), Long_create(2360435586, 2652926814), Long_create(803060835, 3316158518), Long_create(3151309692, 4145198147), Long_create(1432697645, 2590748842), Long_create(3938355705, 3238436052), Long_create(627977335, 4048045066), Long_create(1466227658, 2530028166), Long_create(3980268221, 3162535207), Long_create(3901593452, 3953169009), Long_create(827883171, 2470730631), Long_create(4256079436, 3088413288), - Long_create(1025131999, 3860516611), Long_create(103836588, 2412822882), Long_create(2277279383, 3016028602), Long_create(699115580, 3770035753), Long_create(3121301798, 2356272345), Long_create(680401775, 2945340432), Long_create(850502219, 3681675540), Long_create(2679047535, 2301047212), Long_create(3348809418, 2876309015), Long_create(3112269949, 3595386269), Long_create(2482039630, 2247116418), Long_create(955065890, 2808895523), Long_create(120090538, 3511119404), Long_create(2222540234, 2194449627), - Long_create(1704433469, 2743062034), Long_create(4278025484, 3428827542), Long_create(3200048207, 4286034428), Long_create(4147513777, 2678771517), Long_create(1963166750, 3348464397), Long_create(3527700261, 4185580496), Long_create(2204812663, 2615987810), Long_create(608532181, 3269984763), Long_create(3981890698, 4087480953), Long_create(878068951, 2554675596), Long_create(1097586188, 3193344495), Long_create(298240911, 3991680619), Long_create(3944496953, 2494800386), Long_create(2783137544, 3118500483), - Long_create(2405180106, 3898125604), Long_create(3650721214, 2436328502), Long_create(2415917870, 3045410628), Long_create(3019897337, 3806763285), Long_create(2424306748, 2379227053), Long_create(4104125259, 2974033816), Long_create(835189277, 3717542271), Long_create(2132606034, 2323463919), Long_create(1592015719, 2904329899), Long_create(916277825, 3630412374), Long_create(3793899112, 2269007733), Long_create(1521148418, 2836259667), Long_create(827693699, 3545324584), Long_create(517308562, 2215827865), - Long_create(1720377526, 2769784831), Long_create(1076730084, 3462231039), Long_create(2283569038, 2163894399), Long_create(1780719474, 2704867999), Long_create(1152157519, 3381084999), Long_create(366455074, 4226356249), Long_create(2913388981, 2641472655), Long_create(2567994403, 3301840819), Long_create(2136251179, 4127301024), Long_create(1335156987, 2579563140), Long_create(1668946234, 3224453925), Long_create(3159924616, 4030567406), Long_create(901211061, 2519104629), Long_create(2200255651, 3148880786), - Long_create(602835915, 3936100983), Long_create(1987385183, 2460063114), Long_create(336747831, 3075078893), Long_create(1494676613, 3843848616), Long_create(934172883, 2402405385), Long_create(2241457928, 3003006731), Long_create(1728080585, 3753758414), Long_create(6308542, 2346099009), Long_create(1081627501, 2932623761), Long_create(2425776201, 3665779701), Long_create(2052981037, 2291112313), Long_create(3639968121, 2863890391), Long_create(3476218327, 3579862989), Long_create(2709507366, 2237414368), - Long_create(3386884208, 2796767960), Long_create(4233605260, 3495959950), Long_create(1572261463, 2184974969), Long_create(3039068653, 2731218711), Long_create(2725093993, 3414023389), Long_create(185142019, 4267529237), Long_create(652584674, 2667205773), Long_create(1889472666, 3334007216), Long_create(2361840833, 4167509020), Long_create(3623634168, 2604693137), Long_create(1308317239, 3255866422), Long_create(3782880196, 4069833027), Long_create(1827429211, 2543645642), Long_create(136802865, 3179557053), - Long_create(1244745406, 3974446316), Long_create(2925449527, 2484028947), Long_create(2583070084, 3105036184), Long_create(3228837605, 3881295230), Long_create(944281679, 2425809519), Long_create(106610275, 3032261899), Long_create(3354488316, 3790327373), Long_create(2633426109, 2368954608), Long_create(3291782637, 2961193260), Long_create(4114728296, 3701491575), Long_create(4182317921, 2313432234), Long_create(3080413753, 2891790293), Long_create(629291719, 3614737867), Long_create(4151403709, 2259211166), - Long_create(3041770988, 2824013958), Long_create(1654730087, 3530017448), Long_create(1034206304, 2206260905), Long_create(2366499704, 2757826131), Long_create(1884382806, 3447282664), Long_create(1177739254, 2154551665), Long_create(2545915892, 2693189581), Long_create(4256136688, 3366486976), Long_create(1025203564, 4208108721), Long_create(3325106788, 2630067950), Long_create(2008899837, 3287584938), Long_create(363641148, 4109481173), Long_create(764146629, 2568425733), Long_create(2028925111, 3210532166), - Long_create(388672741, 4013165208), Long_create(242920463, 2508228255), Long_create(3524876051, 3135285318), Long_create(2258611415, 3919106648), Long_create(1411632134, 2449441655), Long_create(690798344, 3061802069), Long_create(1937239754, 3827252586), Long_create(2284516670, 2392032866), Long_create(708162190, 2990041083), Long_create(4106428209, 3737551353), Long_create(955904895, 2335969596), Long_create(1194881119, 2919961995), Long_create(419859574, 3649952494), Long_create(3483637706, 2281220308), - Long_create(59579836, 2851525386), Long_create(2221958443, 3564406732), Long_create(3536207675, 2227754207), Long_create(3346517770, 2784692759), Long_create(3109405388, 3480865949), Long_create(2480249280, 2175541218), Long_create(952827952, 2719426523), Long_create(117293116, 3399283154), Long_create(2294100043, 4249103942), Long_create(360070703, 2655689964), Long_create(450088378, 3319612455), Long_create(3783835945, 4149515568), Long_create(2364897466, 2593447230), Long_create(808638184, 3241809038), - Long_create(3158281378, 4052261297), Long_create(363313125, 2532663311), Long_create(3675366878, 3165829138), Long_create(2446724950, 3957286423), Long_create(3139815830, 2473304014), Long_create(1777286139, 3091630018), Long_create(74124026, 3864537523), Long_create(3804423900, 2415335951), Long_create(3681788051, 3019169939), Long_create(3528493240, 3773962424), Long_create(2205308275, 2358726515), Long_create(1682893520, 2948408144), Long_create(2103616900, 3685510180), Long_create(3462244210, 2303443862), - Long_create(2180321615, 2879304828), Long_create(2725402019, 3599131035), Long_create(1166505350, 2249456897), Long_create(2531873511, 2811821121), Long_create(4238583713, 3514776401), Long_create(1038502085, 2196735251), Long_create(224385782, 2745919064), Long_create(280482227, 3432398830), Long_create(2498086432, 4290498537), Long_create(4245658580, 2681561585), Long_create(2085847753, 3351951982), Long_create(459826043, 4189939978), Long_create(1361133101, 2618712486), Long_create(3848900024, 3273390607), - Long_create(3737383206, 4091738259), Long_create(1798993592, 2557336412), Long_create(2248741990, 3196670515), Long_create(1737185663, 3995838144), Long_create(1085741040, 2497398840), Long_create(1357176300, 3121748550), Long_create(3843954022, 3902185687), Long_create(4013084000, 2438866054), Long_create(2868871352, 3048582568), Long_create(3586089190, 3810728210), Long_create(3315047568, 2381705131), Long_create(3070067636, 2977131414), Long_create(1690100897, 3721414268), Long_create(3203796708, 2325883917), - Long_create(783520414, 2907354897), Long_create(2053142341, 3634193621), Long_create(1820084875, 2271371013), Long_create(3348847918, 2839213766), Long_create(2038576249, 3549017208), Long_create(1274110156, 2218135755), Long_create(518895871, 2772669694), Long_create(2796103486, 3465837117), Long_create(2284435591, 2166148198), Long_create(708060841, 2707685248), Long_create(885076051, 3384606560), Long_create(1106345064, 4230758200), Long_create(691465665, 2644223875), Long_create(4085557553, 3305279843), - Long_create(4033205117, 4131599804), Long_create(373269550, 2582249878), Long_create(2614070586, 3227812347), Long_create(2193846408, 4034765434), Long_create(2444895829, 2521728396), Long_create(3056119787, 3152160495), Long_create(2746407909, 3940200619), Long_create(1179634031, 2462625387), Long_create(400800715, 3078281734), Long_create(2648484542, 3847852167), Long_create(3265915575, 2404907604), Long_create(4082394468, 3006134505), Long_create(1881767613, 3757668132), Long_create(3323588406, 2348542582), - Long_create(2007001860, 2935678228), Long_create(2508752325, 3669597785), Long_create(4252324763, 2293498615), Long_create(4241664130, 2866873269), Long_create(2080854690, 3583591587), Long_create(763663269, 2239744742), Long_create(3102062735, 2799680927), Long_create(2803836594, 3499601159), Long_create(3363010608, 2187250724), Long_create(4203763259, 2734063405), Long_create(2033478602, 3417579257), Long_create(3615590077, 4271974071), Long_create(3870356534, 2669983794), Long_create(2690462020, 3337479743), - Long_create(2289335700, 4171849679), Long_create(3041447549, 2607406049), Long_create(580583964, 3259257562), Long_create(2873213603, 4074071952), Long_create(1795758502, 2546294970), Long_create(97214479, 3182868713), Long_create(1195259923, 3978585891), Long_create(210166540, 2486616182), Long_create(2410191823, 3108270227), Long_create(1938997955, 3885337784), Long_create(1211873722, 2428336115), Long_create(441100328, 3035420144), Long_create(551375410, 3794275180), Long_create(2492093279, 2371421987), - Long_create(2041374775, 2964277484), Long_create(2551718469, 3705346855), Long_create(3205436779, 2315841784), Long_create(4006795974, 2894802230), Long_create(2861011319, 3618502788), Long_create(3935615723, 2261564242), Long_create(2772036005, 2826955303), Long_create(2391303183, 3533694129), Long_create(4178919049, 2208558830), Long_create(3076165163, 2760698538), Long_create(1697722806, 3450873173), Long_create(1597947666, 2156795733), Long_create(3071176406, 2695994666), Long_create(1691486860, 3369993333), - Long_create(3188100399, 4212491666), Long_create(3066304573, 2632807291), Long_create(2759138893, 3291009114), Long_create(1301439968, 4113761393), Long_create(3497754540, 2571100870), Long_create(2224709527, 3213876088), Long_create(2780886909, 4017345110), Long_create(664312494, 2510840694), Long_create(2977874265, 3138550867), Long_create(2648601008, 3923188584), Long_create(1655375630, 2451992865), Long_create(3142961361, 3064991081), Long_create(707476230, 3831238852), Long_create(2589656291, 2394524282), - Long_create(1089586716, 2993155353), Long_create(2435725219, 3741444191), Long_create(3132940998, 2338402619), Long_create(2842434424, 2923003274), Long_create(1405559382, 3653754093), Long_create(1415345525, 2283596308), Long_create(1769181907, 2854495385), Long_create(3285219208, 3568119231), Long_create(3663874741, 2230074519), Long_create(3506101602, 2787593149), Long_create(1161401530, 3484491437), Long_create(1262746869, 2177807148), Long_create(1578433586, 2722258935), Long_create(899300158, 3402823669), - Long_create(2197867022, 4253529586), Long_create(2447408712, 2658455991), Long_create(1985519067, 3323069989), Long_create(3555640657, 4153837486), Long_create(1148533587, 2596148429), Long_create(2509408807, 3245185536), Long_create(3136761009, 4056481920), Long_create(1960475631, 2535301200), Long_create(2450594539, 3169126500), Long_create(3063243173, 3961408125), Long_create(2451397895, 2475880078), Long_create(916763721, 3094850098), Long_create(3293438299, 3868562622), Long_create(984657113, 2417851639), - Long_create(157079567, 3022314549), Long_create(1270091283, 3777893186), Long_create(1867548876, 2361183241), Long_create(3408177919, 2951479051), Long_create(3186480575, 3689348814), Long_create(917808535, 2305843009), Long_create(2221002493, 2882303761), Long_create(3849994940, 3602879701), Long_create(2943117750, 2251799813), Long_create(457671715, 2814749767), Long_create(3793315116, 3518437208), Long_create(2370821947, 2199023255), Long_create(1889785610, 2748779069), Long_create(3435973837, 3435973836), - Long_create(0, 2147483648), Long_create(0, 2684354560), Long_create(0, 3355443200), Long_create(0, 4194304000), Long_create(0, 2621440000), Long_create(0, 3276800000), Long_create(0, 4096000000), Long_create(0, 2560000000), Long_create(0, 3200000000), Long_create(0, 4000000000), Long_create(0, 2500000000), Long_create(0, 3125000000), Long_create(0, 3906250000), Long_create(0, 2441406250), Long_create(2147483648, 3051757812), Long_create(2684354560, 3814697265), Long_create(67108864, 2384185791), Long_create(3305111552, 2980232238), - Long_create(1983905792, 3725290298), Long_create(2313682944, 2328306436), Long_create(2892103680, 2910383045), Long_create(393904128, 3637978807), Long_create(1856802816, 2273736754), Long_create(173519872, 2842170943), Long_create(3438125312, 3552713678), Long_create(1075086496, 2220446049), Long_create(2417599944, 2775557561), Long_create(4095741754, 3469446951), Long_create(4170451332, 2168404344), Long_create(918096869, 2710505431), Long_create(73879263, 3388131789), Long_create(1166090902, 4235164736), - Long_create(728806814, 2646977960), Long_create(911008517, 3308722450), Long_create(3286244295, 4135903062), Long_create(980160860, 2584939414), Long_create(3372684723, 3231174267), Long_create(3142114080, 4038967834), Long_create(3037563124, 2524354896), Long_create(3796953905, 3155443620), Long_create(451225085, 3944304526), Long_create(3503241150, 2465190328), Long_create(84084142, 3081487911), Long_create(3326330649, 3851859888), Long_create(2078956656, 2407412430), Long_create(451212172, 3009265538), - Long_create(2711498863, 3761581922), Long_create(2768428613, 2350988701), Long_create(239310295, 2938735877), Long_create(1372879692, 3673419846), Long_create(4079275280, 2295887403), Long_create(4025352276, 2869859254), Long_create(2884206696, 3587324068), Long_create(3950112833, 2242077542), Long_create(2790157394, 2802596928), Long_create(3487696742, 3503246160), Long_create(2179810464, 2189528850), Long_create(577279432, 2736911063), Long_create(3942824762, 3421138828), Long_create(633563656, 4276423536), - Long_create(395977285, 2672764710), Long_create(2642455254, 3340955887), Long_create(2229327244, 4176194859), Long_create(856458615, 2610121787), Long_create(4291798741, 3262652233), Long_create(2143522955, 4078315292), Long_create(3487185495, 2548947057), Long_create(1137756396, 3186183822), Long_create(3569679143, 3982729777), Long_create(620436729, 2489206111), Long_create(3996771383, 3111507638), Long_create(2848480580, 3889384548), Long_create(3927784011, 2430865342), Long_create(2762246365, 3038581678), - Long_create(1305324309, 3798227098), Long_create(1889569517, 2373891936), Long_create(2361961896, 2967364920), Long_create(2952452370, 3709206150), Long_create(771540907, 2318253844), Long_create(964426134, 2897817305), Long_create(2279274492, 3622271631), Long_create(3035159293, 2263919769), Long_create(572723645, 2829899712), Long_create(715904556, 3537374640), Long_create(447440347, 2210859150), Long_create(2706784082, 2763573937), Long_create(162254631, 3454467422), Long_create(3322634616, 2159042138), - Long_create(2005809622, 2698802673), Long_create(3581003852, 3373503341), Long_create(1255029343, 4216879177), Long_create(3468747899, 2635549485), Long_create(1114709402, 3294436857), Long_create(2467128577, 4118046071), Long_create(3152568096, 2573778794), Long_create(1793226473, 3217223493), Long_create(3315274915, 4021529366), Long_create(998304998, 2513455854), Long_create(3395364895, 3141819817), Long_create(1022980647, 3927274772), Long_create(2786846552, 2454546732), Long_create(3483558190, 3068183415), - Long_create(3280705914, 3835229269), Long_create(2587312108, 2397018293), Long_create(12914663, 2996272867), Long_create(3237368801, 3745341083), Long_create(1486484589, 2340838177), Long_create(2931847560, 2926047721), Long_create(443583978, 3657559652), Long_create(2424723634, 2285974782), Long_create(883420895, 2857468478), Long_create(3251759766, 3571835597), Long_create(2569220766, 2232397248), Long_create(3211525958, 2790496560), Long_create(4014407447, 3488120700), Long_create(361521006, 2180075438), - Long_create(2599384906, 2725094297), Long_create(28005660, 3406367872), Long_create(35007075, 4257959840), Long_create(21879422, 2661224900), Long_create(27349278, 3326531125), Long_create(1107928421, 4158163906), Long_create(1766197087, 2598852441), Long_create(3281488183, 3248565551), Long_create(3028118405, 4060706939), Long_create(1355703091, 2537941837), Long_create(2768370688, 3172427296), Long_create(3460463360, 3965534120), Long_create(2162789600, 2478458825), Long_create(3777228824, 3098073531), - Long_create(3647794206, 3872591914), Long_create(3353613203, 2420369946), Long_create(2044532855, 3025462433), Long_create(3629407893, 3781828041), Long_create(657767197, 2363642526), Long_create(2969692644, 2954553157), Long_create(490890333, 3693191447), Long_create(1917419194, 2308244654), Long_create(249290345, 2885305818), Long_create(2459096579, 3606632272), Long_create(1536935362, 2254145170), Long_create(4068652851, 2817681462), Long_create(2938332415, 3522101828), Long_create(3983941407, 2201313642), - Long_create(2832443111, 2751642053), Long_create(319328417, 3439552567), Long_create(1810192997, 2149720354), Long_create(115257598, 2687150443), Long_create(3365297469, 3358938053), Long_create(985396365, 4198672567), Long_create(2226485464, 2624170354), Long_create(635623182, 3280212943), Long_create(4015754449, 4100266178), Long_create(3583588355, 2562666361), Long_create(1258259972, 3203332952), Long_create(1572824965, 4004166190), Long_create(4204241075, 2502603868), Long_create(960334048, 3128254836), - Long_create(1200417559, 3910318545), Long_create(3434615535, 2443949090), Long_create(2145785770, 3054936363), Long_create(1608490389, 3818670454), Long_create(4226531965, 2386669033), Long_create(2061939484, 2983336292), Long_create(2577424355, 3729170365), Long_create(2147761134, 2330731478), Long_create(537217770, 2913414348), Long_create(671522212, 3641767935), Long_create(2030314119, 2276104959), Long_create(1464150824, 2845131199), Long_create(756446706, 3556413999), Long_create(2083391927, 2222758749), - Long_create(3677981733, 2778448436), Long_create(302509871, 3473060546), Long_create(1262810493, 2170662841), Long_create(2652254940, 2713328551), Long_create(2241576851, 3391660689), Long_create(3875712888, 4239575861), Long_create(2959191467, 2649734913), Long_create(477763862, 3312168642), Long_create(2744688476, 4140210802), Long_create(2789172121, 2587631751), Long_create(2412723328, 3234539689), Long_create(4089645983, 4043174611), Long_create(2019157828, 2526984132), Long_create(2523947285, 3158730165), - Long_create(4228675930, 3948412706), Long_create(3716664280, 2467757941), Long_create(1424604878, 3084697427), Long_create(707014274, 3855871784), Long_create(441883921, 2409919865), Long_create(1626096725, 3012399831), Long_create(958879083, 3765499789), Long_create(1136170339, 2353437368), Long_create(1420212923, 2941796710), Long_create(3922749802, 3677245887), Long_create(4062331362, 2298278679), Long_create(4004172379, 2872848349), Long_create(1783990002, 3591060437), Long_create(1651864663, 2244412773), - Long_create(3138572653, 2805515966), Long_create(1775732168, 3506894958), Long_create(36090781, 2191809349), Long_create(1118855300, 2739761686), Long_create(3546052773, 3424702107), Long_create(3358824142, 4280877634), Long_create(3173006913, 2675548521), Long_create(745033169, 3344435652), Long_create(931291462, 4180544565), Long_create(1118928076, 2612840353), Long_create(2472401918, 3266050441), Long_create(4164244222, 4082563051), Long_create(2065781727, 2551601907), Long_create(1508485334, 3189502384), - Long_create(1885606668, 3986877980), Long_create(3325987816, 2491798737), Long_create(936259297, 3114748422), Long_create(3317807770, 3893435527), Long_create(3684242592, 2433397204), Long_create(310335944, 3041746506), Long_create(2535403578, 3802183132), Long_create(3732110884, 2376364457), Long_create(1443913133, 2970455572), Long_create(1804891417, 3713069465), Long_create(3812411696, 2320668415), Long_create(3691772795, 2900835519), Long_create(3540974170, 3626044399), Long_create(3823721592, 2266277749), - Long_create(1558426518, 2832847187), Long_create(874291324, 3541058984), Long_create(546432078, 2213161865), Long_create(1756781921, 2766452331), Long_create(1122235577, 3458065414), Long_create(3922622708, 2161290883), Long_create(3829536561, 2701613604), Long_create(491953405, 3377017006), Long_create(2762425404, 4221271257), Long_create(115903142, 2638294536), Long_create(144878927, 3297868170), Long_create(2328582307, 4122335212), Long_create(3602847590, 2576459507), Long_create(3429817663, 3220574384), - Long_create(4287272079, 4025717980), Long_create(532061401, 2516073738), Long_create(2812560400, 3145092172), Long_create(3515700500, 3931365215), Long_create(3807925548, 2457103259), Long_create(3686165111, 3071379074), Long_create(2460222741, 3839223843), Long_create(1000768301, 2399514902), Long_create(3398444024, 2999393627), Long_create(3174313207, 3749242034), Long_create(3057687578, 2343276271), Long_create(2748367649, 2929095339), Long_create(2361717737, 3661369174), Long_create(402331761, 2288355734), - Long_create(2650398350, 2860444667), Long_create(2239256113, 3575555834), Long_create(2473276895, 2234722396), Long_create(3091596119, 2793402995), Long_create(2790753324, 3491753744), Long_create(1744220828, 2182346090), Long_create(32792387, 2727932613), Long_create(1114732307, 3409915766), Long_create(3540899032, 4262394707), Long_create(1676190983, 2663996692), Long_create(2095238729, 3329995865), Long_create(3692790235, 4162494831), Long_create(3918606633, 2601559269), Long_create(1677032819, 3251949087), - Long_create(1022549200, 4064936359), Long_create(2249705986, 2540585224), Long_create(2812132482, 3175731530), Long_create(1367681955, 3969664413), Long_create(1391672134, 2481040258), Long_create(3887073815, 3101300322), Long_create(2711358621, 3876625403), Long_create(1157728226, 2422890877), Long_create(2520902107, 3028613596), Long_create(3151127633, 3785766995), Long_create(1432583859, 2366104372), Long_create(1790729824, 2957630465), Long_create(3312154103, 3697038081), Long_create(459483579, 2310648801), - Long_create(1648096297, 2888311001), Long_create(3133862196, 3610388751), Long_create(3569276608, 2256492969), Long_create(1240370288, 2820616212), Long_create(1550462860, 3525770265), Long_create(3653393848, 2203606415), Long_create(3493000486, 2754508019), Long_create(3292508783, 3443135024), Long_create(2057817989, 2151959390), Long_create(424788839, 2689949238), Long_create(2678469697, 3362436547), Long_create(2274345297, 4203045684), Long_create(3568949458, 2626903552), Long_create(166219527, 3283629441), - Long_create(1281516233, 4104536801), Long_create(3485302206, 2565335500), Long_create(61660461, 3206669376), Long_create(77075576, 4008336720), Long_create(48172235, 2505210450), Long_create(2207698942, 3131513062), Long_create(612140029, 3914391328), Long_create(382587518, 2446494580), Long_create(478234398, 3058118225), Long_create(1671534821, 3822647781), Long_create(1581580175, 2389154863), Long_create(903233395, 2986443579), Long_create(55299920, 3733054474), Long_create(1108304274, 2333159046)]); - otcit_DoubleSynthesizer_exp10Table = $rt_createShortArrayFromData([(-76), (-72), (-69), (-66), (-62), (-59), (-56), (-52), (-49), (-46), (-42), (-39), (-36), (-32), (-29), (-26), (-22), (-19), (-16), (-12), (-9), (-6), (-2), 1, 4, 8, 11, 14, 17, 21, 24, 27, 31, 34, 37, 41, 44, 47, 51, 54, 57, 61, 64, 67, 71, 74, 77, 81, 84, 87, 91, 94, 97, 101, 104, 107, 110, 114, 117, 120, 124, 127, 130, 134, 137, 140, 144, 147, 150, 154, 157, 160, 164, 167, 170, 174, 177, 180, 184, 187, 190, 194, 197, 200, 204, 207, 210, - 213, 217, 220, 223, 227, 230, 233, 237, 240, 243, 247, 250, 253, 257, 260, 263, 267, 270, 273, 277, 280, 283, 287, 290, 293, 297, 300, 303, 306, 310, 313, 316, 320, 323, 326, 330, 333, 336, 340, 343, 346, 350, 353, 356, 360, 363, 366, 370, 373, 376, 380, 383, 386, 390, 393, 396, 400, 403, 406, 409, 413, 416, 419, 423, 426, 429, 433, 436, 439, 443, 446, 449, 453, 456, 459, 463, 466, 469, 473, 476, 479, 483, 486, 489, 493, 496, 499, 502, 506, 509, 512, 516, 519, 522, 526, 529, 532, 536, 539, 542, 546, 549, - 552, 556, 559, 562, 566, 569, 572, 576, 579, 582, 586, 589, 592, 595, 599, 602, 605, 609, 612, 615, 619, 622, 625, 629, 632, 635, 639, 642, 645, 649, 652, 655, 659, 662, 665, 669, 672, 675, 679, 682, 685, 689, 692, 695, 698, 702, 705, 708, 712, 715, 718, 722, 725, 728, 732, 735, 738, 742, 745, 748, 752, 755, 758, 762, 765, 768, 772, 775, 778, 782, 785, 788, 791, 795, 798, 801, 805, 808, 811, 815, 818, 821, 825, 828, 831, 835, 838, 841, 845, 848, 851, 855, 858, 861, 865, 868, 871, 875, 878, 881, 885, 888, - 891, 894, 898, 901, 904, 908, 911, 914, 918, 921, 924, 928, 931, 934, 938, 941, 944, 948, 951, 954, 958, 961, 964, 968, 971, 974, 978, 981, 984, 987, 991, 994, 997, 1001, 1004, 1007, 1011, 1014, 1017, 1021, 1024, 1027, 1031, 1034, 1037, 1041, 1044, 1047, 1051, 1054, 1057, 1061, 1064, 1067, 1071, 1074, 1077, 1081, 1084, 1087, 1090, 1094, 1097, 1100, 1104, 1107, 1110, 1114, 1117, 1120, 1124, 1127, 1130, 1134, 1137, 1140, 1144, 1147, 1150, 1154, 1157, 1160, 1164, 1167, 1170, 1174, 1177, 1180, 1183, 1187, 1190, - 1193, 1197, 1200, 1203, 1207, 1210, 1213, 1217, 1220, 1223, 1227, 1230, 1233, 1237, 1240, 1243, 1247, 1250, 1253, 1257, 1260, 1263, 1267, 1270, 1273, 1276, 1280, 1283, 1286, 1290, 1293, 1296, 1300, 1303, 1306, 1310, 1313, 1316, 1320, 1323, 1326, 1330, 1333, 1336, 1340, 1343, 1346, 1350, 1353, 1356, 1360, 1363, 1366, 1370, 1373, 1376, 1379, 1383, 1386, 1389, 1393, 1396, 1399, 1403, 1406, 1409, 1413, 1416, 1419, 1423, 1426, 1429, 1433, 1436, 1439, 1443, 1446, 1449, 1453, 1456, 1459, 1463, 1466, 1469, 1472, - 1476, 1479, 1482, 1486, 1489, 1492, 1496, 1499, 1502, 1506, 1509, 1512, 1516, 1519, 1522, 1526, 1529, 1532, 1536, 1539, 1542, 1546, 1549, 1552, 1556, 1559, 1562, 1566, 1569, 1572, 1575, 1579, 1582, 1585, 1589, 1592, 1595, 1599, 1602, 1605, 1609, 1612, 1615, 1619, 1622, 1625, 1629, 1632, 1635, 1639, 1642, 1645, 1649, 1652, 1655, 1659, 1662, 1665, 1668, 1672, 1675, 1678, 1682, 1685, 1688, 1692, 1695, 1698, 1702, 1705, 1708, 1712, 1715, 1718, 1722, 1725, 1728, 1732, 1735, 1738, 1742, 1745, 1748, 1752, 1755, - 1758, 1761, 1765, 1768, 1771, 1775, 1778, 1781, 1785, 1788, 1791, 1795, 1798, 1801, 1805, 1808, 1811, 1815, 1818, 1821, 1825, 1828, 1831, 1835, 1838, 1841, 1845, 1848, 1851, 1855, 1858, 1861, 1864, 1868, 1871, 1874, 1878, 1881, 1884, 1888, 1891, 1894, 1898, 1901, 1904, 1908, 1911, 1914, 1918, 1921, 1924, 1928, 1931, 1934, 1938, 1941, 1944, 1948, 1951, 1954, 1957, 1961, 1964, 1967, 1971, 1974, 1977, 1981, 1984, 1987, 1991, 1994, 1997, 2001, 2004, 2007, 2011, 2014, 2017, 2021, 2024, 2027, 2031, 2034, 2037, - 2041, 2044, 2047, 2051, 2054, 2057, 2060, 2064, 2067, 2070, 2074, 2077, 2080, 2084, 2087, 2090, 2094, 2097, 2100, 2104, 2107, 2110, 2114]); +oncius_TypeSpec$_org$neo4j$cypher$internal$util$symbols$TypeSpec$$apply = ($this, $ranges) => { + let var$2, var$3; + var$2 = new oncius_TypeSpec; + var$3 = $ranges.$iterator0(); + s_package$_$callClinit(); + oncius_TypeSpec__init_(var$2, var$3.$foldLeft(sci_Vector$_empty(s_package$_Vector(s_package$_MODULE$)), new oncius_TypeSpec$$minimalRanges$lambda$_12_0)); + return var$2; }, -oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_109_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_109_0_apply = (var$0, var$1) => { +oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0 = $rt_classWithoutFields(), +oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0_apply = (var$0, var$1) => { var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); + oncia_CommandClause$_$callClinit(); + return s_Tuple2__init_(var$1.$expression0(), var$1.$alias()); }; -function oncius_TypeRange() { - let a = this; jl_Object.call(a); - a.$hasDefiniteSize0 = 0; - a.$lower0 = null; - a.$upper0 = null; - a.$bitmap$030 = 0; +function oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1() { + jl_Object.call(this); + this.$_0434 = null; } -let oncius_TypeRange_lower = $this => { - return $this.$lower0; -}, -oncius_TypeRange_upper = $this => { - return $this.$upper0; +let oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0434; + oncia_CommandClause$_$callClinit(); + var$3 = var$1.$sortItems; + var$4 = new oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0; + var$4.$_01141 = var$2; + return oncia_OrderBy_copy(var$1, var$3.$map(var$4), var$1.$position115); +}; +function oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2() { + jl_Object.call(this); + this.$_0964 = null; +} +let oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0964; + oncia_CommandClause$_$callClinit(); + var$3 = new oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0; + var$3.$_0732 = var$2; + return oncia_Where_mapExpressions(var$1, var$3); }, -oncius_TypeRange_contains = ($this, $that) => { - let var$2, var$3, var$4, var$5; +onciap_Prettifier$$extractTopology$lambda$_19_0 = $rt_classWithoutFields(), +onciap_Prettifier$$extractTopology$lambda$_19_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { - if ($this.$lower0.$isAssignableFrom0($that.$lower0)) { - var$2 = $this.$upper0; - var$3 = new oncius_TypeRange$contains$lambda$_7_0; - var$4 = new oncius_TypeRange$contains$lambda$_7_1; - var$4.$_044 = $that; - if (sr_BoxesRunTime_unboxToBoolean(s_Option_fold(var$2, var$3, var$4))) { - var$5 = 1; + var$1 = var$1; + onciap_Prettifier$_$callClinit(); + var$2 = 0; + var$3 = null; + if (var$1 instanceof su_Left) { + var$2 = 1; + var$3 = var$1; + if (1 == sr_BoxesRunTime_unboxToInt(var$3.$value6)) { + var$1 = s_Some__init_($rt_s(6666)); break a; } } - var$5 = 0; + if (var$2) { + var$2 = sr_BoxesRunTime_unboxToInt(var$3.$value6); + var$1 = new s_Some; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(var$3, 32); + jl_StringBuilder_append(jl_StringBuilder_append0(var$3, var$2), $rt_s(6667)); + s_Some__init_0(var$1, jl_AbstractStringBuilder_toString(var$3)); + } else { + if (!(var$1 instanceof su_Right)) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$value7; + var$1 = new s_Some; + var$3 = onu_Stringifier_backtick(var$3.$name()); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6668)), var$3), $rt_s(6667)); + s_Some__init_0(var$1, jl_AbstractStringBuilder_toString(var$4)); + } } - return var$5; + return var$1; }, -oncius_TypeRange_hasDefiniteSize = $this => { - let var$1, $$je; - if ($this.$bitmap$030) - return $this.$hasDefiniteSize0; - jl_Object_monitorEnterSync($this); +onciap_Prettifier$$extractTopology$lambda$_19_1 = $rt_classWithoutFields(), +onciap_Prettifier$$extractTopology$lambda$_19_1_apply = var$0 => { + onciap_Prettifier$_$callClinit(); + return $rt_s(4); +}, +onciap_Prettifier$$extractTopology$lambda$_19_2 = $rt_classWithoutFields(), +onciap_Prettifier$$extractTopology$lambda$_19_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { - try { - if ($this.$bitmap$030) + var$1 = var$1; + onciap_Prettifier$_$callClinit(); + var$2 = 0; + var$3 = null; + if (var$1 instanceof su_Left) { + var$2 = 1; + var$3 = var$1; + if (1 == sr_BoxesRunTime_unboxToInt(var$3.$value6)) { + var$1 = s_Some__init_($rt_s(6669)); break a; - $this.$hasDefiniteSize0 = !s_Option_isDefined(oncius_TypeRange_upper($this)) && sr_BoxesRunTime_unboxToBoolean(oncius_TypeRange$checkForAny$lambda$_10_0_apply(oncius_TypeRange_checkForAny($this), oncius_TypeRange_lower($this))) ? 0 : 1; - $this.$bitmap$030 = 1; - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - + } + } + if (var$2) { + var$2 = sr_BoxesRunTime_unboxToInt(var$3.$value6); + var$1 = new s_Some; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(var$3, 32); + jl_StringBuilder_append(jl_StringBuilder_append0(var$3, var$2), $rt_s(6670)); + s_Some__init_0(var$1, jl_AbstractStringBuilder_toString(var$3)); + } else { + if (!(var$1 instanceof su_Right)) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$value7; + var$1 = new s_Some; + var$3 = onu_Stringifier_backtick(var$3.$name()); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6668)), var$3), $rt_s(6670)); + s_Some__init_0(var$1, jl_AbstractStringBuilder_toString(var$4)); } - jl_Object_monitorExitSync($this); - $rt_throw(var$1); } - jl_Object_monitorExitSync($this); - return $this.$hasDefiniteSize0; -}, -oncius_TypeRange_checkForAny = $this => { - let var$1; - var$1 = new oncius_TypeRange$checkForAny$lambda$_10_0; - var$1.$_01148 = $this; return var$1; }, -oncius_TypeRange_intersect = ($this, $that) => { +onciap_Prettifier$$extractTopology$lambda$_19_3 = $rt_classWithoutFields(), +onciap_Prettifier$$extractTopology$lambda$_19_3_apply = var$0 => { + onciap_Prettifier$_$callClinit(); + return $rt_s(4); +}; +function oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0() { + jl_Object.call(this); + this.$_01046 = null; +} +let oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0__init_ = (var$0, var$1) => { + var$0.$_01046 = var$1; +}, +oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0__init_0 = var_0 => { + let var_1 = new oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0(); + oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0__init_(var_1, var_0); + return var_1; +}, +oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0_apply = var$0 => { + return var$0.$_01046.$specified; +}; +function oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1() { + jl_Object.call(this); + this.$_0560 = null; +} +let oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1__init_ = (var$0, var$1) => { + var$0.$_0560 = var$1; +}, +oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1__init_0 = var_0 => { + let var_1 = new oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1(); + oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1__init_(var_1, var_0); + return var_1; +}, +oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1_apply = (var$0, var$1) => { let var$2, var$3; - var$2 = $this.$lower0.$greatestLowerBound($that.$lower0); - var$3 = new oncius_TypeRange$intersect$lambda$_12_0; - var$3.$_0313 = $this; - var$3.$_1116 = $that; - return s_Option_flatMap(var$2, var$3); + var$1 = var$1; + var$2 = var$0.$_0560.$specified; + var$3 = oncius_TypeSpec_intersect(var$2, var$1); + if (!oncius_TypeSpec_nonEmpty(var$3)) + var$3 = oncius_TypeSpec_intersect(oncius_TypeSpec_coercions(var$2), var$1); + return var$3; }, -oncius_TypeRange_covariant = $this => { - let $x$1; - $x$1 = s_None$_MODULE$; - return oncius_TypeRange__init_($this.$lower0, $x$1); +onciuh_Try = $rt_classWithoutFields(0); +function onciuh_Success() { + jl_Object.call(this); + this.$value43 = null; +} +let onciuh_Success_isFailure = $this => { + return 0; }, -oncius_TypeRange_constrain = ($this, $aType) => { - return oncius_TypeRange_intersect($this, oncius_TypeRange__init_($aType, s_None$_MODULE$)); +onciuh_Success__init_0 = ($this, $value) => { + $this.$value43 = $value; }, -oncius_TypeRange_leastUpperBounds = ($this, $other) => { - let $newLower, $u2, $u1, $u2_0, var$6, $u1_0, var$8, var$9; - $newLower = $this.$lower0.$leastUpperBound($other.$lower0); - $u2 = s_Tuple2__init_($this.$upper0, $other.$upper0); - $u1 = $u2.$_10; - $u2_0 = $u2.$_20; - var$6 = $u1 instanceof s_Some; - if (var$6) { - $u1_0 = $u1.$value5; - if ($u2_0 instanceof s_Some) { - $u2_0 = $u2_0.$value5; - s_package$_$callClinit(); - $u1 = s_package$_Vector(s_package$_MODULE$); - var$8 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_TypeRange, 1); - var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($u1_0.$leastUpperBound($u2_0))); - return $u1.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)); - } - } - if (var$6) { - $u1 = $u1.$value5; - if (jl_Object_equals(s_None$_MODULE$, $u2_0)) { - if (!$u1.$isAssignableFrom0($other.$lower0) && !$other.$lower0.$isAssignableFrom0($u1)) { - s_package$_$callClinit(); - $other = s_package$_Vector(s_package$_MODULE$); - $u2 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_TypeRange, 1); - var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($newLower)); - return $other.$from0(sr_ScalaRunTime$_wrapRefArray($u2, var$9)); - } - s_package$_$callClinit(); - $other = s_package$_Vector(s_package$_MODULE$); - $u2 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_TypeRange, 1); - var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($u1)); - return $other.$from0(sr_ScalaRunTime$_wrapRefArray($u2, var$9)); - } - } - $u1 = $u2.$_10; - $u2_0 = $u2.$_20; - if (jl_Object_equals(s_None$_MODULE$, $u1) && $u2_0 instanceof s_Some) { - $u2 = $u2_0.$value5; - if (!$u2.$isAssignableFrom0($this.$lower0) && !$this.$lower0.$isAssignableFrom0($u2)) { - s_package$_$callClinit(); - $other = s_package$_Vector(s_package$_MODULE$); - $u2 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_TypeRange, 1); - var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($newLower)); - return $other.$from0(sr_ScalaRunTime$_wrapRefArray($u2, var$9)); - } - s_package$_$callClinit(); - $other = s_package$_Vector(s_package$_MODULE$); - $u1 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_TypeRange, 1); - var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($u2)); - return $other.$from0(sr_ScalaRunTime$_wrapRefArray($u1, var$9)); - } - $u1 = $u2.$_10; - $u2_0 = s_Tuple2__2($u2); - if (jl_Object_equals(s_None$_MODULE$, $u1) && jl_Object_equals(s_None$_MODULE$, $u2_0)) { - a: { - b: { - $u2 = oncius_TypeRange_lower($this); - $u1 = oncius_TypeRange_lower($other); - if ($u2 !== null) { - if (!$u2.$equals($u1)) - break a; - else - break b; - } - if ($u1 !== null) - break a; - } - s_package$_$callClinit(); - $other = s_package$_Vector(s_package$_MODULE$); - $u2 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_TypeRange, 1); - var$9.data[0] = oncius_TypeRange__init_($newLower, s_None$_MODULE$); - return sci_Vector$_apply($other, sr_ScalaRunTime$_wrapRefArray($u2, var$9)); - } - if ((oncius_TypeRange_lower($this)).$isAssignableFrom0(oncius_TypeRange_lower($other))) { - s_package$_$callClinit(); - $u2 = s_package$_Vector(s_package$_MODULE$); - $u1 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_wrapArray(oncius_TypeRange, [oncius_TypeRange__init_($newLower, s_Some__init_(oncius_TypeRange_lower($other))), oncius_TypeRange__init_(oncius_TypeRange_lower($other), s_None$_MODULE$)]); - return sci_Vector$_apply($u2, sr_ScalaRunTime$_wrapRefArray($u1, var$9)); - } - if (!(oncius_TypeRange_lower($other)).$isAssignableFrom0(oncius_TypeRange_lower($this))) { - s_package$_$callClinit(); - $other = s_package$_Vector(s_package$_MODULE$); - $u2 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_createArray(oncius_TypeRange, 1); - var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($newLower)); - return sci_Vector$_apply($other, sr_ScalaRunTime$_wrapRefArray($u2, var$9)); - } - s_package$_$callClinit(); - $other = s_package$_Vector(s_package$_MODULE$); - $u2 = sr_ScalaRunTime$_MODULE$; - var$9 = $rt_wrapArray(oncius_TypeRange, [oncius_TypeRange__init_($newLower, s_Some__init_(oncius_TypeRange_lower($this))), oncius_TypeRange__init_(oncius_TypeRange_lower($this), s_None$_MODULE$)]); - return sci_Vector$_apply($other, sr_ScalaRunTime$_wrapRefArray($u2, var$9)); - } - $rt_throw(s_MatchError__init_($u2)); +onciuh_Success__init_ = var_0 => { + let var_1 = new onciuh_Success(); + onciuh_Success__init_0(var_1, var_0); + return var_1; }, -oncius_TypeRange_reparent = ($this, $f) => { - return oncius_TypeRange__init_($f.$apply2($this.$lower0), s_Option_map($this.$upper0, $f)); +onciuh_Failure = $rt_classWithoutFields(), +onciuh_Failure_isFailure = $this => { + return 1; }, -oncius_TypeRange_productPrefix = $this => { - return $rt_s(7689); +oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if (oncie_Expression_containsAggregate($x)) + $default = (oncie_Expression_findAggregate($x)).$get1(); + return $default; }, -oncius_TypeRange_productArity = $this => { - return 2; +oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_50_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_50_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_SemanticAnalysisTooling_error$(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(6671), var$1.$position()); +}; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_0() { + jl_Object.call(this); + this.$_0725 = null; +} +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0725; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + var$3 = oncias_SemanticFunctionCheck$_MODULE$; + var$4 = new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_65_0; + var$4.$_0118 = var$1; + return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_specifyType$0(var$3, var$4, var$1)); +}; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1() { + jl_Object.call(this); + this.$_075 = null; +} +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1__init_ = (var$0, var$1) => { + var$0.$_075 = var$1; }, -oncius_TypeRange_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$lower0; - case 1: - return $this.$upper0; - default: +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1__init_0 = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$1 = var$0.$_075; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_67_0, (oncie_Expression_arguments(var$1)).$head()); + var$3 = (oncie_Expression_arguments(var$1)).$head(); + if (var$3 instanceof oncie_PatternExpression) + var$1 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + else if (var$3 instanceof oncie_Property ? 1 : !(var$3 instanceof oncie_ContainerIndex) ? 0 : 1) { + var$4 = oncias_package$_MODULE$; + var$5 = new s_Some; + oncias_SemanticError$_$callClinit(); + s_Some__init_0(var$5, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6672), var$1.$position7)); + var$1 = oncias_package$_liftSemanticErrorDefOption(var$4, var$5); + } else { + var$6 = oncias_package$_MODULE$; + var$7 = new s_Some; + oncias_SemanticError$_$callClinit(); + var$4 = oncias_SemanticError$_MODULE$; + var$8 = var$1.$name11; + var$9 = sci_$colon$colon__init_($rt_s(4643), sci_Nil$_MODULE$); + var$10 = var$1.$name11; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(6673)), var$10), $rt_s(6674)); + s_Some__init_0(var$7, oncias_SemanticError$_invalidEntityType(var$4, $rt_s(6675), var$8, var$9, jl_AbstractStringBuilder_toString(var$1), var$3.$position())); + var$1 = oncias_package$_liftSemanticErrorDefOption(var$6, var$7); } - return sr_Statics_ioobe($x$1); + return oncias_SemanticCheck_chain$(var$2, var$1); }, -oncius_TypeRange_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2__init_0 = var$0 => { + return; }, -oncius_TypeRange_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2__init_ = () => { + let var_0 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2__init_0(var_0); + return var_0; }, -oncius_TypeRange_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2_apply = var$0 => { + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +}; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3() { + jl_Object.call(this); + this.$_01116 = null; +} +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3__init_ = (var$0, var$1) => { + var$0.$_01116 = var$1; }, -oncius_TypeRange_equals = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncius_TypeRange) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$lower0; - var$3 = $x$1.$lower0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$upper0; - $x$1 = $x$1.$upper0; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break d; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncius_TypeRange)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3__init_0 = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3__init_(var_1, var_0); + return var_1; }, -oncius_TypeRange__init_0 = ($this, $lower, $upper) => { - $this.$lower0 = $lower; - $this.$upper0 = $upper; - s_Predef$_$callClinit(); - if (!s_Option_isEmpty($upper) && !$lower.$isAssignableFrom0($upper.$get1()) ? 0 : 1) - return; - $upper = new jl_AssertionError; - $lower = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0($lower, 18); - jl_AbstractStringBuilder_append($lower, $rt_s(3643)); - jl_AssertionError__init_0($upper, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($lower, $rt_s(7690)))); - $rt_throw($upper); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_01116; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_70_0, (oncie_Expression_arguments(var$1)).$head()); + var$3 = oncias_package$_MODULE$; + var$4 = oncias_SemanticFunctionCheck$_MODULE$; + var$5 = (oncie_Expression_arguments(var$1)).$head(); + var$6 = new oncias_SemanticAnalysisTooling$possibleTypes$lambda$_93_0; + var$6.$_0484 = var$4; + var$6.$_1165 = var$5; + return oncias_SemanticCheck_chain$(var$2, oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_specifyType$0(var$4, var$6, var$1))); +}; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4() { + jl_Object.call(this); + this.$_0362 = null; +} +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4__init_0 = (var$0, var$1) => { + var$0.$_0362 = var$1; }, -oncius_TypeRange__init_ = (var_0, var_1) => { - let var_2 = new oncius_TypeRange(); - oncius_TypeRange__init_0(var_2, var_0, var_1); - return var_2; +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4__init_0(var_1, var_0); + return var_1; }, -oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - return !($x instanceof oncia_InputDataStream) ? $default.$apply2($x) : $x; +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0362; + oncias_SemanticFunctionCheck$_$callClinit(); + if (var$1.$calledFromUseClause) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_invalidUseOfGraphFunction(oncias_SemanticError$_MODULE$, $rt_s(6131), var$1.$position7); + var$1 = oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + return var$1; }; -function oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_36_0() { +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5() { jl_Object.call(this); - this.$_0482 = null; + this.$_0876 = null; } -let oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_36_0_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_0482.$error2($rt_s(7691), var$1.$position()); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5__init_ = (var$0, var$1) => { + var$0.$_0876 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5__init_0 = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0876; + oncias_SemanticFunctionCheck$_$callClinit(); + if (var$1.$calledFromUseClause) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$5[0] = oncias_SemanticError$_invalidUseOfGraphFunction(oncias_SemanticError$_MODULE$, $rt_s(6134), var$1.$position7); + var$1 = oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + } + return var$1; }; -function oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_38_0() { +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6() { jl_Object.call(this); - this.$_01143 = null; + this.$_0421 = null; } -let oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_38_0_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_01143.$error2($rt_s(7692), var$1.$position()); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6__init_0 = (var$0, var$1) => { + var$0.$_0421 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0421; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_76_0, (oncie_Expression_arguments(var$1)).$head()); + var$3 = oncias_package$_MODULE$; + var$4 = oncias_SemanticFunctionCheck$_MODULE$; + var$5 = (oncie_Expression_arguments(var$1)).$head(); + var$6 = new oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_74_0; + var$6.$_0773 = var$5; + return oncias_SemanticCheck_chain$(var$2, oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_specifyType$0(var$4, var$6, var$1))); }; -function oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0() { +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7() { jl_Object.call(this); - this.$_0305 = null; + this.$_0786 = null; } -let oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0305; - var$2 = var$2.$semanticCheckContinuation(var$1.$state.$currentScope.$elem0, var$2.$semanticCheckContinuation$default$2()); - var$3 = new oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0; - var$3.$_0458 = var$1; - return oncias_SemanticCheck_map$(var$2, var$3); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7__init_0 = (var$0, var$1) => { + var$0.$_0786 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0786; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + var$3 = oncias_SemanticFunctionCheck$_MODULE$; + var$4 = new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_78_0; + var$4.$_0145 = var$1; + return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_specifyType$0(var$3, var$4, var$1)); }; -function oncia_Union$Mapping$2$() { - sr_AbstractFunction3.call(this); - this.$$outer46 = null; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8() { + jl_Object.call(this); + this.$_0164 = null; } -let oncia_Union$Mapping$2$_apply = ($this, $unionVariable, $variableInLhsName, $variableInRhsName) => { - let var$4, var$5; - var$4 = new oncia_Union$Mapping$1; - var$5 = $this.$$outer46; - var$4.$unionVariable0 = $unionVariable; - var$4.$variableInLhsName = $variableInLhsName; - var$4.$variableInRhsName = $variableInRhsName; - if (var$5 === null) - $rt_throw(null); - var$4.$$outer82 = var$5; - return var$4; +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8__init_0 = (var$0, var$1) => { + var$0.$_0164 = var$1; }, -oncia_Union$Mapping$2$__init_0 = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer46 = $$outer; +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8__init_0(var_1, var_0); + return var_1; }, -oncia_Union$Mapping$2$__init_ = var_0 => { - let var_1 = new oncia_Union$Mapping$2$(); - oncia_Union$Mapping$2$__init_0(var_1, var_0); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0164; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + var$3 = oncias_SemanticFunctionCheck$_MODULE$; + var$4 = new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_80_0; + var$4.$_0674 = var$1; + return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_specifyType$0(var$3, var$4, var$1)); +}; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9() { + jl_Object.call(this); + this.$_0816 = null; +} +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9__init_ = (var$0, var$1) => { + var$0.$_0816 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9__init_0 = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9__init_(var_1, var_0); return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9_apply = var$0 => { + let var$1; + var$1 = var$0.$_0816; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_SemanticFunctionCheck$_checkPercentileRange(oncias_SemanticFunctionCheck$_MODULE$, var$1.$args0.$apply1(1)); }; -function oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_63_0() { +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10() { jl_Object.call(this); - this.$_0822 = null; + this.$_0337 = null; } -let oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_63_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0822; - oncias_SemanticExpressionCheck$_$callClinit(); - if (var$1.$semanticCheckHasRunOnce) { - var$2 = new oncias_SemanticCheckResult; - s_package$_$callClinit(); - oncias_SemanticCheckResult__init_0(var$2, var$1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); - } else { - var$3 = oncias_SemanticState$ScopeLocation$_MODULE$; - var$3 = oncias_SemanticState$ScopeLocation$_parent$extension(var$3, ((oncias_SemanticState$ScopeLocation$_parent$extension(var$3, var$1.$currentScope)).$get1()).$location); - if (!(var$3 instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, var$3)) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = ((oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$1.$currentScope)).$get1()).$location.$elem0.$symbolTable; - } else - var$3 = var$3.$value5.$location.$elem0.$symbolTable.$concat2(((oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$1.$currentScope)).$get1()).$location.$elem0.$symbolTable); - var$4 = oncias_Scope_allSymbols(var$1.$currentScope.$elem0); - var$5 = var$1.$recordedScopes0; - var$6 = new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_0; - var$6.$_0444 = var$2; - var$2 = (var$5.$filter1(var$6)).$map(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_1); - s_Predef$_$callClinit(); - var$2 = sc_AbstractIterable_groupMapReduce(var$2.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$)), new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_2, new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_3, new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_4); - var$6 = new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_5; - var$6.$_03 = var$2; - var$2 = (var$4.$filterNot0(var$6)).$map10(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_6); - var$4 = new oncias_SemanticExpressionCheck$$anonfun$2; - var$4.$innerDefinitions$1 = var$2; - var$2 = oncias_SemanticCheckResult__init_(var$1, ((var$3.$collect0(var$4)).$map(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_7)).$toSeq()); - } - return var$2; +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10__init_ = (var$0, var$1) => { + var$0.$_0337 = var$1; }, -oncie_TypeSignatures$signatureLengths$lambda$_3_0 = $rt_classWithoutFields(), -oncie_TypeSignatures$signatureLengths$lambda$_3_0_apply = (var$0, var$1) => { - return jl_Integer_valueOf(sci_Vector_length(var$1.$argumentTypes())); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10__init_0 = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10__init_(var_1, var_0); + return var_1; }, -oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - if (var$1 instanceof oncie_StringLiteral) { - var$2 = var$1.$value8; - s_Option$_$callClinit(); - var$1 = (s_Option$_option2Iterable(s_Option$_MODULE$, oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, var$2))).$toSeq(); - } else if (!(var$1 instanceof oncie_ListLiteral)) { - if (var$1 instanceof oncie_Null) - var$1 = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, null); - else { - s_package$_$callClinit(); - var$1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10_apply = var$0 => { + let var$1; + var$1 = var$0.$_0337; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_SemanticFunctionCheck$_checkPercentileRange(oncias_SemanticFunctionCheck$_MODULE$, var$1.$args0.$apply1(1)); +}; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11() { + jl_Object.call(this); + this.$_0898 = null; +} +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11__init_0 = (var$0, var$1) => { + var$0.$_0898 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + a: { + var$1 = var$0.$_0898; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticFunctionCheck$_MODULE$; + var$1 = var$1.$args0.$apply1(0); + var$3 = 0; + var$4 = null; + if (var$1 instanceof oncie_MapExpression) { + var$3 = 1; + var$4 = var$1; + if (var$4.$items1.$exists(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_0) && var$4.$items1.$exists(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_1)) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + break a; + } + } + if (var$3 && var$4.$items1.$exists(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_2) && var$4.$items1.$exists(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_3)) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else if (!var$3) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$1 = sc_AbstractIterable_mkString(var$4.$items1.$map(new oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_4), $rt_s(45)); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6676)), var$1), $rt_s(6677)); + var$1 = oncias_SemanticAnalysisTooling_error$(var$2, jl_AbstractStringBuilder_toString(var$5), var$4.$position118); } - } else { - var$1 = var$1.$expressions0.$collect(new oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1); - s_Predef$_$callClinit(); - var$1 = var$1.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$)); } return var$1; }; -function oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_1() { +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12() { jl_Object.call(this); - this.$_0422 = null; + this.$_0433 = null; } -let oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0422; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticError$_$callClinit(); - return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$1, var$2); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12__init_0 = (var$0, var$1) => { + var$0.$_0433 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0433; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_85_0, (oncie_Expression_arguments(var$1)).$head()); + var$3 = oncias_package$_MODULE$; + var$4 = oncias_SemanticFunctionCheck$_MODULE$; + return oncias_SemanticCheck_chain$(var$2, oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_specifyType$0(var$4, oncias_SemanticAnalysisTooling_types$(var$4, (oncie_Expression_arguments(var$1)).$head()), var$1))); }; -function oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_0() { - let a = this; jl_Object.call(a); - a.$_0499 = null; - a.$_1175 = null; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13() { + jl_Object.call(this); + this.$_01014 = null; } -let oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0499; - var$2 = var$0.$_1175; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling_error$(oncias_SemanticExpressionCheck$_MODULE$, $rt_s(7693), ((oncias_SemanticExpressionCheck$_colonDisjunctions$1(var$1, var$2)).$head()).$position40); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13__init_0 = (var$0, var$1) => { + var$0.$_01014 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_01014; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_87_0, (oncie_Expression_arguments(var$1)).$apply1(0)); + var$3 = oncias_package$_MODULE$; + var$4 = oncias_SemanticFunctionCheck$_MODULE$; + return oncias_SemanticCheck_chain$(var$2, oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_specifyType$0(var$4, oncias_SemanticAnalysisTooling_types$(var$4, (oncie_Expression_arguments(var$1)).$apply1(0)), var$1))); }; -function oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_1() { - let a = this; jl_Object.call(a); - a.$_01054 = null; - a.$_1360 = null; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14() { + jl_Object.call(this); + this.$_0520 = null; } -let oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_1_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_01054; - var$2 = var$0.$_1360; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling_error$(oncias_SemanticExpressionCheck$_MODULE$, $rt_s(7694), ((oncias_SemanticExpressionCheck$_colonConjunctions$1(var$1, var$2)).$head()).$position98); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14__init_0 = (var$0, var$1) => { + var$0.$_0520 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0520; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticFunctionCheck$_MODULE$; + var$3 = new sci_$colon$colon; + oncius_package$_$callClinit(); + sci_$colon$colon__init_0(var$3, oncius_package$_CTString(oncius_package$_MODULE$), sci_$colon$colon__init_(oncius_package$_CTBoolean(oncius_package$_MODULE$), sci_$colon$colon__init_(oncius_package$_CTInteger(oncius_package$_MODULE$), sci_Nil$_MODULE$))); + return oncias_SemanticFunctionCheck$_checkToSpecifiedTypeOfArgument(var$2, var$1, var$3); }; -function oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_2() { - let a = this; jl_Object.call(a); - a.$_0528 = null; - a.$_1185 = null; - a.$_261 = null; - a.$_318 = null; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15() { + jl_Object.call(this); + this.$_01112 = null; } -let oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_2_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$0.$_0528; - var$2 = var$0.$_1185; - var$3 = var$0.$_261; - var$4 = var$0.$_318; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - var$5 = oncias_SemanticCheck$_MODULE$; - var$6 = sc_IterableOnceOps_nonEmpty$(oncias_SemanticExpressionCheck$_colonConjunctions$1(var$2, var$1)) && var$1.$containsGpmSpecificLabelExpression() ? 1 : 0; - var$7 = new oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_200_0; - var$7.$_098 = var$1; - var$7.$_141 = var$3; - var$7.$_220 = var$2; - var$7.$_310 = var$4; - return oncias_SemanticCheck$_when(var$5, var$6, var$7); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15__init_ = (var$0, var$1) => { + var$0.$_01112 = var$1; }, -oncil_SolvableLabelExpression$ = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$_MODULE$ = null, -oncil_SolvableLabelExpression$_$callClinit = () => { - oncil_SolvableLabelExpression$_$callClinit = $rt_eraseClinit(oncil_SolvableLabelExpression$); - oncil_SolvableLabelExpression$__clinit_(); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15__init_0 = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15__init_(var_1, var_0); + return var_1; }, -oncil_SolvableLabelExpression$__clinit_ = () => { +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15_apply = var$0 => { let var$1; - var$1 = new oncil_SolvableLabelExpression$; - oncil_SolvableLabelExpression$_$callClinit(); - oncil_SolvableLabelExpression$_MODULE$ = var$1; + var$1 = var$0.$_01112; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_90_0, var$1)); +}; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16() { + jl_Object.call(this); + this.$_012 = null; +} +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16__init_0 = (var$0, var$1) => { + var$0.$_012 = var$1; }, -oncil_SolvableLabelExpression$_extractLabelExpressionRec = ($this, $labelExpression) => { - let $label, $conjointExpressions, $lhs, $rhs, var$6, $not, $disjointExpressions; - if ($labelExpression instanceof oncil_LabelExpression$Wildcard) { - suc_TailCalls$_$callClinit(); - $labelExpression = suc_TailCalls$_MODULE$; - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return suc_TailCalls$_done($labelExpression, oncil_SolvableLabelExpression$_build($this, sci_Set$EmptySet$_MODULE$, new oncil_SolvableLabelExpression$$wildcard$lambda$_4_0)); - } - if ($labelExpression instanceof oncil_LabelExpression$DynamicLeaf) { - suc_TailCalls$_$callClinit(); - $labelExpression = suc_TailCalls$_MODULE$; - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return suc_TailCalls$_done($labelExpression, oncil_SolvableLabelExpression$_build($this, sci_Set$EmptySet$_MODULE$, new oncil_SolvableLabelExpression$$dynamic$lambda$_5_0)); - } - if ($labelExpression instanceof oncil_LabelExpression$Leaf) { - $label = $labelExpression.$name13; - suc_TailCalls$_$callClinit(); - $labelExpression = suc_TailCalls$_MODULE$; - $conjointExpressions = $label.$name(); - s_Predef$_$callClinit(); - $lhs = s_Predef$_Set(s_Predef$_MODULE$); - $rhs = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(jl_String, 1); - var$6.data[0] = $conjointExpressions; - $rhs = $lhs.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$6)); - $lhs = new oncil_SolvableLabelExpression$$label$lambda$_6_0; - $lhs.$_01144 = $conjointExpressions; - return suc_TailCalls$_done($labelExpression, oncil_SolvableLabelExpression$_build($this, $rhs, $lhs)); - } - if ($labelExpression instanceof oncil_LabelExpression$Negation) { - $not = $labelExpression.$e; - if ($not !== null) { - suc_TailCalls$_$callClinit(); - $labelExpression = suc_TailCalls$_MODULE$; - $conjointExpressions = new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0; - $conjointExpressions.$_0327 = $not; - return suc_TailCalls$TailRec_map(suc_TailCalls$_tailcall($labelExpression, $conjointExpressions), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1); - } - } - if ($labelExpression instanceof oncil_LabelExpression$ColonConjunction) { - $conjointExpressions = $labelExpression; - $lhs = $conjointExpressions.$lhs2; - $rhs = $conjointExpressions.$rhs2; - if ($lhs !== null && $rhs !== null) { - onciut_TailCallsUtil$_$callClinit(); - return onciut_TailCallsUtil$_map2(onciut_TailCallsUtil$_MODULE$, oncil_SolvableLabelExpression$_extractLabelExpressionRec($this, $lhs), oncil_SolvableLabelExpression$_extractLabelExpressionRec($this, $rhs), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2); - } - } - if ($labelExpression instanceof oncil_LabelExpression$Conjunctions) { - $conjointExpressions = $labelExpression.$children4; - if ($conjointExpressions !== null) { - onciut_TailCallsUtil$_$callClinit(); - return suc_TailCalls$TailRec_map(onciut_TailCallsUtil$_traverse(onciut_TailCallsUtil$_MODULE$, $conjointExpressions.$toList(), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4); - } - } - if ($labelExpression instanceof oncil_LabelExpression$ColonDisjunction) { - $conjointExpressions = $labelExpression; - $lhs = $conjointExpressions.$lhs3; - $rhs = $conjointExpressions.$rhs3; - if ($lhs !== null && $rhs !== null) { - onciut_TailCallsUtil$_$callClinit(); - return onciut_TailCallsUtil$_map2(onciut_TailCallsUtil$_MODULE$, oncil_SolvableLabelExpression$_extractLabelExpressionRec($this, $lhs), oncil_SolvableLabelExpression$_extractLabelExpressionRec($this, $rhs), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5); - } - } - if ($labelExpression instanceof oncil_LabelExpression$Disjunctions) { - $disjointExpressions = $labelExpression.$children3; - if ($disjointExpressions !== null) { - onciut_TailCallsUtil$_$callClinit(); - return suc_TailCalls$TailRec_map(onciut_TailCallsUtil$_traverse(onciut_TailCallsUtil$_MODULE$, $disjointExpressions.$toList(), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7); - } - } - $rt_throw(s_MatchError__init_($labelExpression)); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16__init_0(var_1, var_0); + return var_1; }, -oncil_SolvableLabelExpression$_build = ($this, $labels, $matches) => { - let var$3; - var$3 = new oncil_SolvableLabelExpression; - var$3.$allLabels = $labels; - var$3.$matches4 = $matches; - return var$3; +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_012; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = oncias_SemanticFunctionCheck$_MODULE$; + oncief_ToString$_$callClinit(); + return oncias_SemanticFunctionCheck$_checkToSpecifiedTypeOfArgument(var$2, var$1, oncief_ToString$_validInputTypes); }; -function oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_128_0() { - let a = this; jl_Object.call(a); - a.$_0393 = null; - a.$_1144 = null; +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17() { + jl_Object.call(this); + this.$_0686 = null; } -let oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_128_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_0393; - var$2 = var$0.$_1144; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = new onciu_UnsatisfiableRelationshipTypeExpression; - var$5 = var$1.$position(); - var$1 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$2, var$1); - var$4.$position71 = var$5; - var$4.$labelExpression12 = var$1; - return oncias_SemanticAnalysisTooling_warn$(var$3, var$4); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17__init_ = (var$0, var$1) => { + var$0.$_0686 = var$1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17__init_0 = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17__init_(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17_apply = var$0 => { + let var$1; + var$1 = var$0.$_0686; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_93_0, var$1)); }; -function oavrm_DoubleKeyMap() { +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18() { jl_Object.call(this); - this.$data7 = null; + this.$_0130 = null; } -let oavrm_DoubleKeyMap_put = ($this, $k1, $k2, $v) => { - let $data2, $prev; - $data2 = ju_LinkedHashMap_get($this.$data7, $k1); - $prev = null; - if ($data2 !== null) - $prev = $data2.$get6($k2); - else { - $data2 = ju_LinkedHashMap__init_(); - ju_LinkedHashMap_put($this.$data7, $k1, $data2); - } - $data2.$put($k2, $v); - return $prev; +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18__init_0 = (var$0, var$1) => { + var$0.$_0130 = var$1; }, -oavrm_DoubleKeyMap_get = ($this, $k1, $k2) => { - let $data2; - $data2 = ju_LinkedHashMap_get($this.$data7, $k1); - if ($data2 !== null) - return $data2.$get6($k2); - return null; +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18__init_ = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18__init_0(var_1, var_0); + return var_1; +}, +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18_apply = var$0 => { + let var$1; + var$1 = var$0.$_0130; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_95_0, var$1)); }; -function oncias_SemanticTable$TypeGetter() { +function oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19() { jl_Object.call(this); - this.$typeInfo = null; + this.$_0782 = null; } -let oncias_SemanticTable$TypeGetter_isAnyOf = ($this, $cypherTypes) => { - let var$2; - var$2 = new oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0; - var$2.$_0273 = $this; - return sc_IterableOnceOps_exists$($cypherTypes, var$2); -}, -oncias_SemanticTable$typeFor$lambda$_25_0 = $rt_classWithoutFields(), -oncias_SemanticTable$typeFor$lambda$_25_0_apply = (var$0, var$1) => { - return oncias_ExpressionTypeInfo_actual(var$1); +let oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19__init_ = (var$0, var$1) => { + var$0.$_0782 = var$1; }, -oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_0 = $rt_classWithoutFields(), -oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems4.$includeExisting0); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19__init_0 = var_0 => { + let var_1 = new oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19(); + oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19__init_(var_1, var_0); + return var_1; }, -oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_1 = $rt_classWithoutFields(), -oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems4.$includeExisting0); +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19_apply = var$0 => { + let var$1; + var$1 = var$0.$_0782; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_specifyType$(oncias_SemanticFunctionCheck$_MODULE$, new oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_97_0, var$1)); }; -function onciu_UnicodeHelper$$isAllowedUnicode$lambda$_5_0() { +function oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0() { jl_Object.call(this); - this.$_01112 = 0; + this.$_0969 = null; } -let onciu_UnicodeHelper$$isAllowedUnicode$lambda$_5_0_apply = (var$0, var$1) => { +let oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_01112; - onciu_UnicodeHelper$_$callClinit(); - if (!jl_String_contains(var$1, $rt_s(3607))) - var$2 = var$2 != jl_String_charAt(var$1, 0) ? 0 : 1; - else { - var$3 = jl_String_charAt(var$1, 0); - var$4 = jl_String_charAt(var$1, 2); - var$2 = var$2 >= var$3 && var$2 <= var$4 ? 1 : 0; - } - return jl_Boolean_valueOf(var$2); + var$2 = var$0.$_0969; + oncias_SemanticPatternCheck$_$callClinit(); + if (!jl_Object_equals(oncie_Pattern$SemanticContext$Expression$_MODULE$, var$2)) { + var$3 = oncias_package$_MODULE$; + var$4 = oncias_SemanticPatternCheck$_MODULE$; + oncius_package$_$callClinit(); + var$1 = oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticPatternCheck$_implicitVariable(var$4, var$1, oncius_package$_CTNode(oncius_package$_MODULE$))); + } else + var$1 = oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_ensureDefined$(oncias_SemanticPatternCheck$_MODULE$, var$1)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticPatternCheck$_MODULE$, new oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_142_0, var$1)); + return var$1; }; -function oavra_SemanticContext$Predicate() { - let a = this; oavra_SemanticContext.call(a); - a.$ruleIndex2 = 0; - a.$predIndex0 = 0; - a.$isCtxDependent0 = 0; +function oncias_SemanticPatternCheck$$declareVariables$lambda$_65_1() { + jl_Object.call(this); + this.$_0744 = null; } -let oavra_SemanticContext$Predicate_eval = ($this, $parser, $parserCallStack) => { - return 1; -}, -oavra_SemanticContext$Predicate_hashCode = $this => { - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), $this.$ruleIndex2), $this.$predIndex0), !$this.$isCtxDependent0 ? 0 : 1), 3); +let oncias_SemanticPatternCheck$$declareVariables$lambda$_65_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0744; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticPatternCheck$_declareVariables(oncias_SemanticPatternCheck$_MODULE$, var$2, var$1); }, -oavra_SemanticContext$Predicate_equals = ($this, $obj) => { - let $p; - if (!($obj instanceof oavra_SemanticContext$Predicate)) - return 0; - if ($this === $obj) - return 1; - $p = $obj; - return $this.$ruleIndex2 == $p.$ruleIndex2 && $this.$predIndex0 == $p.$predIndex0 && $this.$isCtxDependent0 == $p.$isCtxDependent0 ? 1 : 0; +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_2 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_2_apply = (var$0, var$1, var$2) => { + var$1 = var$1; + var$2 = var$2; + oncias_SemanticPatternCheck$_$callClinit(); + return var$1.$chain(var$2); +}; +function oncias_SemanticPatternCheck$$declareVariables$lambda$_65_3() { + let a = this; jl_Object.call(a); + a.$_0844 = null; + a.$_1284 = null; + a.$_290 = null; + a.$_328 = null; +} +let oncias_SemanticPatternCheck$$declareVariables$lambda$_65_3_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0844; + var$2 = var$0.$_1284; + var$3 = var$0.$_290; + var$4 = var$0.$_328; + oncias_SemanticPatternCheck$_$callClinit(); + var$1 = oncias_SemanticPatternCheck$_declareVariables(oncias_SemanticPatternCheck$_MODULE$, var$1, var$2.$element()); + var$5 = oncias_SemanticPatternCheck$_MODULE$; + if (!(var$2 instanceof oncie_NamedPatternPart)) { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else + var$2 = oncias_SemanticAnalysisTooling_error$(var$5, $rt_s(6678), var$2.$position92); + var$1 = var$1.$chain(var$2); + var$2 = new oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_147_0; + var$2.$_0386 = var$3; + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_ifOkChain$(var$1, var$2), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, var$4)); }, -oavra_SemanticContext$Predicate_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append(var$1, $rt_s(432)); - var$1 = jl_StringBuilder_append0(var$1, $this.$ruleIndex2); - jl_AbstractStringBuilder_append(var$1, $rt_s(91)); - var$1 = jl_StringBuilder_append0(var$1, $this.$predIndex0); - jl_AbstractStringBuilder_append(var$1, $rt_s(7695)); - return jl_AbstractStringBuilder_toString(var$1); +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_4 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_4_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = var$1.$group0; + var$5 = new oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_149_0; + var$5.$_0846 = var$1; + return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_declareVariable$0(var$3, var$4, var$5, s_None$_MODULE$, 0)); }; -function oncie_Expression$TreeAcc() { +function oncias_SemanticPatternCheck$$declareVariables$lambda$_65_5() { let a = this; jl_Object.call(a); - a.$data1 = null; - a.$list0 = null; + a.$_0633 = null; + a.$_1214 = null; + a.$_272 = null; } -let oncie_Expression$TreeAcc_mapData = ($this, $f) => { - return oncie_Expression$TreeAcc_copy($this, $f.$apply2($this.$data1), $this.$list0); +let oncias_SemanticPatternCheck$$declareVariables$lambda$_65_5_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0633; + var$2 = var$0.$_1214; + var$3 = var$0.$_272; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_(var$1)), oncias_SemanticPatternCheck$_declareVariables(oncias_SemanticPatternCheck$_MODULE$, var$2, var$3.$element())), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, var$1)), oncias_SemanticAnalysisTooling_recordCurrentScope$(oncias_SemanticPatternCheck$_MODULE$, + oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_(var$1))); }, -oncie_Expression$TreeAcc_inScope = ($this, $variable) => { - let var$2, var$3; - var$2 = $this.$list0; - var$3 = new oncie_Expression$TreeAcc$inScope$lambda$_4_0; - var$3.$_0137 = $variable; - return sci_List_exists(var$2, var$3); +oncie_Pattern$SemanticContext$Merge$ = $rt_classWithoutFields(), +oncie_Pattern$SemanticContext$Merge$_MODULE$ = null, +oncie_Pattern$SemanticContext$Merge$__clinit_ = () => { + oncie_Pattern$SemanticContext$Merge$_MODULE$ = new oncie_Pattern$SemanticContext$Merge$; }, -oncie_Expression$TreeAcc_pushScope = ($this, $newVariables) => { - let $x$1; - $x$1 = sci_List_$colon$colon($this.$list0, $newVariables); - return oncie_Expression$TreeAcc_copy($this, $this.$data1, $x$1); +oncie_Pattern$SemanticContext$Merge$_name = $this => { + return oncie_Pattern$SemanticContext_name$($this); }, -oncie_Expression$TreeAcc_popScope = $this => { - let $x$1; - $x$1 = $this.$list0.$tail(); - return oncie_Expression$TreeAcc_copy($this, $this.$data1, $x$1); +oncie_Pattern$SemanticContext$Merge$_description = $this => { + return oncie_Pattern$SemanticContext_description$($this); }, -oncie_Expression$TreeAcc_copy = ($this, $data, $list) => { - return oncie_Expression$TreeAcc__init_0($data, $list); +oncie_Pattern$SemanticContext$Merge$_productArity = $this => { + return 0; }, -oncie_Expression$TreeAcc_productPrefix = $this => { - return $rt_s(7696); +oncie_Pattern$SemanticContext$Merge$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncie_Expression$TreeAcc_productArity = $this => { - return 2; +oncie_Pattern$SemanticContext$Merge$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Expression$TreeAcc_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$data1; - case 1: - return $this.$list0; - default: - } +oncie_Pattern$SemanticContext$Merge$_hashCode = $this => { + return 74232856; +}, +oncie_Pattern$SemanticContext$Merge$_toString = $this => { + return $rt_s(5097); +}, +oncie_Pattern$SemanticContext$Create$ = $rt_classWithoutFields(), +oncie_Pattern$SemanticContext$Create$_MODULE$ = null, +oncie_Pattern$SemanticContext$Create$__clinit_ = () => { + oncie_Pattern$SemanticContext$Create$_MODULE$ = new oncie_Pattern$SemanticContext$Create$; +}, +oncie_Pattern$SemanticContext$Create$_name = $this => { + return oncie_Pattern$SemanticContext_name$($this); +}, +oncie_Pattern$SemanticContext$Create$_description = $this => { + return oncie_Pattern$SemanticContext_description$($this); +}, +oncie_Pattern$SemanticContext$Create$_productArity = $this => { + return 0; +}, +oncie_Pattern$SemanticContext$Create$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -oncie_Expression$TreeAcc_productIterator = $this => { +oncie_Pattern$SemanticContext$Create$_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncie_Expression$TreeAcc_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncie_Pattern$SemanticContext$Create$_hashCode = $this => { + return 2026540316; }, -oncie_Expression$TreeAcc_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncie_Pattern$SemanticContext$Create$_toString = $this => { + return $rt_s(5319); +}; +function oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1() { + sr_AbstractPartialFunction.call(this); + this.$x5$1 = null; +} +let oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4, var$5, var$6, var$7, var$8; + if (!($x1 instanceof oncie_QuantifiedPath)) + return s_PartialFunction$$anon$1_apply($default, $x1); + $x1 = $x1; + oncias_SemanticError$_$callClinit(); + var$3 = $this.$x5$1.$name14; + var$4 = $x1.$position42; + $x1 = new oncias_SemanticError; + var$5 = var$4.$offset(); + var$6 = var$4.$line(); + var$7 = var$4.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + var$8 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$5, var$6, var$7), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I23), + var$5, var$6, var$7), ong_GqlParams$StringParam_fun, var$3)))); + $default = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($default); + jl_StringBuilder_append(jl_StringBuilder_append($default, var$3), $rt_s(6679)); + oncias_SemanticError__init_($x1, var$8, jl_AbstractStringBuilder_toString($default), var$4); + return $x1; +}, +oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1_isDefinedAt = ($this, $x1) => { + if (!($x1 instanceof oncie_QuantifiedPath)) + return 0; + return 1; +}; +function oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_98_0() { + jl_Object.call(this); + this.$_01047 = null; +} +let oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_98_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_01047; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticError$_$callClinit(); + var$3 = var$2.$name14; + var$4 = var$2.$position10; + ong_GqlStatusInfoCodes_$callClinit(); + var$2 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$4.$offset(), var$4.$line(), var$4.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N56), + var$4.$offset(), var$4.$line(), var$4.$column()), ong_GqlParams$StringParam_fun, var$3)))); + var$5 = new oncias_SemanticError; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$3), $rt_s(6680)), var$1), $rt_s(6681)); + oncias_SemanticError__init_(var$5, var$2, jl_AbstractStringBuilder_toString(var$6), var$4); + return var$5; +}; +function oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_103_0() { + jl_Object.call(this); + this.$_0477 = null; +} +let oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_103_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_0477; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = var$2.$element2; + if (!(var$3 instanceof oncie_RelationshipChain)) + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + else { + var$4 = var$3.$relationship1; + var$5 = var$4.$variable5; + var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_102_0; + var$3.$_0305 = var$1; + var$3 = s_Option_flatMap(var$5, var$3); + if (var$3 instanceof s_Some && (oncias_Symbol_references(var$3.$value5)).$size() > 1) { + var$3 = oncias_SemanticCheckResult$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$6 = var$2.$name14; + var$7 = var$4.$position8; + ong_GqlStatusInfoCodes_$callClinit(); + var$2 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$7.$offset(), var$7.$line(), var$7.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N66), + var$7.$offset(), var$7.$line(), var$7.$column()), ong_GqlParams$StringParam_fun, var$6)))); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6682)), var$6), $rt_s(6599)); + oncias_SemanticError__init_(var$4, var$2, jl_AbstractStringBuilder_toString(var$5), var$7); + var$1 = oncias_SemanticCheckResult$_error(var$3, var$1, var$4); + } else + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + } + return var$1; +}, +oncias_checkNoParamMapsWhenMatching$ = $rt_classWithoutFields(), +oncias_checkNoParamMapsWhenMatching$_MODULE$ = null, +oncias_checkNoParamMapsWhenMatching$__clinit_ = () => { + oncias_checkNoParamMapsWhenMatching$_MODULE$ = new oncias_checkNoParamMapsWhenMatching$; +}, +oncias_checkNoParamMapsWhenMatching$_apply = ($this, $properties, $ctx) => { + let $e, var$4, var$5, var$6; + a: { + $e = s_Tuple2__init_($properties, $ctx); + $properties = $e.$_10; + $ctx = $e.$_20; + if ($properties instanceof s_Some) { + $e = $properties.$value5; + if ($rt_isInstance($e, oncie_Parameter)) { + b: { + $properties = $e; + $e = oncie_Pattern$SemanticContext$Match$_MODULE$; + if ($ctx !== null) { + if (jl_Object_equals($ctx, $e)) + break a; + else + break b; + } + if ($e === null) + break a; + } + c: { + $e = oncie_Pattern$SemanticContext$Merge$_MODULE$; + if ($ctx !== null) { + if (!jl_Object_equals($ctx, $e)) + break c; + else + break a; + } + if ($e === null) + break a; + } + } + } + return oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + } + $e = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$4 = oncias_SemanticError$_MODULE$; + $ctx = $ctx.$name(); + var$5 = $properties.$name(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6683)), $ctx), $rt_s(6684)), var$5), $rt_s(6685)); + return oncias_package$_liftSemanticErrorDef($e, oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$6), $properties.$position())); +}, +oncias_checkValidPropertyKeyNamesInPattern$ = $rt_classWithoutFields(), +oncias_checkValidPropertyKeyNamesInPattern$_MODULE$ = null, +oncias_checkValidPropertyKeyNamesInPattern$_$callClinit = () => { + oncias_checkValidPropertyKeyNamesInPattern$_$callClinit = $rt_eraseClinit(oncias_checkValidPropertyKeyNamesInPattern$); + oncias_checkValidPropertyKeyNamesInPattern$__clinit_(); +}, +oncias_checkValidPropertyKeyNamesInPattern$__clinit_ = () => { + let var$1; + var$1 = new oncias_checkValidPropertyKeyNamesInPattern$; + oncias_checkValidPropertyKeyNamesInPattern$_$callClinit(); + oncias_checkValidPropertyKeyNamesInPattern$_MODULE$ = var$1; }, -oncie_Expression$TreeAcc_equals = ($this, $x$1) => { - let var$2, var$3; +oncias_checkValidPropertyKeyNamesInPattern$_apply = ($this, $properties) => { + let $e; + if ($properties instanceof s_Some) { + $e = $properties.$value5; + if ($e instanceof oncie_MapExpression) { + $properties = $e; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(oncias_SemanticPatternCheck$_MODULE$, $properties.$items1.$map(new oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0)); + } + } + return oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); +}; +function oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_80_0() { + let a = this; jl_Object.call(a); + a.$_0548 = null; + a.$_1182 = 0; +} +let oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_80_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; a: { b: { c: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncie_Expression$TreeAcc) ? 0 : 1)) - break b; - $x$1 = $x$1; - if (!sr_BoxesRunTime_equals($this.$data1, $x$1.$data1)) - break b; - var$2 = $this.$list0; - $x$1 = $x$1.$list0; + d: { + var$1 = var$1; + var$2 = var$0.$_0548; + var$3 = var$0.$_1182; + oncias_SemanticPatternCheck$_$callClinit(); + var$4 = var$1.$folder(); + sr_ClassTag$_$callClinit(); + var$5 = onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpressionDynamicLeafExpression))); + var$6 = var$5.$map(new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_0); + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$7 = oncie_Pattern$SemanticContext$Match$_MODULE$; if (var$2 !== null) { - if (!sci_List_equals(var$2, $x$1)) - break b; + if (jl_Object_equals(var$2, var$7)) + break c; else + break d; + } + if (var$7 === null) + break c; + } + var$7 = oncie_Pattern$SemanticContext$Expression$_MODULE$; + if (var$2 !== null) { + if (jl_Object_equals(var$2, var$7)) + break c; + else + break b; + } + if (var$7 !== null) + break b; + } + var$8 = 0; + break a; + } + var$8 = 1; + } + var$2 = new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_1; + var$2.$_0138 = var$5; + var$2.$_148 = var$3; + var$2 = oncias_SemanticCheck$_when(var$4, var$8, var$2); + oncias_SemanticExpressionCheck$_$callClinit(); + var$7 = oncias_SemanticCheck_chain$(var$2.$chain(oncias_SemanticExpressionCheck$_simple1(oncias_SemanticExpressionCheck$_MODULE$, var$6)), oncias_SemanticPatternCheck$_checkValidDynamicLabels(oncias_SemanticPatternCheck$_MODULE$, var$6, var$1.$position())); + var$1 = oncias_SemanticExpressionCheck$_MODULE$; + oncius_package$_$callClinit(); + var$2 = oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); + var$5 = oncius_package$_MODULE$; + var$5 = oncius_TypeSpec_union(var$2, oncius_ListType_covariant(oncius_package$_CTList(var$5, oncius_package$_CTString(var$5)))); + if (!var$3) { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + var$2 = oncias_SemanticExpressionCheck$TypeMismatchContext$_DYNAMIC_TYPE; + } else { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + var$2 = oncias_SemanticExpressionCheck$TypeMismatchContext$_DYNAMIC_LABEL; + } + return oncias_SemanticCheck_chain$(var$7, oncias_SemanticAnalysisTooling_expectType$2(var$1, var$5, var$6, var$2)); +}; +function oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_79_0() { + jl_Object.call(this); + this.$_0382 = null; +} +let oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_79_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0382; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + if (var$1.$containsMatchSpecificLabelExpression()) { + d: { + var$4 = oncie_Pattern$SemanticContext$Match$_MODULE$; + if (var$2 !== null) { + if (jl_Object_equals(var$2, var$4)) + break c; + else + break d; + } + if (var$4 === null) break c; } - if ($x$1 !== null) + var$4 = oncie_Pattern$SemanticContext$Expression$_MODULE$; + if (var$2 !== null) { + if (jl_Object_equals(var$2, var$4)) + break c; + else + break b; + } + if (var$4 !== null) break b; } } - var$3 = 1; + var$5 = 0; break a; } - var$3 = 0; + var$5 = 1; } - return var$3; -}, -oncie_Expression$TreeAcc__init_ = ($this, $data, $list) => { - $this.$data1 = $data; - $this.$list0 = $list; + var$4 = new oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_171_0; + var$4.$_0912 = var$2; + var$4.$_1313 = var$1; + var$3 = oncias_SemanticCheck$_when(var$3, var$5, var$4); + oncias_SemanticExpressionCheck$_$callClinit(); + return var$3.$chain(oncias_SemanticExpressionCheck$_checkLabelExpression(oncias_SemanticExpressionCheck$_MODULE$, s_Some__init_(oncie_NODE_TYPE$_MODULE$), var$1)); +}; +function oncias_SemanticPatternCheck$$checkPredicate$lambda$_78_0() { + jl_Object.call(this); + this.$_0630 = null; +} +let oncias_SemanticPatternCheck$$checkPredicate$lambda$_78_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0630; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = oncie_Pattern$SemanticContext$Match$_MODULE$; + if (var$2 !== null) { + if (jl_Object_equals(var$2, var$4)) + break c; + else + break b; + } + if (var$4 !== null) + break b; + } + var$5 = 0; + break a; + } + var$5 = 1; + } + var$4 = new oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_0; + var$4.$_0645 = var$2; + var$4.$_1219 = var$1; + var$2 = oncias_SemanticCheck$_when(var$3, var$5, var$4); + var$3 = new oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_1; + var$3.$_0285 = var$1; + return var$2.$ifOkChain(var$3); }, -oncie_Expression$TreeAcc__init_0 = (var_0, var_1) => { - let var_2 = new oncie_Expression$TreeAcc(); - oncie_Expression$TreeAcc__init_(var_2, var_0, var_1); - return var_2; +oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_0_apply = (var$0, var$1) => { + return oncias_SemanticPatternCheck$_$anonfun$checkValidJuxtaposition$1(var$1); }, -oncie_Expression$TreeAcc$ = $rt_classWithoutFields(), -oncie_Expression$TreeAcc$_MODULE$ = null, -oncie_Expression$TreeAcc$__clinit_ = () => { - oncie_Expression$TreeAcc$_MODULE$ = new oncie_Expression$TreeAcc$; +oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_1 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_1_apply = (var$0, var$1, var$2) => { + var$1 = var$1; + var$2 = var$2; + oncias_SemanticPatternCheck$_$callClinit(); + return var$1.$chain(var$2); }, -oncie_Expression$TreeAcc$_apply$default$2 = $this => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; -}; -function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$variablesUsedForGrouping$1 = null; - a.$nonNestedPropertiesUsedForGrouping$1 = null; -} -let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4, $v; - var$3 = 0; - $default = null; - if ($rt_isInstance($x1, oncie_ScopeExpression)) { +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1_applyOrElse = ($this, $x1, $default) => { + let var$3; + if ($x1 instanceof oncie_QuantifiedPath) { $x1 = $x1; - $default = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0; - $default.$_0427 = $x1; + $default = new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0; + $default.$_0555 = $x1; return $default; } - if ($x1 !== null) { - oncie_IsAggregate$_$callClinit(); - if (!s_Option_isEmpty(oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x1))) - return new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1; + if ($x1 instanceof oncie_ShortestPathsPatternPart) { + $x1 = $x1; + $default = new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1; + $default.$_01077 = $x1; + return $default; } - if ($x1 instanceof oncie_LogicalVariable) { - var$4 = $x1; - if (!$this.$variablesUsedForGrouping$1.$contains(var$4)) { - onciu_AnonymousVariableNameGenerator$_$callClinit(); - if (onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, var$4.$name4)) { - $x1 = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2; - $x1.$_0259 = var$4; - return $x1; - } + if ($x1 instanceof oncie_RelationshipPattern) { + var$3 = $x1; + if (var$3.$length3 instanceof s_Some) { + $x1 = new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2; + $x1.$_0439 = var$3; + return $x1; } } - if ($x1 instanceof oncie_LogicalProperty) { - var$3 = 1; - $default = $x1; - if ($this.$nonNestedPropertiesUsedForGrouping$1.$contains($default)) - return new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3; - } - if (var$3) { - oncie_LogicalProperty$_$callClinit(); - $x1 = oncie_LogicalProperty$_unapply(oncie_LogicalProperty$_MODULE$, $default); - if (!s_Option_isEmpty($x1)) { - $v = $x1.$value5.$_1(); - if ($v instanceof oncie_LogicalVariable) { - $x1 = $v; - $v = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4; - $v.$_0221 = $this; - $v.$_185 = $x1; - $v.$_236 = $default; - return $v; - } + if (!$rt_isInstance($x1, oncia_FullSubqueryExpression)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return new oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3; +}; +function oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_110_0() { + let a = this; jl_Object.call(a); + a.$_0227 = null; + a.$_185 = null; +} +let oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_110_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + a: { + var$1 = var$0.$_0227; + var$2 = var$0.$_185; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = onciap_DefaultPatternStringifier_apply4((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, var$1); + var$4 = onciu_Foldable_folder$(var$2); + sr_ClassTag$_$callClinit(); + switch ((onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_NodePattern)))).$length()) { + case 1: + break; + default: + var$2 = $rt_s(6198); + break a; } + var$2 = $rt_s(6686); } - return s_PartialFunction$_fallback_fn; + var$5 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6687)), var$3), $rt_s(6688)), var$2), 46); + return oncias_SemanticAnalysisTooling_error$(var$5, sc_StringOps$_stripMargin$extension(var$4, jl_AbstractStringBuilder_toString(var$6)), var$1.$position42); +}; +function oncias_SemanticPatternCheck$$checkQuantifier$lambda$_61_0() { + jl_Object.call(this); + this.$_0699 = null; +} +let oncias_SemanticPatternCheck$$checkQuantifier$lambda$_61_0_apply = var$0 => { + return oncias_SemanticPatternCheck$_$anonfun$checkQuantifier$1(var$0.$_0699); +}; +function oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal() { + jl_Object.call(this); + this.$txt = null; +} +let oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_0 = ($this, $txt) => { + $this.$txt = $txt; }, -oncius_TypeRange$_init_$lambda$_43_0 = $rt_classWithoutFields(), -oncius_TypeSpec$$minimalRanges$lambda$_12_0 = $rt_classWithoutFields(), -oncius_TypeSpec$$minimalRanges$lambda$_12_0_apply = (var$0, var$1, var$2) => { +oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_ = var_0 => { + let var_1 = new oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal(); + oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_0(var_1, var_0); + return var_1; +}, +oncie_ReduceExpression$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), +oncie_ReduceExpression$$_clinit_$lambda$_0_0_apply = (var$0, var$1, var$2) => { let var$3; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6689)), var$1), $rt_s(6690)), var$2); + return jl_AbstractStringBuilder_toString(var$3); +}, +onciuh_fixedPoint$ = $rt_classWithoutFields(), +onciuh_fixedPoint$_MODULE$ = null, +onciuh_fixedPoint$__clinit_ = () => { + onciuh_fixedPoint$_MODULE$ = new onciuh_fixedPoint$; +}, +onciuh_NameDeduplicator$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(); +function oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0() { + jl_Object.call(this); + this.$_0638 = null; +} +let oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$2; - oncius_TypeSpec$_$callClinit(); - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - var$3 = new oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0; - var$3.$_095 = var$2; - if (!sc_IterableOnceOps_exists$(var$1, var$3)) { - var$3 = new oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1; - var$3.$_01053 = var$2; - var$1 = (sc_StrictOptimizedIterableOps_filterNot$(var$1, var$3)).$$colon$plus(var$2); - } - return var$1; + return jl_Boolean_valueOf(oncia_CreateConstraint_anyPropertyValueType$1(var$0.$_0638, var$1)); }, -oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - oncia_SubqueryCall$_$callClinit(); - return !oncia_SubqueryCall$_isTransactionalSubquery(oncia_SubqueryCall$_MODULE$, $x) ? s_PartialFunction$_fallback_fn : jl_Boolean_valueOf(1); +oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1 = $rt_classWithoutFields(), +oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$1)); +}, +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0 = $rt_classWithoutFields(), +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncius_ListType); +}, +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1 = $rt_classWithoutFields(), +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncius_ListType); +}, +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2 = $rt_classWithoutFields(), +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2_apply = (var$0, var$1) => { + return oncia_CreateConstraint_additionalErrorInfo$1(var$1); +}, +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3 = $rt_classWithoutFields(), +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + return jl_Boolean_valueOf(sc_StringOps$_nonEmpty$extension(var$2, var$1)); +}, +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4 = $rt_classWithoutFields(), +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4_apply = var$0 => { + return $rt_s(4); +}, +oncia_PrivilegeCommand$stringifyExpression$1$lambda$_82_0 = $rt_classWithoutFields(), +oncia_PrivilegeCommand$stringifyExpression$1$lambda$_82_0_apply = (var$0, var$1) => { + return var$1.$asCanonicalStringVal(); }; -function oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_70_0() { - jl_Object.call(this); - this.$_0933 = null; +function oncias_SemanticAnalysisTooling$expectType$lambda$_25_0() { + let a = this; jl_Object.call(a); + a.$_0590 = null; + a.$_1199 = null; + a.$_265 = null; } -let oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_70_0_apply = (var$0, var$1) => { +let oncias_SemanticAnalysisTooling$expectType$lambda$_25_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0933; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = new onciu_RepeatedRelationshipReference; - var$5 = var$1.$position4; - var$1 = var$1.$name4; - var$2 = oncias_SemanticPatternCheck$_extractPattern(var$3, var$2); - var$4.$position58 = var$5; - var$4.$relName2 = var$1; - var$4.$pattern17 = var$2; - return oncias_SemanticAnalysisTooling_warn$(var$3, var$4); + var$2 = var$0.$_0590; + var$3 = var$0.$_1199; + var$4 = var$0.$_265; + if (!(var$3 instanceof oncie_LogicalVariable)) { + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + var$1 = var$2.$expectType0(var$1, var$4, var$3, oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY(oncias_SemanticExpressionCheck$TypeMismatchContext$_MODULE$), var$2.$expectType$default$5()); + } else { + var$5 = var$3; + var$1 = var$2.$expectType0(var$1, var$4, var$3, oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_(ong_GqlParams$StringParam_process(ong_GqlParams$StringParam_ident, var$5.$name4)), var$2.$expectType$default$5()); + } + return var$1; }; -function oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_71_0() { - jl_Object.call(this); - this.$_0509 = null; +function oncias_SemanticAnalysisTooling$expectType$lambda$_13_0() { + let a = this; jl_Object.call(a); + a.$_0927 = null; + a.$_1319 = null; + a.$_2108 = null; } -let oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_71_0_apply = (var$0, var$1) => { +let oncias_SemanticAnalysisTooling$expectType$lambda$_13_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0509; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = new onciu_RepeatedVarLengthRelationshipReference; - var$5 = var$1.$position4; - var$1 = var$1.$name4; - var$2 = oncias_SemanticPatternCheck$_extractPattern(var$3, var$2); - var$4.$position82 = var$5; - var$4.$relName1 = var$1; - var$4.$pattern14 = var$2; - return oncias_SemanticAnalysisTooling_warn$(var$3, var$4); -}, -oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_0_apply = (var$0, var$1) => { - let var$2; + var$2 = var$0.$_0927; + var$3 = var$0.$_1319; + var$4 = var$0.$_2108; + var$5 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_105_0; + var$5.$_0915 = var$3; + var$5.$_1315 = var$1; + oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit(); + return oncias_SemanticAnalysisTooling_expectType$0(var$2, var$1, var$5, var$4, oncias_SemanticExpressionCheck$TypeMismatchContext$_EMPTY(oncias_SemanticExpressionCheck$TypeMismatchContext$_MODULE$), oncias_SemanticAnalysisTooling_expectType$default$5$(var$2)); +}; +function oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0() { + let a = this; jl_Object.call(a); + a.$_0271 = null; + a.$_1102 = null; + a.$_235 = null; +} +let oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_0271; + var$3 = var$0.$_1102; + var$4 = var$0.$_235; + var$5 = new oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_102_0; + var$5.$_01121 = var$3; + var$5.$_1382 = var$1; + return oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0_apply(var$2.$specifyType0(var$5, var$4), var$1); +}; +function oncias_SemanticAnalysisTooling$checkTypes$lambda$_33_0() { + let a = this; jl_Object.call(a); + a.$_035 = null; + a.$_117 = null; + a.$_26 = null; +} +let oncias_SemanticAnalysisTooling$checkTypes$lambda$_33_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - if (var$1 instanceof oncie_LabelName) { - var$2 = var$1.$name19; - var$1 = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, var$2); - } else if (var$1 instanceof oncie_RelTypeName) { - var$2 = var$1.$name22; - var$1 = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, var$2); - } else if (!(var$1 instanceof oncie_LabelOrRelTypeName)) - var$1 = s_None$_MODULE$; + var$2 = var$0.$_035; + var$3 = var$0.$_117; + var$4 = var$0.$_26; + var$5 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_0; + var$5.$_0907 = var$4; + var$5 = var$3.$filter1(var$5); + var$6 = oncie_Expression_arguments(var$4); + var$7 = s_Tuple3__init_(var$5, jl_Integer_valueOf(0), oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1)); + var$1 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_1; + var$1.$_0309 = var$2; + var$1.$_1113 = var$4; + var$1 = var$6.$foldLeft(var$7, var$1); + if (var$1 !== null) { + var$3 = var$1.$_11; + var$8 = sr_BoxesRunTime_unboxToInt(var$1.$_21); + var$5 = var$1.$_30; + if (var$3 !== null) { + a: { + var$1 = s_Tuple3__init_(var$3, jl_Integer_valueOf(var$8), var$5); + var$3 = var$1.$_11; + sr_BoxesRunTime_unboxToInt(var$1.$_21); + var$1 = var$1.$_30; + if (var$3 !== null) { + s_package$_$callClinit(); + s_package$_Seq(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$3); + if (!var$3.$lengthCompare(0)) { + oncius_TypeSpec$_$callClinit(); + var$5 = oncius_TypeSpec$_all(oncius_TypeSpec$_MODULE$); + break a; + } + } + oncius_TypeSpec$_$callClinit(); + var$5 = var$3.$foldLeft(oncius_TypeSpec$_none(oncius_TypeSpec$_MODULE$), new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_3); + } + var$3 = new oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_2; + var$3.$_0741 = var$5; + var$2 = oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0_apply(var$2.$specifyType0(var$3, var$4), var$1.$state); + if (!(var$2 instanceof su_Left)) { + if (!(var$2 instanceof su_Right)) + $rt_throw(s_MatchError__init_(var$2)); + var$4 = oncias_SemanticCheckResult__init_(var$2.$value7, var$1.$errors0); + } else { + var$2 = var$2.$value6; + var$4 = oncias_SemanticCheckResult__init_(var$1.$state, var$1.$errors0.$appended(var$2)); + } + return var$4; + } + } + $rt_throw(s_MatchError__init_(var$1)); +}; +function oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0() { + let a = this; jl_Object.call(a); + a.$_033 = null; + a.$_116 = null; +} +let oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_033; + var$3 = var$0.$_116.$apply4(); + if (var$2 instanceof oncie_Variable) + var$1 = oncias_SemanticState_implicitVariable(var$1, var$2, var$3); else { - var$2 = var$1.$name16; - var$1 = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, var$2); + s_package$_$callClinit(); + var$4 = s_package$_Right(s_package$_MODULE$); + var$5 = var$1.$typeTable0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + var$2 = oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$2); + oncias_ExpressionTypeInfo$_$callClinit(); + var$2 = var$5.$updated0(var$2, oncias_ExpressionTypeInfo$_apply(oncias_ExpressionTypeInfo$_MODULE$, var$3, s_None$_MODULE$)); + var$1 = su_Right$_apply(var$4, oncias_SemanticState_copy(var$1, var$1.$currentScope, var$2, var$1.$recordedScopes0, var$1.$notifications, var$1.$features, var$1.$declareVariablesToSuppressDuplicateErrors, var$1.$semanticCheckHasRunOnce, var$1.$targetGraph, var$1.$workingGraph)); } return var$1; }; -function oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_1() { - jl_Object.call(this); - this.$_086 = null; +function oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_41_0() { + let a = this; jl_Object.call(a); + a.$_0946 = null; + a.$_1325 = null; } -let oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_086; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticError$_$callClinit(); - return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$1, var$2); +let oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_41_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_0946; + var$3 = var$0.$_1325; + oncius_TypeSpec$_$callClinit(); + var$4 = oncius_TypeSpec$_MODULE$; + var$3 = var$3.$iterator0(); + var$5 = new oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_127_0; + var$5.$_0608 = var$2; + var$5.$_1205 = var$1; + return oncius_TypeSpec$_union(var$4, sc_IterableOnceOps_toSeq$(var$3.$map5(var$5))); }; -function oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0() { - jl_Object.call(this); - this.$_01060 = null; +function oncias_SemanticAnalysisTooling$typeSwitch$lambda$_51_0() { + let a = this; jl_Object.call(a); + a.$_0104 = null; + a.$_134 = null; } -let oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0__init_ = (var$0, var$1) => { - var$0.$_01060 = var$1; -}, -oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0__init_0 = var_0 => { - let var_1 = new oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0(); - oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0__init_(var_1, var_0); - return var_1; +let oncias_SemanticAnalysisTooling$typeSwitch$lambda$_51_0_apply = (var$0, var$1) => { + return var$0.$_0104.$apply2(oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$1, var$0.$_134))); }, -oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0_apply = var$0 => { - return var$0.$_01060.$specified; +oncias_SemanticFunctionCheck$$checkMinArgs$lambda$_55_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$checkMinArgs$lambda$_55_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + return var$1.$getSignatureAsString(); }; -function oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1() { - jl_Object.call(this); - this.$_0578 = null; +function oncias_SemanticPatternCheck$$declareVariables$lambda$_68_0() { + let a = this; jl_Object.call(a); + a.$_0527 = null; + a.$_1175 = null; } -let oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1__init_ = (var$0, var$1) => { - var$0.$_0578 = var$1; -}, -oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1__init_0 = var_0 => { - let var_1 = new oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1(); - oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1__init_(var_1, var_0); - return var_1; -}, -oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1_apply = (var$0, var$1) => { - let var$2, var$3; +let oncias_SemanticPatternCheck$$declareVariables$lambda$_68_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0578.$specified; - var$3 = oncius_TypeSpec_intersect(var$2, var$1); - if (!oncius_TypeSpec_nonEmpty(var$3)) - var$3 = oncius_TypeSpec_intersect(oncius_TypeSpec_coercions(var$2), var$1); - return var$3; -}, -suc_TailCalls$TailRec = $rt_classWithoutFields(), -suc_TailCalls$TailRec_map = ($this, $f) => { - let $flatMap_f, $flatMap_a, var$4, var$5; - $flatMap_f = new suc_TailCalls$TailRec$map$lambda$_0_0; - $flatMap_f.$_0674 = $f; - if ($this instanceof suc_TailCalls$Done) { - $flatMap_a = $this.$value21; - $f = new suc_TailCalls$Call; - var$4 = new suc_TailCalls$TailRec$map$lambda$_0_1; - var$4.$_01051 = $flatMap_f; - var$4.$_1358 = $flatMap_a; - suc_TailCalls$Call__init_($f, var$4); - return $f; - } - if ($this instanceof suc_TailCalls$Call) - return suc_TailCalls$Cont__init_0($this, $flatMap_f); - if (!($this instanceof suc_TailCalls$Cont)) - $rt_throw(s_MatchError__init_($this)); - $f = $this; - var$4 = new suc_TailCalls$Cont; - var$5 = $f.$a8; - $flatMap_a = new suc_TailCalls$TailRec$map$lambda$_0_2; - $flatMap_a.$_0500 = $f; - $flatMap_a.$_1176 = $flatMap_f; - suc_TailCalls$Cont__init_(var$4, var$5, $flatMap_a); - return var$4; -}, -suc_TailCalls$TailRec_flatMap = ($this, $f) => { - let $a, var$3, var$4, var$5; - if ($this instanceof suc_TailCalls$Done) { - $a = $this.$value21; - var$3 = new suc_TailCalls$Call; - var$4 = new suc_TailCalls$TailRec$flatMap$lambda$_1_0; - var$4.$_0210 = $f; - var$4.$_180 = $a; - suc_TailCalls$Call__init_(var$3, var$4); - return var$3; + var$2 = var$0.$_0527; + var$3 = var$0.$_1175; + oncias_SemanticPatternCheck$_$callClinit(); + if (s_Option_isEmpty(var$2.$length3)) { + oncius_package$_$callClinit(); + var$2 = oncius_package$_CTRelationship(oncius_package$_MODULE$); + } else { + oncius_package$_$callClinit(); + var$2 = oncius_package$_MODULE$; + var$2 = oncius_package$_CTList(var$2, oncius_package$_CTRelationship(var$2)); } - if ($this instanceof suc_TailCalls$Call) - return suc_TailCalls$Cont__init_0($this, $f); - if (!($this instanceof suc_TailCalls$Cont)) - $rt_throw(s_MatchError__init_($this)); - var$3 = $this; - var$4 = new suc_TailCalls$Cont; - var$5 = var$3.$a8; - $a = new suc_TailCalls$TailRec$flatMap$lambda$_1_1; - $a.$_0879 = var$3; - $a.$_1301 = $f; - suc_TailCalls$Cont__init_(var$4, var$5, $a); - return var$4; -}, -suc_TailCalls$TailRec_$anonfun$flatMap$2 = ($x5$1, $f$2, $x) => { - let $flatMap_this, $flatMap_a; - $flatMap_this = $x5$1.$f0.$apply2($x); - if ($flatMap_this === null) - $rt_throw(null); - if ($flatMap_this instanceof suc_TailCalls$Done) { - $flatMap_a = $flatMap_this.$value0(); - $x5$1 = new suc_TailCalls$Call; - $x = new suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0; - $x.$_0847 = $f$2; - $x.$_1290 = $flatMap_a; - suc_TailCalls$Call__init_($x5$1, $x); - return $x5$1; + if (jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, var$3)) + var$1 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticPatternCheck$_implicitVariable(oncias_SemanticPatternCheck$_MODULE$, var$1, var$2)); + else if (!jl_Object_equals(oncie_Pattern$SemanticContext$Expression$_MODULE$, var$3)) { + var$3 = oncias_package$_MODULE$; + var$4 = oncias_SemanticPatternCheck$_MODULE$; + oncius_package$_$callClinit(); + var$1 = oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$(var$4, var$1, var$2.$invariant())); + } else { + var$3 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_ensureDefined$(oncias_SemanticPatternCheck$_MODULE$, var$1)); + var$4 = oncias_SemanticPatternCheck$_MODULE$; + var$5 = new oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_152_0; + var$5.$_0920 = var$2; + var$1 = oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_expectType$(var$4, var$5, var$1)); } - if ($flatMap_this instanceof suc_TailCalls$Call) - return suc_TailCalls$Cont__init_0($flatMap_this, $f$2); - if (!($flatMap_this instanceof suc_TailCalls$Cont)) - $rt_throw(s_MatchError__init_($flatMap_this)); - $x5$1 = $flatMap_this; - $x = new suc_TailCalls$Cont; - $flatMap_a = $x5$1.$a8; - $flatMap_this = new suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1; - $flatMap_this.$_0257 = $x5$1; - $flatMap_this.$_199 = $f$2; - suc_TailCalls$Cont__init_($x, $flatMap_a, $flatMap_this); - return $x; + return var$1; }; -function oncil_SolvableLabelExpression() { +function oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_121_0() { let a = this; jl_Object.call(a); - a.$allLabels = null; - a.$matches4 = null; + a.$_01088 = null; + a.$_1369 = null; } -let oncil_SolvableLabelExpression_binary = ($this, $rhs, $f) => { - let var$3, var$4, var$5; - oncil_SolvableLabelExpression$_$callClinit(); - var$3 = oncil_SolvableLabelExpression$_MODULE$; - var$4 = $this.$allLabels.$concat1($rhs.$allLabels); - var$5 = new oncil_SolvableLabelExpression$binary$lambda$_15_0; - var$5.$_0729 = $this; - var$5.$_1248 = $f; - var$5.$_280 = $rhs; - return oncil_SolvableLabelExpression$_build(var$3, var$4, var$5); -}, -oncil_SolvableLabelExpression_and = ($this, $rhs) => { - return oncil_SolvableLabelExpression_binary($this, $rhs, new oncil_SolvableLabelExpression$and$lambda$_16_0); -}, -oncil_SolvableLabelExpression_or = ($this, $rhs) => { - return oncil_SolvableLabelExpression_binary($this, $rhs, new oncil_SolvableLabelExpression$or$lambda$_17_0); -}, -oncil_SolvableLabelExpression_productPrefix = $this => { - return $rt_s(7697); -}, -oncil_SolvableLabelExpression_productArity = $this => { - return 2; -}, -oncil_SolvableLabelExpression_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$allLabels; - case 1: - return $this.$matches4; - default: +let oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_121_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_01088; + var$2 = var$0.$_1369; + oncias_SemanticPatternCheck$_$callClinit(); + if (!(jl_Object_equals(oncie_Pattern$SemanticContext$Merge$_MODULE$, var$1) ? 1 : !jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, var$1) ? 0 : 1)) + var$1 = oncias_package$_liftSemanticErrorDefOption(oncias_package$_MODULE$, s_None$_MODULE$); + else { + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$1 = oncie_Pattern$SemanticContext$_name(oncie_Pattern$SemanticContext$_MODULE$, var$1); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6691)), var$1); + var$1 = oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position8); } - return sr_Statics_ioobe($x$1); + return var$1; }, -oncil_SolvableLabelExpression_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + onciu_AnonymousVariableNameGenerator$_$callClinit(); + return jl_Boolean_valueOf(onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, var$1.$name4)); }, -oncil_SolvableLabelExpression_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_1 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + return jl_Boolean_valueOf(var$1.$containsGpmSpecificRelTypeExpression() ? 0 : 1); }, -oncil_SolvableLabelExpression_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_2 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_2_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = var$1.$folder(); + sr_ClassTag$_$callClinit(); + return onciu_Foldable$Folder_treeFindByClass(var$2, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncil_LabelExpression$ColonDisjunction))); +}; +function oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_3() { + let a = this; jl_Object.call(a); + a.$_0716 = null; + a.$_1242 = null; +} +let oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_3_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$1 = var$1; + var$2 = var$0.$_0716; + var$3 = var$0.$_1242; + oncias_SemanticPatternCheck$_$callClinit(); + var$4 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$2, (var$3.$get1()).$replaceColonSyntax()); + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$8 = var$7.data; + oncias_SemanticError$_$callClinit(); + var$8[0] = oncias_SemanticError$_legacyDisjunction(oncias_SemanticError$_MODULE$, var$4, (var$3.$get1()).$containsIs(), 0, var$1.$position32); + return oncias_SemanticCheck$_error(var$5, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); }, -oncil_SolvableLabelExpression_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0 = $rt_classWithoutFields(), +oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_checkValidPropertyKeyNamesInPattern$_$callClinit(); + return var$1.$_1(); +}; +function oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_134_0() { + let a = this; jl_Object.call(a); + a.$_0696 = null; + a.$_1236 = null; +} +let oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_134_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; a: { b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncil_SolvableLabelExpression) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$allLabels; - var$3 = $x$1.$allLabels; + c: { + d: { + var$1 = var$1; + var$2 = var$0.$_0696; + var$3 = var$0.$_1236; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = oncie_Pattern$SemanticContext$Merge$_MODULE$; if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else + if (jl_Object_equals(var$2, var$5)) break c; - } - if (var$3 !== null) - break b; - } - d: { - var$3 = $this.$matches4; - $x$1 = $x$1.$matches4; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break b; else break d; } - if ($x$1 !== null) + if (var$5 === null) + break c; + } + var$5 = oncie_Pattern$SemanticContext$Create$_MODULE$; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, var$5)) break b; + else + break c; } - if (!($this instanceof oncil_SolvableLabelExpression)) + if (var$5 !== null) break b; } - var$4 = 1; - break a; + if (var$1.$containsGpmSpecificRelTypeExpression()) { + var$6 = 1; + break a; + } } - var$4 = 0; + var$6 = 0; } - return var$4; + var$5 = new oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_133_0; + var$5.$_084 = var$2; + var$5.$_129 = var$1; + var$2 = oncias_SemanticCheck$_when(var$4, var$6, var$5); + var$7 = oncil_SolvableLabelExpression$_extractLabelExpressionRec(oncil_SolvableLabelExpression$_MODULE$, var$1); + while (true) { + if (var$7 instanceof suc_TailCalls$Done) { + var$8 = var$7.$value21; + var$6 = ((sc_AbstractIterable_toSet(var$8.$allLabels.$map(new oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0))).$incl(oncil_NodeLabels$SomeUnknownLabels$_MODULE$)).$exists(var$8.$matches4); + var$4 = oncias_SemanticCheck$_MODULE$; + var$6 = !var$6 && !var$1.$containsDynamicLabelOrTypeExpression() ? 1 : 0; + var$5 = new oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_131_0; + var$5.$_0257 = var$1; + var$5.$_197 = var$3; + var$3 = var$2.$chain(oncias_SemanticCheck$_when(var$4, var$6, var$5)); + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticExpressionCheck$_checkLabelExpression(oncias_SemanticExpressionCheck$_MODULE$, s_Some__init_(oncie_RELATIONSHIP_TYPE$_MODULE$), var$1)); + } + if (var$7 instanceof suc_TailCalls$Call) { + var$7 = var$7.$rest.$apply4(); + continue; + } + if (!(var$7 instanceof suc_TailCalls$Cont)) + $rt_throw(s_MatchError__init_(var$7)); + var$4 = var$7; + var$5 = var$4.$a8; + var$9 = var$4.$f0; + if (var$5 instanceof suc_TailCalls$Done) { + var$7 = var$9.$apply2(var$5.$value()); + continue; + } + if (var$5 instanceof suc_TailCalls$Call) { + var$7 = suc_TailCalls$TailRec_flatMap(var$5.$rest.$apply4(), var$9); + continue; + } + if (!(var$5 instanceof suc_TailCalls$Cont)) + $rt_throw(s_MatchError__init_(var$5)); + var$4 = var$5; + var$5 = var$4.$a(); + var$4 = var$4.$f(); + var$8 = new suc_TailCalls$TailRec$result$lambda$_3_0; + var$8.$_0544 = var$4; + var$8.$_1179 = var$9; + if (var$5 === null) + break; + if (var$5 instanceof suc_TailCalls$Done) { + var$4 = var$5.$value(); + var$7 = new suc_TailCalls$Call; + var$5 = new suc_TailCalls$TailRec$result$lambda$_3_1; + var$5.$_0635 = var$8; + var$5.$_1217 = var$4; + suc_TailCalls$Call__init_(var$7, var$5); + } else if (var$5 instanceof suc_TailCalls$Call) + var$7 = suc_TailCalls$Cont__init_0(var$5, var$8); + else { + if (!(var$5 instanceof suc_TailCalls$Cont)) + $rt_throw(s_MatchError__init_(var$5)); + var$7 = new suc_TailCalls$Cont; + var$4 = var$5.$a(); + var$9 = new suc_TailCalls$TailRec$result$lambda$_3_2; + var$9.$_01 = var$5; + var$9.$_15 = var$8; + suc_TailCalls$Cont__init_(var$7, var$4, var$9); + } + } + $rt_throw(null); }; -function oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0() { +function oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_140_0() { let a = this; jl_Object.call(a); - a.$_01092 = null; - a.$_1367 = null; - a.$_2121 = null; - a.$_331 = 0; -} -let oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_01092; - var$3 = var$0.$_1367; - var$4 = var$0.$_2121; - var$5 = var$0.$_331; - return oncias_SemanticState_declareVariable(var$1, var$2, var$3.$apply2(var$1), var$4, var$5, 0); -}; -function oncias_SemanticPatternCheck$$anonfun$2() { - sr_AbstractPartialFunction.call(this); - this.$varLength$1 = 0; + a.$_0167 = null; + a.$_159 = null; } -let oncias_SemanticPatternCheck$$anonfun$2_applyOrElse = ($this, $x1, $default) => { - let var$3, $rel, var$5; - var$3 = 0; - $default = null; - if ($x1 instanceof oncie_RelationshipChain) { - var$3 = 1; - $default = $x1; - $rel = $default.$relationship1; - if ($rel !== null) { - $x1 = $rel.$variable5; - var$5 = $rel.$length3; - if ($x1 instanceof s_Some) { - $rel = $x1.$value5; - if (jl_Object_equals(s_None$_MODULE$, var$5) && !$this.$varLength$1) { - $x1 = new oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0; - $x1.$_0785 = $rel; - return $x1; - } - } - } - } - if (var$3) { - $default = $default.$relationship1; - if ($default !== null) { - $x1 = $default.$variable5; - $default = $default.$length3; - if ($x1 instanceof s_Some) { - $rel = $x1.$value5; - if ($default instanceof s_Some && $this.$varLength$1) { - $x1 = new oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1; - $x1.$_0263 = $rel; - return $x1; +let oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_140_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0167; + var$3 = var$0.$_159; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = oncie_Pattern$SemanticContext$Match$_MODULE$; + if (var$2 !== null) { + if (jl_Object_equals(var$2, var$5)) + break c; + else + break b; } + if (var$5 !== null) + break b; } + var$6 = 0; + break a; } + var$6 = 1; } - return new oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2; -}, -oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - return jl_Boolean_valueOf(var$1.$length() <= 1 ? 0 : 1); -}, -oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_1 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = new oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_162_0; - onciu_InputPosition$_$callClinit(); - return sc_AbstractIterable_minBy(var$1, var$2, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); -}; -function oncias_SemanticAnalysisTooling$implicitVariable$lambda$_67_0() { - let a = this; jl_Object.call(a); - a.$_0302 = null; - a.$_1113 = null; -} -let oncias_SemanticAnalysisTooling$implicitVariable$lambda$_67_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0302; - var$3 = var$0.$_1113; - oncius_package$_$callClinit(); - return oncias_SemanticState_implicitVariable(var$1, var$2, var$3.$invariant()); -}; -function oncias_SemanticAnalysisTooling$whenState$lambda$_33_0() { - let a = this; jl_Object.call(a); - a.$_0842 = null; - a.$_1289 = null; - a.$_293 = null; -} -let oncias_SemanticAnalysisTooling$whenState$lambda$_33_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_0842; - var$3 = var$0.$_1289; - var$4 = var$0.$_293; - return !sr_BoxesRunTime_unboxToBoolean(var$2.$apply2(var$1)) ? var$4.$apply4() : var$3.$apply4(); -}, -onciuh_NameDeduplicator$ = $rt_classWithoutFields(), -onciuh_NameDeduplicator$_MODULE$ = null, -onciuh_NameDeduplicator$_UNNAMED_PATTERN = null, -onciuh_NameDeduplicator$_UNNAMED_PARAMS_PATTERN = null, -onciuh_NameDeduplicator$_DEDUP_PATTERN = null, -onciuh_NameDeduplicator$_deduplicateVariableNames = null, -onciuh_NameDeduplicator$_$callClinit = () => { - onciuh_NameDeduplicator$_$callClinit = $rt_eraseClinit(onciuh_NameDeduplicator$); - onciuh_NameDeduplicator$__clinit_(); -}, -onciuh_NameDeduplicator$__clinit_ = () => { - let var$1, var$2, var$3; - var$1 = new onciuh_NameDeduplicator$; - onciuh_NameDeduplicator$_$callClinit(); - onciuh_NameDeduplicator$_MODULE$ = var$1; - onciu_AnonymousVariableNameGenerator$_$callClinit(); - var$1 = onciu_AnonymousVariableNameGenerator$_generatorName(onciu_AnonymousVariableNameGenerator$_MODULE$); - var$2 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7698)), var$1), $rt_s(7699)); - onciuh_NameDeduplicator$_UNNAMED_PATTERN = sc_StringOps$_r$extension(var$2, jl_AbstractStringBuilder_toString(var$3)); - onciuh_NameDeduplicator$_UNNAMED_PARAMS_PATTERN = sc_StringOps$_r$extension(sc_StringOps$_MODULE$, $rt_s(7700)); - onciuh_NameDeduplicator$_DEDUP_PATTERN = sc_StringOps$_r$extension(sc_StringOps$_MODULE$, $rt_s(7701)); - var$1 = new onciuh_NameDeduplicator$$_clinit_$lambda$_0_0; - var$2 = new onciuh_fixedPoint$$apply$lambda$_1_0; - var$2.$_01191 = var$1; - onciuh_NameDeduplicator$_deduplicateVariableNames = var$2; -}, -suc_TailCalls$ = $rt_classWithoutFields(), -suc_TailCalls$_MODULE$ = null, -suc_TailCalls$_$callClinit = () => { - suc_TailCalls$_$callClinit = $rt_eraseClinit(suc_TailCalls$); - suc_TailCalls$__clinit_(); -}, -suc_TailCalls$__clinit_ = () => { - let var$1; - var$1 = new suc_TailCalls$; - suc_TailCalls$_$callClinit(); - suc_TailCalls$_MODULE$ = var$1; -}, -suc_TailCalls$_tailcall = ($this, $rest) => { - return suc_TailCalls$Call__init_0($rest); -}, -suc_TailCalls$_done = ($this, $result) => { - return suc_TailCalls$Done__init_($result); -}; -function oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0() { - jl_Object.call(this); - this.$_0327 = null; -} -let oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0327; - oncil_SolvableLabelExpression$_$callClinit(); - return oncil_SolvableLabelExpression$_extractLabelExpressionRec(oncil_SolvableLabelExpression$_MODULE$, var$1); + var$5 = new oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_0; + var$5.$_0818 = var$2; + var$5.$_1274 = var$1; + var$2 = oncias_SemanticCheck$_when(var$4, var$6, var$5); + oncias_OptionSemanticChecking$_$callClinit(); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$5 = var$3.$length3; + var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_1; + var$3.$_0274 = var$1; + var$2 = var$2.$chain(oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$5, var$3)); + var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_2; + var$3.$_0368 = var$1; + return oncias_SemanticCheck_ifOkChain$(var$2, var$3); }, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - oncil_SolvableLabelExpression$_$callClinit(); - var$2 = oncil_SolvableLabelExpression$_MODULE$; - var$3 = var$1.$allLabels; - var$4 = new oncil_SolvableLabelExpression$not$lambda$_14_0; - var$4.$_0709 = var$1; - return oncil_SolvableLabelExpression$_build(var$2, var$3, var$4); +oncie_Pattern$SemanticContext$Insert$ = $rt_classWithoutFields(), +oncie_Pattern$SemanticContext$Insert$_MODULE$ = null, +oncie_Pattern$SemanticContext$Insert$__clinit_ = () => { + oncie_Pattern$SemanticContext$Insert$_MODULE$ = new oncie_Pattern$SemanticContext$Insert$; }, -onciut_TailCallsUtil$ = $rt_classWithoutFields(), -onciut_TailCallsUtil$_MODULE$ = null, -onciut_TailCallsUtil$_$callClinit = () => { - onciut_TailCallsUtil$_$callClinit = $rt_eraseClinit(onciut_TailCallsUtil$); - onciut_TailCallsUtil$__clinit_(); +oncie_Pattern$SemanticContext$Insert$_name = $this => { + return oncie_Pattern$SemanticContext_name$($this); }, -onciut_TailCallsUtil$__clinit_ = () => { - let var$1; - var$1 = new onciut_TailCallsUtil$; - onciut_TailCallsUtil$_$callClinit(); - onciut_TailCallsUtil$_MODULE$ = var$1; +oncie_Pattern$SemanticContext$Insert$_description = $this => { + return oncie_Pattern$SemanticContext_description$($this); }, -onciut_TailCallsUtil$_traverse = ($this, $as, $f) => { - let var$3, var$4; - if (sci_List_isEmpty($as)) { - suc_TailCalls$_$callClinit(); - $as = suc_TailCalls$_MODULE$; - sc_Seq$_$callClinit(); - return suc_TailCalls$_done($as, sc_SeqFactory$Delegate_empty(sc_Seq$_MODULE$)); - } - suc_TailCalls$_$callClinit(); - var$3 = suc_TailCalls$_MODULE$; - var$4 = new onciut_TailCallsUtil$$traverse$lambda$_1_0; - var$4.$_0162 = $f; - var$4.$_161 = $as; - var$3 = suc_TailCalls$_tailcall(var$3, var$4); - var$4 = new onciut_TailCallsUtil$$traverse$lambda$_1_1; - var$4.$_0834 = $as; - var$4.$_1285 = $f; - return suc_TailCalls$TailRec_flatMap(var$3, var$4); +oncie_Pattern$SemanticContext$Insert$_productArity = $this => { + return 0; }, -onciut_TailCallsUtil$_map2 = ($this, $recA, $recB, $f) => { - let var$4; - var$4 = new onciut_TailCallsUtil$$map2$lambda$_2_0; - var$4.$_0796 = $recB; - var$4.$_1268 = $f; - return suc_TailCalls$TailRec_flatMap($recA, var$4); +oncie_Pattern$SemanticContext$Insert$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - oncil_SolvableLabelExpression$_$callClinit(); - return oncil_SolvableLabelExpression_and(var$1, var$2); +oncie_Pattern$SemanticContext$Insert$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3_apply = (var$0, var$1) => { - var$1 = var$1; - oncil_SolvableLabelExpression$_$callClinit(); - return oncil_SolvableLabelExpression$_extractLabelExpressionRec(oncil_SolvableLabelExpression$_MODULE$, var$1); +oncie_Pattern$SemanticContext$Insert$_hashCode = $this => { + return (-2099925287); }, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4_apply = (var$0, var$1) => { - var$1 = var$1; - oncil_SolvableLabelExpression$_$callClinit(); - return var$1.$reduceLeft(new oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$5$lambda$_16_0); +oncie_Pattern$SemanticContext$Insert$_toString = $this => { + return $rt_s(5318); }, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - oncil_SolvableLabelExpression$_$callClinit(); - return oncil_SolvableLabelExpression_or(var$1, var$2); +oncie_Pattern$SemanticContext$ = $rt_classWithoutFields(), +oncie_Pattern$SemanticContext$_MODULE$ = null, +oncie_Pattern$SemanticContext$__clinit_ = () => { + oncie_Pattern$SemanticContext$_MODULE$ = new oncie_Pattern$SemanticContext$; }, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6_apply = (var$0, var$1) => { +oncie_Pattern$SemanticContext$_name = ($this, $ctx) => { + if (jl_Object_equals(oncie_Pattern$SemanticContext$Match$_MODULE$, $ctx)) + return $rt_s(4392); + if (jl_Object_equals(oncie_Pattern$SemanticContext$Merge$_MODULE$, $ctx)) + return $rt_s(4393); + if (jl_Object_equals(oncie_Pattern$SemanticContext$Create$_MODULE$, $ctx)) + return $rt_s(4311); + if (jl_Object_equals(oncie_Pattern$SemanticContext$Insert$_MODULE$, $ctx)) + return $rt_s(4372); + if (jl_Object_equals(oncie_Pattern$SemanticContext$Expression$_MODULE$, $ctx)) + return $rt_s(955); + $rt_throw(s_MatchError__init_($ctx)); +}; +function oncias_SemanticAnalysisTooling$expectType$lambda$_17_0() { + let a = this; jl_Object.call(a); + a.$_0185 = null; + a.$_168 = null; + a.$_225 = null; + a.$_310 = null; + a.$_44 = null; +} +let oncias_SemanticAnalysisTooling$expectType$lambda$_17_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; var$1 = var$1; - oncil_SolvableLabelExpression$_$callClinit(); - return oncil_SolvableLabelExpression$_extractLabelExpressionRec(oncil_SolvableLabelExpression$_MODULE$, var$1); -}, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7_apply = (var$0, var$1) => { + var$2 = var$0.$_0185; + var$3 = var$0.$_168; + var$4 = var$0.$_225; + var$5 = var$0.$_310; + var$6 = var$0.$_44; + var$7 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_109_0; + var$7.$_0637 = var$3; + var$7.$_1215 = var$1; + return oncias_SemanticAnalysisTooling_expectType$0(var$2, var$1, var$7, var$4, var$5, var$6); +}; +function oncias_SemanticAnalysisTooling$expectType$lambda$_15_0() { + let a = this; jl_Object.call(a); + a.$_0554 = null; + a.$_1186 = null; +} +let oncias_SemanticAnalysisTooling$expectType$lambda$_15_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - oncil_SolvableLabelExpression$_$callClinit(); - return var$1.$reduceLeft(new oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$9$lambda$_20_0); + var$2 = var$0.$_0554; + var$3 = var$0.$_1186; + var$4 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_107_0; + var$4.$_0776 = var$3; + return var$2.$expectType1(var$4, var$1); }; -function suc_TailCalls$Done() { - suc_TailCalls$TailRec.call(this); - this.$value21 = null; +function oncias_SemanticAnalysisTooling$types$lambda$_95_0() { + jl_Object.call(this); + this.$_0220 = null; } -let suc_TailCalls$Done_productPrefix = $this => { - return $rt_s(7702); -}, -suc_TailCalls$Done_productArity = $this => { - return 1; -}, -suc_TailCalls$Done_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$value21; - default: +let oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply = (var$0, var$1) => { + return oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$1, var$0.$_0220)); +}; +function oncias_SemanticAnalysisTooling$ensureDefined$lambda$_57_0() { + jl_Object.call(this); + this.$_01022 = null; +} +let oncias_SemanticAnalysisTooling$ensureDefined$lambda$_57_0_apply = (var$0, var$1) => { + return oncias_SemanticState_ensureVariableDefined(var$1, var$0.$_01022); +}; +function onciuh_fixedPoint$$apply$lambda$_1_0() { + jl_Object.call(this); + this.$_01171 = null; +} +function oncia_PrivilegeCommand$checkTypesInList$1$lambda$_87_0() { + let a = this; jl_Object.call(a); + a.$_0738 = null; + a.$_1248 = null; +} +let oncia_PrivilegeCommand$checkTypesInList$1$lambda$_87_0_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + b: { + c: { + var$1 = var$1; + var$1 = oncia_PrivilegeCommand_checkScalarExpression$1(var$0.$_0738, var$1, var$0.$_1248); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + if (var$1 !== null) { + if (!oncias_SemanticCheck$Leaf_equals(var$1, var$2)) + break b; + else + break c; + } + if (var$2 !== null) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; } - return sr_Statics_ioobe($x$1); -}, -suc_TailCalls$Done_productIterator = $this => { - return sr_ScalaRunTime$$anon$1__init_($this); -}, -suc_TailCalls$Done_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); -}, -suc_TailCalls$Done__init_0 = ($this, $value) => { - $this.$value21 = $value; -}, -suc_TailCalls$Done__init_ = var_0 => { - let var_1 = new suc_TailCalls$Done(); - suc_TailCalls$Done__init_0(var_1, var_0); - return var_1; + return jl_Boolean_valueOf(var$3); }; -function suc_TailCalls$Call() { - suc_TailCalls$TailRec.call(this); - this.$rest = null; +function oncius_TypeRange() { + let a = this; jl_Object.call(a); + a.$hasDefiniteSize0 = 0; + a.$lower0 = null; + a.$upper0 = null; + a.$bitmap$030 = 0; } -let suc_TailCalls$Call_productPrefix = $this => { - return $rt_s(7703); +let oncius_TypeRange_lower = $this => { + return $this.$lower0; +}, +oncius_TypeRange_upper = $this => { + return $this.$upper0; }, -suc_TailCalls$Call_productArity = $this => { - return 1; +oncius_TypeRange_contains = ($this, $that) => { + let var$2, var$3, var$4, var$5; + a: { + if ($this.$lower0.$isAssignableFrom0($that.$lower0)) { + var$2 = $this.$upper0; + var$3 = new oncius_TypeRange$contains$lambda$_7_0; + var$4 = new oncius_TypeRange$contains$lambda$_7_1; + var$4.$_050 = $that; + if (sr_BoxesRunTime_unboxToBoolean(s_Option_fold(var$2, var$3, var$4))) { + var$5 = 1; + break a; + } + } + var$5 = 0; + } + return var$5; }, -suc_TailCalls$Call_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$rest; - default: +oncius_TypeRange_hasDefiniteSize = $this => { + let var$1, $$je; + if ($this.$bitmap$030) + return $this.$hasDefiniteSize0; + jl_Object_monitorEnterSync($this); + a: { + try { + if ($this.$bitmap$030) + break a; + $this.$hasDefiniteSize0 = !s_Option_isDefined(oncius_TypeRange_upper($this)) && sr_BoxesRunTime_unboxToBoolean(oncius_TypeRange$checkForAny$lambda$_10_0_apply(oncius_TypeRange_checkForAny($this), oncius_TypeRange_lower($this))) ? 0 : 1; + $this.$bitmap$030 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync($this); + $rt_throw(var$1); } - return sr_Statics_ioobe($x$1); + jl_Object_monitorExitSync($this); + return $this.$hasDefiniteSize0; }, -suc_TailCalls$Call_productIterator = $this => { - return sr_ScalaRunTime$$anon$1__init_($this); +oncius_TypeRange_checkForAny = $this => { + let var$1; + var$1 = new oncius_TypeRange$checkForAny$lambda$_10_0; + var$1.$_01129 = $this; + return var$1; }, -suc_TailCalls$Call_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); +oncius_TypeRange_intersect = ($this, $that) => { + let var$2, var$3; + var$2 = $this.$lower0.$greatestLowerBound($that.$lower0); + var$3 = new oncius_TypeRange$intersect$lambda$_12_0; + var$3.$_0303 = $this; + var$3.$_1110 = $that; + return s_Option_flatMap(var$2, var$3); }, -suc_TailCalls$Call_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncius_TypeRange_covariant = $this => { + let $x$1; + $x$1 = s_None$_MODULE$; + return oncius_TypeRange__init_($this.$lower0, $x$1); }, -suc_TailCalls$Call_equals = ($this, $x$1) => { - let var$2; - a: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof suc_TailCalls$Call) ? 0 : 1)) - break a; +oncius_TypeRange_constrain = ($this, $aType) => { + return oncius_TypeRange_intersect($this, oncius_TypeRange__init_($aType, s_None$_MODULE$)); +}, +oncius_TypeRange_leastUpperBounds = ($this, $other) => { + let $newLower, $u2, $u1, $u2_0, var$6, $u1_0, var$8, var$9; + $newLower = $this.$lower0.$leastUpperBound($other.$lower0); + $u2 = s_Tuple2__init_($this.$upper0, $other.$upper0); + $u1 = $u2.$_10; + $u2_0 = $u2.$_20; + var$6 = $u1 instanceof s_Some; + if (var$6) { + $u1_0 = $u1.$value5; + if ($u2_0 instanceof s_Some) { + $u2_0 = $u2_0.$value5; + s_package$_$callClinit(); + $u1 = s_package$_Vector(s_package$_MODULE$); + var$8 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_TypeRange, 1); + var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($u1_0.$leastUpperBound($u2_0))); + return $u1.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$9)); + } + } + if (var$6) { + $u1 = $u1.$value5; + if (jl_Object_equals(s_None$_MODULE$, $u2_0)) { + if (!$u1.$isAssignableFrom0($other.$lower0) && !$other.$lower0.$isAssignableFrom0($u1)) { + s_package$_$callClinit(); + $other = s_package$_Vector(s_package$_MODULE$); + $u2 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_TypeRange, 1); + var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($newLower)); + return $other.$from0(sr_ScalaRunTime$_wrapRefArray($u2, var$9)); + } + s_package$_$callClinit(); + $other = s_package$_Vector(s_package$_MODULE$); + $u2 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_TypeRange, 1); + var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($u1)); + return $other.$from0(sr_ScalaRunTime$_wrapRefArray($u2, var$9)); + } + } + $u1 = $u2.$_10; + $u2_0 = $u2.$_20; + if (jl_Object_equals(s_None$_MODULE$, $u1) && $u2_0 instanceof s_Some) { + $u2 = $u2_0.$value5; + if (!$u2.$isAssignableFrom0($this.$lower0) && !$this.$lower0.$isAssignableFrom0($u2)) { + s_package$_$callClinit(); + $other = s_package$_Vector(s_package$_MODULE$); + $u2 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_TypeRange, 1); + var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($newLower)); + return $other.$from0(sr_ScalaRunTime$_wrapRefArray($u2, var$9)); + } + s_package$_$callClinit(); + $other = s_package$_Vector(s_package$_MODULE$); + $u1 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_TypeRange, 1); + var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($u2)); + return $other.$from0(sr_ScalaRunTime$_wrapRefArray($u1, var$9)); + } + $u1 = $u2.$_10; + $u2_0 = s_Tuple2__2($u2); + if (jl_Object_equals(s_None$_MODULE$, $u1) && jl_Object_equals(s_None$_MODULE$, $u2_0)) { + a: { b: { - $x$1 = $x$1; - var$2 = $this.$rest; - $x$1 = $x$1.$rest; - if (var$2 !== null) { - if (!jl_Object_equals(var$2, $x$1)) + $u2 = oncius_TypeRange_lower($this); + $u1 = oncius_TypeRange_lower($other); + if ($u2 !== null) { + if (!$u2.$equals($u1)) break a; else break b; } - if ($x$1 !== null) + if ($u1 !== null) break a; } - if (!($this instanceof suc_TailCalls$Call)) - break a; + s_package$_$callClinit(); + $other = s_package$_Vector(s_package$_MODULE$); + $u2 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_TypeRange, 1); + var$9.data[0] = oncius_TypeRange__init_($newLower, s_None$_MODULE$); + return sci_Vector$_apply($other, sr_ScalaRunTime$_wrapRefArray($u2, var$9)); } - return 1; + if ((oncius_TypeRange_lower($this)).$isAssignableFrom0(oncius_TypeRange_lower($other))) { + s_package$_$callClinit(); + $u2 = s_package$_Vector(s_package$_MODULE$); + $u1 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_wrapArray(oncius_TypeRange, [oncius_TypeRange__init_($newLower, s_Some__init_(oncius_TypeRange_lower($other))), oncius_TypeRange__init_(oncius_TypeRange_lower($other), s_None$_MODULE$)]); + return sci_Vector$_apply($u2, sr_ScalaRunTime$_wrapRefArray($u1, var$9)); + } + if (!(oncius_TypeRange_lower($other)).$isAssignableFrom0(oncius_TypeRange_lower($this))) { + s_package$_$callClinit(); + $other = s_package$_Vector(s_package$_MODULE$); + $u2 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_createArray(oncius_TypeRange, 1); + var$9.data[0] = oncius_TypeRange__init_($newLower, s_Some__init_($newLower)); + return sci_Vector$_apply($other, sr_ScalaRunTime$_wrapRefArray($u2, var$9)); + } + s_package$_$callClinit(); + $other = s_package$_Vector(s_package$_MODULE$); + $u2 = sr_ScalaRunTime$_MODULE$; + var$9 = $rt_wrapArray(oncius_TypeRange, [oncius_TypeRange__init_($newLower, s_Some__init_(oncius_TypeRange_lower($this))), oncius_TypeRange__init_(oncius_TypeRange_lower($this), s_None$_MODULE$)]); + return sci_Vector$_apply($other, sr_ScalaRunTime$_wrapRefArray($u2, var$9)); } - return 0; + $rt_throw(s_MatchError__init_($u2)); }, -suc_TailCalls$Call__init_ = ($this, $rest) => { - $this.$rest = $rest; +oncius_TypeRange_reparent = ($this, $f) => { + return oncius_TypeRange__init_($f.$apply2($this.$lower0), s_Option_map($this.$upper0, $f)); }, -suc_TailCalls$Call__init_0 = var_0 => { - let var_1 = new suc_TailCalls$Call(); - suc_TailCalls$Call__init_(var_1, var_0); - return var_1; -}; -function suc_TailCalls$Cont() { - let a = this; suc_TailCalls$TailRec.call(a); - a.$a8 = null; - a.$f0 = null; -} -let suc_TailCalls$Cont_productPrefix = $this => { - return $rt_s(7704); +oncius_TypeRange_productPrefix = $this => { + return $rt_s(6692); }, -suc_TailCalls$Cont_productArity = $this => { +oncius_TypeRange_productArity = $this => { return 2; }, -suc_TailCalls$Cont_productElement = ($this, $x$1) => { +oncius_TypeRange_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$a8; + return $this.$lower0; case 1: - return $this.$f0; + return $this.$upper0; default: } return sr_Statics_ioobe($x$1); }, -suc_TailCalls$Cont_productIterator = $this => { - return sr_ScalaRunTime$$anon$1__init_($this); +oncius_TypeRange_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -suc_TailCalls$Cont_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); +oncius_TypeRange_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -suc_TailCalls$Cont_toString = $this => { +oncius_TypeRange_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -suc_TailCalls$Cont_equals = ($this, $x$1) => { - let var$2, var$3; +oncius_TypeRange_equals = ($this, $x$1) => { + let var$2, var$3, var$4; a: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof suc_TailCalls$Cont) ? 0 : 1)) - break a; - b: { - $x$1 = $x$1; - var$2 = $this.$a8; - var$3 = $x$1.$a8; - if (var$2 !== null) { - if (!suc_TailCalls$Call_equals(var$2, var$3)) - break a; - else + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncius_TypeRange) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$lower0; + var$3 = $x$1.$lower0; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) break b; } - if (var$3 !== null) - break a; - } - c: { - var$3 = $this.$f0; - $x$1 = $x$1.$f0; - if (var$3 !== null) { - if (!jl_Object_equals(var$3, $x$1)) - break a; - else - break c; + d: { + var$3 = $this.$upper0; + $x$1 = $x$1.$upper0; + if (var$3 !== null) { + if (!var$3.$equals($x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; } - if ($x$1 !== null) - break a; + if (!($this instanceof oncius_TypeRange)) + break b; } - if (!($this instanceof suc_TailCalls$Cont)) - break a; + var$4 = 1; + break a; } - return 1; + var$4 = 0; } - return 0; + return var$4; }, -suc_TailCalls$Cont__init_ = ($this, $a, $f) => { - $this.$a8 = $a; - $this.$f0 = $f; +oncius_TypeRange__init_0 = ($this, $lower, $upper) => { + $this.$lower0 = $lower; + $this.$upper0 = $upper; + s_Predef$_$callClinit(); + if (!s_Option_isEmpty($upper) && !$lower.$isAssignableFrom0($upper.$get1()) ? 0 : 1) + return; + $upper = new jl_AssertionError; + $lower = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0($lower, 18); + jl_AbstractStringBuilder_append($lower, $rt_s(3672)); + jl_AssertionError__init_0($upper, jl_AbstractStringBuilder_toString(jl_StringBuilder_append($lower, $rt_s(6693)))); + $rt_throw($upper); }, -suc_TailCalls$Cont__init_0 = (var_0, var_1) => { - let var_2 = new suc_TailCalls$Cont(); - suc_TailCalls$Cont__init_(var_2, var_0, var_1); +oncius_TypeRange__init_ = (var_0, var_1) => { + let var_2 = new oncius_TypeRange(); + oncius_TypeRange__init_0(var_2, var_0, var_1); return var_2; -}; -function suc_TailCalls$TailRec$result$lambda$_3_0() { +}, +oncias_SemanticFunctionCheck$$checkMaxArgs$lambda$_54_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$checkMaxArgs$lambda$_54_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + return var$1.$getSignatureAsString(); +}, +oncias_SemanticPatternCheck$$anonfun$4 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncias_SemanticPatternCheck$$anonfun$4_applyOrElse = ($this, $x, $default) => { + $x = $x; + oncias_SemanticPatternCheck$_$callClinit(); + return !s_Option_isDefined(oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, $x.$name5)) ? $default.$apply2($x) : s_Tuple2__init_((oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, $x.$name5)).$get1(), $x.$position30); +}, +oncius_TypeRange$_init_$lambda$_43_0 = $rt_classWithoutFields(); +function jur_Matcher$1() { let a = this; jl_Object.call(a); - a.$_0563 = null; - a.$_1192 = null; + a.$grN = 0; + a.$val$gr = 0; + a.$this$08 = null; } -let suc_TailCalls$TailRec$result$lambda$_3_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0563; - var$3 = var$0.$_1192; - var$2 = var$2.$apply2(var$1); - if (var$2 === null) - $rt_throw(null); - if (var$2 instanceof suc_TailCalls$Done) { - var$2 = var$2.$value0(); - var$1 = new suc_TailCalls$Call; - var$4 = new suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0; - var$4.$_0700 = var$3; - var$4.$_1243 = var$2; - suc_TailCalls$Call__init_(var$1, var$4); - } else if (var$2 instanceof suc_TailCalls$Call) - var$1 = suc_TailCalls$Cont__init_0(var$2, var$3); - else { - if (!(var$2 instanceof suc_TailCalls$Cont)) - $rt_throw(s_MatchError__init_(var$2)); - var$1 = new suc_TailCalls$Cont; - var$4 = var$2.$a(); - var$5 = new suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1; - var$5.$_0462 = var$2; - var$5.$_1162 = var$3; - suc_TailCalls$Cont__init_(var$1, var$4, var$5); - } - return var$1; +let jur_Matcher$1__init_ = ($this, $this$0, var$2) => { + $this.$this$08 = $this$0; + $this.$val$gr = var$2; + $this.$grN = var$2; +}, +jur_Matcher$1__init_0 = (var_0, var_1) => { + let var_2 = new jur_Matcher$1(); + jur_Matcher$1__init_(var_2, var_0, var_1); + return var_2; +}, +jur_Matcher$1_toString = $this => { + return jur_Matcher_group($this.$this$08, $this.$grN); }; -function suc_TailCalls$TailRec$result$lambda$_3_1() { - let a = this; jl_Object.call(a); - a.$_0645 = null; - a.$_1224 = null; +function oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_75_0() { + jl_Object.call(this); + this.$_0241 = null; } -let suc_TailCalls$TailRec$result$lambda$_3_1_apply = var$0 => { - return var$0.$_0645.$apply2(var$0.$_1224); +let oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_75_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = (oncias_SemanticState_scope(var$1, var$0.$_0241)).$get1(); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_importValuesFromScope(var$1, var$2, oncias_SemanticState_importValuesFromScope$default$2(var$1))); }; -function suc_TailCalls$TailRec$result$lambda$_3_2() { +function oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0() { let a = this; jl_Object.call(a); - a.$_02 = null; - a.$_15 = null; + a.$_0374 = null; + a.$_1132 = null; } -let suc_TailCalls$TailRec$result$lambda$_3_2_apply = (var$0, var$1) => { - return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_02, var$0.$_15, var$1); -}, -oncil_SolvableLabelExpression$$wildcard$lambda$_4_0 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$wildcard$lambda$_4_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncil_SolvableLabelExpression$_$callClinit(); - if (var$1 instanceof oncil_NodeLabels$KnownLabels) - var$2 = sc_IterableOnceOps_nonEmpty$(var$1.$labelNames); - else { - if (!jl_Object_equals(oncil_NodeLabels$SomeUnknownLabels$_MODULE$, var$1)) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = 1; - } - return jl_Boolean_valueOf(var$2); -}, -oncil_SolvableLabelExpression$$dynamic$lambda$_5_0 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$$dynamic$lambda$_5_0_apply = (var$0, var$1) => { - let var$2; +let oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - oncil_SolvableLabelExpression$_$callClinit(); - if (var$1 instanceof oncil_NodeLabels$KnownLabels) - var$2 = sc_IterableOnceOps_nonEmpty$(var$1.$labelNames); - else { - if (!jl_Object_equals(oncil_NodeLabels$SomeUnknownLabels$_MODULE$, var$1)) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = 1; - } - return jl_Boolean_valueOf(var$2); + var$2 = var$0.$_0374; + var$3 = var$0.$_1132; + oncias_SemanticAnalysisTooling$_$callClinit(); + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$4 = var$1.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + var$5 = (var$4.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$2))).$location.$elem0; + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_importValuesFromScope(oncias_SemanticState_newChildScope(var$1), var$5, var$3)); }; -function oncil_SolvableLabelExpression$$label$lambda$_6_0() { +function oncias_SemanticCheck$$warn$lambda$_4_0() { jl_Object.call(this); - this.$_01144 = null; + this.$_0860 = null; } -let oncil_SolvableLabelExpression$$label$lambda$_6_0_apply = (var$0, var$1) => { +let oncias_SemanticCheck$$warn$lambda$_4_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_01144; - oncil_SolvableLabelExpression$_$callClinit(); - if (var$1 instanceof oncil_NodeLabels$KnownLabels) - var$3 = var$1.$labelNames.$contains(var$2); - else { - if (!jl_Object_equals(oncil_NodeLabels$SomeUnknownLabels$_MODULE$, var$1)) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = 0; - } - return jl_Boolean_valueOf(var$3); -}; -function suc_TailCalls$TailRec$map$lambda$_0_0() { - jl_Object.call(this); - this.$_0674 = null; -} -let suc_TailCalls$TailRec$map$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_0674; - var$3 = new suc_TailCalls$Call; - var$4 = new suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0; - var$4.$_018 = var$2; - var$4.$_111 = var$1; - suc_TailCalls$Call__init_(var$3, var$4); + var$2 = var$0.$_0860; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticState_addNotification(var$1, var$2); + var$3 = new oncias_SemanticCheckResult; + s_package$_$callClinit(); + oncias_SemanticCheckResult__init_0(var$3, var$2, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); return var$3; -}; -function suc_TailCalls$TailRec$map$lambda$_0_1() { - let a = this; jl_Object.call(a); - a.$_01051 = null; - a.$_1358 = null; -} -let suc_TailCalls$TailRec$map$lambda$_0_1_apply = var$0 => { - return var$0.$_01051.$apply2(var$0.$_1358); -}; -function suc_TailCalls$TailRec$map$lambda$_0_2() { - let a = this; jl_Object.call(a); - a.$_0500 = null; - a.$_1176 = null; -} -let suc_TailCalls$TailRec$map$lambda$_0_2_apply = (var$0, var$1) => { - return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_0500, var$0.$_1176, var$1); -}; -function onciut_TailCallsUtil$$map2$lambda$_2_0() { - let a = this; jl_Object.call(a); - a.$_0796 = null; - a.$_1268 = null; -} -let onciut_TailCallsUtil$$map2$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_0796; - var$3 = var$0.$_1268; - onciut_TailCallsUtil$_$callClinit(); - var$4 = new onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0; - var$4.$_0188 = var$3; - var$4.$_173 = var$1; - return suc_TailCalls$TailRec_map(var$2, var$4); -}; -function onciut_TailCallsUtil$$traverse$lambda$_1_0() { - let a = this; jl_Object.call(a); - a.$_0162 = null; - a.$_161 = null; -} -let onciut_TailCallsUtil$$traverse$lambda$_1_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0162; - var$2 = var$0.$_161; - onciut_TailCallsUtil$_$callClinit(); - return var$1.$apply2(var$2.$head()); -}; -function onciut_TailCallsUtil$$traverse$lambda$_1_1() { - let a = this; jl_Object.call(a); - a.$_0834 = null; - a.$_1285 = null; -} -let onciut_TailCallsUtil$$traverse$lambda$_1_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0834; - var$3 = var$0.$_1285; - onciut_TailCallsUtil$_$callClinit(); - suc_TailCalls$_$callClinit(); - var$4 = suc_TailCalls$_MODULE$; - var$5 = new onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0; - var$5.$_0772 = var$2; - var$5.$_1259 = var$3; - var$2 = suc_TailCalls$_tailcall(var$4, var$5); - var$3 = new onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1; - var$3.$_0226 = var$1; - return suc_TailCalls$TailRec_map(var$2, var$3); -}, -sc_Seq$ = $rt_classWithoutFields(sc_SeqFactory$Delegate), -sc_Seq$_MODULE$ = null, -sc_Seq$_$callClinit = () => { - sc_Seq$_$callClinit = $rt_eraseClinit(sc_Seq$); - sc_Seq$__clinit_(); }, -sc_Seq$__clinit_ = () => { - let var$1; - var$1 = new sc_Seq$; - sc_Seq$_$callClinit(); - sci_Seq$_$callClinit(); - sc_SeqFactory$Delegate__init_(var$1, sci_Seq$_MODULE$); - sc_Seq$_MODULE$ = var$1; -}; -function suc_TailCalls$TailRec$flatMap$lambda$_1_0() { - let a = this; jl_Object.call(a); - a.$_0210 = null; - a.$_180 = null; -} -let suc_TailCalls$TailRec$flatMap$lambda$_1_0_apply = var$0 => { - return var$0.$_0210.$apply2(var$0.$_180); -}; -function suc_TailCalls$TailRec$flatMap$lambda$_1_1() { - let a = this; jl_Object.call(a); - a.$_0879 = null; - a.$_1301 = null; -} -let suc_TailCalls$TailRec$flatMap$lambda$_1_1_apply = (var$0, var$1) => { - return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_0879, var$0.$_1301, var$1); +onciu_RewritableJavascript$PROXY$9_148 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_148_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -onciuh_fixedPoint$ = $rt_classWithoutFields(), -onciuh_fixedPoint$_MODULE$ = null, -onciuh_fixedPoint$__clinit_ = () => { - onciuh_fixedPoint$_MODULE$ = new onciuh_fixedPoint$; +onciu_RewritableJavascript$PROXY$9_149 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_149_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -onciuh_NameDeduplicator$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(); -function onciuh_fixedPoint$$apply$lambda$_1_0() { - jl_Object.call(this); - this.$_01191 = null; -} -let onciu_RewritableJavascript$PROXY$7_692 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_692_copyConstructor = (var$1, var$2, var$3) => { - return oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_(var$3.data[0]); +onciu_RewritableJavascript$PROXY$9_150 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_150_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -onciu_RewritableJavascript$PROXY$7_693 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_693_copyConstructor = (var$1, var$2, var$3) => { - return oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_(var$3.data[0]); +onciu_RewritableJavascript$PROXY$9_151 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_151_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncias_SemanticPatternCheck = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_695 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_695_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_AutoExtractedParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +onciu_RewritableJavascript$PROXY$9_152 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_152_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -onciu_RewritableJavascript$PROXY$9_275 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_275_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +onciu_RewritableJavascript$PROXY$9_153 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_153_numParameters = var$1 => { + return (jl_Integer_valueOf(7)).$value4; }, -onciu_RewritableJavascript$PROXY$11_275 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_275_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(1)).$value3; +onciu_RewritableJavascript$PROXY$9_154 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_154_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -jli_SerializedLambda = $rt_classWithoutFields(), -oti_Structure = $rt_classWithoutFields(), -otr_RuntimeObject = $rt_classWithoutFields(oti_Structure), -oncip_CypherErrorStrategy$LabelExpressionRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$ = null, -oncip_CypherErrorStrategy$LabelExpressionRule$_$callClinit = () => { - oncip_CypherErrorStrategy$LabelExpressionRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$LabelExpressionRule$); - oncip_CypherErrorStrategy$LabelExpressionRule$__clinit_(); +onciu_RewritableJavascript$PROXY$9_155 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_155_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; }, -oncip_CypherErrorStrategy$LabelExpressionRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$LabelExpressionRule$; - oncip_CypherErrorStrategy$LabelExpressionRule$_$callClinit(); - oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$9_156 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_156_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncip_CypherErrorStrategy$LabelExpressionRule$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_157 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_157_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncip_CypherErrorStrategy$LabelExpressionRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$9_158 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_158_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncip_CypherErrorStrategy$LabelExpressionRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$9_159 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_159_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncip_CypherErrorStrategy$LabelExpressionRule$_hashCode = $this => { - return (-944871000); +onciu_RewritableJavascript$PROXY$9_160 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_160_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -oncip_CypherErrorStrategy$LabelExpressionRule$_toString = $this => { - return $rt_s(7705); +onciu_RewritableJavascript$PROXY$9_161 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_161_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncip_CypherErrorStrategy$RelationshipPatternRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$ = null, -oncip_CypherErrorStrategy$RelationshipPatternRule$_$callClinit = () => { - oncip_CypherErrorStrategy$RelationshipPatternRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$RelationshipPatternRule$); - oncip_CypherErrorStrategy$RelationshipPatternRule$__clinit_(); +onciu_RewritableJavascript$PROXY$9_162 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_162_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncip_CypherErrorStrategy$RelationshipPatternRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$RelationshipPatternRule$; - oncip_CypherErrorStrategy$RelationshipPatternRule$_$callClinit(); - oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$9_163 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_163_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -oncip_CypherErrorStrategy$RelationshipPatternRule$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_164 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_164_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncip_CypherErrorStrategy$RelationshipPatternRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$9_165 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_165_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncip_CypherErrorStrategy$RelationshipPatternRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$9_166 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_166_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncip_CypherErrorStrategy$RelationshipPatternRule$_hashCode = $this => { - return (-202889932); +onciu_RewritableJavascript$PROXY$9_167 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_167_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; }, -oncip_CypherErrorStrategy$RelationshipPatternRule$_toString = $this => { - return $rt_s(7706); +onciu_RewritableJavascript$PROXY$9_168 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_168_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncip_CypherErrorStrategy$NodePatternRule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$NodePatternRule$_MODULE$ = null, -oncip_CypherErrorStrategy$NodePatternRule$_$callClinit = () => { - oncip_CypherErrorStrategy$NodePatternRule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$NodePatternRule$); - oncip_CypherErrorStrategy$NodePatternRule$__clinit_(); +onciu_RewritableJavascript$PROXY$9_169 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_169_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncip_CypherErrorStrategy$NodePatternRule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$NodePatternRule$; - oncip_CypherErrorStrategy$NodePatternRule$_$callClinit(); - oncip_CypherErrorStrategy$NodePatternRule$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$9_170 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_170_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncip_CypherErrorStrategy$NodePatternRule$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_171 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_171_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncip_CypherErrorStrategy$NodePatternRule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$9_172 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$9_172_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncip_CypherErrorStrategy$NodePatternRule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$9_173 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_173_numParameters = var$1 => { + return (jl_Integer_valueOf(9)).$value4; }, -oncip_CypherErrorStrategy$NodePatternRule$_hashCode = $this => { - return (-2077037782); +onciu_RewritableJavascript$PROXY$9_174 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_174_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; }, -oncip_CypherErrorStrategy$NodePatternRule$_toString = $this => { - return $rt_s(7707); +onciu_RewritableJavascript$PROXY$9_175 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_175_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncip_CypherErrorStrategy$LabelExpression1Rule$ = $rt_classWithoutFields(), -oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$ = null, -oncip_CypherErrorStrategy$LabelExpression1Rule$_$callClinit = () => { - oncip_CypherErrorStrategy$LabelExpression1Rule$_$callClinit = $rt_eraseClinit(oncip_CypherErrorStrategy$LabelExpression1Rule$); - oncip_CypherErrorStrategy$LabelExpression1Rule$__clinit_(); +onciu_RewritableJavascript$PROXY$9_176 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_176_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -oncip_CypherErrorStrategy$LabelExpression1Rule$__clinit_ = () => { - let var$1; - var$1 = new oncip_CypherErrorStrategy$LabelExpression1Rule$; - oncip_CypherErrorStrategy$LabelExpression1Rule$_$callClinit(); - oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$9_177 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_177_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncip_CypherErrorStrategy$LabelExpression1Rule$_productArity = $this => { - return 0; +onciu_RewritableJavascript$PROXY$9_178 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_178_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncip_CypherErrorStrategy$LabelExpression1Rule$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciu_RewritableJavascript$PROXY$9_179 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_179_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncip_CypherErrorStrategy$LabelExpression1Rule$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$9_180 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_180_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncip_CypherErrorStrategy$LabelExpression1Rule$_hashCode = $this => { - return 742260161; +onciu_RewritableJavascript$PROXY$9_181 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_181_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncip_CypherErrorStrategy$LabelExpression1Rule$_toString = $this => { - return $rt_s(7708); -}; -let oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0 = $rt_classWithoutFields(), -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - return oncias_SemanticExpressionCheck$_check(var$2, oncie_Expression$SemanticContext$Results$_MODULE$, var$1); +onciu_RewritableJavascript$PROXY$9_182 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_182_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1 = $rt_classWithoutFields(), -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1_apply = var$0 => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +onciu_RewritableJavascript$PROXY$9_183 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_183_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2 = $rt_classWithoutFields(), -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$2 = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$1.$items2, new oncia_ProcedureResult$semanticCheck$lambda$_14_0); - oncias_OptionSemanticChecking$_$callClinit(); - return var$2.$chain(oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, var$1.$where5, new oncia_ProcedureResult$semanticCheck$lambda$_14_1)); +onciu_RewritableJavascript$PROXY$9_184 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_184_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3 = $rt_classWithoutFields(), -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3_apply = var$0 => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); -}; -function oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4() { - jl_Object.call(this); - this.$_0610 = null; -} -let oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0610; - var$3 = new oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_0; - var$3.$_0868 = var$2; - var$1 = var$1.$map(var$3); - oncias_SemanticCheck$_$callClinit(); - return var$1.$foldLeft(oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$), new oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_1); +onciu_RewritableJavascript$PROXY$9_185 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_185_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5 = $rt_classWithoutFields(), -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5_apply = var$0 => { - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +onciu_RewritableJavascript$PROXY$9_186 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_186_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; }, -oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_0 = $rt_classWithoutFields(), -oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$features.$contains(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$)); -}; -function oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_1() { - jl_Object.call(this); - this.$_0737 = null; -} -let oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_1_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$1 = var$0.$_0737; - var$2 = var$1.$graphReference2; - if (!(var$2 instanceof oncia_GraphFunctionReference)) { - if (!(var$2 instanceof oncia_GraphDirectReference)) - $rt_throw(s_MatchError__init_(var$2)); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - var$2 = var$2; - var$3 = var$2.$functionInvocation1.$function1; - oncief_GraphByName$_$callClinit(); - if (jl_Object_equals(oncief_GraphByName$_MODULE$, var$3)) { - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - oncief_GraphByElementId$_$callClinit(); - if (jl_Object_equals(oncief_GraphByElementId$_MODULE$, var$3)) { - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else { - oncias_SemanticCheck$_$callClinit(); - var$5 = oncias_SemanticCheck$_MODULE$; - var$6 = sr_ScalaRunTime$_MODULE$; - var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); - var$8 = var$7.data; - oncias_SemanticError$_$callClinit(); - var$4 = oncias_SemanticError$_MODULE$; - oncius_package$_$callClinit(); - var$9 = (oncius_package$_CTGraphRef(oncius_package$_MODULE$)).$toString10; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7709)), var$9), $rt_s(7710)); - var$8[0] = oncias_SemanticError$_apply(var$4, jl_AbstractStringBuilder_toString(var$3), var$2.$functionInvocation1.$position7); - var$4 = oncias_SemanticCheck$_error(var$5, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); - } - } - var$10 = var$2.$functionInvocation1.$args0; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$2 = oncias_SemanticCheck_chain$(var$4, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, var$10, new oncia_UseGraph$checkExpressions$lambda$_66_0)); - } - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_UseGraph$checkWorkingGraph$lambda$_64_0; - var$3.$_0310 = var$1; - return var$2.$chain(oncias_SemanticCheck$_fromFunctionWithContext(var$4, var$3)); -}; -function oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_2() { - jl_Object.call(this); - this.$_051 = null; -} -let oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_2_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_051; - var$2 = new oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_0; - var$3 = new oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_1; - var$3.$_0192 = var$1; - var$4 = new oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_2; - var$4.$_0718 = var$1; - return oncias_SemanticAnalysisTooling_whenState$(var$1, var$2, var$3, var$4); +onciu_RewritableJavascript$PROXY$9_187 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_187_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncias_SemanticCheckableIterableOnce$ = $rt_classWithoutFields(), -oncias_SemanticCheckableIterableOnce$_MODULE$ = null, -oncias_SemanticCheckableIterableOnce$__clinit_ = () => { - oncias_SemanticCheckableIterableOnce$_MODULE$ = new oncias_SemanticCheckableIterableOnce$; +onciu_RewritableJavascript$PROXY$9_188 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_188_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -oncias_SemanticCheckableIterableOnce$_semanticCheck$extension = ($this, $$this) => { - let var$2; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$2 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$2, $$this, new oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0); -}; -function oncia_SetClause$clauseSpecificSemanticCheck$lambda$_62_0() { - jl_Object.call(this); - this.$_0443 = null; -} -let oncia_SetClause$clauseSpecificSemanticCheck$lambda$_62_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$0.$_0443; - var$2 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncia_SetClause$$anonfun$13); - var$3 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncia_SetClause$$anonfun$14); - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_MODULE$; - var$2 = var$2 && var$3 ? 1 : 0; - var$5 = new oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_64_0; - var$5.$_0880 = var$1; - return oncias_SemanticCheck$_when(var$4, var$2, var$5); -}; -function oncia_Match$clauseSpecificSemanticCheck$lambda$_64_0() { - jl_Object.call(this); - this.$_0733 = null; -} -let oncia_Match$clauseSpecificSemanticCheck$lambda$_64_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_0733; - var$2 = oncias_SemanticCheckableIterableOnce$_MODULE$; - oncias_package$_$callClinit(); - var$2 = oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(var$2, var$1.$hints); - var$3 = var$1.$hints.$collect(new oncia_Match$$anonfun$5); - s_Predef$_$callClinit(); - var$3 = (sc_StrictOptimizedIterableOps_collect$(sc_AbstractIterable_groupBy(var$3.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$)), new oncia_Match$uniqueHints$lambda$_69_0), new oncia_Match$$anonfun$6)).$toVector(); - var$4 = oncias_package$_MODULE$; - var$5 = new oncia_Match$uniqueHints$lambda$_69_1; - var$5.$_067 = var$3; - var$2 = var$2.$chain(oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5)); - var$3 = new oncia_Match$checkMatchMode$lambda$_71_0; - var$4 = new oncia_Match$checkMatchMode$lambda$_71_1; - var$4.$_0650 = var$1; - var$5 = new oncia_Match$checkMatchMode$lambda$_71_2; - var$5.$_08 = var$1; - var$5.$_17 = var$3; - var$4 = oncias_SemanticAnalysisTooling_whenState$(var$1, var$3, var$4, var$5); - var$3 = new oncia_Match$checkMatchMode$lambda$_71_3; - var$3.$_0693 = var$1; - var$4 = oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck_ifOkChain$(var$4, var$3)), oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, var$1.$where4)); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_Match$checkHints$lambda$_74_0; - var$3.$_0319 = var$1; - var$4 = oncias_SemanticCheck_chain$(var$4, oncias_SemanticCheck$_fromFunctionWithContext(var$2, var$3)); - var$2 = oncias_package$_MODULE$; - var$3 = new oncia_Match$checkForCartesianProducts$lambda$_70_0; - var$3.$_0555 = var$1; - return oncias_SemanticCheck_chain$(var$4, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3)); +onciu_RewritableJavascript$PROXY$9_189 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_189_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncias_SemanticCheckableOption$ = $rt_classWithoutFields(), -oncias_SemanticCheckableOption$_MODULE$ = null, -oncias_SemanticCheckableOption$__clinit_ = () => { - oncias_SemanticCheckableOption$_MODULE$ = new oncias_SemanticCheckableOption$; +onciu_RewritableJavascript$PROXY$9_190 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_190_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticCheckableOption$_semanticCheck$extension = ($this, $$this) => { - return s_Option_fold($$this, new oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0, new oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1); -}; -function oncia_Merge$clauseSpecificSemanticCheck$lambda$_70_0() { - jl_Object.call(this); - this.$_0964 = null; -} -let oncia_Merge$clauseSpecificSemanticCheck$lambda$_70_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0964; - if (var$1.$semanticCheckHasRunOnce) { - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } else - a: { - var$1 = onciu_Foldable$Folder_treeCollect(onciu_Foldable_folder$(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, sci_$colon$colon__init_(var$2.$pattern8, sci_$colon$colon__init_(var$2.$actions, sci_Nil$_MODULE$)))), new oncia_Merge$$anonfun$12); - if (var$1 !== null) { - s_package$_$callClinit(); - var$2 = var$1.$isEmpty() ? s_None$_MODULE$ : s_Some__init_(s_Tuple2__init_(var$1.$head(), var$1.$tail())); - if (!s_Option_isEmpty(var$2)) { - var$1 = (var$2.$get1()).$_1(); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); - var$5 = var$4.data; - oncias_SemanticError$_$callClinit(); - var$5[0] = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7711), var$1.$position()); - var$1 = oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - } - return var$1; +onciu_RewritableJavascript$PROXY$9_191 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_191_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_0 = $rt_classWithoutFields(), -oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_0_apply = var$0 => { - let var$1; - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_TypeSpec_union(oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))), oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$))); -}; -function oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_1() { - jl_Object.call(this); - this.$_0145 = null; -} -let oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_1_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0145; - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - return oncias_package$_liftSemanticErrorDefOption(var$2, oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1.$expression14)); -}; -function oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_2() { - jl_Object.call(this); - this.$_0634 = null; -} -let oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_2_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0634; - return oncius_TypeSpec_unwrapPotentialLists(oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(var$2, var$2.$expression14), var$1)); +onciu_RewritableJavascript$PROXY$9_192 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_192_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_0 = $rt_classWithoutFields(), -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_0_apply = var$0 => { - let var$1; - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_TypeSpec_union(oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))), oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$))); +onciu_RewritableJavascript$PROXY$9_193 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_193_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_1 = $rt_classWithoutFields(), -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_UpdateClause) ? 0 : 1); +onciu_RewritableJavascript$PROXY$9_194 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_194_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_2 = $rt_classWithoutFields(), -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - oncias_SemanticError$_$callClinit(); - var$2 = oncias_SemanticError$_MODULE$; - var$3 = var$1.$name(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7712)), var$3), $rt_s(7713)); - return oncias_SemanticError$_apply(var$2, jl_AbstractStringBuilder_toString(var$4), var$1.$position()); -}; -function oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_3() { - jl_Object.call(this); - this.$_0253 = null; -} -let oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_3_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0253; - var$2 = new oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_88_0; - var$2.$_0701 = var$1; - return oncias_SemanticAnalysisTooling_withScopedState$(var$1, var$2); -}; -function oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_0() { - jl_Object.call(this); - this.$_0390 = null; -} -let oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0390; - return oncias_SemanticAnalysisTooling_error$(var$1, $rt_s(7714), var$1.$position100); -}; -function oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_1() { - jl_Object.call(this); - this.$_0295 = null; -} -let oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_1_apply = var$0 => { - let var$1; - var$1 = var$0.$_0295; - return oncias_SemanticAnalysisTooling_error$(var$1, $rt_s(7715), var$1.$wherePos.$get1()); +onciu_RewritableJavascript$PROXY$9_195 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_195_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_65_0 = $rt_classWithoutFields(), -oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_65_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); -}; -function onciu_Foldable$Folder$$anonfun$treeCollect$1() { - sr_AbstractPartialFunction.call(this); - this.$f$1 = null; -} -let onciu_Foldable$Folder$$anonfun$treeCollect$1_applyOrElse = ($this, $x1, $default) => { - if (!$this.$f$1.$isDefinedAt($x1)) - return s_PartialFunction$_fallback_fn; - $default = new onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0; - $default.$_0586 = $this; - $default.$_1201 = $x1; - return $default; +onciu_RewritableJavascript$PROXY$9_196 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_196_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$containsGpmSpecificLabelExpression()); -}; -function oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0572 = null; -} -let oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0572; - var$3 = new onciu_Foldable$SkipChildren; - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - onciu_Foldable$SkipChildren__init_0(var$3, var$1.$chain(oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7716), var$2.$position34)))); - return var$3; -}; -function oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1() { - jl_Object.call(this); - this.$_01094 = null; -} -let oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_01094; - var$3 = new onciu_Foldable$SkipChildren; - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - onciu_Foldable$SkipChildren__init_0(var$3, var$1.$chain(oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7717), var$2.$position10)))); - return var$3; -}; -function oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2() { - jl_Object.call(this); - this.$_0451 = null; -} -let oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0451; - var$3 = new onciu_Foldable$SkipChildren; - oncias_package$_$callClinit(); - var$4 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - onciu_Foldable$SkipChildren__init_0(var$3, var$1.$chain(oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7718), var$2.$position8)))); - return var$3; +onciu_RewritableJavascript$PROXY$9_197 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$9_197_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); +onciu_RewritableJavascript$PROXY$9_198 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_198_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); +onciu_RewritableJavascript$PROXY$9_199 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_199_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); +onciu_RewritableJavascript$PROXY$9_200 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_200_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); -}; -function oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3() { - let a = this; jl_Object.call(a); - a.$_0878 = null; - a.$_1302 = null; -} -let oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$1 = var$1; - var$2 = var$0.$_0878; - var$3 = var$0.$_1302; - var$4 = new onciu_Foldable$SkipChildren; - var$2 = var$2.$context$12; - var$5 = var$3.$position(); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(7719)), var$3), $rt_s(7720)), var$2), $rt_s(7721)), var$5); - onciu_Foldable$SkipChildren__init_0(var$4, var$1.$appended(jl_AbstractStringBuilder_toString(var$6))); - return var$4; -}; -function onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0() { - jl_Object.call(this); - this.$_0797 = null; -} -let onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_dispatch(var$0.$_0797, var$1); +onciu_RewritableJavascript$PROXY$9_201 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_201_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; }, -onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - return jl_Boolean_valueOf(sc_StringOps$_nonEmpty$extension(var$2, var$1)); -}; -function sci_LazyList$LazyIterator() { - sc_AbstractIterator.call(this); - this.$lazyList = null; -} -let sci_LazyList$LazyIterator_hasNext = $this => { - if (sci_LazyList_isEmpty($this.$lazyList)) - return 0; - return 1; +onciu_RewritableJavascript$PROXY$9_202 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_202_numParameters = var$1 => { + return (jl_Integer_valueOf(9)).$value4; }, -sci_LazyList$LazyIterator_next = $this => { - let $res; - if (sci_LazyList_isEmpty($this.$lazyList)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - $res = sci_LazyList_head($this.$lazyList); - $this.$lazyList = sci_LazyList_tail($this.$lazyList); - return $res; -}; -function jusi_SimpleIntStreamIterator() { - let a = this; jl_Object.call(a); - a.$stream1 = null; - a.$lastElement = 0; - a.$state1 = 0; -} -let jusi_SimpleIntStreamIterator_fetchIfNeeded = $this => { - let var$1, var$2; - if ($this.$state1) - return; - $this.$state1 = 0; - while (!$this.$state1) { - var$1 = $this.$stream1; - var$2 = new jusi_SimpleIntStreamIterator$fetchIfNeeded$lambda$_3_0; - var$2.$_01017 = $this; - if (!jusi_ArrayIntStreamImpl_next(var$1, var$2)) { - if ($this.$state1) - $this.$state1 = 2; - else - $this.$state1 = 3; - $this.$stream1 = null; - } - } -}; -function onciap_DefaultPatternStringifier$apply$lambda$_7_0() { - jl_Object.call(this); - this.$_0837 = null; -} -let onciap_DefaultPatternStringifier$apply$lambda$_7_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultPatternStringifier_stringifyPredicate(var$0.$_0837, var$1); +onciu_RewritableJavascript$PROXY$9_203 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_203_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -onciap_DefaultPatternStringifier$apply$lambda$_7_1 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_7_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 32); - jl_StringBuilder_append(var$2, var$1); - return jl_AbstractStringBuilder_toString(var$2); +onciu_RewritableJavascript$PROXY$9_204 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_204_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -onciap_DefaultPatternStringifier$apply$lambda$_7_2 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_7_2_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$9_205 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_205_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -onciap_DefaultPatternStringifier$apply$lambda$_7_3 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_7_3_apply = (var$0, var$1) => { - return var$1.$stringVal0; +onciu_RewritableJavascript$PROXY$9_206 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_206_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -onciap_DefaultPatternStringifier$apply$lambda$_7_4 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_7_4_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$9_207 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_207_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -onciap_DefaultPatternStringifier$apply$lambda$_7_5 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_7_5_apply = (var$0, var$1) => { - return var$1.$stringVal0; +onciu_RewritableJavascript$PROXY$9_208 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_208_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -onciap_DefaultPatternStringifier$apply$lambda$_7_6 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_7_6_apply = var$0 => { - return $rt_s(4); -}; -function ju_HashMap$2() { - ju_AbstractCollection.call(this); - this.$this$03 = null; -} -let ju_HashMap$2_size = $this => { - return $this.$this$03.$elementCount; +onciu_RewritableJavascript$PROXY$9_209 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_209_numParameters = var$1 => { + return (jl_Integer_valueOf(5)).$value4; }, -ju_HashMap$2_iterator = $this => { - let var$1; - var$1 = new ju_HashMap$ValueIterator; - ju_HashMap$AbstractMapIterator__init_(var$1, $this.$this$03); - return var$1; -}; -function oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0() { - jl_Object.call(this); - this.$_0273 = null; -} -let oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(s_Option_contains(var$0.$_0273.$typeInfo, var$1.$invariant())); -}; -function oncius_TypeSpec$constrain$lambda$_21_0() { - jl_Object.call(this); - this.$_0707 = null; -} -let oncius_TypeSpec$constrain$lambda$_21_0_apply = (var$0, var$1) => { - return oncius_TypeRange_constrain(var$1, var$0.$_0707); -}; -function oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0943 = null; -} -let oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - var$1 = var$1; - var$2 = var$0.$_0943; - if (var$1 instanceof oncie_Variable) { - var$3 = var$2.$occurrencesToReplace$1; - onciu_Ref$_$callClinit(); - if (var$3.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, var$1))) { - var$2 = oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0_apply(var$2.$replacement$1); - if (!(var$2 instanceof oncie_LogicalVariable)) { - var$2 = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7722)), var$1), $rt_s(7723)); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw(var$2); - } - break a; - } - } - var$2 = var$1; - } - return var$2; -}; -function oncie_Expression$$anonfun$occurrences$2() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer73 = null; - a.$skipScopeExpression$1 = 0; - a.$variable$20 = null; -} -let oncie_Expression$$anonfun$occurrences$2_applyOrElse = ($this, $x1, $default) => { - if ($rt_isInstance($x1, oncie_ScopeExpression)) { - $default = $x1; - if (!$this.$skipScopeExpression$1) { - $x1 = new oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0; - $x1.$_0243 = $this; - $x1.$_193 = $default; - return $x1; - } - } - if (!($x1 instanceof oncie_Variable)) - return s_PartialFunction$_fallback_fn; - $x1 = $x1; - $default = new oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1; - $default.$_0905 = $this; - $default.$_1315 = $x1; - return $default; -}; -function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0427 = null; -} -let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return onciu_Foldable$TraverseChildrenNewAccForSiblings__init_0(oncie_Expression$TreeAcc_pushScope(var$1, var$0.$_0427.$introducedVariables()), new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0); +onciu_RewritableJavascript$PROXY$9_210 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_210_numParameters = var$1 => { + return (jl_Integer_valueOf(9)).$value4; }, -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); -}; -function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2() { - jl_Object.call(this); - this.$_0259 = null; -} -let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0259; - if (oncie_Expression$TreeAcc_inScope(var$1, var$2)) - var$3 = onciu_Foldable$SkipChildren__init_(var$1); - else { - var$3 = new onciu_Foldable$SkipChildren; - var$4 = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0; - var$4.$_0194 = var$2; - onciu_Foldable$SkipChildren__init_0(var$3, oncie_Expression$TreeAcc_mapData(var$1, var$4)); - } - return var$3; +onciu_RewritableJavascript$PROXY$9_211 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_211_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); -}; -function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4() { - let a = this; jl_Object.call(a); - a.$_0221 = null; - a.$_185 = null; - a.$_236 = null; -} -let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - var$1 = var$1; - var$2 = var$0.$_0221; - var$3 = var$0.$_185; - var$4 = var$0.$_236; - if (!var$2.$variablesUsedForGrouping$1.$contains(var$3) && !oncie_Expression$TreeAcc_inScope(var$1, var$3)) { - onciu_AnonymousVariableNameGenerator$_$callClinit(); - if (onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, var$3.$name4)) { - var$2 = new onciu_Foldable$SkipChildren; - var$3 = new oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0; - var$3.$_0753 = var$4; - onciu_Foldable$SkipChildren__init_0(var$2, oncie_Expression$TreeAcc_mapData(var$1, var$3)); - break a; - } - } - var$2 = onciu_Foldable$SkipChildren__init_(var$1); - } - return var$2; +onciu_RewritableJavascript$PROXY$9_212 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_212_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncie_Expression$$anonfun$findAggregate$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncie_Expression$$anonfun$findAggregate$1_applyOrElse = ($this, $x, $default) => { - a: { - $x = $x; - if ($x !== null) { - oncie_IsAggregate$_$callClinit(); - if (!s_Option_isEmpty(oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x))) { - $x = jl_Boolean_valueOf(1); - break a; - } - } - $x = s_PartialFunction$_fallback_fn; - } - return $x; +onciu_RewritableJavascript$PROXY$9_213 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_213_numParameters = var$1 => { + return (jl_Integer_valueOf(7)).$value4; }, -oncia_CreateSingleLabelPropertyIndex$ = $rt_classWithoutFields(), -oncia_CreateSingleLabelPropertyIndex$_MODULE$ = null, -oncia_CreateSingleLabelPropertyIndex$_$callClinit = () => { - oncia_CreateSingleLabelPropertyIndex$_$callClinit = $rt_eraseClinit(oncia_CreateSingleLabelPropertyIndex$); - oncia_CreateSingleLabelPropertyIndex$__clinit_(); +onciu_RewritableJavascript$PROXY$9_214 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_214_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncia_CreateSingleLabelPropertyIndex$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateSingleLabelPropertyIndex$; - oncia_CreateSingleLabelPropertyIndex$_$callClinit(); - oncia_CreateSingleLabelPropertyIndex$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$9_215 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_215_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncia_CreateSingleLabelPropertyIndex$_unapply = ($this, $c) => { - return s_Some__init_(s_Tuple7__init_($c.$variable2(), $c.$entityName(), $c.$properties1(), $c.$name2(), $c.$indexType(), $c.$ifExistsDo(), $c.$options())); +onciu_RewritableJavascript$PROXY$9_216 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_216_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -s_Product7 = $rt_classWithoutFields(0); -function s_Tuple7() { - let a = this; jl_Object.call(a); - a.$_12 = null; - a.$_23 = null; - a.$_32 = null; - a.$_40 = null; - a.$_50 = null; - a.$_61 = null; - a.$_70 = null; -} -let s_Tuple7_productArity = $this => { - return 7; +onciu_RewritableJavascript$PROXY$9_217 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_217_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -s_Tuple7_productElement = ($this, $n) => { - let var$2, var$3; - a: { - switch ($n) { - case 0: - break; - case 1: - var$2 = $this.$_23; - break a; - case 2: - var$2 = $this.$_32; - break a; - case 3: - var$2 = $this.$_40; - break a; - case 4: - var$2 = $this.$_50; - break a; - case 5: - var$2 = $this.$_61; - break a; - case 6: - var$2 = $this.$_70; - break a; - default: - var$3 = new jl_IndexOutOfBoundsException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$2, 32); - var$2 = jl_StringBuilder_append0(var$2, $n); - jl_AbstractStringBuilder_append(var$2, $rt_s(7724)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$3); - } - var$2 = $this.$_12; - } - return var$2; +onciu_RewritableJavascript$PROXY$9_218 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_218_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -s_Tuple7__1 = $this => { - return $this.$_12; +onciu_RewritableJavascript$PROXY$9_219 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_219_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -s_Tuple7__2 = $this => { - return $this.$_23; +onciu_RewritableJavascript$PROXY$9_220 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_220_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; }, -s_Tuple7__3 = $this => { - return $this.$_32; +onciu_RewritableJavascript$PROXY$9_221 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_221_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -s_Tuple7__4 = $this => { - return $this.$_40; +onciu_RewritableJavascript$PROXY$9_222 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$9_222_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -s_Tuple7__5 = $this => { - return $this.$_50; +onciu_RewritableJavascript$PROXY$9_223 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_223_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -s_Tuple7__6 = $this => { - return $this.$_61; +onciu_RewritableJavascript$PROXY$9_224 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_224_numParameters = var$1 => { + return (jl_Integer_valueOf(9)).$value4; }, -s_Tuple7__7 = $this => { - return $this.$_70; +onciu_RewritableJavascript$PROXY$9_225 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_225_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -s_Tuple7_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$1, 8); - jl_AbstractStringBuilder_append(var$1, $rt_s(40)); - var$1 = jl_StringBuilder_append(var$1, $this.$_12); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_23); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_32); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_40); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_50); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_61); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_70); - jl_AbstractStringBuilder_append(var$1, $rt_s(42)); - return jl_AbstractStringBuilder_toString(var$1); +onciu_RewritableJavascript$PROXY$9_226 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_226_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -s_Tuple7_productPrefix = $this => { - return $rt_s(7725); +onciu_RewritableJavascript$PROXY$9_227 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_227_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -s_Tuple7_productIterator = $this => { - return sr_ScalaRunTime$$anon$1__init_($this); +onciu_RewritableJavascript$PROXY$9_228 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_228_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -s_Tuple7_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$9_229 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_229_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -s_Tuple7_equals = ($this, $x$1) => { - a: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof s_Tuple7) ? 0 : 1)) - break a; - $x$1 = $x$1; - if (!sr_BoxesRunTime_equals($this.$_12, $x$1.$_12)) - break a; - if (!sr_BoxesRunTime_equals($this.$_23, $x$1.$_23)) - break a; - if (!sr_BoxesRunTime_equals($this.$_32, $x$1.$_32)) - break a; - if (!sr_BoxesRunTime_equals($this.$_40, $x$1.$_40)) - break a; - if (!sr_BoxesRunTime_equals($this.$_50, $x$1.$_50)) - break a; - if (!sr_BoxesRunTime_equals($this.$_61, $x$1.$_61)) - break a; - if (!sr_BoxesRunTime_equals($this.$_70, $x$1.$_70)) - break a; - } - return 1; - } - return 0; +onciu_RewritableJavascript$PROXY$9_230 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_230_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -s_Tuple7__init_0 = ($this, $_1, $_2, $_3, $_4, $_5, $_6, $_7) => { - $this.$_12 = $_1; - $this.$_23 = $_2; - $this.$_32 = $_3; - $this.$_40 = $_4; - $this.$_50 = $_5; - $this.$_61 = $_6; - $this.$_70 = $_7; +onciu_RewritableJavascript$PROXY$9_231 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_231_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -s_Tuple7__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new s_Tuple7(); - s_Tuple7__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; +onciu_RewritableJavascript$PROXY$9_232 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_232_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -onciap_Prettifier$asString$lambda$_38_0 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_38_0__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$9_233 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_233_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -onciap_Prettifier$asString$lambda$_38_0__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_38_0(); - onciap_Prettifier$asString$lambda$_38_0__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$9_234 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_234_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -onciap_Prettifier$asString$lambda$_38_0_apply = (var$0, var$1) => { - return !sr_BoxesRunTime_unboxToBoolean(var$1) ? $rt_s(447) : $rt_s(344); +onciu_RewritableJavascript$PROXY$9_235 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_235_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -oncia_CreateLookupIndex$ = $rt_classWithoutFields(), -oncia_CreateLookupIndex$_MODULE$ = null, -oncia_CreateLookupIndex$_$callClinit = () => { - oncia_CreateLookupIndex$_$callClinit = $rt_eraseClinit(oncia_CreateLookupIndex$); - oncia_CreateLookupIndex$__clinit_(); +onciu_RewritableJavascript$PROXY$9_236 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_236_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncia_CreateLookupIndex$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateLookupIndex$; - oncia_CreateLookupIndex$_$callClinit(); - oncia_CreateLookupIndex$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$9_237 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_237_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_CreateLookupIndex$_unapply = ($this, $c) => { - return s_Some__init_(s_Tuple7__init_($c.$variable2(), jl_Boolean_valueOf($c.$isNodeIndex()), $c.$function0(), $c.$name2(), $c.$indexType(), $c.$ifExistsDo(), $c.$options())); -}; -function onciap_Prettifier$asString$lambda$_38_1() { - jl_Object.call(this); - this.$_01174 = null; -} -let onciap_Prettifier$asString$lambda$_38_1__init_0 = (var$0, var$1) => { - var$0.$_01174 = var$1; +onciu_RewritableJavascript$PROXY$9_238 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_238_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -onciap_Prettifier$asString$lambda$_38_1__init_ = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_38_1(); - onciap_Prettifier$asString$lambda$_38_1__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$9_239 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_239_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncia_CreateFulltextIndex$ = $rt_classWithoutFields(), -oncia_CreateFulltextIndex$_MODULE$ = null, -oncia_CreateFulltextIndex$_$callClinit = () => { - oncia_CreateFulltextIndex$_$callClinit = $rt_eraseClinit(oncia_CreateFulltextIndex$); - oncia_CreateFulltextIndex$__clinit_(); +onciu_RewritableJavascript$PROXY$9_240 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_240_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -oncia_CreateFulltextIndex$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateFulltextIndex$; - oncia_CreateFulltextIndex$_$callClinit(); - oncia_CreateFulltextIndex$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$9_241 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_241_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_CreateFulltextIndex$_unapply = ($this, $c) => { - return s_Some__init_(s_Tuple7__init_($c.$variable2(), $c.$entityNames(), $c.$properties1(), $c.$name2(), $c.$indexType(), $c.$ifExistsDo(), $c.$options())); -}; -function onciap_Prettifier$asString$lambda$_38_2() { - jl_Object.call(this); - this.$_0442 = null; -} -let onciap_Prettifier$asString$lambda$_38_2__init_ = (var$0, var$1) => { - var$0.$_0442 = var$1; +onciu_RewritableJavascript$PROXY$9_242 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_242_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -onciap_Prettifier$asString$lambda$_38_2__init_0 = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_38_2(); - onciap_Prettifier$asString$lambda$_38_2__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$9_243 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_243_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -onciap_Prettifier$asString$lambda$_38_2_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier_backtick(var$0.$_0442, var$1.$name19); -}; -function onciap_Prettifier$asString$lambda$_38_3() { - jl_Object.call(this); - this.$_0889 = null; -} -let onciap_Prettifier$asString$lambda$_38_3__init_0 = (var$0, var$1) => { - var$0.$_0889 = var$1; +onciu_RewritableJavascript$PROXY$9_244 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_244_numParameters = var$1 => { + return (jl_Integer_valueOf(7)).$value4; }, -onciap_Prettifier$asString$lambda$_38_3__init_ = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_38_3(); - onciap_Prettifier$asString$lambda$_38_3__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$9_245 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_245_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -onciap_Prettifier$asString$lambda$_38_3_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0889; - var$3 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1.$map16); - var$1 = onciap_Prettifier_backtick(var$2, var$1.$propertyKey0.$name5); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = jl_StringBuilder_append(var$2, var$3); - jl_AbstractStringBuilder_append0(var$3, 46); - jl_StringBuilder_append(var$3, var$1); - return jl_AbstractStringBuilder_toString(var$2); -}; -function onciap_Prettifier$asString$lambda$_38_4() { - jl_Object.call(this); - this.$_0546 = null; -} -let onciap_Prettifier$asString$lambda$_38_4__init_ = (var$0, var$1) => { - var$0.$_0546 = var$1; +onciu_RewritableJavascript$PROXY$9_246 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_246_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; }, -onciap_Prettifier$asString$lambda$_38_4__init_0 = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_38_4(); - onciap_Prettifier$asString$lambda$_38_4__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$9_247 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$9_247_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -onciap_Prettifier$asString$lambda$_38_4_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier_backtick(var$0.$_0546, var$1.$name22); +onciu_RewritableJavascript$PROXY$9_248 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_248_numParameters = var$1 => { + return (jl_Integer_valueOf(9)).$value4; }, -onciap_Prettifier$asString$lambda$_38_5 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_38_5__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$9_249 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_249_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -onciap_Prettifier$asString$lambda$_38_5__init_ = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_38_5(); - onciap_Prettifier$asString$lambda$_38_5__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$9_250 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_250_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; }, -onciap_Prettifier$asString$lambda$_38_5_apply = (var$0, var$1) => { - return !sr_BoxesRunTime_unboxToBoolean(var$1) ? $rt_s(447) : $rt_s(344); +onciu_RewritableJavascript$PROXY$9_251 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_251_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_CreateUser$ = $rt_classWithoutFields(), -oncia_CreateUser$_MODULE$ = null, -oncia_CreateUser$_$callClinit = () => { - oncia_CreateUser$_$callClinit = $rt_eraseClinit(oncia_CreateUser$); - oncia_CreateUser$__clinit_(); +onciu_RewritableJavascript$PROXY$9_252 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_252_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -oncia_CreateUser$__clinit_ = () => { - let var$1; - var$1 = new oncia_CreateUser$; - oncia_CreateUser$_$callClinit(); - oncia_CreateUser$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$9_253 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_253_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncia_CreateUser$_unapply = ($this, $c) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$2 = new s_Some; - var$3 = new s_Tuple5; - var$4 = $c.$userName2; - var$5 = $c.$userOptions0; - var$6 = $c.$ifExistsDo4; - var$7 = $c.$externalAuths1; - $c = $c.$nativeAuth; - var$3.$_14 = var$4; - var$3.$_24 = var$5; - var$3.$_33 = var$6; - var$3.$_42 = var$7; - var$3.$_52 = $c; - s_Some__init_0(var$2, var$3); - return var$2; +onciu_RewritableJavascript$PROXY$9_254 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_254_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -s_Product5 = $rt_classWithoutFields(0); -function s_Tuple5() { - let a = this; jl_Object.call(a); - a.$_14 = null; - a.$_24 = null; - a.$_33 = null; - a.$_42 = null; - a.$_52 = null; -} -let s_Tuple5_productArity = $this => { - return 5; +onciu_RewritableJavascript$PROXY$9_255 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_255_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -s_Tuple5_productElement = ($this, $n) => { - let var$2, var$3; - a: { - switch ($n) { - case 0: - break; - case 1: - var$2 = $this.$_24; - break a; - case 2: - var$2 = $this.$_33; - break a; - case 3: - var$2 = $this.$_42; - break a; - case 4: - var$2 = $this.$_52; - break a; - default: - var$3 = new jl_IndexOutOfBoundsException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$2, 32); - var$2 = jl_StringBuilder_append0(var$2, $n); - jl_AbstractStringBuilder_append(var$2, $rt_s(7726)); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$3); - } - var$2 = $this.$_14; - } - return var$2; +onciu_RewritableJavascript$PROXY$9_256 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_256_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -s_Tuple5__1 = $this => { - return $this.$_14; +onciu_RewritableJavascript$PROXY$11_148 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_148_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -s_Tuple5__2 = $this => { - return $this.$_24; +onciu_RewritableJavascript$PROXY$11_149 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_149_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -s_Tuple5__3 = $this => { - return $this.$_33; +onciu_RewritableJavascript$PROXY$11_150 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_150_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -s_Tuple5__4 = $this => { - return $this.$_42; +onciu_RewritableJavascript$PROXY$11_151 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_151_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -s_Tuple5__5 = $this => { - return $this.$_52; +onciu_RewritableJavascript$PROXY$11_152 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_152_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -s_Tuple5_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$1, 6); - jl_AbstractStringBuilder_append(var$1, $rt_s(40)); - var$1 = jl_StringBuilder_append(var$1, $this.$_14); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_24); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_33); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_42); - jl_AbstractStringBuilder_append(var$1, $rt_s(41)); - var$1 = jl_StringBuilder_append(var$1, $this.$_52); - jl_AbstractStringBuilder_append(var$1, $rt_s(42)); - return jl_AbstractStringBuilder_toString(var$1); +onciu_RewritableJavascript$PROXY$11_153 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_153_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -s_Tuple5_productPrefix = $this => { - return $rt_s(7727); +onciu_RewritableJavascript$PROXY$11_154 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_154_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -s_Tuple5_productIterator = $this => { - return sr_ScalaRunTime$$anon$1__init_($this); +onciu_RewritableJavascript$PROXY$11_155 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_155_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -s_Tuple5_hashCode = $this => { - suh_MurmurHash3$_$callClinit(); - return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); +onciu_RewritableJavascript$PROXY$11_156 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_156_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -s_Tuple5_equals = ($this, $x$1) => { - a: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof s_Tuple5) ? 0 : 1)) - break a; - $x$1 = $x$1; - if (!sr_BoxesRunTime_equals($this.$_14, $x$1.$_14)) - break a; - if (!sr_BoxesRunTime_equals($this.$_24, $x$1.$_24)) - break a; - if (!sr_BoxesRunTime_equals($this.$_33, $x$1.$_33)) - break a; - if (!sr_BoxesRunTime_equals($this.$_42, $x$1.$_42)) - break a; - if (!sr_BoxesRunTime_equals($this.$_52, $x$1.$_52)) - break a; - } - return 1; - } - return 0; -}; -function onciap_Prettifier$asString$lambda$_39_0() { - let a = this; jl_Object.call(a); - a.$_0378 = null; - a.$_1137 = null; -} -let onciap_Prettifier$asString$lambda$_39_0__init_0 = (var$0, var$1, var$2) => { - var$0.$_0378 = var$1; - var$0.$_1137 = var$2; +onciu_RewritableJavascript$PROXY$11_157 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_157_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_0__init_ = (var_0, var_1) => { - let var_2 = new onciap_Prettifier$asString$lambda$_39_0(); - onciap_Prettifier$asString$lambda$_39_0__init_0(var_2, var_0, var_1); - return var_2; +onciu_RewritableJavascript$PROXY$11_158 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_158_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; - var$1 = var$1; - var$2 = var$0.$_0378; - var$3 = var$0.$_1137; - var$4 = !((oncia_NativeAuth_password(var$1)).$get1()).$isEncrypted ? $rt_s(556) : $rt_s(7728); - var$5 = onciap_DefaultExpressionStringifier_escapePassword(var$2.$expr1, ((oncia_NativeAuth_password(var$1)).$get1()).$password3); - var$1 = !sr_BoxesRunTime_unboxToBoolean(s_Option_getOrElse(oncia_NativeAuth_changeRequired(var$1), new onciap_Prettifier$$anonfun$asString$13$lambda$_85_0)) ? $rt_s(448) : $rt_s(4); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(7729)), var$1), $rt_s(6288)); - var$7 = jl_AbstractStringBuilder_toString(var$6); - if (var$3.$useOldStyleNativeAuth0) { - var$1 = new s_Tuple2; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 32); - var$3 = jl_StringBuilder_append(var$2, var$4); - jl_AbstractStringBuilder_append0(var$3, 32); - var$3 = jl_StringBuilder_append(var$3, var$5); - jl_AbstractStringBuilder_append0(var$3, 32); - jl_StringBuilder_append(var$3, var$7); - s_Tuple2__init_0(var$1, jl_AbstractStringBuilder_toString(var$2), $rt_s(4)); - } else { - var$6 = onciap_Prettifier$IndentingQueryPrettifier_indented(var$2.$base); - var$1 = new s_Tuple2; - var$3 = sr_ScalaRunTime$_MODULE$; - var$8 = $rt_createArray(jl_String, 2); - var$9 = var$8.data; - var$10 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$10); - var$4 = jl_StringBuilder_append(var$10, var$4); - jl_AbstractStringBuilder_append0(var$4, 32); - jl_StringBuilder_append(var$4, var$5); - var$9[0] = jl_AbstractStringBuilder_toString(var$10); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7730)), var$7); - var$9[1] = jl_AbstractStringBuilder_toString(var$4); - s_Tuple2__init_0(var$1, $rt_s(4), onciap_Prettifier$IndentingQueryPrettifier_getNativeAuthAsString(var$6, sr_ScalaRunTime$_wrapRefArray(var$3, var$8))); - } - return var$1; +onciu_RewritableJavascript$PROXY$11_159 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_159_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_1 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_1__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_160 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_160_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_1__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_1(); - onciap_Prettifier$asString$lambda$_39_1__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_161 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_161_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_1_apply = var$0 => { - return s_Tuple2__init_($rt_s(4), $rt_s(4)); +onciu_RewritableJavascript$PROXY$11_162 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_162_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -onciap_Prettifier$asString$lambda$_39_2 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_2__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_163 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$11_163_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_2__init_ = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_2(); - onciap_Prettifier$asString$lambda$_39_2__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_164 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_164_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_2_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - if (!(var$1 instanceof oncia_SetHomeDatabaseAction)) - var$1 = s_None$_MODULE$; - else { - var$2 = var$1.$name24; - onciap_Prettifier$_$callClinit(); - var$3 = onciap_Prettifier$_MODULE$; - s_DummyImplicit$_$callClinit(); - var$1 = onciap_Prettifier$_escapeName(var$3, var$2, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7731)), var$1); - var$1 = jl_AbstractStringBuilder_toString(var$3); - } - return var$1; +onciu_RewritableJavascript$PROXY$11_165 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_165_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_3 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_3__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_166 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_166_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_3__init_ = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_3(); - onciap_Prettifier$asString$lambda$_39_3__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_167 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_167_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_3_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$11_168 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_168_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_4 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_4__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_169 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_169_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_4__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_4(); - onciap_Prettifier$asString$lambda$_39_4__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_170 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_170_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -onciap_Prettifier$asString$lambda$_39_4_apply = (var$0, var$1) => { - return var$1.$provider1; -}; -function onciap_Prettifier$asString$lambda$_39_5() { - jl_Object.call(this); - this.$_0618 = null; -} -let onciap_Prettifier$asString$lambda$_39_5__init_0 = (var$0, var$1) => { - var$0.$_0618 = var$1; +onciu_RewritableJavascript$PROXY$11_171 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_171_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_5__init_ = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_39_5(); - onciap_Prettifier$asString$lambda$_39_5__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_172 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_172_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_5_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString9(onciap_Prettifier$IndentingQueryPrettifier_indented(var$0.$_0618.$base), var$1); +onciu_RewritableJavascript$PROXY$11_173 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_173_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncia_AlterUser$ = $rt_classWithoutFields(), -oncia_AlterUser$_MODULE$ = null, -oncia_AlterUser$_$callClinit = () => { - oncia_AlterUser$_$callClinit = $rt_eraseClinit(oncia_AlterUser$); - oncia_AlterUser$__clinit_(); +onciu_RewritableJavascript$PROXY$11_174 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_174_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncia_AlterUser$__clinit_ = () => { - let var$1; - var$1 = new oncia_AlterUser$; - oncia_AlterUser$_$callClinit(); - oncia_AlterUser$_MODULE$ = var$1; +onciu_RewritableJavascript$PROXY$11_175 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_175_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncia_AlterUser$_unapply = ($this, $a) => { - return s_Some__init_(s_Tuple6__init_($a.$userName1, $a.$userOptions, jl_Boolean_valueOf($a.$ifExists9), $a.$externalAuths0, $a.$nativeAuth0, $a.$removeAuth)); -}; -function onciap_Prettifier$asString$lambda$_39_6() { - let a = this; jl_Object.call(a); - a.$_050 = null; - a.$_122 = null; -} -let onciap_Prettifier$asString$lambda$_39_6__init_0 = (var$0, var$1, var$2) => { - var$0.$_050 = var$1; - var$0.$_122 = var$2; +onciu_RewritableJavascript$PROXY$11_176 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_176_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_6__init_ = (var_0, var_1) => { - let var_2 = new onciap_Prettifier$asString$lambda$_39_6(); - onciap_Prettifier$asString$lambda$_39_6__init_0(var_2, var_0, var_1); - return var_2; +onciu_RewritableJavascript$PROXY$11_177 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_177_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_6_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier_$anonfun$asString$21(var$0.$_050, var$0.$_122, var$1); +onciu_RewritableJavascript$PROXY$11_178 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_178_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_7 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_7__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_179 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_179_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_7__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_7(); - onciap_Prettifier$asString$lambda$_39_7__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_180 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_180_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_7_apply = var$0 => { - return s_Tuple2__init_($rt_s(4), $rt_s(4)); +onciu_RewritableJavascript$PROXY$11_181 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_181_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -onciap_Prettifier$$anonfun$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - oncia_RemoveHomeDatabaseAction$_$callClinit(); - if (jl_Object_equals(oncia_RemoveHomeDatabaseAction$_MODULE$, $x)) - $default = $rt_s(7732); - return $default; +onciu_RewritableJavascript$PROXY$11_182 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_182_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -onciap_Prettifier$$anonfun$1__init_0 = ($this, $$outer) => { - return; +onciu_RewritableJavascript$PROXY$11_183 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_183_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$$anonfun$1__init_ = var_0 => { - let var_1 = new onciap_Prettifier$$anonfun$1(); - onciap_Prettifier$$anonfun$1__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_184 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_184_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_8 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_8__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_185 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_185_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_8__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_8(); - onciap_Prettifier$asString$lambda$_39_8__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_186 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_186_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_8_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$11_187 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_187_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), -onciap_Prettifier$$anonfun$2_applyOrElse = ($this, $x, $default) => { - let var$3; - $x = $x; - if ($x instanceof oncia_SetHomeDatabaseAction) { - var$3 = $x.$name24; - onciap_Prettifier$_$callClinit(); - $default = onciap_Prettifier$_MODULE$; - s_DummyImplicit$_$callClinit(); - $x = onciap_Prettifier$_escapeName($default, var$3, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - $default = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($default); - jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(7731)), $x); - $default = jl_AbstractStringBuilder_toString($default); - } - return $default; +onciu_RewritableJavascript$PROXY$11_188 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$11_188_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$$anonfun$2__init_0 = ($this, $$outer) => { - return; +onciu_RewritableJavascript$PROXY$11_189 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_189_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$$anonfun$2__init_ = var_0 => { - let var_1 = new onciap_Prettifier$$anonfun$2(); - onciap_Prettifier$$anonfun$2__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_190 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_190_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_9 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_9__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_191 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_191_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_9__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_9(); - onciap_Prettifier$asString$lambda$_39_9__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_192 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_192_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_9_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$11_193 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_193_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_10 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_10__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_194 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_194_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_10__init_ = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_10(); - onciap_Prettifier$asString$lambda$_39_10__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_195 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_195_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_10_apply = (var$0, var$1) => { - return var$1.$provider1; -}; -function onciap_Prettifier$asString$lambda$_39_11() { - jl_Object.call(this); - this.$_070 = null; -} -let onciap_Prettifier$asString$lambda$_39_11__init_ = (var$0, var$1) => { - var$0.$_070 = var$1; +onciu_RewritableJavascript$PROXY$11_196 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_196_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_11__init_0 = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_39_11(); - onciap_Prettifier$asString$lambda$_39_11__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_197 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_197_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_11_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString9(onciap_Prettifier$IndentingQueryPrettifier_indented(var$0.$_070.$base), var$1); -}; -function onciap_Prettifier$asString$lambda$_39_12() { - jl_Object.call(this); - this.$_0713 = null; -} -let onciap_Prettifier$asString$lambda$_39_12__init_ = (var$0, var$1) => { - var$0.$_0713 = var$1; +onciu_RewritableJavascript$PROXY$11_198 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_198_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_12__init_0 = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_39_12(); - onciap_Prettifier$asString$lambda$_39_12__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_199 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_199_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -onciap_Prettifier$asString$lambda$_39_12_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0713.$expr1, var$1); +onciu_RewritableJavascript$PROXY$11_200 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_200_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_13 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_13__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_201 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_201_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_13__init_ = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_13(); - onciap_Prettifier$asString$lambda$_39_13__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_202 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_202_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_13_apply = (var$0, var$1) => { - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - return onciap_Prettifier$_extractTopology(onciap_Prettifier$_MODULE$, var$1); +onciu_RewritableJavascript$PROXY$11_203 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_203_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_14 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_14__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_204 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_204_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_14__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_14(); - onciap_Prettifier$asString$lambda$_39_14__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_205 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_205_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_14_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$11_206 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_206_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_15 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_15__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_207 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_207_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_15__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_15(); - onciap_Prettifier$asString$lambda$_39_15__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_208 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_208_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_15_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncia_ReadOnlyAccess$_$callClinit(); - if (jl_Object_equals(oncia_ReadOnlyAccess$_MODULE$, var$1)) - var$1 = $rt_s(7733); - else { - oncia_ReadWriteAccess$_$callClinit(); - if (!jl_Object_equals(oncia_ReadWriteAccess$_MODULE$, var$1)) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = $rt_s(7734); - } - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7735)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +onciu_RewritableJavascript$PROXY$11_209 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_209_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_16 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_16__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_210 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_210_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_16__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_16(); - onciap_Prettifier$asString$lambda$_39_16__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_211 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_211_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_212 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_212_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_213 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$11_213_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_214 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_214_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_215 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_215_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_16_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$11_216 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_216_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_17 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_17__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_217 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_217_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_17__init_ = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_17(); - onciap_Prettifier$asString$lambda$_39_17__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_218 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_218_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_17_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - var$1 = onciap_Prettifier$_extractTopology(onciap_Prettifier$_MODULE$, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(543)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +onciu_RewritableJavascript$PROXY$11_219 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_219_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_18 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_18__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_220 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_220_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_18__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_18(); - onciap_Prettifier$asString$lambda$_39_18__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_221 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_221_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_18_apply = var$0 => { - return $rt_s(4); -}; -function onciap_Prettifier$asString$lambda$_39_19() { - jl_Object.call(this); - this.$_01091 = null; -} -let onciap_Prettifier$asString$lambda$_39_19__init_ = (var$0, var$1) => { - var$0.$_01091 = var$1; +onciu_RewritableJavascript$PROXY$11_222 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_222_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_19__init_0 = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_39_19(); - onciap_Prettifier$asString$lambda$_39_19__init_(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_223 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_223_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_19_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$1 = onciap_Prettifier_backtick(var$0.$_01091, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7736)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +onciu_RewritableJavascript$PROXY$11_224 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_224_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_20 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_20__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_225 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_225_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_20__init_ = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_20(); - onciap_Prettifier$asString$lambda$_39_20__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_226 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_226_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_20_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - var$2 = onciap_Prettifier$_MODULE$; - s_DummyImplicit$_$callClinit(); - var$1 = onciap_Prettifier$_escapeName(var$2, var$1, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7737)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +onciu_RewritableJavascript$PROXY$11_227 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_227_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_21 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_21__init_0 = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_228 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_228_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_21__init_ = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_21(); - onciap_Prettifier$asString$lambda$_39_21__init_0(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_229 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_229_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_21_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$11_230 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_230_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_22 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_22__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_231 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_231_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_22__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_22(); - onciap_Prettifier$asString$lambda$_39_22__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_232 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_232_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_22_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - var$2 = onciap_Prettifier$_MODULE$; - s_DummyImplicit$_$callClinit(); - var$1 = onciap_Prettifier$_escapeName(var$2, var$1, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 32); - jl_StringBuilder_append(var$2, var$1); - return jl_AbstractStringBuilder_toString(var$2); +onciu_RewritableJavascript$PROXY$11_233 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_233_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_23 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_39_23__init_ = var$0 => { - return; +onciu_RewritableJavascript$PROXY$11_234 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_234_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_23__init_0 = () => { - let var_0 = new onciap_Prettifier$asString$lambda$_39_23(); - onciap_Prettifier$asString$lambda$_39_23__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_235 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_235_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_23_apply = var$0 => { - return $rt_s(4); -}; -function onciap_Prettifier$asString$lambda$_39_24() { - jl_Object.call(this); - this.$_0710 = null; -} -let onciap_Prettifier$asString$lambda$_39_24__init_0 = (var$0, var$1) => { - var$0.$_0710 = var$1; +onciu_RewritableJavascript$PROXY$11_236 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_236_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_24__init_ = var_0 => { - let var_1 = new onciap_Prettifier$asString$lambda$_39_24(); - onciap_Prettifier$asString$lambda$_39_24__init_0(var_1, var_0); - return var_1; +onciu_RewritableJavascript$PROXY$11_237 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_237_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_Prettifier$asString$lambda$_39_24_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0710; - if (var$1 instanceof su_Left) { - var$1 = var$1.$value6; - var$1 = onciap_DefaultExpressionStringifier_quote(var$2.$expr1, var$1); - } else { - if (!(var$1 instanceof su_Right)) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = var$1.$value7; - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1); - } - return var$1; -}; -function ju_AbstractList$TListIteratorImpl() { - let a = this; jl_Object.call(a); - a.$i0 = 0; - a.$j = 0; - a.$lastModCount = 0; - a.$sz = 0; - a.$this$0 = null; -} -let ju_AbstractList$TListIteratorImpl_hasNext = $this => { - return $this.$i0 >= $this.$sz ? 0 : 1; +onciu_RewritableJavascript$PROXY$11_238 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$11_238_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_AbstractList$TListIteratorImpl_next = $this => { - let var$1, var$2; - ju_AbstractList$TListIteratorImpl_checkConcurrentModification($this); - var$1 = $this.$i0; - if (var$1 == $this.$sz) { - var$2 = new ju_NoSuchElementException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); - } - $this.$j = var$1; - var$2 = $this.$this$0; - $this.$i0 = var$1 + 1 | 0; - return var$2.$get0(var$1); +onciu_RewritableJavascript$PROXY$11_239 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_239_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_AbstractList$TListIteratorImpl_previous = $this => { - let var$1, var$2; - ju_AbstractList$TListIteratorImpl_checkConcurrentModification($this); - var$1 = $this.$i0 - 1 | 0; - $this.$j = var$1; - if (var$1 >= 0) { - var$2 = $this.$this$0; - $this.$i0 = var$1; - return var$2.$get0(var$1); - } - var$2 = new ju_NoSuchElementException; - jl_Throwable__init_(var$2); - $rt_throw(var$2); +onciu_RewritableJavascript$PROXY$11_240 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_240_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_AbstractList$TListIteratorImpl_nextIndex = $this => { - return $this.$i0; +onciu_RewritableJavascript$PROXY$11_241 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_241_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_AbstractList$TListIteratorImpl_set = ($this, $e) => { - if ($this.$j != (-1)) { - ju_AbstractList$TListIteratorImpl_checkConcurrentModification($this); - $this.$this$0.$set1($this.$j, $e); - return; - } - $e = new jl_IllegalStateException; - jl_Throwable__init_($e); - $rt_throw($e); +onciu_RewritableJavascript$PROXY$11_242 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_242_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_AbstractList$TListIteratorImpl_checkConcurrentModification = $this => { - let var$1; - if ($this.$lastModCount >= $this.$this$0.$modCount) - return; - var$1 = new ju_ConcurrentModificationException; - jl_Throwable__init_(var$1); - $rt_throw(var$1); -}; -function ju_IdentityHashMap() { - let a = this; ju_AbstractMap.call(a); - a.$elementCount2 = 0; - a.$elementData1 = null; - a.$modCount2 = 0; - a.$loadFactor1 = 0.0; - a.$threshold4 = 0; -} -let ju_IdentityHashMap__init_ = $this => { - let var$1; - var$1 = ju_IdentityHashMap_calculateCapacity(16); - $this.$elementCount2 = 0; - $this.$elementData1 = $rt_createArray(ju_IdentityHashMap$HashEntry, var$1); - $this.$loadFactor1 = 0.75; - ju_IdentityHashMap_computeThreshold($this); +onciu_RewritableJavascript$PROXY$11_243 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_243_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_IdentityHashMap__init_0 = () => { - let var_0 = new ju_IdentityHashMap(); - ju_IdentityHashMap__init_(var_0); - return var_0; +onciu_RewritableJavascript$PROXY$11_244 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_244_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_IdentityHashMap_calculateCapacity = $x => { - let var$2; - if ($x >= 1073741824) - return 1073741824; - if (!$x) - return 16; - var$2 = $x - 1 | 0; - $x = var$2 | var$2 >> 1; - $x = $x | $x >> 2; - $x = $x | $x >> 4; - $x = $x | $x >> 8; - return ($x | $x >> 16) + 1 | 0; +onciu_RewritableJavascript$PROXY$11_245 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_245_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_IdentityHashMap_computeThreshold = $this => { - $this.$threshold4 = $this.$elementData1.data.length * $this.$loadFactor1 | 0; +onciu_RewritableJavascript$PROXY$11_246 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_246_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; }, -ju_IdentityHashMap_findNonNullKeyEntry = ($this, $key, $index, $keyHash) => { - let $m; - $m = $this.$elementData1.data[$index]; - while ($m !== null && !($m.$origKeyHash0 == $keyHash && ($key !== $m.$key0 ? 0 : 1))) { - $m = $m.$next12; - } - return $m; +onciu_RewritableJavascript$PROXY$11_247 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_247_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_IdentityHashMap_findNullKeyEntry = $this => { - let $m; - $m = $this.$elementData1.data[0]; - while ($m !== null && $m.$key0 !== null) { - $m = $m.$next12; - } - return $m; +onciu_RewritableJavascript$PROXY$11_248 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_248_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_IdentityHashMap_put = ($this, $key, $value) => { - let var$3, var$4, var$5; - if ($key === null) { - var$3 = ju_IdentityHashMap_findNullKeyEntry($this); - if (var$3 === null) { - $this.$modCount2 = $this.$modCount2 + 1 | 0; - var$3 = ju_IdentityHashMap_createHashedEntry($this, null, 0, 0); - var$4 = $this.$elementCount2 + 1 | 0; - $this.$elementCount2 = var$4; - if (var$4 > $this.$threshold4) - ju_IdentityHashMap_rehash($this); - } - } else { - var$4 = jl_Object_identity($key); - var$5 = var$4 & ($this.$elementData1.data.length - 1 | 0); - var$3 = ju_IdentityHashMap_findNonNullKeyEntry($this, $key, var$5, var$4); - if (var$3 === null) { - $this.$modCount2 = $this.$modCount2 + 1 | 0; - var$3 = ju_IdentityHashMap_createHashedEntry($this, $key, var$5, var$4); - var$4 = $this.$elementCount2 + 1 | 0; - $this.$elementCount2 = var$4; - if (var$4 > $this.$threshold4) - ju_IdentityHashMap_rehash($this); - } - } - $key = var$3.$value9; - var$3.$value9 = $value; - return $key; +onciu_RewritableJavascript$PROXY$11_249 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_249_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_IdentityHashMap_createHashedEntry = ($this, $key, $index, $hash) => { - let $entry, var$5; - $entry = new ju_IdentityHashMap$HashEntry; - ju_MapEntry__init_($entry, $key, null); - $entry.$origKeyHash0 = $hash; - var$5 = $this.$elementData1.data; - $entry.$next12 = var$5[$index]; - var$5[$index] = $entry; - return $entry; +onciu_RewritableJavascript$PROXY$11_250 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_250_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -ju_IdentityHashMap_rehash = $this => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = $this.$elementData1.data.length; - var$1 = ju_IdentityHashMap_calculateCapacity(!var$1 ? 1 : var$1 << 1); - var$2 = $rt_createArray(ju_IdentityHashMap$HashEntry, var$1); - var$3 = var$2.data; - var$4 = 0; - var$5 = var$1 - 1 | 0; - while (true) { - var$6 = $this.$elementData1.data; - if (var$4 >= var$6.length) - break; - var$7 = var$6[var$4]; - var$6[var$4] = null; - while (var$7 !== null) { - var$1 = var$7.$origKeyHash0 & var$5; - var$8 = var$7.$next12; - var$7.$next12 = var$3[var$1]; - var$3[var$1] = var$7; - var$7 = var$8; - } - var$4 = var$4 + 1 | 0; - } - $this.$elementData1 = var$2; - ju_IdentityHashMap_computeThreshold($this); -}; -function oavrd_DFA$1() { - jl_Object.call(this); - this.$this$019 = null; -} -let oavrd_DFA$1_compare = ($this, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - return var$1.$stateNumber0 - var$2.$stateNumber0 | 0; -}; -function oavr_LexerNoViableAltException() { - let a = this; oavr_RecognitionException.call(a); - a.$startIndex1 = 0; - a.$deadEndConfigs = null; -} -let oavr_LexerNoViableAltException_getInputStream = $this => { - return $this.$input; +onciu_RewritableJavascript$PROXY$11_251 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_251_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oavr_LexerNoViableAltException_toString = $this => { - let $symbol, var$2, var$3, var$4, var$5, var$6, var$7, var$8; - $symbol = $rt_s(4); - var$2 = $this.$startIndex1; - if (var$2 >= 0 && var$2 < (oavr_LexerNoViableAltException_getInputStream($this)).$size4) { - $symbol = oavr_LexerNoViableAltException_getInputStream($this); - var$2 = $this.$startIndex1; - $symbol = $symbol.$getText0(oavrm_Interval_of(var$2, var$2)); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = (jl_String_toCharArray($symbol)).data; - var$2 = var$4.length; - var$5 = 0; - while (var$5 < var$2) { - var$6 = var$4[var$5]; - if (var$6 == 9) - jl_AbstractStringBuilder_append(var$3, $rt_s(4416)); - else if (var$6 == 10) - jl_AbstractStringBuilder_append(var$3, $rt_s(4417)); - else if (var$6 != 13) - jl_AbstractStringBuilder_append0(var$3, var$6); - else - jl_AbstractStringBuilder_append(var$3, $rt_s(4419)); - var$5 = var$5 + 1 | 0; - } - $symbol = jl_AbstractStringBuilder_toString(var$3); - } - var$7 = ju_Locale_getDefault(); - var$4 = $rt_createArray(jl_Object, 2); - var$8 = var$4.data; - var$8[0] = jl_Class_getSimpleName($rt_cls(oavr_LexerNoViableAltException)); - var$8[1] = $symbol; - return jl_String_format0(var$7, $rt_s(7738), var$4); -}; -function oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_01130 = null; -} -let oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01130; - return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); -}; -function onciap_DefaultPatternStringifier$apply$lambda$_3_0() { - jl_Object.call(this); - this.$_0150 = null; -} -let onciap_DefaultPatternStringifier$apply$lambda$_3_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0150.$expr3, var$1); -}; -function onciap_DefaultPatternStringifier$apply$lambda$_3_1() { - jl_Object.call(this); - this.$_0685 = null; -} -let onciap_DefaultPatternStringifier$apply$lambda$_3_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0685; - var$3 = !var$1.$containsIs() ? $rt_s(91) : $rt_s(441); - var$1 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$2.$expr3, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), var$1); - return jl_AbstractStringBuilder_toString(var$2); -}; -function onciap_DefaultPatternStringifier$apply$lambda$_3_2() { - jl_Object.call(this); - this.$_07 = null; -} -let onciap_DefaultPatternStringifier$apply$lambda$_3_2_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_07.$expr3, var$1); -}; -function onciap_DefaultPatternStringifier$apply$lambda$_3_3() { - jl_Object.call(this); - this.$_0874 = null; -} -let onciap_DefaultPatternStringifier$apply$lambda$_3_3_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultPatternStringifier_stringifyPredicate(var$0.$_0874, var$1); +onciu_RewritableJavascript$PROXY$11_252 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_252_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciap_DefaultPatternStringifier$apply$lambda$_3_4 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_3_4_apply = var$0 => { - return $rt_s(4); -}; -function onciap_DefaultPatternStringifier$apply$lambda$_6_0() { - jl_Object.call(this); - this.$_0513 = null; -} -let onciap_DefaultPatternStringifier$apply$lambda$_6_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultPatternStringifier_apply0(var$0.$_0513, var$1); -}; -function onciap_DefaultPatternStringifier$apply$lambda$_8_0() { - jl_Object.call(this); - this.$_0995 = null; -} -let onciap_DefaultPatternStringifier$apply$lambda$_8_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultPatternStringifier_stringifyPredicate(var$0.$_0995, var$1); -}; -function oavrm_FlexibleHashMap$Entry() { - let a = this; jl_Object.call(a); - a.$key6 = null; - a.$value19 = null; -} -let oavrm_FlexibleHashMap$Entry_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append(var$1, oavra_ATNConfig_toString($this.$key6)); - jl_AbstractStringBuilder_append(var$1, $rt_s(91)); - jl_AbstractStringBuilder_append(var$1, ju_BitSet_toString($this.$value19)); - return jl_AbstractStringBuilder_toString(var$1); +onciu_RewritableJavascript$PROXY$11_253 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_253_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SymbolUse$ = $rt_classWithoutFields(), -oncias_SymbolUse$_MODULE$ = null, -oncias_SymbolUse$__clinit_ = () => { - oncias_SymbolUse$_MODULE$ = new oncias_SymbolUse$; +onciu_RewritableJavascript$PROXY$11_254 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_254_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SymbolUse$_apply = ($this, $variable) => { - let var$2; - var$2 = new oncias_SymbolUse; - onciu_Ref$_$callClinit(); - var$2.$use = onciu_Ref$_apply(onciu_Ref$_MODULE$, $variable); - return var$2; -}; -function oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_70_0() { - jl_Object.call(this); - this.$_01089 = null; -} -let oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_70_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_checkClauses(var$0.$_01089, var$1, s_None$_MODULE$); +onciu_RewritableJavascript$PROXY$11_255 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_255_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncia_SingleQuery$containsUpdates$lambda$_57_0 = $rt_classWithoutFields(), -oncia_SingleQuery$containsUpdates$lambda$_57_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_SubqueryCall) ? (var$1.$innerQuery()).$containsUpdates() : !(var$1 instanceof oncia_CallClause) ? (!$rt_isInstance(var$1, oncia_UpdateClause) ? 0 : 1) : var$1.$containsNoUpdates() ? 0 : 1); -}; -function oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0() { - jl_Object.call(this); - this.$_0775 = null; -} -let oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0775; - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2.$expression()), var$1); - oncius_package$_$callClinit(); - var$2 = oncius_package$_MODULE$; - return oncius_TypeSpec_unwrapLists(oncius_TypeSpec_constrain(var$1, oncius_package$_CTList(var$2, oncius_package$_CTAny(var$2)))); +onciu_RewritableJavascript$PROXY$11_256 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_256_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncias_SemanticState$expressionType$lambda$_48_0 = $rt_classWithoutFields(), -oncias_SemanticState$expressionType$lambda$_48_0_apply = var$0 => { - let var$1; - var$1 = oncias_ExpressionTypeInfo$_MODULE$; - oncius_TypeSpec$_$callClinit(); - return oncias_ExpressionTypeInfo$_apply(var$1, oncius_TypeSpec$_all(oncius_TypeSpec$_MODULE$), s_None$_MODULE$); +onciu_RewritableJavascript$PROXY$7_674 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_674_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowFunctionsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5], var$3[6].$value3, var$3[7], var$3[8]); }, -oncias_ExpressionTypeInfo$ = $rt_classWithoutFields(), -oncias_ExpressionTypeInfo$_MODULE$ = null, -oncias_ExpressionTypeInfo$__clinit_ = () => { - oncias_ExpressionTypeInfo$_MODULE$ = new oncias_ExpressionTypeInfo$; +onciu_RewritableJavascript$PROXY$7_675 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_675_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_ShowProceduresClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3], var$3[4], var$3[5].$value3, var$3[6], var$3[7]); }, -oncias_ExpressionTypeInfo$_apply = ($this, $specified, $expected) => { - let var$3; - var$3 = new oncias_ExpressionTypeInfo; - var$3.$specified = $specified; - var$3.$expected2 = $expected; - return var$3; +onciu_RewritableJavascript$PROXY$7_676 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_676_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_TerminateTransactionsClause_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3].$value3, var$3[4], var$3[5], var$3[6]); }, -oncia_SingleQuery$isCorrelated$lambda$_60_0 = $rt_classWithoutFields(), -oncia_SingleQuery$isCorrelated$lambda$_60_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1.$graphReference2.$dependencies())); +onciu_RewritableJavascript$PROXY$7_679 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_679_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_DynamicLabelExpression_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -oncia_SingleQuery$importColumns$lambda$_63_0 = $rt_classWithoutFields(), -oncia_SingleQuery$importColumns$lambda$_63_0_apply = (var$0, var$1) => { - return var$1.$name(); -}; -function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer66 = null; - a.$allSymbolDefinitions$1 = null; -} -let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2_applyOrElse = ($this, $x1, $default) => { - let $maybeVariable, $maybeProperties, $variable; - if ($x1 instanceof oncie_NodePattern) { - $x1 = $x1; - $maybeVariable = $x1.$variable6; - $maybeProperties = $x1.$properties5; - $x1 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_0; - $x1.$_01096 = $this; - $x1.$_1368 = $maybeVariable; - $x1.$_2122 = $maybeProperties; - return $x1; - } - if (!($x1 instanceof oncie_RelationshipPattern)) { - if (!($x1 instanceof oncie_NamedPatternPart)) - return s_PartialFunction$_fallback_fn; - $variable = $x1.$variable7; - $x1 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_2; - $x1.$_0974 = $variable; - return $x1; - } - $x1 = $x1; - $maybeVariable = $x1.$variable5; - $maybeProperties = $x1.$properties4; - $x1 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_1; - $x1.$_0456 = $this; - $x1.$_1159 = $maybeVariable; - $x1.$_255 = $maybeProperties; - return $x1; +onciu_RewritableJavascript$PROXY$7_681 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_681_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ReduceScope__init_(var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncia_OrderBy$checkIllegalOrdering$lambda$_11_0 = $rt_classWithoutFields(), -oncia_OrderBy$checkIllegalOrdering$lambda$_11_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncie_Expression_containsAggregate(var$1.$expression())); +onciu_RewritableJavascript$PROXY$7_682 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_682_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_ExtractScope__init_(var$3[0], var$3[1], var$3[2], var$3[3]); }, -oncia_OrderBy$checkIllegalOrdering$lambda$_11_1 = $rt_classWithoutFields(), -oncia_OrderBy$checkIllegalOrdering$lambda$_11_1_apply = (var$0, var$1) => { - return var$1.$expression(); -}; -function oncia_OrderBy$checkIllegalOrdering$lambda$_11_2() { - jl_Object.call(this); - this.$_0959 = null; -} -let oncia_OrderBy$checkIllegalOrdering$lambda$_11_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0959; - oncia_AmbiguousAggregation$_$callClinit(); - var$3 = onciu_Foldable_folder$(var$1.$expression()); - var$1 = new oncie_Expression$TreeAcc; - s_package$_$callClinit(); - oncie_Expression$TreeAcc__init_(var$1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), oncie_Expression$TreeAcc$_apply$default$2(oncie_Expression$TreeAcc$_MODULE$)); - var$4 = new oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1; - var$4.$aggregationGroupingExpressions$1 = var$2; - return (onciu_Foldable$Folder_treeFold(var$3, var$1, var$4)).$data1; +onciu_RewritableJavascript$PROXY$7_683 = $rt_classWithoutFields(); +let onciu_RewritableJavascript$PROXY$7_683_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Pattern$ForMatch__init_(var$3[0], var$3[1]); }, -oncia_Order$ = $rt_classWithoutFields(), -oncia_Order$_MODULE$ = null, -oncia_Order$__clinit_ = () => { - oncia_Order$_MODULE$ = new oncia_Order$; +onciu_RewritableJavascript$PROXY$7_685 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_685_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_Pattern$ForUpdate_copy(var$2, var$3[0], var$3[1]); }, -oncia_OrderBy$checkIllegalOrdering$lambda$_11_3 = $rt_classWithoutFields(), -oncia_OrderBy$checkIllegalOrdering$lambda$_11_3_apply = (var$0, var$1) => { - return var$1.$asCanonicalStringVal(); +onciu_RewritableJavascript$PROXY$7_687 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_687_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_FilterScope__init_(var$3[0], var$3[1], var$3[2]); }, -oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0 = $rt_classWithoutFields(), -oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0_apply = (var$0, var$1) => { - return var$1.$asCanonicalStringVal(); +onciu_RewritableJavascript$PROXY$7_688 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_688_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncia_CommandResultItem__init_(var$3[0], var$3[1], var$3[2]); }, -oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0 = $rt_classWithoutFields(), -oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0_apply = (var$0, var$1) => { - return var$1.$asCanonicalStringVal(); +onciu_RewritableJavascript$PROXY$7_690 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_690_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_DynamicRelTypeExpression_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -oncie_MapExpression$asCanonicalStringVal$lambda$_5_0 = $rt_classWithoutFields(), -oncie_MapExpression$asCanonicalStringVal$lambda$_5_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = var$2.$name5; - var$1 = var$1.$asCanonicalStringVal(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(9)), var$1); - return jl_AbstractStringBuilder_toString(var$2); -}; -function onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0() { - jl_Object.call(this); - this.$_0538 = null; -} -let onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0538.$expr6, var$1); +onciu_RewritableJavascript$PROXY$9_257 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_257_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1 = $rt_classWithoutFields(), -onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$9_258 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_258_numParameters = var$1 => { + return (jl_Integer_valueOf(4)).$value4; }, -onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_0 = $rt_classWithoutFields(), -onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_1 = $rt_classWithoutFields(), -onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_2 = $rt_classWithoutFields(), -oncifp_ResolvedCall$argumentCheck$lambda$_28_0 = $rt_classWithoutFields(), -oncifp_ResolvedCall$argumentCheck$lambda$_28_0_apply = (var$0, var$1) => { - return var$1.$default2; +onciu_RewritableJavascript$PROXY$9_259 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_259_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -oncifp_ResolvedCall$argumentCheck$lambda$_28_1 = $rt_classWithoutFields(), -oncifp_ResolvedCall$argumentCheck$lambda$_28_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - var$3 = oncias_SemanticExpressionCheck$_check0(var$3, oncie_Expression$SemanticContext$Results$_MODULE$, var$1); - var$4 = oncias_SemanticExpressionCheck$_MODULE$; - var$5 = new oncifp_ResolvedCall$$anonfun$argumentCheck$2$lambda$_62_0; - var$5.$_01037 = var$2; - return oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_expectType$(var$4, var$5, var$1)); +onciu_RewritableJavascript$PROXY$11_257 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_257_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncifp_ResolvedCall$argumentCheck$lambda$_28_2 = $rt_classWithoutFields(), -oncifp_ResolvedCall$argumentCheck$lambda$_28_2_apply = (var$0, var$1, var$2) => { - return var$1.$chain(var$2); +onciu_RewritableJavascript$PROXY$11_258 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_258_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncifp_ResolvedCall$argumentCheck$lambda$_28_3 = $rt_classWithoutFields(), -oncifp_ResolvedCall$argumentCheck$lambda$_28_3_apply = (var$0, var$1) => { - return var$1.$typ.$normalizedCypherTypeString(); +onciu_RewritableJavascript$PROXY$11_259 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_259_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncifp_ResolvedCall$argumentCheck$lambda$_28_4 = $rt_classWithoutFields(), -oncifp_ResolvedCall$argumentCheck$lambda$_28_4_apply = var$0 => { - return $rt_s(4); +onciu_RewritableJavascript$PROXY$7_697 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_697_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncil_LabelExpression$Conjunctions_copy(var$2, var$3[0], var$3[1].$value3, var$3[2]); }, -oncifp_ResolvedCall$argumentCheck$lambda$_28_5 = $rt_classWithoutFields(), -oncifp_ResolvedCall$argumentCheck$lambda$_28_5_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7053)), var$1); - return jl_AbstractStringBuilder_toString(var$2); -}; -function oncifp_ResolvedCall$resultCheck$lambda$_29_0() { - jl_Object.call(this); - this.$_0409 = null; -} -let oncifp_ResolvedCall$resultCheck$lambda$_29_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0409.$callOutputTypes.$get2(var$1.$outputName); - var$3 = new oncia_ProcedureResultItem$semanticCheck$lambda$_58_0; - var$3.$_0544 = var$1; - var$2 = s_Option_map(var$2, var$3); - var$3 = new oncia_ProcedureResultItem$semanticCheck$lambda$_58_1; - var$3.$_01138 = var$1; - return s_Option_getOrElse(var$2, var$3); -}; -function oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0() { +jli_SerializedLambda = $rt_classWithoutFields(), +oti_Structure = $rt_classWithoutFields(), +otr_RuntimeObject = $rt_classWithoutFields(oti_Structure); +function jusi_AllMatchConsumer() { let a = this; jl_Object.call(a); - a.$_0864 = null; - a.$_1296 = null; -} -let oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$0.$_0864; - var$2 = var$0.$_1296; - oncia_ProjectionClause$_$callClinit(); - if (var$1 === null) - var$1 = sci_Nil$_MODULE$; - else { - var$1 = var$1.$items0.$filter1(new oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_0); - var$3 = new oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_1; - var$3.$_0171 = var$2; - var$1 = var$1.$map(var$3); - } - return var$1; -}; -function oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0() { - jl_Object.call(this); - this.$_0196 = null; -} -let oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0196; - oncias_package$_$callClinit(); - return oncias_SemanticCheckResult__init_(var$1, var$2.$apply2(var$1)); -}, -oncias_SemanticPatternCheck$$anonfun$3 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncias_SemanticPatternCheck$$anonfun$3_applyOrElse = ($this, $x, $default) => { - let var$3; - var$3 = onciu_Foldable_folder$($x.$expression()); - sr_ClassTag$_$callClinit(); - return (onciu_Foldable$Folder_findAllByClass(var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property)))).$map(new oncias_SemanticPatternCheck$$anonfun$3$applyOrElse$lambda$_0_0); -}; -function oncia_Return$checkVariableScope$lambda$_88_0() { - jl_Object.call(this); - this.$_0763 = null; -} -let oncia_Return$checkVariableScope$lambda$_88_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0763; - var$3 = var$2.$returnItems2; - if (var$3 !== null && var$3.$includeExisting0 && var$1.$currentScope.$elem0.$symbolTable.$isEmpty()) { - var$1 = new sci_$colon$colon; - oncias_SemanticError$_$callClinit(); - sci_$colon$colon__init_0(var$1, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7739), var$2.$position29), sci_Nil$_MODULE$); - } else { - s_package$_$callClinit(); - var$1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - } - return var$1; -}; -function oncias_SemanticPatternCheck$$check$lambda$_44_0() { - jl_Object.call(this); - this.$_0723 = null; + a.$matched = 0; + a.$predicate4 = null; } -let oncias_SemanticPatternCheck$$check$lambda$_44_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0723; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticPatternCheck$_declareVariables0(oncias_SemanticPatternCheck$_MODULE$, var$2, var$1); +let jusi_AllMatchConsumer_test = ($this, $t) => { + if (!$this.$predicate4.$test($t)) + $this.$matched = 0; + return $this.$matched; }; -function oncias_SemanticPatternCheck$$check$lambda$_44_1() { +function oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0() { jl_Object.call(this); - this.$_01025 = null; + this.$_0343 = null; } -let oncias_SemanticPatternCheck$$check$lambda$_44_1_apply = (var$0, var$1) => { - let var$2; +let oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_01025; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, var$2, var$1); -}; -function oncias_SemanticPatternCheck$$check$lambda$_44_2() { - jl_Object.call(this); - this.$_0541 = null; -} -let oncias_SemanticPatternCheck$$check$lambda$_44_2_apply = var$0 => { - let var$1; - var$1 = var$0.$_0541; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling_semanticCheckFold$(oncias_SemanticPatternCheck$_MODULE$, var$1.$patternParts(), new oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_87_0); -}; -function oncias_SemanticPatternCheck$$check$lambda$_44_3() { - let a = this; jl_Object.call(a); - a.$_01167 = null; - a.$_1390 = null; -} -let oncias_SemanticPatternCheck$$check$lambda$_44_3_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - a: { - b: { - c: { - d: { - var$1 = var$0.$_01167; - var$2 = var$0.$_1390; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = oncie_Pattern$SemanticContext$Create$_MODULE$; - if (var$1 !== null) { - if (jl_Object_equals(var$1, var$4)) - break c; - else - break d; - } - if (var$4 === null) - break c; - } - var$4 = oncie_Pattern$SemanticContext$Insert$_MODULE$; - if (var$1 !== null) { - if (jl_Object_equals(var$1, var$4)) - break c; - else - break b; - } - if (var$4 !== null) - break b; - } - var$5 = 0; - break a; - } - var$5 = 1; - } - var$1 = new oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_89_0; - var$1.$_0447 = var$2; - return oncias_SemanticCheck$_when(var$3, var$5, var$1); + var$2 = var$0.$_0343; + var$3 = new onciu_Foldable$TraverseChildren; + var$4 = sci_$colon$colon__init_(var$1, sci_$colon$colon__init_(var$2.$position(), sci_Nil$_MODULE$)); + onciu_InputPosition$_$callClinit(); + onciu_Foldable$TraverseChildren__init_0(var$3, sc_AbstractIterable_max(var$4, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$))); + return var$3; }, -oncia_Delete$warnAboutDeletingLabels$lambda$_64_0 = $rt_classWithoutFields(), -oncia_Delete$warnAboutDeletingLabels$lambda$_64_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncil_LabelExpressionPredicate); +scm_ArrayDeque$$anon$1 = $rt_classWithoutFields(scm_GrowableBuilder), +scm_ArrayDeque$$anon$1_sizeHint = ($this, $size) => { + scm_ArrayDeque_ensureSize($this.$elems2, $size); }, -oncia_Delete$warnAboutDeletingLabels$lambda$_64_1 = $rt_classWithoutFields(), -oncia_Delete$warnAboutDeletingLabels$lambda$_64_1_apply = (var$0, var$1) => { +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0 = $rt_classWithoutFields(), +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0_apply = (var$0, var$1) => { var$1 = var$1; - oncias_SemanticError$_$callClinit(); - return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7740), var$1.$position()); -}, -oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0 = $rt_classWithoutFields(), -oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0_apply = (var$0, var$1) => { - return var$1.$semanticCheck(); -}, -oncia_Remove$$anonfun$15 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_Remove$$anonfun$15_applyOrElse = ($this, $x1, $default) => { - if ($x1 instanceof oncia_RemoveLabelItem && 1 == $x1.$containsIs0) - return jl_Boolean_valueOf(1); - return s_PartialFunction$_fallback_fn; -}, -oncia_Remove$$anonfun$16 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_Remove$$anonfun$16_applyOrElse = ($this, $x2, $default) => { - let $labels, $dynamicLabels; - if ($x2 instanceof oncia_RemoveLabelItem) { - $x2 = $x2; - $labels = $x2.$labels1; - $dynamicLabels = $x2.$dynamicLabels0; - if (($labels.$length() + $dynamicLabels.$length() | 0) > 1) - return jl_Boolean_valueOf(1); - } - return s_PartialFunction$_fallback_fn; -}; -function oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_64_0() { - jl_Object.call(this); - this.$_0597 = null; -} -let oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_64_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0597; - var$2 = new onciap_Prettifier; - var$3 = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_ExpressionStringifier$_failingExtender, 0, 0, 0, 0); - onciap_Prettifier$_$callClinit(); - onciap_Prettifier__init_(var$2, var$3, onciap_Prettifier$_apply$default$2(onciap_Prettifier$_MODULE$), 1); - var$2 = onciap_Prettifier_prettifyRemoveItems(var$2, var$1.$items4.$flatMap(new oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_84_0)); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_UpdateClause_mixingIsWithMultipleLabelsMessage$(var$1, $rt_s(5088), var$2), var$1.$position110)); -}; -function oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_65_0() { - jl_Object.call(this); - this.$_01164 = null; -} -let oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_65_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = (var$0.$_01164.$pattern7.$patternParts0.$map(new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_0)).$toList(); - var$3 = sci_Nil$_MODULE$; - var$4 = var$3; - while (true) { - if (sci_List_equals(sci_Nil$_MODULE$, var$2)) { - var$5 = s_Tuple2__init_(sci_List_reverse(var$3), sci_List_reverse(var$4)); - var$3 = s_Tuple2__init_(var$5.$_10, var$5.$_20); - var$2 = var$3.$_10; - var$4 = var$3.$_20; - var$2 = sc_AbstractIterable_groupMap(sci_List_flatMap(var$2, new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_1), new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_2, new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_3); - var$4 = sc_AbstractIterable_toSet(sci_List_flatMap(var$4, new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_4)); - var$3 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_5; - var$3.$_0260 = var$4; - var$3.$_1101 = var$1; - var$1 = var$2.$flatMap(var$3); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncias_SemanticCheck$$error$lambda$_3_0; - var$4.$_0821 = var$1; - return oncias_SemanticCheck$_fromFunction(var$2, var$4); - } - if (!(var$2 instanceof sci_$colon$colon)) - $rt_throw(s_MatchError__init_(var$2)); - var$2 = var$2; - var$5 = var$2.$head1; - var$2 = var$2.$next6; - if (var$5 instanceof oncie_PathConcatenation) { - var$2 = (var$5.$factors0.$toList()).$concat(var$2); - continue; - } - if (var$5 instanceof oncie_ParenthesizedPath) { - var$2 = sci_List_$colon$colon(var$2, var$5.$part0.$element()); - continue; - } - if (var$5 instanceof oncie_QuantifiedPath) { - var$3 = sci_List_$colon$colon(var$3, var$5); - continue; - } - if (!(var$5 instanceof oncie_SimplePattern)) - break; - var$4 = sci_List_$colon$colon(var$4, var$5); - } - $rt_throw(s_MatchError__init_(var$5)); + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Results$_MODULE$, var$1); }, -oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0 = $rt_classWithoutFields(), -oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0_apply = var$0 => { +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1 = $rt_classWithoutFields(), +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1_apply = var$0 => { oncias_SemanticCheck$_$callClinit(); return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1 = $rt_classWithoutFields(), -oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1_apply = (var$0, var$1) => { - return var$1.$semanticCheck(); -}; -function onciap_Prettifier$asString$lambda$_40_0() { - jl_Object.call(this); - this.$_0402 = null; -} -let onciap_Prettifier$asString$lambda$_40_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$0.$_0402.$useInCommands); -}; -function onciap_Prettifier$asString$lambda$_40_1() { - jl_Object.call(this); - this.$_0198 = null; -} -let onciap_Prettifier$asString$lambda$_40_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0198; - var$1 = onciap_Prettifier$IndentingQueryPrettifier_dispatch(var$2.$base, var$1); - var$3 = var$2.$NL0; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), var$3); - return jl_AbstractStringBuilder_toString(var$2); -}, -onciap_Prettifier$asString$lambda$_40_2 = $rt_classWithoutFields(), -onciap_Prettifier$asString$lambda$_40_2_apply = var$0 => { - return $rt_s(4); -}, -onciap_Prettifier$getStartOfCommand$1$lambda$_72_0 = $rt_classWithoutFields(), -onciap_Prettifier$getStartOfCommand$1$lambda$_72_0_apply = (var$0, var$1) => { +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2 = $rt_classWithoutFields(), +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - onciap_Prettifier$_$callClinit(); - var$1 = onciap_Prettifier$_escapeName1(onciap_Prettifier$_MODULE$, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 32); - return jl_AbstractStringBuilder_toString(var$2); + var$2 = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, var$1.$items2, new oncia_ProcedureResult$semanticCheck$lambda$_14_0); + oncias_OptionSemanticChecking$_$callClinit(); + return var$2.$chain(oncias_OptionSemanticChecking$_foldSemanticCheck$extension(oncias_OptionSemanticChecking$_MODULE$, var$1.$where10, new oncia_ProcedureResult$semanticCheck$lambda$_14_1)); }, -onciap_Prettifier$getStartOfCommand$1$lambda$_72_1 = $rt_classWithoutFields(), -onciap_Prettifier$getStartOfCommand$1$lambda$_72_1_apply = var$0 => { - return $rt_s(4); -}; -function onciap_Prettifier$propertiesToString$1$lambda$_68_0() { - jl_Object.call(this); - this.$_01186 = null; -} -function onciap_Prettifier$showClausesAsString$1$lambda$_82_0() { - jl_Object.call(this); - this.$_0655 = null; -} -let onciap_Prettifier$showClausesAsString$1$lambda$_82_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString5(var$0.$_0655, var$1); +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3 = $rt_classWithoutFields(), +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3_apply = var$0 => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }; -function onciap_Prettifier$showClausesAsString$1$lambda$_82_1() { +function oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4() { jl_Object.call(this); - this.$_011 = null; + this.$_0601 = null; } -let onciap_Prettifier$showClausesAsString$1$lambda$_82_1_apply = (var$0, var$1) => { +let oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_011.$NL0; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), var$1); - return jl_AbstractStringBuilder_toString(var$3); -}, -onciap_Prettifier$showClausesAsString$1$lambda$_82_2 = $rt_classWithoutFields(), -onciap_Prettifier$showClausesAsString$1$lambda$_82_2_apply = var$0 => { - return $rt_s(4); -}; -function oncia_PropertyResource() { - jl_Object.call(this); - this.$property5 = null; -} -let onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0 = $rt_classWithoutFields(), -onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - return onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, var$1, 0, 0); -}; -function oncia_LabelResource() { - jl_Object.call(this); - this.$label3 = null; -} -let onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_1 = $rt_classWithoutFields(), -onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_1_apply = (var$0, var$1) => { - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - return onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, var$1, 0, 0); -}; -function onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1() { - sr_AbstractPartialFunction.call(this); - this.$expr$1 = null; -} -let onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1_applyOrElse = ($this, $x1, $default) => { - let var$3, $cidrParam, $urlString, $urlParam, $cidrString; - var$3 = 0; - $cidrParam = null; - if ($x1 instanceof sci_$colon$colon) { - var$3 = 1; - $cidrParam = $x1; - $urlString = $cidrParam.$head1; - $urlParam = $cidrParam.$next6; - if ($urlString instanceof oncia_LoadAllQualifier && sci_List_equals(sci_Nil$_MODULE$, $urlParam)) - return $rt_s(7741); - } - if (var$3) { - $urlString = $cidrParam.$head1; - $cidrString = $cidrParam.$next6; - if ($urlString instanceof oncia_LoadUrlQualifier) { - $urlString = $urlString.$url2; - if ($urlString instanceof su_Left) { - $urlString = $urlString.$value6; - if (sci_List_equals(sci_Nil$_MODULE$, $cidrString)) { - $x1 = onciap_DefaultExpressionStringifier_quote($this.$expr$1, $urlString); - $default = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($default); - jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(7742)), $x1); - return jl_AbstractStringBuilder_toString($default); - } - } - } - } - if (var$3) { - $urlString = $cidrParam.$head1; - $cidrString = $cidrParam.$next6; - if ($urlString instanceof oncia_LoadUrlQualifier) { - $urlString = $urlString.$url2; - if ($urlString instanceof su_Right) { - $urlParam = $urlString.$value7; - if (sci_List_equals(sci_Nil$_MODULE$, $cidrString)) { - $x1 = onciap_DefaultExpressionStringifier_apply($this.$expr$1, $urlParam); - $default = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($default); - jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(7742)), $x1); - return jl_AbstractStringBuilder_toString($default); - } - } - } - } - if (var$3) { - $urlString = $cidrParam.$head1; - $urlParam = $cidrParam.$next6; - if ($urlString instanceof oncia_LoadCidrQualifier) { - $urlString = $urlString.$cidr; - if ($urlString instanceof su_Left) { - $cidrString = $urlString.$value6; - if (sci_List_equals(sci_Nil$_MODULE$, $urlParam)) { - $x1 = onciap_DefaultExpressionStringifier_quote($this.$expr$1, $cidrString); - $default = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($default); - jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(7743)), $x1); - return jl_AbstractStringBuilder_toString($default); - } - } - } - } - if (var$3) { - $urlString = $cidrParam.$head1; - $urlParam = $cidrParam.$next6; - if ($urlString instanceof oncia_LoadCidrQualifier) { - $urlString = $urlString.$cidr; - if ($urlString instanceof su_Right) { - $cidrParam = $urlString.$value7; - if (sci_List_equals(sci_Nil$_MODULE$, $urlParam)) { - $x1 = onciap_DefaultExpressionStringifier_apply($this.$expr$1, $cidrParam); - $default = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($default); - jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(7743)), $x1); - return jl_AbstractStringBuilder_toString($default); - } - } - } - } - return s_PartialFunction$$anon$1_apply($default, $x1); + var$2 = var$0.$_0601; + var$3 = new oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_0; + var$3.$_0852 = var$2; + var$1 = var$1.$map(var$3); + oncias_SemanticCheck$_$callClinit(); + return var$1.$foldLeft(oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$), new oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_1); }, -onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1_applyOrElse0 = ($this, $x, $default) => { - return onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1_applyOrElse($this, $x, $default); -}; -function onciap_Prettifier$asIndividualOptions$lambda$_43_0() { - jl_Object.call(this); - this.$_01055 = null; -} -let onciap_Prettifier$asIndividualOptions$lambda$_43_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_01055; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = onciap_Prettifier_backtick(var$2, var$3); - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7744)), var$3); - jl_AbstractStringBuilder_append0(var$3, 32); - jl_StringBuilder_append(var$3, var$1); - return jl_AbstractStringBuilder_toString(var$2); +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5 = $rt_classWithoutFields(), +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5_apply = var$0 => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -onciap_DefaultPatternStringifier$concatenate$lambda$_9_0 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$concatenate$lambda$_9_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1)); +oncias_SemanticCheckableIterableOnce$ = $rt_classWithoutFields(), +oncias_SemanticCheckableIterableOnce$_MODULE$ = null, +oncias_SemanticCheckableIterableOnce$__clinit_ = () => { + oncias_SemanticCheckableIterableOnce$_MODULE$ = new oncias_SemanticCheckableIterableOnce$; +}, +oncias_SemanticCheckableIterableOnce$_semanticCheck$extension = ($this, $$this) => { + return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, $$this, new oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0); }; -function onciap_DefaultPatternStringifier$concatenate$lambda$_9_1() { +function oncia_SetClause$clauseSpecificSemanticCheck$lambda$_67_0() { jl_Object.call(this); - this.$_0181 = null; -} -let onciap_DefaultPatternStringifier$concatenate$lambda$_9_1_apply = (var$0, var$1) => { - return sc_AbstractIterable_mkString(var$1, var$0.$_0181); -}; -function oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0() { - let a = this; jl_Object.call(a); - a.$_01010 = null; - a.$_1347 = null; + this.$_0128 = null; } -let oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0_apply = var$0 => { - return var$0.$_01010.$error2($rt_s(7662), var$0.$_1347.$position14); +let oncia_SetClause$clauseSpecificSemanticCheck$lambda$_67_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$0.$_0128; + var$2 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncia_SetClause$$anonfun$13); + var$3 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$(var$1), new oncia_SetClause$$anonfun$14); + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$2 = var$2 && var$3 ? 1 : 0; + var$5 = new oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_69_0; + var$5.$_0592 = var$1; + return oncias_SemanticCheck$_when(var$4, var$2, var$5); }, -onciap_DefaultExpressionStringifier$$anonfun$stringify$30$lambda$_57_0 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$$anonfun$stringify$30$lambda$_57_0_apply = (var$0, var$1) => { - return var$1; +oncias_SemanticCheckableOption$ = $rt_classWithoutFields(), +oncias_SemanticCheckableOption$_MODULE$ = null, +oncias_SemanticCheckableOption$_$callClinit = () => { + oncias_SemanticCheckableOption$_$callClinit = $rt_eraseClinit(oncias_SemanticCheckableOption$); + oncias_SemanticCheckableOption$__clinit_(); }, -onciap_DefaultExpressionStringifier$$anonfun$stringify$25$lambda$_52_0 = $rt_classWithoutFields(), -onciap_DefaultExpressionStringifier$$anonfun$stringify$25$lambda$_52_0_apply = (var$0, var$1) => { - return var$1; +oncias_SemanticCheckableOption$__clinit_ = () => { + let var$1; + var$1 = new oncias_SemanticCheckableOption$; + oncias_SemanticCheckableOption$_$callClinit(); + oncias_SemanticCheckableOption$_MODULE$ = var$1; +}, +oncias_SemanticCheckableOption$_semanticCheck$extension = ($this, $$this) => { + return s_Option_fold($$this, new oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0, new oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1); }; -function oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0() { +function oncia_Merge$clauseSpecificSemanticCheck$lambda$_75_0() { jl_Object.call(this); - this.$_0711 = null; + this.$_0469 = null; } -let oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0_apply = (var$0, var$1) => { +let oncia_Merge$clauseSpecificSemanticCheck$lambda$_75_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + var$2 = var$0.$_0469; + if (var$1.$semanticCheckHasRunOnce) { + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else + a: { + var$1 = onciu_Foldable$Folder_treeCollect(onciu_Foldable_folder$(onciu_Foldable$_FoldableAny(onciu_Foldable$_MODULE$, sci_$colon$colon__init_(var$2.$pattern8, sci_$colon$colon__init_(var$2.$actions, sci_Nil$_MODULE$)))), new oncia_Merge$$anonfun$12); + if (var$1 !== null) { + s_package$_$callClinit(); + var$2 = var$1.$isEmpty() ? s_None$_MODULE$ : s_Some__init_(s_Tuple2__init_(var$1.$head(), var$1.$tail())); + if (!s_Option_isEmpty(var$2)) { + var$1 = (var$2.$get1()).$_1(); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + var$1 = var$1.$position(); + var$6 = var$1.$offset(); + var$7 = var$1.$line(); + var$8 = var$1.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + var$5[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$6, var$7, var$8), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I48), + var$6, var$7, var$8)))), $rt_s(6694), var$1); + var$1 = oncias_SemanticCheck$_error(var$2, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); + break a; + } + } + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } + return var$1; +}, +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_0 = $rt_classWithoutFields(), +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_0_apply = var$0 => { + let var$1; + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_TypeSpec_union(oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))), oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$))); +}, +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_1 = $rt_classWithoutFields(), +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_UpdateClause) ? 0 : 1); +}, +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_2 = $rt_classWithoutFields(), +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_2_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0711; - var$1 = oncia_SubqueryCall$InTransactionsParameters_semanticCheck(var$1); - oncia_SubqueryCall$_$callClinit(); - var$3 = oncia_SubqueryCall$_findTransactionalSubquery(oncia_SubqueryCall$_MODULE$, var$2.$innerQuery()); - oncias_OptionSemanticChecking$_$callClinit(); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$5 = new oncia_SubqueryCall$checkNoNestedCallInTransactions$lambda$_21_0; - var$5.$_0426 = var$2; - return oncias_SemanticCheck_chain$(var$1, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$3, var$5)); + oncias_SemanticError$_$callClinit(); + var$2 = var$1.$name(); + var$1 = var$1.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + var$3 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$1.$offset(), var$1.$line(), var$1.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I01), + var$1.$offset(), var$1.$line(), var$1.$column()), ong_GqlParams$StringParam_clause, var$2)))); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6695)), var$2), $rt_s(6696)); + oncias_SemanticError__init_(var$4, var$3, jl_AbstractStringBuilder_toString(var$5), var$1); + return var$4; }; -function oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0() { +function oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_3() { jl_Object.call(this); - this.$_0814 = null; + this.$_0142 = null; } -let oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0814; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = var$1.$variable20; +let oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_3_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0142; + var$2 = new oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_93_0; + var$2.$_01024 = var$1; + return oncias_SemanticAnalysisTooling_withScopedState$(var$1, var$2); +}, +oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_0 = $rt_classWithoutFields(), +oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_0_apply = var$0 => { + let var$1; oncius_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(var$3, var$2.$declareVariable(var$4, var$1.$cypherType0.$invariant())); + var$1 = oncius_package$_MODULE$; + return oncius_TypeSpec_union(oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))), oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$))); }; -function oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_1() { +function oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_1() { jl_Object.call(this); - this.$_0294 = null; + this.$_0979 = null; } -let oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = (var$0.$_0294.$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap()).$get2(var$1.$originalName); - var$3 = new oncia_CommandResultItem$semanticCheck$lambda$_54_0; - var$3.$_0339 = var$1; - var$2 = s_Option_map(var$2, var$3); - var$3 = new oncia_CommandResultItem$semanticCheck$lambda$_54_1; - var$3.$_0909 = var$1; - return s_Option_getOrElse(var$2, var$3); +let oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_1_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0979; + var$2 = oncias_package$_MODULE$; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + return oncias_package$_liftSemanticErrorDefOption(var$2, oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1.$expression17)); }; -function oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0() { +function oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_2() { jl_Object.call(this); - this.$_060 = null; + this.$_0399 = null; } -let oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0_apply$mcZI$sp = (var$0, var$1) => { +let oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_2_apply = (var$0, var$1) => { let var$2; - var$2 = var$0.$_060; - return var$1 == (-2) && var$1 == var$2.$conf.$errorCharTokenType() ? 0 : 1; + var$2 = var$0.$_0399; + return oncius_TypeSpec_unwrapPotentialLists(oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(var$2, var$2.$expression17), var$1)); +}, +oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_0 = $rt_classWithoutFields(), +oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$features.$contains(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_MODULE$)); }; -function oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1() { +function oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_1() { jl_Object.call(this); - this.$_0883 = null; + this.$_0414 = null; } -let oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1_apply = (var$0, var$1) => { - return oncip_CypherErrorVocabulary_getDisplayName(var$0.$_0883, sr_BoxesRunTime_unboxToInt(var$1)); -}, -oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0_apply = var$0 => { - oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_BooleanType_covariant(oncius_package$_CTBoolean(oncius_package$_MODULE$)); +let oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; + var$1 = var$0.$_0414; + var$2 = var$1.$graphReference1; + if (!(var$2 instanceof oncia_GraphFunctionReference)) { + if (!(var$2 instanceof oncia_GraphDirectReference)) + $rt_throw(s_MatchError__init_(var$2)); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + var$2 = var$2; + var$3 = var$2.$functionInvocation1.$function1; + oncief_GraphByName$_$callClinit(); + if (jl_Object_equals(oncief_GraphByName$_MODULE$, var$3)) { + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + oncief_GraphByElementId$_$callClinit(); + if (jl_Object_equals(oncief_GraphByElementId$_MODULE$, var$3)) { + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + } else { + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$8 = var$7.data; + oncias_SemanticError$_$callClinit(); + var$9 = sci_$colon$colon__init_($rt_s(6697), sci_$colon$colon__init_($rt_s(6698), sci_$colon$colon__init_($rt_s(6699), sci_$colon$colon__init_($rt_s(6700), sci_Nil$_MODULE$)))); + var$10 = var$3.$name(); + oncius_package$_$callClinit(); + var$11 = (oncius_package$_CTGraphRef(oncius_package$_MODULE$)).$toString9; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6701)), var$11), $rt_s(6702)); + var$12 = jl_AbstractStringBuilder_toString(var$3); + var$11 = var$2.$functionInvocation1.$position7; + ong_GqlStatusInfoCodes_$callClinit(); + var$4 = ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22G03), var$11.$offset(), var$11.$line(), var$11.$column()); + var$3 = ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_22N01), var$11.$offset(), var$11.$line(), var$11.$column()), ong_GqlParams$StringParam_value, $rt_s(6703)); + ong_GqlParams$ListParam_$callClinit(); + var$8[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(var$4, ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam1(var$3, ong_GqlParams$ListParam_valueTypeList, scc_AsJavaExtensions$SeqHasAsJava_asJava(sj_CollectionConverters$_SeqHasAsJava(sj_CollectionConverters$_MODULE$, var$9))), ong_GqlParams$StringParam_valueType, + var$10)))), var$12, var$11); + var$4 = oncias_SemanticCheck$_error(var$5, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); + } + } + var$11 = var$2.$functionInvocation1.$args0; + var$2 = oncias_SemanticCheck_chain$(var$4, oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, var$11, new oncia_UseGraph$checkExpressions$lambda$_71_0)); + } + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_UseGraph$checkWorkingGraph$lambda$_69_0; + var$3.$_01142 = var$1; + return var$2.$chain(oncias_SemanticCheck$_fromFunctionWithContext(var$4, var$3)); }; -function oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$7$lambda$_177_0() { +function oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_2() { jl_Object.call(this); - this.$_0944 = null; + this.$_0957 = null; } -let oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$7$lambda$_177_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0944; - oncias_SemanticPatternCheck$_$callClinit(); - return oncias_SemanticCheckResult__init_(var$1, (var$2.$filter1(new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_0)).$map(new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_1)); +let oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_2_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0957; + var$2 = new oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_0; + var$3 = new oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_1; + var$3.$_058 = var$1; + var$4 = new oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_2; + var$4.$_0817 = var$1; + return oncias_SemanticAnalysisTooling_whenState$(var$1, var$2, var$3, var$4); }; -function oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0() { +function oncia_Match$clauseSpecificSemanticCheck$lambda$_69_0() { jl_Object.call(this); - this.$_0520 = null; + this.$_0751 = null; } -let oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0520; +let oncia_Match$clauseSpecificSemanticCheck$lambda$_69_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0751; + var$2 = oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(oncias_SemanticCheckableIterableOnce$_MODULE$, var$1.$hints); + var$3 = var$1.$hints.$collect(new oncia_Match$$anonfun$5); s_Predef$_$callClinit(); - return oncip_CypherErrorVocabulary_getDisplayName(var$2, sr_BoxesRunTime_unboxToInt(var$1)); -}; -function oncia_Union$$anonfun$defineUnionVariables$6$lambda$_63_0() { - let a = this; jl_Object.call(a); - a.$_0156 = null; - a.$_160 = null; - a.$_230 = null; -} -let oncia_Union$$anonfun$defineUnionVariables$6$lambda$_63_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0156; - var$3 = var$0.$_160; - var$4 = var$0.$_230; - var$1 = oncius_TypeSpec_union(var$2.$types1, var$1.$types1); - var$1 = oncias_SemanticState_declareVariable(var$3.$elem.$state, var$4.$unionVariable0, var$1, s_None$_MODULE$, 0, 1); - if (!(var$1 instanceof su_Left)) { - if (!(var$1 instanceof su_Right)) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = oncias_SemanticCheckResult__init_(var$1.$value7, var$3.$elem.$errors0); - } else { - var$1 = var$1.$value6; - var$2 = new oncias_SemanticCheckResult; - var$4 = var$3.$elem; - oncias_SemanticCheckResult__init_0(var$2, var$4.$state, var$4.$errors0.$prepended(var$1)); - } - var$3.$elem = var$2; - return sr_BoxedUnit_UNIT; + var$3 = (sc_StrictOptimizedIterableOps_collect$(sc_AbstractIterable_groupBy(var$3.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$)), new oncia_Match$uniqueHints$lambda$_74_0), new oncia_Match$$anonfun$6)).$toVector(); + var$4 = oncias_package$_MODULE$; + var$5 = new oncia_Match$uniqueHints$lambda$_74_1; + var$5.$_0158 = var$3; + var$2 = var$2.$chain(oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$4, var$5)); + var$3 = new oncia_Match$checkMatchMode$lambda$_76_0; + var$4 = new oncia_Match$checkMatchMode$lambda$_76_1; + var$4.$_0872 = var$1; + var$5 = new oncia_Match$checkMatchMode$lambda$_76_2; + var$5.$_01163 = var$1; + var$5.$_1395 = var$3; + var$4 = oncias_SemanticAnalysisTooling_whenState$(var$1, var$3, var$4, var$5); + var$3 = new oncia_Match$checkMatchMode$lambda$_76_3; + var$3.$_0980 = var$1; + var$4 = oncias_SemanticCheck_chain$(var$2, oncias_SemanticCheck_ifOkChain$(var$4, var$3)); + oncias_SemanticCheckableOption$_$callClinit(); + var$4 = oncias_SemanticCheck_chain$(var$4, oncias_SemanticCheckableOption$_semanticCheck$extension(oncias_SemanticCheckableOption$_MODULE$, var$1.$where4)); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_Match$checkHints$lambda$_79_0; + var$3.$_0879 = var$1; + var$4 = oncias_SemanticCheck_chain$(var$4, oncias_SemanticCheck$_fromFunctionWithContext(var$2, var$3)); + var$2 = oncias_package$_MODULE$; + var$3 = new oncia_Match$checkForCartesianProducts$lambda$_75_0; + var$3.$_0297 = var$1; + return oncias_SemanticCheck_chain$(var$4, oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3)); }, -oncie_Expression$ = $rt_classWithoutFields(), -oncie_Expression$_MODULE$ = null, -oncie_Expression$_DefaultTypeMismatchMessageGenerator = null, -oncie_Expression$__clinit_ = () => { - oncie_Expression$_MODULE$ = new oncie_Expression$; - oncie_Expression$_DefaultTypeMismatchMessageGenerator = new oncie_Expression$$_clinit_$lambda$_0_0; +oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_70_0 = $rt_classWithoutFields(), +oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_70_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); }; -function oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0() { +function onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0() { jl_Object.call(this); - this.$_0906 = null; + this.$_01087 = null; } -let oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0_apply = (var$0, var$1) => { - let var$2; +let onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0906; - return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); + return onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom(var$0.$_01087, var$1); }; -function oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_0() { - jl_Object.call(this); - this.$_0444 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0444; - oncias_SemanticExpressionCheck$_$callClinit(); - return jl_Boolean_valueOf(var$2.$contains((var$1.$_1()).$node1)); -}, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_1 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = (var$1.$_2()).$location; - return s_Option_getOrElse(s_Option_map(oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$2), new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_0), new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_1); -}, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_2 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_3 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_3_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - return var$1.$_2(); -}, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_4 = $rt_classWithoutFields(); -function oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_5() { +function onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1() { jl_Object.call(this); - this.$_03 = null; + this.$_0600 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_5_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_03; - oncias_SemanticExpressionCheck$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - return jl_Boolean_valueOf(s_Option_contains(var$2.$get2(var$3), var$1)); + return onciap_DefaultExpressionStringifier_stringifyLabelExpressionHalfAtom(var$0.$_0600, var$1); }, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_6 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_6_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - return s_Tuple2__init_(var$2, (var$1.$filterNot0(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_0)).$map(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_1)); +ju_LinkedHashMapIterator$EntryIterator = $rt_classWithoutFields(ju_LinkedHashMapIterator), +ju_LinkedHashMapIterator$EntryIterator_next = $this => { + ju_LinkedHashMapIterator_makeNext($this); + return $this.$currentEntry1; }; -function oncias_SemanticExpressionCheck$$anonfun$2() { +function oncie_Expression$$anonfun$arguments$1() { sr_AbstractPartialFunction.call(this); - this.$innerDefinitions$1 = null; + this.$$outer33 = null; } -let oncias_SemanticExpressionCheck$$anonfun$2_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5, var$6, var$7, var$8; +let oncie_Expression$$anonfun$arguments$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4; a: { - $x = $x; - if ($x !== null) { + if ($x1 instanceof oncie_Expression) b: { - var$3 = $x.$_1(); - var$4 = $x.$_2(); - var$5 = $this.$innerDefinitions$1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$6 = var$4.$name12; - var$7 = s_Tuple2__1$mcI$sp(oncias_SymbolUse_positionsAndUniqueIdString(var$4.$definition)); - if (var$5.$contains(var$6)) { - var$8 = var$5.$apply2(var$6); - var$6 = new oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_225_0; - var$6.$_01111 = var$7; - if (var$8.$exists(var$6)) { - var$7 = 1; + var$3 = $x1; + var$4 = $this.$$outer33; + if (var$3 !== null) { + if (var$3.$equals(var$4)) break b; - } + else + break a; } - var$7 = 0; - } - if (var$7) { - $x = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - $default = $this.$innerDefinitions$1.$apply2(var$3); - var$8 = new oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0; - var$8.$_0606 = var$4; - $x = s_Predef$ArrowAssoc$_$minus$greater$extension($x, var$3, (oncias_SymbolUse_asVariable(($default.$find3(var$8)).$get1())).$position4); - break a; + if (var$4 !== null) + break a; } - } - $x = $default.$apply2($x); + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); } - return $x; + $x1 = new oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0; + $x1.$_01107 = var$3; + return $x1; }, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_7 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_7_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0_apply = (var$0, var$1) => { + return var$1.$default2; +}, +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); if (var$1 === null) $rt_throw(s_MatchError__init_(var$1)); var$2 = var$1.$_1(); var$1 = var$1.$_2(); - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7745)), var$2), $rt_s(7746)); - return oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$4), var$1); + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Results$_MODULE$, var$1); + var$4 = oncias_SemanticExpressionCheck$_MODULE$; + var$5 = new oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0; + var$5.$_0405 = var$2; + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_expectType$(var$4, var$5, var$1)); +}, +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2_apply = (var$0, var$1, var$2) => { + return var$1.$chain(var$2); }; -function oncias_SemanticExpressionCheck$$anonfun$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$state$2 = null; - a.$x69$1 = null; +function oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3() { + jl_Object.call(this); + this.$_0226 = null; } -let oncias_SemanticExpressionCheck$$anonfun$1_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5; - a: { - $x = $x; - var$3 = oncias_SemanticState$ScopeLocation$_MODULE$; - var$4 = $this.$state$2.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - if (s_Option_isEmpty(oncias_SemanticState$ScopeLocation$_symbol$extension(var$3, (var$4.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $this.$x69$1))).$location, $x.$name4))) { - oncias_SemanticPatternCheck$_$callClinit(); - onciu_AnonymousVariableNameGenerator$_$callClinit(); - if (!(onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, $x.$name4) ? 0 : 1)) { - oncias_SemanticError$_$callClinit(); - $default = oncias_SemanticError$_MODULE$; - var$4 = $x.$name4; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(7747)), var$4), $rt_s(5556)); - $x = oncias_SemanticError$_apply($default, jl_AbstractStringBuilder_toString(var$5), $x.$position4); - break a; - } - } - $x = $default.$apply2($x); - } - return $x; +let oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3_apply = var$0 => { + return var$0.$_0226.$outputType1.$covariant(); }, -oncia_Where$ = $rt_classWithoutFields(), -oncia_Where$_MODULE$ = null, -oncia_Where$__clinit_ = () => { - oncia_Where$_MODULE$ = new oncia_Where$; +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(94)), $rt_s(6704)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncia_Where$_checkExpression = ($this, $expression) => { - let var$2, var$3, var$4; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $expression); - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = onciu_Foldable_folder$($expression); - sr_ClassTag$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(var$3, (onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property)))).$map(new oncia_Where$$checkExpression$lambda$_5_0))), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_Where$$checkExpression$lambda$_5_1, $expression)); +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5_apply = var$0 => { + return $rt_s(4); +}; +function oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6() { + let a = this; jl_Object.call(a); + a.$_0904 = null; + a.$_1308 = 0; + a.$_2101 = 0; + a.$_332 = null; + a.$_49 = null; +} +let oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; + var$1 = var$1; + var$2 = var$0.$_0904; + var$3 = var$0.$_1308; + var$4 = var$0.$_2101; + var$5 = var$0.$_332; + var$6 = var$0.$_49; + var$7 = oncias_SemanticCheckResult$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$8 = oncias_SemanticError$_MODULE$; + var$9 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + var$10 = var$5.$name16; + var$11 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$11); + var$12 = jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$11, $rt_s(6705)), var$3), $rt_s(6706)), var$4), $rt_s(6707)), var$10), $rt_s(4132)), var$5), $rt_s(6708)), var$3); + jl_AbstractStringBuilder_append0(var$12, 32); + jl_StringBuilder_append(var$12, var$6); + return oncias_SemanticCheckResult$_error(var$7, var$1, oncias_SemanticError$_apply(var$8, sc_StringOps$_stripMargin$extension(var$9, jl_AbstractStringBuilder_toString(var$11)), var$2.$position12)); }, -onciu_Foldable$FoldingBehavior = $rt_classWithoutFields(0); -function onciu_Foldable$SkipChildren() { +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7 = $rt_classWithoutFields(), +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7_apply = (var$0, var$1) => { + return var$1.$typ.$normalizedCypherTypeString(); +}, +oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0_apply = var$0 => { + let var$1; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +}, +oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + return oncias_SemanticExpressionCheck$FilteringExpressions$_failIfAggregating(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1); +}; +function oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0() { jl_Object.call(this); - this.$acc = null; + this.$_01076 = null; } -let onciu_Foldable$SkipChildren_productPrefix = $this => { - return $rt_s(7748); +let oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_01076; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$3 = var$1.$name(); + var$1 = var$1.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + var$4 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$1.$offset(), var$1.$line(), var$1.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N70), + var$1.$offset(), var$1.$line(), var$1.$column()), ong_GqlParams$StringParam_fun, var$3)))); + var$5 = new oncias_SemanticError; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(var$6, var$3), $rt_s(6709)); + oncias_SemanticError__init_(var$5, var$4, jl_AbstractStringBuilder_toString(var$6), var$1); + return oncias_package$_liftSemanticErrorDef(var$2, var$5); }, -onciu_Foldable$SkipChildren_productArity = $this => { - return 1; +oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6710), var$1.$position()); +}; +function oncie_VariableGrouping() { + let a = this; jl_Object.call(a); + a.$singleton = null; + a.$group0 = null; + a.$position148 = null; +} +let oncie_VariableGrouping_position = $this => { + return $this.$position148; }, -onciu_Foldable$SkipChildren_productElement = ($this, $x$1) => { +oncie_VariableGrouping_toString = $this => { + let var$1, var$2, var$3; + var$1 = $this.$singleton.$name4; + var$2 = $this.$group0.$name4; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6711)), var$1), $rt_s(6712)), var$2), 41); + return jl_AbstractStringBuilder_toString(var$3); +}, +oncie_VariableGrouping_copy = ($this, $singleton, $group, $position) => { + return oncie_VariableGrouping__init_($singleton, $group, $position); +}, +oncie_VariableGrouping_productPrefix = $this => { + return $rt_s(6713); +}, +oncie_VariableGrouping_productArity = $this => { + return 2; +}, +oncie_VariableGrouping_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$acc; + return $this.$singleton; + case 1: + return $this.$group0; default: } return sr_Statics_ioobe($x$1); }, -onciu_Foldable$SkipChildren_productIterator = $this => { +oncie_VariableGrouping_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Foldable$SkipChildren_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncie_VariableGrouping_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -onciu_Foldable$SkipChildren__init_0 = ($this, $acc) => { - $this.$acc = $acc; +oncie_VariableGrouping_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncie_VariableGrouping) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$singleton; + var$3 = $x$1.$singleton; + if (var$2 !== null) { + if (!oncie_Variable_equals(var$2, var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$group0; + $x$1 = $x$1.$group0; + if (var$3 !== null) { + if (!oncie_Variable_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncie_VariableGrouping)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; }, -onciu_Foldable$SkipChildren__init_ = var_0 => { - let var_1 = new onciu_Foldable$SkipChildren(); - onciu_Foldable$SkipChildren__init_0(var_1, var_0); - return var_1; +oncie_VariableGrouping_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); +}, +oncie_VariableGrouping__init_0 = ($this, $singleton, $group, $position) => { + $this.$singleton = $singleton; + $this.$group0 = $group; + $this.$position148 = $position; +}, +oncie_VariableGrouping__init_ = (var_0, var_1, var_2) => { + let var_3 = new oncie_VariableGrouping(); + oncie_VariableGrouping__init_0(var_3, var_0, var_1, var_2); + return var_3; }; -function onciu_Foldable$TraverseChildren() { +function oncius_TypeSpec$constrain$lambda$_21_0() { jl_Object.call(this); - this.$acc0 = null; + this.$_0691 = null; } -let onciu_Foldable$TraverseChildren_productPrefix = $this => { - return $rt_s(7749); +let oncius_TypeSpec$constrain$lambda$_21_0_apply = (var$0, var$1) => { + return oncius_TypeRange_constrain(var$1, var$0.$_0691); +}; +function onciu_Last$$anon$3() { + jl_Object.call(this); + this.$remaining2 = null; +} +let onciu_Last$$anon$3_iterator = $this => { + return $this; }, -onciu_Foldable$TraverseChildren_productArity = $this => { - return 1; +onciu_Last$$anon$3_isEmpty = $this => { + return sc_Iterator_isEmpty$($this); }, -onciu_Foldable$TraverseChildren_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$acc0; - default: - } - return sr_Statics_ioobe($x$1); +onciu_Last$$anon$3_toString = $this => { + return $rt_s(818); }, -onciu_Foldable$TraverseChildren_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_Last$$anon$3_foreach = ($this, $f) => { + sc_IterableOnceOps_foreach$($this, $f); }, -onciu_Foldable$TraverseChildren_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +onciu_Last$$anon$3_exists = ($this, $p) => { + return sc_IterableOnceOps_exists$($this, $p); }, -onciu_Foldable$TraverseChildren__init_0 = ($this, $acc) => { - $this.$acc0 = $acc; +onciu_Last$$anon$3_find = ($this, $p) => { + return sc_IterableOnceOps_find$($this, $p); }, -onciu_Foldable$TraverseChildren__init_ = var_0 => { - let var_1 = new onciu_Foldable$TraverseChildren(); - onciu_Foldable$TraverseChildren__init_0(var_1, var_0); - return var_1; -}; -function onciu_Foldable$TraverseChildrenNewAccForSiblings() { - let a = this; jl_Object.call(a); - a.$accumulatorForChildren = null; - a.$forSiblings = null; -} -let onciu_Foldable$TraverseChildrenNewAccForSiblings_productPrefix = $this => { - return $rt_s(7750); +onciu_Last$$anon$3_foldLeft = ($this, $z, $op) => { + return sc_IterableOnceOps_foldLeft$($this, $z, $op); }, -onciu_Foldable$TraverseChildrenNewAccForSiblings_productArity = $this => { - return 2; +onciu_Last$$anon$3_nonEmpty = $this => { + return sc_IterableOnceOps_nonEmpty$($this); }, -onciu_Foldable$TraverseChildrenNewAccForSiblings_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$accumulatorForChildren; - case 1: - return $this.$forSiblings; - default: - } - return sr_Statics_ioobe($x$1); +onciu_Last$$anon$3_size = $this => { + return sc_IterableOnceOps_size$($this); }, -onciu_Foldable$TraverseChildrenNewAccForSiblings_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +onciu_Last$$anon$3_copyToArray1 = ($this, $xs) => { + return sc_IterableOnceOps_copyToArray$($this, $xs); }, -onciu_Foldable$TraverseChildrenNewAccForSiblings_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +onciu_Last$$anon$3_copyToArray0 = ($this, $xs, $start) => { + return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); }, -onciu_Foldable$TraverseChildrenNewAccForSiblings__init_ = ($this, $accumulatorForChildren, $forSiblings) => { - $this.$accumulatorForChildren = $accumulatorForChildren; - $this.$forSiblings = $forSiblings; +onciu_Last$$anon$3_copyToArray = ($this, $xs, $start, $len) => { + return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); }, -onciu_Foldable$TraverseChildrenNewAccForSiblings__init_0 = (var_0, var_1) => { - let var_2 = new onciu_Foldable$TraverseChildrenNewAccForSiblings(); - onciu_Foldable$TraverseChildrenNewAccForSiblings__init_(var_2, var_0, var_1); - return var_2; +onciu_Last$$anon$3_to = ($this, $factory) => { + return $factory.$fromSpecific($this); }, -onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0 = $rt_classWithoutFields(), -onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0_apply = (var$0, var$1) => { - s_Predef$_$callClinit(); - return var$1; -}; -function oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_00() { - let a = this; jl_Object.call(a); - a.$_01102 = null; - a.$_1370 = null; -} -let oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0_apply0 = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_01102; - var$3 = var$0.$_1370; - if ($rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) - return var$1; - if (!(var$1 instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = var$1; - var$4 = var$2.$exceptionFactory3; - var$1 = var$1.$selector1.$prettified(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3998)), var$1), $rt_s(7751)); - var$2 = jl_AbstractStringBuilder_toString(var$2); - oncipau_Util$_$callClinit(); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3))); +onciu_Last$$anon$3_toList = $this => { + return sc_IterableOnceOps_toList$($this); }, -oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0 = $rt_classWithoutFields(), -oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0_apply0 = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - if (var$1 instanceof oncie_PatternPartWithSelector) - var$1 = var$1; - else { - if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) { - var$2 = new jl_IllegalStateException; - var$1 = jl_Object_getClass(var$1); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7752)), var$1); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); - } - var$2 = var$1; - var$1 = oncie_PatternPartWithSelector__init_(oncie_PatternPart$AllPaths__init_(var$2.$position()), var$2); +onciu_Last$$anon$3_toSeq = $this => { + return sc_IterableOnceOps_toSeq$($this); +}, +onciu_Last$$anon$3_toArray = ($this, $evidence$2) => { + return sc_IterableOnceOps_toArray$($this, $evidence$2); +}, +onciu_Last$$anon$3_knownSize = $this => { + return (-1); +}, +onciu_Last$$anon$3_hasNext = $this => { + return s_Option_isDefined($this.$remaining2); +}, +onciu_Last$$anon$3_next = $this => { + let $nel; + $nel = $this.$remaining2; + if ($nel instanceof s_Some) { + $nel = $nel.$value5; + $this.$remaining2 = s_None$_MODULE$; + return $nel.$head(); } - return var$1; + if (!jl_Object_equals(s_None$_MODULE$, $nel)) + $rt_throw(s_MatchError__init_($nel)); + $nel = new ju_NoSuchElementException; + jl_Throwable__init_($nel, $rt_s(821)); + $rt_throw($nel); }; -function oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1() { +function onciu_Fby$$anon$2() { jl_Object.call(this); - this.$_015 = null; + this.$remaining3 = null; } -let oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1_apply = var$0 => { - let var$1; - var$1 = var$0.$_015; - return oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, var$1); +let onciu_Fby$$anon$2_iterator = $this => { + return $this; }, -oncipvaf_StatementBuilder$exitCallClause$lambda$_68_00 = $rt_classWithoutFields(), -oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0_apply = (var$0, var$1) => { - return oncipv_Cypher5Parser$ProcedureArgumentContext_expression(var$1); +onciu_Fby$$anon$2_isEmpty = $this => { + return sc_Iterator_isEmpty$($this); }, -oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_00 = $rt_classWithoutFields(), -oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0_apply0 = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = new oncie_LabelName; - var$3 = var$1.$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelName__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); - return var$2; +onciu_Fby$$anon$2_toString = $this => { + return $rt_s(818); }, -oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0_apply0 = (var$0, var$1) => { - return var$1.$position22; +onciu_Fby$$anon$2_foreach = ($this, $f) => { + sc_IterableOnceOps_foreach$($this, $f); +}, +onciu_Fby$$anon$2_exists = ($this, $p) => { + return sc_IterableOnceOps_exists$($this, $p); +}, +onciu_Fby$$anon$2_find = ($this, $p) => { + return sc_IterableOnceOps_find$($this, $p); +}, +onciu_Fby$$anon$2_foldLeft = ($this, $z, $op) => { + return sc_IterableOnceOps_foldLeft$($this, $z, $op); +}, +onciu_Fby$$anon$2_nonEmpty = $this => { + return sc_IterableOnceOps_nonEmpty$($this); +}, +onciu_Fby$$anon$2_size = $this => { + return sc_IterableOnceOps_size$($this); +}, +onciu_Fby$$anon$2_copyToArray0 = ($this, $xs) => { + return sc_IterableOnceOps_copyToArray$($this, $xs); +}, +onciu_Fby$$anon$2_copyToArray = ($this, $xs, $start) => { + return sc_IterableOnceOps_copyToArray$0($this, $xs, $start); +}, +onciu_Fby$$anon$2_copyToArray1 = ($this, $xs, $start, $len) => { + return sc_IterableOnceOps_copyToArray$1($this, $xs, $start, $len); +}, +onciu_Fby$$anon$2_to = ($this, $factory) => { + return $factory.$fromSpecific($this); +}, +onciu_Fby$$anon$2_toList = $this => { + return sc_IterableOnceOps_toList$($this); +}, +onciu_Fby$$anon$2_toSeq = $this => { + return sc_IterableOnceOps_toSeq$($this); +}, +onciu_Fby$$anon$2_toArray = ($this, $evidence$2) => { + return sc_IterableOnceOps_toArray$($this, $evidence$2); +}, +onciu_Fby$$anon$2_knownSize = $this => { + return (-1); +}, +onciu_Fby$$anon$2_hasNext = $this => { + return s_Option_isDefined($this.$remaining3); +}, +onciu_Fby$$anon$2_next = $this => { + let $nel; + $nel = $this.$remaining3; + if ($nel instanceof s_Some) { + $nel = $nel.$value5; + $this.$remaining3 = $nel.$tailOption(); + return $nel.$head(); + } + if (!jl_Object_equals(s_None$_MODULE$, $nel)) + $rt_throw(s_MatchError__init_($nel)); + $nel = new ju_NoSuchElementException; + jl_Throwable__init_($nel, $rt_s(821)); + $rt_throw($nel); +}, +oavra_OrderedATNConfigSet = $rt_classWithoutFields(oavra_ATNConfigSet), +oavra_OrderedATNConfigSet__init_0 = $this => { + let var$1; + oavra_ATNConfigSet__init_1($this); + var$1 = new oavra_OrderedATNConfigSet$LexerConfigHashSet; + oavrm_ObjectEqualityComparator_$callClinit(); + oavra_ATNConfigSet$AbstractConfigHashSet__init_(var$1, oavrm_ObjectEqualityComparator_INSTANCE); + $this.$configLookup = var$1; +}, +oavra_OrderedATNConfigSet__init_ = () => { + let var_0 = new oavra_OrderedATNConfigSet(); + oavra_OrderedATNConfigSet__init_0(var_0); + return var_0; }; -function oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_10() { - jl_Object.call(this); - this.$_01021 = null; +function oavra_LexerATNConfig() { + let a = this; oavra_ATNConfig.call(a); + a.$lexerActionExecutor = null; + a.$passedThroughNonGreedyDecision = 0; } -let oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1_apply = var$0 => { - let var$1; - var$1 = var$0.$_01021; - oncipau_Util$_$callClinit(); - return oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1); +let oavra_LexerATNConfig__init_3 = ($this, $c, $state) => { + oavra_ATNConfig__init_0($this, $c, $state, $c.$context, $c.$semanticContext); + $this.$lexerActionExecutor = $c.$lexerActionExecutor; + $this.$passedThroughNonGreedyDecision = oavra_LexerATNConfig_checkNonGreedyDecision($c, $state); }, -oncil_LabelExpression$ColonDisjunction$ = $rt_classWithoutFields(), -oncil_LabelExpression$ColonDisjunction$_MODULE$ = null, -oncil_LabelExpression$ColonDisjunction$__clinit_ = () => { - oncil_LabelExpression$ColonDisjunction$_MODULE$ = new oncil_LabelExpression$ColonDisjunction$; +oavra_LexerATNConfig__init_ = (var_0, var_1) => { + let var_2 = new oavra_LexerATNConfig(); + oavra_LexerATNConfig__init_3(var_2, var_0, var_1); + return var_2; }, -oncil_LabelExpression$ColonConjunction$ = $rt_classWithoutFields(), -oncil_LabelExpression$ColonConjunction$_MODULE$ = null, -oncil_LabelExpression$ColonConjunction$__clinit_ = () => { - oncil_LabelExpression$ColonConjunction$_MODULE$ = new oncil_LabelExpression$ColonConjunction$; +oavra_LexerATNConfig__init_4 = ($this, $c, $state, $lexerActionExecutor) => { + oavra_ATNConfig__init_0($this, $c, $state, $c.$context, $c.$semanticContext); + $this.$lexerActionExecutor = $lexerActionExecutor; + $this.$passedThroughNonGreedyDecision = oavra_LexerATNConfig_checkNonGreedyDecision($c, $state); }, -oncil_LabelExpression$Negation$ = $rt_classWithoutFields(), -oncil_LabelExpression$Negation$_MODULE$ = null, -oncil_LabelExpression$Negation$__clinit_ = () => { - oncil_LabelExpression$Negation$_MODULE$ = new oncil_LabelExpression$Negation$; +oavra_LexerATNConfig__init_0 = (var_0, var_1, var_2) => { + let var_3 = new oavra_LexerATNConfig(); + oavra_LexerATNConfig__init_4(var_3, var_0, var_1, var_2); + return var_3; }, -oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_00 = $rt_classWithoutFields(), -oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0_apply0 = (var$0, var$1, var$2) => { - let var$3, var$4; - var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$3 = var$3.$_20; - var$4 = new oncil_LabelExpression$Negation; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Negation__init_(var$4, var$3, 0, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); - return var$4; +oavra_LexerATNConfig__init_1 = ($this, $c, $state, $context) => { + oavra_ATNConfig__init_0($this, $c, $state, $context, $c.$semanticContext); + $this.$lexerActionExecutor = $c.$lexerActionExecutor; + $this.$passedThroughNonGreedyDecision = oavra_LexerATNConfig_checkNonGreedyDecision($c, $state); +}, +oavra_LexerATNConfig__init_2 = (var_0, var_1, var_2) => { + let var_3 = new oavra_LexerATNConfig(); + oavra_LexerATNConfig__init_1(var_3, var_0, var_1, var_2); + return var_3; +}, +oavra_LexerATNConfig_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(oavrm_MurmurHash_update0(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(oavrm_MurmurHash_update(7, $this.$state0.$stateNumber), $this.$alt0), $this.$context), $this.$semanticContext), !$this.$passedThroughNonGreedyDecision ? 0 : 1), $this.$lexerActionExecutor), 6); +}, +oavra_LexerATNConfig_equals = ($this, $other) => { + let $lexerOther; + if ($this === $other) + return 1; + if (!($other instanceof oavra_LexerATNConfig)) + return 0; + $lexerOther = $other; + if ($this.$passedThroughNonGreedyDecision != $lexerOther.$passedThroughNonGreedyDecision) + return 0; + oavrm_ObjectEqualityComparator_$callClinit(); + if (oavrm_ObjectEqualityComparator_equals(oavrm_ObjectEqualityComparator_INSTANCE, $this.$lexerActionExecutor, $lexerOther.$lexerActionExecutor)) + return oavra_ATNConfig_equals($this, $other); + return 0; +}, +oavra_LexerATNConfig_checkNonGreedyDecision = ($source, $target) => { + let var$3; + a: { + b: { + if (!$source.$passedThroughNonGreedyDecision) { + if (!($target instanceof oavra_DecisionState)) + break b; + if (!$target.$nonGreedy) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; +}; +function jnci_BufferedEncoder() { + let a = this; jnc_CharsetEncoder.call(a); + a.$inArray0 = null; + a.$outArray0 = null; +} +let jnci_BufferedEncoder_encodeLoop = ($this, $in, $out) => { + let $inArray, $inPos, $inSize, $outArray, $i, var$8, $outSize, $result, $controller; + $inArray = $this.$inArray0; + $inPos = 0; + $inSize = 0; + $outArray = $this.$outArray0; + a: { + while (true) { + if (($inPos + 32 | 0) > $inSize && jn_Buffer_hasRemaining($in)) { + $i = $inPos; + while ($i < $inSize) { + var$8 = $inArray.data; + var$8[$i - $inPos | 0] = var$8[$i]; + $i = $i + 1 | 0; + } + var$8 = $inArray.data; + $outSize = $inSize - $inPos | 0; + $inSize = jl_Math_min(jn_Buffer_remaining($in) + $outSize | 0, var$8.length); + jn_CharBuffer_get($in, $inArray, $outSize, $inSize - $outSize | 0); + $inPos = 0; + } + if (!jn_Buffer_hasRemaining($out)) { + $result = !jn_Buffer_hasRemaining($in) && $inPos >= $inSize ? jnc_CoderResult_UNDERFLOW : jnc_CoderResult_OVERFLOW; + break a; + } + var$8 = $outArray.data; + $outSize = jl_Math_min(jn_Buffer_remaining($out), var$8.length); + $controller = new jnci_BufferedEncoder$Controller; + $controller.$in0 = $in; + $controller.$out3 = $out; + $result = jnci_UTF8Encoder_arrayEncode($this, $inArray, $inPos, $inSize, $outArray, 0, $outSize, $controller); + $inPos = $controller.$inPosition0; + $outSize = $controller.$outPosition0; + if ($result === null) { + if (!jn_Buffer_hasRemaining($in) && $inPos >= $inSize) + $result = jnc_CoderResult_UNDERFLOW; + else if (!jn_Buffer_hasRemaining($out) && $inPos >= $inSize) + $result = jnc_CoderResult_OVERFLOW; + } + jn_ByteBuffer_put($out, $outArray, 0, $outSize); + if ($result !== null) + break; + } + } + jn_Buffer_position($in, $in.$position3 - ($inSize - $inPos | 0) | 0); + return $result; +}, +jnci_UTF8Encoder = $rt_classWithoutFields(jnci_BufferedEncoder), +jnci_UTF8Encoder_arrayEncode = ($this, $inArray, $inPos, $inSize, $outArray, $outPos, $outSize, $controller) => { + let $result, var$9, var$10, $ch, $low, var$13, $codePoint; + $result = null; + a: { + while ($inPos < $inSize) { + if ($outPos >= $outSize) { + var$9 = $inPos; + break a; + } + var$10 = $inArray.data; + var$9 = $inPos + 1 | 0; + $ch = var$10[$inPos]; + if ($ch < 128) { + var$10 = $outArray.data; + $low = $outPos + 1 | 0; + var$10[$outPos] = $ch << 24 >> 24; + } else if ($ch < 2048) { + if (($outPos + 2 | 0) > $outSize) { + var$9 = var$9 + (-1) | 0; + if (jnci_BufferedEncoder$Controller_hasMoreOutput($controller, 2)) + break a; + $result = jnc_CoderResult_OVERFLOW; + break a; + } + var$10 = $outArray.data; + $inPos = $outPos + 1 | 0; + var$10[$outPos] = (192 | $ch >> 6) << 24 >> 24; + $low = $inPos + 1 | 0; + var$10[$inPos] = (128 | $ch & 63) << 24 >> 24; + } else if (!jl_Character_isSurrogate($ch)) { + if (($outPos + 3 | 0) > $outSize) { + var$9 = var$9 + (-1) | 0; + if (jnci_BufferedEncoder$Controller_hasMoreOutput($controller, 3)) + break a; + $result = jnc_CoderResult_OVERFLOW; + break a; + } + var$10 = $outArray.data; + var$13 = $outPos + 1 | 0; + var$10[$outPos] = (224 | $ch >> 12) << 24 >> 24; + $inPos = var$13 + 1 | 0; + var$10[var$13] = (128 | $ch >> 6 & 63) << 24 >> 24; + $low = $inPos + 1 | 0; + var$10[$inPos] = (128 | $ch & 63) << 24 >> 24; + } else { + if (!jl_Character_isHighSurrogate($ch)) { + $result = jnc_CoderResult_malformedForLength(1); + break a; + } + if (var$9 >= $inSize) { + if (jn_Buffer_hasRemaining($controller.$in0)) + break a; + $result = jnc_CoderResult_UNDERFLOW; + break a; + } + $inPos = var$9 + 1 | 0; + $low = var$10[var$9]; + if (!jl_Character_isLowSurrogate($low)) { + var$9 = $inPos + (-2) | 0; + $result = jnc_CoderResult_malformedForLength(1); + break a; + } + if (($outPos + 4 | 0) > $outSize) { + var$9 = $inPos + (-2) | 0; + if (jnci_BufferedEncoder$Controller_hasMoreOutput($controller, 4)) + break a; + $result = jnc_CoderResult_OVERFLOW; + break a; + } + var$10 = $outArray.data; + $codePoint = jl_Character_toCodePoint($ch, $low); + $low = $outPos + 1 | 0; + var$10[$outPos] = (240 | $codePoint >> 18) << 24 >> 24; + var$13 = $low + 1 | 0; + var$10[$low] = (128 | $codePoint >> 12 & 63) << 24 >> 24; + $outPos = var$13 + 1 | 0; + var$10[var$13] = (128 | $codePoint >> 6 & 63) << 24 >> 24; + $low = $outPos + 1 | 0; + var$10[$outPos] = (128 | $codePoint & 63) << 24 >> 24; + var$9 = $inPos; + } + $inPos = var$9; + $outPos = $low; + } + var$9 = $inPos; + } + $controller.$inPosition0 = var$9; + $controller.$outPosition0 = $outPos; + return $result; +}, +oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_0 = $rt_classWithoutFields(), +oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncia_AuthId); +}; +function oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_1() { + jl_Object.call(this); + this.$_0324 = null; +} +let oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_1_apply = var$0 => { + return oncia_ExternalAuth_checkIdIsStringLiteralOrParameter(var$0.$_0324); }, -oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_00 = $rt_classWithoutFields(), -oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0_apply0 = (var$0, var$1, var$2) => { - let var$3, var$4; - var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$3 = var$3.$_20; - var$4 = new oncil_LabelExpression$Negation; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Negation__init_(var$4, var$3, 1, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); - return var$4; +oncia_NativeAuth$checkRequiredAttributes$lambda$_64_0 = $rt_classWithoutFields(), +oncia_NativeAuth$checkRequiredAttributes$lambda$_64_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncia_Password); }, -oncil_LabelExpression$Wildcard$ = $rt_classWithoutFields(), -oncil_LabelExpression$Wildcard$_MODULE$ = null, -oncil_LabelExpression$Wildcard$__clinit_ = () => { - oncil_LabelExpression$Wildcard$_MODULE$ = new oncil_LabelExpression$Wildcard$; +oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_66_0 = $rt_classWithoutFields(), +oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_66_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_ExternalAuthAttribute) ? 0 : 1); }, -oncil_LabelExpression$Leaf$ = $rt_classWithoutFields(sr_AbstractFunction2), -oncil_LabelExpression$Leaf$_MODULE$ = null, -oncil_LabelExpression$Leaf$__clinit_ = () => { - oncil_LabelExpression$Leaf$_MODULE$ = new oncil_LabelExpression$Leaf$; +oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_65_0 = $rt_classWithoutFields(), +oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_65_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_NativeAuthAttribute) ? 0 : 1); +}; +function oncia_ShowConstraintsClause$clauseSpecificSemanticCheck$lambda$_93_0() { + jl_Object.call(this); + this.$_0583 = null; +} +let oncia_ShowConstraintsClause$clauseSpecificSemanticCheck$lambda$_93_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0583; + var$1 = var$1.$features.$contains(oncias_SemanticFeature$GraphTypes$_MODULE$) ? s_Tuple2__init_(oncia_ShowConstraintsClause_columnsAsMap(var$2), var$2.$unfilteredColumns0.$columns) : s_Tuple2__init_((oncia_ShowConstraintsClause_columnsAsMap(var$2)).$filterNot0(new oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_0), sci_List_filterNot(var$2.$unfilteredColumns0.$columns, new oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_1)); + var$3 = s_Tuple2__init_(var$1.$_10, var$1.$_20); + var$1 = var$3.$_10; + var$4 = var$3.$_20; + if (!sc_IterableOnceOps_nonEmpty$(var$2.$yieldItems0)) { + var$1 = new oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_2; + var$1.$_0349 = var$2; + var$1 = oncias_SemanticAnalysisTooling_semanticCheckFold$(var$2, var$4, var$1); + } else { + var$4 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$3 = var$2.$yieldItems0; + var$2 = new oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_3; + var$2.$_0993 = var$1; + var$1 = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$4, var$3, var$2); + } + return var$1; }, -oncil_LabelExpression$DynamicLeaf$ = $rt_classWithoutFields(sr_AbstractFunction2), -oncil_LabelExpression$DynamicLeaf$_MODULE$ = null, -oncil_LabelExpression$DynamicLeaf$__clinit_ = () => { - oncil_LabelExpression$DynamicLeaf$_MODULE$ = new oncil_LabelExpression$DynamicLeaf$; +oncifp_ResolvedCall$argumentCheck$lambda$_28_0 = $rt_classWithoutFields(), +oncifp_ResolvedCall$argumentCheck$lambda$_28_0_apply = (var$0, var$1) => { + return var$1.$default2; }, -oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0_apply = (var$0, var$1, var$2, var$3) => { - let var$4; +oncifp_ResolvedCall$argumentCheck$lambda$_28_1 = $rt_classWithoutFields(), +oncifp_ResolvedCall$argumentCheck$lambda$_28_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = new oncie_Or; - oncipau_Util$_$callClinit(); - oncie_Or__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); - return var$4; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Results$_MODULE$, var$1); + var$4 = oncias_SemanticExpressionCheck$_MODULE$; + var$5 = new oncifp_ResolvedCall$$anonfun$argumentCheck$2$lambda$_62_0; + var$5.$_01025 = var$2; + return oncias_SemanticCheck_chain$(var$3, oncias_SemanticAnalysisTooling_expectType$(var$4, var$5, var$1)); }, -oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0_apply = (var$0, var$1, var$2, var$3) => { - let var$4; - var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = new oncie_Xor; - oncipau_Util$_$callClinit(); - oncie_Xor__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); - return var$4; +oncifp_ResolvedCall$argumentCheck$lambda$_28_2 = $rt_classWithoutFields(), +oncifp_ResolvedCall$argumentCheck$lambda$_28_2_apply = (var$0, var$1, var$2) => { + return var$1.$chain(var$2); }, -oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0_apply = (var$0, var$1, var$2, var$3) => { - let var$4; - var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = new oncie_And; - oncipau_Util$_$callClinit(); - oncie_And__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); - return var$4; +oncifp_ResolvedCall$argumentCheck$lambda$_28_3 = $rt_classWithoutFields(), +oncifp_ResolvedCall$argumentCheck$lambda$_28_3_apply = (var$0, var$1) => { + return var$1.$typ.$normalizedCypherTypeString(); }, -oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0_apply0 = (var$0, var$1, var$2) => { - let var$3; +oncifp_ResolvedCall$argumentCheck$lambda$_28_4 = $rt_classWithoutFields(), +oncifp_ResolvedCall$argumentCheck$lambda$_28_4_apply = var$0 => { + return $rt_s(4); +}, +oncifp_ResolvedCall$argumentCheck$lambda$_28_5 = $rt_classWithoutFields(), +oncifp_ResolvedCall$argumentCheck$lambda$_28_5_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - var$3 = new oncie_Not; - oncipau_Util$_$callClinit(); - oncie_Not__init_(var$3, var$2, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); - return var$3; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6704)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }; -function oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0() { - let a = this; jl_Object.call(a); - a.$_01006 = null; - a.$_1346 = null; +function oncifp_ResolvedCall$resultCheck$lambda$_29_0() { + jl_Object.call(this); + this.$_0400 = null; } -let oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0_apply0 = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncifp_ResolvedCall$resultCheck$lambda$_29_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_01006; - var$3 = var$0.$_1346; - if (var$1 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$1); - if (!var$1.$lengthCompare(3)) { - var$4 = var$1.$apply1(0); - var$5 = var$1.$apply1(1); - var$1 = var$1.$apply1(2); - if (var$4 instanceof oncip_AstRuleCtx) { - var$4 = var$4; - if ($rt_isInstance(var$5, oavrt_TerminalNode)) { - var$5 = var$5; - if (var$1 instanceof oncip_AstRuleCtx) { - var$1 = var$1; - return oncipvaf_ExpressionBuilder_binaryPredicate0(var$2, var$4.$ast0, var$5, var$1); - } - } - } - } + var$2 = var$0.$_0400.$callOutputTypes.$get2(var$1.$outputName); + var$3 = new oncia_ProcedureResultItem$semanticCheck$lambda$_63_0; + var$3.$_0202 = var$1; + var$2 = s_Option_map(var$2, var$3); + var$3 = new oncia_ProcedureResultItem$semanticCheck$lambda$_63_1; + var$3.$_0757 = var$1; + return s_Option_getOrElse(var$2, var$3); +}; +function oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0() { + let a = this; jl_Object.call(a); + a.$_0848 = null; + a.$_1285 = null; +} +let oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$0.$_0848; + var$2 = var$0.$_1285; + oncia_ProjectionClause$_$callClinit(); + if (var$1 === null) + var$1 = sci_Nil$_MODULE$; + else { + var$1 = var$1.$items0.$filter1(new oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_0); + var$3 = new oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_1; + var$3.$_0168 = var$2; + var$1 = var$1.$map(var$3); } - var$1 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7753)), var$3); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$1); + return var$1; }; -function oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_00() { +function oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0() { jl_Object.call(this); - this.$_01179 = null; + this.$_0190 = null; } -let oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0_apply0 = (var$0, var$1, var$2, var$3) => { - let var$4, var$5; +let oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0190; + return oncias_SemanticCheckResult__init_(var$1, var$2.$apply2(var$1)); +}, +oncias_SemanticPatternCheck$$anonfun$3 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncias_SemanticPatternCheck$$anonfun$3_applyOrElse = ($this, $x, $default) => { + let var$3; + var$3 = onciu_Foldable_folder$($x.$expression0()); + sr_ClassTag$_$callClinit(); + return (onciu_Foldable$Folder_findAllByClass(var$3, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property)))).$map(new oncias_SemanticPatternCheck$$anonfun$3$applyOrElse$lambda$_0_0); +}; +function oncia_Return$checkVariableScope$lambda$_96_0() { + jl_Object.call(this); + this.$_0111 = null; +} +let oncia_Return$checkVariableScope$lambda$_96_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { - var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = (var$2.$getSymbol()).$getType0(); - switch (var$4) { - case 85: - var$5 = new oncie_Concatenate; - oncipau_Util$_$callClinit(); - oncie_Concatenate__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - case 161: - var$5 = new oncie_Subtract; - oncipau_Util$_$callClinit(); - oncie_Subtract__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - case 199: - var$5 = new oncie_Add; - oncipau_Util$_$callClinit(); - oncie_Add__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); + var$2 = var$0.$_0111; + var$3 = var$2.$returnItems2; + if (var$3 !== null && var$3.$includeExisting0) { + oncias_SemanticState$ScopeLocation$_$callClinit(); + if (var$1.$currentScope.$elem0.$symbolTable.$isEmpty()) { + var$1 = new sci_$colon$colon; + oncias_SemanticError$_$callClinit(); + var$4 = var$2.$position23; + ong_GqlStatusInfoCodes_$callClinit(); + sci_$colon$colon__init_0(var$1, oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$4.$offset(), var$4.$line(), var$4.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I37), + var$4.$offset(), var$4.$line(), var$4.$column())))), $rt_s(6714), var$4), sci_Nil$_MODULE$); break a; - default: + } } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); + s_package$_$callClinit(); + var$1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); } - return var$5; + return var$1; +}, +oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0 = $rt_classWithoutFields(), +oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0_apply = (var$0, var$1) => { + return var$1.$semanticCheck(); }; -function oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0() { +function oncias_SemanticPatternCheck$$check$lambda$_49_0() { jl_Object.call(this); - this.$_01205 = null; + this.$_01011 = null; } -let oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0_apply0 = (var$0, var$1, var$2, var$3) => { - let var$4, var$5; +let oncias_SemanticPatternCheck$$check$lambda$_49_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_01011; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticPatternCheck$_declareVariables0(oncias_SemanticPatternCheck$_MODULE$, var$2, var$1); +}; +function oncias_SemanticPatternCheck$$check$lambda$_49_1() { + jl_Object.call(this); + this.$_093 = null; +} +let oncias_SemanticPatternCheck$$check$lambda$_49_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_093; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticPatternCheck$_check0(oncias_SemanticPatternCheck$_MODULE$, var$2, var$1); +}; +function oncias_SemanticPatternCheck$$check$lambda$_49_2() { + jl_Object.call(this); + this.$_0619 = null; +} +let oncias_SemanticPatternCheck$$check$lambda$_49_2_apply = var$0 => { + let var$1; + var$1 = var$0.$_0619; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticAnalysisTooling_semanticCheckFold$(oncias_SemanticPatternCheck$_MODULE$, var$1.$patternParts(), new oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_90_0); +}; +function oncias_SemanticPatternCheck$$check$lambda$_49_3() { + let a = this; jl_Object.call(a); + a.$_0289 = null; + a.$_1105 = null; +} +let oncias_SemanticPatternCheck$$check$lambda$_49_3_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; a: { - var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = (var$2.$getSymbol()).$getType0(); - switch (var$4) { - case 82: - var$5 = new oncie_Divide; - oncipau_Util$_$callClinit(); - oncie_Divide__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - case 162: - var$5 = new oncie_Modulo; - oncipau_Util$_$callClinit(); - oncie_Modulo__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - case 271: - var$5 = new oncie_Multiply; - oncipau_Util$_$callClinit(); - oncie_Multiply__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - default: + b: { + c: { + d: { + var$1 = var$0.$_0289; + var$2 = var$0.$_1105; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = oncie_Pattern$SemanticContext$Create$_MODULE$; + if (var$1 !== null) { + if (jl_Object_equals(var$1, var$4)) + break c; + else + break d; + } + if (var$4 === null) + break c; + } + var$4 = oncie_Pattern$SemanticContext$Insert$_MODULE$; + if (var$1 !== null) { + if (jl_Object_equals(var$1, var$4)) + break c; + else + break b; + } + if (var$4 !== null) + break b; + } + var$5 = 0; + break a; } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); + var$5 = 1; } - return var$5; + var$1 = new oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_92_0; + var$1.$_0106 = var$2; + return oncias_SemanticCheck$_when(var$3, var$5, var$1); }, -oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0_apply = (var$0, var$1, var$2, var$3) => { - let var$4; +oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0 = $rt_classWithoutFields(), +oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0_apply = var$0 => { + oncias_SemanticCheckableOption$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); +}, +oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1 = $rt_classWithoutFields(), +oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = new oncie_Pow; - oncipau_Util$_$callClinit(); - oncie_Pow__init_(var$4, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - return var$4; + oncias_SemanticCheckableOption$_$callClinit(); + return var$1.$semanticCheck(); }; -function oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0() { +function oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_70_0() { jl_Object.call(this); - this.$_01196 = null; + this.$_0664 = null; } -let oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0_apply0 = (var$0, var$1, var$2) => { - let var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$2; - var$3 = var$1.$position(); - if (var$2 instanceof oncipv_Cypher5Parser$PropertyPostfixContext) { - var$2 = var$2; - var$4 = new oncie_Property; - oncipau_Util$_$callClinit(); - oncie_Property__init_0(var$4, var$1, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$3); - } else if (var$2 instanceof oncipv_Cypher5Parser$IndexPostfixContext) { - var$2 = var$2; - var$4 = new oncie_ContainerIndex; - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 1)).$ast0; - var$5 = oncipau_Util$_MODULE$; - oncie_ContainerIndex__init_0(var$4, var$1, var$3, oncipau_Util$_pos(var$5, oncipau_Util$_ctxChild(var$5, var$2, 1))); - } else if (var$2 instanceof oncipv_Cypher5Parser$LabelPostfixContext) { +let oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_70_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = (var$0.$_0664.$pattern7.$patternParts0.$map(new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_0)).$toList(); + var$3 = sci_Nil$_MODULE$; + var$4 = var$3; + while (true) { + if (sci_List_equals(sci_Nil$_MODULE$, var$2)) { + var$5 = s_Tuple2__init_(sci_List_reverse(var$3), sci_List_reverse(var$4)); + var$3 = s_Tuple2__init_(var$5.$_10, var$5.$_20); + var$2 = var$3.$_10; + var$4 = var$3.$_20; + var$2 = sc_AbstractIterable_groupMap(sci_List_flatMap(var$2, new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_1), new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_2, new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_3); + var$4 = sc_AbstractIterable_toSet(sci_List_flatMap(var$4, new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_4)); + var$3 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_5; + var$3.$_0547 = var$4; + var$3.$_1181 = var$1; + var$1 = var$2.$flatMap(var$3); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncias_SemanticCheck$$error$lambda$_3_0; + var$4.$_0794 = var$1; + return oncias_SemanticCheck$_fromFunction(var$2, var$4); + } + if (!(var$2 instanceof sci_$colon$colon)) + $rt_throw(s_MatchError__init_(var$2)); var$2 = var$2; - var$4 = new oncil_LabelExpressionPredicate; - oncipau_Util$_$callClinit(); - oncil_LabelExpressionPredicate__init_(var$4, var$1, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$3); - } else { - if (!(var$2 instanceof oncipv_Cypher5Parser$RangePostfixContext)) { - var$1 = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7754)), var$2); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw(var$1); + var$5 = var$2.$head1; + var$2 = var$2.$next5; + if (var$5 instanceof oncie_PathConcatenation) { + var$2 = (var$5.$factors0.$toList()).$concat(var$2); + continue; } - var$5 = var$2; - var$4 = new oncie_ListSlice; - oncipau_Util$_$callClinit(); - oncie_ListSlice__init_(var$4, var$1, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$5.$fromExp0), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$5.$toExp0), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); + if (var$5 instanceof oncie_ParenthesizedPath) { + var$2 = sci_List_$colon$colon(var$2, var$5.$part0.$element()); + continue; + } + if (var$5 instanceof oncie_QuantifiedPath) { + var$3 = sci_List_$colon$colon(var$3, var$5); + continue; + } + if (!(var$5 instanceof oncie_SimplePattern)) + break; + var$4 = sci_List_$colon$colon(var$4, var$5); } - return var$4; + $rt_throw(s_MatchError__init_(var$5)); }, -oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_148_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_148_0_apply = var$0 => { - oncie_NFCNormalForm$_$callClinit(); - return oncie_NFCNormalForm$_MODULE$; +oncia_Remove$$anonfun$15 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_Remove$$anonfun$15_applyOrElse = ($this, $x1, $default) => { + if ($x1 instanceof oncia_RemoveLabelItem && 1 == $x1.$containsIs0) + return jl_Boolean_valueOf(1); + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); }, -oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0_apply0 = (var$0, var$1) => { - return oncipv_Cypher5Parser$FunctionArgumentContext_expression(var$1); +oncia_Remove$$anonfun$16 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_Remove$$anonfun$16_applyOrElse = ($this, $x2, $default) => { + let $dynamicLabels, $labels; + if ($x2 instanceof oncia_RemoveLabelItem) { + $dynamicLabels = $x2; + $labels = $dynamicLabels.$labels1; + $dynamicLabels = $dynamicLabels.$dynamicLabels0; + if (($labels.$length() + $dynamicLabels.$length() | 0) > 1) + return jl_Boolean_valueOf(1); + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x2); +}; +function oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_69_0() { + jl_Object.call(this); + this.$_0930 = null; +} +let oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_69_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0930; + var$2 = new onciap_Prettifier; + onciap_ExpressionStringifier$_$callClinit(); + var$3 = onciap_ExpressionStringifier$_MODULE$; + var$3 = onciap_ExpressionStringifier$_apply(var$3, onciap_ExpressionStringifier$_apply$default$1(var$3), 0, 0, 0, 0); + onciap_Prettifier$_$callClinit(); + onciap_Prettifier__init_(var$2, var$3, onciap_Prettifier$EmptyExtension$_MODULE$, 1); + var$2 = onciap_Prettifier_prettifyRemoveItems(var$2, var$1.$items4.$flatMap(new oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_89_0)); + var$3 = ong_GqlHelper_getGql42001_42I29($rt_s(4447), var$2, var$1.$position37.$offset(), var$1.$position37.$line(), var$1.$position37.$column()); + return oncias_package$_liftSemanticErrorDef(oncias_package$_MODULE$, oncias_SemanticError__init_0(var$3, oncia_UpdateClause_mixingIsWithMultipleLabelsMessage$(var$1, $rt_s(4447), var$2), var$1.$position37)); }, -oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_00 = $rt_classWithoutFields(), -oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0_apply = (var$0, var$1) => { - let var$2; +oncia_Delete$warnAboutDeletingLabels$lambda$_69_0 = $rt_classWithoutFields(), +oncia_Delete$warnAboutDeletingLabels$lambda$_69_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncil_LabelExpressionPredicate); +}, +oncia_Delete$warnAboutDeletingLabels$lambda$_69_1 = $rt_classWithoutFields(), +oncia_Delete$warnAboutDeletingLabels$lambda$_69_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = new oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0; - var$2.$_0887 = var$1; - return var$2; + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6715), var$1.$position()); }; -function oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0() { - let a = this; jl_Object.call(a); - a.$_0548 = null; - a.$_1189 = null; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_0() { + jl_Object.call(this); + this.$_0588 = null; } -let oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0_accept0 = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_0__init_ = (var$0, var$1) => { + var$0.$_0588 = var$1; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_0__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_0(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_0__init_(var_1, var_0); + return var_1; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0548; - var$3 = var$0.$_1189; - var$4 = new oncius_ListType; - var$5 = var$2.$elem; - var$6 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); - oncipau_Util$_$callClinit(); - oncius_ListType__init_0(var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - var$2.$elem = var$4; + return onciap_DefaultExpressionStringifier_apply(var$0.$_0588, var$1); +}, +oncie_NormalForm$ = $rt_classWithoutFields(), +oncie_NormalForm$_MODULE$ = null, +oncie_NormalForm$__clinit_ = () => { + oncie_NormalForm$_MODULE$ = new oncie_NormalForm$; +}, +oncie_NormalForm$_unapply = ($this, $name) => { + let var$2; + a: { + b: { + oncie_NFCNormalForm$_$callClinit(); + var$2 = oncie_NFCNormalForm$_formName(oncie_NFCNormalForm$_MODULE$); + if (var$2 !== null) { + if (!jl_String_equals(var$2, $name)) + break a; + else + break b; + } + if ($name !== null) + break a; + } + return s_Some__init_(oncie_NFCNormalForm$_MODULE$); + } + c: { + d: { + oncie_NFDNormalForm$_$callClinit(); + var$2 = oncie_NFDNormalForm$_formName(oncie_NFDNormalForm$_MODULE$); + if (var$2 !== null) { + if (!jl_String_equals(var$2, $name)) + break c; + else + break d; + } + if ($name !== null) + break c; + } + return s_Some__init_(oncie_NFDNormalForm$_MODULE$); + } + e: { + f: { + oncie_NFKCNormalForm$_$callClinit(); + var$2 = oncie_NFKCNormalForm$_formName0(oncie_NFKCNormalForm$_MODULE$); + if (var$2 !== null) { + if (!jl_String_equals(var$2, $name)) + break e; + else + break f; + } + if ($name !== null) + break e; + } + return s_Some__init_(oncie_NFKCNormalForm$_MODULE$); + } + g: { + h: { + oncie_NFKDNormalForm$_$callClinit(); + var$2 = oncie_NFKDNormalForm$_formName0(oncie_NFKDNormalForm$_MODULE$); + if (var$2 !== null) { + if (!jl_String_equals(var$2, $name)) + break h; + else + break g; + } + if ($name === null) + break g; + } + return s_None$_MODULE$; + } + return s_Some__init_(oncie_NFKDNormalForm$_MODULE$); }; -function oncipvaf_DdlShowBuilder$ShowWrapper() { +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_1() { let a = this; jl_Object.call(a); - a.$where0 = null; - a.$yieldedItems = null; - a.$yieldAll0 = 0; - a.$yieldClause1 = null; - a.$returnClause2 = null; - a.$composableClauses0 = null; - a.$names1 = null; + a.$_01145 = null; + a.$_1389 = null; + a.$_2127 = 0; } -let oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses0 = ($this, $constraintType, $position) => { - return oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0($this, oncia_ShowConstraintsClause$_apply(oncia_ShowConstraintsClause$_MODULE$, $constraintType, $this.$where0, $this.$yieldedItems, $this.$yieldAll0, $position)); +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_1__init_ = (var$0, var$1, var$2, var$3) => { + var$0.$_01145 = var$1; + var$0.$_1389 = var$2; + var$0.$_2127 = var$3; }, -oncipvaf_DdlShowBuilder$ShowWrapper_buildIndexClauses = ($this, $indexType, $position) => { - return oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0($this, oncia_ShowIndexesClause$_apply(oncia_ShowIndexesClause$_MODULE$, $indexType, $this.$where0, $this.$yieldedItems, $this.$yieldAll0, $position)); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_1__init_0 = (var_0, var_1, var_2) => { + let var_3 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_1(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_1__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses0 = ($this, $cmdClause) => { - let var$2, var$3, var$4; - var$2 = sci_ArraySeq$_MODULE$; - var$3 = sci_$colon$colon__init_($cmdClause, sci_Nil$_MODULE$); - var$4 = $this.$yieldClause1; - $cmdClause = new oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_00; - $cmdClause.$_01190 = $this; - var$4 = ((var$3.$concat(s_Option_map(var$4, $cmdClause))).$concat($this.$returnClause2)).$concat(s_Option_getOrElse($this.$composableClauses0, new oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_10)); - sr_ClassTag$_$callClinit(); - return sci_ArraySeq$_from(var$2, var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Clause))); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_DefaultExpressionStringifier_inner(var$0.$_01145, var$0.$_1389, var$0.$_2127, var$1); }, -oncipvaf_DdlShowBuilder$ShowWrapper_copy = ($this, $where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names) => { - return oncipvaf_DdlShowBuilder$ShowWrapper__init_2($where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names); +oncie_FunctionInvocation$ArgumentAsc$ = $rt_classWithoutFields(), +oncie_FunctionInvocation$ArgumentAsc$_MODULE$ = null, +oncie_FunctionInvocation$ArgumentAsc$__clinit_ = () => { + oncie_FunctionInvocation$ArgumentAsc$_MODULE$ = new oncie_FunctionInvocation$ArgumentAsc$; }, -oncipvaf_DdlShowBuilder$ShowWrapper_productPrefix = $this => { - return $rt_s(7755); +oncie_FunctionInvocation$ArgumentDesc$ = $rt_classWithoutFields(), +oncie_FunctionInvocation$ArgumentDesc$_MODULE$ = null, +oncie_FunctionInvocation$ArgumentDesc$__clinit_ = () => { + oncie_FunctionInvocation$ArgumentDesc$_MODULE$ = new oncie_FunctionInvocation$ArgumentDesc$; +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_2() { + jl_Object.call(this); + this.$_0479 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_2__init_ = (var$0, var$1) => { + var$0.$_0479 = var$1; }, -oncipvaf_DdlShowBuilder$ShowWrapper_productArity0 = $this => { - return 7; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_2__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_2(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_2__init_(var_1, var_0); + return var_1; }, -oncipvaf_DdlShowBuilder$ShowWrapper_productElement0 = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$where0; - case 1: - return $this.$yieldedItems; - case 2: - return jl_Boolean_valueOf($this.$yieldAll0); - case 3: - return $this.$yieldClause1; - case 4: - return $this.$returnClause2; - case 5: - return $this.$composableClauses0; - case 6: - return $this.$names1; - default: - } - return sr_Statics_ioobe($x$1); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0479; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = onciap_DefaultExpressionStringifier_apply0(var$2, var$3); + var$1 = onciap_DefaultExpressionStringifier_apply(var$2, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(9)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipvaf_DdlShowBuilder$ShowWrapper_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncie_Parameter$ = $rt_classWithoutFields(), +oncie_Parameter$_MODULE$ = null, +oncie_Parameter$__clinit_ = () => { + oncie_Parameter$_MODULE$ = new oncie_Parameter$; }, -oncipvaf_DdlShowBuilder$ShowWrapper_hashCode0 = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(7755))), sr_Statics_anyHash($this.$where0)), sr_Statics_anyHash($this.$yieldedItems)), !$this.$yieldAll0 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldClause1)), sr_Statics_anyHash($this.$returnClause2)), sr_Statics_anyHash($this.$composableClauses0)), sr_Statics_anyHash($this.$names1)), 7); +oncie_Parameter$_unapply = ($this, $p) => { + return s_Some__init_(s_Tuple3__init_($p.$name(), $p.$parameterType(), $p.$sizeHint1())); +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_3() { + let a = this; jl_Object.call(a); + a.$_01027 = null; + a.$_1351 = null; + a.$_2118 = 0; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_3__init_ = (var$0, var$1, var$2, var$3) => { + var$0.$_01027 = var$1; + var$0.$_1351 = var$2; + var$0.$_2118 = var$3; }, -oncipvaf_DdlShowBuilder$ShowWrapper_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_3__init_0 = (var_0, var_1, var_2) => { + let var_3 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_3(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_3__init_(var_3, var_0, var_1, var_2); + return var_3; }, -oncipvaf_DdlShowBuilder$ShowWrapper_equals0 = ($this, $x$1) => { - let var$2, var$3, var$4; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncipvaf_DdlShowBuilder$ShowWrapper) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$yieldAll0 != $x$1.$yieldAll0) - break b; - c: { - var$2 = $this.$where0; - var$3 = $x$1.$where0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break c; - } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$yieldedItems; - var$3 = $x$1.$yieldedItems; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$yieldClause1; - var$3 = $x$1.$yieldClause1; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$returnClause2; - var$3 = $x$1.$returnClause2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$composableClauses0; - var$3 = $x$1.$composableClauses0; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$3 = $this.$names1; - $x$1 = $x$1.$names1; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break h; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncipvaf_DdlShowBuilder$ShowWrapper)) - break b; - } - var$4 = 1; - break a; - } - var$4 = 0; - } - return var$4; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_3_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_DefaultExpressionStringifier_inner(var$0.$_01027, var$0.$_1351, var$0.$_2118, var$1); }, -oncipvaf_DdlShowBuilder$ShowWrapper__init_ = ($this, $where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names) => { - $this.$where0 = $where; - $this.$yieldedItems = $yieldedItems; - $this.$yieldAll0 = $yieldAll; - $this.$yieldClause1 = $yieldClause; - $this.$returnClause2 = $returnClause; - $this.$composableClauses0 = $composableClauses; - $this.$names1 = $names; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_4 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_4__init_ = var$0 => { + return; }, -oncipvaf_DdlShowBuilder$ShowWrapper__init_2 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncipvaf_DdlShowBuilder$ShowWrapper(); - oncipvaf_DdlShowBuilder$ShowWrapper__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_4__init_0 = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_4(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_4__init_(var_0); + return var_0; }, -s_Function7 = $rt_classWithoutFields(0), -sr_AbstractFunction7 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$ShowWrapper$ = $rt_classWithoutFields(sr_AbstractFunction7), -oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$ = null, -oncipvaf_DdlShowBuilder$ShowWrapper$__clinit_0 = () => { - oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$ = new oncipvaf_DdlShowBuilder$ShowWrapper$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_4_apply = var$0 => { + return $rt_s(4); +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_5() { + let a = this; jl_Object.call(a); + a.$_0914 = null; + a.$_1314 = null; + a.$_2105 = 0; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_5__init_0 = (var$0, var$1, var$2, var$3) => { + var$0.$_0914 = var$1; + var$0.$_1314 = var$2; + var$0.$_2105 = var$3; }, -oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2 = $this => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_5__init_ = (var_0, var_1, var_2) => { + let var_3 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_5(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_5__init_0(var_3, var_0, var_1, var_2); + return var_3; }, -oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7 = $this => { - let var$1; - s_package$_$callClinit(); - var$1 = s_package$_Left(s_package$_MODULE$); - s_package$_List(s_package$_MODULE$); - return su_Left$_apply(var$1, sci_Nil$_MODULE$); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_5_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_DefaultExpressionStringifier_inner(var$0.$_0914, var$0.$_1314, var$0.$_2105, var$1); }, -oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = new oncipvaf_DdlShowBuilder$ShowWrapper; - var$2 = s_None$_MODULE$; - var$3 = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$); - var$4 = s_None$_MODULE$; - oncipvaf_DdlShowBuilder$ShowWrapper__init_(var$1, var$2, var$3, 0, var$4, var$4, var$4, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); - return var$1; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_6 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_6__init_ = var$0 => { + return; }, -oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0_apply = var$0 => { - return oncia_AllConstraints$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_6__init_0 = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_6(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_6__init_(var_0); + return var_0; }, -oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = new oncipvaf_DdlShowBuilder$ShowWrapper; - var$2 = s_None$_MODULE$; - var$3 = oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$2(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$); - var$4 = s_None$_MODULE$; - oncipvaf_DdlShowBuilder$ShowWrapper__init_(var$1, var$2, var$3, 0, var$4, var$4, var$4, oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$7(oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$)); - return var$1; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_6_apply = var$0 => { + return $rt_s(4); +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_7() { + let a = this; jl_Object.call(a); + a.$_0802 = null; + a.$_1267 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_7__init_0 = (var$0, var$1, var$2) => { + var$0.$_0802 = var$1; + var$0.$_1267 = var$2; }, -oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0_apply = var$0 => { - return oncia_AllFunctions$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_7__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_7(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_7__init_0(var_2, var_0, var_1); + return var_2; }, -oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0_apply = var$0 => { - let var$1; - s_package$_$callClinit(); - var$1 = s_package$_Left(s_package$_MODULE$); - s_package$_List(s_package$_MODULE$); - return su_Left$_apply(var$1, sci_Nil$_MODULE$); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_7_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$1 = onciap_DefaultExpressionStringifier_inner(var$0.$_0802, var$0.$_1267, 0, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6716)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0_apply = (var$0, var$1) => { - return var$1.$value8; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_8 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_8__init_ = var$0 => { + return; }, -oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_8__init_0 = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_8(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_8__init_(var_0); + return var_0; }, -oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_8_apply = var$0 => { + return $rt_s(4); +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_9() { + let a = this; jl_Object.call(a); + a.$_0701 = null; + a.$_1238 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_9__init_0 = (var$0, var$1, var$2) => { + var$0.$_0701 = var$1; + var$0.$_1238 = var$2; }, -oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_9__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_9(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_9__init_0(var_2, var_0, var_1); + return var_2; }, -oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0_apply = (var$0, var$1) => { +onciap_DefaultExpressionStringifier$stringify$lambda$_11_9_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = new oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0; - var$2.$_0915 = var$1; - return var$2; + var$1 = onciap_DefaultExpressionStringifier_inner(var$0.$_0701, var$0.$_1238, 0, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(448)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0_apply = (var$0, var$1) => { - let var$2; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_10 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_10__init_0 = var$0 => { + return; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_10__init_ = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_10(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_10__init_0(var_0); + return var_0; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_10_apply = var$0 => { + return $rt_s(4); +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_11() { + jl_Object.call(this); + this.$_00 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_11__init_ = (var$0, var$1) => { + var$0.$_00 = var$1; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_11__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_11(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_11__init_(var_1, var_0); + return var_1; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_11_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = new oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0; - var$2.$_0819 = var$1; - return var$2; + return onciap_DefaultExpressionStringifier_apply(var$0.$_00, var$1); }, -oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_12 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_12__init_ = var$0 => { + return; }, -oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0_apply0 = (var$0, var$1) => { +onciap_DefaultExpressionStringifier$stringify$lambda$_11_12__init_0 = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_12(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_12__init_(var_0); + return var_0; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_12_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - return oncie_Property__init_(var$2, var$1.$_2(), var$2.$position()); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(167)); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_13 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_13__init_ = var$0 => { + return; }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0_apply = (var$0, var$1) => { - return var$1.$ast0; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_13__init_0 = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_13(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_13__init_(var_0); + return var_0; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_13_apply = var$0 => { + return $rt_s(4); }; -let oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = var$2.$_1(); - var$2 = var$2.$_2(); - return (var$1.$appended(var$3)).$concat(var$2); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_14() { + let a = this; jl_Object.call(a); + a.$_0781 = null; + a.$_1261 = null; + a.$_286 = 0; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_14__init_ = (var$0, var$1, var$2, var$3) => { + var$0.$_0781 = var$1; + var$0.$_1261 = var$2; + var$0.$_286 = var$3; }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2_apply = (var$0, var$1) => { - let var$2, var$3; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_14__init_0 = (var_0, var_1, var_2) => { + let var_3 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_14(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_14__init_(var_3, var_0, var_1, var_2); + return var_3; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_14_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = new oncia_PasswordChange; - var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); - oncipau_Util$_$callClinit(); - oncia_PasswordChange__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); - return var$2; + return onciap_DefaultExpressionStringifier_inner(var$0.$_0781, var$0.$_1261, var$0.$_286, var$1); }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3_apply = (var$0, var$1, var$2) => { - let var$3; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_15 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_15__init_0 = var$0 => { + return; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_15__init_ = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_15(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_15__init_0(var_0); + return var_0; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_15_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - return var$3.$_10.$appended(var$3.$_20); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6716)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4_apply = (var$0, var$1) => { - return var$1.$position(); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_16 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_16__init_0 = var$0 => { + return; }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5_apply = (var$0, var$1) => { - return var$1.$ast0; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_16__init_ = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_16(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_16__init_0(var_0); + return var_0; }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6_apply = var$0 => { - return s_None$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_16_apply = var$0 => { + return $rt_s(4); }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7_apply = var$0 => { - return s_None$_MODULE$; +oncie_HasLabelsOrTypes = $rt_classWithoutFields(oncie_Expression), +oncie_HasLabels = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_17() { + jl_Object.call(this); + this.$_01162 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_17__init_0 = (var$0, var$1) => { + var$0.$_01162 = var$1; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0_apply0 = (var$0, var$1) => { - return var$1.$ast0; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_17__init_ = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_17(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_17__init_0(var_1, var_0); + return var_1; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_10 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = var$2.$_1(); - var$2 = var$2.$_2(); - return (var$1.$appended(var$3)).$concat(var$2); +oncie_HasDynamicLabels = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_18() { + jl_Object.call(this); + this.$_01193 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_18__init_ = (var$0, var$1) => { + var$0.$_01193 = var$1; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_20 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2_apply0 = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = new oncia_PasswordChange; - var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); - oncipau_Util$_$callClinit(); - oncia_PasswordChange__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); - return var$2; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_18__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_18(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_18__init_(var_1, var_0); + return var_1; +}, +oncie_HasAnyLabel = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_19() { + jl_Object.call(this); + this.$_01169 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_19__init_ = (var$0, var$1) => { + var$0.$_01169 = var$1; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_30 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3_apply = (var$0, var$1, var$2) => { - let var$3; - var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - return var$3.$_10.$appended(var$3.$_20); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_19__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_19(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_19__init_(var_1, var_0); + return var_1; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_40 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4_apply = (var$0, var$1) => { - return var$1.$position(); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_20 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_20__init_0 = var$0 => { + return; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_50 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5_apply = var$0 => { - return s_None$_MODULE$; -}; -function oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_60() { +onciap_DefaultExpressionStringifier$stringify$lambda$_11_20__init_ = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_20(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_20__init_0(var_0); + return var_0; +}, +oncie_HasAnyDynamicLabel = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_21() { jl_Object.call(this); - this.$_058 = null; + this.$_01189 = null; } -let oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6_apply = var$0 => { - return var$0.$_058; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_21__init_ = (var$0, var$1) => { + var$0.$_01189 = var$1; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_70 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7_apply0 = (var$0, var$1) => { - return var$1.$ast0; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_21__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_21(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_21__init_(var_1, var_0); + return var_1; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_80 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8_apply0 = (var$0, var$1) => { - return var$1.$ast0; +oncie_HasALabel = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_22() { + jl_Object.call(this); + this.$_01178 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_22__init_0 = (var$0, var$1) => { + var$0.$_01178 = var$1; }, -oncipvaf_DdlBuilder$$anon$1 = $rt_classWithoutFields(oncie_ExplicitParameter), -oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0_apply = var$0 => { - return s_Tuple2$mcZZ$sp__init_(0, 0); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_22__init_ = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_22(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_22__init_0(var_1, var_0); + return var_1; }, -oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0_apply = var$0 => { - return s_Tuple2$mcZZ$sp__init_(0, 0); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_23 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_23__init_0 = var$0 => { + return; }, -oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0_apply = var$0 => { - return s_Tuple2$mcZZ$sp__init_(0, 0); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_23__init_ = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_23(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_23__init_0(var_0); + return var_0; }, -oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_00 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0_apply0 = var$0 => { - let var$1, var$2; - var$1 = new sci_$colon$colon; - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); - return var$1; +oncie_HasALabelOrType = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_24() { + jl_Object.call(this); + this.$_01183 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_24__init_ = (var$0, var$1) => { + var$0.$_01183 = var$1; }, -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0_apply = var$0 => { - let var$1, var$2; - var$1 = new sci_$colon$colon; - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); - return var$1; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_24__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_24(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_24__init_(var_1, var_0); + return var_1; +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_25() { + jl_Object.call(this); + this.$_01156 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_25__init_0 = (var$0, var$1) => { + var$0.$_01156 = var$1; }, -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1_apply0 = var$0 => { - let var$1, var$2; - var$1 = new sci_$colon$colon; - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); - return var$1; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_25__init_ = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_25(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_25__init_0(var_1, var_0); + return var_1; }, -oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_00 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0_apply = var$0 => { - let var$1, var$2; - var$1 = new sci_$colon$colon; - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); - return var$1; +oncie_HasDynamicLabelsOrTypes = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_26() { + jl_Object.call(this); + this.$_01180 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_26__init_0 = (var$0, var$1) => { + var$0.$_01180 = var$1; }, -oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_00 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0_apply0 = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new oncia_UserQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserQualifier__init_(var$2, var$1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - return var$2; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_26__init_ = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_26(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_26__init_0(var_1, var_0); + return var_1; +}, +oncie_HasAnyDynamicLabelsOrTypes = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_27() { + jl_Object.call(this); + this.$_01164 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_27__init_0 = (var$0, var$1) => { + var$0.$_01164 = var$1; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_27__init_ = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_27(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_27__init_0(var_1, var_0); + return var_1; }; -function oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0() { +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_28() { jl_Object.call(this); - this.$_0559 = null; + this.$_01188 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0559; - var$3 = new oncia_FunctionQualifier; - oncipau_Util$_$callClinit(); - oncia_FunctionQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_28__init_ = (var$0, var$1) => { + var$0.$_01188 = var$1; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_28__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_28(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_28__init_(var_1, var_0); + return var_1; }; -function oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0() { +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_29() { jl_Object.call(this); - this.$_0632 = null; + this.$_0377 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_29__init_ = (var$0, var$1) => { + var$0.$_0377 = var$1; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_29__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_29(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_29__init_(var_1, var_0); + return var_1; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_29_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0632; - var$3 = new oncia_ProcedureQualifier; - oncipau_Util$_$callClinit(); - oncia_ProcedureQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; + return onciap_DefaultExpressionStringifier_apply(var$0.$_0377, var$1); }; -function oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_00() { +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_30() { jl_Object.call(this); - this.$_01137 = null; + this.$_01161 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_01137; - var$3 = new oncia_SettingQualifier; - oncipau_Util$_$callClinit(); - oncia_SettingQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_30__init_ = (var$0, var$1) => { + var$0.$_01161 = var$1; }, -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_00 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0_apply = var$0 => { - return $rt_s(4); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_30__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_30(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_30__init_(var_1, var_0); + return var_1; }, -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_10 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1_apply0 = var$0 => { - return $rt_s(4); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_31 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_31__init_ = var$0 => { + return; }, -oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_00 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0_apply = var$0 => { - return $rt_s(4); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_31__init_0 = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_31(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_31__init_(var_0); + return var_0; }, -oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_00 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0_apply0 = var$0 => { - return $rt_s(4); +onciap_DefaultExpressionStringifier$stringify$lambda$_11_31_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 === null ? 0 : 1); +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_32() { + let a = this; jl_Object.call(a); + a.$_0458 = null; + a.$_1158 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_32__init_0 = (var$0, var$1, var$2) => { + var$0.$_0458 = var$1; + var$0.$_1158 = var$2; }, -oncipvaf_DdlPrivilegeBuilder$GraphToken0 = $rt_classWithoutFields(0); -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0() { - jl_Object.call(this); - this.$_0751 = null; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_32__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_32(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_32__init_0(var_2, var_0, var_1); + return var_2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_32_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0458; + var$3 = var$0.$_1158; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$4 = var$1.$_1(); + var$1 = var$1.$_2(); + var$5 = new sci_$colon$colon; + var$6 = var$2.$prettifier0.$BASE_INDENT; + var$4 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$4); + var$1 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$6), $rt_s(6717)), var$4), $rt_s(6718)), var$1); + sci_$colon$colon__init_0(var$5, jl_AbstractStringBuilder_toString(var$2), sci_Nil$_MODULE$); + return sci_List_map(var$5, new onciap_DefaultExpressionStringifier$$anonfun$stringify$33$lambda$_60_0); +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_33() { + let a = this; jl_Object.call(a); + a.$_01043 = null; + a.$_1356 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0_apply0 = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_33__init_0 = (var$0, var$1, var$2) => { + var$0.$_01043 = var$1; + var$0.$_1356 = var$2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_33__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_33(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_33__init_0(var_2, var_0, var_1); + return var_2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_33_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0751; - var$3 = new oncia_RelationshipQualifier; - oncipau_Util$_$callClinit(); - oncia_RelationshipQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; + var$2 = var$0.$_01043; + var$3 = var$0.$_1356; + var$4 = new sci_$colon$colon; + var$5 = var$2.$prettifier0.$BASE_INDENT; + var$1 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$5), $rt_s(6719)), var$1); + sci_$colon$colon__init_0(var$4, jl_AbstractStringBuilder_toString(var$2), sci_Nil$_MODULE$); + return sci_List_map(var$4, new onciap_DefaultExpressionStringifier$$anonfun$stringify$35$lambda$_62_0); +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_34 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$stringify$lambda$_11_34__init_0 = var$0 => { + return; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_34__init_ = () => { + let var_0 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_34(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_34__init_0(var_0); + return var_0; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_34_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 === null ? 0 : 1); }; -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1() { - jl_Object.call(this); - this.$_0265 = null; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_35() { + let a = this; jl_Object.call(a); + a.$_05 = null; + a.$_17 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_35__init_0 = (var$0, var$1, var$2) => { + var$0.$_05 = var$1; + var$0.$_17 = var$2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_35__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_35(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_35__init_0(var_2, var_0, var_1); + return var_2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_35_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; var$1 = var$1; - var$2 = var$0.$_0265; - var$3 = new oncia_LabelQualifier; - oncipau_Util$_$callClinit(); - oncia_LabelQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; + var$2 = var$0.$_05; + var$3 = var$0.$_17; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$4 = var$1.$_1(); + var$1 = var$1.$_2(); + var$5 = new sci_$colon$colon; + var$6 = var$2.$prettifier0.$BASE_INDENT; + var$4 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 1, var$4); + var$1 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$6), $rt_s(6717)), var$4), $rt_s(6718)), var$1); + sci_$colon$colon__init_0(var$5, jl_AbstractStringBuilder_toString(var$2), sci_Nil$_MODULE$); + return sci_List_map(var$5, new onciap_DefaultExpressionStringifier$$anonfun$stringify$38$lambda$_65_0); }; -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2() { - jl_Object.call(this); - this.$_0859 = null; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_36() { + let a = this; jl_Object.call(a); + a.$_0809 = null; + a.$_1271 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2_apply = (var$0, var$1) => { +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_36__init_0 = (var$0, var$1, var$2) => { + var$0.$_0809 = var$1; + var$0.$_1271 = var$2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_36__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_36(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_36__init_0(var_2, var_0, var_1); + return var_2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_36_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0809; + var$3 = var$0.$_1271; + var$4 = new sci_$colon$colon; + var$5 = var$2.$prettifier0.$BASE_INDENT; + var$1 = onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$5), $rt_s(6719)), var$1); + sci_$colon$colon__init_0(var$4, jl_AbstractStringBuilder_toString(var$2), sci_Nil$_MODULE$); + return sci_List_map(var$4, new onciap_DefaultExpressionStringifier$$anonfun$stringify$40$lambda$_67_0); +}, +oncie_AndsReorderable = $rt_classWithoutFields(oncie_Expression); +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_37() { + let a = this; jl_Object.call(a); + a.$_0302 = null; + a.$_1109 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_37__init_ = (var$0, var$1, var$2) => { + var$0.$_0302 = var$1; + var$0.$_1109 = var$2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_37__init_0 = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_37(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_37__init_(var_2, var_0, var_1); + return var_2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_37_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0859; - var$3 = new oncia_ElementQualifier; - oncipau_Util$_$callClinit(); - oncia_ElementQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; + var$2 = var$0.$_0302; + var$3 = var$0.$_1109; + return sci_$colon$colon__init_(var$1.$canonicalOperatorSymbol(), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1.$rhs()), sci_Nil$_MODULE$)); }; -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3() { - jl_Object.call(this); - this.$_0935 = null; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_38() { + let a = this; jl_Object.call(a); + a.$_0745 = null; + a.$_1250 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3_apply0 = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_38__init_0 = (var$0, var$1, var$2) => { + var$0.$_0745 = var$1; + var$0.$_1250 = var$2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_38__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_38(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_38__init_0(var_2, var_0, var_1); + return var_2; +}, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_38_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0935; - var$3 = new oncia_LabelQualifier; - oncipau_Util$_$callClinit(); - oncia_LabelQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; + return onciap_DefaultExpressionStringifier_inner(var$0.$_0745, var$0.$_1250, 0, var$1); }; -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4() { +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_39() { jl_Object.call(this); - this.$_0396 = null; + this.$_01165 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4_apply0 = var$0 => { - return (oavr_ParserRuleContext_getRuleContext(var$0.$_0396, $rt_cls(oncipv_Cypher5Parser$MapContext), 0)).$ast0; +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_39__init_0 = (var$0, var$1) => { + var$0.$_01165 = var$1; }, -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_39__init_ = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_39(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_39__init_0(var_1, var_0); + return var_1; +}; +function onciap_DefaultExpressionStringifier$stringify$lambda$_11_40() { + let a = this; jl_Object.call(a); + a.$_01166 = null; + a.$_1396 = null; +} +let onciap_DefaultExpressionStringifier$stringify$lambda$_11_40__init_0 = (var$0, var$1, var$2) => { + var$0.$_01166 = var$1; + var$0.$_1396 = var$2; }, -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1_apply = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +onciap_DefaultExpressionStringifier$stringify$lambda$_11_40__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$stringify$lambda$_11_40(); + onciap_DefaultExpressionStringifier$stringify$lambda$_11_40__init_0(var_2, var_0, var_1); + return var_2; }, -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0_apply = var$0 => { - return s_None$_MODULE$; +oncilp_CoerceToPredicate = $rt_classWithoutFields(oncie_Expression), +oncie_AssertIsNode = $rt_classWithoutFields(oncie_Expression), +oncie_ElementIdToLongId = $rt_classWithoutFields(oncie_Expression), +oncie_EntityType = $rt_classWithoutFields(0), +oncie_NODE_TYPE$ = $rt_classWithoutFields(), +oncie_NODE_TYPE$_MODULE$ = null, +oncie_NODE_TYPE$__clinit_ = () => { + oncie_NODE_TYPE$_MODULE$ = new oncie_NODE_TYPE$; }, -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1_apply = var$0 => { - return s_None$_MODULE$; +oncie_NODE_TYPE$_productArity = $this => { + return 0; }, -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +oncie_NODE_TYPE$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3_apply = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncie_NODE_TYPE$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0_apply = var$0 => { - return oncia_Restrict$_MODULE$; +oncie_NODE_TYPE$_hashCode = $this => { + return (-1012987049); }, -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1_apply0 = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncie_NODE_TYPE$_toString = $this => { + return $rt_s(6720); }, -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0_apply0 = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncie_ElementIdToLongId$Mode = $rt_classWithoutFields(0), +oncie_ElementIdToLongId$Mode$Single$ = $rt_classWithoutFields(), +oncie_ElementIdToLongId$Mode$Single$_MODULE$ = null, +oncie_ElementIdToLongId$Mode$Single$__clinit_ = () => { + oncie_ElementIdToLongId$Mode$Single$_MODULE$ = new oncie_ElementIdToLongId$Mode$Single$; }, -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_10 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1_apply = var$0 => { - return s_None$_MODULE$; +oncie_ElementIdToLongId$Mode$Many$ = $rt_classWithoutFields(), +oncie_ElementIdToLongId$Mode$Many$_MODULE$ = null, +oncie_ElementIdToLongId$Mode$Many$__clinit_ = () => { + oncie_ElementIdToLongId$Mode$Many$_MODULE$ = new oncie_ElementIdToLongId$Mode$Many$; }, -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_20 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2_apply0 = var$0 => { - return s_None$_MODULE$; +oncie_RELATIONSHIP_TYPE$ = $rt_classWithoutFields(), +oncie_RELATIONSHIP_TYPE$_MODULE$ = null, +oncie_RELATIONSHIP_TYPE$__clinit_ = () => { + oncie_RELATIONSHIP_TYPE$_MODULE$ = new oncie_RELATIONSHIP_TYPE$; }, -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_30 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3_apply = (var$0, var$1, var$2) => { - return var$1.$concat2(var$2); +oncie_RELATIONSHIP_TYPE$_productArity = $this => { + return 0; }, -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0_apply = var$0 => { - return s_None$_MODULE$; +oncie_RELATIONSHIP_TYPE$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1_apply0 = var$0 => { - return s_None$_MODULE$; +oncie_RELATIONSHIP_TYPE$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0_apply0 = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncie_RELATIONSHIP_TYPE$_hashCode = $this => { + return 1809384673; }, -oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0_apply0 = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncie_RELATIONSHIP_TYPE$_toString = $this => { + return $rt_s(6721); }, -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0_apply = var$0 => { - return s_None$_MODULE$; +oncie_VarLengthLowerBound = $rt_classWithoutFields(oncie_VarLengthBound), +oncie_VarLengthUpperBound = $rt_classWithoutFields(oncie_VarLengthBound), +oncie_IsRepeatTrailUnique = $rt_classWithoutFields(oncie_Expression), +oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0 = $rt_classWithoutFields(), +oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0__init_0 = var$0 => { + return; }, -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_10 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1_apply0 = var$0 => { - return s_None$_MODULE$; +oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0__init_ = () => { + let var_0 = new oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0(); + oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0__init_0(var_0); + return var_0; }, -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_20 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2_apply0 = var$0 => { - return s_None$_MODULE$; +oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0_apply = (var$0, var$1) => { + return var$1.$_2(); }, -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_30 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3_apply = var$0 => { - return s_None$_MODULE$; +oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0 = $rt_classWithoutFields(), +oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0__init_0 = var$0 => { + return; }, -oncipvaf_LiteralBuilder$0 = $rt_classWithoutFields(), -oncipvaf_LiteralBuilder$_MODULE$0 = null, -oncipvaf_LiteralBuilder$__clinit_0 = () => { - oncipvaf_LiteralBuilder$_MODULE$0 = new oncipvaf_LiteralBuilder$0; +oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0__init_ = () => { + let var_0 = new oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0(); + oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0__init_0(var_0); + return var_0; }, -oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0_apply0 = (var$0, var$1) => { +oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 95 ? 0 : 1); +}, +onciuh_Math$ = $rt_classWithoutFields(), +onciuh_Math$_MODULE$ = null, +onciuh_Math$_$callClinit = () => { + onciuh_Math$_$callClinit = $rt_eraseClinit(onciuh_Math$); + onciuh_Math$__clinit_(); +}, +onciuh_Math$__clinit_ = () => { + let var$1; + var$1 = new onciuh_Math$; + onciuh_Math$_$callClinit(); + onciuh_Math$_MODULE$ = var$1; +}, +onciuh_Math$_subtractExact = ($this, $a, $b) => { + let $res, $resSgnBit, var$5, var$6; + $res = Long_sub($a, $b); + $resSgnBit = Long_ge($res, Long_ZERO) ? 0 : 1; + var$5 = Long_ge($a, Long_ZERO) ? 0 : 1; + if ($resSgnBit != var$5 && $resSgnBit != (Long_le($b, Long_ZERO) ? 0 : 1)) { + var$6 = new jl_ArithmeticException; + jl_Throwable__init_(var$6, $rt_s(6656)); + $rt_throw(var$6); + } + return $res; +}; +function oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0() { + let a = this; jl_Object.call(a); + a.$_0369 = null; + a.$_1131 = null; +} +let oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0369; + var$2 = var$0.$_1131; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + var$3 = oncias_package$_MODULE$; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$0(oncias_SemanticExpressionCheck$_MODULE$, var$1.$variable0(), oncias_SemanticExpressionCheck$FilteringExpressions$_possibleInnerTypes(oncias_SemanticExpressionCheck$FilteringExpressions$_MODULE$, var$1), s_None$_MODULE$, 0)), oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Simple$_MODULE$, + var$2)), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0, var$2)); +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0 = $rt_classWithoutFields(), +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0__init_ = var$0 => { + return; +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0__init_0 = () => { + let var_0 = new oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0(); + oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0__init_(var_0); + return var_0; +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 95 ? 0 : 1); +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2 = $rt_classWithoutFields(), +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2__init_0 = var$0 => { + return; +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2__init_ = () => { + let var_0 = new oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2(); + oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2__init_0(var_0); + return var_0; +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 111 ? 0 : 1); +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1 = $rt_classWithoutFields(), +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1__init_ = var$0 => { + return; +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1__init_0 = () => { + let var_0 = new oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1(); + oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1__init_(var_0); + return var_0; +}, +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 111 ? 0 : 1); +}, +oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0 = $rt_classWithoutFields(), +oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0__init_0 = var$0 => { + return; +}, +oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0__init_ = () => { + let var_0 = new oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0(); + oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0__init_0(var_0); + return var_0; +}, +oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToChar(var$1) == 95 ? 0 : 1); +}; +function oavra_SemanticContext$AND() { + oavra_SemanticContext$Operator.call(this); + this.$opnds = null; +} +let oavra_SemanticContext$AND_equals = ($this, $obj) => { + let $other; + if ($this === $obj) + return 1; + if (!($obj instanceof oavra_SemanticContext$AND)) + return 0; + $other = $obj; + return ju_Arrays_equals0($this.$opnds, $other.$opnds); +}, +oavra_SemanticContext$AND_hashCode = $this => { + return oavrm_MurmurHash_hashCode($this.$opnds, jl_Object_identity($rt_cls(oavra_SemanticContext$AND))); +}, +oavra_SemanticContext$AND_eval = ($this, $parser, $parserCallStack) => { + let var$3, var$4, var$5; + var$3 = $this.$opnds.data; + var$4 = var$3.length; + var$5 = 0; + while (var$5 < var$4) { + if (!var$3[var$5].$eval($parser, $parserCallStack)) + return 0; + var$5 = var$5 + 1 | 0; + } + return 1; +}, +oavra_SemanticContext$AND_evalPrecedence = ($this, $parser, $parserCallStack) => { + let $differs, $operands, var$5, var$6, var$7, $result, $i, $context, $evaluated; + $differs = 0; + $operands = ju_ArrayList__init_(); + var$5 = $this.$opnds.data; + var$6 = var$5.length; + var$7 = 0; + while (true) { + if (var$7 >= var$6) { + if (!$differs) + return $this; + if (ju_AbstractCollection_isEmpty($operands)) + return oavra_SemanticContext$Empty_Instance; + $result = ju_ArrayList_get($operands, 0); + $i = 1; + while ($i < $operands.$size0) { + $result = oavra_SemanticContext_and($result, ju_ArrayList_get($operands, $i)); + $i = $i + 1 | 0; + } + return $result; + } + $context = var$5[var$7]; + $evaluated = $context.$evalPrecedence($parser, $parserCallStack); + $differs = $differs | ($evaluated === $context ? 0 : 1); + if ($evaluated === null) + break; + if ($evaluated !== oavra_SemanticContext$Empty_Instance) + ju_ArrayList_add($operands, $evaluated); + var$7 = var$7 + 1 | 0; + } + return null; +}, +oavra_SemanticContext$AND_toString = $this => { + return oavrm_Utils_join0(ju_AbstractList_iterator(ju_Arrays_asList($this.$opnds)), $rt_s(6722)); +}, +oavra_OrderedATNConfigSet$LexerConfigHashSet = $rt_classWithoutFields(oavra_ATNConfigSet$AbstractConfigHashSet); +function onih_Strings$CodePointsIterator() { + let a = this; jl_Object.call(a); + a.$s = null; + a.$numCodePoints = 0; + a.$charIndex = 0; + a.$codePointIndex = 0; +} +let oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_0 = $rt_classWithoutFields(), +oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_0_apply = (var$0, var$1) => { var$1 = var$1; - return s_Tuple2__init_((var$1.$_1()).$name5, var$1.$_2()); + return jl_Boolean_valueOf(!var$1.$isNullable() && !(var$1 instanceof oncius_NothingType) ? 0 : 1); }; -function oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0() { +function oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_1() { + jl_Object.call(this); + this.$_0331 = null; +} +let oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_1_apply = (var$0, var$1) => { + var$1 = var$1; + return oncia_CypherTypeName_cypherTypeSemanticCheck(var$0.$_0331, var$1); +}, +oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_2 = $rt_classWithoutFields(), +oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_2_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isNullable() ? 0 : 1); +}; +function oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0() { let a = this; jl_Object.call(a); - a.$_0798 = null; - a.$_1269 = null; + a.$_0563 = null; + a.$_1192 = null; } -let oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0_apply = (var$0, var$1) => { +let oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0_apply = var$0 => { + return var$0.$_0563.$error4($rt_s(6723), var$0.$_1192.$position19); +}; +function oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0() { + jl_Object.call(this); + this.$_0788 = null; +} +let oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0798; - var$3 = var$0.$_1269; - if ($rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) - return var$1; - if (!(var$1 instanceof oncie_PatternPartWithSelector)) - $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$0.$_0788; + var$3 = oncias_package$_MODULE$; + var$4 = var$1.$variable18; + oncius_package$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(var$3, var$2.$declareVariable(var$4, var$1.$cypherType0.$invariant())); +}; +function oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_1() { + jl_Object.call(this); + this.$_0279 = null; +} +let oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_1_apply = (var$0, var$1) => { + return oncia_CommandResultItem_semanticCheck(var$1, var$0.$_0279.$columnsAsMap()); +}; +function sc_MapView$FilterKeys() { + let a = this; sc_AbstractMapView.call(a); + a.$underlying23 = null; + a.$p4 = null; +} +let sc_MapView$FilterKeys_iterator = $this => { + let var$1, var$2; + var$1 = sc_MapView$Id_iterator($this.$underlying23); + var$2 = new sc_MapView$FilterKeys$iterator$lambda$_0_0; + var$2.$_01191 = $this; + return var$1.$filter(var$2); +}; +function oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0() { + jl_Object.call(this); + this.$_0694 = null; +} +let oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - var$4 = var$2.$exceptionFactory5; - var$1 = var$1.$selector1.$prettified(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(3998)), var$1), $rt_s(7751)); - var$2 = jl_AbstractStringBuilder_toString(var$2); - oncipau_Util$_$callClinit(); - $rt_throw(onciu_OpenCypherExceptionFactory_syntaxException(var$4, var$2, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3))); + var$2 = var$0.$_0694; + var$1 = oncia_SubqueryCall$InTransactionsParameters_semanticCheck(var$1); + var$3 = oncia_SubqueryCall$_findTransactionalSubquery(oncia_SubqueryCall$_MODULE$, var$2.$innerQuery()); + oncias_OptionSemanticChecking$_$callClinit(); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$5 = new oncia_SubqueryCall$checkNoNestedCallInTransactions$lambda$_21_0; + var$5.$_0418 = var$2; + return oncias_SemanticCheck_chain$(var$1, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$3, var$5)); }, -oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_00 = $rt_classWithoutFields(), -oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0_apply = (var$0, var$1) => { +onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0_apply = (var$0, var$1) => { + return var$1; +}; +function onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1() { + let a = this; jl_Object.call(a); + a.$_0465 = null; + a.$_1161 = null; +} +let onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - if (var$1 instanceof oncie_PatternPartWithSelector) - var$1 = var$1; - else { - if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) { - var$2 = new jl_IllegalStateException; - var$1 = jl_Object_getClass(var$1); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7752)), var$1); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); + var$2 = var$0.$_0465; + var$3 = var$0.$_1161; + return sci_List_map(sci_$colon$colon__init_($rt_s(4040), sci_$colon$colon__init_(onciap_DefaultExpressionStringifier_inner(var$2, var$3, 0, var$1), sci_Nil$_MODULE$)), new onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_78_0); +}, +onciap_DefaultExpressionStringifier$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +onciap_DefaultExpressionStringifier$$anonfun$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if (!$rt_isInstance($x, oncie_ChainableBinaryOperatorExpression)) + $x = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); + return $x; +}, +oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0 = $rt_classWithoutFields(), +oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$containsDynamicLabelOrTypeExpression()); +}, +otcit_DoubleSynthesizer = $rt_classWithoutFields(), +otcit_DoubleSynthesizer_mantissa10Table = null, +otcit_DoubleSynthesizer_exp10Table = null, +otcit_DoubleSynthesizer_synthesizeDouble = ($mantissa, $exp, $negative) => { + let $indexInTable, var$5, $binMantissa, $binExp, $binMantissaShift, $error, $correction, $binMantissaWithoutError, $cmp, $iee754; + $indexInTable = 330 + $exp | 0; + if (Long_ne($mantissa, Long_ZERO) && $indexInTable >= 0) { + var$5 = otcit_DoubleSynthesizer_mantissa10Table.data; + if ($indexInTable >= var$5.length) + return !$negative ? Infinity : (-Infinity); + $binMantissa = otcit_DoubleAnalyzer_mulAndShiftRight($mantissa, var$5[$indexInTable], 0); + $binExp = otcit_DoubleSynthesizer_exp10Table.data[$indexInTable]; + $binMantissaShift = (64 - jl_Long_numberOfLeadingZeros($binMantissa) | 0) - 58 | 0; + $binMantissa = $binMantissaShift >= 0 ? Long_shru($binMantissa, $binMantissaShift) : Long_shl($binMantissa, -$binMantissaShift | 0); + $binExp = $binExp + $binMantissaShift | 0; + if ($binExp >= 2047) + return !$negative ? Infinity : (-Infinity); + $error = Long_lo(Long_and($binMantissa, Long_fromInt(31))); + $correction = 16; + if (jl_Math_abs($error - 16 | 0) <= 1) { + $binMantissaWithoutError = Long_and($binMantissa, Long_fromInt(-32)); + $cmp = jl_Long_compareUnsigned(Long_sub($mantissa, otcit_DoubleSynthesizer_calcDecMantissa($binMantissaWithoutError, 32, $indexInTable, $binExp)), Long_sub(otcit_DoubleSynthesizer_calcDecMantissa(Long_add($binMantissaWithoutError, Long_fromInt(32)), 32, $indexInTable, $binExp), $mantissa)); + if ($cmp < 0) + $correction = -$error | 0; + else if ($cmp > 0) + $correction = 32 - $error | 0; } - var$2 = var$1; - var$1 = oncie_PatternPartWithSelector__init_(oncie_PatternPart$AllPaths__init_(var$2.$position()), var$2); + $mantissa = Long_add($binMantissa, Long_fromInt($correction)); + if (Long_ne(Long_and($mantissa, Long_create(0, 4227858432)), Long_ZERO)) { + $mantissa = Long_shru($mantissa, 1); + $binExp = $binExp + 1 | 0; + } + if ($binExp <= 0) { + $mantissa = Long_shr($mantissa, jl_Math_min(( -$binExp | 0) + 1 | 0, 64)); + $binExp = 0; + } + $iee754 = Long_or(Long_and(Long_shru($mantissa, 5), Long_create(4294967295, 1048575)), Long_shl(Long_fromInt($binExp), 52)); + if ($negative) + $iee754 = Long_xor($iee754, Long_create(0, 2147483648)); + return $rt_longBitsToDouble($iee754); } - return var$1; -}; -function oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_10() { - jl_Object.call(this); - this.$_0111 = null; -} -let oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1_apply0 = var$0 => { - let var$1; - var$1 = var$0.$_0111; - return oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, var$1); + return $rt_longBitsToDouble((!$negative ? Long_ZERO : Long_create(0, 2147483648))); }, -oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0 = $rt_classWithoutFields(), -oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0_apply0 = (var$0, var$1) => { - return oncipv_Cypher25Parser$ProcedureArgumentContext_expression(var$1); +otcit_DoubleSynthesizer_calcDecMantissa = ($mantissa, $lowerBit, $indexInTable, $binExp) => { + let $half, $shift, $decMantissa, $lowerPos, $decMantissaHi, $upperPos, $posCmp; + $half = $lowerBit >>> 1 | 0; + $shift = 7 - (otcit_DoubleAnalyzer_exp10Table.data[$indexInTable] - $binExp | 0) | 0; + $decMantissa = otcit_DoubleAnalyzer_mulAndShiftRight($mantissa, otcit_DoubleAnalyzer_mantissa10Table.data[$indexInTable], $shift); + $lowerPos = Long_fromInt($half); + $decMantissaHi = otcit_DoubleAnalyzer_mulAndShiftRight(Long_add($mantissa, $lowerPos), otcit_DoubleAnalyzer_mantissa10Table.data[$indexInTable], $shift); + $lowerPos = otcit_DoubleAnalyzer_findLowerDistance($decMantissa, otcit_DoubleAnalyzer_mulAndShiftRight(Long_sub($mantissa, $lowerPos), otcit_DoubleAnalyzer_mantissa10Table.data[$indexInTable], $shift)); + $upperPos = otcit_DoubleAnalyzer_findUpperDistance($decMantissa, $decMantissaHi); + $posCmp = jl_Long_compareUnsigned($lowerPos, $upperPos); + return $posCmp > 0 ? Long_mul(jl_Long_divideUnsigned($decMantissa, $lowerPos), $lowerPos) : $posCmp < 0 ? Long_add(Long_mul(jl_Long_divideUnsigned($decMantissa, $upperPos), $upperPos), $upperPos) : Long_mul(jl_Long_divideUnsigned(Long_add($decMantissa, Long_div($upperPos, Long_fromInt(2))), $upperPos), $upperPos); }, -oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0 = $rt_classWithoutFields(), -oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = new oncie_LabelName; - var$3 = var$1.$ast0; - oncipau_Util$_$callClinit(); - oncie_LabelName__init_0(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); - return var$2; +otcit_DoubleSynthesizer__clinit_ = () => { + otcit_DoubleSynthesizer_mantissa10Table = $rt_createLongArrayFromData([Long_create(136053384, 4203730336), Long_create(85033365, 2627331460), Long_create(106291706, 3284164325), Long_create(1206606457, 4105205406), Long_create(3975354508, 2565753378), Long_create(2821709486, 3207191723), Long_create(2453395034, 4008989654), Long_create(459630072, 2505618534), Long_create(2722021238, 3132023167), Long_create(2328784724, 3915028959), Long_create(3066103188, 2446893099), Long_create(2758887162, 3058616374), + Long_create(1301125304, 3823270468), Long_create(2960686963, 2389544042), Long_create(1553375056, 2986930053), Long_create(3015460644, 3733662566), Long_create(810921078, 2333539104), Long_create(1013651348, 2916923880), Long_create(1267064185, 3646154850), Long_create(1865656940, 2278846781), Long_create(3405812998, 2848558476), Long_create(4257266248, 3560698095), Long_create(4271404141, 2225436309), Long_create(2118029704, 2781795387), Long_create(1573795306, 3477244234), Long_create(2057363890, 2173277646), + Long_create(424221215, 2716597058), Long_create(2677760167, 3395746322), Long_create(1199716561, 4244682903), Long_create(2360435586, 2652926814), Long_create(803060835, 3316158518), Long_create(3151309692, 4145198147), Long_create(1432697645, 2590748842), Long_create(3938355705, 3238436052), Long_create(627977335, 4048045066), Long_create(1466227658, 2530028166), Long_create(3980268221, 3162535207), Long_create(3901593452, 3953169009), Long_create(827883171, 2470730631), Long_create(4256079436, 3088413288), + Long_create(1025131999, 3860516611), Long_create(103836588, 2412822882), Long_create(2277279383, 3016028602), Long_create(699115580, 3770035753), Long_create(3121301798, 2356272345), Long_create(680401775, 2945340432), Long_create(850502219, 3681675540), Long_create(2679047535, 2301047212), Long_create(3348809418, 2876309015), Long_create(3112269949, 3595386269), Long_create(2482039630, 2247116418), Long_create(955065890, 2808895523), Long_create(120090538, 3511119404), Long_create(2222540234, 2194449627), + Long_create(1704433469, 2743062034), Long_create(4278025484, 3428827542), Long_create(3200048207, 4286034428), Long_create(4147513777, 2678771517), Long_create(1963166750, 3348464397), Long_create(3527700261, 4185580496), Long_create(2204812663, 2615987810), Long_create(608532181, 3269984763), Long_create(3981890698, 4087480953), Long_create(878068951, 2554675596), Long_create(1097586188, 3193344495), Long_create(298240911, 3991680619), Long_create(3944496953, 2494800386), Long_create(2783137544, 3118500483), + Long_create(2405180106, 3898125604), Long_create(3650721214, 2436328502), Long_create(2415917870, 3045410628), Long_create(3019897337, 3806763285), Long_create(2424306748, 2379227053), Long_create(4104125259, 2974033816), Long_create(835189277, 3717542271), Long_create(2132606034, 2323463919), Long_create(1592015719, 2904329899), Long_create(916277825, 3630412374), Long_create(3793899112, 2269007733), Long_create(1521148418, 2836259667), Long_create(827693699, 3545324584), Long_create(517308562, 2215827865), + Long_create(1720377526, 2769784831), Long_create(1076730084, 3462231039), Long_create(2283569038, 2163894399), Long_create(1780719474, 2704867999), Long_create(1152157519, 3381084999), Long_create(366455074, 4226356249), Long_create(2913388981, 2641472655), Long_create(2567994403, 3301840819), Long_create(2136251179, 4127301024), Long_create(1335156987, 2579563140), Long_create(1668946234, 3224453925), Long_create(3159924616, 4030567406), Long_create(901211061, 2519104629), Long_create(2200255651, 3148880786), + Long_create(602835915, 3936100983), Long_create(1987385183, 2460063114), Long_create(336747831, 3075078893), Long_create(1494676613, 3843848616), Long_create(934172883, 2402405385), Long_create(2241457928, 3003006731), Long_create(1728080585, 3753758414), Long_create(6308542, 2346099009), Long_create(1081627501, 2932623761), Long_create(2425776201, 3665779701), Long_create(2052981037, 2291112313), Long_create(3639968121, 2863890391), Long_create(3476218327, 3579862989), Long_create(2709507366, 2237414368), + Long_create(3386884208, 2796767960), Long_create(4233605260, 3495959950), Long_create(1572261463, 2184974969), Long_create(3039068653, 2731218711), Long_create(2725093993, 3414023389), Long_create(185142019, 4267529237), Long_create(652584674, 2667205773), Long_create(1889472666, 3334007216), Long_create(2361840833, 4167509020), Long_create(3623634168, 2604693137), Long_create(1308317239, 3255866422), Long_create(3782880196, 4069833027), Long_create(1827429211, 2543645642), Long_create(136802865, 3179557053), + Long_create(1244745406, 3974446316), Long_create(2925449527, 2484028947), Long_create(2583070084, 3105036184), Long_create(3228837605, 3881295230), Long_create(944281679, 2425809519), Long_create(106610275, 3032261899), Long_create(3354488316, 3790327373), Long_create(2633426109, 2368954608), Long_create(3291782637, 2961193260), Long_create(4114728296, 3701491575), Long_create(4182317921, 2313432234), Long_create(3080413753, 2891790293), Long_create(629291719, 3614737867), Long_create(4151403709, 2259211166), + Long_create(3041770988, 2824013958), Long_create(1654730087, 3530017448), Long_create(1034206304, 2206260905), Long_create(2366499704, 2757826131), Long_create(1884382806, 3447282664), Long_create(1177739254, 2154551665), Long_create(2545915892, 2693189581), Long_create(4256136688, 3366486976), Long_create(1025203564, 4208108721), Long_create(3325106788, 2630067950), Long_create(2008899837, 3287584938), Long_create(363641148, 4109481173), Long_create(764146629, 2568425733), Long_create(2028925111, 3210532166), + Long_create(388672741, 4013165208), Long_create(242920463, 2508228255), Long_create(3524876051, 3135285318), Long_create(2258611415, 3919106648), Long_create(1411632134, 2449441655), Long_create(690798344, 3061802069), Long_create(1937239754, 3827252586), Long_create(2284516670, 2392032866), Long_create(708162190, 2990041083), Long_create(4106428209, 3737551353), Long_create(955904895, 2335969596), Long_create(1194881119, 2919961995), Long_create(419859574, 3649952494), Long_create(3483637706, 2281220308), + Long_create(59579836, 2851525386), Long_create(2221958443, 3564406732), Long_create(3536207675, 2227754207), Long_create(3346517770, 2784692759), Long_create(3109405388, 3480865949), Long_create(2480249280, 2175541218), Long_create(952827952, 2719426523), Long_create(117293116, 3399283154), Long_create(2294100043, 4249103942), Long_create(360070703, 2655689964), Long_create(450088378, 3319612455), Long_create(3783835945, 4149515568), Long_create(2364897466, 2593447230), Long_create(808638184, 3241809038), + Long_create(3158281378, 4052261297), Long_create(363313125, 2532663311), Long_create(3675366878, 3165829138), Long_create(2446724950, 3957286423), Long_create(3139815830, 2473304014), Long_create(1777286139, 3091630018), Long_create(74124026, 3864537523), Long_create(3804423900, 2415335951), Long_create(3681788051, 3019169939), Long_create(3528493240, 3773962424), Long_create(2205308275, 2358726515), Long_create(1682893520, 2948408144), Long_create(2103616900, 3685510180), Long_create(3462244210, 2303443862), + Long_create(2180321615, 2879304828), Long_create(2725402019, 3599131035), Long_create(1166505350, 2249456897), Long_create(2531873511, 2811821121), Long_create(4238583713, 3514776401), Long_create(1038502085, 2196735251), Long_create(224385782, 2745919064), Long_create(280482227, 3432398830), Long_create(2498086432, 4290498537), Long_create(4245658580, 2681561585), Long_create(2085847753, 3351951982), Long_create(459826043, 4189939978), Long_create(1361133101, 2618712486), Long_create(3848900024, 3273390607), + Long_create(3737383206, 4091738259), Long_create(1798993592, 2557336412), Long_create(2248741990, 3196670515), Long_create(1737185663, 3995838144), Long_create(1085741040, 2497398840), Long_create(1357176300, 3121748550), Long_create(3843954022, 3902185687), Long_create(4013084000, 2438866054), Long_create(2868871352, 3048582568), Long_create(3586089190, 3810728210), Long_create(3315047568, 2381705131), Long_create(3070067636, 2977131414), Long_create(1690100897, 3721414268), Long_create(3203796708, 2325883917), + Long_create(783520414, 2907354897), Long_create(2053142341, 3634193621), Long_create(1820084875, 2271371013), Long_create(3348847918, 2839213766), Long_create(2038576249, 3549017208), Long_create(1274110156, 2218135755), Long_create(518895871, 2772669694), Long_create(2796103486, 3465837117), Long_create(2284435591, 2166148198), Long_create(708060841, 2707685248), Long_create(885076051, 3384606560), Long_create(1106345064, 4230758200), Long_create(691465665, 2644223875), Long_create(4085557553, 3305279843), + Long_create(4033205117, 4131599804), Long_create(373269550, 2582249878), Long_create(2614070586, 3227812347), Long_create(2193846408, 4034765434), Long_create(2444895829, 2521728396), Long_create(3056119787, 3152160495), Long_create(2746407909, 3940200619), Long_create(1179634031, 2462625387), Long_create(400800715, 3078281734), Long_create(2648484542, 3847852167), Long_create(3265915575, 2404907604), Long_create(4082394468, 3006134505), Long_create(1881767613, 3757668132), Long_create(3323588406, 2348542582), + Long_create(2007001860, 2935678228), Long_create(2508752325, 3669597785), Long_create(4252324763, 2293498615), Long_create(4241664130, 2866873269), Long_create(2080854690, 3583591587), Long_create(763663269, 2239744742), Long_create(3102062735, 2799680927), Long_create(2803836594, 3499601159), Long_create(3363010608, 2187250724), Long_create(4203763259, 2734063405), Long_create(2033478602, 3417579257), Long_create(3615590077, 4271974071), Long_create(3870356534, 2669983794), Long_create(2690462020, 3337479743), + Long_create(2289335700, 4171849679), Long_create(3041447549, 2607406049), Long_create(580583964, 3259257562), Long_create(2873213603, 4074071952), Long_create(1795758502, 2546294970), Long_create(97214479, 3182868713), Long_create(1195259923, 3978585891), Long_create(210166540, 2486616182), Long_create(2410191823, 3108270227), Long_create(1938997955, 3885337784), Long_create(1211873722, 2428336115), Long_create(441100328, 3035420144), Long_create(551375410, 3794275180), Long_create(2492093279, 2371421987), + Long_create(2041374775, 2964277484), Long_create(2551718469, 3705346855), Long_create(3205436779, 2315841784), Long_create(4006795974, 2894802230), Long_create(2861011319, 3618502788), Long_create(3935615723, 2261564242), Long_create(2772036005, 2826955303), Long_create(2391303183, 3533694129), Long_create(4178919049, 2208558830), Long_create(3076165163, 2760698538), Long_create(1697722806, 3450873173), Long_create(1597947666, 2156795733), Long_create(3071176406, 2695994666), Long_create(1691486860, 3369993333), + Long_create(3188100399, 4212491666), Long_create(3066304573, 2632807291), Long_create(2759138893, 3291009114), Long_create(1301439968, 4113761393), Long_create(3497754540, 2571100870), Long_create(2224709527, 3213876088), Long_create(2780886909, 4017345110), Long_create(664312494, 2510840694), Long_create(2977874265, 3138550867), Long_create(2648601008, 3923188584), Long_create(1655375630, 2451992865), Long_create(3142961361, 3064991081), Long_create(707476230, 3831238852), Long_create(2589656291, 2394524282), + Long_create(1089586716, 2993155353), Long_create(2435725219, 3741444191), Long_create(3132940998, 2338402619), Long_create(2842434424, 2923003274), Long_create(1405559382, 3653754093), Long_create(1415345525, 2283596308), Long_create(1769181907, 2854495385), Long_create(3285219208, 3568119231), Long_create(3663874741, 2230074519), Long_create(3506101602, 2787593149), Long_create(1161401530, 3484491437), Long_create(1262746869, 2177807148), Long_create(1578433586, 2722258935), Long_create(899300158, 3402823669), + Long_create(2197867022, 4253529586), Long_create(2447408712, 2658455991), Long_create(1985519067, 3323069989), Long_create(3555640657, 4153837486), Long_create(1148533587, 2596148429), Long_create(2509408807, 3245185536), Long_create(3136761009, 4056481920), Long_create(1960475631, 2535301200), Long_create(2450594539, 3169126500), Long_create(3063243173, 3961408125), Long_create(2451397895, 2475880078), Long_create(916763721, 3094850098), Long_create(3293438299, 3868562622), Long_create(984657113, 2417851639), + Long_create(157079567, 3022314549), Long_create(1270091283, 3777893186), Long_create(1867548876, 2361183241), Long_create(3408177919, 2951479051), Long_create(3186480575, 3689348814), Long_create(917808535, 2305843009), Long_create(2221002493, 2882303761), Long_create(3849994940, 3602879701), Long_create(2943117750, 2251799813), Long_create(457671715, 2814749767), Long_create(3793315116, 3518437208), Long_create(2370821947, 2199023255), Long_create(1889785610, 2748779069), Long_create(3435973837, 3435973836), + Long_create(0, 2147483648), Long_create(0, 2684354560), Long_create(0, 3355443200), Long_create(0, 4194304000), Long_create(0, 2621440000), Long_create(0, 3276800000), Long_create(0, 4096000000), Long_create(0, 2560000000), Long_create(0, 3200000000), Long_create(0, 4000000000), Long_create(0, 2500000000), Long_create(0, 3125000000), Long_create(0, 3906250000), Long_create(0, 2441406250), Long_create(2147483648, 3051757812), Long_create(2684354560, 3814697265), Long_create(67108864, 2384185791), Long_create(3305111552, 2980232238), + Long_create(1983905792, 3725290298), Long_create(2313682944, 2328306436), Long_create(2892103680, 2910383045), Long_create(393904128, 3637978807), Long_create(1856802816, 2273736754), Long_create(173519872, 2842170943), Long_create(3438125312, 3552713678), Long_create(1075086496, 2220446049), Long_create(2417599944, 2775557561), Long_create(4095741754, 3469446951), Long_create(4170451332, 2168404344), Long_create(918096869, 2710505431), Long_create(73879263, 3388131789), Long_create(1166090902, 4235164736), + Long_create(728806814, 2646977960), Long_create(911008517, 3308722450), Long_create(3286244295, 4135903062), Long_create(980160860, 2584939414), Long_create(3372684723, 3231174267), Long_create(3142114080, 4038967834), Long_create(3037563124, 2524354896), Long_create(3796953905, 3155443620), Long_create(451225085, 3944304526), Long_create(3503241150, 2465190328), Long_create(84084142, 3081487911), Long_create(3326330649, 3851859888), Long_create(2078956656, 2407412430), Long_create(451212172, 3009265538), + Long_create(2711498863, 3761581922), Long_create(2768428613, 2350988701), Long_create(239310295, 2938735877), Long_create(1372879692, 3673419846), Long_create(4079275280, 2295887403), Long_create(4025352276, 2869859254), Long_create(2884206696, 3587324068), Long_create(3950112833, 2242077542), Long_create(2790157394, 2802596928), Long_create(3487696742, 3503246160), Long_create(2179810464, 2189528850), Long_create(577279432, 2736911063), Long_create(3942824762, 3421138828), Long_create(633563656, 4276423536), + Long_create(395977285, 2672764710), Long_create(2642455254, 3340955887), Long_create(2229327244, 4176194859), Long_create(856458615, 2610121787), Long_create(4291798741, 3262652233), Long_create(2143522955, 4078315292), Long_create(3487185495, 2548947057), Long_create(1137756396, 3186183822), Long_create(3569679143, 3982729777), Long_create(620436729, 2489206111), Long_create(3996771383, 3111507638), Long_create(2848480580, 3889384548), Long_create(3927784011, 2430865342), Long_create(2762246365, 3038581678), + Long_create(1305324309, 3798227098), Long_create(1889569517, 2373891936), Long_create(2361961896, 2967364920), Long_create(2952452370, 3709206150), Long_create(771540907, 2318253844), Long_create(964426134, 2897817305), Long_create(2279274492, 3622271631), Long_create(3035159293, 2263919769), Long_create(572723645, 2829899712), Long_create(715904556, 3537374640), Long_create(447440347, 2210859150), Long_create(2706784082, 2763573937), Long_create(162254631, 3454467422), Long_create(3322634616, 2159042138), + Long_create(2005809622, 2698802673), Long_create(3581003852, 3373503341), Long_create(1255029343, 4216879177), Long_create(3468747899, 2635549485), Long_create(1114709402, 3294436857), Long_create(2467128577, 4118046071), Long_create(3152568096, 2573778794), Long_create(1793226473, 3217223493), Long_create(3315274915, 4021529366), Long_create(998304998, 2513455854), Long_create(3395364895, 3141819817), Long_create(1022980647, 3927274772), Long_create(2786846552, 2454546732), Long_create(3483558190, 3068183415), + Long_create(3280705914, 3835229269), Long_create(2587312108, 2397018293), Long_create(12914663, 2996272867), Long_create(3237368801, 3745341083), Long_create(1486484589, 2340838177), Long_create(2931847560, 2926047721), Long_create(443583978, 3657559652), Long_create(2424723634, 2285974782), Long_create(883420895, 2857468478), Long_create(3251759766, 3571835597), Long_create(2569220766, 2232397248), Long_create(3211525958, 2790496560), Long_create(4014407447, 3488120700), Long_create(361521006, 2180075438), + Long_create(2599384906, 2725094297), Long_create(28005660, 3406367872), Long_create(35007075, 4257959840), Long_create(21879422, 2661224900), Long_create(27349278, 3326531125), Long_create(1107928421, 4158163906), Long_create(1766197087, 2598852441), Long_create(3281488183, 3248565551), Long_create(3028118405, 4060706939), Long_create(1355703091, 2537941837), Long_create(2768370688, 3172427296), Long_create(3460463360, 3965534120), Long_create(2162789600, 2478458825), Long_create(3777228824, 3098073531), + Long_create(3647794206, 3872591914), Long_create(3353613203, 2420369946), Long_create(2044532855, 3025462433), Long_create(3629407893, 3781828041), Long_create(657767197, 2363642526), Long_create(2969692644, 2954553157), Long_create(490890333, 3693191447), Long_create(1917419194, 2308244654), Long_create(249290345, 2885305818), Long_create(2459096579, 3606632272), Long_create(1536935362, 2254145170), Long_create(4068652851, 2817681462), Long_create(2938332415, 3522101828), Long_create(3983941407, 2201313642), + Long_create(2832443111, 2751642053), Long_create(319328417, 3439552567), Long_create(1810192997, 2149720354), Long_create(115257598, 2687150443), Long_create(3365297469, 3358938053), Long_create(985396365, 4198672567), Long_create(2226485464, 2624170354), Long_create(635623182, 3280212943), Long_create(4015754449, 4100266178), Long_create(3583588355, 2562666361), Long_create(1258259972, 3203332952), Long_create(1572824965, 4004166190), Long_create(4204241075, 2502603868), Long_create(960334048, 3128254836), + Long_create(1200417559, 3910318545), Long_create(3434615535, 2443949090), Long_create(2145785770, 3054936363), Long_create(1608490389, 3818670454), Long_create(4226531965, 2386669033), Long_create(2061939484, 2983336292), Long_create(2577424355, 3729170365), Long_create(2147761134, 2330731478), Long_create(537217770, 2913414348), Long_create(671522212, 3641767935), Long_create(2030314119, 2276104959), Long_create(1464150824, 2845131199), Long_create(756446706, 3556413999), Long_create(2083391927, 2222758749), + Long_create(3677981733, 2778448436), Long_create(302509871, 3473060546), Long_create(1262810493, 2170662841), Long_create(2652254940, 2713328551), Long_create(2241576851, 3391660689), Long_create(3875712888, 4239575861), Long_create(2959191467, 2649734913), Long_create(477763862, 3312168642), Long_create(2744688476, 4140210802), Long_create(2789172121, 2587631751), Long_create(2412723328, 3234539689), Long_create(4089645983, 4043174611), Long_create(2019157828, 2526984132), Long_create(2523947285, 3158730165), + Long_create(4228675930, 3948412706), Long_create(3716664280, 2467757941), Long_create(1424604878, 3084697427), Long_create(707014274, 3855871784), Long_create(441883921, 2409919865), Long_create(1626096725, 3012399831), Long_create(958879083, 3765499789), Long_create(1136170339, 2353437368), Long_create(1420212923, 2941796710), Long_create(3922749802, 3677245887), Long_create(4062331362, 2298278679), Long_create(4004172379, 2872848349), Long_create(1783990002, 3591060437), Long_create(1651864663, 2244412773), + Long_create(3138572653, 2805515966), Long_create(1775732168, 3506894958), Long_create(36090781, 2191809349), Long_create(1118855300, 2739761686), Long_create(3546052773, 3424702107), Long_create(3358824142, 4280877634), Long_create(3173006913, 2675548521), Long_create(745033169, 3344435652), Long_create(931291462, 4180544565), Long_create(1118928076, 2612840353), Long_create(2472401918, 3266050441), Long_create(4164244222, 4082563051), Long_create(2065781727, 2551601907), Long_create(1508485334, 3189502384), + Long_create(1885606668, 3986877980), Long_create(3325987816, 2491798737), Long_create(936259297, 3114748422), Long_create(3317807770, 3893435527), Long_create(3684242592, 2433397204), Long_create(310335944, 3041746506), Long_create(2535403578, 3802183132), Long_create(3732110884, 2376364457), Long_create(1443913133, 2970455572), Long_create(1804891417, 3713069465), Long_create(3812411696, 2320668415), Long_create(3691772795, 2900835519), Long_create(3540974170, 3626044399), Long_create(3823721592, 2266277749), + Long_create(1558426518, 2832847187), Long_create(874291324, 3541058984), Long_create(546432078, 2213161865), Long_create(1756781921, 2766452331), Long_create(1122235577, 3458065414), Long_create(3922622708, 2161290883), Long_create(3829536561, 2701613604), Long_create(491953405, 3377017006), Long_create(2762425404, 4221271257), Long_create(115903142, 2638294536), Long_create(144878927, 3297868170), Long_create(2328582307, 4122335212), Long_create(3602847590, 2576459507), Long_create(3429817663, 3220574384), + Long_create(4287272079, 4025717980), Long_create(532061401, 2516073738), Long_create(2812560400, 3145092172), Long_create(3515700500, 3931365215), Long_create(3807925548, 2457103259), Long_create(3686165111, 3071379074), Long_create(2460222741, 3839223843), Long_create(1000768301, 2399514902), Long_create(3398444024, 2999393627), Long_create(3174313207, 3749242034), Long_create(3057687578, 2343276271), Long_create(2748367649, 2929095339), Long_create(2361717737, 3661369174), Long_create(402331761, 2288355734), + Long_create(2650398350, 2860444667), Long_create(2239256113, 3575555834), Long_create(2473276895, 2234722396), Long_create(3091596119, 2793402995), Long_create(2790753324, 3491753744), Long_create(1744220828, 2182346090), Long_create(32792387, 2727932613), Long_create(1114732307, 3409915766), Long_create(3540899032, 4262394707), Long_create(1676190983, 2663996692), Long_create(2095238729, 3329995865), Long_create(3692790235, 4162494831), Long_create(3918606633, 2601559269), Long_create(1677032819, 3251949087), + Long_create(1022549200, 4064936359), Long_create(2249705986, 2540585224), Long_create(2812132482, 3175731530), Long_create(1367681955, 3969664413), Long_create(1391672134, 2481040258), Long_create(3887073815, 3101300322), Long_create(2711358621, 3876625403), Long_create(1157728226, 2422890877), Long_create(2520902107, 3028613596), Long_create(3151127633, 3785766995), Long_create(1432583859, 2366104372), Long_create(1790729824, 2957630465), Long_create(3312154103, 3697038081), Long_create(459483579, 2310648801), + Long_create(1648096297, 2888311001), Long_create(3133862196, 3610388751), Long_create(3569276608, 2256492969), Long_create(1240370288, 2820616212), Long_create(1550462860, 3525770265), Long_create(3653393848, 2203606415), Long_create(3493000486, 2754508019), Long_create(3292508783, 3443135024), Long_create(2057817989, 2151959390), Long_create(424788839, 2689949238), Long_create(2678469697, 3362436547), Long_create(2274345297, 4203045684), Long_create(3568949458, 2626903552), Long_create(166219527, 3283629441), + Long_create(1281516233, 4104536801), Long_create(3485302206, 2565335500), Long_create(61660461, 3206669376), Long_create(77075576, 4008336720), Long_create(48172235, 2505210450), Long_create(2207698942, 3131513062), Long_create(612140029, 3914391328), Long_create(382587518, 2446494580), Long_create(478234398, 3058118225), Long_create(1671534821, 3822647781), Long_create(1581580175, 2389154863), Long_create(903233395, 2986443579), Long_create(55299920, 3733054474), Long_create(1108304274, 2333159046)]); + otcit_DoubleSynthesizer_exp10Table = $rt_createShortArrayFromData([(-76), (-72), (-69), (-66), (-62), (-59), (-56), (-52), (-49), (-46), (-42), (-39), (-36), (-32), (-29), (-26), (-22), (-19), (-16), (-12), (-9), (-6), (-2), 1, 4, 8, 11, 14, 17, 21, 24, 27, 31, 34, 37, 41, 44, 47, 51, 54, 57, 61, 64, 67, 71, 74, 77, 81, 84, 87, 91, 94, 97, 101, 104, 107, 110, 114, 117, 120, 124, 127, 130, 134, 137, 140, 144, 147, 150, 154, 157, 160, 164, 167, 170, 174, 177, 180, 184, 187, 190, 194, 197, 200, 204, 207, 210, + 213, 217, 220, 223, 227, 230, 233, 237, 240, 243, 247, 250, 253, 257, 260, 263, 267, 270, 273, 277, 280, 283, 287, 290, 293, 297, 300, 303, 306, 310, 313, 316, 320, 323, 326, 330, 333, 336, 340, 343, 346, 350, 353, 356, 360, 363, 366, 370, 373, 376, 380, 383, 386, 390, 393, 396, 400, 403, 406, 409, 413, 416, 419, 423, 426, 429, 433, 436, 439, 443, 446, 449, 453, 456, 459, 463, 466, 469, 473, 476, 479, 483, 486, 489, 493, 496, 499, 502, 506, 509, 512, 516, 519, 522, 526, 529, 532, 536, 539, 542, 546, 549, + 552, 556, 559, 562, 566, 569, 572, 576, 579, 582, 586, 589, 592, 595, 599, 602, 605, 609, 612, 615, 619, 622, 625, 629, 632, 635, 639, 642, 645, 649, 652, 655, 659, 662, 665, 669, 672, 675, 679, 682, 685, 689, 692, 695, 698, 702, 705, 708, 712, 715, 718, 722, 725, 728, 732, 735, 738, 742, 745, 748, 752, 755, 758, 762, 765, 768, 772, 775, 778, 782, 785, 788, 791, 795, 798, 801, 805, 808, 811, 815, 818, 821, 825, 828, 831, 835, 838, 841, 845, 848, 851, 855, 858, 861, 865, 868, 871, 875, 878, 881, 885, 888, + 891, 894, 898, 901, 904, 908, 911, 914, 918, 921, 924, 928, 931, 934, 938, 941, 944, 948, 951, 954, 958, 961, 964, 968, 971, 974, 978, 981, 984, 987, 991, 994, 997, 1001, 1004, 1007, 1011, 1014, 1017, 1021, 1024, 1027, 1031, 1034, 1037, 1041, 1044, 1047, 1051, 1054, 1057, 1061, 1064, 1067, 1071, 1074, 1077, 1081, 1084, 1087, 1090, 1094, 1097, 1100, 1104, 1107, 1110, 1114, 1117, 1120, 1124, 1127, 1130, 1134, 1137, 1140, 1144, 1147, 1150, 1154, 1157, 1160, 1164, 1167, 1170, 1174, 1177, 1180, 1183, 1187, 1190, + 1193, 1197, 1200, 1203, 1207, 1210, 1213, 1217, 1220, 1223, 1227, 1230, 1233, 1237, 1240, 1243, 1247, 1250, 1253, 1257, 1260, 1263, 1267, 1270, 1273, 1276, 1280, 1283, 1286, 1290, 1293, 1296, 1300, 1303, 1306, 1310, 1313, 1316, 1320, 1323, 1326, 1330, 1333, 1336, 1340, 1343, 1346, 1350, 1353, 1356, 1360, 1363, 1366, 1370, 1373, 1376, 1379, 1383, 1386, 1389, 1393, 1396, 1399, 1403, 1406, 1409, 1413, 1416, 1419, 1423, 1426, 1429, 1433, 1436, 1439, 1443, 1446, 1449, 1453, 1456, 1459, 1463, 1466, 1469, 1472, + 1476, 1479, 1482, 1486, 1489, 1492, 1496, 1499, 1502, 1506, 1509, 1512, 1516, 1519, 1522, 1526, 1529, 1532, 1536, 1539, 1542, 1546, 1549, 1552, 1556, 1559, 1562, 1566, 1569, 1572, 1575, 1579, 1582, 1585, 1589, 1592, 1595, 1599, 1602, 1605, 1609, 1612, 1615, 1619, 1622, 1625, 1629, 1632, 1635, 1639, 1642, 1645, 1649, 1652, 1655, 1659, 1662, 1665, 1668, 1672, 1675, 1678, 1682, 1685, 1688, 1692, 1695, 1698, 1702, 1705, 1708, 1712, 1715, 1718, 1722, 1725, 1728, 1732, 1735, 1738, 1742, 1745, 1748, 1752, 1755, + 1758, 1761, 1765, 1768, 1771, 1775, 1778, 1781, 1785, 1788, 1791, 1795, 1798, 1801, 1805, 1808, 1811, 1815, 1818, 1821, 1825, 1828, 1831, 1835, 1838, 1841, 1845, 1848, 1851, 1855, 1858, 1861, 1864, 1868, 1871, 1874, 1878, 1881, 1884, 1888, 1891, 1894, 1898, 1901, 1904, 1908, 1911, 1914, 1918, 1921, 1924, 1928, 1931, 1934, 1938, 1941, 1944, 1948, 1951, 1954, 1957, 1961, 1964, 1967, 1971, 1974, 1977, 1981, 1984, 1987, 1991, 1994, 1997, 2001, 2004, 2007, 2011, 2014, 2017, 2021, 2024, 2027, 2031, 2034, 2037, + 2041, 2044, 2047, 2051, 2054, 2057, 2060, 2064, 2067, 2070, 2074, 2077, 2080, 2084, 2087, 2090, 2094, 2097, 2100, 2104, 2107, 2110, 2114]); }, -oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0_apply = (var$0, var$1) => { - return var$1.$position22; +oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_00 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_0_apply0 = (var$0, var$1) => { + return var$1.$name(); }; -function oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1() { - jl_Object.call(this); - this.$_0254 = null; +function oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_197_0() { + let a = this; jl_Object.call(a); + a.$_0103 = null; + a.$_137 = null; + a.$_218 = null; } -let oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1_apply0 = var$0 => { - let var$1; - var$1 = var$0.$_0254; - oncipau_Util$_$callClinit(); - return oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1); -}, -oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0 = $rt_classWithoutFields(), -oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4; - var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$3 = var$3.$_20; - var$4 = new oncil_LabelExpression$Negation; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Negation__init_(var$4, var$3, 0, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); - return var$4; +let oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_197_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0103; + var$3 = var$0.$_137; + var$4 = var$0.$_218; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$1, var$2)); + oncius_package$_$callClinit(); + var$5 = oncius_NodeType_invariant(oncius_package$_CTNode(oncius_package$_MODULE$)); + if (var$2 !== null) { + if (!oncius_TypeSpec_equals(var$2, var$5)) + break b; + else + break c; + } + if (var$5 !== null) + break b; + } + var$6 = 1; + break a; + } + var$6 = 0; + } + var$5 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(oncias_SemanticExpressionCheck$_stringifier0(oncias_SemanticExpressionCheck$_MODULE$), var$3.$replaceColonSyntax()); + var$7 = oncias_SemanticCheckResult$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_SemanticCheckResult$_error(var$7, var$1, oncias_SemanticError$_legacyDisjunction(oncias_SemanticError$_MODULE$, var$5, var$3.$containsIs(), var$6, var$4.$position32)); }, -oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0 = $rt_classWithoutFields(), -oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4; +oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$3 = var$3.$_20; - var$4 = new oncil_LabelExpression$Negation; - oncipau_Util$_$callClinit(); - oncil_LabelExpression$Negation__init_(var$4, var$3, 1, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); - return var$4; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + var$3 = oncias_SemanticExpressionCheck$_MODULE$; + oncius_package$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(var$2, oncias_SemanticAnalysisTooling_declareVariable$(var$3, var$1, (oncius_package$_CTPath(oncius_package$_MODULE$)).$invariant())); }, -oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0_apply0 = (var$0, var$1, var$2, var$3) => { - let var$4; +oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_1 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = new oncie_Or; - oncipau_Util$_$callClinit(); - oncie_Or__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); - return var$4; -}, -oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0_apply0 = (var$0, var$1, var$2, var$3) => { - let var$4; + oncias_SemanticExpressionCheck$_$callClinit(); + oncia_Where$_$callClinit(); + return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$69$lambda$_138_0() { + jl_Object.call(this); + this.$_0170 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$69$lambda$_138_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0170; + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2.$list1), var$1); + oncius_package$_$callClinit(); + var$2 = oncius_package$_MODULE$; + return oncius_TypeSpec_unwrapLists(oncius_TypeSpec_constrain(var$1, oncius_package$_CTList(var$2, oncius_package$_CTAny(var$2)))); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_0() { + jl_Object.call(this); + this.$_0713 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0713; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_aExpressionCannotContainUpdates(oncias_SemanticError$_MODULE$, $rt_s(6089), var$1.$position15)); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_1() { + jl_Object.call(this); + this.$_049 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_049; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$3 = var$1.$position15; + var$4 = var$3.$offset(); + var$5 = var$3.$line(); + var$6 = var$3.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$4, var$5, var$6), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N22), + var$4, var$5, var$6)))), $rt_s(6724), var$3)); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_0() { + jl_Object.call(this); + this.$_01123 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_01123; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_aExpressionCannotContainUpdates(oncias_SemanticError$_MODULE$, $rt_s(6098), var$1.$position17)); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_1() { + jl_Object.call(this); + this.$_0530 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_1_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0530; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6725), var$1.$position17)); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_0() { + jl_Object.call(this); + this.$_01134 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_01134; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$3 = var$1.$position16; + var$1 = ong_GqlHelper_getGql42001_42N57($rt_s(5316), var$3.$offset(), var$3.$line(), var$3.$column()); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6726)), $rt_s(5316)), $rt_s(4993)); + oncias_SemanticError__init_(var$4, var$1, jl_AbstractStringBuilder_toString(var$5), var$3); + return oncias_package$_liftSemanticErrorDef(var$2, var$4); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_1() { + jl_Object.call(this); + this.$_0474 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_1_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0474; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6727), var$1.$position16)); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$64$lambda$_133_0() { + jl_Object.call(this); + this.$_0199 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$64$lambda$_133_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = new oncie_Xor; - oncipau_Util$_$callClinit(); - oncie_Xor__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); - return var$4; + var$2 = var$0.$_0199; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = sc_IterableOnceOps_toSeq$(oncie_RelationshipChain_allVariables(var$2.$pattern9.$element5)); + var$4 = new oncias_SemanticExpressionCheck$$anonfun$1; + var$4.$state$1 = var$1; + var$4.$x71$1 = var$2; + return oncias_SemanticCheckResult__init_(var$1, var$3.$collect(var$4)); }, -oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0_apply0 = (var$0, var$1, var$2, var$3) => { - let var$4; +oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_115_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_115_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = new oncie_And; - oncipau_Util$_$callClinit(); - oncie_And__init_(var$4, var$1, var$3, oncipau_Util$_pos1(oncipau_Util$_MODULE$, var$2)); - return var$4; -}, -oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0_apply = (var$0, var$1, var$2) => { - let var$3; + oncias_SemanticPatternCheck$_$callClinit(); + oncia_Where$_$callClinit(); + return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); +}; +function oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0() { + jl_Object.call(this); + this.$_01141 = null; +} +let oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - var$3 = new oncie_Not; - oncipau_Util$_$callClinit(); - oncie_Not__init_(var$3, var$2, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$1.$getSymbol())); - return var$3; + var$2 = var$0.$_01141; + oncia_CommandClause$_$callClinit(); + var$3 = new oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0; + var$3.$_0315 = var$2; + return var$1.$mapExpression(var$3); +}; +function oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0() { + jl_Object.call(this); + this.$_0732 = null; +} +let oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0732; + oncia_CommandClause$_$callClinit(); + return oncia_CommandClause$_updateExpression$1(var$1, var$2); }; -function oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_00() { +function oncias_SemanticAnalysisTooling$expectType$lambda$_21_0() { let a = this; jl_Object.call(a); - a.$_0644 = null; - a.$_1221 = null; + a.$_0447 = null; + a.$_1156 = null; + a.$_255 = null; + a.$_318 = null; } -let oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncias_SemanticAnalysisTooling$expectType$lambda$_21_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; var$1 = var$1; - var$2 = var$0.$_0644; - var$3 = var$0.$_1221; - if (var$1 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$1); - if (!var$1.$lengthCompare(3)) { - var$4 = var$1.$apply1(0); - var$5 = var$1.$apply1(1); - var$1 = var$1.$apply1(2); - if (var$4 instanceof oncip_AstRuleCtx) { - var$4 = var$4; - if ($rt_isInstance(var$5, oavrt_TerminalNode)) { - var$5 = var$5; - if (var$1 instanceof oncip_AstRuleCtx) { - var$1 = var$1; - return oncipvaf_ExpressionBuilder_binaryPredicate(var$2, var$4.$ast0, var$5, var$1); - } - } - } - } - } - var$1 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7753)), var$3); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$1); + var$2 = var$0.$_0447; + var$3 = var$0.$_1156; + var$4 = var$0.$_255; + var$5 = var$0.$_318; + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + var$6 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_113_0; + var$6.$_0917 = var$2; + var$6.$_1316 = var$4; + var$6.$_2106 = var$5; + return var$3.$foldLeft(var$1, var$6); +}, +oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_142_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_142_0_apply = var$0 => { + oncias_SemanticPatternCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); }; -function oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0() { +function oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_149_0() { jl_Object.call(this); - this.$_01183 = null; + this.$_0846 = null; } -let oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0_apply = (var$0, var$1, var$2, var$3) => { - let var$4, var$5; - a: { - var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = (var$2.$getSymbol()).$getType0(); - switch (var$4) { - case 81: - var$5 = new oncie_Concatenate; - oncipau_Util$_$callClinit(); - oncie_Concatenate__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - case 157: - var$5 = new oncie_Subtract; - oncipau_Util$_$callClinit(); - oncie_Subtract__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - case 193: - var$5 = new oncie_Add; - oncipau_Util$_$callClinit(); - oncie_Add__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); - } - return var$5; +let oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_149_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0846; + oncias_SemanticPatternCheck$_$callClinit(); + return oncius_TypeSpec_wrapInList(oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$1, var$2.$singleton))); }; -function oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_00() { +function oncias_SemanticCheck$ifOkChain$lambda$_17_0() { jl_Object.call(this); - this.$_01193 = null; + this.$_0706 = null; } -let oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0_apply = (var$0, var$1, var$2, var$3) => { - let var$4, var$5; - a: { - var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = (var$2.$getSymbol()).$getType0(); - switch (var$4) { - case 78: - var$5 = new oncie_Divide; - oncipau_Util$_$callClinit(); - oncie_Divide__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - case 158: - var$5 = new oncie_Modulo; - oncipau_Util$_$callClinit(); - oncie_Modulo__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - case 265: - var$5 = new oncie_Multiply; - oncipau_Util$_$callClinit(); - oncie_Multiply__init_(var$5, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - break a; - default: - } - $rt_throw(s_MatchError__init_(jl_Integer_valueOf(var$4))); - } - return var$5; -}, -oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0_apply0 = (var$0, var$1, var$2, var$3) => { - let var$4; +let oncias_SemanticCheck$ifOkChain$lambda$_17_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$2; - var$3 = var$3; - var$4 = new oncie_Pow; - oncipau_Util$_$callClinit(); - oncie_Pow__init_(var$4, var$1, var$3, oncipau_Util$_pos0(oncipau_Util$_MODULE$, var$2.$getSymbol())); - return var$4; + var$2 = var$0.$_0706; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_when(oncias_SemanticCheck$_MODULE$, var$1.$errors0.$isEmpty(), var$2); + var$3 = new oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0; + var$3.$_0889 = var$1; + return var$2.$map11(var$3); }; -function oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_00() { +function oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_102_0() { jl_Object.call(this); - this.$_01201 = null; + this.$_0305 = null; } -let oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5; +let oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_102_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$2; - var$3 = var$1.$position(); - if (var$2 instanceof oncipv_Cypher25Parser$PropertyPostfixContext) { - var$2 = var$2; - var$4 = new oncie_Property; - oncipau_Util$_$callClinit(); - oncie_Property__init_0(var$4, var$1, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$3); - } else if (var$2 instanceof oncipv_Cypher25Parser$IndexPostfixContext) { - var$2 = var$2; - var$4 = new oncie_ContainerIndex; - oncipau_Util$_$callClinit(); - var$3 = (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 1)).$ast0; - var$5 = oncipau_Util$_MODULE$; - oncie_ContainerIndex__init_0(var$4, var$1, var$3, oncipau_Util$_pos(var$5, oncipau_Util$_ctxChild(var$5, var$2, 1))); - } else if (var$2 instanceof oncipv_Cypher25Parser$LabelPostfixContext) { - var$2 = var$2; - var$4 = new oncil_LabelExpressionPredicate; - oncipau_Util$_$callClinit(); - oncil_LabelExpressionPredicate__init_(var$4, var$1, (oncipau_Util$_ctxChild(oncipau_Util$_MODULE$, var$2, 0)).$ast0, var$3); - } else { - if (!(var$2 instanceof oncipv_Cypher25Parser$RangePostfixContext)) { - var$1 = new jl_IllegalStateException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7754)), var$2); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$4)); - $rt_throw(var$1); - } - var$5 = var$2; - var$4 = new oncie_ListSlice; - oncipau_Util$_$callClinit(); - oncie_ListSlice__init_(var$4, var$1, oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$5.$fromExp), oncipau_Util$_astOpt(oncipau_Util$_MODULE$, var$5.$toExp), oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - } - return var$4; -}, -oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0_apply = var$0 => { - oncie_NFCNormalForm$_$callClinit(); - return oncie_NFCNormalForm$_MODULE$; -}, -oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0_apply = (var$0, var$1) => { - return oncipv_Cypher25Parser$FunctionArgumentContext_expression(var$1); + var$2 = var$0.$_0305; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticState_symbol(var$2, var$1.$name4); }, -oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0 = $rt_classWithoutFields(), -oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0_apply0 = (var$0, var$1) => { - let var$2; +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = new oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0; - var$2.$_0211 = var$1; - return var$2; + oncias_SemanticPatternCheck$_$callClinit(); + return var$1.$expression0(); }; -function oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_00() { +function oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_1() { let a = this; jl_Object.call(a); - a.$_0954 = null; - a.$_1335 = null; + a.$_0138 = null; + a.$_148 = 0; } -let oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0_accept = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; +let oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_1_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0138; + var$2 = var$0.$_148; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_package$_MODULE$; + var$4 = new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$3$lambda$_176_0; + var$4.$_0133 = var$1; + var$4.$_145 = var$2; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$3, var$4); +}; +function oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_171_0() { + let a = this; jl_Object.call(a); + a.$_0912 = null; + a.$_1313 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_171_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0912; + var$2 = var$0.$_1313; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$1 = var$1.$description(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6728)), var$1), $rt_s(6729)); + return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); +}; +function oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_0() { + let a = this; jl_Object.call(a); + a.$_0645 = null; + a.$_1219 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0645; + var$2 = var$0.$_1219; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$1 = var$1.$description(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6730)), var$1), $rt_s(6731)); + return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); +}; +function oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_1() { + jl_Object.call(this); + this.$_0285 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_1_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0285; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_SemanticPatternCheck$_MODULE$; + var$3 = new oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_168_0; + var$3.$_0275 = var$1; + return oncias_SemanticAnalysisTooling_withScopedState$(var$2, var$3); +}; +function oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_105_0() { + let a = this; jl_Object.call(a); + a.$_0915 = null; + a.$_1315 = null; +} +let oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_105_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0915; + var$2 = var$0.$_1315; + return oncias_SemanticExpressionCheck$_$anonfun$infixAddRhsTypes$1(var$1.$_0114, var$2); +}; +function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_0() { + jl_Object.call(this); + this.$_0907 = null; +} +let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0954; - var$3 = var$0.$_1335; - var$4 = new oncius_ListType; - var$5 = var$2.$elem; - var$6 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); - oncipau_Util$_$callClinit(); - oncius_ListType__init_0(var$4, var$5, var$6, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - var$2.$elem = var$4; -}, -oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0_apply = var$0 => { - return oncia_AllIndexes$_MODULE$; + var$2 = var$0.$_0907; + return jl_Boolean_valueOf(sci_Vector_length(var$1.$argumentTypes()) != (oncie_Expression_arguments(var$2)).$length() ? 0 : 1); }; -function oncipvaf_DdlShowBuilder$ShowWrapper0() { +function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_1() { let a = this; jl_Object.call(a); - a.$where1 = null; - a.$yieldedItems0 = null; - a.$yieldAll1 = 0; - a.$yieldClause2 = null; - a.$returnClause3 = null; - a.$composableClauses = null; - a.$names2 = null; + a.$_0309 = null; + a.$_1113 = null; } -let oncipvaf_DdlShowBuilder$ShowWrapper_buildConstraintClauses = ($this, $constraintType, $position) => { - return oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses($this, oncia_ShowConstraintsClause$_apply(oncia_ShowConstraintsClause$_MODULE$, $constraintType, $this.$where1, $this.$yieldedItems0, $this.$yieldAll1, $position)); -}, -oncipvaf_DdlShowBuilder$ShowWrapper_buildClauses = ($this, $cmdClause) => { - let var$2, var$3, var$4; - var$2 = sci_ArraySeq$_MODULE$; - var$3 = sci_$colon$colon__init_($cmdClause, sci_Nil$_MODULE$); - var$4 = $this.$yieldClause2; - $cmdClause = new oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0; - $cmdClause.$_01189 = $this; - var$4 = ((var$3.$concat(s_Option_map(var$4, $cmdClause))).$concat($this.$returnClause3)).$concat(s_Option_getOrElse($this.$composableClauses, new oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_1)); - sr_ClassTag$_$callClinit(); - return sci_ArraySeq$_from(var$2, var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncia_Clause))); +let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_1_apply = (var$0, var$1, var$2) => { + var$1 = var$1; + var$2 = var$2; + return oncias_SemanticAnalysisTooling_$anonfun$checkTypes$3(var$0.$_0309, var$0.$_1113, var$1, var$2); +}; +function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_2() { + jl_Object.call(this); + this.$_0741 = null; +} +let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_2_apply = var$0 => { + return var$0.$_0741; }, -oncipvaf_DdlShowBuilder$ShowWrapper_copy0 = ($this, $where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names) => { - return oncipvaf_DdlShowBuilder$ShowWrapper__init_1($where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names); +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_3 = $rt_classWithoutFields(), +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_3_apply = (var$0, var$1, var$2) => { + return oncius_TypeSpec_union(var$1, (var$2.$outputType()).$invariant()); +}; +function oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_152_0() { + jl_Object.call(this); + this.$_0920 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_152_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0920; + oncias_SemanticPatternCheck$_$callClinit(); + return var$1.$covariant(); +}; +function oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_147_0() { + jl_Object.call(this); + this.$_0386 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_147_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0386; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, var$1, new oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_146_0); +}; +function oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath() { + jl_Object.call(this); + this.$p1 = null; +} +let oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_position = $this => { + return $this.$p1.$position41; }, -oncipvaf_DdlShowBuilder$ShowWrapper_productPrefix0 = $this => { - return $rt_s(7755); +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productPrefix = $this => { + return $rt_s(6732); }, -oncipvaf_DdlShowBuilder$ShowWrapper_productArity = $this => { - return 7; +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productArity = $this => { + return 1; }, -oncipvaf_DdlShowBuilder$ShowWrapper_productElement = ($this, $x$1) => { +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productElement = ($this, $x$1) => { switch ($x$1) { case 0: - return $this.$where1; - case 1: - return $this.$yieldedItems0; - case 2: - return jl_Boolean_valueOf($this.$yieldAll1); - case 3: - return $this.$yieldClause2; - case 4: - return $this.$returnClause3; - case 5: - return $this.$composableClauses; - case 6: - return $this.$names2; + return $this.$p1; default: } return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlShowBuilder$ShowWrapper_productIterator0 = $this => { +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlShowBuilder$ShowWrapper_hashCode = $this => { - return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(7755))), sr_Statics_anyHash($this.$where1)), sr_Statics_anyHash($this.$yieldedItems0)), !$this.$yieldAll1 ? 1237 : 1231), sr_Statics_anyHash($this.$yieldClause2)), sr_Statics_anyHash($this.$returnClause3)), sr_Statics_anyHash($this.$composableClauses)), sr_Statics_anyHash($this.$names2)), 7); +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlShowBuilder$ShowWrapper_toString0 = $this => { +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_toString = $this => { return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlShowBuilder$ShowWrapper_equals = ($this, $x$1) => { - let var$2, var$3, var$4; +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_equals = ($this, $x$1) => { + let var$2, var$3; a: { b: { if ($this !== $x$1) { - if (!(!($x$1 instanceof oncipvaf_DdlShowBuilder$ShowWrapper0) ? 0 : 1)) - break b; - $x$1 = $x$1; - if ($this.$yieldAll1 != $x$1.$yieldAll1) + if (!(!($x$1 instanceof oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath) ? 0 : 1)) break b; c: { - var$2 = $this.$where1; - var$3 = $x$1.$where1; + $x$1 = $x$1; + var$2 = $this.$p1; + $x$1 = $x$1.$p1; if (var$2 !== null) { - if (!var$2.$equals(var$3)) + if (!oncie_ParenthesizedPath_equals(var$2, $x$1)) break b; else break c; } - if (var$3 !== null) - break b; - } - d: { - var$2 = $this.$yieldedItems0; - var$3 = $x$1.$yieldedItems0; - if (var$2 !== null) { - if (!sci_List_equals(var$2, var$3)) - break b; - else - break d; - } - if (var$3 !== null) - break b; - } - e: { - var$2 = $this.$yieldClause2; - var$3 = $x$1.$yieldClause2; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break e; - } - if (var$3 !== null) - break b; - } - f: { - var$2 = $this.$returnClause3; - var$3 = $x$1.$returnClause3; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break f; - } - if (var$3 !== null) - break b; - } - g: { - var$2 = $this.$composableClauses; - var$3 = $x$1.$composableClauses; - if (var$2 !== null) { - if (!var$2.$equals(var$3)) - break b; - else - break g; - } - if (var$3 !== null) - break b; - } - h: { - var$3 = $this.$names2; - $x$1 = $x$1.$names2; - if (var$3 !== null) { - if (!var$3.$equals($x$1)) - break b; - else - break h; - } if ($x$1 !== null) break b; } - if (!($this instanceof oncipvaf_DdlShowBuilder$ShowWrapper0)) + if (!($this instanceof oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath)) break b; } - var$4 = 1; + var$3 = 1; break a; } - var$4 = 0; + var$3 = 0; } - return var$4; -}, -oncipvaf_DdlShowBuilder$ShowWrapper__init_0 = ($this, $where, $yieldedItems, $yieldAll, $yieldClause, $returnClause, $composableClauses, $names) => { - $this.$where1 = $where; - $this.$yieldedItems0 = $yieldedItems; - $this.$yieldAll1 = $yieldAll; - $this.$yieldClause2 = $yieldClause; - $this.$returnClause3 = $returnClause; - $this.$composableClauses = $composableClauses; - $this.$names2 = $names; -}, -oncipvaf_DdlShowBuilder$ShowWrapper__init_1 = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { - let var_7 = new oncipvaf_DdlShowBuilder$ShowWrapper0(); - oncipvaf_DdlShowBuilder$ShowWrapper__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; -}, -oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0_apply = var$0 => { - return oncia_AllFunctions$_MODULE$; -}, -oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0_apply = var$0 => { - let var$1; - s_package$_$callClinit(); - var$1 = s_package$_Left(s_package$_MODULE$); - s_package$_List(s_package$_MODULE$); - return su_Left$_apply(var$1, sci_Nil$_MODULE$); -}, -oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0_apply = (var$0, var$1) => { - return var$1.$value8; -}, -oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_00 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0_apply0 = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; + return var$3; }, -oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_0 = ($this, $p) => { + $this.$p1 = $p; }, -oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0; - var$2.$_026 = var$1; - return var$2; +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_ = var_0 => { + let var_1 = new oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath(); + oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_0(var_1, var_0); + return var_1; +}; +function oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath() { + jl_Object.call(this); + this.$p0 = null; +} +let oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_position = $this => { + return $this.$p0.$position41; }, -oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0; - var$2.$_0594 = var$1; - return var$2; +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productPrefix = $this => { + return $rt_s(6733); }, -oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productArity = $this => { + return 1; }, -oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - return oncie_Property__init_(var$2, var$1.$_2(), var$2.$position()); +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$p0; + default: + } + return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0_apply0 = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0_apply = (var$0, var$1) => { - return var$1.$ast0; +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = var$2.$_1(); - var$2 = var$2.$_2(); - return (var$1.$appended(var$3)).$concat(var$2); +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2_apply = (var$0, var$1) => { +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_equals = ($this, $x$1) => { let var$2, var$3; - var$1 = var$1; - var$2 = new oncia_PasswordChange; - var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); - oncipau_Util$_$callClinit(); - oncia_PasswordChange__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); - return var$2; -}, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3_apply = (var$0, var$1, var$2) => { - let var$3; - var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - return var$3.$_10.$appended(var$3.$_20); -}, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4_apply = (var$0, var$1) => { - return var$1.$position(); + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$p0; + $x$1 = $x$1.$p0; + if (var$2 !== null) { + if (!oncie_ParenthesizedPath_equals(var$2, $x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5_apply = (var$0, var$1) => { - return var$1.$ast0; +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_dup = ($this, $children) => { + return onciu_ASTNode_dup$($this, $children); }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6_apply = var$0 => { - return s_None$_MODULE$; +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_0 = ($this, $p) => { + $this.$p0 = $p; }, -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7_apply = var$0 => { - return s_None$_MODULE$; +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_ = var_0 => { + let var_1 = new oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath(); + oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_0(var_1, var_0); + return var_1; }; -let oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0_apply = (var$0, var$1) => { - return var$1.$ast0; -}, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1_apply0 = (var$0, var$1, var$2) => { - let var$3; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = var$2.$_1(); - var$2 = var$2.$_2(); - return (var$1.$appended(var$3)).$concat(var$2); -}, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = new oncia_PasswordChange; - var$3 = sr_BoxesRunTime_unboxToBoolean(var$1.$ast0); - oncipau_Util$_$callClinit(); - oncia_PasswordChange__init_(var$2, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$1)); - return var$2; +function oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_109_0() { + let a = this; jl_Object.call(a); + a.$_0637 = null; + a.$_1215 = null; +} +let oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_109_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0637; + var$2 = var$0.$_1215; + var$1 = var$1.$_0629; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$1.$init3), var$2); + var$1 = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, oncie_ReduceExpression_expression(var$1)), var$2); + if (oncius_TypeSpec_equals(oncius_TypeSpec_coerceOrLeastUpperBound(var$3, var$1), var$1)) + var$3 = var$1; + return var$3; }, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3_apply0 = (var$0, var$1, var$2) => { +oncius_TypeSpec$$minimalRanges$lambda$_12_0 = $rt_classWithoutFields(), +oncius_TypeSpec$$minimalRanges$lambda$_12_0_apply = (var$0, var$1, var$2) => { let var$3; var$1 = var$1; var$2 = var$2; + oncius_TypeSpec$_$callClinit(); var$3 = s_Tuple2__init_(var$1, var$2); - return var$3.$_10.$appended(var$3.$_20); -}, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4_apply0 = (var$0, var$1) => { - return var$1.$position(); -}, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5_apply0 = var$0 => { - return s_None$_MODULE$; -}; -function oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6() { - jl_Object.call(this); - this.$_0466 = null; -} -let oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6_apply0 = var$0 => { - return var$0.$_0466; -}, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7_apply = (var$0, var$1) => { - return var$1.$ast0; -}, -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8_apply = (var$0, var$1) => { - return var$1.$ast0; -}, -oncipvaf_DdlBuilder$$anon$10 = $rt_classWithoutFields(oncie_ExplicitParameter), -oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0_apply = var$0 => { - return s_Tuple2$mcZZ$sp__init_(0, 0); -}, -oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0_apply = var$0 => { - return s_Tuple2$mcZZ$sp__init_(0, 0); -}, -oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0_apply = var$0 => { - return s_Tuple2$mcZZ$sp__init_(0, 0); -}, -oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0_apply = var$0 => { - let var$1, var$2; - var$1 = new sci_$colon$colon; - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + var$3 = new oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0; + var$3.$_086 = var$2; + if (!sc_IterableOnceOps_exists$(var$1, var$3)) { + var$3 = new oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1; + var$3.$_01041 = var$2; + var$1 = (sc_StrictOptimizedIterableOps_filterNot$(var$1, var$3)).$$colon$plus(var$2); + } return var$1; }, -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_00 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0_apply0 = var$0 => { - let var$1, var$2; - var$1 = new sci_$colon$colon; - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); - return var$1; +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0 = $rt_classWithoutFields(), +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0_apply = (var$0, var$1) => { + return oncie_Expression$TreeAcc_popScope(var$1); }, -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_10 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1_apply = var$0 => { - let var$1, var$2; - var$1 = new sci_$colon$colon; - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); - return var$1; +oncius_TypeSpec$$exact$lambda$_4_0 = $rt_classWithoutFields(), +oncius_TypeSpec$$exact$lambda$_4_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncius_TypeSpec$_$callClinit(); + return oncius_TypeRange$_apply(oncius_TypeRange$_MODULE$, var$1, var$1); }, -oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0_apply0 = var$0 => { - let var$1, var$2; - var$1 = new sci_$colon$colon; - var$2 = new oncia_UserAllQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserAllQualifier__init_(var$2, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - sci_$colon$colon__init_0(var$1, var$2, sci_Nil$_MODULE$); +onciu_NonEmptyList$reverse$lambda$_66_0 = $rt_classWithoutFields(), +onciu_NonEmptyList$reverse$lambda$_66_0_apply = (var$0, var$1) => { + s_Predef$_$callClinit(); return var$1; -}, -oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new oncia_UserQualifier; - onciu_InputPosition$_$callClinit(); - oncia_UserQualifier__init_(var$2, var$1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - return var$2; }; -function oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_00() { - jl_Object.call(this); - this.$_0867 = null; +function oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_102_0() { + let a = this; jl_Object.call(a); + a.$_01121 = null; + a.$_1382 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0_apply0 = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0867; - var$3 = new oncia_FunctionQualifier; - oncipau_Util$_$callClinit(); - oncia_FunctionQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; +let oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_102_0_apply = var$0 => { + return var$0.$_01121.$apply2(var$0.$_1382); }; -function oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_00() { - jl_Object.call(this); - this.$_0967 = null; +function oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_133_0() { + let a = this; jl_Object.call(a); + a.$_084 = null; + a.$_129 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0_apply0 = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0967; - var$3 = new oncia_ProcedureQualifier; - oncipau_Util$_$callClinit(); - oncia_ProcedureQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; +let oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_133_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_084; + var$2 = var$0.$_129; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$1 = var$1.$description(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6734)), var$1), $rt_s(6735)); + return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); }; -function oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0() { +function oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_107_0() { jl_Object.call(this); - this.$_0457 = null; + this.$_0776 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0_apply0 = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0457; - var$3 = new oncia_SettingQualifier; - oncipau_Util$_$callClinit(); - oncia_SettingQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; -}, -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0_apply0 = var$0 => { - return $rt_s(4); -}, -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1_apply = var$0 => { - return $rt_s(4); -}, -oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0_apply0 = var$0 => { - return $rt_s(4); -}, -oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0_apply = var$0 => { - return $rt_s(4); -}, -oncipvaf_DdlPrivilegeBuilder$GraphToken = $rt_classWithoutFields(0); -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_00() { - jl_Object.call(this); - this.$_0986 = null; +let oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_107_0_apply = var$0 => { + return var$0.$_0776; +}; +function oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_0() { + let a = this; jl_Object.call(a); + a.$_0818 = null; + a.$_1274 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0986; - var$3 = new oncia_RelationshipQualifier; - oncipau_Util$_$callClinit(); - oncia_RelationshipQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; +let oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0818; + var$2 = var$0.$_1274; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$1 = var$1.$description(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6736)), var$1), $rt_s(6731)); + return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); }; -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_10() { +function oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_1() { jl_Object.call(this); - this.$_0340 = null; + this.$_0274 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1_apply0 = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0340; - var$3 = new oncia_LabelQualifier; - oncipau_Util$_$callClinit(); - oncia_LabelQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; +let oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_1_apply = (var$0, var$1) => { + var$1 = var$0.$_0274; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_SemanticAnalysisTooling_error$(oncias_SemanticPatternCheck$_MODULE$, $rt_s(6737), var$1.$position()); }; -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_20() { +function oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_2() { jl_Object.call(this); - this.$_01104 = null; + this.$_0368 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2_apply0 = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_01104; - var$3 = new oncia_ElementQualifier; - oncipau_Util$_$callClinit(); - oncia_ElementQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; +let oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_2_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0368; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = oncias_SemanticPatternCheck$_MODULE$; + var$3 = new oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_138_0; + var$3.$_0318 = var$1; + return oncias_SemanticAnalysisTooling_withScopedState$(var$2, var$3); }; -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_30() { +function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0() { jl_Object.call(this); - this.$_0585 = null; + this.$_0186 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0585; - var$3 = new oncia_LabelQualifier; - oncipau_Util$_$callClinit(); - oncia_LabelQualifier__init_(var$3, var$1, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$2)); - return var$3; +let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0_apply = (var$0, var$1) => { + return var$1.$appended(var$0.$_0186); }; -function oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_40() { +function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0() { jl_Object.call(this); - this.$_01061 = null; + this.$_0737 = null; } -let oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4_apply = var$0 => { - return (oavr_ParserRuleContext_getRuleContext(var$0.$_01061, $rt_cls(oncipv_Cypher25Parser$MapContext), 0)).$ast0; -}, -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; -}, -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1_apply = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0_apply = (var$0, var$1) => { + return var$1.$appended(var$0.$_0737); }, -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0_apply = var$0 => { - return s_None$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$State = $rt_classWithoutFields(0), +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$ = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_MODULE$ = null, +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$__clinit_ = () => { + oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_MODULE$ = new oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$; }, -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1_apply = var$0 => { - return s_None$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_foundSubquery = $this => { + return oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$; }, -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2_apply = var$0 => { - oncia_NoOptions$_$callClinit(); - return oncia_NoOptions$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_foundCrossReference = $this => { + return oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$; }, -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3 = $rt_classWithoutFields(), -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3_apply = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productArity = $this => { + return 0; }, -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0_apply0 = var$0 => { - return oncia_Restrict$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_10 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1_apply = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0_apply = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_hashCode = $this => { + return (-562500651); }, -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1_apply0 = var$0 => { - return s_None$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_toString = $this => { + return $rt_s(6738); +}; +function oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$semanticTable$11 = null; + a.$x8$1 = null; + a.$previousClause$1 = null; +} +let oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let var$3, var$4, var$5, var$6, var$7; + var$3 = 0; + if ($x1 instanceof oncie_CaseExpression) + return new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0; + if ($rt_isInstance($x1, oncie_SubqueryExpression)) { + var$3 = 1; + $x1 = $x1; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + $default = $this.$semanticTable$11; + var$4 = $this.$x8$1; + var$5 = $this.$previousClause$1; + if (!$rt_isInstance(var$4, oncia_CreateOrInsert)) + var$6 = 0; + else { + var$4 = var$4; + var$7 = new oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0; + var$7.$_0822 = $default; + var$5 = s_Option_getOrElse(s_Option_map(var$5, var$7), new oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1); + var$6 = sc_IterableOnceOps_nonEmpty$(((oncifp_IsolateSubqueriesInMutatingPatterns$_getDefinedSymbols$1(var$4.$pattern5(), $default)).$removedAll(var$5)).$intersect($x1.$scopeDependencies())); + } + if (var$6) + return new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1; + } + if (!var$3) + return new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3; + return new oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2; }, -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2_apply = var$0 => { - return s_None$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$ = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$ = null, +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$__clinit_ = () => { + oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$ = new oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$; }, -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3_apply0 = (var$0, var$1, var$2) => { - return var$1.$concat2(var$2); +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_foundSubquery = $this => { + return oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_MODULE$; }, -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0_apply0 = var$0 => { - return s_None$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_foundCrossReference = $this => { + return oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$; }, -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_10 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1_apply = var$0 => { - return s_None$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productArity = $this => { + return 0; }, -oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0_apply = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0_apply = var$0 => { - oncia_NoWait$_$callClinit(); - return oncia_NoWait$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0_apply0 = var$0 => { - return s_None$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_hashCode = $this => { + return (-858789446); }, -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1_apply = var$0 => { - return s_None$_MODULE$; +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_toString = $this => { + return $rt_s(6739); }, -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2_apply = var$0 => { - return s_None$_MODULE$; +oncia_AuthImpl$checkDuplicates$lambda$_5_0 = $rt_classWithoutFields(), +oncia_AuthImpl$checkDuplicates$lambda$_5_0_apply = (var$0, var$1) => { + return var$1.$name(); }, -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3_apply0 = var$0 => { - return s_None$_MODULE$; +oncia_AuthImpl$$anonfun$checkDuplicates$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_AuthImpl$$anonfun$checkDuplicates$2_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5; + $x = $x; + if ($x !== null) { + $x = $x.$_2(); + if ($x !== null) { + s_package$_$callClinit(); + s_package$_List(s_package$_MODULE$); + sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $x); + if ($x.$lengthCompare(2) >= 0) { + $x = $x.$apply1(1); + oncia_AdministrationCommandSemanticAnalysis$_$callClinit(); + $default = oncia_AdministrationCommandSemanticAnalysis$_MODULE$; + var$3 = $x.$name(); + var$4 = $x.$name(); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6740)), var$4), $rt_s(6511)); + $default = oncia_AdministrationCommandSemanticAnalysis$_duplicateClauseError($default, var$3, jl_AbstractStringBuilder_toString(var$5), $x.$position()); + } + } + } + return $default; }, -oncipvaf_LiteralBuilder$ = $rt_classWithoutFields(), -oncipvaf_LiteralBuilder$_MODULE$ = null, -oncipvaf_LiteralBuilder$__clinit_ = () => { - oncipvaf_LiteralBuilder$_MODULE$ = new oncipvaf_LiteralBuilder$; +oncia_AuthImpl$checkDuplicates$lambda$_5_1 = $rt_classWithoutFields(), +oncia_AuthImpl$checkDuplicates$lambda$_5_1_apply = var$0 => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }, -oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_00 = $rt_classWithoutFields(), -oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0_apply = (var$0, var$1) => { - var$1 = var$1; - return s_Tuple2__init_((var$1.$_1()).$name5, var$1.$_2()); -}; -function onciap_Prettifier$optionsToString$lambda$_42_0() { - jl_Object.call(this); - this.$_0100 = null; -} -let onciap_Prettifier$optionsToString$lambda$_42_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0100; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = onciap_Prettifier_backtick(var$2, var$3); - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(9)), var$1); - return jl_AbstractStringBuilder_toString(var$2); +oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0 = $rt_classWithoutFields(), +oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0_apply = (var$0, var$1) => { + return var$1.$asSensitiveLiteral(); }, -oncia_ProcedureAllQualifier = $rt_classWithoutFields(), -oncia_FunctionAllQualifier = $rt_classWithoutFields(), -oncia_SettingAllQualifier = $rt_classWithoutFields(); -function oncia_SingleNamedGraphScope() { - jl_Object.call(this); - this.$graph = null; -} -function oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0() { - jl_Object.call(this); - this.$_095 = null; -} -let oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0_apply = (var$0, var$1) => { - let var$2; +oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1 = $rt_classWithoutFields(), +oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_095; - oncius_TypeSpec$_$callClinit(); - return jl_Boolean_valueOf(oncius_TypeRange_contains(var$1, var$2)); + var$2 = new onciu_LiteralOffset; + var$3 = var$1; + onciu_LiteralOffset__init_0(var$2, (var$3.$position()).$offset(), (var$3.$position()).$line(), s_Some__init_(jl_Integer_valueOf(var$3.$literalLength()))); + return var$2; +}, +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0 = $rt_classWithoutFields(), +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$deprecated0); }; -function oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1() { - jl_Object.call(this); - this.$_01053 = null; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1() { + let a = this; jl_Object.call(a); + a.$_0123 = null; + a.$_142 = null; } -let oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1_apply = (var$0, var$1) => { - let var$2; +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_01053; - oncius_TypeSpec$_$callClinit(); - return jl_Boolean_valueOf(oncius_TypeRange_contains(var$2, var$1)); + var$2 = var$0.$_0123; + var$3 = var$0.$_142; + return onn_DeprecatedProcedureFieldNotification__init_(var$2.$position9, oncifp_QualifiedName_toString(var$3), var$1.$name9); }, -oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0 = $rt_classWithoutFields(), -oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0_apply = var$0 => { - let var$1; - var$1 = new jl_IllegalStateException; - jl_Throwable__init_0(var$1, $rt_s(7756)); - $rt_throw(var$1); +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0 = $rt_classWithoutFields(), +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$deprecated0); }; -function oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0() { - jl_Object.call(this); - this.$_0911 = 0; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1() { + let a = this; jl_Object.call(a); + a.$_0878 = null; + a.$_1296 = null; } -let oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_semanticCheckInSubqueryExpressionContext(var$1, var$0.$_0911); -}, -oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - if ($x instanceof oncie_StringLiteral) { - $default = $x.$value8; - oncias_SemanticPatternCheck$_$callClinit(); - $x = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, $default); - } else if (!($x instanceof oncie_Null)) - $x = $default.$apply2($x); - else { - oncias_SemanticPatternCheck$_$callClinit(); - $x = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, null); - } - return $x; -}, -oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0 = $rt_classWithoutFields(), -oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$containsMatchSpecificLabelExpression()); +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0878; + var$3 = var$0.$_1296; + return onn_DeprecatedProcedureFieldNotification__init_(var$2.$position9, oncifp_QualifiedName_toString(var$3), var$1.$name9); }, -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_0 = $rt_classWithoutFields(), -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_0_apply = (var$0, var$1, var$2) => { - return oncius_TypeSpec_union(var$1, (sci_Vector_head(var$2.$argumentTypes())).$covariant()); +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0 = $rt_classWithoutFields(), +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$deprecated0); }; -function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_1() { - jl_Object.call(this); - this.$_013 = null; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1() { + let a = this; jl_Object.call(a); + a.$_0196 = null; + a.$_172 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_1_apply = var$0 => { - return var$0.$_013; +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0196; + var$3 = var$0.$_172; + return onn_DeprecatedFunctionFieldNotification__init_(var$2.$position12, oncifp_QualifiedName_toString(var$3), var$1.$name9); +}, +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0 = $rt_classWithoutFields(), +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$deprecated0); }; -function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_2() { - jl_Object.call(this); - this.$_0698 = null; +function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1() { + let a = this; jl_Object.call(a); + a.$_0779 = null; + a.$_1259 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_2_apply = (var$0, var$1) => { +let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return jl_Boolean_valueOf(oncius_TypeSpec_containsAny(var$0.$_0698, (sci_Vector_head(var$1.$argumentTypes())).$covariant())); -}, -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_3 = $rt_classWithoutFields(), -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_3_apply = (var$0, var$1) => { - return var$1.$removeFirstArgumentType(); + var$2 = var$0.$_0779; + var$3 = var$0.$_1259; + return onn_DeprecatedFunctionFieldNotification__init_(var$2.$position12, oncifp_QualifiedName_toString(var$3), var$1.$name9); }; -function oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_101_0() { +function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0() { jl_Object.call(this); - this.$_0209 = null; + this.$_0440 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_101_0_apply = var$0 => { - return var$0.$_0209; -}, -oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_1 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_1_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_0_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_StorableType$_$callClinit(); - return oncius_StorableType$_storableType; +let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0440.$currentWorkGraph; + var$3 = var$1.$useClausesToRemove; + return oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_(var$1.$$outer30, var$3, var$2); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$74$lambda$_149_0() { +function oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0() { let a = this; jl_Object.call(a); - a.$_0896 = null; - a.$_1308 = null; + a.$_0229 = null; + a.$_186 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$74$lambda$_149_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; - var$2 = var$0.$_0896; - var$3 = var$0.$_1308; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$4 = oncius_package$_MODULE$; - var$5 = oncius_TypeSpec_intersect(oncius_ListType_covariant(oncius_package$_CTList(var$4, oncius_package$_CTAny(var$4))), var$2); - var$6 = oncius_TypeSpec_intersect(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), var$2); - var$7 = oncius_TypeSpec_intersect(oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$)), var$2); - var$2 = oncius_TypeSpec_intersect(oncius_MapType_invariant(oncius_package$_CTMap(oncius_package$_MODULE$)), var$2); - var$8 = oncius_TypeSpec_nonEmpty(var$5); - var$9 = !oncius_TypeSpec_nonEmpty(var$6) && !oncius_TypeSpec_nonEmpty(var$7) ? 0 : 1; - var$10 = oncius_TypeSpec_nonEmpty(var$2); - var$11 = oncius_TypeSpec_nonEmpty(oncius_TypeSpec_intersect(oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)), var$1)); - var$12 = oncius_TypeSpec_nonEmpty(oncius_TypeSpec_intersect(oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)), var$1)); - if (var$8) { - oncias_package$_$callClinit(); - var$1 = oncias_package$_MODULE$; - var$2 = oncias_SemanticExpressionCheck$_MODULE$; - var$4 = new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_0; - var$4.$_0160 = var$5; - var$1 = oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(var$1, oncias_SemanticAnalysisTooling_specifyType$(var$2, var$4, var$3)), oncias_SemanticExpressionCheck$_expectType0(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_1, var$3.$idx0, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_2)); - } else - var$1 = var$10 ? oncias_SemanticExpressionCheck$_expectType0(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_3, var$3.$idx0, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_4) : var$9 ? oncias_SemanticExpressionCheck$_expectType0(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_5, var$3.$idx0, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_6) : var$12 - ? oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_7, var$3.$expr2) : !var$11 ? oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_8, var$3.$expr2) : oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_9, var$3.$expr2); - return var$1; -}, -oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0 = $rt_classWithoutFields(), -oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1.$asCanonicalStringVal(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7757)), var$1); - return jl_AbstractStringBuilder_toString(var$2); -}, -oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1 = $rt_classWithoutFields(), -oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1_apply = var$0 => { - return $rt_s(4); -}, -oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0 = $rt_classWithoutFields(), -oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0_apply = (var$0, var$1) => { - return var$1.$asCanonicalStringVal(); +let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0229; + var$3 = var$0.$_186; + return var$2.$merge$1.$apply3(var$1, var$3); }; -function sc_IterableOnceOps$max$lambda$_81_0() { +function oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1() { jl_Object.call(this); - this.$_0488 = null; + this.$_0845 = null; } -let sc_IterableOnceOps$max$lambda$_81_0_apply = (var$0, var$1, var$2) => { - return var$0.$_0488.$max0(var$1, var$2); +let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1_apply = var$0 => { + return var$0.$_0845; }, -oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0 = $rt_classWithoutFields(), -oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0_apply = (var$0, var$1) => { - return var$1.$flatten0(); +oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_112_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_112_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + oncia_Where$_$callClinit(); + return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); }; -function oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0() { +function oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_00() { jl_Object.call(this); - this.$_0415 = null; + this.$_0499 = null; } -let oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0_apply = var$0 => { - return var$0.$_0415.$typ.$covariant(); -}, -oncius_TypeRange$ = $rt_classWithoutFields(), -oncius_TypeRange$_MODULE$ = null, -oncius_TypeRange$_$callClinit = () => { - oncius_TypeRange$_$callClinit = $rt_eraseClinit(oncius_TypeRange$); - oncius_TypeRange$__clinit_(); -}, -oncius_TypeRange$__clinit_ = () => { - let var$1; - var$1 = new oncius_TypeRange$; - oncius_TypeRange$_$callClinit(); - oncius_TypeRange$_MODULE$ = var$1; -}, -oncius_TypeRange$_apply = ($this, $lower, $upper) => { - return oncius_TypeRange__init_($lower, s_Some__init_($upper)); +let oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0_apply0 = var$0 => { + return (var$0.$_0499.$items0.$map(new oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_0)).$toList(); }; function oncia_SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0() { jl_Object.call(this); - this.$_01071 = null; + this.$_01054 = null; } let oncia_SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_01071; + var$2 = var$0.$_01054; var$3 = var$1.$state.$currentScope; - oncias_IterableOnceSemanticChecking$_$callClinit(); var$1 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); var$4 = s_Option_getOrElse(s_Option_map(var$2.$declaredResult, new oncia_UnresolvedCall$wrappedOptional$lambda$_20_0), new oncia_UnresolvedCall$wrappedOptional$lambda$_20_1); var$5 = new oncia_UnresolvedCall$wrappedOptional$lambda$_20_2; - var$5.$_0833 = var$2; - var$5.$_1284 = var$3; + var$5.$_0805 = var$2; + var$5.$_1269 = var$3; return (oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$1, var$4, var$5)).$map11(new oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0); }; function oncia_SubqueryCall$checkNoCallInTransactionsInsideRegularCall$lambda$_22_0() { jl_Object.call(this); - this.$_0288 = null; + this.$_0273 = null; } let oncia_SubqueryCall$checkNoCallInTransactionsInsideRegularCall$lambda$_22_0_apply = (var$0, var$1) => { var$1 = var$1; - return var$0.$_0288.$error2($rt_s(7758), var$1.$position()); + return var$0.$_0273.$error4($rt_s(6741), var$1.$position()); +}; +function oncias_SemanticAnalysisTooling$whenState$lambda$_35_0() { + let a = this; jl_Object.call(a); + a.$_01133 = null; + a.$_1387 = null; + a.$_2126 = null; +} +let oncias_SemanticAnalysisTooling$whenState$lambda$_35_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_01133; + var$3 = var$0.$_1387; + var$4 = var$0.$_2126; + return !sr_BoxesRunTime_unboxToBoolean(var$2.$apply2(var$1)) ? var$4.$apply4() : var$3.$apply4(); +}, +onciap_DefaultExpressionStringifier$Binding = $rt_classWithoutFields(0); +function onciap_DefaultExpressionStringifier$Precedence() { + let a = this; jl_Object.call(a); + a.$level = 0; + a.$$outer21 = null; +} +let onciap_DefaultExpressionStringifier$Precedence_productPrefix = $this => { + return $rt_s(6742); +}, +onciap_DefaultExpressionStringifier$Precedence_productArity = $this => { + return 1; +}, +onciap_DefaultExpressionStringifier$Precedence_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return jl_Integer_valueOf($this.$level); + default: + } + return sr_Statics_ioobe($x$1); +}, +onciap_DefaultExpressionStringifier$Precedence_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +onciap_DefaultExpressionStringifier$Precedence_hashCode = $this => { + return sr_Statics_finalizeHash(sr_Statics_mix(sr_Statics_mix((-889275714), jl_String_hashCode($rt_s(6742))), $this.$level), 1); +}, +onciap_DefaultExpressionStringifier$Precedence_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +onciap_DefaultExpressionStringifier$Precedence_equals = ($this, $x$1) => { + let var$2; + a: { + b: { + if ($this !== $x$1) { + if (!($x$1 instanceof onciap_DefaultExpressionStringifier$Precedence && $x$1.$$outer21 === $this.$$outer21 ? 1 : 0)) + break b; + $x$1 = $x$1; + if ($this.$level != $x$1.$level) + break b; + if (!($this instanceof onciap_DefaultExpressionStringifier$Precedence)) + break b; + } + var$2 = 1; + break a; + } + var$2 = 0; + } + return var$2; +}, +onciap_DefaultExpressionStringifier$Precedence__init_0 = ($this, $$outer, $level) => { + $this.$level = $level; + if ($$outer === null) + $rt_throw(null); + $this.$$outer21 = $$outer; +}, +onciap_DefaultExpressionStringifier$Precedence__init_ = (var_0, var_1) => { + let var_2 = new onciap_DefaultExpressionStringifier$Precedence(); + onciap_DefaultExpressionStringifier$Precedence__init_0(var_2, var_0, var_1); + return var_2; +}, +onciap_DefaultExpressionStringifier$formsChain$1$lambda$_70_0 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$formsChain$1$lambda$_70_0_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + b: { + c: { + var$1 = var$1; + var$2 = (sc_AbstractIterable_head(var$1)).$rhs(); + var$1 = (sc_AbstractIterable_last(var$1)).$lhs0(); + if (var$2 !== null) { + if (!var$2.$equals(var$1)) + break b; + else + break c; + } + if (var$1 !== null) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return jl_Boolean_valueOf(var$3); }; function sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIterator$lambda$_28_0() { jl_Object.call(this); - this.$_01116 = null; + this.$_01091 = null; } let sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIterator$lambda$_28_0_apply = var$0 => { let var$1; - var$1 = var$0.$_01116; + var$1 = var$0.$_01091; sci_LazyList$_$callClinit(); return sci_LazyList$_scala$collection$immutable$LazyList$$stateFromIterator(sci_LazyList$_MODULE$, var$1); }; @@ -345732,74 +271508,14 @@ sci_LazyList$State$Cons__init_ = (var_0, var_1) => { let var_2 = new sci_LazyList$State$Cons(); sci_LazyList$State$Cons__init_0(var_2, var_0, var_1); return var_2; -}; -function oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer18 = null; - a.$ruleCallStack$1 = null; -} -let oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3_applyOrElse = ($this, $x1, $default) => { - let var$3, var$4, var$5; - oncip_CypherErrorStrategy$ExpressionRule$_$callClinit(); - if (jl_Object_equals(oncip_CypherErrorStrategy$ExpressionRule$_MODULE$, $x1)) - return $rt_s(4442); - oncip_CypherErrorStrategy$StringLiteralRule$_$callClinit(); - if (jl_Object_equals(oncip_CypherErrorStrategy$StringLiteralRule$_MODULE$, $x1)) - return $rt_s(7759); - oncip_CypherErrorStrategy$NumberLiteralRule$_$callClinit(); - if (jl_Object_equals(oncip_CypherErrorStrategy$NumberLiteralRule$_MODULE$, $x1)) - return $rt_s(7760); - oncip_CypherErrorStrategy$ParameterRule$_$callClinit(); - if (jl_Object_equals(oncip_CypherErrorStrategy$ParameterRule$_MODULE$, $x1)) - return $rt_s(4468); - oncip_CypherErrorStrategy$VariableRule$_$callClinit(); - if (jl_Object_equals(oncip_CypherErrorStrategy$VariableRule$_MODULE$, $x1)) - return $rt_s(7761); - oncip_CypherErrorStrategy$IdentifierRule$_$callClinit(); - if (!jl_Object_equals(oncip_CypherErrorStrategy$IdentifierRule$_MODULE$, $x1)) { - oncip_CypherErrorStrategy$DatabaseNameRule$_$callClinit(); - if (jl_Object_equals(oncip_CypherErrorStrategy$DatabaseNameRule$_MODULE$, $x1)) - return $rt_s(7762); - oncip_CypherErrorStrategy$GraphPatternRule$_$callClinit(); - if (jl_Object_equals(oncip_CypherErrorStrategy$GraphPatternRule$_MODULE$, $x1)) - return $rt_s(7763); - return s_PartialFunction$_fallback_fn; - } - $default = $this.$$outer18; - var$3 = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncip_CypherErrorStrategy$CypherRuleGroup, 2); - var$5 = var$4.data; - oncip_CypherErrorStrategy$LabelExpressionRule$_$callClinit(); - var$5[0] = oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$; - oncip_CypherErrorStrategy$RelationshipPatternRule$_$callClinit(); - var$5[1] = oncip_CypherErrorStrategy$RelationshipPatternRule$_MODULE$; - if (oncip_CypherErrorVocabulary_org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1($default, sr_ScalaRunTime$_wrapRefArray(var$3, var$4), $this.$ruleCallStack$1)) - return $rt_s(7764); - $x1 = $this.$$outer18; - $default = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncip_CypherErrorStrategy$CypherRuleGroup, 2); - var$5 = var$4.data; - var$5[0] = oncip_CypherErrorStrategy$LabelExpressionRule$_MODULE$; - oncip_CypherErrorStrategy$NodePatternRule$_$callClinit(); - var$5[1] = oncip_CypherErrorStrategy$NodePatternRule$_MODULE$; - if (oncip_CypherErrorVocabulary_org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1($x1, sr_ScalaRunTime$_wrapRefArray($default, var$4), $this.$ruleCallStack$1)) - return $rt_s(7765); - $x1 = $this.$$outer18; - $default = sr_ScalaRunTime$_MODULE$; - var$4 = $rt_createArray(oncip_CypherErrorStrategy$CypherRuleGroup, 1); - var$5 = var$4.data; - oncip_CypherErrorStrategy$LabelExpression1Rule$_$callClinit(); - var$5[0] = oncip_CypherErrorStrategy$LabelExpression1Rule$_MODULE$; - if (!oncip_CypherErrorVocabulary_org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1($x1, sr_ScalaRunTime$_wrapRefArray($default, var$4), $this.$ruleCallStack$1)) - return $rt_s(4441); - return $rt_s(7766); }, -oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3_applyOrElse0 = ($this, $x, $default) => { - return oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3_applyOrElse($this, $x, $default); +oncie_TypeSignatures$signatureLengths$lambda$_3_0 = $rt_classWithoutFields(), +oncie_TypeSignatures$signatureLengths$lambda$_3_0_apply = (var$0, var$1) => { + return jl_Integer_valueOf(sci_Vector_length(var$1.$argumentTypes())); }; function oncia_Clause$$anonfun$1() { sr_AbstractPartialFunction.call(this); - this.$state$10 = null; + this.$state$11 = null; } let oncia_Clause$$anonfun$1_applyOrElse = ($this, $x1, $default) => { let $le, $entity; @@ -345810,11 +271526,11 @@ let oncia_Clause$$anonfun$1_applyOrElse = ($this, $x1, $default) => { if ($rt_isInstance($x1, oncia_Clause)) return new oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_2; if ($x1 instanceof oncie_NodePattern) { - $default = $x1.$labelExpression7; - if ($default instanceof s_Some) { - $le = $default.$value5; + $le = $x1.$labelExpression7; + if ($le instanceof s_Some) { + $le = $le.$value5; $x1 = new oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_3; - $x1.$_0276 = $le; + $x1.$_0260 = $le; return $x1; } } @@ -345823,21 +271539,21 @@ let oncia_Clause$$anonfun$1_applyOrElse = ($this, $x1, $default) => { $entity = $x1.$entity0; $le = $x1.$labelExpression8; $x1 = new oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_4; - $x1.$_0748 = $this; - $x1.$_1254 = $entity; - $x1.$_283 = $le; + $x1.$_0734 = $this; + $x1.$_1246 = $entity; + $x1.$_282 = $le; return $x1; } if ($x1 instanceof oncie_RelationshipPattern) { - $x1 = $x1.$labelExpression6; - if ($x1 instanceof s_Some) { - $le = $x1.$value5; + $le = $x1.$labelExpression6; + if ($le instanceof s_Some) { + $le = $le.$value5; $x1 = new oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_5; - $x1.$_0223 = $le; + $x1.$_0214 = $le; return $x1; } } - return s_PartialFunction$_fallback_fn; + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); }; function oncia_Clause$Acc$1() { let a = this; jl_Object.call(a); @@ -345872,7 +271588,7 @@ oncia_Clause$Acc$1_sortLabelExpressionIntoPartition = ($acc, $labelExpression, $ if ($labelExpression.$containsIs()) $acc = oncia_Clause$Acc$1_withGPMExpression($acc, $labelExpression); a: { - if (!($labelExpression instanceof oncil_LabelExpression$Leaf)) { + if (!($labelExpression instanceof oncil_LabelExpression$Leaf) && !($labelExpression instanceof oncil_LabelExpression$DynamicLeaf)) { if ($labelExpression instanceof oncil_LabelExpression$Disjunctions) { var$3 = $labelExpression.$children3; if (!$isNode && var$3.$forall(new oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0)) @@ -345903,7 +271619,7 @@ oncia_Clause$Acc$1_copy = ($this, $readPartitions, $writePartitions, $usage) => return oncia_Clause$Acc$1__init_($this.$$outer1, $readPartitions, $writePartitions, $usage, $this.$Read$module$1, $this.$Write$module$1, $this.$ReadWrite$module$1); }, oncia_Clause$Acc$1_productPrefix = $this => { - return $rt_s(5615); + return $rt_s(4969); }, oncia_Clause$Acc$1_productArity = $this => { return 3; @@ -346003,19 +271719,19 @@ function oncia_Clause$LabelExpressionsPartitions$1() { let a = this; jl_Object.call(a); a.$legacy = null; a.$gpm = null; - a.$$outer8 = null; + a.$$outer9 = null; a.$LegacyLabelExpression$module$10 = null; } let oncia_Clause$LabelExpressionsPartitions$1_withLegacyExpression = ($this, $labelExpression) => { let var$2, var$3, var$4; var$2 = $this.$legacy; - var$3 = oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LegacyLabelExpression$3($this.$$outer8, $this.$LegacyLabelExpression$module$10); + var$3 = oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$LegacyLabelExpression$3($this.$$outer9, $this.$LegacyLabelExpression$module$10); var$4 = new oncia_Clause$LegacyLabelExpression$1; - var$3 = var$3.$$outer51; + var$3 = var$3.$$outer46; var$4.$labelExpression9 = $labelExpression; if (var$3 === null) $rt_throw(null); - var$4.$$outer55 = var$3; + var$4.$$outer49 = var$3; return oncia_Clause$LabelExpressionsPartitions$1_copy($this, var$2.$incl(var$4), $this.$gpm); }, oncia_Clause$LabelExpressionsPartitions$1_withGPMExpression = ($this, $labelExpression) => { @@ -346029,14 +271745,14 @@ oncia_Clause$LabelExpressionsPartitions$1_semanticCheck = $this => { var$1 = oncias_SemanticCheck$_MODULE$; var$2 = sc_IterableOnceOps_nonEmpty$($this.$legacy) && sc_IterableOnceOps_nonEmpty$($this.$gpm) ? 1 : 0; var$3 = new oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0; - var$3.$_0405 = $this; + var$3.$_0397 = $this; return oncias_SemanticCheck$_when(var$1, var$2, var$3); }, oncia_Clause$LabelExpressionsPartitions$1_copy = ($this, $legacy, $gpm) => { - return oncia_Clause$LabelExpressionsPartitions$1__init_($this.$$outer8, $legacy, $gpm, $this.$LegacyLabelExpression$module$10); + return oncia_Clause$LabelExpressionsPartitions$1__init_($this.$$outer9, $legacy, $gpm, $this.$LegacyLabelExpression$module$10); }, oncia_Clause$LabelExpressionsPartitions$1_productPrefix = $this => { - return $rt_s(7767); + return $rt_s(6743); }, oncia_Clause$LabelExpressionsPartitions$1_productArity = $this => { return 2; @@ -346105,7 +271821,7 @@ oncia_Clause$LabelExpressionsPartitions$1_$anonfun$semanticCheck$3 = $$this => { a: { $pos = sc_StrictOptimizedIterableOps_map$($$this.$legacy, new oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_0); if ($pos !== null) { - $maybeExplanation = oncia_Clause$SetExtractor$_unapplySeq($$this.$$outer8.$SetExtractor(), $pos); + $maybeExplanation = oncia_Clause$SetExtractor$_unapplySeq($$this.$$outer9.$SetExtractor(), $pos); if (!s_Option_isEmpty($maybeExplanation)) { $maybeExplanation = $maybeExplanation.$value5; if ($maybeExplanation !== null && !$maybeExplanation.$lengthCompare(0)) { @@ -346115,7 +271831,7 @@ oncia_Clause$LabelExpressionsPartitions$1_$anonfun$semanticCheck$3 = $$this => { } } if ($pos !== null) { - $maybeExplanation = oncia_Clause$SetExtractor$_unapplySeq($$this.$$outer8.$SetExtractor(), $pos); + $maybeExplanation = oncia_Clause$SetExtractor$_unapplySeq($$this.$$outer9.$SetExtractor(), $pos); if (!s_Option_isEmpty($maybeExplanation)) { $explanation = $maybeExplanation.$value5; if ($explanation !== null && !$explanation.$lengthCompare(1)) { @@ -346127,7 +271843,7 @@ oncia_Clause$LabelExpressionsPartitions$1_$anonfun$semanticCheck$3 = $$this => { $explanation = new s_Tuple2; $replacement = new jl_StringBuilder; jl_AbstractStringBuilder__init_($replacement); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($replacement, $rt_s(7768)), $singleExpression), 46); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($replacement, $rt_s(6744)), $singleExpression), 46); s_Tuple2__init_0($explanation, jl_AbstractStringBuilder_toString($replacement), $pos); s_Some__init_0($maybeExplanation, $explanation); break a; @@ -346143,7 +271859,7 @@ oncia_Clause$LabelExpressionsPartitions$1_$anonfun$semanticCheck$3 = $$this => { $singleExpression = sc_AbstractIterable_mkString($replacement, $rt_s(45)); $replacement = new jl_StringBuilder; jl_AbstractStringBuilder__init_($replacement); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($replacement, $rt_s(7769)), $singleExpression), 46); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append($replacement, $rt_s(6745)), $singleExpression), 46); s_Tuple2__init_0($explanation, jl_AbstractStringBuilder_toString($replacement), (sc_AbstractIterable_head($pos)).$_2()); s_Some__init_0($maybeExplanation, $explanation); } @@ -346153,19 +271869,18 @@ oncia_Clause$LabelExpressionsPartitions$1_$anonfun$semanticCheck$3 = $$this => { $explanation = $pos.$_1(); $pos = $pos.$_2(); $conflictWithIS = (sc_AbstractIterable_head($$this.$gpm)).$containsIs(); - oncias_package$_$callClinit(); $$this = oncias_package$_MODULE$; oncias_SemanticError$_$callClinit(); $maybeExplanation = oncias_SemanticError$_MODULE$; if (!$conflictWithIS) { $singleExpression = new jl_StringBuilder; jl_AbstractStringBuilder__init_($singleExpression); - jl_StringBuilder_append(jl_StringBuilder_append($singleExpression, $rt_s(7770)), $explanation); + jl_StringBuilder_append(jl_StringBuilder_append($singleExpression, $rt_s(6746)), $explanation); $explanation = jl_AbstractStringBuilder_toString($singleExpression); } else { $singleExpression = new jl_StringBuilder; jl_AbstractStringBuilder__init_($singleExpression); - jl_StringBuilder_append(jl_StringBuilder_append($singleExpression, $rt_s(7771)), $explanation); + jl_StringBuilder_append(jl_StringBuilder_append($singleExpression, $rt_s(6747)), $explanation); $explanation = jl_AbstractStringBuilder_toString($singleExpression); } return oncias_package$_liftSemanticErrorDef($$this, oncias_SemanticError$_apply($maybeExplanation, $explanation, $pos)); @@ -346181,7 +271896,7 @@ oncia_Clause$LabelExpressionsPartitions$1__init_0 = ($this, $$outer, $legacy, $g $this.$gpm = $gpm; if ($$outer === null) $rt_throw(null); - $this.$$outer8 = $$outer; + $this.$$outer9 = $$outer; $this.$LegacyLabelExpression$module$10 = $LegacyLabelExpression$module$1; }, oncia_Clause$LabelExpressionsPartitions$1__init_ = (var_0, var_1, var_2, var_3) => { @@ -346191,16 +271906,17 @@ oncia_Clause$LabelExpressionsPartitions$1__init_ = (var_0, var_1, var_2, var_3) }, oncia_Clause$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncia_Clause$$anonfun$2_applyOrElse = ($this, $x1, $default) => { + let var$3; if ($x1 instanceof oncie_RelationshipPattern) { - $default = $x1; - if ($default.$length3 instanceof s_Some) { + var$3 = $x1; + if (var$3.$length3 instanceof s_Some) { $x1 = new oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_0; - $x1.$_0465 = $default; + $x1.$_0454 = var$3; return $x1; } } if (!($rt_isInstance($x1, oncia_SubqueryCall) ? 1 : !$rt_isInstance($x1, oncia_FullSubqueryExpression) ? 0 : 1)) - return s_PartialFunction$_fallback_fn; + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); return new oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_1; }, oncia_Clause$$anonfun$3 = $rt_classWithoutFields(sr_AbstractPartialFunction), @@ -346213,18 +271929,16 @@ oncia_Clause$$anonfun$3_applyOrElse = ($this, $x2, $default) => { }; function oncia_Clause$checkIfMixingLegacyVarLengthWithQPPs$lambda$_11_0() { let a = this; jl_Object.call(a); - a.$_0882 = null; - a.$_1303 = null; + a.$_0863 = null; + a.$_1291 = null; } let oncia_Clause$checkIfMixingLegacyVarLengthWithQPPs$lambda$_11_0_apply = var$0 => { let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0882; - var$2 = var$0.$_1303; - oncias_IterableOnceSemanticChecking$_$callClinit(); + var$1 = var$0.$_0863; + var$2 = var$0.$_1291; var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); var$4 = new oncia_Clause$$anonfun$checkIfMixingLegacyVarLengthWithQPPs$1$lambda$_34_0; - var$4.$_0715 = var$1; + var$4.$_0697 = var$1; return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$2, var$4); }, oncia_Clause$$anonfun$4 = $rt_classWithoutFields(sr_AbstractPartialFunction), @@ -346239,903 +271953,1563 @@ oncia_Clause$$anonfun$4_applyOrElse = ($this, $x1, $default) => { }; function oncia_Clause$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$lambda$_12_0() { let a = this; jl_Object.call(a); - a.$_0972 = null; - a.$_1338 = null; + a.$_0968 = null; + a.$_1330 = null; } let oncia_Clause$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$lambda$_12_0_apply = var$0 => { let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0972; - var$2 = var$0.$_1338; - oncias_IterableOnceSemanticChecking$_$callClinit(); + var$1 = var$0.$_0968; + var$2 = var$0.$_1330; var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); var$4 = new oncia_Clause$$anonfun$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$1$lambda$_36_0; - var$4.$_0726 = var$1; + var$4.$_0707 = var$1; return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$2, var$4); -}, -oncias_Scope$allSymbols$lambda$_16_0 = $rt_classWithoutFields(), -oncias_Scope$allSymbols$lambda$_16_0_apply = (var$0, var$1, var$2) => { - let var$3; - var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - return sc_IterableOnceOps_foldLeft$(var$3.$_20.$symbolTable, var$1, new oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0); }; -function oncip_CypherErrorVocabulary$displayName$lambda$_5_0() { +function oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_68_0() { jl_Object.call(this); - this.$_0524 = null; + this.$_01143 = null; } -let oncip_CypherErrorVocabulary$displayName$lambda$_5_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0524; - s_Predef$_$callClinit(); - var$3 = oncip_CypherErrorVocabulary_getDisplayName(var$2, sr_BoxesRunTime_unboxToInt(var$1)); - var$1 = oncip_CypherErrorVocabulary_getSymbolicName(var$2, sr_BoxesRunTime_unboxToInt(var$1)); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 39); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 39); - var$1 = jl_AbstractStringBuilder_toString(var$2); - if (var$3 !== null) { - if (!jl_String_equals(var$3, var$1)) - break b; - else - break c; - } - if (var$1 !== null) - break b; - } - var$4 = 1; - break a; +let oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_68_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_01143; + oncias_SemanticExpressionCheck$_$callClinit(); + if (var$1.$semanticCheckHasRunOnce) { + var$2 = new oncias_SemanticCheckResult; + s_package$_$callClinit(); + oncias_SemanticCheckResult__init_0(var$2, var$1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + } else { + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = oncias_SemanticState$ScopeLocation$_MODULE$; + var$3 = oncias_SemanticState$ScopeLocation$_parent$extension(var$3, ((oncias_SemanticState$ScopeLocation$_parent$extension(var$3, var$1.$currentScope)).$get1()).$location); + if (!(var$3 instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, var$3)) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = ((oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$1.$currentScope)).$get1()).$location.$elem0.$symbolTable; + } else + var$3 = var$3.$value5.$location.$elem0.$symbolTable.$concat2(((oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$1.$currentScope)).$get1()).$location.$elem0.$symbolTable); + var$4 = oncias_Scope_allSymbols(var$1.$currentScope.$elem0); + var$5 = var$1.$recordedScopes0; + var$6 = new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_0; + var$6.$_0574 = var$2; + var$2 = (var$5.$filter1(var$6)).$map(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_1); + s_Predef$_$callClinit(); + var$2 = sc_AbstractIterable_groupMapReduce(var$2.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$)), new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_2, new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_3, new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_4); + var$6 = new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_5; + var$6.$_0599 = var$2; + var$2 = (var$4.$filterNot0(var$6)).$map12(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_6); + var$4 = new oncias_SemanticExpressionCheck$$anonfun$2; + var$4.$innerDefinitions$1 = var$2; + var$2 = oncias_SemanticCheckResult__init_(var$1, ((var$3.$collect0(var$4)).$map(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_7)).$toSeq()); + } + return var$2; +}, +oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + if (var$1 instanceof oncie_StringLiteral) { + var$2 = var$1.$value8; + s_Option$_$callClinit(); + var$1 = (s_Option$_option2Iterable(s_Option$_MODULE$, oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, var$2))).$toSeq(); + } else if (!(var$1 instanceof oncie_ListLiteral)) { + if (var$1 instanceof oncie_Null) + var$1 = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, null); + else { + s_package$_$callClinit(); + var$1 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); } - var$4 = 0; + } else { + var$1 = var$1.$expressions0.$collect(new oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1); + s_Predef$_$callClinit(); + var$1 = var$1.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$)); } - return jl_Boolean_valueOf(var$4); + return var$1; }; -function oncip_CypherErrorVocabulary$displayName$lambda$_5_1() { +function oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_1() { jl_Object.call(this); - this.$_01048 = null; + this.$_0938 = null; } -let oncip_CypherErrorVocabulary$displayName$lambda$_5_1_apply = (var$0, var$1) => { +let oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_1_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_01048; - s_Predef$_$callClinit(); - return oncip_CypherErrorVocabulary_getSymbolicName(var$2, sr_BoxesRunTime_unboxToInt(var$1)); -}, -oncia_Where$$checkExpression$lambda$_5_0 = $rt_classWithoutFields(), -oncia_Where$$checkExpression$lambda$_5_0_apply = (var$0, var$1) => { - return var$1.$propertyKey0; -}, -oncia_Where$$checkExpression$lambda$_5_1 = $rt_classWithoutFields(), -oncia_Where$$checkExpression$lambda$_5_1_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_BooleanType_covariant(oncius_package$_CTBoolean(oncius_package$_MODULE$)); -}, -oncipvaf_Cypher5AstUtil$ = $rt_classWithoutFields(), -oncipvaf_Cypher5AstUtil$_MODULE$ = null, -oncipvaf_Cypher5AstUtil$__clinit_ = () => { - oncipvaf_Cypher5AstUtil$_MODULE$ = new oncipvaf_Cypher5AstUtil$; -}, -oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1_applyOrElse0 = ($this, $x, $default) => { - let var$3, var$4; - $x = $x; - if (!($x instanceof oncipv_Cypher5Parser$SymbolicNameStringContext)) - $x = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); - else { - var$3 = $x; - $x = new oncie_Variable; - var$4 = var$3.$ast0; - oncipau_Util$_$callClinit(); - oncie_Variable__init_0($x, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); - } - return $x; + var$2 = var$0.$_0938; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$1, var$2); }; -function scc_AsScalaExtensions$CollectionHasAsScala() { +function oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_0() { let a = this; jl_Object.call(a); - a.$c2 = null; - a.$$outer81 = null; + a.$_0975 = null; + a.$_1333 = null; } -let scc_AsScalaExtensions$CollectionHasAsScala_asScala = $this => { - let var$1, var$2; - var$1 = $this.$c2; - if (var$1 === null) - var$2 = null; - else if (var$1 instanceof scc_JavaCollectionWrappers$IterableWrapper) - var$2 = var$1.$underlying5(); - else { - var$2 = new scc_JavaCollectionWrappers$JCollectionWrapper; - var$2.$underlying37 = var$1; - } - return var$2; +let oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0975; + var$2 = var$0.$_1333; + oncias_SemanticExpressionCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$6 = var$5.data; + oncias_SemanticError$_$callClinit(); + var$6[0] = oncias_SemanticError$_invalidDisjunction(oncias_SemanticError$_MODULE$, 1, ((oncias_SemanticExpressionCheck$_colonDisjunctions$1(var$1, var$2)).$head()).$position32); + return oncias_SemanticCheck$_error(var$3, sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); }; -function oncipau_Util$$astBinaryFold$lambda$_16_0() { +function oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_1() { let a = this; jl_Object.call(a); - a.$_0312 = null; - a.$_1115 = null; + a.$_0356 = null; + a.$_1126 = null; } -let oncipau_Util$$astBinaryFold$lambda$_16_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$2; - var$3 = var$0.$_0312; - var$4 = var$0.$_1115; - oncipau_Util$_$callClinit(); - var$5 = s_Tuple2__init_(var$1, var$2); - var$1 = var$5.$_10; - var$2 = var$5.$_20; - if (var$2 !== null) { - s_package$_$callClinit(); - s_package$_Seq(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); - sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, var$2); - if (!var$2.$lengthCompare(2)) { - var$5 = var$2.$apply1(0); - var$2 = var$2.$apply1(1); - if ($rt_isInstance(var$5, oavrt_TerminalNode)) { - var$5 = var$5; - if (var$2 instanceof oncip_AstRuleCtx) - return var$3.$apply39(var$1, var$5, var$2.$ast0); - } +let oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0356; + var$2 = var$0.$_1126; + oncias_SemanticExpressionCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$6 = var$5.data; + oncias_SemanticError$_$callClinit(); + var$6[0] = oncias_SemanticError$_invalidDisjunction(oncias_SemanticError$_MODULE$, 0, ((oncias_SemanticExpressionCheck$_colonConjunctions$1(var$1, var$2)).$head()).$position70); + return oncias_SemanticCheck$_error(var$3, sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); +}; +function oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_2() { + let a = this; jl_Object.call(a); + a.$_0870 = null; + a.$_1293 = null; + a.$_293 = null; + a.$_329 = null; +} +let oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_2_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$0.$_0870; + var$2 = var$0.$_1293; + var$3 = var$0.$_293; + var$4 = var$0.$_329; + oncias_SemanticExpressionCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = sc_IterableOnceOps_nonEmpty$(oncias_SemanticExpressionCheck$_colonConjunctions$1(var$2, var$1)) && var$1.$containsGpmSpecificLabelExpression() ? 1 : 0; + var$7 = new oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_207_0; + var$7.$_064 = var$1; + var$7.$_124 = var$3; + var$7.$_212 = var$2; + var$7.$_37 = var$4; + return oncias_SemanticCheck$_when(var$5, var$6, var$7); +}, +oncil_SolvableLabelExpression$ = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$_MODULE$ = null, +oncil_SolvableLabelExpression$__clinit_ = () => { + oncil_SolvableLabelExpression$_MODULE$ = new oncil_SolvableLabelExpression$; +}, +oncil_SolvableLabelExpression$_extractLabelExpressionRec = ($this, $labelExpression) => { + let $label, $conjointExpressions, $lhs, $rhs, var$6, $not, $disjointExpressions; + if ($labelExpression instanceof oncil_LabelExpression$Wildcard) { + $labelExpression = suc_TailCalls$_MODULE$; + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return suc_TailCalls$_done($labelExpression, oncil_SolvableLabelExpression$_build($this, sci_Set$EmptySet$_MODULE$, new oncil_SolvableLabelExpression$$wildcard$lambda$_4_0)); + } + if ($labelExpression instanceof oncil_LabelExpression$DynamicLeaf) { + $labelExpression = suc_TailCalls$_MODULE$; + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return suc_TailCalls$_done($labelExpression, oncil_SolvableLabelExpression$_build($this, sci_Set$EmptySet$_MODULE$, new oncil_SolvableLabelExpression$$dynamic$lambda$_5_0)); + } + if ($labelExpression instanceof oncil_LabelExpression$Leaf) { + $label = $labelExpression.$name15; + $labelExpression = suc_TailCalls$_MODULE$; + $conjointExpressions = $label.$name(); + s_Predef$_$callClinit(); + $lhs = s_Predef$_Set(s_Predef$_MODULE$); + $rhs = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(jl_String, 1); + var$6.data[0] = $conjointExpressions; + $rhs = $lhs.$from0(sr_ScalaRunTime$_wrapRefArray($rhs, var$6)); + $lhs = new oncil_SolvableLabelExpression$$label$lambda$_6_0; + $lhs.$_01125 = $conjointExpressions; + return suc_TailCalls$_done($labelExpression, oncil_SolvableLabelExpression$_build($this, $rhs, $lhs)); + } + if ($labelExpression instanceof oncil_LabelExpression$Negation) { + $not = $labelExpression.$e; + if ($not !== null) { + $labelExpression = suc_TailCalls$_MODULE$; + $conjointExpressions = new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0; + $conjointExpressions.$_0317 = $not; + return suc_TailCalls$TailRec_map(suc_TailCalls$_tailcall($labelExpression, $conjointExpressions), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1); } } - var$1 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6904)), var$4); - jl_Throwable__init_0(var$1, jl_AbstractStringBuilder_toString(var$2)); - $rt_throw(var$1); + if ($labelExpression instanceof oncil_LabelExpression$ColonConjunction) { + $conjointExpressions = $labelExpression; + $lhs = $conjointExpressions.$lhs2; + $rhs = $conjointExpressions.$rhs2; + if ($lhs !== null && $rhs !== null) + return onciut_TailCallsUtil$_map2(onciut_TailCallsUtil$_MODULE$, oncil_SolvableLabelExpression$_extractLabelExpressionRec($this, $lhs), oncil_SolvableLabelExpression$_extractLabelExpressionRec($this, $rhs), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2); + } + if ($labelExpression instanceof oncil_LabelExpression$Conjunctions) { + $conjointExpressions = $labelExpression.$children4; + if ($conjointExpressions !== null) + return suc_TailCalls$TailRec_map(onciut_TailCallsUtil$_traverse(onciut_TailCallsUtil$_MODULE$, $conjointExpressions.$toList(), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4); + } + if ($labelExpression instanceof oncil_LabelExpression$ColonDisjunction) { + $conjointExpressions = $labelExpression; + $lhs = $conjointExpressions.$lhs3; + $rhs = $conjointExpressions.$rhs3; + if ($lhs !== null && $rhs !== null) + return onciut_TailCallsUtil$_map2(onciut_TailCallsUtil$_MODULE$, oncil_SolvableLabelExpression$_extractLabelExpressionRec($this, $lhs), oncil_SolvableLabelExpression$_extractLabelExpressionRec($this, $rhs), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5); + } + if ($labelExpression instanceof oncil_LabelExpression$Disjunctions) { + $disjointExpressions = $labelExpression.$children3; + if ($disjointExpressions !== null) + return suc_TailCalls$TailRec_map(onciut_TailCallsUtil$_traverse(onciut_TailCallsUtil$_MODULE$, $disjointExpressions.$toList(), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6), new oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7); + } + $rt_throw(s_MatchError__init_($labelExpression)); }, -oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0_apply0 = var$0 => { - oncie_NFCNormalForm$_$callClinit(); - return oncie_NFCNormalForm$_MODULE$; +oncil_SolvableLabelExpression$_build = ($this, $labels, $matches) => { + let var$3; + var$3 = new oncil_SolvableLabelExpression; + var$3.$allLabels = $labels; + var$3.$matches4 = $matches; + return var$3; +}; +function oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_131_0() { + let a = this; jl_Object.call(a); + a.$_0257 = null; + a.$_197 = null; +} +let oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_131_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0257; + var$2 = var$0.$_197; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = new onciu_UnsatisfiableRelationshipTypeExpression; + var$5 = var$1.$position(); + var$1 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$2, var$1); + var$4.$position82 = var$5; + var$4.$labelExpression13 = var$1; + return oncias_SemanticAnalysisTooling_warn$(var$3, var$4); +}; +function oncie_Expression$TreeAcc$inScope$lambda$_4_0() { + jl_Object.call(this); + this.$_0129 = null; +} +let oncie_Expression$TreeAcc$inScope$lambda$_4_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$contains(var$0.$_0129)); }, -oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0_apply0 = (var$0, var$1) => { - let var$2; - var$1 = var$1; - if (var$1 instanceof oncie_PatternPartWithSelector) - var$1 = var$1; - else { - if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1; - var$1 = oncie_PatternPartWithSelector__init_(oncie_PatternPart$AllPaths__init_(var$2.$position()), var$2); +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$ = $rt_classWithoutFields(sr_AbstractFunction2), +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$__init_ = $this => { + return; +}, +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$__init_0 = () => { + let var_0 = new oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$(); + oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$__init_(var_0); + return var_0; +}; +function oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1() { + sr_AbstractPartialFunction.call(this); + this.$aggregationGroupingExpressions$1 = null; +} +let oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1_applyOrElse = ($this, $x1, $default) => { + let $expr; + if ($x1 instanceof oncie_Expression) { + $expr = $x1; + if ($this.$aggregationGroupingExpressions$1.$contains($expr)) + return new oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0; } - return var$1; + if ($x1 !== null) { + oncie_IsAggregate$_$callClinit(); + $expr = oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x1); + if (!s_Option_isEmpty($expr)) { + $expr = $expr.$get1(); + if ($expr instanceof oncie_Expression) { + $x1 = $expr; + $default = new oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1; + $default.$_0139 = $x1; + return $default; + } + } + } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); }; -function oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1() { +function oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_0() { jl_Object.call(this); - this.$_0169 = null; + this.$_0333 = null; } -let oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1_apply0 = var$0 => { - let var$1; - var$1 = var$0.$_0169; - return oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, var$1); +let oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0333.$apply2(var$1)) ? 0 : 1); }, -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_00 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0_apply0 = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems3.$includeExisting0); +oncia_allAuthAttr$ = $rt_classWithoutFields(), +oncia_allAuthAttr$_MODULE$ = null, +oncia_allAuthAttr$_allAuthsAttributes = null, +oncia_allAuthAttr$_$callClinit = () => { + oncia_allAuthAttr$_$callClinit = $rt_eraseClinit(oncia_allAuthAttr$); + oncia_allAuthAttr$__clinit_(); }, -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_10 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1_apply0 = (var$0, var$1) => { - return (var$1.$returnItems3.$items0.$map(new oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0)).$toList(); +oncia_allAuthAttr$__clinit_ = () => { + let var$1; + var$1 = new oncia_allAuthAttr$; + oncia_allAuthAttr$_$callClinit(); + oncia_allAuthAttr$_MODULE$ = var$1; + oncia_allAuthAttr$_allAuthsAttributes = sci_$colon$colon__init_(oncia_Password__init_0(null, 0, null), sci_$colon$colon__init_(oncia_PasswordChange__init_0(0, null), sci_$colon$colon__init_(oncia_AuthId__init_0(null, null), sci_Nil$_MODULE$))); }, -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_20 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2_apply0 = var$0 => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; +oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_1 = $rt_classWithoutFields(), +oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_1_apply = (var$0, var$1) => { + return var$1.$name(); +}, +oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_2 = $rt_classWithoutFields(), +oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_2_apply = (var$0, var$1) => { + return jl_String_valueOf(var$1); +}; +function oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0() { + jl_Object.call(this); + this.$_0966 = null; +} +let oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0966; + oncifp_ProcedureWarnings$_$callClinit(); + var$3 = new oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0; + var$3.$_0313 = var$1; + return jl_Boolean_valueOf(sc_IterableOnceOps_exists$(var$2, var$3)); +}; +function oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1() { + jl_Object.call(this); + this.$_0742 = null; +} +let oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0742; + oncifp_ProcedureWarnings$_$callClinit(); + var$3 = new onn_DeprecatedProcedureReturnFieldNotification; + var$4 = var$1.$position119; + var$1 = var$1.$outputName; + var$3.$position71 = var$4; + var$3.$procedure0 = var$2; + var$3.$field2 = var$1; + return var$3; }; -function oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_138_0() { +function oncifp_SelfReferenceCheckWithinPatternPart$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_3_0() { let a = this; jl_Object.call(a); - a.$_01155 = null; - a.$_1386 = null; + a.$_0149 = null; + a.$_150 = null; + a.$_2129 = null; } -let oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_138_0_apply = (var$0, var$1) => { +let oncifp_SelfReferenceCheckWithinPatternPart$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_3_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_01155; - var$3 = var$0.$_1386; - var$4 = scc_AsScalaExtensions$IterableHasAsScala_asScala(sj_CollectionConverters$_IterableHasAsScala(sj_CollectionConverters$_MODULE$, oncipcd_DeprecatedChars_deprecatedChars(var$2))); - var$5 = new oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_168_0; - var$5.$_01050 = var$1; - var$5.$_1359 = var$3; - var$5.$_2119 = var$2; - sc_IterableOnceOps_foreach$(var$4, var$5); - return sr_BoxedUnit_UNIT; + var$2 = var$0.$_0149; + var$3 = s_Option_map((oncias_SemanticTable_typeFor(var$0.$_150, var$1)).$typeInfo, new oncifp_SelfReferenceCheckWithinPatternPart$$createError$lambda$_5_0); + if (!(var$3 instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, var$3)) + $rt_throw(s_MatchError__init_(var$3)); + var$4 = var$1.$name4; + var$2 = jl_String_format($rt_s(6748), $rt_wrapArray(jl_Object, [var$4, var$2.$name()])); + } else { + var$3 = var$3.$value5; + var$5 = var$1.$name4; + var$2 = jl_String_format($rt_s(6749), $rt_wrapArray(jl_Object, [var$3, var$5, var$2.$name()])); + } + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$2, var$1.$position4); +}; +function oncifp_SelfReferenceCheckAcrossPatternParts$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_3_0() { + jl_Object.call(this); + this.$_061 = null; +} +let oncifp_SelfReferenceCheckAcrossPatternParts$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_3_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_061; + oncias_SemanticError$_$callClinit(); + var$3 = oncias_SemanticError$_MODULE$; + var$4 = var$1.$name4; + var$2 = var$2.$name(); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6750)), var$4), $rt_s(6751)), var$2), $rt_s(6752)); + return oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$5), var$1.$position4); }, -oncipvaf_Cypher25AstUtil$ = $rt_classWithoutFields(), -oncipvaf_Cypher25AstUtil$_MODULE$ = null, -oncipvaf_Cypher25AstUtil$__clinit_ = () => { - oncipvaf_Cypher25AstUtil$_MODULE$ = new oncipvaf_Cypher25AstUtil$; +oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_0 = $rt_classWithoutFields(), +oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_0_apply = (var$0, var$1) => { + return var$1.$name(); }, -oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$10 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1_applyOrElse = ($this, $x, $default) => { - let var$3, var$4; - $x = $x; - if (!($x instanceof oncipv_Cypher25Parser$SymbolicNameStringContext)) - $x = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); - else { - var$3 = $x; - $x = new oncie_Variable; - var$4 = var$3.$ast0; - oncipau_Util$_$callClinit(); - oncie_Variable__init_0($x, var$4, oncipau_Util$_pos(oncipau_Util$_MODULE$, var$3)); +oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_1 = $rt_classWithoutFields(), +oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_1_apply = (var$0, var$1) => { + let var$2; + a: { + var$1 = var$1; + if (var$1 !== null) { + var$1 = var$1.$_2(); + if (var$1.$length() > 1) { + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + var$1 = oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6753), (var$1.$head()).$position())); + break a; + } + } + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } - return $x; + return var$1; +}; +function oncia_Clause$Acc$2$() { + let a = this; sr_AbstractFunction3.call(a); + a.$$outer2 = null; + a.$LabelExpressionsPartitions$module$1 = null; + a.$Read$module$10 = null; + a.$Write$module$10 = null; + a.$ReadWrite$module$10 = null; + a.$LegacyLabelExpression$module$1 = null; +} +let oncia_Clause$Acc$2$__init_0 = ($this, $$outer, $LabelExpressionsPartitions$module$1, $Read$module$1, $Write$module$1, $ReadWrite$module$1, $LegacyLabelExpression$module$1) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer2 = $$outer; + $this.$LabelExpressionsPartitions$module$1 = $LabelExpressionsPartitions$module$1; + $this.$Read$module$10 = $Read$module$1; + $this.$Write$module$10 = $Write$module$1; + $this.$ReadWrite$module$10 = $ReadWrite$module$1; + $this.$LegacyLabelExpression$module$1 = $LegacyLabelExpression$module$1; }, -oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0_apply = var$0 => { - oncie_NFCNormalForm$_$callClinit(); - return oncie_NFCNormalForm$_MODULE$; +oncia_Clause$Acc$2$__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { + let var_6 = new oncia_Clause$Acc$2$(); + oncia_Clause$Acc$2$__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + return var_6; +}; +function oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_73_0() { + jl_Object.call(this); + this.$_0435 = null; +} +let oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_73_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0435; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = new onciu_RepeatedRelationshipReference; + var$5 = var$1.$position4; + var$1 = var$1.$name4; + var$2 = oncias_SemanticPatternCheck$_extractPattern(var$3, var$2); + var$4.$position68 = var$5; + var$4.$relName2 = var$1; + var$4.$pattern17 = var$2; + return oncias_SemanticAnalysisTooling_warn$(var$3, var$4); +}; +function oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_74_0() { + jl_Object.call(this); + this.$_01083 = null; +} +let oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_74_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_01083; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = new onciu_RepeatedVarLengthRelationshipReference; + var$5 = var$1.$position4; + var$1 = var$1.$name4; + var$2 = oncias_SemanticPatternCheck$_extractPattern(var$3, var$2); + var$4.$position93 = var$5; + var$4.$relName1 = var$1; + var$4.$pattern14 = var$2; + return oncias_SemanticAnalysisTooling_warn$(var$3, var$4); }, -oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_00 = $rt_classWithoutFields(), -oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0_apply = (var$0, var$1) => { +oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - if (var$1 instanceof oncie_PatternPartWithSelector) - var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + if (var$1 instanceof oncie_LabelName) { + var$2 = var$1.$name21; + var$1 = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, var$2); + } else if (var$1 instanceof oncie_RelTypeName) { + var$2 = var$1.$name23; + var$1 = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, var$2); + } else if (!(var$1 instanceof oncie_LabelOrRelTypeName)) + var$1 = s_None$_MODULE$; else { - if (!$rt_isInstance(var$1, oncie_NonPrefixedPatternPart)) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1; - var$1 = oncie_PatternPartWithSelector__init_(oncie_PatternPart$AllPaths__init_(var$2.$position()), var$2); + var$2 = var$1.$name19; + var$1 = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, var$2); } return var$1; }; -function oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_10() { +function oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_1() { jl_Object.call(this); - this.$_0200 = null; + this.$_0808 = null; } -let oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1_apply = var$0 => { - let var$1; - var$1 = var$0.$_0200; - return oncie_MatchMode$_default(oncie_MatchMode$_MODULE$, var$1); -}, -oncipvaf_DdlShowBuilder$ShowWrapper$0 = $rt_classWithoutFields(sr_AbstractFunction7), -oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0 = null, -oncipvaf_DdlShowBuilder$ShowWrapper$__clinit_ = () => { - oncipvaf_DdlShowBuilder$ShowWrapper$_MODULE$0 = new oncipvaf_DdlShowBuilder$ShowWrapper$0; -}, -oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$20 = $this => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; -}, -oncipvaf_DdlShowBuilder$ShowWrapper$_apply$default$70 = $this => { - let var$1; - s_package$_$callClinit(); - var$1 = s_package$_Left(s_package$_MODULE$); - s_package$_List(s_package$_MODULE$); - return su_Left$_apply(var$1, sci_Nil$_MODULE$); -}, -oncia_NodeExistsConstraintsCypher25$ = $rt_classWithoutFields(), -oncia_NodeExistsConstraintsCypher25$_MODULE$ = null, -oncia_NodeExistsConstraintsCypher25$_description = null, -oncia_NodeExistsConstraintsCypher25$_output = null, -oncia_NodeExistsConstraintsCypher25$_prettyPrint = null, -oncia_NodeExistsConstraintsCypher25$_$callClinit = () => { - oncia_NodeExistsConstraintsCypher25$_$callClinit = $rt_eraseClinit(oncia_NodeExistsConstraintsCypher25$); - oncia_NodeExistsConstraintsCypher25$__clinit_(); -}, -oncia_NodeExistsConstraintsCypher25$__clinit_ = () => { - let var$1; - var$1 = new oncia_NodeExistsConstraintsCypher25$; - oncia_NodeExistsConstraintsCypher25$_$callClinit(); - oncia_NodeExistsConstraintsCypher25$_MODULE$ = var$1; - oncia_NodeExistsConstraints_$init$(var$1); - oncia_NodeExistsConstraintsCypher25$_description = $rt_s(7772); -}, -oncia_NodeExistsConstraintsCypher25$_prettyPrint0 = $this => { - oncia_NodeExistsConstraintsCypher25$_$callClinit(); - return oncia_NodeExistsConstraintsCypher25$_prettyPrint; -}, -oncia_NodeExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { - oncia_NodeExistsConstraintsCypher25$_$callClinit(); - oncia_NodeExistsConstraintsCypher25$_output = $x$1; -}, -oncia_NodeExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { - oncia_NodeExistsConstraintsCypher25$_$callClinit(); - oncia_NodeExistsConstraintsCypher25$_prettyPrint = $x$1; -}, -oncia_NodeExistsConstraintsCypher25$_productArity = $this => { - return 0; -}, -oncia_NodeExistsConstraintsCypher25$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_NodeExistsConstraintsCypher25$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_NodeExistsConstraintsCypher25$_hashCode = $this => { - return (-1666145290); +let oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0808; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$1, var$2); }, -oncia_NodeExistsConstraintsCypher25$_toString = $this => { - return $rt_s(7773); +suc_TailCalls$TailRec = $rt_classWithoutFields(), +suc_TailCalls$TailRec_map = ($this, $f) => { + let $flatMap_f, $flatMap_a, var$4, var$5; + $flatMap_f = new suc_TailCalls$TailRec$map$lambda$_0_0; + $flatMap_f.$_0665 = $f; + if ($this instanceof suc_TailCalls$Done) { + $flatMap_a = $this.$value21; + $f = new suc_TailCalls$Call; + var$4 = new suc_TailCalls$TailRec$map$lambda$_0_1; + var$4.$_01039 = $flatMap_f; + var$4.$_1354 = $flatMap_a; + suc_TailCalls$Call__init_($f, var$4); + return $f; + } + if ($this instanceof suc_TailCalls$Call) + return suc_TailCalls$Cont__init_0($this, $flatMap_f); + if (!($this instanceof suc_TailCalls$Cont)) + $rt_throw(s_MatchError__init_($this)); + $f = $this; + var$4 = new suc_TailCalls$Cont; + var$5 = $f.$a8; + $flatMap_a = new suc_TailCalls$TailRec$map$lambda$_0_2; + $flatMap_a.$_0488 = $f; + $flatMap_a.$_1168 = $flatMap_f; + suc_TailCalls$Cont__init_(var$4, var$5, $flatMap_a); + return var$4; }, -oncia_RelExistsConstraintsCypher25$ = $rt_classWithoutFields(), -oncia_RelExistsConstraintsCypher25$_MODULE$ = null, -oncia_RelExistsConstraintsCypher25$_description = null, -oncia_RelExistsConstraintsCypher25$_output = null, -oncia_RelExistsConstraintsCypher25$_prettyPrint = null, -oncia_RelExistsConstraintsCypher25$_$callClinit = () => { - oncia_RelExistsConstraintsCypher25$_$callClinit = $rt_eraseClinit(oncia_RelExistsConstraintsCypher25$); - oncia_RelExistsConstraintsCypher25$__clinit_(); +suc_TailCalls$TailRec_flatMap = ($this, $f) => { + let $a, var$3, var$4, var$5; + if ($this instanceof suc_TailCalls$Done) { + $a = $this.$value21; + var$3 = new suc_TailCalls$Call; + var$4 = new suc_TailCalls$TailRec$flatMap$lambda$_1_0; + var$4.$_0205 = $f; + var$4.$_176 = $a; + suc_TailCalls$Call__init_(var$3, var$4); + return var$3; + } + if ($this instanceof suc_TailCalls$Call) + return suc_TailCalls$Cont__init_0($this, $f); + if (!($this instanceof suc_TailCalls$Cont)) + $rt_throw(s_MatchError__init_($this)); + var$3 = $this; + var$4 = new suc_TailCalls$Cont; + var$5 = var$3.$a8; + $a = new suc_TailCalls$TailRec$flatMap$lambda$_1_1; + $a.$_0862 = var$3; + $a.$_1289 = $f; + suc_TailCalls$Cont__init_(var$4, var$5, $a); + return var$4; }, -oncia_RelExistsConstraintsCypher25$__clinit_ = () => { - let var$1; - var$1 = new oncia_RelExistsConstraintsCypher25$; - oncia_RelExistsConstraintsCypher25$_$callClinit(); - oncia_RelExistsConstraintsCypher25$_MODULE$ = var$1; - oncia_RelExistsConstraints_$init$(var$1); - oncia_RelExistsConstraintsCypher25$_description = $rt_s(7774); +suc_TailCalls$TailRec_$anonfun$flatMap$2 = ($x5$1, $f$2, $x) => { + let $flatMap_this, $flatMap_a; + $flatMap_this = $x5$1.$f0.$apply2($x); + if ($flatMap_this === null) + $rt_throw(null); + if ($flatMap_this instanceof suc_TailCalls$Done) { + $flatMap_a = $flatMap_this.$value(); + $x5$1 = new suc_TailCalls$Call; + $x = new suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0; + $x.$_0823 = $f$2; + $x.$_1275 = $flatMap_a; + suc_TailCalls$Call__init_($x5$1, $x); + return $x5$1; + } + if ($flatMap_this instanceof suc_TailCalls$Call) + return suc_TailCalls$Cont__init_0($flatMap_this, $f$2); + if (!($flatMap_this instanceof suc_TailCalls$Cont)) + $rt_throw(s_MatchError__init_($flatMap_this)); + $x5$1 = $flatMap_this; + $x = new suc_TailCalls$Cont; + $flatMap_a = $x5$1.$a8; + $flatMap_this = new suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1; + $flatMap_this.$_0242 = $x5$1; + $flatMap_this.$_192 = $f$2; + suc_TailCalls$Cont__init_($x, $flatMap_a, $flatMap_this); + return $x; +}; +function oncil_SolvableLabelExpression() { + let a = this; jl_Object.call(a); + a.$allLabels = null; + a.$matches4 = null; +} +let oncil_SolvableLabelExpression_binary = ($this, $rhs, $f) => { + let var$3, var$4, var$5; + var$3 = oncil_SolvableLabelExpression$_MODULE$; + var$4 = $this.$allLabels.$concat1($rhs.$allLabels); + var$5 = new oncil_SolvableLabelExpression$binary$lambda$_15_0; + var$5.$_0709 = $this; + var$5.$_1240 = $f; + var$5.$_279 = $rhs; + return oncil_SolvableLabelExpression$_build(var$3, var$4, var$5); }, -oncia_RelExistsConstraintsCypher25$_prettyPrint0 = $this => { - oncia_RelExistsConstraintsCypher25$_$callClinit(); - return oncia_RelExistsConstraintsCypher25$_prettyPrint; +oncil_SolvableLabelExpression_and = ($this, $rhs) => { + return oncil_SolvableLabelExpression_binary($this, $rhs, new oncil_SolvableLabelExpression$and$lambda$_16_0); }, -oncia_RelExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { - oncia_RelExistsConstraintsCypher25$_$callClinit(); - oncia_RelExistsConstraintsCypher25$_output = $x$1; +oncil_SolvableLabelExpression_or = ($this, $rhs) => { + return oncil_SolvableLabelExpression_binary($this, $rhs, new oncil_SolvableLabelExpression$or$lambda$_17_0); }, -oncia_RelExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { - oncia_RelExistsConstraintsCypher25$_$callClinit(); - oncia_RelExistsConstraintsCypher25$_prettyPrint = $x$1; +oncil_SolvableLabelExpression_productPrefix = $this => { + return $rt_s(6754); }, -oncia_RelExistsConstraintsCypher25$_productArity = $this => { - return 0; +oncil_SolvableLabelExpression_productArity = $this => { + return 2; }, -oncia_RelExistsConstraintsCypher25$_productElement = ($this, $x$1) => { +oncil_SolvableLabelExpression_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$allLabels; + case 1: + return $this.$matches4; + default: + } return sr_Statics_ioobe($x$1); }, -oncia_RelExistsConstraintsCypher25$_productIterator = $this => { +oncil_SolvableLabelExpression_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_RelExistsConstraintsCypher25$_hashCode = $this => { - return 82675071; -}, -oncia_RelExistsConstraintsCypher25$_toString = $this => { - return $rt_s(7775); -}, -oncia_ExistsConstraintsCypher25$ = $rt_classWithoutFields(), -oncia_ExistsConstraintsCypher25$_MODULE$ = null, -oncia_ExistsConstraintsCypher25$_description = null, -oncia_ExistsConstraintsCypher25$_output = null, -oncia_ExistsConstraintsCypher25$_prettyPrint = null, -oncia_ExistsConstraintsCypher25$_$callClinit = () => { - oncia_ExistsConstraintsCypher25$_$callClinit = $rt_eraseClinit(oncia_ExistsConstraintsCypher25$); - oncia_ExistsConstraintsCypher25$__clinit_(); -}, -oncia_ExistsConstraintsCypher25$__clinit_ = () => { - let var$1; - var$1 = new oncia_ExistsConstraintsCypher25$; - oncia_ExistsConstraintsCypher25$_$callClinit(); - oncia_ExistsConstraintsCypher25$_MODULE$ = var$1; - oncia_ExistsConstraints_$init$(var$1); - oncia_ExistsConstraintsCypher25$_description = $rt_s(7776); +oncil_SolvableLabelExpression_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ExistsConstraintsCypher25$_prettyPrint0 = $this => { - oncia_ExistsConstraintsCypher25$_$callClinit(); - return oncia_ExistsConstraintsCypher25$_prettyPrint; +oncil_SolvableLabelExpression_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_ExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$output_$eq = ($this, $x$1) => { - oncia_ExistsConstraintsCypher25$_$callClinit(); - oncia_ExistsConstraintsCypher25$_output = $x$1; +oncil_SolvableLabelExpression_equals = ($this, $x$1) => { + let var$2, var$3, var$4; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncil_SolvableLabelExpression) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$allLabels; + var$3 = $x$1.$allLabels; + if (var$2 !== null) { + if (!var$2.$equals(var$3)) + break b; + else + break c; + } + if (var$3 !== null) + break b; + } + d: { + var$3 = $this.$matches4; + $x$1 = $x$1.$matches4; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break b; + else + break d; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncil_SolvableLabelExpression)) + break b; + } + var$4 = 1; + break a; + } + var$4 = 0; + } + return var$4; +}; +function oncifp_SelfReferenceCheckWithinPatternPart$$findSelfReferenceVariablesWithinPatternParts$lambda$_4_0() { + let a = this; jl_Object.call(a); + a.$_0485 = null; + a.$_1166 = null; +} +let oncifp_SelfReferenceCheckWithinPatternPart$$findSelfReferenceVariablesWithinPatternParts$lambda$_4_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0485; + var$3 = var$0.$_1166; + return oncifp_VariableReferenceCheck_findSelfReferenceVariables$(oncifp_SelfReferenceCheckWithinPatternPart$_MODULE$, var$1, var$2, var$3); +}; +function oncias_SemanticAnalysisTooling$declareVariable$lambda$_63_0() { + let a = this; jl_Object.call(a); + a.$_0700 = null; + a.$_1237 = null; + a.$_277 = null; + a.$_325 = 0; +} +let oncias_SemanticAnalysisTooling$declareVariable$lambda$_63_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_0700; + var$3 = var$0.$_1237; + var$4 = var$0.$_277; + var$5 = var$0.$_325; + return oncias_SemanticState_declareVariable(var$1, var$2, var$3.$apply2(var$1), var$4, var$5, 0); +}; +function oncias_SemanticPatternCheck$$anonfun$2() { + sr_AbstractPartialFunction.call(this); + this.$varLength$1 = 0; +} +let oncias_SemanticPatternCheck$$anonfun$2_applyOrElse = ($this, $x1, $default) => { + let var$3, $rel, var$5; + var$3 = 0; + $default = null; + if ($x1 instanceof oncie_RelationshipChain) { + var$3 = 1; + $default = $x1; + $rel = $default.$relationship1; + if ($rel !== null) { + $x1 = $rel.$variable5; + var$5 = $rel.$length3; + if ($x1 instanceof s_Some) { + $rel = $x1.$value5; + if (jl_Object_equals(s_None$_MODULE$, var$5) && !$this.$varLength$1) { + $x1 = new oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0; + $x1.$_0763 = $rel; + return $x1; + } + } + } + } + if (var$3) { + $default = $default.$relationship1; + if ($default !== null) { + $x1 = $default.$variable5; + $default = $default.$length3; + if ($x1 instanceof s_Some) { + $rel = $x1.$value5; + if ($default instanceof s_Some && $this.$varLength$1) { + $x1 = new oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1; + $x1.$_0249 = $rel; + return $x1; + } + } + } + } + return new oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2; }, -oncia_ExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$prettyPrint_$eq = ($this, $x$1) => { - oncia_ExistsConstraintsCypher25$_$callClinit(); - oncia_ExistsConstraintsCypher25$_prettyPrint = $x$1; +oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + return jl_Boolean_valueOf(var$1.$length() <= 1 ? 0 : 1); }, -oncia_ExistsConstraintsCypher25$_productArity = $this => { - return 0; +oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_1 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = new oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_165_0; + onciu_InputPosition$_$callClinit(); + return sc_AbstractIterable_minBy(var$1, var$2, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); +}; +function oncias_SemanticAnalysisTooling$implicitVariable$lambda$_69_0() { + let a = this; jl_Object.call(a); + a.$_01106 = null; + a.$_1378 = null; +} +let oncias_SemanticAnalysisTooling$implicitVariable$lambda$_69_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$2 = var$0.$_01106; + var$3 = var$0.$_1378; + oncius_package$_$callClinit(); + return oncias_SemanticState_implicitVariable(var$1, var$2, var$3.$invariant()); }, -oncia_ExistsConstraintsCypher25$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +suc_TailCalls$ = $rt_classWithoutFields(), +suc_TailCalls$_MODULE$ = null, +suc_TailCalls$__clinit_ = () => { + suc_TailCalls$_MODULE$ = new suc_TailCalls$; }, -oncia_ExistsConstraintsCypher25$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +suc_TailCalls$_tailcall = ($this, $rest) => { + return suc_TailCalls$Call__init_0($rest); }, -oncia_ExistsConstraintsCypher25$_hashCode = $this => { - return 2102295512; -}; -let oncia_ExistsConstraintsCypher25$_toString = $this => { - return $rt_s(7777); +suc_TailCalls$_done = ($this, $result) => { + return suc_TailCalls$Done__init_($result); }; -function oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0() { +function oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0() { jl_Object.call(this); - this.$_0264 = null; + this.$_0317 = null; } -let oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0_apply = var$0 => { - return oncipvaf_Cypher25AstBuilder_org$neo4j$cypher$internal$parser$v25$ast$factory$DdlShowBuilder$$NoEntity(var$0.$_0264); +let oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0317; + return oncil_SolvableLabelExpression$_extractLabelExpressionRec(oncil_SolvableLabelExpression$_MODULE$, var$1); }, -oncipvaf_DdlShowBuilder$ConstraintEntity = $rt_classWithoutFields(0), -oncia_NodeUniqueConstraintsCypher25$ = $rt_classWithoutFields(), -oncia_NodeUniqueConstraintsCypher25$_MODULE$ = null, -oncia_NodeUniqueConstraintsCypher25$_output = null, -oncia_NodeUniqueConstraintsCypher25$_prettyPrint = null, -oncia_NodeUniqueConstraintsCypher25$_description = null, -oncia_NodeUniqueConstraintsCypher25$__clinit_ = () => { - oncia_NodeUniqueConstraintsCypher25$_MODULE$ = new oncia_NodeUniqueConstraintsCypher25$; - oncia_NodeUniqueConstraintsCypher25$_output = $rt_s(7778); - oncia_NodeUniqueConstraintsCypher25$_prettyPrint = $rt_s(7779); - oncia_NodeUniqueConstraintsCypher25$_description = $rt_s(7780); +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = oncil_SolvableLabelExpression$_MODULE$; + var$3 = var$1.$allLabels; + var$4 = new oncil_SolvableLabelExpression$not$lambda$_14_0; + var$4.$_0693 = var$1; + return oncil_SolvableLabelExpression$_build(var$2, var$3, var$4); }, -oncia_NodeUniqueConstraintsCypher25$_prettyPrint0 = $this => { - return oncia_NodeUniqueConstraintsCypher25$_prettyPrint; +onciut_TailCallsUtil$ = $rt_classWithoutFields(), +onciut_TailCallsUtil$_MODULE$ = null, +onciut_TailCallsUtil$__clinit_ = () => { + onciut_TailCallsUtil$_MODULE$ = new onciut_TailCallsUtil$; }, -oncia_NodeUniqueConstraintsCypher25$_productArity = $this => { - return 0; +onciut_TailCallsUtil$_traverse = ($this, $as, $f) => { + let var$3, var$4; + if (sci_List_isEmpty($as)) { + $as = suc_TailCalls$_MODULE$; + sc_Seq$_$callClinit(); + return suc_TailCalls$_done($as, sc_SeqFactory$Delegate_empty(sc_Seq$_MODULE$)); + } + var$3 = suc_TailCalls$_MODULE$; + var$4 = new onciut_TailCallsUtil$$traverse$lambda$_1_0; + var$4.$_0153 = $f; + var$4.$_151 = $as; + var$3 = suc_TailCalls$_tailcall(var$3, var$4); + var$4 = new onciut_TailCallsUtil$$traverse$lambda$_1_1; + var$4.$_0806 = $as; + var$4.$_1270 = $f; + return suc_TailCalls$TailRec_flatMap(var$3, var$4); }, -oncia_NodeUniqueConstraintsCypher25$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +onciut_TailCallsUtil$_map2 = ($this, $recA, $recB, $f) => { + let var$4; + var$4 = new onciut_TailCallsUtil$$map2$lambda$_2_0; + var$4.$_0770 = $recB; + var$4.$_1256 = $f; + return suc_TailCalls$TailRec_flatMap($recA, var$4); }, -oncia_NodeUniqueConstraintsCypher25$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2_apply = (var$0, var$1, var$2) => { + return oncil_SolvableLabelExpression_and(var$1, var$2); }, -oncia_NodeUniqueConstraintsCypher25$_hashCode = $this => { - return 1549379169; +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3_apply = (var$0, var$1) => { + var$1 = var$1; + return oncil_SolvableLabelExpression$_extractLabelExpressionRec(oncil_SolvableLabelExpression$_MODULE$, var$1); }, -oncia_NodeUniqueConstraintsCypher25$_toString = $this => { - return $rt_s(7781); +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4_apply = (var$0, var$1) => { + return var$1.$reduceLeft(new oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$5$lambda$_16_0); }, -oncia_RelUniqueConstraintsCypher25$ = $rt_classWithoutFields(), -oncia_RelUniqueConstraintsCypher25$_MODULE$ = null, -oncia_RelUniqueConstraintsCypher25$_output = null, -oncia_RelUniqueConstraintsCypher25$_prettyPrint = null, -oncia_RelUniqueConstraintsCypher25$_description = null, -oncia_RelUniqueConstraintsCypher25$__clinit_ = () => { - oncia_RelUniqueConstraintsCypher25$_MODULE$ = new oncia_RelUniqueConstraintsCypher25$; - oncia_RelUniqueConstraintsCypher25$_output = $rt_s(7782); - oncia_RelUniqueConstraintsCypher25$_prettyPrint = $rt_s(7783); - oncia_RelUniqueConstraintsCypher25$_description = $rt_s(7784); +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5_apply = (var$0, var$1, var$2) => { + return oncil_SolvableLabelExpression_or(var$1, var$2); }, -oncia_RelUniqueConstraintsCypher25$_prettyPrint0 = $this => { - return oncia_RelUniqueConstraintsCypher25$_prettyPrint; +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6_apply = (var$0, var$1) => { + var$1 = var$1; + return oncil_SolvableLabelExpression$_extractLabelExpressionRec(oncil_SolvableLabelExpression$_MODULE$, var$1); }, -oncia_RelUniqueConstraintsCypher25$_productArity = $this => { - return 0; +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7_apply = (var$0, var$1) => { + return var$1.$reduceLeft(new oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$9$lambda$_20_0); +}; +function suc_TailCalls$Done() { + suc_TailCalls$TailRec.call(this); + this.$value21 = null; +} +let suc_TailCalls$Done_productPrefix = $this => { + return $rt_s(6755); }, -oncia_RelUniqueConstraintsCypher25$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +suc_TailCalls$Done_productArity = $this => { + return 1; }, -oncia_RelUniqueConstraintsCypher25$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +suc_TailCalls$Done_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$value21; + default: + } + return sr_Statics_ioobe($x$1); }, -oncia_RelUniqueConstraintsCypher25$_hashCode = $this => { - return (-996767766); +suc_TailCalls$Done_productIterator = $this => { + return sr_ScalaRunTime$$anon$1__init_($this); }, -oncia_RelUniqueConstraintsCypher25$_toString = $this => { - return $rt_s(7785); +suc_TailCalls$Done_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncia_UniqueConstraintsCypher25$ = $rt_classWithoutFields(), -oncia_UniqueConstraintsCypher25$_MODULE$ = null, -oncia_UniqueConstraintsCypher25$_output = null, -oncia_UniqueConstraintsCypher25$_prettyPrint = null, -oncia_UniqueConstraintsCypher25$_description = null, -oncia_UniqueConstraintsCypher25$__clinit_ = () => { - oncia_UniqueConstraintsCypher25$_MODULE$ = new oncia_UniqueConstraintsCypher25$; - oncia_UniqueConstraintsCypher25$_output = $rt_s(7786); - oncia_UniqueConstraintsCypher25$_prettyPrint = $rt_s(7787); - oncia_UniqueConstraintsCypher25$_description = $rt_s(7788); +suc_TailCalls$Done__init_0 = ($this, $value) => { + $this.$value21 = $value; }, -oncia_UniqueConstraintsCypher25$_prettyPrint0 = $this => { - return oncia_UniqueConstraintsCypher25$_prettyPrint; +suc_TailCalls$Done__init_ = var_0 => { + let var_1 = new suc_TailCalls$Done(); + suc_TailCalls$Done__init_0(var_1, var_0); + return var_1; +}; +function suc_TailCalls$Call() { + suc_TailCalls$TailRec.call(this); + this.$rest = null; +} +let suc_TailCalls$Call_productPrefix = $this => { + return $rt_s(6756); }, -oncia_UniqueConstraintsCypher25$_productArity = $this => { - return 0; +suc_TailCalls$Call_productArity = $this => { + return 1; }, -oncia_UniqueConstraintsCypher25$_productElement = ($this, $x$1) => { +suc_TailCalls$Call_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$rest; + default: + } return sr_Statics_ioobe($x$1); }, -oncia_UniqueConstraintsCypher25$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_UniqueConstraintsCypher25$_hashCode = $this => { - return 1022852675; +suc_TailCalls$Call_productIterator = $this => { + return sr_ScalaRunTime$$anon$1__init_($this); }, -oncia_UniqueConstraintsCypher25$_toString = $this => { - return $rt_s(7789); +suc_TailCalls$Call_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); }, -onciap_Prettifier$$anonfun$stringify$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -onciap_Prettifier$$anonfun$stringify$1$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - if ($x instanceof oncia_LabelQualifier) { - $default = $x.$label1; - $x = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $default, 0, 0); - } else if ($x instanceof oncia_RelationshipQualifier) { - $default = $x.$reltype; - $x = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $default, 0, 0); - } else if ($x instanceof oncia_ElementQualifier) { - $default = $x.$value23; - $x = onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, $default, 0, 0); - } else if ($x instanceof oncia_UserQualifier) { - $default = $x.$username2; - onciap_Prettifier$_$callClinit(); - $x = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $default); - } else - $x = $x instanceof oncia_ProcedureQualifier ? onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1($x.$glob3) : $x instanceof oncia_FunctionQualifier ? onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1($x.$glob1) : !($x instanceof oncia_SettingQualifier) ? s_PartialFunction$$anon$1_apply($default, $x) : onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1($x.$glob2); - return $x; +suc_TailCalls$Call_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_0 = $rt_classWithoutFields(), -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_0_apply = (var$0, var$1) => { +suc_TailCalls$Call_equals = ($this, $x$1) => { let var$2; - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - if (!(var$1 instanceof oncia_LabelQualifier)) - var$1 = s_None$_MODULE$; - else { - var$2 = var$1; - var$1 = s_Some__init_(onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, var$2.$label1, 0, 0)); + a: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof suc_TailCalls$Call) ? 0 : 1)) + break a; + b: { + $x$1 = $x$1; + var$2 = $this.$rest; + $x$1 = $x$1.$rest; + if (var$2 !== null) { + if (!jl_Object_equals(var$2, $x$1)) + break a; + else + break b; + } + if ($x$1 !== null) + break a; + } + if (!($this instanceof suc_TailCalls$Call)) + break a; + } + return 1; } - return var$1; + return 0; }, -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_1 = $rt_classWithoutFields(), -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_2 = $rt_classWithoutFields(), -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_2_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 58); - jl_StringBuilder_append(var$2, var$1); - return jl_AbstractStringBuilder_toString(var$2); +suc_TailCalls$Call__init_ = ($this, $rest) => { + $this.$rest = $rest; }, -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_3 = $rt_classWithoutFields(), -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_3_apply = var$0 => { - onciap_Prettifier$_$callClinit(); - return $rt_s(4); +suc_TailCalls$Call__init_0 = var_0 => { + let var_1 = new suc_TailCalls$Call(); + suc_TailCalls$Call__init_(var_1, var_0); + return var_1; +}; +function suc_TailCalls$Cont() { + let a = this; suc_TailCalls$TailRec.call(a); + a.$a8 = null; + a.$f0 = null; +} +let suc_TailCalls$Cont_productPrefix = $this => { + return $rt_s(6757); }, -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_4 = $rt_classWithoutFields(), -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_4_apply = (var$0, var$1) => { - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - return onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, var$1.$name4, 0, 0); +suc_TailCalls$Cont_productArity = $this => { + return 2; }, -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_6 = $rt_classWithoutFields(); -let onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_6_apply = (var$0, var$1) => { - onciap_Prettifier$_$callClinit(); - return var$1.$asCanonicalStringVal(); +suc_TailCalls$Cont_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$a8; + case 1: + return $this.$f0; + default: + } + return sr_Statics_ioobe($x$1); }, -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_5 = $rt_classWithoutFields(), -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_5_apply = (var$0, var$1) => { - onciap_Prettifier$_$callClinit(); - return var$1.$asCanonicalStringVal(); -}; -function onciap_Prettifier$$escapeNames$lambda$_18_0() { - jl_Object.call(this); - this.$_0728 = null; -} -let onciap_Prettifier$$escapeNames$lambda$_18_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0728; - onciap_Prettifier$_$callClinit(); - return onciap_Prettifier$_escapeName(onciap_Prettifier$_MODULE$, var$1, var$2); -}; -function jur_Matcher$1() { - let a = this; jl_Object.call(a); - a.$grN = 0; - a.$val$gr = 0; - a.$this$08 = null; -} -let jur_Matcher$1__init_ = ($this, $this$0, var$2) => { - $this.$this$08 = $this$0; - $this.$val$gr = var$2; - $this.$grN = var$2; +suc_TailCalls$Cont_productIterator = $this => { + return sr_ScalaRunTime$$anon$1__init_($this); }, -jur_Matcher$1__init_0 = (var_0, var_1) => { - let var_2 = new jur_Matcher$1(); - jur_Matcher$1__init_(var_2, var_0, var_1); - return var_2; +suc_TailCalls$Cont_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); }, -jur_Matcher$1_toString = $this => { - return jur_Matcher_group($this.$this$08, $this.$grN); +suc_TailCalls$Cont_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0 = $rt_classWithoutFields(), -oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6; +suc_TailCalls$Cont_equals = ($this, $x$1) => { + let var$2, var$3; a: { - var$2 = var$2; - var$3 = sr_BoxesRunTime_unboxToInt(var$1); - var$1 = s_Tuple2__init_(jl_Integer_valueOf(var$3), var$2); - var$3 = s_Tuple2__1$mcI$sp(var$1); - var$2 = var$1.$_20; - if (var$2 instanceof sci_$colon$colon) { - var$2 = var$2; - var$4 = var$2.$head1; - var$2 = var$2.$next6; - if (var$2 instanceof sci_$colon$colon) { - var$2 = var$2; - var$5 = var$2.$head1; - var$6 = var$2.$next6; - if (sci_List_equals(sci_Nil$_MODULE$, var$6) && !(oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$4) === null && oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$5) === null)) { - var$3 = var$3 + 1 | 0; + if ($this !== $x$1) { + if (!(!($x$1 instanceof suc_TailCalls$Cont) ? 0 : 1)) + break a; + b: { + $x$1 = $x$1; + var$2 = $this.$a8; + var$3 = $x$1.$a8; + if (var$2 !== null) { + if (!suc_TailCalls$Call_equals(var$2, var$3)) + break a; + else + break b; + } + if (var$3 !== null) break a; + } + c: { + var$3 = $this.$f0; + $x$1 = $x$1.$f0; + if (var$3 !== null) { + if (!jl_Object_equals(var$3, $x$1)) + break a; + else + break c; } + if ($x$1 !== null) + break a; } + if (!($this instanceof suc_TailCalls$Cont)) + break a; } - var$3 = s_Tuple2__1$mcI$sp(var$1); + return 1; } - return jl_Integer_valueOf(var$3); + return 0; }, -oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1 = $rt_classWithoutFields(), -oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1_apply = (var$0, var$1) => { - var$1 = var$1; - return oncipv_Cypher5Parser$SymbolicNameStringContext_unescapedSymbolicNameString(var$1) !== null ? (oncipv_Cypher5Parser$SymbolicNameStringContext_unescapedSymbolicNameString(var$1)).$ast0 : oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$1) === null ? $rt_s(4) : onih_NameUtil_forceEscapeName((oncipv_Cypher5Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$1)).$ast0); +suc_TailCalls$Cont__init_ = ($this, $a, $f) => { + $this.$a8 = $a; + $this.$f0 = $f; }, -oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0 = $rt_classWithoutFields(), -oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6; - a: { - var$2 = var$2; - var$3 = sr_BoxesRunTime_unboxToInt(var$1); - var$1 = s_Tuple2__init_(jl_Integer_valueOf(var$3), var$2); - var$3 = s_Tuple2__1$mcI$sp(var$1); - var$2 = var$1.$_20; - if (var$2 instanceof sci_$colon$colon) { - var$2 = var$2; - var$4 = var$2.$head1; - var$2 = var$2.$next6; - if (var$2 instanceof sci_$colon$colon) { - var$2 = var$2; - var$5 = var$2.$head1; - var$6 = var$2.$next6; - if (sci_List_equals(sci_Nil$_MODULE$, var$6) && !(oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$4) === null && oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$5) === null)) { - var$3 = var$3 + 1 | 0; - break a; - } - } - } - var$3 = s_Tuple2__1$mcI$sp(var$1); +suc_TailCalls$Cont__init_0 = (var_0, var_1) => { + let var_2 = new suc_TailCalls$Cont(); + suc_TailCalls$Cont__init_(var_2, var_0, var_1); + return var_2; +}; +function suc_TailCalls$TailRec$result$lambda$_3_0() { + let a = this; jl_Object.call(a); + a.$_0544 = null; + a.$_1179 = null; +} +let suc_TailCalls$TailRec$result$lambda$_3_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_0544; + var$3 = var$0.$_1179; + var$2 = var$2.$apply2(var$1); + if (var$2 === null) + $rt_throw(null); + if (var$2 instanceof suc_TailCalls$Done) { + var$2 = var$2.$value(); + var$1 = new suc_TailCalls$Call; + var$4 = new suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0; + var$4.$_0685 = var$3; + var$4.$_1234 = var$2; + suc_TailCalls$Call__init_(var$1, var$4); + } else if (var$2 instanceof suc_TailCalls$Call) + var$1 = suc_TailCalls$Cont__init_0(var$2, var$3); + else { + if (!(var$2 instanceof suc_TailCalls$Cont)) + $rt_throw(s_MatchError__init_(var$2)); + var$1 = new suc_TailCalls$Cont; + var$4 = var$2.$a(); + var$5 = new suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1; + var$5.$_0451 = var$2; + var$5.$_1157 = var$3; + suc_TailCalls$Cont__init_(var$1, var$4, var$5); } - return jl_Integer_valueOf(var$3); + return var$1; +}; +function suc_TailCalls$TailRec$result$lambda$_3_1() { + let a = this; jl_Object.call(a); + a.$_0635 = null; + a.$_1217 = null; +} +let suc_TailCalls$TailRec$result$lambda$_3_1_apply = var$0 => { + return var$0.$_0635.$apply2(var$0.$_1217); +}; +function suc_TailCalls$TailRec$result$lambda$_3_2() { + let a = this; jl_Object.call(a); + a.$_01 = null; + a.$_15 = null; +} +let suc_TailCalls$TailRec$result$lambda$_3_2_apply = (var$0, var$1) => { + return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_01, var$0.$_15, var$1); }, -oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1 = $rt_classWithoutFields(), -oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1_apply = (var$0, var$1) => { +oncil_SolvableLabelExpression$$wildcard$lambda$_4_0 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$wildcard$lambda$_4_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return oncipv_Cypher25Parser$SymbolicNameStringContext_unescapedSymbolicNameString(var$1) !== null ? (oncipv_Cypher25Parser$SymbolicNameStringContext_unescapedSymbolicNameString(var$1)).$ast0 : oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$1) === null ? $rt_s(4) : onih_NameUtil_forceEscapeName((oncipv_Cypher25Parser$SymbolicNameStringContext_escapedSymbolicNameString(var$1)).$ast0); -}, -oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_0 = $rt_classWithoutFields(), -oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_0_apply = (var$0, var$1) => { - return var$1.$name(); + if (var$1 instanceof oncil_NodeLabels$KnownLabels) + var$2 = sc_IterableOnceOps_nonEmpty$(var$1.$labelNames); + else { + if (!jl_Object_equals(oncil_NodeLabels$SomeUnknownLabels$_MODULE$, var$1)) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = 1; + } + return jl_Boolean_valueOf(var$2); }, -oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_1 = $rt_classWithoutFields(), -oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_1_apply = (var$0, var$1) => { +oncil_SolvableLabelExpression$$dynamic$lambda$_5_0 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$$dynamic$lambda$_5_0_apply = (var$0, var$1) => { let var$2; - a: { - var$1 = var$1; - if (var$1 !== null) { - var$1 = var$1.$_2(); - if (var$1.$length() > 1) { - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - var$1 = oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7790), (var$1.$head()).$position())); - break a; - } - } - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + var$1 = var$1; + if (var$1 instanceof oncil_NodeLabels$KnownLabels) + var$2 = sc_IterableOnceOps_nonEmpty$(var$1.$labelNames); + else { + if (!jl_Object_equals(oncil_NodeLabels$SomeUnknownLabels$_MODULE$, var$1)) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = 1; } - return var$1; + return jl_Boolean_valueOf(var$2); }; -function oncia_Clause$Acc$2$() { - let a = this; sr_AbstractFunction3.call(a); - a.$$outer2 = null; - a.$LabelExpressionsPartitions$module$1 = null; - a.$Read$module$10 = null; - a.$Write$module$10 = null; - a.$ReadWrite$module$10 = null; - a.$LegacyLabelExpression$module$1 = null; +function oncil_SolvableLabelExpression$$label$lambda$_6_0() { + jl_Object.call(this); + this.$_01125 = null; } -let oncia_Clause$Acc$2$__init_0 = ($this, $$outer, $LabelExpressionsPartitions$module$1, $Read$module$1, $Write$module$1, $ReadWrite$module$1, $LegacyLabelExpression$module$1) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer2 = $$outer; - $this.$LabelExpressionsPartitions$module$1 = $LabelExpressionsPartitions$module$1; - $this.$Read$module$10 = $Read$module$1; - $this.$Write$module$10 = $Write$module$1; - $this.$ReadWrite$module$10 = $ReadWrite$module$1; - $this.$LegacyLabelExpression$module$1 = $LegacyLabelExpression$module$1; +let oncil_SolvableLabelExpression$$label$lambda$_6_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01125; + if (var$1 instanceof oncil_NodeLabels$KnownLabels) + var$3 = var$1.$labelNames.$contains(var$2); + else { + if (!jl_Object_equals(oncil_NodeLabels$SomeUnknownLabels$_MODULE$, var$1)) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = 0; + } + return jl_Boolean_valueOf(var$3); +}; +function suc_TailCalls$TailRec$map$lambda$_0_0() { + jl_Object.call(this); + this.$_0665 = null; +} +let suc_TailCalls$TailRec$map$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0665; + var$3 = new suc_TailCalls$Call; + var$4 = new suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0; + var$4.$_013 = var$2; + var$4.$_110 = var$1; + suc_TailCalls$Call__init_(var$3, var$4); + return var$3; +}; +function suc_TailCalls$TailRec$map$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_01039 = null; + a.$_1354 = null; +} +let suc_TailCalls$TailRec$map$lambda$_0_1_apply = var$0 => { + return var$0.$_01039.$apply2(var$0.$_1354); +}; +function suc_TailCalls$TailRec$map$lambda$_0_2() { + let a = this; jl_Object.call(a); + a.$_0488 = null; + a.$_1168 = null; +} +let suc_TailCalls$TailRec$map$lambda$_0_2_apply = (var$0, var$1) => { + return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_0488, var$0.$_1168, var$1); +}; +function onciut_TailCallsUtil$$map2$lambda$_2_0() { + let a = this; jl_Object.call(a); + a.$_0770 = null; + a.$_1256 = null; +} +let onciut_TailCallsUtil$$map2$lambda$_2_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0770; + var$3 = var$0.$_1256; + var$4 = new onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0; + var$4.$_0182 = var$3; + var$4.$_166 = var$1; + return suc_TailCalls$TailRec_map(var$2, var$4); +}; +function onciut_TailCallsUtil$$traverse$lambda$_1_0() { + let a = this; jl_Object.call(a); + a.$_0153 = null; + a.$_151 = null; +} +let onciut_TailCallsUtil$$traverse$lambda$_1_0_apply = var$0 => { + return var$0.$_0153.$apply2(var$0.$_151.$head()); +}; +function onciut_TailCallsUtil$$traverse$lambda$_1_1() { + let a = this; jl_Object.call(a); + a.$_0806 = null; + a.$_1270 = null; +} +let onciut_TailCallsUtil$$traverse$lambda$_1_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_0806; + var$3 = var$0.$_1270; + var$4 = suc_TailCalls$_MODULE$; + var$5 = new onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0; + var$5.$_0752 = var$2; + var$5.$_1252 = var$3; + var$2 = suc_TailCalls$_tailcall(var$4, var$5); + var$3 = new onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1; + var$3.$_0219 = var$1; + return suc_TailCalls$TailRec_map(var$2, var$3); }, -oncia_Clause$Acc$2$__init_ = (var_0, var_1, var_2, var_3, var_4, var_5) => { - let var_6 = new oncia_Clause$Acc$2$(); - oncia_Clause$Acc$2$__init_0(var_6, var_0, var_1, var_2, var_3, var_4, var_5); - return var_6; +sc_Seq$ = $rt_classWithoutFields(sc_SeqFactory$Delegate), +sc_Seq$_MODULE$ = null, +sc_Seq$_$callClinit = () => { + sc_Seq$_$callClinit = $rt_eraseClinit(sc_Seq$); + sc_Seq$__clinit_(); }, -oncie_Expression$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), -oncie_Expression$$_clinit_$lambda$_0_0_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7791)), var$1), $rt_s(7792)), var$2); - return jl_AbstractStringBuilder_toString(var$3); +sc_Seq$__clinit_ = () => { + let var$1; + var$1 = new sc_Seq$; + sc_Seq$_$callClinit(); + sci_Seq$_$callClinit(); + sc_SeqFactory$Delegate__init_(var$1, sci_Seq$_MODULE$); + sc_Seq$_MODULE$ = var$1; }; -function oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0() { +function suc_TailCalls$TailRec$flatMap$lambda$_1_0() { let a = this; jl_Object.call(a); - a.$_0475 = null; - a.$_1165 = 0; + a.$_0205 = null; + a.$_176 = null; } -let oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0475; - var$2 = var$0.$_1165; - s_Option$_$callClinit(); - return s_Option_map(s_Option$_apply(s_Option$_MODULE$, oavr_VocabularyImpl_getSymbolicName(var$1.$conf.$vocabulary0(), var$2)), new oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0); +let suc_TailCalls$TailRec$flatMap$lambda$_1_0_apply = var$0 => { + return var$0.$_0205.$apply2(var$0.$_176); }; -function oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1() { - jl_Object.call(this); - this.$_0941 = 0; +function suc_TailCalls$TailRec$flatMap$lambda$_1_1() { + let a = this; jl_Object.call(a); + a.$_0862 = null; + a.$_1289 = null; } -let oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1_apply = var$0 => { - return jl_Integer_toString(var$0.$_0941); -}, -oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1_applyOrElse = ($this, $x, $default) => { - let var$3; - $x = $x; - if ($x === null) - $default = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); - else { - $default = new oncie_PropertyKeyName; - var$3 = $x.$ast0; - oncipau_Util$_$callClinit(); - oncie_PropertyKeyName__init_0($default, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $x)); +let suc_TailCalls$TailRec$flatMap$lambda$_1_1_apply = (var$0, var$1) => { + return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_0862, var$0.$_1289, var$1); +}; +function oncifp_VariableReferenceCheck$$anonfun$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer66 = null; + a.$allSymbolDefinitions$10 = null; +} +let oncifp_VariableReferenceCheck$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let $maybeVariable, $labelExpression, $maybeProperties, $variable; + if ($x1 instanceof oncie_NodePattern) { + $x1 = $x1; + $maybeVariable = $x1.$variable6; + $labelExpression = $x1.$labelExpression7; + $maybeProperties = $x1.$properties6; + $x1 = new oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0; + $x1.$_0235 = $this; + $x1.$_189 = $maybeVariable; + $x1.$_232 = $maybeProperties; + $x1.$_312 = $labelExpression; + return $x1; } - return $default; -}, -oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1_applyOrElse = ($this, $x, $default) => { - let var$3; - $x = $x; - if ($x === null) - $default = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); - else { - $default = new oncie_PropertyKeyName; - var$3 = $x.$ast0; - oncipau_Util$_$callClinit(); - oncie_PropertyKeyName__init_0($default, var$3, oncipau_Util$_pos(oncipau_Util$_MODULE$, $x)); + if (!($x1 instanceof oncie_RelationshipPattern)) { + if (!($x1 instanceof oncie_NamedPatternPart)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $variable = $x1.$variable7; + $x1 = new oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2; + $x1.$_0208 = $variable; + return $x1; } - return $default; + $x1 = $x1; + $maybeVariable = $x1.$variable5; + $labelExpression = $x1.$labelExpression6; + $maybeProperties = $x1.$properties5; + $x1 = new oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1; + $x1.$_0758 = $this; + $x1.$_1253 = $maybeVariable; + $x1.$_284 = $maybeProperties; + $x1.$_326 = $labelExpression; + return $x1; }, -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$returnItems3.$includeExisting0); +onciu_RewritableJavascript$PROXY$9_260 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_260_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; }, -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1_apply = (var$0, var$1) => { - return (var$1.$returnItems3.$items0.$map(new oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0)).$toList(); +onciu_RewritableJavascript$PROXY$9_261 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_261_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; }, -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2_apply = var$0 => { - s_package$_$callClinit(); - s_package$_List(s_package$_MODULE$); - return sci_Nil$_MODULE$; +onciu_RewritableJavascript$PROXY$9_262 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_262_numParameters = var$1 => { + return (jl_Integer_valueOf(7)).$value4; }, -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_0 = $rt_classWithoutFields(), -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_0_apply = var$0 => { - onciap_Prettifier$_$callClinit(); - return $rt_s(7793); +onciu_RewritableJavascript$PROXY$9_263 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_263_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; }, -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_1 = $rt_classWithoutFields(), -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_1_apply = var$0 => { - onciap_Prettifier$_$callClinit(); - return $rt_s(7793); +onciu_RewritableJavascript$PROXY$9_264 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_264_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; }, -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_2 = $rt_classWithoutFields(), -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_2_apply = (var$0, var$1) => { - onciap_Prettifier$_$callClinit(); - return var$1.$asCanonicalStringVal(); +onciu_RewritableJavascript$PROXY$9_265 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_265_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_0 = $rt_classWithoutFields(), -onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_0_apply = var$0 => { - onciap_Prettifier$_$callClinit(); - return $rt_s(4); +onciu_RewritableJavascript$PROXY$9_266 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_266_numParameters = var$1 => { + return (jl_Integer_valueOf(2)).$value4; }, -onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_1 = $rt_classWithoutFields(), -onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_1_apply = (var$0, var$1) => { - onciap_Prettifier$_$callClinit(); - return var$1.$asCanonicalStringVal(); +onciu_RewritableJavascript$PROXY$9_267 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_267_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; }, -onciu_NonEmptyList$$from$lambda$_3_0 = $rt_classWithoutFields(), -onciu_NonEmptyList$$from$lambda$_3_0_apply = var$0 => { - let var$1; - var$1 = new jl_IllegalArgumentException; - jl_Throwable__init_0(var$1, $rt_s(6016)); - $rt_throw(var$1); +onciu_RewritableJavascript$PROXY$9_268 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_268_numParameters = var$1 => { + return (jl_Integer_valueOf(6)).$value4; }, -onciu_RewritableJavascript$PROXY$7_703 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_703_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +onciu_RewritableJavascript$PROXY$11_260 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_260_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciu_RewritableJavascript$PROXY$7_705 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_705_copyConstructor = (var$1, var$2, var$3) => { - var$3 = var$3.data; - return oncie_ExplicitParameter_copy(var$2, var$3[0], var$3[1], var$3[2], var$3[3]); +onciu_RewritableJavascript$PROXY$11_261 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_261_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciu_RewritableJavascript$PROXY$7_706 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$7_706_copyConstructor = (var$1, var$2, var$3) => { - return oncia_Statements__init_0(var$3.data[0]); +onciu_RewritableJavascript$PROXY$11_262 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_262_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciu_RewritableJavascript$PROXY$9_276 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_276_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +onciu_RewritableJavascript$PROXY$11_263 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_263_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciu_RewritableJavascript$PROXY$9_277 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_277_numParameters = var$1 => { - return (jl_Integer_valueOf(4)).$value4; +onciu_RewritableJavascript$PROXY$11_264 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_264_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -onciu_RewritableJavascript$PROXY$11_276 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_276_lastParamIsPosition = var$1 => { +onciu_RewritableJavascript$PROXY$11_265 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_265_lastParamIsPosition = var$1 => { return (jl_Boolean_valueOf(1)).$value3; }, -onciu_RewritableJavascript$PROXY$11_277 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_277_lastParamIsPosition = var$1 => { +onciu_RewritableJavascript$PROXY$11_266 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_266_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_267 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_267_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_268 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_268_lastParamIsPosition = var$1 => { return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$7_716 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_716_copyConstructor = (var$1, var$2, var$3) => { + var$3 = var$3.data; + return oncie_VariableGrouping_copy(var$2, var$3[0], var$3[1], var$3[2]); +}, +oncias_SemanticPatternCheck = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_732 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_732_copyConstructor = (var$1, var$2, var$3) => { + return oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_(var$3.data[0]); +}, +onciu_RewritableJavascript$PROXY$7_733 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$7_733_copyConstructor = (var$1, var$2, var$3) => { + return oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_(var$3.data[0]); }; -function oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_68_0() { +function oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_73_0() { jl_Object.call(this); - this.$_0190 = null; + this.$_0514 = null; } -let oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_68_0_apply = (var$0, var$1) => { +let oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_73_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0190; + var$2 = var$0.$_0514; oncias_SemanticCheck$_$callClinit(); var$3 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_newBaseScope(var$1.$state)); - var$4 = new oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_89_0; - var$4.$_097 = var$2; - var$4.$_140 = var$1; + var$4 = new oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_94_0; + var$4.$_0157 = var$2; + var$4.$_154 = var$1; return oncias_SemanticCheck_flatMap$(var$3, var$4); +}; +function oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0555 = null; +} +let oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0555; + var$3 = new onciu_Foldable$SkipChildren; + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + onciu_Foldable$SkipChildren__init_0(var$3, var$1.$chain(oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6758), var$2.$position42)))); + return var$3; +}; +function oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1() { + jl_Object.call(this); + this.$_01077 = null; +} +let oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_01077; + var$3 = new onciu_Foldable$SkipChildren; + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + onciu_Foldable$SkipChildren__init_0(var$3, var$1.$chain(oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6759), var$2.$position10)))); + return var$3; +}; +function oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2() { + jl_Object.call(this); + this.$_0439 = null; +} +let oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0439; + var$3 = new onciu_Foldable$SkipChildren; + var$4 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + onciu_Foldable$SkipChildren__init_0(var$3, var$1.$chain(oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6760), var$2.$position8)))); + return var$3; }, -ju_HashMap$ValueIterator = $rt_classWithoutFields(ju_HashMap$AbstractMapIterator), -ju_HashMap$ValueIterator_next = $this => { - ju_HashMap$AbstractMapIterator_makeNext($this); - return $this.$currentEntry.$value9; +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); +}; +function onciu_Foldable$Folder$$anonfun$treeCollect$1() { + sr_AbstractPartialFunction.call(this); + this.$f$1 = null; +} +let onciu_Foldable$Folder$$anonfun$treeCollect$1_applyOrElse = ($this, $x1, $default) => { + if (!$this.$f$1.$isDefinedAt($x1)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $default = new onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0; + $default.$_0566 = $this; + $default.$_1193 = $x1; + return $default; }, -oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0 = $rt_classWithoutFields(), -oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$containsGpmSpecificLabelExpression()); +}, +oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = new oncil_NodeLabels$KnownLabels; - s_Predef$_$callClinit(); - var$3 = s_Predef$_Set(s_Predef$_MODULE$); - var$4 = sr_ScalaRunTime$_MODULE$; - var$5 = $rt_createArray(jl_String, 1); - var$5.data[0] = var$1; - var$2.$labelNames = var$3.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); - return var$2; + var$2 = oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$ReadWrite$2(var$1.$$outer1, var$1.$ReadWrite$module$1); + return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_copy(var$1, var$1.$readPartitions, var$1.$writePartitions, var$2)); }, -oncil_NodeLabels = $rt_classWithoutFields(0), -oncil_NodeLabels$SomeUnknownLabels$ = $rt_classWithoutFields(), -oncil_NodeLabels$SomeUnknownLabels$_MODULE$ = null, -oncil_NodeLabels$SomeUnknownLabels$__clinit_ = () => { - oncil_NodeLabels$SomeUnknownLabels$_MODULE$ = new oncil_NodeLabels$SomeUnknownLabels$; +oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$Write$2(var$1.$$outer1, var$1.$Write$module$1); + return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_copy(var$1, var$1.$readPartitions, var$1.$writePartitions, var$2)); }, -oncil_NodeLabels$SomeUnknownLabels$_productArity = $this => { - return 0; +oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_inReadContext(var$1)); +}; +function oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_3() { + jl_Object.call(this); + this.$_0260 = null; +} +let oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_sortLabelExpressionIntoPartition(var$1, var$0.$_0260, 1)); +}; +function oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_4() { + let a = this; jl_Object.call(a); + a.$_0734 = null; + a.$_1246 = null; + a.$_282 = null; +} +let oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0734; + var$3 = var$0.$_1246; + var$4 = var$0.$_282; + var$3 = (oncias_SemanticState_expressionType(var$2.$state$11, var$3)).$specified; + oncius_package$_$callClinit(); + var$2 = oncius_NodeType_invariant(oncius_package$_CTNode(oncius_package$_MODULE$)); + if (var$3 !== null) { + if (!oncius_TypeSpec_equals(var$3, var$2)) + break b; + else + break c; + } + if (var$2 !== null) + break b; + } + var$5 = 1; + break a; + } + var$5 = 0; + } + var$3 = new sci_$colon$colon; + var$6 = new oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0; + var$2 = new sci_$colon$colon; + var$7 = new oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1; + var$7.$_01101 = var$4; + var$7.$_1374 = var$5; + sci_$colon$colon__init_0(var$2, var$7, sci_Nil$_MODULE$); + sci_$colon$colon__init_0(var$3, var$6, var$2); + return onciu_Foldable$SkipChildren__init_(sci_List_foldLeft(var$3, var$1, new s_Function$$$anonfun$chain$1$lambda$_17_0)); +}; +function oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_5() { + jl_Object.call(this); + this.$_0214 = null; +} +let oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { + return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_sortLabelExpressionIntoPartition(var$1, var$0.$_0214, 0)); +}; +function oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0454 = null; +} +let oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0454; + return onciu_Foldable$TraverseChildren__init_(var$1.$appended(var$2)); }, -oncil_NodeLabels$SomeUnknownLabels$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); +oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); }, -oncil_NodeLabels$SomeUnknownLabels$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + sr_BoxesRunTime_unboxToBoolean(var$1); + return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(1)); }, -oncil_NodeLabels$SomeUnknownLabels$_hashCode = $this => { - return (-592101323); +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2; + var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); + return !var$2 ? onciu_Foldable$TraverseChildren__init_(jl_Boolean_valueOf(var$2)) : onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); }, -oncil_NodeLabels$SomeUnknownLabels$_toString = $this => { - return $rt_s(7794); +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2; + var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); + return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); +}, +oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + sr_BoxesRunTime_unboxToBoolean(var$1); + return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(1)); +}, +oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2; + var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); + return !var$2 ? onciu_Foldable$TraverseChildren__init_(jl_Boolean_valueOf(var$2)) : onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); +}, +oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + let var$2; + var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); + return !var$2 ? onciu_Foldable$TraverseChildren__init_(jl_Boolean_valueOf(var$2)) : onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); +}, +oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + sr_BoxesRunTime_unboxToBoolean(var$1); + return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(1)); +}; +function oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_79_0() { + jl_Object.call(this); + this.$_0364 = null; +} +let oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_79_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0364; + return oncias_SemanticAnalysisTooling_error$(var$1, $rt_s(6761), var$1.$wherePos.$get1()); +}; +function jnci_BufferedEncoder$Controller() { + let a = this; jl_Object.call(a); + a.$in0 = null; + a.$out3 = null; + a.$inPosition0 = 0; + a.$outPosition0 = 0; +} +let jnci_BufferedEncoder$Controller_hasMoreOutput = ($this, $sz) => { + return jn_Buffer_remaining($this.$out3) < $sz ? 0 : 1; }, otcir_Flags = $rt_classWithoutFields(), otcir_Flags_getModifiers = ($flags, $access) => { @@ -347158,74 +273532,97 @@ otcir_Flags_getModifiers = ($flags, $access) => { $access = $flags >>> 6 | 0; return $modifiers | $access & 8 | $flags << 2 & 16 | $access & 32 | ($flags >>> 8 | 0) & 64 | ($flags >>> 5 | 0) & 128 | $flags & 256 | $flags << 8 & 512 | $flags << 10 & 1024 | $flags << 1 & 2048; }; -function oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0785 = null; -} -let oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0785; - var$3 = var$2.$name4; - return var$1.$updated0(var$3, sci_List_$colon$colon(var$1.$apply2(var$3), var$2)); -}; -function oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1() { +function onciap_DefaultPatternStringifier$apply$lambda$_7_0() { jl_Object.call(this); - this.$_0263 = null; + this.$_0810 = null; } -let oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultPatternStringifier$apply$lambda$_7_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0263; - var$3 = var$2.$name4; - return var$1.$updated0(var$3, sci_List_$colon$colon(var$1.$apply2(var$3), var$2)); + return onciap_DefaultPatternStringifier_stringifyPredicate(var$0.$_0810, var$1); }, -oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { +onciap_DefaultPatternStringifier$apply$lambda$_7_1 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_7_1_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - s_Predef$_$callClinit(); - return var$1; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 32); + jl_StringBuilder_append(var$2, var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0_apply0 = (var$0, var$1) => { - return var$1.$position13; -}; -function oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0() { +onciap_DefaultPatternStringifier$apply$lambda$_7_2 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_7_2_apply = var$0 => { + return $rt_s(4); +}, +onciap_DefaultPatternStringifier$apply$lambda$_7_3 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_7_3_apply = (var$0, var$1) => { + return var$1.$stringVal0; +}, +onciap_DefaultPatternStringifier$apply$lambda$_7_4 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_7_4_apply = var$0 => { + return $rt_s(4); +}, +onciap_DefaultPatternStringifier$apply$lambda$_7_5 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_7_5_apply = (var$0, var$1) => { + return var$1.$stringVal0; +}, +onciap_DefaultPatternStringifier$apply$lambda$_7_6 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_7_6_apply = var$0 => { + return $rt_s(4); +}, +jl_IllegalAccessException = $rt_classWithoutFields(jl_ReflectiveOperationException), +otcir_Converter = $rt_classWithoutFields(); +function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0() { let a = this; jl_Object.call(a); - a.$_0243 = null; - a.$_193 = null; + a.$_01100 = null; + a.$_1373 = null; + a.$_2123 = null; } -let oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; var$1 = var$1; - var$2 = var$0.$_0243; - var$3 = var$0.$_193; - if ($rt_isInstance(var$3, oncie_ExpressionWithComputedDependencies)) { - var$4 = var$3.$scopeDependencies(); - var$5 = new oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0; - var$5.$_0212 = var$2; - var$1 = sc_IterableOnceOps_foldLeft$(var$4, var$1, var$5); - } - return onciu_Foldable$TraverseChildrenNewAccForSiblings__init_0(oncie_Expression$TreeAcc_pushScope(var$1, var$3.$introducedVariables()), new oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1); + var$2 = var$0.$_01100; + var$3 = var$0.$_1373; + var$4 = var$0.$_2123; + var$5 = new onciu_Foldable$SkipChildren; + var$6 = new s_Tuple2; + var$7 = var$1.$_1(); + var$8 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0; + var$8.$_0840 = var$2; + s_Tuple2__init_0(var$6, var$7.$concat1(s_Option_filter(var$3, var$8)), (var$1.$_2()).$concat1(oncir_Deprecations$SemanticallyDeprecatedFeatures$_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1(var$4))); + onciu_Foldable$SkipChildren__init_0(var$5, var$6); + return var$5; }; -function oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1() { +function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_1() { let a = this; jl_Object.call(a); - a.$_0905 = null; - a.$_1315 = null; + a.$_0359 = null; + a.$_1128 = null; + a.$_246 = null; } -let oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3; +let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; var$1 = var$1; - var$2 = var$0.$_0905; - var$3 = var$0.$_1315; - return onciu_Foldable$TraverseChildren__init_(oncie_Expression_org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1(var$1, var$3, var$2.$variable$20)); + var$2 = var$0.$_0359; + var$3 = var$0.$_1128; + var$4 = var$0.$_246; + var$5 = new onciu_Foldable$SkipChildren; + var$6 = new s_Tuple2; + var$7 = var$1.$_1(); + var$8 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$3$lambda$_5_0; + var$8.$_01038 = var$2; + s_Tuple2__init_0(var$6, var$7.$concat1(s_Option_filter(var$3, var$8)), (var$1.$_2()).$concat1(oncir_Deprecations$SemanticallyDeprecatedFeatures$_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1(var$4))); + onciu_Foldable$SkipChildren__init_0(var$5, var$6); + return var$5; }; -function oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0() { +function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_2() { jl_Object.call(this); - this.$_0163 = null; + this.$_0869 = null; } -let oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isAssignableFrom0(var$0.$_0163)); +let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0869; + return onciu_Foldable$TraverseChildren__init_(s_Tuple2__init_((var$1.$_1()).$incl(var$2), var$1.$_2())); }, oncius_TypeSpec$equals$lambda$_38_0 = $rt_classWithoutFields(), oncius_TypeSpec$equals$lambda$_38_0_apply = (var$0, var$1) => { @@ -347237,296 +273634,368 @@ oncius_TypeSpec$equals$lambda$_38_1_apply = (var$0, var$1) => { }; function oncius_TypeSpec$equals$lambda$_38_2() { jl_Object.call(this); - this.$_01080 = null; + this.$_01059 = null; } let oncius_TypeSpec$equals$lambda$_38_2_apply = var$0 => { - return var$0.$_01080; + return var$0.$_01059; }; function oncius_TypeSpec$equals$lambda$_38_3() { jl_Object.call(this); - this.$_0708 = null; + this.$_0692 = null; +} +let oncius_TypeSpec$equals$lambda$_38_3_apply = var$0 => { + return var$0.$_0692; +}; +function jusi_LimitingIntStreamImpl$next$lambda$_1_0() { + let a = this; jl_Object.call(a); + a.$_01079 = null; + a.$_1366 = null; +} +let jusi_LimitingIntStreamImpl$next$lambda$_1_0_test = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_01079; + var$3 = var$0.$_1366; + var$4 = var$2.$remaining0; + var$2.$remaining0 = var$4 - 1 | 0; + return var$4 ? jusi_AllMatchConsumer_test(var$3, var$1) : 0; +}; +function jusi_SkippingIntStreamImpl$next$lambda$_1_0() { + jl_Object.call(this); + this.$_01034 = null; +} +let jusi_SkippingIntStreamImpl$next$lambda$_1_0_test = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_01034; + var$1 = var$2.$remaining1 - 1 | 0; + var$2.$remaining1 = var$1; + return var$1 <= 0 ? 0 : 1; +}; +function sci_LazyList$LazyIterator() { + sc_AbstractIterator.call(this); + this.$lazyList = null; } -let oncius_TypeSpec$equals$lambda$_38_3_apply = var$0 => { - return var$0.$_0708; +let sci_LazyList$LazyIterator_hasNext = $this => { + if (sci_LazyList_isEmpty($this.$lazyList)) + return 0; + return 1; }, -jl_IllegalAccessException = $rt_classWithoutFields(jl_ReflectiveOperationException), -otcir_Converter = $rt_classWithoutFields(); -function onciap_DefaultPatternStringifier$apply$lambda$_5_0() { +sci_LazyList$LazyIterator_next = $this => { + let $res; + if (sci_LazyList_isEmpty($this.$lazyList)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + $res = sci_LazyList_head($this.$lazyList); + $this.$lazyList = sci_LazyList_tail($this.$lazyList); + return $res; +}; +function onciap_DefaultPatternStringifier$apply$lambda$_3_0() { jl_Object.call(this); - this.$_0343 = null; + this.$_0143 = null; } -let onciap_DefaultPatternStringifier$apply$lambda$_5_0_apply = (var$0, var$1) => { +let onciap_DefaultPatternStringifier$apply$lambda$_3_0_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0343.$expr3, var$1); + return onciap_DefaultExpressionStringifier_apply(var$0.$_0143.$expr3, var$1); }; -function onciap_DefaultPatternStringifier$apply$lambda$_5_1() { +function onciap_DefaultPatternStringifier$apply$lambda$_3_1() { jl_Object.call(this); - this.$_0913 = null; + this.$_0679 = null; } -let onciap_DefaultPatternStringifier$apply$lambda$_5_1_apply = (var$0, var$1) => { +let onciap_DefaultPatternStringifier$apply$lambda$_3_1_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0913; - var$3 = !var$1.$containsIs() ? $rt_s(91) : $rt_s(441); + var$2 = var$0.$_0679; + var$3 = !var$1.$containsIs() ? $rt_s(92) : $rt_s(439); var$1 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$2.$expr3, var$1); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), var$1); return jl_AbstractStringBuilder_toString(var$2); }; -function onciap_DefaultPatternStringifier$apply$lambda$_5_2() { +function onciap_DefaultPatternStringifier$apply$lambda$_3_2() { jl_Object.call(this); - this.$_0584 = null; + this.$_04 = null; } -let onciap_DefaultPatternStringifier$apply$lambda$_5_2_apply = (var$0, var$1) => { +let onciap_DefaultPatternStringifier$apply$lambda$_3_2_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0584.$expr3, var$1); + return onciap_DefaultExpressionStringifier_apply(var$0.$_04.$expr3, var$1); }; -function onciap_DefaultPatternStringifier$apply$lambda$_5_3() { +function onciap_DefaultPatternStringifier$apply$lambda$_3_3() { jl_Object.call(this); - this.$_01028 = null; + this.$_0857 = null; } -let onciap_DefaultPatternStringifier$apply$lambda$_5_3_apply = (var$0, var$1) => { +let onciap_DefaultPatternStringifier$apply$lambda$_3_3_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_DefaultPatternStringifier_stringifyPredicate(var$0.$_01028, var$1); + return onciap_DefaultPatternStringifier_stringifyPredicate(var$0.$_0857, var$1); }, -onciap_DefaultPatternStringifier$apply$lambda$_5_4 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_5_4_apply = var$0 => { +onciap_DefaultPatternStringifier$apply$lambda$_3_4 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_3_4_apply = var$0 => { return $rt_s(4); -}, -onciap_DefaultPatternStringifier$apply$lambda$_5_5 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$apply$lambda$_5_5_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 91); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 93); - return jl_AbstractStringBuilder_toString(var$2); }; -function onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_0586 = null; - a.$_1201 = null; +function onciap_DefaultPatternStringifier$apply$lambda$_6_0() { + jl_Object.call(this); + this.$_0500 = null; } -let onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultPatternStringifier$apply$lambda$_6_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0586; - var$3 = var$0.$_1201; - return var$1.$appended(sr_AbstractPartialFunction_apply(var$2.$f$1, var$3)); + return onciap_DefaultPatternStringifier_apply0(var$0.$_0500, var$1); }; -function sc_MapView$FilterKeys$iterator$lambda$_0_0() { +function onciap_DefaultPatternStringifier$apply$lambda$_8_0() { jl_Object.call(this); - this.$_01207 = null; + this.$_0986 = null; } -let sc_MapView$FilterKeys$iterator$lambda$_0_0_apply = (var$0, var$1) => { +let onciap_DefaultPatternStringifier$apply$lambda$_8_0_apply = (var$0, var$1) => { var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(null)); - var$1 = var$1.$_1(); - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(jl_Boolean_valueOf(!jl_String_equalsIgnoreCase(var$1, $rt_s(4914)) && !jl_String_equalsIgnoreCase(var$1, $rt_s(7795)) ? 1 : 0))); + return onciap_DefaultPatternStringifier_stringifyPredicate(var$0.$_0986, var$1); +}, +oncifp_ProcedureSignature$outputFields$lambda$_29_0 = $rt_classWithoutFields(), +oncifp_ProcedureSignature$outputFields$lambda$_29_0_apply = var$0 => { + s_package$_$callClinit(); + return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); }; -function onciap_Prettifier$propertiesMapToString$lambda$_32_0() { +function onciap_DefaultExpressionStringifier$apply$lambda$_8_0() { jl_Object.call(this); - this.$_0311 = null; + this.$_01018 = null; } -let onciap_Prettifier$propertiesMapToString$lambda$_32_0_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultExpressionStringifier$apply$lambda$_8_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0311; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - var$3 = onciap_Prettifier_backtick(var$2, var$3); - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(9)), var$1); - return jl_AbstractStringBuilder_toString(var$2); + return onciap_DefaultExpressionStringifier_backtick(var$0.$_01018, var$1); +}, +oncie_Expression$$anonfun$findAggregate$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncie_Expression$$anonfun$findAggregate$1_applyOrElse = ($this, $x, $default) => { + a: { + $x = $x; + if ($x !== null) { + oncie_IsAggregate$_$callClinit(); + if (!s_Option_isEmpty(oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x))) { + $x = jl_Boolean_valueOf(1); + break a; + } + } + $x = s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x); + } + return $x; }; -function oncie_NodePattern$mapExpressions$lambda$_12_0() { +function sci_WrappedString() { + sci_AbstractSeq.call(this); + this.$scala$collection$immutable$WrappedString$$self = null; +} +let sci_WrappedString_iterator = $this => { + return sc_IndexedSeqOps_iterator$($this); +}, +sci_WrappedString_knownSize = $this => { + return $this.$length(); +}, +sci_WrappedString_length = $this => { + return $this.$scala$collection$immutable$WrappedString$$self.$nativeString.length; +}, +sci_WrappedString_view = $this => { + let var$1; + var$1 = new sc_StringView; + var$1.$s1 = $this.$scala$collection$immutable$WrappedString$$self; + return var$1; +}; +function oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_75_0() { jl_Object.call(this); - this.$_0103 = null; + this.$_01026 = null; } -let oncie_NodePattern$mapExpressions$lambda$_12_0_apply = (var$0, var$1) => { - let var$2; +let oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_75_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0103; - return !(var$1 instanceof oncie_MapExpression) ? oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1) : oncie_MapExpression_mapExpressions(var$1, var$2); + var$2 = var$0.$_01026; + oncias_SemanticExpressionCheck$_$callClinit(); + var$3 = oncias_SemanticExpressionCheck$_check(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Simple$_MODULE$, var$2.$importedVariables); + var$4 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_102_0; + var$4.$_0154 = var$2; + var$4.$_152 = var$1; + return var$3.$flatMap3(var$4); +}, +oncias_SymbolUse$ = $rt_classWithoutFields(), +oncias_SymbolUse$_MODULE$ = null, +oncias_SymbolUse$__clinit_ = () => { + oncias_SymbolUse$_MODULE$ = new oncias_SymbolUse$; +}, +oncias_SymbolUse$_apply = ($this, $variable) => { + let var$2; + var$2 = new oncias_SymbolUse; + onciu_Ref$_$callClinit(); + var$2.$use = onciu_Ref$_apply(onciu_Ref$_MODULE$, $variable); + return var$2; }; -function oncie_QuantifiedPath$mapExpressions$lambda$_14_0() { +function oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0() { jl_Object.call(this); - this.$_0468 = null; + this.$_0754 = null; } -let oncie_QuantifiedPath$mapExpressions$lambda$_14_0_apply = (var$0, var$1) => { +let oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0_apply = (var$0, var$1) => { let var$2; + var$2 = var$0.$_0754; + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticExpressionCheck$_MODULE$, var$2.$expression0()), var$1); + oncius_package$_$callClinit(); + var$2 = oncius_package$_MODULE$; + return oncius_TypeSpec_unwrapLists(oncius_TypeSpec_constrain(var$1, oncius_package$_CTList(var$2, oncius_package$_CTAny(var$2)))); +}; +function oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_77_0() { + jl_Object.call(this); + this.$_0903 = null; +} +let oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_77_0_apply = (var$0, var$1) => { + return oncia_SingleQuery_checkClauses(var$0.$_0903, var$1, s_None$_MODULE$); +}, +oncia_SingleQuery$containsUpdates$lambda$_64_0 = $rt_classWithoutFields(), +oncia_SingleQuery$containsUpdates$lambda$_64_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0468; - return oncie_VariableGrouping_copy(var$1, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1.$singleton), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1.$group0), var$1.$position139); + return jl_Boolean_valueOf($rt_isInstance(var$1, oncia_SubqueryCall) ? (var$1.$innerQuery()).$containsUpdates() : !(var$1 instanceof oncia_CallClause) ? (!$rt_isInstance(var$1, oncia_UpdateClause) ? 0 : 1) : var$1.$containsNoUpdates() ? 0 : 1); +}, +oncias_SemanticState$expressionType$lambda$_48_0 = $rt_classWithoutFields(), +oncias_SemanticState$expressionType$lambda$_48_0_apply = var$0 => { + let var$1; + oncias_ExpressionTypeInfo$_$callClinit(); + var$1 = oncias_ExpressionTypeInfo$_MODULE$; + oncius_TypeSpec$_$callClinit(); + return oncias_ExpressionTypeInfo$_apply(var$1, oncius_TypeSpec$_all(oncius_TypeSpec$_MODULE$), s_None$_MODULE$); +}, +oncias_ExpressionTypeInfo$ = $rt_classWithoutFields(), +oncias_ExpressionTypeInfo$_MODULE$ = null, +oncias_ExpressionTypeInfo$_$callClinit = () => { + oncias_ExpressionTypeInfo$_$callClinit = $rt_eraseClinit(oncias_ExpressionTypeInfo$); + oncias_ExpressionTypeInfo$__clinit_(); +}, +oncias_ExpressionTypeInfo$__clinit_ = () => { + let var$1; + var$1 = new oncias_ExpressionTypeInfo$; + oncias_ExpressionTypeInfo$_$callClinit(); + oncias_ExpressionTypeInfo$_MODULE$ = var$1; +}, +oncias_ExpressionTypeInfo$_apply = ($this, $specified, $expected) => { + let var$3; + var$3 = new oncias_ExpressionTypeInfo; + var$3.$specified = $specified; + var$3.$expected1 = $expected; + return var$3; +}, +oncie_ExpressionTypeSignature$getSignatureAsString$lambda$_11_0 = $rt_classWithoutFields(), +oncie_ExpressionTypeSignature$getSignatureAsString$lambda$_11_0_apply = (var$0, var$1) => { + return var$1.$normalizedCypherTypeString(); }; -function oncie_PathConcatenation$mapExpressions$lambda$_9_0() { +function oncie_FunctionTypeSignature$getSignatureAsString$lambda$_32_0() { jl_Object.call(this); - this.$_0463 = null; + this.$_0299 = null; } -let oncie_PathConcatenation$mapExpressions$lambda$_9_0_apply = (var$0, var$1) => { - return var$1.$mapExpressions(var$0.$_0463); +let oncie_FunctionTypeSignature$getSignatureAsString$lambda$_32_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0299; + var$2 = var$1.$function3.$name(); + var$3 = sc_AbstractIterable_mkString((sc_StrictOptimizedIterableOps_zip$(var$1.$names5, (var$1.$argumentTypes0.$map(new oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_0)).$concat(var$1.$optionalTypes))).$map(new oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_2), $rt_s(45)); + var$1 = var$1.$outputType0.$normalizedCypherTypeString(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$2 = jl_StringBuilder_append(var$4, var$2); + jl_AbstractStringBuilder_append0(var$2, 40); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(693)), var$1); + return jl_AbstractStringBuilder_toString(var$4); }, -oncifp_ProcedureSignature$outputFields$lambda$_29_0 = $rt_classWithoutFields(), -oncifp_ProcedureSignature$outputFields$lambda$_29_0_apply = var$0 => { - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return onciu_Foldable$SkipChildren__init_(var$1); }; -function oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_70_0() { +function oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1() { jl_Object.call(this); - this.$_090 = null; + this.$_0139 = null; } -let oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_70_0_apply = (var$0, var$1) => { +let oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_090; - oncias_SemanticExpressionCheck$_$callClinit(); - var$3 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Simple$_$callClinit(); - var$3 = oncias_SemanticExpressionCheck$_check(var$3, oncie_Expression$SemanticContext$Simple$_MODULE$, var$2.$importedVariables); - var$4 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_97_0; - var$4.$_0522 = var$2; - var$4.$_1183 = var$1; - return var$3.$flatMap3(var$4); + var$2 = var$0.$_0139; + var$3 = new onciu_Foldable$SkipChildren; + var$4 = new oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0; + var$4.$_01137 = var$2; + onciu_Foldable$SkipChildren__init_0(var$3, oncie_Expression$TreeAcc_mapData(var$1, var$4)); + return var$3; }, -oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2; +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$ReadWrite$2(var$1.$$outer1, var$1.$ReadWrite$module$1); - return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_copy(var$1, var$1.$readPartitions, var$1.$writePartitions, var$2)); + return onciu_Foldable$TraverseChildren__init_(var$1.$foundSubquery()); }, -oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2; +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = oncia_Clause_org$neo4j$cypher$internal$ast$Clause$$Write$2(var$1.$$outer1, var$1.$Write$module$1); - return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_copy(var$1, var$1.$readPartitions, var$1.$writePartitions, var$2)); + return onciu_Foldable$SkipChildren__init_(var$1.$foundCrossReference()); }, -oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_inReadContext(var$1)); -}; -function oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_3() { - jl_Object.call(this); - this.$_0276 = null; -} -let oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_sortLabelExpressionIntoPartition(var$1, var$0.$_0276, 1)); +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { + return onciu_Foldable$TraverseChildren__init_(var$1); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + var$1 = var$1; + return onciu_Foldable$SkipChildren__init_(var$1.$foundSubquery()); }; -function oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_4() { +function oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0() { let a = this; jl_Object.call(a); - a.$_0748 = null; - a.$_1254 = null; - a.$_283 = null; + a.$_0235 = null; + a.$_189 = null; + a.$_232 = null; + a.$_312 = null; } -let oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0748; - var$3 = var$0.$_1254; - var$4 = var$0.$_283; - var$3 = (oncias_SemanticState_expressionType(var$2.$state$10, var$3)).$specified; - oncius_package$_$callClinit(); - var$2 = oncius_NodeType_invariant(oncius_package$_CTNode(oncius_package$_MODULE$)); - if (var$3 !== null) { - if (!oncius_TypeSpec_equals(var$3, var$2)) - break b; - else - break c; - } - if (var$2 !== null) - break b; - } - var$5 = 1; - break a; - } - var$5 = 0; - } - var$3 = new sci_$colon$colon; - var$6 = new oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0; - var$2 = new sci_$colon$colon; - var$7 = new oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1; - var$7.$_01125 = var$4; - var$7.$_1376 = var$5; - sci_$colon$colon__init_0(var$2, var$7, sci_Nil$_MODULE$); - sci_$colon$colon__init_0(var$3, var$6, var$2); - return onciu_Foldable$SkipChildren__init_(sci_List_foldLeft(var$3, var$1, new s_Function$$$anonfun$chain$1$lambda$_17_0)); +let oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$1 = var$1; + var$2 = var$0.$_0235; + var$3 = var$0.$_189; + var$4 = var$0.$_232; + var$5 = var$0.$_312; + var$6 = new onciu_Foldable$SkipChildren; + var$7 = new s_Tuple2; + var$8 = var$1.$_1(); + var$9 = new oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0; + var$9.$_0432 = var$2; + s_Tuple2__init_0(var$7, var$8.$concat1(s_Option_filter(var$3, var$9)), ((var$1.$_2()).$concat1(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1(var$4))).$concat1(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findDynamicVariables$1(var$5))); + onciu_Foldable$SkipChildren__init_0(var$6, var$7); + return var$6; }; -function oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_5() { - jl_Object.call(this); - this.$_0223 = null; +function oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_0758 = null; + a.$_1253 = null; + a.$_284 = null; + a.$_326 = null; } -let oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { - return onciu_Foldable$TraverseChildren__init_(oncia_Clause$Acc$1_sortLabelExpressionIntoPartition(var$1, var$0.$_0223, 0)); +let oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$1 = var$1; + var$2 = var$0.$_0758; + var$3 = var$0.$_1253; + var$4 = var$0.$_284; + var$5 = var$0.$_326; + var$6 = new onciu_Foldable$SkipChildren; + var$7 = new s_Tuple2; + var$8 = var$1.$_1(); + var$9 = new oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0; + var$9.$_0620 = var$2; + s_Tuple2__init_0(var$7, var$8.$concat1(s_Option_filter(var$3, var$9)), ((var$1.$_2()).$concat1(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1(var$4))).$concat1(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findDynamicVariables$1(var$5))); + onciu_Foldable$SkipChildren__init_0(var$6, var$7); + return var$6; }; -function onciap_DefaultPatternStringifier$apply$lambda$_0_0() { +function oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2() { jl_Object.call(this); - this.$_0807 = null; + this.$_0208 = null; } -let onciap_DefaultPatternStringifier$apply$lambda$_0_0_apply = (var$0, var$1) => { +let oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return onciap_DefaultPatternStringifier_apply(var$0.$_0807, var$1); -}, -jnci_Iso8859Decoder = $rt_classWithoutFields(jnci_BufferedDecoder), -jnci_Iso8859Decoder_arrayDecode = ($this, $inArray, $inPos, $inSize, $outArray, $outPos, $outSize, $controller) => { - let $result, var$9, var$10, var$11, $b, var$13; - $result = null; - while ($inPos < $inSize && $outPos < $outSize) { - var$9 = $inArray.data; - var$10 = $outArray.data; - var$11 = $inPos + 1 | 0; - $b = var$9[$inPos] & 255; - var$13 = $outPos + 1 | 0; - var$10[$outPos] = $b & 65535; - $inPos = var$11; - $outPos = var$13; - } - $controller.$inPosition = $inPos; - $controller.$outPosition = $outPos; - return $result; -}; -function ju_IdentityHashMap$HashEntry() { - let a = this; ju_MapEntry.call(a); - a.$origKeyHash0 = 0; - a.$next12 = null; -} -function jnci_BufferedDecoder$Controller() { - let a = this; jl_Object.call(a); - a.$in = null; - a.$out2 = null; - a.$inPosition = 0; - a.$outPosition = 0; -} -let jnci_BufferedDecoder$Controller_hasMoreInput = ($this, $sz) => { - return jn_Buffer_remaining($this.$in) < $sz ? 0 : 1; -}, -oncias_Symbol$toString$lambda$_14_0 = $rt_classWithoutFields(), -oncias_Symbol$toString$lambda$_14_0_apply = (var$0, var$1) => { - return oncias_SymbolUse_uniqueName(var$1); + var$2 = var$0.$_0208; + return onciu_Foldable$TraverseChildren__init_(s_Tuple2__init_((var$1.$_1()).$incl(var$2), var$1.$_2())); }; -function oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_0() { +function oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0() { jl_Object.call(this); - this.$_0465 = null; + this.$_01107 = null; } -let oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { +let oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0465; - return onciu_Foldable$TraverseChildren__init_(var$1.$appended(var$2)); -}, -oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); + var$2 = var$0.$_01107; + return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function sci_LazyList$SlidingIterator() { let a = this; sc_AbstractIterator.call(a); @@ -347534,11 +274003,11 @@ function sci_LazyList$SlidingIterator() { a.$size11 = 0; a.$step4 = 0; a.$minLen = 0; - a.$first5 = 0; + a.$first4 = 0; } let sci_LazyList$SlidingIterator_hasNext = $this => { let var$1, var$2, var$3; - if ($this.$first5) { + if ($this.$first4) { if (sci_LazyList_isEmpty($this.$lazyList0)) return 0; return 1; @@ -347563,7 +274032,7 @@ sci_LazyList$SlidingIterator_next = $this => { if (!sci_LazyList$SlidingIterator_hasNext($this)) var$1 = sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); else { - $this.$first5 = 0; + $this.$first4 = 0; var$1 = $this.$lazyList0; $this.$lazyList0 = sci_LazyList_drop(var$1, $this.$step4); var$2 = $this.$size11; @@ -347575,8 +274044,8 @@ sci_LazyList$SlidingIterator_next = $this => { var$1 = sci_LazyList$_empty(sci_LazyList$_MODULE$); } else { var$3 = new sci_LazyList$take$lambda$_89_0; - var$3.$_0199 = var$1; - var$3.$_177 = var$2; + var$3.$_0192 = var$1; + var$3.$_170 = var$2; var$1 = sci_LazyList__init_(var$3); } } @@ -347587,331 +274056,34 @@ sci_LazyList$SlidingIterator__init_0 = ($this, $lazyList, $size, $step) => { $this.$size11 = $size; $this.$step4 = $step; $this.$minLen = jl_Math_max($size - $step | 0, 0); - $this.$first5 = 1; + $this.$first4 = 1; }, sci_LazyList$SlidingIterator__init_ = (var_0, var_1, var_2) => { let var_3 = new sci_LazyList$SlidingIterator(); sci_LazyList$SlidingIterator__init_0(var_3, var_0, var_1, var_2); return var_3; -}, -oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - sr_BoxesRunTime_unboxToBoolean(var$1); - return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(1)); -}, -oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2; - var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); - return !var$2 ? onciu_Foldable$TraverseChildren__init_(jl_Boolean_valueOf(var$2)) : onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); -}, -oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_3 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { - let var$2; - var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); - return !var$2 ? onciu_Foldable$TraverseChildren__init_(jl_Boolean_valueOf(var$2)) : onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); -}, -oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - sr_BoxesRunTime_unboxToBoolean(var$1); - return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(1)); -}, -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - sr_BoxesRunTime_unboxToBoolean(var$1); - return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(1)); -}, -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2; - var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); - return !var$2 ? onciu_Foldable$TraverseChildren__init_(jl_Boolean_valueOf(var$2)) : onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); -}, -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2; - var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); - return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); -}; -function oncipl_ThinCypherToken() { - let a = this; jl_Object.call(a); - a.$source0 = null; - a.$getType1 = 0; - a.$getChannel0 = 0; - a.$getStartIndex0 = 0; - a.$getStopIndex0 = 0; - a.$getLine1 = 0; - a.$getCharPositionInLine0 = 0; -} -let oncipl_ThinCypherToken_position = $this => { - return oncipl_CypherToken_position$($this); -}, -oncipl_ThinCypherToken_inputOffset = ($this, $parserOffset) => { - return oncipl_CypherToken_inputOffset$($this, $parserOffset); -}, -oncipl_ThinCypherToken_getType = $this => { - return $this.$getType1; -}, -oncipl_ThinCypherToken_getChannel = $this => { - return $this.$getChannel0; -}, -oncipl_ThinCypherToken_getStartIndex = $this => { - return $this.$getStartIndex0; -}, -oncipl_ThinCypherToken_getStopIndex = $this => { - return $this.$getStopIndex0; -}, -oncipl_ThinCypherToken_getLine = $this => { - return $this.$getLine1; -}, -oncipl_ThinCypherToken_getCharPositionInLine = $this => { - return $this.$getCharPositionInLine0; -}, -oncipl_ThinCypherToken_getText = $this => { - let $input, var$2; - $input = oncipl_ThinCypherToken_getInputStream($this); - if ($input === null) - return null; - var$2 = $this.$getStopIndex0; - if (var$2 >= $input.$size4) - return $rt_s(4015); - return $input.$getText0(oavrm_Interval_of($this.$getStartIndex0, var$2)); -}, -oncipl_ThinCypherToken_getTokenSource = $this => { - return $this.$source0.$a7; -}, -oncipl_ThinCypherToken_getInputStream = $this => { - return $this.$source0.$b0; -}, -oncipl_ThinCypherToken_getTokenIndex = $this => { - return (-1); -}, -oncipl_ThinCypherToken_getSymbol = $this => { - return $this; -}, -oncipl_ThinCypherToken_setParent = ($this, $parent) => { - return; -}; -function oavr_CommonToken() { - let a = this; jl_Object.call(a); - a.$type5 = 0; - a.$line4 = 0; - a.$charPositionInLine0 = 0; - a.$channel0 = 0; - a.$source = null; - a.$text0 = null; - a.$index6 = 0; - a.$start7 = 0; - a.$stop0 = 0; -} -let oavr_CommonToken_EMPTY_SOURCE = null, -oavr_CommonToken__init_ = ($this, $source, $type, $channel, $start, $stop) => { - let var$6; - $this.$charPositionInLine0 = (-1); - $this.$channel0 = 0; - $this.$index6 = (-1); - $this.$source = $source; - $this.$type5 = $type; - $this.$channel0 = $channel; - $this.$start7 = $start; - $this.$stop0 = $stop; - var$6 = $source.$a7; - if (var$6 !== null) { - $this.$line4 = oavr_Lexer_getLine(var$6); - $this.$charPositionInLine0 = oavr_Lexer_getCharPositionInLine($source.$a7); - } -}, -oavr_CommonToken__init_0 = (var_0, var_1, var_2, var_3, var_4) => { - let var_5 = new oavr_CommonToken(); - oavr_CommonToken__init_(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; -}, -oavr_CommonToken_getType = $this => { - return $this.$type5; -}, -oavr_CommonToken_getText = $this => { - let $input, $n, var$3, var$4; - $input = $this.$text0; - if ($input !== null) - return $input; - $input = oavr_CommonToken_getInputStream($this); - if ($input === null) - return null; - $n = $input.$size4; - var$3 = $this.$start7; - if (var$3 < $n) { - var$4 = $this.$stop0; - if (var$4 < $n) - return $input.$getText0(oavrm_Interval_of(var$3, var$4)); - } - return $rt_s(4015); -}, -oavr_CommonToken_getLine = $this => { - return $this.$line4; -}, -oavr_CommonToken_getCharPositionInLine = $this => { - return $this.$charPositionInLine0; -}, -oavr_CommonToken_getChannel = $this => { - return $this.$channel0; -}, -oavr_CommonToken_getStartIndex = $this => { - return $this.$start7; -}, -oavr_CommonToken_getStopIndex = $this => { - return $this.$stop0; -}, -oavr_CommonToken_getTokenIndex = $this => { - return $this.$index6; -}, -oavr_CommonToken_setTokenIndex = ($this, $index) => { - $this.$index6 = $index; -}, -oavr_CommonToken_getTokenSource = $this => { - return $this.$source.$a7; -}, -oavr_CommonToken_getInputStream = $this => { - return $this.$source.$b0; -}, -oavr_CommonToken_toString0 = $this => { - return oavr_CommonToken_toString($this, null); -}, -oavr_CommonToken_toString = ($this, $r) => { - let $channelStr, $txt, var$4, $typeString; - $channelStr = $rt_s(4); - if ($this.$channel0 > 0) { - $channelStr = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($channelStr); - jl_AbstractStringBuilder_append($channelStr, $rt_s(7796)); - $channelStr = jl_AbstractStringBuilder_toString(jl_StringBuilder_append0($channelStr, $this.$channel0)); - } - $txt = oavr_CommonToken_getText($this); - var$4 = $txt === null ? $rt_s(7797) : jl_String_replace(jl_String_replace(jl_String_replace($txt, $rt_s(93), $rt_s(4417)), $rt_s(4448), $rt_s(4419)), $rt_s(4449), $rt_s(4416)); - $typeString = jl_String_valueOf0($this.$type5); - if ($r !== null) - $typeString = ($r.$getVocabulary()).$getDisplayName($this.$type5); - $r = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($r); - jl_AbstractStringBuilder_append($r, $rt_s(7798)); - $r = jl_StringBuilder_append0($r, $this.$index6); - jl_AbstractStringBuilder_append($r, $rt_s(41)); - $r = jl_StringBuilder_append0($r, $this.$start7); - jl_AbstractStringBuilder_append($r, $rt_s(91)); - $r = jl_StringBuilder_append0($r, $this.$stop0); - jl_AbstractStringBuilder_append($r, $rt_s(7799)); - jl_AbstractStringBuilder_append($r, var$4); - jl_AbstractStringBuilder_append($r, $rt_s(7800)); - jl_AbstractStringBuilder_append($r, $typeString); - jl_AbstractStringBuilder_append($r, $rt_s(604)); - jl_AbstractStringBuilder_append($r, $channelStr); - jl_AbstractStringBuilder_append($r, $rt_s(41)); - $r = jl_StringBuilder_append0($r, $this.$line4); - jl_AbstractStringBuilder_append($r, $rt_s(91)); - $r = jl_StringBuilder_append0($r, $this.$charPositionInLine0); - jl_AbstractStringBuilder_append($r, $rt_s(427)); - return jl_AbstractStringBuilder_toString($r); -}, -oavr_CommonToken__clinit_ = () => { - oavr_CommonToken_EMPTY_SOURCE = oavrm_Pair__init_(null, null); -}, -oncipl_FullCypherToken = $rt_classWithoutFields(oavr_CommonToken), -oncipl_FullCypherToken_position = $this => { - return oncipl_CypherToken_position$($this); -}, -oncipl_FullCypherToken_inputOffset = ($this, $parserOffset) => { - return oncipl_CypherToken_inputOffset$($this, $parserOffset); -}; -function jusi_SimpleIntStreamIterator$fetchIfNeeded$lambda$_3_0() { - jl_Object.call(this); - this.$_01017 = null; -} -let jusi_SimpleIntStreamIterator$fetchIfNeeded$lambda$_3_0_test = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_01017; - var$2.$lastElement = var$1; - var$2.$state1 = 1; - return 0; -}; -function oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_00() { - jl_Object.call(this); - this.$_01190 = null; -} -let oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$1 = var$1; - var$2 = var$1.$returnItems3; - s_Option$_$callClinit(); - var$3 = s_Option$_MODULE$; - var$4 = sc_IterableOnceOps_nonEmpty$(var$2.$items0); - var$5 = new oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0; - var$5.$_0669 = var$2; - var$5 = s_Option$_when(var$3, var$4, var$5); - oncia_CommandClause$_$callClinit(); - var$3 = oncia_CommandClause$_updateAliasedVariablesFromYieldInOrderByAndWhere(oncia_CommandClause$_MODULE$, var$1); - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$6 = var$3.$_10; - var$7 = var$3.$_20; - var$3 = s_Tuple2__init_(var$6, var$7); - var$6 = var$3.$_10; - var$7 = var$3.$_20; - var$8 = new oncia_With; - var$9 = oncia_ReturnItems__init_0(1, sci_Nil$_MODULE$, var$5, var$2.$position19); - var$2 = var$1.$skip4; - var$5 = var$1.$limit4; - oncia_ParsedAsYield$_$callClinit(); - oncia_With__init_(var$8, 0, var$9, var$6, var$2, var$5, var$7, oncia_ParsedAsYield$_MODULE$, var$1.$position21); - return var$8; -}, -oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_10 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_1_apply = var$0 => { - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); -}; -function oncius_TypeSpec$contains$lambda$_9_0() { - jl_Object.call(this); - this.$_0818 = null; -} -let oncius_TypeSpec$contains$lambda$_9_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - a: { - var$1 = var$1; - var$2 = var$0.$_0818; - if (var$1.$lower0.$isAssignableFrom0(var$2)) { - var$3 = var$1.$upper0; - var$1 = new oncius_TypeRange$contains$lambda$_6_0; - var$4 = new oncius_TypeRange$contains$lambda$_6_1; - var$4.$_0174 = var$2; - if (sr_BoxesRunTime_unboxToBoolean(s_Option_fold(var$3, var$1, var$4))) { - var$5 = 1; - break a; - } - } - var$5 = 0; - } - return jl_Boolean_valueOf(var$5); }; function oncius_TypeSpec$toStream$lambda$_35_0() { let a = this; jl_Object.call(a); - a.$_0657 = null; - a.$_1227 = null; + a.$_0649 = null; + a.$_1221 = null; } let oncius_TypeSpec$toStream$lambda$_35_0_apply = (var$0, var$1) => { var$1 = var$1; - return jl_Boolean_valueOf(oncius_TypeSpec_contains(var$0.$_0657, var$1, var$0.$_1227.$apply4())); + return jl_Boolean_valueOf(oncius_TypeSpec_contains(var$0.$_0649, var$1, var$0.$_1221.$apply4())); }; function oncius_TypeSpec$toStream$lambda$_35_1() { let a = this; jl_Object.call(a); - a.$_093 = null; - a.$_137 = null; + a.$_083 = null; + a.$_130 = null; } let oncius_TypeSpec$toStream$lambda$_35_1_apply = var$0 => { let var$1, var$2, var$3; - var$1 = var$0.$_093; - var$2 = var$0.$_137; + var$1 = var$0.$_083; + var$2 = var$0.$_130; var$3 = new oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_0; - var$3.$_0553 = var$1; - var$3.$_1190 = var$2; + var$3.$_0536 = var$1; + var$3.$_1177 = var$2; return sci_Stream_map(oncius_TypeSpec_toStream(var$1, var$3), new oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_1); }, sci_Stream = $rt_classWithoutFields(sci_AbstractSeq), @@ -347932,7 +274104,7 @@ sci_Stream_iterator = $this => { var$1 = new sc_LinearSeqIterator; var$2 = new sc_LinearSeqIterator$LazyCell; var$3 = new sc_LinearSeqIterator$_init_$lambda$_4_0; - var$3.$_0366 = $this; + var$3.$_0352 = $this; sc_LinearSeqIterator$LazyCell__init_(var$2, var$1, var$3); var$1.$these = var$2; } @@ -347969,7 +274141,7 @@ sci_Stream_iterableFactory0 = $this => { return sci_Stream$_MODULE$; }, sci_Stream_className = $this => { - return $rt_s(7801); + return $rt_s(6762); }, sci_Stream_foreach = ($this, $f) => { while (!$this.$isEmpty()) { @@ -347998,7 +274170,7 @@ sci_Stream_reduceLeft = ($this, $f) => { let $reducedRes, $left; if ($this.$isEmpty()) { $f = new jl_UnsupportedOperationException; - jl_Throwable__init_0($f, $rt_s(44)); + jl_Throwable__init_($f, $rt_s(44)); $rt_throw($f); } $reducedRes = $this.$head(); @@ -348013,7 +274185,7 @@ sci_Stream_partition = ($filterNot_filterImpl_rest, $p) => { let var$2, $filter_pred, $filter_filterImpl_rest, $filter_filterImpl_filteredTail_apply_hd, $filter_filterImpl_filteredTail_apply_tl, $filterNot_pred, $filterNot_filterImpl_filteredTail_apply_hd, $filterNot_filterImpl_filteredTail_apply_tl; var$2 = new s_Tuple2; $filter_pred = new sci_Stream$partition$lambda$_56_0; - $filter_pred.$_0778 = $p; + $filter_pred.$_0756 = $p; $filter_filterImpl_rest = $filterNot_filterImpl_rest; while (sc_IterableOnceOps_nonEmpty$($filter_filterImpl_rest) && !sr_BoxesRunTime_unboxToBoolean($p.$apply2($filter_filterImpl_rest.$head()))) { $filter_filterImpl_rest = $filter_filterImpl_rest.$tail(); @@ -348023,13 +274195,13 @@ sci_Stream_partition = ($filterNot_filterImpl_rest, $p) => { else { $filter_filterImpl_filteredTail_apply_hd = $filter_filterImpl_rest.$head(); $filter_filterImpl_filteredTail_apply_tl = new sci_Stream$partition$lambda$_56_1; - $filter_filterImpl_filteredTail_apply_tl.$_0299 = $filter_filterImpl_rest; - $filter_filterImpl_filteredTail_apply_tl.$_1111 = $filter_pred; - $filter_filterImpl_filteredTail_apply_tl.$_243 = 0; + $filter_filterImpl_filteredTail_apply_tl.$_0283 = $filter_filterImpl_rest; + $filter_filterImpl_filteredTail_apply_tl.$_1104 = $filter_pred; + $filter_filterImpl_filteredTail_apply_tl.$_237 = 0; $filter_pred = sci_Stream$Cons__init_($filter_filterImpl_filteredTail_apply_hd, $filter_filterImpl_filteredTail_apply_tl); } $filterNot_pred = new sci_Stream$partition$lambda$_56_2; - $filterNot_pred.$_0383 = $p; + $filterNot_pred.$_0370 = $p; while (sc_IterableOnceOps_nonEmpty$($filterNot_filterImpl_rest) && sr_BoxesRunTime_unboxToBoolean($p.$apply2($filterNot_filterImpl_rest.$head())) == 1) { $filterNot_filterImpl_rest = $filterNot_filterImpl_rest.$tail(); } @@ -348038,9 +274210,9 @@ sci_Stream_partition = ($filterNot_filterImpl_rest, $p) => { else { $filterNot_filterImpl_filteredTail_apply_hd = $filterNot_filterImpl_rest.$head(); $filterNot_filterImpl_filteredTail_apply_tl = new sci_Stream$partition$lambda$_56_3; - $filterNot_filterImpl_filteredTail_apply_tl.$_0897 = $filterNot_filterImpl_rest; - $filterNot_filterImpl_filteredTail_apply_tl.$_1309 = $filterNot_pred; - $filterNot_filterImpl_filteredTail_apply_tl.$_2100 = 1; + $filterNot_filterImpl_filteredTail_apply_tl.$_0881 = $filterNot_filterImpl_rest; + $filterNot_filterImpl_filteredTail_apply_tl.$_1297 = $filterNot_pred; + $filterNot_filterImpl_filteredTail_apply_tl.$_295 = 1; $p = sci_Stream$Cons__init_($filterNot_filterImpl_filteredTail_apply_hd, $filterNot_filterImpl_filteredTail_apply_tl); } s_Tuple2__init_0(var$2, $filter_pred, $p); @@ -348055,9 +274227,9 @@ sci_Stream_filter0 = ($filterImpl_rest, $pred) => { return sci_Stream$Empty$_MODULE$; $filterImpl_filteredTail_apply_hd = $filterImpl_rest.$head(); $filterImpl_filteredTail_apply_tl = new sci_Stream$filter$lambda$_57_0; - $filterImpl_filteredTail_apply_tl.$_0220 = $filterImpl_rest; - $filterImpl_filteredTail_apply_tl.$_184 = $pred; - $filterImpl_filteredTail_apply_tl.$_235 = 0; + $filterImpl_filteredTail_apply_tl.$_0212 = $filterImpl_rest; + $filterImpl_filteredTail_apply_tl.$_180 = $pred; + $filterImpl_filteredTail_apply_tl.$_230 = 0; return sci_Stream$Cons__init_($filterImpl_filteredTail_apply_hd, $filterImpl_filteredTail_apply_tl); }, sci_Stream_filterNot = ($filterImpl_rest, $pred) => { @@ -348069,8 +274241,8 @@ sci_Stream_filterNot = ($filterImpl_rest, $pred) => { return sci_Stream$Empty$_MODULE$; $filterImpl_filteredTail_apply_hd = $filterImpl_rest.$head(); $filterImpl_filteredTail_apply_tl = new sci_Stream$filterNot$lambda$_58_0; - $filterImpl_filteredTail_apply_tl.$_0987 = $filterImpl_rest; - $filterImpl_filteredTail_apply_tl.$_1342 = $pred; + $filterImpl_filteredTail_apply_tl.$_0978 = $filterImpl_rest; + $filterImpl_filteredTail_apply_tl.$_1335 = $pred; $filterImpl_filteredTail_apply_tl.$_2116 = 1; return sci_Stream$Cons__init_($filterImpl_filteredTail_apply_hd, $filterImpl_filteredTail_apply_tl); }, @@ -348080,8 +274252,8 @@ sci_Stream_map = ($this, $f) => { return sci_Stream$Empty$_MODULE$; $apply_hd = $f.$apply2($this.$head()); $apply_tl = new sci_Stream$map$lambda$_62_0; - $apply_tl.$_01127 = $this; - $apply_tl.$_1378 = $f; + $apply_tl.$_01103 = $this; + $apply_tl.$_1376 = $f; return sci_Stream$Cons__init_($apply_hd, $apply_tl); }, sci_Stream_collect = ($this, $pf) => { @@ -348089,12 +274261,12 @@ sci_Stream_collect = ($this, $pf) => { while (!$this.$isEmpty()) { $newHead = sr_ObjectRef__init_(null); var$3 = new sci_Stream$collect$lambda$_63_0; - var$3.$_0119 = $newHead; + var$3.$_0110 = $newHead; if (sr_BoxesRunTime_unboxToBoolean(s_PartialFunction$runWith$lambda$_22_0_apply(sr_AbstractPartialFunction_runWith($pf, var$3), $this.$head()))) { var$3 = $newHead.$elem; $newHead = new sci_Stream$$collectedTail$lambda$_30_0; - $newHead.$_0154 = $this; - $newHead.$_159 = $pf; + $newHead.$_0147 = $this; + $newHead.$_149 = $pf; return sci_Stream$Cons__init_(var$3, $newHead); } $this = $this.$tail(); @@ -348106,7 +274278,7 @@ sci_Stream_collectFirst = ($this, $pf) => { while (!$this.$isEmpty()) { $newHead = sr_ObjectRef__init_(null); var$3 = new sci_Stream$collectFirst$lambda$_64_0; - var$3.$_0372 = $newHead; + var$3.$_0360 = $newHead; if (sr_BoxesRunTime_unboxToBoolean(s_PartialFunction$runWith$lambda$_22_0_apply(sr_AbstractPartialFunction_runWith($pf, var$3), $this.$head()))) return s_Some__init_($newHead.$elem); $this = $this.$tail(); @@ -348129,15 +274301,15 @@ sci_Stream_flatMap0 = ($this, $f) => { if ($nonEmptyPrefix.$elem.$isEmpty()) return sci_Stream$Empty$_MODULE$; $lazyAppendedAll_suffix = new sci_Stream$flatMap$lambda$_65_0; - $lazyAppendedAll_suffix.$_01085 = $nonEmptyPrefix; - $lazyAppendedAll_suffix.$_1366 = $f; + $lazyAppendedAll_suffix.$_01067 = $nonEmptyPrefix; + $lazyAppendedAll_suffix.$_1363 = $f; if ($prefix === null) $rt_throw(null); if (!$prefix.$isEmpty()) { $lazyAppendedAll_apply_hd = $prefix.$head(); $lazyAppendedAll_apply_tl = new sci_Stream$flatMap$lambda$_65_1; - $lazyAppendedAll_apply_tl.$_0557 = $prefix; - $lazyAppendedAll_apply_tl.$_1191 = $lazyAppendedAll_suffix; + $lazyAppendedAll_apply_tl.$_0539 = $prefix; + $lazyAppendedAll_apply_tl.$_1178 = $lazyAppendedAll_suffix; return sci_Stream$Cons__init_($lazyAppendedAll_apply_hd, $lazyAppendedAll_apply_tl); } $from_this = sci_Stream$_MODULE$; @@ -348160,8 +274332,8 @@ sci_Stream_flatMap0 = ($this, $f) => { $f = sci_Stream$Empty$_MODULE$; else { $$anonfun$flatMap$1_flatMap_lazyAppendedAll_suffix = new sci_Stream$flatMap$lambda$_65_2; - $$anonfun$flatMap$1_flatMap_lazyAppendedAll_suffix.$_027 = $$anonfun$flatMap$1_flatMap_nonEmptyPrefix; - $$anonfun$flatMap$1_flatMap_lazyAppendedAll_suffix.$_115 = $f; + $$anonfun$flatMap$1_flatMap_lazyAppendedAll_suffix.$_024 = $$anonfun$flatMap$1_flatMap_nonEmptyPrefix; + $$anonfun$flatMap$1_flatMap_lazyAppendedAll_suffix.$_113 = $f; if ($$anonfun$flatMap$1_flatMap_prefix === null) $rt_throw(null); if ($$anonfun$flatMap$1_flatMap_prefix.$isEmpty()) @@ -348169,8 +274341,8 @@ sci_Stream_flatMap0 = ($this, $f) => { else { $$anonfun$flatMap$1_flatMap_lazyAppendedAll_apply_hd = $$anonfun$flatMap$1_flatMap_prefix.$head(); $$anonfun$flatMap$1_flatMap_lazyAppendedAll_apply_tl = new sci_Stream$flatMap$lambda$_65_3; - $$anonfun$flatMap$1_flatMap_lazyAppendedAll_apply_tl.$_0667 = $$anonfun$flatMap$1_flatMap_prefix; - $$anonfun$flatMap$1_flatMap_lazyAppendedAll_apply_tl.$_1232 = $$anonfun$flatMap$1_flatMap_lazyAppendedAll_suffix; + $$anonfun$flatMap$1_flatMap_lazyAppendedAll_apply_tl.$_0657 = $$anonfun$flatMap$1_flatMap_prefix; + $$anonfun$flatMap$1_flatMap_lazyAppendedAll_apply_tl.$_1224 = $$anonfun$flatMap$1_flatMap_lazyAppendedAll_suffix; $f = sci_Stream$Cons__init_($$anonfun$flatMap$1_flatMap_lazyAppendedAll_apply_hd, $$anonfun$flatMap$1_flatMap_lazyAppendedAll_apply_tl); } } @@ -348180,6 +274352,7 @@ sci_Stream_flatMap0 = ($this, $f) => { sci_Stream_zip = ($this, $thatIterable) => { let var$2, $apply_hd, $apply_tl; if (!$this.$isEmpty()) { + sc_IterableOnceExtensionMethods$_$callClinit(); var$2 = $rt_isInstance($thatIterable, sc_Iterable); if (!(var$2 ? $thatIterable.$isEmpty() : ($thatIterable.$iterator0()).$isEmpty())) { if (!var$2) { @@ -348188,8 +274361,8 @@ sci_Stream_zip = ($this, $thatIterable) => { } $apply_hd = s_Tuple2__init_($this.$head(), $thatIterable.$head()); $apply_tl = new sci_Stream$zip$lambda$_66_0; - $apply_tl.$_01079 = $this; - $apply_tl.$_1363 = $thatIterable; + $apply_tl.$_01057 = $this; + $apply_tl.$_1359 = $thatIterable; return sci_Stream$Cons__init_($apply_hd, $apply_tl); } } @@ -348197,7 +274370,7 @@ sci_Stream_zip = ($this, $thatIterable) => { }, sci_Stream_addString = ($this, $sb, $start, $sep, $end) => { $this.$force0(); - sci_Stream_addStringNoForce($this, $sb.$underlying8, $start, $sep, $end); + sci_Stream_addStringNoForce($this, $sb.$underlying7, $start, $sep, $end); return $sb; }, sci_Stream_addStringNoForce = ($this, $b, $start, $sep, $end) => { @@ -348280,7 +274453,7 @@ sci_Stream_addStringNoForce = ($this, $b, $start, $sep, $end) => { return $b; }, sci_Stream_toString = $this => { - return jl_AbstractStringBuilder_toString(sci_Stream_addStringNoForce($this, jl_StringBuilder__init_0($rt_s(7801)), $rt_s(40), $rt_s(45), $rt_s(42))); + return jl_AbstractStringBuilder_toString(sci_Stream_addStringNoForce($this, jl_StringBuilder__init_0($rt_s(6762)), $rt_s(40), $rt_s(45), $rt_s(42))); }, sci_Stream_apply0 = ($this, $v1) => { return sc_LinearSeqOps_apply$($this, sr_BoxesRunTime_unboxToInt($v1)); @@ -348304,7 +274477,7 @@ sci_Stream_map0 = ($this, $f) => { sci_Stream_prepended = ($this, $elem) => { let var$2; var$2 = new sci_Stream$prepended$lambda$_61_0; - var$2.$_0993 = $this; + var$2.$_0983 = $this; return sci_Stream$Cons__init_($elem, var$2); }, sci_Stream_filterNot0 = ($this, $pred) => { @@ -348325,8 +274498,8 @@ sci_Stream_$anonfun$lazyAppendedAll$1 = ($$this, $suffix$1) => { return sci_Stream$_from(sci_Stream$_MODULE$, $suffix$1.$apply4()); $lazyAppendedAll_apply_hd = $lazyAppendedAll_this.$head(); $lazyAppendedAll_apply_tl = new sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0; - $lazyAppendedAll_apply_tl.$_0931 = $lazyAppendedAll_this; - $lazyAppendedAll_apply_tl.$_1328 = $suffix$1; + $lazyAppendedAll_apply_tl.$_0921 = $lazyAppendedAll_this; + $lazyAppendedAll_apply_tl.$_1318 = $suffix$1; return sci_Stream$Cons__init_($lazyAppendedAll_apply_hd, $lazyAppendedAll_apply_tl); }, sci_Stream_$anonfun$map$1 = ($$this, $f$1) => { @@ -348338,8 +274511,8 @@ sci_Stream_$anonfun$map$1 = ($$this, $f$1) => { return sci_Stream$Empty$_MODULE$; $map_apply_hd = $f$1.$apply2($map_this.$head()); $map_apply_tl = new sci_Stream$$anonfun$map$1$lambda$_95_0; - $map_apply_tl.$_0587 = $map_this; - $map_apply_tl.$_1202 = $f$1; + $map_apply_tl.$_0567 = $map_this; + $map_apply_tl.$_1194 = $f$1; return sci_Stream$Cons__init_($map_apply_hd, $map_apply_tl); }, sci_Stream_$anonfun$flatMap$1 = ($nonEmptyPrefix$1, $f$2) => { @@ -348361,455 +274534,115 @@ sci_Stream_$anonfun$flatMap$1 = ($nonEmptyPrefix$1, $f$2) => { if ($flatMap_nonEmptyPrefix.$elem.$isEmpty()) return sci_Stream$Empty$_MODULE$; $flatMap_lazyAppendedAll_suffix = new sci_Stream$$anonfun$flatMap$1$lambda$_98_0; - $flatMap_lazyAppendedAll_suffix.$_0661 = $flatMap_nonEmptyPrefix; - $flatMap_lazyAppendedAll_suffix.$_1230 = $f$2; + $flatMap_lazyAppendedAll_suffix.$_0653 = $flatMap_nonEmptyPrefix; + $flatMap_lazyAppendedAll_suffix.$_1222 = $f$2; if ($flatMap_prefix === null) $rt_throw(null); if ($flatMap_prefix.$isEmpty()) return sci_Stream$_from(sci_Stream$_MODULE$, sci_Stream_$anonfun$flatMap$1($flatMap_nonEmptyPrefix, $f$2)); $flatMap_lazyAppendedAll_apply_hd = $flatMap_prefix.$head(); $flatMap_lazyAppendedAll_apply_tl = new sci_Stream$$anonfun$flatMap$1$lambda$_98_1; - $flatMap_lazyAppendedAll_apply_tl.$_01132 = $flatMap_prefix; - $flatMap_lazyAppendedAll_apply_tl.$_1380 = $flatMap_lazyAppendedAll_suffix; + $flatMap_lazyAppendedAll_apply_tl.$_01110 = $flatMap_prefix; + $flatMap_lazyAppendedAll_apply_tl.$_1379 = $flatMap_lazyAppendedAll_suffix; return sci_Stream$Cons__init_($flatMap_lazyAppendedAll_apply_hd, $flatMap_lazyAppendedAll_apply_tl); -}, -oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0 = $rt_classWithoutFields(), -oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0__init_ = var$0 => { - return; -}, -oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0__init_0 = () => { - let var_0 = new oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0(); - oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0__init_(var_0); - return var_0; -}, -oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(var$1, var$2.$invariant()); -}, -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_0 = $rt_classWithoutFields(); -let onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_0_apply = var$0 => { - return $rt_s(4); -}, -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_1 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_1_apply = (var$0, var$1) => { - return var$1.$stringVal0; -}, -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_2 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_2_apply = var$0 => { - return $rt_s(4); -}, -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_3 = $rt_classWithoutFields(), -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_3_apply = (var$0, var$1) => { - return var$1.$stringVal0; -}, -oavra_SemanticContext$Operator = $rt_classWithoutFields(oavra_SemanticContext); -function oavra_SemanticContext$OR() { - oavra_SemanticContext$Operator.call(this); - this.$opnds0 = null; +}; +function oavra_LexerActionExecutor() { + let a = this; jl_Object.call(a); + a.$lexerActions = null; + a.$hashCode6 = 0; } -let oavra_SemanticContext$OR_equals = ($this, $obj) => { - let $other; - if ($this === $obj) - return 1; - if (!($obj instanceof oavra_SemanticContext$OR)) - return 0; - $other = $obj; - return ju_Arrays_equals0($this.$opnds0, $other.$opnds0); -}, -oavra_SemanticContext$OR_hashCode = $this => { - return oavrm_MurmurHash_hashCode($this.$opnds0, jl_Object_identity($rt_cls(oavra_SemanticContext$OR))); -}, -oavra_SemanticContext$OR_eval = ($this, $parser, $parserCallStack) => { - let var$3, var$4, var$5; - var$3 = $this.$opnds0.data; - var$4 = var$3.length; +let oavra_LexerActionExecutor__init_ = ($this, $lexerActions) => { + let var$2, $hash, var$4, var$5; + var$2 = $lexerActions.data; + $this.$lexerActions = $lexerActions; + $hash = oavrm_MurmurHash_initialize(); + var$4 = var$2.length; var$5 = 0; while (var$5 < var$4) { - if (var$3[var$5].$eval($parser, $parserCallStack)) - return 1; + $hash = oavrm_MurmurHash_update0($hash, var$2[var$5]); var$5 = var$5 + 1 | 0; } - return 0; -}, -oavra_SemanticContext$OR_evalPrecedence = ($this, $parser, $parserCallStack) => { - let $differs, $operands, var$5, var$6, var$7, $result, $i, $context, $evaluated; - $differs = 0; - $operands = ju_ArrayList__init_(); - var$5 = $this.$opnds0.data; - var$6 = var$5.length; - var$7 = 0; - while (true) { - if (var$7 >= var$6) { - if (!$differs) - return $this; - if (ju_AbstractCollection_isEmpty($operands)) - return null; - $result = ju_ArrayList_get($operands, 0); - $i = 1; - while ($i < $operands.$size0) { - $result = oavra_SemanticContext_or($result, ju_ArrayList_get($operands, $i)); - $i = $i + 1 | 0; - } - return $result; - } - $context = var$5[var$7]; - $evaluated = $context.$evalPrecedence($parser, $parserCallStack); - $differs = $differs | ($evaluated === $context ? 0 : 1); - $result = oavra_SemanticContext$Empty_Instance; - if ($evaluated === $result) - break; - if ($evaluated !== null) - ju_ArrayList_add($operands, $evaluated); - var$7 = var$7 + 1 | 0; - } - return $result; -}, -oavra_SemanticContext$OR_toString = $this => { - return oavrm_Utils_join0(ju_AbstractList_iterator(ju_Arrays_asList($this.$opnds0)), $rt_s(4452)); -}; -function oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0() { - let a = this; jl_Object.call(a); - a.$_0888 = null; - a.$_1305 = null; -} -let oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0888; - var$2 = var$0.$_1305; - var$1 = onciuh_TreeZipper$Location_up(var$1); - var$3 = new oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0; - var$3.$_01058 = var$2; - return s_Option_flatMap(var$1, var$3); -}, -oncias_SemanticPatternCheck$$anonfun$3$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$anonfun$3$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return var$1.$propertyKey0; -}; -function oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0606 = null; -} -let oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0606.$definition; - if (var$1 !== null) { - if (oncias_SymbolUse_equals(var$1, var$2)) - break c; - else - break b; - } - if (var$2 !== null) - break b; - } - var$3 = 0; - break a; - } - var$3 = 1; - } - return jl_Boolean_valueOf(var$3); -}, -oncipvaf_DdlShowBuilder$ConstraintEntity0 = $rt_classWithoutFields(0), -oncipvaf_DdlShowBuilder$Rel$ = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$Rel$_productArity0 = $this => { - return 0; -}, -oncipvaf_DdlShowBuilder$Rel$_productElement0 = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlShowBuilder$Rel$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlShowBuilder$Rel$_hashCode = $this => { - return 82041; -}, -oncipvaf_DdlShowBuilder$Rel$_toString = $this => { - return $rt_s(7802); -}, -oncipvaf_DdlShowBuilder$Rel$__init_0 = ($this, $$outer) => { - return; -}, -oncipvaf_DdlShowBuilder$Rel$__init_1 = var_0 => { - let var_1 = new oncipvaf_DdlShowBuilder$Rel$(); - oncipvaf_DdlShowBuilder$Rel$__init_0(var_1, var_0); - return var_1; -}, -oncipvaf_DdlShowBuilder$Node$0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$Node$_productArity0 = $this => { - return 0; -}, -oncipvaf_DdlShowBuilder$Node$_productElement0 = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlShowBuilder$Node$_productIterator0 = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlShowBuilder$Node$_hashCode = $this => { - return 2433570; -}, -oncipvaf_DdlShowBuilder$Node$_toString0 = $this => { - return $rt_s(726); -}, -oncipvaf_DdlShowBuilder$Node$__init_1 = ($this, $$outer) => { - return; -}, -oncipvaf_DdlShowBuilder$Node$__init_2 = var_0 => { - let var_1 = new oncipvaf_DdlShowBuilder$Node$0(); - oncipvaf_DdlShowBuilder$Node$__init_1(var_1, var_0); - return var_1; -}, -oncipvaf_DdlShowBuilder$NoEntity$0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$NoEntity$_productArity0 = $this => { - return 0; -}, -oncipvaf_DdlShowBuilder$NoEntity$_productElement0 = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlShowBuilder$NoEntity$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlShowBuilder$NoEntity$_hashCode0 = $this => { - return 309472548; -}, -oncipvaf_DdlShowBuilder$NoEntity$_toString0 = $this => { - return $rt_s(7803); -}, -oncipvaf_DdlShowBuilder$NoEntity$__init_2 = ($this, $$outer) => { - return; -}, -oncipvaf_DdlShowBuilder$NoEntity$__init_0 = var_0 => { - let var_1 = new oncipvaf_DdlShowBuilder$NoEntity$0(); - oncipvaf_DdlShowBuilder$NoEntity$__init_2(var_1, var_0); - return var_1; -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productArity = $this => { - return 0; -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productElement0 = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productIterator0 = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_hashCode = $this => { - return 1035551396; -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_toString0 = $this => { - return $rt_s(7804); -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_ = ($this, $$outer) => { - return; -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_1 = var_0 => { - let var_1 = new oncipvaf_DdlPrivilegeBuilder$RelGraphToken$0(); - oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_(var_1, var_0); - return var_1; -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productArity = $this => { - return 0; -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productIterator0 = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_hashCode0 = $this => { - return (-97393395); -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_toString = $this => { - return $rt_s(7805); -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_2 = ($this, $$outer) => { - return; -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_0 = var_0 => { - let var_1 = new oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$0(); - oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_2(var_1, var_0); - return var_1; -}, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$0 = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productArity0 = $this => { - return 0; -}, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productIterator0 = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_hashCode0 = $this => { - return 1680431431; -}, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_toString = $this => { - return $rt_s(7806); -}, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_0 = ($this, $$outer) => { - return; -}, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_2 = var_0 => { - let var_1 = new oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$0(); - oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_0(var_1, var_0); - return var_1; -}; -let oncipvaf_DdlShowBuilder$Node$ = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$Node$_productArity = $this => { - return 0; -}, -oncipvaf_DdlShowBuilder$Node$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlShowBuilder$Node$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlShowBuilder$Node$_hashCode0 = $this => { - return 2433570; -}, -oncipvaf_DdlShowBuilder$Node$_toString = $this => { - return $rt_s(726); -}, -oncipvaf_DdlShowBuilder$Node$__init_0 = ($this, $$outer) => { - return; -}, -oncipvaf_DdlShowBuilder$Node$__init_ = var_0 => { - let var_1 = new oncipvaf_DdlShowBuilder$Node$(); - oncipvaf_DdlShowBuilder$Node$__init_0(var_1, var_0); - return var_1; -}, -oncipvaf_DdlShowBuilder$Rel$0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$Rel$_productArity = $this => { - return 0; -}, -oncipvaf_DdlShowBuilder$Rel$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlShowBuilder$Rel$_productIterator0 = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlShowBuilder$Rel$_hashCode0 = $this => { - return 82041; -}, -oncipvaf_DdlShowBuilder$Rel$_toString0 = $this => { - return $rt_s(7802); -}, -oncipvaf_DdlShowBuilder$Rel$__init_2 = ($this, $$outer) => { - return; -}, -oncipvaf_DdlShowBuilder$Rel$__init_ = var_0 => { - let var_1 = new oncipvaf_DdlShowBuilder$Rel$0(); - oncipvaf_DdlShowBuilder$Rel$__init_2(var_1, var_0); - return var_1; -}, -oncipvaf_DdlShowBuilder$NoEntity$ = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$NoEntity$_productArity = $this => { - return 0; -}, -oncipvaf_DdlShowBuilder$NoEntity$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlShowBuilder$NoEntity$_productIterator0 = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlShowBuilder$NoEntity$_hashCode = $this => { - return 309472548; -}, -oncipvaf_DdlShowBuilder$NoEntity$_toString = $this => { - return $rt_s(7803); -}, -oncipvaf_DdlShowBuilder$NoEntity$__init_1 = ($this, $$outer) => { - return; -}, -oncipvaf_DdlShowBuilder$NoEntity$__init_ = var_0 => { - let var_1 = new oncipvaf_DdlShowBuilder$NoEntity$(); - oncipvaf_DdlShowBuilder$NoEntity$__init_1(var_1, var_0); - return var_1; -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$ = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productArity0 = $this => { - return 0; -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_hashCode0 = $this => { - return 1035551396; -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_toString = $this => { - return $rt_s(7804); -}, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_2 = ($this, $$outer) => { - return; + $this.$hashCode6 = oavrm_MurmurHash_finish($hash, var$4); }, -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_0 = var_0 => { - let var_1 = new oncipvaf_DdlPrivilegeBuilder$RelGraphToken$(); - oncipvaf_DdlPrivilegeBuilder$RelGraphToken$__init_2(var_1, var_0); +oavra_LexerActionExecutor__init_0 = var_0 => { + let var_1 = new oavra_LexerActionExecutor(); + oavra_LexerActionExecutor__init_(var_1, var_0); return var_1; }, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$ = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productArity0 = $this => { - return 0; -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productElement0 = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_hashCode = $this => { - return (-97393395); +oavra_LexerActionExecutor_hashCode = $this => { + return $this.$hashCode6; }, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_toString0 = $this => { - return $rt_s(7805); +oavra_LexerActionExecutor_equals = ($this, $obj) => { + let $other; + if ($obj === $this) + return 1; + if (!($obj instanceof oavra_LexerActionExecutor)) + return 0; + $other = $obj; + return $this.$hashCode6 == $other.$hashCode6 && ju_Arrays_equals0($this.$lexerActions, $other.$lexerActions) ? 1 : 0; }, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_ = ($this, $$outer) => { - return; +onciap_DefaultPatternStringifier$concatenate$lambda$_9_0 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$concatenate$lambda$_9_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1)); +}; +function onciap_DefaultPatternStringifier$concatenate$lambda$_9_1() { + jl_Object.call(this); + this.$_0178 = null; +} +let onciap_DefaultPatternStringifier$concatenate$lambda$_9_1_apply = (var$0, var$1) => { + return sc_AbstractIterable_mkString(var$1, var$0.$_0178); }, -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_1 = var_0 => { - let var_1 = new oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$(); - oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$__init_(var_1, var_0); - return var_1; +oncias_SemanticPatternCheck$$anonfun$3$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$anonfun$3$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return var$1.$propertyKey0; +}; +function sci_LazyList$dropRight$lambda$_87_0() { + let a = this; jl_Object.call(a); + a.$_01052 = null; + a.$_1358 = 0; +} +let sci_LazyList$dropRight$lambda$_87_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_01052; + var$2 = var$0.$_1358; + var$3 = var$1; + while (var$2 > 0 && !sci_LazyList_isEmpty(var$3)) { + var$2 = var$2 + (-1) | 0; + var$3 = sci_LazyList_tail(var$3); + } + return sci_LazyList_dropRightState(var$1, var$3); }, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$ = $rt_classWithoutFields(), -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productArity = $this => { +onciap_DefaultExpressionStringifier$Syntactic$ = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$Syntactic$_productArity = $this => { return 0; }, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productElement0 = ($this, $x$1) => { +onciap_DefaultExpressionStringifier$Syntactic$_productElement = ($this, $x$1) => { return sr_Statics_ioobe($x$1); }, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productIterator = $this => { +onciap_DefaultExpressionStringifier$Syntactic$_productIterator = $this => { return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); }, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_hashCode = $this => { - return 1680431431; +onciap_DefaultExpressionStringifier$Syntactic$_hashCode = $this => { + return (-1308395040); }, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_toString0 = $this => { - return $rt_s(7806); +onciap_DefaultExpressionStringifier$Syntactic$_toString = $this => { + return $rt_s(6763); }, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_ = ($this, $$outer) => { +onciap_DefaultExpressionStringifier$Syntactic$__init_ = ($this, $$outer) => { return; }, -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_1 = var_0 => { - let var_1 = new oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$(); - oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$__init_(var_1, var_0); +onciap_DefaultExpressionStringifier$Syntactic$__init_0 = var_0 => { + let var_1 = new onciap_DefaultExpressionStringifier$Syntactic$(); + onciap_DefaultExpressionStringifier$Syntactic$__init_(var_1, var_0); return var_1; }; function oncia_Clause$LabelExpressionsPartitions$2$() { let a = this; sr_AbstractFunction2.call(a); - a.$$outer53 = null; + a.$$outer47 = null; a.$LegacyLabelExpression$module$11 = null; } let oncia_Clause$LabelExpressionsPartitions$2$_apply = ($this, $legacy, $gpm) => { - return oncia_Clause$LabelExpressionsPartitions$1__init_($this.$$outer53, $legacy, $gpm, $this.$LegacyLabelExpression$module$11); + return oncia_Clause$LabelExpressionsPartitions$1__init_($this.$$outer47, $legacy, $gpm, $this.$LegacyLabelExpression$module$11); }, oncia_Clause$LabelExpressionsPartitions$2$_apply$default$1 = $this => { return onciuci_ListSet$_empty(onciuci_ListSet$_MODULE$); @@ -348820,7 +274653,7 @@ oncia_Clause$LabelExpressionsPartitions$2$_apply$default$2 = $this => { oncia_Clause$LabelExpressionsPartitions$2$__init_ = ($this, $$outer, $LegacyLabelExpression$module$1) => { if ($$outer === null) $rt_throw(null); - $this.$$outer53 = $$outer; + $this.$$outer47 = $$outer; $this.$LegacyLabelExpression$module$11 = $LegacyLabelExpression$module$1; }, oncia_Clause$LabelExpressionsPartitions$2$__init_0 = (var_0, var_1) => { @@ -348828,175 +274661,169 @@ oncia_Clause$LabelExpressionsPartitions$2$__init_0 = (var_0, var_1) => { oncia_Clause$LabelExpressionsPartitions$2$__init_(var_2, var_0, var_1); return var_2; }; -function sci_LazyList$dropRight$lambda$_87_0() { - let a = this; jl_Object.call(a); - a.$_01066 = null; - a.$_1362 = 0; -} -let sci_LazyList$dropRight$lambda$_87_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_01066; - var$2 = var$0.$_1362; - var$3 = var$1; - while (var$2 > 0 && !sci_LazyList_isEmpty(var$3)) { - var$2 = var$2 + (-1) | 0; - var$3 = sci_LazyList_tail(var$3); - } - return sci_LazyList_dropRightState(var$1, var$3); -}; function sci_LazyList$map$lambda$_69_0() { let a = this; jl_Object.call(a); - a.$_0224 = null; - a.$_186 = null; + a.$_0215 = null; + a.$_183 = null; } let sci_LazyList$map$lambda$_69_0_apply = var$0 => { - return sci_LazyList_$anonfun$mapImpl$1(var$0.$_0224, var$0.$_186); + return sci_LazyList_$anonfun$mapImpl$1(var$0.$_0215, var$0.$_183); }; -function sci_LazyList$appended$lambda$_58_0() { +function oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0() { jl_Object.call(this); - this.$_01158 = null; + this.$_0822 = null; } -let sci_LazyList$appended$lambda$_58_0_apply = var$0 => { - return sc_Iterator$$anon$20__init_(var$0.$_01158); +let oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0822; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + return oncifp_IsolateSubqueriesInMutatingPatterns$_getDefinedSymbols$1(var$1, var$2); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1 = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1_apply = var$0 => { + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; }; -function sci_LazyList$appended$lambda$_58_1() { +function sci_LazyList$filterNot$lambda$_65_0() { let a = this; jl_Object.call(a); - a.$_0625 = null; - a.$_1213 = null; + a.$_0388 = null; + a.$_1136 = null; + a.$_248 = 0; } -let sci_LazyList$appended$lambda$_58_1_apply = var$0 => { - return sci_LazyList_$anonfun$lazyAppendedAll$1(var$0.$_0625, var$0.$_1213); +let sci_LazyList$filterNot$lambda$_65_0_apply = var$0 => { + return sci_LazyList$_$anonfun$filterImpl$1(var$0.$_0388, var$0.$_1136, var$0.$_248); }; -function sci_LazyList$appended$lambda$_58_2() { +function sci_LazyList$zipAll$lambda$_80_0() { jl_Object.call(this); - this.$_0114 = null; + this.$_0407 = null; } -let sci_LazyList$appended$lambda$_58_2_apply = var$0 => { - let var$1; - var$1 = var$0.$_0114; - sci_LazyList$_$callClinit(); - return sci_LazyList$State$Cons__init_(var$1, sci_LazyList$_empty(sci_LazyList$_MODULE$)); +let sci_LazyList$zipAll$lambda$_80_0_apply = var$0 => { + return var$0.$_0407; }; -function sci_LazyList$appendedAll$lambda$_57_0() { +function sci_LazyList$zipAll$lambda$_80_1() { jl_Object.call(this); - this.$_039 = null; + this.$_0161 = null; } -let sci_LazyList$appendedAll$lambda$_57_0_apply = var$0 => { - return var$0.$_039; +let sci_LazyList$zipAll$lambda$_80_1_apply = var$0 => { + return sci_LazyList$_$anonfun$continually$1(var$0.$_0161); }; -function sci_LazyList$appendedAll$lambda$_57_1() { +function sci_LazyList$zipAll$lambda$_80_2() { let a = this; jl_Object.call(a); - a.$_0565 = null; - a.$_1193 = null; + a.$_0790 = null; + a.$_1264 = null; + a.$_287 = null; + a.$_327 = null; } -let sci_LazyList$appendedAll$lambda$_57_1_apply = var$0 => { - return sci_LazyList_$anonfun$lazyAppendedAll$1(var$0.$_0565, var$0.$_1193); +let sci_LazyList$zipAll$lambda$_80_2_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0790; + var$2 = var$0.$_1264; + var$3 = var$0.$_287; + var$4 = var$0.$_327; + return sci_LazyList_zipAllState(var$1, var$2.$iterator0(), var$3, var$4); }; -function sci_LazyList$filter$lambda$_64_0() { - let a = this; jl_Object.call(a); - a.$_0948 = null; - a.$_1332 = null; - a.$_2114 = 0; +function sci_LazyList$zipAll$lambda$_80_3() { + jl_Object.call(this); + this.$_0284 = null; } -let sci_LazyList$filter$lambda$_64_0_apply = var$0 => { - return sci_LazyList$_$anonfun$filterImpl$1(var$0.$_0948, var$0.$_1332, var$0.$_2114); +let sci_LazyList$zipAll$lambda$_80_3_apply = var$0 => { + return var$0.$_0284; }; -function sci_LazyList$flatMap$lambda$_75_0() { - let a = this; jl_Object.call(a); - a.$_0514 = null; - a.$_1179 = null; +function sci_LazyList$zipAll$lambda$_80_4() { + jl_Object.call(this); + this.$_0607 = null; } -let sci_LazyList$flatMap$lambda$_75_0_apply = var$0 => { - return sci_LazyList$_$anonfun$flatMapImpl$1(var$0.$_0514, var$0.$_1179); +let sci_LazyList$zipAll$lambda$_80_4_apply = var$0 => { + return sci_LazyList$_$anonfun$continually$1(var$0.$_0607); }; -function sci_LazyList$filterNot$lambda$_65_0() { +function sci_LazyList$appendedAll$lambda$_57_0() { + jl_Object.call(this); + this.$_041 = null; +} +let sci_LazyList$appendedAll$lambda$_57_0_apply = var$0 => { + return var$0.$_041; +}; +function sci_LazyList$appendedAll$lambda$_57_1() { let a = this; jl_Object.call(a); - a.$_0400 = null; - a.$_1145 = null; - a.$_251 = 0; + a.$_0546 = null; + a.$_1180 = null; } -let sci_LazyList$filterNot$lambda$_65_0_apply = var$0 => { - return sci_LazyList$_$anonfun$filterImpl$1(var$0.$_0400, var$0.$_1145, var$0.$_251); +let sci_LazyList$appendedAll$lambda$_57_1_apply = var$0 => { + return sci_LazyList_$anonfun$lazyAppendedAll$1(var$0.$_0546, var$0.$_1180); }; function sci_LazyList$prepended$lambda$_67_0() { let a = this; jl_Object.call(a); - a.$_0515 = null; - a.$_1180 = null; + a.$_0502 = null; + a.$_1172 = null; } let sci_LazyList$prepended$lambda$_67_0_apply = var$0 => { let var$1, var$2; - var$1 = var$0.$_0515; - var$2 = var$0.$_1180; + var$1 = var$0.$_0502; + var$2 = var$0.$_1172; sci_LazyList$_$callClinit(); return sci_LazyList$State$Cons__init_(var$2, var$1); }; -function sci_LazyList$flatten$lambda$_76_0() { - let a = this; jl_Object.call(a); - a.$_0938 = null; - a.$_1330 = null; +function sci_LazyList$appended$lambda$_58_0() { + jl_Object.call(this); + this.$_01140 = null; } -let sci_LazyList$flatten$lambda$_76_0_apply = var$0 => { - return sci_LazyList$_$anonfun$flatMapImpl$1(var$0.$_0938, var$0.$_1330); +let sci_LazyList$appended$lambda$_58_0_apply = var$0 => { + return sc_Iterator$$anon$20__init_(var$0.$_01140); }; -function sci_LazyList$zipAll$lambda$_80_0() { - jl_Object.call(this); - this.$_0416 = null; +function sci_LazyList$appended$lambda$_58_1() { + let a = this; jl_Object.call(a); + a.$_0615 = null; + a.$_1207 = null; } -let sci_LazyList$zipAll$lambda$_80_0_apply = var$0 => { - return var$0.$_0416; +let sci_LazyList$appended$lambda$_58_1_apply = var$0 => { + return sci_LazyList_$anonfun$lazyAppendedAll$1(var$0.$_0615, var$0.$_1207); }; -function sci_LazyList$zipAll$lambda$_80_1() { +function sci_LazyList$appended$lambda$_58_2() { jl_Object.call(this); - this.$_0166 = null; + this.$_0105 = null; } -let sci_LazyList$zipAll$lambda$_80_1_apply = var$0 => { - return sci_LazyList$_$anonfun$continually$1(var$0.$_0166); +let sci_LazyList$appended$lambda$_58_2_apply = var$0 => { + let var$1; + var$1 = var$0.$_0105; + sci_LazyList$_$callClinit(); + return sci_LazyList$State$Cons__init_(var$1, sci_LazyList$_empty(sci_LazyList$_MODULE$)); }; -function sci_LazyList$zipAll$lambda$_80_2() { +function sci_LazyList$flatMap$lambda$_75_0() { let a = this; jl_Object.call(a); - a.$_0816 = null; - a.$_1279 = null; - a.$_292 = null; - a.$_324 = null; -} -let sci_LazyList$zipAll$lambda$_80_2_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0816; - var$2 = var$0.$_1279; - var$3 = var$0.$_292; - var$4 = var$0.$_324; - return sci_LazyList_zipAllState(var$1, var$2.$iterator0(), var$3, var$4); -}; -function sci_LazyList$zipAll$lambda$_80_3() { - jl_Object.call(this); - this.$_0300 = null; + a.$_0501 = null; + a.$_1171 = null; } -let sci_LazyList$zipAll$lambda$_80_3_apply = var$0 => { - return var$0.$_0300; +let sci_LazyList$flatMap$lambda$_75_0_apply = var$0 => { + return sci_LazyList$_$anonfun$flatMapImpl$1(var$0.$_0501, var$0.$_1171); }; -function sci_LazyList$zipAll$lambda$_80_4() { - jl_Object.call(this); - this.$_0615 = null; +function sci_LazyList$filter$lambda$_64_0() { + let a = this; jl_Object.call(a); + a.$_0937 = null; + a.$_1321 = null; + a.$_2109 = 0; } -let sci_LazyList$zipAll$lambda$_80_4_apply = var$0 => { - return sci_LazyList$_$anonfun$continually$1(var$0.$_0615); +let sci_LazyList$filter$lambda$_64_0_apply = var$0 => { + return sci_LazyList$_$anonfun$filterImpl$1(var$0.$_0937, var$0.$_1321, var$0.$_2109); }; function sci_LazyList$zip$lambda$_77_0() { let a = this; jl_Object.call(a); - a.$_0191 = null; - a.$_174 = null; + a.$_0184 = null; + a.$_167 = null; } let sci_LazyList$zip$lambda$_77_0_apply = var$0 => { - return sci_LazyList_zipState(var$0.$_0191, var$0.$_174.$iterator0()); + return sci_LazyList_zipState(var$0.$_0184, var$0.$_167.$iterator0()); }; function oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_0() { jl_Object.call(this); - this.$_0868 = null; + this.$_0852 = null; } let oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6, var$7; var$1 = var$1; - var$2 = var$0.$_0868; + var$2 = var$0.$_0852; if (!oncie_Expression_containsAggregate(var$1)) { oncias_SemanticCheck$_$callClinit(); var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); @@ -349010,7 +274837,7 @@ let oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_0_ap var$6 = oncias_SemanticError$_MODULE$; var$7 = sc_StringOps$_MODULE$; s_Predef$_$callClinit(); - var$5[0] = oncias_SemanticError$_apply(var$6, sc_StringOps$_stripMargin$extension(var$7, $rt_s(7807)), var$2.$position47); + var$5[0] = oncias_SemanticError$_apply(var$6, sc_StringOps$_stripMargin$extension(var$7, $rt_s(6764)), var$2.$position57); var$1 = oncias_SemanticCheck$_error(var$3, sr_ScalaRunTime$_wrapRefArray(var$1, var$4)); } return var$1; @@ -349019,35 +274846,23 @@ oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_1 = $rt_ oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_1_apply = (var$0, var$1, var$2) => { return var$1.$chain(var$2); }; -function oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_157_0() { - jl_Object.call(this); - this.$_01007 = null; -} -let oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_157_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01007; - return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); -}; -function oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0() { - jl_Object.call(this); - this.$_0458 = null; +function oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0() { + let a = this; jl_Object.call(a); + a.$_01002 = null; + a.$_1342 = null; } -let oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0458; - return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); +let oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0_apply = var$0 => { + return var$0.$_01002.$error4($rt_s(6723), var$0.$_1342.$position19); }; function sci_LazyList$$scala$collection$immutable$LazyList$$dropImpl$lambda$_21_0() { let a = this; jl_Object.call(a); - a.$_0613 = null; - a.$_1208 = null; + a.$_0604 = null; + a.$_1203 = null; } let sci_LazyList$$scala$collection$immutable$LazyList$$dropImpl$lambda$_21_0_apply = var$0 => { let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0613; - var$2 = var$0.$_1208; + var$1 = var$0.$_0604; + var$2 = var$0.$_1203; sci_LazyList$_$callClinit(); var$3 = var$1.$elem; var$4 = var$2.$elem5; @@ -349059,203 +274874,76 @@ let sci_LazyList$$scala$collection$immutable$LazyList$$dropImpl$lambda$_21_0_app } return sci_LazyList_scala$collection$immutable$LazyList$$state(var$3); }; -function suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0() { - let a = this; jl_Object.call(a); - a.$_0700 = null; - a.$_1243 = null; -} -let suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0_apply = var$0 => { - return var$0.$_0700.$apply2(var$0.$_1243); -}; -function suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1() { - let a = this; jl_Object.call(a); - a.$_0462 = null; - a.$_1162 = null; -} -let suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1_apply = (var$0, var$1) => { - return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_0462, var$0.$_1162, var$1); -}; -function suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0() { - let a = this; jl_Object.call(a); - a.$_0847 = null; - a.$_1290 = null; -} -let suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0_apply = var$0 => { - return var$0.$_0847.$apply2(var$0.$_1290); -}; -function suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1() { - let a = this; jl_Object.call(a); - a.$_0257 = null; - a.$_199 = null; -} -let suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1_apply = (var$0, var$1) => { - return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_0257, var$0.$_199, var$1); -}; -function onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0() { - let a = this; jl_Object.call(a); - a.$_0772 = null; - a.$_1259 = null; -} -let onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0772; - var$2 = var$0.$_1259; - onciut_TailCallsUtil$_$callClinit(); - return onciut_TailCallsUtil$_traverse(onciut_TailCallsUtil$_MODULE$, var$1.$tail(), var$2); -}; -function onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1() { +function oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0() { jl_Object.call(this); - this.$_0226 = null; + this.$_0889 = null; } -let onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1_apply = (var$0, var$1) => { +let oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0226; - onciut_TailCallsUtil$_$callClinit(); - return var$1.$prepended(var$2); -}; -function suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0() { - let a = this; jl_Object.call(a); - a.$_018 = null; - a.$_111 = null; -} -let suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_018; - var$2 = var$0.$_111; - return suc_TailCalls$Done__init_(var$1.$apply2(var$2)); -}; -function onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0() { - let a = this; jl_Object.call(a); - a.$_0188 = null; - a.$_173 = null; -} -let onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0188; - var$3 = var$0.$_173; - onciut_TailCallsUtil$_$callClinit(); - return var$2.$apply3(var$3, var$1); -}, -srj_JFunction0$mcZ$sp = $rt_classWithoutFields(0), -srj_JFunction0$mcZ$sp_apply = $this => { - return jl_Boolean_valueOf($this.$apply$mcZ$sp()); -}, -onciap_Prettifier$$anonfun$asString$13$lambda$_85_0 = $rt_classWithoutFields(), -onciap_Prettifier$$anonfun$asString$13$lambda$_85_0_apply$mcZ$sp = var$0 => { - return 1; -}, -onciap_Prettifier$$anonfun$asString$21$lambda$_94_0 = $rt_classWithoutFields(), -onciap_Prettifier$$anonfun$asString$21$lambda$_94_0_apply = (var$0, var$1) => { - let var$2; - var$1 = sr_BoxesRunTime_unboxToBoolean(var$1) ? $rt_s(4) : $rt_s(448); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7808)), var$1), $rt_s(6288)); - return jl_AbstractStringBuilder_toString(var$2); + var$2 = var$0.$_0889; + return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); }, -onciap_Prettifier$$anonfun$asString$21$lambda$_94_1 = $rt_classWithoutFields(), -onciap_Prettifier$$anonfun$asString$21$lambda$_94_1_apply = var$0 => { - return $rt_s(4); +oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_0 = $rt_classWithoutFields(), +oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_0_apply = (var$0, var$1) => { + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return jl_Boolean_valueOf(oncia_ShowConstraintsClause_filterOutGraphTypeColumns$1(var$1.$_1())); }, -oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_0 = $rt_classWithoutFields(), -oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$features.$contains(oncias_SemanticFeature$UseAsSingleGraphSelector$_MODULE$)); +oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_1 = $rt_classWithoutFields(), +oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncia_ShowConstraintsClause_filterOutGraphTypeColumns$1(var$1.$name18)); }; -function oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_1() { +function oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_2() { jl_Object.call(this); - this.$_0192 = null; + this.$_0349 = null; } -let oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_1_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0192; - var$2 = var$1.$graphReference2; - if (var$2 instanceof oncia_GraphDirectReference) { - var$2 = var$2; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncia_UseGraph$checkSingleTargetGraph$lambda$_68_0; - var$4.$_0479 = var$1; - var$4.$_1167 = var$2; - var$1 = oncias_SemanticCheck$_fromFunctionWithContext(var$3, var$4); - } else { - if (!(var$2 instanceof oncia_GraphFunctionReference)) - $rt_throw(s_MatchError__init_(var$2)); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_UseGraph$checkSingleGraphSelector$lambda$_67_0; - var$3.$_0202 = var$1; - var$1 = oncias_SemanticCheck$_fromFunctionWithContext(var$2, var$3); - } - return var$1; +let oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0349; + var$3 = oncias_package$_MODULE$; + var$4 = var$1.$variable18; + oncius_package$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$(var$2, var$4, var$1.$cypherType0.$invariant())); }; -function oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_2() { +function oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_3() { jl_Object.call(this); - this.$_0718 = null; + this.$_0993 = null; } -let oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_2_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0718; - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = new oncia_UseGraph$unsupported$lambda$_61_0; - var$3.$_0570 = var$1; - return oncias_SemanticCheck$_fromFunctionWithContext(var$2, var$3); -}, -oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_84_0 = $rt_classWithoutFields(), -oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_84_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - if (!(var$1 instanceof oncia_RemoveLabelItem)) - var$2 = sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$); - else { - var$1 = var$1; - var$3 = var$1.$variable10; - var$4 = var$1.$labels1; - var$5 = var$1.$dynamicLabels0; - var$2 = new oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_0; - var$2.$_01149 = var$3; - var$2.$_1385 = var$1; - var$2 = var$4.$map(var$2); - var$4 = new oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_1; - var$4.$_0358 = var$3; - var$4.$_1130 = var$1; - var$1 = var$2.$concat(var$5.$map(var$4)); - var$4 = new oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_2; - sm_Ordering$Int$_$callClinit(); - var$2 = var$1.$sortBy(var$4, sm_Ordering$Int$_MODULE$); - } - return var$2; +let oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_3_apply = (var$0, var$1) => { + return oncia_CommandResultItem_semanticCheck(var$1, var$0.$_0993); }, -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_0 = $rt_classWithoutFields(), -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_0_apply = (var$0, var$1) => { +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_0 = $rt_classWithoutFields(), +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_0_apply = (var$0, var$1) => { return oncie_PatternPartWithSelector_element(var$1); }, -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_1 = $rt_classWithoutFields(), -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_1_apply = (var$0, var$1) => { +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_1 = $rt_classWithoutFields(), +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_1_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; var$2 = oncie_QuantifiedPath_allVariables(var$1); - var$3 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_104_0; - var$3.$_0208 = var$1; + var$3 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_109_0; + var$3.$_065 = var$1; return var$2.$map(var$3); }, -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_2 = $rt_classWithoutFields(), -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_3 = $rt_classWithoutFields(), -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_4 = $rt_classWithoutFields(), -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_4_apply = (var$0, var$1) => { +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_2 = $rt_classWithoutFields(), +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_3 = $rt_classWithoutFields(), +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_4 = $rt_classWithoutFields(), +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_4_apply = (var$0, var$1) => { return var$1.$allVariables(); }; -function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_5() { +function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_5() { let a = this; jl_Object.call(a); - a.$_0260 = null; - a.$_1101 = null; + a.$_0547 = null; + a.$_1181 = null; } -let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_5_apply = (var$0, var$1) => { +let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_5_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; var$1 = var$1; - var$2 = var$0.$_0260; - var$3 = var$0.$_1101; + var$2 = var$0.$_0547; + var$3 = var$0.$_1181; if (var$1 === null) $rt_throw(s_MatchError__init_(var$1)); var$4 = var$1.$_1(); @@ -349264,590 +274952,343 @@ let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_5 s_Option$_$callClinit(); var$6 = s_Option$_MODULE$; var$7 = var$1.$length() <= 1 ? 0 : 1; - var$1 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_0; - var$1.$_0348 = var$4; + var$1 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_0; + var$1.$_045 = var$4; var$6 = s_Option$_when(var$6, var$7, var$1); var$8 = new sci_$colon$colon; var$1 = s_Option$_MODULE$; var$7 = var$2.$contains(var$4); - var$2 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_1; - var$2.$_0997 = var$4; + var$2 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_1; + var$2.$_0724 = var$4; var$9 = s_Option$_when(var$1, var$7, var$2); var$10 = new sci_$colon$colon; var$2 = s_Option$_MODULE$; var$7 = s_Option_isDefined(oncias_SemanticState_symbol(var$3, var$4.$name4)); - var$1 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_2; - var$1.$_0512 = var$4; + var$1 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_2; + var$1.$_0173 = var$4; sci_$colon$colon__init_0(var$10, s_Option$_when(var$2, var$7, var$1), sci_Nil$_MODULE$); sci_$colon$colon__init_0(var$8, var$9, var$10); sci_$colon$colon__init_0(var$5, var$6, var$8); s_Predef$_$callClinit(); var$1 = sc_StrictOptimizedIterableOps_flatten$(var$5, s_Predef$_$conforms(s_Predef$_MODULE$)); - var$2 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_3; - var$2.$_01036 = var$4; + var$2 = new oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_3; + var$2.$_0811 = var$4; return sci_List_map(var$1, var$2); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$100$lambda$_165_0() { - let a = this; jl_Object.call(a); - a.$_0408 = null; - a.$_1147 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$100$lambda$_165_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$1; - var$2 = var$0.$_0408; - var$3 = var$0.$_1147; - oncias_SemanticExpressionCheck$_$callClinit(); - if (jl_String_charAt(var$2, jl_String_indexOf(var$2, 48) + 1 | 0) != 88) { - s_package$_$callClinit(); - var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - } else { - var$5 = jl_String_replace0(var$2, 88, 120); - var$4 = new sci_$colon$colon; - oncias_SemanticError$_$callClinit(); - var$6 = oncias_SemanticError$_MODULE$; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(7809)), var$2), $rt_s(7810)), var$5), $rt_s(6984)); - sci_$colon$colon__init_0(var$4, oncias_SemanticError$_apply(var$6, jl_AbstractStringBuilder_toString(var$7), var$3.$position42), sci_Nil$_MODULE$); - } - return oncias_SemanticCheckResult__init_(var$1, var$4); -}, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_81_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_81_0_apply = var$0 => { - let var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); -}; -function oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_74_0() { - jl_Object.call(this); - this.$_0329 = null; -} -let oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_74_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0329; - oncias_SemanticFunctionCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticFunctionCheck$_MODULE$, (oncie_Expression_arguments(var$2)).$apply1(0)), var$1); }, -oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_143_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_143_0_apply = (var$0, var$1) => { +oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_89_0 = $rt_classWithoutFields(), +oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_89_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_ensureDefined$(oncias_SemanticPatternCheck$_MODULE$, var$1.$singleton)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_200_0() { - let a = this; jl_Object.call(a); - a.$_098 = null; - a.$_141 = null; - a.$_220 = null; - a.$_310 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_200_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7, $$je; - var$1 = var$0.$_098; - var$2 = var$0.$_141; - var$3 = var$0.$_220; - var$4 = var$0.$_310; - oncias_SemanticExpressionCheck$_$callClinit(); - var$5 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(oncias_SemanticExpressionCheck$_stringifier0(oncias_SemanticExpressionCheck$_MODULE$), var$1.$replaceColonSyntax()); - var$6 = oncias_SemanticExpressionCheck$_MODULE$; - if (!var$1.$containsIs()) { - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(7811)), var$5), 46); - var$7 = jl_AbstractStringBuilder_toString(var$7); - } else { - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(7812)), var$5), 46); - var$7 = jl_AbstractStringBuilder_toString(var$7); - } - if (var$2.$_initialized) - var$1 = var$2.$_value0; + if (!(var$1 instanceof oncia_RemoveLabelItem)) + var$2 = sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$); else { - jl_Object_monitorEnterSync(var$2); - a: { - try { - var$1 = sr_LazyRef_initialized(var$2) ? sr_LazyRef_value(var$2) : sr_LazyRef_initialize(var$2, sc_AbstractIterable_$plus$plus(oncias_SemanticExpressionCheck$_colonConjunctions$1(var$3, var$1), oncias_SemanticExpressionCheck$_colonDisjunctions$1(var$4, var$1))); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync(var$2); - $rt_throw(var$1); - } - jl_Object_monitorExitSync(var$2); + var$1 = var$1; + var$3 = var$1.$variable12; + var$4 = var$1.$labels1; + var$5 = var$1.$dynamicLabels0; + var$2 = new oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_0; + var$2.$_0831 = var$3; + var$2.$_1280 = var$1; + var$2 = var$4.$map(var$2); + var$4 = new oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_1; + var$4.$_0250 = var$3; + var$4.$_196 = var$1; + var$1 = var$2.$concat(var$5.$map(var$4)); + var$4 = new oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_2; + sm_Ordering$Int$_$callClinit(); + var$2 = var$1.$sortBy(var$4, sm_Ordering$Int$_MODULE$); } - return oncias_SemanticAnalysisTooling_error$(var$6, var$7, (var$1.$head()).$position()); + return var$2; }, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_64_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_64_0_apply = var$0 => { - let var$1; - oncias_SemanticFunctionCheck$_$callClinit(); +oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0_apply = var$0 => { + oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit(); oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); + return oncius_BooleanType_covariant(oncius_package$_CTBoolean(oncius_package$_MODULE$)); }; -function oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_0() { - jl_Object.call(this); - this.$_0236 = null; +function sc_MapView$Keys() { + sc_AbstractView.call(this); + this.$underlying22 = null; } -let oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$2 = var$0.$_0236; - oncias_SemanticPatternCheck$_$callClinit(); - if (var$1 instanceof oncie_ParenthesizedPath) { - var$3 = var$1; - if (var$3.$part0 instanceof oncie_NamedPatternPart && oncie_PatternPartWithSelector_isSelective(var$2)) - var$1 = oncias_SemanticPatternCheck$_normalizeParenthesizedPath(oncias_SemanticPatternCheck$_MODULE$, var$3); - } - return var$1; +let sc_MapView$Keys_iterator = $this => { + return sc_MapOps_keysIterator$($this.$underlying22); +}, +sc_MapView$Keys_knownSize = $this => { + return sc_MapView$Id_knownSize($this.$underlying22.$underlying23) ? (-1) : 0; }; -function oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_1() { +function oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$3$lambda$_176_0() { let a = this; jl_Object.call(a); - a.$_0861 = null; - a.$_1295 = null; + a.$_0133 = null; + a.$_145 = 0; } -let oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_1_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_0861; - var$2 = var$0.$_1295; - oncias_SemanticPatternCheck$_$callClinit(); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = var$2.$selector1.$prettified(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(3998)), var$4), 96); - return oncias_SemanticPatternCheck$_checkContext(var$3, var$1, jl_AbstractStringBuilder_toString(var$5), var$2.$selector1.$position()); -}, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_61_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_61_0_apply = var$0 => { - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); -}, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_89_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_89_0_apply = var$0 => { - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTFloat(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_87_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_87_0_apply = var$0 => { - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTString(oncius_package$_MODULE$)).$invariant(); -}, -oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_87_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_87_0_apply = (var$0, var$1) => { +let oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$3$lambda$_176_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; + var$2 = var$0.$_0133; + var$3 = var$0.$_145; oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticCheck$_$callClinit(); - var$2 = oncias_SemanticCheck$_MODULE$; - var$3 = sr_BoxesRunTime_unboxToBoolean(onciu_Foldable$Folder_treeFold(onciu_Foldable_folder$(var$1.$element()), jl_Boolean_valueOf(1), new oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1)); - var$4 = new oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_50_0; - var$4.$_0218 = var$1; - return oncias_SemanticCheck$_when(var$2, var$3, var$4); + var$2 = var$2.$filter1(new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_0); + var$4 = new oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_1; + var$4.$_0871 = var$3; + return oncias_SemanticCheckResult__init_(var$1, var$2.$map(var$4)); }, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_79_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_79_0_apply = var$0 => { - let var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_TypeSpec_union(oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))), (oncius_package$_CTString(oncius_package$_MODULE$)).$invariant()); -}; -function oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_72_0() { - jl_Object.call(this); - this.$_0566 = null; -} -let oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_72_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0566; - oncias_SemanticFunctionCheck$_$callClinit(); - return oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticFunctionCheck$_MODULE$, (oncie_Expression_arguments(var$2)).$apply1(0)), var$1); +oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_0 = $rt_classWithoutFields(), +oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_0_apply = (var$0, var$1) => { + return var$1.$name(); }; -function oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_165_0() { +function oncia_Clause$$anonfun$checkIfMixingLegacyVarLengthWithQPPs$1$lambda$_34_0() { jl_Object.call(this); - this.$_0826 = null; + this.$_0697 = null; } -let oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_165_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0826; - oncias_SemanticPatternCheck$_$callClinit(); - return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); -}, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_84_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_84_0_apply = var$0 => { - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +let oncia_Clause$$anonfun$checkIfMixingLegacyVarLengthWithQPPs$1$lambda$_34_0_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_0697.$error4($rt_s(6765), var$1.$position8); }; -function oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_135_0() { +function oncia_Clause$$anonfun$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$1$lambda$_36_0() { jl_Object.call(this); - this.$_01168 = null; -} -let oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_135_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_01168; - oncias_SemanticPatternCheck$_$callClinit(); - return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); -}, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_70_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_70_0_apply = var$0 => { - let var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$96$lambda$_161_0() { - let a = this; jl_Object.call(a); - a.$_0651 = null; - a.$_1223 = null; + this.$_0707 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$96$lambda$_161_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; +let oncia_Clause$$anonfun$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$1$lambda$_36_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0651; - var$3 = var$0.$_1223; - oncias_SemanticExpressionCheck$_$callClinit(); - if (jl_String_charAt(var$2, jl_String_indexOf(var$2, 48) + 1 | 0) != 111 && jl_String_charAt(var$2, jl_String_indexOf(var$2, 48) + 1 | 0) != 95) { - s_Predef$_$callClinit(); - var$4 = jl_String_indexOf(var$2, 48) + 1 | 0; - var$5 = var$2.$nativeString.length; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_0(var$6, (var$5 + $rt_s(7813).$nativeString.length | 0) - 0 | 0); - var$7 = var$4 <= 0 ? 0 : jl_Math_min(var$4, var$5); - if (var$7 > 0) - jl_AbstractStringBuilder_append2(var$6, var$2, 0, var$7); - jl_AbstractStringBuilder_append(var$6, $rt_s(7813)); - var$7 = (var$5 - var$7 | 0) - 0 | 0; - if (var$7 > 0) - jl_AbstractStringBuilder_append2(var$6, var$2, var$5 - var$7 | 0, var$5); - var$8 = jl_AbstractStringBuilder_toString(var$6); - var$9 = new sci_$colon$colon; - oncias_SemanticError$_$callClinit(); - var$10 = oncias_SemanticError$_MODULE$; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(7814)), var$2), $rt_s(7810)), var$8), $rt_s(6984)); - sci_$colon$colon__init_0(var$9, oncias_SemanticError$_apply(var$10, jl_AbstractStringBuilder_toString(var$6), var$3.$position32), sci_Nil$_MODULE$); - } else { - s_package$_$callClinit(); - var$9 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - } - return oncias_SemanticCheckResult__init_(var$1, var$9); + return var$0.$_0707.$error4($rt_s(6766), var$1.$position10); }, -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_91_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_91_0_apply = var$0 => { - oncias_SemanticFunctionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +oncie_Expression$ = $rt_classWithoutFields(), +oncie_Expression$_MODULE$ = null, +oncie_Expression$_DefaultTypeMismatchMessageGenerator = null, +oncie_Expression$__clinit_ = () => { + oncie_Expression$_MODULE$ = new oncie_Expression$; + oncie_Expression$_DefaultTypeMismatchMessageGenerator = new oncie_Expression$$_clinit_$lambda$_0_0; +}, +oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0 = $rt_classWithoutFields(), +oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0_apply = (var$0, var$1) => { + return var$1; }; -function oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_59_0() { +function oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0() { jl_Object.call(this); - this.$_0375 = null; + this.$_0450 = null; } -let oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_59_0_apply = (var$0, var$1) => { +let oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0_apply = (var$0, var$1) => { let var$2; - var$2 = var$0.$_0375; - oncias_SemanticFunctionCheck$_$callClinit(); - return oncius_TypeSpec_wrapInList(oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticFunctionCheck$_MODULE$, (oncie_Expression_arguments(var$2)).$apply1(0)), var$1)); -}; -function oncias_SemanticExpressionCheck$$$anonfun$check$104$lambda$_169_0() { - jl_Object.call(this); - this.$_0755 = null; -} -let oncias_SemanticExpressionCheck$$$anonfun$check$104$lambda$_169_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0755; - oncias_SemanticExpressionCheck$_$callClinit(); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7815), var$1.$position38)); -}; -function oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0() { - jl_Object.call(this); - this.$_0915 = null; -} -let oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0_apply = (var$0, var$1) => { - return oncie_LabelName__init_(var$0.$_0915, var$1); -}; -function oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0() { - jl_Object.call(this); - this.$_0819 = null; -} -let oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0_apply = (var$0, var$1) => { - return oncie_RelTypeName__init_(var$0.$_0819, var$1); -}; -function oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0() { - jl_Object.call(this); - this.$_0211 = null; -} -let oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0_apply = (var$0, var$1) => { - return oncie_PropertyKeyName__init_(var$0.$_0211, var$1); -}; -function oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0() { - jl_Object.call(this); - this.$_026 = null; -} -let oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0_apply = (var$0, var$1) => { - return oncie_LabelName__init_(var$0.$_026, var$1); + var$1 = var$1; + var$2 = var$0.$_0450; + return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); }; -function oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0() { +function oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_162_0() { jl_Object.call(this); - this.$_0594 = null; + this.$_042 = null; } -let oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0_apply = (var$0, var$1) => { - return oncie_RelTypeName__init_(var$0.$_0594, var$1); -}, -oncius_StorableType$ = $rt_classWithoutFields(), -oncius_StorableType$_MODULE$ = null, -oncius_StorableType$_storableType = null, -oncius_StorableType$_$callClinit = () => { - oncius_StorableType$_$callClinit = $rt_eraseClinit(oncius_StorableType$); - oncius_StorableType$__clinit_(); -}, -oncius_StorableType$__clinit_ = () => { - let var$1, var$2; - var$1 = new oncius_StorableType$; - oncius_StorableType$_$callClinit(); - oncius_StorableType$_MODULE$ = var$1; - oncius_package$_$callClinit(); - var$2 = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union((oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(), oncius_NumberType_covariant(oncius_package$_CTNumber(oncius_package$_MODULE$))), (oncius_package$_CTPoint(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTString(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTDuration(oncius_package$_MODULE$)).$invariant()), - (oncius_package$_CTDate(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTTime(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTLocalTime(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTLocalDateTime(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTDateTime(oncius_package$_MODULE$)).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTBoolean(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTNumber(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTInteger(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTFloat(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTPoint(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTString(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTDuration(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTDate(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTTime(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTLocalTime(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTLocalDateTime(var$1))).$invariant()); - var$1 = oncius_package$_MODULE$; - oncius_StorableType$_storableType = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTDateTime(var$1))).$invariant()); +let oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_162_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_042; + return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); }; -function oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_0() { +function oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_0() { jl_Object.call(this); - this.$_0160 = null; + this.$_0574 = null; } -let oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0160; - oncias_SemanticExpressionCheck$_$callClinit(); - return oncius_TypeSpec_unwrapLists(var$1); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_1 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_1_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_2 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_2_apply = (var$0, var$1, var$2) => { - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(7816)), var$2); - return jl_AbstractStringBuilder_toString(var$1); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_3 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_3_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_4 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_4_apply = (var$0, var$1, var$2) => { - oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(7817)), var$2); - return jl_AbstractStringBuilder_toString(var$1); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_5 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_5_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); -}, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_6 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_6_apply = (var$0, var$1, var$2) => { +let oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0574; oncias_SemanticExpressionCheck$_$callClinit(); - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(7818)), var$2); - return jl_AbstractStringBuilder_toString(var$1); + return jl_Boolean_valueOf(var$2.$contains((var$1.$_1()).$node1)); }, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_7 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_7_apply = var$0 => { +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_1 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_1_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - return oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = (var$1.$_2()).$location; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return s_Option_getOrElse(s_Option_map(oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$2), new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_0), new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_1); }, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_8 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_8_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5; +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_2 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_3 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_3_apply = (var$0, var$1) => { + var$1 = var$1; oncias_SemanticExpressionCheck$_$callClinit(); - oncius_TypeSpec$_$callClinit(); - var$1 = oncius_TypeSpec$_MODULE$; - var$2 = sr_ScalaRunTime$_MODULE$; - var$3 = $rt_createArray(oncius_TypeSpec, 2); - var$4 = var$3.data; - oncius_package$_$callClinit(); - var$4[0] = oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); - var$5 = oncius_package$_MODULE$; - var$4[1] = oncius_ListType_covariant(oncius_package$_CTList(var$5, oncius_package$_CTAny(var$5))); - return oncius_TypeSpec$_union(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); + return var$1.$_2(); }, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_9 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_9_apply = var$0 => { - let var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - oncius_package$_$callClinit(); - var$1 = oncius_package$_MODULE$; - return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); -}; -function oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0() { - let a = this; jl_Object.call(a); - a.$_0831 = null; - a.$_1283 = null; -} -let oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0831; - var$3 = var$0.$_1283; - var$4 = new oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0; - var$4.$_0179 = var$2; - var$4.$_168 = var$1; - return jl_Boolean_valueOf(sc_IterableOnceOps_exists$(var$3, var$4)); -}; -function oncia_Clause$$anonfun$checkIfMixingLegacyVarLengthWithQPPs$1$lambda$_34_0() { +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_4 = $rt_classWithoutFields(); +function oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_5() { jl_Object.call(this); - this.$_0715 = null; -} -let oncia_Clause$$anonfun$checkIfMixingLegacyVarLengthWithQPPs$1$lambda$_34_0_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_0715.$error2($rt_s(7819), var$1.$position8); -}; -function oncia_Clause$$anonfun$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$1$lambda$_36_0() { - jl_Object.call(this); - this.$_0726 = null; + this.$_0599 = null; } -let oncia_Clause$$anonfun$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$1$lambda$_36_0_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_0726.$error2($rt_s(7820), var$1.$position10); -}, -oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_5_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$1.$expression(); - var$3 = var$1.$alias(); - var$4 = new oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0; - var$4.$_0720 = var$2; - var$3 = s_Option_getOrElse(var$3, var$4); - return oncia_CommandResultItem__init_(var$2.$name4, var$3, var$1.$position()); -}, -oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0 = $rt_classWithoutFields(), -oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0_apply = (var$0, var$1) => { - return var$1; + var$2 = var$0.$_0599; + oncias_SemanticExpressionCheck$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + return jl_Boolean_valueOf(s_Option_contains(var$2.$get2(var$3), var$1)); }, -oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0 = $rt_classWithoutFields(), -oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0_apply = (var$0, var$1) => { +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_6 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_6_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 39); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 39); - return jl_AbstractStringBuilder_toString(var$2); + oncias_SemanticExpressionCheck$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + return s_Tuple2__init_(var$2, (var$1.$filterNot0(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_0)).$map(new oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_1)); +}; +function oncias_SemanticExpressionCheck$$anonfun$2() { + sr_AbstractPartialFunction.call(this); + this.$innerDefinitions$1 = null; +} +let oncias_SemanticExpressionCheck$$anonfun$2_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5, var$6, var$7, var$8; + a: { + $x = $x; + if ($x !== null) { + b: { + var$3 = $x.$_1(); + var$4 = $x.$_2(); + var$5 = $this.$innerDefinitions$1; + oncias_SemanticExpressionCheck$_$callClinit(); + var$6 = var$4.$name12; + var$7 = s_Tuple2__1$mcI$sp(oncias_SymbolUse_positionsAndUniqueIdString(var$4.$definition)); + if (var$5.$contains(var$6)) { + var$8 = var$5.$apply2(var$6); + var$6 = new oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_232_0; + var$6.$_0936 = var$7; + if (var$8.$exists(var$6)) { + var$7 = 1; + break b; + } + } + var$7 = 0; + } + if (var$7) { + $x = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + $default = $this.$innerDefinitions$1.$apply2(var$3); + var$8 = new oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0; + var$8.$_0596 = var$4; + $x = s_Predef$ArrowAssoc$_$minus$greater$extension($x, var$3, (oncias_SymbolUse_asVariable(($default.$find2(var$8)).$get1())).$position4); + break a; + } + } + $x = $default.$apply2($x); + } + return $x; }, -oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_7 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_7_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$1.$expression(); - var$3 = var$1.$alias(); - var$4 = new oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0; - var$4.$_0380 = var$2; - var$3 = s_Option_getOrElse(var$3, var$4); - return oncia_CommandResultItem__init_(var$2.$name4, var$3, var$1.$position()); + oncias_SemanticExpressionCheck$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + oncias_SemanticError$_$callClinit(); + var$3 = ong_GqlHelper_getGql42001_42N07(var$2, var$1.$offset(), var$1.$line(), var$1.$column()); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6767)), var$2), $rt_s(6768)); + oncias_SemanticError__init_(var$4, var$3, jl_AbstractStringBuilder_toString(var$5), var$1); + return var$4; }; -function scc_JavaCollectionWrappers$JCollectionWrapper() { - sc_AbstractIterable.call(this); - this.$underlying37 = null; +function oncias_SemanticExpressionCheck$$anonfun$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$state$1 = null; + a.$x71$1 = null; } -let scc_JavaCollectionWrappers$JCollectionWrapper_iterator = $this => { - return scc_AsScalaExtensions$IteratorHasAsScala_asScala(scc_AsScalaExtensions$IteratorHasAsScala__init_(sj_CollectionConverters$_MODULE$, $this.$underlying37.$iterator())); -}, -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0 = $rt_classWithoutFields(), -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0_apply = (var$0, var$1) => { - return oncie_Expression$TreeAcc_popScope(var$1); +let oncias_SemanticExpressionCheck$$anonfun$1_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5, var$6; + a: { + $x = $x; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = oncias_SemanticState$ScopeLocation$_MODULE$; + var$4 = $this.$state$1.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + if (s_Option_isEmpty(oncias_SemanticState$ScopeLocation$_symbol$extension(var$3, (var$4.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $this.$x71$1))).$location, $x.$name4))) { + oncias_SemanticPatternCheck$_$callClinit(); + onciu_AnonymousVariableNameGenerator$_$callClinit(); + if (!(onciu_AnonymousVariableNameGenerator$_isNamed(onciu_AnonymousVariableNameGenerator$_MODULE$, $x.$name4) ? 0 : 1)) { + oncias_SemanticError$_$callClinit(); + $default = $x.$name4; + var$5 = $x.$position4; + ong_GqlStatusInfoCodes_$callClinit(); + var$6 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$5.$offset(), var$5.$line(), var$5.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N29), + var$5.$offset(), var$5.$line(), var$5.$column()), ong_GqlParams$StringParam_variable, $default)))); + $x = new oncias_SemanticError; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6769)), $default), $rt_s(5995)); + oncias_SemanticError__init_($x, var$6, jl_AbstractStringBuilder_toString(var$3), var$5); + break a; + } + } + $x = $default.$apply2($x); + } + return $x; }; -function sc_MapOps$$anon$3() { - sc_AbstractIterator.call(this); - this.$iter0 = null; +function oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_113_0() { + let a = this; jl_Object.call(a); + a.$_0917 = null; + a.$_1316 = null; + a.$_2106 = null; } -let sc_MapOps$$anon$3_hasNext = $this => { - return $this.$iter0.$hasNext(); -}, -sc_MapOps$$anon$3_next = $this => { - return ($this.$iter0.$next()).$_2(); -}, -oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_162_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_162_0_apply = (var$0, var$1) => { +let oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_113_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6, var$7, var$8; var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - return var$1.$position4; + var$2 = var$2; + var$3 = var$0.$_0917; + var$4 = var$0.$_1316; + var$5 = var$0.$_2106; + if (!(var$2 instanceof oncie_LogicalVariable)) { + var$6 = var$1.$state; + var$7 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_1; + var$7.$_0613 = var$4; + var$2 = var$3.$expectType0(var$6, var$7, var$2, var$5, var$3.$expectType$default$5()); + } else { + var$6 = var$2; + var$7 = var$1.$state; + var$8 = new oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_0; + var$8.$_0137 = var$4; + var$2 = var$3.$expectType0(var$7, var$8, var$2, oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal__init_(ong_GqlParams$StringParam_process(ong_GqlParams$StringParam_ident, var$6.$name4)), var$3.$expectType$default$5()); + } + return oncias_SemanticCheckResult__init_(var$2.$state, var$1.$errors0.$concat(var$2.$errors0)); }, -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - return jl_Boolean_valueOf(var$1.$all() ? 0 : 1); +oncia_Where$ = $rt_classWithoutFields(), +oncia_Where$_MODULE$ = null, +oncia_Where$_$callClinit = () => { + oncia_Where$_$callClinit = $rt_eraseClinit(oncia_Where$); + oncia_Where$__clinit_(); }, -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_1 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; +oncia_Where$__clinit_ = () => { + let var$1; + var$1 = new oncia_Where$; + oncia_Where$_$callClinit(); + oncia_Where$_MODULE$ = var$1; +}, +oncia_Where$_checkExpression = ($this, $expression) => { + let var$2, var$3, var$4; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $expression); oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticError$_$callClinit(); - var$2 = oncias_SemanticError$_MODULE$; - var$3 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - return oncias_SemanticError$_apply(var$2, sc_StringOps$_stripMargin$extension(var$3, $rt_s(7821)), var$1.$position()); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = onciu_Foldable_folder$($expression); + sr_ClassTag$_$callClinit(); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$2, oncias_SemanticPatternCheck$_checkValidPropertyKeyNames(var$3, (onciu_Foldable$Folder_findAllByClass(var$4, sr_ClassTag$_apply(sr_ClassTag$_MODULE$, $rt_cls(oncie_Property)))).$map(new oncia_Where$$checkExpression$lambda$_5_0))), oncias_SemanticAnalysisTooling_expectType$(oncias_SemanticExpressionCheck$_MODULE$, new oncia_Where$$checkExpression$lambda$_5_1, $expression)); }; function sci_Stream$append$lambda$_49_0() { let a = this; jl_Object.call(a); - a.$_0608 = null; - a.$_1206 = null; + a.$_0598 = null; + a.$_1201 = null; } let sci_Stream$append$lambda$_49_0_apply = var$0 => { - return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_0608, var$0.$_1206); + return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_0598, var$0.$_1201); }; function sci_Stream$Cons() { let a = this; sci_Stream.call(a); @@ -349915,425 +275356,181 @@ sci_Stream$Cons__init_0 = ($this, $head, $tl) => { $this.$head7 = $head; $this.$tlGen = $tl; }, -sci_Stream$Cons__init_ = (var_0, var_1) => { - let var_2 = new sci_Stream$Cons(); - sci_Stream$Cons__init_0(var_2, var_0, var_1); - return var_2; -}, -onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_28_0 = $rt_classWithoutFields(), -onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_28_0_apply = (var$0, var$1) => { - var$1 = var$1; - onciap_Prettifier$_$callClinit(); - return onciap_ExpressionStringifier$_backtick(onciap_ExpressionStringifier$_MODULE$, var$1, 0, 1); -}; -function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0() { - jl_Object.call(this); - this.$_0194 = null; -} -let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0_apply = (var$0, var$1) => { - return var$1.$appended(var$0.$_0194); -}; -function oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0() { - jl_Object.call(this); - this.$_0753 = null; -} -let oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0_apply = (var$0, var$1) => { - return var$1.$appended(var$0.$_0753); -}; -function oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_89_0() { - jl_Object.call(this); - this.$_0447 = null; -} -let oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_89_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0447; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = (var$1.$patternParts()).$flatMap(new oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_0); - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = new oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_1; - var$4.$_0791 = var$1; - return oncias_SemanticCheck_chain$((oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$2, var$4)).$chain(oncias_SemanticPatternCheck$_ensureNoRepeatedRelationships(oncias_SemanticPatternCheck$_MODULE$, var$1)), oncias_SemanticPatternCheck$_ensureNoRepeatedVarLengthRelationships(oncias_SemanticPatternCheck$_MODULE$, var$1)); -}; -function sc_MapOps$$anon$2() { - sc_AbstractIterator.call(this); - this.$iter = null; -} -let sc_MapOps$$anon$2_hasNext = $this => { - return $this.$iter.$hasNext(); -}, -sc_MapOps$$anon$2_next = $this => { - return ($this.$iter.$next()).$_1(); -}; -function oncia_SingleRelTypeCheck$checkRelTypes$lambda$_3_0() { - jl_Object.call(this); - this.$_028 = null; -} -let oncia_SingleRelTypeCheck$checkRelTypes$lambda$_3_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncia_SingleRelTypeCheck_checkRelTypes$(var$0.$_028, var$1); -}; -function oavra_SemanticContext$PrecedencePredicate() { - oavra_SemanticContext.call(this); - this.$precedence = 0; -} -let oavra_SemanticContext$PrecedencePredicate_eval = ($this, $parser, $parserCallStack) => { - return oavr_Parser_precpred($parser, $parserCallStack, $this.$precedence); -}, -oavra_SemanticContext$PrecedencePredicate_evalPrecedence = ($this, $parser, $parserCallStack) => { - if (!oavr_Parser_precpred($parser, $parserCallStack, $this.$precedence)) - return null; - return oavra_SemanticContext$Empty_Instance; -}, -oavra_SemanticContext$PrecedencePredicate_hashCode = $this => { - return 31 + $this.$precedence | 0; -}, -oavra_SemanticContext$PrecedencePredicate_equals = ($this, $obj) => { - let $other; - if (!($obj instanceof oavra_SemanticContext$PrecedencePredicate)) - return 0; - if ($this === $obj) - return 1; - $other = $obj; - return $this.$precedence != $other.$precedence ? 0 : 1; -}, -oavra_SemanticContext$PrecedencePredicate_toString = $this => { - let var$1; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append(var$1, $rt_s(432)); - var$1 = jl_StringBuilder_append0(var$1, $this.$precedence); - jl_AbstractStringBuilder_append(var$1, $rt_s(7822)); - return jl_AbstractStringBuilder_toString(var$1); -}, -oavra_SemanticContext$PrecedencePredicate_compareTo = ($this, var$1) => { - var$1 = var$1; - return $this.$precedence - var$1.$precedence | 0; -}, -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_172_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_172_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - oncias_SemanticError$_$callClinit(); - return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7823), var$1.$position()); -}; -function sc_IterableOps$groupMapReduce$lambda$_76_0() { - let a = this; jl_Object.call(a); - a.$_01177 = null; - a.$_1100 = null; - a.$_2127 = null; - a.$_313 = null; -} -let sc_IterableOps$groupMapReduce$lambda$_76_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_1100; - var$3 = var$0.$_313; - var$4 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$5 = var$4.$_1(); - var$4 = scm_HashMap_get(var$2, var$5); - if (!(var$4 instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, var$4)) - $rt_throw(s_MatchError__init_(var$4)); - var$1 = oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_3_apply(var$3, var$1); - } else { - var$4 = var$4.$value5; - var$1 = oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_3_apply(var$3, var$1); - var$1 = var$4.$concat1(var$1); - } - var$1 = scm_HashMap_put01(var$2, var$5, var$1, 1); - if (var$1 === null) - var$1 = s_None$_MODULE$; - return var$1; -}; -function sc_MapFactory$ToFactory() { - jl_Object.call(this); - this.$factory2 = null; -} -let sc_MapFactory$ToFactory_fromSpecific = ($this, $it) => { - return sci_Map$_from($this.$factory2, $it); -}; -function oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_225_0() { - jl_Object.call(this); - this.$_01111 = 0; -} -let oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_225_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_01111; - oncias_SemanticExpressionCheck$_$callClinit(); - return jl_Boolean_valueOf(s_Tuple2__1$mcI$sp(oncias_SymbolUse_positionsAndUniqueIdString(var$1)) <= var$2 ? 0 : 1); -}, -oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0 = $rt_classWithoutFields(), -oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0_apply = (var$0, var$1) => { - return var$1.$asSensitiveLiteral(); -}, -oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1 = $rt_classWithoutFields(), -oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = new onciu_LiteralOffset; - var$3 = var$1; - onciu_LiteralOffset__init_0(var$2, (var$3.$position()).$offset(), (var$3.$position()).$line(), s_Some__init_(jl_Integer_valueOf(var$3.$literalLength()))); - return var$2; -}, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0 = $rt_classWithoutFields(), -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$deprecated0); -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1() { - let a = this; jl_Object.call(a); - a.$_0131 = null; - a.$_149 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0131; - var$3 = var$0.$_149; - return onn_DeprecatedProcedureFieldNotification__init_(var$2.$position9, oncifp_QualifiedName_toString(var$3), var$1.$name9); -}, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0 = $rt_classWithoutFields(), -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$deprecated0); -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1() { - let a = this; jl_Object.call(a); - a.$_0893 = null; - a.$_1307 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0893; - var$3 = var$0.$_1307; - return onn_DeprecatedProcedureFieldNotification__init_(var$2.$position9, oncifp_QualifiedName_toString(var$3), var$1.$name9); -}, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0 = $rt_classWithoutFields(), -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$deprecated0); -}; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1() { - let a = this; jl_Object.call(a); - a.$_0203 = null; - a.$_178 = null; -} -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0203; - var$3 = var$0.$_178; - return onn_DeprecatedFunctionFieldNotification__init_(var$2.$position11, oncifp_QualifiedName_toString(var$3), var$1.$name9); -}, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0 = $rt_classWithoutFields(), -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$deprecated0); +sci_Stream$Cons__init_ = (var_0, var_1) => { + let var_2 = new sci_Stream$Cons(); + sci_Stream$Cons__init_0(var_2, var_0, var_1); + return var_2; }; -function oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1() { - let a = this; jl_Object.call(a); - a.$_0804 = null; - a.$_1272 = null; +function oncia_SingleRelTypeCheck$checkRelTypes$lambda$_3_0() { + jl_Object.call(this); + this.$_025 = null; } -let oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1_apply = (var$0, var$1) => { - let var$2, var$3; +let oncia_SingleRelTypeCheck$checkRelTypes$lambda$_3_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0804; - var$3 = var$0.$_1272; - return onn_DeprecatedFunctionFieldNotification__init_(var$2.$position11, oncifp_QualifiedName_toString(var$3), var$1.$name9); + return oncia_SingleRelTypeCheck_checkRelTypes$(var$0.$_025, var$1); +}, +onciap_DefaultExpressionStringifier$$anonfun$stringify$35$lambda$_62_0 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$$anonfun$stringify$35$lambda$_62_0_apply = (var$0, var$1) => { + return var$1; +}, +onciap_DefaultExpressionStringifier$$anonfun$stringify$40$lambda$_67_0 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$$anonfun$stringify$40$lambda$_67_0_apply = (var$0, var$1) => { + return var$1; }; -function oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0() { +function oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0() { jl_Object.call(this); - this.$_0453 = null; + this.$_086 = null; } -let oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply = (var$0, var$1) => { - let var$2, var$3; +let oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0453.$currentWorkGraph; - var$3 = var$1.$useClausesToRemove; - return oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1__init_(var$1.$$outer34, var$3, var$2); + var$2 = var$0.$_086; + oncius_TypeSpec$_$callClinit(); + return jl_Boolean_valueOf(oncius_TypeRange_contains(var$1, var$2)); }; -function oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0() { - let a = this; jl_Object.call(a); - a.$_0235 = null; - a.$_190 = null; +function oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1() { + jl_Object.call(this); + this.$_01041 = null; } -let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0_apply = (var$0, var$1) => { - let var$2, var$3; +let oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0235; - var$3 = var$0.$_190; - return var$2.$merge$1.$apply3(var$1, var$3); + var$2 = var$0.$_01041; + oncius_TypeSpec$_$callClinit(); + return jl_Boolean_valueOf(oncius_TypeRange_contains(var$2, var$1)); +}, +onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_78_0 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_78_0_apply = (var$0, var$1) => { + return var$1; }; -function oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1() { +function oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0() { jl_Object.call(this); - this.$_0863 = null; + this.$_0895 = 0; } -let oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1_apply = var$0 => { - return var$0.$_0863; +let oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0_apply = (var$0, var$1) => { + return var$1.$semanticCheckInSubqueryExpressionContext(var$0.$_0895); +}, +oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if ($x instanceof oncie_StringLiteral) { + $default = $x.$value8; + oncias_SemanticPatternCheck$_$callClinit(); + $x = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, $default); + } else if (!($x instanceof oncie_Null)) + $x = $default.$apply2($x); + else { + oncias_SemanticPatternCheck$_$callClinit(); + $x = oncias_SemanticPatternCheck$_org$neo4j$cypher$internal$ast$semantics$SemanticPatternCheck$$checkValidTokenName(oncias_SemanticPatternCheck$_MODULE$, null); + } + return $x; +}, +oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0 = $rt_classWithoutFields(), +oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$containsMatchSpecificLabelExpression()); +}, +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_0 = $rt_classWithoutFields(), +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_0_apply = (var$0, var$1, var$2) => { + return oncius_TypeSpec_union(var$1, (sci_Vector_head(var$2.$argumentTypes())).$covariant()); }; -function sc_IterableOnceOps$foldRight$lambda$_36_0() { +function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_1() { jl_Object.call(this); - this.$_0770 = null; + this.$_01009 = null; } -let sc_IterableOnceOps$foldRight$lambda$_36_0_apply = (var$0, var$1, var$2) => { - return var$0.$_0770.$apply3(var$2, var$1); +let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_1_apply = var$0 => { + return var$0.$_01009; }; -function oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_116_0() { - let a = this; jl_Object.call(a); - a.$_0865 = null; - a.$_1297 = null; +function oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_2() { + jl_Object.call(this); + this.$_0490 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_116_0_apply = (var$0, var$1) => { - let var$2, var$3; +let oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_2_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0865; - var$3 = var$0.$_1297; - return oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(var$2.$types0(var$1), var$3); + return jl_Boolean_valueOf(oncius_TypeSpec_containsAny(var$0.$_0490, (sci_Vector_head(var$1.$argumentTypes())).$covariant())); }, -oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0 = $rt_classWithoutFields(), -oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6; - a: { - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$2 !== null) { - var$4 = var$2.$_1(); - var$2 = var$2.$_2(); - if (var$1.$contains(var$4)) { - var$1 = var$1.$updated0(var$4, (var$1.$apply2(var$4)).$incl(var$2)); - break a; - } - } - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = var$2.$_1(); - var$2 = var$2.$_2(); - s_Predef$_$callClinit(); - var$4 = s_Predef$_Set(s_Predef$_MODULE$); - var$5 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(oncias_Symbol, 1); - var$6.data[0] = var$2; - var$1 = var$1.$updated0(var$3, var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6))); - } - return var$1; +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_3 = $rt_classWithoutFields(), +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_3_apply = (var$0, var$1) => { + return var$1.$removeFirstArgumentType(); }, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_0_apply = (var$0, var$1) => { - var$1 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_1 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_1_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - return jl_Boolean_valueOf(var$1.$unionSymbol); + oncius_package$_$callClinit(); + return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); }, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_1 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_1_apply = (var$0, var$1) => { - var$1 = var$1; +oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_0_apply = var$0 => { oncias_SemanticExpressionCheck$_$callClinit(); - return var$1.$definition; + oncius_StorableType$_$callClinit(); + return oncius_StorableType$_storableType; }; -function sc_View$Drop() { - let a = this; sc_AbstractView.call(a); - a.$underlying20 = null; - a.$n4 = 0; - a.$normN = 0; +function oncias_SemanticExpressionCheck$$$anonfun$check$76$lambda$_156_0() { + let a = this; jl_Object.call(a); + a.$_0829 = null; + a.$_1278 = null; } -let sc_View$Drop_iterator = $this => { - return ($this.$underlying20.$iterator0()).$drop1($this.$n4); +let oncias_SemanticExpressionCheck$$$anonfun$check$76$lambda$_156_0_apply = (var$0, var$1) => { + return oncias_SemanticExpressionCheck$_$anonfun$check$77(var$0.$_0829, var$0.$_1278, var$1); }, -sc_View$Drop_normN = $this => { - return $this.$normN; -}, -sc_View$Drop_knownSize = $this => { - let $size; - $size = $this.$underlying20.$knownSize(); - if ($size < 0) - return (-1); - return jl_Math_max($size - $this.$normN | 0, 0); -}, -sc_View$Drop_isEmpty = $this => { - return ($this.$iterator0()).$isEmpty(); -}, -sc_View$Drop__init_ = ($this, $underlying, $n) => { - $this.$underlying20 = $underlying; - $this.$n4 = $n; - $this.$normN = jl_Math_max($n, 0); -}, -sc_View$Drop__init_0 = (var_0, var_1) => { - let var_2 = new sc_View$Drop(); - sc_View$Drop__init_(var_2, var_0, var_1); - return var_2; +oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0 = $rt_classWithoutFields(), +oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0_apply = var$0 => { + let var$1; + var$1 = new jl_IllegalStateException; + jl_Throwable__init_(var$1, $rt_s(6770)); + $rt_throw(var$1); }; -function oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0() { +function sc_IterableOnceOps$max$lambda$_81_0() { jl_Object.call(this); - this.$_0887 = null; + this.$_0478 = null; } -let oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0_apply = (var$0, var$1) => { - return oncie_PropertyKeyName__init_(var$0.$_0887, var$1); -}, -onih_NameUtil = $rt_classWithoutFields(), -onih_NameUtil_BACKTICK_UNICODE_ESCAPED = null, -onih_NameUtil_ALPHA_NUMERIC = null, -onih_NameUtil_GLOB = null, -onih_NameUtil_$callClinit = () => { - onih_NameUtil_$callClinit = $rt_eraseClinit(onih_NameUtil); - onih_NameUtil__clinit_(); +let sc_IterableOnceOps$max$lambda$_81_0_apply = (var$0, var$1, var$2) => { + return var$0.$_0478.$max0(var$1, var$2); }, -onih_NameUtil_forceEscapeName = $string => { +oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0 = $rt_classWithoutFields(), +oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0_apply = (var$0, var$1) => { + return var$1.$flatten0(); +}; +function oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0() { + jl_Object.call(this); + this.$_0315 = null; +} +let oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0_apply = (var$0, var$1) => { let var$2; - onih_NameUtil_$callClinit(); - var$2 = jl_String_replace(jur_Matcher_replaceAll(jur_Pattern_matcher(onih_NameUtil_BACKTICK_UNICODE_ESCAPED, $string), $rt_s(412)), $rt_s(412), $rt_s(413)); - $string = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($string); - jl_AbstractStringBuilder_append0($string, 96); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append($string, var$2), 96); - return jl_AbstractStringBuilder_toString($string); -}, -onih_NameUtil__clinit_ = () => { - onih_NameUtil_BACKTICK_UNICODE_ESCAPED = jur_Pattern_compile($rt_s(7824)); - onih_NameUtil_ALPHA_NUMERIC = jur_Pattern_compile($rt_s(7825)); - onih_NameUtil_GLOB = jur_Pattern_compile($rt_s(7826)); + var$2 = var$0.$_0315; + oncia_CommandClause$_$callClinit(); + return oncia_CommandClause$_updateExpression$1(var$1, var$2); }; -function oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_88_0() { +function oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0() { jl_Object.call(this); - this.$_0701 = null; + this.$_0405 = null; } -let oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_88_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0701; - var$2 = new oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_87_0; - var$2.$_0894 = var$1; - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(var$1, var$1.$variable16, var$2, s_None$_MODULE$, 0)), oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(oncias_SemanticCheckableIterableOnce$_MODULE$, var$1.$updates)); +let oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0_apply = var$0 => { + return var$0.$_0405.$typ.$covariant(); }; function oncifp_ResolvedCall$$anonfun$argumentCheck$2$lambda$_62_0() { jl_Object.call(this); - this.$_01037 = null; + this.$_01025 = null; } let oncifp_ResolvedCall$$anonfun$argumentCheck$2$lambda$_62_0_apply = var$0 => { - return var$0.$_01037.$typ.$covariant(); + return var$0.$_01025.$typ.$covariant(); }, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_0 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_0_apply = (var$0, var$1) => { - oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_Scope_allSymbols(var$1.$location.$elem0); +oncius_TypeRange$ = $rt_classWithoutFields(), +oncius_TypeRange$_MODULE$ = null, +oncius_TypeRange$__clinit_ = () => { + oncius_TypeRange$_MODULE$ = new oncius_TypeRange$; }, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_1 = $rt_classWithoutFields(), -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_1_apply = var$0 => { - oncias_SemanticExpressionCheck$_$callClinit(); - s_Predef$_$callClinit(); - return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); +oncius_TypeRange$_apply = ($this, $lower, $upper) => { + return oncius_TypeRange__init_($lower, s_Some__init_($upper)); }; function sci_LazyList$$scala$collection$immutable$LazyList$$collectImpl$lambda$_19_0() { let a = this; jl_Object.call(a); - a.$_01027 = null; - a.$_1353 = null; + a.$_01016 = null; + a.$_1347 = null; } let sci_LazyList$$scala$collection$immutable$LazyList$$collectImpl$lambda$_19_0_apply = var$0 => { let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_01027; - var$2 = var$0.$_1353; + var$1 = var$0.$_01016; + var$2 = var$0.$_1347; sci_LazyList$_$callClinit(); var$3 = sr_Statics_pfMarker; var$4 = sci_LazyList$_scala$collection$immutable$LazyList$$anyToMarker(sci_LazyList$_MODULE$); @@ -350345,80 +275542,86 @@ let sci_LazyList$$scala$collection$immutable$LazyList$$collectImpl$lambda$_19_0_ var$1.$elem = var$5; } return var$6 === var$3 ? sci_LazyList$State$Empty$_MODULE$ : sci_LazyList$State$Cons__init_(var$6, sci_LazyList$_scala$collection$immutable$LazyList$$collectImpl(sci_LazyList$_MODULE$, var$5, var$2)); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0 = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit(); + return var$1.$use.$value20; +}; +function sc_View$DistinctBy() { + let a = this; sc_AbstractView.call(a); + a.$underlying13 = null; + a.$f9 = null; +} +let sc_View$DistinctBy_iterator = $this => { + return ($this.$underlying13.$iterator0()).$distinctBy0($this.$f9); +}, +sc_View$DistinctBy_knownSize = $this => { + if ($this.$underlying13.$knownSize()) + return (-1); + return 0; +}, +sc_View$DistinctBy_isEmpty = $this => { + return $this.$underlying13.$isEmpty(); }; function sci_LazyList$reverseOnto$lambda$_96_0() { let a = this; jl_Object.call(a); - a.$_01026 = null; - a.$_1352 = null; + a.$_01015 = null; + a.$_1346 = null; } let sci_LazyList$reverseOnto$lambda$_96_0_apply = var$0 => { let var$1, var$2; - var$1 = var$0.$_01026; - var$2 = var$0.$_1352; + var$1 = var$0.$_01015; + var$2 = var$0.$_1346; return sci_LazyList$State$Cons__init_(sci_LazyList_head(var$1), var$2); }; function sci_LazyList$$from$lambda$_32_0() { let a = this; jl_Object.call(a); - a.$_0824 = 0; - a.$_1280 = 0; + a.$_0797 = 0; + a.$_1265 = 0; } let sci_LazyList$$from$lambda$_32_0_apply = var$0 => { let var$1, var$2; - var$1 = var$0.$_0824; - var$2 = var$0.$_1280; + var$1 = var$0.$_0797; + var$2 = var$0.$_1265; sci_LazyList$_$callClinit(); return sci_LazyList$State$Cons__init_(jl_Integer_valueOf(var$1), sci_LazyList$_from0(sci_LazyList$_MODULE$, var$1 + var$2 | 0, var$2)); -}; -function sc_View$DistinctBy() { - let a = this; sc_AbstractView.call(a); - a.$underlying14 = null; - a.$f9 = null; -} -let sc_View$DistinctBy_iterator = $this => { - return ($this.$underlying14.$iterator0()).$distinctBy0($this.$f9); -}, -sc_View$DistinctBy_knownSize = $this => { - if ($this.$underlying14.$knownSize()) - return (-1); - return 0; -}, -sc_View$DistinctBy_isEmpty = $this => { - return $this.$underlying14.$isEmpty(); }, oncia_SetClause$$anonfun$13 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncia_SetClause$$anonfun$13_applyOrElse = ($this, $x1, $default) => { if ($x1 instanceof oncia_SetLabelItem && 1 == $x1.$containsIs1) return jl_Boolean_valueOf(1); - return s_PartialFunction$_fallback_fn; + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); }, oncia_SetClause$$anonfun$14 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncia_SetClause$$anonfun$14_applyOrElse = ($this, $x2, $default) => { - let $labels, $dynamicLabels; + let $dynamicLabels, $labels; if ($x2 instanceof oncia_SetLabelItem) { - $x2 = $x2; - $labels = $x2.$labels2; - $dynamicLabels = $x2.$dynamicLabels; + $dynamicLabels = $x2; + $labels = $dynamicLabels.$labels2; + $dynamicLabels = $dynamicLabels.$dynamicLabels; if (($labels.$length() + $dynamicLabels.$length() | 0) > 1) return jl_Boolean_valueOf(1); } - return s_PartialFunction$_fallback_fn; + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x2); }; -function oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_64_0() { +function oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_69_0() { jl_Object.call(this); - this.$_0880 = null; + this.$_0592 = null; } -let oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_64_0_apply = var$0 => { +let oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_69_0_apply = var$0 => { let var$1, var$2, var$3; - var$1 = var$0.$_0880; + var$1 = var$0.$_0592; var$2 = new onciap_Prettifier; - var$3 = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_ExpressionStringifier$_failingExtender, 0, 0, 0, 0); + onciap_ExpressionStringifier$_$callClinit(); + var$3 = onciap_ExpressionStringifier$_MODULE$; + var$3 = onciap_ExpressionStringifier$_apply(var$3, onciap_ExpressionStringifier$_apply$default$1(var$3), 0, 0, 0, 0); onciap_Prettifier$_$callClinit(); - onciap_Prettifier__init_(var$2, var$3, onciap_Prettifier$_apply$default$2(onciap_Prettifier$_MODULE$), 1); - var$2 = onciap_Prettifier_prettifySetItems(var$2, var$1.$items5.$flatMap(new oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_85_0)); - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - oncias_SemanticError$_$callClinit(); - return oncias_package$_liftSemanticErrorDef(var$3, oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_UpdateClause_mixingIsWithMultipleLabelsMessage$(var$1, $rt_s(5090), var$2), var$1.$position109)); + onciap_Prettifier__init_(var$2, var$3, onciap_Prettifier$EmptyExtension$_MODULE$, 1); + var$2 = onciap_Prettifier_prettifySetItems(var$2, var$1.$items5.$flatMap(new oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_90_0)); + var$3 = ong_GqlHelper_getGql42001_42I29($rt_s(4468), var$2, var$1.$position36.$offset(), var$1.$position36.$line(), var$1.$position36.$column()); + return oncias_package$_liftSemanticErrorDef(oncias_package$_MODULE$, oncias_SemanticError__init_0(var$3, oncia_UpdateClause_mixingIsWithMultipleLabelsMessage$(var$1, $rt_s(4468), var$2), var$1.$position36)); }, oncia_Merge$$anonfun$12 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncia_Merge$$anonfun$12_applyOrElse = ($this, $x1, $default) => { @@ -350430,771 +275633,1378 @@ oncia_Merge$$anonfun$12_isDefinedAt = ($this, $x1) => { if (!$rt_isInstance($x1, oncia_FullSubqueryExpression)) return 0; return 1; -}, -oncia_NativeAuth$$anonfun$password$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_NativeAuth$$anonfun$password$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - if ($x instanceof oncia_Password) - $default = $x; - return $default; -}, -oncia_NativeAuth$$anonfun$changeRequired$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_NativeAuth$$anonfun$changeRequired$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - if ($x instanceof oncia_PasswordChange) - $default = jl_Boolean_valueOf($x.$requireChange); - return $default; }; function oncias_SemanticCheck$$error$lambda$_3_0() { jl_Object.call(this); - this.$_0821 = null; + this.$_0794 = null; } let oncias_SemanticCheck$$error$lambda$_3_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0821; + var$2 = var$0.$_0794; oncias_SemanticCheck$_$callClinit(); - oncias_SemanticCheckResult$_$callClinit(); return oncias_SemanticCheckResult$_error1(oncias_SemanticCheckResult$_MODULE$, var$1, var$2); }, -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_0 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_0_apply = (var$0, var$1) => { +oncias_Scope$allSymbols$lambda$_16_0 = $rt_classWithoutFields(), +oncias_Scope$allSymbols$lambda$_16_0_apply = (var$0, var$1, var$2) => { + let var$3; var$1 = var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - return jl_Boolean_valueOf(oncias_SemanticFunctionCheck$_withKey(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(5647), var$1)); + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + return sc_IterableOnceOps_foldLeft$(var$3.$_20.$symbolTable, var$1, new oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0); }, -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_1 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_1_apply = (var$0, var$1) => { +oncia_Where$$checkExpression$lambda$_5_0 = $rt_classWithoutFields(), +oncia_Where$$checkExpression$lambda$_5_0_apply = (var$0, var$1) => { var$1 = var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - return jl_Boolean_valueOf(oncias_SemanticFunctionCheck$_withKey(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(5646), var$1)); + oncia_Where$_$callClinit(); + return var$1.$propertyKey0; }, -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_2 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_2_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - return jl_Boolean_valueOf(oncias_SemanticFunctionCheck$_withKey(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(7827), var$1)); +oncia_Where$$checkExpression$lambda$_5_1 = $rt_classWithoutFields(), +oncia_Where$$checkExpression$lambda$_5_1_apply = var$0 => { + oncia_Where$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_BooleanType_covariant(oncius_package$_CTBoolean(oncius_package$_MODULE$)); }, -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_3 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_3_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - return jl_Boolean_valueOf(oncias_SemanticFunctionCheck$_withKey(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(7828), var$1)); +oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_0 = $rt_classWithoutFields(), +oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_0_apply = (var$0, var$1) => { + return oncia_SubqueryCall$InTransactionsBatchParameters_semanticCheck(var$1); }, -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_4 = $rt_classWithoutFields(), -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_4_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - oncias_SemanticFunctionCheck$_$callClinit(); - var$2 = (var$1.$_1()).$name5; - var$1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$1); - jl_AbstractStringBuilder_append0(var$1, 39); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$2), 39); - return jl_AbstractStringBuilder_toString(var$1); +oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_1 = $rt_classWithoutFields(), +oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_1_apply = (var$0, var$1) => { + return oncia_SubqueryCall$InTransactionsConcurrencyParameters_semanticCheck(var$1); +}, +oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_2 = $rt_classWithoutFields(), +oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_2_apply = (var$0, var$1) => { + return oncia_SubqueryCall$InTransactionsReportParameters_semanticCheck(var$1); }; -function oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_54_0() { - let a = this; jl_Object.call(a); - a.$_059 = null; - a.$_126 = null; +function oncia_SubqueryCall$checkNoNestedCallInTransactions$lambda$_21_0() { + jl_Object.call(this); + this.$_0418 = null; } -let oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_54_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; +let oncia_SubqueryCall$checkNoNestedCallInTransactions$lambda$_21_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_059; - var$3 = var$0.$_126; - oncias_SemanticFunctionCheck$_$callClinit(); - var$4 = var$2.$args0.$head(); - var$5 = (oncias_SemanticState_expressionType(var$1, var$4)).$specified; - var$6 = jl_Boolean_valueOf(0); - var$7 = new oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_98_0; - var$7.$_0116 = var$5; - if (sr_BoxesRunTime_unboxToBoolean(var$3.$foldLeft(var$6, var$7))) { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } else { - var$3 = var$2.$function1; - oncief_ToString$_$callClinit(); - if (jl_Object_equals(oncief_ToString$_MODULE$, var$3)) { - var$2 = oncius_TypeSpec_mkString1(var$5, $rt_s(45)); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7829)), var$2); - var$2 = jl_AbstractStringBuilder_toString(var$3); - } else { - oncief_ToBoolean$_$callClinit(); - if (!jl_Object_equals(oncief_ToBoolean$_MODULE$, var$3)) { - var$2 = oncius_TypeSpec_mkString1(var$5, $rt_s(45)); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7830)), var$2); - var$2 = jl_AbstractStringBuilder_toString(var$3); - } else { - var$3 = oncius_TypeSpec_mkString1(var$5, $rt_s(45)); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(7831)), var$3); - var$2 = jl_AbstractStringBuilder_toString(var$5); + return var$0.$_0418.$error4($rt_s(6771), var$1.$position()); +}; +function oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0() { + jl_Object.call(this); + this.$_0313 = null; +} +let oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0313; + oncifp_ProcedureWarnings$_$callClinit(); + var$3 = var$1.$name9; + var$2 = var$2.$outputName; + if (var$3 !== null) { + if (!jl_String_equals(var$3, var$2)) + break b; + else + break c; + } + if (var$2 !== null) + break b; + } + if (var$1.$deprecated0) { + var$4 = 1; + break a; } } - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_error0(oncias_SemanticCheckResult$_MODULE$, var$1, var$2, var$4.$position()); + var$4 = 0; } - return var$1; + return jl_Boolean_valueOf(var$4); }, -oncia_Match$$anonfun$5 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_Match$$anonfun$5_applyOrElse = ($this, $x, $default) => { - $x = $x; - return !($x instanceof oncia_UsingJoinHint) ? $default.$apply2($x) : $x.$variables1.$toIndexedSeq(); +oncifp_SelfReferenceCheckWithinPatternPart$$createError$lambda$_5_0 = $rt_classWithoutFields(), +oncifp_SelfReferenceCheckWithinPatternPart$$createError$lambda$_5_0_apply = (var$0, var$1) => { + return oncius_TypeSpec_toShortString(var$1); +}; +function sc_SeqOps$intersect$lambda$_118_0() { + jl_Object.call(this); + this.$_0970 = null; +} +let sc_SeqOps$intersect$lambda$_118_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0970; + var$3 = new sr_BooleanRef; + var$3.$elem6 = 1; + var$4 = new sc_SeqOps$$anonfun$intersect$1$lambda$_139_0; + var$4.$_0121 = var$3; + scm_HashMap_updateWith(var$2, var$1, var$4); + return jl_Boolean_valueOf(var$3.$elem6); +}, +oncie_Expression$$_clinit_$lambda$_0_0 = $rt_classWithoutFields(), +oncie_Expression$$_clinit_$lambda$_0_0_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6772)), var$1), $rt_s(6773)), var$2); + return jl_AbstractStringBuilder_toString(var$3); +}, +sci_Stream$Empty$ = $rt_classWithoutFields(sci_Stream), +sci_Stream$Empty$_MODULE$ = null, +sci_Stream$Empty$__clinit_ = () => { + sci_Stream$Empty$_MODULE$ = new sci_Stream$Empty$; +}, +sci_Stream$Empty$_isEmpty = $this => { + return 1; +}, +sci_Stream$Empty$_knownSize = $this => { + return 0; +}, +sci_Stream$Empty$_tailDefined = $this => { + return 0; +}, +sci_Stream$Empty$_force = $this => { + return $this; +}, +sci_Stream$Empty$_tail = $this => { + let var$1; + var$1 = new jl_UnsupportedOperationException; + jl_Throwable__init_(var$1, $rt_s(6774)); + $rt_throw(var$1); +}, +sci_Stream$Empty$_head = $this => { + let var$1; + var$1 = new ju_NoSuchElementException; + jl_Throwable__init_(var$1, $rt_s(6775)); + $rt_throw(var$1); +}; +function sci_Stream$$fromIterator$lambda$_21_0() { + jl_Object.call(this); + this.$_092 = null; +} +let sci_Stream$$fromIterator$lambda$_21_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_092; + return sci_Stream$_fromIterator(sci_Stream$_MODULE$, var$1); +}, +onciu_RewritableJavascript$PROXY$9_269 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_269_numParameters = var$1 => { + return (jl_Integer_valueOf(8)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_270 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_270_numParameters = var$1 => { + return (jl_Integer_valueOf(7)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_271 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_271_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_272 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_272_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_273 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_273_numParameters = var$1 => { + return (jl_Integer_valueOf(9)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_274 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_274_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_275 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_275_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; +}, +onciu_RewritableJavascript$PROXY$11_269 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_269_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_270 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_270_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_271 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_271_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_272 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_272_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_273 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_273_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_274 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_274_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_275 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_275_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; }, -oncia_Match$uniqueHints$lambda$_69_0 = $rt_classWithoutFields(), -oncia_Match$uniqueHints$lambda$_69_0_apply = (var$0, var$1) => { +oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0 = $rt_classWithoutFields(), +oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; + var$2 = new oncil_NodeLabels$KnownLabels; s_Predef$_$callClinit(); - return var$1; + var$3 = s_Predef$_Set(s_Predef$_MODULE$); + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(jl_String, 1); + var$5.data[0] = var$1; + var$2.$labelNames = var$3.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); + return var$2; }, -oncia_Match$$anonfun$6 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_Match$$anonfun$6_applyOrElse = ($this, $x, $default) => { - let var$3; - a: { - $x = $x; - if ($x !== null) { - var$3 = $x.$_1(); - if (($x.$_2()).$length() > 1) { - oncias_SemanticError$_$callClinit(); - $x = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7832), var$3.$position4); - break a; - } - } - $x = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); - } - return $x; +oncil_NodeLabels = $rt_classWithoutFields(0), +oncil_NodeLabels$SomeUnknownLabels$ = $rt_classWithoutFields(), +oncil_NodeLabels$SomeUnknownLabels$_MODULE$ = null, +oncil_NodeLabels$SomeUnknownLabels$__clinit_ = () => { + oncil_NodeLabels$SomeUnknownLabels$_MODULE$ = new oncil_NodeLabels$SomeUnknownLabels$; +}, +oncil_NodeLabels$SomeUnknownLabels$_productArity = $this => { + return 0; +}, +oncil_NodeLabels$SomeUnknownLabels$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncil_NodeLabels$SomeUnknownLabels$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncil_NodeLabels$SomeUnknownLabels$_hashCode = $this => { + return (-592101323); +}, +oncil_NodeLabels$SomeUnknownLabels$_toString = $this => { + return $rt_s(6776); }; -function oncia_Match$uniqueHints$lambda$_69_1() { +function oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0() { jl_Object.call(this); - this.$_067 = null; + this.$_0763 = null; +} +let oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0763; + var$3 = var$2.$name4; + return var$1.$updated0(var$3, sci_List_$colon$colon(var$1.$apply2(var$3), var$2)); +}; +function oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1() { + jl_Object.call(this); + this.$_0249 = null; +} +let oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0249; + var$3 = var$2.$name4; + return var$1.$updated0(var$3, sci_List_$colon$colon(var$1.$apply2(var$3), var$2)); +}, +oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { + var$1 = var$1; + s_Predef$_$callClinit(); + return var$1; +}; +function onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0() { + jl_Object.call(this); + this.$_0771 = null; } -let oncia_Match$uniqueHints$lambda$_69_1_apply = (var$0, var$1) => { - return oncias_SemanticCheckResult__init_(var$1, var$0.$_067); +let onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_dispatch(var$0.$_0771, var$1); }, -oncia_Match$checkMatchMode$lambda$_71_0 = $rt_classWithoutFields(), -oncia_Match$checkMatchMode$lambda$_71_0_apply = (var$0, var$1) => { +onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1_apply = (var$0, var$1) => { let var$2; - var$2 = var$1.$features; - oncias_SemanticFeature$MatchModes$_$callClinit(); - return jl_Boolean_valueOf(var$2.$contains(oncias_SemanticFeature$MatchModes$_MODULE$) ? 0 : 1); + var$1 = var$1; + var$2 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + return jl_Boolean_valueOf(sc_StringOps$_nonEmpty$extension(var$2, var$1)); }; -function oncia_Match$checkMatchMode$lambda$_71_1() { +function onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_2() { jl_Object.call(this); - this.$_0650 = null; + this.$_0585 = null; } -let oncia_Match$checkMatchMode$lambda$_71_1_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0650; - var$2 = var$1.$matchMode1; - if (var$2 instanceof oncie_MatchMode$DifferentRelationships && var$2.$implicitlyCreated) { - oncias_package$_$callClinit(); - var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncia_Match$$anonfun$checkMatchMode$2$lambda$_124_0); - } else { - var$3 = var$2.$prettified(); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7833)), var$3), $rt_s(7834)); - var$1 = oncias_SemanticAnalysisTooling_error$(var$1, jl_AbstractStringBuilder_toString(var$2), var$1.$matchMode1.$position()); +let onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_2_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0585; + var$3 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + return sc_StringOps$_$plus$plus$extension(var$3, onciap_Prettifier$IndentingQueryPrettifier_asString5(var$2, var$1), $rt_s(370)); +}, +onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_3 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_3_apply = var$0 => { + return $rt_s(4); +}; +function sci_LazyList$LazyBuilder() { + let a = this; jl_Object.call(a); + a.$next9 = null; + a.$list4 = null; +} +let sci_LazyList$LazyBuilder_sizeHint = ($this, $size) => { + return; +}, +sci_LazyList$LazyBuilder_sizeHint0 = ($this, $coll, $delta) => { + scm_Builder_sizeHint$($this, $coll, $delta); +}, +sci_LazyList$LazyBuilder_addAll = ($this, $xs) => { + let var$2, var$3, var$4; + if ($xs.$length()) { + var$2 = new sci_LazyList$LazyBuilder$DeferredState; + var$3 = $this.$next9; + var$4 = new sci_LazyList$LazyBuilder$addAll$lambda$_12_0; + var$4.$_0798 = $xs; + var$4.$_1266 = var$2; + sci_LazyList$LazyBuilder$DeferredState_init(var$3, var$4); + $this.$next9 = var$2; } - return var$1; + return $this; +}, +sci_LazyList$LazyBuilder_addOne = ($this, $elem) => { + let var$2, var$3, var$4; + var$2 = new sci_LazyList$LazyBuilder$DeferredState; + var$3 = $this.$next9; + var$4 = new sci_LazyList$LazyBuilder$addOne$lambda$_11_0; + var$4.$_01105 = $elem; + var$4.$_1377 = var$2; + sci_LazyList$LazyBuilder$DeferredState_init(var$3, var$4); + $this.$next9 = var$2; + return $this; +}, +sci_LazyList$LazyBuilder_result = $this => { + sci_LazyList$LazyBuilder$DeferredState_init($this.$next9, new sci_LazyList$LazyBuilder$result$lambda$_10_0); + return $this.$list4; +}; +function oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0() { + jl_Object.call(this); + this.$_0156 = null; +} +let oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isAssignableFrom0(var$0.$_0156)); +}, +oncia_SingleQuery$checkImportingWith$lambda$_78_0 = $rt_classWithoutFields(), +oncia_SingleQuery$checkImportingWith$lambda$_78_0_apply = (var$0, var$1) => { + return oncia_Clause_semanticCheck$(var$1); }; -function oncia_Match$checkMatchMode$lambda$_71_2() { +function onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0() { let a = this; jl_Object.call(a); - a.$_08 = null; - a.$_17 = null; + a.$_0566 = null; + a.$_1193 = null; +} +let onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0566; + var$3 = var$0.$_1193; + return var$1.$appended(sr_AbstractPartialFunction_apply(var$2.$f$1, var$3)); +}; +function oncius_TypeSpec$intersect$lambda$_15_0() { + jl_Object.call(this); + this.$_0136 = null; } -let oncia_Match$checkMatchMode$lambda$_71_2_apply = var$0 => { - return oncias_SemanticAnalysisTooling_whenState$default$3$(var$0.$_08, var$0.$_17); +let oncius_TypeSpec$intersect$lambda$_15_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0136.$ranges; + var$3 = new oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0; + var$3.$_0243 = var$1; + return var$2.$flatMap(var$3); }; -function oncia_Match$checkMatchMode$lambda$_71_3() { +function sc_MapView$FilterKeys$iterator$lambda$_0_0() { jl_Object.call(this); - this.$_0693 = null; + this.$_01191 = null; } -let oncia_Match$checkMatchMode$lambda$_71_3_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0693; - var$2 = var$1.$matchMode1; - if (var$2 instanceof oncie_MatchMode$RepeatableElements) { - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_0; - var$3.$_01020 = var$1; - var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); - } else { - if (!(var$2 instanceof oncie_MatchMode$DifferentRelationships)) - $rt_throw(s_MatchError__init_(var$2)); - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_1; - var$3.$_0403 = var$1; - var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); +let sc_MapView$FilterKeys$iterator$lambda$_0_0_apply = (var$0, var$1) => { + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(null)); + var$1 = var$1.$_1(); + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(jl_Boolean_valueOf(!jl_String_equalsIgnoreCase(var$1, $rt_s(5505)) && !jl_String_equalsIgnoreCase(var$1, $rt_s(5506)) ? 1 : 0))); +}, +oncia_CreateSingleLabelPropertyIndex$ = $rt_classWithoutFields(), +oncia_CreateSingleLabelPropertyIndex$_MODULE$ = null, +oncia_CreateSingleLabelPropertyIndex$_$callClinit = () => { + oncia_CreateSingleLabelPropertyIndex$_$callClinit = $rt_eraseClinit(oncia_CreateSingleLabelPropertyIndex$); + oncia_CreateSingleLabelPropertyIndex$__clinit_(); +}, +oncia_CreateSingleLabelPropertyIndex$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateSingleLabelPropertyIndex$; + oncia_CreateSingleLabelPropertyIndex$_$callClinit(); + oncia_CreateSingleLabelPropertyIndex$_MODULE$ = var$1; +}, +oncia_CreateSingleLabelPropertyIndex$_unapply = ($this, $c) => { + return s_Some__init_(s_Tuple7__init_($c.$variable4(), $c.$entityName(), $c.$properties4(), $c.$name2(), $c.$indexType(), $c.$ifExistsDo(), $c.$options())); +}, +s_Product7 = $rt_classWithoutFields(0); +function s_Tuple7() { + let a = this; jl_Object.call(a); + a.$_12 = null; + a.$_23 = null; + a.$_32 = null; + a.$_40 = null; + a.$_50 = null; + a.$_61 = null; + a.$_70 = null; +} +let s_Tuple7_productArity = $this => { + return 7; +}, +s_Tuple7_productElement = ($this, $n) => { + let var$2, var$3; + a: { + switch ($n) { + case 0: + break; + case 1: + var$2 = $this.$_23; + break a; + case 2: + var$2 = $this.$_32; + break a; + case 3: + var$2 = $this.$_40; + break a; + case 4: + var$2 = $this.$_50; + break a; + case 5: + var$2 = $this.$_61; + break a; + case 6: + var$2 = $this.$_70; + break a; + default: + var$3 = new jl_IndexOutOfBoundsException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$2, 32); + var$2 = jl_StringBuilder_append0(var$2, $n); + jl_AbstractStringBuilder_append(var$2, $rt_s(6777)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$3); + } + var$2 = $this.$_12; } - return var$1; + return var$2; +}, +s_Tuple7__1 = $this => { + return $this.$_12; +}, +s_Tuple7__2 = $this => { + return $this.$_23; +}, +s_Tuple7__3 = $this => { + return $this.$_32; +}, +s_Tuple7__4 = $this => { + return $this.$_40; +}, +s_Tuple7__5 = $this => { + return $this.$_50; +}, +s_Tuple7__6 = $this => { + return $this.$_61; +}, +s_Tuple7__7 = $this => { + return $this.$_70; +}, +s_Tuple7_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$1, 8); + jl_AbstractStringBuilder_append(var$1, $rt_s(40)); + var$1 = jl_StringBuilder_append(var$1, $this.$_12); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_23); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_32); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_40); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_50); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_61); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_70); + jl_AbstractStringBuilder_append(var$1, $rt_s(42)); + return jl_AbstractStringBuilder_toString(var$1); +}, +s_Tuple7_productPrefix = $this => { + return $rt_s(6778); +}, +s_Tuple7_productIterator = $this => { + return sr_ScalaRunTime$$anon$1__init_($this); +}, +s_Tuple7_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); +}, +s_Tuple7_equals = ($this, $x$1) => { + a: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof s_Tuple7) ? 0 : 1)) + break a; + $x$1 = $x$1; + if (!sr_BoxesRunTime_equals($this.$_12, $x$1.$_12)) + break a; + if (!sr_BoxesRunTime_equals($this.$_23, $x$1.$_23)) + break a; + if (!sr_BoxesRunTime_equals($this.$_32, $x$1.$_32)) + break a; + if (!sr_BoxesRunTime_equals($this.$_40, $x$1.$_40)) + break a; + if (!sr_BoxesRunTime_equals($this.$_50, $x$1.$_50)) + break a; + if (!sr_BoxesRunTime_equals($this.$_61, $x$1.$_61)) + break a; + if (!sr_BoxesRunTime_equals($this.$_70, $x$1.$_70)) + break a; + } + return 1; + } + return 0; +}, +s_Tuple7__init_0 = ($this, $_1, $_2, $_3, $_4, $_5, $_6, $_7) => { + $this.$_12 = $_1; + $this.$_23 = $_2; + $this.$_32 = $_3; + $this.$_40 = $_4; + $this.$_50 = $_5; + $this.$_61 = $_6; + $this.$_70 = $_7; +}, +s_Tuple7__init_ = (var_0, var_1, var_2, var_3, var_4, var_5, var_6) => { + let var_7 = new s_Tuple7(); + s_Tuple7__init_0(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; +}, +onciap_Prettifier$asString$lambda$_39_0 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_39_0__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_39_0__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_39_0(); + onciap_Prettifier$asString$lambda$_39_0__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_39_0_apply = (var$0, var$1) => { + return !sr_BoxesRunTime_unboxToBoolean(var$1) ? $rt_s(445) : $rt_s(330); +}, +oncia_CreateLookupIndex$ = $rt_classWithoutFields(), +oncia_CreateLookupIndex$_MODULE$ = null, +oncia_CreateLookupIndex$_$callClinit = () => { + oncia_CreateLookupIndex$_$callClinit = $rt_eraseClinit(oncia_CreateLookupIndex$); + oncia_CreateLookupIndex$__clinit_(); +}, +oncia_CreateLookupIndex$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateLookupIndex$; + oncia_CreateLookupIndex$_$callClinit(); + oncia_CreateLookupIndex$_MODULE$ = var$1; +}, +oncia_CreateLookupIndex$_unapply = ($this, $c) => { + return s_Some__init_(s_Tuple7__init_($c.$variable4(), jl_Boolean_valueOf($c.$isNodeIndex()), $c.$function0(), $c.$name2(), $c.$indexType(), $c.$ifExistsDo(), $c.$options())); }; -function oncia_Match$checkHints$lambda$_74_0() { +function onciap_Prettifier$asString$lambda$_39_1() { jl_Object.call(this); - this.$_0319 = null; + this.$_01192 = null; } -let oncia_Match$checkHints$lambda$_74_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5; - var$3 = var$0.$_0319; - var$4 = var$3.$hints; - var$5 = new oncia_Match$$anonfun$8; - var$5.$$outer3 = var$3; - var$5.$semanticState$1 = var$1; - var$5.$context$10 = var$2; - var$2 = var$4.$collectFirst(var$5); - var$3 = new oncias_SemanticCheckResult; - s_Option$_$callClinit(); - oncias_SemanticCheckResult__init_0(var$3, var$1, (s_Option$_option2Iterable(s_Option$_MODULE$, var$2)).$toSeq()); - return var$3; +let onciap_Prettifier$asString$lambda$_39_1__init_0 = (var$0, var$1) => { + var$0.$_01192 = var$1; +}, +onciap_Prettifier$asString$lambda$_39_1__init_ = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_39_1(); + onciap_Prettifier$asString$lambda$_39_1__init_0(var_1, var_0); + return var_1; +}, +oncia_CreateFulltextIndex$ = $rt_classWithoutFields(), +oncia_CreateFulltextIndex$_MODULE$ = null, +oncia_CreateFulltextIndex$_$callClinit = () => { + oncia_CreateFulltextIndex$_$callClinit = $rt_eraseClinit(oncia_CreateFulltextIndex$); + oncia_CreateFulltextIndex$__clinit_(); +}, +oncia_CreateFulltextIndex$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateFulltextIndex$; + oncia_CreateFulltextIndex$_$callClinit(); + oncia_CreateFulltextIndex$_MODULE$ = var$1; +}, +oncia_CreateFulltextIndex$_unapply = ($this, $c) => { + return s_Some__init_(s_Tuple7__init_($c.$variable4(), $c.$entityNames(), $c.$properties4(), $c.$name2(), $c.$indexType(), $c.$ifExistsDo(), $c.$options())); }; -function oncia_Match$checkForCartesianProducts$lambda$_70_0() { +function onciap_Prettifier$asString$lambda$_39_2() { jl_Object.call(this); - this.$_0555 = null; + this.$_0457 = null; } -let oncia_Match$checkForCartesianProducts$lambda$_70_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; +let onciap_Prettifier$asString$lambda$_39_2__init_ = (var$0, var$1) => { + var$0.$_0457 = var$1; +}, +onciap_Prettifier$asString$lambda$_39_2__init_0 = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_39_2(); + onciap_Prettifier$asString$lambda$_39_2__init_(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_39_2_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0555; - var$3 = new sr_LazyRef; - var$4 = onciap_ExpressionStringifier$_failingExtender; - var$4 = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, var$4, 0, 0, 1, 0); - onciap_PatternStringifier$_$callClinit(); - var$5 = onciap_PatternStringifier$_apply(onciap_PatternStringifier$_MODULE$, var$4); - oncia_connectedComponents$_$callClinit(); - var$6 = (var$2.$pattern7.$patternParts0.$map(new oncia_connectedComponents$$apply$lambda$_3_0)).$toIndexedSeq(); - s_package$_$callClinit(); - var$7 = sc_SeqFactory$Delegate_empty(s_package$_IndexedSeq(s_package$_MODULE$)); - while (true) { - if (sc_SeqOps_isEmpty$(var$6)) { - var$4 = var$7.$drop(1); - var$8 = new oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_121_0; - var$8.$_0749 = var$2; - var$8.$_1255 = var$3; - var$8.$_284 = var$5; - return oncias_SemanticCheckResult__init_(var$4.$foldLeft(var$1, var$8), sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + return onciap_Prettifier_backtick(var$0.$_0457, var$1.$name21); +}; +function onciap_Prettifier$asString$lambda$_39_3() { + jl_Object.call(this); + this.$_01075 = null; +} +let onciap_Prettifier$asString$lambda$_39_3__init_0 = (var$0, var$1) => { + var$0.$_01075 = var$1; +}, +onciap_Prettifier$asString$lambda$_39_3__init_ = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_39_3(); + onciap_Prettifier$asString$lambda$_39_3__init_0(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_39_3_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01075; + var$3 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1.$map15); + var$1 = onciap_Prettifier_backtick(var$2, var$1.$propertyKey0.$name5); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + var$3 = jl_StringBuilder_append(var$2, var$3); + jl_AbstractStringBuilder_append0(var$3, 46); + jl_StringBuilder_append(var$3, var$1); + return jl_AbstractStringBuilder_toString(var$2); +}; +function onciap_Prettifier$asString$lambda$_39_4() { + jl_Object.call(this); + this.$_082 = null; +} +let onciap_Prettifier$asString$lambda$_39_4__init_ = (var$0, var$1) => { + var$0.$_082 = var$1; +}, +onciap_Prettifier$asString$lambda$_39_4__init_0 = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_39_4(); + onciap_Prettifier$asString$lambda$_39_4__init_(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_39_4_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier_backtick(var$0.$_082, var$1.$name23); +}, +onciap_Prettifier$asString$lambda$_39_5 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_39_5__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_39_5__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_39_5(); + onciap_Prettifier$asString$lambda$_39_5__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_39_5_apply = (var$0, var$1) => { + return !sr_BoxesRunTime_unboxToBoolean(var$1) ? $rt_s(445) : $rt_s(330); +}, +oncia_CreateUser$ = $rt_classWithoutFields(), +oncia_CreateUser$_MODULE$ = null, +oncia_CreateUser$_$callClinit = () => { + oncia_CreateUser$_$callClinit = $rt_eraseClinit(oncia_CreateUser$); + oncia_CreateUser$__clinit_(); +}, +oncia_CreateUser$__clinit_ = () => { + let var$1; + var$1 = new oncia_CreateUser$; + oncia_CreateUser$_$callClinit(); + oncia_CreateUser$_MODULE$ = var$1; +}, +oncia_CreateUser$_unapply = ($this, $c) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$2 = new s_Some; + var$3 = new s_Tuple5; + var$4 = $c.$userName2; + var$5 = $c.$userOptions0; + var$6 = $c.$ifExistsDo4; + var$7 = $c.$externalAuths1; + $c = $c.$nativeAuth; + var$3.$_14 = var$4; + var$3.$_24 = var$5; + var$3.$_33 = var$6; + var$3.$_42 = var$7; + var$3.$_52 = $c; + s_Some__init_0(var$2, var$3); + return var$2; +}, +s_Product5 = $rt_classWithoutFields(0); +function s_Tuple5() { + let a = this; jl_Object.call(a); + a.$_14 = null; + a.$_24 = null; + a.$_33 = null; + a.$_42 = null; + a.$_52 = null; +} +let s_Tuple5_productArity = $this => { + return 5; +}, +s_Tuple5_productElement = ($this, $n) => { + let var$2, var$3; + a: { + switch ($n) { + case 0: + break; + case 1: + var$2 = $this.$_24; + break a; + case 2: + var$2 = $this.$_33; + break a; + case 3: + var$2 = $this.$_42; + break a; + case 4: + var$2 = $this.$_52; + break a; + default: + var$3 = new jl_IndexOutOfBoundsException; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$2, 32); + var$2 = jl_StringBuilder_append0(var$2, $n); + jl_AbstractStringBuilder_append(var$2, $rt_s(6779)); + jl_Throwable__init_(var$3, jl_AbstractStringBuilder_toString(var$2)); + $rt_throw(var$3); } - var$9 = var$6.$head(); - var$4 = new oncia_connectedComponents$$loop$1$lambda$_10_0; - var$4.$_0898 = var$9; - var$8 = var$7.$partition(var$4); - if (var$8 === null) - break; - var$8 = s_Tuple2__init_(var$8.$_10, var$8.$_20); - var$10 = var$8.$_10; - var$11 = var$8.$_20; - var$8 = oncia_connectedComponents$_ConnectedComponent; - var$4 = sr_ScalaRunTime$_MODULE$; - var$12 = $rt_createArray(sci_Set, 1); - var$12.data[0] = var$9; - var$4 = var$10.$foldLeft(var$8.$from0(sr_ScalaRunTime$_wrapRefArray(var$4, var$12)), new oncia_connectedComponents$$loop$1$lambda$_10_1); - var$8 = var$7.$headOption(); - var$7 = new oncia_connectedComponents$$loop$1$lambda$_10_2; - var$7.$_0786 = var$9; - var$7 = !s_Option_exists(var$8, var$7) ? var$11.$appended(var$4) : var$11.$prepended(var$4); - var$6 = var$6.$tail(); + var$2 = $this.$_14; + } + return var$2; +}, +s_Tuple5__1 = $this => { + return $this.$_14; +}, +s_Tuple5__2 = $this => { + return $this.$_24; +}, +s_Tuple5__3 = $this => { + return $this.$_33; +}, +s_Tuple5__4 = $this => { + return $this.$_42; +}, +s_Tuple5__5 = $this => { + return $this.$_52; +}, +s_Tuple5_toString = $this => { + let var$1; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$1, 6); + jl_AbstractStringBuilder_append(var$1, $rt_s(40)); + var$1 = jl_StringBuilder_append(var$1, $this.$_14); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_24); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_33); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_42); + jl_AbstractStringBuilder_append(var$1, $rt_s(41)); + var$1 = jl_StringBuilder_append(var$1, $this.$_52); + jl_AbstractStringBuilder_append(var$1, $rt_s(42)); + return jl_AbstractStringBuilder_toString(var$1); +}, +s_Tuple5_productPrefix = $this => { + return $rt_s(6780); +}, +s_Tuple5_productIterator = $this => { + return sr_ScalaRunTime$$anon$1__init_($this); +}, +s_Tuple5_hashCode = $this => { + suh_MurmurHash3$_$callClinit(); + return suh_MurmurHash3$_productHash(suh_MurmurHash3$_MODULE$, $this); +}, +s_Tuple5_equals = ($this, $x$1) => { + a: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof s_Tuple5) ? 0 : 1)) + break a; + $x$1 = $x$1; + if (!sr_BoxesRunTime_equals($this.$_14, $x$1.$_14)) + break a; + if (!sr_BoxesRunTime_equals($this.$_24, $x$1.$_24)) + break a; + if (!sr_BoxesRunTime_equals($this.$_33, $x$1.$_33)) + break a; + if (!sr_BoxesRunTime_equals($this.$_42, $x$1.$_42)) + break a; + if (!sr_BoxesRunTime_equals($this.$_52, $x$1.$_52)) + break a; + } + return 1; } - $rt_throw(s_MatchError__init_(var$8)); -}; -function oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_68_0() { - jl_Object.call(this); - this.$_0109 = null; -} -let oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_68_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0109; - oncias_SemanticFunctionCheck$_$callClinit(); - var$1 = oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticFunctionCheck$_MODULE$, var$2), var$1); - oncius_package$_$callClinit(); - var$2 = oncius_package$_MODULE$; - return oncius_TypeSpec_unwrapLists(oncius_TypeSpec_constrain(var$1, oncius_package$_CTList(var$2, oncius_package$_CTAny(var$2)))); + return 0; }; -function oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_168_0() { +function onciap_Prettifier$asString$lambda$_40_0() { let a = this; jl_Object.call(a); - a.$_01050 = null; - a.$_1359 = null; - a.$_2119 = null; + a.$_0390 = null; + a.$_1137 = null; } -let oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_168_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let onciap_Prettifier$asString$lambda$_40_0__init_ = (var$0, var$1, var$2) => { + var$0.$_0390 = var$1; + var$0.$_1137 = var$2; +}, +onciap_Prettifier$asString$lambda$_40_0__init_0 = (var_0, var_1) => { + let var_2 = new onciap_Prettifier$asString$lambda$_40_0(); + onciap_Prettifier$asString$lambda$_40_0__init_(var_2, var_0, var_1); + return var_2; +}, +onciap_Prettifier$asString$lambda$_40_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; var$1 = var$1; - var$2 = var$0.$_01050; - var$3 = var$0.$_1359; - var$4 = var$0.$_2119; - if (!sr_BoxesRunTime_equals(var$1, jl_Character_valueOf(133))) { - var$5 = new onciu_DeprecatedIdentifierUnicode; - s_Predef$_$callClinit(); - onciu_DeprecatedIdentifierUnicode__init_(var$5, var$3, sr_BoxesRunTime_unboxToChar(var$1), var$4); - onciu_RecordingNotificationLogger_log(var$2, var$5); + var$2 = var$0.$_0390; + var$3 = var$0.$_1137; + var$4 = !((oncia_NativeAuth_password(var$1)).$get1()).$isEncrypted ? $rt_s(555) : $rt_s(6781); + var$5 = onciap_DefaultExpressionStringifier_escapePassword(var$2.$expr1, ((oncia_NativeAuth_password(var$1)).$get1()).$password3); + var$1 = !sr_BoxesRunTime_unboxToBoolean(s_Option_getOrElse(oncia_NativeAuth_changeRequired(var$1), new onciap_Prettifier$$anonfun$asString$13$lambda$_86_0)) ? $rt_s(446) : $rt_s(4); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6782)), var$1), $rt_s(4450)); + var$7 = jl_AbstractStringBuilder_toString(var$6); + if (var$3.$useOldStyleNativeAuth0) { + var$1 = new s_Tuple2; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 32); + var$3 = jl_StringBuilder_append(var$2, var$4); + jl_AbstractStringBuilder_append0(var$3, 32); + var$3 = jl_StringBuilder_append(var$3, var$5); + jl_AbstractStringBuilder_append0(var$3, 32); + jl_StringBuilder_append(var$3, var$7); + s_Tuple2__init_0(var$1, jl_AbstractStringBuilder_toString(var$2), $rt_s(4)); } else { - var$5 = new onciu_DeprecatedIdentifierWhitespaceUnicode; - s_Predef$_$callClinit(); - onciu_DeprecatedIdentifierWhitespaceUnicode__init_(var$5, var$3, sr_BoxesRunTime_unboxToChar(var$1), var$4); - onciu_RecordingNotificationLogger_log(var$2, var$5); + var$6 = onciap_Prettifier$IndentingQueryPrettifier_indented(var$2.$base); + var$1 = new s_Tuple2; + var$3 = sr_ScalaRunTime$_MODULE$; + var$8 = $rt_createArray(jl_String, 2); + var$9 = var$8.data; + var$10 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$10); + var$4 = jl_StringBuilder_append(var$10, var$4); + jl_AbstractStringBuilder_append0(var$4, 32); + jl_StringBuilder_append(var$4, var$5); + var$9[0] = jl_AbstractStringBuilder_toString(var$10); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6783)), var$7); + var$9[1] = jl_AbstractStringBuilder_toString(var$4); + s_Tuple2__init_0(var$1, $rt_s(4), onciap_Prettifier$IndentingQueryPrettifier_getNativeAuthAsString(var$6, sr_ScalaRunTime$_wrapRefArray(var$3, var$8))); } - return sr_BoxedUnit_UNIT; + return var$1; }, -oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_0 = $rt_classWithoutFields(), -oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_0_apply = (var$0, var$1) => { - return oncia_SubqueryCall$InTransactionsBatchParameters_semanticCheck(var$1); +onciap_Prettifier$asString$lambda$_40_1 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_1__init_0 = var$0 => { + return; }, -oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_1 = $rt_classWithoutFields(), -oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_1_apply = (var$0, var$1) => { - return oncia_SubqueryCall$InTransactionsConcurrencyParameters_semanticCheck(var$1); +onciap_Prettifier$asString$lambda$_40_1__init_ = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_1(); + onciap_Prettifier$asString$lambda$_40_1__init_0(var_0); + return var_0; }, -oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_2 = $rt_classWithoutFields(), -oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_2_apply = (var$0, var$1) => { - return oncia_SubqueryCall$InTransactionsReportParameters_semanticCheck(var$1); -}; -function oncia_SubqueryCall$checkNoNestedCallInTransactions$lambda$_21_0() { - jl_Object.call(this); - this.$_0426 = null; -} -let oncia_SubqueryCall$checkNoNestedCallInTransactions$lambda$_21_0_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_0426.$error2($rt_s(7835), var$1.$position()); -}; -function oncie_Expression$TreeAcc$inScope$lambda$_4_0() { - jl_Object.call(this); - this.$_0137 = null; -} -let oncie_Expression$TreeAcc$inScope$lambda$_4_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$contains(var$0.$_0137)); -}; -function oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0() { - jl_Object.call(this); - this.$_0971 = null; -} -let oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0_apply = (var$0, var$1) => { +onciap_Prettifier$asString$lambda$_40_1_apply = var$0 => { + return s_Tuple2__init_($rt_s(4), $rt_s(4)); +}, +onciap_Prettifier$asString$lambda$_40_2 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_2__init_0 = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_2__init_ = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_2(); + onciap_Prettifier$asString$lambda$_40_2__init_0(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_2_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0971; - oncifp_ProcedureWarnings$_$callClinit(); - var$3 = new oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0; - var$3.$_0322 = var$1; - return jl_Boolean_valueOf(sc_IterableOnceOps_exists$(var$2, var$3)); + if (!(var$1 instanceof oncia_SetHomeDatabaseAction)) + var$1 = s_None$_MODULE$; + else { + var$2 = var$1.$name25; + onciap_Prettifier$_$callClinit(); + var$3 = onciap_Prettifier$_MODULE$; + s_DummyImplicit$_$callClinit(); + var$1 = onciap_Prettifier$_escapeName(var$3, var$2, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6784)), var$1); + var$1 = jl_AbstractStringBuilder_toString(var$3); + } + return var$1; +}, +onciap_Prettifier$asString$lambda$_40_3 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_3__init_0 = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_3__init_ = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_3(); + onciap_Prettifier$asString$lambda$_40_3__init_0(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_3_apply = var$0 => { + return $rt_s(4); +}, +onciap_Prettifier$asString$lambda$_40_4 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_4__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_4__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_4(); + onciap_Prettifier$asString$lambda$_40_4__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_4_apply = (var$0, var$1) => { + return var$1.$provider1; }; -function oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1() { +function onciap_Prettifier$asString$lambda$_40_5() { jl_Object.call(this); - this.$_0757 = null; + this.$_0127 = null; } -let oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0757; - oncifp_ProcedureWarnings$_$callClinit(); - var$3 = new onn_DeprecatedProcedureReturnFieldNotification; - var$4 = var$1.$position107; - var$1 = var$1.$outputName; - var$3.$position61 = var$4; - var$3.$procedure0 = var$2; - var$3.$field2 = var$1; - return var$3; +let onciap_Prettifier$asString$lambda$_40_5__init_0 = (var$0, var$1) => { + var$0.$_0127 = var$1; }, -oncius_TypeSpec$$union$lambda$_7_0 = $rt_classWithoutFields(), -oncius_TypeSpec$$union$lambda$_7_0_apply = (var$0, var$1) => { +onciap_Prettifier$asString$lambda$_40_5__init_ = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_40_5(); + onciap_Prettifier$asString$lambda$_40_5__init_0(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_40_5_apply = (var$0, var$1) => { var$1 = var$1; - oncius_TypeSpec$_$callClinit(); - return var$1.$ranges; + return onciap_Prettifier$IndentingQueryPrettifier_asString11(onciap_Prettifier$IndentingQueryPrettifier_indented(var$0.$_0127.$base), var$1); +}, +oncia_AlterUser$ = $rt_classWithoutFields(), +oncia_AlterUser$_MODULE$ = null, +oncia_AlterUser$_$callClinit = () => { + oncia_AlterUser$_$callClinit = $rt_eraseClinit(oncia_AlterUser$); + oncia_AlterUser$__clinit_(); +}, +oncia_AlterUser$__clinit_ = () => { + let var$1; + var$1 = new oncia_AlterUser$; + oncia_AlterUser$_$callClinit(); + oncia_AlterUser$_MODULE$ = var$1; +}, +oncia_AlterUser$_unapply = ($this, $a) => { + return s_Some__init_(s_Tuple6__init_($a.$userName1, $a.$userOptions, jl_Boolean_valueOf($a.$ifExists9), $a.$externalAuths0, $a.$nativeAuth0, $a.$removeAuth)); }; -function oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1() { - sr_AbstractPartialFunction.call(this); - this.$aggregationGroupingExpressions$1 = null; +function onciap_Prettifier$asString$lambda$_40_6() { + let a = this; jl_Object.call(a); + a.$_01072 = null; + a.$_1364 = null; } -let oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1_applyOrElse = ($this, $x1, $default) => { - let $expr; - if ($x1 instanceof oncie_Expression) { - $default = $x1; - if ($this.$aggregationGroupingExpressions$1.$contains($default)) - return new oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0; - } - if ($x1 !== null) { - oncie_IsAggregate$_$callClinit(); - $x1 = oncie_IsAggregate$_unapply(oncie_IsAggregate$_MODULE$, $x1); - if (!s_Option_isEmpty($x1)) { - $expr = $x1.$get1(); - if ($expr instanceof oncie_Expression) { - $x1 = $expr; - $default = new oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1; - $default.$_0148 = $x1; - return $default; - } - } +let onciap_Prettifier$asString$lambda$_40_6__init_0 = (var$0, var$1, var$2) => { + var$0.$_01072 = var$1; + var$0.$_1364 = var$2; +}, +onciap_Prettifier$asString$lambda$_40_6__init_ = (var_0, var_1) => { + let var_2 = new onciap_Prettifier$asString$lambda$_40_6(); + onciap_Prettifier$asString$lambda$_40_6__init_0(var_2, var_0, var_1); + return var_2; +}, +onciap_Prettifier$asString$lambda$_40_6_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier_$anonfun$asString$21(var$0.$_01072, var$0.$_1364, var$1); +}, +onciap_Prettifier$asString$lambda$_40_7 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_7__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_7__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_7(); + onciap_Prettifier$asString$lambda$_40_7__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_7_apply = var$0 => { + return s_Tuple2__init_($rt_s(4), $rt_s(4)); +}, +onciap_Prettifier$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +onciap_Prettifier$$anonfun$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if (jl_Object_equals(oncia_RemoveHomeDatabaseAction$_MODULE$, $x)) + $default = $rt_s(6785); + return $default; +}, +onciap_Prettifier$$anonfun$1__init_0 = ($this, $$outer) => { + return; +}, +onciap_Prettifier$$anonfun$1__init_ = var_0 => { + let var_1 = new onciap_Prettifier$$anonfun$1(); + onciap_Prettifier$$anonfun$1__init_0(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_40_8 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_8__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_8__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_8(); + onciap_Prettifier$asString$lambda$_40_8__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_8_apply = var$0 => { + return $rt_s(4); +}, +onciap_Prettifier$$anonfun$2 = $rt_classWithoutFields(sr_AbstractPartialFunction), +onciap_Prettifier$$anonfun$2_applyOrElse = ($this, $x, $default) => { + let var$3; + $x = $x; + if ($x instanceof oncia_SetHomeDatabaseAction) { + var$3 = $x.$name25; + onciap_Prettifier$_$callClinit(); + $default = onciap_Prettifier$_MODULE$; + s_DummyImplicit$_$callClinit(); + $x = onciap_Prettifier$_escapeName($default, var$3, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + $default = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($default); + jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(6784)), $x); + $default = jl_AbstractStringBuilder_toString($default); } - return s_PartialFunction$_fallback_fn; -}; -function sc_SeqOps$intersect$lambda$_118_0() { - jl_Object.call(this); - this.$_0976 = null; -} -let sc_SeqOps$intersect$lambda$_118_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_0976; - var$3 = new sr_BooleanRef; - var$3.$elem6 = 1; - var$4 = new sc_SeqOps$$anonfun$intersect$1$lambda$_139_0; - var$4.$_0128 = var$3; - scm_HashMap_updateWith(var$2, var$1, var$4); - return jl_Boolean_valueOf(var$3.$elem6); + return $default; +}, +onciap_Prettifier$$anonfun$2__init_0 = ($this, $$outer) => { + return; +}, +onciap_Prettifier$$anonfun$2__init_ = var_0 => { + let var_1 = new onciap_Prettifier$$anonfun$2(); + onciap_Prettifier$$anonfun$2__init_0(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_40_9 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_9__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_9__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_9(); + onciap_Prettifier$asString$lambda$_40_9__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_9_apply = var$0 => { + return $rt_s(4); +}, +onciap_Prettifier$asString$lambda$_40_10 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_10__init_0 = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_10__init_ = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_10(); + onciap_Prettifier$asString$lambda$_40_10__init_0(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_10_apply = (var$0, var$1) => { + return var$1.$provider1; }; -function oncia_UseGraph$checkWorkingGraph$lambda$_64_0() { +function onciap_Prettifier$asString$lambda$_40_11() { jl_Object.call(this); - this.$_0310 = null; + this.$_0650 = null; } -let oncia_UseGraph$checkWorkingGraph$lambda$_64_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6; - a: { - var$3 = var$0.$_0310; - if (!s_Option_isEmpty(var$1.$workingGraph)) { - if ((var$1.$workingGraph.$get1()).$semanticallyEqual(var$3.$graphReference2)) { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } else { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_error0(oncias_SemanticCheckResult$_MODULE$, var$1, $rt_s(7836), var$3.$graphReference2.$position()); - } - } else { - if (var$2.$sessionDatabaseReference() !== null) { - var$2 = var$2.$sessionDatabaseReference(); - var$4 = var$3.$graphReference2; - if (!(var$4 instanceof oncia_GraphDirectReference)) { - if (!(var$4 instanceof oncia_GraphFunctionReference)) - $rt_throw(s_MatchError__init_(var$4)); - var$5 = 0; - } else - b: { - var$6 = var$4.$catalogName; - if (var$2 !== null) { - var$4 = new onkd_NormalizedDatabaseName; - var$6 = oncia_CatalogName_qualifiedNameString(var$6); - ju_Objects_requireNonNull0(var$6, $rt_s(7837)); - var$4.$name45 = jl_String_toLowerCase(var$6); - var$2 = var$2.$fullName(); - if (var$4 === var$2 ? 1 : var$2 !== null && var$2.$getClass0() === $rt_cls(onkd_NormalizedDatabaseName) ? (ju_Objects_equals(var$4.$name45, var$2.$name45) ? 1 : 0) : 0) { - var$5 = 1; - break b; - } - } - var$5 = 0; - } - if (!var$5) { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_recordWorkingGraph(var$1, s_Some__init_(var$3.$graphReference2))); - break a; - } - } - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } - } - return var$1; +let onciap_Prettifier$asString$lambda$_40_11__init_ = (var$0, var$1) => { + var$0.$_0650 = var$1; +}, +onciap_Prettifier$asString$lambda$_40_11__init_0 = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_40_11(); + onciap_Prettifier$asString$lambda$_40_11__init_(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_40_11_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString11(onciap_Prettifier$IndentingQueryPrettifier_indented(var$0.$_0650.$base), var$1); }; -function oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0() { +function onciap_Prettifier$asString$lambda$_40_12() { jl_Object.call(this); - this.$_0654 = null; + this.$_029 = null; } -let oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let onciap_Prettifier$asString$lambda$_40_12__init_0 = (var$0, var$1) => { + var$0.$_029 = var$1; +}, +onciap_Prettifier$asString$lambda$_40_12__init_ = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_40_12(); + onciap_Prettifier$asString$lambda$_40_12__init_0(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_40_12_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0654; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0; - var$4.$_0697 = var$2; - var$4.$_1242 = var$1; - return oncias_SemanticCheck$_fromFunction(var$3, var$4); + return onciap_DefaultExpressionStringifier_apply(var$0.$_029.$expr1, var$1); }, -sci_Stream$Empty$ = $rt_classWithoutFields(sci_Stream), -sci_Stream$Empty$_MODULE$ = null, -sci_Stream$Empty$__clinit_ = () => { - sci_Stream$Empty$_MODULE$ = new sci_Stream$Empty$; +onciap_Prettifier$asString$lambda$_40_13 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_13__init_ = var$0 => { + return; }, -sci_Stream$Empty$_isEmpty = $this => { - return 1; +onciap_Prettifier$asString$lambda$_40_13__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_13(); + onciap_Prettifier$asString$lambda$_40_13__init_(var_0); + return var_0; }, -sci_Stream$Empty$_knownSize = $this => { - return 0; +onciap_Prettifier$asString$lambda$_40_13_apply = (var$0, var$1) => { + var$1 = var$1; + onciap_Prettifier$_$callClinit(); + return onciap_Prettifier$_extractTopology(onciap_Prettifier$_MODULE$, var$1); }, -sci_Stream$Empty$_tailDefined = $this => { - return 0; +onciap_Prettifier$asString$lambda$_40_14 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_14__init_0 = var$0 => { + return; }, -sci_Stream$Empty$_force = $this => { - return $this; +onciap_Prettifier$asString$lambda$_40_14__init_ = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_14(); + onciap_Prettifier$asString$lambda$_40_14__init_0(var_0); + return var_0; }, -sci_Stream$Empty$_tail = $this => { - let var$1; - var$1 = new jl_UnsupportedOperationException; - jl_Throwable__init_0(var$1, $rt_s(7838)); - $rt_throw(var$1); +onciap_Prettifier$asString$lambda$_40_14_apply = var$0 => { + return $rt_s(4); }, -sci_Stream$Empty$_head = $this => { - let var$1; - var$1 = new ju_NoSuchElementException; - jl_Throwable__init_0(var$1, $rt_s(7839)); - $rt_throw(var$1); +onciap_Prettifier$asString$lambda$_40_15 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_15__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_15__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_15(); + onciap_Prettifier$asString$lambda$_40_15__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_15_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + if (jl_Object_equals(oncia_ReadOnlyAccess$_MODULE$, var$1)) + var$1 = $rt_s(6786); + else { + if (!jl_Object_equals(oncia_ReadWriteAccess$_MODULE$, var$1)) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = $rt_s(6787); + } + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6788)), var$1); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciap_Prettifier$asString$lambda$_40_16 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_16__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_16__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_16(); + onciap_Prettifier$asString$lambda$_40_16__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_16_apply = var$0 => { + return $rt_s(4); +}, +onciap_Prettifier$asString$lambda$_40_17 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_17__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_17__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_17(); + onciap_Prettifier$asString$lambda$_40_17__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_17_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + onciap_Prettifier$_$callClinit(); + var$1 = onciap_Prettifier$_extractTopology(onciap_Prettifier$_MODULE$, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(542)), var$1); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciap_Prettifier$asString$lambda$_40_18 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_18__init_0 = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_18__init_ = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_18(); + onciap_Prettifier$asString$lambda$_40_18__init_0(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_18_apply = var$0 => { + return $rt_s(4); }; -function sci_Stream$$fromIterator$lambda$_21_0() { +function onciap_Prettifier$asString$lambda$_40_19() { jl_Object.call(this); - this.$_0104 = null; + this.$_0244 = null; } -let sci_Stream$$fromIterator$lambda$_21_0_apply = var$0 => { - let var$1; - var$1 = var$0.$_0104; - return sci_Stream$_fromIterator(sci_Stream$_MODULE$, var$1); +let onciap_Prettifier$asString$lambda$_40_19__init_ = (var$0, var$1) => { + var$0.$_0244 = var$1; +}, +onciap_Prettifier$asString$lambda$_40_19__init_0 = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_40_19(); + onciap_Prettifier$asString$lambda$_40_19__init_(var_1, var_0); + return var_1; }, -oncia_UseGraph$checkExpressions$lambda$_66_0 = $rt_classWithoutFields(), -oncia_UseGraph$checkExpressions$lambda$_66_0_apply = (var$0, var$1) => { +onciap_Prettifier$asString$lambda$_40_19_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - oncias_SemanticExpressionCheck$_$callClinit(); - var$2 = oncias_SemanticExpressionCheck$_MODULE$; - oncie_Expression$SemanticContext$Results$_$callClinit(); - return oncias_SemanticExpressionCheck$_check0(var$2, oncie_Expression$SemanticContext$Results$_MODULE$, var$1); -}; -function oncias_SemanticAnalysisTooling$possibleTypes$lambda$_83_0() { - let a = this; jl_Object.call(a); - a.$_0143 = null; - a.$_156 = null; -} -let oncias_SemanticAnalysisTooling$possibleTypes$lambda$_83_0_apply = (var$0, var$1) => { - return oncius_TypeSpec_unwrapLists(oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(var$0.$_0143, var$0.$_156), var$1)); -}; -function oncias_SemanticAnalysisTooling$expectType$lambda$_25_0() { - let a = this; jl_Object.call(a); - a.$_0601 = null; - a.$_1205 = null; - a.$_268 = null; - a.$_320 = null; -} -let oncias_SemanticAnalysisTooling$expectType$lambda$_25_0_apply = (var$0, var$1) => { + var$1 = onciap_Prettifier_backtick(var$0.$_0244, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6789)), var$1); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciap_Prettifier$asString$lambda$_40_20 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_20__init_ = var$0 => { + return; +}, +onciap_Prettifier$asString$lambda$_40_20__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_20(); + onciap_Prettifier$asString$lambda$_40_20__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_20_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return oncias_SemanticAnalysisTooling_expectType$0(var$0.$_0601, var$1, var$0.$_1205, var$0.$_268, var$0.$_320); -}; -function oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_0() { - let a = this; jl_Object.call(a); - a.$_0659 = null; - a.$_1229 = null; -} -let oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_0659; - var$3 = var$0.$_1229.$iterator0(); - var$4 = new oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_0; - var$4.$_0301 = var$2; - var$4.$_1112 = var$1; - return (var$3.$map5(var$4)).$reduceLeft(new oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_1); -}, -oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_1 = $rt_classWithoutFields(), -oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_1_apply = (var$0, var$1) => { - oncius_package$_$callClinit(); - return oncius_AnyType_invariant(oncius_package$_CTAny(oncius_package$_MODULE$)); + onciap_Prettifier$_$callClinit(); + var$2 = onciap_Prettifier$_MODULE$; + s_DummyImplicit$_$callClinit(); + var$1 = onciap_Prettifier$_escapeName(var$2, var$1, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6790)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -onciu_RewritableJavascript$PROXY$9_278 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_278_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +onciap_Prettifier$asString$lambda$_40_21 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_21__init_0 = var$0 => { + return; }, -onciu_RewritableJavascript$PROXY$9_279 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_279_numParameters = var$1 => { - return (jl_Integer_valueOf(1)).$value4; +onciap_Prettifier$asString$lambda$_40_21__init_ = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_21(); + onciap_Prettifier$asString$lambda$_40_21__init_0(var_0); + return var_0; }, -onciu_RewritableJavascript$PROXY$11_278 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_278_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; +onciap_Prettifier$asString$lambda$_40_21_apply = var$0 => { + return $rt_s(4); }, -onciu_RewritableJavascript$PROXY$11_279 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_279_lastParamIsPosition = var$1 => { - return (jl_Boolean_valueOf(0)).$value3; -}; -function sci_LazyList$LazyBuilder() { - let a = this; jl_Object.call(a); - a.$next10 = null; - a.$list4 = null; -} -let sci_LazyList$LazyBuilder_sizeHint = ($this, $size) => { +onciap_Prettifier$asString$lambda$_40_22 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_22__init_0 = var$0 => { return; }, -sci_LazyList$LazyBuilder_sizeHint0 = ($this, $coll, $delta) => { - scm_Builder_sizeHint$($this, $coll, $delta); +onciap_Prettifier$asString$lambda$_40_22__init_ = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_22(); + onciap_Prettifier$asString$lambda$_40_22__init_0(var_0); + return var_0; }, -sci_LazyList$LazyBuilder_addAll = ($this, $xs) => { - let var$2, var$3, var$4; - if ($xs.$length()) { - var$2 = new sci_LazyList$LazyBuilder$DeferredState; - var$3 = $this.$next10; - var$4 = new sci_LazyList$LazyBuilder$addAll$lambda$_12_0; - var$4.$_0825 = $xs; - var$4.$_1281 = var$2; - sci_LazyList$LazyBuilder$DeferredState_init(var$3, var$4); - $this.$next10 = var$2; - } - return $this; +onciap_Prettifier$asString$lambda$_40_22_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + onciap_Prettifier$_$callClinit(); + var$2 = onciap_Prettifier$_MODULE$; + s_DummyImplicit$_$callClinit(); + var$1 = onciap_Prettifier$_escapeName(var$2, var$1, s_DummyImplicit$_dummyImplicit(s_DummyImplicit$_MODULE$)); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 32); + jl_StringBuilder_append(var$2, var$1); + return jl_AbstractStringBuilder_toString(var$2); }, -sci_LazyList$LazyBuilder_addOne = ($this, $elem) => { - let var$2, var$3, var$4; - var$2 = new sci_LazyList$LazyBuilder$DeferredState; - var$3 = $this.$next10; - var$4 = new sci_LazyList$LazyBuilder$addOne$lambda$_11_0; - var$4.$_01129 = $elem; - var$4.$_1379 = var$2; - sci_LazyList$LazyBuilder$DeferredState_init(var$3, var$4); - $this.$next10 = var$2; - return $this; +onciap_Prettifier$asString$lambda$_40_23 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_40_23__init_ = var$0 => { + return; }, -sci_LazyList$LazyBuilder_result = $this => { - sci_LazyList$LazyBuilder$DeferredState_init($this.$next10, new sci_LazyList$LazyBuilder$result$lambda$_10_0); - return $this.$list4; +onciap_Prettifier$asString$lambda$_40_23__init_0 = () => { + let var_0 = new onciap_Prettifier$asString$lambda$_40_23(); + onciap_Prettifier$asString$lambda$_40_23__init_(var_0); + return var_0; +}, +onciap_Prettifier$asString$lambda$_40_23_apply = var$0 => { + return $rt_s(4); }; -function oncius_TypeSpec$containsAny$lambda$_11_0() { +function onciap_Prettifier$asString$lambda$_40_24() { jl_Object.call(this); - this.$_0953 = null; + this.$_027 = null; } -let oncius_TypeSpec$containsAny$lambda$_11_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0953.$ranges; - var$3 = new oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0; - var$3.$_01001 = var$1; - return jl_Boolean_valueOf(var$2.$exists(var$3)); +let onciap_Prettifier$asString$lambda$_40_24__init_0 = (var$0, var$1) => { + var$0.$_027 = var$1; }, -oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_00 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0_apply = (var$0, var$1) => { - return var$1.$position13; -}; -function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_01096 = null; - a.$_1368 = null; - a.$_2122 = null; -} -let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; +onciap_Prettifier$asString$lambda$_40_24__init_ = var_0 => { + let var_1 = new onciap_Prettifier$asString$lambda$_40_24(); + onciap_Prettifier$asString$lambda$_40_24__init_0(var_1, var_0); + return var_1; +}, +onciap_Prettifier$asString$lambda$_40_24_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_01096; - var$3 = var$0.$_1368; - var$4 = var$0.$_2122; - var$5 = new onciu_Foldable$SkipChildren; - var$6 = new s_Tuple2; - var$7 = var$1.$_1(); - var$8 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$2$lambda$_3_0; - var$8.$_0287 = var$2; - s_Tuple2__init_0(var$6, var$7.$concat1(s_Option_filter(var$3, var$8)), (var$1.$_2()).$concat1(oncir_Deprecations$SemanticallyDeprecatedFeatures_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1(var$4))); - onciu_Foldable$SkipChildren__init_0(var$5, var$6); - return var$5; + var$2 = var$0.$_027; + if (var$1 instanceof su_Left) { + var$1 = var$1.$value6; + var$1 = onciap_DefaultExpressionStringifier_quote(var$2.$expr1, var$1); + } else { + if (!(var$1 instanceof su_Right)) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = var$1.$value7; + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1); + } + return var$1; }; -function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_1() { +function sci_List$partition$lambda$_92_0() { let a = this; jl_Object.call(a); - a.$_0456 = null; - a.$_1159 = null; - a.$_255 = null; + a.$_085 = null; + a.$_131 = null; + a.$_214 = null; } -let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = var$1; - var$2 = var$0.$_0456; - var$3 = var$0.$_1159; - var$4 = var$0.$_255; - var$5 = new onciu_Foldable$SkipChildren; - var$6 = new s_Tuple2; - var$7 = var$1.$_1(); - var$8 = new oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$4$lambda$_5_0; - var$8.$_0537 = var$2; - s_Tuple2__init_0(var$6, var$7.$concat1(s_Option_filter(var$3, var$8)), (var$1.$_2()).$concat1(oncir_Deprecations$SemanticallyDeprecatedFeatures_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1(var$4))); - onciu_Foldable$SkipChildren__init_0(var$5, var$6); - return var$5; +let sci_List$partition$lambda$_92_0_apply = (var$0, var$1) => { + return sc_StrictOptimizedIterableOps_$anonfun$partition$1(var$0.$_085, var$0.$_131, var$0.$_214, var$1); }; -function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_2() { +function onciap_DefaultPatternStringifier$apply$lambda$_5_0() { jl_Object.call(this); - this.$_0974 = null; + this.$_0332 = null; } -let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2; +let onciap_DefaultPatternStringifier$apply$lambda$_5_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0974; - return onciu_Foldable$TraverseChildren__init_(s_Tuple2__init_((var$1.$_1()).$incl(var$2), var$1.$_2())); -}, -oncia_SingleQuery$checkImportingWith$lambda$_71_0 = $rt_classWithoutFields(), -oncia_SingleQuery$checkImportingWith$lambda$_71_0_apply = (var$0, var$1) => { - return oncia_Clause_semanticCheck$(var$1); + return onciap_DefaultExpressionStringifier_apply(var$0.$_0332.$expr3, var$1); }; -function oncius_TypeSpec$intersect$lambda$_15_0() { +function onciap_DefaultPatternStringifier$apply$lambda$_5_1() { jl_Object.call(this); - this.$_0144 = null; + this.$_0897 = null; } -let oncius_TypeSpec$intersect$lambda$_15_0_apply = (var$0, var$1) => { +let onciap_DefaultPatternStringifier$apply$lambda$_5_1_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0144.$ranges; - var$3 = new oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0; - var$3.$_0258 = var$1; - return var$2.$flatMap(var$3); -}; -function juc_CopyOnWriteArrayList$ListIteratorImpl() { - let a = this; jl_Object.call(a); - a.$arr = null; - a.$current4 = 0; - a.$size10 = 0; -} -let juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext = $this => { - return $this.$current4 >= $this.$size10 ? 0 : 1; -}, -juc_CopyOnWriteArrayList$ListIteratorImpl_next = $this => { - let var$1, var$2, var$3, var$4, var$5; - if (juc_CopyOnWriteArrayList$ListIteratorImpl_hasNext($this)) { - var$1 = $this.$arr.data; - var$2 = $this.$current4; - $this.$current4 = var$2 + 1 | 0; - return var$1[var$2]; - } - var$3 = new ju_NoSuchElementException; - var$4 = $this.$current4; - var$2 = $this.$size10; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append0(jl_StringBuilder_append(var$5, $rt_s(7840)), var$4), $rt_s(7841)), var$2); - jl_Throwable__init_0(var$3, jl_AbstractStringBuilder_toString(var$5)); - $rt_throw(var$3); -}, -oncius_TypeSpec$coercions$lambda$_29_0 = $rt_classWithoutFields(), -oncius_TypeSpec$coercions$lambda$_29_0_apply = (var$0, var$1) => { - return var$1.$lower0.$coercibleTo(); -}; -function sci_List$partition$lambda$_92_0() { - let a = this; jl_Object.call(a); - a.$_094 = null; - a.$_138 = null; - a.$_218 = null; -} -let sci_List$partition$lambda$_92_0_apply = (var$0, var$1) => { - return sc_StrictOptimizedIterableOps_$anonfun$partition$1(var$0.$_094, var$0.$_138, var$0.$_218, var$1); + var$2 = var$0.$_0897; + var$3 = !var$1.$containsIs() ? $rt_s(92) : $rt_s(439); + var$1 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$2.$expr3, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), var$1); + return jl_AbstractStringBuilder_toString(var$2); }; -function oncie_RelationshipPattern$mapExpressions$lambda$_20_0() { +function onciap_DefaultPatternStringifier$apply$lambda$_5_2() { jl_Object.call(this); - this.$_0472 = null; + this.$_0564 = null; } -let oncie_RelationshipPattern$mapExpressions$lambda$_20_0_apply = (var$0, var$1) => { - let var$2; +let onciap_DefaultPatternStringifier$apply$lambda$_5_2_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0472; - return !(var$1 instanceof oncie_MapExpression) ? oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1) : oncie_MapExpression_mapExpressions(var$1, var$2); + return onciap_DefaultExpressionStringifier_apply(var$0.$_0564.$expr3, var$1); }; -function oncie_RelationshipPattern$mapExpressions$lambda$_20_1() { +function onciap_DefaultPatternStringifier$apply$lambda$_5_3() { jl_Object.call(this); - this.$_0945 = null; + this.$_01017 = null; } -let oncie_RelationshipPattern$mapExpressions$lambda$_20_1_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_DefaultPatternStringifier$apply$lambda$_5_3_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0945; - var$3 = new oncie_RelationshipPattern$$anonfun$mapExpressions$6$lambda$_42_0; - var$3.$_0793 = var$2; - return s_Option_map(var$1, var$3); + return onciap_DefaultPatternStringifier_stringifyPredicate(var$0.$_01017, var$1); +}, +onciap_DefaultPatternStringifier$apply$lambda$_5_4 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_5_4_apply = var$0 => { + return $rt_s(4); +}, +onciap_DefaultPatternStringifier$apply$lambda$_5_5 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$apply$lambda$_5_5_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 91); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 93); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncie_Expression$$anonfun$dependencies$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncie_Expression$$anonfun$dependencies$1_applyOrElse = ($this, $x1, $default) => { + if ($rt_isInstance($x1, oncie_ScopeExpression)) { + $x1 = $x1; + $default = new oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0; + $default.$_0373 = $x1; + return $default; + } + if (!($x1 instanceof oncie_LogicalVariable)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $x1 = $x1; + $default = new oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1; + $default.$_0931 = $x1; + return $default; }, oncia_Clause$UsageContext$1 = $rt_classWithoutFields(0), oncia_Clause$Read$1$ = $rt_classWithoutFields(), @@ -351211,7 +277021,7 @@ oncia_Clause$Read$1$_hashCode = $this => { return 2543030; }, oncia_Clause$Read$1$_toString = $this => { - return $rt_s(5286); + return $rt_s(5795); }, oncia_Clause$Read$1$__init_0 = ($this, $$outer) => { return; @@ -351225,7 +277035,6 @@ oncia_ProcedureResult$semanticCheck$lambda$_14_0 = $rt_classWithoutFields(), oncia_ProcedureResult$semanticCheck$lambda$_14_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - oncias_package$_$callClinit(); var$2 = oncias_package$_MODULE$; var$3 = var$1.$variable8; oncius_TypeSpec$_$callClinit(); @@ -351234,97 +277043,168 @@ oncia_ProcedureResult$semanticCheck$lambda$_14_0_apply = (var$0, var$1) => { oncia_ProcedureResult$semanticCheck$lambda$_14_1 = $rt_classWithoutFields(), oncia_ProcedureResult$semanticCheck$lambda$_14_1_apply = (var$0, var$1) => { return oncia_Where_semanticCheck(var$1); -}, -oncius_TypeSpec$unwrapLists$lambda$_27_0 = $rt_classWithoutFields(), -oncius_TypeSpec$unwrapLists$lambda$_27_0_apply = (var$0, var$1) => { - return oncius_TypeRange_reparent(var$1, new oncius_TypeSpec$$anonfun$unwrapLists$1$lambda$_65_0); }; -function oncia_ProcedureResultItem$semanticCheck$lambda$_58_0() { +function oncia_ProcedureResultItem$semanticCheck$lambda$_63_0() { jl_Object.call(this); - this.$_0544 = null; + this.$_0202 = null; } -let oncia_ProcedureResultItem$semanticCheck$lambda$_58_0_apply = (var$0, var$1) => { +let oncia_ProcedureResultItem$semanticCheck$lambda$_63_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0544; - oncias_package$_$callClinit(); + var$2 = var$0.$_0202; return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$(var$2, var$2.$variable8, var$1.$covariant())); }; -function oncia_ProcedureResultItem$semanticCheck$lambda$_58_1() { +function oncia_ProcedureResultItem$semanticCheck$lambda$_63_1() { jl_Object.call(this); - this.$_01138 = null; + this.$_0757 = null; } -let oncia_ProcedureResultItem$semanticCheck$lambda$_58_1_apply = var$0 => { +let oncia_ProcedureResultItem$semanticCheck$lambda$_63_1_apply = var$0 => { let var$1, var$2, var$3; - var$1 = var$0.$_01138; + var$1 = var$0.$_0757; var$2 = var$1.$outputName; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7842)), var$2), 96); - return oncias_SemanticAnalysisTooling_error$(var$1, jl_AbstractStringBuilder_toString(var$3), var$1.$position107); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(6791)), var$2), 96); + return oncias_SemanticAnalysisTooling_error$(var$1, jl_AbstractStringBuilder_toString(var$3), var$1.$position119); +}, +oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_56_0 = $rt_classWithoutFields(), +oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_56_0_apply = var$0 => { + oncius_package$_$callClinit(); + return (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant(); +}, +oncia_SetPropertyItem$semanticCheck$lambda$_60_0 = $rt_classWithoutFields(), +oncia_SetPropertyItem$semanticCheck$lambda$_60_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); +}, +oncia_SetDynamicPropertyItem$semanticCheck$lambda$_60_0 = $rt_classWithoutFields(), +oncia_SetDynamicPropertyItem$semanticCheck$lambda$_60_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); +}, +oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_0 = $rt_classWithoutFields(), +oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); +}, +oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_1 = $rt_classWithoutFields(), +oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_1_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); +}; +function oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_2() { + jl_Object.call(this); + this.$_01085 = null; +} +let oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_2_apply = var$0 => { + let var$1; + var$1 = var$0.$_01085; + return oncias_SemanticAnalysisTooling_expectType$(var$1, new oncia_SetExactPropertiesFromMapItem$$anonfun$semanticCheck$10$lambda$_83_0, var$1.$expression15); +}, +oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_0 = $rt_classWithoutFields(), +oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); +}, +oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_1 = $rt_classWithoutFields(), +oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_1_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); +}; +function oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_2() { + jl_Object.call(this); + this.$_089 = null; +} +let oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_2_apply = var$0 => { + let var$1; + var$1 = var$0.$_089; + return oncias_SemanticAnalysisTooling_expectType$(var$1, new oncia_SetIncludingPropertiesFromMapItem$$anonfun$semanticCheck$14$lambda$_83_0, var$1.$expression16); +}, +oncia_SetLabelItem$semanticCheck$lambda$_14_0 = $rt_classWithoutFields(), +oncia_SetLabelItem$semanticCheck$lambda$_14_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); +}, +oncia_RemoveDynamicPropertyItem$semanticCheck$lambda$_13_0 = $rt_classWithoutFields(), +oncia_RemoveDynamicPropertyItem$semanticCheck$lambda$_13_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); +}, +oncia_RemoveLabelItem$semanticCheck$lambda$_14_0 = $rt_classWithoutFields(), +oncia_RemoveLabelItem$semanticCheck$lambda$_14_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); +}; +function oncia_UsingJoinHint$semanticCheck$lambda$_59_0() { + jl_Object.call(this); + this.$_0107 = null; +} +let oncia_UsingJoinHint$semanticCheck$lambda$_59_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0107; + return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_ensureDefined$(var$2, var$1)), oncias_SemanticAnalysisTooling_expectType$(var$2, new oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_73_0, var$1)); }, oncia_ASTSlicingPhrase$ = $rt_classWithoutFields(), oncia_ASTSlicingPhrase$_MODULE$ = null, -oncia_ASTSlicingPhrase$_$callClinit = () => { - oncia_ASTSlicingPhrase$_$callClinit = $rt_eraseClinit(oncia_ASTSlicingPhrase$); - oncia_ASTSlicingPhrase$__clinit_(); -}, oncia_ASTSlicingPhrase$__clinit_ = () => { - let var$1; - var$1 = new oncia_ASTSlicingPhrase$; - oncia_ASTSlicingPhrase$_$callClinit(); - oncia_ASTSlicingPhrase$_MODULE$ = var$1; + oncia_ASTSlicingPhrase$_MODULE$ = new oncia_ASTSlicingPhrase$; }, -oncia_ASTSlicingPhrase$_expectType = ($this, $s, $possibleTypes, $expression, $messageGen) => { - return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $messageGen); +oncia_ASTSlicingPhrase$_expectType = ($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen) => { + return oncias_SemanticAnalysisTooling_expectType$0($this, $s, $possibleTypes, $expression, $typeMismatchVal, $messageGen); }, -oncia_ASTSlicingPhrase$_expectType$default$4 = $this => { - return oncias_SemanticAnalysisTooling_expectType$default$4$($this); +oncia_ASTSlicingPhrase$_expectType$default$5 = $this => { + return oncias_SemanticAnalysisTooling_expectType$default$5$($this); }, -oncia_ASTSlicingPhrase$_error = ($this, $msg, $position) => { - return oncias_SemanticAnalysisTooling_error$($this, $msg, $position); +oncia_ASTSlicingPhrase$_specifiedNumberOutOfRangeError = ($this, $component, $valueType, $lower, $upper, $inputValue, $legacyMessage, $position) => { + return oncias_SemanticAnalysisTooling_specifiedNumberOutOfRangeError$($this, $component, $valueType, $lower, $upper, $inputValue, $legacyMessage, $position); }, oncia_ASTSlicingPhrase$_checkExpressionIsStaticInt = ($this, $expression, $name, $acceptsZero) => { - let var$4, var$5, var$6, var$7, var$8, $$je; + let var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $$je; var$4 = onciu_Foldable$Folder_treeExists(onciu_Foldable_folder$($expression), new oncia_ASTSlicingPhrase$$anonfun$1); oncias_SemanticCheck$_$callClinit(); var$5 = oncias_SemanticCheck$_MODULE$; - var$6 = new oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_46_0; - var$6.$_0658 = $name; - var$6.$_1228 = $expression; - var$5 = oncias_SemanticCheck$_when(var$5, var$4, var$6); - var$6 = new oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_0; - var$6.$_01171 = $expression; - var$6.$_1393 = $name; - var$7 = var$5.$ifOkChain(var$6); + var$6 = new oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_51_0; + var$6.$_01020 = $name; + var$6.$_1348 = $expression; + var$6 = oncias_SemanticCheck$_when(var$5, var$4, var$6); + var$5 = new oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_0; + var$5.$_0239 = $expression; + var$5.$_190 = $name; + var$7 = var$6.$ifOkChain(var$5); a: { try { b: { - var$4 = 0; - $name = null; + var$8 = 0; + var$9 = null; if ($expression instanceof oncie_UnsignedDecimalIntegerLiteral) $name = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); else { if ($expression instanceof oncie_SignedDecimalIntegerLiteral) { - var$4 = 1; - $name = $expression; + var$8 = 1; + var$9 = $expression; s_Predef$_$callClinit(); - if (Long_gt(s_Predef$_Long2long(s_Predef$_MODULE$, oncie_DecimalIntegerLiteral_value($name)), Long_ZERO)) { + if (Long_gt(s_Predef$_Long2long(s_Predef$_MODULE$, oncie_DecimalIntegerLiteral_value(var$9)), Long_ZERO)) { $name = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); break b; } } - if (var$4 && sr_BoxesRunTime_equalsNumObject(oncie_DecimalIntegerLiteral_value($name), sr_BoxesRunTime_boxToInteger(0)) && $acceptsZero) + if (var$8 && sr_BoxesRunTime_equalsNumObject(oncie_DecimalIntegerLiteral_value(var$9), sr_BoxesRunTime_boxToInteger(0)) && $acceptsZero) $name = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); else if (!$rt_isInstance($expression, oncie_Literal)) $name = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); else { - $name = $expression; - var$5 = !$acceptsZero ? $rt_s(7843) : $rt_s(7844); - var$6 = $name.$asCanonicalStringVal(); - var$8 = jl_StringBuilder__init_(); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$8, $rt_s(7845)), var$6), $rt_s(7846)), var$5), $rt_s(7847)); - $name = oncia_ASTSlicingPhrase$_error($this, jl_StringBuilder_toString(var$8), $name.$position()); + var$5 = $expression; + var$6 = !$acceptsZero ? $rt_s(6792) : $rt_s(6793); + $acceptsZero = !$acceptsZero ? 1 : 0; + s_Predef$_$callClinit(); + var$10 = s_Predef$_int2Integer(s_Predef$_MODULE$, $acceptsZero); + var$11 = s_Predef$_long2Long(s_Predef$_MODULE$, Long_create(4294967295, 2147483647)); + var$12 = var$5.$asCanonicalStringVal(); + var$13 = var$5.$asCanonicalStringVal(); + var$14 = jl_StringBuilder__init_(); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$14, $rt_s(6794)), var$13), $rt_s(6795)), var$6), $rt_s(6796)); + $name = oncia_ASTSlicingPhrase$_specifiedNumberOutOfRangeError($this, $name, $rt_s(722), var$10, var$11, var$12, jl_StringBuilder_toString(var$14), var$5.$position()); } } } @@ -351340,79 +277220,18 @@ oncia_ASTSlicingPhrase$_checkExpressionIsStaticInt = ($this, $expression, $name, } var$5 = oncias_SemanticCheck_chain$(var$7, $name); oncias_SemanticExpressionCheck$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$5, oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $expression)), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_1, $expression)); -}, -oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_51_0 = $rt_classWithoutFields(), -oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_51_0_apply = var$0 => { - oncius_package$_$callClinit(); - return (oncius_package$_CTMap(oncius_package$_MODULE$)).$invariant(); -}, -oncia_RemoveDynamicPropertyItem$semanticCheck$lambda$_13_0 = $rt_classWithoutFields(), -oncia_RemoveDynamicPropertyItem$semanticCheck$lambda$_13_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); -}, -oncia_SetPropertyItem$semanticCheck$lambda$_55_0 = $rt_classWithoutFields(), -oncia_SetPropertyItem$semanticCheck$lambda$_55_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); -}, -oncia_SetDynamicPropertyItem$semanticCheck$lambda$_55_0 = $rt_classWithoutFields(), -oncia_SetDynamicPropertyItem$semanticCheck$lambda$_55_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); -}, -oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_0 = $rt_classWithoutFields(), -oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); -}, -oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_1 = $rt_classWithoutFields(), -oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_1_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); -}, -oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_0 = $rt_classWithoutFields(), -oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); -}, -oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_1 = $rt_classWithoutFields(), -oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_1_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); -}, -oncia_RemoveLabelItem$semanticCheck$lambda$_14_0 = $rt_classWithoutFields(), -oncia_RemoveLabelItem$semanticCheck$lambda$_14_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); -}, -oncia_SetLabelItem$semanticCheck$lambda$_14_0 = $rt_classWithoutFields(), -oncia_SetLabelItem$semanticCheck$lambda$_14_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); -}; -function oncia_UsingJoinHint$semanticCheck$lambda$_54_0() { - jl_Object.call(this); - this.$_0182 = null; -} -let oncia_UsingJoinHint$semanticCheck$lambda$_54_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0182; - oncias_package$_$callClinit(); - return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_ensureDefined$(var$2, var$1)), oncias_SemanticAnalysisTooling_expectType$(var$2, new oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_68_0, var$1)); + return oncias_SemanticCheck_chain$(oncias_SemanticCheck_chain$(var$5, oncias_SemanticExpressionCheck$_simple(oncias_SemanticExpressionCheck$_MODULE$, $expression)), oncias_SemanticAnalysisTooling_expectType$($this, new oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_1, $expression)); }; -function onciap_Prettifier$prettifyRemoveItems$lambda$_34_0() { +function onciap_Prettifier$prettifyRemoveItems$lambda$_35_0() { jl_Object.call(this); - this.$_0241 = null; + this.$_0197 = null; } -let onciap_Prettifier$prettifyRemoveItems$lambda$_34_0_apply = (var$0, var$1) => { +let onciap_Prettifier$prettifyRemoveItems$lambda$_35_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6, var$7; a: { b: { var$1 = var$1; - var$2 = var$0.$_0241; + var$2 = var$0.$_0197; var$3 = 0; var$4 = null; if (var$1 instanceof oncia_RemovePropertyItem) { @@ -351425,7 +277244,7 @@ let onciap_Prettifier$prettifyRemoveItems$lambda$_34_0_apply = (var$0, var$1) => if (var$1 instanceof oncia_RemoveLabelItem) { var$3 = 1; var$4 = var$1; - var$5 = var$4.$variable10; + var$5 = var$4.$variable12; var$6 = var$4.$labels1; var$7 = var$4.$dynamicLabels0; if (0 == var$4.$containsIs0) { @@ -351435,7 +277254,7 @@ let onciap_Prettifier$prettifyRemoveItems$lambda$_34_0_apply = (var$0, var$1) => } if (!var$3) break a; - var$7 = var$4.$variable10; + var$7 = var$4.$variable12; var$5 = var$4.$labels1; var$6 = var$4.$dynamicLabels0; if (1 != var$4.$containsIs0) @@ -351447,44 +277266,57 @@ let onciap_Prettifier$prettifyRemoveItems$lambda$_34_0_apply = (var$0, var$1) => } $rt_throw(s_MatchError__init_(var$1)); }; -function onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0() { - jl_Object.call(this); - this.$_01192 = null; -} -let onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0__init_ = (var$0, var$1) => { - var$0.$_01192 = var$1; -}, -onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0__init_0 = var_0 => { - let var_1 = new onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0(); - onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0__init_(var_1, var_0); - return var_1; -}; -function oncia_CommandResultItem$semanticCheck$lambda$_54_0() { +function oncia_CommandResultItem$semanticCheck$lambda$_59_0() { jl_Object.call(this); - this.$_0339 = null; + this.$_0120 = null; } -let oncia_CommandResultItem$semanticCheck$lambda$_54_0_apply = (var$0, var$1) => { +let oncia_CommandResultItem$semanticCheck$lambda$_59_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0339; - oncias_package$_$callClinit(); + var$2 = var$0.$_0120; var$3 = oncias_package$_MODULE$; var$4 = var$2.$aliasedVariable; oncius_package$_$callClinit(); return oncias_package$_liftSemanticEitherFunc(var$3, oncias_SemanticAnalysisTooling_declareVariable$(var$2, var$4, var$1.$invariant())); }; -function oncia_CommandResultItem$semanticCheck$lambda$_54_1() { - jl_Object.call(this); - this.$_0909 = null; +function oncia_CommandResultItem$semanticCheck$lambda$_59_1() { + let a = this; jl_Object.call(a); + a.$_0780 = null; + a.$_1260 = null; } -let oncia_CommandResultItem$semanticCheck$lambda$_54_1_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0909; - var$2 = var$1.$originalName; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7848)), var$2), 96); - return oncias_SemanticAnalysisTooling_error$(var$1, jl_AbstractStringBuilder_toString(var$3), var$1.$position176); +let oncia_CommandResultItem$semanticCheck$lambda$_59_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$1 = var$0.$_0780; + var$2 = var$0.$_1260; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = sr_ScalaRunTime$_MODULE$; + var$5 = $rt_createArray(oncias_SemanticErrorDef, 1); + oncias_SemanticError$_$callClinit(); + var$6 = var$1.$originalName; + var$7 = sj_CollectionConverters$_MODULE$; + var$8 = sc_IterableOnceOps_toList$(var$2.$keySet()); + if (var$7 === null) + $rt_throw(null); + if (var$8 === null) + var$2 = null; + else if (var$8 instanceof scc_JavaCollectionWrappers$JCollectionWrapper) + var$2 = var$8.$underlying4(); + else { + var$2 = new scc_JavaCollectionWrappers$IterableWrapper; + var$2.$underlying37 = var$8; + } + var$9 = var$5.data; + var$8 = jusi_SimpleStreamImpl_collect(ju_Collection_stream(var$2), jus_Collectors_toList()); + var$2 = var$1.$position183; + var$8 = ong_GqlHelper_getGql42001_22N04(var$6, $rt_s(6797), var$8, var$2.$offset(), var$2.$line(), var$2.$column()); + var$7 = new oncias_SemanticError; + var$10 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$10); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$10, $rt_s(6798)), var$6), 96); + oncias_SemanticError__init_(var$7, var$8, jl_AbstractStringBuilder_toString(var$10), var$2); + var$9[0] = var$7; + return oncias_SemanticCheck$_error(var$3, sr_ScalaRunTime$_wrapRefArray(var$4, var$5)); }, oncia_UnresolvedCall$wrappedOptional$lambda$_20_0 = $rt_classWithoutFields(), oncia_UnresolvedCall$wrappedOptional$lambda$_20_0_apply = (var$0, var$1) => { @@ -351498,14 +277330,15 @@ oncia_UnresolvedCall$wrappedOptional$lambda$_20_1_apply = var$0 => { }; function oncia_UnresolvedCall$wrappedOptional$lambda$_20_2() { let a = this; jl_Object.call(a); - a.$_0833 = null; - a.$_1284 = null; + a.$_0805 = null; + a.$_1269 = null; } let oncia_UnresolvedCall$wrappedOptional$lambda$_20_2_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0833; - var$3 = var$0.$_1284; + var$2 = var$0.$_0805; + var$3 = var$0.$_1269; + oncias_SemanticState$ScopeLocation$_$callClinit(); if (!(oncias_SemanticState$ScopeLocation$_localSymbol$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$3, var$1.$name4) instanceof s_Some)) { oncias_SemanticCheck$_$callClinit(); var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); @@ -351513,197 +277346,287 @@ let oncia_UnresolvedCall$wrappedOptional$lambda$_20_2_apply = (var$0, var$1) => var$4 = var$1.$name4; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(870)), var$4), $rt_s(871)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(868)), var$4), $rt_s(869)); var$1 = oncias_SemanticAnalysisTooling_error$(var$2, jl_AbstractStringBuilder_toString(var$3), var$1.$position4); } return var$1; -}, -oncius_TypeSpec$wrapInList$lambda$_24_0 = $rt_classWithoutFields(), -oncius_TypeSpec$wrapInList$lambda$_24_0_apply = (var$0, var$1) => { - return oncius_TypeRange_reparent(var$1, new oncius_TypeSpec$$anonfun$wrapInList$1$lambda$_60_0); }; -function oncifp_SelfReferenceCheckWithinPatternPart$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_8_0() { - let a = this; jl_Object.call(a); - a.$_01200 = null; - a.$_1274 = null; - a.$_291 = null; - a.$_332 = null; +function onciap_DefaultPatternStringifier$apply$lambda$_0_0() { + jl_Object.call(this); + this.$_0783 = null; } -let oncifp_SelfReferenceCheckWithinPatternPart$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_8_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let onciap_DefaultPatternStringifier$apply$lambda$_0_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_1274; - var$3 = s_Option_map((oncias_SemanticTable_typeFor(var$0.$_291, var$1)).$typeInfo, new oncifp_SelfReferenceCheckWithinPatternPart$createError$lambda$_10_0); - if (!(var$3 instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, var$3)) - $rt_throw(s_MatchError__init_(var$3)); - var$4 = var$1.$name4; - var$2 = jl_String_format($rt_s(7849), $rt_wrapArray(jl_Object, [var$4, var$2.$name()])); - } else { - var$3 = var$3.$value5; - var$5 = var$1.$name4; - var$2 = jl_String_format($rt_s(7850), $rt_wrapArray(jl_Object, [var$3, var$5, var$2.$name()])); - } - oncias_SemanticError$_$callClinit(); - return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$2, var$1.$position4); + return onciap_DefaultPatternStringifier_apply(var$0.$_0783, var$1); +}, +onm_MessageUtil = $rt_classWithoutFields(), +oncias_Symbol$toString$lambda$_14_0 = $rt_classWithoutFields(), +oncias_Symbol$toString$lambda$_14_0_apply = (var$0, var$1) => { + return oncias_SymbolUse_uniqueName(var$1); }; -function oncifp_SelfReferenceCheckAcrossPatternParts$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_8_0() { +function onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0() { jl_Object.call(this); - this.$_0334 = null; + this.$_0523 = null; } -let oncifp_SelfReferenceCheckAcrossPatternParts$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_8_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0334; - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = var$1.$name4; - var$2 = var$2.$name(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(7851)), var$4), $rt_s(7852)), var$2), $rt_s(7853)); - return oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$5), var$1.$position4); + return onciap_DefaultExpressionStringifier_apply(var$0.$_0523.$expr6, var$1); +}, +onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1 = $rt_classWithoutFields(), +onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1_apply = var$0 => { + return $rt_s(4); +}, +onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_0 = $rt_classWithoutFields(), +onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_1 = $rt_classWithoutFields(), +onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_2 = $rt_classWithoutFields(); +function sci_LazyList$flatten$lambda$_76_0() { + let a = this; jl_Object.call(a); + a.$_0928 = null; + a.$_1320 = null; +} +let sci_LazyList$flatten$lambda$_76_0_apply = var$0 => { + return sci_LazyList$_$anonfun$flatMapImpl$1(var$0.$_0928, var$0.$_1320); }; -function oncius_TypeSpec$leastUpperBounds$lambda$_23_0() { +function onciap_Prettifier$asString$lambda$_41_0() { jl_Object.call(this); - this.$_01122 = null; + this.$_0652 = null; } -let oncius_TypeSpec$leastUpperBounds$lambda$_23_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_01122.$ranges; - var$3 = new oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0; - var$3.$_0628 = var$1; - return var$2.$flatMap(var$3); +let onciap_Prettifier$asString$lambda$_41_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$0.$_0652.$useInCommands); }; -function oncius_TypeSpec$without$lambda$_20_0() { +function onciap_Prettifier$asString$lambda$_41_1() { jl_Object.call(this); - this.$_0134 = null; + this.$_016 = null; } -let oncius_TypeSpec$without$lambda$_20_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let onciap_Prettifier$asString$lambda$_41_1_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0134; - if (oncius_ListType_isAssignableFrom(var$2, var$1.$lower0)) - var$3 = s_None$_MODULE$; - else if (!var$1.$lower0.$isAssignableFrom0(var$2)) - var$3 = s_Some__init_(var$1); - else { - var$4 = var$1.$upper0; - if (jl_Object_equals(s_None$_MODULE$, var$4)) { - var$3 = new s_Some; - oncius_TypeRange$_$callClinit(); - s_Some__init_0(var$3, oncius_TypeRange$_apply(oncius_TypeRange$_MODULE$, var$1.$lower0, var$2.$parentType0)); - } else { - if (!(var$4 instanceof s_Some)) - $rt_throw(s_MatchError__init_(var$4)); - if (!oncius_ListType_isAssignableFrom(var$2, var$4.$value5)) - var$3 = s_Some__init_(var$1); - else { - var$3 = new s_Some; - oncius_TypeRange$_$callClinit(); - s_Some__init_0(var$3, oncius_TypeRange$_apply(oncius_TypeRange$_MODULE$, var$1.$lower0, var$2.$parentType0)); - } - } - } - return var$3; + var$2 = var$0.$_016; + var$1 = onciap_Prettifier$IndentingQueryPrettifier_dispatch(var$2.$base, var$1); + var$3 = var$2.$NL0; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), var$3); + return jl_AbstractStringBuilder_toString(var$2); }, -sc_View$$newBuilder$lambda$_20_0 = $rt_classWithoutFields(), -sc_View$$newBuilder$lambda$_20_0_apply = (var$0, var$1) => { +onciap_Prettifier$asString$lambda$_41_2 = $rt_classWithoutFields(), +onciap_Prettifier$asString$lambda$_41_2_apply = var$0 => { + return $rt_s(4); +}, +onciap_Prettifier$getStartOfCommand$1$lambda$_73_0 = $rt_classWithoutFields(), +onciap_Prettifier$getStartOfCommand$1$lambda$_73_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return sc_View$_from(sc_View$_MODULE$, var$1); + onciap_Prettifier$_$callClinit(); + var$1 = onciap_Prettifier$_escapeName1(onciap_Prettifier$_MODULE$, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$2, var$1), 32); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciap_Prettifier$getStartOfCommand$1$lambda$_73_1 = $rt_classWithoutFields(), +onciap_Prettifier$getStartOfCommand$1$lambda$_73_1_apply = var$0 => { + return $rt_s(4); }; -function sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0() { +function onciap_Prettifier$propertiesToString$1$lambda$_69_0() { jl_Object.call(this); - this.$_0924 = null; + this.$_01159 = null; } -let sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0_apply = (var$0, var$1) => { - let var$2; +function onciap_Prettifier$showClausesAsString$1$lambda$_83_0() { + jl_Object.call(this); + this.$_0487 = null; +} +let onciap_Prettifier$showClausesAsString$1$lambda$_83_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0924; - return sci_Map$WithDefault__init_(var$1, var$2.$defaultValue); + return onciap_Prettifier$IndentingQueryPrettifier_asString7(var$0.$_0487, var$1); +}; +function onciap_Prettifier$showClausesAsString$1$lambda$_83_1() { + jl_Object.call(this); + this.$_01008 = null; +} +let onciap_Prettifier$showClausesAsString$1$lambda$_83_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_01008.$NL0; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), var$1); + return jl_AbstractStringBuilder_toString(var$3); }, -oncius_TypeRange$contains$lambda$_7_0 = $rt_classWithoutFields(), -oncius_TypeRange$contains$lambda$_7_0_apply$mcZ$sp = var$0 => { - return 1; +onciap_Prettifier$showClausesAsString$1$lambda$_83_2 = $rt_classWithoutFields(), +onciap_Prettifier$showClausesAsString$1$lambda$_83_2_apply = var$0 => { + return $rt_s(4); }; -function oncius_TypeRange$contains$lambda$_7_1() { +function oncia_PropertyResource() { jl_Object.call(this); - this.$_044 = null; + this.$property5 = null; } -let oncius_TypeRange$contains$lambda$_7_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0 = $rt_classWithoutFields(), +onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_044.$upper0; - var$3 = new oncius_TypeRange$$anonfun$contains$4$lambda$_36_0; - var$4 = new oncius_TypeRange$$anonfun$contains$4$lambda$_36_1; - var$4.$_01005 = var$1; - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(s_Option_fold(var$2, var$3, var$4))); + onciap_Prettifier$_$callClinit(); + return onu_Stringifier_backtick(var$1); +}; +function oncia_LabelResource() { + jl_Object.call(this); + this.$label3 = null; +} +let onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_1 = $rt_classWithoutFields(), +onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_1_apply = (var$0, var$1) => { + var$1 = var$1; + onciap_Prettifier$_$callClinit(); + return onu_Stringifier_backtick(var$1); +}; +function onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1() { + sr_AbstractPartialFunction.call(this); + this.$expr$1 = null; +} +let onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1_applyOrElse = ($this, $x1, $default) => { + let var$3, $cidrParam, $urlString, $urlParam, $cidrString; + var$3 = 0; + $cidrParam = null; + if ($x1 instanceof sci_$colon$colon) { + var$3 = 1; + $cidrParam = $x1; + $urlString = $cidrParam.$head1; + $urlParam = $cidrParam.$next5; + if ($urlString instanceof oncia_LoadAllQualifier && sci_List_equals(sci_Nil$_MODULE$, $urlParam)) + return $rt_s(6799); + } + if (var$3) { + $urlString = $cidrParam.$head1; + $cidrString = $cidrParam.$next5; + if ($urlString instanceof oncia_LoadUrlQualifier) { + $urlString = $urlString.$url2; + if ($urlString instanceof su_Left) { + $urlString = $urlString.$value6; + if (sci_List_equals(sci_Nil$_MODULE$, $cidrString)) { + $x1 = onciap_DefaultExpressionStringifier_quote($this.$expr$1, $urlString); + $default = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($default); + jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(6800)), $x1); + return jl_AbstractStringBuilder_toString($default); + } + } + } + } + if (var$3) { + $urlString = $cidrParam.$head1; + $cidrString = $cidrParam.$next5; + if ($urlString instanceof oncia_LoadUrlQualifier) { + $urlString = $urlString.$url2; + if ($urlString instanceof su_Right) { + $urlParam = $urlString.$value7; + if (sci_List_equals(sci_Nil$_MODULE$, $cidrString)) { + $x1 = onciap_DefaultExpressionStringifier_apply($this.$expr$1, $urlParam); + $default = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($default); + jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(6800)), $x1); + return jl_AbstractStringBuilder_toString($default); + } + } + } + } + if (var$3) { + $urlString = $cidrParam.$head1; + $urlParam = $cidrParam.$next5; + if ($urlString instanceof oncia_LoadCidrQualifier) { + $urlString = $urlString.$cidr; + if ($urlString instanceof su_Left) { + $cidrString = $urlString.$value6; + if (sci_List_equals(sci_Nil$_MODULE$, $urlParam)) { + $x1 = onciap_DefaultExpressionStringifier_quote($this.$expr$1, $cidrString); + $default = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($default); + jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(6801)), $x1); + return jl_AbstractStringBuilder_toString($default); + } + } + } + } + if (var$3) { + $urlString = $cidrParam.$head1; + $urlParam = $cidrParam.$next5; + if ($urlString instanceof oncia_LoadCidrQualifier) { + $urlString = $urlString.$cidr; + if ($urlString instanceof su_Right) { + $cidrParam = $urlString.$value7; + if (sci_List_equals(sci_Nil$_MODULE$, $urlParam)) { + $x1 = onciap_DefaultExpressionStringifier_apply($this.$expr$1, $cidrParam); + $default = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($default); + jl_StringBuilder_append(jl_StringBuilder_append($default, $rt_s(6801)), $x1); + return jl_AbstractStringBuilder_toString($default); + } + } + } + } + return s_PartialFunction$$anon$1_apply($default, $x1); }, -oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return onciu_Foldable$SkipChildren__init_(var$1); +onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1_applyOrElse0 = ($this, $x, $default) => { + return onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1_applyOrElse($this, $x, $default); }; -function oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1() { +function onciap_Prettifier$asIndividualOptions$lambda$_44_0() { jl_Object.call(this); - this.$_0148 = null; + this.$_0660 = null; } -let oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let onciap_Prettifier$asIndividualOptions$lambda$_44_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0148; - var$3 = new onciu_Foldable$SkipChildren; - var$4 = new oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0; - var$4.$_01154 = var$2; - onciu_Foldable$SkipChildren__init_0(var$3, oncie_Expression$TreeAcc_mapData(var$1, var$4)); - return var$3; + var$2 = var$0.$_0660; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = onciap_Prettifier_backtick(var$2, var$3); + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + var$3 = jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6802)), var$3); + jl_AbstractStringBuilder_append0(var$3, 32); + jl_StringBuilder_append(var$3, var$1); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_0 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_0_apply = var$0 => { + return $rt_s(4); +}, +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_1 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_1_apply = (var$0, var$1) => { + return var$1.$stringVal0; +}, +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_2 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_2_apply = var$0 => { + return $rt_s(4); +}, +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_3 = $rt_classWithoutFields(), +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_3_apply = (var$0, var$1) => { + return var$1.$stringVal0; }; -function oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0() { - jl_Object.call(this); - this.$_01189 = null; +function oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0() { + let a = this; jl_Object.call(a); + a.$_0875 = null; + a.$_1294 = null; } -let oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0_apply0 = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; - var$1 = var$1; - var$2 = var$1.$returnItems3; - s_Option$_$callClinit(); - var$3 = s_Option$_MODULE$; - var$4 = sc_IterableOnceOps_nonEmpty$(var$2.$items0); - var$5 = new oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_00; - var$5.$_0511 = var$2; - var$5 = s_Option$_when(var$3, var$4, var$5); - oncia_CommandClause$_$callClinit(); - var$3 = oncia_CommandClause$_updateAliasedVariablesFromYieldInOrderByAndWhere(oncia_CommandClause$_MODULE$, var$1); - if (var$3 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$6 = var$3.$_10; - var$7 = var$3.$_20; - var$3 = s_Tuple2__init_(var$6, var$7); - var$6 = var$3.$_10; - var$7 = var$3.$_20; - var$8 = new oncia_With; - var$9 = oncia_ReturnItems__init_0(1, sci_Nil$_MODULE$, var$5, var$2.$position19); - var$2 = var$1.$skip4; - var$5 = var$1.$limit4; - oncia_ParsedAsYield$_$callClinit(); - oncia_With__init_(var$8, 0, var$9, var$6, var$2, var$5, var$7, oncia_ParsedAsYield$_MODULE$, var$1.$position21); - return var$8; -}, -oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_1 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_1_apply0 = var$0 => { - s_package$_$callClinit(); - return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +let oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0875; + var$2 = var$0.$_1294; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$1 = onciuh_TreeZipper$Location_up(var$1); + var$3 = new oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0; + var$3.$_01044 = var$2; + return s_Option_flatMap(var$1, var$3); }; -function oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_0() { +function oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_0() { let a = this; jl_Object.call(a); - a.$_01171 = null; - a.$_1393 = null; + a.$_0239 = null; + a.$_190 = null; } -let oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_0_apply = var$0 => { +let oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_0_apply = var$0 => { let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_01171; - var$2 = var$0.$_1393; - oncia_ASTSlicingPhrase$_$callClinit(); + var$1 = var$0.$_0239; + var$2 = var$0.$_190; var$3 = oncia_ASTSlicingPhrase$_MODULE$; var$1 = var$1.$dependencies(); if (!sc_IterableOnceOps_nonEmpty$(var$1)) { @@ -351711,43 +277634,178 @@ let oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_0_apply = var$ var$1 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); } else { var$4 = sc_IterableOnceOps_toSeq$(var$1); - var$5 = new oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_45_0; + var$5 = new oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_50_0; onciu_InputPosition$_$callClinit(); var$1 = sc_AbstractIterable_minBy(var$4, var$5, onciu_InputPosition$_byOffset(onciu_InputPosition$_MODULE$)); var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(7854)), var$2), $rt_s(7855)), var$2), $rt_s(7856)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6803)), var$2), $rt_s(6804)), var$2), $rt_s(6805)); var$1 = oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$5), var$1.$position4); } return var$1; }, -oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_1 = $rt_classWithoutFields(), -oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_1_apply = var$0 => { - oncia_ASTSlicingPhrase$_$callClinit(); +oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_1 = $rt_classWithoutFields(), +oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_1_apply = var$0 => { oncius_package$_$callClinit(); return oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)); }; -function oncifp_SelfReferenceCheckWithinPatternPart$findSelfReferenceVariablesWithinPatternParts$lambda$_9_0() { - let a = this; jl_Object.call(a); - a.$_0256 = null; - a.$_197 = null; - a.$_239 = null; +function oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0596 = null; +} +let oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0596.$definition; + if (var$1 !== null) { + if (oncias_SymbolUse_equals(var$1, var$2)) + break c; + else + break b; + } + if (var$2 !== null) + break b; + } + var$3 = 0; + break a; + } + var$3 = 1; + } + return jl_Boolean_valueOf(var$3); +}; +function oncius_TypeSpec$contains$lambda$_9_0() { + jl_Object.call(this); + this.$_0792 = null; } -let oncifp_SelfReferenceCheckWithinPatternPart$findSelfReferenceVariablesWithinPatternParts$lambda$_9_0_apply = (var$0, var$1) => { +let oncius_TypeSpec$contains$lambda$_9_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + a: { + var$1 = var$1; + var$2 = var$0.$_0792; + if (var$1.$lower0.$isAssignableFrom0(var$2)) { + var$3 = var$1.$upper0; + var$1 = new oncius_TypeRange$contains$lambda$_6_0; + var$4 = new oncius_TypeRange$contains$lambda$_6_1; + var$4.$_0172 = var$2; + if (sr_BoxesRunTime_unboxToBoolean(s_Option_fold(var$3, var$1, var$4))) { + var$5 = 1; + break a; + } + } + var$5 = 0; + } + return jl_Boolean_valueOf(var$5); +}, +oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0 = $rt_classWithoutFields(), +oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0__init_ = var$0 => { + return; +}, +oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0__init_0 = () => { + let var_0 = new oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0(); + oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0__init_(var_0); + return var_0; +}, +oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0_apply = (var$0, var$1, var$2) => { var$1 = var$1; - return oncifp_VariableReferenceCheck_findSelfReferenceVariables$(var$0.$_0256, var$1, var$0.$_197, var$0.$_239); + var$2 = var$2; + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(var$1, var$2.$invariant()); }; -function oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0() { +function suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0() { + let a = this; jl_Object.call(a); + a.$_0685 = null; + a.$_1234 = null; +} +let suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0_apply = var$0 => { + return var$0.$_0685.$apply2(var$0.$_1234); +}; +function suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1() { + let a = this; jl_Object.call(a); + a.$_0451 = null; + a.$_1157 = null; +} +let suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1_apply = (var$0, var$1) => { + return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_0451, var$0.$_1157, var$1); +}; +function suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0() { + let a = this; jl_Object.call(a); + a.$_0823 = null; + a.$_1275 = null; +} +let suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0_apply = var$0 => { + return var$0.$_0823.$apply2(var$0.$_1275); +}; +function suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1() { + let a = this; jl_Object.call(a); + a.$_0242 = null; + a.$_192 = null; +} +let suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1_apply = (var$0, var$1) => { + return suc_TailCalls$TailRec_$anonfun$flatMap$2(var$0.$_0242, var$0.$_192, var$1); +}; +function onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0() { + let a = this; jl_Object.call(a); + a.$_0752 = null; + a.$_1252 = null; +} +let onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0752; + var$2 = var$0.$_1252; + return onciut_TailCallsUtil$_traverse(onciut_TailCallsUtil$_MODULE$, var$1.$tail(), var$2); +}; +function onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1() { jl_Object.call(this); - this.$_01058 = null; + this.$_0219 = null; } -let oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0_apply = (var$0, var$1) => { +let onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1_apply = (var$0, var$1) => { + return var$1.$prepended(var$0.$_0219); +}; +function onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0() { + let a = this; jl_Object.call(a); + a.$_0182 = null; + a.$_166 = null; +} +let onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0_apply = (var$0, var$1) => { + return var$0.$_0182.$apply3(var$0.$_166, var$1); +}; +function suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0() { + let a = this; jl_Object.call(a); + a.$_013 = null; + a.$_110 = null; +} +let suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_013; + var$2 = var$0.$_110; + return suc_TailCalls$Done__init_(var$1.$apply2(var$2)); +}, +onciap_DefaultExpressionStringifier$$anonfun$stringify$33$lambda$_60_0 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$$anonfun$stringify$33$lambda$_60_0_apply = (var$0, var$1) => { + return var$1; +}, +onciap_DefaultExpressionStringifier$$anonfun$stringify$38$lambda$_65_0 = $rt_classWithoutFields(), +onciap_DefaultExpressionStringifier$$anonfun$stringify$38$lambda$_65_0_apply = (var$0, var$1) => { + return var$1; +}, +oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_0 = $rt_classWithoutFields(), +oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_0_apply = (var$0, var$1) => { + return var$1.$normalizedCypherTypeString(); +}, +oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_1 = $rt_classWithoutFields(), +oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_2 = $rt_classWithoutFields(), +oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_2_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_01058; - var$3 = oncias_SemanticState$ScopeLocation$_MODULE$; - oncias_SemanticState$_$callClinit(); - return oncias_SemanticState$ScopeLocation$_symbol$extension(var$3, var$1, var$2); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$2), $rt_s(688)), var$1); + return jl_AbstractStringBuilder_toString(var$3); }; function sci_LazyList$LazyBuilder$DeferredState() { jl_Object.call(this); @@ -351759,7 +277817,7 @@ let sci_LazyList$LazyBuilder$DeferredState_eval = $this => { if ($state !== null) return $state.$apply4(); var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(7857)); + jl_Throwable__init_(var$2, $rt_s(6806)); $rt_throw(var$2); }, sci_LazyList$LazyBuilder$DeferredState_init = ($this, $state) => { @@ -351769,87 +277827,383 @@ sci_LazyList$LazyBuilder$DeferredState_init = ($this, $state) => { return; } var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(7858)); + jl_Throwable__init_(var$2, $rt_s(6807)); $rt_throw(var$2); }; function sci_LazyList$LazyBuilder$clear$lambda$_9_0() { jl_Object.call(this); - this.$_01052 = null; + this.$_01040 = null; } let sci_LazyList$LazyBuilder$clear$lambda$_9_0_apply = var$0 => { - return sci_LazyList$LazyBuilder$DeferredState_eval(var$0.$_01052); + return sci_LazyList$LazyBuilder$DeferredState_eval(var$0.$_01040); }; function sci_LazyList$$anonfun$mapImpl$1$lambda$_161_0() { let a = this; jl_Object.call(a); - a.$_0184 = null; - a.$_170 = null; + a.$_0180 = null; + a.$_165 = null; } let sci_LazyList$$anonfun$mapImpl$1$lambda$_161_0_apply = var$0 => { - return sci_LazyList_$anonfun$mapImpl$1(var$0.$_0184, var$0.$_170); + return sci_LazyList_$anonfun$mapImpl$1(var$0.$_0180, var$0.$_165); }; -function sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0() { +function sci_LazyList$$$anonfun$filterImpl$1$lambda$_48_0() { let a = this; jl_Object.call(a); - a.$_0873 = null; - a.$_1300 = null; + a.$_0556 = null; + a.$_1187 = null; + a.$_260 = 0; } -let sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0_apply = var$0 => { - return sci_LazyList_$anonfun$lazyAppendedAll$1(var$0.$_0873, var$0.$_1300); +let sci_LazyList$$$anonfun$filterImpl$1$lambda$_48_0_apply = var$0 => { + return sci_LazyList$_$anonfun$filterImpl$1(var$0.$_0556, var$0.$_1187, var$0.$_260); }; -function sci_LazyList$$$anonfun$filterImpl$1$lambda$_48_0() { +function sci_LazyList$$$anonfun$continually$1$lambda$_64_0() { + jl_Object.call(this); + this.$_01033 = null; +} +let sci_LazyList$$$anonfun$continually$1$lambda$_64_0_apply = var$0 => { + return sci_LazyList$_$anonfun$continually$1(var$0.$_01033); +}; +function sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0() { let a = this; jl_Object.call(a); - a.$_0573 = null; - a.$_1196 = null; - a.$_264 = 0; + a.$_0856 = null; + a.$_1288 = null; } -let sci_LazyList$$$anonfun$filterImpl$1$lambda$_48_0_apply = var$0 => { - return sci_LazyList$_$anonfun$filterImpl$1(var$0.$_0573, var$0.$_1196, var$0.$_264); +let sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0_apply = var$0 => { + return sci_LazyList_$anonfun$lazyAppendedAll$1(var$0.$_0856, var$0.$_1288); }; function sci_LazyList$$$anonfun$flatMapImpl$1$lambda$_52_0() { let a = this; jl_Object.call(a); - a.$_0682 = null; - a.$_1238 = null; - a.$_276 = null; + a.$_0676 = null; + a.$_1230 = null; + a.$_275 = null; } let sci_LazyList$$$anonfun$flatMapImpl$1$lambda$_52_0_apply = var$0 => { let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0682; - var$2 = var$0.$_1238; - var$3 = var$0.$_276; + var$1 = var$0.$_0676; + var$2 = var$0.$_1230; + var$3 = var$0.$_275; sci_LazyList$_$callClinit(); var$1 = var$1.$elem; var$4 = new sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0; - var$4.$_0207 = var$2; - var$4.$_179 = var$3; + var$4.$_0201 = var$2; + var$4.$_174 = var$3; if (var$1.$hasNext()) { var$2 = var$1.$next(); var$3 = new sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2; - var$3.$_0107 = var$1; - var$3.$_143 = var$4; + var$3.$_094 = var$1; + var$3.$_135 = var$4; var$1 = sci_LazyList$State$Cons__init_(var$2, sci_LazyList__init_(var$3)); } else { var$2 = sr_ObjectRef__init_(var$2.$elem); var$1 = new sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1; - var$1.$_0750 = var$2; - var$1.$_1256 = var$3; + var$1.$_0735 = var$2; + var$1.$_1247 = var$3; var$1 = sci_LazyList_scala$collection$immutable$LazyList$$state(sci_LazyList__init_(var$1)); } return var$1; }; -function sci_LazyList$$$anonfun$continually$1$lambda$_64_0() { +function oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_0() { jl_Object.call(this); - this.$_01045 = null; + this.$_0722 = null; } -let sci_LazyList$$$anonfun$continually$1$lambda$_64_0_apply = var$0 => { - return sci_LazyList$_$anonfun$continually$1(var$0.$_01045); +let oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$2 = var$0.$_0722; + oncias_SemanticPatternCheck$_$callClinit(); + if (var$1 instanceof oncie_ParenthesizedPath) { + var$3 = var$1; + if (var$3.$part0 instanceof oncie_NamedPatternPart && oncie_PatternPartWithSelector_isSelective(var$2)) + var$1 = oncias_SemanticPatternCheck$_normalizeParenthesizedPath(oncias_SemanticPatternCheck$_MODULE$, var$3); + } + return var$1; +}; +function oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_1() { + let a = this; jl_Object.call(a); + a.$_0200 = null; + a.$_173 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + var$1 = var$0.$_0200; + var$2 = var$0.$_173; + oncias_SemanticPatternCheck$_$callClinit(); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = var$2.$selector1.$prettified(); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(5122)), var$4), 96); + return oncias_SemanticPatternCheck$_checkContext(var$3, var$1, jl_AbstractStringBuilder_toString(var$5), var$2.$selector1.$position()); +}; +function oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_207_0() { + let a = this; jl_Object.call(a); + a.$_064 = null; + a.$_124 = null; + a.$_212 = null; + a.$_37 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_207_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$1 = var$0.$_064; + var$2 = var$0.$_124; + var$3 = var$0.$_212; + var$4 = var$0.$_37; + oncias_SemanticExpressionCheck$_$callClinit(); + var$5 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(oncias_SemanticExpressionCheck$_stringifier0(oncias_SemanticExpressionCheck$_MODULE$), var$1.$replaceColonSyntax()); + if (!var$1.$containsIs()) { + var$6 = oncias_SemanticExpressionCheck$_MODULE$; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(6808)), var$5), 46); + var$1 = oncias_SemanticAnalysisTooling_error$(var$6, jl_AbstractStringBuilder_toString(var$7), ((oncias_SemanticExpressionCheck$_legacySymbols$1(var$2, var$3, var$1, var$4)).$head()).$position()); + } else { + var$8 = oncias_SemanticExpressionCheck$_MODULE$; + var$7 = ong_GqlHelper_getGql42001_42I29(jl_String_valueOf(var$1), var$5, (((oncias_SemanticExpressionCheck$_legacySymbols$1(var$2, var$3, var$1, var$4)).$head()).$position()).$offset(), (((oncias_SemanticExpressionCheck$_legacySymbols$1(var$2, var$3, var$1, var$4)).$head()).$position()).$line(), (((oncias_SemanticExpressionCheck$_legacySymbols$1(var$2, var$3, var$1, var$4)).$head()).$position()).$column()); + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(6809)), var$5), 46); + var$1 = oncias_SemanticAnalysisTooling_error$0(var$8, var$7, jl_AbstractStringBuilder_toString(var$9), ((oncias_SemanticExpressionCheck$_legacySymbols$1(var$2, var$3, var$1, var$4)).$head()).$position()); + } + return var$1; +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$98$lambda$_168_0() { + let a = this; jl_Object.call(a); + a.$_0672 = null; + a.$_1228 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$98$lambda$_168_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10; + var$1 = var$1; + var$2 = var$0.$_0672; + var$3 = var$0.$_1228; + oncias_SemanticExpressionCheck$_$callClinit(); + if (jl_String_charAt(var$2, jl_String_indexOf(var$2, 48) + 1 | 0) != 111 && jl_String_charAt(var$2, jl_String_indexOf(var$2, 48) + 1 | 0) != 95) { + s_Predef$_$callClinit(); + var$4 = jl_String_indexOf(var$2, 48) + 1 | 0; + var$5 = var$2.$nativeString.length; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_0(var$6, (var$5 + $rt_s(6810).$nativeString.length | 0) - 0 | 0); + var$7 = var$4 <= 0 ? 0 : jl_Math_min(var$4, var$5); + if (var$7 > 0) + jl_AbstractStringBuilder_append1(var$6, var$2, 0, var$7); + jl_AbstractStringBuilder_append(var$6, $rt_s(6810)); + var$7 = (var$5 - var$7 | 0) - 0 | 0; + if (var$7 > 0) + jl_AbstractStringBuilder_append1(var$6, var$2, var$5 - var$7 | 0, var$5); + var$8 = jl_AbstractStringBuilder_toString(var$6); + var$9 = new sci_$colon$colon; + oncias_SemanticError$_$callClinit(); + var$10 = oncias_SemanticError$_MODULE$; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6811)), var$2), $rt_s(6812)), var$8), $rt_s(4988)); + sci_$colon$colon__init_0(var$9, oncias_SemanticError$_apply(var$10, jl_AbstractStringBuilder_toString(var$6), var$3.$position40), sci_Nil$_MODULE$); + } else { + s_package$_$callClinit(); + var$9 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + } + return oncias_SemanticCheckResult__init_(var$1, var$9); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_85_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_85_0_apply = var$0 => { + let var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_TypeSpec_union(oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))), (oncius_package$_CTString(oncius_package$_MODULE$)).$invariant()); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_97_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_97_0_apply = var$0 => { + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); }; -function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_104_0() { +function oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_65_0() { jl_Object.call(this); - this.$_0208 = null; + this.$_0118 = null; +} +let oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_65_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0118; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncius_TypeSpec_wrapInList(oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticFunctionCheck$_MODULE$, (oncie_Expression_arguments(var$2)).$apply1(0)), var$1)); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_76_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_76_0_apply = var$0 => { + let var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_87_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_87_0_apply = var$0 => { + let var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_95_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_95_0_apply = var$0 => { + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTFloat(oncius_package$_MODULE$)).$invariant(); +}; +function oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_78_0() { + jl_Object.call(this); + this.$_0145 = null; +} +let oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_78_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0145; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticFunctionCheck$_MODULE$, (oncie_Expression_arguments(var$2)).$apply1(0)), var$1); +}, +oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_146_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_146_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_ensureDefined$(oncias_SemanticPatternCheck$_MODULE$, var$1.$singleton)); +}; +function oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_80_0() { + jl_Object.call(this); + this.$_0674 = null; +} +let oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_80_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0674; + oncias_SemanticFunctionCheck$_$callClinit(); + return oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticFunctionCheck$_MODULE$, (oncie_Expression_arguments(var$2)).$apply1(0)), var$1); +}; +function oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_93_0() { + jl_Object.call(this); + this.$_01024 = null; +} +let oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_93_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_01024; + var$2 = new oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_92_0; + var$2.$_098 = var$1; + return oncias_SemanticCheck_chain$(oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(var$1, var$1.$variable16, var$2, s_None$_MODULE$, 0)), oncias_SemanticCheckableIterableOnce$_semanticCheck$extension(oncias_SemanticCheckableIterableOnce$_MODULE$, var$1.$updates)); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_67_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_67_0_apply = var$0 => { + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_AnyType_covariant(oncius_package$_CTAny(oncius_package$_MODULE$)); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_70_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_70_0_apply = var$0 => { + let var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +}, +oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_90_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_90_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_BoxesRunTime_unboxToBoolean(onciu_Foldable$Folder_treeFold(onciu_Foldable_folder$(var$1.$element()), jl_Boolean_valueOf(1), new oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1)); + var$4 = new oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_55_0; + var$4.$_01099 = var$1; + return oncias_SemanticCheck$_when(var$2, var$3, var$4); +}; +function oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_138_0() { + jl_Object.call(this); + this.$_0318 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_138_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0318; + oncias_SemanticPatternCheck$_$callClinit(); + oncia_Where$_$callClinit(); + return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_90_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_90_0_apply = var$0 => { + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(); +}; +function oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_168_0() { + jl_Object.call(this); + this.$_0275 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_168_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0275; + oncias_SemanticPatternCheck$_$callClinit(); + oncia_Where$_$callClinit(); + return oncia_Where$_checkExpression(oncia_Where$_MODULE$, var$1); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$102$lambda$_172_0() { + let a = this; jl_Object.call(a); + a.$_0551 = null; + a.$_1185 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$102$lambda$_172_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$1; + var$2 = var$0.$_0551; + var$3 = var$0.$_1185; + oncias_SemanticExpressionCheck$_$callClinit(); + if (jl_String_charAt(var$2, jl_String_indexOf(var$2, 48) + 1 | 0) != 88) { + s_package$_$callClinit(); + var$4 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + } else { + var$5 = jl_String_replace0(var$2, 88, 120); + var$4 = new sci_$colon$colon; + oncias_SemanticError$_$callClinit(); + var$6 = oncias_SemanticError$_MODULE$; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(6813)), var$2), $rt_s(6812)), var$5), $rt_s(4988)); + sci_$colon$colon__init_0(var$4, oncias_SemanticError$_apply(var$6, jl_AbstractStringBuilder_toString(var$7), var$3.$position51), sci_Nil$_MODULE$); + } + return oncias_SemanticCheckResult__init_(var$1, var$4); +}; +function oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_92_0() { + jl_Object.call(this); + this.$_0106 = null; +} +let oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_92_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0106; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = (var$1.$patternParts()).$flatMap(new oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_0); + var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$4 = new oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_1; + var$4.$_0291 = var$1; + return oncias_SemanticCheck_chain$((oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$2, var$4)).$chain(oncias_SemanticPatternCheck$_ensureNoRepeatedRelationships(oncias_SemanticPatternCheck$_MODULE$, var$1)), oncias_SemanticPatternCheck$_ensureNoRepeatedVarLengthRelationships(oncias_SemanticPatternCheck$_MODULE$, var$1)); +}, +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_93_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_93_0_apply = var$0 => { + oncias_SemanticFunctionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return (oncius_package$_CTString(oncius_package$_MODULE$)).$invariant(); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$106$lambda$_176_0() { + jl_Object.call(this); + this.$_0468 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$106$lambda$_176_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0468; + oncias_SemanticExpressionCheck$_$callClinit(); + var$2 = oncias_package$_MODULE$; + oncias_SemanticError$_$callClinit(); + return oncias_package$_liftSemanticErrorDef(var$2, oncias_SemanticError$_numberTooLarge(oncias_SemanticError$_MODULE$, $rt_s(6814), var$1.$stringVal2, var$1.$position47)); +}; +function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_109_0() { + jl_Object.call(this); + this.$_065 = null; } -let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_104_0_apply = (var$0, var$1) => { +let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_109_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0208; + var$2 = var$0.$_065; var$3 = s_Predef$ArrowAssoc$_MODULE$; s_Predef$_$callClinit(); return s_Predef$ArrowAssoc$_$minus$greater$extension(var$3, var$1, var$2); @@ -351869,13 +278223,134 @@ sc_LinearSeqIterator_next = $this => { $result = $cur.$head(); var$3 = new sc_LinearSeqIterator$LazyCell; var$4 = new sc_LinearSeqIterator$next$lambda$_1_0; - var$4.$_01118 = $cur; + var$4.$_01094 = $cur; sc_LinearSeqIterator$LazyCell__init_(var$3, $this, var$4); $this.$these = var$3; return $result; }, -oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_85_0 = $rt_classWithoutFields(), -oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_85_0_apply = (var$0, var$1) => { +oncius_StorableType$ = $rt_classWithoutFields(), +oncius_StorableType$_MODULE$ = null, +oncius_StorableType$_storableType = null, +oncius_StorableType$_$callClinit = () => { + oncius_StorableType$_$callClinit = $rt_eraseClinit(oncius_StorableType$); + oncius_StorableType$__clinit_(); +}, +oncius_StorableType$__clinit_ = () => { + let var$1, var$2; + var$1 = new oncius_StorableType$; + oncius_StorableType$_$callClinit(); + oncius_StorableType$_MODULE$ = var$1; + oncius_package$_$callClinit(); + var$2 = oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union(oncius_TypeSpec_union((oncius_package$_CTBoolean(oncius_package$_MODULE$)).$invariant(), oncius_NumberType_covariant(oncius_package$_CTNumber(oncius_package$_MODULE$))), (oncius_package$_CTPoint(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTString(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTDuration(oncius_package$_MODULE$)).$invariant()), + (oncius_package$_CTDate(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTTime(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTLocalTime(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTLocalDateTime(oncius_package$_MODULE$)).$invariant()), (oncius_package$_CTDateTime(oncius_package$_MODULE$)).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTBoolean(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTNumber(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTInteger(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTFloat(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTPoint(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTString(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTDuration(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTDate(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTTime(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTLocalTime(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + var$2 = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTLocalDateTime(var$1))).$invariant()); + var$1 = oncius_package$_MODULE$; + oncius_StorableType$_storableType = oncius_TypeSpec_union(var$2, (oncius_package$_CTList(var$1, oncius_package$_CTDateTime(var$1))).$invariant()); +}; +function oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_0() { + jl_Object.call(this); + this.$_0866 = null; +} +let oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0866; + oncias_SemanticExpressionCheck$_$callClinit(); + return oncius_TypeSpec_unwrapLists(var$1); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_1 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_1_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_IntegerType_covariant(oncius_package$_CTInteger(oncius_package$_MODULE$)); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_2 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_2_apply = (var$0, var$1, var$2) => { + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(6815)), var$2); + return jl_AbstractStringBuilder_toString(var$1); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_3 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_3_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_4 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_4_apply = (var$0, var$1, var$2) => { + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(6816)), var$2); + return jl_AbstractStringBuilder_toString(var$1); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_5 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_5_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_StringType_covariant(oncius_package$_CTString(oncius_package$_MODULE$)); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_6 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_6_apply = (var$0, var$1, var$2) => { + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_StringBuilder_append(jl_StringBuilder_append(var$1, $rt_s(6817)), var$2); + return jl_AbstractStringBuilder_toString(var$1); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_7 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_7_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + return oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_8 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_8_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_TypeSpec$_$callClinit(); + var$1 = oncius_TypeSpec$_MODULE$; + var$2 = sr_ScalaRunTime$_MODULE$; + var$3 = $rt_createArray(oncius_TypeSpec, 2); + var$4 = var$3.data; + oncius_package$_$callClinit(); + var$4[0] = oncius_MapType_covariant(oncius_package$_CTMap(oncius_package$_MODULE$)); + var$5 = oncius_package$_MODULE$; + var$4[1] = oncius_ListType_covariant(oncius_package$_CTList(var$5, oncius_package$_CTAny(var$5))); + return oncius_TypeSpec$_union(var$1, sr_ScalaRunTime$_wrapRefArray(var$2, var$3)); +}, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_9 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_9_apply = var$0 => { + let var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + oncius_package$_$callClinit(); + var$1 = oncius_package$_MODULE$; + return oncius_ListType_covariant(oncius_package$_CTList(var$1, oncius_package$_CTAny(var$1))); +}, +oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_90_0 = $rt_classWithoutFields(), +oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_90_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; if (!(var$1 instanceof oncia_SetLabelItem)) @@ -351885,139 +278360,88 @@ oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_85_0_apply var$3 = var$1.$variable9; var$4 = var$1.$labels2; var$5 = var$1.$dynamicLabels; - var$2 = new oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_0; - var$2.$_01108 = var$3; - var$2.$_1371 = var$1; + var$2 = new oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_0; + var$2.$_0304 = var$3; + var$2.$_1111 = var$1; var$2 = var$4.$map(var$2); - var$4 = new oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_1; - var$4.$_0510 = var$3; - var$4.$_1178 = var$1; + var$4 = new oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_1; + var$4.$_0772 = var$3; + var$4.$_1257 = var$1; var$1 = var$2.$concat(var$5.$map(var$4)); - var$4 = new oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_2; + var$4 = new oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_2; sm_Ordering$Int$_$callClinit(); var$2 = var$1.$sortBy(var$4, sm_Ordering$Int$_MODULE$); } return var$2; }; -function oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_0() { - let a = this; jl_Object.call(a); - a.$_0301 = null; - a.$_1112 = null; -} -let oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0301; - var$3 = var$0.$_1112; - return oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(var$2, var$1), var$3); -}, -oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_1 = $rt_classWithoutFields(), -oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_1_apply = (var$0, var$1, var$2) => { - return oncius_TypeSpec_leastUpperBounds(var$1, var$2); -}; -function oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0() { - let a = this; jl_Object.call(a); - a.$_0697 = null; - a.$_1242 = null; +function oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0() { + jl_Object.call(this); + this.$_0432 = null; } -let oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0697; - var$3 = var$0.$_1242; - oncias_SemanticCheck$_$callClinit(); - return var$2.$apply3(var$1, var$3); +let oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1(var$1, var$0.$_0432.$allSymbolDefinitions$10)); }; -function oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0() { +function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0() { jl_Object.call(this); - this.$_0212 = null; + this.$_0840 = null; } -let oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0_apply = (var$0, var$1, var$2) => { - return oncie_Expression_org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1(var$1, var$2, var$0.$_0212.$variable$20); -}, -oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1 = $rt_classWithoutFields(), -oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1_apply = (var$0, var$1) => { - return oncie_Expression$TreeAcc_popScope(var$1); +let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncir_Deprecations$SemanticallyDeprecatedFeatures$_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1(var$1, var$0.$_0840.$allSymbolDefinitions$1)); }; -function oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_98_0() { - jl_Object.call(this); - this.$_0116 = null; +function sc_MapOps$$anon$3() { + sc_AbstractIterator.call(this); + this.$iter0 = null; } -let oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_98_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4; - var$2 = var$2; - var$3 = var$0.$_0116; - oncias_SemanticFunctionCheck$_$callClinit(); - var$4 = sr_BoxesRunTime_unboxToBoolean(var$1); - var$1 = s_Tuple2__init_(jl_Boolean_valueOf(var$4), var$2); - var$4 = s_Tuple2__1$mcZ$sp(var$1); - var$1 = var$1.$_20; - return jl_Boolean_valueOf(!var$4 && !oncius_TypeSpec_contains0(var$3, var$1) ? 0 : 1); +let sc_MapOps$$anon$3_hasNext = $this => { + return $this.$iter0.$hasNext(); }, -oncia_connectedComponents$ = $rt_classWithoutFields(), -oncia_connectedComponents$_MODULE$ = null, -oncia_connectedComponents$_ComponentPart = null, -oncia_connectedComponents$_ConnectedComponent = null, -oncia_connectedComponents$_$callClinit = () => { - oncia_connectedComponents$_$callClinit = $rt_eraseClinit(oncia_connectedComponents$); - oncia_connectedComponents$__clinit_(); +sc_MapOps$$anon$3_next = $this => { + return ($this.$iter0.$next()).$_2(); }, -oncia_connectedComponents$__clinit_ = () => { - let var$1; - var$1 = new oncia_connectedComponents$; - oncia_connectedComponents$_$callClinit(); - oncia_connectedComponents$_MODULE$ = var$1; - s_Predef$_$callClinit(); - oncia_connectedComponents$_ComponentPart = s_Predef$_Set(s_Predef$_MODULE$); - oncia_connectedComponents$_ConnectedComponent = s_Predef$_Set(s_Predef$_MODULE$); +oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_165_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_165_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + return var$1.$position4; }, -oncia_connectedComponents$_RichConnectedComponent = ($this, $connectedComponent) => { - let var$2; - var$2 = new oncia_connectedComponents$RichConnectedComponent; - var$2.$connectedComponent = $connectedComponent; - return var$2; +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticPatternCheck$_$callClinit(); + return jl_Boolean_valueOf(var$1.$all() ? 0 : 1); }; -function oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_121_0() { - let a = this; jl_Object.call(a); - a.$_0749 = null; - a.$_1255 = null; - a.$_284 = null; +function oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_1() { + jl_Object.call(this); + this.$_0871 = 0; } -let oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_121_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5, var$6, var$7, var$8, $$je; +let oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; var$1 = var$1; - var$2 = var$2; - var$3 = var$0.$_0749; - var$4 = var$0.$_1255; - var$5 = var$0.$_284; - var$6 = new onciu_CartesianProductNotification; - var$7 = var$3.$position85; - oncia_connectedComponents$_$callClinit(); - var$8 = (oncia_connectedComponents$_RichConnectedComponent(oncia_connectedComponents$_MODULE$, var$2)).$connectedComponent; + var$2 = var$0.$_0871; + oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticError$_$callClinit(); + var$3 = oncias_SemanticError$_MODULE$; + var$4 = sc_StringOps$_MODULE$; s_Predef$_$callClinit(); - var$8 = (var$8.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$))).$map(new oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_120_0); - if (var$4.$_initialized) - var$2 = var$4.$_value0; - else { - jl_Object_monitorEnterSync(var$4); - a: { - try { - var$2 = sr_LazyRef_initialized(var$4) ? sr_LazyRef_value(var$4) : sr_LazyRef_initialize(var$4, oncia_Match_liftedTree1$1(var$3, var$5)); - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - var$1 = $$je; - - } - jl_Object_monitorExitSync(var$4); - $rt_throw(var$1); - } - jl_Object_monitorExitSync(var$4); - } - var$6.$position75 = var$7; - var$6.$isolatedVariables0 = var$8; - var$6.$pattern15 = var$2; - return oncias_SemanticState_addNotification(var$1, var$6); + var$5 = !var$2 ? $rt_s(6818) : $rt_s(5261); + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$6, $rt_s(6819)), var$5), $rt_s(6820)); + return oncias_SemanticError$_apply(var$3, sc_StringOps$_stripMargin$extension(var$4, jl_AbstractStringBuilder_toString(var$6)), var$1.$position()); +}; +function oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0() { + jl_Object.call(this); + this.$_0620 = null; +} +let oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1(var$1, var$0.$_0620.$allSymbolDefinitions$10)); +}; +function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$3$lambda$_5_0() { + jl_Object.call(this); + this.$_01038 = null; +} +let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$3$lambda$_5_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncir_Deprecations$SemanticallyDeprecatedFeatures$_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1(var$1, var$0.$_01038.$allSymbolDefinitions$1)); }, oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0 = $rt_classWithoutFields(), oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0_apply = (var$0, var$1) => { @@ -352025,74 +278449,295 @@ oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0_apply = (var$0, var$1 }; function oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1() { let a = this; jl_Object.call(a); - a.$_01125 = null; - a.$_1376 = 0; + a.$_01101 = null; + a.$_1374 = 0; } let oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1_apply = (var$0, var$1) => { - return oncia_Clause$Acc$1_sortLabelExpressionIntoPartition(var$1, var$0.$_01125, var$0.$_1376); + return oncia_Clause$Acc$1_sortLabelExpressionIntoPartition(var$1, var$0.$_01101, var$0.$_1374); +}; +function oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0() { + jl_Object.call(this); + this.$_01137 = null; +} +let oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0_apply = (var$0, var$1) => { + return var$1.$appended(var$0.$_01137); +}; +function sc_MapOps$$anon$2() { + sc_AbstractIterator.call(this); + this.$iter = null; +} +let sc_MapOps$$anon$2_hasNext = $this => { + return $this.$iter.$hasNext(); +}, +sc_MapOps$$anon$2_next = $this => { + return ($this.$iter.$next()).$_1(); }; function oncia_Union$checkImportingWith$lambda$_19_0() { jl_Object.call(this); - this.$_0876 = null; + this.$_0859 = null; } let oncia_Union$checkImportingWith$lambda$_19_0_apply = var$0 => { - return (var$0.$_0876.$lhs()).$checkImportingWith(); + return (var$0.$_0859.$lhs()).$checkImportingWith(); }; -function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_97_0() { +function onciap_Prettifier$optionsToString$lambda$_43_0() { + jl_Object.call(this); + this.$_0461 = null; +} +let onciap_Prettifier$optionsToString$lambda$_43_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0461; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = onciap_Prettifier_backtick(var$2, var$3); + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(9)), var$1); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncia_ProcedureAllQualifier = $rt_classWithoutFields(), +oncia_FunctionAllQualifier = $rt_classWithoutFields(), +oncia_SettingAllQualifier = $rt_classWithoutFields(); +function oncia_SingleNamedGraphScope() { + jl_Object.call(this); + this.$graph = null; +} +function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_102_0() { let a = this; jl_Object.call(a); - a.$_0522 = null; - a.$_1183 = null; + a.$_0154 = null; + a.$_152 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_97_0_apply = (var$0, var$1) => { +let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_102_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0522; - var$3 = var$0.$_1183; + var$2 = var$0.$_0154; + var$3 = var$0.$_152; oncias_SemanticCheck$_$callClinit(); var$4 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_newBaseScope(var$3.$state)); - var$5 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_96_0; - var$5.$_0186 = var$2; - var$5.$_172 = var$1; - var$5.$_231 = var$3; + var$5 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_101_0; + var$5.$_0493 = var$2; + var$5.$_1170 = var$1; + var$5.$_258 = var$3; return oncias_SemanticCheck_flatMap$(var$4, var$5); +}, +oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0 = $rt_classWithoutFields(), +oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0_apply = var$0 => { + let var$1; + var$1 = new jl_IllegalStateException; + jl_Throwable__init_(var$1, $rt_s(6821)); + $rt_throw(var$1); +}, +oncia_SortItem$semanticCheck$lambda$_2_0 = $rt_classWithoutFields(), +oncia_SortItem$semanticCheck$lambda$_2_0_apply = (var$0, var$1) => { + return var$1.$propertyKey0; +}, +oncia_LeafPlanHint$semanticCheck$lambda$_4_0 = $rt_classWithoutFields(), +oncia_LeafPlanHint$semanticCheck$lambda$_4_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); +}, +oncia_ASTSlicingPhrase$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_ASTSlicingPhrase$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + if (!($rt_isInstance($x1, oncie_SubqueryExpression) ? 1 : !($x1 instanceof oncie_PathExpression) ? 0 : 1)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return jl_Boolean_valueOf(1); +}; +function oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_51_0() { + let a = this; jl_Object.call(a); + a.$_01020 = null; + a.$_1348 = null; +} +let oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_51_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_01020; + var$2 = var$0.$_1348; + var$3 = oncia_ASTSlicingPhrase$_MODULE$; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6822)), var$1), $rt_s(6804)), var$1), $rt_s(6805)); + return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); +}; +function sc_IterableOps$groupMap$lambda$_74_0() { + let a = this; jl_Object.call(a); + a.$_01078 = null; + a.$_1398 = null; + a.$_2122 = null; + a.$_336 = null; +} +let sc_IterableOps$groupMap$lambda$_74_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_01078; + var$3 = var$0.$_2122; + var$4 = var$1; + var$5 = var$4.$_1(); + var$1 = new sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0; + var$1.$_01068 = var$2; + var$1 = scm_HashMap_getOrElseUpdate(var$3, var$5, var$1); + var$2 = var$4.$_2(); + if (var$1 === null) + $rt_throw(null); + return var$1.$addOne(var$2); +}; +function sc_IterableOps$Result$1() { + sr_AbstractFunction1.call(this); + this.$built = null; +} +let sc_IterableOps$Result$1_apply = ($this, $v1) => { + $this.$built = $this.$built.$updated0($v1.$_10, $v1.$_20.$result()); + return sr_BoxedUnit_UNIT; +}, +oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_0 = $rt_classWithoutFields(), +oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$features.$contains(oncias_SemanticFeature$UseAsSingleGraphSelector$_MODULE$)); +}; +function oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_1() { + jl_Object.call(this); + this.$_058 = null; +} +let oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_1_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17; + var$1 = var$0.$_058; + var$2 = var$1.$graphReference1; + if (var$2 instanceof oncia_GraphDirectReference) + var$1 = oncia_UseGraph_checkSingleTargetGraph(var$1, var$2); + else { + if (!(var$2 instanceof oncia_GraphFunctionReference)) + $rt_throw(s_MatchError__init_(var$2)); + var$3 = var$2; + var$4 = var$3.$functionInvocation1.$function1; + oncief_GraphByElementId$_$callClinit(); + if (jl_Object_equals(oncief_GraphByElementId$_MODULE$, var$4) && oncia_GraphFunctionReference_isConstantForQuery(var$3)) { + if ((oncie_Expression_arguments(var$3.$functionInvocation1)).$length() == 1) + var$1 = oncia_UseGraph_checkSingleTargetGraph(var$1, var$3); + else { + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = sr_ScalaRunTime$_MODULE$; + var$7 = $rt_createArray(oncias_SemanticErrorDef, 1); + oncias_SemanticError$_$callClinit(); + var$2 = oncias_SemanticError$_MODULE$; + var$8 = (oncie_Expression_arguments(var$3.$functionInvocation1)).$length(); + var$9 = var$3.$functionInvocation1.$name11; + var$10 = oncie_FunctionTypeSignature_getSignatureAsString(sci_Vector_head(oncief_GraphByElementId$_signatures0(oncief_GraphByElementId$_MODULE$))); + var$11 = jl_String_format($rt_s(6823), $rt_wrapArray(jl_Object, [jl_Integer_valueOf(1), jl_Integer_valueOf(var$8), var$9, var$10])); + ong_GqlStatusInfoCodes_$callClinit(); + var$4 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(ong_ErrorGqlStatusObjectImplementation$Builder_withParam0(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I13), + ong_GqlParams$NumberParam_count1, jl_Integer_valueOf(1)), ong_GqlParams$NumberParam_count2, jl_Integer_valueOf(var$8)), ong_GqlParams$StringParam_procFun, var$9), ong_GqlParams$StringParam_sig, var$10)))); + var$10 = new one_SyntaxException; + var$9 = ju_Optional_empty(); + ong_GqlRuntimeException__init_(var$10, var$4, var$11, null); + var$10.$offset7 = var$9; + var$10.$query6 = $rt_s(4); + if (!ju_Optional_isPresent(var$9)) + var$4 = var$10.$message; + else { + var$12 = jl_String_split(var$10.$query6, $rt_s(94)); + var$13 = var$12.data; + var$9 = var$10.$message; + var$14 = (ju_Optional_get(var$10.$offset7)).$value4; + if (!var$13.length) { + var$12 = $rt_createArray(jl_String, 1); + var$12.data[0] = $rt_s(4); + } + var$12 = var$12.data; + var$15 = var$12.length; + if (!var$15) { + var$1 = new jl_IllegalArgumentException; + jl_Throwable__init_(var$1, $rt_s(6824)); + $rt_throw(var$1); + } + var$10 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$10); + var$16 = 0; + var$17 = var$15 - 1 | 0; + a: { + while (true) { + if (var$16 >= var$15) + break a; + var$4 = var$12[var$16]; + if (var$16 >= var$17) + one_SyntaxException_buildErrorString(var$10, var$4, jl_Math_min(var$4.$nativeString.length, var$14)); + else { + if (var$4.$nativeString.length >= var$14) + break; + var$14 = var$14 - (var$4.$nativeString.length + 1 | 0) | 0; + } + var$16 = var$16 + 1 | 0; + } + one_SyntaxException_buildErrorString(var$10, var$4, var$14); + } + var$4 = jl_AbstractStringBuilder_toString(var$10); + var$10 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$10); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$10, var$9), $rt_s(94)), var$4); + var$4 = jl_AbstractStringBuilder_toString(var$10); + } + var$7.data[0] = oncias_SemanticError$_apply(var$2, var$4, var$1.$position26); + var$1 = oncias_SemanticCheck$_error(var$5, sr_ScalaRunTime$_wrapRefArray(var$6, var$7)); + } + } else { + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncia_UseGraph$checkSingleGraphSelector$lambda$_72_0; + var$4.$_0526 = var$1; + var$1 = oncias_SemanticCheck$_fromFunctionWithContext(var$2, var$4); + } + } + return var$1; +}; +function oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_2() { + jl_Object.call(this); + this.$_0817 = null; +} +let oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_2_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0817; + oncias_SemanticCheck$_$callClinit(); + var$2 = oncias_SemanticCheck$_MODULE$; + var$3 = new oncia_UseGraph$unsupported$lambda$_66_0; + var$3.$_0263 = var$1; + return oncias_SemanticCheck$_fromFunctionWithContext(var$2, var$3); }; function oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0() { let a = this; jl_Object.call(a); - a.$_0589 = null; - a.$_1203 = null; - a.$_267 = null; + a.$_0573 = null; + a.$_1195 = null; + a.$_263 = null; } let oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$2 = var$0.$_0589; - var$3 = var$0.$_1203; - var$4 = var$0.$_267; + var$2 = var$0.$_0573; + var$3 = var$0.$_1195; + var$4 = var$0.$_263; var$5 = !s_Option_isDefined(var$2.$orderBy()) && !s_Option_isDefined(var$2.$where()) ? 0 : 1; var$6 = !(!oncia_ReturnItems_containsAggregate(var$2.$returnItems()) && !var$2.$distinct() && !(var$2 instanceof oncia_Yield)) && !(var$2.$returnItems()).$includeExisting0 ? 0 : 1; if (var$5 && var$6) { oncias_SemanticCheck$_$callClinit(); var$7 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_newChildScope(var$1)); var$8 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0; - var$8.$_0404 = var$2; - var$8.$_1146 = var$3; - var$8.$_252 = var$1; + var$8.$_0394 = var$2; + var$8.$_1142 = var$3; + var$8.$_250 = var$1; var$1 = oncias_SemanticCheck_flatMap$(var$7, var$8); } else if (!var$5) { oncias_SemanticCheck$_$callClinit(); var$8 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_newSiblingScope(var$1)); var$7 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2; - var$7.$_0338 = var$2; - var$7.$_1122 = var$3; - var$7.$_246 = var$1; + var$7.$_0328 = var$2; + var$7.$_1117 = var$3; + var$7.$_242 = var$1; var$1 = oncias_SemanticCheck_flatMap$(var$8, var$7); } else { var$7 = oncias_SemanticState_newChildScope(oncias_SemanticState_newSiblingScope(var$1)); oncias_SemanticCheck$_$callClinit(); var$8 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, var$7); var$7 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3; - var$7.$_01126 = var$2; - var$7.$_1377 = var$3; - var$7.$_2125 = var$1; + var$7.$_01102 = var$2; + var$7.$_1375 = var$3; + var$7.$_2124 = var$1; var$1 = oncias_SemanticCheck_flatMap$(var$8, var$7); } var$3 = s_Tuple2__init_(jl_Boolean_valueOf(var$2.$isReturn()), var$4); @@ -352101,92 +278746,72 @@ let oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0_apply = (var$0 if (1 == var$6 && var$3 instanceof s_Some) { var$3 = var$3.$value5; var$7 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1; - var$7.$_0981 = var$2; - var$7.$_1340 = var$3; + var$7.$_0976 = var$2; + var$7.$_1334 = var$3; var$1 = oncias_SemanticCheck_map$(var$1, var$7); } return var$1; }; function oncia_SubqueryCall$semanticCheckContinuation$lambda$_18_0() { jl_Object.call(this); - this.$_0936 = null; + this.$_0926 = null; } let oncia_SubqueryCall$semanticCheckContinuation$lambda$_18_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0936; + var$2 = var$0.$_0926; var$3 = new oncias_SemanticCheckResult; var$1 = oncias_SemanticState_importValuesFromScope(var$1, var$2, oncias_SemanticState_importValuesFromScope$default$2(var$1)); s_package$_$callClinit(); oncias_SemanticCheckResult__init_0(var$3, var$1, (s_package$_Vector(s_package$_MODULE$)).$from0(sci_Nil$_MODULE$)); return var$3; -}, -oncia_ASTSlicingPhrase$$anonfun$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_ASTSlicingPhrase$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - if (!($rt_isInstance($x1, oncie_SubqueryExpression) ? 1 : !($x1 instanceof oncie_PathExpression) ? 0 : 1)) - return s_PartialFunction$_fallback_fn; - return jl_Boolean_valueOf(1); -}; -function oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_46_0() { - let a = this; jl_Object.call(a); - a.$_0658 = null; - a.$_1228 = null; -} -let oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_46_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0658; - var$2 = var$0.$_1228; - oncia_ASTSlicingPhrase$_$callClinit(); - var$3 = oncia_ASTSlicingPhrase$_MODULE$; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7859)), var$1), $rt_s(7855)), var$1), $rt_s(7856)); - return oncias_SemanticAnalysisTooling_error$(var$3, jl_AbstractStringBuilder_toString(var$4), var$2.$position()); -}, -oncia_LeafPlanHint$semanticCheck$lambda$_4_0 = $rt_classWithoutFields(), -oncia_LeafPlanHint$semanticCheck$lambda$_4_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_TypeSpec_union(oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)), oncius_RelationshipType_covariant(oncius_package$_CTRelationship(oncius_package$_MODULE$))); -}, -oncia_SortItem$semanticCheck$lambda$_2_0 = $rt_classWithoutFields(), -oncia_SortItem$semanticCheck$lambda$_2_0_apply = (var$0, var$1) => { - return var$1.$propertyKey0; }; -function sc_IterableOps$groupMap$lambda$_74_0() { +function sc_IterableOps$groupMapReduce$lambda$_76_0() { let a = this; jl_Object.call(a); - a.$_01098 = null; - a.$_1397 = null; - a.$_2123 = null; - a.$_333 = null; + a.$_01155 = null; + a.$_193 = null; + a.$_2130 = null; + a.$_313 = null; } -let sc_IterableOps$groupMap$lambda$_74_0_apply = (var$0, var$1) => { +let sc_IterableOps$groupMapReduce$lambda$_76_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; - var$2 = var$0.$_01098; - var$3 = var$0.$_2123; + var$2 = var$0.$_193; + var$3 = var$0.$_313; var$4 = var$1; + oncias_SemanticExpressionCheck$_$callClinit(); var$5 = var$4.$_1(); - var$1 = new sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0; - var$1.$_01086 = var$2; - var$1 = scm_HashMap_getOrElseUpdate(var$3, var$5, var$1); - var$2 = var$4.$_2(); + var$4 = scm_HashMap_get(var$2, var$5); + if (!(var$4 instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, var$4)) + $rt_throw(s_MatchError__init_(var$4)); + var$1 = oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_3_apply(var$3, var$1); + } else { + var$4 = var$4.$value5; + var$1 = oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_3_apply(var$3, var$1); + var$1 = var$4.$concat1(var$1); + } + var$1 = scm_HashMap_put01(var$2, var$5, var$1, 1); if (var$1 === null) - $rt_throw(null); - return var$1.$addOne(var$2); + var$1 = s_None$_MODULE$; + return var$1; }; -function sc_IterableOps$Result$1() { - sr_AbstractFunction1.call(this); - this.$built = null; +function sc_MapFactory$ToFactory() { + jl_Object.call(this); + this.$factory2 = null; } -let sc_IterableOps$Result$1_apply = ($this, $v1) => { - $this.$built = $this.$built.$updated0($v1.$_10, $v1.$_20.$result()); - return sr_BoxedUnit_UNIT; -}, -oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0 = $rt_classWithoutFields(), -oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0_apply = var$0 => { - let var$1; - var$1 = new jl_IllegalStateException; - jl_Throwable__init_0(var$1, $rt_s(7860)); - $rt_throw(var$1); +let sc_MapFactory$ToFactory_fromSpecific = ($this, $it) => { + return sci_Map$_from($this.$factory2, $it); +}; +function oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_232_0() { + jl_Object.call(this); + this.$_0936 = 0; +} +let oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_232_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0936; + oncias_SemanticExpressionCheck$_$callClinit(); + return jl_Boolean_valueOf(s_Tuple2__1$mcI$sp(oncias_SymbolUse_positionsAndUniqueIdString(var$1)) <= var$2 ? 0 : 1); }, oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_0 = $rt_classWithoutFields(), oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_0_apply = (var$0, var$1) => { @@ -352196,27 +278821,46 @@ oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_0_apply = ( }; function oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_1() { jl_Object.call(this); - this.$_0171 = null; + this.$_0168 = null; } let oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; + let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0171; + var$2 = var$0.$_0168; oncia_ProjectionClause$_$callClinit(); oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7861)), var$2), $rt_s(7862)); - return oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$4), var$1.$position()); + var$1 = var$1.$position(); + ong_GqlStatusInfoCodes_$callClinit(); + var$3 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$1.$offset(), var$1.$line(), var$1.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N21), + var$1.$offset(), var$1.$line(), var$1.$column()), ong_GqlParams$StringParam_clause, var$2)))); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(6825)), var$2), $rt_s(6826)); + oncias_SemanticError__init_(var$4, var$3, jl_AbstractStringBuilder_toString(var$5), var$1); + return var$4; +}; +function oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_1() { + jl_Object.call(this); + this.$_0613 = null; +} +let oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_1_apply = var$0 => { + return var$0.$_0613; +}; +function oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_0() { + jl_Object.call(this); + this.$_0137 = null; +} +let oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_0_apply = var$0 => { + return var$0.$_0137; }; function oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_0() { let a = this; jl_Object.call(a); - a.$_0553 = null; - a.$_1190 = null; + a.$_0536 = null; + a.$_1177 = null; } let oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_0_apply = var$0 => { - return oncius_TypeSpec_innerTypeRanges(var$0.$_0553, var$0.$_1190.$apply4()); + return oncius_TypeSpec_innerTypeRanges(var$0.$_0536, var$0.$_1177.$apply4()); }, oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_1 = $rt_classWithoutFields(), oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_1_apply = (var$0, var$1) => { @@ -352226,229 +278870,385 @@ oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_1_apply = (var$0, var$1) => { onciu_InputPosition$_$callClinit(); oncius_ListType__init_0(var$2, var$1, 1, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); return var$2; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$ = $rt_classWithoutFields(), -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$ = null, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$__clinit_ = () => { - oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$ = new oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_foundCrossReference = $this => { - return oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_foundSubquery = $this => { - return $this; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productArity = $this => { - return 0; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_hashCode = $this => { - return 1509030711; -}, -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_toString = $this => { - return $rt_s(7863); }; -function sc_IterableOps$grouped$lambda$_60_0() { - jl_Object.call(this); - this.$_0432 = null; +function oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_127_0() { + let a = this; jl_Object.call(a); + a.$_0608 = null; + a.$_1205 = null; } -let sc_IterableOps$grouped$lambda$_60_0_apply = (var$0, var$1) => { +let oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_127_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return var$0.$_0432.$fromSpecific(var$1); -}; -function oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0() { - jl_Object.call(this); - this.$_0720 = null; -} -let oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0_apply = var$0 => { - return var$0.$_0720; -}; -function oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0() { - jl_Object.call(this); - this.$_0380 = null; -} -let oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0_apply = var$0 => { - return var$0.$_0380; + var$2 = var$0.$_0608; + var$3 = var$0.$_1205; + return oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(var$2.$types1(var$1), var$3); +}, +oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0 = $rt_classWithoutFields(), +oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6; + a: { + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$2 !== null) { + var$4 = var$2.$_1(); + var$2 = var$2.$_2(); + if (var$1.$contains(var$4)) { + var$1 = var$1.$updated0(var$4, (var$1.$apply2(var$4)).$incl(var$2)); + break a; + } + } + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = var$2.$_1(); + var$2 = var$2.$_2(); + s_Predef$_$callClinit(); + var$4 = s_Predef$_Set(s_Predef$_MODULE$); + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(oncias_Symbol, 1); + var$6.data[0] = var$2; + var$1 = var$1.$updated0(var$3, var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6))); + } + return var$1; }; -function oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_0() { +function oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_0() { let a = this; jl_Object.call(a); - a.$_01149 = null; - a.$_1385 = null; + a.$_0831 = null; + a.$_1280 = null; } -let oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_0_apply = (var$0, var$1) => { +let oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_01149; - var$3 = var$0.$_1385; + var$2 = var$0.$_0831; + var$3 = var$0.$_1280; var$4 = new oncia_RemoveLabelItem; var$5 = sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$); s_package$_$callClinit(); - oncia_RemoveLabelItem__init_0(var$4, var$2, var$5, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), 1, var$3.$position27); + oncia_RemoveLabelItem__init_0(var$4, var$2, var$5, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), 1, var$3.$position34); return var$4; }; -function oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_1() { +function oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_1() { let a = this; jl_Object.call(a); - a.$_0358 = null; - a.$_1130 = null; + a.$_0250 = null; + a.$_196 = null; } -let oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_1_apply = (var$0, var$1) => { +let oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_1_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0358; - var$3 = var$0.$_1130; + var$2 = var$0.$_0250; + var$3 = var$0.$_196; var$4 = new oncia_RemoveLabelItem; s_package$_$callClinit(); - oncia_RemoveLabelItem__init_0(var$4, var$2, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$), 1, var$3.$position27); + oncia_RemoveLabelItem__init_0(var$4, var$2, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$), 1, var$3.$position34); return var$4; }, -oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_2 = $rt_classWithoutFields(), -oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_2_apply = (var$0, var$1) => { +oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_2 = $rt_classWithoutFields(), +oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_2_apply = (var$0, var$1) => { var$1 = var$1; - return jl_Integer_valueOf(!sc_IterableOnceOps_nonEmpty$(var$1.$labels1) ? ((var$1.$dynamicLabels0.$head()).$position()).$column() : (var$1.$labels1.$head()).$position62.$column()); + return jl_Integer_valueOf(!sc_IterableOnceOps_nonEmpty$(var$1.$labels1) ? ((var$1.$dynamicLabels0.$head()).$position()).$column() : (var$1.$labels1.$head()).$position72.$column()); +}, +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_0_apply = (var$0, var$1) => { + oncias_SemanticExpressionCheck$_$callClinit(); + var$1 = var$1.$location; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return oncias_Scope_allSymbols(var$1.$elem0); +}, +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_1 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_1_apply = var$0 => { + oncias_SemanticExpressionCheck$_$callClinit(); + s_Predef$_$callClinit(); + return sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)); }, -oncia_CommandClause$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$lambda$_7_0 = $rt_classWithoutFields(), -oncia_CommandClause$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$lambda$_7_0_apply = (var$0, var$1) => { +oncia_CommandClause$columnsAsMap$lambda$_7_0 = $rt_classWithoutFields(), +oncia_CommandClause$columnsAsMap$lambda$_7_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; var$2 = s_Predef$ArrowAssoc$_MODULE$; s_Predef$_$callClinit(); return s_Predef$ArrowAssoc$_$minus$greater$extension(var$2, var$1.$name8, var$1.$cypherType); }; -function oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0() { - jl_Object.call(this); - this.$_0669 = null; -} -let oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0_apply = var$0 => { - return (var$0.$_0669.$items0.$map(new oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_0)).$toList(); -}; function sci_LazyList$dropRightState$lambda$_88_0() { let a = this; jl_Object.call(a); - a.$_0590 = null; - a.$_1204 = null; + a.$_0578 = null; + a.$_1196 = null; } let sci_LazyList$dropRightState$lambda$_88_0_apply = var$0 => { let var$1, var$2; - var$1 = var$0.$_0590; - var$2 = var$0.$_1204; + var$1 = var$0.$_0578; + var$2 = var$0.$_1196; return sci_LazyList_dropRightState(sci_LazyList_tail(var$1), sci_LazyList_tail(var$2)); }; function sci_LazyList$zipAllState$lambda$_81_0() { let a = this; jl_Object.call(a); - a.$_0497 = null; - a.$_1174 = null; - a.$_259 = null; - a.$_317 = null; + a.$_0486 = null; + a.$_1167 = null; + a.$_257 = null; + a.$_319 = null; } let sci_LazyList$zipAllState$lambda$_81_0_apply = var$0 => { let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0497; - var$2 = var$0.$_1174; - var$3 = var$0.$_259; - var$4 = var$0.$_317; + var$1 = var$0.$_0486; + var$2 = var$0.$_1167; + var$3 = var$0.$_257; + var$4 = var$0.$_319; return sci_LazyList_zipAllState(sci_LazyList_tail(var$1), var$2, var$3, var$4); }; -function sci_LazyList$zipAllState$lambda$_81_1() { +function sci_LazyList$zipAllState$lambda$_81_1() { + let a = this; jl_Object.call(a); + a.$_0971 = null; + a.$_1331 = null; +} +let sci_LazyList$zipAllState$lambda$_81_1_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0971; + var$2 = var$0.$_1331; + var$3 = new sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0; + var$3.$_01089 = var$1; + var$4 = new sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1; + var$4.$_0378 = var$3; + return sci_LazyList_zipState(sci_LazyList__init_(var$4), var$2); +}; +function sci_LazyList$zipAllState$lambda$_81_2() { + jl_Object.call(this); + this.$_0321 = null; +} +let sci_LazyList$zipAllState$lambda$_81_2_apply = var$0 => { + return var$0.$_0321; +}; +function sci_LazyList$zipAllState$lambda$_81_3() { + jl_Object.call(this); + this.$_0901 = null; +} +let sci_LazyList$zipAllState$lambda$_81_3_apply = var$0 => { + return sci_LazyList$_$anonfun$continually$1(var$0.$_0901); +}; +function sci_LazyList$zipState$lambda$_78_0() { + let a = this; jl_Object.call(a); + a.$_019 = null; + a.$_112 = null; +} +let sci_LazyList$zipState$lambda$_78_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_019; + var$2 = var$0.$_112; + return sci_LazyList_zipState(sci_LazyList_tail(var$1), var$2); +}, +oncia_Match$$anonfun$5 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_Match$$anonfun$5_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !($x instanceof oncia_UsingJoinHint) ? $default.$apply2($x) : $x.$variables1.$toIndexedSeq(); +}, +oncia_Match$uniqueHints$lambda$_74_0 = $rt_classWithoutFields(), +oncia_Match$uniqueHints$lambda$_74_0_apply = (var$0, var$1) => { + var$1 = var$1; + s_Predef$_$callClinit(); + return var$1; +}, +oncia_Match$$anonfun$6 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_Match$$anonfun$6_applyOrElse = ($this, $x, $default) => { + let var$3; + a: { + $x = $x; + if ($x !== null) { + var$3 = $x.$_1(); + if (($x.$_2()).$length() > 1) { + oncias_SemanticError$_$callClinit(); + $x = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(6827), var$3.$position4); + break a; + } + } + $x = sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply($default, $x); + } + return $x; +}; +function oncia_Match$uniqueHints$lambda$_74_1() { + jl_Object.call(this); + this.$_0158 = null; +} +let oncia_Match$uniqueHints$lambda$_74_1_apply = (var$0, var$1) => { + return oncias_SemanticCheckResult__init_(var$1, var$0.$_0158); +}, +oncia_Match$checkMatchMode$lambda$_76_0 = $rt_classWithoutFields(), +oncia_Match$checkMatchMode$lambda$_76_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$features.$contains(oncias_SemanticFeature$MatchModes$_MODULE$) ? 0 : 1); +}; +function oncia_Match$checkMatchMode$lambda$_76_1() { + jl_Object.call(this); + this.$_0872 = null; +} +let oncia_Match$checkMatchMode$lambda$_76_1_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0872; + var$2 = var$1.$matchMode1; + if (var$2 instanceof oncie_MatchMode$DifferentRelationships && var$2.$implicitlyCreated) + var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncia_Match$$anonfun$checkMatchMode$2$lambda$_129_0); + else { + var$3 = var$2.$prettified(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6828)), var$3), $rt_s(6829)); + var$1 = oncias_SemanticAnalysisTooling_error$(var$1, jl_AbstractStringBuilder_toString(var$2), var$1.$matchMode1.$position()); + } + return var$1; +}; +function oncia_Match$checkMatchMode$lambda$_76_2() { let a = this; jl_Object.call(a); - a.$_0977 = null; - a.$_1339 = null; + a.$_01163 = null; + a.$_1395 = null; } -let sci_LazyList$zipAllState$lambda$_81_1_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0977; - var$2 = var$0.$_1339; - var$3 = new sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0; - var$3.$_01114 = var$1; - var$4 = new sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1; - var$4.$_0389 = var$3; - return sci_LazyList_zipState(sci_LazyList__init_(var$4), var$2); +let oncia_Match$checkMatchMode$lambda$_76_2_apply = var$0 => { + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); }; -function sci_LazyList$zipAllState$lambda$_81_2() { +function oncia_Match$checkMatchMode$lambda$_76_3() { jl_Object.call(this); - this.$_0330 = null; + this.$_0980 = null; } -let sci_LazyList$zipAllState$lambda$_81_2_apply = var$0 => { - return var$0.$_0330; +let oncia_Match$checkMatchMode$lambda$_76_3_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0980; + var$2 = var$1.$matchMode1; + if (var$2 instanceof oncie_MatchMode$RepeatableElements) { + var$2 = oncias_package$_MODULE$; + var$3 = new oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_0; + var$3.$_0916 = var$1; + var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); + } else { + if (!(var$2 instanceof oncie_MatchMode$DifferentRelationships)) + $rt_throw(s_MatchError__init_(var$2)); + var$2 = oncias_package$_MODULE$; + var$3 = new oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_1; + var$3.$_0538 = var$1; + var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); + } + return var$1; }; -function sci_LazyList$zipAllState$lambda$_81_3() { +function oncia_Match$checkHints$lambda$_79_0() { jl_Object.call(this); - this.$_0916 = null; -} -let sci_LazyList$zipAllState$lambda$_81_3_apply = var$0 => { - return sci_LazyList$_$anonfun$continually$1(var$0.$_0916); -}; -function sci_LazyList$zipState$lambda$_78_0() { - let a = this; jl_Object.call(a); - a.$_021 = null; - a.$_113 = null; + this.$_0879 = null; } -let sci_LazyList$zipState$lambda$_78_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_021; - var$2 = var$0.$_113; - return sci_LazyList_zipState(sci_LazyList_tail(var$1), var$2); +let oncia_Match$checkHints$lambda$_79_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5; + var$3 = var$0.$_0879; + var$4 = var$3.$hints; + var$5 = new oncia_Match$$anonfun$8; + var$5.$$outer3 = var$3; + var$5.$semanticState$1 = var$1; + var$5.$context$10 = var$2; + var$2 = var$4.$collectFirst(var$5); + var$3 = new oncias_SemanticCheckResult; + s_Option$_$callClinit(); + oncias_SemanticCheckResult__init_0(var$3, var$1, (s_Option$_option2Iterable(s_Option$_MODULE$, var$2)).$toSeq()); + return var$3; }; -function oncia_UseGraph$checkSingleGraphSelector$lambda$_67_0() { +function oncia_Match$checkForCartesianProducts$lambda$_75_0() { jl_Object.call(this); - this.$_0202 = null; + this.$_0297 = null; } -let oncia_UseGraph$checkSingleGraphSelector$lambda$_67_0_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = var$0.$_0202; - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_error0(oncias_SemanticCheckResult$_MODULE$, var$1, (var$2.$errorMessageProvider()).$createDynamicGraphReferenceUnsupportedError(var$3.$graphReference2.$print0()), var$3.$position30); +let oncia_Match$checkForCartesianProducts$lambda$_75_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12; + var$1 = var$1; + var$2 = var$0.$_0297; + var$3 = new sr_LazyRef; + onciap_ExpressionStringifier$_$callClinit(); + var$4 = onciap_ExpressionStringifier$_apply$default$1(onciap_ExpressionStringifier$_MODULE$); + var$4 = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, var$4, 0, 0, 1, 0); + var$5 = onciap_PatternStringifier$_apply(onciap_PatternStringifier$_MODULE$, var$4); + oncia_connectedComponents$_$callClinit(); + var$6 = (var$2.$pattern7.$patternParts0.$map(new oncia_connectedComponents$$apply$lambda$_3_0)).$toIndexedSeq(); + s_package$_$callClinit(); + var$7 = sc_SeqFactory$Delegate_empty(s_package$_IndexedSeq(s_package$_MODULE$)); + while (true) { + if (sc_SeqOps_isEmpty$(var$6)) { + var$4 = var$7.$drop(1); + var$8 = new oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_126_0; + var$8.$_01062 = var$2; + var$8.$_1361 = var$3; + var$8.$_2120 = var$5; + return oncias_SemanticCheckResult__init_(var$4.$foldLeft(var$1, var$8), sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + } + var$9 = var$6.$head(); + var$4 = new oncia_connectedComponents$$loop$1$lambda$_10_0; + var$4.$_0882 = var$9; + var$8 = var$7.$partition(var$4); + if (var$8 === null) + break; + var$8 = s_Tuple2__init_(var$8.$_10, var$8.$_20); + var$10 = var$8.$_10; + var$4 = var$8.$_20; + var$11 = oncia_connectedComponents$_ConnectedComponent; + var$8 = sr_ScalaRunTime$_MODULE$; + var$12 = $rt_createArray(sci_Set, 1); + var$12.data[0] = var$9; + var$8 = var$10.$foldLeft(var$11.$from0(sr_ScalaRunTime$_wrapRefArray(var$8, var$12)), new oncia_connectedComponents$$loop$1$lambda$_10_1); + var$11 = var$7.$headOption(); + var$10 = new oncia_connectedComponents$$loop$1$lambda$_10_2; + var$10.$_0764 = var$9; + var$7 = !s_Option_exists(var$11, var$10) ? var$4.$appended(var$8) : var$4.$prepended(var$8); + var$6 = var$6.$tail(); + } + $rt_throw(s_MatchError__init_(var$8)); +}, +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_0 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + return jl_Boolean_valueOf(oncias_SemanticFunctionCheck$_withKey(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(6057), var$1)); +}, +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_1 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_1_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + return jl_Boolean_valueOf(oncias_SemanticFunctionCheck$_withKey(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(6056), var$1)); +}, +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_2 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_2_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + return jl_Boolean_valueOf(oncias_SemanticFunctionCheck$_withKey(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(6830), var$1)); +}, +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_3 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_3_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + return jl_Boolean_valueOf(oncias_SemanticFunctionCheck$_withKey(oncias_SemanticFunctionCheck$_MODULE$, $rt_s(6831), var$1)); +}, +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_4 = $rt_classWithoutFields(), +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_4_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + oncias_SemanticFunctionCheck$_$callClinit(); + var$2 = (var$1.$_1()).$name5; + var$1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$1); + jl_AbstractStringBuilder_append0(var$1, 39); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$2), 39); + return jl_AbstractStringBuilder_toString(var$1); }; -function oncia_UseGraph$unsupported$lambda$_61_0() { +function oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_74_0() { jl_Object.call(this); - this.$_0570 = null; + this.$_0773 = null; } -let oncia_UseGraph$unsupported$lambda$_61_0_apply = (var$0, var$1, var$2) => { - let var$3; - var$3 = var$0.$_0570; - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_error0(oncias_SemanticCheckResult$_MODULE$, var$1, (var$2.$errorMessageProvider()).$createUseClauseUnsupportedError(), var$3.$position30); -}, -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1_applyOrElse = ($this, $x1, $default) => { - if ($x1 instanceof oncie_QuantifiedPath && $x1.$quantifier2.$canBeEmpty()) - return new oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0; - if (!$rt_isInstance($x1, oncie_PathFactor)) - return s_PartialFunction$_fallback_fn; - return new oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1; +let oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_74_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0773; + oncias_SemanticFunctionCheck$_$callClinit(); + var$1 = oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(oncias_SemanticFunctionCheck$_MODULE$, var$2), var$1); + oncius_package$_$callClinit(); + var$2 = oncius_package$_MODULE$; + return oncius_TypeSpec_unwrapLists(oncius_TypeSpec_constrain(var$1, oncius_package$_CTList(var$2, oncius_package$_CTAny(var$2)))); }; -function oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_50_0() { - jl_Object.call(this); - this.$_0218 = null; +function oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_59_0() { + let a = this; jl_Object.call(a); + a.$_0376 = null; + a.$_1134 = null; } -let oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_50_0_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0218; - oncias_SemanticPatternCheck$_$callClinit(); - var$2 = new oncie_FixedQuantifier; - var$3 = new oncie_UnsignedDecimalIntegerLiteral; - onciu_InputPosition$_$callClinit(); - oncie_UnsignedDecimalIntegerLiteral__init_0(var$3, $rt_s(21), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - oncie_FixedQuantifier__init_(var$2, var$3, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); - var$3 = var$1.$element(); - onciu_topDown$_$callClinit(); - var$4 = onciu_topDown$_MODULE$; - onciu_Rewriter$_$callClinit(); - var$5 = onciu_Rewriter$_MODULE$; - var$6 = new oncias_SemanticPatternCheck$$anonfun$1; - var$6.$fixedZeroQuantifier$1 = var$2; - var$2 = (onciu_topDown$_apply(var$4, onciu_Rewriter$_lift(var$5, var$6), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2(var$3); - var$2 = onciap_DefaultPatternStringifier_apply0((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, var$2); - var$3 = oncias_SemanticPatternCheck$_MODULE$; - var$4 = sc_StringOps$_MODULE$; - s_Predef$_$callClinit(); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(7864)), var$2), $rt_s(7865)); - return oncias_SemanticAnalysisTooling_error$(var$3, sc_StringOps$_stripMargin$extension(var$4, jl_AbstractStringBuilder_toString(var$5)), var$1.$position()); +let oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_59_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncias_SemanticFunctionCheck$_$anonfun$checkToSpecifiedTypeOfArgument$1(var$0.$_0376, var$0.$_1134, var$1); }; function sc_LinearSeqIterator$LazyCell() { let a = this; jl_Object.call(a); @@ -352490,1294 +279290,2289 @@ sc_LinearSeqIterator$LazyCell__init_0 = (var_0, var_1) => { }; function sc_LinearSeqIterator$_init_$lambda$_4_0() { jl_Object.call(this); - this.$_0366 = null; + this.$_0352 = null; } let sc_LinearSeqIterator$_init_$lambda$_4_0_apply = var$0 => { - return var$0.$_0366; + return var$0.$_0352; +}, +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0 = $rt_classWithoutFields(), +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0_apply = var$0 => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; +}, +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1 = $rt_classWithoutFields(), +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1_apply = (var$0, var$1) => { + return var$1.$dependencies(); +}, +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findDynamicVariables$1$lambda$_8_0 = $rt_classWithoutFields(), +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findDynamicVariables$1$lambda$_8_0_apply = (var$0, var$1) => { + return (var$1.$expr4.$expression0()).$dependencies(); +}, +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_0 = $rt_classWithoutFields(), +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_0_apply = var$0 => { + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; }, -oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_0_apply = (var$0, var$1) => { +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_1 = $rt_classWithoutFields(), +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_1_apply = (var$0, var$1) => { var$1 = var$1; - oncias_SemanticPatternCheck$_$callClinit(); - return onciu_Foldable$Folder_treeCollect(onciu_Foldable_folder$(var$1.$element()), new oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1); + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + return var$1.$dependencies(); }; -function oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_1() { +function s_Function$$chain$lambda$_1_0() { jl_Object.call(this); - this.$_0791 = null; + this.$_01195 = null; } -let oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let onciap_Prettifier$$anonfun$stringify$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +onciap_Prettifier$$anonfun$stringify$1$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if ($x instanceof oncia_LabelQualifier) + $x = onu_Stringifier_backtick($x.$label1); + else if ($x instanceof oncia_RelationshipQualifier) + $x = onu_Stringifier_backtick($x.$reltype); + else if ($x instanceof oncia_ElementQualifier) + $x = onu_Stringifier_backtick($x.$value23); + else if ($x instanceof oncia_UserQualifier) { + $default = $x.$username2; + onciap_Prettifier$_$callClinit(); + $x = sr_AbstractPartialFunction_apply(onciap_Prettifier$_escapeName0(onciap_Prettifier$_MODULE$), $default); + } else + $x = $x instanceof oncia_ProcedureQualifier ? onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1($x.$glob3) : $x instanceof oncia_FunctionQualifier ? onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1($x.$glob1) : !($x instanceof oncia_SettingQualifier) ? s_PartialFunction$$anon$1_apply($default, $x) : onciap_Prettifier$_org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1($x.$glob2); + return $x; +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_0 = $rt_classWithoutFields(), +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0791; - oncias_SemanticPatternCheck$_$callClinit(); - if (var$1 instanceof oncie_QuantifiedPath) { - var$1 = var$1; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_67_0; - var$4.$_0901 = var$1; - var$4.$_1312 = var$2; - var$1 = oncias_SemanticCheck$_fromState(var$3, var$4); - } else { - if (!(var$1 instanceof oncie_ParenthesizedPath)) { - var$2 = new jl_IllegalArgumentException; - var$1 = jl_Object_getClass(var$1); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7866)), var$1), 46); - jl_Throwable__init_0(var$2, jl_AbstractStringBuilder_toString(var$3)); - $rt_throw(var$2); - } - var$1 = var$1; - var$1 = oncias_SemanticPatternCheck$_normalizeParenthesizedPath(oncias_SemanticPatternCheck$_MODULE$, var$1); - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_68_0; - var$4.$_0782 = var$1; - var$4.$_1262 = var$2; - var$1 = oncias_SemanticCheck$_fromState(var$3, var$4); + onciap_Prettifier$_$callClinit(); + if (!(var$1 instanceof oncia_LabelQualifier)) + var$1 = s_None$_MODULE$; + else { + var$2 = var$1; + var$1 = s_Some__init_(onu_Stringifier_backtick(var$2.$label1)); } return var$1; }, -oncia_connectedComponents$$apply$lambda$_3_0 = $rt_classWithoutFields(), -oncia_connectedComponents$$apply$lambda$_3_0_apply = (var$0, var$1) => { +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_1 = $rt_classWithoutFields(), +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_2 = $rt_classWithoutFields(), +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_2_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - oncia_connectedComponents$_$callClinit(); - var$2 = onciu_Foldable_folder$(var$1); - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return onciu_Foldable$Folder_fold(var$2, sci_Set$EmptySet$_MODULE$, new oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1); + onciap_Prettifier$_$callClinit(); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 58); + jl_StringBuilder_append(var$2, var$1); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_3 = $rt_classWithoutFields(), +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_3_apply = var$0 => { + onciap_Prettifier$_$callClinit(); + return $rt_s(4); +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_4 = $rt_classWithoutFields(), +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_4_apply = (var$0, var$1) => { + var$1 = var$1; + onciap_Prettifier$_$callClinit(); + return onu_Stringifier_backtick(var$1.$name4); +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6 = $rt_classWithoutFields(), +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6__init_0 = var$0 => { + return; +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6__init_ = () => { + let var_0 = new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6(); + onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6__init_0(var_0); + return var_0; +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6_apply = (var$0, var$1) => { + onciap_Prettifier$_$callClinit(); + return var$1.$asCanonicalStringVal(); +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5 = $rt_classWithoutFields(), +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5__init_0 = var$0 => { + return; +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5__init_ = () => { + let var_0 = new onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5(); + onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5__init_0(var_0); + return var_0; +}, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5_apply = (var$0, var$1) => { + onciap_Prettifier$_$callClinit(); + return var$1.$asCanonicalStringVal(); }; -function s_Function$$chain$lambda$_1_0() { +function onciap_Prettifier$$escapeNames$lambda$_18_0() { jl_Object.call(this); - this.$_01211 = null; + this.$_0708 = null; } -function oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_27_0() { +let onciap_Prettifier$$escapeNames$lambda$_18_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0708; + onciap_Prettifier$_$callClinit(); + return onciap_Prettifier$_escapeName(onciap_Prettifier$_MODULE$, var$1, var$2); +}; +function oncia_CommandClause$$updateExpression$1$lambda$_8_0() { jl_Object.call(this); - this.$_0892 = null; + this.$_0702 = null; } -let oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_27_0_apply = (var$0, var$1) => { +let oncia_CommandClause$$updateExpression$1$lambda$_8_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + a: { + var$1 = var$1; + var$2 = var$0.$_0702; + oncia_CommandClause$_$callClinit(); + if (var$1 !== null) { + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + if (var$3 instanceof oncie_LogicalVariable) { + var$3 = var$3; + if (var$1 instanceof s_Some) { + var$4 = !oncie_Variable_equals(var$1.$value5, var$3) && !(var$2.$valuesIterator()).$contains(s_Some__init_(var$3)) ? 1 : 0; + break a; + } + } + } + var$4 = 0; + } + return jl_Boolean_valueOf(var$4); +}, +oncia_CommandClause$$updateExpression$1$lambda$_8_1 = $rt_classWithoutFields(), +oncia_CommandClause$$updateExpression$1$lambda$_8_1_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0892; - onciu_Ref$_$callClinit(); - return var$1.$incl(onciu_Ref$_apply(onciu_Ref$_MODULE$, var$2)); + oncia_CommandClause$_$callClinit(); + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + return s_Tuple2__init_(var$2, var$1.$get1()); +}, +oncia_CommandClause$$updateExpression$1$lambda$_8_2 = $rt_classWithoutFields(), +oncia_CommandClause$$updateExpression$1$lambda$_8_2_apply = (var$0, var$1, var$2) => { + let var$3, var$4; + var$1 = var$1; + var$2 = var$2; + oncia_CommandClause$_$callClinit(); + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = var$2.$_1(); + var$2 = var$2.$_2(); + var$4 = new oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0; + var$4.$_0670 = var$2; + return oncie_Expression_replaceAllOccurrencesBy(var$1, var$3, var$4, 1); }; function sci_Stream$map$lambda$_62_0() { let a = this; jl_Object.call(a); - a.$_01127 = null; - a.$_1378 = null; + a.$_01103 = null; + a.$_1376 = null; } let sci_Stream$map$lambda$_62_0_apply = var$0 => { - return sci_Stream_$anonfun$map$1(var$0.$_01127, var$0.$_1378); + return sci_Stream_$anonfun$map$1(var$0.$_01103, var$0.$_1376); +}, +oncius_TypeSpec$$union$lambda$_7_0 = $rt_classWithoutFields(), +oncius_TypeSpec$$union$lambda$_7_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncius_TypeSpec$_$callClinit(); + return var$1.$ranges; }; -function oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0() { - let a = this; jl_Object.call(a); - a.$_0179 = null; - a.$_168 = null; +function oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0() { + jl_Object.call(this); + this.$_0646 = null; } -let oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0_apply = (var$0, var$1) => { - let var$2, var$3; +let oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0179; - var$3 = var$0.$_168; - var$2 = var$2.$conf.$ruleGroups(); - s_Predef$_$callClinit(); - return jl_Boolean_valueOf(s_Option_contains(var$2.$get2(jl_Integer_valueOf(sr_BoxesRunTime_unboxToInt(var$1))), var$3)); + var$2 = var$0.$_0646; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0; + var$4.$_0684 = var$2; + var$4.$_1233 = var$1; + return oncias_SemanticCheck$_fromFunction(var$3, var$4); +}, +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_0 = $rt_classWithoutFields(), +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_0_apply = var$0 => { + onciap_Prettifier$_$callClinit(); + return $rt_s(6832); +}, +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_1 = $rt_classWithoutFields(), +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_1_apply = var$0 => { + onciap_Prettifier$_$callClinit(); + return $rt_s(6832); +}, +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2 = $rt_classWithoutFields(), +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2__init_ = var$0 => { + return; +}, +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2__init_0 = () => { + let var_0 = new onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2(); + onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2__init_(var_0); + return var_0; +}, +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2_apply = (var$0, var$1) => { + onciap_Prettifier$_$callClinit(); + return var$1.$asCanonicalStringVal(); +}, +onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_0 = $rt_classWithoutFields(), +onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_0_apply = var$0 => { + onciap_Prettifier$_$callClinit(); + return $rt_s(4); +}, +onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_1 = $rt_classWithoutFields(), +onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_1_apply = (var$0, var$1) => { + onciap_Prettifier$_$callClinit(); + return var$1.$asCanonicalStringVal(); }; -function oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0() { +function oncia_UseGraph$checkWorkingGraph$lambda$_69_0() { jl_Object.call(this); - this.$_0322 = null; + this.$_01142 = null; } -let oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let oncia_UseGraph$checkWorkingGraph$lambda$_69_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6; a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0322; - oncifp_ProcedureWarnings$_$callClinit(); - var$3 = var$1.$name9; - var$2 = var$2.$outputName; - if (var$3 !== null) { - if (!jl_String_equals(var$3, var$2)) - break b; - else - break c; + var$3 = var$0.$_01142; + if (!s_Option_isEmpty(var$1.$workingGraph)) { + if ((var$1.$workingGraph.$get1()).$semanticallyEqual(var$3.$graphReference1)) + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + else + var$1 = oncias_SemanticCheckResult$_error0(oncias_SemanticCheckResult$_MODULE$, var$1, $rt_s(6833), var$3.$graphReference1.$position()); + } else { + if (var$2.$sessionDatabaseReference() !== null) { + var$2 = var$2.$sessionDatabaseReference(); + var$4 = var$3.$graphReference1; + if (!(var$4 instanceof oncia_GraphDirectReference)) { + if (!(var$4 instanceof oncia_GraphFunctionReference)) + $rt_throw(s_MatchError__init_(var$4)); + var$5 = 0; + } else + b: { + var$6 = var$4.$catalogName; + if (var$2 !== null) { + var$4 = new onkd_NormalizedDatabaseName; + var$6 = oncia_CatalogName_qualifiedNameString(var$6); + ju_Objects_requireNonNull0(var$6, $rt_s(6834)); + ju_Locale_$callClinit(); + var$4.$name45 = jl_String_toLowerCase(var$6, ju_Locale_ROOT); + var$2 = var$2.$fullName(); + if (var$4 === var$2 ? 1 : var$2 !== null && var$2.$getClass0() === $rt_cls(onkd_NormalizedDatabaseName) ? (ju_Objects_equals(var$4.$name45, var$2.$name45) ? 1 : 0) : 0) { + var$5 = 1; + break b; + } + } + var$5 = 0; + } + if (!var$5) { + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_recordWorkingGraph(var$1, s_Some__init_(var$3.$graphReference1))); + break a; } - if (var$2 !== null) - break b; - } - if (var$1.$deprecated0) { - var$4 = 1; - break a; } + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); } - var$4 = 0; } - return jl_Boolean_valueOf(var$4); + return var$1; }; -function oncia_UseGraph$checkSingleTargetGraph$lambda$_68_0() { +function oncias_SemanticAnalysisTooling$possibleTypes$lambda$_93_0() { let a = this; jl_Object.call(a); - a.$_0479 = null; - a.$_1167 = null; + a.$_0484 = null; + a.$_1165 = null; } -let oncia_UseGraph$checkSingleTargetGraph$lambda$_68_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4, var$5; - var$3 = var$0.$_0479; - var$4 = var$0.$_1167; - var$5 = var$1.$targetGraph; - if (!(var$5 instanceof s_Some)) { - if (!jl_Object_equals(s_None$_MODULE$, var$5)) - $rt_throw(s_MatchError__init_(var$5)); - var$1 = oncias_SemanticState_recordTargetGraph(var$1, var$4); - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } else if (var$5.$value5.$equals(var$4)) { - oncias_SemanticCheckResult$_$callClinit(); - var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); - } else { - oncias_SemanticCheckResult$_$callClinit(); - var$5 = oncias_SemanticCheckResult$_MODULE$; - var$2 = var$2.$errorMessageProvider(); - var$1 = oncias_SemanticCheckResult$_error0(var$5, var$1, var$2.$createMultipleGraphReferencesError(oncia_GraphDirectReference_print(var$4), var$2.$createMultipleGraphReferencesError$default$2()), var$3.$position30); - } - return var$1; +let oncias_SemanticAnalysisTooling$possibleTypes$lambda$_93_0_apply = (var$0, var$1) => { + return oncius_TypeSpec_unwrapLists(oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(var$0.$_0484, var$0.$_1165), var$1)); }; -function oncia_connectedComponents$$loop$1$lambda$_10_0() { - jl_Object.call(this); - this.$_0898 = null; +function oncias_SemanticAnalysisTooling$expectType$lambda$_27_0() { + let a = this; jl_Object.call(a); + a.$_0396 = null; + a.$_1140 = null; + a.$_249 = null; + a.$_316 = null; + a.$_45 = null; } -let oncia_connectedComponents$$loop$1$lambda$_10_0_apply = (var$0, var$1) => { - let var$2; +let oncias_SemanticAnalysisTooling$expectType$lambda$_27_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0898; - oncia_connectedComponents$_$callClinit(); - return jl_Boolean_valueOf(oncia_connectedComponents$RichConnectedComponent_connectedTo(oncia_connectedComponents$_RichConnectedComponent(oncia_connectedComponents$_MODULE$, var$1), var$2)); + return oncias_SemanticAnalysisTooling_expectType$0(var$0.$_0396, var$1, var$0.$_1140, var$0.$_249, var$0.$_316, var$0.$_45); }, -oncia_connectedComponents$$loop$1$lambda$_10_1 = $rt_classWithoutFields(), -oncia_connectedComponents$$loop$1$lambda$_10_1_apply = (var$0, var$1, var$2) => { +oncia_UseGraph$checkExpressions$lambda$_71_0 = $rt_classWithoutFields(), +oncia_UseGraph$checkExpressions$lambda$_71_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$2; - oncia_connectedComponents$_$callClinit(); - return var$1.$concat1(var$2); + oncias_SemanticExpressionCheck$_$callClinit(); + return oncias_SemanticExpressionCheck$_check0(oncias_SemanticExpressionCheck$_MODULE$, oncie_Expression$SemanticContext$Results$_MODULE$, var$1); }; -function oncia_connectedComponents$$loop$1$lambda$_10_2() { - jl_Object.call(this); - this.$_0786 = null; +function oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_0() { + let a = this; jl_Object.call(a); + a.$_0982 = null; + a.$_1337 = null; } -let oncia_connectedComponents$$loop$1$lambda$_10_2_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0786; - oncia_connectedComponents$_$callClinit(); - return jl_Boolean_valueOf(oncia_connectedComponents$RichConnectedComponent_connectedTo(oncia_connectedComponents$_RichConnectedComponent(oncia_connectedComponents$_MODULE$, var$1), var$2)); +let oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0982; + var$3 = var$0.$_1337.$iterator0(); + var$4 = new oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_0; + var$4.$_0890 = var$2; + var$4.$_1302 = var$1; + return (var$3.$map5(var$4)).$reduceLeft(new oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_1); +}, +oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_1 = $rt_classWithoutFields(), +oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_1_apply = (var$0, var$1) => { + oncius_package$_$callClinit(); + return oncius_AnyType_invariant(oncius_package$_CTAny(oncius_package$_MODULE$)); +}, +onciu_RewritableJavascript$PROXY$9_276 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_276_numParameters = var$1 => { + return (jl_Integer_valueOf(1)).$value4; +}, +onciu_RewritableJavascript$PROXY$9_277 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_277_numParameters = var$1 => { + return (jl_Integer_valueOf(3)).$value4; }, -onciu_RewritableJavascript$PROXY$9_280 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$9_280_numParameters = var$1 => { +onciu_RewritableJavascript$PROXY$9_278 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$9_278_numParameters = var$1 => { return (jl_Integer_valueOf(1)).$value4; }, -onciu_RewritableJavascript$PROXY$11_280 = $rt_classWithoutFields(), -onciu_RewritableJavascript$PROXY$11_280_lastParamIsPosition = var$1 => { +onciu_RewritableJavascript$PROXY$11_276 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_276_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(1)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_277 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_277_lastParamIsPosition = var$1 => { + return (jl_Boolean_valueOf(0)).$value3; +}, +onciu_RewritableJavascript$PROXY$11_278 = $rt_classWithoutFields(), +onciu_RewritableJavascript$PROXY$11_278_lastParamIsPosition = var$1 => { return (jl_Boolean_valueOf(0)).$value3; }; function sci_Stream$partition$lambda$_56_0() { jl_Object.call(this); - this.$_0778 = null; + this.$_0756 = null; } let sci_Stream$partition$lambda$_56_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0778.$apply2(var$1))); + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0756.$apply2(var$1))); }; function sci_Stream$partition$lambda$_56_1() { let a = this; jl_Object.call(a); - a.$_0299 = null; - a.$_1111 = null; - a.$_243 = 0; + a.$_0283 = null; + a.$_1104 = null; + a.$_237 = 0; } let sci_Stream$partition$lambda$_56_1_apply = var$0 => { - return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0299, var$0.$_1111, var$0.$_243); + return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0283, var$0.$_1104, var$0.$_237); }; function sci_Stream$partition$lambda$_56_2() { jl_Object.call(this); - this.$_0383 = null; + this.$_0370 = null; } let sci_Stream$partition$lambda$_56_2_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0383.$apply2(var$1))); + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0370.$apply2(var$1))); }; function sci_Stream$partition$lambda$_56_3() { let a = this; jl_Object.call(a); - a.$_0897 = null; - a.$_1309 = null; - a.$_2100 = 0; + a.$_0881 = null; + a.$_1297 = null; + a.$_295 = 0; } let sci_Stream$partition$lambda$_56_3_apply = var$0 => { - return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0897, var$0.$_1309, var$0.$_2100); + return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0881, var$0.$_1297, var$0.$_295); +}, +oncius_TypeSpec$toStrings$lambda$_40_0 = $rt_classWithoutFields(), +oncius_TypeSpec$toStrings$lambda$_40_0_apply = (var$0, var$1) => { + s_Predef$_$callClinit(); + return var$1; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_0() { +function oavra_LexerIndexedCustomAction() { + let a = this; jl_Object.call(a); + a.$offset3 = 0; + a.$action3 = null; +} +let oavra_LexerIndexedCustomAction_getOffset = $this => { + return $this.$offset3; +}, +oavra_LexerIndexedCustomAction_getAction = $this => { + return $this.$action3; +}, +oavra_LexerIndexedCustomAction_isPositionDependent = $this => { + return 1; +}, +oavra_LexerIndexedCustomAction_execute = ($this, $lexer) => { + $this.$action3.$execute($lexer); +}, +oavra_LexerIndexedCustomAction_hashCode = $this => { + return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), $this.$offset3), $this.$action3), 2); +}, +oavra_LexerIndexedCustomAction_equals = ($this, $obj) => { + let $other; + if ($obj === $this) + return 1; + if (!($obj instanceof oavra_LexerIndexedCustomAction)) + return 0; + $other = $obj; + return $this.$offset3 == $other.$offset3 && $this.$action3.$equals($other.$action3) ? 1 : 0; +}; +function sc_LinearSeqIterator$next$lambda$_1_0() { jl_Object.call(this); - this.$_0491 = null; + this.$_01094 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString3(var$0.$_0491, var$1); +let sc_LinearSeqIterator$next$lambda$_1_0_apply = var$0 => { + return var$0.$_01094.$tail(); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_1() { +function oncius_TypeSpec$containsAny$lambda$_11_0() { jl_Object.call(this); - this.$_01156 = null; + this.$_0942 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_1_apply = (var$0, var$1) => { +let oncius_TypeSpec$containsAny$lambda$_11_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_01156, var$1); + var$2 = var$0.$_0942.$ranges; + var$3 = new oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0; + var$3.$_0994 = var$1; + return jl_Boolean_valueOf(var$2.$exists(var$3)); +}; +function sci_Stream$collectFirst$lambda$_64_0() { + jl_Object.call(this); + this.$_0360 = null; +} +let sci_Stream$collectFirst$lambda$_64_0_apply = (var$0, var$1) => { + var$0.$_0360.$elem = var$1; + return sr_BoxedUnit_UNIT; }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_2_apply = var$0 => { - return $rt_s(4); +oncius_TypeSpec$coercions$lambda$_29_0 = $rt_classWithoutFields(), +oncius_TypeSpec$coercions$lambda$_29_0_apply = (var$0, var$1) => { + return var$1.$lower0.$coercibleTo(); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_3() { +function onciap_Prettifier$propertiesMapToString$lambda$_33_0() { jl_Object.call(this); - this.$_0960 = null; + this.$_0464 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_3_apply = (var$0, var$1) => { +let onciap_Prettifier$propertiesMapToString$lambda$_33_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString1(var$0.$_0960, var$1); + var$2 = var$0.$_0464; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + var$3 = onciap_Prettifier_backtick(var$2, var$3); + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(9)), var$1); + return jl_AbstractStringBuilder_toString(var$2); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_4() { +function oncie_NodePattern$mapExpressions$lambda$_12_0() { jl_Object.call(this); - this.$_0424 = null; + this.$_091 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_4_apply = (var$0, var$1) => { +let oncie_NodePattern$mapExpressions$lambda$_12_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0424, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_5 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_5_apply = var$0 => { - return $rt_s(4); + var$2 = var$0.$_091; + return !(var$1 instanceof oncie_MapExpression) ? oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1) : oncie_MapExpression_mapExpressions(var$1, var$2); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_6() { +function oncie_NodePattern$mapExpressions$lambda$_12_1() { jl_Object.call(this); - this.$_0840 = null; + this.$_0730 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_6_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString0(var$0.$_0840, var$1); +let oncie_NodePattern$mapExpressions$lambda$_12_1_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_0730); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_7() { +function oncie_QuantifiedPath$mapExpressions$lambda$_14_0() { jl_Object.call(this); - this.$_0292 = null; + this.$_0456 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_7_apply = (var$0, var$1) => { +let oncie_QuantifiedPath$mapExpressions$lambda$_14_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0292, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_8 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_8_apply = var$0 => { - return $rt_s(4); + var$2 = var$0.$_0456; + return oncie_VariableGrouping_copy(var$1, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1.$singleton), oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1.$group0), var$1.$position148); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0() { +function oncie_PathConcatenation$mapExpressions$lambda$_9_0() { jl_Object.call(this); - this.$_01002 = null; + this.$_0452 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString3(var$0.$_01002, var$1); +let oncie_PathConcatenation$mapExpressions$lambda$_9_0_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_0452); +}, +oncius_TypeSpec$unwrapLists$lambda$_27_0 = $rt_classWithoutFields(), +oncius_TypeSpec$unwrapLists$lambda$_27_0_apply = (var$0, var$1) => { + return oncius_TypeRange_reparent(var$1, new oncius_TypeSpec$$anonfun$unwrapLists$1$lambda$_65_0); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1() { +function onciap_Prettifier$prettifySetItems$lambda$_34_0() { jl_Object.call(this); - this.$_0392 = null; + this.$_0363 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1_apply = (var$0, var$1) => { +let onciap_Prettifier$prettifySetItems$lambda$_34_0_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0392, var$1); + return onciap_Prettifier_$anonfun$prettifySetItems$1(var$0.$_0363, var$1); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_2_apply = var$0 => { - return $rt_s(4); +oncius_TypeSpec$wrapInList$lambda$_24_0 = $rt_classWithoutFields(), +oncius_TypeSpec$wrapInList$lambda$_24_0_apply = (var$0, var$1) => { + return oncius_TypeRange_reparent(var$1, new oncius_TypeSpec$$anonfun$wrapInList$1$lambda$_60_0); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3() { +function oncius_TypeSpec$leastUpperBounds$lambda$_23_0() { jl_Object.call(this); - this.$_0562 = null; + this.$_01098 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3_apply = (var$0, var$1) => { +let oncius_TypeSpec$leastUpperBounds$lambda$_23_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString1(var$0.$_0562, var$1); + var$2 = var$0.$_01098.$ranges; + var$3 = new oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0; + var$3.$_0617 = var$1; + return var$2.$flatMap(var$3); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4() { +function oncius_TypeSpec$without$lambda$_20_0() { jl_Object.call(this); - this.$_01082 = null; + this.$_0125 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4_apply = (var$0, var$1) => { +let oncius_TypeSpec$without$lambda$_20_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_01082, var$1); + var$2 = var$0.$_0125; + if (oncius_ListType_isAssignableFrom(var$2, var$1.$lower0)) + var$3 = s_None$_MODULE$; + else if (!var$1.$lower0.$isAssignableFrom0(var$2)) + var$3 = s_Some__init_(var$1); + else { + var$4 = var$1.$upper0; + if (jl_Object_equals(s_None$_MODULE$, var$4)) + var$3 = s_Some__init_(oncius_TypeRange$_apply(oncius_TypeRange$_MODULE$, var$1.$lower0, var$2.$parentType0)); + else { + if (!(var$4 instanceof s_Some)) + $rt_throw(s_MatchError__init_(var$4)); + var$3 = !oncius_ListType_isAssignableFrom(var$2, var$4.$value5) ? s_Some__init_(var$1) : s_Some__init_(oncius_TypeRange$_apply(oncius_TypeRange$_MODULE$, var$1.$lower0, var$2.$parentType0)); + } + } + return var$3; }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_5 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_5_apply = var$0 => { - return $rt_s(4); +sc_View$$newBuilder$lambda$_20_0 = $rt_classWithoutFields(), +sc_View$$newBuilder$lambda$_20_0_apply = (var$0, var$1) => { + var$1 = var$1; + return sc_View$_from(sc_View$_MODULE$, var$1); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_6() { +function sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0() { jl_Object.call(this); - this.$_0112 = null; + this.$_0910 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_6_apply = (var$0, var$1) => { +let sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString0(var$0.$_0112, var$1); + var$2 = var$0.$_0910; + return sci_Map$WithDefault__init_(var$1, var$2.$defaultValue); +}, +srj_JFunction0$mcZ$sp = $rt_classWithoutFields(0), +srj_JFunction0$mcZ$sp_apply = $this => { + return jl_Boolean_valueOf($this.$apply$mcZ$sp()); +}, +oncius_TypeRange$contains$lambda$_7_0 = $rt_classWithoutFields(), +oncius_TypeRange$contains$lambda$_7_0_apply$mcZ$sp = var$0 => { + return 1; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_7() { +function oncius_TypeRange$contains$lambda$_7_1() { jl_Object.call(this); - this.$_0635 = null; + this.$_050 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_7_apply = (var$0, var$1) => { +let oncius_TypeRange$contains$lambda$_7_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0635, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_8 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_8_apply = var$0 => { - return $rt_s(4); + var$2 = var$0.$_050.$upper0; + var$3 = new oncius_TypeRange$$anonfun$contains$4$lambda$_36_0; + var$4 = new oncius_TypeRange$$anonfun$contains$4$lambda$_36_1; + var$4.$_0998 = var$1; + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(s_Option_fold(var$2, var$3, var$4))); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_9() { +function oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0() { jl_Object.call(this); - this.$_0827 = null; + this.$_0373 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_9_apply = (var$0, var$1) => { +let oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0827, var$1); + var$2 = var$0.$_0373.$dependencies(); + var$3 = new oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0; + var$3.$_0117 = var$1; + var$2 = var$2.$filterNot0(var$3); + var$3 = new oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1; + var$3.$_0597 = var$2; + return onciu_Foldable$SkipChildren__init_(oncie_Expression$TreeAcc_mapData(var$1, var$3)); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_10() { +function oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1() { jl_Object.call(this); - this.$_0765 = null; + this.$_0931 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_10_apply = (var$0, var$1) => { +let oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0765, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_11 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_11_apply = var$0 => { - return $rt_s(4); -}, -scm_ArrayDeque$$anon$1 = $rt_classWithoutFields(scm_GrowableBuilder), -scm_ArrayDeque$$anon$1_sizeHint = ($this, $size) => { - scm_ArrayDeque_ensureSize($this.$elems2, $size); + var$2 = var$0.$_0931; + if (!oncie_Expression$TreeAcc_inScope(var$1, var$2)) { + var$3 = new oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0; + var$3.$_0948 = var$2; + var$1 = oncie_Expression$TreeAcc_mapData(var$1, var$3); + } + return onciu_Foldable$TraverseChildren__init_(var$1); +}; +function sci_LazyList$LazyBuilder$addOne$lambda$_11_0() { + let a = this; jl_Object.call(a); + a.$_01105 = null; + a.$_1377 = null; +} +let sci_LazyList$LazyBuilder$addOne$lambda$_11_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_01105; + var$2 = var$0.$_1377; + var$3 = new sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0; + var$3.$_071 = var$2; + return sci_LazyList$State$Cons__init_(var$1, sci_LazyList__init_(var$3)); }, -oncius_TypeSpec$covariant$lambda$_26_0 = $rt_classWithoutFields(), -oncius_TypeSpec$covariant$lambda$_26_0_apply = (var$0, var$1) => { - return oncius_TypeRange_covariant(var$1); +sci_LazyList$LazyBuilder$result$lambda$_10_0 = $rt_classWithoutFields(), +sci_LazyList$LazyBuilder$result$lambda$_10_0_apply = var$0 => { + return sci_LazyList$State$Empty$_MODULE$; }; -function sc_LinearSeqIterator$next$lambda$_1_0() { +function sci_LazyList$LazyBuilder$addAll$lambda$_12_0() { + let a = this; jl_Object.call(a); + a.$_0798 = null; + a.$_1266 = null; +} +let sci_LazyList$LazyBuilder$addAll$lambda$_12_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0798; + var$2 = var$0.$_1266; + var$3 = sc_IndexedSeqOps_iterator$(var$1); + var$1 = new sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0; + var$1.$_0868 = var$2; + if (!var$3.$hasNext()) + var$1 = sci_LazyList$LazyBuilder$DeferredState_eval(var$2); + else { + var$2 = sc_IndexedSeqView$IndexedSeqViewIterator_next(var$3); + var$4 = new sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1; + var$4.$_0248 = var$3; + var$4.$_195 = var$1; + var$1 = sci_LazyList$State$Cons__init_(var$2, sci_LazyList__init_(var$4)); + } + return var$1; +}; +function sci_Stream$collect$lambda$_63_0() { jl_Object.call(this); - this.$_01118 = null; + this.$_0110 = null; } -let sc_LinearSeqIterator$next$lambda$_1_0_apply = var$0 => { - return var$0.$_01118.$tail(); +let sci_Stream$collect$lambda$_63_0_apply = (var$0, var$1) => { + var$0.$_0110.$elem = var$1; + return sr_BoxedUnit_UNIT; +}; +function sci_Stream$flatMap$lambda$_65_0() { + let a = this; jl_Object.call(a); + a.$_01067 = null; + a.$_1363 = null; +} +let sci_Stream$flatMap$lambda$_65_0_apply = var$0 => { + return sci_Stream_$anonfun$flatMap$1(var$0.$_01067, var$0.$_1363); +}; +function sci_Stream$flatMap$lambda$_65_1() { + let a = this; jl_Object.call(a); + a.$_0539 = null; + a.$_1178 = null; +} +let sci_Stream$flatMap$lambda$_65_1_apply = var$0 => { + return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_0539, var$0.$_1178); +}; +function sci_Stream$flatMap$lambda$_65_2() { + let a = this; jl_Object.call(a); + a.$_024 = null; + a.$_113 = null; +} +let sci_Stream$flatMap$lambda$_65_2_apply = var$0 => { + return sci_Stream_$anonfun$flatMap$1(var$0.$_024, var$0.$_113); +}; +function sci_Stream$flatMap$lambda$_65_3() { + let a = this; jl_Object.call(a); + a.$_0657 = null; + a.$_1224 = null; +} +let sci_Stream$flatMap$lambda$_65_3_apply = var$0 => { + return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_0657, var$0.$_1224); }, -oncius_TypeSpec$wrapInCovariantList$lambda$_25_0 = $rt_classWithoutFields(), -oncius_TypeSpec$wrapInCovariantList$lambda$_25_0_apply = (var$0, var$1) => { - return oncius_TypeRange_reparent(oncius_TypeRange_covariant(var$1), new oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0); +oncius_TypeSpec$toStrings$lambda$_41_0 = $rt_classWithoutFields(), +oncius_TypeSpec$toStrings$lambda$_41_0_apply = (var$0, var$1) => { + let var$2, var$3; + a: { + var$1 = var$1; + if (var$1 !== null) { + var$2 = var$1.$upper0; + if (var$1.$lower0 instanceof oncius_AnyType && jl_Object_equals(s_None$_MODULE$, var$2)) { + var$3 = 1; + break a; + } + } + var$3 = 0; + } + return jl_Boolean_valueOf(var$3); }; -function sci_Stream$collectFirst$lambda$_64_0() { +function oncius_TypeSpec$toStrings$lambda$_41_1() { + let a = this; jl_Object.call(a); + a.$_0503 = null; + a.$_1173 = null; +} +let oncius_TypeSpec$toStrings$lambda$_41_1_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(oncius_TypeSpec_contains(var$0.$_0503, var$1, var$0.$_1173)); +}; +function oncius_TypeSpec$toStrings$lambda$_41_2() { jl_Object.call(this); - this.$_0372 = null; + this.$_0690 = null; } -let sci_Stream$collectFirst$lambda$_64_0_apply = (var$0, var$1) => { - var$0.$_0372.$elem = var$1; - return sr_BoxedUnit_UNIT; +let oncius_TypeSpec$toStrings$lambda$_41_2_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_0690.$apply2(var$1.$toString()); +}; +function oncius_TypeSpec$toStrings$lambda$_41_3() { + jl_Object.call(this); + this.$_020 = null; +} +let oncius_TypeSpec$toStrings$lambda$_41_3_apply = (var$0, var$1) => { + let var$2; + var$1 = var$0.$_020.$apply2(var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(763)), var$1), 62); + return jl_AbstractStringBuilder_toString(var$2); +}; +function sc_StringView() { + sc_AbstractIndexedSeqView.call(this); + this.$s1 = null; +} +let sc_StringView_length = $this => { + return $this.$s1.$nativeString.length; }, -oavra_OrderedATNConfigSet = $rt_classWithoutFields(oavra_ATNConfigSet), -oavra_OrderedATNConfigSet__init_0 = $this => { - let var$1; - oavra_ATNConfigSet__init_1($this); - var$1 = new oavra_OrderedATNConfigSet$LexerConfigHashSet; - oavra_ATNConfigSet$AbstractConfigHashSet__init_(var$1, oavrm_ObjectEqualityComparator_INSTANCE); - $this.$configLookup = var$1; +sc_StringView_apply = ($this, $i) => { + return jl_Character_valueOf(jl_String_charAt($this.$s1, $i)); }, -oavra_OrderedATNConfigSet__init_ = () => { - let var_0 = new oavra_OrderedATNConfigSet(); - oavra_OrderedATNConfigSet__init_0(var_0); - return var_0; +s_Function$$$anonfun$chain$1$lambda$_17_0 = $rt_classWithoutFields(), +s_Function$$$anonfun$chain$1$lambda$_17_0_apply = (var$0, var$1, var$2) => { + return var$2.$apply2(var$1); }; -function oavra_LexerATNConfig() { - let a = this; oavra_ATNConfig.call(a); - a.$lexerActionExecutor = null; - a.$passedThroughNonGreedyDecision = 0; +function sci_Stream$prepended$lambda$_61_0() { + jl_Object.call(this); + this.$_0983 = null; } -let oavra_LexerATNConfig__init_3 = ($this, $c, $state) => { - oavra_ATNConfig__init_0($this, $c, $state, $c.$context, $c.$semanticContext); - $this.$lexerActionExecutor = $c.$lexerActionExecutor; - $this.$passedThroughNonGreedyDecision = oavra_LexerATNConfig_checkNonGreedyDecision($c, $state); +let sci_Stream$prepended$lambda$_61_0_apply = var$0 => { + return var$0.$_0983; }, -oavra_LexerATNConfig__init_ = (var_0, var_1) => { - let var_2 = new oavra_LexerATNConfig(); - oavra_LexerATNConfig__init_3(var_2, var_0, var_1); - return var_2; +sc_IterableOnceExtensionMethods$ = $rt_classWithoutFields(), +sc_IterableOnceExtensionMethods$_MODULE$ = null, +sc_IterableOnceExtensionMethods$_$callClinit = () => { + sc_IterableOnceExtensionMethods$_$callClinit = $rt_eraseClinit(sc_IterableOnceExtensionMethods$); + sc_IterableOnceExtensionMethods$__clinit_(); }, -oavra_LexerATNConfig__init_4 = ($this, $c, $state, $lexerActionExecutor) => { - oavra_ATNConfig__init_0($this, $c, $state, $c.$context, $c.$semanticContext); - $this.$lexerActionExecutor = $lexerActionExecutor; - $this.$passedThroughNonGreedyDecision = oavra_LexerATNConfig_checkNonGreedyDecision($c, $state); +sc_IterableOnceExtensionMethods$__clinit_ = () => { + let var$1; + var$1 = new sc_IterableOnceExtensionMethods$; + sc_IterableOnceExtensionMethods$_$callClinit(); + sc_IterableOnceExtensionMethods$_MODULE$ = var$1; +}; +function sci_Stream$zip$lambda$_66_0() { + let a = this; jl_Object.call(a); + a.$_01057 = null; + a.$_1359 = null; +} +let sci_Stream$zip$lambda$_66_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_01057; + var$2 = var$0.$_1359; + return sci_Stream_zip(var$1.$tail(), var$2.$tail()); +}; +function sci_LazyList$take$lambda$_89_0() { + let a = this; jl_Object.call(a); + a.$_0192 = null; + a.$_170 = 0; +} +let sci_LazyList$take$lambda$_89_0_apply = var$0 => { + return sci_LazyList_$anonfun$takeImpl$1(var$0.$_0192, var$0.$_170); }, -oavra_LexerATNConfig__init_0 = (var_0, var_1, var_2) => { - let var_3 = new oavra_LexerATNConfig(); - oavra_LexerATNConfig__init_4(var_3, var_0, var_1, var_2); - return var_3; +onu_CypherVersion = $rt_classWithoutFields(jl_Enum), +onu_CypherVersion_Cypher5 = null, +onu_CypherVersion_Cypher25 = null, +onu_CypherVersion_$VALUES = null, +onu_CypherVersion_values = () => { + return onu_CypherVersion_$VALUES.$clone0(); }, -oavra_LexerATNConfig__init_1 = ($this, $c, $state, $context) => { - oavra_ATNConfig__init_0($this, $c, $state, $context, $c.$semanticContext); - $this.$lexerActionExecutor = $c.$lexerActionExecutor; - $this.$passedThroughNonGreedyDecision = oavra_LexerATNConfig_checkNonGreedyDecision($c, $state); +onu_CypherVersion__clinit_ = () => { + let var$1, var$2, var$3; + var$1 = new onu_CypherVersion; + jl_Enum__init_(var$1, $rt_s(68), 0); + onu_CypherVersion_Cypher5 = var$1; + var$1 = new onu_CypherVersion; + jl_Enum__init_(var$1, $rt_s(71), 1); + onu_CypherVersion_Cypher25 = var$1; + var$2 = $rt_createArray(onu_CypherVersion, 2); + var$3 = var$2.data; + var$3[0] = onu_CypherVersion_Cypher5; + var$3[1] = var$1; + onu_CypherVersion_$VALUES = var$2; +}, +onu_UnicodeHelper = $rt_classWithoutFields(), +onu_UnicodeHelper_deprecatedIdentifierStartUnicodes = null, +onu_UnicodeHelper_identifierStartUnicodesCypher25 = null, +onu_UnicodeHelper_deprecatedIdentifierPartUnicodes = null, +onu_UnicodeHelper_identifierPartUnicodesCypher25 = null, +onu_UnicodeHelper_isAllowedUnicode = ($p, $unicodes) => { + let var$3; + $unicodes = ju_Collection_stream($unicodes); + var$3 = new onu_UnicodeHelper$isAllowedUnicode$lambda$_5_0; + var$3.$_01000 = $p; + $p = new jusi_AnyMatchConsumer; + $p.$predicate5 = var$3; + while (!$p.$matched0 && jusi_StreamOverSpliterator_next($unicodes, $p)) { + } + return $p.$matched0; +}, +onu_UnicodeHelper__clinit_ = () => { + onu_UnicodeHelper_deprecatedIdentifierStartUnicodes = ju_List_of($rt_s(6835)); + onu_UnicodeHelper_identifierStartUnicodesCypher25 = ju_List_of1($rt_wrapArray(jl_String, [$rt_s(6836), $rt_s(5437), $rt_s(6837), $rt_s(6838), $rt_s(6839), $rt_s(6840), $rt_s(6841), $rt_s(6842), $rt_s(6843), $rt_s(6844), $rt_s(6845), $rt_s(6846), $rt_s(6847), $rt_s(6848), $rt_s(6849), $rt_s(6850), $rt_s(6851), $rt_s(6852), $rt_s(6853), $rt_s(6854), $rt_s(6855), $rt_s(6856), $rt_s(6857), $rt_s(6858), $rt_s(6859), $rt_s(6860), $rt_s(6861), $rt_s(6862), $rt_s(6863), $rt_s(6864), $rt_s(6865), $rt_s(6866), $rt_s(6867), + $rt_s(6868), $rt_s(6869), $rt_s(6870), $rt_s(6871), $rt_s(6872), $rt_s(6873), $rt_s(6874), $rt_s(6875), $rt_s(6876), $rt_s(6877), $rt_s(6878), $rt_s(6879), $rt_s(6880), $rt_s(6881), $rt_s(6882), $rt_s(6883), $rt_s(6884), $rt_s(6885), $rt_s(6886), $rt_s(6887), $rt_s(6888), $rt_s(6889), $rt_s(6890), $rt_s(6891), $rt_s(6892), $rt_s(6893), $rt_s(6894), $rt_s(6895), $rt_s(6896), $rt_s(6897), $rt_s(6898), $rt_s(6899), $rt_s(6900), $rt_s(6901), $rt_s(6902), $rt_s(6903), $rt_s(6904), $rt_s(6905), $rt_s(6906), $rt_s(6907), + $rt_s(6908), $rt_s(6909), $rt_s(6910), $rt_s(6911), $rt_s(6912), $rt_s(6913), $rt_s(6914), $rt_s(6915), $rt_s(6916), $rt_s(6917), $rt_s(6918), $rt_s(6919), $rt_s(6920), $rt_s(6921), $rt_s(6922), $rt_s(6923), $rt_s(6924), $rt_s(6925), $rt_s(6926), $rt_s(6927), $rt_s(6928), $rt_s(6929), $rt_s(6930), $rt_s(6931), $rt_s(6932), $rt_s(6933), $rt_s(6934), $rt_s(6935), $rt_s(6936), $rt_s(6937), $rt_s(6938), $rt_s(6939), $rt_s(6940), $rt_s(6941), $rt_s(6942), $rt_s(6943), $rt_s(6944), $rt_s(6945), $rt_s(6946), $rt_s(6947), + $rt_s(6948), $rt_s(6949), $rt_s(6950), $rt_s(6951), $rt_s(6952), $rt_s(6953), $rt_s(6954), $rt_s(6955), $rt_s(6956), $rt_s(6957), $rt_s(6958), $rt_s(6959), $rt_s(6960), $rt_s(6961), $rt_s(6962), $rt_s(6963), $rt_s(6964), $rt_s(6965), $rt_s(6966), $rt_s(6967), $rt_s(6968), $rt_s(6969), $rt_s(6970), $rt_s(6971), $rt_s(6972), $rt_s(6973), $rt_s(6974), $rt_s(6975), $rt_s(6976), $rt_s(6977), $rt_s(6978), $rt_s(6979), $rt_s(6980), $rt_s(6981), $rt_s(6982), $rt_s(6983), $rt_s(6984), $rt_s(6985), $rt_s(6986), $rt_s(6987), + $rt_s(6988), $rt_s(6989), $rt_s(6990), $rt_s(6991), $rt_s(6992), $rt_s(6993), $rt_s(6994), $rt_s(6995), $rt_s(6996), $rt_s(6997), $rt_s(6998), $rt_s(6999), $rt_s(7000), $rt_s(7001), $rt_s(7002), $rt_s(7003), $rt_s(7004), $rt_s(7005), $rt_s(7006), $rt_s(7007), $rt_s(7008), $rt_s(7009), $rt_s(7010), $rt_s(7011), $rt_s(7012), $rt_s(7013), $rt_s(7014), $rt_s(7015), $rt_s(7016), $rt_s(7017), $rt_s(7018), $rt_s(7019), $rt_s(7020), $rt_s(7021), $rt_s(7022), $rt_s(7023), $rt_s(7024), $rt_s(7025), $rt_s(7026), $rt_s(7027), + $rt_s(7028), $rt_s(7029), $rt_s(7030), $rt_s(7031), $rt_s(7032), $rt_s(7033), $rt_s(7034), $rt_s(7035), $rt_s(7036), $rt_s(7037), $rt_s(7038), $rt_s(7039), $rt_s(7040), $rt_s(7041), $rt_s(7042), $rt_s(7043), $rt_s(7044), $rt_s(7045), $rt_s(7046), $rt_s(7047), $rt_s(7048), $rt_s(7049), $rt_s(7050), $rt_s(7051), $rt_s(7052), $rt_s(7053), $rt_s(7054), $rt_s(7055), $rt_s(7056), $rt_s(7057), $rt_s(7058), $rt_s(7059), $rt_s(7060), $rt_s(7061), $rt_s(7062), $rt_s(7063), $rt_s(7064), $rt_s(7065), $rt_s(7066), $rt_s(7067), + $rt_s(7068), $rt_s(7069), $rt_s(7070), $rt_s(7071), $rt_s(7072), $rt_s(7073), $rt_s(7074), $rt_s(7075), $rt_s(7076), $rt_s(7077), $rt_s(7078), $rt_s(7079), $rt_s(7080), $rt_s(7081), $rt_s(7082), $rt_s(7083), $rt_s(7084), $rt_s(7085), $rt_s(7086), $rt_s(7087), $rt_s(7088), $rt_s(7089), $rt_s(7090), $rt_s(7091), $rt_s(7092), $rt_s(7093), $rt_s(7094), $rt_s(7095), $rt_s(7096), $rt_s(7097), $rt_s(7098), $rt_s(7099), $rt_s(7100), $rt_s(7101), $rt_s(7102), $rt_s(7103), $rt_s(7104), $rt_s(7105), $rt_s(7106), $rt_s(7107), + $rt_s(7108), $rt_s(7109), $rt_s(7110), $rt_s(7111), $rt_s(7112), $rt_s(7113), $rt_s(7114), $rt_s(7115), $rt_s(7116), $rt_s(7117), $rt_s(7118), $rt_s(7119), $rt_s(7120), $rt_s(7121), $rt_s(7122), $rt_s(7123), $rt_s(7124), $rt_s(7125), $rt_s(7126), $rt_s(7127), $rt_s(7128), $rt_s(7129), $rt_s(7130), $rt_s(7131), $rt_s(7132), $rt_s(7133), $rt_s(7134), $rt_s(7135), $rt_s(7136), $rt_s(7137), $rt_s(7138), $rt_s(7139), $rt_s(7140), $rt_s(7141), $rt_s(7142), $rt_s(7143), $rt_s(7144), $rt_s(7145), $rt_s(7146), $rt_s(7147), + $rt_s(7148), $rt_s(7149), $rt_s(7150), $rt_s(7151), $rt_s(7152), $rt_s(7153), $rt_s(7154), $rt_s(7155), $rt_s(7156), $rt_s(7157), $rt_s(7158), $rt_s(7159), $rt_s(7160), $rt_s(7161), $rt_s(7162), $rt_s(7163), $rt_s(7164), $rt_s(7165), $rt_s(7166), $rt_s(7167), $rt_s(7168), $rt_s(7169), $rt_s(7170), $rt_s(7171), $rt_s(7172), $rt_s(7173), $rt_s(7174), $rt_s(7175), $rt_s(7176), $rt_s(7177), $rt_s(7178), $rt_s(7179), $rt_s(7180), $rt_s(7181), $rt_s(7182), $rt_s(7183), $rt_s(7184), $rt_s(7185), $rt_s(7186), $rt_s(7187), + $rt_s(7188), $rt_s(7189), $rt_s(7190), $rt_s(7191), $rt_s(7192), $rt_s(7193), $rt_s(7194), $rt_s(7195), $rt_s(7196), $rt_s(7197), $rt_s(7198), $rt_s(7199), $rt_s(7200), $rt_s(7201), $rt_s(7202), $rt_s(7203), $rt_s(7204), $rt_s(7205), $rt_s(7206), $rt_s(7207), $rt_s(7208), $rt_s(7209), $rt_s(7210), $rt_s(7211), $rt_s(7212), $rt_s(7213), $rt_s(7214), $rt_s(7215), $rt_s(7216), $rt_s(7217), $rt_s(7218), $rt_s(7219), $rt_s(7220)])); + onu_UnicodeHelper_deprecatedIdentifierPartUnicodes = ju_List_of1($rt_wrapArray(jl_String, [$rt_s(7221), $rt_s(7222), $rt_s(7223), $rt_s(5213), $rt_s(7224), $rt_s(7225), $rt_s(7226), $rt_s(7227), $rt_s(7228), $rt_s(7229), $rt_s(7230), $rt_s(7231), $rt_s(7232), $rt_s(7233), $rt_s(7234), $rt_s(7235), $rt_s(7236), $rt_s(7237), $rt_s(7238), $rt_s(6835), $rt_s(7239), $rt_s(7240)])); + onu_UnicodeHelper_identifierPartUnicodesCypher25 = ju_List_of1($rt_wrapArray(jl_String, [$rt_s(7241), $rt_s(6836), $rt_s(5437), $rt_s(6837), $rt_s(6838), $rt_s(6839), $rt_s(6840), $rt_s(6841), $rt_s(6842), $rt_s(6843), $rt_s(6844), $rt_s(6845), $rt_s(6846), $rt_s(6847), $rt_s(7242), $rt_s(6849), $rt_s(6850), $rt_s(6851), $rt_s(6852), $rt_s(6853), $rt_s(6854), $rt_s(6855), $rt_s(6856), $rt_s(6857), $rt_s(7243), $rt_s(6858), $rt_s(6859), $rt_s(6860), $rt_s(6861), $rt_s(7244), $rt_s(7245), $rt_s(7246), $rt_s(7247), + $rt_s(7248), $rt_s(7249), $rt_s(6862), $rt_s(6863), $rt_s(7250), $rt_s(7251), $rt_s(7252), $rt_s(7253), $rt_s(7254), $rt_s(7255), $rt_s(7256), $rt_s(6871), $rt_s(7257), $rt_s(7258), $rt_s(7259), $rt_s(6878), $rt_s(7260), $rt_s(7261), $rt_s(6884), $rt_s(6885), $rt_s(6886), $rt_s(7262), $rt_s(7263), $rt_s(7264), $rt_s(7265), $rt_s(6892), $rt_s(6893), $rt_s(6894), $rt_s(6895), $rt_s(6896), $rt_s(6897), $rt_s(7266), $rt_s(7267), $rt_s(7268), $rt_s(7269), $rt_s(6900), $rt_s(7270), $rt_s(7271), $rt_s(7272), $rt_s(7273), + $rt_s(7274), $rt_s(6904), $rt_s(6905), $rt_s(6906), $rt_s(6907), $rt_s(6908), $rt_s(6909), $rt_s(6910), $rt_s(7275), $rt_s(7276), $rt_s(7277), $rt_s(7278), $rt_s(7279), $rt_s(6911), $rt_s(6912), $rt_s(7280), $rt_s(7281), $rt_s(6914), $rt_s(6915), $rt_s(6916), $rt_s(6917), $rt_s(6918), $rt_s(6919), $rt_s(7282), $rt_s(7283), $rt_s(7284), $rt_s(6921), $rt_s(7285), $rt_s(7286), $rt_s(7287), $rt_s(7288), $rt_s(7289), $rt_s(6924), $rt_s(6925), $rt_s(6926), $rt_s(6927), $rt_s(6928), $rt_s(6929), $rt_s(7290), $rt_s(7291), + $rt_s(7292), $rt_s(7293), $rt_s(6931), $rt_s(7294), $rt_s(7295), $rt_s(6933), $rt_s(7296), $rt_s(6935), $rt_s(6936), $rt_s(6937), $rt_s(6938), $rt_s(6939), $rt_s(6940), $rt_s(6941), $rt_s(6942), $rt_s(6943), $rt_s(7297), $rt_s(7298), $rt_s(7299), $rt_s(6944), $rt_s(7300), $rt_s(7301), $rt_s(7302), $rt_s(7303), $rt_s(6946), $rt_s(6947), $rt_s(6948), $rt_s(7304), $rt_s(7305), $rt_s(7306), $rt_s(7307), $rt_s(6950), $rt_s(7308), $rt_s(7309), $rt_s(7310), $rt_s(6953), $rt_s(6954), $rt_s(6955), $rt_s(6956), $rt_s(6957), + $rt_s(7311), $rt_s(7312), $rt_s(7313), $rt_s(7314), $rt_s(6959), $rt_s(7315), $rt_s(7316), $rt_s(6961), $rt_s(7317), $rt_s(6963), $rt_s(7318), $rt_s(7319), $rt_s(7320), $rt_s(7321), $rt_s(7322), $rt_s(7323), $rt_s(6969), $rt_s(7324), $rt_s(6970), $rt_s(6971), $rt_s(6972), $rt_s(6973), $rt_s(6974), $rt_s(7325), $rt_s(7326), $rt_s(7327), $rt_s(7328), $rt_s(7329), $rt_s(7330), $rt_s(7331), $rt_s(7332), $rt_s(7333), $rt_s(6978), $rt_s(6979), $rt_s(6980), $rt_s(6981), $rt_s(6982), $rt_s(7334), $rt_s(6986), $rt_s(6987), + $rt_s(7335), $rt_s(7336), $rt_s(6988), $rt_s(6989), $rt_s(7337), $rt_s(7338), $rt_s(7339), $rt_s(7340), $rt_s(7341), $rt_s(7342), $rt_s(6991), $rt_s(7343), $rt_s(7344), $rt_s(7345), $rt_s(7346), $rt_s(7347), $rt_s(7348), $rt_s(7002), $rt_s(7003), $rt_s(7004), $rt_s(7005), $rt_s(7006), $rt_s(7007), $rt_s(7008), $rt_s(7009), $rt_s(7010), $rt_s(7011), $rt_s(7012), $rt_s(7013), $rt_s(7014), $rt_s(7015), $rt_s(7016), $rt_s(7017), $rt_s(7018), $rt_s(7019), $rt_s(7020), $rt_s(7021), $rt_s(7349), $rt_s(7022), $rt_s(7023), + $rt_s(7024), $rt_s(7025), $rt_s(7026), $rt_s(7027), $rt_s(7028), $rt_s(7029), $rt_s(7030), $rt_s(7350), $rt_s(7351), $rt_s(7352), $rt_s(7034), $rt_s(7035), $rt_s(7353), $rt_s(7354), $rt_s(7037), $rt_s(7355), $rt_s(7356), $rt_s(7357), $rt_s(7358), $rt_s(7039), $rt_s(7359), $rt_s(7043), $rt_s(7044), $rt_s(7360), $rt_s(7361), $rt_s(7362), $rt_s(7046), $rt_s(7047), $rt_s(7048), $rt_s(7363), $rt_s(7364), $rt_s(7365), $rt_s(7366), $rt_s(7367), $rt_s(7368), $rt_s(7051), $rt_s(7369), $rt_s(7370), $rt_s(7371), $rt_s(7372), + $rt_s(7373), $rt_s(7374), $rt_s(7375), $rt_s(7376), $rt_s(7377), $rt_s(7060), $rt_s(7061), $rt_s(7062), $rt_s(7378), $rt_s(7379), $rt_s(7380), $rt_s(7381), $rt_s(7069), $rt_s(7070), $rt_s(7071), $rt_s(7072), $rt_s(7073), $rt_s(7074), $rt_s(7075), $rt_s(7076), $rt_s(7077), $rt_s(7078), $rt_s(7079), $rt_s(7080), $rt_s(7081), $rt_s(7082), $rt_s(7083), $rt_s(7084), $rt_s(7085), $rt_s(7086), $rt_s(7087), $rt_s(7088), $rt_s(7089), $rt_s(7090), $rt_s(7091), $rt_s(7382), $rt_s(7383), $rt_s(7384), $rt_s(7385), $rt_s(7092), + $rt_s(7093), $rt_s(7094), $rt_s(7095), $rt_s(7096), $rt_s(7097), $rt_s(7098), $rt_s(7099), $rt_s(7100), $rt_s(7101), $rt_s(7102), $rt_s(7103), $rt_s(7104), $rt_s(7105), $rt_s(7106), $rt_s(7107), $rt_s(7108), $rt_s(7386), $rt_s(7111), $rt_s(7112), $rt_s(7113), $rt_s(7114), $rt_s(7115), $rt_s(7387), $rt_s(7117), $rt_s(7118), $rt_s(7119), $rt_s(7120), $rt_s(7121), $rt_s(7122), $rt_s(7123), $rt_s(7124), $rt_s(7388), $rt_s(7125), $rt_s(7389), $rt_s(7127), $rt_s(7128), $rt_s(7129), $rt_s(7390), $rt_s(7130), $rt_s(7131), + $rt_s(7132), $rt_s(7133), $rt_s(7134), $rt_s(7135), $rt_s(7136), $rt_s(7137), $rt_s(7138), $rt_s(7139), $rt_s(7140), $rt_s(7141), $rt_s(7391), $rt_s(7392), $rt_s(7393), $rt_s(7394), $rt_s(7147), $rt_s(7148), $rt_s(7149), $rt_s(7150), $rt_s(7395), $rt_s(7396), $rt_s(7397), $rt_s(7155), $rt_s(7398), $rt_s(7399), $rt_s(7400), $rt_s(7158), $rt_s(7401), $rt_s(7402), $rt_s(7162), $rt_s(7403), $rt_s(7404), $rt_s(7405), $rt_s(7406), $rt_s(7407), $rt_s(7408), $rt_s(7171), $rt_s(7409), $rt_s(7179), $rt_s(7410), $rt_s(7411), + $rt_s(7182), $rt_s(7183), $rt_s(7184), $rt_s(7185), $rt_s(7186), $rt_s(7187), $rt_s(7188), $rt_s(7412), $rt_s(7413), $rt_s(7414), $rt_s(7190), $rt_s(7191), $rt_s(7192), $rt_s(7193), $rt_s(7194), $rt_s(7195), $rt_s(7196), $rt_s(7415), $rt_s(7199), $rt_s(7200), $rt_s(7201), $rt_s(7202), $rt_s(7203), $rt_s(7204), $rt_s(7205), $rt_s(7206), $rt_s(7207), $rt_s(7416), $rt_s(7417), $rt_s(7418), $rt_s(7209), $rt_s(7210), $rt_s(7419), $rt_s(7211), $rt_s(7212), $rt_s(7420), $rt_s(7421), $rt_s(7213), $rt_s(7214), $rt_s(7215), + $rt_s(7216), $rt_s(7217), $rt_s(7218), $rt_s(7219), $rt_s(7220), $rt_s(7422), $rt_s(7423)])); }, -oavra_LexerATNConfig__init_2 = (var_0, var_1, var_2) => { - let var_3 = new oavra_LexerATNConfig(); - oavra_LexerATNConfig__init_1(var_3, var_0, var_1, var_2); - return var_3; +oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0 = $rt_classWithoutFields(), +oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1 instanceof oncil_LabelExpression$Leaf); +}; +function sc_View$DropRight() { + let a = this; sc_AbstractView.call(a); + a.$underlying31 = null; + a.$n3 = 0; + a.$normN0 = 0; +} +let sc_View$DropRight_iterator = $this => { + let var$1, var$2, var$3, var$4; + var$1 = $this.$underlying31.$iterator0(); + var$2 = $this.$n3; + if (var$2 > 0) { + var$3 = var$1.$knownSize(); + if (var$3 >= 0) + var$1 = var$1.$take0(var$3 - var$2 | 0); + else { + var$4 = new sc_View$DropRightIterator; + var$4.$underlying10 = var$1; + var$4.$maxlen = var$2; + var$4.$len2 = (-1); + var$4.$pos2 = 0; + var$1 = var$4; + } + } + return var$1; }, -oavra_LexerATNConfig_hashCode = $this => { - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(oavrm_MurmurHash_update0(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(oavrm_MurmurHash_update(7, $this.$state0.$stateNumber), $this.$alt0), $this.$context), $this.$semanticContext), !$this.$passedThroughNonGreedyDecision ? 0 : 1), $this.$lexerActionExecutor), 6); +sc_View$DropRight_knownSize = $this => { + let $size; + $size = $this.$underlying31.$knownSize(); + if ($size < 0) + return (-1); + return jl_Math_max($size - $this.$normN0 | 0, 0); }, -oavra_LexerATNConfig_equals = ($this, $other) => { - let $lexerOther; - if ($this === $other) - return 1; - if (!($other instanceof oavra_LexerATNConfig)) - return 0; - $lexerOther = $other; - if ($this.$passedThroughNonGreedyDecision != $lexerOther.$passedThroughNonGreedyDecision) +sc_View$DropRight_isEmpty = $this => { + if (sc_View$DropRight_knownSize($this) < 0) + return (sc_View$DropRight_iterator($this)).$isEmpty(); + if (sc_View$DropRight_knownSize($this)) return 0; - if (oavrm_ObjectEqualityComparator_equals(oavrm_ObjectEqualityComparator_INSTANCE, $this.$lexerActionExecutor, $lexerOther.$lexerActionExecutor)) - return oavra_ATNConfig_equals($this, $other); - return 0; + return 1; +}; +function sci_Stream$$collectedTail$lambda$_30_0() { + let a = this; jl_Object.call(a); + a.$_0147 = null; + a.$_149 = null; +} +let sci_Stream$$collectedTail$lambda$_30_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0147; + var$2 = var$0.$_149; + return sci_Stream_collect(var$1.$tail(), var$2); +}; +function sci_Stream$$anonfun$flatMap$1$lambda$_98_0() { + let a = this; jl_Object.call(a); + a.$_0653 = null; + a.$_1222 = null; +} +let sci_Stream$$anonfun$flatMap$1$lambda$_98_0_apply = var$0 => { + return sci_Stream_$anonfun$flatMap$1(var$0.$_0653, var$0.$_1222); +}; +function sci_Stream$$anonfun$flatMap$1$lambda$_98_1() { + let a = this; jl_Object.call(a); + a.$_01110 = null; + a.$_1379 = null; +} +let sci_Stream$$anonfun$flatMap$1$lambda$_98_1_apply = var$0 => { + return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_01110, var$0.$_1379); }, -oavra_LexerATNConfig_checkNonGreedyDecision = ($source, $target) => { - let var$3; +oncius_TypeSpec$innerTypeRanges$lambda$_49_0 = $rt_classWithoutFields(), +oncius_TypeSpec$innerTypeRanges$lambda$_49_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; a: { - b: { - if (!$source.$passedThroughNonGreedyDecision) { - if (!($target instanceof oavra_DecisionState)) - break b; - if (!$target.$nonGreedy) - break b; + var$1 = var$1; + if (var$1 !== null) { + var$2 = var$1.$lower0; + var$3 = var$1.$upper0; + if (var$2 instanceof oncius_ListType) { + var$2 = var$2; + if (var$3 instanceof s_Some) { + var$3 = var$3.$value5; + if (var$3 instanceof oncius_ListType) { + var$4 = var$3; + var$3 = s_Some__init_(oncius_TypeRange$_apply(oncius_TypeRange$_MODULE$, var$2.$innerType, var$4.$innerType)); + break a; + } + } } - var$3 = 1; - break a; } - var$3 = 0; + if (var$1 !== null) { + var$3 = var$1.$lower0; + var$4 = var$1.$upper0; + if (var$3 instanceof oncius_ListType) { + var$2 = var$3; + if (jl_Object_equals(s_None$_MODULE$, var$4)) { + var$3 = s_Some__init_(oncius_TypeRange__init_(var$2.$innerType, s_None$_MODULE$)); + break a; + } + } + } + if (var$1 !== null) { + var$2 = var$1.$upper0; + if (var$1.$lower0 instanceof oncius_AnyType && var$2 instanceof s_Some) { + var$3 = var$2.$value5; + if (var$3 instanceof oncius_ListType) { + var$1 = var$3; + var$3 = new s_Some; + var$2 = oncius_TypeRange$_MODULE$; + oncius_package$_$callClinit(); + s_Some__init_0(var$3, oncius_TypeRange$_apply(var$2, oncius_package$_CTAny(oncius_package$_MODULE$), var$1.$innerType)); + break a; + } + } + } + if (var$1 !== null) { + var$2 = var$1.$upper0; + if (var$1.$lower0 instanceof oncius_AnyType && jl_Object_equals(s_None$_MODULE$, var$2)) { + var$3 = s_Some__init_(var$1); + break a; + } + } + var$3 = s_None$_MODULE$; } return var$3; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_0() { +function oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_94_0() { + let a = this; jl_Object.call(a); + a.$_0157 = null; + a.$_154 = null; +} +let oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_94_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$0.$_0157; + var$2 = var$0.$_154; + var$3 = var$1.$innerQuery1.$semanticCheckImportingWithSubQueryContext(var$2.$state); + var$4 = new oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_93_0; + var$4.$_0683 = var$1; + var$4.$_1232 = var$2; + return oncias_SemanticCheck_flatMap$(var$3, var$4); +}, +onciap_Prettifier$$anonfun$asString$13$lambda$_86_0 = $rt_classWithoutFields(), +onciap_Prettifier$$anonfun$asString$13$lambda$_86_0_apply$mcZ$sp = var$0 => { + return 1; +}, +onciap_Prettifier$$anonfun$asString$21$lambda$_95_0 = $rt_classWithoutFields(), +onciap_Prettifier$$anonfun$asString$21$lambda$_95_0_apply = (var$0, var$1) => { + let var$2; + var$1 = sr_BoxesRunTime_unboxToBoolean(var$1) ? $rt_s(4) : $rt_s(446); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7424)), var$1), $rt_s(4450)); + return jl_AbstractStringBuilder_toString(var$2); +}, +onciap_Prettifier$$anonfun$asString$21$lambda$_95_1 = $rt_classWithoutFields(), +onciap_Prettifier$$anonfun$asString$21$lambda$_95_1_apply = var$0 => { + return $rt_s(4); +}, +oncia_SetExactPropertiesFromMapItem$$anonfun$semanticCheck$10$lambda$_83_0 = $rt_classWithoutFields(), +oncia_SetExactPropertiesFromMapItem$$anonfun$semanticCheck$10$lambda$_83_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_MapType_invariant(oncius_package$_CTMap(oncius_package$_MODULE$)); +}, +oncia_SetIncludingPropertiesFromMapItem$$anonfun$semanticCheck$14$lambda$_83_0 = $rt_classWithoutFields(), +oncia_SetIncludingPropertiesFromMapItem$$anonfun$semanticCheck$14$lambda$_83_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_MapType_invariant(oncius_package$_CTMap(oncius_package$_MODULE$)); +}, +oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_73_0 = $rt_classWithoutFields(), +oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_73_0_apply = var$0 => { + oncius_package$_$callClinit(); + return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); +}, +oncia_UnresolvedCall$$anonfun$wrappedOptional$1$lambda$_49_0 = $rt_classWithoutFields(), +oncia_UnresolvedCall$$anonfun$wrappedOptional$1$lambda$_49_0_apply = (var$0, var$1) => { + return var$1.$variable8; +}; +function oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0() { jl_Object.call(this); - this.$_0376 = null; + this.$_01044 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_0_apply = (var$0, var$1) => { +let oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0376, var$1); + var$2 = var$0.$_01044; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = oncias_SemanticState$ScopeLocation$_MODULE$; + oncias_SemanticState$_$callClinit(); + return oncias_SemanticState$ScopeLocation$_symbol$extension(var$3, var$1, var$2); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_1() { - jl_Object.call(this); - this.$_0884 = null; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0() { + let a = this; jl_Object.call(a); + a.$_0394 = null; + a.$_1142 = null; + a.$_250 = null; +} +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$0.$_0394; + var$2 = var$0.$_1142; + var$3 = var$0.$_250; + var$2 = oncia_ProjectionClause_runChecks$1(var$1, var$2); + var$4 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0; + var$4.$_0981 = var$1; + var$4.$_1336 = var$3; + return oncias_SemanticCheck_flatMap$(var$2, var$4); +}; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1() { + let a = this; jl_Object.call(a); + a.$_0976 = null; + a.$_1334 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_1_apply = (var$0, var$1) => { +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0884, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_2_apply = var$0 => { - return $rt_s(4); + var$2 = var$0.$_0976; + var$3 = oncias_Scope_symbolNames(var$0.$_1334); + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = (oncias_Scope_symbolNames(var$1.$state.$currentScope.$elem0)).$intersect(var$3); + var$4 = sc_AbstractIterable_toMap((oncia_ReturnItems_returnVariables(var$2.$returnItems())).$explicitVariables.$map(new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0), s_$less$colon$less$_singleton); + var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1; + var$5.$_0603 = var$2; + var$5.$_1202 = var$4; + var$2 = var$3.$map(var$5); + return oncias_SemanticCheckResult__init_(var$1.$state, var$1.$errors0.$concat(var$2)); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_3() { - jl_Object.call(this); - this.$_01077 = null; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2() { + let a = this; jl_Object.call(a); + a.$_0328 = null; + a.$_1117 = null; + a.$_242 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_3_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString8(var$0.$_01077, var$1); +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$0.$_0328; + var$2 = var$0.$_1117; + var$3 = var$0.$_242; + var$2 = oncia_ProjectionClause_runChecks$1(var$1, var$2); + var$4 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0; + var$4.$_072 = var$1; + var$4.$_126 = var$3; + return oncias_SemanticCheck_map$(var$2, var$4); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_4() { - jl_Object.call(this); - this.$_0155 = null; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3() { + let a = this; jl_Object.call(a); + a.$_01102 = null; + a.$_1375 = null; + a.$_2124 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_4_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0155, var$1); +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$0.$_01102; + var$2 = var$0.$_1375; + var$3 = var$0.$_2124; + var$4 = oncia_ProjectionClause_runChecks$1(var$1, var$2); + var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0; + var$5.$_0887 = var$1; + var$5.$_1300 = var$2; + var$5.$_298 = var$3; + return oncias_SemanticCheck_flatMap$(var$4, var$5); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_0() { - jl_Object.call(this); - this.$_0477 = null; +function sci_Stream$$anonfun$map$1$lambda$_95_0() { + let a = this; jl_Object.call(a); + a.$_0567 = null; + a.$_1194 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString6(var$0.$_0477, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_1 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_1_apply = var$0 => { - return $rt_s(4); +let sci_Stream$$anonfun$map$1$lambda$_95_0_apply = var$0 => { + return sci_Stream_$anonfun$map$1(var$0.$_0567, var$0.$_1194); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_0() { - jl_Object.call(this); - this.$_0298 = null; +function oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_0() { + let a = this; jl_Object.call(a); + a.$_0890 = null; + a.$_1302 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_0_apply = (var$0, var$1) => { +let oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString6(var$0.$_0298, var$1); + var$2 = var$0.$_0890; + var$3 = var$0.$_1302; + return oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(var$2, var$1), var$3); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_1 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_1_apply = var$0 => { - return $rt_s(4); +oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_1 = $rt_classWithoutFields(), +oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_1_apply = (var$0, var$1, var$2) => { + return oncius_TypeSpec_leastUpperBounds(var$1, var$2); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_2() { - jl_Object.call(this); - this.$_0167 = null; +function oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0() { + let a = this; jl_Object.call(a); + a.$_0684 = null; + a.$_1233 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_2_apply = (var$0, var$1) => { +let oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0167.$$outer.$expr1, var$1); + var$2 = var$0.$_0684; + var$3 = var$0.$_1233; + oncias_SemanticCheck$_$callClinit(); + return var$2.$apply3(var$1, var$3); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_0() { - jl_Object.call(this); - this.$_0869 = null; +function sc_Iterator$$anon$8() { + let a = this; sc_AbstractIterator.call(a); + a.$traversedValues = null; + a.$nextElementDefined = 0; + a.$nextElement = null; + a.$$outer24 = null; + a.$f$11 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString3(var$0.$_0869, var$1); +let sc_Iterator$$anon$8_hasNext = $this => { + let $a; + a: { + while (true) { + if ($this.$nextElementDefined) + break a; + if (!$this.$$outer24.$hasNext()) + break; + $a = $this.$$outer24.$next(); + if (!scm_HashSet_add($this.$traversedValues, sc_SeqOps$distinct$lambda$_30_0_apply($this.$f$11, $a))) + continue; + else { + $this.$nextElement = $a; + $this.$nextElementDefined = 1; + break a; + } + } + return 0; + } + return 1; +}, +sc_Iterator$$anon$8_next = $this => { + if (!sc_Iterator$$anon$8_hasNext($this)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + $this.$nextElementDefined = 0; + return $this.$nextElement; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_1() { - jl_Object.call(this); - this.$_036 = null; +function sc_View$Appended() { + let a = this; sc_AbstractView.call(a); + a.$underlying20 = null; + a.$elem8 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString0(var$0.$_036, var$1); +let sc_View$Appended_iterator = $this => { + let var$1, var$2, var$3; + var$1 = new sc_View$Concat; + var$2 = $this.$underlying20; + var$3 = new sc_View$Single; + var$3.$a11 = $this.$elem8; + sc_View$Concat__init_0(var$1, var$2, var$3); + return sc_View$Concat_iterator(var$1); +}, +sc_View$Appended_knownSize = $this => { + let $size; + $size = $this.$underlying20.$knownSize(); + if ($size < 0) + return (-1); + return $size + 1 | 0; +}, +sc_View$Appended__init_ = ($this, $underlying, $elem) => { + $this.$underlying20 = $underlying; + $this.$elem8 = $elem; +}, +sc_View$Appended__init_0 = (var_0, var_1) => { + let var_2 = new sc_View$Appended(); + sc_View$Appended__init_(var_2, var_0, var_1); + return var_2; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_2() { +function sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0() { jl_Object.call(this); - this.$_0680 = null; + this.$_01089 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_2_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString1(var$0.$_0680, var$1); +let sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0_apply = var$0 => { + return var$0.$_01089; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_3() { +function sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1() { jl_Object.call(this); - this.$_0159 = null; + this.$_0378 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_3_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0159, var$1); +let sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1_apply = var$0 => { + return sci_LazyList$_$anonfun$continually$1(var$0.$_0378); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_4() { - jl_Object.call(this); - this.$_01065 = null; +function sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0() { + let a = this; jl_Object.call(a); + a.$_0201 = null; + a.$_174 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_4_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_01065, var$1); +let sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0201; + var$2 = var$0.$_174; + sci_LazyList$_$callClinit(); + var$1 = var$1.$elem; + var$3 = sr_ObjectRef__init_(var$1); + var$1 = new sci_LazyList$$$anonfun$flatMapImpl$3$lambda$_50_0; + var$1.$_01013 = var$3; + var$1.$_1345 = var$2; + return sci_LazyList_scala$collection$immutable$LazyList$$state(sci_LazyList__init_(var$1)); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_5() { - jl_Object.call(this); - this.$_0547 = null; +function sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1() { + let a = this; jl_Object.call(a); + a.$_0735 = null; + a.$_1247 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_5_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0547, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_0 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_0_apply = (var$0, var$1) => { - return var$1.$filter1(new onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_115_0); +let sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1_apply = var$0 => { + return sci_LazyList$_$anonfun$flatMapImpl$1(var$0.$_0735, var$0.$_1247); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_1() { - jl_Object.call(this); - this.$_0949 = null; +function sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2() { + let a = this; jl_Object.call(a); + a.$_094 = null; + a.$_135 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_1_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0949; - var$3 = new onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_117_0; - var$3.$_01107 = var$2; - return sc_IterableOnceOps_mkString$(var$1.$map(var$3), $rt_s(40), $rt_s(45), $rt_s(42)); +let sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2_apply = var$0 => { + return sci_LazyList$_$anonfun$stateFromIteratorConcatSuffix$1(var$0.$_094, var$0.$_135); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_2_apply = var$0 => { - return $rt_s(4); +oncia_connectedComponents$ = $rt_classWithoutFields(), +oncia_connectedComponents$_MODULE$ = null, +oncia_connectedComponents$_ComponentPart = null, +oncia_connectedComponents$_ConnectedComponent = null, +oncia_connectedComponents$_$callClinit = () => { + oncia_connectedComponents$_$callClinit = $rt_eraseClinit(oncia_connectedComponents$); + oncia_connectedComponents$__clinit_(); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_3 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_3_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1.$items2)); +oncia_connectedComponents$__clinit_ = () => { + let var$1; + var$1 = new oncia_connectedComponents$; + oncia_connectedComponents$_$callClinit(); + oncia_connectedComponents$_MODULE$ = var$1; + s_Predef$_$callClinit(); + oncia_connectedComponents$_ComponentPart = s_Predef$_Set(s_Predef$_MODULE$); + oncia_connectedComponents$_ConnectedComponent = s_Predef$_Set(s_Predef$_MODULE$); +}, +oncia_connectedComponents$_RichConnectedComponent = ($this, $connectedComponent) => { + let var$2; + var$2 = new oncia_connectedComponents$RichConnectedComponent; + var$2.$connectedComponent = $connectedComponent; + return var$2; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_4() { - jl_Object.call(this); - this.$_0309 = null; +function oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_126_0() { + let a = this; jl_Object.call(a); + a.$_01062 = null; + a.$_1361 = null; + a.$_2120 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_4_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_126_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6, var$7, var$8, $$je; var$1 = var$1; - var$2 = var$0.$_0309; - var$3 = var$1.$items2; - var$4 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0; - var$4.$_0249 = var$2; - var$4 = sc_AbstractIterable_mkString(var$3.$map(var$4), $rt_s(45)); - var$3 = onciap_Prettifier$IndentingQueryPrettifier_indented(var$2); - var$5 = var$1.$where5; - var$1 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1; - var$1.$_0875 = var$3; - var$1 = s_Option_map(var$5, var$1); - var$3 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2; - var$3.$_0195 = var$2; - var$1 = s_Option_getOrElse(s_Option_map(var$1, var$3), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3); - var$3 = var$2.$INDENT; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(643)), var$4), var$1); - return jl_AbstractStringBuilder_toString(var$2); + var$2 = var$2; + var$3 = var$0.$_01062; + var$4 = var$0.$_1361; + var$5 = var$0.$_2120; + var$6 = new onciu_CartesianProductNotification; + var$7 = var$3.$position96; + oncia_connectedComponents$_$callClinit(); + var$8 = (oncia_connectedComponents$_RichConnectedComponent(oncia_connectedComponents$_MODULE$, var$2)).$connectedComponent; + s_Predef$_$callClinit(); + var$8 = (var$8.$flatten(s_Predef$_$conforms(s_Predef$_MODULE$))).$map(new oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_125_0); + if (var$4.$_initialized) + var$2 = var$4.$_value0; + else { + jl_Object_monitorEnterSync(var$4); + a: { + try { + var$2 = sr_LazyRef_initialized(var$4) ? sr_LazyRef_value(var$4) : sr_LazyRef_initialize(var$4, oncia_Match_liftedTree1$1(var$3, var$5)); + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + var$1 = $$je; + + } + jl_Object_monitorExitSync(var$4); + $rt_throw(var$1); + } + jl_Object_monitorExitSync(var$4); + } + var$6.$position87 = var$7; + var$6.$isolatedVariables0 = var$8; + var$6.$pattern15 = var$2; + return oncias_SemanticState_addNotification(var$1, var$6); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_5() { +function oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_106_0() { jl_Object.call(this); - this.$_0754 = null; + this.$_0204 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_5_apply = (var$0, var$1) => { +let oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_106_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4; + var$2 = var$2; + var$3 = var$0.$_0204; + oncias_SemanticFunctionCheck$_$callClinit(); + var$4 = sr_BoxesRunTime_unboxToBoolean(var$1); + var$1 = s_Tuple2__init_(jl_Boolean_valueOf(var$4), var$2); + var$4 = s_Tuple2__1$mcZ$sp(var$1); + var$1 = var$1.$_20; + return jl_Boolean_valueOf(!var$4 && !oncius_TypeSpec_contains0(var$3, var$1) ? 0 : 1); +}, +onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_29_0 = $rt_classWithoutFields(), +onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_29_0_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0754, var$1); + onciap_Prettifier$_$callClinit(); + return onu_Stringifier_backtick0(var$1, 0, 1); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_6 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_6_apply = var$0 => { - return $rt_s(4); -}; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_0() { - jl_Object.call(this); - this.$_0139 = null; -} -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_0_apply = (var$0, var$1) => { +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_0 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncias_SemanticExpressionCheck$_$callClinit(); + return jl_Boolean_valueOf(var$1.$unionSymbol); +}, +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_1 = $rt_classWithoutFields(), +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_1_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0139, var$1); + oncias_SemanticExpressionCheck$_$callClinit(); + return var$1.$definition; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_1() { - jl_Object.call(this); - this.$_0617 = null; +function sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0() { + let a = this; jl_Object.call(a); + a.$_0921 = null; + a.$_1318 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0617, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_2_apply = var$0 => { - return $rt_s(4); +let sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0_apply = var$0 => { + return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_0921, var$0.$_1318); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_0() { - jl_Object.call(this); - this.$_01153 = null; +function sc_IterableOnceOps$Maximized() { + let a = this; sr_AbstractFunction2.call(a); + a.$descriptor = null; + a.$f7 = null; + a.$cmp = null; + a.$maxElem = null; + a.$maxF = null; + a.$nonEmpty0 = 0; + a.$$outer57 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_01153, var$1); +let sc_IterableOnceOps$Maximized_apply = ($this, $m, $a) => { + let $fa, var$4, var$5, var$6; + if (!$m.$nonEmpty0) { + $m.$nonEmpty0 = 1; + $m.$maxElem = $a; + $m.$maxF = $this.$f7.$apply2($a); + return $m; + } + $fa = $this.$f7.$apply2($a); + var$4 = $this.$cmp; + var$5 = $this.$maxF; + var$6 = var$4.$_0398; + if (sr_BoxesRunTime_unboxToBoolean(jl_Boolean_valueOf(var$6.$ord$2.$lt(var$6.$f$30.$apply2($fa), var$6.$f$30.$apply2(var$5))))) { + $this.$maxF = $fa; + $this.$maxElem = $a; + } + return $m; +}, +sc_IterableOnceOps$Maximized_apply0 = ($this, $v1, $v2) => { + return sc_IterableOnceOps$Maximized_apply($this, $v1, $v2); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_1() { +function sc_IterableOnceOps$minBy$lambda$_89_0() { jl_Object.call(this); - this.$_0527 = null; + this.$_0398 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_1_apply = (var$0, var$1) => { +let sc_IterableOnceOps$minBy$lambda$_89_1 = $rt_classWithoutFields(), +sc_IterableOnceOps$minBy$lambda$_89_1_apply = (var$0, var$1, var$2) => { var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0527, var$1); + return sc_IterableOnceOps$Maximized_apply(var$1, var$1, var$2); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_2_apply = var$0 => { - return $rt_s(4); +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$ = $rt_classWithoutFields(), +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$ = null, +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$__clinit_ = () => { + oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$ = new oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$; +}, +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_foundCrossReference = $this => { + return oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_MODULE$; +}, +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_foundSubquery = $this => { + return $this; +}, +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productArity = $this => { + return 0; +}, +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_hashCode = $this => { + return 1509030711; +}, +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_toString = $this => { + return $rt_s(7425); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0() { - jl_Object.call(this); - this.$_0958 = null; +function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_101_0() { + let a = this; jl_Object.call(a); + a.$_0493 = null; + a.$_1170 = null; + a.$_258 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0958, var$1); +let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_101_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_0493; + var$2 = var$0.$_1170; + var$3 = var$0.$_258; + var$4 = var$2.$state; + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = new oncia_ScopeClauseSubqueryCall$importVariables$lambda$_78_0; + var$6.$_0891 = var$1; + var$6.$_1303 = var$4; + var$6 = oncias_SemanticCheck$_fromState(var$5, var$6); + var$5 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_100_0; + var$5.$_0849 = var$1; + var$5.$_1286 = var$3; + var$5.$_291 = var$2; + return oncias_SemanticCheck_flatMap$(var$6, var$5); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1() { +function sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0() { jl_Object.call(this); - this.$_0201 = null; + this.$_01068 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0201, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2_apply = var$0 => { - return $rt_s(4); +let sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0_apply = var$0 => { + return sci_List$_newBuilder(sci_List_iterableFactory(var$0.$_01068)); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0() { +function sr_BooleanRef() { jl_Object.call(this); - this.$_0639 = null; + this.$elem6 = 0; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0639, var$1); -}; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_1() { +function sc_SeqOps$$anonfun$intersect$1$lambda$_139_0() { jl_Object.call(this); - this.$_037 = null; + this.$_0121 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_037, var$1); -}, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_2_apply = var$0 => { - return $rt_s(4); +let sc_SeqOps$$anonfun$intersect$1$lambda$_139_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + a: { + var$2 = var$0.$_0121; + var$3 = 0; + var$4 = null; + if (jl_Object_equals(s_None$_MODULE$, var$1)) { + var$2.$elem6 = 0; + var$1 = s_None$_MODULE$; + } else { + if (var$1 instanceof s_Some) { + var$3 = 1; + var$4 = var$1; + if (1 == sr_BoxesRunTime_unboxToInt(var$4.$value5)) { + var$1 = s_None$_MODULE$; + break a; + } + } + if (!var$3) + $rt_throw(s_MatchError__init_(var$1)); + var$5 = sr_BoxesRunTime_unboxToInt(var$4.$value5); + var$1 = s_Some__init_(jl_Integer_valueOf(var$5 - 1 | 0)); + } + } + return var$1; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_0() { - jl_Object.call(this); - this.$_0353 = null; +function oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_0() { + let a = this; jl_Object.call(a); + a.$_0304 = null; + a.$_1111 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_0_apply = (var$0, var$1) => { +let oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0353, var$1); + var$2 = var$0.$_0304; + var$3 = var$0.$_1111; + var$4 = new oncia_SetLabelItem; + var$5 = sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$); + s_package$_$callClinit(); + oncia_SetLabelItem__init_0(var$4, var$2, var$5, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), 1, var$3.$position39); + return var$4; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_1() { - jl_Object.call(this); - this.$_0956 = null; +function oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_1() { + let a = this; jl_Object.call(a); + a.$_0772 = null; + a.$_1257 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_1_apply = (var$0, var$1) => { +let oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0956, var$1); + var$2 = var$0.$_0772; + var$3 = var$0.$_1257; + var$4 = new oncia_SetLabelItem; + s_package$_$callClinit(); + oncia_SetLabelItem__init_0(var$4, var$2, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$), 1, var$3.$position39); + return var$4; }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_2_apply = var$0 => { - return $rt_s(4); +oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_2 = $rt_classWithoutFields(), +oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_2_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Integer_valueOf(!sc_IterableOnceOps_nonEmpty$(var$1.$labels2) ? ((var$1.$dynamicLabels.$head()).$position()).$column() : (var$1.$labels2.$head()).$position72.$column()); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_0() { +function oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0() { jl_Object.call(this); - this.$_01135 = null; + this.$_0670 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_01135, var$1); +let oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0_apply = var$0 => { + let var$1; + var$1 = var$0.$_0670; + oncia_CommandClause$_$callClinit(); + return oncie_Variable_copyId(var$1); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_1() { +function oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0() { jl_Object.call(this); - this.$_024 = null; + this.$_0243 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_1_apply = (var$0, var$1) => { +let oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_024, var$1); + return oncius_TypeRange_intersect(var$0.$_0243, var$1); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_2_apply = var$0 => { - return $rt_s(4); +oncia_NativeAuth$$anonfun$password$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_NativeAuth$$anonfun$password$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if ($x instanceof oncia_Password) + $default = $x; + return $default; +}, +oncia_NativeAuth$$anonfun$changeRequired$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_NativeAuth$$anonfun$changeRequired$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + if ($x instanceof oncia_PasswordChange) + $default = jl_Boolean_valueOf($x.$requireChange); + return $default; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_46_0() { +function scc_AsJavaExtensions$IterableHasAsJava() { + let a = this; jl_Object.call(a); + a.$i9 = null; + a.$$outer76 = null; +} +let oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1_applyOrElse = ($this, $x1, $default) => { + if ($x1 instanceof oncie_QuantifiedPath && $x1.$quantifier2.$canBeEmpty()) + return new oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0; + if (!$rt_isInstance($x1, oncie_PathFactor)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + return new oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1; +}; +function oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_55_0() { jl_Object.call(this); - this.$_0675 = null; + this.$_01099 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_46_0_apply = (var$0, var$1) => { +let oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_55_0_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6; + var$1 = var$0.$_01099; + oncias_SemanticPatternCheck$_$callClinit(); + var$2 = new oncie_FixedQuantifier; + var$3 = new oncie_UnsignedDecimalIntegerLiteral; + onciu_InputPosition$_$callClinit(); + oncie_UnsignedDecimalIntegerLiteral__init_(var$3, $rt_s(21), onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + oncie_FixedQuantifier__init_(var$2, var$3, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); + var$3 = var$1.$element(); + var$4 = onciu_topDown$_MODULE$; + onciu_Rewriter$_$callClinit(); + var$5 = onciu_Rewriter$_MODULE$; + var$6 = new oncias_SemanticPatternCheck$$anonfun$1; + var$6.$fixedZeroQuantifier$1 = var$2; + var$2 = (onciu_topDown$_apply(var$4, onciu_Rewriter$_lift(var$5, var$6), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$)).$apply2(var$3); + var$2 = onciap_DefaultPatternStringifier_apply0((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, var$2); + var$3 = oncias_SemanticPatternCheck$_MODULE$; + var$4 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(7426)), var$2), $rt_s(7427)); + return oncias_SemanticAnalysisTooling_error$(var$3, sc_StringOps$_stripMargin$extension(var$4, jl_AbstractStringBuilder_toString(var$5)), var$1.$position()); +}, +oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_0_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0675.$$outer.$expr1, var$1); + oncias_SemanticPatternCheck$_$callClinit(); + return onciu_Foldable$Folder_treeCollect(onciu_Foldable_folder$(var$1.$element()), new oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_0() { +function oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_1() { jl_Object.call(this); - this.$_0534 = null; + this.$_0291 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_0_apply = (var$0, var$1) => { - let var$2, var$3; +let oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0534; - if (var$1 instanceof oncia_OnMatch) { - var$3 = var$1.$action2; - var$1 = var$2.$INDENT; - var$2 = onciap_Prettifier$IndentingQueryPrettifier_asString2(var$2, var$3); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(7867)), var$2); - var$1 = jl_AbstractStringBuilder_toString(var$3); + var$2 = var$0.$_0291; + oncias_SemanticPatternCheck$_$callClinit(); + if (var$1 instanceof oncie_QuantifiedPath) { + var$1 = var$1; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_70_0; + var$4.$_0562 = var$1; + var$4.$_1191 = var$2; + var$1 = oncias_SemanticCheck$_fromState(var$3, var$4); } else { - if (!(var$1 instanceof oncia_OnCreate)) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$action1; - var$1 = var$2.$INDENT; - var$2 = onciap_Prettifier$IndentingQueryPrettifier_asString2(var$2, var$3); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(7868)), var$2); - var$1 = jl_AbstractStringBuilder_toString(var$3); + if (!(var$1 instanceof oncie_ParenthesizedPath)) { + var$2 = new jl_IllegalArgumentException; + var$1 = jl_Object_getClass(var$1); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7428)), var$1), 46); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$3)); + $rt_throw(var$2); + } + var$1 = var$1; + var$1 = oncias_SemanticPatternCheck$_normalizeParenthesizedPath(oncias_SemanticPatternCheck$_MODULE$, var$1); + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_71_0; + var$4.$_0656 = var$1; + var$4.$_1223 = var$2; + var$1 = oncias_SemanticCheck$_fromState(var$3, var$4); } return var$1; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_1() { +function oncia_UseGraph$checkSingleGraphSelector$lambda$_72_0() { jl_Object.call(this); - this.$_01032 = null; + this.$_0526 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_1_apply = (var$0, var$1) => { +let oncia_UseGraph$checkSingleGraphSelector$lambda$_72_0_apply = (var$0, var$1, var$2) => { + let var$3; + var$3 = var$0.$_0526; + return oncias_SemanticCheckResult$_error0(oncias_SemanticCheckResult$_MODULE$, var$1, (var$2.$errorMessageProvider()).$createDynamicGraphReferenceUnsupportedError(var$3.$graphReference1.$print0()), var$3.$position26); +}; +function one_SyntaxException() { + let a = this; one_Neo4jException.call(a); + a.$offset7 = null; + a.$query6 = null; +} +let one_SyntaxException_buildErrorString = ($builder, $element, $currentOffset) => { + let var$4; + jl_AbstractStringBuilder_append($builder, $rt_s(480)); + var$4 = $element.$nativeString.trimEnd(); + if (var$4 !== $element.$nativeString) + $element = jl_String__init_0(var$4); + jl_AbstractStringBuilder_append($builder, $element); + jl_AbstractStringBuilder_append($builder, $rt_s(480)); + jl_AbstractStringBuilder_append($builder, $rt_s(94)); + jl_AbstractStringBuilder_append($builder, jl_String_repeat($rt_s(370), $currentOffset + 1 | 0)); + jl_AbstractStringBuilder_append0($builder, 94); +}; +function oncia_UseGraph$unsupported$lambda$_66_0() { + jl_Object.call(this); + this.$_0263 = null; +} +let oncia_UseGraph$unsupported$lambda$_66_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5; + var$3 = var$0.$_0263; + var$4 = oncias_SemanticCheckResult$_MODULE$; + var$2 = (var$2.$errorMessageProvider()).$createUseClauseUnsupportedError(); + var$5 = var$3.$position26; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + return oncias_SemanticCheckResult$_error(var$4, var$1, oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_08N04), var$5.$offset(), var$5.$line(), var$5.$column()), ong_GqlParams$StringParam_clause, $rt_s(7429))), var$2, var$5)); +}, +oncia_connectedComponents$$apply$lambda$_3_0 = $rt_classWithoutFields(), +oncia_connectedComponents$$apply$lambda$_3_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_01032, var$1); + oncia_connectedComponents$_$callClinit(); + var$2 = onciu_Foldable_folder$(var$1); + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return onciu_Foldable$Folder_fold(var$2, sci_Set$EmptySet$_MODULE$, new oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1); +}, +oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_50_0 = $rt_classWithoutFields(), +oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_50_0_apply = (var$0, var$1) => { + return var$1.$position4; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_0() { +function onu_UnicodeHelper$isAllowedUnicode$lambda$_5_0() { jl_Object.call(this); - this.$_0350 = null; + this.$_01000 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_0_apply = (var$0, var$1) => { +let onciap_Prettifier$labelsString$lambda$_36_0 = $rt_classWithoutFields(), +onciap_Prettifier$labelsString$lambda$_36_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$1 = onciap_DefaultExpressionStringifier_apply(var$0.$_0350.$$outer.$expr1, var$1); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7869)), var$1); + jl_AbstractStringBuilder_append0(var$2, 58); + jl_StringBuilder_append(var$2, var$1); return jl_AbstractStringBuilder_toString(var$2); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_1 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_1_apply = var$0 => { - return $rt_s(4); +onciap_Prettifier$isLabelsString$lambda$_37_0 = $rt_classWithoutFields(), +onciap_Prettifier$isLabelsString$lambda$_37_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_AbstractStringBuilder_append0(var$2, 58); + jl_StringBuilder_append(var$2, var$1); + return jl_AbstractStringBuilder_toString(var$2); +}, +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0 = $rt_classWithoutFields(), +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0_apply = (var$0, var$1) => { + return var$1.$use; +}, +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_17_0 = $rt_classWithoutFields(), +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_17_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit(); + return var$1.$use; }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_47_0() { - jl_Object.call(this); - this.$_01131 = null; +function oncia_UseGraph$checkSingleTargetGraph$lambda$_73_0() { + let a = this; jl_Object.call(a); + a.$_0358 = null; + a.$_1127 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_47_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_dispatch(var$0.$_01131, var$1); +let oncia_UseGraph$checkSingleTargetGraph$lambda$_73_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4, var$5, var$6; + var$3 = var$0.$_0358; + var$4 = var$0.$_1127; + var$5 = var$1.$targetGraph; + if (!(var$5 instanceof s_Some)) { + if (!jl_Object_equals(s_None$_MODULE$, var$5)) + $rt_throw(s_MatchError__init_(var$5)); + var$1 = oncias_SemanticState_recordTargetGraph(var$1, var$4); + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + } else if (var$5.$value5.$equals(var$4)) + var$1 = oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + else { + var$5 = oncias_SemanticCheckResult$_MODULE$; + var$2 = var$2.$errorMessageProvider(); + var$2 = var$2.$createMultipleGraphReferencesError(var$4.$print0(), var$2.$createMultipleGraphReferencesError$default$2()); + var$6 = var$3.$position26; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$1 = oncias_SemanticCheckResult$_error(var$5, var$1, oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$6.$offset(), var$6.$line(), var$6.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42NA5), + var$6.$offset(), var$6.$line(), var$6.$column())))), var$2, var$6)); + } + return var$1; }, -oncie_Expression$$anonfun$dependencies$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncie_Expression$$anonfun$dependencies$1_applyOrElse = ($this, $x1, $default) => { - if ($rt_isInstance($x1, oncie_ScopeExpression)) { - $x1 = $x1; - $default = new oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0; - $default.$_0385 = $x1; - return $default; +oncia_GraphFunctionReference$isConstantForQuery$lambda$_56_0 = $rt_classWithoutFields(), +oncia_GraphFunctionReference$isConstantForQuery$lambda$_56_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}; +function jusi_GenericConcatStream() { + let a = this; jusi_SimpleStreamImpl.call(a); + a.$first8 = null; + a.$second2 = null; + a.$iterator1 = null; + a.$isSecond = 0; +} +let jusi_GenericConcatStream_next = ($this, $consumer) => { + let var$2, var$3, var$4; + if ($this.$iterator1 === null) + $this.$iterator1 = jusi_SimpleStreamImpl_iterator($this.$first8); + while (true) { + var$2 = $this.$iterator1; + jusi_SimpleStreamIterator_fetchIfNeeded(var$2); + if (!(var$2.$state1 == 3 ? 0 : 1)) { + if ($this.$isSecond) + return 0; + $this.$isSecond = 1; + $this.$iterator1 = jusi_SimpleStreamImpl_iterator($this.$second2); + continue; + } + var$2 = $this.$iterator1; + jusi_SimpleStreamIterator_fetchIfNeeded(var$2); + var$3 = var$2.$state1; + if (var$3 == 3) { + $consumer = new ju_NoSuchElementException; + jl_Throwable__init_0($consumer); + $rt_throw($consumer); + } + var$4 = var$2.$lastElement; + var$2.$lastElement = null; + var$2.$state1 = var$3 != 2 ? 0 : 3; + if ($consumer.$test0(var$4)) + continue; + else + break; } - if (!($x1 instanceof oncie_LogicalVariable)) - return s_PartialFunction$_fallback_fn; - $x1 = $x1; - $default = new oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1; - $default.$_0939 = $x1; - return $default; + return 1; }; -function oncie_MapExpression$mapExpressions$lambda$_7_0() { +function jusi_SpecializedConcatStream() { + let a = this; jusi_SimpleStreamImpl.call(a); + a.$first5 = null; + a.$second = null; + a.$current5 = null; +} +let jusi_SpecializedConcatStream_next = ($this, $consumer) => { + let var$2; + var$2 = $this.$current5; + if (var$2 === null) + return 0; + if (jusi_StreamOverSpliterator_next(var$2, $consumer)) + return 1; + if ($this.$current5 !== $this.$first5) { + $this.$current5 = null; + return 0; + } + $this.$current5 = $this.$second; + return 1; +}, +jusi_SpecializedConcatStream_estimateSize = $this => { + let $firstSize, $secondSize; + $firstSize = jusi_StreamOverSpliterator_estimateSize($this.$first5); + $secondSize = jusi_StreamOverSpliterator_estimateSize($this.$second); + return $firstSize >= 0 && $secondSize >= 0 ? $firstSize + $secondSize | 0 : (-1); +}; +function onciap_Prettifier$labelsOrderedSeq$lambda$_38_0() { jl_Object.call(this); - this.$_0428 = null; + this.$_0411 = null; } -let oncie_MapExpression$mapExpressions$lambda$_7_0_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_Prettifier$labelsOrderedSeq$lambda$_38_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0428; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$3 = var$1.$_1(); - var$1 = var$1.$_2(); - return s_Tuple2__init_(var$3, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1)); + var$2 = var$0.$_0411; + if (var$1 instanceof oncie_LabelName) { + var$3 = var$1; + var$1 = s_Tuple2__init_(jl_String_valueOf(onciap_DefaultExpressionStringifier_apply0(var$2.$expr1, var$3)), var$3.$position72); + } else { + if (!(var$1 instanceof oncie_Expression)) { + var$2 = new jl_IllegalStateException; + jl_Throwable__init_(var$2, $rt_s(7430)); + $rt_throw(var$2); + } + var$3 = var$1; + var$1 = new s_Tuple2; + var$2 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$3); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(498)), var$2), 41); + s_Tuple2__init_0(var$1, jl_AbstractStringBuilder_toString(var$4), var$3.$position()); + } + return var$1; +}, +onciap_Prettifier$labelsOrderedSeq$lambda$_38_1 = $rt_classWithoutFields(), +onciap_Prettifier$labelsOrderedSeq$lambda$_38_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = new s_Tuple2$mcII$sp; + var$3 = (var$1.$_2()).$line(); + var$4 = (var$1.$_2()).$column(); + var$2.$_1$mcI$sp0 = var$3; + var$2.$_2$mcI$sp0 = var$4; + s_Tuple2__init_0(var$2, null, null); + return var$2; +}, +onciap_Prettifier$labelsOrderedSeq$lambda$_38_2 = $rt_classWithoutFields(), +onciap_Prettifier$labelsOrderedSeq$lambda$_38_2_apply = (var$0, var$1) => { + return var$1.$_1(); }; -function onciap_Prettifier$prettifySetItems$lambda$_33_0() { +function oncia_connectedComponents$$loop$1$lambda$_10_0() { jl_Object.call(this); - this.$_0767 = null; + this.$_0882 = null; } -let onciap_Prettifier$prettifySetItems$lambda$_33_0_apply = (var$0, var$1) => { +let oncia_connectedComponents$$loop$1$lambda$_10_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return onciap_Prettifier_$anonfun$prettifySetItems$1(var$0.$_0767, var$1); + var$2 = var$0.$_0882; + oncia_connectedComponents$_$callClinit(); + return jl_Boolean_valueOf(oncia_connectedComponents$RichConnectedComponent_connectedTo(oncia_connectedComponents$_RichConnectedComponent(oncia_connectedComponents$_MODULE$, var$1), var$2)); }, -oncius_TypeRange$contains$lambda$_6_0 = $rt_classWithoutFields(), -oncius_TypeRange$contains$lambda$_6_0_apply$mcZ$sp = var$0 => { - return 1; +oncia_connectedComponents$$loop$1$lambda$_10_1 = $rt_classWithoutFields(), +oncia_connectedComponents$$loop$1$lambda$_10_1_apply = (var$0, var$1, var$2) => { + var$1 = var$1; + var$2 = var$2; + oncia_connectedComponents$_$callClinit(); + return var$1.$concat1(var$2); }; -function oncius_TypeRange$contains$lambda$_6_1() { +function oncia_connectedComponents$$loop$1$lambda$_10_2() { jl_Object.call(this); - this.$_0174 = null; + this.$_0764 = null; } -let oncius_TypeRange$contains$lambda$_6_1_apply = (var$0, var$1) => { +let oncia_connectedComponents$$loop$1$lambda$_10_2_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return jl_Boolean_valueOf(var$0.$_0174.$isAssignableFrom0(var$1)); + var$2 = var$0.$_0764; + oncia_connectedComponents$_$callClinit(); + return jl_Boolean_valueOf(oncia_connectedComponents$RichConnectedComponent_connectedTo(oncia_connectedComponents$_RichConnectedComponent(oncia_connectedComponents$_MODULE$, var$1), var$2)); }, -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2; - var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); - return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); +ong_ErrorMessageHolder = $rt_classWithoutFields(), +ong_ErrorMessageHolder_USE_NEW_ERROR_MESSAGES = 0, +ong_ErrorMessageHolder__clinit_ = () => { + ong_ErrorMessageHolder_USE_NEW_ERROR_MESSAGES = 0; }, -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - sr_BoxesRunTime_unboxToBoolean(var$1); - return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(0)); -}; -function sci_LazyList$LazyBuilder$addOne$lambda$_11_0() { - let a = this; jl_Object.call(a); - a.$_01129 = null; - a.$_1379 = null; -} -let sci_LazyList$LazyBuilder$addOne$lambda$_11_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_01129; - var$2 = var$0.$_1379; - var$3 = new sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0; - var$3.$_075 = var$2; - return sci_LazyList$State$Cons__init_(var$1, sci_LazyList__init_(var$3)); +oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0 = $rt_classWithoutFields(), +oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0_apply = (var$0, var$1) => { + return oncius_TypeRange_reparent(var$1, new oncius_TypeSpec$$anonfun$unwrapPotentialLists$1$lambda$_67_0); }, -sci_LazyList$LazyBuilder$result$lambda$_10_0 = $rt_classWithoutFields(), -sci_LazyList$LazyBuilder$result$lambda$_10_0_apply = var$0 => { - return sci_LazyList$State$Empty$_MODULE$; +oncius_TypeSpec$covariant$lambda$_26_0 = $rt_classWithoutFields(), +oncius_TypeSpec$covariant$lambda$_26_0_apply = (var$0, var$1) => { + return oncius_TypeRange_covariant(var$1); }; -function sci_LazyList$LazyBuilder$addAll$lambda$_12_0() { +function jusi_AnyMatchConsumer() { let a = this; jl_Object.call(a); - a.$_0825 = null; - a.$_1281 = null; + a.$matched0 = 0; + a.$predicate5 = null; } -let sci_LazyList$LazyBuilder$addAll$lambda$_12_0_apply = var$0 => { - let var$1, var$2, var$3, var$4; - var$1 = var$0.$_0825; - var$2 = var$0.$_1281; - var$3 = sc_IndexedSeqOps_iterator$(var$1); - var$1 = new sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0; - var$1.$_0885 = var$2; - if (!var$3.$hasNext()) - var$1 = sci_LazyList$LazyBuilder$DeferredState_eval(var$2); - else { - var$2 = sc_IndexedSeqView$IndexedSeqViewIterator_next(var$3); - var$4 = new sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1; - var$4.$_0262 = var$3; - var$4.$_1103 = var$1; - var$1 = sci_LazyList$State$Cons__init_(var$2, sci_LazyList__init_(var$4)); +let jusi_AnyMatchConsumer_test = ($this, $t) => { + let var$2, var$3, var$4, var$5; + var$2 = $this.$predicate5; + $t = $t; + var$2 = var$2.$_01000; + if (!jl_String_contains($t, $rt_s(3665))) { + var$3 = jl_String_charAt($t, 0); + var$3 = var$2.$value4 != var$3 ? 0 : 1; + } else { + var$3 = jl_String_charAt($t, 0); + var$4 = jl_String_charAt($t, 2); + var$5 = var$2.$value4; + var$3 = var$5 >= var$3 && var$5 <= var$4 ? 1 : 0; } - return var$1; + $this.$matched0 = var$3; + return var$3 ? 0 : 1; }; -function sci_Stream$flatMap$lambda$_65_0() { - let a = this; jl_Object.call(a); - a.$_01085 = null; - a.$_1366 = null; +function oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0() { + jl_Object.call(this); + this.$_0397 = null; } -let sci_Stream$flatMap$lambda$_65_0_apply = var$0 => { - return sci_Stream_$anonfun$flatMap$1(var$0.$_01085, var$0.$_1366); +let oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0_apply = var$0 => { + return oncia_Clause$LabelExpressionsPartitions$1_$anonfun$semanticCheck$3(var$0.$_0397); }; -function sci_Stream$flatMap$lambda$_65_1() { +function sci_Stream$filter$lambda$_57_0() { let a = this; jl_Object.call(a); - a.$_0557 = null; - a.$_1191 = null; + a.$_0212 = null; + a.$_180 = null; + a.$_230 = 0; } -let sci_Stream$flatMap$lambda$_65_1_apply = var$0 => { - return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_0557, var$0.$_1191); +let sci_Stream$filter$lambda$_57_0_apply = var$0 => { + return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0212, var$0.$_180, var$0.$_230); }; -function sci_Stream$flatMap$lambda$_65_2() { +function sci_Stream$filterNot$lambda$_58_0() { let a = this; jl_Object.call(a); - a.$_027 = null; - a.$_115 = null; + a.$_0978 = null; + a.$_1335 = null; + a.$_2116 = 0; } -let sci_Stream$flatMap$lambda$_65_2_apply = var$0 => { - return sci_Stream_$anonfun$flatMap$1(var$0.$_027, var$0.$_115); +let sci_Stream$filterNot$lambda$_58_0_apply = var$0 => { + return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0978, var$0.$_1335, var$0.$_2116); }; -function sci_Stream$flatMap$lambda$_65_3() { - let a = this; jl_Object.call(a); - a.$_0667 = null; - a.$_1232 = null; +function oncie_RelationshipPattern$mapExpressions$lambda$_20_0() { + jl_Object.call(this); + this.$_0460 = null; } -let sci_Stream$flatMap$lambda$_65_3_apply = var$0 => { - return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_0667, var$0.$_1232); -}, -s_Function$$$anonfun$chain$1$lambda$_17_0 = $rt_classWithoutFields(), -s_Function$$$anonfun$chain$1$lambda$_17_0_apply = (var$0, var$1, var$2) => { - return var$2.$apply2(var$1); +let oncie_RelationshipPattern$mapExpressions$lambda$_20_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0460; + return !(var$1 instanceof oncie_MapExpression) ? oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1) : oncie_MapExpression_mapExpressions(var$1, var$2); }; -function sci_Stream$collect$lambda$_63_0() { +function oncie_RelationshipPattern$mapExpressions$lambda$_20_1() { jl_Object.call(this); - this.$_0119 = null; + this.$_0934 = null; } -let sci_Stream$collect$lambda$_63_0_apply = (var$0, var$1) => { - var$0.$_0119.$elem = var$1; - return sr_BoxedUnit_UNIT; +let oncie_RelationshipPattern$mapExpressions$lambda$_20_1_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0934; + var$3 = new oncie_RelationshipPattern$$anonfun$mapExpressions$7$lambda$_42_0; + var$3.$_0528 = var$2; + return s_Option_map(var$1, var$3); }; -function sci_Stream$prepended$lambda$_61_0() { +function oncie_RelationshipPattern$mapExpressions$lambda$_20_2() { jl_Object.call(this); - this.$_0993 = null; + this.$_0353 = null; } -let sci_Stream$prepended$lambda$_61_0_apply = var$0 => { - return var$0.$_0993; +let oncie_RelationshipPattern$mapExpressions$lambda$_20_2_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_0353); }, -sc_IterableOnceExtensionMethods$ = $rt_classWithoutFields(), -sc_IterableOnceExtensionMethods$_MODULE$ = null, -sc_IterableOnceExtensionMethods$__clinit_ = () => { - sc_IterableOnceExtensionMethods$_MODULE$ = new sc_IterableOnceExtensionMethods$; -}; -function sci_Stream$zip$lambda$_66_0() { - let a = this; jl_Object.call(a); - a.$_01079 = null; - a.$_1363 = null; -} -let sci_Stream$zip$lambda$_66_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_01079; - var$2 = var$0.$_1363; - return sci_Stream_zip(var$1.$tail(), var$2.$tail()); +oncia_Clause$ReadWrite$1$ = $rt_classWithoutFields(), +oncia_Clause$ReadWrite$1$_productArity = $this => { + return 0; +}, +oncia_Clause$ReadWrite$1$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_Clause$ReadWrite$1$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Clause$ReadWrite$1$_hashCode = $this => { + return 883080137; +}, +oncia_Clause$ReadWrite$1$_toString = $this => { + return $rt_s(7431); +}, +oncia_Clause$ReadWrite$1$__init_ = ($this, $$outer) => { + return; +}, +oncia_Clause$ReadWrite$1$__init_0 = var_0 => { + let var_1 = new oncia_Clause$ReadWrite$1$(); + oncia_Clause$ReadWrite$1$__init_(var_1, var_0); + return var_1; +}, +oncia_Clause$Write$1$ = $rt_classWithoutFields(), +oncia_Clause$Write$1$_productArity = $this => { + return 0; +}, +oncia_Clause$Write$1$_productElement = ($this, $x$1) => { + return sr_Statics_ioobe($x$1); +}, +oncia_Clause$Write$1$_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Clause$Write$1$_hashCode = $this => { + return 83847103; +}, +oncia_Clause$Write$1$_toString = $this => { + return $rt_s(5736); +}, +oncia_Clause$Write$1$__init_0 = ($this, $$outer) => { + return; +}, +oncia_Clause$Write$1$__init_ = var_0 => { + let var_1 = new oncia_Clause$Write$1$(); + oncia_Clause$Write$1$__init_0(var_1, var_0); + return var_1; }; -function sci_LazyList$take$lambda$_89_0() { - let a = this; jl_Object.call(a); - a.$_0199 = null; - a.$_177 = 0; +function onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0() { + jl_Object.call(this); + this.$_01174 = null; } -let sci_LazyList$take$lambda$_89_0_apply = var$0 => { - return sci_LazyList_$anonfun$takeImpl$1(var$0.$_0199, var$0.$_177); +let onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0__init_ = (var$0, var$1) => { + var$0.$_01174 = var$1; +}, +onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0__init_0 = var_0 => { + let var_1 = new onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0(); + onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0__init_(var_1, var_0); + return var_1; +}, +oncius_TypeSpec$wrapInCovariantList$lambda$_25_0 = $rt_classWithoutFields(), +oncius_TypeSpec$wrapInCovariantList$lambda$_25_0_apply = (var$0, var$1) => { + return oncius_TypeRange_reparent(oncius_TypeRange_covariant(var$1), new oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0); }; -function oavra_SemanticContext$AND() { - oavra_SemanticContext$Operator.call(this); - this.$opnds = null; +function sc_View$Single() { + sc_AbstractView.call(this); + this.$a11 = null; } -let oavra_SemanticContext$AND_equals = ($this, $obj) => { - let $other; - if ($this === $obj) - return 1; - if (!($obj instanceof oavra_SemanticContext$AND)) - return 0; - $other = $obj; - return ju_Arrays_equals0($this.$opnds, $other.$opnds); -}, -oavra_SemanticContext$AND_hashCode = $this => { - return oavrm_MurmurHash_hashCode($this.$opnds, jl_Object_identity($rt_cls(oavra_SemanticContext$AND))); +let sc_View$Single_iterator = $this => { + return sc_Iterator$$anon$20__init_($this.$a11); }, -oavra_SemanticContext$AND_eval = ($this, $parser, $parserCallStack) => { - let var$3, var$4, var$5; - var$3 = $this.$opnds.data; - var$4 = var$3.length; - var$5 = 0; - while (var$5 < var$4) { - if (!var$3[var$5].$eval($parser, $parserCallStack)) - return 0; - var$5 = var$5 + 1 | 0; - } +sc_View$Single_knownSize = $this => { return 1; }, -oavra_SemanticContext$AND_evalPrecedence = ($this, $parser, $parserCallStack) => { - let $differs, $operands, var$5, var$6, var$7, $result, $i, $context, $evaluated; - $differs = 0; - $operands = ju_ArrayList__init_(); - var$5 = $this.$opnds.data; - var$6 = var$5.length; - var$7 = 0; - while (true) { - if (var$7 >= var$6) { - if (!$differs) - return $this; - if (ju_AbstractCollection_isEmpty($operands)) - return oavra_SemanticContext$Empty_Instance; - $result = ju_ArrayList_get($operands, 0); - $i = 1; - while ($i < $operands.$size0) { - $result = oavra_SemanticContext_and($result, ju_ArrayList_get($operands, $i)); - $i = $i + 1 | 0; - } - return $result; - } - $context = var$5[var$7]; - $evaluated = $context.$evalPrecedence($parser, $parserCallStack); - $differs = $differs | ($evaluated === $context ? 0 : 1); - if ($evaluated === null) - break; - if ($evaluated !== oavra_SemanticContext$Empty_Instance) - ju_ArrayList_add($operands, $evaluated); - var$7 = var$7 + 1 | 0; - } - return null; -}, -oavra_SemanticContext$AND_toString = $this => { - return oavrm_Utils_join0(ju_AbstractList_iterator(ju_Arrays_asList($this.$opnds)), $rt_s(7870)); -}, -oavra_OrderedATNConfigSet$LexerConfigHashSet = $rt_classWithoutFields(oavra_ATNConfigSet$AbstractConfigHashSet); -function onciap_Prettifier$IndentingQueryPrettifier$partialYieldAsString$lambda$_42_0() { - jl_Object.call(this); - this.$_00 = null; +sc_View$Single_isEmpty = $this => { + return 0; +}; +function oncie_Expression$$anonfun$replaceAllOccurrencesBy$1() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$occurrencesToReplace$1 = null; + a.$replacement$1 = null; + a.$skipExpressionsWithComputedDependencies$1 = 0; } -let onciap_Prettifier$IndentingQueryPrettifier$partialYieldAsString$lambda$_42_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_00; - if (jl_String_equals(var$1.$aliasedVariable.$name4, var$1.$originalName)) - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1.$aliasedVariable); - else { - var$3 = onciap_Prettifier_backtick(var$2.$$outer, var$1.$originalName); - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1.$aliasedVariable); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(646)), var$1); - var$1 = jl_AbstractStringBuilder_toString(var$2); +let oncie_Expression$$anonfun$replaceAllOccurrencesBy$1_applyOrElse = ($this, $x1, $default) => { + let $newScopeDependencies, var$4, var$5; + if ($x1 instanceof oncie_Variable) { + $newScopeDependencies = $x1; + var$4 = $this.$occurrencesToReplace$1; + onciu_Ref$_$callClinit(); + if (var$4.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, $newScopeDependencies))) + return oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0_apply($this.$replacement$1); + } + if ($rt_isInstance($x1, oncie_ExpressionWithComputedDependencies)) { + var$5 = $x1; + if (!$this.$skipExpressionsWithComputedDependencies$1) { + $x1 = var$5.$scopeDependencies(); + $default = new oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0; + $default.$_0933 = $this; + return var$5.$withComputedScopeDependencies($x1.$map($default)); + } } - return var$1; + return $default.$apply2($x1); +}, +oncius_TypeRange$contains$lambda$_6_0 = $rt_classWithoutFields(), +oncius_TypeRange$contains$lambda$_6_0_apply$mcZ$sp = var$0 => { + return 1; }; -function onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0() { +function oncius_TypeRange$contains$lambda$_6_1() { jl_Object.call(this); - this.$_0845 = null; + this.$_0172 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0_apply = (var$0, var$1) => { +let oncius_TypeRange$contains$lambda$_6_1_apply = (var$0, var$1) => { var$1 = var$1; - return onciap_DefaultExpressionStringifier_quote(var$0.$_0845.$$outer.$expr1, var$1); + return jl_Boolean_valueOf(var$0.$_0172.$isAssignableFrom0(var$1)); }, -oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0 = $rt_classWithoutFields(), -oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1 instanceof oncil_LabelExpression$Leaf); +oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2; + var$2 = sr_BoxesRunTime_unboxToBoolean(var$1); + return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(var$2)); +}, +oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + sr_BoxesRunTime_unboxToBoolean(var$1); + return onciu_Foldable$SkipChildren__init_(jl_Boolean_valueOf(0)); }; -function sc_View$DropRight() { - let a = this; sc_AbstractView.call(a); - a.$underlying33 = null; - a.$n3 = 0; - a.$normN0 = 0; +function sc_View$DropRightIterator() { + let a = this; sc_AbstractIterator.call(a); + a.$underlying10 = null; + a.$maxlen = 0; + a.$len2 = 0; + a.$pos2 = 0; + a.$buf = null; } -let sc_View$DropRight_iterator = $this => { - let var$1, var$2, var$3, var$4; - var$1 = $this.$underlying33.$iterator0(); - var$2 = $this.$n3; - if (var$2 > 0) { - var$3 = var$1.$knownSize(); - if (var$3 >= 0) - var$1 = var$1.$take0(var$3 - var$2 | 0); - else { - var$4 = new sc_View$DropRightIterator; - var$4.$underlying11 = var$1; - var$4.$maxlen = var$2; - var$4.$len2 = (-1); - var$4.$pos4 = 0; - var$1 = var$4; +let sc_View$DropRightIterator_knownSize = $this => { + return $this.$len2; +}, +sc_View$DropRightIterator_hasNext = $this => { + if ($this.$buf === null) { + $this.$buf = scm_ArrayBuffer__init_0(jl_Math_min($this.$maxlen, 256)); + while ($this.$pos2 < $this.$maxlen && $this.$underlying10.$hasNext()) { + scm_ArrayBuffer_addOne($this.$buf, $this.$underlying10.$next()); + $this.$pos2 = $this.$pos2 + 1 | 0; } + if (!$this.$underlying10.$hasNext()) + $this.$len2 = 0; + $this.$pos2 = 0; } - return var$1; -}, -sc_View$DropRight_knownSize = $this => { - let $size; - $size = $this.$underlying33.$knownSize(); - if ($size < 0) - return (-1); - return jl_Math_max($size - $this.$normN0 | 0, 0); -}, -sc_View$DropRight_isEmpty = $this => { - if (sc_View$DropRight_knownSize($this) < 0) - return (sc_View$DropRight_iterator($this)).$isEmpty(); - if (sc_View$DropRight_knownSize($this)) + if (!$this.$len2) return 0; return 1; +}, +sc_View$DropRightIterator_next = $this => { + let $x, var$2, var$3; + if (!sc_View$DropRightIterator_hasNext($this)) + return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); + $x = scm_ArrayBuffer_apply($this.$buf, $this.$pos2); + var$2 = $this.$len2; + if (var$2 != (-1)) + $this.$len2 = var$2 - 1 | 0; + else { + scm_ArrayBuffer_update($this.$buf, $this.$pos2, $this.$underlying10.$next()); + if (!$this.$underlying10.$hasNext()) + $this.$len2 = 0; + } + var$3 = $this.$pos2 + 1 | 0; + $this.$pos2 = var$3; + if (var$3 == $this.$maxlen) + $this.$pos2 = 0; + return $x; }; -function sci_Stream$$anonfun$flatMap$1$lambda$_98_0() { - let a = this; jl_Object.call(a); - a.$_0661 = null; - a.$_1230 = null; +function oncia_Clause$LegacyLabelExpression$2$() { + sr_AbstractFunction1.call(this); + this.$$outer46 = null; } -let sci_Stream$$anonfun$flatMap$1$lambda$_98_0_apply = var$0 => { - return sci_Stream_$anonfun$flatMap$1(var$0.$_0661, var$0.$_1230); +let oncia_Clause$LegacyLabelExpression$2$__init_0 = ($this, $$outer) => { + if ($$outer === null) + $rt_throw(null); + $this.$$outer46 = $$outer; +}, +oncia_Clause$LegacyLabelExpression$2$__init_ = var_0 => { + let var_1 = new oncia_Clause$LegacyLabelExpression$2$(); + oncia_Clause$LegacyLabelExpression$2$__init_0(var_1, var_0); + return var_1; }; -function sci_Stream$$anonfun$flatMap$1$lambda$_98_1() { +function sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0() { let a = this; jl_Object.call(a); - a.$_01132 = null; - a.$_1380 = null; + a.$_0905 = null; + a.$_1310 = null; + a.$_2103 = 0; } -let sci_Stream$$anonfun$flatMap$1$lambda$_98_1_apply = var$0 => { - return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_01132, var$0.$_1380); +let sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0_apply = var$0 => { + return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0905, var$0.$_1310, var$0.$_2103); }; -function oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_89_0() { - let a = this; jl_Object.call(a); - a.$_097 = null; - a.$_140 = null; +function oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_92_0() { + jl_Object.call(this); + this.$_098 = null; } -let oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_89_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$0.$_097; - var$2 = var$0.$_140; - var$3 = var$1.$innerQuery1.$semanticCheckImportingWithSubQueryContext(var$2.$state); - var$4 = new oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_88_0; - var$4.$_0346 = var$1; - var$4.$_1124 = var$2; - return oncias_SemanticCheck_flatMap$(var$3, var$4); +let oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_92_0_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_098; + return oncius_TypeSpec_unwrapPotentialLists(oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply(oncias_SemanticAnalysisTooling_types$(var$2, var$2.$expression22), var$1)); }; -function oncie_RelationshipPattern$$anonfun$mapExpressions$6$lambda$_42_0() { +function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_0() { jl_Object.call(this); - this.$_0793 = null; + this.$_045 = null; } -let oncie_RelationshipPattern$$anonfun$mapExpressions$6$lambda$_42_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0793; - return oncie_Range_copy(var$1, s_Option_map(var$1.$lower2, var$2), s_Option_map(var$1.$upper2, var$2), var$1.$position117); -}, -oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_68_0 = $rt_classWithoutFields(), -oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_68_0_apply = var$0 => { - oncius_package$_$callClinit(); - return oncius_NodeType_covariant(oncius_package$_CTNode(oncius_package$_MODULE$)); -}, -oncia_UnresolvedCall$$anonfun$wrappedOptional$1$lambda$_49_0 = $rt_classWithoutFields(), -oncia_UnresolvedCall$$anonfun$wrappedOptional$1$lambda$_49_0_apply = (var$0, var$1) => { - return var$1.$variable8; +let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_045.$name4; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6767)), var$1), $rt_s(7432)); + return jl_AbstractStringBuilder_toString(var$2); }; -function oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_87_0() { +function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_1() { jl_Object.call(this); - this.$_0894 = null; + this.$_0724 = null; } -let oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_87_0_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0894; - return oncius_TypeSpec_unwrapPotentialLists(oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply(oncias_SemanticAnalysisTooling_types$(var$2, var$2.$expression19), var$1)); -}, -oncia_Match$$anonfun$checkMatchMode$2$lambda$_124_0 = $rt_classWithoutFields(), -oncia_Match$$anonfun$checkMatchMode$2$lambda$_124_0_apply = (var$0, var$1) => { - var$1 = var$1; - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); +let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_1_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0724.$name4; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6767)), var$1), $rt_s(7433)); + return jl_AbstractStringBuilder_toString(var$2); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0() { - let a = this; jl_Object.call(a); - a.$_0404 = null; - a.$_1146 = null; - a.$_252 = null; +function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_2() { + jl_Object.call(this); + this.$_0173 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$0.$_0404; - var$2 = var$0.$_1146; - var$3 = var$0.$_252; - var$2 = oncia_ProjectionClause_runChecks$1(var$1, var$2); - var$4 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0; - var$4.$_0991 = var$1; - var$4.$_1343 = var$3; - return oncias_SemanticCheck_flatMap$(var$2, var$4); +let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_2_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0173.$name4; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(6767)), var$1), $rt_s(7434)); + return jl_AbstractStringBuilder_toString(var$2); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1() { - let a = this; jl_Object.call(a); - a.$_0981 = null; - a.$_1340 = null; +function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_3() { + jl_Object.call(this); + this.$_0811 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_3_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0981; - var$3 = oncias_Scope_symbolNames(var$0.$_1340); - var$3 = (oncias_Scope_symbolNames(var$1.$state.$currentScope.$elem0)).$intersect(var$3); - var$4 = sc_AbstractIterable_toMap((oncia_ReturnItems_returnVariables(var$2.$returnItems())).$explicitVariables.$map(new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0), s_$less$colon$less$_singleton); - var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1; - var$5.$_0612 = var$2; - var$5.$_1207 = var$4; - var$2 = var$3.$map(var$5); - return oncias_SemanticCheckResult__init_(var$1.$state, var$1.$errors0.$concat(var$2)); + var$2 = var$0.$_0811; + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$1, var$2.$position4); +}, +oncia_Match$$anonfun$checkMatchMode$2$lambda$_129_0 = $rt_classWithoutFields(), +oncia_Match$$anonfun$checkMatchMode$2$lambda$_129_0_apply = (var$0, var$1) => { + var$1 = var$1; + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2() { - let a = this; jl_Object.call(a); - a.$_0338 = null; - a.$_1122 = null; - a.$_246 = null; +function sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0() { + jl_Object.call(this); + this.$_0868 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$0.$_0338; - var$2 = var$0.$_1122; - var$3 = var$0.$_246; - var$2 = oncia_ProjectionClause_runChecks$1(var$1, var$2); - var$4 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0; - var$4.$_076 = var$1; - var$4.$_131 = var$3; - return oncias_SemanticCheck_map$(var$2, var$4); +let sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0_apply = var$0 => { + return sci_LazyList$LazyBuilder$DeferredState_eval(var$0.$_0868); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3() { +function sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1() { let a = this; jl_Object.call(a); - a.$_01126 = null; - a.$_1377 = null; - a.$_2125 = null; + a.$_0248 = null; + a.$_195 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$0.$_01126; - var$2 = var$0.$_1377; - var$3 = var$0.$_2125; - var$4 = oncia_ProjectionClause_runChecks$1(var$1, var$2); - var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0; - var$5.$_0904 = var$1; - var$5.$_1314 = var$2; - var$5.$_2104 = var$3; - return oncias_SemanticCheck_flatMap$(var$4, var$5); -}, -oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_0 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_0_apply0 = (var$0, var$1) => { - return var$1.$name(); +let sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1_apply = var$0 => { + return sci_LazyList$_$anonfun$stateFromIteratorConcatSuffix$1(var$0.$_0248, var$0.$_195); }; function oncias_SemanticPatternCheck$$anonfun$1() { sr_AbstractPartialFunction.call(this); @@ -353795,226 +281590,33 @@ let oncias_SemanticPatternCheck$$anonfun$1_applyOrElse = ($this, $x2, $default) onciu_InputPosition$_$callClinit(); return oncie_QuantifiedPath_copy($x2, var$4, $x$1, var$5, var$6, onciu_InputPosition$_NONE(onciu_InputPosition$_MODULE$)); }; -function sci_Stream$$anonfun$map$1$lambda$_95_0() { - let a = this; jl_Object.call(a); - a.$_0587 = null; - a.$_1202 = null; -} -let sci_Stream$$anonfun$map$1$lambda$_95_0_apply = var$0 => { - return sci_Stream_$anonfun$map$1(var$0.$_0587, var$0.$_1202); -}; -function sci_Stream$$collectedTail$lambda$_30_0() { - let a = this; jl_Object.call(a); - a.$_0154 = null; - a.$_159 = null; -} -let sci_Stream$$collectedTail$lambda$_30_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0154; - var$2 = var$0.$_159; - return sci_Stream_collect(var$1.$tail(), var$2); -}; -function sc_View$Appended() { - let a = this; sc_AbstractView.call(a); - a.$underlying21 = null; - a.$elem8 = null; -} -let sc_View$Appended_iterator = $this => { - let var$1, var$2, var$3; - var$1 = new sc_View$Concat; - var$2 = $this.$underlying21; - var$3 = new sc_View$Single; - var$3.$a11 = $this.$elem8; - sc_View$Concat__init_0(var$1, var$2, var$3); - return sc_View$Concat_iterator(var$1); -}, -sc_View$Appended_knownSize = $this => { - let $size; - $size = $this.$underlying21.$knownSize(); - if ($size < 0) - return (-1); - return $size + 1 | 0; -}, -sc_View$Appended__init_ = ($this, $underlying, $elem) => { - $this.$underlying21 = $underlying; - $this.$elem8 = $elem; -}, -sc_View$Appended__init_0 = (var_0, var_1) => { - let var_2 = new sc_View$Appended(); - sc_View$Appended__init_(var_2, var_0, var_1); - return var_2; -}; -function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$2$lambda$_3_0() { +function oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0() { jl_Object.call(this); - this.$_0287 = null; + this.$_0117 = null; } -let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$2$lambda$_3_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncir_Deprecations$SemanticallyDeprecatedFeatures_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1(var$1, var$0.$_0287.$allSymbolDefinitions$1)); +let oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(oncie_Expression$TreeAcc_inScope(var$0.$_0117, var$1)); }; -function sr_BooleanRef() { - jl_Object.call(this); - this.$elem6 = 0; -} -function sc_SeqOps$$anonfun$intersect$1$lambda$_139_0() { +function oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1() { jl_Object.call(this); - this.$_0128 = null; -} -let sc_SeqOps$$anonfun$intersect$1$lambda$_139_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - a: { - var$2 = var$0.$_0128; - var$3 = 0; - var$4 = null; - if (jl_Object_equals(s_None$_MODULE$, var$1)) { - var$2.$elem6 = 0; - var$1 = s_None$_MODULE$; - } else { - if (var$1 instanceof s_Some) { - var$3 = 1; - var$4 = var$1; - if (1 == sr_BoxesRunTime_unboxToInt(var$4.$value5)) { - var$1 = s_None$_MODULE$; - break a; - } - } - if (!var$3) - $rt_throw(s_MatchError__init_(var$1)); - var$5 = sr_BoxesRunTime_unboxToInt(var$4.$value5); - var$1 = s_Some__init_(jl_Integer_valueOf(var$5 - 1 | 0)); - } - } - return var$1; -}; -function sc_Iterator$$anon$8() { - let a = this; sc_AbstractIterator.call(a); - a.$traversedValues = null; - a.$nextElementDefined = 0; - a.$nextElement = null; - a.$$outer27 = null; - a.$f$11 = null; + this.$_0597 = null; } -let sc_Iterator$$anon$8_hasNext = $this => { - let $a; - a: { - while (true) { - if ($this.$nextElementDefined) - break a; - if (!$this.$$outer27.$hasNext()) - break; - $a = $this.$$outer27.$next(); - if (!scm_HashSet_add($this.$traversedValues, sc_SeqOps$distinct$lambda$_30_0_apply($this.$f$11, $a))) - continue; - else { - $this.$nextElement = $a; - $this.$nextElementDefined = 1; - break a; - } - } - return 0; - } - return 1; +let oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1_apply = (var$0, var$1) => { + return var$1.$concat1(var$0.$_0597); }, -sc_Iterator$$anon$8_next = $this => { - if (!sc_Iterator$$anon$8_hasNext($this)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - $this.$nextElementDefined = 0; - return $this.$nextElement; -}; -function sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0() { - let a = this; jl_Object.call(a); - a.$_0207 = null; - a.$_179 = null; -} -let sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0207; - var$2 = var$0.$_179; - sci_LazyList$_$callClinit(); - var$1 = var$1.$elem; - var$3 = sr_ObjectRef__init_(var$1); - var$1 = new sci_LazyList$$$anonfun$flatMapImpl$3$lambda$_50_0; - var$1.$_01024 = var$3; - var$1.$_1350 = var$2; - return sci_LazyList_scala$collection$immutable$LazyList$$state(sci_LazyList__init_(var$1)); -}; -function sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1() { - let a = this; jl_Object.call(a); - a.$_0750 = null; - a.$_1256 = null; -} -let sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1_apply = var$0 => { - return sci_LazyList$_$anonfun$flatMapImpl$1(var$0.$_0750, var$0.$_1256); -}; -function sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2() { +oncia_SetPropertyItems = $rt_classWithoutFields(); +function onciap_Prettifier$$anonfun$prettifySetItems$1$lambda$_61_0() { let a = this; jl_Object.call(a); - a.$_0107 = null; - a.$_143 = null; -} -let sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2_apply = var$0 => { - return sci_LazyList$_$anonfun$stateFromIteratorConcatSuffix$1(var$0.$_0107, var$0.$_143); -}; -function sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0() { - jl_Object.call(this); - this.$_01114 = null; -} -let sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0_apply = var$0 => { - return var$0.$_01114; -}; -function sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1() { - jl_Object.call(this); - this.$_0389 = null; -} -let sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1_apply = var$0 => { - return sci_LazyList$_$anonfun$continually$1(var$0.$_0389); -}; -function oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_0() { - jl_Object.call(this); - this.$_01020 = null; -} -let oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_0_apply = (var$0, var$1) => { - return oncias_SemanticCheckResult__init_(var$1, var$0.$_01020.$pattern7.$patternParts0.$collect(new oncia_Match$$anonfun$7)); -}; -function oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_1() { - jl_Object.call(this); - this.$_0403 = null; -} -let oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0403; - if (var$2.$pattern7.$patternParts0.$length() <= 1) { - s_package$_$callClinit(); - var$2 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); - } else { - s_Option$_$callClinit(); - var$3 = s_Option$_MODULE$; - var$2 = var$2.$pattern7.$patternParts0.$find3(new oncia_Match$checkDifferentRelationships$lambda$_73_0); - var$4 = new oncia_Match$checkDifferentRelationships$lambda$_73_1; - var$4.$_0990 = var$1; - var$2 = (s_Option$_option2Iterable(var$3, s_Option_map(var$2, var$4))).$toSeq(); - } - return oncias_SemanticCheckResult__init_(var$1, var$2); -}; -function oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0() { - jl_Object.call(this); - this.$_01154 = null; -} -let oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0_apply = (var$0, var$1) => { - return var$1.$appended(var$0.$_01154); -}; -function oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$4$lambda$_5_0() { - jl_Object.call(this); - this.$_0537 = null; + a.$_01167 = null; + a.$_1397 = null; } -let oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$4$lambda$_5_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncir_Deprecations$SemanticallyDeprecatedFeatures_org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1(var$1, var$0.$_0537.$allSymbolDefinitions$1)); -}; function oncil_NodeLabels$KnownLabels() { jl_Object.call(this); this.$labelNames = null; } let oncil_NodeLabels$KnownLabels_productPrefix = $this => { - return $rt_s(7871); + return $rt_s(7435); }, oncil_NodeLabels$KnownLabels_productArity = $this => { return 1; @@ -354064,95 +281666,230 @@ oncil_NodeLabels$KnownLabels_equals = ($this, $x$1) => { } return var$3; }; -function oncifp_VariableReferenceCheck$$anonfun$1() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer74 = null; - a.$allSymbolDefinitions$10 = null; +function oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_0() { + jl_Object.call(this); + this.$_0916 = null; } -let oncifp_VariableReferenceCheck$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let $maybeVariable, $maybeProperties, $variable; - if ($x1 instanceof oncie_NodePattern) { - $x1 = $x1; - $maybeVariable = $x1.$variable6; - $maybeProperties = $x1.$properties5; - $x1 = new oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0; - $x1.$_0246 = $this; - $x1.$_195 = $maybeVariable; - $x1.$_238 = $maybeProperties; - return $x1; +let oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_0_apply = (var$0, var$1) => { + return oncias_SemanticCheckResult__init_(var$1, var$0.$_0916.$pattern7.$patternParts0.$collect(new oncia_Match$$anonfun$7)); +}; +function oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_1() { + jl_Object.call(this); + this.$_0538 = null; +} +let oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0538; + if (var$2.$pattern7.$patternParts0.$length() <= 1) { + s_package$_$callClinit(); + var$2 = sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); + } else { + s_Option$_$callClinit(); + var$3 = s_Option$_MODULE$; + var$2 = var$2.$pattern7.$patternParts0.$find2(new oncia_Match$checkDifferentRelationships$lambda$_78_0); + var$4 = new oncia_Match$checkDifferentRelationships$lambda$_78_1; + var$4.$_0714 = var$1; + var$2 = (s_Option$_option2Iterable(var$3, s_Option_map(var$2, var$4))).$toSeq(); } - if (!($x1 instanceof oncie_RelationshipPattern)) { - if (!($x1 instanceof oncie_NamedPatternPart)) - return s_PartialFunction$_fallback_fn; - $variable = $x1.$variable7; - $x1 = new oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2; - $x1.$_0213 = $variable; - return $x1; + return oncias_SemanticCheckResult__init_(var$1, var$2); +}; +function oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0() { + jl_Object.call(this); + this.$_0948 = null; +} +let oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0_apply = (var$0, var$1) => { + return var$1.$incl(var$0.$_0948); +}; +function s_PartialFunction$runWith$lambda$_22_0() { + let a = this; jl_Object.call(a); + a.$_01146 = null; + a.$_1390 = null; +} +let s_PartialFunction$runWith$lambda$_22_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_01146; + var$3 = var$0.$_1390; + s_PartialFunction$_$callClinit(); + var$1 = var$2.$applyOrElse(var$1, s_PartialFunction$_scala$PartialFunction$$checkFallback(s_PartialFunction$_MODULE$)); + if (s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, var$1)) + var$4 = 0; + else { + var$3.$apply2(var$1); + var$4 = 1; } - $x1 = $x1; - $maybeVariable = $x1.$variable5; - $maybeProperties = $x1.$properties4; - $x1 = new oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1; - $x1.$_0780 = $this; - $x1.$_1261 = $maybeVariable; - $x1.$_286 = $maybeProperties; - return $x1; + return jl_Boolean_valueOf(var$4); }; -function sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0() { +function oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_93_0() { let a = this; jl_Object.call(a); - a.$_0931 = null; - a.$_1328 = null; + a.$_0683 = null; + a.$_1232 = null; } -let sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0_apply = var$0 => { - return sci_Stream_$anonfun$lazyAppendedAll$1(var$0.$_0931, var$0.$_1328); +let oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_93_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0683; + var$3 = var$0.$_1232; + var$4 = oncia_SubqueryCall_returnToOuterScope$(var$2, var$3.$state.$currentScope); + var$5 = new oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_92_0; + var$5.$_0955 = var$2; + var$5.$_1328 = var$1; + var$5.$_2113 = var$3; + return oncias_SemanticCheck_flatMap$(var$4, var$5); }, oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$5$lambda$_16_0 = $rt_classWithoutFields(), oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$5$lambda$_16_0_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - oncil_SolvableLabelExpression$_$callClinit(); return oncil_SolvableLabelExpression_and(var$1, var$2); }, oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$9$lambda$_20_0 = $rt_classWithoutFields(), oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$9$lambda$_20_0_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - oncil_SolvableLabelExpression$_$callClinit(); return oncil_SolvableLabelExpression_or(var$1, var$2); }; -function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_96_0() { +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0() { let a = this; jl_Object.call(a); - a.$_0186 = null; - a.$_172 = null; - a.$_231 = null; + a.$_0981 = null; + a.$_1336 = null; +} +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0981; + var$3 = var$0.$_1336; + oncias_SemanticCheck$_$callClinit(); + var$4 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_newSiblingScope(oncias_SemanticState_popScope(var$1.$state))); + var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0; + var$5.$_066 = var$2; + var$5.$_125 = var$3; + var$5.$_213 = var$1; + return oncias_SemanticCheck_flatMap$(var$4, var$5); +}, +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0 = $rt_classWithoutFields(), +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + return s_Predef$ArrowAssoc$_$minus$greater$extension(var$2, var$1.$name4, var$1); +}; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1() { + let a = this; jl_Object.call(a); + a.$_0603 = null; + a.$_1202 = null; +} +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0603; + var$3 = var$0.$_1202; + var$4 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$16$lambda$_53_0; + var$4.$_0403 = var$2; + var$2 = (var$3.$getOrElse1(var$1, var$4)).$position(); + oncias_SemanticError$_$callClinit(); + var$3 = ong_GqlHelper_getGql42001_42N07(var$1, var$2.$offset(), var$2.$line(), var$2.$column()); + var$4 = new oncias_SemanticError; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(868)), var$1), $rt_s(7436)); + oncias_SemanticError__init_(var$4, var$3, jl_AbstractStringBuilder_toString(var$5), var$2); + return var$4; +}; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0() { + let a = this; jl_Object.call(a); + a.$_072 = null; + a.$_126 = null; +} +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_072; + var$3 = var$0.$_126; + var$4 = var$1.$errors0; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = oncias_SemanticState$ScopeLocation$_symbolNames$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$3.$currentScope); + var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$12$lambda$_49_0; + var$5.$_0179 = var$2; + var$5.$_164 = var$3; + var$2 = var$4.$map(var$5); + return oncias_SemanticCheckResult__init_(var$1.$state, var$2); +}; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0() { + let a = this; jl_Object.call(a); + a.$_0887 = null; + a.$_1300 = null; + a.$_298 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_96_0_apply = (var$0, var$1) => { +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6; - var$1 = var$0.$_0186; - var$2 = var$0.$_172; - var$3 = var$0.$_231; - var$4 = var$2.$state; + var$1 = var$1; + var$2 = var$0.$_0887; + var$3 = var$0.$_1300; + var$4 = var$0.$_298; oncias_SemanticCheck$_$callClinit(); - var$5 = oncias_SemanticCheck$_MODULE$; - var$6 = new oncia_ScopeClauseSubqueryCall$importVariables$lambda$_73_0; - var$6.$_0799 = var$1; - var$6.$_1270 = var$4; - var$6 = oncias_SemanticCheck$_fromState(var$5, var$6); - var$5 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_95_0; - var$5.$_0800 = var$1; - var$5.$_1271 = var$3; - var$5.$_288 = var$2; - return oncias_SemanticCheck_flatMap$(var$6, var$5); + var$5 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_popScope(var$1.$state)); + var$6 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0; + var$6.$_0631 = var$2; + var$6.$_1212 = var$3; + var$6.$_271 = var$1; + var$6.$_324 = var$4; + return oncias_SemanticCheck_flatMap$(var$5, var$6); }; -function sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0() { +function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_100_0() { + let a = this; jl_Object.call(a); + a.$_0849 = null; + a.$_1286 = null; + a.$_291 = null; +} +let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_100_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$1; + var$2 = var$0.$_0849; + var$3 = var$0.$_1286; + var$4 = var$0.$_291; + var$1 = var$2.$innerQuery0.$semanticCheckInSubqueryContext(var$1.$state, var$3.$state); + var$5 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_99_0; + var$5.$_0595 = var$2; + var$5.$_1200 = var$3; + var$5.$_266 = var$4; + return oncias_SemanticCheck_flatMap$(var$1, var$5); +}, +s_Product2$mcII$sp = $rt_classWithoutFields(0); +function s_Tuple2$mcII$sp() { + let a = this; s_Tuple2.call(a); + a.$_1$mcI$sp0 = 0; + a.$_2$mcI$sp0 = 0; +} +let s_Tuple2$mcII$sp__2 = $this => { + return jl_Integer_valueOf($this.$_2$mcI$sp0); +}, +s_Tuple2$mcII$sp__1 = $this => { + return jl_Integer_valueOf($this.$_1$mcI$sp0); +}; +function oncius_TypeRange$checkForAny$lambda$_10_0() { jl_Object.call(this); - this.$_01086 = null; + this.$_01129 = null; } -let sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0_apply = var$0 => { - return sci_List$_newBuilder(sci_List_iterableFactory(var$0.$_01086)); +let oncius_TypeRange$checkForAny$lambda$_10_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$2 = var$0.$_01129; + if (var$1 instanceof oncius_AnyType) + var$3 = 1; + else if (!(var$1 instanceof oncius_ListType)) + var$3 = 0; + else { + var$1 = var$1; + var$3 = sr_BoxesRunTime_unboxToBoolean(oncius_TypeRange$checkForAny$lambda$_10_0_apply(oncius_TypeRange_checkForAny(var$2), var$1.$innerType)); + } + return jl_Boolean_valueOf(var$3); +}; +function sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0() { + jl_Object.call(this); + this.$_071 = null; +} +let sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0_apply = var$0 => { + return sci_LazyList$LazyBuilder$DeferredState_eval(var$0.$_071); }, -oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_120_0 = $rt_classWithoutFields(), -oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_120_0_apply = (var$0, var$1) => { +oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_125_0 = $rt_classWithoutFields(), +oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_125_0_apply = (var$0, var$1) => { return var$1.$name4; }, oncius_TypeSpec$$anonfun$unwrapLists$1$lambda$_65_0 = $rt_classWithoutFields(), @@ -354168,41 +281905,13 @@ oncius_TypeSpec$$anonfun$wrapInList$1$lambda$_60_0_apply = (var$0, var$1) => { oncius_package$_$callClinit(); return oncius_package$_CTList(oncius_package$_MODULE$, var$1); }; -function oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_0() { - let a = this; jl_Object.call(a); - a.$_01108 = null; - a.$_1371 = null; -} -let oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_01108; - var$3 = var$0.$_1371; - var$4 = new oncia_SetLabelItem; - var$5 = sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$); - s_package$_$callClinit(); - oncia_SetLabelItem__init_0(var$4, var$2, var$5, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), 1, var$3.$position31); - return var$4; -}; -function oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_1() { - let a = this; jl_Object.call(a); - a.$_0510 = null; - a.$_1178 = null; +function oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0() { + jl_Object.call(this); + this.$_0617 = null; } -let oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0510; - var$3 = var$0.$_1178; - var$4 = new oncia_SetLabelItem; - s_package$_$callClinit(); - oncia_SetLabelItem__init_0(var$4, var$2, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)), sci_$colon$colon__init_(var$1, sci_Nil$_MODULE$), 1, var$3.$position31); - return var$4; -}, -oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_2 = $rt_classWithoutFields(), -oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_2_apply = (var$0, var$1) => { +let oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0_apply = (var$0, var$1) => { var$1 = var$1; - return jl_Integer_valueOf(!sc_IterableOnceOps_nonEmpty$(var$1.$labels2) ? ((var$1.$dynamicLabels.$head()).$position()).$column() : (var$1.$labels2.$head()).$position62.$column()); + return oncius_TypeRange_leastUpperBounds(var$0.$_0617, var$1); }, oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1_applyOrElse = ($this, $x1, $default) => { @@ -354223,838 +281932,1214 @@ oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1 = $rt_classWithout oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1_applyOrElse = ($this, $x1, $default) => { let $id; if ($x1 instanceof oncie_NodePattern) { - $x1 = $x1.$variable6; - if ($x1 instanceof s_Some) { - $id = $x1.$value5; + $id = $x1.$variable6; + if ($id instanceof s_Some) { + $id = $id.$value5; $x1 = new oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0; - $x1.$_017 = $id; + $x1.$_011 = $id; return $x1; } } - return s_PartialFunction$_fallback_fn; + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); +}, +oncius_TypeRange$$anonfun$contains$4$lambda$_36_0 = $rt_classWithoutFields(), +oncius_TypeRange$$anonfun$contains$4$lambda$_36_0_apply$mcZ$sp = var$0 => { + return 0; }; -function oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0() { +function oncius_TypeRange$$anonfun$contains$4$lambda$_36_1() { jl_Object.call(this); - this.$_0628 = null; + this.$_0998 = null; } -let oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0_apply = (var$0, var$1) => { +let oncius_TypeRange$$anonfun$contains$4$lambda$_36_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isAssignableFrom0(var$0.$_0998)); +}; +function sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0() { + let a = this; jl_Object.call(a); + a.$_0210 = null; + a.$_178 = null; +} +let sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0_apply = var$0 => { + return sci_LazyList$_$anonfun$stateFromIteratorConcatSuffix$1(var$0.$_0210, var$0.$_178); +}; +function sci_LazyList$takeImpl$lambda$_90_0() { + let a = this; jl_Object.call(a); + a.$_053 = null; + a.$_121 = 0; +} +let sci_LazyList$takeImpl$lambda$_90_0_apply = var$0 => { + return sci_LazyList_$anonfun$takeImpl$1(var$0.$_053, var$0.$_121); +}; +function oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_70_0() { + let a = this; jl_Object.call(a); + a.$_0562 = null; + a.$_1191 = null; +} +let oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_70_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_0562; + var$3 = var$0.$_1191; + oncias_SemanticPatternCheck$_$callClinit(); + var$4 = var$1.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + var$4 = (var$4.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$2))).$location; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$5 = (oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$4)).$dependencies0; + return oncias_SemanticPatternCheck$_ensureNoReferencesOutFromPatternElement(oncias_SemanticPatternCheck$_MODULE$, var$3, var$2, var$5, $rt_s(6607)); +}; +function oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_71_0() { + let a = this; jl_Object.call(a); + a.$_0656 = null; + a.$_1223 = null; +} +let oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_71_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$0.$_0656; + var$3 = var$0.$_1223; + oncias_SemanticPatternCheck$_$callClinit(); + var$4 = var$1.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + var$5 = (var$4.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_(var$2)))).$location; + var$4 = (var$1.$recordedScopes0.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_(var$2)))).$location; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$4 = (oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$4)).$declarations.$removedAll((oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$5)).$declarations); + var$1 = (var$1.$recordedScopes0.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$2))).$location; + var$4 = (oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$1)).$dependencies0.$removedAll(var$4); + return oncias_SemanticPatternCheck$_ensureNoReferencesOutFromPatternElement(oncias_SemanticPatternCheck$_MODULE$, var$3, var$2, var$4, $rt_s(7437)); +}; +function oncia_connectedComponents$RichConnectedComponent() { + jl_Object.call(this); + this.$connectedComponent = null; +} +let oncia_connectedComponents$RichConnectedComponent_connectedTo = ($this, $part) => { + let var$2, var$3; + var$2 = $this.$connectedComponent; + var$3 = new oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0; + var$3.$_0316 = $part; + return var$2.$exists(var$3); +}; +function oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0() { + jl_Object.call(this); + this.$_0994 = null; +} +let oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0_apply = (var$0, var$1) => { var$1 = var$1; - return oncius_TypeRange_leastUpperBounds(var$0.$_0628, var$1); + return jl_Boolean_valueOf(s_Option_isDefined(oncius_TypeRange_constrain(var$0.$_0994, var$1.$lower0))); }; -function oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0() { +function oncia_ReturnItems$declareVariables$lambda$_68_0() { jl_Object.call(this); - this.$_0258 = null; + this.$_0188 = null; } -let oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0_apply = (var$0, var$1) => { +let oncia_ReturnItems$declareVariables$lambda$_68_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0188; + var$2 = oncias_package$_MODULE$; + var$3 = new oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_89_0; + var$3.$_0559 = var$1; + return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); +}; +function oncia_ReturnItems$declareVariables$lambda$_68_1() { + let a = this; jl_Object.call(a); + a.$_0841 = null; + a.$_1282 = null; +} +let oncia_ReturnItems$declareVariables$lambda$_68_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; + a: { + var$1 = var$1; + var$2 = var$0.$_0841; + var$3 = var$0.$_1282; + var$4 = 0; + var$5 = null; + var$6 = var$1.$alias(); + if (var$6 instanceof s_Some) + b: { + c: { + var$4 = 1; + var$5 = var$6; + var$7 = var$5.$value5; + var$8 = var$1.$expression0(); + if (var$8 !== null) { + if (!var$8.$equals(var$7)) + break b; + else + break c; + } + if (var$7 !== null) + break b; + } + var$3 = oncias_Scope_symbol(var$3, var$7.$name4); + var$1 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(var$2, var$7, oncias_SemanticAnalysisTooling_types$(var$2, var$1.$expression0()), var$3, 1)); + break a; + } + if (!var$4) { + if (!jl_Object_equals(s_None$_MODULE$, var$6)) + $rt_throw(s_MatchError__init_(var$6)); + var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_91_0); + } else { + var$3 = var$5.$value5; + var$1 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(var$2, var$3, oncias_SemanticAnalysisTooling_types$(var$2, var$1.$expression0()), s_None$_MODULE$, 1)); + } + } + return var$1; +}, +jl_StackOverflowError = $rt_classWithoutFields(jl_VirtualMachineError), +sci_Stream$$newBuilder$lambda$_23_0 = $rt_classWithoutFields(), +sci_Stream$$newBuilder$lambda$_23_0_apply = (var$0, var$1) => { + var$1 = var$1; + return sci_Stream$_from(sci_Stream$_MODULE$, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_0() { + jl_Object.call(this); + this.$_0480 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString3(var$0.$_0480, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_1() { + jl_Object.call(this); + this.$_01138 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_1_apply = (var$0, var$1) => { var$1 = var$1; - return oncius_TypeRange_intersect(var$0.$_0258, var$1); + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_01138, var$1); }, -oncius_TypeRange$$anonfun$contains$4$lambda$_36_0 = $rt_classWithoutFields(), -oncius_TypeRange$$anonfun$contains$4$lambda$_36_0_apply$mcZ$sp = var$0 => { - return 0; +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_2_apply = var$0 => { + return $rt_s(4); }; -function oncius_TypeRange$$anonfun$contains$4$lambda$_36_1() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_3() { jl_Object.call(this); - this.$_01005 = null; + this.$_0951 = null; } -let oncius_TypeRange$$anonfun$contains$4$lambda$_36_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isAssignableFrom0(var$0.$_01005)); +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_3_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString1(var$0.$_0951, var$1); }; -function oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_00() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_4() { jl_Object.call(this); - this.$_0511 = null; + this.$_0413 = null; } -let oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0_apply0 = var$0 => { - return (var$0.$_0511.$items0.$map(new oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_00)).$toList(); +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_4_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0413, var$1); }, -oncius_TypeSpec$innerTypeRanges$lambda$_49_0 = $rt_classWithoutFields(), -oncius_TypeSpec$innerTypeRanges$lambda$_49_0_apply = (var$0, var$1) => { +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_5 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_5_apply = var$0 => { + return $rt_s(4); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_6() { + jl_Object.call(this); + this.$_0815 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_6_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString0(var$0.$_0815, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_7() { + jl_Object.call(this); + this.$_0277 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_7_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0277, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_8 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_8_apply = var$0 => { + return $rt_s(4); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0() { + jl_Object.call(this); + this.$_0996 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString3(var$0.$_0996, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1() { + jl_Object.call(this); + this.$_0379 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0379, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_2_apply = var$0 => { + return $rt_s(4); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3() { + jl_Object.call(this); + this.$_0543 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString1(var$0.$_0543, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4() { + jl_Object.call(this); + this.$_01064 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_01064, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_5 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_5_apply = var$0 => { + return $rt_s(4); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_6() { + jl_Object.call(this); + this.$_0100 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_6_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString0(var$0.$_0100, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_7() { + jl_Object.call(this); + this.$_0623 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_7_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0623, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_8 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_8_apply = var$0 => { + return $rt_s(4); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_9() { + jl_Object.call(this); + this.$_0799 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_9_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0799, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_10() { + jl_Object.call(this); + this.$_0748 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_10_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0748, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_11 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_11_apply = var$0 => { + return $rt_s(4); +}, +oncie_ExtractScope$scopeDependencies$lambda$_9_0 = $rt_classWithoutFields(), +oncie_ExtractScope$scopeDependencies$lambda$_9_0_apply = var$0 => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; +}, +oncie_ExtractScope$scopeDependencies$lambda$_9_1 = $rt_classWithoutFields(), +oncie_ExtractScope$scopeDependencies$lambda$_9_1_apply = (var$0, var$1) => { + return var$1.$dependencies(); +}, +oncie_ExtractScope$scopeDependencies$lambda$_9_2 = $rt_classWithoutFields(), +oncie_ExtractScope$scopeDependencies$lambda$_9_2_apply = var$0 => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; +}, +oncie_ExtractScope$scopeDependencies$lambda$_9_3 = $rt_classWithoutFields(), +oncie_ExtractScope$scopeDependencies$lambda$_9_3_apply = (var$0, var$1) => { + return var$1.$dependencies(); +}, +oncie_FilterScope$scopeDependencies$lambda$_8_0 = $rt_classWithoutFields(), +oncie_FilterScope$scopeDependencies$lambda$_8_0_apply = var$0 => { + s_Predef$_$callClinit(); + s_Predef$_Set(s_Predef$_MODULE$); + return sci_Set$EmptySet$_MODULE$; +}, +oncie_FilterScope$scopeDependencies$lambda$_8_1 = $rt_classWithoutFields(), +oncie_FilterScope$scopeDependencies$lambda$_8_1_apply = (var$0, var$1) => { + return var$1.$dependencies(); +}; +function oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0() { + jl_Object.call(this); + this.$_0316 = null; +} +let oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1.$intersect(var$0.$_0316))); +}; +function oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0933 = null; +} +let oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; a: { var$1 = var$1; - if (var$1 !== null) { - var$2 = var$1.$lower0; - var$3 = var$1.$upper0; - if (var$2 instanceof oncius_ListType) { - var$2 = var$2; - if (var$3 instanceof s_Some) { - var$3 = var$3.$value5; - if (var$3 instanceof oncius_ListType) { - var$4 = var$3; - var$3 = new s_Some; - oncius_TypeRange$_$callClinit(); - s_Some__init_0(var$3, oncius_TypeRange$_apply(oncius_TypeRange$_MODULE$, var$2.$innerType, var$4.$innerType)); - break a; - } - } - } - } - if (var$1 !== null) { - var$3 = var$1.$lower0; - var$4 = var$1.$upper0; - if (var$3 instanceof oncius_ListType) { - var$2 = var$3; - if (jl_Object_equals(s_None$_MODULE$, var$4)) { - var$3 = s_Some__init_(oncius_TypeRange__init_(var$2.$innerType, s_None$_MODULE$)); - break a; - } - } - } - if (var$1 !== null) { - var$2 = var$1.$upper0; - if (var$1.$lower0 instanceof oncius_AnyType && var$2 instanceof s_Some) { - var$3 = var$2.$value5; - if (var$3 instanceof oncius_ListType) { - var$1 = var$3; - var$3 = new s_Some; - oncius_TypeRange$_$callClinit(); - var$2 = oncius_TypeRange$_MODULE$; - oncius_package$_$callClinit(); - s_Some__init_0(var$3, oncius_TypeRange$_apply(var$2, oncius_package$_CTAny(oncius_package$_MODULE$), var$1.$innerType)); - break a; + var$2 = var$0.$_0933; + if (var$1 instanceof oncie_Variable) { + var$3 = var$2.$occurrencesToReplace$1; + onciu_Ref$_$callClinit(); + if (var$3.$contains(onciu_Ref$_apply(onciu_Ref$_MODULE$, var$1))) { + var$2 = oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0_apply(var$2.$replacement$1); + if (!(var$2 instanceof oncie_LogicalVariable)) { + var$2 = new jl_IllegalStateException; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7438)), var$1), $rt_s(7439)); + jl_Throwable__init_(var$2, jl_AbstractStringBuilder_toString(var$4)); + $rt_throw(var$2); } - } - } - if (var$1 !== null) { - var$2 = var$1.$upper0; - if (var$1.$lower0 instanceof oncius_AnyType && jl_Object_equals(s_None$_MODULE$, var$2)) { - var$3 = s_Some__init_(var$1); break a; } } - var$3 = s_None$_MODULE$; + var$2 = var$1; } - return var$3; + return var$2; }; -function oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_67_0() { +function jusi_SimpleStreamIterator() { let a = this; jl_Object.call(a); - a.$_0901 = null; - a.$_1312 = null; + a.$stream1 = null; + a.$lastElement = null; + a.$state1 = 0; +} +let jusi_SimpleStreamIterator_fetchIfNeeded = $this => { + let var$1, var$2; + if ($this.$state1) + return; + $this.$state1 = 0; + while (!$this.$state1) { + var$1 = $this.$stream1; + var$2 = new jusi_SimpleStreamIterator$fetchIfNeeded$lambda$_4_0; + var$2.$_01093 = $this; + if (!jusi_StreamOverSpliterator_next(var$1, var$2)) { + if ($this.$state1) + $this.$state1 = 2; + else + $this.$state1 = 3; + $this.$stream1 = null; + } + } +}, +ju_EmptyStackException = $rt_classWithoutFields(jl_RuntimeException); +function oncius_TypeRange$intersect$lambda$_12_0() { + let a = this; jl_Object.call(a); + a.$_0303 = null; + a.$_1110 = null; } -let oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_67_0_apply = (var$0, var$1) => { +let oncius_TypeRange$intersect$lambda$_12_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0901; - var$3 = var$0.$_1312; - oncias_SemanticPatternCheck$_$callClinit(); - var$4 = var$1.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - var$4 = (var$4.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$2))).$location; - var$5 = (oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$4)).$dependencies0; - return oncias_SemanticPatternCheck$_ensureNoReferencesOutFromPatternElement(oncias_SemanticPatternCheck$_MODULE$, var$3, var$2, var$5, $rt_s(6979)); + var$1 = var$1; + var$2 = var$0.$_0303; + var$3 = var$0.$_1110; + var$4 = var$2.$upper0; + var$2 = new oncius_TypeRange$$anonfun$intersect$1$lambda$_42_0; + var$2.$_090 = var$3; + var$5 = new oncius_TypeRange$$anonfun$intersect$1$lambda$_42_1; + var$5.$_0581 = var$3; + var$3 = s_Option_fold(var$4, var$2, var$5); + return s_Option_isDefined(var$3) && !var$1.$isAssignableFrom0(var$3.$get1()) ? s_None$_MODULE$ : s_Some__init_(oncius_TypeRange__init_(var$1, var$3)); +}, +oncia_CatalogName$asCanonicalNameString$lambda$_11_0 = $rt_classWithoutFields(), +oncia_CatalogName$asCanonicalNameString$lambda$_11_0_apply = (var$0, var$1) => { + var$1 = var$1; + oncia_CatalogName$_$callClinit(); + return oncia_CatalogName$_quote(oncia_CatalogName$_MODULE$, var$1); }; -function oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_68_0() { - let a = this; jl_Object.call(a); - a.$_0782 = null; - a.$_1262 = null; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_0() { + jl_Object.call(this); + this.$_0361 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0361, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_1() { + jl_Object.call(this); + this.$_0865 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0865, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_2_apply = var$0 => { + return $rt_s(4); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_3() { + jl_Object.call(this); + this.$_01056 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_3_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString10(var$0.$_01056, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_4() { + jl_Object.call(this); + this.$_0148 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_4_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0148, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_0() { + jl_Object.call(this); + this.$_0467 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString8(var$0.$_0467, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_1 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_12_1_apply = var$0 => { + return $rt_s(4); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_0() { + jl_Object.call(this); + this.$_0281 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString8(var$0.$_0281, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_1 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_1_apply = var$0 => { + return $rt_s(4); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_2() { + jl_Object.call(this); + this.$_0163 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_13_2_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_DefaultExpressionStringifier_apply(var$0.$_0163.$$outer.$expr1, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_0() { + jl_Object.call(this); + this.$_0853 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString3(var$0.$_0853, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_1() { + jl_Object.call(this); + this.$_036 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString0(var$0.$_036, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_2() { + jl_Object.call(this); + this.$_0673 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_2_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString1(var$0.$_0673, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_3() { + jl_Object.call(this); + this.$_0151 = null; } -let oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_68_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$2 = var$0.$_0782; - var$3 = var$0.$_1262; - oncias_SemanticPatternCheck$_$callClinit(); - var$4 = var$1.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - var$5 = (var$4.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath__init_(var$2)))).$location; - var$4 = (var$1.$recordedScopes0.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath__init_(var$2)))).$location; - var$4 = (oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$4)).$declarations.$removedAll((oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$5)).$declarations); - var$1 = (var$1.$recordedScopes0.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, var$2))).$location; - var$4 = (oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$1)).$dependencies0.$removedAll(var$4); - return oncias_SemanticPatternCheck$_ensureNoReferencesOutFromPatternElement(oncias_SemanticPatternCheck$_MODULE$, var$3, var$2, var$4, $rt_s(7872)); -}, -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_0 = $rt_classWithoutFields(), -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_0_apply = var$0 => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_1 = $rt_classWithoutFields(), -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_1_apply = (var$0, var$1) => { - return var$1.$dependencies(); -}, -oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_45_0 = $rt_classWithoutFields(), -oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_45_0_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_3_apply = (var$0, var$1) => { var$1 = var$1; - oncia_ASTSlicingPhrase$_$callClinit(); - return var$1.$position4; + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0151, var$1); }; -function oncia_connectedComponents$RichConnectedComponent() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_4() { jl_Object.call(this); - this.$connectedComponent = null; + this.$_01050 = null; } -let oncia_connectedComponents$RichConnectedComponent_connectedTo = ($this, $part) => { - let var$2, var$3; - var$2 = $this.$connectedComponent; - var$3 = new oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0; - var$3.$_0326 = $part; - return var$2.$exists(var$3); +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_4_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_01050, var$1); }; -function oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_5() { jl_Object.call(this); - this.$_01001 = null; + this.$_0531 = null; } -let oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_26_5_apply = (var$0, var$1) => { var$1 = var$1; - return jl_Boolean_valueOf(s_Option_isDefined(oncius_TypeRange_constrain(var$0.$_01001, var$1.$lower0))); + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0531, var$1); }, -onciap_Prettifier$labelsString$lambda$_35_0 = $rt_classWithoutFields(), -onciap_Prettifier$labelsString$lambda$_35_0_apply = (var$0, var$1) => { - let var$2; +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_0 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_0_apply = (var$0, var$1) => { + return var$1.$filter1(new onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_117_0); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_1() { + jl_Object.call(this); + this.$_0939 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_1_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 58); - jl_StringBuilder_append(var$2, var$1); - return jl_AbstractStringBuilder_toString(var$2); + var$2 = var$0.$_0939; + var$3 = new onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_119_0; + var$3.$_0290 = var$2; + return sc_IterableOnceOps_mkString$(var$1.$map(var$3), $rt_s(40), $rt_s(45), $rt_s(42)); }, -onciap_Prettifier$isLabelsString$lambda$_36_0 = $rt_classWithoutFields(), -onciap_Prettifier$isLabelsString$lambda$_36_0_apply = (var$0, var$1) => { - let var$2; +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_2_apply = var$0 => { + return $rt_s(4); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_3 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_3_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1.$items2)); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_4() { + jl_Object.call(this); + this.$_0300 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_4_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; + var$2 = var$0.$_0300; + var$3 = var$1.$items2; + var$4 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0; + var$4.$_0236 = var$2; + var$4 = sc_AbstractIterable_mkString(var$3.$map(var$4), $rt_s(45)); + var$3 = onciap_Prettifier$IndentingQueryPrettifier_indented(var$2); + var$5 = var$1.$where10; + var$1 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1; + var$1.$_0858 = var$3; + var$1 = s_Option_map(var$5, var$1); + var$3 = new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2; + var$3.$_0189 = var$2; + var$1 = s_Option_getOrElse(s_Option_map(var$1, var$3), new onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3); + var$3 = var$2.$INDENT; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(var$2, 58); - jl_StringBuilder_append(var$2, var$1); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(643)), var$4), var$1); return jl_AbstractStringBuilder_toString(var$2); -}, -oncifp_SelfReferenceCheckWithinPatternPart$createError$lambda$_10_0 = $rt_classWithoutFields(), -oncifp_SelfReferenceCheckWithinPatternPart$createError$lambda$_10_0_apply = (var$0, var$1) => { - return oncius_TypeSpec_toShortString(var$1); }; -function onciap_Prettifier$labelsOrderedSeq$lambda$_37_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_5() { jl_Object.call(this); - this.$_0490 = null; + this.$_0739 = null; } -let onciap_Prettifier$labelsOrderedSeq$lambda$_37_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0490; - if (var$1 instanceof oncie_LabelName) { - var$3 = var$1; - var$1 = s_Tuple2__init_(jl_String_valueOf(onciap_DefaultExpressionStringifier_apply0(var$2.$expr1, var$3)), var$3.$position62); - } else { - if (!(var$1 instanceof oncie_Expression)) { - var$2 = new jl_IllegalStateException; - jl_Throwable__init_0(var$2, $rt_s(7873)); - $rt_throw(var$2); - } - var$3 = var$1; - var$1 = new s_Tuple2; - var$2 = onciap_DefaultExpressionStringifier_apply(var$2.$expr1, var$3); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(499)), var$2), 41); - s_Tuple2__init_0(var$1, jl_AbstractStringBuilder_toString(var$4), var$3.$position()); - } - return var$1; -}, -onciap_Prettifier$labelsOrderedSeq$lambda$_37_1 = $rt_classWithoutFields(), -onciap_Prettifier$labelsOrderedSeq$lambda$_37_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_5_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = new s_Tuple2$mcII$sp; - var$3 = (var$1.$_2()).$line(); - var$4 = (var$1.$_2()).$column(); - var$2.$_1$mcI$sp0 = var$3; - var$2.$_2$mcI$sp1 = var$4; - s_Tuple2__init_0(var$2, null, null); - return var$2; -}, -onciap_Prettifier$labelsOrderedSeq$lambda$_37_2 = $rt_classWithoutFields(), -onciap_Prettifier$labelsOrderedSeq$lambda$_37_2_apply = (var$0, var$1) => { - return var$1.$_1(); + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0739, var$1); }, -jl_StackOverflowError = $rt_classWithoutFields(jl_VirtualMachineError), -oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0 = $rt_classWithoutFields(), -oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0_apply = (var$0, var$1) => { - return oncius_TypeRange_reparent(var$1, new oncius_TypeSpec$$anonfun$unwrapPotentialLists$1$lambda$_67_0); +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_6 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_31_6_apply = var$0 => { + return $rt_s(4); }; -function sc_View$Single() { - sc_AbstractView.call(this); - this.$a11 = null; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_0() { + jl_Object.call(this); + this.$_0131 = null; } -let sc_View$Single_iterator = $this => { - return sc_Iterator$$anon$20__init_($this.$a11); -}, -sc_View$Single_knownSize = $this => { - return 1; -}, -sc_View$Single_isEmpty = $this => { - return 0; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0131, var$1); }; -function oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_1() { jl_Object.call(this); - this.$_0326 = null; + this.$_0610 = null; } -let oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$(var$1.$intersect(var$0.$_0326))); +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0610, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_2_apply = var$0 => { + return $rt_s(4); }; -function oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_0() { jl_Object.call(this); - this.$_0405 = null; + this.$_01136 = null; } -let oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0_apply = var$0 => { - return oncia_Clause$LabelExpressionsPartitions$1_$anonfun$semanticCheck$3(var$0.$_0405); +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_01136, var$1); }; -function sci_Stream$filter$lambda$_57_0() { - let a = this; jl_Object.call(a); - a.$_0220 = null; - a.$_184 = null; - a.$_235 = 0; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_1() { + jl_Object.call(this); + this.$_0515 = null; } -let sci_Stream$filter$lambda$_57_0_apply = var$0 => { - return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0220, var$0.$_184, var$0.$_235); +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0515, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_2_apply = var$0 => { + return $rt_s(4); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0() { jl_Object.call(this); - this.$_019 = null; + this.$_0949 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_019; - if (!(var$1 instanceof oncia_AliasedReturnItem)) { - if (!(var$1 instanceof oncia_UnaliasedReturnItem)) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = var$1.$expression17; - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1); - } else { - var$1 = var$1; - var$3 = var$1.$expression27; - var$4 = var$1.$variable14; - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$3); - var$2 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$4); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$1), $rt_s(646)), var$2); - var$1 = jl_AbstractStringBuilder_toString(var$4); - } - return var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0949, var$1); }; -function sci_Stream$filterNot$lambda$_58_0() { - let a = this; jl_Object.call(a); - a.$_0987 = null; - a.$_1342 = null; - a.$_2116 = 0; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1() { + jl_Object.call(this); + this.$_0195 = null; } -let sci_Stream$filterNot$lambda$_58_0_apply = var$0 => { - return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0987, var$0.$_1342, var$0.$_2116); -}, -oncius_TypeSpec$toStrings$lambda$_40_0 = $rt_classWithoutFields(), -oncius_TypeSpec$toStrings$lambda$_40_0_apply = (var$0, var$1) => { - s_Predef$_$callClinit(); - return var$1; -}, -oncia_CatalogName$asCanonicalNameString$lambda$_12_0 = $rt_classWithoutFields(), -oncia_CatalogName$asCanonicalNameString$lambda$_12_0_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1_apply = (var$0, var$1) => { var$1 = var$1; - return oncia_CatalogName$_quote(oncia_CatalogName$_MODULE$, var$1); -}, -oncia_Clause$ReadWrite$1$ = $rt_classWithoutFields(), -oncia_Clause$ReadWrite$1$_productArity = $this => { - return 0; -}, -oncia_Clause$ReadWrite$1$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_Clause$ReadWrite$1$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Clause$ReadWrite$1$_hashCode = $this => { - return 883080137; -}, -oncia_Clause$ReadWrite$1$_toString = $this => { - return $rt_s(7874); -}, -oncia_Clause$ReadWrite$1$__init_ = ($this, $$outer) => { - return; -}, -oncia_Clause$ReadWrite$1$__init_0 = var_0 => { - let var_1 = new oncia_Clause$ReadWrite$1$(); - oncia_Clause$ReadWrite$1$__init_(var_1, var_0); - return var_1; -}, -oncia_Clause$Write$1$ = $rt_classWithoutFields(), -oncia_Clause$Write$1$_productArity = $this => { - return 0; -}, -oncia_Clause$Write$1$_productElement = ($this, $x$1) => { - return sr_Statics_ioobe($x$1); -}, -oncia_Clause$Write$1$_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Clause$Write$1$_hashCode = $this => { - return 83847103; -}, -oncia_Clause$Write$1$_toString = $this => { - return $rt_s(5271); -}, -oncia_Clause$Write$1$__init_0 = ($this, $$outer) => { - return; -}, -oncia_Clause$Write$1$__init_ = var_0 => { - let var_1 = new oncia_Clause$Write$1$(); - oncia_Clause$Write$1$__init_0(var_1, var_0); - return var_1; -}, -oncie_IntervalQuantifier$canBeEmpty$lambda$_12_0 = $rt_classWithoutFields(), -oncie_IntervalQuantifier$canBeEmpty$lambda$_12_0_apply = (var$0, var$1) => { - return jl_Long_valueOf((oncie_DecimalIntegerLiteral_value(var$1)).$value10); + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0195, var$1); }, -oncie_IntervalQuantifier$canBeEmpty$lambda$_12_1 = $rt_classWithoutFields(), -oncie_IntervalQuantifier$canBeEmpty$lambda$_12_1_apply$mcJ$sp = var$0 => { - return Long_ZERO; +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2_apply = var$0 => { + return $rt_s(4); }; -function oncil_SolvableLabelExpression$not$lambda$_14_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0() { jl_Object.call(this); - this.$_0709 = null; + this.$_0625 = null; } -let oncil_SolvableLabelExpression$not$lambda$_14_0_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0_apply = (var$0, var$1) => { var$1 = var$1; - return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0709.$matches4.$apply2(var$1)) ? 0 : 1); -}, -onm_MessageUtil = $rt_classWithoutFields(); -function oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0() { + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0625, var$1); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_1() { jl_Object.call(this); - this.$_017 = null; + this.$_037 = null; } -let oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return var$1.$incl(var$0.$_017); +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_037, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_2_apply = var$0 => { + return $rt_s(4); }; -function oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_0() { jl_Object.call(this); - this.$_0385 = null; + this.$_0340 = null; } -let oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0385.$dependencies(); - var$3 = new oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0; - var$3.$_0125 = var$1; - var$2 = var$2.$filterNot0(var$3); - var$3 = new oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1; - var$3.$_0607 = var$2; - return onciu_Foldable$SkipChildren__init_(oncie_Expression$TreeAcc_mapData(var$1, var$3)); + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0340, var$1); }; -function oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_1() { jl_Object.call(this); - this.$_0939 = null; + this.$_0945 = null; } -let oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0939; - if (!oncie_Expression$TreeAcc_inScope(var$1, var$2)) { - var$3 = new oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0; - var$3.$_0957 = var$2; - var$1 = oncie_Expression$TreeAcc_mapData(var$1, var$3); - } - return onciu_Foldable$TraverseChildren__init_(var$1); + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0945, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_2_apply = var$0 => { + return $rt_s(4); }; -function oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_0246 = null; - a.$_195 = null; - a.$_238 = null; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_0() { + jl_Object.call(this); + this.$_01113 = null; } -let oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0246; - var$3 = var$0.$_195; - var$4 = var$0.$_238; - var$5 = new onciu_Foldable$SkipChildren; - var$6 = new s_Tuple2; - var$7 = var$1.$_1(); - var$8 = new oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0; - var$8.$_0438 = var$2; - s_Tuple2__init_0(var$6, var$7.$concat1(s_Option_filter(var$3, var$8)), (var$1.$_2()).$concat1(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1(var$4))); - onciu_Foldable$SkipChildren__init_0(var$5, var$6); - return var$5; + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_01113, var$1); }; -function oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1() { - let a = this; jl_Object.call(a); - a.$_0780 = null; - a.$_1261 = null; - a.$_286 = null; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_1() { + jl_Object.call(this); + this.$_022 = null; } -let oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0780; - var$3 = var$0.$_1261; - var$4 = var$0.$_286; - var$5 = new onciu_Foldable$SkipChildren; - var$6 = new s_Tuple2; - var$7 = var$1.$_1(); - var$8 = new oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0; - var$8.$_0631 = var$2; - s_Tuple2__init_0(var$6, var$7.$concat1(s_Option_filter(var$3, var$8)), (var$1.$_2()).$concat1(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1(var$4))); - onciu_Foldable$SkipChildren__init_0(var$5, var$6); - return var$5; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_022, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_40_2_apply = var$0 => { + return $rt_s(4); }; -function oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_46_0() { jl_Object.call(this); - this.$_0213 = null; + this.$_0666 = null; } -let oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { - let var$2; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_46_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0213; - return onciu_Foldable$TraverseChildren__init_(s_Tuple2__init_((var$1.$_1()).$incl(var$2), var$1.$_2())); -}, -oncius_TypeSpec$toStrings$lambda$_41_0 = $rt_classWithoutFields(), -oncius_TypeSpec$toStrings$lambda$_41_0_apply = (var$0, var$1) => { - let var$2, var$3; - a: { - var$1 = var$1; - if (var$1 !== null) { - var$2 = var$1.$upper0; - if (var$1.$lower0 instanceof oncius_AnyType && jl_Object_equals(s_None$_MODULE$, var$2)) { - var$3 = 1; - break a; - } - } - var$3 = 0; - } - return jl_Boolean_valueOf(var$3); + return onciap_DefaultExpressionStringifier_apply(var$0.$_0666.$$outer.$expr1, var$1); }; -function oncius_TypeSpec$toStrings$lambda$_41_1() { - let a = this; jl_Object.call(a); - a.$_0516 = null; - a.$_1181 = null; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_0() { + jl_Object.call(this); + this.$_0518 = null; } -let oncius_TypeSpec$toStrings$lambda$_41_1_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return jl_Boolean_valueOf(oncius_TypeSpec_contains(var$0.$_0516, var$1, var$0.$_1181)); + var$2 = var$0.$_0518; + if (var$1 instanceof oncia_OnMatch) { + var$3 = var$1.$action2; + var$1 = var$2.$INDENT; + var$2 = onciap_Prettifier$IndentingQueryPrettifier_asString2(var$2, var$3); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(7440)), var$2); + var$1 = jl_AbstractStringBuilder_toString(var$3); + } else { + if (!(var$1 instanceof oncia_OnCreate)) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$action1; + var$1 = var$2.$INDENT; + var$2 = onciap_Prettifier$IndentingQueryPrettifier_asString2(var$2, var$3); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$3, var$1), $rt_s(7441)), var$2); + var$1 = jl_AbstractStringBuilder_toString(var$3); + } + return var$1; }; -function oncius_TypeSpec$toStrings$lambda$_41_2() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_1() { jl_Object.call(this); - this.$_0705 = null; + this.$_01021 = null; } -let oncius_TypeSpec$toStrings$lambda$_41_2_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_1_apply = (var$0, var$1) => { var$1 = var$1; - return var$0.$_0705.$apply2(var$1.$toString()); + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_01021, var$1); }; -function oncius_TypeSpec$toStrings$lambda$_41_3() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_0() { jl_Object.call(this); - this.$_022 = null; + this.$_0336 = null; } -let oncius_TypeSpec$toStrings$lambda$_41_3_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_0_apply = (var$0, var$1) => { let var$2; - var$1 = var$0.$_022.$apply2(var$1); + var$1 = var$1; + var$1 = onciap_DefaultExpressionStringifier_apply(var$0.$_0336.$$outer.$expr1, var$1); var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(763)), var$1), 62); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7442)), var$1); return jl_AbstractStringBuilder_toString(var$2); -}; -function oavra_LexerActionExecutor() { - let a = this; jl_Object.call(a); - a.$lexerActions = null; - a.$hashCode6 = 0; -} -let oavra_LexerActionExecutor__init_ = ($this, $lexerActions) => { - let var$2, $hash, var$4, var$5; - var$2 = $lexerActions.data; - $this.$lexerActions = $lexerActions; - $hash = oavrm_MurmurHash_initialize(); - var$4 = var$2.length; - var$5 = 0; - while (var$5 < var$4) { - $hash = oavrm_MurmurHash_update0($hash, var$2[var$5]); - var$5 = var$5 + 1 | 0; - } - $this.$hashCode6 = oavrm_MurmurHash_finish($hash, var$4); -}, -oavra_LexerActionExecutor__init_0 = var_0 => { - let var_1 = new oavra_LexerActionExecutor(); - oavra_LexerActionExecutor__init_(var_1, var_0); - return var_1; -}, -oavra_LexerActionExecutor_hashCode = $this => { - return $this.$hashCode6; }, -oavra_LexerActionExecutor_equals = ($this, $obj) => { - let $other; - if ($obj === $this) - return 1; - if (!($obj instanceof oavra_LexerActionExecutor)) - return 0; - $other = $obj; - return $this.$hashCode6 == $other.$hashCode6 && ju_Arrays_equals0($this.$lexerActions, $other.$lexerActions) ? 1 : 0; +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_1 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_1_apply = var$0 => { + return $rt_s(4); }; -function oncia_Clause$LegacyLabelExpression$2$() { - sr_AbstractFunction1.call(this); - this.$$outer51 = null; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_47_0() { + jl_Object.call(this); + this.$_01109 = null; } -let oncia_Clause$LegacyLabelExpression$2$__init_0 = ($this, $$outer) => { - if ($$outer === null) - $rt_throw(null); - $this.$$outer51 = $$outer; -}, -oncia_Clause$LegacyLabelExpression$2$__init_ = var_0 => { - let var_1 = new oncia_Clause$LegacyLabelExpression$2$(); - oncia_Clause$LegacyLabelExpression$2$__init_0(var_1, var_0); - return var_1; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_47_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_dispatch(var$0.$_01109, var$1); }; -function sc_View$DropRightIterator() { - let a = this; sc_AbstractIterator.call(a); - a.$underlying11 = null; - a.$maxlen = 0; - a.$len2 = 0; - a.$pos4 = 0; - a.$buf = null; +function oncie_Expression$$anonfun$occurrences$2() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer65 = null; + a.$skipScopeExpression$1 = 0; + a.$variable$20 = null; } -let sc_View$DropRightIterator_knownSize = $this => { - return $this.$len2; -}, -sc_View$DropRightIterator_hasNext = $this => { - if ($this.$buf === null) { - $this.$buf = scm_ArrayBuffer__init_0(jl_Math_min($this.$maxlen, 256)); - while ($this.$pos4 < $this.$maxlen && $this.$underlying11.$hasNext()) { - scm_ArrayBuffer_addOne($this.$buf, $this.$underlying11.$next()); - $this.$pos4 = $this.$pos4 + 1 | 0; +let oncie_Expression$$anonfun$occurrences$2_applyOrElse = ($this, $x1, $default) => { + let var$3; + if ($rt_isInstance($x1, oncie_ScopeExpression)) { + var$3 = $x1; + if (!$this.$skipScopeExpression$1) { + $x1 = new oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0; + $x1.$_0233 = $this; + $x1.$_187 = var$3; + return $x1; } - if (!$this.$underlying11.$hasNext()) - $this.$len2 = 0; - $this.$pos4 = 0; } - if (!$this.$len2) - return 0; - return 1; + if (!($x1 instanceof oncie_Variable)) + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); + $x1 = $x1; + $default = new oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1; + $default.$_0888 = $this; + $default.$_1301 = $x1; + return $default; }, -sc_View$DropRightIterator_next = $this => { - let $x, var$2, var$3; - if (!sc_View$DropRightIterator_hasNext($this)) - return sc_Iterator$$anon$19_next(sc_Iterator$_scala$collection$Iterator$$_empty); - $x = scm_ArrayBuffer_apply($this.$buf, $this.$pos4); - var$2 = $this.$len2; - if (var$2 != (-1)) - $this.$len2 = var$2 - 1 | 0; - else { - scm_ArrayBuffer_update($this.$buf, $this.$pos4, $this.$underlying11.$next()); - if (!$this.$underlying11.$hasNext()) - $this.$len2 = 0; - } - var$3 = $this.$pos4 + 1 | 0; - $this.$pos4 = var$3; - if (var$3 == $this.$maxlen) - $this.$pos4 = 0; - return $x; +oncie_IntervalQuantifier$canBeEmpty$lambda$_12_0 = $rt_classWithoutFields(), +oncie_IntervalQuantifier$canBeEmpty$lambda$_12_0_apply = (var$0, var$1) => { + return jl_Long_valueOf((oncie_DecimalIntegerLiteral_value(var$1)).$value10); +}, +oncie_IntervalQuantifier$canBeEmpty$lambda$_12_1 = $rt_classWithoutFields(), +oncie_IntervalQuantifier$canBeEmpty$lambda$_12_1_apply$mcJ$sp = var$0 => { + return Long_ZERO; }; -function sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0() { - let a = this; jl_Object.call(a); - a.$_0920 = null; - a.$_1322 = null; - a.$_2109 = 0; +function oncie_MapExpression$mapExpressions$lambda$_7_0() { + jl_Object.call(this); + this.$_0422 = null; } -let sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0_apply = var$0 => { - return sci_Stream$_$anonfun$filteredTail$1(var$0.$_0920, var$0.$_1322, var$0.$_2109); -}, -onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_115_0 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_115_0_apply = (var$0, var$1) => { +let oncie_MapExpression$mapExpressions$lambda$_7_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return jl_Boolean_valueOf(var$1 instanceof oncie_CoerceTo && var$1.$expr5 instanceof oncie_ImplicitProcedureArgument ? 0 : !(var$1 instanceof oncie_ImplicitProcedureArgument) ? 1 : 0); + var$2 = var$0.$_0422; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$3 = var$1.$_1(); + var$1 = var$1.$_2(); + return s_Tuple2__init_(var$3, oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply(var$2, var$1)); +}; +function oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_0() { + let a = this; jl_Object.call(a); + a.$_0867 = null; + a.$_1292 = null; +} +let oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$2 = var$0.$_0867; + var$3 = var$0.$_1292; + oncias_OptionSemanticChecking$_$callClinit(); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$5 = (oncia_SingleQuery_partitionedClauses(var$2)).$importingWith0; + var$6 = new oncia_SingleQuery$importVariables$1$lambda$_116_0; + var$6.$_0579 = var$2; + var$6.$_1197 = var$3; + var$6 = oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$5, var$6); + var$4 = new s_Some; + oncias_SemanticState$ScopeLocation$_$callClinit(); + s_Some__init_0(var$4, var$3.$currentScope.$elem0); + return var$6.$chain(oncia_SingleQuery_checkClauses(var$2, var$1, var$4)); }; -function onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_117_0() { +function oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_1() { jl_Object.call(this); - this.$_01107 = null; + this.$_0519 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_117_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_01107.$$outer.$expr1, var$1); +let oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_1_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0519; + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_recordWorkingGraph(var$1, var$2)); }; -function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_0() { +function oncil_SolvableLabelExpression$not$lambda$_14_0() { jl_Object.call(this); - this.$_0348 = null; + this.$_0693 = null; } -let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0348.$name4; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7745)), var$1), $rt_s(7875)); - return jl_AbstractStringBuilder_toString(var$2); +let oncil_SolvableLabelExpression$not$lambda$_14_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$0.$_0693.$matches4.$apply2(var$1)) ? 0 : 1); +}; +function oncia_ScopeClauseSubqueryCall$importVariables$lambda$_78_0() { + let a = this; jl_Object.call(a); + a.$_0891 = null; + a.$_1303 = null; +} +let oncia_ScopeClauseSubqueryCall$importVariables$lambda$_78_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$0.$_0891; + var$2 = var$0.$_1303; + if (var$1.$isImportingAll) { + var$3 = var$2.$currentScope; + var$1 = oncias_package$_MODULE$; + var$2 = new oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_1; + var$2.$_0102 = var$3; + var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$1, var$2); + } else { + var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; + var$4 = var$1.$importedVariables; + var$5 = new oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_0; + var$5.$_01175 = var$1; + var$5.$_1235 = var$2; + var$1 = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, var$5); + } + return var$1.$map11(new oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_113_0); +}, +oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0 = $rt_classWithoutFields(), +oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}, +oncie_CaseExpression$isConstantForQuery$lambda$_9_0 = $rt_classWithoutFields(), +oncie_CaseExpression$isConstantForQuery$lambda$_9_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}, +oncie_CaseExpression$isConstantForQuery$lambda$_9_1 = $rt_classWithoutFields(), +oncie_CaseExpression$isConstantForQuery$lambda$_9_1_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf((var$1.$_1()).$isConstantForQuery() && (var$1.$_2()).$isConstantForQuery() ? 1 : 0); +}, +oncie_CaseExpression$isConstantForQuery$lambda$_9_2 = $rt_classWithoutFields(), +oncie_CaseExpression$isConstantForQuery$lambda$_9_2_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}, +oncie_ListLiteral$isConstantForQuery$lambda$_6_0 = $rt_classWithoutFields(), +oncie_ListLiteral$isConstantForQuery$lambda$_6_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}, +oncie_MapProjection$isConstantForQuery$lambda$_5_0 = $rt_classWithoutFields(), +oncie_MapProjection$isConstantForQuery$lambda$_5_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}, +oncie_MapExpression$isConstantForQuery$lambda$_6_0 = $rt_classWithoutFields(), +oncie_MapExpression$isConstantForQuery$lambda$_6_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf((var$1.$_2()).$isConstantForQuery()); +}, +oncie_ListComprehension$isConstantForQuery$lambda$_11_0 = $rt_classWithoutFields(), +oncie_ListComprehension$isConstantForQuery$lambda$_11_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}, +oncie_ListComprehension$isConstantForQuery$lambda$_11_1 = $rt_classWithoutFields(), +oncie_ListComprehension$isConstantForQuery$lambda$_11_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}, +oncie_ListSlice$isConstantForQuery$lambda$_6_0 = $rt_classWithoutFields(), +oncie_ListSlice$isConstantForQuery$lambda$_6_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); }; -function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_1() { +function oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0() { jl_Object.call(this); - this.$_0997 = null; + this.$_011 = null; } -let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_1_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0997.$name4; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7745)), var$1), $rt_s(7876)); - return jl_AbstractStringBuilder_toString(var$2); +let oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return var$1.$incl(var$0.$_011); }; -function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_2() { +function onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_0() { jl_Object.call(this); - this.$_0512 = null; + this.$_014 = null; } -let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_2_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0512.$name4; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, $rt_s(7745)), var$1), $rt_s(7877)); - return jl_AbstractStringBuilder_toString(var$2); +let onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_014; + if (jl_String_equals(var$1.$aliasedVariable.$name4, var$1.$originalName)) + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1.$aliasedVariable); + else { + var$3 = onciap_Prettifier_backtick(var$2.$$outer, var$1.$originalName); + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1.$aliasedVariable); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$3), $rt_s(646)), var$1); + var$1 = jl_AbstractStringBuilder_toString(var$2); + } + return var$1; }; -function oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_3() { +function onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_1() { jl_Object.call(this); - this.$_01036 = null; + this.$_0644 = null; } -let oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_3_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asString6(var$0.$_0644, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_2_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_01036; - oncias_SemanticError$_$callClinit(); - return oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, var$1, var$2.$position4); + var$2 = sc_StringOps$_MODULE$; + s_Predef$_$callClinit(); + return jl_Boolean_valueOf(sc_StringOps$_nonEmpty$extension(var$2, var$1)); }; -function sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0() { +function onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_3() { jl_Object.call(this); - this.$_0885 = null; + this.$_0466 = null; } -let sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0_apply = var$0 => { - return sci_LazyList$LazyBuilder$DeferredState_eval(var$0.$_0885); +let onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_3_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0466, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_4 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_4_apply = var$0 => { + return $rt_s(4); }; -function sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1() { - let a = this; jl_Object.call(a); - a.$_0262 = null; - a.$_1103 = null; +function onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0() { + jl_Object.call(this); + this.$_0821 = null; } -let sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1_apply = var$0 => { - return sci_LazyList$_$anonfun$stateFromIteratorConcatSuffix$1(var$0.$_0262, var$0.$_1103); -}, -oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_00 = $rt_classWithoutFields(), -oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_0_apply = (var$0, var$1) => { - return var$1.$name(); -}, -oncia_SetPropertyItems = $rt_classWithoutFields(); -function onciap_Prettifier$$anonfun$prettifySetItems$1$lambda$_60_0() { - let a = this; jl_Object.call(a); - a.$_01198 = null; - a.$_1396 = null; +let onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_DefaultExpressionStringifier_quote(var$0.$_0821.$$outer.$expr1, var$1); +}; +function oncil_LabelExpression$Disjunctions$mapExpressions$lambda$_17_0() { + jl_Object.call(this); + this.$_01073 = null; } -function s_PartialFunction$runWith$lambda$_22_0() { - let a = this; jl_Object.call(a); - a.$_01165 = null; - a.$_1389 = null; +let oncil_LabelExpression$Disjunctions$mapExpressions$lambda$_17_0_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_01073); +}; +function oncia_SingleQuery$checkIllegalImportWith$lambda$_82_0() { + jl_Object.call(this); + this.$_0448 = null; } -let s_PartialFunction$runWith$lambda$_22_0_apply = (var$0, var$1) => { +let oncia_SingleQuery$checkIllegalImportWith$lambda$_82_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; - var$2 = var$0.$_01165; - var$3 = var$0.$_1389; - var$1 = var$2.$applyOrElse(var$1, s_PartialFunction$_fallback_fn); - if (s_PartialFunction$_scala$PartialFunction$$fallbackOccurred(s_PartialFunction$_MODULE$, var$1)) - var$4 = 0; - else { - var$3.$apply2(var$1); - var$4 = 1; - } - return jl_Boolean_valueOf(var$4); + var$1 = var$1; + var$2 = var$0.$_0448; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_140_0; + var$4.$_0825 = var$2; + var$4.$_1276 = var$1; + return oncias_SemanticCheck$_fromState(var$3, var$4); }; -function oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_88_0() { +function oncia_SingleQuery$checkInitialGraphSelection$lambda$_81_0() { let a = this; jl_Object.call(a); - a.$_0346 = null; - a.$_1124 = null; + a.$_0132 = null; + a.$_144 = null; } -let oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_88_0_apply = (var$0, var$1) => { +let oncia_SingleQuery$checkInitialGraphSelection$lambda$_81_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0346; - var$3 = var$0.$_1124; - var$4 = oncia_SubqueryCall_returnToOuterScope$(var$2, var$3.$state.$currentScope); - var$5 = new oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_87_0; - var$5.$_0852 = var$2; - var$5.$_1292 = var$1; - var$5.$_294 = var$3; - return oncias_SemanticCheck_flatMap$(var$4, var$5); + var$2 = var$0.$_0132; + var$3 = var$0.$_144; + var$4 = oncia_Clause_semanticCheck$(var$1); + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); + var$1 = new oncias_SemanticAnalysisTooling$withState$lambda$_5_0; + var$1.$_0668 = var$2; + var$1.$_1226 = var$3; + var$1.$_273 = var$4; + return oncias_SemanticCheck_flatMap$(var$5, var$1); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0() { +function oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_92_0() { let a = this; jl_Object.call(a); - a.$_0991 = null; - a.$_1343 = null; + a.$_0419 = null; + a.$_1147 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0_apply = (var$0, var$1) => { +let oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_92_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0991; - var$3 = var$0.$_1343; - oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_newSiblingScope(oncias_SemanticState_popScope(var$1.$state))); - var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0; - var$5.$_068 = var$2; - var$5.$_130 = var$3; - var$5.$_216 = var$1; - return oncias_SemanticCheck_flatMap$(var$4, var$5); + var$2 = var$0.$_0419; + var$3 = var$0.$_1147; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$4 = var$3.$currentScope.$elem0.$symbolTable; + var$3 = oncias_Scope_allSymbols(var$1.$currentScope.$elem0); + var$5 = new oncia_SingleQuery$$anonfun$2; + if (var$2 === null) + $rt_throw(null); + var$5.$$outer68 = var$2; + var$5.$innerScopeSymbols$1 = var$3; + var$1 = sc_IterableOnceOps_foldLeft$(var$4.$collect0(var$5), var$1, new oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_169_0); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); }, -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0 = $rt_classWithoutFields(), -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0_apply = (var$0, var$1) => { - let var$2; +oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_0 = $rt_classWithoutFields(), +oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - return s_Predef$ArrowAssoc$_$minus$greater$extension(var$2, var$1.$name4, var$1); + var$2 = new s_Tuple2; + var$3 = !var$1.$labelExpression9.$containsIs() ? $rt_s(92) : $rt_s(441); + var$4 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$1.$$outer49.$org$neo4j$cypher$internal$ast$Clause$$stringifier(), var$1.$labelExpression9.$replaceColonSyntax()); + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$3), var$4); + s_Tuple2__init_0(var$2, jl_AbstractStringBuilder_toString(var$5), var$1.$labelExpression9.$position()); + return var$2; +}, +oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_1 = $rt_classWithoutFields(), +oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_1_apply = (var$0, var$1) => { + return var$1.$_1(); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1() { - let a = this; jl_Object.call(a); - a.$_0612 = null; - a.$_1207 = null; +function oncie_RelationshipPattern$$anonfun$mapExpressions$7$lambda$_42_0() { + jl_Object.call(this); + this.$_0528 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let oncie_RelationshipPattern$$anonfun$mapExpressions$7$lambda$_42_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0612; - var$3 = var$0.$_1207; - var$4 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$16$lambda$_53_0; - var$4.$_0411 = var$2; - var$2 = (var$3.$getOrElse1(var$1, var$4)).$position(); - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(870)), var$1), $rt_s(7878)); - return oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$4), var$2); + var$2 = var$0.$_0528; + return oncie_Range_copy(var$1, s_Option_map(var$1.$lower2, var$2), s_Option_map(var$1.$upper2, var$2), var$1.$position126); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0() { - let a = this; jl_Object.call(a); - a.$_076 = null; - a.$_131 = null; +function sc_SeqView$Drop() { + let a = this; sc_View$Drop.call(a); + a.$underlying12 = null; + a.$n5 = 0; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_076; - var$3 = var$0.$_131; - var$4 = var$1.$errors0; - var$3 = oncias_SemanticState$ScopeLocation$_symbolNames$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$3.$currentScope); - var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$12$lambda$_49_0; - var$5.$_0183 = var$2; - var$5.$_169 = var$3; - var$2 = var$4.$map(var$5); - return oncias_SemanticCheckResult__init_(var$1.$state, var$2); +let sc_SeqView$Drop_scala$collection$SeqOps$$super$concat = ($this, $suffix) => { + return sc_IterableOps_concat$($this, $suffix); +}, +sc_SeqView$Drop_scala$collection$SeqOps$$super$sizeCompare = ($this, $otherSize) => { + return sc_IterableOps_sizeCompare$($this, $otherSize); +}, +sc_SeqView$Drop_$plus$colon = ($this, $elem) => { + return $this.$prepended($elem); +}, +sc_SeqView$Drop_$colon$plus = ($this, $elem) => { + return $this.$appended($elem); +}, +sc_SeqView$Drop_appendedAll = ($this, $suffix) => { + return $this.$scala$collection$SeqOps$$super$concat($suffix); +}, +sc_SeqView$Drop_concat = ($this, $suffix) => { + return $this.$appendedAll($suffix); +}, +sc_SeqView$Drop_size = $this => { + return $this.$length(); +}, +sc_SeqView$Drop_distinct = $this => { + return sc_SeqOps_distinct$($this); +}, +sc_SeqView$Drop_distinctBy = ($this, $f) => { + return sc_SeqOps_distinctBy$($this, $f); +}, +sc_SeqView$Drop_sortBy = ($this, $f, $ord) => { + return sc_SeqOps_sortBy$($this, $f, $ord); +}, +sc_SeqView$Drop_lengthCompare = ($this, $len) => { + return $this.$scala$collection$SeqOps$$super$sizeCompare($len); +}, +sc_SeqView$Drop_isEmpty = $this => { + return sc_SeqOps_isEmpty$($this); +}, +sc_SeqView$Drop_length = $this => { + let var$1; + var$1 = $this.$underlying12; + if (var$1 === null) + $rt_throw(null); + return jl_Math_max(var$1.$length() - $this.$normN | 0, 0); +}, +sc_SeqView$Drop_apply = ($this, $i) => { + return $this.$underlying12.$apply1($i + $this.$normN | 0); +}, +sc_SeqView$Drop_drop = ($this, $n) => { + return sc_SeqView$Drop__init_0($this.$underlying12, $this.$n5 + $n | 0); +}, +sc_SeqView$Drop_sorted = ($this, $ord) => { + return sc_SeqView_sorted$($this, $ord); +}, +sc_SeqView$Drop_drop0 = ($this, $n) => { + return $this.$drop4($n); +}, +sc_SeqView$Drop__init_ = ($this, $underlying, $n) => { + $this.$underlying12 = $underlying; + $this.$n5 = $n; + sc_View$Drop__init_($this, $underlying, $n); +}, +sc_SeqView$Drop__init_0 = (var_0, var_1) => { + let var_2 = new sc_SeqView$Drop(); + sc_SeqView$Drop__init_(var_2, var_0, var_1); + return var_2; +}, +sc_IndexedSeqView$Drop = $rt_classWithoutFields(sc_SeqView$Drop), +sc_IndexedSeqView$Drop_iterator = $this => { + return sc_IndexedSeqView_iterator$($this); +}, +sc_IndexedSeqView$Drop_reverseIterator = $this => { + return sc_IndexedSeqView_reverseIterator$($this); +}, +sc_IndexedSeqView$Drop_stringPrefix = $this => { + return $rt_s(4970); +}, +sc_IndexedSeqView$Drop_head = $this => { + return sc_IndexedSeqOps_head$($this); +}, +sc_IndexedSeqView$Drop_headOption = $this => { + return sc_IndexedSeqOps_headOption$($this); +}, +sc_IndexedSeqView$Drop_lengthCompare = ($this, $len) => { + return sc_IndexedSeqOps_lengthCompare$($this, $len); +}, +sc_IndexedSeqView$Drop_knownSize = $this => { + return $this.$length(); +}, +sc_IndexedSeqView$Drop_map = ($this, $f) => { + return sc_IndexedSeqView_map$($this, $f); +}, +sc_IndexedSeqView$Drop_drop0 = ($this, $n) => { + return sc_IndexedSeqView_drop$($this, $n); +}, +sc_IndexedSeqView$Drop_drop = ($this, $n) => { + return sc_IndexedSeqView_drop$($this, $n); +}, +sc_IndexedSeqView$Drop_prepended = ($this, $elem) => { + return sc_IndexedSeqView_prepended$($this, $elem); +}, +sc_IndexedSeqView$Drop_appended = ($this, $elem) => { + return sc_IndexedSeqView_appended$($this, $elem); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0() { - let a = this; jl_Object.call(a); - a.$_0904 = null; - a.$_1314 = null; - a.$_2104 = null; +function oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_89_0() { + jl_Object.call(this); + this.$_0559 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; +let oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_89_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0904; - var$3 = var$0.$_1314; - var$4 = var$0.$_2104; - oncias_SemanticCheck$_$callClinit(); - var$5 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_popScope(var$1.$state)); - var$6 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0; - var$6.$_0643 = var$2; - var$6.$_1220 = var$3; - var$6.$_273 = var$1; - var$6.$_323 = var$4; - return oncias_SemanticCheck_flatMap$(var$5, var$6); + var$2 = var$0.$_0559; + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_importValuesFromScope(var$1, var$2, oncias_SemanticState_importValuesFromScope$default$2(var$1))); +}, +oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_91_0 = $rt_classWithoutFields(), +oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_91_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = new oncias_SemanticCheckResult; + s_package$_$callClinit(); + oncias_SemanticCheckResult__init_0(var$2, var$1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + return var$2; }; function oncia_Match$$anonfun$8() { let a = this; sr_AbstractPartialFunction.call(a); @@ -355062,152 +283147,188 @@ function oncia_Match$$anonfun$8() { a.$semanticState$1 = null; a.$context$10 = null; } -let oncia_Match$$anonfun$8_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5, var$6, var$7, var$8, $$je; - a: { - $x = $x; - var$3 = 0; - var$4 = null; - if ($x instanceof oncia_UsingIndexHint) { - var$3 = 1; - var$4 = $x; - var$5 = var$4.$variable13; - var$6 = var$4.$labelOrRelType2; - if (var$5 !== null) { - var$5 = var$5.$name4; - if (var$6 !== null) { - var$6 = var$6.$name16; - if (!oncia_Match_containsLabelOrRelTypePredicate($this.$$outer3, var$5, var$6)) { - oncias_SemanticError$_$callClinit(); - $x = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingEntityKindError$1($this.$$outer3, var$5, var$6, var$4, $this.$semanticState$1, $this.$context$10), var$4.$position88); - break a; - } +let oncia_Match$$anonfun$8_applyOrElse0 = ($this, $x1, $default) => { + let $isNode, var$4, $entity, $prettyHint, $variable, $labelOrRelTypeName, $legacyMessage, $properties, $variable_0, $$je; + $isNode = 0; + var$4 = null; + if ($x1 instanceof oncia_UsingIndexHint) { + $isNode = 1; + var$4 = $x1; + $entity = var$4.$variable13; + $prettyHint = var$4.$labelOrRelType2; + if ($entity !== null) { + $variable = $entity.$name4; + if ($prettyHint !== null) { + $labelOrRelTypeName = $prettyHint.$name19; + if (!oncia_Match_containsLabelOrRelTypePredicate($this.$$outer3, $variable, $labelOrRelTypeName)) { + oncia_Match$_$callClinit(); + $prettyHint = onciap_Prettifier_asString0(oncia_Match$_hintPrettifier(oncia_Match$_MODULE$), var$4); + $entity = !oncias_SemanticState_isNode($this.$semanticState$1, $variable) ? $rt_s(730) : $rt_s(727); + $legacyMessage = oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingEntityKindError$1($this.$$outer3, $variable, $labelOrRelTypeName, var$4, $this.$semanticState$1, $this.$context$10); + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_missingHintPredicate(oncias_SemanticError$_MODULE$, $legacyMessage, $prettyHint, $entity, $variable, var$4.$position101); } } } - if (var$3) { - var$6 = var$4.$variable13; - var$5 = var$4.$labelOrRelType2; - var$7 = var$4.$properties6; - if (var$6 !== null) { - var$6 = var$6.$name4; - if (var$5 !== null) { - var$6 = oncia_Match_getPropertyPredicates($this.$$outer3, var$6); - var$5 = new oncia_Match$containsPropertyPredicates$lambda$_75_0; - var$5.$_01029 = var$6; - if (!var$7.$forall(var$5)) { - oncias_SemanticError$_$callClinit(); - $x = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1($this.$$outer3, var$4, $this.$semanticState$1, $this.$context$10), var$4.$position88); - break a; - } + } + if ($isNode) { + $entity = var$4.$variable13; + $prettyHint = var$4.$labelOrRelType2; + $properties = var$4.$properties7; + if ($entity !== null) { + $variable_0 = $entity.$name4; + if ($prettyHint !== null) { + $prettyHint = oncia_Match_getPropertyPredicates($this.$$outer3, $variable_0); + $entity = new oncia_Match$containsPropertyPredicates$lambda$_80_0; + $entity.$_0640 = $prettyHint; + if (!$properties.$forall($entity)) { + oncia_Match$_$callClinit(); + $prettyHint = onciap_Prettifier_asString0(oncia_Match$_hintPrettifier(oncia_Match$_MODULE$), var$4); + $entity = !oncias_SemanticState_isNode($this.$semanticState$1, $variable_0) ? $rt_s(730) : $rt_s(727); + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_missingHintPredicate(oncias_SemanticError$_MODULE$, oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1($this.$$outer3, var$4, $this.$semanticState$1, $this.$context$10), $prettyHint, $entity, $variable_0, var$4.$position101); } } } - if ($x instanceof oncia_UsingScanHint) { - var$4 = $x; - var$5 = var$4.$variable18; - var$6 = var$4.$labelOrRelType3; - if (var$5 !== null) { - var$8 = var$5.$name4; - if (var$6 !== null) { - var$7 = var$6.$name16; - if (!oncia_Match_containsLabelOrRelTypePredicate($this.$$outer3, var$8, var$7)) { - oncias_SemanticError$_$callClinit(); - $x = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingEntityKindError$1($this.$$outer3, var$8, var$7, var$4, $this.$semanticState$1, $this.$context$10), var$4.$position132); - break a; - } + } + if ($x1 instanceof oncia_UsingScanHint) { + var$4 = $x1; + $entity = var$4.$variable19; + $prettyHint = var$4.$labelOrRelType3; + if ($entity !== null) { + $variable = $entity.$name4; + if ($prettyHint !== null) { + $labelOrRelTypeName = $prettyHint.$name19; + if (!oncia_Match_containsLabelOrRelTypePredicate($this.$$outer3, $variable, $labelOrRelTypeName)) { + oncia_Match$_$callClinit(); + $prettyHint = onciap_Prettifier_asString0(oncia_Match$_hintPrettifier(oncia_Match$_MODULE$), var$4); + $entity = !oncias_SemanticState_isNode($this.$semanticState$1, $variable) ? $rt_s(730) : $rt_s(727); + $legacyMessage = oncia_Match_org$neo4j$cypher$internal$ast$Match$$getMissingEntityKindError$1($this.$$outer3, $variable, $labelOrRelTypeName, var$4, $this.$semanticState$1, $this.$context$10); + oncias_SemanticError$_$callClinit(); + return oncias_SemanticError$_missingHintPredicate(oncias_SemanticError$_MODULE$, $legacyMessage, $prettyHint, $entity, $variable, var$4.$position140); } } } - if ($x instanceof oncia_UsingJoinHint) { - var$4 = $x; - var$6 = $this.$$outer3.$pattern7; - if (var$6.$bitmap$037) - var$3 = var$6.$length6; - else { - jl_Object_monitorEnterSync(var$6); - b: { - try { - if (var$6.$bitmap$037) - break b; - var$6.$length6 = oncie_Pattern_length$(var$6); - var$6.$bitmap$037 = 1; - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $x = $$je; + } + if ($x1 instanceof oncia_UsingJoinHint) { + var$4 = $x1; + $prettyHint = $this.$$outer3.$pattern7; + if ($prettyHint.$bitmap$037) + $isNode = $prettyHint.$length6; + else { + jl_Object_monitorEnterSync($prettyHint); + a: { + try { + if ($prettyHint.$bitmap$037) + break a; + $prettyHint.$length6 = oncie_Pattern_length$($prettyHint); + $prettyHint.$bitmap$037 = 1; + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $x1 = $$je; - } - jl_Object_monitorExitSync(var$6); - $rt_throw($x); } - jl_Object_monitorExitSync(var$6); - var$3 = var$6.$length6; - } - if (!var$3) { - oncias_SemanticError$_$callClinit(); - $x = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7879), var$4.$position162); - break a; + jl_Object_monitorExitSync($prettyHint); + $rt_throw($x1); } + jl_Object_monitorExitSync($prettyHint); + $isNode = $prettyHint.$length6; + } + if (!$isNode) { + oncias_SemanticError$_$callClinit(); + oncia_Match$_$callClinit(); + $x1 = onciap_Prettifier_asString0(oncia_Match$_hintPrettifier(oncia_Match$_MODULE$), var$4); + ong_GqlStatusInfoCodes_$callClinit(); + $properties = ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N76); + ong_GqlParams$ListParam_$callClinit(); + return oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation$Builder_withParam1($properties, ong_GqlParams$ListParam_hintList, scc_AsJavaExtensions$SeqHasAsJava_asJava(sj_CollectionConverters$_SeqHasAsJava(sj_CollectionConverters$_MODULE$, sci_$colon$colon__init_($x1, sci_Nil$_MODULE$)))), var$4.$position52.$offset(), var$4.$position52.$line(), var$4.$position52.$column())), + $rt_s(7443), var$4.$position52); } - $x = $default.$apply2($x); } - return $x; + return $default.$apply2($x1); +}, +oncia_Match$$anonfun$8_applyOrElse = ($this, $x, $default) => { + return oncia_Match$$anonfun$8_applyOrElse0($this, $x, $default); +}; +function oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_29_0() { + jl_Object.call(this); + this.$_0661 = null; +} +let oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_29_0_apply = (var$0, var$1) => { + return var$1.$semanticCheckImportingWithSubQueryContext(var$0.$_0661); }; -function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_95_0() { +function sci_LazyList$$$anonfun$flatMapImpl$3$lambda$_50_0() { let a = this; jl_Object.call(a); - a.$_0800 = null; - a.$_1271 = null; - a.$_288 = null; + a.$_01013 = null; + a.$_1345 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_95_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0800; - var$3 = var$0.$_1271; - var$4 = var$0.$_288; - var$1 = var$2.$innerQuery0.$semanticCheckInSubqueryContext(var$1.$state, var$3.$state); - var$5 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_94_0; - var$5.$_0526 = var$2; - var$5.$_1184 = var$3; - var$5.$_260 = var$4; - return oncias_SemanticCheck_flatMap$(var$1, var$5); +let sci_LazyList$$$anonfun$flatMapImpl$3$lambda$_50_0_apply = var$0 => { + return sci_LazyList$_$anonfun$flatMapImpl$1(var$0.$_01013, var$0.$_1345); }, -s_Product2$mcII$sp = $rt_classWithoutFields(0); -function s_Tuple2$mcII$sp() { - let a = this; s_Tuple2.call(a); - a.$_1$mcI$sp0 = 0; - a.$_2$mcI$sp1 = 0; -} -let s_Tuple2$mcII$sp__2 = $this => { - return jl_Integer_valueOf($this.$_2$mcI$sp1); +oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0 = $rt_classWithoutFields(), +oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); }, -s_Tuple2$mcII$sp__1 = $this => { - return jl_Integer_valueOf($this.$_1$mcI$sp0); +oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0 = $rt_classWithoutFields(), +oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); }; -function oncius_TypeRange$checkForAny$lambda$_10_0() { - jl_Object.call(this); - this.$_01148 = null; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0() { + let a = this; jl_Object.call(a); + a.$_066 = null; + a.$_125 = null; + a.$_213 = null; } -let oncius_TypeRange$checkForAny$lambda$_10_0_apply = (var$0, var$1) => { +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0_apply = (var$0, var$1) => { let var$2, var$3; - var$2 = var$0.$_01148; - if (var$1 instanceof oncius_AnyType) - var$3 = 1; - else if (!(var$1 instanceof oncius_ListType)) - var$3 = 0; - else { - var$1 = var$1; - var$3 = sr_BoxesRunTime_unboxToBoolean(oncius_TypeRange$checkForAny$lambda$_10_0_apply(oncius_TypeRange_checkForAny(var$2), var$1.$innerType)); - } - return jl_Boolean_valueOf(var$3); + var$1 = var$0.$_066; + var$2 = var$0.$_125; + var$3 = var$0.$_213; + var$1 = var$1.$returnItems(); + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$1 = oncia_ReturnItems_declareVariables(var$1, var$2.$currentScope.$elem0); + var$2 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0; + var$2.$_0327 = var$3; + return oncias_SemanticCheck_map$(var$1, var$2); }; -function sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0() { - jl_Object.call(this); - this.$_075 = null; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$12$lambda$_49_0() { + let a = this; jl_Object.call(a); + a.$_0179 = null; + a.$_164 = null; } -let sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0_apply = var$0 => { - return sci_LazyList$LazyBuilder$DeferredState_eval(var$0.$_075); +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$12$lambda$_49_0_apply = (var$0, var$1) => { + var$1 = var$1; + return var$0.$_0179.$warnOnAccessToRestrictedVariableInOrderByOrWhere(var$0.$_164, var$1); +}; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0() { + let a = this; jl_Object.call(a); + a.$_0631 = null; + a.$_1212 = null; + a.$_271 = null; + a.$_324 = null; +} +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$1 = var$0.$_0631; + var$2 = var$0.$_1212; + var$3 = var$0.$_271; + var$4 = var$0.$_324; + var$2 = oncia_ReturnItems_declareVariables(var$1.$returnItems(), var$2); + var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0; + var$5.$_0561 = var$1; + var$5.$_1190 = var$3; + var$5.$_262 = var$4; + return oncias_SemanticCheck_map$(var$2, var$5); +}, +oncius_TypeSpec$$anonfun$unwrapPotentialLists$1$lambda$_67_0 = $rt_classWithoutFields(), +oncius_TypeSpec$$anonfun$unwrapPotentialLists$1$lambda$_67_0_apply = (var$0, var$1) => { + var$1 = var$1; + if (var$1 instanceof oncius_ListType) + var$1 = var$1.$innerType; + else if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + return var$1; }, oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0 = $rt_classWithoutFields(), oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0_apply = (var$0, var$1) => { @@ -355215,43 +283336,76 @@ oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0_apply = (var$0, var$ oncius_package$_$callClinit(); return oncius_package$_CTList(oncius_package$_MODULE$, var$1); }; -function oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_69_0() { +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$16$lambda$_53_0() { + jl_Object.call(this); + this.$_0403 = null; +} +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$16$lambda$_53_0_apply = var$0 => { + return var$0.$_0403.$returnItems(); +}, +oncia_Clause$SetExtractor$ = $rt_classWithoutFields(), +oncia_Clause$SetExtractor$_unapplySeq = ($this, $s) => { + return s_Some__init_(sc_IterableOnceOps_toSeq$($s)); +}, +oncia_Clause$SetExtractor$__init_0 = ($this, $$outer) => { + return; +}, +oncia_Clause$SetExtractor$__init_ = var_0 => { + let var_1 = new oncia_Clause$SetExtractor$(); + oncia_Clause$SetExtractor$__init_0(var_1, var_0); + return var_1; +}; +function oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_72_0() { let a = this; jl_Object.call(a); - a.$_0902 = null; - a.$_1313 = null; - a.$_2103 = null; - a.$_326 = null; + a.$_0209 = null; + a.$_177 = null; + a.$_228 = null; + a.$_311 = null; } -let oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_69_0_apply = (var$0, var$1) => { +let oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_72_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6; var$1 = var$1; - var$2 = var$0.$_0902; - var$3 = var$0.$_1313; - var$4 = var$0.$_2103; - var$5 = var$0.$_326; + var$2 = var$0.$_0209; + var$3 = var$0.$_177; + var$4 = var$0.$_228; + var$5 = var$0.$_311; oncias_SemanticPatternCheck$_$callClinit(); + oncias_SemanticState$ScopeLocation$_$callClinit(); var$6 = (oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$1.$currentScope)).$declarations; - var$3 = sc_IterableOnceOps_toSeq$(var$3.$intersect(((sc_AbstractIterable_toSet((var$2.$patternParts()).$flatMap(new oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_0))).$map(new oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_1)).$filter1(var$6))); - var$2 = new oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_2; - var$2.$_0688 = var$4; - var$2.$_1240 = var$5; + var$3 = sc_IterableOnceOps_toSeq$(var$3.$intersect(((sc_AbstractIterable_toSet((var$2.$patternParts()).$flatMap(new oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_0))).$map(new oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_1)).$filter1(var$6))); + var$2 = new oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_2; + var$2.$_0712 = var$4; + var$2.$_1241 = var$5; return oncias_SemanticCheckResult__init_(var$1, var$3.$map(var$2)); +}, +oncia_Match$checkDifferentRelationships$lambda$_78_0 = $rt_classWithoutFields(), +oncia_Match$checkDifferentRelationships$lambda$_78_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(oncie_PatternPartWithSelector_isSelective(var$1)); }; -function sci_LazyList$takeImpl$lambda$_90_0() { - let a = this; jl_Object.call(a); - a.$_048 = null; - a.$_120 = 0; -} -let sci_LazyList$takeImpl$lambda$_90_0_apply = var$0 => { - return sci_LazyList_$anonfun$takeImpl$1(var$0.$_048, var$0.$_120); -}; -function sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0() { - let a = this; jl_Object.call(a); - a.$_0216 = null; - a.$_182 = null; +function oncia_Match$checkDifferentRelationships$lambda$_78_1() { + jl_Object.call(this); + this.$_0714 = null; } -let sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0_apply = var$0 => { - return sci_LazyList$_$anonfun$stateFromIteratorConcatSuffix$1(var$0.$_0216, var$0.$_182); +let oncia_Match$checkDifferentRelationships$lambda$_78_1_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9; + var$1 = var$1; + var$2 = var$0.$_0714; + oncias_SemanticError$_$callClinit(); + var$3 = var$2.$features.$contains(oncias_SemanticFeature$MatchModes$_MODULE$); + var$1 = oncie_PatternPartWithSelector_position(var$1); + var$4 = !var$3 ? $rt_s(4) : $rt_s(7444); + var$3 = var$1.$offset(); + var$5 = var$1.$line(); + var$6 = var$1.$column(); + ong_GqlStatusInfoCodes_$callClinit(); + var$7 = ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$3, var$5, var$6), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withParam(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42I45), + var$3, var$5, var$6), ong_GqlParams$StringParam_action, var$4)))); + var$8 = new oncias_SemanticError; + var$9 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$9); + jl_StringBuilder_append(jl_StringBuilder_append(var$9, $rt_s(7445)), var$4); + oncias_SemanticError__init_(var$8, var$7, jl_AbstractStringBuilder_toString(var$9), var$1); + return var$8; }, oncia_Match$$anonfun$7 = $rt_classWithoutFields(sr_AbstractPartialFunction), oncia_Match$$anonfun$7_applyOrElse = ($this, $x, $default) => { @@ -355260,222 +283414,181 @@ oncia_Match$$anonfun$7_applyOrElse = ($this, $x, $default) => { $x = $default.$apply2($x); else { oncias_SemanticError$_$callClinit(); - $x = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7880), oncie_PatternPartWithSelector_position($x)); + $x = oncias_SemanticError$_apply(oncias_SemanticError$_MODULE$, $rt_s(7446), oncie_PatternPartWithSelector_position($x)); } return $x; -}, -oncia_Match$checkDifferentRelationships$lambda$_73_0 = $rt_classWithoutFields(), -oncia_Match$checkDifferentRelationships$lambda$_73_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncie_PatternPartWithSelector_isSelective(var$1)); }; -function oncia_Match$checkDifferentRelationships$lambda$_73_1() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0() { jl_Object.call(this); - this.$_0990 = null; + this.$_015 = null; } -let oncia_Match$checkDifferentRelationships$lambda$_73_1_apply = (var$0, var$1) => { +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0990; - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = var$2.$features; - oncias_SemanticFeature$MatchModes$_$callClinit(); - return oncias_SemanticError$_apply(var$3, !var$4.$contains(oncias_SemanticFeature$MatchModes$_MODULE$) ? $rt_s(7881) : $rt_s(7882), oncie_PatternPartWithSelector_position(var$1)); -}, -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_19_0 = $rt_classWithoutFields(), -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_19_0_apply = (var$0, var$1) => { - return var$1.$use; + var$2 = var$0.$_015; + if (!(var$1 instanceof oncia_AliasedReturnItem)) { + if (!(var$1 instanceof oncia_UnaliasedReturnItem)) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = var$1.$expression19; + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1); + } else { + var$1 = var$1; + var$3 = var$1.$expression29; + var$4 = var$1.$variable14; + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$3); + var$2 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$4); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, var$1), $rt_s(646)), var$2); + var$1 = jl_AbstractStringBuilder_toString(var$4); + } + return var$1; }; -function oncia_ReturnItems$declareVariables$lambda$_64_0() { +function oncius_ListType$greatestLowerBound$lambda$_38_0() { jl_Object.call(this); - this.$_0712 = null; + this.$_0334 = null; } -let oncia_ReturnItems$declareVariables$lambda$_64_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0712; - oncias_package$_$callClinit(); - var$2 = oncias_package$_MODULE$; - var$3 = new oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_85_0; - var$3.$_081 = var$1; - return oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$2, var$3); +let oncius_ListType$greatestLowerBound$lambda$_38_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0334; + return oncius_ListType_copy(var$2, var$1, var$2.$isNullable1, var$2.$position25); }; -function oncia_ReturnItems$declareVariables$lambda$_64_1() { +function oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_4() { let a = this; jl_Object.call(a); - a.$_066 = null; - a.$_129 = null; + a.$_0628 = null; + a.$_1211 = null; } -let oncia_ReturnItems$declareVariables$lambda$_64_1_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; +let oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_4_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; a: { var$1 = var$1; - var$2 = var$0.$_066; - var$3 = var$0.$_129; + var$2 = var$0.$_0628; + var$3 = var$0.$_1211; var$4 = 0; var$5 = null; - var$6 = var$1.$alias(); - if (var$6 instanceof s_Some) - b: { - c: { - var$4 = 1; - var$5 = var$6; - var$7 = var$5.$value5; - var$8 = var$1.$expression(); - if (var$8 !== null) { - if (!var$8.$equals(var$7)) - break b; - else - break c; - } - if (var$7 !== null) - break b; - } - var$3 = oncias_Scope_symbol(var$3, var$7.$name4); - oncias_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(var$2, var$7, oncias_SemanticAnalysisTooling_types$(var$2, var$1.$expression()), var$3, 1)); + var$6 = var$1.$greatestLowerBound(var$3); + if (var$6 instanceof s_Some) { + var$4 = 1; + var$5 = var$6; + var$7 = var$5.$value5; + if (s_Option_isEmpty(var$2.$elem)) { + var$1 = s_Some__init_(var$7); break a; } - if (!var$4) { + } + if (var$4) { + var$1 = var$5.$value5; + if (s_Option_isDefined((var$2.$elem.$get1()).$greatestLowerBound(var$1))) { + var$1 = (var$2.$elem.$get1()).$greatestLowerBound(var$1); + break a; + } + } + if (var$4) + var$1 = s_Some__init_(var$3); + else { if (!jl_Object_equals(s_None$_MODULE$, var$6)) $rt_throw(s_MatchError__init_(var$6)); - oncias_package$_$callClinit(); - var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(oncias_package$_MODULE$, new oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_87_0); - } else { - var$3 = var$5.$value5; - oncias_package$_$callClinit(); - var$1 = oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, oncias_SemanticAnalysisTooling_declareVariable$0(var$2, var$3, oncias_SemanticAnalysisTooling_types$(var$2, var$1.$expression()), s_None$_MODULE$, 1)); + var$1 = var$2.$elem; } } - return var$1; -}, -sci_Stream$$newBuilder$lambda$_23_0 = $rt_classWithoutFields(), -sci_Stream$$newBuilder$lambda$_23_0_apply = (var$0, var$1) => { - var$1 = var$1; - return sci_Stream$_from(sci_Stream$_MODULE$, var$1); -}, -oncie_ExtractScope$scopeDependencies$lambda$_9_0 = $rt_classWithoutFields(), -oncie_ExtractScope$scopeDependencies$lambda$_9_0_apply = var$0 => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncie_ExtractScope$scopeDependencies$lambda$_9_1 = $rt_classWithoutFields(), -oncie_ExtractScope$scopeDependencies$lambda$_9_1_apply = (var$0, var$1) => { - return var$1.$dependencies(); -}, -oncie_ExtractScope$scopeDependencies$lambda$_9_2 = $rt_classWithoutFields(), -oncie_ExtractScope$scopeDependencies$lambda$_9_2_apply = var$0 => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncie_ExtractScope$scopeDependencies$lambda$_9_3 = $rt_classWithoutFields(), -oncie_ExtractScope$scopeDependencies$lambda$_9_3_apply = (var$0, var$1) => { - return var$1.$dependencies(); -}, -oncie_FilterScope$scopeDependencies$lambda$_8_0 = $rt_classWithoutFields(), -oncie_FilterScope$scopeDependencies$lambda$_8_0_apply = var$0 => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncie_FilterScope$scopeDependencies$lambda$_8_1 = $rt_classWithoutFields(), -oncie_FilterScope$scopeDependencies$lambda$_8_1_apply = (var$0, var$1) => { - return var$1.$dependencies(); + var$2.$elem = var$1; + return sr_BoxedUnit_UNIT; }; -function oncius_TypeRange$intersect$lambda$_12_0() { +function oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_0() { let a = this; jl_Object.call(a); - a.$_0313 = null; - a.$_1116 = null; -} -let oncius_TypeRange$intersect$lambda$_12_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0313; - var$3 = var$0.$_1116; - var$4 = var$2.$upper0; - var$2 = new oncius_TypeRange$$anonfun$intersect$1$lambda$_42_0; - var$2.$_0102 = var$3; - var$5 = new oncius_TypeRange$$anonfun$intersect$1$lambda$_42_1; - var$5.$_0592 = var$3; - var$3 = s_Option_fold(var$4, var$2, var$5); - return s_Option_isDefined(var$3) && !var$1.$isAssignableFrom0(var$3.$get1()) ? s_None$_MODULE$ : s_Some__init_(oncius_TypeRange__init_(var$1, var$3)); -}; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0() { - jl_Object.call(this); - this.$_01161 = null; + a.$_0827 = null; + a.$_1277 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0_apply = (var$0, var$1) => { - let var$2; +let oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_01161; - if (var$1 instanceof oncia_AscSortItem) { - var$1 = var$1.$expression21; - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(7883)); - var$1 = jl_AbstractStringBuilder_toString(var$2); - } else { - if (!(var$1 instanceof oncia_DescSortItem)) - $rt_throw(s_MatchError__init_(var$1)); - var$1 = var$1.$expression24; - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(7884)); - var$1 = jl_AbstractStringBuilder_toString(var$2); - } - return var$1; + var$2 = var$0.$_0827; + var$3 = var$0.$_1277; + var$4 = var$2.$innerTypes0; + var$2 = new oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0; + var$2.$_0509 = var$3; + var$2.$_1174 = var$1; + var$4.$foreach(var$2); + return sr_BoxedUnit_UNIT; }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0_apply = (var$0, var$1) => { - return var$1.$batchSize; +oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_1 = $rt_classWithoutFields(), +oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(s_Option_isDefined(var$1)); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1_apply = (var$0, var$1) => { - return var$1.$behaviour; +oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_2 = $rt_classWithoutFields(), +oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_2_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(s_Option_isDefined(var$1)); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2_apply = (var$0, var$1) => { - return var$1.$reportAs; -}; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0() { - jl_Object.call(this); - this.$_0249 = null; -} -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0249; - var$3 = var$1.$output; - var$4 = new onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_0; - var$4.$_0664 = var$2; - var$4 = s_Option_getOrElse(s_Option_map(var$3, var$4), new onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_1); - var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1.$variable8); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$4), var$1); - return jl_AbstractStringBuilder_toString(var$2); +oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_3 = $rt_classWithoutFields(), +oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_3_apply = (var$0, var$1) => { + return var$1.$get1(); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1() { +function oncil_LabelExpression$Conjunctions$mapExpressions$lambda$_17_0() { jl_Object.call(this); - this.$_0875 = null; + this.$_0647 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0875, var$1); -}; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2() { - jl_Object.call(this); - this.$_0195 = null; +let oncil_LabelExpression$Conjunctions$mapExpressions$lambda$_17_0_apply = (var$0, var$1) => { + return var$1.$mapExpressions(var$0.$_0647); +}, +oncie_Expression$isDeterministic$lambda$_23_0 = $rt_classWithoutFields(); +function oncia_Clause$LegacyLabelExpression$1() { + let a = this; jl_Object.call(a); + a.$labelExpression9 = null; + a.$$outer49 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0195, var$1); +let oncia_Clause$LegacyLabelExpression$1_productPrefix = $this => { + return $rt_s(7447); }, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3_apply = var$0 => { - return $rt_s(4); +oncia_Clause$LegacyLabelExpression$1_productArity = $this => { + return 1; +}, +oncia_Clause$LegacyLabelExpression$1_productElement = ($this, $x$1) => { + switch ($x$1) { + case 0: + return $this.$labelExpression9; + default: + } + return sr_Statics_ioobe($x$1); +}, +oncia_Clause$LegacyLabelExpression$1_productIterator = $this => { + return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Clause$LegacyLabelExpression$1_hashCode = $this => { + return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Clause$LegacyLabelExpression$1_toString = $this => { + return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +}, +oncia_Clause$LegacyLabelExpression$1_equals = ($this, $x$1) => { + let var$2, var$3; + a: { + b: { + if ($this !== $x$1) { + if (!(!($x$1 instanceof oncia_Clause$LegacyLabelExpression$1) ? 0 : 1)) + break b; + c: { + $x$1 = $x$1; + var$2 = $this.$labelExpression9; + $x$1 = $x$1.$labelExpression9; + if (var$2 !== null) { + if (!var$2.$equals($x$1)) + break b; + else + break c; + } + if ($x$1 !== null) + break b; + } + if (!($this instanceof oncia_Clause$LegacyLabelExpression$1)) + break b; + } + var$3 = 1; + break a; + } + var$3 = 0; + } + return var$3; }, oncil_SolvableLabelExpression$and$lambda$_16_0 = $rt_classWithoutFields(), oncil_SolvableLabelExpression$and$lambda$_16_0_apply = (var$0, var$1, var$2) => { @@ -355490,290 +283603,289 @@ oncil_SolvableLabelExpression$or$lambda$_17_0_apply = (var$0, var$1, var$2) => { var$3 = sr_BoxesRunTime_unboxToBoolean(var$1); var$4 = sr_BoxesRunTime_unboxToBoolean(var$2); return jl_Boolean_valueOf(!var$3 && !var$4 ? 0 : 1); -}; -function oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_0() { - let a = this; jl_Object.call(a); - a.$_01023 = null; - a.$_1351 = null; -} -let oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; - var$2 = var$0.$_01023; - var$3 = var$0.$_1351; - oncias_OptionSemanticChecking$_$callClinit(); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$5 = (oncia_SingleQuery_partitionedClauses(var$2)).$importingWith0; - var$6 = new oncia_SingleQuery$importVariables$1$lambda$_110_0; - var$6.$_0637 = var$2; - var$6.$_1216 = var$3; - return (oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$5, var$6)).$chain(oncia_SingleQuery_checkClauses(var$2, var$1, s_Some__init_(var$3.$currentScope.$elem0))); -}; -function oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_1() { - jl_Object.call(this); - this.$_0576 = null; -} -let oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_1_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0576; - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_recordWorkingGraph(var$1, var$2)); }, -oncia_GraphFunctionReference$print$lambda$_48_0 = $rt_classWithoutFields(), -oncia_GraphFunctionReference$print$lambda$_48_0_apply = (var$0, var$1) => { +oncia_GraphFunctionReference$print$lambda$_53_0 = $rt_classWithoutFields(), +oncia_GraphFunctionReference$print$lambda$_53_0_apply = (var$0, var$1) => { return var$1.$asCanonicalStringVal(); +}, +oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_0 = $rt_classWithoutFields(), +oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +}, +oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_1 = $rt_classWithoutFields(), +oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_1_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isConstantForQuery()); }; -function oncia_ScopeClauseSubqueryCall$importVariables$lambda$_73_0() { +function oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0() { let a = this; jl_Object.call(a); - a.$_0799 = null; - a.$_1270 = null; + a.$_0233 = null; + a.$_187 = null; } -let oncia_ScopeClauseSubqueryCall$importVariables$lambda$_73_0_apply = (var$0, var$1) => { +let oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; - var$1 = var$0.$_0799; - var$2 = var$0.$_1270; - if (var$1.$isImportingAll) { - var$3 = var$2.$currentScope; - oncias_package$_$callClinit(); - var$1 = oncias_package$_MODULE$; - var$2 = new oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_1; - var$2.$_0496 = var$3; - var$1 = oncias_package$_Convert$u0020function$u0020to$u0020SemanticCheck(var$1, var$2); - } else { - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$4 = var$1.$importedVariables; - var$5 = new oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_0; - var$5.$_01197 = var$1; - var$5.$_1250 = var$2; - var$1 = oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$4, var$5); - } - return var$1.$map11(new oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_108_0); -}, -oncie_CaseExpression$scopeDependencies$lambda$_13_0 = $rt_classWithoutFields(), -oncie_CaseExpression$scopeDependencies$lambda$_13_0_apply = var$0 => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncie_CaseExpression$scopeDependencies$lambda$_13_1 = $rt_classWithoutFields(), -oncie_CaseExpression$scopeDependencies$lambda$_13_1_apply = (var$0, var$1) => { - return var$1.$dependencies(); -}, -oncie_CaseExpression$scopeDependencies$lambda$_13_2 = $rt_classWithoutFields(), -oncie_CaseExpression$scopeDependencies$lambda$_13_2_apply = (var$0, var$1) => { var$1 = var$1; - return ((var$1.$_1()).$dependencies()).$concat1((var$1.$_2()).$dependencies()); -}, -oncie_CaseExpression$scopeDependencies$lambda$_13_3 = $rt_classWithoutFields(), -oncie_CaseExpression$scopeDependencies$lambda$_13_3_apply = var$0 => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncie_CaseExpression$scopeDependencies$lambda$_13_4 = $rt_classWithoutFields(), -oncie_CaseExpression$scopeDependencies$lambda$_13_4_apply = (var$0, var$1) => { - return var$1.$dependencies(); + var$2 = var$0.$_0233; + var$3 = var$0.$_187; + if ($rt_isInstance(var$3, oncie_ExpressionWithComputedDependencies)) { + var$4 = var$3.$scopeDependencies(); + var$5 = new oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0; + var$5.$_0207 = var$2; + var$1 = sc_IterableOnceOps_foldLeft$(var$4, var$1, var$5); + } + return onciu_Foldable$TraverseChildrenNewAccForSiblings__init_0(oncie_Expression$TreeAcc_pushScope(var$1, var$3.$introducedVariables()), new oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1); }; -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0() { - jl_Object.call(this); - this.$_0595 = null; -} -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0_apply = (var$0, var$1) => { - var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply0(var$0.$_0595.$$outer.$expr1, var$1); -}, -oncia_UsingStatefulShortestPathHint = $rt_classWithoutFields(0), -oncia_UsingStatefulShortestPathAll = $rt_classWithoutFields(); -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1() { - jl_Object.call(this); - this.$_0275 = null; +function oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1() { + let a = this; jl_Object.call(a); + a.$_0888 = null; + a.$_1301 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1_apply = (var$0, var$1) => { +let oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; - return onciap_DefaultExpressionStringifier_apply(var$0.$_0275.$$outer.$expr1, var$1); -}, -oncia_UsingStatefulShortestPathInto = $rt_classWithoutFields(); -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_2() { - jl_Object.call(this); - this.$_01202 = null; -} -function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_3() { + var$2 = var$0.$_0888; + var$3 = var$0.$_1301; + return onciu_Foldable$TraverseChildren__init_(oncie_Expression_org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1(var$1, var$3, var$2.$variable$20)); +}; +function jusi_SimpleStreamIterator$fetchIfNeeded$lambda$_4_0() { jl_Object.call(this); - this.$_01175 = null; + this.$_01093 = null; } -let oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_0 = $rt_classWithoutFields(), -oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); -}, -oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_1 = $rt_classWithoutFields(), -oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +let jusi_SimpleStreamIterator$fetchIfNeeded$lambda$_4_0_test = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_01093; + var$2.$lastElement = var$1; + var$2.$state1 = 1; + return 0; }; function oncil_SolvableLabelExpression$binary$lambda$_15_0() { let a = this; jl_Object.call(a); - a.$_0729 = null; - a.$_1248 = null; - a.$_280 = null; + a.$_0709 = null; + a.$_1240 = null; + a.$_279 = null; } let oncil_SolvableLabelExpression$binary$lambda$_15_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_0729; - var$3 = var$0.$_1248; - var$4 = var$0.$_280; + var$2 = var$0.$_0709; + var$3 = var$0.$_1240; + var$4 = var$0.$_279; return jl_Boolean_valueOf(sr_BoxesRunTime_unboxToBoolean(var$3.$apply3(var$2.$matches4.$apply2(var$1), var$4.$matches4.$apply2(var$1)))); +}, +oncia_Match$ = $rt_classWithoutFields(), +oncia_Match$_MODULE$ = null, +oncia_Match$_hintPrettifier0 = null, +oncia_Match$_$callClinit = () => { + oncia_Match$_$callClinit = $rt_eraseClinit(oncia_Match$); + oncia_Match$__clinit_(); +}, +oncia_Match$__clinit_ = () => { + let var$1, var$2; + var$1 = new oncia_Match$; + oncia_Match$_$callClinit(); + oncia_Match$_MODULE$ = var$1; + var$2 = new onciap_Prettifier; + onciap_ExpressionStringifier$_$callClinit(); + var$1 = onciap_ExpressionStringifier$_MODULE$; + var$1 = onciap_ExpressionStringifier$_apply(var$1, onciap_ExpressionStringifier$_apply$default$1(var$1), 0, 0, 0, 0); + onciap_Prettifier$_$callClinit(); + onciap_Prettifier__init_(var$2, var$1, onciap_Prettifier$EmptyExtension$_MODULE$, 1); + oncia_Match$_hintPrettifier0 = var$2; +}, +oncia_Match$_hintPrettifier = $this => { + oncia_Match$_$callClinit(); + return oncia_Match$_hintPrettifier0; }; -function oncia_SingleQuery$checkIllegalImportWith$lambda$_76_0() { +function oncius_TypeRange$$anonfun$intersect$1$lambda$_42_0() { jl_Object.call(this); - this.$_0623 = null; -} -let oncia_SingleQuery$checkIllegalImportWith$lambda$_76_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - var$2 = var$0.$_0623; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_135_0; - var$4.$_0687 = var$2; - var$4.$_1239 = var$1; - return oncias_SemanticCheck$_fromState(var$3, var$4); -}; -function oncia_SingleQuery$checkInitialGraphSelection$lambda$_75_0() { - let a = this; jl_Object.call(a); - a.$_01063 = null; - a.$_1361 = null; + this.$_090 = null; } -let oncia_SingleQuery$checkInitialGraphSelection$lambda$_75_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_01063; - var$3 = var$0.$_1361; - var$4 = oncia_Clause_semanticCheck$(var$1); - oncias_SemanticCheck$_$callClinit(); - var$5 = oncias_SemanticCheck$_success(oncias_SemanticCheck$_MODULE$); - var$1 = new oncias_SemanticAnalysisTooling$withState$lambda$_5_0; - var$1.$_0677 = var$2; - var$1.$_1236 = var$3; - var$1.$_274 = var$4; - return oncias_SemanticCheck_flatMap$(var$5, var$1); +let oncius_TypeRange$$anonfun$intersect$1$lambda$_42_0_apply = var$0 => { + return var$0.$_090.$upper0; }; -function oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_86_0() { - let a = this; jl_Object.call(a); - a.$_0461 = null; - a.$_1161 = null; +function oncius_TypeRange$$anonfun$intersect$1$lambda$_42_1() { + jl_Object.call(this); + this.$_0581 = null; } -let oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_86_0_apply = (var$0, var$1) => { +let oncius_TypeRange$$anonfun$intersect$1$lambda$_42_1_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0461; - var$3 = var$0.$_1161.$currentScope.$elem0.$symbolTable; - var$4 = oncias_Scope_allSymbols(var$1.$currentScope.$elem0); - var$5 = new oncia_SingleQuery$$anonfun$2; - if (var$2 === null) - $rt_throw(null); - var$5.$$outer76 = var$2; - var$5.$innerScopeSymbols$1 = var$4; - var$1 = sc_IterableOnceOps_foldLeft$(var$3.$collect0(var$5), var$1, new oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_164_0); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + var$2 = var$0.$_0581; + var$3 = new s_Some; + var$4 = var$2.$upper0; + var$2 = new oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0; + var$2.$_0974 = var$1; + var$5 = new oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1; + var$5.$_0357 = var$1; + s_Some__init_0(var$3, s_Option_fold(var$4, var$2, var$5)); + return var$3; }, -oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_0 = $rt_classWithoutFields(), -oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_117_0 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_117_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = new s_Tuple2; - var$3 = !var$1.$labelExpression9.$containsIs() ? $rt_s(91) : $rt_s(443); - var$4 = onciap_DefaultExpressionStringifier_stringifyLabelExpression(var$1.$$outer55.$org$neo4j$cypher$internal$ast$Clause$$stringifier(), var$1.$labelExpression9.$replaceColonSyntax()); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(var$5, var$3), var$4); - s_Tuple2__init_0(var$2, jl_AbstractStringBuilder_toString(var$5), var$1.$labelExpression9.$position()); - return var$2; -}, -oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_1 = $rt_classWithoutFields(), -oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_1_apply = (var$0, var$1) => { - return var$1.$_1(); + return jl_Boolean_valueOf(var$1 instanceof oncie_CoerceTo && var$1.$expr5 instanceof oncie_ImplicitProcedureArgument ? 0 : !(var$1 instanceof oncie_ImplicitProcedureArgument) ? 1 : 0); }; -function oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_85_0() { +function onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_119_0() { jl_Object.call(this); - this.$_081 = null; + this.$_0290 = null; } -let oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_85_0_apply = (var$0, var$1) => { - let var$2; +let onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_119_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_081; - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_importValuesFromScope(var$1, var$2, oncias_SemanticState_importValuesFromScope$default$2(var$1))); + return onciap_DefaultExpressionStringifier_apply(var$0.$_0290.$$outer.$expr1, var$1); }, -oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_87_0 = $rt_classWithoutFields(), -oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_87_0_apply = (var$0, var$1) => { - let var$2; +oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_113_0 = $rt_classWithoutFields(), +oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_113_0_apply = (var$0, var$1) => { + let var$2, var$3; var$1 = var$1; var$2 = new oncias_SemanticCheckResult; + var$3 = var$1.$state; s_package$_$callClinit(); - oncias_SemanticCheckResult__init_0(var$2, var$1, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); + oncias_SemanticCheckResult__init_0(var$2, var$3, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); return var$2; }; -function oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0() { - jl_Object.call(this); - this.$_0438 = null; -} -let oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1(var$1, var$0.$_0438.$allSymbolDefinitions$10)); -}; -function oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0() { - jl_Object.call(this); - this.$_0125 = null; +function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_99_0() { + let a = this; jl_Object.call(a); + a.$_0595 = null; + a.$_1200 = null; + a.$_266 = null; } -let oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0_apply = (var$0, var$1) => { +let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_99_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - return jl_Boolean_valueOf(oncie_Expression$TreeAcc_inScope(var$0.$_0125, var$1)); + var$2 = var$0.$_0595; + var$3 = var$0.$_1200; + var$4 = var$0.$_266; + var$5 = oncia_SubqueryCall_returnToOuterScope$(var$2, var$3.$state.$currentScope); + var$3 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_98_0; + var$3.$_0380 = var$2; + var$3.$_1135 = var$1; + var$3.$_247 = var$4; + return oncias_SemanticCheck_flatMap$(var$5, var$3); }; -function oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1() { - jl_Object.call(this); - this.$_0607 = null; +function oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_92_0() { + let a = this; jl_Object.call(a); + a.$_0955 = null; + a.$_1328 = null; + a.$_2113 = null; } -let oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1_apply = (var$0, var$1) => { - return var$1.$concat1(var$0.$_0607); +let oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_92_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$0.$_0955; + var$2 = var$0.$_1328; + var$3 = var$0.$_2113; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$4 = var$2.$state.$currentScope.$elem0; + oncias_SemanticCheck$_$callClinit(); + var$5 = oncias_SemanticCheck$_MODULE$; + var$6 = var$1.$innerQuery1.$isReturning(); + var$7 = new oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_74_0; + var$7.$_0234 = var$1; + var$7.$_188 = var$4; + var$5 = oncias_SemanticCheck$_when(var$5, var$6, var$7); + var$1 = new oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_91_0; + var$1.$_0308 = var$3; + var$1.$_1112 = var$2; + return var$5.$map11(var$1); }; -function oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0() { - jl_Object.call(this); - this.$_0631 = null; +function oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_140_0() { + let a = this; jl_Object.call(a); + a.$_0825 = null; + a.$_1276 = null; } -let oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(oncifp_VariableReferenceCheck_org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1(var$1, var$0.$_0631.$allSymbolDefinitions$10)); +let oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_140_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7; + a: { + var$2 = var$0.$_0825; + var$3 = var$0.$_1276; + var$1 = (oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(oncias_IterableOnceSemanticChecking$_MODULE$, var$3.$returnItems3.$items0, new oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_0)).$run(var$1, new oncias_SemanticCheckContext$$anon$2); + var$4 = onciu_topDown$_MODULE$; + onciu_Rewriter$_$callClinit(); + var$5 = onciu_Rewriter$_MODULE$; + var$6 = new oncia_SingleQuery$$anonfun$1; + var$6.$resultState$1 = var$1; + var$1 = onciu_topDown$_apply(var$4, onciu_Rewriter$_lift(var$5, var$6), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); + var$4 = var$3.$returnItems3; + if (!var$4.$includeExisting0) { + var$5 = var$4.$items0; + var$4 = new oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_1; + var$4.$_0929 = var$1; + if (!var$5.$exists(var$4)) { + var$7 = 0; + break a; + } + } + var$7 = 1; + } + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_MODULE$; + var$4 = new oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_2; + var$4.$_0429 = var$2; + var$4.$_1149 = var$3; + return oncias_SemanticCheck$_when(var$1, var$7, var$4); }; -function oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0() { - jl_Object.call(this); - this.$_0957 = null; +function oncia_SingleQuery$$anonfun$2() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer68 = null; + a.$innerScopeSymbols$1 = null; } -let oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0_apply = (var$0, var$1) => { - return var$1.$incl(var$0.$_0957); +let oncia_SingleQuery$$anonfun$2_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5, var$6; + a: { + $x = $x; + if ($x !== null) { + var$3 = $x.$_1(); + var$4 = $x.$_2(); + var$5 = $this.$innerScopeSymbols$1; + if (var$5.$contains(var$4.$name12) && !((var$5.$apply2(var$4.$name12)).$map(new oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_167_0)).$contains(var$4.$definition) ? 1 : 0) { + $x = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + $default = $this.$innerScopeSymbols$1.$apply2(var$3); + var$6 = new oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0; + var$6.$_0534 = var$4; + $x = s_Predef$ArrowAssoc$_$minus$greater$extension($x, var$3, (oncias_SymbolUse_asVariable((($default.$find2(var$6)).$get1()).$definition)).$position4); + break a; + } + } + $x = $default.$apply2($x); + } + return $x; +}, +oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_169_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_169_0_apply = (var$0, var$1, var$2) => { + let var$3, var$4; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + var$2 = var$3.$_20; + if (var$2 === null) + $rt_throw(s_MatchError__init_(var$3)); + var$3 = var$2.$_1(); + var$2 = var$2.$_2(); + var$4 = new onciu_SubqueryVariableShadowing; + var$4.$position77 = var$2; + var$4.$varName2 = var$3; + return oncias_SemanticState_addNotification(var$1, var$4); }, -oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_0 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_0_apply = (var$0, var$1) => { +oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_0 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_0_apply = (var$0, var$1) => { var$1 = var$1; oncias_SemanticPatternCheck$_$callClinit(); return (var$1.$allVariables()).$removedAll((var$1.$element()).$allVariables()); }, -oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_1 = $rt_classWithoutFields(), -oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_1_apply = (var$0, var$1) => { +oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_1 = $rt_classWithoutFields(), +oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_1_apply = (var$0, var$1) => { var$1 = var$1; oncias_SemanticPatternCheck$_$callClinit(); return oncias_SymbolUse$_apply(oncias_SymbolUse$_MODULE$, var$1); }; -function oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_2() { +function oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_2() { let a = this; jl_Object.call(a); - a.$_0688 = null; - a.$_1240 = null; + a.$_0712 = null; + a.$_1241 = null; } -let oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_2_apply = (var$0, var$1) => { +let oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_2_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6, var$7; var$1 = var$1; - var$2 = var$0.$_0688; - var$3 = var$0.$_1240; + var$2 = var$0.$_0712; + var$3 = var$0.$_1241; oncias_SemanticPatternCheck$_$callClinit(); var$2 = onciap_DefaultPatternStringifier_apply0((oncias_SemanticPatternCheck$_stringifier(oncias_SemanticPatternCheck$_MODULE$)).$patterns0, var$2); oncias_SemanticError$_$callClinit(); @@ -355783,103 +283895,13 @@ let oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElemen var$6 = oncias_SymbolUse_name(var$1); var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(7885)), var$3), $rt_s(7886)), var$6), $rt_s(7887)), var$2), 46); + jl_AbstractStringBuilder_append0(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$7, $rt_s(7448)), var$3), $rt_s(7449)), var$6), $rt_s(7450)), var$2), 46); return oncias_SemanticError$_apply(var$4, sc_StringOps$_stripMargin$extension(var$5, jl_AbstractStringBuilder_toString(var$7)), (oncias_SymbolUse_asVariable(var$1)).$position4); }; -function sc_SeqView$Map() { - let a = this; sc_View$Map.call(a); - a.$underlying26 = null; - a.$f11 = null; -} -let sc_SeqView$Map_map = ($this, $f) => { - return sc_SeqView_map$($this, $f); -}, -sc_SeqView$Map_appended = ($this, $elem) => { - return sc_SeqView_appended$($this, $elem); -}, -sc_SeqView$Map_prepended = ($this, $elem) => { - return sc_SeqView_prepended$($this, $elem); -}, -sc_SeqView$Map_drop = ($this, $n) => { - return sc_SeqView_drop$($this, $n); -}, -sc_SeqView$Map_sorted0 = ($this, $ord) => { - return sc_SeqView_sorted$($this, $ord); -}, -sc_SeqView$Map_stringPrefix = $this => { - return $rt_s(3617); -}, -sc_SeqView$Map_scala$collection$SeqOps$$super$concat = ($this, $suffix) => { - return sc_IterableOps_concat$($this, $suffix); -}, -sc_SeqView$Map_scala$collection$SeqOps$$super$sizeCompare = ($this, $otherSize) => { - return sc_IterableOps_sizeCompare$($this, $otherSize); -}, -sc_SeqView$Map_$plus$colon = ($this, $elem) => { - return $this.$prepended($elem); -}, -sc_SeqView$Map_$colon$plus = ($this, $elem) => { - return $this.$appended($elem); -}, -sc_SeqView$Map_appendedAll = ($this, $suffix) => { - return $this.$scala$collection$SeqOps$$super$concat($suffix); -}, -sc_SeqView$Map_concat = ($this, $suffix) => { - return $this.$appendedAll($suffix); -}, -sc_SeqView$Map_size = $this => { - return $this.$length(); -}, -sc_SeqView$Map_distinct = $this => { - return sc_SeqOps_distinct$($this); -}, -sc_SeqView$Map_distinctBy = ($this, $f) => { - return sc_SeqOps_distinctBy$($this, $f); -}, -sc_SeqView$Map_sortBy = ($this, $f, $ord) => { - return sc_SeqOps_sortBy$($this, $f, $ord); -}, -sc_SeqView$Map_lengthCompare = ($this, $len) => { - return $this.$scala$collection$SeqOps$$super$sizeCompare($len); -}, -sc_SeqView$Map_isEmpty = $this => { - return sc_SeqOps_isEmpty$($this); -}, -sc_SeqView$Map_apply = ($this, $idx) => { - return $this.$f11.$apply2($this.$underlying26.$apply1($idx)); -}, -sc_SeqView$Map_length = $this => { - return $this.$underlying26.$length(); -}, -sc_SeqView$Map_sorted = ($this, $ord) => { - return sc_SeqView_sorted$($this, $ord); -}, -sc_SeqView$Map_drop0 = ($this, $n) => { - return $this.$drop4($n); -}, -sc_SeqView$Map_prepended0 = ($this, $elem) => { - return $this.$prepended3($elem); -}, -sc_SeqView$Map_appended0 = ($this, $elem) => { - return $this.$appended2($elem); -}, -sc_SeqView$Map_map0 = ($this, $f) => { - return $this.$map8($f); -}, -sc_SeqView$Map__init_ = ($this, $underlying, $f) => { - $this.$underlying26 = $underlying; - $this.$f11 = $f; - sc_View$Map__init_0($this, $underlying, $f); -}, -sc_SeqView$Map__init_0 = (var_0, var_1) => { - let var_2 = new sc_SeqView$Map(); - sc_SeqView$Map__init_(var_2, var_0, var_1); - return var_2; -}; function sc_SeqView$Sorted() { let a = this; jl_Object.call(a); a.$scala$collection$SeqView$Sorted$$_sorted0 = null; - a.$underlying17 = null; + a.$underlying16 = null; a.$scala$collection$SeqView$Sorted$$len = 0; a.$scala$collection$SeqView$Sorted$$ord = null; a.$evaluated = 0; @@ -355902,7 +283924,7 @@ sc_SeqView$Sorted_scala$collection$SeqView$Sorted$$_sorted = $this => { var$2 = sci_Nil$_MODULE$; else if (var$1 != 1) { var$3 = $rt_createArray(jl_Object, var$1); - sc_AbstractIterable_copyToArray0($this.$underlying17, var$3); + sc_AbstractIterable_copyToArray0($this.$underlying16, var$3); ju_Arrays_sort(var$3, $this.$scala$collection$SeqView$Sorted$$ord); var$2 = sci_ArraySeq$_unsafeWrapArray(sci_ArraySeq$_MODULE$, var$3); } else { @@ -355910,14 +283932,14 @@ sc_SeqView$Sorted_scala$collection$SeqView$Sorted$$_sorted = $this => { var$2 = s_package$_List(s_package$_MODULE$); var$4 = sr_ScalaRunTime$_MODULE$; var$3 = $rt_createArray(jl_Object, 1); - var$3.data[0] = $this.$underlying17.$head(); + var$3.data[0] = $this.$underlying16.$head(); var$4 = sr_ScalaRunTime$_genericWrapArray(var$4, var$3); if (var$2 === null) $rt_throw(null); var$2 = sci_List_prependedAll(sci_Nil$_MODULE$, var$4); } $this.$evaluated = 1; - $this.$underlying17 = null; + $this.$underlying16 = null; $this.$scala$collection$SeqView$Sorted$$_sorted0 = var$2; $this.$bitmap$034 = 1; break a; @@ -355942,7 +283964,7 @@ sc_SeqView$Sorted_iterator = $this => { let var$1, $$plus$plus_xs; var$1 = sc_Iterator$_scala$collection$Iterator$$_empty; $$plus$plus_xs = new sc_SeqView$Sorted$iterator$lambda$_183_0; - $$plus$plus_xs.$_0517 = $this; + $$plus$plus_xs.$_0504 = $this; if (var$1 === null) $rt_throw(null); return sc_Iterator_concat$(var$1, $$plus$plus_xs); @@ -355957,166 +283979,150 @@ sc_SeqView$Sorted_isEmpty = $this => { }, sc_SeqView$Sorted_map = ($this, $f) => { return sc_SeqView_map$($this, $f); +}; +function sc_SeqView$Map() { + let a = this; sc_View$Map.call(a); + a.$underlying25 = null; + a.$f11 = null; +} +let sc_SeqView$Map_map = ($this, $f) => { + return sc_SeqView_map$($this, $f); }, -sc_IndexedSeqView$Map = $rt_classWithoutFields(sc_SeqView$Map), -sc_IndexedSeqView$Map_iterator = $this => { - return sc_IndexedSeqView_iterator$($this); -}, -sc_IndexedSeqView$Map_reverseIterator = $this => { - return sc_IndexedSeqView_reverseIterator$($this); -}, -sc_IndexedSeqView$Map_stringPrefix = $this => { - return $rt_s(5630); -}, -sc_IndexedSeqView$Map_head = $this => { - return sc_IndexedSeqOps_head$($this); -}, -sc_IndexedSeqView$Map_headOption = $this => { - return sc_IndexedSeqOps_headOption$($this); -}, -sc_IndexedSeqView$Map_lengthCompare = ($this, $len) => { - return sc_IndexedSeqOps_lengthCompare$($this, $len); -}, -sc_IndexedSeqView$Map_knownSize = $this => { - return $this.$length(); -}, -sc_IndexedSeqView$Map_map = ($this, $f) => { - return sc_IndexedSeqView_map$($this, $f); -}, -sc_IndexedSeqView$Map_map0 = ($this, $f) => { - return sc_IndexedSeqView_map$($this, $f); -}, -sc_IndexedSeqView$Map_drop = ($this, $n) => { - return sc_IndexedSeqView_drop$($this, $n); +sc_SeqView$Map_appended = ($this, $elem) => { + return sc_SeqView_appended$($this, $elem); }, -sc_IndexedSeqView$Map_drop0 = ($this, $n) => { - return sc_IndexedSeqView_drop$($this, $n); +sc_SeqView$Map_prepended = ($this, $elem) => { + return sc_SeqView_prepended$($this, $elem); }, -sc_IndexedSeqView$Map_prepended0 = ($this, $elem) => { - return sc_IndexedSeqView_prepended$($this, $elem); +sc_SeqView$Map_drop = ($this, $n) => { + return sc_SeqView_drop$($this, $n); }, -sc_IndexedSeqView$Map_prepended = ($this, $elem) => { - return sc_IndexedSeqView_prepended$($this, $elem); +sc_SeqView$Map_sorted0 = ($this, $ord) => { + return sc_SeqView_sorted$($this, $ord); }, -sc_IndexedSeqView$Map_appended0 = ($this, $elem) => { - return sc_IndexedSeqView_appended$($this, $elem); +sc_SeqView$Map_stringPrefix = $this => { + return $rt_s(3682); }, -sc_IndexedSeqView$Map_appended = ($this, $elem) => { - return sc_IndexedSeqView_appended$($this, $elem); -}; -function sc_SeqView$Drop() { - let a = this; sc_View$Drop.call(a); - a.$underlying13 = null; - a.$n5 = 0; -} -let sc_SeqView$Drop_scala$collection$SeqOps$$super$concat = ($this, $suffix) => { +sc_SeqView$Map_scala$collection$SeqOps$$super$concat = ($this, $suffix) => { return sc_IterableOps_concat$($this, $suffix); }, -sc_SeqView$Drop_scala$collection$SeqOps$$super$sizeCompare = ($this, $otherSize) => { +sc_SeqView$Map_scala$collection$SeqOps$$super$sizeCompare = ($this, $otherSize) => { return sc_IterableOps_sizeCompare$($this, $otherSize); }, -sc_SeqView$Drop_$plus$colon = ($this, $elem) => { +sc_SeqView$Map_$plus$colon = ($this, $elem) => { return $this.$prepended($elem); }, -sc_SeqView$Drop_$colon$plus = ($this, $elem) => { +sc_SeqView$Map_$colon$plus = ($this, $elem) => { return $this.$appended($elem); }, -sc_SeqView$Drop_appendedAll = ($this, $suffix) => { +sc_SeqView$Map_appendedAll = ($this, $suffix) => { return $this.$scala$collection$SeqOps$$super$concat($suffix); }, -sc_SeqView$Drop_concat = ($this, $suffix) => { +sc_SeqView$Map_concat = ($this, $suffix) => { return $this.$appendedAll($suffix); }, -sc_SeqView$Drop_size = $this => { +sc_SeqView$Map_size = $this => { return $this.$length(); }, -sc_SeqView$Drop_distinct = $this => { +sc_SeqView$Map_distinct = $this => { return sc_SeqOps_distinct$($this); }, -sc_SeqView$Drop_distinctBy = ($this, $f) => { +sc_SeqView$Map_distinctBy = ($this, $f) => { return sc_SeqOps_distinctBy$($this, $f); }, -sc_SeqView$Drop_sortBy = ($this, $f, $ord) => { +sc_SeqView$Map_sortBy = ($this, $f, $ord) => { return sc_SeqOps_sortBy$($this, $f, $ord); }, -sc_SeqView$Drop_lengthCompare = ($this, $len) => { +sc_SeqView$Map_lengthCompare = ($this, $len) => { return $this.$scala$collection$SeqOps$$super$sizeCompare($len); }, -sc_SeqView$Drop_isEmpty = $this => { +sc_SeqView$Map_isEmpty = $this => { return sc_SeqOps_isEmpty$($this); }, -sc_SeqView$Drop_length = $this => { - let var$1; - var$1 = $this.$underlying13; - if (var$1 === null) - $rt_throw(null); - return jl_Math_max(var$1.$length() - $this.$normN | 0, 0); -}, -sc_SeqView$Drop_apply = ($this, $i) => { - return $this.$underlying13.$apply1($i + $this.$normN | 0); +sc_SeqView$Map_apply = ($this, $idx) => { + return $this.$f11.$apply2($this.$underlying25.$apply1($idx)); }, -sc_SeqView$Drop_drop = ($this, $n) => { - return sc_SeqView$Drop__init_0($this.$underlying13, $this.$n5 + $n | 0); +sc_SeqView$Map_length = $this => { + return $this.$underlying25.$length(); }, -sc_SeqView$Drop_sorted = ($this, $ord) => { +sc_SeqView$Map_sorted = ($this, $ord) => { return sc_SeqView_sorted$($this, $ord); }, -sc_SeqView$Drop_drop0 = ($this, $n) => { +sc_SeqView$Map_drop0 = ($this, $n) => { return $this.$drop4($n); }, -sc_SeqView$Drop__init_ = ($this, $underlying, $n) => { - $this.$underlying13 = $underlying; - $this.$n5 = $n; - sc_View$Drop__init_($this, $underlying, $n); +sc_SeqView$Map_prepended0 = ($this, $elem) => { + return $this.$prepended3($elem); }, -sc_SeqView$Drop__init_0 = (var_0, var_1) => { - let var_2 = new sc_SeqView$Drop(); - sc_SeqView$Drop__init_(var_2, var_0, var_1); +sc_SeqView$Map_appended0 = ($this, $elem) => { + return $this.$appended2($elem); +}, +sc_SeqView$Map_map0 = ($this, $f) => { + return $this.$map8($f); +}, +sc_SeqView$Map__init_ = ($this, $underlying, $f) => { + $this.$underlying25 = $underlying; + $this.$f11 = $f; + sc_View$Map__init_0($this, $underlying, $f); +}, +sc_SeqView$Map__init_0 = (var_0, var_1) => { + let var_2 = new sc_SeqView$Map(); + sc_SeqView$Map__init_(var_2, var_0, var_1); return var_2; }, -sc_IndexedSeqView$Drop = $rt_classWithoutFields(sc_SeqView$Drop), -sc_IndexedSeqView$Drop_iterator = $this => { +sc_IndexedSeqView$Map = $rt_classWithoutFields(sc_SeqView$Map), +sc_IndexedSeqView$Map_iterator = $this => { return sc_IndexedSeqView_iterator$($this); }, -sc_IndexedSeqView$Drop_reverseIterator = $this => { +sc_IndexedSeqView$Map_reverseIterator = $this => { return sc_IndexedSeqView_reverseIterator$($this); }, -sc_IndexedSeqView$Drop_stringPrefix = $this => { - return $rt_s(5630); +sc_IndexedSeqView$Map_stringPrefix = $this => { + return $rt_s(4970); }, -sc_IndexedSeqView$Drop_head = $this => { +sc_IndexedSeqView$Map_head = $this => { return sc_IndexedSeqOps_head$($this); }, -sc_IndexedSeqView$Drop_headOption = $this => { +sc_IndexedSeqView$Map_headOption = $this => { return sc_IndexedSeqOps_headOption$($this); }, -sc_IndexedSeqView$Drop_lengthCompare = ($this, $len) => { +sc_IndexedSeqView$Map_lengthCompare = ($this, $len) => { return sc_IndexedSeqOps_lengthCompare$($this, $len); }, -sc_IndexedSeqView$Drop_knownSize = $this => { +sc_IndexedSeqView$Map_knownSize = $this => { return $this.$length(); }, -sc_IndexedSeqView$Drop_map = ($this, $f) => { +sc_IndexedSeqView$Map_map = ($this, $f) => { return sc_IndexedSeqView_map$($this, $f); }, -sc_IndexedSeqView$Drop_drop0 = ($this, $n) => { +sc_IndexedSeqView$Map_map0 = ($this, $f) => { + return sc_IndexedSeqView_map$($this, $f); +}, +sc_IndexedSeqView$Map_drop = ($this, $n) => { return sc_IndexedSeqView_drop$($this, $n); }, -sc_IndexedSeqView$Drop_drop = ($this, $n) => { +sc_IndexedSeqView$Map_drop0 = ($this, $n) => { return sc_IndexedSeqView_drop$($this, $n); }, -sc_IndexedSeqView$Drop_prepended = ($this, $elem) => { +sc_IndexedSeqView$Map_prepended0 = ($this, $elem) => { return sc_IndexedSeqView_prepended$($this, $elem); }, -sc_IndexedSeqView$Drop_appended = ($this, $elem) => { +sc_IndexedSeqView$Map_prepended = ($this, $elem) => { + return sc_IndexedSeqView_prepended$($this, $elem); +}, +sc_IndexedSeqView$Map_appended0 = ($this, $elem) => { + return sc_IndexedSeqView_appended$($this, $elem); +}, +sc_IndexedSeqView$Map_appended = ($this, $elem) => { return sc_IndexedSeqView_appended$($this, $elem); }; -function oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_31_0() { +function oncius_CypherType$greatestLowerBound$lambda$_35_0() { jl_Object.call(this); - this.$_0377 = null; + this.$_0839 = null; } -let oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_31_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_semanticCheckImportingWithSubQueryContext(var$1, var$0.$_0377); +let oncius_CypherType$greatestLowerBound$lambda$_35_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(var$0.$_0839.$isAssignableFrom0(var$1)); }, onciuh_StringHelper$RichString$ = $rt_classWithoutFields(), onciuh_StringHelper$RichString$_MODULE$ = null, @@ -356157,10 +284163,10 @@ onciuh_StringHelper$__clinit_ = () => { onciuh_StringHelper$_MODULE$ = var$1; var$2 = sc_StringOps$_MODULE$; s_Predef$_$callClinit(); - onciuh_StringHelper$_org$neo4j$cypher$internal$util$helpers$StringHelper$$positionPattern = sc_StringOps$_r$extension(var$2, $rt_s(7888)); + onciuh_StringHelper$_org$neo4j$cypher$internal$util$helpers$StringHelper$$positionPattern = sc_StringOps$_r$extension(var$2, $rt_s(7451)); }, -oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_134_0 = $rt_classWithoutFields(), -oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_134_0_apply = (var$0, var$1) => { +oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_138_0 = $rt_classWithoutFields(), +oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_138_0_apply = (var$0, var$1) => { let var$2; var$2 = var$1.$name5; var$1 = new jl_StringBuilder; @@ -356169,185 +284175,138 @@ oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambd jl_AbstractStringBuilder_append0(jl_StringBuilder_append(var$1, var$2), 96); return jl_AbstractStringBuilder_toString(var$1); }; -function sci_LazyList$$$anonfun$flatMapImpl$3$lambda$_50_0() { - let a = this; jl_Object.call(a); - a.$_01024 = null; - a.$_1350 = null; -} -let sci_LazyList$$$anonfun$flatMapImpl$3$lambda$_50_0_apply = var$0 => { - return sci_LazyList$_$anonfun$flatMapImpl$1(var$0.$_01024, var$0.$_1350); -}; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0() { - let a = this; jl_Object.call(a); - a.$_068 = null; - a.$_130 = null; - a.$_216 = null; -} -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$0.$_068; - var$2 = var$0.$_130; - var$3 = var$0.$_216; - var$1 = oncia_ReturnItems_declareVariables(var$1.$returnItems(), var$2.$currentScope.$elem0); - var$2 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0; - var$2.$_0337 = var$3; - return oncias_SemanticCheck_map$(var$1, var$2); -}; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$12$lambda$_49_0() { - let a = this; jl_Object.call(a); - a.$_0183 = null; - a.$_169 = null; +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0() { + jl_Object.call(this); + this.$_0327 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$12$lambda$_49_0_apply = (var$0, var$1) => { +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return var$0.$_0183.$warnOnAccessToRestrictedVariableInOrderByOrWhere(var$0.$_169, var$1); + var$2 = var$0.$_0327; + return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0() { +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0() { let a = this; jl_Object.call(a); - a.$_0643 = null; - a.$_1220 = null; - a.$_273 = null; - a.$_323 = null; + a.$_0561 = null; + a.$_1190 = null; + a.$_262 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0_apply = (var$0, var$1) => { +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; - var$1 = var$0.$_0643; - var$2 = var$0.$_1220; - var$3 = var$0.$_273; - var$4 = var$0.$_323; - var$2 = oncia_ReturnItems_declareVariables(var$1.$returnItems(), var$2); - var$5 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0; - var$5.$_0582 = var$1; - var$5.$_1199 = var$3; - var$5.$_266 = var$4; - return oncias_SemanticCheck_map$(var$2, var$5); -}, -oncius_TypeSpec$$anonfun$unwrapPotentialLists$1$lambda$_67_0 = $rt_classWithoutFields(), -oncius_TypeSpec$$anonfun$unwrapPotentialLists$1$lambda$_67_0_apply = (var$0, var$1) => { var$1 = var$1; - if (var$1 instanceof oncius_ListType) - var$1 = var$1.$innerType; - else if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - return var$1; + var$2 = var$0.$_0561; + var$3 = var$0.$_1190; + var$4 = var$0.$_262; + var$5 = var$3.$errors0.$concat(var$1.$errors0); + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = oncias_SemanticState$ScopeLocation$_symbolNames$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$4.$currentScope); + var$4 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0; + var$4.$_0159 = var$2; + var$4.$_155 = var$3; + var$2 = var$5.$map(var$4); + return oncias_SemanticCheckResult__init_(var$1.$state, var$2); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$16$lambda$_53_0() { - jl_Object.call(this); - this.$_0411 = null; +function oncia_SingleQuery$importVariables$1$lambda$_116_0() { + let a = this; jl_Object.call(a); + a.$_0579 = null; + a.$_1197 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$16$lambda$_53_0_apply = var$0 => { - return var$0.$_0411.$returnItems(); -}, -oncia_Clause$SetExtractor$ = $rt_classWithoutFields(), -oncia_Clause$SetExtractor$_unapplySeq = ($this, $s) => { - return s_Some__init_(sc_IterableOnceOps_toSeq$($s)); -}, -oncia_Clause$SetExtractor$__init_0 = ($this, $$outer) => { - return; -}, -oncia_Clause$SetExtractor$__init_ = var_0 => { - let var_1 = new oncia_Clause$SetExtractor$(); - oncia_Clause$SetExtractor$__init_0(var_1, var_0); - return var_1; -}, -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0 = $rt_classWithoutFields(), -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0_apply = var$0 => { - s_Predef$_$callClinit(); - s_Predef$_Set(s_Predef$_MODULE$); - return sci_Set$EmptySet$_MODULE$; -}, -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1 = $rt_classWithoutFields(), -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1_apply = (var$0, var$1) => { - return var$1.$dependencies(); +let oncia_SingleQuery$importVariables$1$lambda$_116_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0579; + var$3 = var$0.$_1197; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return oncias_SemanticCheck_chain$(oncia_ProjectionClause_semanticCheckContinuation$(var$1, var$3.$currentScope.$elem0, s_None$_MODULE$), oncias_SemanticAnalysisTooling_recordCurrentScope$(var$2, var$1)); }; function oncia_Match$$anonfun$9() { let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer54 = null; + a.$$outer48 = null; a.$variable$41 = null; } let oncia_Match$$anonfun$9_applyOrElse = ($this, $x1, $default) => { - let $labelExpression, $id; - if ($x1 instanceof oncie_RelationshipPattern) { - $x1 = $x1; - $labelExpression = $x1.$variable5; - $default = $x1.$labelExpression6; - if ($labelExpression instanceof s_Some) { - $x1 = $labelExpression.$value5; - if ($x1 instanceof oncie_Variable) { - $id = $x1.$name4; - if ($default instanceof s_Some) - a: { + let var$3, $labelExpression, $id; + a: { + if ($x1 instanceof oncie_RelationshipPattern) { + var$3 = $x1; + $labelExpression = var$3.$variable5; + var$3 = var$3.$labelExpression6; + if ($labelExpression instanceof s_Some) { + $labelExpression = $labelExpression.$value5; + if ($labelExpression instanceof oncie_Variable) { + $id = $labelExpression.$name4; + if (var$3 instanceof s_Some) b: { - $labelExpression = $default.$value5; - $x1 = $this.$variable$41; - if ($x1 !== null) { - if (!jl_String_equals($x1, $id)) - break a; - else + $labelExpression = var$3.$value5; + var$3 = $this.$variable$41; + if (var$3 !== null) { + if (!jl_String_equals(var$3, $id)) break b; + else + break a; } - if ($id !== null) + if ($id === null) break a; } - $x1 = new oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0; - $x1.$_0354 = $this; - $x1.$_1128 = $labelExpression; - return $x1; - } + } } } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); } - return s_PartialFunction$_fallback_fn; + $x1 = new oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0; + $x1.$_0341 = $this; + $x1.$_1120 = $labelExpression; + return $x1; }; function oncia_Match$$anonfun$10() { let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer39 = null; + a.$$outer35 = null; a.$variable$40 = null; } let oncia_Match$$anonfun$10_applyOrElse = ($this, $x2, $default) => { - let $labelExpression, $id; - if ($x2 instanceof oncie_NodePattern) { - $x2 = $x2; - $labelExpression = $x2.$variable6; - $default = $x2.$labelExpression7; - if ($labelExpression instanceof s_Some) { - $x2 = $labelExpression.$value5; - if ($x2 instanceof oncie_Variable) { - $id = $x2.$name4; - if ($default instanceof s_Some) - a: { + let var$3, $labelExpression, $id; + a: { + if ($x2 instanceof oncie_NodePattern) { + var$3 = $x2; + $labelExpression = var$3.$variable6; + var$3 = var$3.$labelExpression7; + if ($labelExpression instanceof s_Some) { + $labelExpression = $labelExpression.$value5; + if ($labelExpression instanceof oncie_Variable) { + $id = $labelExpression.$name4; + if (var$3 instanceof s_Some) b: { - $labelExpression = $default.$value5; - $x2 = $this.$variable$40; - if ($x2 !== null) { - if (!jl_String_equals($x2, $id)) - break a; - else + $labelExpression = var$3.$value5; + var$3 = $this.$variable$40; + if (var$3 !== null) { + if (!jl_String_equals(var$3, $id)) break b; + else + break a; } - if ($id !== null) + if ($id === null) break a; } - $x2 = new oncia_Match$$anonfun$10$applyOrElse$lambda$_0_0; - $x2.$_01170 = $this; - $x2.$_1392 = $labelExpression; - return $x2; - } + } } } + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x2); } - return s_PartialFunction$_fallback_fn; + $x2 = new oncia_Match$$anonfun$10$applyOrElse$lambda$_0_0; + $x2.$_01149 = $this; + $x2.$_1393 = $labelExpression; + return $x2; }; function oncia_Match$$anonfun$11() { let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer56 = null; + a.$$outer50 = null; a.$variable$4 = null; } let oncia_Match$$anonfun$11_applyOrElse = ($this, $x3, $default) => { let $id, $predicateLabels, $predicateRelTypes, $labelExpression; if ($x3 instanceof oncie_HasLabels) { $default = $x3; - $id = $default.$expression(); + $id = $default.$expression0(); $predicateLabels = $default.$labels(); if ($id instanceof oncie_Variable) a: { @@ -356364,13 +284323,13 @@ let oncia_Match$$anonfun$11_applyOrElse = ($this, $x3, $default) => { break a; } $x3 = new oncia_Match$$anonfun$11$applyOrElse$lambda$_0_0; - $x3.$_01120 = $predicateLabels; + $x3.$_01097 = $predicateLabels; return $x3; } } if ($x3 instanceof oncie_HasTypes) { $default = $x3; - $id = $default.$expression(); + $id = $default.$expression0(); $predicateRelTypes = $default.$types(); if ($id instanceof oncie_Variable) c: { @@ -356387,7 +284346,7 @@ let oncia_Match$$anonfun$11_applyOrElse = ($this, $x3, $default) => { break c; } $x3 = new oncia_Match$$anonfun$11$applyOrElse$lambda$_0_1; - $x3.$_0333 = $predicateRelTypes; + $x3.$_0325 = $predicateRelTypes; return $x3; } } @@ -356410,8 +284369,8 @@ let oncia_Match$$anonfun$11_applyOrElse = ($this, $x3, $default) => { break e; } $x3 = new oncia_Match$$anonfun$11$applyOrElse$lambda$_0_2; - $x3.$_01014 = $this; - $x3.$_1349 = $labelExpression; + $x3.$_01006 = $this; + $x3.$_1344 = $labelExpression; return $x3; } } @@ -356420,17 +284379,17 @@ let oncia_Match$$anonfun$11_applyOrElse = ($this, $x3, $default) => { return new oncia_Match$$anonfun$11$applyOrElse$lambda$_0_3; }, onciuh_StringHelper$RichString$$stripLinesAndMargins$extension$lambda$_1_0 = $rt_classWithoutFields(); -function oncia_Match$getPropertyPredicates$lambda$_76_0() { +function oncia_Match$getPropertyPredicates$lambda$_81_0() { let a = this; jl_Object.call(a); - a.$_0483 = null; - a.$_1169 = null; + a.$_0392 = null; + a.$_1138 = null; } -let oncia_Match$getPropertyPredicates$lambda$_76_0_apply = (var$0, var$1) => { +let oncia_Match$getPropertyPredicates$lambda$_81_0_apply = (var$0, var$1) => { var$1 = var$1; - return oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates(var$0.$_0483, var$0.$_1169, var$1.$expression18); + return oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates(var$0.$_0392, var$0.$_1138, var$1.$expression21); }, -oncia_Match$getPropertyPredicates$lambda$_76_1 = $rt_classWithoutFields(), -oncia_Match$getPropertyPredicates$lambda$_76_1_apply = var$0 => { +oncia_Match$getPropertyPredicates$lambda$_81_1 = $rt_classWithoutFields(), +oncia_Match$getPropertyPredicates$lambda$_81_1_apply = var$0 => { s_package$_$callClinit(); return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); }; @@ -356440,50 +284399,50 @@ function oncia_Match$$anonfun$getPropertyPredicates$3() { a.$variable$2 = null; } let oncia_Match$$anonfun$getPropertyPredicates$3_applyOrElse = ($this, $x1, $default) => { - let $id, $properties, $predicate; + let $id, $id_0, $properties, $predicate; if ($x1 instanceof oncie_NodePattern) { - $default = $x1; - $id = $default.$variable6; - $properties = $default.$properties5; - $predicate = $default.$predicate2; - if ($id instanceof s_Some) { - $default = $id.$value5; - if ($default instanceof oncie_Variable) + $id = $x1; + $id_0 = $id.$variable6; + $properties = $id.$properties6; + $predicate = $id.$predicate2; + if ($id_0 instanceof s_Some) { + $id_0 = $id_0.$value5; + if ($id_0 instanceof oncie_Variable) a: { b: { - $id = $default.$name4; - $default = $this.$variable$2; - if ($default !== null) { - if (!jl_String_equals($default, $id)) + $id_0 = $id_0.$name4; + $id = $this.$variable$2; + if ($id !== null) { + if (!jl_String_equals($id, $id_0)) break a; else break b; } - if ($id !== null) + if ($id_0 !== null) break a; } $x1 = new oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_0; - $x1.$_09 = $this; + $x1.$_06 = $this; $x1.$_18 = $properties; - $x1.$_26 = $predicate; + $x1.$_27 = $predicate; return $x1; } } } c: { if ($x1 instanceof oncie_RelationshipPattern) { - $x1 = $x1; - $default = $x1.$variable5; - $properties = $x1.$properties4; - $predicate = $x1.$predicate1; - if ($default instanceof s_Some) { - $x1 = $default.$value5; - if ($x1 instanceof oncie_Variable) + $id_0 = $x1; + $id = $id_0.$variable5; + $properties = $id_0.$properties5; + $predicate = $id_0.$predicate1; + if ($id instanceof s_Some) { + $id_0 = $id.$value5; + if ($id_0 instanceof oncie_Variable) d: { - $id = $x1.$name4; - $x1 = $this.$variable$2; - if ($x1 !== null) { - if (!jl_String_equals($x1, $id)) + $id = $id_0.$name4; + $id_0 = $this.$variable$2; + if ($id_0 !== null) { + if (!jl_String_equals($id_0, $id)) break d; else break c; @@ -356493,223 +284452,275 @@ let oncia_Match$$anonfun$getPropertyPredicates$3_applyOrElse = ($this, $x1, $def } } } - return s_PartialFunction$_fallback_fn; + return s_PartialFunction$$_clinit_$lambda$_0_0_apply($default, $x1); } $x1 = new oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_1; - $x1.$_0681 = $this; - $x1.$_1237 = $properties; - $x1.$_275 = $predicate; + $x1.$_0675 = $this; + $x1.$_1229 = $properties; + $x1.$_274 = $predicate; return $x1; +}; +function oncia_SubqueryCall$returnToOuterScope$lambda$_14_0() { + jl_Object.call(this); + this.$_0727 = null; +} +let oncia_SubqueryCall$returnToOuterScope$lambda$_14_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0727; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$3 = var$1.$currentScope.$elem0; + var$1 = oncias_SemanticState_copy(var$1, var$2, var$1.$typeTable0, var$1.$recordedScopes0, var$1.$notifications, var$1.$features, var$1.$declareVariablesToSuppressDuplicateErrors, var$1.$semanticCheckHasRunOnce, var$1.$targetGraph, var$1.$workingGraph); + var$4 = var$1.$currentScope; + oncias_SemanticState$_$callClinit(); + var$1 = oncias_SemanticState_newSiblingScope(oncias_SemanticState_copy(var$1, (onciuh_TreeZipper$Location_insertRight(var$4, var$3)).$get1(), var$1.$typeTable0, var$1.$recordedScopes0, var$1.$notifications, var$1.$features, var$1.$declareVariablesToSuppressDuplicateErrors, var$1.$semanticCheckHasRunOnce, var$1.$targetGraph, var$1.$workingGraph)); + var$1 = oncias_SemanticState_importValuesFromScope(var$1, var$2.$elem0, oncias_SemanticState_importValuesFromScope$default$2(var$1)); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); }, -oncia_Match$ = $rt_classWithoutFields(), -oncia_Match$_MODULE$ = null, -oncia_Match$_hintPrettifier = null, -oncia_Match$_$callClinit = () => { - oncia_Match$_$callClinit = $rt_eraseClinit(oncia_Match$); - oncia_Match$__clinit_(); -}, -oncia_Match$__clinit_ = () => { - let var$1, var$2; - var$1 = new oncia_Match$; - oncia_Match$_$callClinit(); - oncia_Match$_MODULE$ = var$1; - var$2 = new onciap_Prettifier; - var$1 = onciap_ExpressionStringifier$_apply(onciap_ExpressionStringifier$_MODULE$, onciap_ExpressionStringifier$_failingExtender, 0, 0, 0, 0); - onciap_Prettifier$_$callClinit(); - onciap_Prettifier__init_(var$2, var$1, onciap_Prettifier$_apply$default$2(onciap_Prettifier$_MODULE$), 1); - oncia_Match$_hintPrettifier = var$2; +oncie_Pattern$$anonfun$length$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncie_Pattern$$anonfun$length$1_applyOrElse = ($this, $x1, $default) => { + if (!($x1 instanceof oncie_RelationshipChain)) + return new oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_1; + return new oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0; +}; +function sc_SeqView$Sorted$iterator$lambda$_183_0() { + jl_Object.call(this); + this.$_0504 = null; +} +let sc_SeqView$Sorted$iterator$lambda$_183_0_apply = var$0 => { + return (sc_SeqView$Sorted_scala$collection$SeqView$Sorted$$_sorted(var$0.$_0504)).$iterator0(); +}; +function onciu_Foldable$Folder$treeForall$lambda$_6_0() { + let a = this; jl_Object.call(a); + a.$_01154 = null; + a.$_191 = null; +} +let onciu_Foldable$Folder$treeForall$lambda$_6_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_191; + if (!(var$1 instanceof oncie_FunctionInvocation)) + var$3 = 1; + else + a: { + b: { + c: { + d: { + var$4 = var$1.$function1; + oncief_Rand$_$callClinit(); + var$1 = oncief_Rand$_MODULE$; + if (var$4 !== null) { + if (jl_Object_equals(var$4, var$1)) + break c; + else + break d; + } + if (var$1 === null) + break c; + } + e: { + oncief_RandomUUID$_$callClinit(); + var$1 = oncief_RandomUUID$_MODULE$; + if (var$4 !== null) { + if (jl_Object_equals(var$4, var$1)) + break c; + else + break e; + } + if (var$1 === null) + break c; + } + var$1 = oncief_UnresolvedFunction$_MODULE$; + if (var$4 !== null) { + if (jl_Object_equals(var$4, var$1)) + break c; + else + break b; + } + if (var$1 !== null) + break b; + } + var$3 = 0; + break a; + } + var$3 = 1; + } + if (sr_BoxesRunTime_unboxToBoolean(jl_Boolean_valueOf(var$3))) + var$2 = s_None$_MODULE$; + return var$2; }, -oncie_Pattern$$anonfun$length$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncie_Pattern$$anonfun$length$1_applyOrElse = ($this, $x1, $default) => { - if (!($x1 instanceof oncie_RelationshipChain)) - return new oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_1; - return new oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0; +oncius_ClosedDynamicUnionType$leastUpperBound$lambda$_39_0 = $rt_classWithoutFields(), +oncius_ClosedDynamicUnionType$leastUpperBound$lambda$_39_0_apply = (var$0, var$1, var$2) => { + return var$1.$leastUpperBound(var$2); }; -function oavra_LexerIndexedCustomAction() { - let a = this; jl_Object.call(a); - a.$offset3 = 0; - a.$action4 = null; +function oncia_Match$containsPropertyPredicates$lambda$_80_0() { + jl_Object.call(this); + this.$_0640 = null; } -let oavra_LexerIndexedCustomAction_getOffset = $this => { - return $this.$offset3; -}, -oavra_LexerIndexedCustomAction_getAction = $this => { - return $this.$action4; -}, -oavra_LexerIndexedCustomAction_isPositionDependent = $this => { - return 1; +let oncia_Match$containsPropertyPredicates$lambda$_80_0_apply = (var$0, var$1) => { + var$1 = var$1; + return jl_Boolean_valueOf(var$0.$_0640.$contains(var$1.$name5)); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0() { + jl_Object.call(this); + this.$_01144 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_01144; + if (var$1 instanceof oncia_AscSortItem) { + var$1 = var$1.$expression23; + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(7452)); + var$1 = jl_AbstractStringBuilder_toString(var$2); + } else { + if (!(var$1 instanceof oncia_DescSortItem)) + $rt_throw(s_MatchError__init_(var$1)); + var$1 = var$1.$expression26; + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(7453)); + var$1 = jl_AbstractStringBuilder_toString(var$2); + } + return var$1; }, -oavra_LexerIndexedCustomAction_execute = ($this, $lexer) => { - $this.$action4.$execute($lexer); +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0_apply = (var$0, var$1) => { + return var$1.$batchSize; }, -oavra_LexerIndexedCustomAction_hashCode = $this => { - return oavrm_MurmurHash_finish(oavrm_MurmurHash_update0(oavrm_MurmurHash_update(oavrm_MurmurHash_initialize(), $this.$offset3), $this.$action4), 2); +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1_apply = (var$0, var$1) => { + return var$1.$behaviour; }, -oavra_LexerIndexedCustomAction_equals = ($this, $obj) => { - let $other; - if ($obj === $this) - return 1; - if (!($obj instanceof oavra_LexerIndexedCustomAction)) - return 0; - $other = $obj; - return $this.$offset3 == $other.$offset3 && $this.$action4.$equals($other.$action4) ? 1 : 0; +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2_apply = (var$0, var$1) => { + return var$1.$reportAs; }; -function sc_SeqView$Sorted$iterator$lambda$_183_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0() { jl_Object.call(this); - this.$_0517 = null; + this.$_0236 = null; } -let sc_SeqView$Sorted$iterator$lambda$_183_0_apply = var$0 => { - return (sc_SeqView$Sorted_scala$collection$SeqView$Sorted$$_sorted(var$0.$_0517)).$iterator0(); +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + var$2 = var$0.$_0236; + var$3 = var$1.$output; + var$4 = new onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_0; + var$4.$_0885 = var$2; + var$4 = s_Option_getOrElse(s_Option_map(var$3, var$4), new onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_1); + var$1 = onciap_DefaultExpressionStringifier_apply(var$2.$$outer.$expr1, var$1.$variable8); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$4), var$1); + return jl_AbstractStringBuilder_toString(var$2); }; -function oncius_ListType$greatestLowerBound$lambda$_38_0() { +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1() { jl_Object.call(this); - this.$_0345 = null; + this.$_0858 = null; } -let oncius_ListType$greatestLowerBound$lambda$_38_0_apply = (var$0, var$1) => { - let var$2; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0345; - return oncius_ListType_copy(var$2, var$1, var$2.$isNullable1, var$2.$position24); + return onciap_Prettifier$IndentingQueryPrettifier_asString(var$0.$_0858, var$1); }; -function oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_4() { - let a = this; jl_Object.call(a); - a.$_0642 = null; - a.$_1219 = null; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2() { + jl_Object.call(this); + this.$_0189 = null; } -let oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_4_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - a: { - var$1 = var$1; - var$2 = var$0.$_0642; - var$3 = var$0.$_1219; - var$4 = 0; - var$5 = null; - var$6 = var$1.$greatestLowerBound(var$3); - if (var$6 instanceof s_Some) { - var$4 = 1; - var$5 = var$6; - var$7 = var$5.$value5; - if (s_Option_isEmpty(var$2.$elem)) { - var$1 = s_Some__init_(var$7); - break a; - } - } - if (var$4) { - var$1 = var$5.$value5; - if (s_Option_isDefined((var$2.$elem.$get1()).$greatestLowerBound(var$1))) { - var$1 = (var$2.$elem.$get1()).$greatestLowerBound(var$1); - break a; - } - } - if (var$4) - var$1 = s_Some__init_(var$3); - else { - if (!jl_Object_equals(s_None$_MODULE$, var$6)) - $rt_throw(s_MatchError__init_(var$6)); - var$1 = var$2.$elem; - } - } - var$2.$elem = var$1; - return sr_BoxedUnit_UNIT; +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_Prettifier$IndentingQueryPrettifier_asNewLine(var$0.$_0189, var$1); +}, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3_apply = var$0 => { + return $rt_s(4); }; -function oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_0() { +function oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_0() { let a = this; jl_Object.call(a); - a.$_0851 = null; - a.$_1291 = null; + a.$_01175 = null; + a.$_1235 = null; } -let oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0851; - var$3 = var$0.$_1291; - var$4 = var$2.$innerTypes0; - var$2 = new oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0; - var$2.$_0521 = var$3; - var$2.$_1182 = var$1; - var$4.$foreach(var$2); - return sr_BoxedUnit_UNIT; -}, -oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_1 = $rt_classWithoutFields(), -oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(s_Option_isDefined(var$1)); -}, -oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_2 = $rt_classWithoutFields(), -oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_2_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(s_Option_isDefined(var$1)); -}, -oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_3 = $rt_classWithoutFields(), -oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_3_apply = (var$0, var$1) => { - return var$1.$get1(); -}, -oncius_ClosedDynamicUnionType$leastUpperBound$lambda$_39_0 = $rt_classWithoutFields(), -oncius_ClosedDynamicUnionType$leastUpperBound$lambda$_39_0_apply = (var$0, var$1, var$2) => { - return var$1.$leastUpperBound(var$2); + var$2 = var$0.$_1235; + var$3 = oncias_package$_MODULE$; + var$4 = oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$2, var$1)); + var$2 = oncias_SemanticState_symbol(var$2, var$1.$name4); + var$5 = new oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0; + var$5.$_01074 = var$1; + var$5.$_1365 = var$4; + var$5.$_2121 = var$2; + return oncias_package$_liftSemanticEitherFunc(var$3, var$5); }; -function oncia_Match$containsPropertyPredicates$lambda$_75_0() { +function oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_1() { jl_Object.call(this); - this.$_01029 = null; + this.$_0102 = null; } -let oncia_Match$containsPropertyPredicates$lambda$_75_0_apply = (var$0, var$1) => { +let oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_1_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - return jl_Boolean_valueOf(var$0.$_01029.$contains(var$1.$name5)); + var$2 = var$0.$_0102; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$1 = oncias_SemanticState_importValuesFromScope(var$1, ((oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$2)).$get1()).$location.$elem0, oncias_SemanticState_importValuesFromScope$default$2(var$1)); + var$1 = oncias_SemanticState_importValuesFromScope(var$1, var$2.$elem0, oncias_SemanticState_importValuesFromScope$default$2(var$1)); + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); }; -function oncia_Clause$LegacyLabelExpression$1() { +function oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_80_0() { let a = this; jl_Object.call(a); - a.$labelExpression9 = null; - a.$$outer55 = null; + a.$_0843 = null; + a.$_1283 = null; } -let oncia_Clause$LegacyLabelExpression$1_productPrefix = $this => { - return $rt_s(7889); -}, -oncia_Clause$LegacyLabelExpression$1_productArity = $this => { - return 1; -}, -oncia_Clause$LegacyLabelExpression$1_productElement = ($this, $x$1) => { - switch ($x$1) { - case 0: - return $this.$labelExpression9; - default: - } - return sr_Statics_ioobe($x$1); -}, -oncia_Clause$LegacyLabelExpression$1_productIterator = $this => { - return sr_ScalaRunTime$_typedProductIterator(sr_ScalaRunTime$_MODULE$, $this); -}, -oncia_Clause$LegacyLabelExpression$1_hashCode = $this => { - return sr_ScalaRunTime$__hashCode(sr_ScalaRunTime$_MODULE$, $this); +function oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_80_1() { + jl_Object.call(this); + this.$_0264 = null; +} +let oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_80_1_apply = (var$0, var$1) => { + let var$2; + var$2 = var$0.$_0264; + oncias_SemanticCheck$_$callClinit(); + return oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_recordWorkingGraph(var$1, var$2)); +}; +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0() { + jl_Object.call(this); + this.$_0586 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_DefaultExpressionStringifier_apply0(var$0.$_0586.$$outer.$expr1, var$1); }, -oncia_Clause$LegacyLabelExpression$1_toString = $this => { - return sr_ScalaRunTime$__toString(sr_ScalaRunTime$_MODULE$, $this); +oncia_UsingStatefulShortestPathHint = $rt_classWithoutFields(0), +oncia_UsingStatefulShortestPathAll = $rt_classWithoutFields(); +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1() { + jl_Object.call(this); + this.$_0259 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1_apply = (var$0, var$1) => { + var$1 = var$1; + return onciap_DefaultExpressionStringifier_apply(var$0.$_0259.$$outer.$expr1, var$1); }, -oncia_Clause$LegacyLabelExpression$1_equals = ($this, $x$1) => { +oncia_UsingStatefulShortestPathInto = $rt_classWithoutFields(); +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_2() { + jl_Object.call(this); + this.$_01184 = null; +} +function onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_3() { + jl_Object.call(this); + this.$_01153 = null; +} +function oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0() { + let a = this; jl_Object.call(a); + a.$_0341 = null; + a.$_1120 = null; +} +let oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3; - a: { - b: { - if ($this !== $x$1) { - if (!(!($x$1 instanceof oncia_Clause$LegacyLabelExpression$1) ? 0 : 1)) - break b; - c: { - $x$1 = $x$1; - var$2 = $this.$labelExpression9; - $x$1 = $x$1.$labelExpression9; - if (var$2 !== null) { - if (!var$2.$equals($x$1)) - break b; - else - break c; - } - if ($x$1 !== null) - break b; - } - if (!($this instanceof oncia_Clause$LegacyLabelExpression$1)) - break b; - } - var$3 = 1; - break a; - } - var$3 = 0; - } - return var$3; + var$1 = var$1; + var$2 = var$0.$_0341; + var$3 = var$0.$_1120; + return var$1.$concat(oncia_Match_org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression(var$2.$$outer48, var$3)); }, srj_JFunction1$mcII$sp = $rt_classWithoutFields(0), srj_JFunction1$mcII$sp_apply = ($this, $t) => { @@ -356726,228 +284737,242 @@ oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0_apply$mcII$sp = (var$0, }; function oncia_Match$$anonfun$10$applyOrElse$lambda$_0_0() { let a = this; jl_Object.call(a); - a.$_01170 = null; - a.$_1392 = null; + a.$_01149 = null; + a.$_1393 = null; } let oncia_Match$$anonfun$10$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_01170; - var$3 = var$0.$_1392; - return var$1.$concat(oncia_Match_org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression(var$2.$$outer39, var$3)); -}; -function oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0() { - let a = this; jl_Object.call(a); - a.$_0354 = null; - a.$_1128 = null; -} -let oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0354; - var$3 = var$0.$_1128; - return var$1.$concat(oncia_Match_org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression(var$2.$$outer54, var$3)); + var$2 = var$0.$_01149; + var$3 = var$0.$_1393; + return var$1.$concat(oncia_Match_org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression(var$2.$$outer35, var$3)); }; function oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_0() { let a = this; jl_Object.call(a); - a.$_09 = null; + a.$_06 = null; a.$_18 = null; - a.$_26 = null; + a.$_27 = null; } let oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_09; + var$2 = var$0.$_06; var$3 = var$0.$_18; - var$4 = var$0.$_26; + var$4 = var$0.$_27; var$5 = new onciu_Foldable$SkipChildren; var$3 = var$1.$concat(oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap(var$2.$$outer12, var$3)); var$1 = new oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_0; - var$1.$_0494 = var$2; + var$1.$_0483 = var$2; onciu_Foldable$SkipChildren__init_0(var$5, var$3.$concat(s_Option_getOrElse(s_Option_map(var$4, var$1), new oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_1))); return var$5; }; function oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_1() { let a = this; jl_Object.call(a); - a.$_0681 = null; - a.$_1237 = null; - a.$_275 = null; + a.$_0675 = null; + a.$_1229 = null; + a.$_274 = null; } let oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0681; - var$3 = var$0.$_1237; - var$4 = var$0.$_275; + var$2 = var$0.$_0675; + var$3 = var$0.$_1229; + var$4 = var$0.$_274; var$5 = new onciu_Foldable$SkipChildren; var$3 = var$1.$concat(oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap(var$2.$$outer12, var$3)); var$1 = new oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_0; - var$1.$_01062 = var$2; + var$1.$_01049 = var$2; onciu_Foldable$SkipChildren__init_0(var$5, var$3.$concat(s_Option_getOrElse(s_Option_map(var$4, var$1), new oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_1))); return var$5; }; -function oncius_TypeRange$$anonfun$intersect$1$lambda$_42_0() { - jl_Object.call(this); - this.$_0102 = null; +function oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_72_0() { + let a = this; jl_Object.call(a); + a.$_0492 = null; + a.$_1169 = null; } -let oncius_TypeRange$$anonfun$intersect$1$lambda$_42_0_apply = var$0 => { - return var$0.$_0102.$upper0; +let oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_72_0_apply = var$0 => { + let var$1, var$2, var$3, var$4; + var$1 = var$0.$_0492; + var$2 = var$0.$_1169; + var$3 = var$1.$_0843; + var$1 = var$1.$_1283; + var$4 = new s_Some; + oncias_SemanticState$ScopeLocation$_$callClinit(); + s_Some__init_0(var$4, var$1.$currentScope.$elem0); + return oncia_SingleQuery_checkClauses(var$3, var$2, var$4); }; -function oncius_TypeRange$$anonfun$intersect$1$lambda$_42_1() { - jl_Object.call(this); - this.$_0592 = null; +function oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_93_0() { + let a = this; jl_Object.call(a); + a.$_0459 = null; + a.$_1159 = null; } -let oncius_TypeRange$$anonfun$intersect$1$lambda$_42_1_apply = (var$0, var$1) => { +let oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_93_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0592; - var$3 = new s_Some; - var$4 = var$2.$upper0; - var$2 = new oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0; - var$2.$_0979 = var$1; - var$5 = new oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1; - var$5.$_0371 = var$1; - s_Some__init_0(var$3, s_Option_fold(var$4, var$2, var$5)); - return var$3; + var$2 = var$0.$_0459; + var$3 = var$0.$_1159; + oncias_SemanticState$ScopeLocation$_$callClinit(); + var$4 = var$3.$currentScope.$elem0.$symbolTable; + var$3 = var$1.$currentScope.$elem0.$children2.$map(new oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_0); + s_Predef$_$callClinit(); + var$3 = var$3.$foldLeft(sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)), new oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_1); + var$5 = new oncia_SingleQuery$$anonfun$3; + if (var$2 === null) + $rt_throw(null); + var$5.$$outer70 = var$2; + var$5.$innerScopeSymbols$2 = var$3; + return oncias_SemanticCheckResult__init_(var$1, ((var$4.$collect0(var$5)).$map(new oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_2)).$toSeq()); +}; +function oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0() { + jl_Object.call(this); + this.$_0534 = null; +} +let oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + a: { + b: { + c: { + var$1 = var$1; + var$2 = var$0.$_0534; + var$3 = var$1.$definition; + var$1 = var$2.$definition; + if (var$3 !== null) { + if (oncias_SymbolUse_equals(var$3, var$1)) + break c; + else + break b; + } + if (var$1 !== null) + break b; + } + var$4 = 0; + break a; + } + var$4 = 1; + } + return jl_Boolean_valueOf(var$4); +}; +function oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0() { + jl_Object.call(this); + this.$_0974 = null; +} +let oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0_apply = var$0 => { + return var$0.$_0974; +}; +function oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1() { + jl_Object.call(this); + this.$_0357 = null; +} +let oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1_apply = (var$0, var$1) => { + return var$1.$leastUpperBound(var$0.$_0357); }, -oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_108_0 = $rt_classWithoutFields(), -oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_108_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = new oncias_SemanticCheckResult; - var$3 = var$1.$state; - s_package$_$callClinit(); - oncias_SemanticCheckResult__init_0(var$2, var$3, sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$))); - return var$2; +oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_0_apply = (var$0, var$1) => { + return var$1.$semanticCheck(); +}, +oncias_SemanticCheckContext$ = $rt_classWithoutFields(), +oncias_SemanticCheckContext$_MODULE$ = null, +oncias_SemanticCheckContext$__clinit_ = () => { + oncias_SemanticCheckContext$_MODULE$ = new oncias_SemanticCheckContext$; }; -function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_94_0() { - let a = this; jl_Object.call(a); - a.$_0526 = null; - a.$_1184 = null; - a.$_260 = null; +function oncia_SingleQuery$$anonfun$1() { + sr_AbstractPartialFunction.call(this); + this.$resultState$1 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_94_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; +let oncia_SingleQuery$$anonfun$1_applyOrElse = ($this, $x1, $default) => { + let var$3; + if (!$rt_isInstance($x1, oncie_ExpressionWithComputedDependencies)) + return $default.$apply2($x1); + $x1 = $x1; + oncias_SemanticState$ScopeLocation$_$callClinit(); + $default = oncias_SemanticState$ScopeLocation$_MODULE$; + var$3 = $this.$resultState$1.$state.$recordedScopes0; + oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); + return $x1.$withComputedScopeDependencies((oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension($default, (var$3.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $x1.$subqueryAstNode()))).$location)).$dependencies0.$map(new oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0)); +}; +function oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_1() { + jl_Object.call(this); + this.$_0929 = null; +} +let oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_1_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0526; - var$3 = var$0.$_1184; - var$4 = var$0.$_260; - var$5 = oncia_SubqueryCall_returnToOuterScope$(var$2, var$3.$state.$currentScope); - var$3 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_93_0; - var$3.$_016 = var$2; - var$3.$_110 = var$1; - var$3.$_28 = var$4; - return oncias_SemanticCheck_flatMap$(var$5, var$3); + return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$((onciu_topDown$TopDownRewriter_apply(var$0.$_0929, var$1.$expression0())).$dependencies())); }; -function oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_87_0() { +function oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_2() { let a = this; jl_Object.call(a); - a.$_0852 = null; - a.$_1292 = null; - a.$_294 = null; + a.$_0429 = null; + a.$_1149 = null; } -let oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_87_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$0.$_0852; - var$2 = var$0.$_1292; - var$3 = var$0.$_294; - var$4 = var$2.$state.$currentScope.$elem0; +let oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_2_apply = var$0 => { + let var$1, var$2, var$3, var$4, var$5, var$6, var$7; + var$1 = var$0.$_0429; + var$2 = var$0.$_1149; + var$3 = var$2.$returnItems3.$items0.$exists(new oncia_SingleQuery$checkReturnItems$1$lambda$_125_0); oncias_SemanticCheck$_$callClinit(); - var$5 = oncias_SemanticCheck$_MODULE$; - var$6 = var$1.$innerQuery1.$isReturning(); - var$7 = new oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_69_0; - var$7.$_0471 = var$1; - var$7.$_1164 = var$4; - var$5 = oncias_SemanticCheck$_when(var$5, var$6, var$7); - var$1 = new oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_86_0; - var$1.$_0942 = var$3; - var$1.$_1331 = var$2; - return var$5.$map11(var$1); + var$4 = oncias_SemanticCheck$_MODULE$; + var$5 = new oncia_SingleQuery$checkReturnItems$1$lambda$_125_1; + var$5.$_0476 = var$1; + var$5.$_1163 = var$2; + var$6 = oncias_SemanticCheck$_when(var$4, var$3, var$5); + var$4 = oncias_SemanticCheck$_MODULE$; + var$3 = var$2.$distinct2; + var$5 = new oncia_SingleQuery$checkDistinct$1$lambda$_127_0; + var$5.$_0991 = var$1; + var$5.$_1339 = var$2; + var$4 = var$6.$chain(oncias_SemanticCheck$_when(var$4, var$3, var$5)); + oncias_OptionSemanticChecking$_$callClinit(); + var$5 = oncias_OptionSemanticChecking$_MODULE$; + var$7 = var$2.$where2; + var$6 = new oncia_SingleQuery$checkWhere$1$lambda$_131_0; + var$6.$_031 = var$1; + var$6.$_115 = var$2; + var$7 = oncias_SemanticCheck_chain$(var$4, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$5, var$7, var$6)); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$6 = var$2.$orderBy4; + var$5 = new oncia_SingleQuery$checkOrderBy$1$lambda$_129_0; + var$5.$_0395 = var$1; + var$5.$_1141 = var$2; + var$7 = oncias_SemanticCheck_chain$(var$7, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$6, var$5)); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$6 = var$2.$skip5; + var$5 = new oncia_SingleQuery$checkSkip$1$lambda$_133_0; + var$5.$_01042 = var$1; + var$5.$_1355 = var$2; + var$7 = oncias_SemanticCheck_chain$(var$7, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$6, var$5)); + var$4 = oncias_OptionSemanticChecking$_MODULE$; + var$6 = var$2.$limit5; + var$5 = new oncia_SingleQuery$checkLimit$1$lambda$_135_0; + var$5.$_0987 = var$1; + var$5.$_1338 = var$2; + return oncias_SemanticCheck_chain$(var$7, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$6, var$5)); }; -function oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_135_0() { +function oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_91_0() { let a = this; jl_Object.call(a); - a.$_0687 = null; - a.$_1239 = null; + a.$_0308 = null; + a.$_1112 = null; } -let oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_135_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7; - a: { - var$2 = var$0.$_0687; - var$3 = var$0.$_1239; - oncias_IterableOnceSemanticChecking$_$callClinit(); - var$4 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$1 = (oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$4, var$3.$returnItems4.$items0, new oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_0)).$run(var$1, new oncias_SemanticCheckContext$$anon$2); - onciu_topDown$_$callClinit(); - var$4 = onciu_topDown$_MODULE$; - onciu_Rewriter$_$callClinit(); - var$5 = onciu_Rewriter$_MODULE$; - var$6 = new oncia_SingleQuery$$anonfun$1; - var$6.$resultState$1 = var$1; - var$1 = onciu_topDown$_apply(var$4, onciu_Rewriter$_lift(var$5, var$6), onciu_topDown$_apply$default$2(onciu_topDown$_MODULE$), 1, onciu_CancellationChecker$NeverCancelled$_MODULE$); - var$4 = var$3.$returnItems4; - if (!var$4.$includeExisting0) { - var$5 = var$4.$items0; - var$4 = new oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_1; - var$4.$_029 = var$1; - if (!var$5.$exists(var$4)) { - var$7 = 0; - break a; - } - } - var$7 = 1; - } - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_MODULE$; - var$4 = new oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_2; - var$4.$_0672 = var$2; - var$4.$_1235 = var$3; - return oncias_SemanticCheck$_when(var$1, var$7, var$4); +let oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_91_0_apply = (var$0, var$1) => { + let var$2, var$3; + var$1 = var$1; + var$2 = var$0.$_0308; + var$3 = var$0.$_1112; + var$2 = var$2.$errors0.$concat(!sc_IterableOnceOps_nonEmpty$(var$3.$errors0) ? var$1.$errors0 : var$3.$errors0); + return oncias_SemanticCheckResult__init_(var$1.$state, var$2); }; -function oncia_SingleQuery$$anonfun$2() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer76 = null; - a.$innerScopeSymbols$1 = null; +function oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0() { + jl_Object.call(this); + this.$_0207 = null; } -let oncia_SingleQuery$$anonfun$2_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5, var$6; - a: { - $x = $x; - if ($x !== null) { - var$3 = $x.$_1(); - var$4 = $x.$_2(); - var$5 = $this.$innerScopeSymbols$1; - if (var$5.$contains(var$4.$name12) && !((var$5.$apply2(var$4.$name12)).$map(new oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_162_0)).$contains(var$4.$definition) ? 1 : 0) { - $x = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - $default = $this.$innerScopeSymbols$1.$apply2(var$3); - var$6 = new oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0; - var$6.$_0551 = var$4; - $x = s_Predef$ArrowAssoc$_$minus$greater$extension($x, var$3, (oncias_SymbolUse_asVariable((($default.$find3(var$6)).$get1()).$definition)).$position4); - break a; - } - } - $x = $default.$apply2($x); - } - return $x; +let oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0_apply = (var$0, var$1, var$2) => { + return oncie_Expression_org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1(var$1, var$2, var$0.$_0207.$variable$20); }, -oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_164_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_164_0_apply = (var$0, var$1, var$2) => { - let var$3, var$4; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - var$2 = var$3.$_20; - if (var$2 === null) - $rt_throw(s_MatchError__init_(var$3)); - var$3 = var$2.$_1(); - var$2 = var$2.$_2(); - var$4 = new onciu_SubqueryVariableShadowing; - var$4.$position65 = var$2; - var$4.$varName2 = var$3; - return oncias_SemanticState_addNotification(var$1, var$4); +oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1 = $rt_classWithoutFields(), +oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1_apply = (var$0, var$1) => { + return oncie_Expression$TreeAcc_popScope(var$1); }; function sc_SeqView$Appended() { let a = this; sc_View$Appended.call(a); - a.$underlying16 = null; + a.$underlying15 = null; a.$elem9 = null; } let sc_SeqView$Appended_map = ($this, $f) => { @@ -356966,7 +284991,7 @@ sc_SeqView$Appended_sorted0 = ($this, $ord) => { return sc_SeqView_sorted$($this, $ord); }, sc_SeqView$Appended_stringPrefix = $this => { - return $rt_s(3617); + return $rt_s(3682); }, sc_SeqView$Appended_scala$collection$SeqOps$$super$concat = ($this, $suffix) => { return sc_IterableOps_concat$($this, $suffix); @@ -357005,12 +285030,12 @@ sc_SeqView$Appended_isEmpty = $this => { return sc_SeqOps_isEmpty$($this); }, sc_SeqView$Appended_apply = ($this, $idx) => { - if ($idx == $this.$underlying16.$length()) + if ($idx == $this.$underlying15.$length()) return $this.$elem9; - return $this.$underlying16.$apply1($idx); + return $this.$underlying15.$apply1($idx); }, sc_SeqView$Appended_length = $this => { - return $this.$underlying16.$length() + 1 | 0; + return $this.$underlying15.$length() + 1 | 0; }, sc_SeqView$Appended_sorted = ($this, $ord) => { return sc_SeqView_sorted$($this, $ord); @@ -357028,7 +285053,7 @@ sc_SeqView$Appended_map0 = ($this, $f) => { return $this.$map8($f); }, sc_SeqView$Appended__init_ = ($this, $underlying, $elem) => { - $this.$underlying16 = $underlying; + $this.$underlying15 = $underlying; $this.$elem9 = $elem; sc_View$Appended__init_($this, $underlying, $elem); }, @@ -357045,7 +285070,7 @@ sc_IndexedSeqView$Appended_reverseIterator = $this => { return sc_IndexedSeqView_reverseIterator$($this); }, sc_IndexedSeqView$Appended_stringPrefix = $this => { - return $rt_s(5630); + return $rt_s(4970); }, sc_IndexedSeqView$Appended_head = $this => { return sc_IndexedSeqOps_head$($this); @@ -357086,120 +285111,169 @@ sc_IndexedSeqView$Appended_appended0 = ($this, $elem) => { function sc_View$Prepended() { let a = this; sc_AbstractView.call(a); a.$elem13 = null; - a.$underlying42 = null; + a.$underlying40 = null; } function sc_SeqView$Prepended() { let a = this; sc_View$Prepended.call(a); a.$elem14 = null; - a.$underlying41 = null; + a.$underlying39 = null; } let sc_SeqView$Prepended__init_ = ($this, $elem, $underlying) => { $this.$elem14 = $elem; - $this.$underlying41 = $underlying; + $this.$underlying39 = $underlying; $this.$elem13 = $elem; - $this.$underlying42 = $underlying; + $this.$underlying40 = $underlying; }, sc_SeqView$Prepended__init_0 = (var_0, var_1) => { let var_2 = new sc_SeqView$Prepended(); sc_SeqView$Prepended__init_(var_2, var_0, var_1); return var_2; }, -sc_IndexedSeqView$Prepended = $rt_classWithoutFields(sc_SeqView$Prepended); -function oncius_CypherType$greatestLowerBound$lambda$_35_0() { +sc_IndexedSeqView$Prepended = $rt_classWithoutFields(sc_SeqView$Prepended), +oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), +oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1_applyOrElse = ($this, $x, $default) => { + $x = $x; + return !($x instanceof oncia_UseGraph) ? $default.$apply2($x) : $x; +}; +function oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_90_0() { jl_Object.call(this); - this.$_0860 = null; + this.$_01173 = null; } -let oncius_CypherType$greatestLowerBound$lambda$_35_0_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf(var$0.$_0860.$isAssignableFrom0(var$1)); +let oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_90_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5; + var$2 = var$1.$position26; + oncias_SemanticCheck$_$callClinit(); + var$1 = oncias_SemanticCheck$_MODULE$; + var$3 = sr_ScalaRunTime$_MODULE$; + var$4 = $rt_createArray(oncias_SemanticErrorDef, 1); + var$5 = var$4.data; + oncias_SemanticError$_$callClinit(); + ong_GqlStatusInfoCodes_$callClinit(); + var$5[0] = oncias_SemanticError__init_0(ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_withCause(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42001), var$2.$offset(), var$2.$line(), var$2.$column()), ong_ErrorGqlStatusObjectImplementation$Builder_build(ong_ErrorGqlStatusObjectImplementation$Builder_atPosition(ong_ErrorGqlStatusObjectImplementation_from(ong_GqlStatusInfoCodes_STATUS_42N73), + var$2.$offset(), var$2.$line(), var$2.$column())))), $rt_s(7454), var$2); + return oncias_SemanticCheck$_error(var$1, sr_ScalaRunTime$_wrapRefArray(var$3, var$4)); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0() { - jl_Object.call(this); - this.$_0337 = null; +function oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0() { + let a = this; jl_Object.call(a); + a.$_0941 = null; + a.$_1323 = null; + a.$_2110 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0337; - return oncias_SemanticCheckResult__init_(var$1.$state, var$2.$errors0.$concat(var$1.$errors0)); +let oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$2 = var$0.$_0941; + var$3 = var$0.$_1323; + var$4 = var$0.$_2110; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return oncias_SemanticCheck_chain$(var$2.$importValuesFromScope0(var$3.$currentScope.$elem0), var$1.$semanticCheckInSubqueryContext(var$3, var$4)); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0() { +function oncias_SemanticAnalysisTooling$withState$lambda$_5_0() { let a = this; jl_Object.call(a); - a.$_0582 = null; - a.$_1199 = null; - a.$_266 = null; + a.$_0668 = null; + a.$_1226 = null; + a.$_273 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0_apply = (var$0, var$1) => { +let oncias_SemanticAnalysisTooling$withState$lambda$_5_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; - var$2 = var$0.$_0582; - var$3 = var$0.$_1199; - var$4 = var$0.$_266; - var$5 = var$3.$errors0.$concat(var$1.$errors0); - var$3 = oncias_SemanticState$ScopeLocation$_symbolNames$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$4.$currentScope); - var$4 = new oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0; - var$4.$_0164 = var$2; - var$4.$_162 = var$3; - var$2 = var$5.$map(var$4); - return oncias_SemanticCheckResult__init_(var$1.$state, var$2); + var$2 = var$0.$_0668; + var$3 = var$0.$_1226; + var$4 = var$0.$_273; + oncias_SemanticCheck$_$callClinit(); + var$3 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, var$3); + var$5 = new oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_100_0; + var$5.$_0261 = var$2; + var$5.$_198 = var$4; + var$5.$_233 = var$1; + return oncias_SemanticCheck_flatMap$(var$3, var$5); +}, +oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_167_0 = $rt_classWithoutFields(), +oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_167_0_apply = (var$0, var$1) => { + return var$1.$definition; }; -function oncia_SingleQuery$importVariables$1$lambda$_110_0() { +function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0() { let a = this; jl_Object.call(a); - a.$_0637 = null; - a.$_1216 = null; + a.$_0159 = null; + a.$_155 = null; } -let oncia_SingleQuery$importVariables$1$lambda$_110_0_apply = (var$0, var$1) => { - let var$2; +let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0_apply = (var$0, var$1) => { var$1 = var$1; - var$2 = var$0.$_0637; - return oncias_SemanticCheck_chain$(oncia_ProjectionClause_semanticCheckContinuation$(var$1, var$0.$_1216.$currentScope.$elem0, s_None$_MODULE$), oncias_SemanticAnalysisTooling_recordCurrentScope$(var$2, var$1)); + return var$0.$_0159.$warnOnAccessToRestrictedVariableInOrderByOrWhere(var$0.$_155, var$1); +}; +function oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1() { + sr_AbstractPartialFunction.call(this); + this.$error$10 = null; +} +let oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1_applyOrElse = ($this, $x, $default) => { + let var$3, var$4; + $x = $x; + var$3 = $this.$error$10.$msg(); + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(868)), $x), $rt_s(874)); + if (jl_String_equals(var$3, jl_AbstractStringBuilder_toString(var$4))) { + $default = $this.$error$10; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7455)), $x); + $default = $default.$withMsg(jl_AbstractStringBuilder_toString(var$3)); + } + return $default; }; -function onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_0() { +function oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0() { jl_Object.call(this); - this.$_0664 = null; + this.$_0687 = null; } -let onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_0_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$1 = onciap_DefaultExpressionStringifier_apply0(var$0.$_0664.$$outer.$expr1, var$1); - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(646)); - return jl_AbstractStringBuilder_toString(var$2); +let oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0_apply = var$0 => { + return var$0.$_0687; }, -onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_1 = $rt_classWithoutFields(), -onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_1_apply = var$0 => { - return $rt_s(4); +oncias_SemanticCheckContext$$anon$2 = $rt_classWithoutFields(), +oncias_SemanticCheckContext$$anon$2_errorMessageProvider = $this => { + return onciu_EmptyErrorMessageProvider$_MODULE$; }, -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0 = $rt_classWithoutFields(), -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0_apply = (var$0, var$1) => { - return var$1.$use; +oncias_SemanticCheckContext$$anon$2_sessionDatabaseReference = $this => { + return null; }; -function oncia_SubqueryCall$returnToOuterScope$lambda$_14_0() { +function oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_28_0() { jl_Object.call(this); - this.$_0743 = null; + this.$_0187 = null; } -let oncia_SubqueryCall$returnToOuterScope$lambda$_14_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; +let oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_28_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0743; - var$3 = var$1.$currentScope.$elem0; - var$1 = oncias_SemanticState_copy(var$1, var$2, var$1.$typeTable0, var$1.$recordedScopes0, var$1.$notifications, var$1.$features, var$1.$declareVariablesToSuppressDuplicateErrors, var$1.$semanticCheckHasRunOnce, var$1.$targetGraph, var$1.$workingGraph); - var$4 = var$1.$currentScope; - oncias_SemanticState$_$callClinit(); - var$1 = oncias_SemanticState_newSiblingScope(oncias_SemanticState_copy(var$1, (onciuh_TreeZipper$Location_insertRight(var$4, var$3)).$get1(), var$1.$typeTable0, var$1.$recordedScopes0, var$1.$notifications, var$1.$features, var$1.$declareVariablesToSuppressDuplicateErrors, var$1.$semanticCheckHasRunOnce, var$1.$targetGraph, var$1.$workingGraph)); - var$1 = oncias_SemanticState_importValuesFromScope(var$1, var$2.$elem0, oncias_SemanticState_importValuesFromScope$default$2(var$1)); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); + var$2 = var$0.$_0187; + onciu_Ref$_$callClinit(); + return var$1.$incl(onciu_Ref$_apply(onciu_Ref$_MODULE$, var$2)); +}; +function oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0() { + let a = this; jl_Object.call(a); + a.$_0509 = null; + a.$_1174 = null; +} +let oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6; + var$1 = var$1; + var$2 = var$0.$_0509; + var$3 = var$0.$_1174; + s_Predef$_$callClinit(); + var$4 = s_Predef$_Set(s_Predef$_MODULE$); + var$5 = sr_ScalaRunTime$_MODULE$; + var$6 = $rt_createArray(s_Option, 1); + var$6.data[0] = var$3.$greatestLowerBound(var$1); + return var$2.$concat1(var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6))); +}, +oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { + return oncias_SymbolUse_asVariable(var$1); }; function oncia_Match$$anonfun$11$applyOrElse$lambda$_0_0() { jl_Object.call(this); - this.$_01120 = null; + this.$_01097 = null; } let oncia_Match$$anonfun$11$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_01120; + var$2 = var$0.$_01097; if (var$1 === null) $rt_throw(s_MatchError__init_(var$1)); var$3 = var$1.$_1(); @@ -357208,12 +285282,12 @@ let oncia_Match$$anonfun$11$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { }; function oncia_Match$$anonfun$11$applyOrElse$lambda$_0_1() { jl_Object.call(this); - this.$_0333 = null; + this.$_0325 = null; } let oncia_Match$$anonfun$11$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0333; + var$2 = var$0.$_0325; if (var$1 === null) $rt_throw(s_MatchError__init_(var$1)); var$3 = var$1.$_1(); @@ -357222,19 +285296,19 @@ let oncia_Match$$anonfun$11$applyOrElse$lambda$_0_1_apply = (var$0, var$1) => { }; function oncia_Match$$anonfun$11$applyOrElse$lambda$_0_2() { let a = this; jl_Object.call(a); - a.$_01014 = null; - a.$_1349 = null; + a.$_01006 = null; + a.$_1344 = null; } let oncia_Match$$anonfun$11$applyOrElse$lambda$_0_2_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_01014; - var$3 = var$0.$_1349; + var$2 = var$0.$_01006; + var$3 = var$0.$_1344; if (var$1 === null) $rt_throw(s_MatchError__init_(var$1)); var$4 = var$1.$_1(); var$1 = var$1.$_2(); - var$2 = oncia_Match_org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression(var$2.$$outer56, var$3); + var$2 = oncia_Match_org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression(var$2.$$outer50, var$3); return onciu_Foldable$SkipChildren__init_(s_Tuple2__init_(var$4.$concat(var$2), var$1.$concat(var$2))); }, oncia_Match$$anonfun$11$applyOrElse$lambda$_0_4 = $rt_classWithoutFields(), @@ -357247,63 +285321,16 @@ oncia_Match$$anonfun$11$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { }, oncias_SemanticState$symbolTypes$lambda$_33_0 = $rt_classWithoutFields(), oncias_SemanticState$symbolTypes$lambda$_33_0_apply = (var$0, var$1) => { - return var$1.$types1; + return var$1.$types2; }, oncias_SemanticState$symbolTypes$lambda$_33_1 = $rt_classWithoutFields(), oncias_SemanticState$symbolTypes$lambda$_33_1_apply = var$0 => { oncius_TypeSpec$_$callClinit(); return oncius_TypeSpec$_all(oncius_TypeSpec$_MODULE$); }; -function oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_0() { - let a = this; jl_Object.call(a); - a.$_01197 = null; - a.$_1250 = null; -} -let oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_1250; - oncias_package$_$callClinit(); - var$3 = oncias_package$_MODULE$; - var$4 = oncias_ExpressionTypeInfo_actual(oncias_SemanticState_expressionType(var$2, var$1)); - var$2 = oncias_SemanticState_symbol(var$2, var$1.$name4); - var$5 = new oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0; - var$5.$_0809 = var$1; - var$5.$_1275 = var$4; - var$5.$_290 = var$2; - return oncias_package$_liftSemanticEitherFunc(var$3, var$5); -}; -function oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_1() { - jl_Object.call(this); - this.$_0496 = null; -} -let oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_1_apply = (var$0, var$1) => { - let var$2; - var$1 = var$1; - var$2 = var$0.$_0496; - var$1 = oncias_SemanticState_importValuesFromScope(var$1, ((oncias_SemanticState$ScopeLocation$_parent$extension(oncias_SemanticState$ScopeLocation$_MODULE$, var$2)).$get1()).$location.$elem0, oncias_SemanticState_importValuesFromScope$default$2(var$1)); - var$1 = oncias_SemanticState_importValuesFromScope(var$1, var$2.$elem0, oncias_SemanticState_importValuesFromScope$default$2(var$1)); - oncias_SemanticCheckResult$_$callClinit(); - return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, var$1); -}; -function oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_74_0() { - let a = this; jl_Object.call(a); - a.$_0304 = null; - a.$_1114 = null; -} -function oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_74_1() { - jl_Object.call(this); - this.$_0741 = null; -} -let oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_74_1_apply = (var$0, var$1) => { - let var$2; - var$2 = var$0.$_0741; - oncias_SemanticCheck$_$callClinit(); - return oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, oncias_SemanticState_recordWorkingGraph(var$1, var$2)); -}; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1() { let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer20 = null; + a.$$outer17 = null; a.$variable$3 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1_applyOrElse = ($this, $x1, $default) => { @@ -357336,7 +285363,7 @@ let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesI } if ($name !== null) { $name = oncie_PropertyKeyName_name($name); - if (oncia_Match_org$neo4j$cypher$internal$ast$Match$$applicable($this.$$outer20, $other)) + if (oncia_Match_org$neo4j$cypher$internal$ast$Match$$applicable($this.$$outer17, $other)) return oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_12__init_0($name); break a; } @@ -357368,7 +285395,7 @@ let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesI } if ($default !== null) { $name = oncie_PropertyKeyName_name($default); - if (oncia_Match_org$neo4j$cypher$internal$ast$Match$$applicable($this.$$outer20, $other)) + if (oncia_Match_org$neo4j$cypher$internal$ast$Match$$applicable($this.$$outer17, $other)) return oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_11__init_($name); break d; } @@ -357572,7 +285599,6 @@ let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesI if ($default !== null) { s_package$_$callClinit(); $name = sci_List$_unapplySeq(s_package$_List(s_package$_MODULE$), $default); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); if (!sc_SeqFactory$UnapplySeqWrapper$_isEmpty$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $name)) { sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, sc_SeqFactory$UnapplySeqWrapper$_get$extension(sc_SeqFactory$UnapplySeqWrapper$_MODULE$, $name)); $default = sc_SeqFactory$UnapplySeqWrapper$_MODULE$; @@ -357607,7 +285633,7 @@ let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesI } if ($default !== null) { $name = oncie_PropertyKeyName_name($default); - if (jl_String_equalsIgnoreCase($namespace, $rt_s(1207)) && jl_String_equalsIgnoreCase($functionName, $rt_s(7890))) + if (jl_String_equalsIgnoreCase($namespace, $rt_s(1249)) && jl_String_equalsIgnoreCase($functionName, $rt_s(7456))) return oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_3__init_($name); break v; } @@ -357668,7 +285694,7 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre let $namespace, $id, $name, $functionName; if ($expr instanceof oncie_Property) { $namespace = $expr; - $id = $namespace.$map16; + $id = $namespace.$map15; $name = $namespace.$propertyKey0; if ($id instanceof oncie_Variable) a: { @@ -357697,7 +285723,7 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre if ($namespace === null) break c; $expr = $namespace.$namespace3; - $functionName = $namespace.$name7; + $functionName = $namespace.$name6; if ($expr === null) break c; $namespace = $expr.$parts0; @@ -357705,7 +285731,6 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre break c; s_package$_$callClinit(); s_package$_List(s_package$_MODULE$); - sc_SeqFactory$UnapplySeqWrapper$_$callClinit(); sc_SeqFactory$UnapplySeqWrapper__init_(new sc_SeqFactory$UnapplySeqWrapper, $namespace); if ($namespace.$lengthCompare(1)) break c; @@ -357720,7 +285745,7 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre if (!($expr instanceof oncie_Property)) break c; $expr = $expr; - $id = $expr.$map16; + $id = $expr.$map15; $name = $expr.$propertyKey0; if (!($id instanceof oncie_Variable)) break c; @@ -357740,422 +285765,276 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre if ($$this !== null) break d; } - if (jl_String_equalsIgnoreCase($namespace, $rt_s(1207)) && jl_String_equalsIgnoreCase($functionName, $rt_s(6963))) + if (jl_String_equalsIgnoreCase($namespace, $rt_s(1249)) && jl_String_equalsIgnoreCase($functionName, $rt_s(6587))) return $acc.$appended($name); } } return $acc; +}; +function oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_74_0() { + let a = this; jl_Object.call(a); + a.$_0234 = null; + a.$_188 = null; +} +let oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_74_0_apply = var$0 => { + let var$1, var$2; + var$1 = var$0.$_0234; + var$2 = var$0.$_188; + return oncias_SemanticAnalysisTooling_declareVariables$(var$1, sc_AbstractMap_values((var$1.$innerQuery1.$finalScope(var$2)).$symbolTable)); }, -oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0 = $rt_classWithoutFields(), -oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); -}, -oncie_CaseExpression$isConstantForQuery$lambda$_14_0 = $rt_classWithoutFields(), -oncie_CaseExpression$isConstantForQuery$lambda$_14_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); -}, -oncie_CaseExpression$isConstantForQuery$lambda$_14_1 = $rt_classWithoutFields(), -oncie_CaseExpression$isConstantForQuery$lambda$_14_1_apply = (var$0, var$1) => { - var$1 = var$1; - return jl_Boolean_valueOf((var$1.$_1()).$isConstantForQuery() && (var$1.$_2()).$isConstantForQuery() ? 1 : 0); -}, -oncie_CaseExpression$isConstantForQuery$lambda$_14_2 = $rt_classWithoutFields(), -oncie_CaseExpression$isConstantForQuery$lambda$_14_2_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); -}, -oncie_ListLiteral$isConstantForQuery$lambda$_6_0 = $rt_classWithoutFields(), -oncie_ListLiteral$isConstantForQuery$lambda$_6_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +onciu_EmptyErrorMessageProvider$ = $rt_classWithoutFields(), +onciu_EmptyErrorMessageProvider$_MODULE$ = null, +onciu_EmptyErrorMessageProvider$__clinit_ = () => { + onciu_EmptyErrorMessageProvider$_MODULE$ = new onciu_EmptyErrorMessageProvider$; }, -oncie_MapExpression$isConstantForQuery$lambda$_6_0 = $rt_classWithoutFields(), -oncie_MapExpression$isConstantForQuery$lambda$_6_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf((var$1.$_2()).$isConstantForQuery()); +onciu_EmptyErrorMessageProvider$_createMultipleGraphReferencesError$default$2 = $this => { + return 0; }, -oncie_MapProjection$isConstantForQuery$lambda$_5_0 = $rt_classWithoutFields(), -oncie_MapProjection$isConstantForQuery$lambda$_5_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +onciu_EmptyErrorMessageProvider$_createMissingPropertyLabelHintError = ($this, $operatorDescription, $hintStringification, $missingThingDescription, $foundThingsDescription, $entityDescription, $entityName, $additionalInfo) => { + return $rt_s(4); }, -oncie_ListSlice$isConstantForQuery$lambda$_6_0 = $rt_classWithoutFields(), -oncie_ListSlice$isConstantForQuery$lambda$_6_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +onciu_EmptyErrorMessageProvider$_createUseClauseUnsupportedError = $this => { + return $rt_s(4); }, -oncie_ListComprehension$isConstantForQuery$lambda$_11_0 = $rt_classWithoutFields(), -oncie_ListComprehension$isConstantForQuery$lambda$_11_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); +onciu_EmptyErrorMessageProvider$_createDynamicGraphReferenceUnsupportedError = ($this, $graphName) => { + return $rt_s(4); }, -oncie_ListComprehension$isConstantForQuery$lambda$_11_1 = $rt_classWithoutFields(), -oncie_ListComprehension$isConstantForQuery$lambda$_11_1_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); -}; -function oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_65_0() { - let a = this; jl_Object.call(a); - a.$_0508 = null; - a.$_1177 = null; -} -let oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_65_0_apply = var$0 => { - let var$1, var$2, var$3; - var$1 = var$0.$_0508; - var$2 = var$0.$_1177; - var$3 = var$1.$_0304; - var$1 = var$1.$_1114; - return oncia_SingleQuery_checkClauses(var$3, var$2, s_Some__init_(var$1.$currentScope.$elem0)); +onciu_EmptyErrorMessageProvider$_createMultipleGraphReferencesError = ($this, $graphName, $transactionalDefault) => { + return $rt_s(4); }; -function oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_87_0() { +function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_98_0() { let a = this; jl_Object.call(a); - a.$_0626 = null; - a.$_1214 = null; -} -let oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_87_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0626; - var$3 = var$0.$_1214.$currentScope.$elem0.$symbolTable; - var$4 = var$1.$currentScope.$elem0.$children2.$map(new oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_0); - s_Predef$_$callClinit(); - var$4 = var$4.$foldLeft(sci_Map$_empty(s_Predef$_Map(s_Predef$_MODULE$)), new oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_1); - var$5 = new oncia_SingleQuery$$anonfun$3; - if (var$2 === null) - $rt_throw(null); - var$5.$$outer78 = var$2; - var$5.$innerScopeSymbols$2 = var$4; - return oncias_SemanticCheckResult__init_(var$1, ((var$3.$collect0(var$5)).$map(new oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_2)).$toSeq()); -}; -function oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0() { - jl_Object.call(this); - this.$_0551 = null; -} -let oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - a: { - b: { - c: { - var$1 = var$1; - var$2 = var$0.$_0551; - var$3 = var$1.$definition; - var$1 = var$2.$definition; - if (var$3 !== null) { - if (oncias_SymbolUse_equals(var$3, var$1)) - break c; - else - break b; - } - if (var$1 !== null) - break b; - } - var$4 = 0; - break a; - } - var$4 = 1; - } - return jl_Boolean_valueOf(var$4); -}; -function oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0() { - jl_Object.call(this); - this.$_0979 = null; -} -let oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0_apply = var$0 => { - return var$0.$_0979; -}; -function oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1() { - jl_Object.call(this); - this.$_0371 = null; -} -let oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1_apply = (var$0, var$1) => { - return var$1.$leastUpperBound(var$0.$_0371); -}, -oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_0_apply = (var$0, var$1) => { - return var$1.$semanticCheck(); -}, -oncias_SemanticCheckContext$ = $rt_classWithoutFields(), -oncias_SemanticCheckContext$_MODULE$ = null, -oncias_SemanticCheckContext$__clinit_ = () => { - oncias_SemanticCheckContext$_MODULE$ = new oncias_SemanticCheckContext$; -}; -function oncia_SingleQuery$$anonfun$1() { - sr_AbstractPartialFunction.call(this); - this.$resultState$1 = null; -} -let oncia_SingleQuery$$anonfun$1_applyOrElse = ($this, $x1, $default) => { - let var$3; - if (!$rt_isInstance($x1, oncie_ExpressionWithComputedDependencies)) - return $default.$apply2($x1); - $x1 = $x1; - $default = oncias_SemanticState$ScopeLocation$_MODULE$; - var$3 = $this.$resultState$1.$state.$recordedScopes0; - oncia_ASTAnnotationMap$PositionedNode$_$callClinit(); - return $x1.$withComputedScopeDependencies((oncias_SemanticState$ScopeLocation$_declarationsAndDependencies$extension($default, (var$3.$apply2(oncia_ASTAnnotationMap$PositionedNode$_astNodeToPositionedNodeConverter(oncia_ASTAnnotationMap$PositionedNode$_MODULE$, $x1.$subqueryAstNode()))).$location)).$dependencies0.$map(new oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0)); -}; -function oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_1() { - jl_Object.call(this); - this.$_029 = null; + a.$_0380 = null; + a.$_1135 = null; + a.$_247 = null; } -let oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_1_apply = (var$0, var$1) => { +let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_98_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4, var$5, var$6, var$7, var$8; var$1 = var$1; - return jl_Boolean_valueOf(sc_IterableOnceOps_nonEmpty$((onciu_topDown$TopDownRewriter_apply(var$0.$_029, var$1.$expression())).$dependencies())); -}; -function oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_2() { - let a = this; jl_Object.call(a); - a.$_0672 = null; - a.$_1235 = null; -} -let oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_2_apply = var$0 => { - let var$1, var$2, var$3, var$4, var$5, var$6, var$7; - var$1 = var$0.$_0672; - var$2 = var$0.$_1235; - var$3 = var$2.$returnItems4.$items0.$exists(new oncia_SingleQuery$checkReturnItems$1$lambda$_120_0); + var$2 = var$0.$_0380; + var$3 = var$0.$_1135; + var$4 = var$0.$_247; + var$5 = var$1.$state; + var$6 = var$3.$state; oncias_SemanticCheck$_$callClinit(); - var$4 = oncias_SemanticCheck$_MODULE$; - var$5 = new oncia_SingleQuery$checkReturnItems$1$lambda$_120_1; - var$5.$_0653 = var$1; - var$5.$_1225 = var$2; - var$6 = oncias_SemanticCheck$_when(var$4, var$3, var$5); - var$4 = oncias_SemanticCheck$_MODULE$; - var$3 = var$2.$distinct2; - var$5 = new oncia_SingleQuery$checkDistinct$1$lambda$_122_0; - var$5.$_0168 = var$1; - var$5.$_164 = var$2; - var$4 = var$6.$chain(oncias_SemanticCheck$_when(var$4, var$3, var$5)); - oncias_OptionSemanticChecking$_$callClinit(); - var$5 = oncias_OptionSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); - var$7 = var$2.$where2; - var$6 = new oncia_SingleQuery$checkWhere$1$lambda$_126_0; - var$6.$_0487 = var$1; - var$6.$_1171 = var$2; - var$7 = oncias_SemanticCheck_chain$(var$4, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$5, var$7, var$6)); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - var$6 = var$2.$orderBy4; - var$5 = new oncia_SingleQuery$checkOrderBy$1$lambda$_124_0; - var$5.$_0776 = var$1; - var$5.$_1260 = var$2; - var$7 = oncias_SemanticCheck_chain$(var$7, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$6, var$5)); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - var$6 = var$2.$skip5; - var$5 = new oncia_SingleQuery$checkSkip$1$lambda$_128_0; - var$5.$_0858 = var$1; - var$5.$_1294 = var$2; - var$7 = oncias_SemanticCheck_chain$(var$7, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$6, var$5)); - var$4 = oncias_OptionSemanticChecking$_MODULE$; - var$6 = var$2.$limit5; - var$5 = new oncia_SingleQuery$checkLimit$1$lambda$_130_0; - var$5.$_0739 = var$1; - var$5.$_1252 = var$2; - return oncias_SemanticCheck_chain$(var$7, oncias_OptionSemanticChecking$_foldSemanticCheck$extension(var$4, var$6, var$5)); -}; -function oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_86_0() { - let a = this; jl_Object.call(a); - a.$_0942 = null; - a.$_1331 = null; -} -let oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_86_0_apply = (var$0, var$1) => { - let var$2, var$3; - var$1 = var$1; - var$2 = var$0.$_0942; - var$3 = var$0.$_1331; - var$2 = var$2.$errors0.$concat(!sc_IterableOnceOps_nonEmpty$(var$3.$errors0) ? var$1.$errors0 : var$3.$errors0); - return oncias_SemanticCheckResult__init_(var$1.$state, var$2); + var$1 = oncias_SemanticCheck$_MODULE$; + var$7 = var$2.$innerQuery0.$isReturning(); + var$8 = new oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_0; + var$8.$_01051 = var$2; + var$8.$_1357 = var$5; + var$8.$_2119 = var$6; + var$1 = oncias_SemanticCheck$_when(var$1, var$7, var$8); + var$8 = new oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_1; + var$8.$_0446 = var$2; + var$8.$_1155 = var$6; + var$2 = var$1.$ifOkChain(var$8); + var$1 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_97_0; + var$1.$_0194 = var$4; + var$1.$_171 = var$3; + return oncias_SemanticCheck_map$(var$2, var$1); }; function oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_0() { jl_Object.call(this); - this.$_0494 = null; + this.$_0483 = null; } let oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0494; + var$2 = var$0.$_0483; return oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates(var$2.$$outer12, var$2.$variable$2, var$1); }, oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_1 = $rt_classWithoutFields(), oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_1_apply = var$0 => { s_package$_$callClinit(); return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); +}, +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_0_apply = (var$0, var$1) => { + return var$1.$symbolTable; +}, +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_1 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_1_apply = (var$0, var$1, var$2) => { + let var$3; + var$1 = var$1; + var$2 = var$2; + var$3 = s_Tuple2__init_(var$1, var$2); + var$1 = var$3.$_10; + return sc_IterableOnceOps_foldLeft$(var$3.$_20, var$1, new oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_172_0); +}; +function oncia_SingleQuery$$anonfun$3() { + let a = this; sr_AbstractPartialFunction.call(a); + a.$$outer70 = null; + a.$innerScopeSymbols$2 = null; +} +let oncia_SingleQuery$$anonfun$3_applyOrElse = ($this, $x, $default) => { + let var$3, var$4, var$5, var$6, var$7; + a: { + $x = $x; + if ($x !== null) { + b: { + var$3 = $x.$_1(); + var$4 = $x.$_2(); + var$5 = $this.$innerScopeSymbols$2; + if (var$5.$contains(var$4.$name12)) { + var$6 = (var$5.$apply2(var$4.$name12)).$map(new oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_0); + var$5 = new oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_1; + var$5.$_0775 = var$4; + if (!var$6.$forall(var$5)) { + var$7 = 1; + break b; + } + } + var$7 = 0; + } + if (var$7) { + $x = s_Predef$ArrowAssoc$_MODULE$; + s_Predef$_$callClinit(); + $default = $this.$innerScopeSymbols$2.$apply2(var$3); + var$6 = new oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0; + var$6.$_0569 = var$4; + $x = s_Predef$ArrowAssoc$_$minus$greater$extension($x, var$3, (oncias_SymbolUse_asVariable((($default.$find2(var$6)).$get1()).$definition)).$position4); + break a; + } + } + $x = $default.$apply2($x); + } + return $x; +}, +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_2 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_2_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$1; + if (var$1 === null) + $rt_throw(s_MatchError__init_(var$1)); + var$2 = var$1.$_1(); + var$1 = var$1.$_2(); + oncias_SemanticError$_$callClinit(); + var$3 = oncias_SemanticError$_MODULE$; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(6767)), var$2), $rt_s(7457)); + return oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$4), var$1); }; function oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_0() { jl_Object.call(this); - this.$_01062 = null; + this.$_01049 = null; } let oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_01062; + var$2 = var$0.$_01049; return oncia_Match_org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates(var$2.$$outer12, var$2.$variable$2, var$1); }, oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_1 = $rt_classWithoutFields(), oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_1_apply = var$0 => { s_package$_$callClinit(); return sc_SeqFactory$Delegate_empty(s_package$_Seq(s_package$_MODULE$)); -}, -oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1 = $rt_classWithoutFields(sr_AbstractPartialFunction), -oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1_applyOrElse = ($this, $x, $default) => { - $x = $x; - return !($x instanceof oncia_UseGraph) ? $default.$apply2($x) : $x; }; -function oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_84_0() { +function oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_100_0() { let a = this; jl_Object.call(a); - a.$_0185 = null; - a.$_171 = null; + a.$_0261 = null; + a.$_198 = null; + a.$_233 = null; } -let oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_84_0_apply = (var$0, var$1) => { - var$1 = var$1; - return oncias_SemanticAnalysisTooling_error$(var$0.$_0185, var$0.$_171, var$1.$position30); +let oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_100_0_apply = (var$0, var$1) => { + let var$2, var$3, var$4; + var$1 = var$0.$_0261; + var$2 = var$0.$_198; + var$3 = var$0.$_233; + var$4 = new oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_99_0; + var$4.$_01152 = var$1; + var$4.$_162 = var$3; + return oncias_SemanticCheck_map$(var$2, var$4); +}, +oncia_SingleQuery$checkReturnItems$1$lambda$_125_0 = $rt_classWithoutFields(), +oncia_SingleQuery$checkReturnItems$1$lambda$_125_0_apply = (var$0, var$1) => { + return jl_Boolean_valueOf(var$1.$isPassThrough() ? 0 : 1); }; -function oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0() { +function oncia_SingleQuery$checkReturnItems$1$lambda$_125_1() { let a = this; jl_Object.call(a); - a.$_0952 = null; - a.$_1334 = null; + a.$_0476 = null; + a.$_1163 = null; } -let oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_semanticCheckInSubqueryContext(var$1, var$0.$_0952, var$0.$_1334); +let oncia_SingleQuery$checkReturnItems$1$lambda$_125_1_apply = var$0 => { + return oncia_SingleQuery_err$1(var$0.$_0476, $rt_s(7458), var$0.$_1163); }; -function oncias_SemanticAnalysisTooling$withState$lambda$_5_0() { +function oncia_SingleQuery$checkDistinct$1$lambda$_127_0() { let a = this; jl_Object.call(a); - a.$_0677 = null; - a.$_1236 = null; - a.$_274 = null; + a.$_0991 = null; + a.$_1339 = null; } -let oncias_SemanticAnalysisTooling$withState$lambda$_5_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5; - var$1 = var$1; - var$2 = var$0.$_0677; - var$3 = var$0.$_1236; - var$4 = var$0.$_274; - oncias_SemanticCheck$_$callClinit(); - var$3 = oncias_SemanticCheck$_setState(oncias_SemanticCheck$_MODULE$, var$3); - var$5 = new oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_90_0; - var$5.$_0886 = var$2; - var$5.$_1304 = var$4; - var$5.$_298 = var$1; - return oncias_SemanticCheck_flatMap$(var$3, var$5); -}, -oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_162_0 = $rt_classWithoutFields(), -oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_162_0_apply = (var$0, var$1) => { - return var$1.$definition; +let oncia_SingleQuery$checkDistinct$1$lambda$_127_0_apply = var$0 => { + return oncia_SingleQuery_err$1(var$0.$_0991, $rt_s(7459), var$0.$_1339); }; -function oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0() { +function oncia_SingleQuery$checkWhere$1$lambda$_131_0() { let a = this; jl_Object.call(a); - a.$_0164 = null; - a.$_162 = null; + a.$_031 = null; + a.$_115 = null; } -let oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0_apply = (var$0, var$1) => { - var$1 = var$1; - return var$0.$_0164.$warnOnAccessToRestrictedVariableInOrderByOrWhere(var$0.$_162, var$1); +let oncia_SingleQuery$checkWhere$1$lambda$_131_0_apply = (var$0, var$1) => { + return oncia_SingleQuery_err$1(var$0.$_031, $rt_s(7460), var$0.$_115); }; -function oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1() { - sr_AbstractPartialFunction.call(this); - this.$error$1 = null; +function oncia_SingleQuery$checkOrderBy$1$lambda$_129_0() { + let a = this; jl_Object.call(a); + a.$_0395 = null; + a.$_1141 = null; } -let oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1_applyOrElse = ($this, $x, $default) => { - let var$3, var$4; - $x = $x; - var$3 = $this.$error$1.$msg(); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(870)), $x), $rt_s(876)); - if (jl_String_equals(var$3, jl_AbstractStringBuilder_toString(var$4))) { - $default = $this.$error$1; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - jl_StringBuilder_append(jl_StringBuilder_append(var$3, $rt_s(7891)), $x); - $default = $default.$withMsg(jl_AbstractStringBuilder_toString(var$3)); - } - return $default; +let oncia_SingleQuery$checkOrderBy$1$lambda$_129_0_apply = (var$0, var$1) => { + return oncia_SingleQuery_err$1(var$0.$_0395, $rt_s(7461), var$0.$_1141); }; -function oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0() { - jl_Object.call(this); - this.$_0702 = null; +function oncia_SingleQuery$checkSkip$1$lambda$_133_0() { + let a = this; jl_Object.call(a); + a.$_01042 = null; + a.$_1355 = null; } -let oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0_apply = var$0 => { - return var$0.$_0702; -}, -oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0 = $rt_classWithoutFields(), -oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); -}, -oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0 = $rt_classWithoutFields(), -oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isConstantForQuery()); -}, -oncias_SemanticCheckContext$$anon$2 = $rt_classWithoutFields(), -oncias_SemanticCheckContext$$anon$2_errorMessageProvider = $this => { - return onciu_EmptyErrorMessageProvider$_MODULE$; -}, -oncias_SemanticCheckContext$$anon$2_sessionDatabaseReference = $this => { - return null; +let oncia_SingleQuery$checkSkip$1$lambda$_133_0_apply = (var$0, var$1) => { + return oncia_SingleQuery_err$1(var$0.$_01042, $rt_s(7462), var$0.$_1355); }; -function oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0() { +function oncia_SingleQuery$checkLimit$1$lambda$_135_0() { let a = this; jl_Object.call(a); - a.$_0521 = null; - a.$_1182 = null; + a.$_0987 = null; + a.$_1338 = null; } -let oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6; +let oncia_SingleQuery$checkLimit$1$lambda$_135_0_apply = (var$0, var$1) => { + return oncia_SingleQuery_err$1(var$0.$_0987, $rt_s(7463), var$0.$_1338); +}; +function onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_0() { + jl_Object.call(this); + this.$_0885 = null; +} +let onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_0_apply = (var$0, var$1) => { + let var$2; var$1 = var$1; - var$2 = var$0.$_0521; - var$3 = var$0.$_1182; - s_Predef$_$callClinit(); - var$4 = s_Predef$_Set(s_Predef$_MODULE$); - var$5 = sr_ScalaRunTime$_MODULE$; - var$6 = $rt_createArray(s_Option, 1); - var$6.data[0] = var$3.$greatestLowerBound(var$1); - return var$2.$concat1(var$4.$from0(sr_ScalaRunTime$_wrapRefArray(var$5, var$6))); + var$1 = onciap_DefaultExpressionStringifier_apply0(var$0.$_0885.$$outer.$expr1, var$1); + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); + jl_StringBuilder_append(jl_StringBuilder_append(var$2, var$1), $rt_s(646)); + return jl_AbstractStringBuilder_toString(var$2); }, -oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { - return oncias_SymbolUse_asVariable(var$1); +onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_1 = $rt_classWithoutFields(), +onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_1_apply = var$0 => { + return $rt_s(4); }, oncie_PathConcatenation$isBounded$lambda$_7_0 = $rt_classWithoutFields(), oncie_PathConcatenation$isBounded$lambda$_7_0_apply = (var$0, var$1) => { return jl_Boolean_valueOf(var$1.$isBounded()); }, -oncie_Expression$isDeterministic$lambda$_22_0 = $rt_classWithoutFields(); -function oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_69_0() { - let a = this; jl_Object.call(a); - a.$_0471 = null; - a.$_1164 = null; -} -let oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_69_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0471; - var$2 = var$0.$_1164; - return oncias_SemanticAnalysisTooling_declareVariables$(var$1, sc_AbstractMap_values((var$1.$innerQuery1.$finalScope(var$2)).$symbolTable)); -}, -oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_81_0 = $rt_classWithoutFields(), -oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_81_0_apply = (var$0, var$1) => { - return var$1.$name(); -}, -oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_77_0 = $rt_classWithoutFields(), -oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_77_0_apply = (var$0, var$1) => { +oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_82_0 = $rt_classWithoutFields(), +oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_82_0_apply = (var$0, var$1) => { return (var$1.$_1()).$name5; }, -onciu_EmptyErrorMessageProvider$ = $rt_classWithoutFields(), -onciu_EmptyErrorMessageProvider$_MODULE$ = null, -onciu_EmptyErrorMessageProvider$__clinit_ = () => { - onciu_EmptyErrorMessageProvider$_MODULE$ = new onciu_EmptyErrorMessageProvider$; -}, -onciu_EmptyErrorMessageProvider$_createMultipleGraphReferencesError$default$2 = $this => { - return 0; -}, -onciu_EmptyErrorMessageProvider$_createMissingPropertyLabelHintError = ($this, $operatorDescription, $hintStringification, $missingThingDescription, $foundThingsDescription, $entityDescription, $entityName, $additionalInfo) => { - return $rt_s(4); -}, -onciu_EmptyErrorMessageProvider$_createUseClauseUnsupportedError = $this => { - return $rt_s(4); -}, -onciu_EmptyErrorMessageProvider$_createDynamicGraphReferenceUnsupportedError = ($this, $graphName) => { - return $rt_s(4); -}, -onciu_EmptyErrorMessageProvider$_createMultipleGraphReferencesError = ($this, $graphName, $transactionalDefault) => { - return $rt_s(4); +oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_86_0 = $rt_classWithoutFields(), +oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_86_0_apply = (var$0, var$1) => { + return var$1.$name(); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_0() { let a = this; jl_Object.call(a); - a.$_01003 = null; - a.$_1345 = null; + a.$_0997 = null; + a.$_1340 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_0__init_ = (var$0, var$1, var$2) => { - var$0.$_01003 = var$1; - var$0.$_1345 = var$2; + var$0.$_0997 = var$1; + var$0.$_1340 = var$2; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_0__init_0 = (var_0, var_1) => { let var_2 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_0(); @@ -358165,11 +286044,11 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; var$1 = var$1; - var$2 = var$0.$_01003; - var$3 = var$0.$_1345; - var$4 = sci_$colon$colon__init_(var$3.$lhs0(), sci_$colon$colon__init_(var$3.$rhs0(), sci_Nil$_MODULE$)); + var$2 = var$0.$_0997; + var$3 = var$0.$_1340; + var$4 = sci_$colon$colon__init_(var$3.$lhs0(), sci_$colon$colon__init_(var$3.$rhs(), sci_Nil$_MODULE$)); var$3 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0; - var$3.$_0591 = var$2; + var$3.$_0580 = var$2; return onciu_Foldable$SkipChildren__init_(sci_List_foldLeft(var$4, var$1, var$3)); }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_2 = $rt_classWithoutFields(), @@ -358198,10 +286077,10 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_3() { jl_Object.call(this); - this.$_0523 = null; + this.$_0511 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_3__init_0 = (var$0, var$1) => { - var$0.$_0523 = var$1; + var$0.$_0511 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_3__init_ = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_3(); @@ -358211,15 +286090,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_3_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0523; + var$2 = var$0.$_0511; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_4() { jl_Object.call(this); - this.$_0648 = null; + this.$_0639 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_4__init_0 = (var$0, var$1) => { - var$0.$_0648 = var$1; + var$0.$_0639 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_4__init_ = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_4(); @@ -358229,15 +286108,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_4_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0648; + var$2 = var$0.$_0639; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_5() { jl_Object.call(this); - this.$_0124 = null; + this.$_0116 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_5__init_0 = (var$0, var$1) => { - var$0.$_0124 = var$1; + var$0.$_0116 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_5__init_ = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_5(); @@ -358247,15 +286126,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_5_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0124; + var$2 = var$0.$_0116; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6() { jl_Object.call(this); - this.$_0676 = null; + this.$_0667 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6__init_0 = (var$0, var$1) => { - var$0.$_0676 = var$1; + var$0.$_0667 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6__init_ = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6(); @@ -358265,15 +286144,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0676; + var$2 = var$0.$_0667; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7() { jl_Object.call(this); - this.$_0225 = null; + this.$_0218 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7__init_0 = (var$0, var$1) => { - var$0.$_0225 = var$1; + var$0.$_0218 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7__init_ = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7(); @@ -358283,15 +286162,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0225; + var$2 = var$0.$_0218; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_8() { jl_Object.call(this); - this.$_0862 = null; + this.$_0842 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_8__init_ = (var$0, var$1) => { - var$0.$_0862 = var$1; + var$0.$_0842 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_8__init_0 = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_8(); @@ -358301,15 +286180,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_8_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0862; + var$2 = var$0.$_0842; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_9() { jl_Object.call(this); - this.$_0280 = null; + this.$_0265 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_9__init_ = (var$0, var$1) => { - var$0.$_0280 = var$1; + var$0.$_0265 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_9__init_0 = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_9(); @@ -358319,15 +286198,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_9_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0280; + var$2 = var$0.$_0265; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_10() { jl_Object.call(this); - this.$_0283 = null; + this.$_0269 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_10__init_ = (var$0, var$1) => { - var$0.$_0283 = var$1; + var$0.$_0269 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_10__init_0 = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_10(); @@ -358337,15 +286216,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_10_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0283; + var$2 = var$0.$_0269; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_11() { jl_Object.call(this); - this.$_0604 = null; + this.$_0594 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_11__init_0 = (var$0, var$1) => { - var$0.$_0604 = var$1; + var$0.$_0594 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_11__init_ = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_11(); @@ -358355,15 +286234,15 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_11_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_0604; + var$2 = var$0.$_0594; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); }; function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_12() { jl_Object.call(this); - this.$_087 = null; + this.$_079 = null; } let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_12__init_ = (var$0, var$1) => { - var$0.$_087 = var$1; + var$0.$_079 = var$1; }, oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_12__init_0 = var_0 => { let var_1 = new oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_12(); @@ -358373,239 +286252,12 @@ oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPre oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_12_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_087; + var$2 = var$0.$_079; return onciu_Foldable$SkipChildren__init_(var$1.$appended(var$2)); -}, -oncia_Match$$anonfun$11$$anonfun$applyOrElse$40$lambda$_3_0 = $rt_classWithoutFields(), -oncia_Match$$anonfun$11$$anonfun$applyOrElse$42$lambda$_5_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_0_apply = (var$0, var$1) => { - return var$1.$symbolTable; -}, -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_1 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_1_apply = (var$0, var$1, var$2) => { - let var$3; - var$1 = var$1; - var$2 = var$2; - var$3 = s_Tuple2__init_(var$1, var$2); - var$1 = var$3.$_10; - return sc_IterableOnceOps_foldLeft$(var$3.$_20, var$1, new oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_167_0); -}; -function oncia_SingleQuery$$anonfun$3() { - let a = this; sr_AbstractPartialFunction.call(a); - a.$$outer78 = null; - a.$innerScopeSymbols$2 = null; -} -let oncia_SingleQuery$$anonfun$3_applyOrElse = ($this, $x, $default) => { - let var$3, var$4, var$5, var$6, var$7; - a: { - $x = $x; - if ($x !== null) { - b: { - var$3 = $x.$_1(); - var$4 = $x.$_2(); - var$5 = $this.$innerScopeSymbols$2; - if (var$5.$contains(var$4.$name12)) { - var$6 = (var$5.$apply2(var$4.$name12)).$map(new oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_0); - var$5 = new oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_1; - var$5.$_0908 = var$4; - if (!var$6.$forall(var$5)) { - var$7 = 1; - break b; - } - } - var$7 = 0; - } - if (var$7) { - $x = s_Predef$ArrowAssoc$_MODULE$; - s_Predef$_$callClinit(); - $default = $this.$innerScopeSymbols$2.$apply2(var$3); - var$6 = new oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0; - var$6.$_0588 = var$4; - $x = s_Predef$ArrowAssoc$_$minus$greater$extension($x, var$3, (oncias_SymbolUse_asVariable((($default.$find3(var$6)).$get1()).$definition)).$position4); - break a; - } - } - $x = $default.$apply2($x); - } - return $x; -}, -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_2 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_2_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$1; - if (var$1 === null) - $rt_throw(s_MatchError__init_(var$1)); - var$2 = var$1.$_1(); - var$1 = var$1.$_2(); - oncias_SemanticError$_$callClinit(); - var$3 = oncias_SemanticError$_MODULE$; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$4, $rt_s(7745)), var$2), $rt_s(7892)); - return oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$4), var$1); -}; -function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_93_0() { - let a = this; jl_Object.call(a); - a.$_016 = null; - a.$_110 = null; - a.$_28 = null; -} -let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_93_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4, var$5, var$6, var$7, var$8; - var$1 = var$1; - var$2 = var$0.$_016; - var$3 = var$0.$_110; - var$4 = var$0.$_28; - var$5 = var$1.$state; - var$6 = var$3.$state; - oncias_SemanticCheck$_$callClinit(); - var$1 = oncias_SemanticCheck$_MODULE$; - var$7 = var$2.$innerQuery0.$isReturning(); - var$8 = new oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_0; - var$8.$_045 = var$2; - var$8.$_118 = var$5; - var$8.$_211 = var$6; - var$1 = oncias_SemanticCheck$_when(var$1, var$7, var$8); - var$8 = new oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_1; - var$8.$_0724 = var$2; - var$8.$_1246 = var$6; - var$2 = var$1.$ifOkChain(var$8); - var$1 = new oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_92_0; - var$1.$_0417 = var$4; - var$1.$_1152 = var$3; - return oncias_SemanticCheck_map$(var$2, var$1); -}; -function oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_90_0() { - let a = this; jl_Object.call(a); - a.$_0886 = null; - a.$_1304 = null; - a.$_298 = null; -} -let oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_90_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$1 = var$0.$_0886; - var$2 = var$0.$_1304; - var$3 = var$0.$_298; - var$4 = new oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_89_0; - var$4.$_01182 = var$1; - var$4.$_1151 = var$3; - return oncias_SemanticCheck_map$(var$2, var$4); -}, -oncia_SingleQuery$checkReturnItems$1$lambda$_120_0 = $rt_classWithoutFields(), -oncia_SingleQuery$checkReturnItems$1$lambda$_120_0_apply = (var$0, var$1) => { - return jl_Boolean_valueOf(var$1.$isPassThrough() ? 0 : 1); -}; -function oncia_SingleQuery$checkReturnItems$1$lambda$_120_1() { - let a = this; jl_Object.call(a); - a.$_0653 = null; - a.$_1225 = null; -} -let oncia_SingleQuery$checkReturnItems$1$lambda$_120_1_apply = var$0 => { - return oncia_SingleQuery_err$1(var$0.$_0653, $rt_s(7893), var$0.$_1225); -}; -function oncia_SingleQuery$checkDistinct$1$lambda$_122_0() { - let a = this; jl_Object.call(a); - a.$_0168 = null; - a.$_164 = null; -} -let oncia_SingleQuery$checkDistinct$1$lambda$_122_0_apply = var$0 => { - return oncia_SingleQuery_err$1(var$0.$_0168, $rt_s(7894), var$0.$_164); -}; -function oncia_SingleQuery$checkWhere$1$lambda$_126_0() { - let a = this; jl_Object.call(a); - a.$_0487 = null; - a.$_1171 = null; -} -let oncia_SingleQuery$checkWhere$1$lambda$_126_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_err$1(var$0.$_0487, $rt_s(7895), var$0.$_1171); -}; -function oncia_SingleQuery$checkOrderBy$1$lambda$_124_0() { - let a = this; jl_Object.call(a); - a.$_0776 = null; - a.$_1260 = null; -} -let oncia_SingleQuery$checkOrderBy$1$lambda$_124_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_err$1(var$0.$_0776, $rt_s(7896), var$0.$_1260); -}; -function oncia_SingleQuery$checkSkip$1$lambda$_128_0() { - let a = this; jl_Object.call(a); - a.$_0858 = null; - a.$_1294 = null; -} -let oncia_SingleQuery$checkSkip$1$lambda$_128_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_err$1(var$0.$_0858, $rt_s(7897), var$0.$_1294); -}; -function oncia_SingleQuery$checkLimit$1$lambda$_130_0() { - let a = this; jl_Object.call(a); - a.$_0739 = null; - a.$_1252 = null; -} -let oncia_SingleQuery$checkLimit$1$lambda$_130_0_apply = (var$0, var$1) => { - return oncia_SingleQuery_err$1(var$0.$_0739, $rt_s(7898), var$0.$_1252); -}; -function onciu_Foldable$Folder$treeForall$lambda$_6_0() { - let a = this; jl_Object.call(a); - a.$_01176 = null; - a.$_198 = null; -} -let onciu_Foldable$Folder$treeForall$lambda$_6_0_apply = (var$0, var$1) => { - let var$2, var$3, var$4; - var$2 = var$0.$_198; - if (!(var$1 instanceof oncie_FunctionInvocation)) - var$3 = 1; - else - a: { - b: { - c: { - d: { - var$4 = var$1.$function1; - oncief_Rand$_$callClinit(); - var$1 = oncief_Rand$_MODULE$; - if (var$4 !== null) { - if (jl_Object_equals(var$4, var$1)) - break c; - else - break d; - } - if (var$1 === null) - break c; - } - e: { - oncief_RandomUUID$_$callClinit(); - var$1 = oncief_RandomUUID$_MODULE$; - if (var$4 !== null) { - if (jl_Object_equals(var$4, var$1)) - break c; - else - break e; - } - if (var$1 === null) - break c; - } - oncief_UnresolvedFunction$_$callClinit(); - var$1 = oncief_UnresolvedFunction$_MODULE$; - if (var$4 !== null) { - if (jl_Object_equals(var$4, var$1)) - break c; - else - break b; - } - if (var$1 !== null) - break b; - } - var$3 = 0; - break a; - } - var$3 = 1; - } - if (sr_BoxesRunTime_unboxToBoolean(jl_Boolean_valueOf(var$3))) - var$2 = s_None$_MODULE$; - return var$2; }; function oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0() { jl_Object.call(this); - this.$_0588 = null; + this.$_0569 = null; } let oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0_apply = (var$0, var$1) => { let var$2, var$3, var$4; @@ -358613,7 +286265,7 @@ let oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0_apply = (var$0, var$1) b: { c: { var$1 = var$1; - var$2 = var$0.$_0588; + var$2 = var$0.$_0569; var$3 = var$1.$definition; var$1 = var$2.$definition; if (var$3 !== null) { @@ -358631,42 +286283,50 @@ let oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0_apply = (var$0, var$1) var$4 = 1; } return jl_Boolean_valueOf(var$4); -}; -function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0() { - jl_Object.call(this); - this.$_0591 = null; -} -let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0_apply = (var$0, var$1, var$2) => { - var$1 = var$1; - var$2 = var$2; - return oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1_$anonfun$applyOrElse$35(var$0.$_0591, var$1, var$2); -}; -function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_92_0() { +}, +oncia_Match$$anonfun$11$$anonfun$applyOrElse$40$lambda$_3_0 = $rt_classWithoutFields(), +oncia_Match$$anonfun$11$$anonfun$applyOrElse$42$lambda$_5_0 = $rt_classWithoutFields(); +function oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_97_0() { let a = this; jl_Object.call(a); - a.$_0417 = null; - a.$_1152 = null; + a.$_0194 = null; + a.$_171 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_92_0_apply = (var$0, var$1) => { +let oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_97_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0417; - var$3 = var$0.$_1152; + var$2 = var$0.$_0194; + var$3 = var$0.$_171; var$2 = (var$2.$errors0.$concat(var$3.$errors0)).$distinct0(); if (!sc_IterableOnceOps_nonEmpty$(var$2)) var$2 = var$1.$errors0; return oncias_SemanticCheckResult__init_(var$1.$state, var$2); +}, +oncief_DeterministicFunction$ = $rt_classWithoutFields(), +oncief_DeterministicFunction$_MODULE$ = null, +oncief_DeterministicFunction$__clinit_ = () => { + oncief_DeterministicFunction$_MODULE$ = new oncief_DeterministicFunction$; }; -function oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0() { +function oncias_SemanticAnalysisTooling$importValuesFromScope$lambda$_77_0() { + jl_Object.call(this); + this.$_0935 = null; +} +let oncias_SemanticAnalysisTooling$importValuesFromScope$lambda$_77_0_apply = (var$0, var$1) => { + let var$2; + var$1 = var$1; + var$2 = var$0.$_0935; + return oncias_SemanticCheckResult$_success(oncias_SemanticCheckResult$_MODULE$, oncias_SemanticState_importValuesFromScope(var$1, var$2, oncias_SemanticState_importValuesFromScope$default$2(var$1))); +}; +function oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0() { let a = this; jl_Object.call(a); - a.$_0809 = null; - a.$_1275 = null; - a.$_290 = null; + a.$_01074 = null; + a.$_1365 = null; + a.$_2121 = null; } -let oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0_apply = (var$0, var$1) => { - return oncias_SemanticState_declareVariable(var$1, var$0.$_0809, var$0.$_1275, var$0.$_290, 0, 0); +let oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0_apply = (var$0, var$1) => { + return oncias_SemanticState_declareVariable(var$1, var$0.$_01074, var$0.$_1365, var$0.$_2121, 0, 0); }, -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_167_0 = $rt_classWithoutFields(), -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_167_0_apply = (var$0, var$1, var$2) => { +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_172_0 = $rt_classWithoutFields(), +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_172_0_apply = (var$0, var$1, var$2) => { let var$3, var$4, var$5, var$6; a: { var$3 = s_Tuple2__init_(var$1, var$2); @@ -358695,21 +286355,21 @@ oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_167_0_apply } return var$1; }, -oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_0 = $rt_classWithoutFields(), -oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_0_apply = (var$0, var$1) => { +oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_0 = $rt_classWithoutFields(), +oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_0_apply = (var$0, var$1) => { return var$1.$definition; }; -function oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_1() { +function oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_1() { jl_Object.call(this); - this.$_0908 = null; + this.$_0775 = null; } -let oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_1_apply = (var$0, var$1) => { +let oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_1_apply = (var$0, var$1) => { let var$2, var$3; a: { b: { c: { var$1 = var$1; - var$2 = var$0.$_0908.$definition; + var$2 = var$0.$_0775.$definition; if (var$1 !== null) { if (!oncias_SymbolUse_equals(var$1, var$2)) break b; @@ -358726,15 +286386,15 @@ let oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$la } return jl_Boolean_valueOf(var$3); }; -function oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_89_0() { +function oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_99_0() { let a = this; jl_Object.call(a); - a.$_01182 = null; - a.$_1151 = null; + a.$_01152 = null; + a.$_162 = null; } -let oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_89_0_apply = (var$0, var$1) => { +let oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_99_0_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5, var$6; var$1 = var$1; - var$2 = var$0.$_1151; + var$2 = var$0.$_162; var$3 = new oncias_SemanticCheckResult; var$4 = var$2.$state; var$5 = var$1.$state; @@ -358746,69 +286406,76 @@ let oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_89_0_apply = (va oncias_SemanticCheckResult__init_0(var$3, oncias_SemanticState_recordWorkingGraph(var$4, var$5.$workingGraph), var$1.$errors0); return var$3; }; -function oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_0() { +function oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_0() { let a = this; jl_Object.call(a); - a.$_045 = null; - a.$_118 = null; - a.$_211 = null; + a.$_01051 = null; + a.$_1357 = null; + a.$_2119 = null; } -let oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_0_apply = var$0 => { +let oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_0_apply = var$0 => { let var$1, var$2, var$3, var$4; - var$1 = var$0.$_045; - var$2 = var$0.$_118; - var$3 = var$0.$_211; + var$1 = var$0.$_01051; + var$2 = var$0.$_1357; + var$3 = var$0.$_2119; + oncias_SemanticState$ScopeLocation$_$callClinit(); var$2 = oncias_Scope_symbolNames(var$2.$currentScope.$elem0); var$2 = (oncias_Scope_symbolNames(var$1.$innerQuery0.$finalScope(var$3.$currentScope.$elem0))).$intersect(var$2); - oncias_IterableOnceSemanticChecking$_$callClinit(); var$3 = oncias_IterableOnceSemanticChecking$_MODULE$; - oncias_package$_$callClinit(); var$1 = var$1.$innerQuery0.$getReturns(); - var$4 = new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_0; - var$4.$_0530 = var$2; - return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$1.$flatMap(var$4), new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_1); + var$4 = new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_0; + var$4.$_0605 = var$2; + return oncias_IterableOnceSemanticChecking$_foldSemanticCheck$extension(var$3, var$1.$flatMap(var$4), new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_1); }; -function oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_1() { +function oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_1() { let a = this; jl_Object.call(a); - a.$_0724 = null; - a.$_1246 = null; + a.$_0446 = null; + a.$_1155 = null; } -let oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_1_apply = var$0 => { +let oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_1_apply = var$0 => { let var$1, var$2, var$3, var$4, var$5; - var$1 = var$0.$_0724; - var$2 = var$0.$_1246; + var$1 = var$0.$_0446; + var$2 = var$0.$_1155; oncias_SemanticCheck$_$callClinit(); var$3 = oncias_SemanticCheck$_MODULE$; var$4 = var$1.$innerQuery0.$isReturning(); - var$5 = new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_104_0; - var$5.$_0535 = var$1; - var$5.$_1187 = var$2; + var$5 = new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_109_0; + var$5.$_0270 = var$1; + var$5.$_1101 = var$2; return oncias_SemanticCheck$_when(var$3, var$4, var$5); }; -function oncias_SemanticAnalysisTooling$declareVariables$lambda$_69_0() { +function oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0() { + jl_Object.call(this); + this.$_0580 = null; +} +let oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0_apply = (var$0, var$1, var$2) => { + var$1 = var$1; + var$2 = var$2; + return oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1_$anonfun$applyOrElse$35(var$0.$_0580, var$1, var$2); +}; +function oncias_SemanticAnalysisTooling$declareVariables$lambda$_71_0() { jl_Object.call(this); - this.$_05 = null; + this.$_0922 = null; } -let oncias_SemanticAnalysisTooling$declareVariables$lambda$_69_0_apply = (var$0, var$1) => { +let oncias_SemanticAnalysisTooling$declareVariables$lambda$_71_0_apply = (var$0, var$1) => { let var$2; var$1 = var$1; - var$2 = var$0.$_05; - oncias_package$_$callClinit(); - return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, var$2.$declareVariable(oncias_SymbolUse_asVariable(var$1.$definition), var$1.$types1)); + var$2 = var$0.$_0922; + return oncias_package$_liftSemanticEitherFunc(oncias_package$_MODULE$, var$2.$declareVariable(oncias_SymbolUse_asVariable(var$1.$definition), var$1.$types2)); }; -function oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_0() { +function oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_0() { jl_Object.call(this); - this.$_0530 = null; + this.$_0605 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_0_apply = (var$0, var$1) => { +let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_0_apply = (var$0, var$1) => { let var$2, var$3; var$1 = var$1; - var$2 = var$0.$_0530; - var$3 = new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_99_0; - var$3.$_0231 = var$1; + var$2 = var$0.$_0605; + var$3 = new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_104_0; + var$3.$_0140 = var$1; return var$2.$map(var$3); }, -oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_1 = $rt_classWithoutFields(), -oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_1_apply = (var$0, var$1) => { +oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_1 = $rt_classWithoutFields(), +oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_1_apply = (var$0, var$1) => { let var$2, var$3, var$4, var$5; var$1 = var$1; if (var$1 === null) @@ -358817,9 +286484,9 @@ oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lamb var$2 = var$1.$_1(); var$1 = var$1.$_2(); var$3 = var$2.$returnItems2.$items0; - var$4 = new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_101_0; - var$4.$_0436 = var$1; - var$4 = var$3.$find3(var$4); + var$4 = new oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_106_0; + var$4.$_0146 = var$1; + var$4 = var$3.$find2(var$4); if (var$4 instanceof s_Some) { var$4 = var$4.$value5; if (var$4 instanceof oncia_AliasedReturnItem) { @@ -358827,44 +286494,40 @@ oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lamb break a; } } - var$2 = var$2.$position29; + var$2 = var$2.$position23; } - oncias_package$_$callClinit(); var$4 = oncias_package$_MODULE$; oncias_SemanticError$_$callClinit(); var$3 = oncias_SemanticError$_MODULE$; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); - jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(870)), var$1), $rt_s(7878)); + jl_StringBuilder_append(jl_StringBuilder_append(jl_StringBuilder_append(var$5, $rt_s(868)), var$1), $rt_s(7436)); return oncias_package$_liftSemanticErrorDef(var$4, oncias_SemanticError$_apply(var$3, jl_AbstractStringBuilder_toString(var$5), var$2)); -}, -oncief_DeterministicFunction$ = $rt_classWithoutFields(), -oncief_DeterministicFunction$_MODULE$ = null, -oncief_DeterministicFunction$__clinit_ = () => { - oncief_DeterministicFunction$_MODULE$ = new oncief_DeterministicFunction$; }; -function oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_104_0() { +function oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_109_0() { let a = this; jl_Object.call(a); - a.$_0535 = null; - a.$_1187 = null; + a.$_0270 = null; + a.$_1101 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_104_0_apply = var$0 => { - let var$1, var$2; - var$1 = var$0.$_0535; - var$2 = var$0.$_1187; - return oncias_SemanticAnalysisTooling_declareVariables$(var$1, sc_AbstractMap_values((var$1.$innerQuery0.$finalScope(var$2.$currentScope.$elem0)).$symbolTable)); +let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_109_0_apply = var$0 => { + let var$1, var$2, var$3; + var$1 = var$0.$_0270; + var$2 = var$0.$_1101; + var$3 = var$1.$innerQuery0; + oncias_SemanticState$ScopeLocation$_$callClinit(); + return oncias_SemanticAnalysisTooling_declareVariables$(var$1, sc_AbstractMap_values((var$3.$finalScope(var$2.$currentScope.$elem0)).$symbolTable)); }; -function oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_101_0() { +function oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_106_0() { jl_Object.call(this); - this.$_0436 = null; + this.$_0146 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_101_0_apply = (var$0, var$1) => { +let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_106_0_apply = (var$0, var$1) => { let var$2, var$3; a: { b: { c: { var$1 = var$1; - var$2 = var$0.$_0436; + var$2 = var$0.$_0146; var$1 = var$1.$name(); if (var$1 !== null) { if (!jl_String_equals(var$1, var$2)) @@ -358882,48 +286545,48 @@ let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$ } return jl_Boolean_valueOf(var$3); }; -function oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_99_0() { +function oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_104_0() { jl_Object.call(this); - this.$_0231 = null; + this.$_0140 = null; } -let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_99_0_apply = (var$0, var$1) => { +let oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_104_0_apply = (var$0, var$1) => { var$1 = var$1; - return s_Tuple2__init_(var$0.$_0231, var$1); + return s_Tuple2__init_(var$0.$_0140, var$1); }; -$rt_packages([-1, "com", 0, "neo4j", 1, "semantic", 2, "analysis", -1, "java", 4, "util", 5, "regex", 5, "stream", 7, "impl", 4, "nio", 9, "charset", 4, "io", 4, "text", 4, "math", 4, "lang", 14, "reflect", 14, "invoke", -1, "scala", 17, "util", 18, "control", 17, "runtime", 17, "collection", 21, "immutable", 21, "mutable", 21, "convert", -1, "org", 25, "neo4j", 26, "internal", 27, "schema", 26, "common", 26, "configuration", 26, "kernel", 31, "api", 32, "exceptions", 26, "cypher", 34, "internal", 35, "ast", -36, "factory", 37, "neo4j", 38, "completion", 36, "prettifier", 36, "semantics", 35, "parser", 42, "common", 43, "ast", 44, "factory", 42, "v25", 46, "ast", 47, "factory", 42, "lexer", 42, "javacc", 42, "v5", 51, "ast", 52, "factory", 35, "util", 54, "helpers", 54, "tailrec", 54, "collection", 57, "immutable", 54, "symbols", 35, "rewriting", 60, "rewriters", 60, "conditions", 35, "label_expressions", 35, "expressions", 64, "functions", 35, "frontend", 66, "phases", 26, "gqlstatus", 26, "graphdb", 26, "exceptions", -26, "notifications", 25, "teavm", 72, "jso", 73, "impl", 72, "classlib", 75, "impl", 76, "console", 76, "unicode", 72, "interop", 72, "runtime", 25, "antlr", 81, "v4", 82, "runtime", 83, "tree", 83, "atn", 83, "dfa", 83, "misc" +$rt_packages([-1, "com", 0, "neo4j", 1, "semantic", 2, "analysis", -1, "java", 4, "util", 5, "regex", 5, "stream", 4, "nio", 8, "charset", 4, "text", 4, "math", 4, "lang", 12, "reflect", 12, "invoke", -1, "scala", 15, "util", 16, "control", 15, "runtime", 15, "collection", 19, "immutable", 19, "mutable", 19, "convert", -1, "org", 23, "neo4j", 24, "internal", 25, "schema", 24, "util", 24, "common", 24, "configuration", 24, "kernel", 30, "api", 31, "exceptions", 24, "cypher", 33, "internal", 34, "ast", 35, "factory", +36, "neo4j", 37, "completion", 35, "prettifier", 35, "semantics", 34, "parser", 41, "common", 42, "ast", 43, "factory", 41, "v25", 45, "ast", 46, "factory", 41, "lexer", 41, "v5", 49, "ast", 50, "factory", 34, "util", 52, "helpers", 52, "tailrec", 52, "collection", 55, "immutable", 52, "symbols", 34, "rewriting", 58, "rewriters", 58, "conditions", 34, "label_expressions", 34, "expressions", 62, "functions", 34, "frontend", 64, "phases", 24, "gqlstatus", 24, "graphdb", 24, "exceptions", 24, "notifications", 23, +"teavm", 70, "jso", 71, "impl", 70, "classlib", 73, "impl", 74, "console", 74, "unicode", 70, "interop", 70, "runtime", 23, "antlr", 79, "v4", 80, "runtime", 81, "tree", 81, "atn", 81, "dfa", 81, "misc" ]); -$rt_metadata([jl_Object, "Object", 14, 0, [], 0, 3, [0,0,0], 0, ["$hashCode", $rt_wrapFunction0(jl_Object_hashCode), "$equals", $rt_wrapFunction1(jl_Object_equals), "$toString", $rt_wrapFunction0(jl_Object_toString)], +$rt_metadata([jl_Object, "Object", 12, 0, [], 0, 3, [0,0,0], 0, ["$hashCode", $rt_wrapFunction0(jl_Object_hashCode), "$equals", $rt_wrapFunction1(jl_Object_equals), "$toString", $rt_wrapFunction0(jl_Object_toString)], cnsa_Main, 0, jl_Object, [], 0, 3, 0, cnsa_Main_$callClinit, 0, jlr_AnnotatedElement, 0, jl_Object, [], 3, 3, 0, 0, 0, jlr_Type, 0, jl_Object, [], 3, 3, 0, 0, 0, -jl_Class, "Class", 14, jl_Object, [jlr_AnnotatedElement, jlr_Type], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(jl_Class_toString)], +jl_Class, "Class", 12, jl_Object, [jlr_AnnotatedElement, jlr_Type], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(jl_Class_toString)], otji_JS, 0, jl_Object, [], 4, 0, 0, 0, 0, otp_Platform, 0, jl_Object, [], 4, 3, 0, 0, 0, jl_Throwable, 0, jl_Object, [], 0, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(jl_Throwable_getMessage), "$toString", $rt_wrapFunction0(jl_Throwable_toString)], -jl_Exception, "Exception", 14, jl_Throwable, [], 0, 3, 0, 0, 0, -jl_RuntimeException, "RuntimeException", 14, jl_Exception, [], 0, 3, 0, 0, 0, -jl_ClassCastException, "ClassCastException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, +jl_Exception, "Exception", 12, jl_Throwable, [], 0, 3, 0, 0, 0, +jl_RuntimeException, "RuntimeException", 12, jl_Exception, [], 0, 3, 0, 0, 0, +jl_ClassCastException, "ClassCastException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, ji_Serializable, 0, jl_Object, [], 3, 3, 0, 0, 0, jl_Comparable, 0, jl_Object, [], 3, 3, 0, 0, 0, jl_CharSequence, 0, jl_Object, [], 3, 3, 0, 0, 0, -jl_String, "String", 14, jl_Object, [ji_Serializable, jl_Comparable, jl_CharSequence], 0, 3, [0,0,0], 0, ["$charAt", $rt_wrapFunction1(jl_String_charAt), "$length", $rt_wrapFunction0(jl_String_length), "$subSequence", $rt_wrapFunction2(jl_String_subSequence), "$toString", $rt_wrapFunction0(jl_String_toString), "$equals", $rt_wrapFunction1(jl_String_equals), "$hashCode", $rt_wrapFunction0(jl_String_hashCode), "$compareTo1", $rt_wrapFunction1(jl_String_compareTo0)], +jl_String, "String", 12, jl_Object, [ji_Serializable, jl_Comparable, jl_CharSequence], 0, 3, [0,0,0], 0, ["$charAt", $rt_wrapFunction1(jl_String_charAt), "$length", $rt_wrapFunction0(jl_String_length), "$subSequence", $rt_wrapFunction2(jl_String_subSequence), "$toString", $rt_wrapFunction0(jl_String_toString), "$equals", $rt_wrapFunction1(jl_String_equals), "$hashCode", $rt_wrapFunction0(jl_String_hashCode), "$compareTo1", $rt_wrapFunction1(jl_String_compareTo0)], jl_Number, 0, jl_Object, [ji_Serializable], 1, 3, 0, 0, 0, -jl_Integer, "Integer", 14, jl_Number, [jl_Comparable], 0, 3, [0,0,0], 0, ["$intValue", $rt_wrapFunction0(jl_Integer_intValue), "$longValue", $rt_wrapFunction0(jl_Integer_longValue), "$floatValue", $rt_wrapFunction0(jl_Integer_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Integer_doubleValue), "$toString", $rt_wrapFunction0(jl_Integer_toString1), "$hashCode", $rt_wrapFunction0(jl_Integer_hashCode), "$equals", $rt_wrapFunction1(jl_Integer_equals), "$compareTo1", $rt_wrapFunction1(jl_Integer_compareTo)], +jl_Integer, "Integer", 12, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Integer_intValue), "$longValue", $rt_wrapFunction0(jl_Integer_longValue), "$floatValue", $rt_wrapFunction0(jl_Integer_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Integer_doubleValue), "$toString", $rt_wrapFunction0(jl_Integer_toString0), "$hashCode", $rt_wrapFunction0(jl_Integer_hashCode), "$equals", $rt_wrapFunction1(jl_Integer_equals), "$compareTo1", $rt_wrapFunction1(jl_Integer_compareTo)], jl_AbstractStringBuilder, 0, jl_Object, [ji_Serializable, jl_CharSequence], 0, 0, 0, 0, ["$ensureCapacity", $rt_wrapFunction1(jl_AbstractStringBuilder_ensureCapacity), "$toString", $rt_wrapFunction0(jl_AbstractStringBuilder_toString)], jl_Appendable, 0, jl_Object, [], 3, 3, 0, 0, 0, -jl_StringBuilder, "StringBuilder", 14, jl_AbstractStringBuilder, [jl_Appendable], 0, 3, 0, 0, ["$subSequence", $rt_wrapFunction2(jl_StringBuilder_subSequence), "$insert3", $rt_wrapFunction4(jl_StringBuilder_insert0), "$append5", $rt_wrapFunction3(jl_StringBuilder_append7), "$insert2", $rt_wrapFunction4(jl_StringBuilder_insert), "$append4", $rt_wrapFunction3(jl_StringBuilder_append9), "$charAt", $rt_wrapFunction1(jl_StringBuilder_charAt), "$length", $rt_wrapFunction0(jl_StringBuilder_length), "$toString", $rt_wrapFunction0(jl_StringBuilder_toString), -"$ensureCapacity", $rt_wrapFunction1(jl_StringBuilder_ensureCapacity), "$insert1", $rt_wrapFunction2(jl_StringBuilder_insert1), "$insert", $rt_wrapFunction2(jl_StringBuilder_insert2), "$append12", $rt_wrapFunction1(jl_StringBuilder_append8)], +jl_StringBuilder, "StringBuilder", 12, jl_AbstractStringBuilder, [jl_Appendable], 0, 3, 0, 0, ["$subSequence", $rt_wrapFunction2(jl_StringBuilder_subSequence), "$insert3", $rt_wrapFunction4(jl_StringBuilder_insert0), "$append5", $rt_wrapFunction3(jl_StringBuilder_append6), "$insert2", $rt_wrapFunction4(jl_StringBuilder_insert), "$append4", $rt_wrapFunction3(jl_StringBuilder_append8), "$charAt", $rt_wrapFunction1(jl_StringBuilder_charAt), "$length", $rt_wrapFunction0(jl_StringBuilder_length), "$toString", $rt_wrapFunction0(jl_StringBuilder_toString), +"$ensureCapacity", $rt_wrapFunction1(jl_StringBuilder_ensureCapacity), "$insert1", $rt_wrapFunction2(jl_StringBuilder_insert1), "$insert", $rt_wrapFunction2(jl_StringBuilder_insert2), "$append12", $rt_wrapFunction1(jl_StringBuilder_append7)], otci_IntegerUtil, 0, jl_Object, [], 4, 3, 0, 0, 0, -otji_JSWrapper, "JSWrapper", 74, jl_Object, [], 4, 3, [0,0,0], otji_JSWrapper_$callClinit, ["$hashCode", $rt_wrapFunction0(otji_JSWrapper_hashCode), "$equals", $rt_wrapFunction1(otji_JSWrapper_equals), "$toString", $rt_wrapFunction0(otji_JSWrapper_toString)], +otji_JSWrapper, "JSWrapper", 72, jl_Object, [], 4, 3, [0,0,0], otji_JSWrapper_$callClinit, ["$hashCode", $rt_wrapFunction0(otji_JSWrapper_hashCode), "$equals", $rt_wrapFunction1(otji_JSWrapper_equals), "$toString", $rt_wrapFunction0(otji_JSWrapper_toString)], otjc_JSObjects, 0, jl_Object, [], 4, 3, 0, 0, 0, oncifp_ScopedProcedureSignatureResolver, 0, jl_Object, [], 3, 3, 0, 0, 0, cnsa_CustomSignatureResolver, "CustomSignatureResolver", 3, jl_Object, [oncifp_ScopedProcedureSignatureResolver], 0, 3, 0, 0, ["$procedureSignature", $rt_wrapFunction1(cnsa_CustomSignatureResolver_procedureSignature), "$functionSignature", $rt_wrapFunction1(cnsa_CustomSignatureResolver_functionSignature)], cnsa_SemanticAnalyzer, 0, jl_Object, [], 4, 3, 0, 0, 0, ju_Comparator, 0, jl_Object, [], 3, 3, 0, 0, 0, jl_String$_clinit_$lambda$_115_0, 0, jl_Object, [ju_Comparator], 0, 3, 0, 0, 0, -jl_Character, "Character", 14, jl_Object, [jl_Comparable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(jl_Character_toString0), "$equals", $rt_wrapFunction1(jl_Character_equals), "$hashCode", $rt_wrapFunction0(jl_Character_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Character_compareTo)], +jl_Character, "Character", 12, jl_Object, [jl_Comparable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(jl_Character_toString0), "$equals", $rt_wrapFunction1(jl_Character_equals), "$hashCode", $rt_wrapFunction0(jl_Character_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Character_compareTo)], otj_JSObject, 0, jl_Object, [], 3, 3, 0, 0, 0, otjc_JSUndefined, 0, jl_Object, [otj_JSObject], 0, 3, 0, 0, 0, jlr_Array, 0, jl_Object, [], 4, 3, 0, 0, 0, @@ -358936,10 +286599,10 @@ s_Function1, 0, jl_Object, [], 3, 3, 0, 0, ["$toString", $rt_wrapFunction0(s_Fun cnsa_CustomSignatureResolver$_init_$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_CustomSignatureResolver$_init_$lambda$_15_0_apply)], sr_ClassTag$, 0, jl_Object, [ji_Serializable], 4, 3, 0, sr_ClassTag$_$callClinit, 0, s_Equals, 0, jl_Object, [], 3, 3, 0, 0, 0, -s_Product, "Product", 17, jl_Object, [s_Equals], 3, 3, [0,0,0], 0, 0, +s_Product, "Product", 15, jl_Object, [s_Equals], 3, 3, [0,0,0], 0, 0, s_Product2, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, -s_Tuple2, "Tuple2", 17, jl_Object, [s_Product2, ji_Serializable], 0, 3, [0,0,0], 0, ["$productArity", $rt_wrapFunction0(s_Tuple2_productArity), "$productElement", $rt_wrapFunction1(s_Tuple2_productElement), "$_1", $rt_wrapFunction0(s_Tuple2__1), "$_2", $rt_wrapFunction0(s_Tuple2__2), "$toString", $rt_wrapFunction0(s_Tuple2_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple2_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple2_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple2_hashCode), -"$equals", $rt_wrapFunction1(s_Tuple2_equals), "$_1$mcZ$sp", $rt_wrapFunction0(s_Tuple2__1$mcZ$sp), "$_1$mcC$sp", $rt_wrapFunction0(s_Tuple2__1$mcC$sp), "$_2$mcZ$sp", $rt_wrapFunction0(s_Tuple2__2$mcZ$sp), "$_2$mcI$sp", $rt_wrapFunction0(s_Tuple2__2$mcI$sp)], +s_Tuple2, "Tuple2", 15, jl_Object, [s_Product2, ji_Serializable], 0, 3, [0,0,0], 0, ["$productArity", $rt_wrapFunction0(s_Tuple2_productArity), "$productElement", $rt_wrapFunction1(s_Tuple2_productElement), "$_1", $rt_wrapFunction0(s_Tuple2__1), "$_2", $rt_wrapFunction0(s_Tuple2__2), "$toString", $rt_wrapFunction0(s_Tuple2_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple2_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple2_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple2_hashCode), +"$equals", $rt_wrapFunction1(s_Tuple2_equals), "$_1$mcZ$sp", $rt_wrapFunction0(s_Tuple2__1$mcZ$sp), "$_2$mcZ$sp", $rt_wrapFunction0(s_Tuple2__2$mcZ$sp)], s_$less$colon$less$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, cnsa_CustomSignatureResolver$_init_$lambda$_15_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_CustomSignatureResolver$_init_$lambda$_15_1_apply)], cnsa_SemanticAnalyzer$, 0, jl_Object, [], 4, 3, 0, cnsa_SemanticAnalyzer$_$callClinit, 0, @@ -358948,9 +286611,9 @@ otjc_JSWeakRef, 0, jl_Object, [otj_JSObject], 1, 3, 0, 0, 0, otjc_JSFinalizationRegistryConsumer, 0, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0]); $rt_metadata([otji_JSWrapper$_clinit_$lambda$_33_0, 0, jl_Object, [otjc_JSFinalizationRegistryConsumer], 0, 3, 0, 0, ["$accept$exported$0", $rt_wrapFunction1(otji_JSWrapper$_clinit_$lambda$_33_0_accept$exported$0)], otji_JSWrapper$_clinit_$lambda$_33_1, 0, jl_Object, [otjc_JSFinalizationRegistryConsumer], 0, 3, 0, 0, ["$accept$exported$0", $rt_wrapFunction1(otji_JSWrapper$_clinit_$lambda$_33_1_accept$exported$0)], -jl_NullPointerException, "NullPointerException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, -jl_IllegalArgumentException, "IllegalArgumentException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, -jl_NegativeArraySizeException, "NegativeArraySizeException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, +jl_NullPointerException, "NullPointerException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, +jl_IllegalArgumentException, "IllegalArgumentException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, +jl_NegativeArraySizeException, "NegativeArraySizeException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, sum_Regex, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, sc_IterableOnce, 0, jl_Object, [], 3, 3, 0, 0, 0, sc_IterableOnceOps, 0, jl_Object, [], 3, 3, 0, 0, 0, @@ -358958,10 +286621,10 @@ sc_IterableOps, 0, jl_Object, [sc_IterableOnce, sc_IterableOnceOps], 3, 3, 0, 0, sc_IterableFactoryDefaults, 0, jl_Object, [sc_IterableOps], 3, 3, 0, 0, 0, sc_Iterable, 0, jl_Object, [sc_IterableFactoryDefaults], 3, 3, 0, 0, 0, sc_AbstractIterable, 0, jl_Object, [sc_Iterable], 1, 3, 0, 0, ["$iterableFactory", $rt_wrapFunction0(sc_AbstractIterable_iterableFactory), "$className", $rt_wrapFunction0(sc_AbstractIterable_className), "$fromSpecific0", $rt_wrapFunction1(sc_AbstractIterable_fromSpecific0), "$newSpecificBuilder", $rt_wrapFunction0(sc_AbstractIterable_newSpecificBuilder), "$empty2", $rt_wrapFunction0(sc_AbstractIterable_empty), "$head", $rt_wrapFunction0(sc_AbstractIterable_head), "$headOption", $rt_wrapFunction0(sc_AbstractIterable_headOption), -"$sizeCompare", $rt_wrapFunction1(sc_AbstractIterable_sizeCompare), "$filter1", $rt_wrapFunction1(sc_AbstractIterable_filter), "$filterNot0", $rt_wrapFunction1(sc_AbstractIterable_filterNot), "$partition", $rt_wrapFunction1(sc_AbstractIterable_partition), "$drop", $rt_wrapFunction1(sc_AbstractIterable_drop), "$dropRight", $rt_wrapFunction1(sc_AbstractIterable_dropRight), "$grouped0", $rt_wrapFunction1(sc_AbstractIterable_grouped), "$sliding", $rt_wrapFunction2(sc_AbstractIterable_sliding0), "$tail", $rt_wrapFunction0(sc_AbstractIterable_tail), -"$init1", $rt_wrapFunction0(sc_AbstractIterable_init), "$map", $rt_wrapFunction1(sc_AbstractIterable_map), "$flatMap", $rt_wrapFunction1(sc_AbstractIterable_flatMap), "$flatten", $rt_wrapFunction1(sc_AbstractIterable_flatten), "$collect", $rt_wrapFunction1(sc_AbstractIterable_collect), "$concat", $rt_wrapFunction1(sc_AbstractIterable_concat), "$zipAll", $rt_wrapFunction3(sc_AbstractIterable_zipAll), "$foreach", $rt_wrapFunction1(sc_AbstractIterable_foreach), "$forall", $rt_wrapFunction1(sc_AbstractIterable_forall), -"$exists", $rt_wrapFunction1(sc_AbstractIterable_exists), "$find3", $rt_wrapFunction1(sc_AbstractIterable_find), "$foldLeft", $rt_wrapFunction2(sc_AbstractIterable_foldLeft), "$reduceLeft", $rt_wrapFunction1(sc_AbstractIterable_reduceLeft), "$isEmpty", $rt_wrapFunction0(sc_AbstractIterable_isEmpty), "$nonEmpty", $rt_wrapFunction0(sc_AbstractIterable_nonEmpty), "$size", $rt_wrapFunction0(sc_AbstractIterable_size), "$copyToArray0", $rt_wrapFunction2(sc_AbstractIterable_copyToArray1), "$copyToArray", $rt_wrapFunction3(sc_AbstractIterable_copyToArray), -"$collectFirst", $rt_wrapFunction1(sc_AbstractIterable_collectFirst), "$addString", $rt_wrapFunction4(sc_AbstractIterable_addString), "$toList", $rt_wrapFunction0(sc_AbstractIterable_toList), "$toVector", $rt_wrapFunction0(sc_AbstractIterable_toVector), "$toMap", $rt_wrapFunction1(sc_AbstractIterable_toMap), "$toSeq", $rt_wrapFunction0(sc_AbstractIterable_toSeq), "$toIndexedSeq", $rt_wrapFunction0(sc_AbstractIterable_toIndexedSeq), "$toArray", $rt_wrapFunction1(sc_AbstractIterable_toArray), "$reversed", $rt_wrapFunction0(sc_AbstractIterable_reversed), +"$sizeCompare", $rt_wrapFunction1(sc_AbstractIterable_sizeCompare), "$filter1", $rt_wrapFunction1(sc_AbstractIterable_filter), "$filterNot0", $rt_wrapFunction1(sc_AbstractIterable_filterNot), "$partition", $rt_wrapFunction1(sc_AbstractIterable_partition), "$drop", $rt_wrapFunction1(sc_AbstractIterable_drop), "$dropRight0", $rt_wrapFunction1(sc_AbstractIterable_dropRight), "$grouped0", $rt_wrapFunction1(sc_AbstractIterable_grouped), "$sliding", $rt_wrapFunction2(sc_AbstractIterable_sliding0), "$tail", $rt_wrapFunction0(sc_AbstractIterable_tail), +"$map", $rt_wrapFunction1(sc_AbstractIterable_map), "$flatMap", $rt_wrapFunction1(sc_AbstractIterable_flatMap), "$flatten", $rt_wrapFunction1(sc_AbstractIterable_flatten), "$collect", $rt_wrapFunction1(sc_AbstractIterable_collect), "$concat", $rt_wrapFunction1(sc_AbstractIterable_concat), "$zipAll", $rt_wrapFunction3(sc_AbstractIterable_zipAll), "$foreach", $rt_wrapFunction1(sc_AbstractIterable_foreach), "$forall", $rt_wrapFunction1(sc_AbstractIterable_forall), "$exists", $rt_wrapFunction1(sc_AbstractIterable_exists), +"$find2", $rt_wrapFunction1(sc_AbstractIterable_find), "$foldLeft", $rt_wrapFunction2(sc_AbstractIterable_foldLeft), "$reduceLeft", $rt_wrapFunction1(sc_AbstractIterable_reduceLeft), "$isEmpty", $rt_wrapFunction0(sc_AbstractIterable_isEmpty), "$nonEmpty", $rt_wrapFunction0(sc_AbstractIterable_nonEmpty), "$size", $rt_wrapFunction0(sc_AbstractIterable_size), "$copyToArray0", $rt_wrapFunction2(sc_AbstractIterable_copyToArray1), "$copyToArray", $rt_wrapFunction3(sc_AbstractIterable_copyToArray), "$collectFirst", +$rt_wrapFunction1(sc_AbstractIterable_collectFirst), "$addString", $rt_wrapFunction4(sc_AbstractIterable_addString), "$toList", $rt_wrapFunction0(sc_AbstractIterable_toList), "$toVector", $rt_wrapFunction0(sc_AbstractIterable_toVector), "$toMap", $rt_wrapFunction1(sc_AbstractIterable_toMap), "$toSeq", $rt_wrapFunction0(sc_AbstractIterable_toSeq), "$toIndexedSeq", $rt_wrapFunction0(sc_AbstractIterable_toIndexedSeq), "$toArray", $rt_wrapFunction1(sc_AbstractIterable_toArray), "$reversed", $rt_wrapFunction0(sc_AbstractIterable_reversed), "$knownSize", $rt_wrapFunction0(sc_AbstractIterable_knownSize), "$empty0", $rt_wrapFunction0(sc_AbstractIterable_empty0), "$fromSpecific", $rt_wrapFunction1(sc_AbstractIterable_fromSpecific)], s_PartialFunction, 0, jl_Object, [s_Function1], 3, 3, 0, 0, 0, sc_SeqOps, 0, jl_Object, [sc_IterableOps], 3, 3, 0, 0, 0, @@ -358984,12 +286647,11 @@ sc_StrictOptimizedLinearSeqOps, 0, jl_Object, [sc_LinearSeqOps, sc_StrictOptimiz sci_StrictOptimizedSeqOps, 0, jl_Object, [sci_SeqOps, sc_StrictOptimizedSeqOps], 3, 3, 0, 0, 0, scg_DefaultSerializable, 0, jl_Object, [ji_Serializable], 3, 3, 0, 0, 0, sci_List, 0, sci_AbstractSeq, [sci_LinearSeq, sc_StrictOptimizedLinearSeqOps, sci_StrictOptimizedSeqOps, scg_DefaultSerializable], 1, 3, 0, 0, ["$scala$collection$immutable$StrictOptimizedSeqOps$$super$sorted", $rt_wrapFunction1(sci_List_scala$collection$immutable$StrictOptimizedSeqOps$$super$sorted), "$distinctBy", $rt_wrapFunction1(sci_List_distinctBy), "$sorted", $rt_wrapFunction1(sci_List_sorted), "$iterator0", $rt_wrapFunction0(sci_List_iterator), "$appended", $rt_wrapFunction1(sci_List_appended), "$intersect1", -$rt_wrapFunction1(sci_List_intersect), "$flatten", $rt_wrapFunction1(sci_List_flatten), "$zip1", $rt_wrapFunction1(sci_List_zip), "$zipWithIndex", $rt_wrapFunction0(sci_List_zipWithIndex), "$dropRight", $rt_wrapFunction1(sci_List_dropRight), "$stringPrefix", $rt_wrapFunction0(sci_List_stringPrefix), "$scala$collection$LinearSeqOps$$super$sameElements", $rt_wrapFunction1(sci_List_scala$collection$LinearSeqOps$$super$sameElements), "$apply1", $rt_wrapFunction1(sci_List_apply), "$foldLeft", $rt_wrapFunction2(sci_List_foldLeft), -"$sameElements", $rt_wrapFunction1(sci_List_sameElements), "$indexWhere", $rt_wrapFunction2(sci_List_indexWhere), "$isEmpty", $rt_wrapFunction0(sci_List_isEmpty), "$foreach", $rt_wrapFunction1(sci_List_foreach), "$length", $rt_wrapFunction0(sci_List_length), "$lengthCompare", $rt_wrapFunction1(sci_List_lengthCompare), "$forall", $rt_wrapFunction1(sci_List_forall), "$exists", $rt_wrapFunction1(sci_List_exists), "$contains", $rt_wrapFunction1(sci_List_contains), "$find3", $rt_wrapFunction1(sci_List_find), "$last", +$rt_wrapFunction1(sci_List_intersect), "$flatten", $rt_wrapFunction1(sci_List_flatten), "$zip1", $rt_wrapFunction1(sci_List_zip), "$zipWithIndex", $rt_wrapFunction0(sci_List_zipWithIndex), "$dropRight0", $rt_wrapFunction1(sci_List_dropRight), "$stringPrefix", $rt_wrapFunction0(sci_List_stringPrefix), "$scala$collection$LinearSeqOps$$super$sameElements", $rt_wrapFunction1(sci_List_scala$collection$LinearSeqOps$$super$sameElements), "$apply1", $rt_wrapFunction1(sci_List_apply), "$foldLeft", $rt_wrapFunction2(sci_List_foldLeft), +"$sameElements", $rt_wrapFunction1(sci_List_sameElements), "$indexWhere", $rt_wrapFunction2(sci_List_indexWhere), "$isEmpty", $rt_wrapFunction0(sci_List_isEmpty), "$foreach", $rt_wrapFunction1(sci_List_foreach), "$length", $rt_wrapFunction0(sci_List_length), "$lengthCompare", $rt_wrapFunction1(sci_List_lengthCompare), "$forall", $rt_wrapFunction1(sci_List_forall), "$exists", $rt_wrapFunction1(sci_List_exists), "$contains", $rt_wrapFunction1(sci_List_contains), "$find2", $rt_wrapFunction1(sci_List_find), "$last", $rt_wrapFunction0(sci_List_last), "$className", $rt_wrapFunction0(sci_List_className), "$partition", $rt_wrapFunction1(sci_List_partition), "$toList", $rt_wrapFunction0(sci_List_toList), "$equals", $rt_wrapFunction1(sci_List_equals), "$apply2", $rt_wrapFunction1(sci_List_apply0), "$drop", $rt_wrapFunction1(sci_List_drop0), "$filterNot0", $rt_wrapFunction1(sci_List_filterNot0), "$filter1", $rt_wrapFunction1(sci_List_filter0), "$reverse1", $rt_wrapFunction0(sci_List_reverse0), "$flatMap", $rt_wrapFunction1(sci_List_flatMap0), "$collect", $rt_wrapFunction1(sci_List_collect), "$map", $rt_wrapFunction1(sci_List_map0), "$appendedAll", $rt_wrapFunction1(sci_List_appendedAll), "$prepended", $rt_wrapFunction1(sci_List_prepended0), "$iterableFactory", $rt_wrapFunction0(sci_List_iterableFactory0)], -sci_Nil$, "Nil$", 22, sci_List, [s_Product], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sci_Nil$_knownSize), "$iterator0", $rt_wrapFunction0(sci_Nil$_iterator), "$productArity", $rt_wrapFunction0(sci_Nil$_productArity), "$productElement", $rt_wrapFunction1(sci_Nil$_productElement), "$productIterator", $rt_wrapFunction0(sci_Nil$_productIterator), "$init1", $rt_wrapFunction0(sci_Nil$_init), "$last", $rt_wrapFunction0(sci_Nil$_last), "$tail", $rt_wrapFunction0(sci_Nil$_tail), "$headOption", $rt_wrapFunction0(sci_Nil$_headOption), -"$head", $rt_wrapFunction0(sci_Nil$_head)], +sci_Nil$, "Nil$", 20, sci_List, [s_Product], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sci_Nil$_knownSize), "$iterator0", $rt_wrapFunction0(sci_Nil$_iterator), "$productArity", $rt_wrapFunction0(sci_Nil$_productArity), "$productElement", $rt_wrapFunction1(sci_Nil$_productElement), "$productIterator", $rt_wrapFunction0(sci_Nil$_productIterator), "$last", $rt_wrapFunction0(sci_Nil$_last), "$tail", $rt_wrapFunction0(sci_Nil$_tail), "$headOption", $rt_wrapFunction0(sci_Nil$_headOption), "$head", $rt_wrapFunction0(sci_Nil$_head)], sr_ClassValueCompat$ClassValueInterface, 0, jl_Object, [], 3, 3, 0, 0, 0, sr_ClassValueCompat, 0, jl_Object, [sr_ClassValueCompat$ClassValueInterface], 1, 3, 0, 0, 0, sr_ClassTag$cache$, 0, sr_ClassValueCompat, [], 0, 3, 0, sr_ClassTag$cache$_$callClinit, 0, @@ -358999,16 +286661,16 @@ sr_OptManifest, 0, jl_Object, [ji_Serializable], 3, 3, 0, 0, 0, sr_ClassManifestDeprecatedApis, 0, jl_Object, [sr_OptManifest], 131, 3, 0, 0, 0, sr_ClassTag, 0, jl_Object, [sr_ClassManifestDeprecatedApis, s_Equals], 3, 3, 0, 0, 0, sr_ScalaRunTime$, 0, jl_Object, [], 4, 3, 0, 0, 0, -jl_Double, "Double", 14, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$doubleValue", $rt_wrapFunction0(jl_Double_doubleValue), "$intValue", $rt_wrapFunction0(jl_Double_intValue), "$longValue", $rt_wrapFunction0(jl_Double_longValue), "$floatValue", $rt_wrapFunction0(jl_Double_floatValue), "$toString", $rt_wrapFunction0(jl_Double_toString), "$equals", $rt_wrapFunction1(jl_Double_equals), "$hashCode", $rt_wrapFunction0(jl_Double_hashCode0), "$compareTo1", $rt_wrapFunction1(jl_Double_compareTo)], -jl_Long, "Long", 14, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Long_intValue), "$longValue", $rt_wrapFunction0(jl_Long_longValue), "$floatValue", $rt_wrapFunction0(jl_Long_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Long_doubleValue), "$toString", $rt_wrapFunction0(jl_Long_toString0), "$hashCode", $rt_wrapFunction0(jl_Long_hashCode0), "$equals", $rt_wrapFunction1(jl_Long_equals), "$compareTo1", $rt_wrapFunction1(jl_Long_compareTo)], -jl_Float, "Float", 14, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Float_intValue), "$longValue", $rt_wrapFunction0(jl_Float_longValue), "$floatValue", $rt_wrapFunction0(jl_Float_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Float_doubleValue), "$toString", $rt_wrapFunction0(jl_Float_toString), "$equals", $rt_wrapFunction1(jl_Float_equals), "$hashCode", $rt_wrapFunction0(jl_Float_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Float_compareTo)], -jl_Byte, "Byte", 14, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Byte_intValue), "$longValue", $rt_wrapFunction0(jl_Byte_longValue), "$floatValue", $rt_wrapFunction0(jl_Byte_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Byte_doubleValue), "$toString", $rt_wrapFunction0(jl_Byte_toString), "$equals", $rt_wrapFunction1(jl_Byte_equals), "$hashCode", $rt_wrapFunction0(jl_Byte_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Byte_compareTo)], -jl_Short, "Short", 14, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Short_intValue), "$longValue", $rt_wrapFunction0(jl_Short_longValue), "$floatValue", $rt_wrapFunction0(jl_Short_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Short_doubleValue), "$toString", $rt_wrapFunction0(jl_Short_toString), "$equals", $rt_wrapFunction1(jl_Short_equals), "$hashCode", $rt_wrapFunction0(jl_Short_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Short_compareTo)], -s_MatchError, "MatchError", 17, jl_RuntimeException, [], 4, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(s_MatchError_getMessage)], -jl_Boolean, "Boolean", 14, jl_Object, [ji_Serializable, jl_Comparable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(jl_Boolean_toString0), "$hashCode", $rt_wrapFunction0(jl_Boolean_hashCode), "$equals", $rt_wrapFunction1(jl_Boolean_equals), "$compareTo1", $rt_wrapFunction1(jl_Boolean_compareTo)], -jl_Enum, "Enum", 14, jl_Object, [jl_Comparable, ji_Serializable], 1, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(jl_Enum_toString), "$equals", $rt_wrapFunction1(jl_Enum_equals), "$hashCode", $rt_wrapFunction0(jl_Enum_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Enum_compareTo)], -onci_CypherVersion, "CypherVersion", 35, jl_Enum, [], 12, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(onci_CypherVersion_toString)], -jl_IndexOutOfBoundsException, "IndexOutOfBoundsException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0]); +jl_Double, "Double", 12, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$doubleValue", $rt_wrapFunction0(jl_Double_doubleValue), "$intValue", $rt_wrapFunction0(jl_Double_intValue), "$longValue", $rt_wrapFunction0(jl_Double_longValue), "$floatValue", $rt_wrapFunction0(jl_Double_floatValue), "$toString", $rt_wrapFunction0(jl_Double_toString), "$equals", $rt_wrapFunction1(jl_Double_equals), "$hashCode", $rt_wrapFunction0(jl_Double_hashCode0), "$compareTo1", $rt_wrapFunction1(jl_Double_compareTo)], +jl_Long, "Long", 12, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Long_intValue), "$longValue", $rt_wrapFunction0(jl_Long_longValue), "$floatValue", $rt_wrapFunction0(jl_Long_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Long_doubleValue), "$toString", $rt_wrapFunction0(jl_Long_toString0), "$hashCode", $rt_wrapFunction0(jl_Long_hashCode0), "$equals", $rt_wrapFunction1(jl_Long_equals), "$compareTo1", $rt_wrapFunction1(jl_Long_compareTo)], +jl_Float, "Float", 12, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Float_intValue), "$longValue", $rt_wrapFunction0(jl_Float_longValue), "$floatValue", $rt_wrapFunction0(jl_Float_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Float_doubleValue), "$toString", $rt_wrapFunction0(jl_Float_toString), "$equals", $rt_wrapFunction1(jl_Float_equals), "$hashCode", $rt_wrapFunction0(jl_Float_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Float_compareTo)], +jl_Byte, "Byte", 12, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Byte_intValue), "$longValue", $rt_wrapFunction0(jl_Byte_longValue), "$floatValue", $rt_wrapFunction0(jl_Byte_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Byte_doubleValue), "$toString", $rt_wrapFunction0(jl_Byte_toString), "$equals", $rt_wrapFunction1(jl_Byte_equals), "$hashCode", $rt_wrapFunction0(jl_Byte_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Byte_compareTo)], +jl_Short, "Short", 12, jl_Number, [jl_Comparable], 0, 3, 0, 0, ["$intValue", $rt_wrapFunction0(jl_Short_intValue), "$longValue", $rt_wrapFunction0(jl_Short_longValue), "$floatValue", $rt_wrapFunction0(jl_Short_floatValue), "$doubleValue", $rt_wrapFunction0(jl_Short_doubleValue), "$toString", $rt_wrapFunction0(jl_Short_toString), "$equals", $rt_wrapFunction1(jl_Short_equals), "$hashCode", $rt_wrapFunction0(jl_Short_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Short_compareTo)], +s_MatchError, "MatchError", 15, jl_RuntimeException, [], 4, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(s_MatchError_getMessage)], +jl_Boolean, "Boolean", 12, jl_Object, [ji_Serializable, jl_Comparable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(jl_Boolean_toString0), "$hashCode", $rt_wrapFunction0(jl_Boolean_hashCode), "$equals", $rt_wrapFunction1(jl_Boolean_equals), "$compareTo1", $rt_wrapFunction1(jl_Boolean_compareTo)], +jl_Enum, "Enum", 12, jl_Object, [jl_Comparable, ji_Serializable], 1, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(jl_Enum_toString), "$equals", $rt_wrapFunction1(jl_Enum_equals), "$hashCode", $rt_wrapFunction0(jl_Enum_hashCode), "$compareTo1", $rt_wrapFunction1(jl_Enum_compareTo)], +onci_CypherVersion, "CypherVersion", 34, jl_Enum, [], 12, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(onci_CypherVersion_toString)], +jl_IndexOutOfBoundsException, "IndexOutOfBoundsException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0]); $rt_metadata([sc_StringOps$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, sc_MapFactory, 0, jl_Object, [ji_Serializable], 3, 3, 0, 0, 0, sci_Map$, 0, jl_Object, [sc_MapFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(sci_Map$_newBuilder), "$from0", $rt_wrapFunction1(sci_Map$_from0), "$empty0", $rt_wrapFunction0(sci_Map$_empty0)], @@ -359019,29 +286681,29 @@ sr_Manifest$, 0, jl_Object, [ji_Serializable], 4, 3, 0, sr_Manifest$_$callClinit sr_NoManifest$, 0, jl_Object, [sr_OptManifest], 4, 3, 0, 0, 0, jur_Pattern, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, sc_ArrayOps$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -sr_Nothing$, "Nothing$", 20, jl_Throwable, [], 1, 3, [0,0,0], 0, 0, -sr_Null$, "Null$", 20, jl_Object, [], 1, 3, [0,0,0], 0, 0, +sr_Nothing$, "Nothing$", 18, jl_Throwable, [], 1, 3, [0,0,0], 0, 0, +sr_Null$, "Null$", 18, jl_Object, [], 1, 3, [0,0,0], 0, 0, sr_BoxesRunTime, 0, jl_Object, [], 4, 3, 0, 0, 0, s_$less$colon$less, 0, jl_Object, [s_Function1, ji_Serializable], 1, 3, 0, 0, 0, s_$eq$colon$eq, 0, s_$less$colon$less, [], 1, 3, 0, 0, 0, s_$less$colon$less$$anon$1, 0, s_$eq$colon$eq, [], 4, 3, 0, 0, ["$apply2", $rt_wrapFunction1(s_$less$colon$less$$anon$1_apply)], oncifp_FrontEndCompilationPhases, 0, jl_Object, [], 3, 3, 0, 0, 0, oncifp_FrontEndCompilationPhases$, 0, jl_Object, [oncifp_FrontEndCompilationPhases], 4, 3, 0, oncifp_FrontEndCompilationPhases$_$callClinit, 0, -sci_$colon$colon, "$colon$colon", 22, sci_List, [s_Product], 4, 3, 0, 0, ["$head", $rt_wrapFunction0(sci_$colon$colon_head), "$productArity", $rt_wrapFunction0(sci_$colon$colon_productArity), "$productElement", $rt_wrapFunction1(sci_$colon$colon_productElement), "$productIterator", $rt_wrapFunction0(sci_$colon$colon_productIterator), "$tail", $rt_wrapFunction0(sci_$colon$colon_tail), "$headOption", $rt_wrapFunction0(sci_$colon$colon_headOption)], -oncias_SemanticFeature, "SemanticFeature", 41, jl_Object, [s_Product], 3, 3, [0,0,0], 0, 0, +sci_$colon$colon, "$colon$colon", 20, sci_List, [s_Product], 4, 3, 0, 0, ["$head", $rt_wrapFunction0(sci_$colon$colon_head), "$productArity", $rt_wrapFunction0(sci_$colon$colon_productArity), "$productElement", $rt_wrapFunction1(sci_$colon$colon_productElement), "$productIterator", $rt_wrapFunction0(sci_$colon$colon_productIterator), "$tail", $rt_wrapFunction0(sci_$colon$colon_tail), "$headOption", $rt_wrapFunction0(sci_$colon$colon_headOption)], +oncias_SemanticFeature, "SemanticFeature", 40, jl_Object, [s_Product], 3, 3, [0,0,0], 0, 0, oncias_FeatureToString, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncias_SemanticFeature$UseAsSingleGraphSelector$, "SemanticFeature$UseAsSingleGraphSelector$", 41, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$UseAsSingleGraphSelector$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$UseAsSingleGraphSelector$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$UseAsSingleGraphSelector$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$UseAsSingleGraphSelector$_productElement), +oncias_SemanticFeature$UseAsSingleGraphSelector$, "SemanticFeature$UseAsSingleGraphSelector$", 40, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$UseAsSingleGraphSelector$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$UseAsSingleGraphSelector$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$UseAsSingleGraphSelector$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$UseAsSingleGraphSelector$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$UseAsSingleGraphSelector$_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$UseAsSingleGraphSelector$_hashCode)], s_Option$, 0, jl_Object, [ji_Serializable], 4, 3, 0, s_Option$_$callClinit, 0, oncifp_BaseContext, 0, jl_Object, [], 3, 3, 0, 0, 0, cnsa_EnrichedContext, 0, jl_Object, [oncifp_BaseContext], 0, 3, 0, 0, 0, oncifp_BaseState, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_InitialState, "InitialState", 67, jl_Object, [oncifp_BaseState, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncifp_InitialState_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_InitialState_productArity), "$productElement", $rt_wrapFunction1(oncifp_InitialState_productElement), "$productIterator", $rt_wrapFunction0(oncifp_InitialState_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_InitialState_hashCode), "$toString", $rt_wrapFunction0(oncifp_InitialState_toString), +oncifp_InitialState, "InitialState", 65, jl_Object, [oncifp_BaseState, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncifp_InitialState_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_InitialState_productArity), "$productElement", $rt_wrapFunction1(oncifp_InitialState_productElement), "$productIterator", $rt_wrapFunction0(oncifp_InitialState_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_InitialState_hashCode), "$toString", $rt_wrapFunction0(oncifp_InitialState_toString), "$equals", $rt_wrapFunction1(oncifp_InitialState_equals)], oncif_PlannerName, 0, jl_Object, [], 3, 3, 0, 0, 0, cnsa_SemanticAnalyzer$IDPPlannerName$, "SemanticAnalyzer$IDPPlannerName$", 3, jl_Object, [oncif_PlannerName, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(cnsa_SemanticAnalyzer$IDPPlannerName$_productArity), "$productElement", $rt_wrapFunction1(cnsa_SemanticAnalyzer$IDPPlannerName$_productElement), "$productIterator", $rt_wrapFunction0(cnsa_SemanticAnalyzer$IDPPlannerName$_productIterator), "$hashCode", $rt_wrapFunction0(cnsa_SemanticAnalyzer$IDPPlannerName$_hashCode), "$toString", $rt_wrapFunction0(cnsa_SemanticAnalyzer$IDPPlannerName$_toString)], -onciu_AnonymousVariableNameGenerator, "AnonymousVariableNameGenerator", 54, jl_Object, [], 0, 3, 0, 0, 0, +onciu_AnonymousVariableNameGenerator, "AnonymousVariableNameGenerator", 52, jl_Object, [], 0, 3, 0, 0, 0, onciu_AnonymousVariableNameGenerator$, 0, jl_Object, [], 4, 3, 0, onciu_AnonymousVariableNameGenerator$_$callClinit, 0, s_Function11, 0, jl_Object, [], 3, 3, 0, 0, 0, sr_AbstractFunction11, 0, jl_Object, [s_Function11], 1, 3, 0, 0, 0, @@ -359051,11 +286713,11 @@ cnsa_SemanticAnalysisResult, 0, jl_Object, [otj_JSObject], 3, 0, 0, 0, 0, cnsa_SemanticAnalysisResultImpl, 0, jl_Object, [cnsa_SemanticAnalysisResult], 0, 3, 0, 0, ["$getNotifications$exported$0", $rt_wrapFunction0(cnsa_SemanticAnalysisResultImpl_getNotifications$exported$0), "$setNotifications$exported$1", $rt_wrapFunction1(cnsa_SemanticAnalysisResultImpl_setNotifications$exported$1), "$setErrors$exported$2", $rt_wrapFunction1(cnsa_SemanticAnalysisResultImpl_setErrors$exported$2), "$getErrors$exported$3", $rt_wrapFunction0(cnsa_SemanticAnalysisResultImpl_getErrors$exported$3)], jl_System, 0, jl_Object, [], 4, 3, 0, 0, 0, sr_Statics, 0, jl_Object, [], 4, 3, 0, 0, 0, -s_Option, "Option", 17, jl_Object, [sc_IterableOnce, s_Product, ji_Serializable], 1, 3, [0,0,0], 0, ["$knownSize", $rt_wrapFunction0(s_Option_knownSize), "$iterator0", $rt_wrapFunction0(s_Option_iterator)], -s_Some, "Some", 17, s_Option, [], 4, 3, 0, 0, ["$get1", $rt_wrapFunction0(s_Some_get), "$productPrefix", $rt_wrapFunction0(s_Some_productPrefix), "$productArity", $rt_wrapFunction0(s_Some_productArity), "$productElement", $rt_wrapFunction1(s_Some_productElement), "$productIterator", $rt_wrapFunction0(s_Some_productIterator), "$hashCode", $rt_wrapFunction0(s_Some_hashCode), "$toString", $rt_wrapFunction0(s_Some_toString), "$equals", $rt_wrapFunction1(s_Some_equals)], -s_None$, "None$", 17, s_Option, [], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_None$_productArity), "$productElement", $rt_wrapFunction1(s_None$_productElement), "$productIterator", $rt_wrapFunction0(s_None$_productIterator), "$hashCode", $rt_wrapFunction0(s_None$_hashCode), "$toString", $rt_wrapFunction0(s_None$_toString), "$get1", $rt_wrapFunction0(s_None$_get)], +s_Option, "Option", 15, jl_Object, [sc_IterableOnce, s_Product, ji_Serializable], 1, 3, [0,0,0], 0, ["$knownSize", $rt_wrapFunction0(s_Option_knownSize), "$iterator0", $rt_wrapFunction0(s_Option_iterator)], +s_Some, "Some", 15, s_Option, [], 4, 3, 0, 0, ["$get1", $rt_wrapFunction0(s_Some_get), "$productPrefix", $rt_wrapFunction0(s_Some_productPrefix), "$productArity", $rt_wrapFunction0(s_Some_productArity), "$productElement", $rt_wrapFunction1(s_Some_productElement), "$productIterator", $rt_wrapFunction0(s_Some_productIterator), "$hashCode", $rt_wrapFunction0(s_Some_hashCode), "$toString", $rt_wrapFunction0(s_Some_toString), "$equals", $rt_wrapFunction1(s_Some_equals)], +s_None$, "None$", 15, s_Option, [], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_None$_productArity), "$productElement", $rt_wrapFunction1(s_None$_productElement), "$productIterator", $rt_wrapFunction0(s_None$_productIterator), "$hashCode", $rt_wrapFunction0(s_None$_hashCode), "$toString", $rt_wrapFunction0(s_None$_toString), "$get1", $rt_wrapFunction0(s_None$_get)], onciu_InternalNotificationLogger, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_RecordingNotificationLogger, "RecordingNotificationLogger", 54, jl_Object, [onciu_InternalNotificationLogger], 0, 3, 0, 0, 0, +onciu_RecordingNotificationLogger, "RecordingNotificationLogger", 52, jl_Object, [onciu_InternalNotificationLogger], 0, 3, 0, 0, 0, sc_SetOps, 0, jl_Object, [sc_IterableOps, s_Function1], 3, 3, 0, 0, 0, sc_Set, 0, jl_Object, [sc_Iterable, sc_SetOps, s_Equals], 3, 3, 0, 0, 0, sc_AbstractSet, 0, sc_AbstractIterable, [sc_Set], 1, 3, 0, 0, ["$equals", $rt_wrapFunction1(sc_AbstractSet_equals), "$hashCode", $rt_wrapFunction0(sc_AbstractSet_hashCode), "$stringPrefix", $rt_wrapFunction0(sc_AbstractSet_stringPrefix), "$toString", $rt_wrapFunction0(sc_AbstractSet_toString), "$subsetOf", $rt_wrapFunction1(sc_AbstractSet_subsetOf), "$intersect", $rt_wrapFunction1(sc_AbstractSet_intersect), "$concat1", $rt_wrapFunction1(sc_AbstractSet_concat), "$apply2", $rt_wrapFunction1(sc_AbstractSet_apply)], @@ -359069,40 +286731,40 @@ scm_Shrinkable, 0, jl_Object, [], 3, 3, 0, 0, 0, scm_SetOps, 0, jl_Object, [sc_SetOps, scm_Cloneable, scm_Builder, scm_Shrinkable], 3, 3, 0, 0, 0, scm_Set, 0, jl_Object, [scm_Iterable, sc_Set, scm_SetOps], 3, 3, 0, 0, 0, scm_AbstractSet, 0, sc_AbstractSet, [scm_Set], 1, 3, 0, 0, ["$iterableFactory", $rt_wrapFunction0(scm_AbstractSet_iterableFactory), "$remove1", $rt_wrapFunction1(scm_AbstractSet_remove), "$subtractAll", $rt_wrapFunction1(scm_AbstractSet_subtractAll), "$addAll0", $rt_wrapFunction1(scm_AbstractSet_addAll), "$result", $rt_wrapFunction0(scm_AbstractSet_result0)], -scm_HashSet, "HashSet", 23, scm_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(scm_HashSet_map), "$flatMap", $rt_wrapFunction1(scm_HashSet_flatMap), "$flatten", $rt_wrapFunction1(scm_HashSet_flatten), "$filter1", $rt_wrapFunction1(scm_HashSet_filter), "$filterNot0", $rt_wrapFunction1(scm_HashSet_filterNot), "$filterImpl", $rt_wrapFunction2(scm_HashSet_filterImpl), "$size", $rt_wrapFunction0(scm_HashSet_size), "$contains", $rt_wrapFunction1(scm_HashSet_contains), +scm_HashSet, "HashSet", 21, scm_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(scm_HashSet_map), "$flatMap", $rt_wrapFunction1(scm_HashSet_flatMap), "$flatten", $rt_wrapFunction1(scm_HashSet_flatten), "$filter1", $rt_wrapFunction1(scm_HashSet_filter), "$filterNot0", $rt_wrapFunction1(scm_HashSet_filterNot), "$filterImpl", $rt_wrapFunction2(scm_HashSet_filterImpl), "$size", $rt_wrapFunction0(scm_HashSet_size), "$contains", $rt_wrapFunction1(scm_HashSet_contains), "$remove1", $rt_wrapFunction1(scm_HashSet_remove0), "$iterator0", $rt_wrapFunction0(scm_HashSet_iterator), "$clear", $rt_wrapFunction0(scm_HashSet_clear), "$iterableFactory", $rt_wrapFunction0(scm_HashSet_iterableFactory), "$knownSize", $rt_wrapFunction0(scm_HashSet_knownSize), "$isEmpty", $rt_wrapFunction0(scm_HashSet_isEmpty), "$foreach", $rt_wrapFunction1(scm_HashSet_foreach), "$className", $rt_wrapFunction0(scm_HashSet_className), "$hashCode", $rt_wrapFunction0(scm_HashSet_hashCode), "$subtractOne", $rt_wrapFunction1(scm_HashSet_subtractOne), "$addOne", $rt_wrapFunction1(scm_HashSet_addOne), "$subtractAll", $rt_wrapFunction1(scm_HashSet_subtractAll), "$addAll0", $rt_wrapFunction1(scm_HashSet_addAll0)], onciu_ErrorMessageProvider, 0, jl_Object, [], 3, 3, 0, 0, 0, oncm_MessageUtilProvider$, 0, jl_Object, [onciu_ErrorMessageProvider], 4, 3, 0, 0, ["$createMissingPropertyLabelHintError", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return oncm_MessageUtilProvider$_createMissingPropertyLabelHintError(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }, "$createUseClauseUnsupportedError", $rt_wrapFunction0(oncm_MessageUtilProvider$_createUseClauseUnsupportedError), "$createDynamicGraphReferenceUnsupportedError", $rt_wrapFunction1(oncm_MessageUtilProvider$_createDynamicGraphReferenceUnsupportedError), "$createMultipleGraphReferencesError", $rt_wrapFunction2(oncm_MessageUtilProvider$_createMultipleGraphReferencesError), "$createMultipleGraphReferencesError$default$2", $rt_wrapFunction0(oncm_MessageUtilProvider$_createMultipleGraphReferencesError$default$2)], -s_Function6, 0, jl_Object, [], 3, 3, 0, 0, 0, -sr_AbstractFunction6, 0, jl_Object, [s_Function6], 1, 3, 0, 0, 0, -oncifp_FrontEndCompilationPhases$ParsingConfig$, 0, sr_AbstractFunction6, [ji_Serializable], 0, 3, 0, 0, 0, +s_Function4, 0, jl_Object, [], 3, 3, 0, 0, 0, +sr_AbstractFunction4, 0, jl_Object, [s_Function4], 1, 3, 0, 0, 0, +oncifp_FrontEndCompilationPhases$ParsingConfig$, 0, sr_AbstractFunction4, [ji_Serializable], 0, 3, 0, 0, 0, oncifp_Transformer, 0, jl_Object, [], 3, 3, 0, 0, 0, oncifp_Phase, 0, jl_Object, [oncifp_Transformer], 3, 3, 0, 0, 0, oncifp_ExpandStarRewriter$, 0, jl_Object, [oncifp_Phase, s_Product, ji_Serializable], 4, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_ExpandStarRewriter$_transform), "$name", $rt_wrapFunction0(oncifp_ExpandStarRewriter$_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_ExpandStarRewriter$_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_ExpandStarRewriter$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_ExpandStarRewriter$_phase), "$postConditions", $rt_wrapFunction0(oncifp_ExpandStarRewriter$_postConditions), -"$productPrefix", $rt_wrapFunction0(oncifp_ExpandStarRewriter$_productPrefix), "$process0", $rt_wrapFunction2(oncifp_ExpandStarRewriter$_process)], +"$productPrefix", $rt_wrapFunction0(oncifp_ExpandStarRewriter$_productPrefix), "$process", $rt_wrapFunction2(oncifp_ExpandStarRewriter$_process)], oncifp_If, 0, jl_Object, [oncifp_Transformer, s_Product, ji_Serializable], 0, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_If_transform), "$name", $rt_wrapFunction0(oncifp_If_name), "$postConditions", $rt_wrapFunction0(oncifp_If_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_If_invalidatedConditions)], cnsa_SemanticAnalyzer$$parsing$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_SemanticAnalyzer$$parsing$lambda$_2_0_apply)], s_Function0, 0, jl_Object, [], 3, 3, 0, 0, ["$toString", $rt_wrapFunction0(s_Function0_toString)], cnsa_SemanticAnalyzer$$parsing$lambda$_2_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(cnsa_SemanticAnalyzer$$parsing$lambda$_2_1_apply)], -oncifp_ObfuscationMetadataCollection$, 0, jl_Object, [oncifp_Phase, s_Product, ji_Serializable], 4, 3, 0, oncifp_ObfuscationMetadataCollection$_$callClinit, ["$transform", $rt_wrapFunction2(oncifp_ObfuscationMetadataCollection$_transform), "$name", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_ObfuscationMetadataCollection$_checkConditions), "$phase", -$rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_phase), "$postConditions", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_postConditions), "$productPrefix", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_productPrefix), "$process0", $rt_wrapFunction2(oncifp_ObfuscationMetadataCollection$_process)], +oncifp_ObfuscationMetadataCollection$, 0, jl_Object, [oncifp_Phase, s_Product, ji_Serializable], 4, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_ObfuscationMetadataCollection$_transform), "$name", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_ObfuscationMetadataCollection$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_phase), +"$postConditions", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_postConditions), "$productPrefix", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$_productPrefix), "$process", $rt_wrapFunction2(oncifp_ObfuscationMetadataCollection$_process)], oncifp_VisitorPhase, 0, jl_Object, [oncifp_Phase], 3, 3, 0, 0, 0, -oncifp_AmbiguousAggregationAnalysis, 0, jl_Object, [oncifp_VisitorPhase, s_Product, ji_Serializable], 0, 3, 0, 0, ["$process0", $rt_wrapFunction2(oncifp_AmbiguousAggregationAnalysis_process), "$postConditions", $rt_wrapFunction0(oncifp_AmbiguousAggregationAnalysis_postConditions), "$transform", $rt_wrapFunction2(oncifp_AmbiguousAggregationAnalysis_transform), "$name", $rt_wrapFunction0(oncifp_AmbiguousAggregationAnalysis_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_AmbiguousAggregationAnalysis_invalidatedConditions), +oncifp_AmbiguousAggregationAnalysis, 0, jl_Object, [oncifp_VisitorPhase, s_Product, ji_Serializable], 0, 3, 0, 0, ["$process", $rt_wrapFunction2(oncifp_AmbiguousAggregationAnalysis_process), "$postConditions", $rt_wrapFunction0(oncifp_AmbiguousAggregationAnalysis_postConditions), "$transform", $rt_wrapFunction2(oncifp_AmbiguousAggregationAnalysis_transform), "$name", $rt_wrapFunction0(oncifp_AmbiguousAggregationAnalysis_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_AmbiguousAggregationAnalysis_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_AmbiguousAggregationAnalysis_checkConditions), "$phase", $rt_wrapFunction0(oncifp_AmbiguousAggregationAnalysis_phase), "$productPrefix", $rt_wrapFunction0(oncifp_AmbiguousAggregationAnalysis_productPrefix), "$visit", $rt_wrapFunction2(oncifp_AmbiguousAggregationAnalysis_visit)], -oncifp_ProcedureAndFunctionDeprecationWarnings$, 0, jl_Object, [oncifp_VisitorPhase, s_Product, ji_Serializable], 4, 3, 0, oncifp_ProcedureAndFunctionDeprecationWarnings$_$callClinit, ["$process0", $rt_wrapFunction2(oncifp_ProcedureAndFunctionDeprecationWarnings$_process), "$postConditions", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_postConditions), "$transform", $rt_wrapFunction2(oncifp_ProcedureAndFunctionDeprecationWarnings$_transform), "$name", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_name), -"$invalidatedConditions", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_ProcedureAndFunctionDeprecationWarnings$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_phase), "$productPrefix", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_productPrefix), "$visit", $rt_wrapFunction2(oncifp_ProcedureAndFunctionDeprecationWarnings$_visit)], -oncifp_ProcedureWarnings$, 0, jl_Object, [oncifp_VisitorPhase, s_Product, ji_Serializable], 4, 3, 0, oncifp_ProcedureWarnings$_$callClinit, ["$process0", $rt_wrapFunction2(oncifp_ProcedureWarnings$_process), "$postConditions", $rt_wrapFunction0(oncifp_ProcedureWarnings$_postConditions), "$transform", $rt_wrapFunction2(oncifp_ProcedureWarnings$_transform), "$name", $rt_wrapFunction0(oncifp_ProcedureWarnings$_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_ProcedureWarnings$_invalidatedConditions), "$checkConditions", +oncifp_ProcedureAndFunctionDeprecationWarnings$, 0, jl_Object, [oncifp_VisitorPhase, s_Product, ji_Serializable], 4, 3, 0, 0, ["$process", $rt_wrapFunction2(oncifp_ProcedureAndFunctionDeprecationWarnings$_process), "$postConditions", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_postConditions), "$transform", $rt_wrapFunction2(oncifp_ProcedureAndFunctionDeprecationWarnings$_transform), "$name", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_name), "$invalidatedConditions", +$rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_ProcedureAndFunctionDeprecationWarnings$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_phase), "$productPrefix", $rt_wrapFunction0(oncifp_ProcedureAndFunctionDeprecationWarnings$_productPrefix), "$visit", $rt_wrapFunction2(oncifp_ProcedureAndFunctionDeprecationWarnings$_visit)], +oncifp_ProcedureWarnings$, 0, jl_Object, [oncifp_VisitorPhase, s_Product, ji_Serializable], 4, 3, 0, oncifp_ProcedureWarnings$_$callClinit, ["$process", $rt_wrapFunction2(oncifp_ProcedureWarnings$_process), "$postConditions", $rt_wrapFunction0(oncifp_ProcedureWarnings$_postConditions), "$transform", $rt_wrapFunction2(oncifp_ProcedureWarnings$_transform), "$name", $rt_wrapFunction0(oncifp_ProcedureWarnings$_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_ProcedureWarnings$_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_ProcedureWarnings$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_ProcedureWarnings$_phase), "$productPrefix", $rt_wrapFunction0(oncifp_ProcedureWarnings$_productPrefix), "$visit", $rt_wrapFunction2(oncifp_ProcedureWarnings$_visit)], oncifp_SemanticAnalysis, 0, jl_Object, [oncifp_Phase, s_Product, ji_Serializable], 0, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_SemanticAnalysis_transform), "$name", $rt_wrapFunction0(oncifp_SemanticAnalysis_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_SemanticAnalysis_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_SemanticAnalysis_checkConditions), "$phase", $rt_wrapFunction0(oncifp_SemanticAnalysis_phase), "$postConditions", $rt_wrapFunction0(oncifp_SemanticAnalysis_postConditions), -"$productPrefix", $rt_wrapFunction0(oncifp_SemanticAnalysis_productPrefix), "$process0", $rt_wrapFunction2(oncifp_SemanticAnalysis_process)], +"$productPrefix", $rt_wrapFunction0(oncifp_SemanticAnalysis_productPrefix), "$process", $rt_wrapFunction2(oncifp_SemanticAnalysis_process)], sr_ManifestFactory$, 0, jl_Object, [], 4, 3, 0, sr_ManifestFactory$_$callClinit, 0, jur_AbstractSet, 0, jl_Object, [], 1, 0, 0, 0, ["$find0", $rt_wrapFunction3(jur_AbstractSet_find), "$findBack", $rt_wrapFunction4(jur_AbstractSet_findBack), "$getType0", $rt_wrapFunction0(jur_AbstractSet_getType), "$toString", $rt_wrapFunction0(jur_AbstractSet_toString), "$setNext", $rt_wrapFunction1(jur_AbstractSet_setNext), "$first", $rt_wrapFunction1(jur_AbstractSet_first), "$processBackRefReplacement", $rt_wrapFunction0(jur_AbstractSet_processBackRefReplacement), "$processSecondPass", $rt_wrapFunction0(jur_AbstractSet_processSecondPass)], sci_SetOps, 0, jl_Object, [sc_SetOps], 3, 3, 0, 0, 0, -sci_Set, "Set", 22, jl_Object, [sci_Iterable, sc_Set, sci_SetOps], 3, 3, [0,0,0], 0, 0, +sci_Set, "Set", 20, jl_Object, [sci_Iterable, sc_Set, sci_SetOps], 3, 3, [0,0,0], 0, 0, sci_AbstractSet, 0, sc_AbstractSet, [sci_Set], 1, 3, 0, 0, ["$iterableFactory", $rt_wrapFunction0(sci_AbstractSet_iterableFactory), "$removedAll", $rt_wrapFunction1(sci_AbstractSet_removedAll)], -sci_Set$EmptySet$, "Set$EmptySet$", 22, sci_AbstractSet, [ji_Serializable], 0, 3, 0, 0, ["$size", $rt_wrapFunction0(sci_Set$EmptySet$_size), "$isEmpty", $rt_wrapFunction0(sci_Set$EmptySet$_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$EmptySet$_knownSize), "$subsetOf", $rt_wrapFunction1(sci_Set$EmptySet$_subsetOf), "$contains", $rt_wrapFunction1(sci_Set$EmptySet$_contains), "$iterator0", $rt_wrapFunction0(sci_Set$EmptySet$_iterator), "$foreach", $rt_wrapFunction1(sci_Set$EmptySet$_foreach), "$excl", $rt_wrapFunction1(sci_Set$EmptySet$_excl), +sci_Set$EmptySet$, "Set$EmptySet$", 20, sci_AbstractSet, [ji_Serializable], 0, 3, 0, 0, ["$size", $rt_wrapFunction0(sci_Set$EmptySet$_size), "$isEmpty", $rt_wrapFunction0(sci_Set$EmptySet$_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$EmptySet$_knownSize), "$subsetOf", $rt_wrapFunction1(sci_Set$EmptySet$_subsetOf), "$contains", $rt_wrapFunction1(sci_Set$EmptySet$_contains), "$iterator0", $rt_wrapFunction0(sci_Set$EmptySet$_iterator), "$foreach", $rt_wrapFunction1(sci_Set$EmptySet$_foreach), "$excl", $rt_wrapFunction1(sci_Set$EmptySet$_excl), "$incl", $rt_wrapFunction1(sci_Set$EmptySet$_incl), "$intersect", $rt_wrapFunction1(sci_Set$EmptySet$_intersect), "$removedAll", $rt_wrapFunction1(sci_Set$EmptySet$_removedAll), "$filterNot0", $rt_wrapFunction1(sci_Set$EmptySet$_filterNot), "$filter1", $rt_wrapFunction1(sci_Set$EmptySet$_filter)], jur_FSet, "FSet", 6, jur_AbstractSet, [], 0, 0, 0, jur_FSet_$callClinit, ["$matches1", $rt_wrapFunction3(jur_FSet_matches), "$getName", $rt_wrapFunction0(jur_FSet_getName), "$hasConsumed", $rt_wrapFunction1(jur_FSet_hasConsumed)], jur_Lexer, 0, jl_Object, [], 0, 0, 0, 0, 0, @@ -359115,16 +286777,16 @@ sr_ClassValueCompat$, 0, jl_Object, [], 4, 3, 0, sr_ClassValueCompat$_$callClini sr_ClassValueCompat$FallbackClassValue, 0, jl_Object, [sr_ClassValueCompat$ClassValueInterface], 0, 3, 0, 0, ["$get3", $rt_wrapFunction1(sr_ClassValueCompat$FallbackClassValue_get)], jl_ClassValue, 0, jl_Object, [], 1, 3, 0, 0, ["$get3", $rt_wrapFunction1(jl_ClassValue_get)], sr_ClassValueCompat$JavaClassValue, 0, jl_ClassValue, [sr_ClassValueCompat$ClassValueInterface], 0, 3, 0, 0, 0, -oncias_SemanticFeature$MultipleDatabases$, "SemanticFeature$MultipleDatabases$", 41, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$MultipleDatabases$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$MultipleDatabases$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$MultipleDatabases$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$MultipleDatabases$_productElement), +oncias_SemanticFeature$MultipleDatabases$, "SemanticFeature$MultipleDatabases$", 40, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$MultipleDatabases$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$MultipleDatabases$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$MultipleDatabases$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$MultipleDatabases$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$MultipleDatabases$_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$MultipleDatabases$_hashCode)], scm_ReusableBuilder, 0, jl_Object, [scm_Builder], 3, 3, 0, 0, 0, -sci_SetBuilderImpl, "SetBuilderImpl", 22, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_SetBuilderImpl_sizeHint0), "$sizeHint0", $rt_wrapFunction2(sci_SetBuilderImpl_sizeHint), "$addAll0", $rt_wrapFunction1(sci_SetBuilderImpl_addAll0), "$addOne", $rt_wrapFunction1(sci_SetBuilderImpl_addOne), "$result", $rt_wrapFunction0(sci_SetBuilderImpl_result)], -scm_HashSet$Node, "HashSet$Node", 23, jl_Object, [], 4, 3, [scm_HashSet,0,"Node"], 0, ["$toString", $rt_wrapFunction0(scm_HashSet$Node_toString)], -jl_Object$Monitor, "Object$Monitor", 14, jl_Object, [], 0, 0, 0, 0, 0, +sci_SetBuilderImpl, "SetBuilderImpl", 20, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_SetBuilderImpl_sizeHint0), "$sizeHint0", $rt_wrapFunction2(sci_SetBuilderImpl_sizeHint), "$addAll0", $rt_wrapFunction1(sci_SetBuilderImpl_addAll0), "$addOne", $rt_wrapFunction1(sci_SetBuilderImpl_addOne), "$result", $rt_wrapFunction0(sci_SetBuilderImpl_result)], +scm_HashSet$Node, "HashSet$Node", 21, jl_Object, [], 4, 3, [scm_HashSet,0,"Node"], 0, ["$toString", $rt_wrapFunction0(scm_HashSet$Node_toString)], +jl_Object$Monitor, "Object$Monitor", 12, jl_Object, [], 0, 0, 0, 0, 0, jl_Runnable, 0, jl_Object, [], 3, 3, 0, 0, 0, -jl_Thread, "Thread", 14, jl_Object, [jl_Runnable], 0, 3, 0, 0, 0]); -$rt_metadata([jl_IllegalStateException, "IllegalStateException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, -jl_IllegalMonitorStateException, "IllegalMonitorStateException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, +jl_Thread, "Thread", 12, jl_Object, [jl_Runnable], 0, 3, 0, 0, 0]); +$rt_metadata([jl_IllegalStateException, "IllegalStateException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, +jl_IllegalMonitorStateException, "IllegalMonitorStateException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, sr_Manifest, 0, jl_Object, [sr_ClassTag], 3, 3, 0, 0, 0, sr_AnyValManifest, 0, jl_Object, [sr_Manifest], 1, 3, 0, 0, ["$equals", $rt_wrapFunction1(sr_AnyValManifest_equals), "$hashCode", $rt_wrapFunction0(sr_AnyValManifest_hashCode)], sr_ManifestFactory$ByteManifest, 0, sr_AnyValManifest, [], 4, 3, 0, 0, ["$runtimeClass", $rt_wrapFunction0(sr_ManifestFactory$ByteManifest_runtimeClass), "$unapply8", $rt_wrapFunction1(sr_ManifestFactory$ByteManifest_unapply), "$newArray", $rt_wrapFunction1(sr_ManifestFactory$ByteManifest_newArray)], @@ -359171,34 +286833,32 @@ jl_Math, 0, jl_Object, [], 4, 3, 0, 0, 0, otp_PlatformQueue, 0, jl_Object, [otj_JSObject], 1, 3, 0, 0, 0, otp_PlatformRunnable, 0, jl_Object, [], 3, 3, 0, 0, 0, jl_Object$monitorExit$lambda$_8_0, 0, jl_Object, [otp_PlatformRunnable], 0, 3, 0, 0, 0, -onciu_StepSequencer$Step, "StepSequencer$Step", 54, jl_Object, [], 3, 3, [onciu_StepSequencer,0,"Step"], 0, 0, +onciu_StepSequencer$Step, "StepSequencer$Step", 52, jl_Object, [], 3, 3, [onciu_StepSequencer,0,"Step"], 0, 0, oncifpf_ParsePipelineTransformerFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_Parse, 0, jl_Object, [oncifp_Phase, onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, s_Product, ji_Serializable], 0, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_Parse_transform), "$name", $rt_wrapFunction0(oncifp_Parse_name), "$checkConditions", $rt_wrapFunction3(oncifp_Parse_checkConditions), "$phase", $rt_wrapFunction0(oncifp_Parse_phase), "$postConditions", $rt_wrapFunction0(oncifp_Parse_postConditions), "$productPrefix", $rt_wrapFunction0(oncifp_Parse_productPrefix), "$process0", -$rt_wrapFunction2(oncifp_Parse_process)]]); +oncifp_Parse$, 0, jl_Object, [oncifp_Phase, onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, s_Product, ji_Serializable], 4, 3, 0, oncifp_Parse$_$callClinit, ["$transform", $rt_wrapFunction2(oncifp_Parse$_transform), "$name", $rt_wrapFunction0(oncifp_Parse$_name), "$checkConditions", $rt_wrapFunction3(oncifp_Parse$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_Parse$_phase0), "$postConditions", $rt_wrapFunction0(oncifp_Parse$_postConditions), "$productPrefix", $rt_wrapFunction0(oncifp_Parse$_productPrefix), +"$process", $rt_wrapFunction2(oncifp_Parse$_process)]]); $rt_metadata([onciu_StepSequencer$DefaultPostCondition, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_CollectSyntaxUsageMetrics$, 0, jl_Object, [oncifp_VisitorPhase, onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, onciu_StepSequencer$DefaultPostCondition, s_Product, ji_Serializable], 4, 3, 0, oncifp_CollectSyntaxUsageMetrics$_$callClinit, ["$process0", $rt_wrapFunction2(oncifp_CollectSyntaxUsageMetrics$_process), "$transform", $rt_wrapFunction2(oncifp_CollectSyntaxUsageMetrics$_transform), "$name", $rt_wrapFunction0(oncifp_CollectSyntaxUsageMetrics$_name), "$checkConditions", $rt_wrapFunction3(oncifp_CollectSyntaxUsageMetrics$_checkConditions), +oncifp_CollectSyntaxUsageMetrics$, 0, jl_Object, [oncifp_VisitorPhase, onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, onciu_StepSequencer$DefaultPostCondition, s_Product, ji_Serializable], 4, 3, 0, oncifp_CollectSyntaxUsageMetrics$_$callClinit, ["$process", $rt_wrapFunction2(oncifp_CollectSyntaxUsageMetrics$_process), "$transform", $rt_wrapFunction2(oncifp_CollectSyntaxUsageMetrics$_transform), "$name", $rt_wrapFunction0(oncifp_CollectSyntaxUsageMetrics$_name), "$checkConditions", $rt_wrapFunction3(oncifp_CollectSyntaxUsageMetrics$_checkConditions), "$completed", $rt_wrapFunction0(oncifp_CollectSyntaxUsageMetrics$_completed), "$postConditions", $rt_wrapFunction0(oncifp_CollectSyntaxUsageMetrics$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_CollectSyntaxUsageMetrics$_invalidatedConditions), "$phase", $rt_wrapFunction0(oncifp_CollectSyntaxUsageMetrics$_phase), "$productPrefix", $rt_wrapFunction0(oncifp_CollectSyntaxUsageMetrics$_productPrefix), "$toString", $rt_wrapFunction0(oncifp_CollectSyntaxUsageMetrics$_toString), "$visit", $rt_wrapFunction2(oncifp_CollectSyntaxUsageMetrics$_visit)], oncifp_SyntaxDeprecationWarningsAndReplacements, 0, jl_Object, [oncifp_Phase, onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, s_Product, ji_Serializable], 0, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_SyntaxDeprecationWarningsAndReplacements_transform), "$name", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements_name), "$checkConditions", $rt_wrapFunction3(oncifp_SyntaxDeprecationWarningsAndReplacements_checkConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements_invalidatedConditions), -"$postConditions", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements_postConditions), "$phase", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements_phase), "$productPrefix", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements_productPrefix), "$process0", $rt_wrapFunction2(oncifp_SyntaxDeprecationWarningsAndReplacements_process)], +"$postConditions", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements_postConditions), "$phase", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements_phase), "$productPrefix", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements_productPrefix), "$process", $rt_wrapFunction2(oncifp_SyntaxDeprecationWarningsAndReplacements_process)], oncir_Deprecations, 0, jl_Object, [], 3, 3, 0, 0, 0, oncir_SyntacticDeprecations, 0, jl_Object, [oncir_Deprecations], 3, 3, 0, 0, 0, -oncir_Deprecations$syntacticallyDeprecatedFeatures$, "Deprecations$syntacticallyDeprecatedFeatures$", 60, jl_Object, [oncir_SyntacticDeprecations, s_Product, ji_Serializable], 0, 3, 0, oncir_Deprecations$syntacticallyDeprecatedFeatures$_$callClinit, ["$toString", $rt_wrapFunction0(oncir_Deprecations$syntacticallyDeprecatedFeatures$_toString)], +oncir_Deprecations$SyntacticallyDeprecatedFeatures$, "Deprecations$SyntacticallyDeprecatedFeatures$", 58, jl_Object, [oncir_SyntacticDeprecations, s_Product, ji_Serializable], 0, 3, 0, oncir_Deprecations$SyntacticallyDeprecatedFeatures$_$callClinit, ["$toString", $rt_wrapFunction0(oncir_Deprecations$SyntacticallyDeprecatedFeatures$_toString)], oncifp_PreparatoryRewriting$, 0, jl_Object, [oncifp_Phase, onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, s_Product, ji_Serializable], 4, 3, 0, oncifp_PreparatoryRewriting$_$callClinit, ["$transform", $rt_wrapFunction2(oncifp_PreparatoryRewriting$_transform), "$name", $rt_wrapFunction0(oncifp_PreparatoryRewriting$_name), "$checkConditions", $rt_wrapFunction3(oncifp_PreparatoryRewriting$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_PreparatoryRewriting$_phase0), "$invalidatedConditions", -$rt_wrapFunction0(oncifp_PreparatoryRewriting$_invalidatedConditions), "$postConditions", $rt_wrapFunction0(oncifp_PreparatoryRewriting$_postConditions), "$productPrefix", $rt_wrapFunction0(oncifp_PreparatoryRewriting$_productPrefix), "$process0", $rt_wrapFunction2(oncifp_PreparatoryRewriting$_process)], +$rt_wrapFunction0(oncifp_PreparatoryRewriting$_invalidatedConditions), "$postConditions", $rt_wrapFunction0(oncifp_PreparatoryRewriting$_postConditions), "$productPrefix", $rt_wrapFunction0(oncifp_PreparatoryRewriting$_productPrefix), "$process", $rt_wrapFunction2(oncifp_PreparatoryRewriting$_process)], oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_0_apply)], oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_FrontEndCompilationPhases$parsingBase$lambda$_6_1_apply)], oncifp_StatementRewriter, 0, jl_Object, [oncifp_Phase], 3, 3, 0, 0, 0, oncifp_RemoveDuplicateUseClauses$, 0, jl_Object, [oncifp_StatementRewriter, onciu_StepSequencer$Step, s_Product, ji_Serializable], 4, 3, 0, 0, ["$phase", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$_phase), "$transform", $rt_wrapFunction2(oncifp_RemoveDuplicateUseClauses$_transform), "$name", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$_name), "$checkConditions", $rt_wrapFunction3(oncifp_RemoveDuplicateUseClauses$_checkConditions), "$instance", $rt_wrapFunction2(oncifp_RemoveDuplicateUseClauses$_instance), -"$postConditions", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$_invalidatedConditions), "$productPrefix", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$_productPrefix), "$process0", $rt_wrapFunction2(oncifp_RemoveDuplicateUseClauses$_process)], -oncifp_SemanticTypeCheck, 0, jl_Object, [oncifp_VisitorPhase, onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncifpf_ParsePipelineTransformerFactory, s_Product, ji_Serializable], 0, 3, 0, 0, ["$process0", $rt_wrapFunction2(oncifp_SemanticTypeCheck_process), "$transform", $rt_wrapFunction2(oncifp_SemanticTypeCheck_transform), "$name", $rt_wrapFunction0(oncifp_SemanticTypeCheck_name), "$checkConditions", $rt_wrapFunction3(oncifp_SemanticTypeCheck_checkConditions), "$phase", $rt_wrapFunction0(oncifp_SemanticTypeCheck_phase), -"$postConditions", $rt_wrapFunction0(oncifp_SemanticTypeCheck_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_SemanticTypeCheck_invalidatedConditions), "$productPrefix", $rt_wrapFunction0(oncifp_SemanticTypeCheck_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_SemanticTypeCheck_productArity), "$productElement", $rt_wrapFunction1(oncifp_SemanticTypeCheck_productElement), "$productIterator", $rt_wrapFunction0(oncifp_SemanticTypeCheck_productIterator), "$toString", $rt_wrapFunction0(oncifp_SemanticTypeCheck_toString), -"$visit", $rt_wrapFunction2(oncifp_SemanticTypeCheck_visit)], +"$postConditions", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$_invalidatedConditions), "$productPrefix", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$_productPrefix), "$process", $rt_wrapFunction2(oncifp_RemoveDuplicateUseClauses$_process)], +oncifp_SemanticTypeCheck$, 0, jl_Object, [oncifp_VisitorPhase, onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncifpf_ParsePipelineTransformerFactory, s_Product, ji_Serializable], 4, 3, 0, oncifp_SemanticTypeCheck$_$callClinit, ["$process", $rt_wrapFunction2(oncifp_SemanticTypeCheck$_process), "$transform", $rt_wrapFunction2(oncifp_SemanticTypeCheck$_transform), "$name", $rt_wrapFunction0(oncifp_SemanticTypeCheck$_name), "$checkConditions", $rt_wrapFunction3(oncifp_SemanticTypeCheck$_checkConditions), +"$phase", $rt_wrapFunction0(oncifp_SemanticTypeCheck$_phase0), "$postConditions", $rt_wrapFunction0(oncifp_SemanticTypeCheck$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_SemanticTypeCheck$_invalidatedConditions), "$productPrefix", $rt_wrapFunction0(oncifp_SemanticTypeCheck$_productPrefix), "$toString", $rt_wrapFunction0(oncifp_SemanticTypeCheck$_toString), "$visit", $rt_wrapFunction2(oncifp_SemanticTypeCheck$_visit)], oncir_SemanticDeprecations, 0, jl_Object, [oncir_Deprecations], 3, 3, 0, 0, 0, -oncir_Deprecations$SemanticallyDeprecatedFeatures, "Deprecations$SemanticallyDeprecatedFeatures", 60, jl_Object, [oncir_SemanticDeprecations, s_Product, ji_Serializable], 0, 3, [oncir_Deprecations,0,"SemanticallyDeprecatedFeatures"], 0, ["$productPrefix", $rt_wrapFunction0(oncir_Deprecations$SemanticallyDeprecatedFeatures_productPrefix), "$productArity", $rt_wrapFunction0(oncir_Deprecations$SemanticallyDeprecatedFeatures_productArity), "$productElement", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures_productElement), -"$productIterator", $rt_wrapFunction0(oncir_Deprecations$SemanticallyDeprecatedFeatures_productIterator), "$toString", $rt_wrapFunction0(oncir_Deprecations$SemanticallyDeprecatedFeatures_toString)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$, "Deprecations$SemanticallyDeprecatedFeatures$", 58, jl_Object, [oncir_SemanticDeprecations, s_Product, ji_Serializable], 0, 3, [oncir_Deprecations,0,"SemanticallyDeprecatedFeatures$"], oncir_Deprecations$SemanticallyDeprecatedFeatures$_$callClinit, ["$toString", $rt_wrapFunction0(oncir_Deprecations$SemanticallyDeprecatedFeatures$_toString)], oncifp_IsolateSubqueriesInMutatingPatterns$, 0, jl_Object, [oncifp_StatementRewriter, onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, s_Product, ji_Serializable], 4, 3, 0, oncifp_IsolateSubqueriesInMutatingPatterns$_$callClinit, ["$phase", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$_phase), "$transform", $rt_wrapFunction2(oncifp_IsolateSubqueriesInMutatingPatterns$_transform), "$name", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$_name), "$checkConditions", -$rt_wrapFunction3(oncifp_IsolateSubqueriesInMutatingPatterns$_checkConditions), "$postConditions", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$_invalidatedConditions), "$instance", $rt_wrapFunction2(oncifp_IsolateSubqueriesInMutatingPatterns$_instance), "$productPrefix", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$_productPrefix), "$process0", $rt_wrapFunction2(oncifp_IsolateSubqueriesInMutatingPatterns$_process)], -jl_ArrayStoreException, "ArrayStoreException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, +$rt_wrapFunction3(oncifp_IsolateSubqueriesInMutatingPatterns$_checkConditions), "$postConditions", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$_invalidatedConditions), "$instance", $rt_wrapFunction2(oncifp_IsolateSubqueriesInMutatingPatterns$_instance), "$productPrefix", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$_productPrefix), "$process", $rt_wrapFunction2(oncifp_IsolateSubqueriesInMutatingPatterns$_process)], +jl_ArrayStoreException, "ArrayStoreException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, jur_SpecialToken, 0, jl_Object, [], 1, 0, 0, 0, 0, jur_AbstractCharClass, 0, jur_SpecialToken, [], 1, 0, 0, 0, ["$getBits", $rt_wrapFunction0(jur_AbstractCharClass_getBits), "$getLowHighSurrogates", $rt_wrapFunction0(jur_AbstractCharClass_getLowHighSurrogates), "$getInstance0", $rt_wrapFunction0(jur_AbstractCharClass_getInstance), "$hasUCI", $rt_wrapFunction0(jur_AbstractCharClass_hasUCI)], ju_MissingResourceException, "MissingResourceException", 5, jl_RuntimeException, [], 0, 3, 0, 0, 0, @@ -359211,16 +286871,9 @@ jur_AltQuantifierSet, "AltQuantifierSet", 6, jur_LeafQuantifierSet, [], 0, 0, 0, jur_UnifiedQuantifierSet, "UnifiedQuantifierSet", 6, jur_LeafQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_UnifiedQuantifierSet_matches), "$find0", $rt_wrapFunction3(jur_UnifiedQuantifierSet_find)], jl_Thread$UncaughtExceptionHandler, 0, jl_Object, [], 3, 3, 0, 0, 0, jl_DefaultUncaughtExceptionHandler, 0, jl_Object, [jl_Thread$UncaughtExceptionHandler], 0, 3, 0, 0, 0, -oncifp_CompilationPhaseTracer$CompilationPhase, "CompilationPhaseTracer$CompilationPhase", 67, jl_Enum, [], 12, 3, [oncifp_CompilationPhaseTracer,0,"CompilationPhase"], 0, 0, -oncifp_ExpectedBooleanTypeCheck, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_PatternExpressionInNonExistenceCheck$, 0, jl_Object, [oncifp_ExpectedBooleanTypeCheck], 4, 3, 0, oncifp_PatternExpressionInNonExistenceCheck$_$callClinit, 0, -oncifp_VariableReferenceCheck, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_SelfReferenceCheckWithinPatternPart, 0, jl_Object, [oncifp_VariableReferenceCheck, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -oncifp_SelfReferenceCheckAcrossPatternParts, 0, jl_Object, [oncifp_VariableReferenceCheck, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -oncifp_ListCoercedToBooleanCheck$, 0, jl_Object, [oncifp_ExpectedBooleanTypeCheck], 4, 3, 0, 0, 0, jur_AbstractCharClass$PredefinedCharacterClasses, 0, jl_Object, [], 4, 0, 0, 0, 0, jur_AbstractCharClass$LazyCharClass, 0, jl_Object, [], 1, 0, 0, 0, 0, -jl_NumberFormatException, "NumberFormatException", 14, jl_IllegalArgumentException, [], 0, 3, 0, 0, 0, +jl_NumberFormatException, "NumberFormatException", 12, jl_IllegalArgumentException, [], 0, 3, 0, 0, 0, jur_Quantifier, "Quantifier", 6, jur_SpecialToken, [jl_Cloneable], 0, 0, 0, 0, ["$toString", $rt_wrapFunction0(jur_Quantifier_toString)], jur_FSet$PossessiveFSet, "FSet$PossessiveFSet", 6, jur_AbstractSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_FSet$PossessiveFSet_matches), "$getName", $rt_wrapFunction0(jur_FSet$PossessiveFSet_getName), "$hasConsumed", $rt_wrapFunction1(jur_FSet$PossessiveFSet_hasConsumed)], ju_BitSet, "BitSet", 5, jl_Object, [jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(ju_BitSet_equals), "$hashCode", $rt_wrapFunction0(ju_BitSet_hashCode), "$toString", $rt_wrapFunction0(ju_BitSet_toString)], @@ -359232,15 +286885,15 @@ jur_UCIRangeSet, "UCIRangeSet", 6, jur_LeafSet, [], 0, 0, 0, 0, ["$accepts", $rt jur_RangeSet, "RangeSet", 6, jur_LeafSet, [], 0, 0, 0, 0, ["$accepts", $rt_wrapFunction2(jur_RangeSet_accepts), "$getName", $rt_wrapFunction0(jur_RangeSet_getName), "$first", $rt_wrapFunction1(jur_RangeSet_first)], jur_HangulDecomposedCharSet, "HangulDecomposedCharSet", 6, jur_JointSet, [], 0, 0, 0, 0, ["$setNext", $rt_wrapFunction1(jur_HangulDecomposedCharSet_setNext), "$getName", $rt_wrapFunction0(jur_HangulDecomposedCharSet_getName), "$matches1", $rt_wrapFunction3(jur_HangulDecomposedCharSet_matches), "$first", $rt_wrapFunction1(jur_HangulDecomposedCharSet_first), "$hasConsumed", $rt_wrapFunction1(jur_HangulDecomposedCharSet_hasConsumed)], jur_CharSet, "CharSet", 6, jur_LeafSet, [], 0, 0, 0, 0, ["$charCount", $rt_wrapFunction0(jur_CharSet_charCount), "$accepts", $rt_wrapFunction2(jur_CharSet_accepts), "$find0", $rt_wrapFunction3(jur_CharSet_find), "$findBack", $rt_wrapFunction4(jur_CharSet_findBack), "$getName", $rt_wrapFunction0(jur_CharSet_getName), "$first", $rt_wrapFunction1(jur_CharSet_first)], -jur_UCICharSet, "UCICharSet", 6, jur_LeafSet, [], 0, 0, 0, 0, ["$accepts", $rt_wrapFunction2(jur_UCICharSet_accepts), "$getName", $rt_wrapFunction0(jur_UCICharSet_getName)]]); -$rt_metadata([jur_CICharSet, "CICharSet", 6, jur_LeafSet, [], 0, 0, 0, 0, ["$accepts", $rt_wrapFunction2(jur_CICharSet_accepts), "$getName", $rt_wrapFunction0(jur_CICharSet_getName)], +jur_UCICharSet, "UCICharSet", 6, jur_LeafSet, [], 0, 0, 0, 0, ["$accepts", $rt_wrapFunction2(jur_UCICharSet_accepts), "$getName", $rt_wrapFunction0(jur_UCICharSet_getName)], +jur_CICharSet, "CICharSet", 6, jur_LeafSet, [], 0, 0, 0, 0, ["$accepts", $rt_wrapFunction2(jur_CICharSet_accepts), "$getName", $rt_wrapFunction0(jur_CICharSet_getName)], jur_DecomposedCharSet, "DecomposedCharSet", 6, jur_JointSet, [], 0, 0, 0, 0, ["$setNext", $rt_wrapFunction1(jur_DecomposedCharSet_setNext), "$matches1", $rt_wrapFunction3(jur_DecomposedCharSet_matches), "$getName", $rt_wrapFunction0(jur_DecomposedCharSet_getName), "$first", $rt_wrapFunction1(jur_DecomposedCharSet_first), "$hasConsumed", $rt_wrapFunction1(jur_DecomposedCharSet_hasConsumed)], jur_UCIDecomposedCharSet, "UCIDecomposedCharSet", 6, jur_DecomposedCharSet, [], 0, 0, 0, 0, 0, jur_CIDecomposedCharSet, "CIDecomposedCharSet", 6, jur_DecomposedCharSet, [], 0, 0, 0, 0, 0, jur_PossessiveGroupQuantifierSet, "PossessiveGroupQuantifierSet", 6, jur_GroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_PossessiveGroupQuantifierSet_matches)], jur_PosPlusGroupQuantifierSet, "PosPlusGroupQuantifierSet", 6, jur_GroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_PosPlusGroupQuantifierSet_matches)], -jur_AltGroupQuantifierSet, "AltGroupQuantifierSet", 6, jur_GroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_AltGroupQuantifierSet_matches), "$setNext", $rt_wrapFunction1(jur_AltGroupQuantifierSet_setNext)], -jur_PosAltGroupQuantifierSet, "PosAltGroupQuantifierSet", 6, jur_AltGroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_PosAltGroupQuantifierSet_matches), "$setNext", $rt_wrapFunction1(jur_PosAltGroupQuantifierSet_setNext)], +jur_AltGroupQuantifierSet, "AltGroupQuantifierSet", 6, jur_GroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_AltGroupQuantifierSet_matches), "$setNext", $rt_wrapFunction1(jur_AltGroupQuantifierSet_setNext)]]); +$rt_metadata([jur_PosAltGroupQuantifierSet, "PosAltGroupQuantifierSet", 6, jur_AltGroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_PosAltGroupQuantifierSet_matches), "$setNext", $rt_wrapFunction1(jur_PosAltGroupQuantifierSet_setNext)], jur_CompositeGroupQuantifierSet, "CompositeGroupQuantifierSet", 6, jur_GroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_CompositeGroupQuantifierSet_matches), "$getName", $rt_wrapFunction0(jur_CompositeGroupQuantifierSet_getName)], jur_PosCompositeGroupQuantifierSet, "PosCompositeGroupQuantifierSet", 6, jur_CompositeGroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_PosCompositeGroupQuantifierSet_matches)], jur_ReluctantGroupQuantifierSet, "ReluctantGroupQuantifierSet", 6, jur_GroupQuantifierSet, [], 0, 0, 0, 0, ["$matches1", $rt_wrapFunction3(jur_ReluctantGroupQuantifierSet_matches)], @@ -359279,39 +286932,45 @@ ju_Iterator, 0, jl_Object, [], 3, 3, 0, 0, 0, ju_Hashtable$2, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, 0, jl_ReflectiveOperationException, 0, jl_Exception, [], 0, 3, 0, 0, 0, jl_ClassNotFoundException, 0, jl_ReflectiveOperationException, [], 0, 3, 0, 0, 0, -oti_AsyncCallback, "AsyncCallback", 79, jl_Object, [], 3, 3, 0, 0, 0, +oti_AsyncCallback, "AsyncCallback", 77, jl_Object, [], 3, 3, 0, 0, 0, otpp_AsyncCallbackWrapper, 0, jl_Object, [oti_AsyncCallback], 0, 0, 0, 0, ["$complete", $rt_wrapFunction1(otpp_AsyncCallbackWrapper_complete), "$error", $rt_wrapFunction1(otpp_AsyncCallbackWrapper_error)], -jl_Object$monitorEnterWait$lambda$_6_0, "Object$monitorEnterWait$lambda$_6_0", 14, jl_Object, [otp_PlatformRunnable], 0, 3, 0, 0, 0, -onciap_ExpressionStringifier$, 0, jl_Object, [], 4, 3, 0, 0, 0]); -$rt_metadata([sr_AbstractPartialFunction, 0, jl_Object, [s_PartialFunction], 1, 3, 0, 0, ["$orElse", $rt_wrapFunction1(sr_AbstractPartialFunction_orElse), "$lift0", $rt_wrapFunction0(sr_AbstractPartialFunction_lift), "$apply2", $rt_wrapFunction1(sr_AbstractPartialFunction_apply)], -oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1_applyOrElse)], +jl_Object$monitorEnterWait$lambda$_6_0, "Object$monitorEnterWait$lambda$_6_0", 12, jl_Object, [otp_PlatformRunnable], 0, 3, 0, 0, 0, +oncifp_CompilationPhaseTracer$CompilationPhase, "CompilationPhaseTracer$CompilationPhase", 65, jl_Enum, [], 12, 3, [oncifp_CompilationPhaseTracer,0,"CompilationPhase"], 0, 0, +onciap_ExpressionStringifier$, 0, jl_Object, [], 4, 3, 0, onciap_ExpressionStringifier$_$callClinit, 0, onciu_StepSequencer, 0, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, 0, oncirrf_PreparatoryRewritingRewriterFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncirr_normalizeWithAndReturnClauses$, "normalizeWithAndReturnClauses$", 61, jl_Object, [onciu_StepSequencer$Step, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, 0, ["$getRewriter", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$_getRewriter), "$preConditions", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_preConditions), "$postConditions", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_invalidatedConditions), +oncirr_removeSyntaxTracking$, "removeSyntaxTracking$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_removeSyntaxTracking$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_removeSyntaxTracking$_postConditions), "$completed", $rt_wrapFunction0(oncirr_removeSyntaxTracking$_completed), "$getRewriter", $rt_wrapFunction1(oncirr_removeSyntaxTracking$_getRewriter), "$preConditions", +$rt_wrapFunction0(oncirr_removeSyntaxTracking$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_removeSyntaxTracking$_invalidatedConditions), "$productArity", $rt_wrapFunction0(oncirr_removeSyntaxTracking$_productArity), "$productElement", $rt_wrapFunction1(oncirr_removeSyntaxTracking$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_removeSyntaxTracking$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_removeSyntaxTracking$_hashCode), "$toString", $rt_wrapFunction0(oncirr_removeSyntaxTracking$_toString)], +oncirr_normalizeWithAndReturnClauses$, "normalizeWithAndReturnClauses$", 59, jl_Object, [onciu_StepSequencer$Step, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, 0, ["$getRewriter", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$_getRewriter), "$preConditions", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_preConditions), "$postConditions", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_invalidatedConditions), "$productArity", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_productArity), "$productElement", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_hashCode), "$toString", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$_toString)], -oncirr_insertWithBetweenOptionalMatchAndMatch$, "insertWithBetweenOptionalMatchAndMatch$", 61, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_insertWithBetweenOptionalMatchAndMatch$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_postConditions), "$completed", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_completed), "$preConditions", +oncirr_insertWithBetweenOptionalMatchAndMatch$, "insertWithBetweenOptionalMatchAndMatch$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_insertWithBetweenOptionalMatchAndMatch$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_postConditions), "$completed", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_completed), "$preConditions", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_invalidatedConditions), "$getRewriter", $rt_wrapFunction1(oncirr_insertWithBetweenOptionalMatchAndMatch$_getRewriter), "$productArity", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_productArity), "$productElement", $rt_wrapFunction1(oncirr_insertWithBetweenOptionalMatchAndMatch$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_hashCode), "$toString", $rt_wrapFunction0(oncirr_insertWithBetweenOptionalMatchAndMatch$_toString)], -oncirr_wrapOptionalCallProcedure$, "wrapOptionalCallProcedure$", 61, jl_Object, [onciu_StepSequencer$Step, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_wrapOptionalCallProcedure$_$callClinit, ["$preConditions", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_preConditions), "$postConditions", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_invalidatedConditions), -"$getRewriter", $rt_wrapFunction1(oncirr_wrapOptionalCallProcedure$_getRewriter), "$productArity", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_productArity), "$productElement", $rt_wrapFunction1(oncirr_wrapOptionalCallProcedure$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_hashCode), "$toString", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_toString)], -oncirr_expandCallWhere$, "expandCallWhere$", 61, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_expandCallWhere$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_expandCallWhere$_postConditions), "$completed", $rt_wrapFunction0(oncirr_expandCallWhere$_completed), "$preConditions", $rt_wrapFunction0(oncirr_expandCallWhere$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_expandCallWhere$_invalidatedConditions), +oncirr_wrapOptionalCallProcedure$, "wrapOptionalCallProcedure$", 59, jl_Object, [onciu_StepSequencer$Step, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_wrapOptionalCallProcedure$_$callClinit, ["$preConditions", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_preConditions), "$postConditions", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_invalidatedConditions), +"$getRewriter", $rt_wrapFunction1(oncirr_wrapOptionalCallProcedure$_getRewriter), "$productArity", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_productArity), "$productElement", $rt_wrapFunction1(oncirr_wrapOptionalCallProcedure$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_hashCode), "$toString", $rt_wrapFunction0(oncirr_wrapOptionalCallProcedure$_toString)]]); +$rt_metadata([oncirr_expandCallWhere$, "expandCallWhere$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_expandCallWhere$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_expandCallWhere$_postConditions), "$completed", $rt_wrapFunction0(oncirr_expandCallWhere$_completed), "$preConditions", $rt_wrapFunction0(oncirr_expandCallWhere$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_expandCallWhere$_invalidatedConditions), "$getRewriter", $rt_wrapFunction1(oncirr_expandCallWhere$_getRewriter), "$productArity", $rt_wrapFunction0(oncirr_expandCallWhere$_productArity), "$productElement", $rt_wrapFunction1(oncirr_expandCallWhere$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_expandCallWhere$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_expandCallWhere$_hashCode), "$toString", $rt_wrapFunction0(oncirr_expandCallWhere$_toString)], -oncirr_expandShowWhere$, "expandShowWhere$", 61, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_expandShowWhere$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_expandShowWhere$_postConditions), "$completed", $rt_wrapFunction0(oncirr_expandShowWhere$_completed), "$preConditions", $rt_wrapFunction0(oncirr_expandShowWhere$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_expandShowWhere$_invalidatedConditions), +oncirr_expandShowWhere$, "expandShowWhere$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_expandShowWhere$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_expandShowWhere$_postConditions), "$completed", $rt_wrapFunction0(oncirr_expandShowWhere$_completed), "$preConditions", $rt_wrapFunction0(oncirr_expandShowWhere$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_expandShowWhere$_invalidatedConditions), "$getRewriter", $rt_wrapFunction1(oncirr_expandShowWhere$_getRewriter), "$productArity", $rt_wrapFunction0(oncirr_expandShowWhere$_productArity), "$productElement", $rt_wrapFunction1(oncirr_expandShowWhere$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_expandShowWhere$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_expandShowWhere$_hashCode), "$toString", $rt_wrapFunction0(oncirr_expandShowWhere$_toString)], -oncirr_rewriteShowQuery$, "rewriteShowQuery$", 61, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_rewriteShowQuery$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_rewriteShowQuery$_postConditions), "$completed", $rt_wrapFunction0(oncirr_rewriteShowQuery$_completed), "$preConditions", $rt_wrapFunction0(oncirr_rewriteShowQuery$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_rewriteShowQuery$_invalidatedConditions), +oncirr_rewriteShowQuery$, "rewriteShowQuery$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_rewriteShowQuery$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_rewriteShowQuery$_postConditions), "$completed", $rt_wrapFunction0(oncirr_rewriteShowQuery$_completed), "$preConditions", $rt_wrapFunction0(oncirr_rewriteShowQuery$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_rewriteShowQuery$_invalidatedConditions), "$getRewriter", $rt_wrapFunction1(oncirr_rewriteShowQuery$_getRewriter), "$productArity", $rt_wrapFunction0(oncirr_rewriteShowQuery$_productArity), "$productElement", $rt_wrapFunction1(oncirr_rewriteShowQuery$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_rewriteShowQuery$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_rewriteShowQuery$_hashCode), "$toString", $rt_wrapFunction0(oncirr_rewriteShowQuery$_toString)], -oncirr_mergeInPredicates$, "mergeInPredicates$", 61, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_mergeInPredicates$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_mergeInPredicates$_postConditions), "$completed", $rt_wrapFunction0(oncirr_mergeInPredicates$_completed), "$preConditions", $rt_wrapFunction0(oncirr_mergeInPredicates$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_mergeInPredicates$_invalidatedConditions), +oncirr_mergeInPredicates$, "mergeInPredicates$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_mergeInPredicates$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_mergeInPredicates$_postConditions), "$completed", $rt_wrapFunction0(oncirr_mergeInPredicates$_completed), "$preConditions", $rt_wrapFunction0(oncirr_mergeInPredicates$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_mergeInPredicates$_invalidatedConditions), "$getRewriter", $rt_wrapFunction1(oncirr_mergeInPredicates$_getRewriter), "$productArity", $rt_wrapFunction0(oncirr_mergeInPredicates$_productArity), "$productElement", $rt_wrapFunction1(oncirr_mergeInPredicates$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_mergeInPredicates$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_mergeInPredicates$_hashCode), "$toString", $rt_wrapFunction0(oncirr_mergeInPredicates$_toString)], -oncirr_timestampRewriter$, "timestampRewriter$", 61, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_timestampRewriter$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_timestampRewriter$_postConditions), "$completed", $rt_wrapFunction0(oncirr_timestampRewriter$_completed), "$getRewriter", $rt_wrapFunction1(oncirr_timestampRewriter$_getRewriter), "$preConditions", $rt_wrapFunction0(oncirr_timestampRewriter$_preConditions), +oncirr_timestampRewriter$, "timestampRewriter$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_timestampRewriter$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_timestampRewriter$_postConditions), "$completed", $rt_wrapFunction0(oncirr_timestampRewriter$_completed), "$getRewriter", $rt_wrapFunction1(oncirr_timestampRewriter$_getRewriter), "$preConditions", $rt_wrapFunction0(oncirr_timestampRewriter$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_timestampRewriter$_invalidatedConditions), "$productArity", $rt_wrapFunction0(oncirr_timestampRewriter$_productArity), "$productElement", $rt_wrapFunction1(oncirr_timestampRewriter$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_timestampRewriter$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_timestampRewriter$_hashCode), "$toString", $rt_wrapFunction0(oncirr_timestampRewriter$_toString)], -oncirr_rewriteShortestPathWithFixedLengthRelationship$, "rewriteShortestPathWithFixedLengthRelationship$", 61, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, 0, ["$postConditions", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_postConditions), "$completed", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_completed), "$preConditions", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_preConditions), +oncirr_rewriteShortestPathWithFixedLengthRelationship$, "rewriteShortestPathWithFixedLengthRelationship$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, 0, ["$postConditions", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_postConditions), "$completed", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_completed), "$preConditions", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_invalidatedConditions), "$getRewriter", $rt_wrapFunction1(oncirr_rewriteShortestPathWithFixedLengthRelationship$_getRewriter), "$productArity", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_productArity), "$productElement", $rt_wrapFunction1(oncirr_rewriteShortestPathWithFixedLengthRelationship$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_hashCode), "$toString", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRelationship$_toString)], -oncirr_nullIfFunctionRewriter$, "nullIfFunctionRewriter$", 61, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_nullIfFunctionRewriter$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_postConditions), "$completed", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_completed), "$getRewriter", $rt_wrapFunction1(oncirr_nullIfFunctionRewriter$_getRewriter), "$preConditions", +oncirr_nullIfFunctionRewriter$, "nullIfFunctionRewriter$", 59, jl_Object, [onciu_StepSequencer$Step, onciu_StepSequencer$DefaultPostCondition, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_nullIfFunctionRewriter$_$callClinit, ["$postConditions", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_postConditions), "$completed", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_completed), "$getRewriter", $rt_wrapFunction1(oncirr_nullIfFunctionRewriter$_getRewriter), "$preConditions", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_preConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_invalidatedConditions), "$productArity", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_productArity), "$productElement", $rt_wrapFunction1(oncirr_nullIfFunctionRewriter$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_hashCode), "$toString", $rt_wrapFunction0(oncirr_nullIfFunctionRewriter$_toString)], -s_Function2, 0, jl_Object, [], 3, 3, 0, 0, ["$toString", $rt_wrapFunction0(s_Function2_toString)], -oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0, "PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0", 67, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0_apply)], -oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0, "ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0", 67, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0_apply)], +oncirr_unwrapTopLevelBraces$, "unwrapTopLevelBraces$", 59, jl_Object, [onciu_StepSequencer$Step, oncirrf_PreparatoryRewritingRewriterFactory, s_Product, ji_Serializable], 4, 3, 0, oncirr_unwrapTopLevelBraces$_$callClinit, ["$preConditions", $rt_wrapFunction0(oncirr_unwrapTopLevelBraces$_preConditions), "$postConditions", $rt_wrapFunction0(oncirr_unwrapTopLevelBraces$_postConditions), "$invalidatedConditions", $rt_wrapFunction0(oncirr_unwrapTopLevelBraces$_invalidatedConditions), "$getRewriter", $rt_wrapFunction1(oncirr_unwrapTopLevelBraces$_getRewriter), +"$productArity", $rt_wrapFunction0(oncirr_unwrapTopLevelBraces$_productArity), "$productElement", $rt_wrapFunction1(oncirr_unwrapTopLevelBraces$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_unwrapTopLevelBraces$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_unwrapTopLevelBraces$_hashCode), "$toString", $rt_wrapFunction0(oncirr_unwrapTopLevelBraces$_toString)], +oncifp_ExpectedBooleanTypeCheck, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncifp_PatternExpressionInNonExistenceCheck$, 0, jl_Object, [oncifp_ExpectedBooleanTypeCheck], 4, 3, 0, 0, 0, +oncifp_VariableReferenceCheck, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncifp_SelfReferenceCheckWithinPatternPart$, 0, jl_Object, [oncifp_VariableReferenceCheck], 4, 3, 0, 0, 0, +oncifp_SelfReferenceCheckAcrossPatternParts$, 0, jl_Object, [oncifp_VariableReferenceCheck], 4, 3, 0, 0, 0, +oncifp_ListCoercedToBooleanCheck$, 0, jl_Object, [oncifp_ExpectedBooleanTypeCheck], 4, 3, 0, oncifp_ListCoercedToBooleanCheck$_$callClinit, 0, jur_UCISupplCharSet, "UCISupplCharSet", 6, jur_LeafSet, [], 0, 0, 0, 0, ["$accepts", $rt_wrapFunction2(jur_UCISupplCharSet_accepts), "$getName", $rt_wrapFunction0(jur_UCISupplCharSet_getName)], jur_LowSurrogateCharSet, "LowSurrogateCharSet", 6, jur_JointSet, [], 0, 0, 0, 0, ["$setNext", $rt_wrapFunction1(jur_LowSurrogateCharSet_setNext), "$matches1", $rt_wrapFunction3(jur_LowSurrogateCharSet_matches), "$find0", $rt_wrapFunction3(jur_LowSurrogateCharSet_find), "$findBack", $rt_wrapFunction4(jur_LowSurrogateCharSet_findBack), "$getName", $rt_wrapFunction0(jur_LowSurrogateCharSet_getName), "$first", $rt_wrapFunction1(jur_LowSurrogateCharSet_first), "$hasConsumed", $rt_wrapFunction1(jur_LowSurrogateCharSet_hasConsumed)], jur_HighSurrogateCharSet, "HighSurrogateCharSet", 6, jur_JointSet, [], 0, 0, 0, 0, ["$setNext", $rt_wrapFunction1(jur_HighSurrogateCharSet_setNext), "$matches1", $rt_wrapFunction3(jur_HighSurrogateCharSet_matches), "$find0", $rt_wrapFunction3(jur_HighSurrogateCharSet_find), "$findBack", $rt_wrapFunction4(jur_HighSurrogateCharSet_findBack), "$getName", $rt_wrapFunction0(jur_HighSurrogateCharSet_getName), "$first", $rt_wrapFunction1(jur_HighSurrogateCharSet_first), "$hasConsumed", $rt_wrapFunction1(jur_HighSurrogateCharSet_hasConsumed)], @@ -359322,6 +286981,7 @@ jur_SequenceSet$IntHash, 0, jl_Object, [], 0, 0, 0, 0, 0, ju_Map$Entry, "Map$Entry", 5, jl_Object, [], 3, 3, [ju_Map,0,0], 0, 0, ju_MapEntry, 0, jl_Object, [ju_Map$Entry, jl_Cloneable], 0, 0, 0, 0, ["$equals", $rt_wrapFunction1(ju_MapEntry_equals), "$getKey", $rt_wrapFunction0(ju_MapEntry_getKey), "$getValue0", $rt_wrapFunction0(ju_MapEntry_getValue), "$hashCode", $rt_wrapFunction0(ju_MapEntry_hashCode), "$toString", $rt_wrapFunction0(ju_MapEntry_toString)], ju_Hashtable$Entry, 0, ju_MapEntry, [], 0, 0, 0, 0, 0, +oncifp_PipeLine, 0, jl_Object, [oncifp_Transformer], 0, 3, 0, 0, ["$postConditions", $rt_wrapFunction0(oncifp_PipeLine_postConditions), "$transform", $rt_wrapFunction2(oncifp_PipeLine_transform), "$name", $rt_wrapFunction0(oncifp_PipeLine_name)], onciap_ExpressionStringifier, 0, jl_Object, [], 3, 3, 0, 0, 0, onciap_DefaultExpressionStringifier, 0, jl_Object, [onciap_ExpressionStringifier], 0, 3, 0, 0, 0, onciap_ExpressionStringifier$Extension$, 0, jl_Object, [], 0, 3, 0, onciap_ExpressionStringifier$Extension$_$callClinit, 0, @@ -359335,23 +286995,28 @@ $rt_wrapFunction1(sci_ArraySeq_flatMap), "$collect", $rt_wrapFunction1(sci_Array "$scala$collection$immutable$IndexedSeq$$super$sameElements", $rt_wrapFunction1(sci_ArraySeq_scala$collection$immutable$IndexedSeq$$super$sameElements), "$toIndexedSeq", $rt_wrapFunction0(sci_ArraySeq_toIndexedSeq), "$canEqual", $rt_wrapFunction1(sci_ArraySeq_canEqual), "$sameElements", $rt_wrapFunction1(sci_ArraySeq_sameElements), "$stringPrefix", $rt_wrapFunction0(sci_ArraySeq_stringPrefix), "$reverseIterator", $rt_wrapFunction0(sci_ArraySeq_reverseIterator), "$view0", $rt_wrapFunction0(sci_ArraySeq_view), "$reversed", $rt_wrapFunction0(sci_ArraySeq_reversed), "$head", $rt_wrapFunction0(sci_ArraySeq_head), "$headOption", $rt_wrapFunction0(sci_ArraySeq_headOption), "$last", $rt_wrapFunction0(sci_ArraySeq_last), "$lengthCompare", $rt_wrapFunction1(sci_ArraySeq_lengthCompare), "$knownSize", $rt_wrapFunction0(sci_ArraySeq_knownSize), "$prepended1", $rt_wrapFunction1(sci_ArraySeq_prepended), "$appended0", $rt_wrapFunction1(sci_ArraySeq_appended), "$foldLeft", $rt_wrapFunction2(sci_ArraySeq_foldLeft), "$className", $rt_wrapFunction0(sci_ArraySeq_className), "$copyToArray", $rt_wrapFunction3(sci_ArraySeq_copyToArray), "$applyPreferredMaxLength", $rt_wrapFunction0(sci_ArraySeq_applyPreferredMaxLength), "$sorted0", $rt_wrapFunction1(sci_ArraySeq_sorted), "$view1", $rt_wrapFunction0(sci_ArraySeq_view0), "$empty0", $rt_wrapFunction0(sci_ArraySeq_empty0), "$fromSpecific", $rt_wrapFunction1(sci_ArraySeq_fromSpecific0), "$sorted", $rt_wrapFunction1(sci_ArraySeq_sorted0), "$reverse1", $rt_wrapFunction0(sci_ArraySeq_reverse0), "$tail", -$rt_wrapFunction0(sci_ArraySeq_tail0), "$dropRight", $rt_wrapFunction1(sci_ArraySeq_dropRight0), "$drop", $rt_wrapFunction1(sci_ArraySeq_drop0), "$zip1", $rt_wrapFunction1(sci_ArraySeq_zip0), "$appendedAll", $rt_wrapFunction1(sci_ArraySeq_appendedAll0), "$appended", $rt_wrapFunction1(sci_ArraySeq_appended0), "$prepended", $rt_wrapFunction1(sci_ArraySeq_prepended0), "$map", $rt_wrapFunction1(sci_ArraySeq_map0), "$iterableFactory", $rt_wrapFunction0(sci_ArraySeq_iterableFactory)], -sci_ArraySeq$ofRef, "ArraySeq$ofRef", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofRef_elemTag), "$length", $rt_wrapFunction0(sci_ArraySeq$ofRef_length), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofRef_apply), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofRef_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofRef_equals), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofRef_iterator), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofRef_sorted1), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofRef_sorted0), +$rt_wrapFunction0(sci_ArraySeq_tail0), "$dropRight0", $rt_wrapFunction1(sci_ArraySeq_dropRight0), "$drop", $rt_wrapFunction1(sci_ArraySeq_drop0), "$zip1", $rt_wrapFunction1(sci_ArraySeq_zip0), "$appendedAll", $rt_wrapFunction1(sci_ArraySeq_appendedAll0), "$appended", $rt_wrapFunction1(sci_ArraySeq_appended0), "$prepended", $rt_wrapFunction1(sci_ArraySeq_prepended0), "$map", $rt_wrapFunction1(sci_ArraySeq_map0), "$iterableFactory", $rt_wrapFunction0(sci_ArraySeq_iterableFactory)], +sci_ArraySeq$ofRef, "ArraySeq$ofRef", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofRef_elemTag), "$length", $rt_wrapFunction0(sci_ArraySeq$ofRef_length), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofRef_apply), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofRef_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofRef_equals), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofRef_iterator), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofRef_sorted1), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofRef_sorted0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofRef_apply0), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofRef_unsafeArray)], sc_EvidenceIterableFactory, 0, jl_Object, [ji_Serializable], 3, 3, 0, 0, 0, sc_ClassTagIterableFactory, 0, jl_Object, [sc_EvidenceIterableFactory], 3, 3, 0, 0, 0, sc_ClassTagSeqFactory, 0, jl_Object, [sc_ClassTagIterableFactory], 3, 3, 0, 0, 0, sc_StrictOptimizedClassTagSeqFactory, 0, jl_Object, [sc_ClassTagSeqFactory], 3, 3, 0, 0, 0, -sci_ArraySeq$, 0, jl_Object, [sc_StrictOptimizedClassTagSeqFactory], 4, 3, 0, 0, ["$newBuilder1", $rt_wrapFunction1(sci_ArraySeq$_newBuilder0), "$from9", $rt_wrapFunction2(sci_ArraySeq$_from0), "$empty6", $rt_wrapFunction1(sci_ArraySeq$_empty0)], -onciu_StepSequencer$AccumulatedSteps, "StepSequencer$AccumulatedSteps", 54, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_StepSequencer$AccumulatedSteps_productPrefix), "$productArity", $rt_wrapFunction0(onciu_StepSequencer$AccumulatedSteps_productArity), "$productElement", $rt_wrapFunction1(onciu_StepSequencer$AccumulatedSteps_productElement), "$productIterator", $rt_wrapFunction0(onciu_StepSequencer$AccumulatedSteps_productIterator), "$toString", $rt_wrapFunction0(onciu_StepSequencer$AccumulatedSteps_toString)], +sci_ArraySeq$, 0, jl_Object, [sc_StrictOptimizedClassTagSeqFactory], 4, 3, 0, 0, ["$newBuilder1", $rt_wrapFunction1(sci_ArraySeq$_newBuilder0), "$from9", $rt_wrapFunction2(sci_ArraySeq$_from0), "$empty7", $rt_wrapFunction1(sci_ArraySeq$_empty0)], +onciu_StepSequencer$AccumulatedSteps, "StepSequencer$AccumulatedSteps", 52, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_StepSequencer$AccumulatedSteps_productPrefix), "$productArity", $rt_wrapFunction0(onciu_StepSequencer$AccumulatedSteps_productArity), "$productElement", $rt_wrapFunction1(onciu_StepSequencer$AccumulatedSteps_productElement), "$productIterator", $rt_wrapFunction0(onciu_StepSequencer$AccumulatedSteps_productIterator), "$toString", $rt_wrapFunction0(onciu_StepSequencer$AccumulatedSteps_toString)], +s_Function2, 0, jl_Object, [], 3, 3, 0, 0, ["$toString", $rt_wrapFunction0(s_Function2_toString)], +oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0, "PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0", 65, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_PatternExpressionInNonExistenceCheck$$patternExpressionInNonExistenceCheck$lambda$_2_0_apply)], +oncifp_SelfReferenceCheckWithinPatternPart$$check$lambda$_2_0, "SelfReferenceCheckWithinPatternPart$$check$lambda$_2_0", 65, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_SelfReferenceCheckWithinPatternPart$$check$lambda$_2_0_apply)], +oncifp_SelfReferenceCheckAcrossPatternParts$$check$lambda$_2_0, "SelfReferenceCheckAcrossPatternParts$$check$lambda$_2_0", 65, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_SelfReferenceCheckAcrossPatternParts$$check$lambda$_2_0_apply)], +oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0, "ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0", 65, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_ListCoercedToBooleanCheck$$listCoercedToBooleanCheck$lambda$_3_0_apply)], jur_AbstractCharClass$LazySpace, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazySpace_computeValue)], jur_AbstractCharClass$LazyDigit, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyDigit_computeValue)], jur_AbstractCharClass$LazyLower, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyLower_computeValue)], -jur_AbstractCharClass$LazyUpper, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyUpper_computeValue)], -jur_AbstractCharClass$LazyASCII, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyASCII_computeValue)], +jur_AbstractCharClass$LazyUpper, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyUpper_computeValue)]]); +$rt_metadata([jur_AbstractCharClass$LazyASCII, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyASCII_computeValue)], jur_AbstractCharClass$LazyAlpha, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyAlpha_computeValue)], -jur_AbstractCharClass$LazyAlnum, 0, jur_AbstractCharClass$LazyAlpha, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyAlnum_computeValue)]]); -$rt_metadata([jur_AbstractCharClass$LazyPunct, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyPunct_computeValue)], +jur_AbstractCharClass$LazyAlnum, 0, jur_AbstractCharClass$LazyAlpha, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyAlnum_computeValue)], +jur_AbstractCharClass$LazyPunct, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyPunct_computeValue)], jur_AbstractCharClass$LazyGraph, 0, jur_AbstractCharClass$LazyAlnum, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyGraph_computeValue)], jur_AbstractCharClass$LazyPrint, 0, jur_AbstractCharClass$LazyGraph, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyPrint_computeValue)], jur_AbstractCharClass$LazyBlank, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyBlank_computeValue)], @@ -359383,35 +287048,40 @@ jur_AbstractCharClass$LazyCategory, 0, jur_AbstractCharClass$LazyCharClass, [], jur_AbstractCharClass$LazyCategoryScope, 0, jur_AbstractCharClass$LazyCharClass, [], 0, 0, 0, 0, ["$computeValue0", $rt_wrapFunction0(jur_AbstractCharClass$LazyCategoryScope_computeValue)], jur_IntHash, 0, jl_Object, [], 0, 0, 0, 0, 0, onciap_ExpressionStringifier$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_ExpressionStringifier$$_clinit_$lambda$_0_0_apply)], -onciap_PatternStringifier$, 0, jl_Object, [], 4, 3, 0, onciap_PatternStringifier$_$callClinit, 0, -onciap_PathStepStringifier$, 0, jl_Object, [], 4, 3, 0, onciap_PathStepStringifier$_$callClinit, 0, +onciap_PatternStringifier$, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciap_PathStepStringifier$, 0, jl_Object, [], 4, 3, 0, 0, 0, onciap_Prettifier, 0, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciap_Prettifier$, 0, jl_Object, [ji_Serializable], 4, 3, 0, onciap_Prettifier$_$callClinit, 0, -onciu_topDown$, 0, jl_Object, [], 4, 3, 0, onciu_topDown$_$callClinit, 0, onciu_Rewriter$, 0, jl_Object, [], 4, 3, 0, onciu_Rewriter$_$callClinit, 0, +sr_AbstractPartialFunction, 0, jl_Object, [s_PartialFunction], 1, 3, 0, 0, ["$orElse0", $rt_wrapFunction1(sr_AbstractPartialFunction_orElse), "$lift0", $rt_wrapFunction0(sr_AbstractPartialFunction_lift), "$apply2", $rt_wrapFunction1(sr_AbstractPartialFunction_apply)], +oncirr_removeSyntaxTracking$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_removeSyntaxTracking$$anonfun$1_applyOrElse)], +onciu_bottomUp$, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciu_topDown$, 0, jl_Object, [], 4, 3, 0, 0, 0, oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1_applyOrElse)], oncirr_wrapOptionalCallProcedure$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_wrapOptionalCallProcedure$$anonfun$1_applyOrElse)], -onciu_bottomUp$, 0, jl_Object, [], 4, 3, 0, onciu_bottomUp$_$callClinit, 0, oncirr_expandCallWhere$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_expandCallWhere$$anonfun$1_applyOrElse)], oncirr_expandShowWhere$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_expandShowWhere$$anonfun$1_applyOrElse)], oncirr_rewriteShowQuery$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_rewriteShowQuery$$anonfun$1_applyOrElse)], -oncirr_mergeInPredicates$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1_applyOrElse)], -oncirr_timestampRewriter$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_timestampRewriter$$anonfun$1_applyOrElse)], +oncirr_mergeInPredicates$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1_applyOrElse)]]); +$rt_metadata([oncirr_timestampRewriter$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_timestampRewriter$$anonfun$1_applyOrElse)], oncirr_nullIfFunctionRewriter$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_nullIfFunctionRewriter$$anonfun$1_applyOrElse)], +oncirr_unwrapTopLevelBraces$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_unwrapTopLevelBraces$$anonfun$1_applyOrElse)], +oncirr_unwrapTopLevelBraces$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_unwrapTopLevelBraces$$anonfun$2_applyOrElse)], +oncirr_unwrapTopLevelBraces$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_unwrapTopLevelBraces$$anonfun$3_applyOrElse)], onciap_PatternStringifier, 0, jl_Object, [], 3, 3, 0, 0, 0, onciap_DefaultPatternStringifier, 0, jl_Object, [onciap_PatternStringifier], 0, 3, 0, 0, 0, -onciap_PathStepStringifier, 0, jl_Object, [], 3, 3, 0, 0, 0]); -$rt_metadata([onciap_DefaultPathStepStringifier, 0, jl_Object, [onciap_PathStepStringifier], 0, 3, 0, 0, 0, +onciap_PathStepStringifier, 0, jl_Object, [], 3, 3, 0, 0, 0, +onciap_DefaultPathStepStringifier, 0, jl_Object, [onciap_PathStepStringifier], 0, 3, 0, 0, 0, onciap_Prettifier$ClausePrettifier, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciap_Prettifier$EmptyExtension$, 0, jl_Object, [onciap_Prettifier$ClausePrettifier], 0, 3, 0, onciap_Prettifier$EmptyExtension$_$callClinit, 0, +onciap_Prettifier$EmptyExtension$, 0, jl_Object, [onciap_Prettifier$ClausePrettifier], 0, 3, 0, 0, 0, onciap_Prettifier$QueryPrettifier, 0, jl_Object, [], 3, 3, 0, 0, 0, onciap_Prettifier$IndentingQueryPrettifier, 0, jl_Object, [onciap_Prettifier$QueryPrettifier, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_Rewriter$$anonfun$lift$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciu_Rewriter$$anonfun$lift$1_applyOrElse)], -onciu_RewriterStopper$, 0, jl_Object, [], 4, 3, 0, onciu_RewriterStopper$_$callClinit, 0, +onciu_RewriterStopper$, 0, jl_Object, [], 4, 3, 0, 0, 0, onciu_CancellationChecker, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_CancellationChecker$NeverCancelled$, "CancellationChecker$NeverCancelled$", 54, jl_Object, [onciu_CancellationChecker], 0, 3, 0, 0, 0, -onciu_topDown$TopDownRewriter, "topDown$TopDownRewriter", 54, jl_Object, [s_Function1], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_topDown$TopDownRewriter_toString), "$apply2", $rt_wrapFunction1(onciu_topDown$TopDownRewriter_apply)], -onciu_bottomUp$BottomUpRewriter, "bottomUp$BottomUpRewriter", 54, jl_Object, [s_Function1], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_bottomUp$BottomUpRewriter_toString), "$apply2", $rt_wrapFunction1(onciu_bottomUp$BottomUpRewriter_apply)], +onciu_CancellationChecker$NeverCancelled$, "CancellationChecker$NeverCancelled$", 52, jl_Object, [onciu_CancellationChecker], 0, 3, 0, 0, 0, +onciu_bottomUp$BottomUpRewriter, "bottomUp$BottomUpRewriter", 52, jl_Object, [s_Function1], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_bottomUp$BottomUpRewriter_toString), "$apply2", $rt_wrapFunction1(onciu_bottomUp$BottomUpRewriter_apply)], +onciu_topDown$TopDownRewriter, "topDown$TopDownRewriter", 52, jl_Object, [s_Function1], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_topDown$TopDownRewriter_toString), "$apply2", $rt_wrapFunction1(onciu_topDown$TopDownRewriter_apply)], sc_ClassTagIterableFactory$AnyIterableDelegate, 0, jl_Object, [sc_IterableFactory], 0, 3, 0, 0, ["$empty0", $rt_wrapFunction0(sc_ClassTagIterableFactory$AnyIterableDelegate_empty), "$from0", $rt_wrapFunction1(sc_ClassTagIterableFactory$AnyIterableDelegate_from), "$newBuilder", $rt_wrapFunction0(sc_ClassTagIterableFactory$AnyIterableDelegate_newBuilder)], sc_SeqFactory, 0, jl_Object, [sc_IterableFactory], 3, 3, 0, 0, 0, sc_ClassTagSeqFactory$AnySeqDelegate, 0, sc_ClassTagIterableFactory$AnyIterableDelegate, [sc_SeqFactory], 0, 3, 0, 0, 0, @@ -359421,18 +287091,18 @@ otciu_CharMapping, 0, jl_Object, [], 0, 3, 0, 0, 0, onciap_Prettifier$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$3_applyOrElse)], sr_AbstractFunction1, 0, jl_Object, [s_Function1], 1, 3, 0, 0, ["$toString", $rt_wrapFunction0(sr_AbstractFunction1_toString)], onciap_Prettifier$IndentingQueryPrettifier$, 0, sr_AbstractFunction1, [ji_Serializable], 0, 3, 0, 0, 0, -s_PartialFunction$, 0, jl_Object, [], 4, 3, 0, 0, 0, -otciu_UnicodeHelper$Range, "UnicodeHelper$Range", 78, jl_Object, [], 0, 3, [otciu_UnicodeHelper,0,"Range"], 0, 0, +s_PartialFunction$, 0, jl_Object, [], 4, 3, 0, s_PartialFunction$_$callClinit, 0, +otciu_UnicodeHelper$Range, "UnicodeHelper$Range", 76, jl_Object, [], 0, 3, [otciu_UnicodeHelper,0,"Range"], 0, 0, otci_CharFlow, 0, jl_Object, [], 0, 3, 0, 0, 0, otci_Base46, 0, jl_Object, [], 4, 3, 0, 0, 0, ju_Arrays, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewriterStopper, 0, jl_Object, [], 3, 3, 0, 0, 0, onciu_RewriterStopper$$_clinit_$lambda$_0_0, 0, jl_Object, [onciu_RewriterStopper], 0, 3, 0, 0, ["$shouldStop", $rt_wrapFunction1(onciu_RewriterStopper$$_clinit_$lambda$_0_0_shouldStop)], -s_PartialFunction$$_clinit_$lambda$_0_0, "PartialFunction$$$lambda$_0_0", 17, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(s_PartialFunction$$_clinit_$lambda$_0_0_apply)], +s_PartialFunction$$_clinit_$lambda$_0_0, "PartialFunction$$$lambda$_0_0", 15, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(s_PartialFunction$$_clinit_$lambda$_0_0_apply)], s_PartialFunction$$_clinit_$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -s_PartialFunction$$anon$1, 0, jl_Object, [s_PartialFunction, ji_Serializable], 4, 3, 0, 0, ["$orElse", $rt_wrapFunction1(s_PartialFunction$$anon$1_orElse)], +s_PartialFunction$$anon$1, 0, jl_Object, [s_PartialFunction, ji_Serializable], 4, 3, 0, 0, ["$orElse0", $rt_wrapFunction1(s_PartialFunction$$anon$1_orElse)], s_PartialFunction$$anon$1$_init_$lambda$_41_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -jl_StringIndexOutOfBoundsException, "StringIndexOutOfBoundsException", 14, jl_IndexOutOfBoundsException, [], 0, 3, 0, 0, 0, +jl_StringIndexOutOfBoundsException, "StringIndexOutOfBoundsException", 12, jl_IndexOutOfBoundsException, [], 0, 3, 0, 0, 0, scm_SeqOps, 0, jl_Object, [sc_SeqOps, scm_Cloneable], 3, 3, 0, 0, 0, scm_Seq, 0, jl_Object, [scm_Iterable, sc_Seq, scm_SeqOps], 3, 3, 0, 0, 0, scm_AbstractSeq, 0, sc_AbstractSeq, [scm_Seq], 1, 3, 0, 0, 0, @@ -359441,21 +287111,19 @@ scm_IndexedSeq, 0, jl_Object, [scm_Seq, sc_IndexedSeq, scm_IndexedSeqOps], 3, 3, scm_ArraySeq, 0, scm_AbstractSeq, [scm_IndexedSeq, sc_StrictOptimizedSeqOps, ji_Serializable], 1, 3, 0, 0, ["$distinctBy", $rt_wrapFunction1(scm_ArraySeq_distinctBy), "$prepended", $rt_wrapFunction1(scm_ArraySeq_prepended), "$appended", $rt_wrapFunction1(scm_ArraySeq_appended), "$appendedAll", $rt_wrapFunction1(scm_ArraySeq_appendedAll), "$map", $rt_wrapFunction1(scm_ArraySeq_map), "$flatMap", $rt_wrapFunction1(scm_ArraySeq_flatMap), "$flatten", $rt_wrapFunction1(scm_ArraySeq_flatten), "$filter1", $rt_wrapFunction1(scm_ArraySeq_filter), "$filterNot0", $rt_wrapFunction1(scm_ArraySeq_filterNot), "$filterImpl", $rt_wrapFunction2(scm_ArraySeq_filterImpl), "$stringPrefix", $rt_wrapFunction0(scm_ArraySeq_stringPrefix), "$reverseIterator", $rt_wrapFunction0(scm_ArraySeq_reverseIterator), "$view0", $rt_wrapFunction0(scm_ArraySeq_view), "$reversed", $rt_wrapFunction0(scm_ArraySeq_reversed), "$drop", $rt_wrapFunction1(scm_ArraySeq_drop), "$head", $rt_wrapFunction0(scm_ArraySeq_head), "$headOption", $rt_wrapFunction0(scm_ArraySeq_headOption), "$lengthCompare", $rt_wrapFunction1(scm_ArraySeq_lengthCompare), "$knownSize", $rt_wrapFunction0(scm_ArraySeq_knownSize), "$newSpecificBuilder", $rt_wrapFunction0(scm_ArraySeq_newSpecificBuilder), "$className", $rt_wrapFunction0(scm_ArraySeq_className), "$copyToArray", $rt_wrapFunction3(scm_ArraySeq_copyToArray), "$sorted", $rt_wrapFunction1(scm_ArraySeq_sorted0), "$fromSpecific", $rt_wrapFunction1(scm_ArraySeq_fromSpecific1), "$fromSpecific0", $rt_wrapFunction1(scm_ArraySeq_fromSpecific0), "$iterableFactory", $rt_wrapFunction0(scm_ArraySeq_iterableFactory)], -scm_ArraySeq$ofRef, "ArraySeq$ofRef", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofRef_elemTag), "$length", $rt_wrapFunction0(scm_ArraySeq$ofRef_length), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofRef_apply), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofRef_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofRef_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofRef_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofRef_apply0), "$array", $rt_wrapFunction0(scm_ArraySeq$ofRef_array)], -scm_ArraySeq$, 0, jl_Object, [sc_StrictOptimizedClassTagSeqFactory], 4, 3, 0, 0, ["$newBuilder1", $rt_wrapFunction1(scm_ArraySeq$_newBuilder0), "$from9", $rt_wrapFunction2(scm_ArraySeq$_from), "$empty6", $rt_wrapFunction1(scm_ArraySeq$_empty)], +scm_ArraySeq$ofRef, "ArraySeq$ofRef", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofRef_elemTag), "$length", $rt_wrapFunction0(scm_ArraySeq$ofRef_length), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofRef_apply), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofRef_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofRef_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofRef_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofRef_apply0), "$array", $rt_wrapFunction0(scm_ArraySeq$ofRef_array)], +scm_ArraySeq$, 0, jl_Object, [sc_StrictOptimizedClassTagSeqFactory], 4, 3, 0, 0, ["$newBuilder1", $rt_wrapFunction1(scm_ArraySeq$_newBuilder0), "$from9", $rt_wrapFunction2(scm_ArraySeq$_from), "$empty7", $rt_wrapFunction1(scm_ArraySeq$_empty)], sr_ClassTag$GenericClassTag, 0, jl_Object, [sr_ClassTag], 0, 3, 0, 0, ["$unapply8", $rt_wrapFunction1(sr_ClassTag$GenericClassTag_unapply), "$equals", $rt_wrapFunction1(sr_ClassTag$GenericClassTag_equals), "$hashCode", $rt_wrapFunction0(sr_ClassTag$GenericClassTag_hashCode), "$runtimeClass", $rt_wrapFunction0(sr_ClassTag$GenericClassTag_runtimeClass), "$newArray", $rt_wrapFunction1(sr_ClassTag$GenericClassTag_newArray)], -onc_GraphDatabaseInternalSettings$ExtractLiteral, "GraphDatabaseInternalSettings$ExtractLiteral", 30, jl_Enum, [], 12, 3, [onc_GraphDatabaseInternalSettings,0,"ExtractLiteral"], 0, 0, -onciap_ExpressionStringifier$Extension, 0, jl_Object, [], 3, 3, 0, 0, 0, +onc_GraphDatabaseInternalSettings$ExtractLiteral, "GraphDatabaseInternalSettings$ExtractLiteral", 29, jl_Enum, [], 12, 3, [onc_GraphDatabaseInternalSettings,0,"ExtractLiteral"], 0, 0]); +$rt_metadata([onciap_ExpressionStringifier$Extension, 0, jl_Object, [], 3, 3, 0, 0, 0, onciap_ExpressionStringifier$Extension$$anon$1, 0, jl_Object, [onciap_ExpressionStringifier$Extension], 4, 3, 0, 0, 0, -cnsa_EnrichedContext$errors$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_EnrichedContext$errors$lambda$_9_0_apply)], -cnsa_EnrichedContext$notifications$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_EnrichedContext$notifications$lambda$_10_0_apply)], -oncifp_SelfReferenceCheckWithinPatternPart$check$lambda$_7_0, "SelfReferenceCheckWithinPatternPart$check$lambda$_7_0", 67, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_SelfReferenceCheckWithinPatternPart$check$lambda$_7_0_apply)], -oncifp_SelfReferenceCheckAcrossPatternParts$check$lambda$_7_0, "SelfReferenceCheckAcrossPatternParts$check$lambda$_7_0", 67, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_SelfReferenceCheckAcrossPatternParts$check$lambda$_7_0_apply)], +cnsa_EnrichedContext$errors$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_EnrichedContext$errors$lambda$_10_0_apply)], +cnsa_EnrichedContext$notifications$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_EnrichedContext$notifications$lambda$_11_0_apply)], jur_AbstractCharClass$1, "AbstractCharClass$1", 6, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_AbstractCharClass$1_contains)], -jur_AbstractCharClass$2, "AbstractCharClass$2", 6, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_AbstractCharClass$2_contains)]]); -$rt_metadata([jl_ClassLoader, 0, jl_Object, [], 1, 3, 0, jl_ClassLoader_$callClinit, 0, +jur_AbstractCharClass$2, "AbstractCharClass$2", 6, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_AbstractCharClass$2_contains)], +jl_ClassLoader, 0, jl_Object, [], 1, 3, 0, jl_ClassLoader_$callClinit, 0, onciu_StepSequencer$RepeatedSteps, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_StepSequencer$RepeatedSteps$Permitted$, "StepSequencer$RepeatedSteps$Permitted$", 54, jl_Object, [onciu_StepSequencer$RepeatedSteps], 0, 3, 0, 0, 0, +onciu_StepSequencer$RepeatedSteps$Permitted$, "StepSequencer$RepeatedSteps$Permitted$", 52, jl_Object, [onciu_StepSequencer$RepeatedSteps], 0, 3, 0, 0, 0, onciu_StepSequencer$orderSteps$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, onciu_StepSequencer$orderSteps$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$orderSteps$lambda$_3_1_apply)], onciu_StepSequencer$orderSteps$lambda$_3_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$orderSteps$lambda$_3_2_apply)], @@ -359468,7 +287136,7 @@ onciu_StepSequencer$orderSteps$lambda$_3_7, 0, jl_Object, [s_Function1, ji_Seria onciu_StepSequencer$orderSteps$lambda$_3_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$orderSteps$lambda$_3_8_apply)], onciu_StepSequencer$orderSteps$lambda$_3_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$orderSteps$lambda$_3_9_apply)], onciu_StepSequencer$orderSteps$lambda$_3_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$orderSteps$lambda$_3_10_apply)], -onciu_StepSequencer$MutableDirectedGraph, "StepSequencer$MutableDirectedGraph", 54, jl_Object, [], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_StepSequencer$MutableDirectedGraph_toString)], +onciu_StepSequencer$MutableDirectedGraph, "StepSequencer$MutableDirectedGraph", 52, jl_Object, [], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_StepSequencer$MutableDirectedGraph_toString)], onciu_StepSequencer$orderSteps$lambda$_3_11, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$orderSteps$lambda$_3_11_apply)], onciu_StepSequencer$orderSteps$lambda$_3_12, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$orderSteps$lambda$_3_12_apply)], onciu_StepSequencer$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, @@ -359479,7 +287147,7 @@ onciu_StepSequencer$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable] sc_MapFactoryDefaults, 0, jl_Object, [sc_MapOps], 3, 3, 0, 0, 0, sc_Map, 0, jl_Object, [sc_Iterable, sc_MapFactoryDefaults, s_Equals], 3, 3, 0, 0, 0, sci_MapOps, 0, jl_Object, [sc_MapOps], 3, 3, 0, 0, 0, -sci_Map, "Map", 22, jl_Object, [sci_Iterable, sc_Map, sci_MapOps], 3, 3, [0,0,0], 0, 0, +sci_Map, "Map", 20, jl_Object, [sci_Iterable, sc_Map, sci_MapOps], 3, 3, [0,0,0], 0, 0, jur_CharClass$18, "CharClass$18", 6, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$18_contains), "$toString", $rt_wrapFunction0(jur_CharClass$18_toString)], jur_CharClass$1, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$1_contains)], jur_CharClass$3, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$3_contains)], @@ -359496,35 +287164,35 @@ jur_CharClass$13, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_w jur_CharClass$12, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$12_contains)], jur_CharClass$15, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$15_contains)], jur_CharClass$14, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$14_contains)], -jur_CharClass$17, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$17_contains)], -jur_CharClass$16, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$16_contains)], +jur_CharClass$17, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$17_contains)]]); +$rt_metadata([jur_CharClass$16, 0, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_CharClass$16_contains)], sc_SortedOps, 0, jl_Object, [], 3, 3, 0, 0, 0, sc_SortedSetOps, 0, jl_Object, [sc_SetOps, sc_SortedOps], 3, 3, 0, 0, 0, sc_SortedSetFactoryDefaults, 0, jl_Object, [sc_SortedSetOps], 3, 3, 0, 0, 0, sc_SortedSet, 0, jl_Object, [sc_Set, sc_SortedSetFactoryDefaults], 3, 3, 0, 0, 0, -sci_SortedSetOps, 0, jl_Object, [sci_SetOps, sc_SortedSetOps], 3, 3, 0, 0, 0]); -$rt_metadata([sci_SortedSet, 0, jl_Object, [sci_Set, sc_SortedSet, sci_SortedSetOps], 3, 3, 0, 0, 0, +sci_SortedSetOps, 0, jl_Object, [sci_SetOps, sc_SortedSetOps], 3, 3, 0, 0, 0, +sci_SortedSet, 0, jl_Object, [sci_Set, sc_SortedSet, sci_SortedSetOps], 3, 3, 0, 0, 0, sc_AbstractMap, 0, sc_AbstractIterable, [sc_Map], 1, 3, 0, 0, ["$equals", $rt_wrapFunction1(sc_AbstractMap_equals), "$hashCode", $rt_wrapFunction0(sc_AbstractMap_hashCode), "$stringPrefix", $rt_wrapFunction0(sc_AbstractMap_stringPrefix), "$toString", $rt_wrapFunction0(sc_AbstractMap_toString), "$fromSpecific0", $rt_wrapFunction1(sc_AbstractMap_fromSpecific), "$newSpecificBuilder", $rt_wrapFunction0(sc_AbstractMap_newSpecificBuilder), "$getOrElse1", $rt_wrapFunction2(sc_AbstractMap_getOrElse), "$apply2", $rt_wrapFunction1(sc_AbstractMap_apply), -"$keysIterator", $rt_wrapFunction0(sc_AbstractMap_keysIterator), "$valuesIterator", $rt_wrapFunction0(sc_AbstractMap_valuesIterator), "$foreachEntry", $rt_wrapFunction1(sc_AbstractMap_foreachEntry), "$default0", $rt_wrapFunction1(sc_AbstractMap_default), "$contains", $rt_wrapFunction1(sc_AbstractMap_contains), "$map10", $rt_wrapFunction1(sc_AbstractMap_map), "$collect0", $rt_wrapFunction1(sc_AbstractMap_collect), "$concat2", $rt_wrapFunction1(sc_AbstractMap_concat), "$addString", $rt_wrapFunction4(sc_AbstractMap_addString), +"$keysIterator", $rt_wrapFunction0(sc_AbstractMap_keysIterator), "$valuesIterator", $rt_wrapFunction0(sc_AbstractMap_valuesIterator), "$foreachEntry", $rt_wrapFunction1(sc_AbstractMap_foreachEntry), "$default0", $rt_wrapFunction1(sc_AbstractMap_default), "$contains", $rt_wrapFunction1(sc_AbstractMap_contains), "$map12", $rt_wrapFunction1(sc_AbstractMap_map), "$collect0", $rt_wrapFunction1(sc_AbstractMap_collect), "$concat2", $rt_wrapFunction1(sc_AbstractMap_concat), "$addString", $rt_wrapFunction4(sc_AbstractMap_addString), "$fromSpecific", $rt_wrapFunction1(sc_AbstractMap_fromSpecific0)], sci_AbstractMap, 0, sc_AbstractMap, [sci_Map], 1, 3, 0, 0, ["$mapFactory", $rt_wrapFunction0(sci_AbstractMap_mapFactory), "$toMap", $rt_wrapFunction1(sci_AbstractMap_toMap), "$removedAll0", $rt_wrapFunction1(sci_AbstractMap_removedAll), "$keySet0", $rt_wrapFunction0(sci_AbstractMap_keySet0), "$iterableFactory", $rt_wrapFunction0(sci_AbstractMap_iterableFactory), "$keySet", $rt_wrapFunction0(sci_AbstractMap_keySet)], -sci_Map$EmptyMap$, "Map$EmptyMap$", 22, sci_AbstractMap, [ji_Serializable], 0, 3, 0, sci_Map$EmptyMap$_$callClinit, ["$size", $rt_wrapFunction0(sci_Map$EmptyMap$_size), "$knownSize", $rt_wrapFunction0(sci_Map$EmptyMap$_knownSize), "$isEmpty", $rt_wrapFunction0(sci_Map$EmptyMap$_isEmpty), "$contains", $rt_wrapFunction1(sci_Map$EmptyMap$_contains), "$get2", $rt_wrapFunction1(sci_Map$EmptyMap$_get), "$getOrElse1", $rt_wrapFunction2(sci_Map$EmptyMap$_getOrElse), "$iterator0", $rt_wrapFunction0(sci_Map$EmptyMap$_iterator), +sci_Map$EmptyMap$, "Map$EmptyMap$", 20, sci_AbstractMap, [ji_Serializable], 0, 3, 0, sci_Map$EmptyMap$_$callClinit, ["$size", $rt_wrapFunction0(sci_Map$EmptyMap$_size), "$knownSize", $rt_wrapFunction0(sci_Map$EmptyMap$_knownSize), "$isEmpty", $rt_wrapFunction0(sci_Map$EmptyMap$_isEmpty), "$contains", $rt_wrapFunction1(sci_Map$EmptyMap$_contains), "$get2", $rt_wrapFunction1(sci_Map$EmptyMap$_get), "$getOrElse1", $rt_wrapFunction2(sci_Map$EmptyMap$_getOrElse), "$iterator0", $rt_wrapFunction0(sci_Map$EmptyMap$_iterator), "$keysIterator", $rt_wrapFunction0(sci_Map$EmptyMap$_keysIterator), "$valuesIterator", $rt_wrapFunction0(sci_Map$EmptyMap$_valuesIterator), "$concat2", $rt_wrapFunction1(sci_Map$EmptyMap$_concat), "$removed", $rt_wrapFunction1(sci_Map$EmptyMap$_removed), "$updated0", $rt_wrapFunction2(sci_Map$EmptyMap$_updated), "$apply2", $rt_wrapFunction1(sci_Map$EmptyMap$_apply)], sc_View, 0, jl_Object, [sc_Iterable, ji_Serializable], 3, 3, 0, 0, 0, sc_MapView, 0, jl_Object, [sc_MapOps, sc_View], 3, 3, 0, 0, 0, sc_MapFactory$Delegate, 0, jl_Object, [sc_MapFactory], 0, 3, 0, 0, 0, scm_Map$, 0, sc_MapFactory$Delegate, [], 4, 3, 0, scm_Map$_$callClinit, 0, scm_MapOps, 0, jl_Object, [sc_MapOps, scm_Cloneable, scm_Builder, scm_Shrinkable], 3, 3, 0, 0, 0, -scm_Map, "Map", 23, jl_Object, [scm_Iterable, sc_Map, scm_MapOps], 3, 3, 0, 0, 0, +scm_Map, "Map", 21, jl_Object, [scm_Iterable, sc_Map, scm_MapOps], 3, 3, 0, 0, 0, scm_Buffer, 0, jl_Object, [scm_Seq, scm_Growable, scm_Shrinkable], 3, 3, 0, 0, 0, scm_AbstractBuffer, 0, scm_AbstractSeq, [scm_Buffer], 1, 3, 0, 0, 0, scm_IndexedBuffer, 0, jl_Object, [scm_IndexedSeq, scm_Buffer], 3, 3, 0, 0, 0, -scm_ArrayBuffer, "ArrayBuffer", 23, scm_AbstractBuffer, [scm_IndexedBuffer, sc_StrictOptimizedSeqOps, scg_DefaultSerializable], 0, 3, 0, 0, ["$distinctBy", $rt_wrapFunction1(scm_ArrayBuffer_distinctBy), "$prepended", $rt_wrapFunction1(scm_ArrayBuffer_prepended), "$appended", $rt_wrapFunction1(scm_ArrayBuffer_appended), "$appendedAll", $rt_wrapFunction1(scm_ArrayBuffer_appendedAll), "$map", $rt_wrapFunction1(scm_ArrayBuffer_map), "$flatMap", $rt_wrapFunction1(scm_ArrayBuffer_flatMap), "$flatten", $rt_wrapFunction1(scm_ArrayBuffer_flatten), +scm_ArrayBuffer, "ArrayBuffer", 21, scm_AbstractBuffer, [scm_IndexedBuffer, sc_StrictOptimizedSeqOps, scg_DefaultSerializable], 0, 3, 0, 0, ["$distinctBy", $rt_wrapFunction1(scm_ArrayBuffer_distinctBy), "$prepended", $rt_wrapFunction1(scm_ArrayBuffer_prepended), "$appended", $rt_wrapFunction1(scm_ArrayBuffer_appended), "$appendedAll", $rt_wrapFunction1(scm_ArrayBuffer_appendedAll), "$map", $rt_wrapFunction1(scm_ArrayBuffer_map), "$flatMap", $rt_wrapFunction1(scm_ArrayBuffer_flatMap), "$flatten", $rt_wrapFunction1(scm_ArrayBuffer_flatten), "$filter1", $rt_wrapFunction1(scm_ArrayBuffer_filter), "$filterNot0", $rt_wrapFunction1(scm_ArrayBuffer_filterNot), "$filterImpl", $rt_wrapFunction2(scm_ArrayBuffer_filterImpl), "$iterator0", $rt_wrapFunction0(scm_ArrayBuffer_iterator), "$reverseIterator", $rt_wrapFunction0(scm_ArrayBuffer_reverseIterator), "$reversed", $rt_wrapFunction0(scm_ArrayBuffer_reversed), "$drop", $rt_wrapFunction1(scm_ArrayBuffer_drop), "$head", $rt_wrapFunction0(scm_ArrayBuffer_head), "$headOption", $rt_wrapFunction0(scm_ArrayBuffer_headOption), "$lengthCompare", $rt_wrapFunction1(scm_ArrayBuffer_lengthCompare), "$knownSize", $rt_wrapFunction0(scm_ArrayBuffer_knownSize), "$apply1", $rt_wrapFunction1(scm_ArrayBuffer_apply), "$length", $rt_wrapFunction0(scm_ArrayBuffer_length), "$clear", $rt_wrapFunction0(scm_ArrayBuffer_clear), "$stringPrefix", $rt_wrapFunction0(scm_ArrayBuffer_stringPrefix), "$copyToArray", $rt_wrapFunction3(scm_ArrayBuffer_copyToArray), "$foldLeft", $rt_wrapFunction2(scm_ArrayBuffer_foldLeft), "$reduceLeft", $rt_wrapFunction1(scm_ArrayBuffer_reduceLeft), "$addAll0", $rt_wrapFunction1(scm_ArrayBuffer_addAll), "$addOne", $rt_wrapFunction1(scm_ArrayBuffer_addOne0), "$iterableFactory", $rt_wrapFunction0(scm_ArrayBuffer_iterableFactory), "$view0", $rt_wrapFunction0(scm_ArrayBuffer_view), "$apply2", $rt_wrapFunction1(scm_ArrayBuffer_apply0)], onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_0_apply)], -sc_IterableFactory$, 0, jl_Object, [ji_Serializable], 4, 3, 0, sc_IterableFactory$_$callClinit, 0, +sc_IterableFactory$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, sc_IterableFactory$Delegate, 0, jl_Object, [sc_IterableFactory], 0, 3, 0, 0, ["$empty0", $rt_wrapFunction0(sc_IterableFactory$Delegate_empty), "$from0", $rt_wrapFunction1(sc_IterableFactory$Delegate_from), "$newBuilder", $rt_wrapFunction0(sc_IterableFactory$Delegate_newBuilder)], scm_Set$, 0, sc_IterableFactory$Delegate, [], 4, 3, 0, scm_Set$_$callClinit, 0, onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$topologicalSort$lambda$_3_1_apply)], @@ -359548,36 +287216,36 @@ onciu_AssertionRunner, 0, jl_Object, [], 0, 3, 0, onciu_AssertionRunner_$callCli onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$org$neo4j$cypher$internal$util$StepSequencer$$sort$lambda$_2_5_apply)], si_AnsiColor, 0, jl_Object, [], 3, 3, 0, 0, 0, s_Console$, 0, jl_Object, [si_AnsiColor], 4, 3, 0, s_Console$_$callClinit, 0, -sci_HashSetBuilder, "HashSetBuilder", 22, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_HashSetBuilder_sizeHint0), "$sizeHint0", $rt_wrapFunction2(sci_HashSetBuilder_sizeHint), "$addAll0", $rt_wrapFunction1(sci_HashSetBuilder_addAll0), "$addOne", $rt_wrapFunction1(sci_HashSetBuilder_addOne0), "$result", $rt_wrapFunction0(sci_HashSetBuilder_result0)], +sci_HashSetBuilder, "HashSetBuilder", 20, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_HashSetBuilder_sizeHint0), "$sizeHint0", $rt_wrapFunction2(sci_HashSetBuilder_sizeHint), "$addAll0", $rt_wrapFunction1(sci_HashSetBuilder_addAll0), "$addOne", $rt_wrapFunction1(sci_HashSetBuilder_addOne0), "$result", $rt_wrapFunction0(sci_HashSetBuilder_result0)], s_PartialFunction$OrElse, 0, sr_AbstractPartialFunction, [ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(s_PartialFunction$OrElse_apply), "$applyOrElse", $rt_wrapFunction2(s_PartialFunction$OrElse_applyOrElse)], -oncifp_PipeLine, 0, jl_Object, [oncifp_Transformer], 0, 3, 0, 0, ["$postConditions", $rt_wrapFunction0(oncifp_PipeLine_postConditions), "$transform", $rt_wrapFunction2(oncifp_PipeLine_transform), "$name", $rt_wrapFunction0(oncifp_PipeLine_name)], +s_Function1$andThen$lambda$_5_0, "Function1$andThen$lambda$_5_0", 15, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(s_Function1$andThen$lambda$_5_0_apply)], jl_SystemClassLoader, 0, jl_ClassLoader, [], 0, 0, 0, 0, 0, -sc_Factory, 0, jl_Object, [], 3, 3, 0, 0, 0, -sc_IterableFactory$ToFactory, 0, jl_Object, [sc_Factory, ji_Serializable], 0, 3, 0, 0, ["$fromSpecific", $rt_wrapFunction1(sc_IterableFactory$ToFactory_fromSpecific)], +sc_Factory, 0, jl_Object, [], 3, 3, 0, 0, 0]); +$rt_metadata([sc_IterableFactory$ToFactory, 0, jl_Object, [sc_Factory, ji_Serializable], 0, 3, 0, 0, ["$fromSpecific", $rt_wrapFunction1(sc_IterableFactory$ToFactory_fromSpecific)], sc_EvidenceIterableFactory$ToFactory, 0, jl_Object, [sc_Factory, ji_Serializable], 0, 3, 0, 0, ["$fromSpecific", $rt_wrapFunction1(sc_EvidenceIterableFactory$ToFactory_fromSpecific)], -sc_Iterator, "Iterator", 21, jl_Object, [sc_IterableOnce, sc_IterableOnceOps], 3, 3, 0, 0, 0, +sc_Iterator, "Iterator", 19, jl_Object, [sc_IterableOnce, sc_IterableOnceOps], 3, 3, 0, 0, 0, srj_JFunction0$mcJ$sp, 0, jl_Object, [s_Function0, ji_Serializable], 3, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply)], onciu_StepSequencer$$heuristicStepOrdering$lambda$_1_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(onciu_StepSequencer$$heuristicStepOrdering$lambda$_1_0_apply$mcJ$sp)], -su_Random, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0]); -$rt_metadata([sc_BuildFromLowPriority2, 0, jl_Object, [], 3, 3, 0, 0, 0, +su_Random, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +sc_BuildFromLowPriority2, 0, jl_Object, [], 3, 3, 0, 0, 0, sc_BuildFromLowPriority1, 0, jl_Object, [sc_BuildFromLowPriority2], 3, 3, 0, 0, 0, -sc_BuildFrom$, 0, jl_Object, [sc_BuildFromLowPriority1], 4, 3, 0, sc_BuildFrom$_$callClinit, 0, -onciu_StepSequencer$$anonfun$heuristicStepOrdering$3, "StepSequencer$$anonfun$heuristicStepOrdering$3", 54, jl_Object, [sm_Ordering], 4, 3, 0, 0, 0, -jl_Error, "Error", 14, jl_Throwable, [], 0, 3, 0, 0, 0, -jl_AssertionError, "AssertionError", 14, jl_Error, [], 0, 3, 0, 0, 0, -oncifp_QualifiedName, "QualifiedName", 67, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_QualifiedName_toString), "$productPrefix", $rt_wrapFunction0(oncifp_QualifiedName_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_QualifiedName_productArity), "$productElement", $rt_wrapFunction1(oncifp_QualifiedName_productElement), "$productIterator", $rt_wrapFunction0(oncifp_QualifiedName_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_QualifiedName_hashCode), +sc_BuildFrom$, 0, jl_Object, [sc_BuildFromLowPriority1], 4, 3, 0, 0, 0, +onciu_StepSequencer$$anonfun$heuristicStepOrdering$3, "StepSequencer$$anonfun$heuristicStepOrdering$3", 52, jl_Object, [sm_Ordering], 4, 3, 0, 0, 0, +jl_Error, 0, jl_Throwable, [], 0, 3, 0, 0, 0, +jl_AssertionError, "AssertionError", 12, jl_Error, [], 0, 3, 0, 0, 0, +oncifp_QualifiedName, "QualifiedName", 65, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_QualifiedName_toString), "$productPrefix", $rt_wrapFunction0(oncifp_QualifiedName_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_QualifiedName_productArity), "$productElement", $rt_wrapFunction1(oncifp_QualifiedName_productElement), "$productIterator", $rt_wrapFunction0(oncifp_QualifiedName_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_QualifiedName_hashCode), "$equals", $rt_wrapFunction1(oncifp_QualifiedName_equals)], cnsa_CustomSignatureResolver$toFunctionSignature$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_CustomSignatureResolver$toFunctionSignature$lambda$_4_0_apply)], -oncifp_FieldSignature, "FieldSignature", 67, jl_Object, [s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oncifp_FieldSignature_toString), "$productArity", $rt_wrapFunction0(oncifp_FieldSignature_productArity), "$productElement", $rt_wrapFunction1(oncifp_FieldSignature_productElement), "$productIterator", $rt_wrapFunction0(oncifp_FieldSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_FieldSignature_hashCode), "$equals", $rt_wrapFunction1(oncifp_FieldSignature_equals)], -cnsa_CustomSignatureResolver$, 0, jl_Object, [], 4, 3, 0, cnsa_CustomSignatureResolver$_$callClinit, 0, +oncifp_FieldSignature, "FieldSignature", 65, jl_Object, [s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oncifp_FieldSignature_toString), "$productArity", $rt_wrapFunction0(oncifp_FieldSignature_productArity), "$productElement", $rt_wrapFunction1(oncifp_FieldSignature_productElement), "$productIterator", $rt_wrapFunction0(oncifp_FieldSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_FieldSignature_hashCode), "$equals", $rt_wrapFunction1(oncifp_FieldSignature_equals)], +cnsa_CustomSignatureResolver$, 0, jl_Object, [], 4, 3, 0, 0, 0, s_Function9, 0, jl_Object, [], 3, 3, 0, 0, 0, sr_AbstractFunction9, 0, jl_Object, [s_Function9], 1, 3, 0, 0, 0, -oncifp_UserFunctionSignature$, 0, sr_AbstractFunction9, [ji_Serializable], 4, 3, 0, oncifp_UserFunctionSignature$_$callClinit, 0, -oncifp_UserFunctionSignature, "UserFunctionSignature", 67, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_UserFunctionSignature_toString), "$productArity", $rt_wrapFunction0(oncifp_UserFunctionSignature_productArity), "$productElement", $rt_wrapFunction1(oncifp_UserFunctionSignature_productElement), "$productIterator", $rt_wrapFunction0(oncifp_UserFunctionSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_UserFunctionSignature_hashCode), "$equals", +oncifp_UserFunctionSignature$, 0, sr_AbstractFunction9, [ji_Serializable], 4, 3, 0, 0, 0, +oncifp_UserFunctionSignature, "UserFunctionSignature", 65, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_UserFunctionSignature_toString), "$productArity", $rt_wrapFunction0(oncifp_UserFunctionSignature_productArity), "$productElement", $rt_wrapFunction1(oncifp_UserFunctionSignature_productElement), "$productIterator", $rt_wrapFunction0(oncifp_UserFunctionSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_UserFunctionSignature_hashCode), "$equals", $rt_wrapFunction1(oncifp_UserFunctionSignature_equals)], sc_StrictOptimizedSetOps, 0, jl_Object, [sc_SetOps, sc_StrictOptimizedIterableOps], 3, 3, 0, 0, 0, sci_StrictOptimizedSetOps, 0, jl_Object, [sci_SetOps, sc_StrictOptimizedSetOps], 3, 3, 0, 0, 0, -sci_HashSet, "HashSet", 22, sci_AbstractSet, [sci_StrictOptimizedSetOps, scg_DefaultSerializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_HashSet_map), "$flatMap", $rt_wrapFunction1(sci_HashSet_flatMap), "$collect", $rt_wrapFunction1(sci_HashSet_collect), "$flatten", $rt_wrapFunction1(sci_HashSet_flatten), "$filter1", $rt_wrapFunction1(sci_HashSet_filter), "$filterNot0", $rt_wrapFunction1(sci_HashSet_filterNot), "$iterableFactory", $rt_wrapFunction0(sci_HashSet_iterableFactory), "$knownSize", $rt_wrapFunction0(sci_HashSet_knownSize), +sci_HashSet, "HashSet", 20, sci_AbstractSet, [sci_StrictOptimizedSetOps, scg_DefaultSerializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_HashSet_map), "$flatMap", $rt_wrapFunction1(sci_HashSet_flatMap), "$collect", $rt_wrapFunction1(sci_HashSet_collect), "$flatten", $rt_wrapFunction1(sci_HashSet_flatten), "$filter1", $rt_wrapFunction1(sci_HashSet_filter), "$filterNot0", $rt_wrapFunction1(sci_HashSet_filterNot), "$iterableFactory", $rt_wrapFunction0(sci_HashSet_iterableFactory), "$knownSize", $rt_wrapFunction0(sci_HashSet_knownSize), "$size", $rt_wrapFunction0(sci_HashSet_size), "$isEmpty", $rt_wrapFunction0(sci_HashSet_isEmpty), "$iterator0", $rt_wrapFunction0(sci_HashSet_iterator), "$contains", $rt_wrapFunction1(sci_HashSet_contains), "$head", $rt_wrapFunction0(sci_HashSet_head), "$foreach", $rt_wrapFunction1(sci_HashSet_foreach), "$equals", $rt_wrapFunction1(sci_HashSet_equals), "$className", $rt_wrapFunction0(sci_HashSet_className), "$hashCode", $rt_wrapFunction0(sci_HashSet_hashCode), "$partition", $rt_wrapFunction1(sci_HashSet_partition), "$drop", $rt_wrapFunction1(sci_HashSet_drop), "$intersect", $rt_wrapFunction1(sci_HashSet_intersect), "$filterImpl", $rt_wrapFunction2(sci_HashSet_filterImpl), "$removedAll", $rt_wrapFunction1(sci_HashSet_removedAll), "$tail", $rt_wrapFunction0(sci_HashSet_tail), "$concat1", $rt_wrapFunction1(sci_HashSet_concat0), "$excl", $rt_wrapFunction1(sci_HashSet_excl0), "$incl", $rt_wrapFunction1(sci_HashSet_incl0)], sci_ChampBaseIterator, 0, jl_Object, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_ChampBaseIterator_hasNext)], @@ -359585,17 +287253,14 @@ sci_HashSetBuilder$$anon$1, 0, sci_ChampBaseIterator, [], 4, 3, 0, 0, 0, cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_0_apply)], cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_CustomSignatureResolver$toProcedureSignature$lambda$_3_1_apply)], oncifp_ProcedureAccessMode, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_ProcedureReadOnlyAccess$, "ProcedureReadOnlyAccess$", 67, jl_Object, [oncifp_ProcedureAccessMode, s_Product, ji_Serializable], 4, 3, 0, oncifp_ProcedureReadOnlyAccess$_$callClinit, ["$productArity", $rt_wrapFunction0(oncifp_ProcedureReadOnlyAccess$_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureReadOnlyAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureReadOnlyAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureReadOnlyAccess$_hashCode), -"$toString", $rt_wrapFunction0(oncifp_ProcedureReadOnlyAccess$_toString)], +oncifp_ProcedureReadOnlyAccess$, "ProcedureReadOnlyAccess$", 65, jl_Object, [oncifp_ProcedureAccessMode, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncifp_ProcedureReadOnlyAccess$_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureReadOnlyAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureReadOnlyAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureReadOnlyAccess$_hashCode), "$toString", $rt_wrapFunction0(oncifp_ProcedureReadOnlyAccess$_toString)], s_Function12, 0, jl_Object, [], 3, 3, 0, 0, 0, sr_AbstractFunction12, 0, jl_Object, [s_Function12], 1, 3, 0, 0, 0, -oncifp_ProcedureSignature$, 0, sr_AbstractFunction12, [ji_Serializable], 4, 3, 0, oncifp_ProcedureSignature$_$callClinit, 0, -oncifp_ProcedureSignature, "ProcedureSignature", 67, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_ProcedureSignature_toString), "$productArity", $rt_wrapFunction0(oncifp_ProcedureSignature_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureSignature_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureSignature_hashCode), "$equals", $rt_wrapFunction1(oncifp_ProcedureSignature_equals)], -oncifp_ProcedureReadWriteAccess$, "ProcedureReadWriteAccess$", 67, jl_Object, [oncifp_ProcedureAccessMode, s_Product, ji_Serializable], 4, 3, 0, oncifp_ProcedureReadWriteAccess$_$callClinit, ["$productArity", $rt_wrapFunction0(oncifp_ProcedureReadWriteAccess$_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureReadWriteAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureReadWriteAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureReadWriteAccess$_hashCode), -"$toString", $rt_wrapFunction0(oncifp_ProcedureReadWriteAccess$_toString)], -oncifp_ProcedureDbmsAccess$, "ProcedureDbmsAccess$", 67, jl_Object, [oncifp_ProcedureAccessMode, s_Product, ji_Serializable], 4, 3, 0, oncifp_ProcedureDbmsAccess$_$callClinit, ["$productArity", $rt_wrapFunction0(oncifp_ProcedureDbmsAccess$_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureDbmsAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureDbmsAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureDbmsAccess$_hashCode), "$toString", $rt_wrapFunction0(oncifp_ProcedureDbmsAccess$_toString)], -oncifp_ProcedureSchemaWriteAccess$, "ProcedureSchemaWriteAccess$", 67, jl_Object, [oncifp_ProcedureAccessMode, s_Product, ji_Serializable], 4, 3, 0, oncifp_ProcedureSchemaWriteAccess$_$callClinit, ["$productArity", $rt_wrapFunction0(oncifp_ProcedureSchemaWriteAccess$_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureSchemaWriteAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureSchemaWriteAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureSchemaWriteAccess$_hashCode), -"$toString", $rt_wrapFunction0(oncifp_ProcedureSchemaWriteAccess$_toString)], +oncifp_ProcedureSignature$, 0, sr_AbstractFunction12, [ji_Serializable], 4, 3, 0, 0, 0, +oncifp_ProcedureSignature, "ProcedureSignature", 65, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_ProcedureSignature_toString), "$productArity", $rt_wrapFunction0(oncifp_ProcedureSignature_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureSignature_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureSignature_hashCode), "$equals", $rt_wrapFunction1(oncifp_ProcedureSignature_equals)], +oncifp_ProcedureReadWriteAccess$, "ProcedureReadWriteAccess$", 65, jl_Object, [oncifp_ProcedureAccessMode, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncifp_ProcedureReadWriteAccess$_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureReadWriteAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureReadWriteAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureReadWriteAccess$_hashCode), "$toString", $rt_wrapFunction0(oncifp_ProcedureReadWriteAccess$_toString)], +oncifp_ProcedureDbmsAccess$, "ProcedureDbmsAccess$", 65, jl_Object, [oncifp_ProcedureAccessMode, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncifp_ProcedureDbmsAccess$_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureDbmsAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureDbmsAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureDbmsAccess$_hashCode), "$toString", $rt_wrapFunction0(oncifp_ProcedureDbmsAccess$_toString)], +oncifp_ProcedureSchemaWriteAccess$, "ProcedureSchemaWriteAccess$", 65, jl_Object, [oncifp_ProcedureAccessMode, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncifp_ProcedureSchemaWriteAccess$_productArity), "$productElement", $rt_wrapFunction1(oncifp_ProcedureSchemaWriteAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ProcedureSchemaWriteAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ProcedureSchemaWriteAccess$_hashCode), "$toString", $rt_wrapFunction0(oncifp_ProcedureSchemaWriteAccess$_toString)], jur_RandomGenerator, 0, jl_Object, [], 3, 3, 0, 0, 0, ju_Random, 0, jl_Object, [jur_RandomGenerator, ji_Serializable], 0, 3, 0, 0, 0, su_DynamicVariable, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -359609,24 +287274,24 @@ ji_Flushable, 0, jl_Object, [], 3, 3, 0, 0, 0, ji_OutputStream, 0, jl_Object, [ji_Closeable, ji_Flushable], 1, 3, 0, 0, 0, ji_FilterOutputStream, 0, ji_OutputStream, [], 0, 3, 0, 0, 0, ji_PrintStream, 0, ji_FilterOutputStream, [jl_Appendable], 0, 3, 0, 0, ["$append12", $rt_wrapFunction1(ji_PrintStream_append)], -oncius_package$, 0, jl_Object, [], 4, 3, 0, oncius_package$_$callClinit, 0, -sc_SeqFactory$Delegate, 0, jl_Object, [sc_SeqFactory], 0, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(sc_SeqFactory$Delegate_newBuilder), "$from0", $rt_wrapFunction1(sc_SeqFactory$Delegate_from0), "$empty0", $rt_wrapFunction0(sc_SeqFactory$Delegate_empty0), "$apply28", $rt_wrapFunction1(sc_SeqFactory$Delegate_apply0)], +oncius_package$, 0, jl_Object, [], 4, 3, 0, oncius_package$_$callClinit, 0]); +$rt_metadata([sc_SeqFactory$Delegate, 0, jl_Object, [sc_SeqFactory], 0, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(sc_SeqFactory$Delegate_newBuilder), "$from0", $rt_wrapFunction1(sc_SeqFactory$Delegate_from0), "$empty0", $rt_wrapFunction0(sc_SeqFactory$Delegate_empty0), "$apply28", $rt_wrapFunction1(sc_SeqFactory$Delegate_apply0)], scm_Buffer$, 0, sc_SeqFactory$Delegate, [], 4, 3, 0, scm_Buffer$_$callClinit, 0, sci_Node, 0, jl_Object, [], 1, 3, 0, 0, 0, sci_SetNode, 0, sci_Node, [], 1, 3, 0, 0, 0, sc_Hashing$, 0, jl_Object, [], 4, 3, 0, 0, 0, -scm_HashMap$, 0, jl_Object, [sc_MapFactory], 4, 3, 0, scm_HashMap$_$callClinit, ["$newBuilder", $rt_wrapFunction0(scm_HashMap$_newBuilder), "$from0", $rt_wrapFunction1(scm_HashMap$_from), "$empty0", $rt_wrapFunction0(scm_HashMap$_empty)]]); -$rt_metadata([scm_HashSet$, 0, jl_Object, [sc_IterableFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_HashSet$_newBuilder), "$empty0", $rt_wrapFunction0(scm_HashSet$_empty), "$from0", $rt_wrapFunction1(scm_HashSet$_from)], -scm_TreeSet$, 0, jl_Object, [sc_SortedIterableFactory], 4, 3, 0, scm_TreeSet$_$callClinit, 0, +scm_HashMap$, 0, jl_Object, [sc_MapFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_HashMap$_newBuilder), "$from0", $rt_wrapFunction1(scm_HashMap$_from), "$empty0", $rt_wrapFunction0(scm_HashMap$_empty)], +scm_HashSet$, 0, jl_Object, [sc_IterableFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_HashSet$_newBuilder), "$empty0", $rt_wrapFunction0(scm_HashSet$_empty), "$from0", $rt_wrapFunction1(scm_HashSet$_from)], +scm_TreeSet$, 0, jl_Object, [sc_SortedIterableFactory], 4, 3, 0, 0, 0, sc_BuildFrom, 0, jl_Object, [], 3, 3, 0, 0, 0, sc_BuildFrom$$anon$5, 0, jl_Object, [sc_BuildFrom], 4, 3, 0, 0, 0, sc_BuildFrom$$anon$6, 0, jl_Object, [sc_BuildFrom], 4, 3, 0, 0, 0, otcic_JsConsolePrintStream, 0, ji_PrintStream, [], 1, 3, 0, 0, 0, otcic_JSStdoutPrintStream, 0, otcic_JsConsolePrintStream, [], 0, 3, 0, 0, ["$print", $rt_wrapFunction1(otcic_JSStdoutPrintStream_print)], -jl_ThreadLocal, 0, jl_Object, [], 0, 3, 0, jl_ThreadLocal_$callClinit, 0, +jl_ThreadLocal, 0, jl_Object, [], 0, 3, 0, 0, 0, jl_InheritableThreadLocal, 0, jl_ThreadLocal, [], 0, 3, 0, 0, 0, su_DynamicVariable$$anon$1, 0, jl_InheritableThreadLocal, [], 4, 3, 0, 0, 0, -otcic_JSStderrPrintStream, "JSStderrPrintStream", 77, otcic_JsConsolePrintStream, [], 0, 3, 0, 0, ["$print", $rt_wrapFunction1(otcic_JSStderrPrintStream_print)], +otcic_JSStderrPrintStream, "JSStderrPrintStream", 75, otcic_JsConsolePrintStream, [], 0, 3, 0, 0, ["$print", $rt_wrapFunction1(otcic_JSStderrPrintStream_print)], ji_InputStream, 0, jl_Object, [ji_Closeable], 1, 3, 0, 0, 0, jl_ConsoleInputStream, 0, ji_InputStream, [], 0, 0, 0, 0, 0, jnc_Charset, 0, jl_Object, [jl_Comparable], 1, 3, 0, 0, 0, @@ -359636,155 +287301,155 @@ onciu_Foldable, 0, jl_Object, [], 3, 3, 0, 0, 0, onciu_RewritableUniversal, 0, jl_Object, [], 3, 3, 0, 0, 0, onciu_Rewritable, 0, jl_Object, [onciu_RewritableUniversal], 3, 3, 0, 0, 0, onciu_ASTNode, 0, jl_Object, [s_Product, onciu_Foldable, onciu_Rewritable], 3, 3, 0, 0, 0, -oncius_CypherType, "CypherType", 59, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, -oncius_AnyType, "AnyType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_AnyType_description), "$simplify", $rt_wrapFunction0(oncius_AnyType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_AnyType_normalizedCypherTypeString), "$coercibleTo", $rt_wrapFunction0(oncius_AnyType_coercibleTo), "$leastUpperBound", $rt_wrapFunction1(oncius_AnyType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_AnyType_greatestLowerBound), +oncius_CypherType, "CypherType", 57, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, +oncius_AnyType, "AnyType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_AnyType_description), "$simplify", $rt_wrapFunction0(oncius_AnyType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_AnyType_normalizedCypherTypeString), "$coercibleTo", $rt_wrapFunction0(oncius_AnyType_coercibleTo), "$leastUpperBound", $rt_wrapFunction1(oncius_AnyType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_AnyType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_AnyType_covariant), "$invariant", $rt_wrapFunction0(oncius_AnyType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_AnyType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_AnyType_isNullable), "$position", $rt_wrapFunction0(oncius_AnyType_position), "$parentType", $rt_wrapFunction0(oncius_AnyType_parentType), "$isAssignableFrom0", $rt_wrapFunction1(oncius_AnyType_isAssignableFrom), "$toString", $rt_wrapFunction0(oncius_AnyType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_AnyType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_AnyType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_AnyType_withIsNullable), "$isSubtypeOf", $rt_wrapFunction1(oncius_AnyType_isSubtypeOf), "$withPosition", $rt_wrapFunction1(oncius_AnyType_withPosition), "$productArity", $rt_wrapFunction0(oncius_AnyType_productArity), "$productElement", $rt_wrapFunction1(oncius_AnyType_productElement), "$productIterator", $rt_wrapFunction0(oncius_AnyType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_AnyType_hashCode), "$equals", $rt_wrapFunction1(oncius_AnyType_equals), "$dup", $rt_wrapFunction1(oncius_AnyType_dup)], -oncius_BooleanType, "BooleanType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_BooleanType_description), "$simplify", $rt_wrapFunction0(oncius_BooleanType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_BooleanType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_BooleanType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_BooleanType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_BooleanType_coercibleTo), +oncius_BooleanType, "BooleanType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_BooleanType_description), "$simplify", $rt_wrapFunction0(oncius_BooleanType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_BooleanType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_BooleanType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_BooleanType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_BooleanType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_BooleanType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_BooleanType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_BooleanType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_BooleanType_covariant), "$invariant", $rt_wrapFunction0(oncius_BooleanType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_BooleanType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_BooleanType_isNullable), "$position", $rt_wrapFunction0(oncius_BooleanType_position), "$parentType", $rt_wrapFunction0(oncius_BooleanType_parentType), "$toString", $rt_wrapFunction0(oncius_BooleanType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_BooleanType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_BooleanType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_BooleanType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_BooleanType_withPosition), "$productArity", $rt_wrapFunction0(oncius_BooleanType_productArity), "$productElement", $rt_wrapFunction1(oncius_BooleanType_productElement), "$productIterator", $rt_wrapFunction0(oncius_BooleanType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_BooleanType_hashCode), "$equals", $rt_wrapFunction1(oncius_BooleanType_equals), "$dup", $rt_wrapFunction1(oncius_BooleanType_dup)], -oncius_StringType, "StringType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_StringType_description), "$simplify", $rt_wrapFunction0(oncius_StringType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_StringType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_StringType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_StringType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_StringType_coercibleTo), +oncius_StringType, "StringType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_StringType_description), "$simplify", $rt_wrapFunction0(oncius_StringType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_StringType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_StringType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_StringType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_StringType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_StringType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_StringType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_StringType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_StringType_covariant), "$invariant", $rt_wrapFunction0(oncius_StringType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_StringType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_StringType_isNullable), "$position", $rt_wrapFunction0(oncius_StringType_position), "$parentType", $rt_wrapFunction0(oncius_StringType_parentType), "$toString", $rt_wrapFunction0(oncius_StringType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_StringType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_StringType_sortOrder), "$productArity", $rt_wrapFunction0(oncius_StringType_productArity), "$productElement", $rt_wrapFunction1(oncius_StringType_productElement), "$productIterator", $rt_wrapFunction0(oncius_StringType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_StringType_hashCode), "$equals", $rt_wrapFunction1(oncius_StringType_equals), "$dup", $rt_wrapFunction1(oncius_StringType_dup), "$withPosition", $rt_wrapFunction1(oncius_StringType_withPosition), "$withIsNullable1", $rt_wrapFunction1(oncius_StringType_withIsNullable0)], -oncius_NumberType, "NumberType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_NumberType_description), "$simplify", $rt_wrapFunction0(oncius_NumberType_simplify), "$isSubtypeOf", $rt_wrapFunction1(oncius_NumberType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_NumberType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_NumberType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_NumberType_isAssignableFrom), +oncius_NumberType, "NumberType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_NumberType_description), "$simplify", $rt_wrapFunction0(oncius_NumberType_simplify), "$isSubtypeOf", $rt_wrapFunction1(oncius_NumberType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_NumberType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_NumberType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_NumberType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_NumberType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_NumberType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_NumberType_covariant), "$invariant", $rt_wrapFunction0(oncius_NumberType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_NumberType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_NumberType_isNullable), "$position", $rt_wrapFunction0(oncius_NumberType_position), "$toString", $rt_wrapFunction0(oncius_NumberType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_NumberType_toCypherTypeString), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_NumberType_normalizedCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_NumberType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_NumberType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_NumberType_withPosition), "$productArity", $rt_wrapFunction0(oncius_NumberType_productArity), "$productElement", $rt_wrapFunction1(oncius_NumberType_productElement), "$productIterator", $rt_wrapFunction0(oncius_NumberType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_NumberType_hashCode), "$equals", $rt_wrapFunction1(oncius_NumberType_equals), "$dup", $rt_wrapFunction1(oncius_NumberType_dup), "$parentType", $rt_wrapFunction0(oncius_NumberType_parentType)], -oncius_FloatType, "FloatType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_FloatType_description), "$simplify", $rt_wrapFunction0(oncius_FloatType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_FloatType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_FloatType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_FloatType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_FloatType_coercibleTo), +oncius_FloatType, "FloatType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_FloatType_description), "$simplify", $rt_wrapFunction0(oncius_FloatType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_FloatType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_FloatType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_FloatType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_FloatType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_FloatType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_FloatType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_FloatType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_FloatType_covariant), "$invariant", $rt_wrapFunction0(oncius_FloatType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_FloatType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_FloatType_isNullable), "$position", $rt_wrapFunction0(oncius_FloatType_position), "$parentType", $rt_wrapFunction0(oncius_FloatType_parentType), "$toString", $rt_wrapFunction0(oncius_FloatType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_FloatType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_FloatType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_FloatType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_FloatType_withPosition), "$productArity", $rt_wrapFunction0(oncius_FloatType_productArity), "$productElement", $rt_wrapFunction1(oncius_FloatType_productElement), "$productIterator", $rt_wrapFunction0(oncius_FloatType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_FloatType_hashCode), "$equals", $rt_wrapFunction1(oncius_FloatType_equals), "$dup", $rt_wrapFunction1(oncius_FloatType_dup)], -oncius_IntegerType, "IntegerType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_IntegerType_description), "$simplify", $rt_wrapFunction0(oncius_IntegerType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_IntegerType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_IntegerType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_IntegerType_isNullableSubtypeOf), "$isAssignableFrom0", $rt_wrapFunction1(oncius_IntegerType_isAssignableFrom), +oncius_IntegerType, "IntegerType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_IntegerType_description), "$simplify", $rt_wrapFunction0(oncius_IntegerType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_IntegerType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_IntegerType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_IntegerType_isNullableSubtypeOf), "$isAssignableFrom0", $rt_wrapFunction1(oncius_IntegerType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_IntegerType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_IntegerType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_IntegerType_covariant), "$invariant", $rt_wrapFunction0(oncius_IntegerType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_IntegerType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_IntegerType_isNullable), "$position", $rt_wrapFunction0(oncius_IntegerType_position), "$parentType", $rt_wrapFunction0(oncius_IntegerType_parentType), "$coercibleTo", $rt_wrapFunction0(oncius_IntegerType_coercibleTo), "$toString", $rt_wrapFunction0(oncius_IntegerType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_IntegerType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_IntegerType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_IntegerType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_IntegerType_withPosition), "$productArity", $rt_wrapFunction0(oncius_IntegerType_productArity), "$productElement", $rt_wrapFunction1(oncius_IntegerType_productElement), "$productIterator", $rt_wrapFunction0(oncius_IntegerType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_IntegerType_hashCode), "$equals", $rt_wrapFunction1(oncius_IntegerType_equals), "$dup", $rt_wrapFunction1(oncius_IntegerType_dup)], -oncius_MapType, "MapType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_MapType_description), "$simplify", $rt_wrapFunction0(oncius_MapType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_MapType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_MapType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_MapType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_MapType_coercibleTo), +oncius_MapType, "MapType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_MapType_description), "$simplify", $rt_wrapFunction0(oncius_MapType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_MapType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_MapType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_MapType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_MapType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_MapType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_MapType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_MapType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_MapType_covariant), "$invariant", $rt_wrapFunction0(oncius_MapType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_MapType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_MapType_isNullable), "$position", $rt_wrapFunction0(oncius_MapType_position), "$parentType", $rt_wrapFunction0(oncius_MapType_parentType), "$toString", $rt_wrapFunction0(oncius_MapType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_MapType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_MapType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_MapType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_MapType_withPosition), "$productArity", $rt_wrapFunction0(oncius_MapType_productArity), "$productElement", $rt_wrapFunction1(oncius_MapType_productElement), "$productIterator", $rt_wrapFunction0(oncius_MapType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_MapType_hashCode), "$equals", $rt_wrapFunction1(oncius_MapType_equals), "$dup", $rt_wrapFunction1(oncius_MapType_dup)], -oncius_NodeType, "NodeType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_NodeType_description), "$simplify", $rt_wrapFunction0(oncius_NodeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_NodeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_NodeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_NodeType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_NodeType_coercibleTo), +oncius_NodeType, "NodeType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_NodeType_description), "$simplify", $rt_wrapFunction0(oncius_NodeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_NodeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_NodeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_NodeType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_NodeType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_NodeType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_NodeType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_NodeType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_NodeType_covariant), "$invariant", $rt_wrapFunction0(oncius_NodeType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_NodeType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_NodeType_isNullable), "$position", $rt_wrapFunction0(oncius_NodeType_position), "$parentType", $rt_wrapFunction0(oncius_NodeType_parentType), "$toString", $rt_wrapFunction0(oncius_NodeType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_NodeType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_NodeType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_NodeType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_NodeType_withPosition), "$productArity", $rt_wrapFunction0(oncius_NodeType_productArity), "$productElement", $rt_wrapFunction1(oncius_NodeType_productElement), "$productIterator", $rt_wrapFunction0(oncius_NodeType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_NodeType_hashCode), "$equals", $rt_wrapFunction1(oncius_NodeType_equals), "$dup", $rt_wrapFunction1(oncius_NodeType_dup)], -oncius_RelationshipType, "RelationshipType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_RelationshipType_description), "$simplify", $rt_wrapFunction0(oncius_RelationshipType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_RelationshipType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_RelationshipType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_RelationshipType_isNullableSubtypeOf), +oncius_RelationshipType, "RelationshipType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_RelationshipType_description), "$simplify", $rt_wrapFunction0(oncius_RelationshipType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_RelationshipType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_RelationshipType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_RelationshipType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_RelationshipType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_RelationshipType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_RelationshipType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_RelationshipType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_RelationshipType_covariant), "$invariant", $rt_wrapFunction0(oncius_RelationshipType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_RelationshipType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_RelationshipType_isNullable), "$position", $rt_wrapFunction0(oncius_RelationshipType_position), "$parentType", $rt_wrapFunction0(oncius_RelationshipType_parentType), "$toString", $rt_wrapFunction0(oncius_RelationshipType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_RelationshipType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_RelationshipType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_RelationshipType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_RelationshipType_withPosition), "$productArity", $rt_wrapFunction0(oncius_RelationshipType_productArity), "$productElement", $rt_wrapFunction1(oncius_RelationshipType_productElement), "$productIterator", $rt_wrapFunction0(oncius_RelationshipType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_RelationshipType_hashCode), "$equals", $rt_wrapFunction1(oncius_RelationshipType_equals), "$dup", $rt_wrapFunction1(oncius_RelationshipType_dup)], -oncius_PointType, "PointType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_PointType_description), "$simplify", $rt_wrapFunction0(oncius_PointType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_PointType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_PointType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_PointType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_PointType_coercibleTo), +oncius_PointType, "PointType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_PointType_description), "$simplify", $rt_wrapFunction0(oncius_PointType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_PointType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_PointType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_PointType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_PointType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_PointType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_PointType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_PointType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_PointType_covariant), "$invariant", $rt_wrapFunction0(oncius_PointType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_PointType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_PointType_isNullable), "$position", $rt_wrapFunction0(oncius_PointType_position), "$parentType", $rt_wrapFunction0(oncius_PointType_parentType), "$toString", $rt_wrapFunction0(oncius_PointType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_PointType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_PointType_sortOrder), "$productArity", $rt_wrapFunction0(oncius_PointType_productArity), "$productElement", $rt_wrapFunction1(oncius_PointType_productElement), "$productIterator", $rt_wrapFunction0(oncius_PointType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_PointType_hashCode), "$equals", $rt_wrapFunction1(oncius_PointType_equals), "$dup", $rt_wrapFunction1(oncius_PointType_dup), "$withPosition", $rt_wrapFunction1(oncius_PointType_withPosition), "$withIsNullable1", $rt_wrapFunction1(oncius_PointType_withIsNullable0)], -oncius_ZonedDateTimeType, "ZonedDateTimeType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_ZonedDateTimeType_description), "$simplify", $rt_wrapFunction0(oncius_ZonedDateTimeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_ZonedDateTimeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_ZonedDateTimeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_ZonedDateTimeType_isNullableSubtypeOf), +oncius_ZonedDateTimeType, "ZonedDateTimeType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_ZonedDateTimeType_description), "$simplify", $rt_wrapFunction0(oncius_ZonedDateTimeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_ZonedDateTimeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_ZonedDateTimeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_ZonedDateTimeType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_ZonedDateTimeType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_ZonedDateTimeType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_ZonedDateTimeType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_ZonedDateTimeType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_ZonedDateTimeType_covariant), "$invariant", $rt_wrapFunction0(oncius_ZonedDateTimeType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_ZonedDateTimeType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_ZonedDateTimeType_isNullable), "$position", $rt_wrapFunction0(oncius_ZonedDateTimeType_position), "$parentType", $rt_wrapFunction0(oncius_ZonedDateTimeType_parentType), "$toString", $rt_wrapFunction0(oncius_ZonedDateTimeType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_ZonedDateTimeType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_ZonedDateTimeType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_ZonedDateTimeType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_ZonedDateTimeType_withPosition), "$productArity", $rt_wrapFunction0(oncius_ZonedDateTimeType_productArity), "$productElement", $rt_wrapFunction1(oncius_ZonedDateTimeType_productElement), "$productIterator", $rt_wrapFunction0(oncius_ZonedDateTimeType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_ZonedDateTimeType_hashCode), "$equals", $rt_wrapFunction1(oncius_ZonedDateTimeType_equals), "$dup", $rt_wrapFunction1(oncius_ZonedDateTimeType_dup)], -oncius_LocalDateTimeType, "LocalDateTimeType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_LocalDateTimeType_description), "$simplify", $rt_wrapFunction0(oncius_LocalDateTimeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_LocalDateTimeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_LocalDateTimeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_LocalDateTimeType_isNullableSubtypeOf), +oncius_LocalDateTimeType, "LocalDateTimeType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_LocalDateTimeType_description), "$simplify", $rt_wrapFunction0(oncius_LocalDateTimeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_LocalDateTimeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_LocalDateTimeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_LocalDateTimeType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_LocalDateTimeType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_LocalDateTimeType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_LocalDateTimeType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_LocalDateTimeType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_LocalDateTimeType_covariant), "$invariant", $rt_wrapFunction0(oncius_LocalDateTimeType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_LocalDateTimeType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_LocalDateTimeType_isNullable), "$position", $rt_wrapFunction0(oncius_LocalDateTimeType_position), "$parentType", $rt_wrapFunction0(oncius_LocalDateTimeType_parentType), "$toString", $rt_wrapFunction0(oncius_LocalDateTimeType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_LocalDateTimeType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_LocalDateTimeType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_LocalDateTimeType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_LocalDateTimeType_withPosition), "$productArity", $rt_wrapFunction0(oncius_LocalDateTimeType_productArity), "$productElement", $rt_wrapFunction1(oncius_LocalDateTimeType_productElement), "$productIterator", $rt_wrapFunction0(oncius_LocalDateTimeType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_LocalDateTimeType_hashCode), "$equals", $rt_wrapFunction1(oncius_LocalDateTimeType_equals), "$dup", $rt_wrapFunction1(oncius_LocalDateTimeType_dup)], -oncius_DateType, "DateType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_DateType_description), "$simplify", $rt_wrapFunction0(oncius_DateType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_DateType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_DateType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_DateType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_DateType_coercibleTo), +oncius_DateType, "DateType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_DateType_description), "$simplify", $rt_wrapFunction0(oncius_DateType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_DateType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_DateType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_DateType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_DateType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_DateType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_DateType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_DateType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_DateType_covariant), "$invariant", $rt_wrapFunction0(oncius_DateType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_DateType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_DateType_isNullable), "$position", $rt_wrapFunction0(oncius_DateType_position), "$parentType", $rt_wrapFunction0(oncius_DateType_parentType), "$toString", $rt_wrapFunction0(oncius_DateType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_DateType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_DateType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_DateType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_DateType_withPosition), "$productArity", $rt_wrapFunction0(oncius_DateType_productArity), "$productElement", $rt_wrapFunction1(oncius_DateType_productElement), "$productIterator", $rt_wrapFunction0(oncius_DateType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_DateType_hashCode), "$equals", $rt_wrapFunction1(oncius_DateType_equals), "$dup", $rt_wrapFunction1(oncius_DateType_dup)], -oncius_ZonedTimeType, "ZonedTimeType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_ZonedTimeType_description), "$simplify", $rt_wrapFunction0(oncius_ZonedTimeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_ZonedTimeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_ZonedTimeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_ZonedTimeType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_ZonedTimeType_coercibleTo), +oncius_ZonedTimeType, "ZonedTimeType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_ZonedTimeType_description), "$simplify", $rt_wrapFunction0(oncius_ZonedTimeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_ZonedTimeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_ZonedTimeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_ZonedTimeType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_ZonedTimeType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_ZonedTimeType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_ZonedTimeType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_ZonedTimeType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_ZonedTimeType_covariant), "$invariant", $rt_wrapFunction0(oncius_ZonedTimeType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_ZonedTimeType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_ZonedTimeType_isNullable), "$position", $rt_wrapFunction0(oncius_ZonedTimeType_position), "$parentType", $rt_wrapFunction0(oncius_ZonedTimeType_parentType), "$toString", $rt_wrapFunction0(oncius_ZonedTimeType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_ZonedTimeType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_ZonedTimeType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_ZonedTimeType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_ZonedTimeType_withPosition), "$productArity", $rt_wrapFunction0(oncius_ZonedTimeType_productArity), "$productElement", $rt_wrapFunction1(oncius_ZonedTimeType_productElement), "$productIterator", $rt_wrapFunction0(oncius_ZonedTimeType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_ZonedTimeType_hashCode), "$equals", $rt_wrapFunction1(oncius_ZonedTimeType_equals), "$dup", $rt_wrapFunction1(oncius_ZonedTimeType_dup)], -oncius_LocalTimeType, "LocalTimeType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_LocalTimeType_description), "$simplify", $rt_wrapFunction0(oncius_LocalTimeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_LocalTimeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_LocalTimeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_LocalTimeType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_LocalTimeType_coercibleTo), +oncius_LocalTimeType, "LocalTimeType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_LocalTimeType_description), "$simplify", $rt_wrapFunction0(oncius_LocalTimeType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_LocalTimeType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_LocalTimeType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_LocalTimeType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_LocalTimeType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_LocalTimeType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_LocalTimeType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_LocalTimeType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_LocalTimeType_covariant), "$invariant", $rt_wrapFunction0(oncius_LocalTimeType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_LocalTimeType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_LocalTimeType_isNullable), "$position", $rt_wrapFunction0(oncius_LocalTimeType_position), "$parentType", $rt_wrapFunction0(oncius_LocalTimeType_parentType), "$toString", $rt_wrapFunction0(oncius_LocalTimeType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_LocalTimeType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_LocalTimeType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_LocalTimeType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_LocalTimeType_withPosition), "$productArity", $rt_wrapFunction0(oncius_LocalTimeType_productArity), "$productElement", $rt_wrapFunction1(oncius_LocalTimeType_productElement), "$productIterator", $rt_wrapFunction0(oncius_LocalTimeType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_LocalTimeType_hashCode), "$equals", $rt_wrapFunction1(oncius_LocalTimeType_equals), "$dup", $rt_wrapFunction1(oncius_LocalTimeType_dup)], -oncius_DurationType, "DurationType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_DurationType_description), "$simplify", $rt_wrapFunction0(oncius_DurationType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_DurationType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_DurationType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_DurationType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_DurationType_coercibleTo), +oncius_DurationType, "DurationType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_DurationType_description), "$simplify", $rt_wrapFunction0(oncius_DurationType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_DurationType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_DurationType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_DurationType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_DurationType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_DurationType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_DurationType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_DurationType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_DurationType_covariant), "$invariant", $rt_wrapFunction0(oncius_DurationType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_DurationType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_DurationType_isNullable), "$position", $rt_wrapFunction0(oncius_DurationType_position), "$parentType", $rt_wrapFunction0(oncius_DurationType_parentType), "$toString", $rt_wrapFunction0(oncius_DurationType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_DurationType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_DurationType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_DurationType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_DurationType_withPosition), "$productArity", $rt_wrapFunction0(oncius_DurationType_productArity), "$productElement", $rt_wrapFunction1(oncius_DurationType_productElement), "$productIterator", $rt_wrapFunction0(oncius_DurationType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_DurationType_hashCode), "$equals", $rt_wrapFunction1(oncius_DurationType_equals), "$dup", $rt_wrapFunction1(oncius_DurationType_dup)], -oncius_GeometryType, "GeometryType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_GeometryType_description), "$simplify", $rt_wrapFunction0(oncius_GeometryType_simplify), "$isSubtypeOf", $rt_wrapFunction1(oncius_GeometryType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_GeometryType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_GeometryType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_GeometryType_isAssignableFrom), +oncius_GeometryType, "GeometryType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_GeometryType_description), "$simplify", $rt_wrapFunction0(oncius_GeometryType_simplify), "$isSubtypeOf", $rt_wrapFunction1(oncius_GeometryType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_GeometryType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_GeometryType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_GeometryType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_GeometryType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_GeometryType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_GeometryType_covariant), "$invariant", $rt_wrapFunction0(oncius_GeometryType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_GeometryType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_GeometryType_isNullable), "$position", $rt_wrapFunction0(oncius_GeometryType_position), "$parentType", $rt_wrapFunction0(oncius_GeometryType_parentType), "$toString", $rt_wrapFunction0(oncius_GeometryType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_GeometryType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_GeometryType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_GeometryType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_GeometryType_withPosition), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_GeometryType_normalizedCypherTypeString), "$productArity", $rt_wrapFunction0(oncius_GeometryType_productArity), "$productElement", $rt_wrapFunction1(oncius_GeometryType_productElement), "$productIterator", $rt_wrapFunction0(oncius_GeometryType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_GeometryType_hashCode), "$equals", $rt_wrapFunction1(oncius_GeometryType_equals), "$dup", $rt_wrapFunction1(oncius_GeometryType_dup)], -oncius_PathType, "PathType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_PathType_description), "$simplify", $rt_wrapFunction0(oncius_PathType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_PathType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_PathType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_PathType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_PathType_coercibleTo), +oncius_PathType, "PathType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_PathType_description), "$simplify", $rt_wrapFunction0(oncius_PathType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_PathType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_PathType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_PathType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_PathType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_PathType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_PathType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_PathType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_PathType_covariant), "$invariant", $rt_wrapFunction0(oncius_PathType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_PathType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_PathType_isNullable), "$position", $rt_wrapFunction0(oncius_PathType_position), "$parentType", $rt_wrapFunction0(oncius_PathType_parentType), "$toString", $rt_wrapFunction0(oncius_PathType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_PathType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_PathType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_PathType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_PathType_withPosition), "$productArity", $rt_wrapFunction0(oncius_PathType_productArity), "$productElement", $rt_wrapFunction1(oncius_PathType_productElement), "$productIterator", $rt_wrapFunction0(oncius_PathType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_PathType_hashCode), "$equals", $rt_wrapFunction1(oncius_PathType_equals), "$dup", $rt_wrapFunction1(oncius_PathType_dup)], -oncius_GraphRefType, "GraphRefType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_GraphRefType_description), "$simplify", $rt_wrapFunction0(oncius_GraphRefType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_GraphRefType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_GraphRefType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_GraphRefType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_GraphRefType_coercibleTo), +oncius_GraphRefType, "GraphRefType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_GraphRefType_description), "$simplify", $rt_wrapFunction0(oncius_GraphRefType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_GraphRefType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_GraphRefType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_GraphRefType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_GraphRefType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_GraphRefType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_GraphRefType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_GraphRefType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_GraphRefType_covariant), "$invariant", $rt_wrapFunction0(oncius_GraphRefType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_GraphRefType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_GraphRefType_isNullable), "$position", $rt_wrapFunction0(oncius_GraphRefType_position), "$parentType", $rt_wrapFunction0(oncius_GraphRefType_parentType), "$toString", $rt_wrapFunction0(oncius_GraphRefType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_GraphRefType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_GraphRefType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_GraphRefType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_GraphRefType_withPosition), "$productArity", $rt_wrapFunction0(oncius_GraphRefType_productArity), "$productElement", $rt_wrapFunction1(oncius_GraphRefType_productElement), "$productIterator", $rt_wrapFunction0(oncius_GraphRefType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_GraphRefType_hashCode), "$equals", $rt_wrapFunction1(oncius_GraphRefType_equals), "$dup", $rt_wrapFunction1(oncius_GraphRefType_dup)], -oncius_ListType, "ListType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_ListType_description), "$covariant", $rt_wrapFunction0(oncius_ListType_covariant), "$invariant", $rt_wrapFunction0(oncius_ListType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_ListType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_ListType_isNullable), +oncius_ListType, "ListType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_ListType_description), "$covariant", $rt_wrapFunction0(oncius_ListType_covariant), "$invariant", $rt_wrapFunction0(oncius_ListType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_ListType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_ListType_isNullable), "$position", $rt_wrapFunction0(oncius_ListType_position), "$parentType", $rt_wrapFunction0(oncius_ListType_parentType), "$coercibleTo", $rt_wrapFunction0(oncius_ListType_coercibleTo), "$toString", $rt_wrapFunction0(oncius_ListType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_ListType_toCypherTypeString), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_ListType_normalizedCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_ListType_sortOrder), "$simplify", $rt_wrapFunction0(oncius_ListType_simplify), "$isSubtypeOf", $rt_wrapFunction1(oncius_ListType_isSubtypeOf), "$withIsNullable1", $rt_wrapFunction1(oncius_ListType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_ListType_withPosition), "$isAssignableFrom0", $rt_wrapFunction1(oncius_ListType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_ListType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_ListType_greatestLowerBound), "$productArity", $rt_wrapFunction0(oncius_ListType_productArity), "$productElement", $rt_wrapFunction1(oncius_ListType_productElement), "$productIterator", $rt_wrapFunction0(oncius_ListType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_ListType_hashCode), "$equals", $rt_wrapFunction1(oncius_ListType_equals), "$dup", $rt_wrapFunction1(oncius_ListType_dup)], onciu_InputPosition$, 0, jl_Object, [], 4, 3, 0, onciu_InputPosition$_$callClinit, 0, -sci_BitmapIndexedSetNode, "BitmapIndexedSetNode", 22, sci_SetNode, [], 4, 3, 0, 0, ["$size", $rt_wrapFunction0(sci_BitmapIndexedSetNode_size), "$cachedJavaKeySetHashCode", $rt_wrapFunction0(sci_BitmapIndexedSetNode_cachedJavaKeySetHashCode), "$getPayload", $rt_wrapFunction1(sci_BitmapIndexedSetNode_getPayload), "$getHash", $rt_wrapFunction1(sci_BitmapIndexedSetNode_getHash), "$contains2", $rt_wrapFunction4(sci_BitmapIndexedSetNode_contains), "$hasPayload", $rt_wrapFunction0(sci_BitmapIndexedSetNode_hasPayload), +sci_BitmapIndexedSetNode, "BitmapIndexedSetNode", 20, sci_SetNode, [], 4, 3, 0, 0, ["$size", $rt_wrapFunction0(sci_BitmapIndexedSetNode_size), "$cachedJavaKeySetHashCode", $rt_wrapFunction0(sci_BitmapIndexedSetNode_cachedJavaKeySetHashCode), "$getPayload", $rt_wrapFunction1(sci_BitmapIndexedSetNode_getPayload), "$getHash", $rt_wrapFunction1(sci_BitmapIndexedSetNode_getHash), "$contains2", $rt_wrapFunction4(sci_BitmapIndexedSetNode_contains), "$hasPayload", $rt_wrapFunction0(sci_BitmapIndexedSetNode_hasPayload), "$payloadArity", $rt_wrapFunction0(sci_BitmapIndexedSetNode_payloadArity), "$hasNodes", $rt_wrapFunction0(sci_BitmapIndexedSetNode_hasNodes), "$nodeArity", $rt_wrapFunction0(sci_BitmapIndexedSetNode_nodeArity), "$foreach", $rt_wrapFunction1(sci_BitmapIndexedSetNode_foreach), "$equals", $rt_wrapFunction1(sci_BitmapIndexedSetNode_equals), "$hashCode", $rt_wrapFunction0(sci_BitmapIndexedSetNode_hashCode), "$foreachWithHash", $rt_wrapFunction1(sci_BitmapIndexedSetNode_foreachWithHash), "$foreachWithHashWhile", $rt_wrapFunction1(sci_BitmapIndexedSetNode_foreachWithHashWhile), -"$concat5", $rt_wrapFunction2(sci_BitmapIndexedSetNode_concat0), "$copy40", $rt_wrapFunction0(sci_BitmapIndexedSetNode_copy0), "$diff1", $rt_wrapFunction2(sci_BitmapIndexedSetNode_diff0), "$filterImpl2", $rt_wrapFunction2(sci_BitmapIndexedSetNode_filterImpl0), "$removed1", $rt_wrapFunction4(sci_BitmapIndexedSetNode_removed0), "$updated3", $rt_wrapFunction4(sci_BitmapIndexedSetNode_updated0), "$getNode0", $rt_wrapFunction1(sci_BitmapIndexedSetNode_getNode0)], -sci_HashCollisionSetNode, "HashCollisionSetNode", 22, sci_SetNode, [], 4, 3, 0, 0, ["$contains2", $rt_wrapFunction4(sci_HashCollisionSetNode_contains), "$updated3", $rt_wrapFunction4(sci_HashCollisionSetNode_updated), "$removed1", $rt_wrapFunction4(sci_HashCollisionSetNode_removed), "$hasNodes", $rt_wrapFunction0(sci_HashCollisionSetNode_hasNodes), "$nodeArity", $rt_wrapFunction0(sci_HashCollisionSetNode_nodeArity), "$hasPayload", $rt_wrapFunction0(sci_HashCollisionSetNode_hasPayload), "$payloadArity", $rt_wrapFunction0(sci_HashCollisionSetNode_payloadArity), +"$concat5", $rt_wrapFunction2(sci_BitmapIndexedSetNode_concat0), "$copy46", $rt_wrapFunction0(sci_BitmapIndexedSetNode_copy0), "$diff1", $rt_wrapFunction2(sci_BitmapIndexedSetNode_diff0), "$filterImpl2", $rt_wrapFunction2(sci_BitmapIndexedSetNode_filterImpl0), "$removed1", $rt_wrapFunction4(sci_BitmapIndexedSetNode_removed0), "$updated3", $rt_wrapFunction4(sci_BitmapIndexedSetNode_updated0), "$getNode0", $rt_wrapFunction1(sci_BitmapIndexedSetNode_getNode0)], +sci_HashCollisionSetNode, "HashCollisionSetNode", 20, sci_SetNode, [], 4, 3, 0, 0, ["$contains2", $rt_wrapFunction4(sci_HashCollisionSetNode_contains), "$updated3", $rt_wrapFunction4(sci_HashCollisionSetNode_updated), "$removed1", $rt_wrapFunction4(sci_HashCollisionSetNode_removed), "$hasNodes", $rt_wrapFunction0(sci_HashCollisionSetNode_hasNodes), "$nodeArity", $rt_wrapFunction0(sci_HashCollisionSetNode_nodeArity), "$hasPayload", $rt_wrapFunction0(sci_HashCollisionSetNode_hasPayload), "$payloadArity", $rt_wrapFunction0(sci_HashCollisionSetNode_payloadArity), "$getPayload", $rt_wrapFunction1(sci_HashCollisionSetNode_getPayload), "$getHash", $rt_wrapFunction1(sci_HashCollisionSetNode_getHash), "$size", $rt_wrapFunction0(sci_HashCollisionSetNode_size), "$foreach", $rt_wrapFunction1(sci_HashCollisionSetNode_foreach), "$cachedJavaKeySetHashCode", $rt_wrapFunction0(sci_HashCollisionSetNode_cachedJavaKeySetHashCode), "$filterImpl2", $rt_wrapFunction2(sci_HashCollisionSetNode_filterImpl), "$diff1", $rt_wrapFunction2(sci_HashCollisionSetNode_diff), "$equals", $rt_wrapFunction1(sci_HashCollisionSetNode_equals), -"$hashCode", $rt_wrapFunction0(sci_HashCollisionSetNode_hashCode), "$concat5", $rt_wrapFunction2(sci_HashCollisionSetNode_concat), "$foreachWithHash", $rt_wrapFunction1(sci_HashCollisionSetNode_foreachWithHash), "$foreachWithHashWhile", $rt_wrapFunction1(sci_HashCollisionSetNode_foreachWithHashWhile), "$copy40", $rt_wrapFunction0(sci_HashCollisionSetNode_copy), "$getNode0", $rt_wrapFunction1(sci_HashCollisionSetNode_getNode)], -sci_Node$, 0, jl_Object, [], 4, 3, 0, 0, 0, +"$hashCode", $rt_wrapFunction0(sci_HashCollisionSetNode_hashCode), "$concat5", $rt_wrapFunction2(sci_HashCollisionSetNode_concat), "$foreachWithHash", $rt_wrapFunction1(sci_HashCollisionSetNode_foreachWithHash), "$foreachWithHashWhile", $rt_wrapFunction1(sci_HashCollisionSetNode_foreachWithHashWhile), "$copy46", $rt_wrapFunction0(sci_HashCollisionSetNode_copy), "$getNode0", $rt_wrapFunction1(sci_HashCollisionSetNode_getNode)]]); +$rt_metadata([sci_Node$, 0, jl_Object, [], 4, 3, 0, 0, 0, sc_BuildFromLowPriority2$$anon$11, 0, jl_Object, [sc_BuildFrom], 4, 3, 0, 0, 0, -jnc_CodingErrorAction, 0, jl_Object, [], 0, 3, 0, jnc_CodingErrorAction_$callClinit, 0, +jnc_CodingErrorAction, 0, jl_Object, [], 0, 3, 0, 0, 0, jnc_CharsetDecoder, 0, jl_Object, [], 1, 3, 0, 0, 0, -sr_BoxedUnit, "BoxedUnit", 20, jl_Object, [ji_Serializable], 4, 3, [0,0,0], 0, ["$equals", $rt_wrapFunction1(sr_BoxedUnit_equals), "$hashCode", $rt_wrapFunction0(sr_BoxedUnit_hashCode), "$toString", $rt_wrapFunction0(sr_BoxedUnit_toString)], -sci_ArraySeq$ofInt, "ArraySeq$ofInt", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofInt_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofInt_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofInt_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofInt_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofInt_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofInt_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofInt_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofInt_prepended0), -"$appended", $rt_wrapFunction1(sci_ArraySeq$ofInt_appended0), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofInt_sorted0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofInt_apply1), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofInt_apply0), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofInt_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofInt_unsafeArray)]]); -$rt_metadata([sci_ArraySeq$ofDouble, "ArraySeq$ofDouble", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofDouble_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofDouble_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofDouble_equals), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofDouble_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofDouble_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofDouble_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofDouble_prepended0), +sr_BoxedUnit, "BoxedUnit", 18, jl_Object, [ji_Serializable], 4, 3, [0,0,0], 0, ["$equals", $rt_wrapFunction1(sr_BoxedUnit_equals), "$hashCode", $rt_wrapFunction0(sr_BoxedUnit_hashCode), "$toString", $rt_wrapFunction0(sr_BoxedUnit_toString)], +sci_ArraySeq$ofInt, "ArraySeq$ofInt", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofInt_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofInt_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofInt_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofInt_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofInt_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofInt_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofInt_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofInt_prepended0), +"$appended", $rt_wrapFunction1(sci_ArraySeq$ofInt_appended0), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofInt_sorted0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofInt_apply1), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofInt_apply0), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofInt_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofInt_unsafeArray)], +sci_ArraySeq$ofDouble, "ArraySeq$ofDouble", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofDouble_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofDouble_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofDouble_equals), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofDouble_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofDouble_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofDouble_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofDouble_prepended0), "$appended", $rt_wrapFunction1(sci_ArraySeq$ofDouble_appended0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofDouble_apply1), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofDouble_apply0), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofDouble_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofDouble_unsafeArray)], -sci_ArraySeq$ofLong, "ArraySeq$ofLong", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofLong_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofLong_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofLong_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofLong_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofLong_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofLong_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofLong_prepended), "$prepended", +sci_ArraySeq$ofLong, "ArraySeq$ofLong", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofLong_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofLong_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofLong_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofLong_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofLong_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofLong_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofLong_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofLong_prepended0), "$appended", $rt_wrapFunction1(sci_ArraySeq$ofLong_appended0), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofLong_sorted0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofLong_apply0), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofLong_apply1), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofLong_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofLong_unsafeArray)], -sci_ArraySeq$ofFloat, "ArraySeq$ofFloat", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofFloat_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofFloat_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofFloat_equals), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofFloat_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofFloat_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofFloat_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofFloat_prepended0), +sci_ArraySeq$ofFloat, "ArraySeq$ofFloat", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofFloat_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofFloat_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofFloat_equals), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofFloat_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofFloat_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofFloat_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofFloat_prepended0), "$appended", $rt_wrapFunction1(sci_ArraySeq$ofFloat_appended0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofFloat_apply0), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofFloat_apply1), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofFloat_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofFloat_unsafeArray)], -sci_ArraySeq$ofChar, "ArraySeq$ofChar", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofChar_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofChar_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofChar_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofChar_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofChar_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofChar_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofChar_prepended), "$addString", +sci_ArraySeq$ofChar, "ArraySeq$ofChar", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofChar_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofChar_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofChar_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofChar_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofChar_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofChar_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofChar_prepended), "$addString", $rt_wrapFunction4(sci_ArraySeq$ofChar_addString), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofChar_prepended0), "$appended", $rt_wrapFunction1(sci_ArraySeq$ofChar_appended0), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofChar_sorted0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofChar_apply1), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofChar_apply0), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofChar_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofChar_unsafeArray)], -sci_ArraySeq$ofByte, "ArraySeq$ofByte", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofByte_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofByte_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofByte_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofByte_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofByte_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofByte_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofByte_prepended), "$prepended", +sci_ArraySeq$ofByte, "ArraySeq$ofByte", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofByte_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofByte_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofByte_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofByte_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofByte_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofByte_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofByte_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofByte_prepended0), "$appended", $rt_wrapFunction1(sci_ArraySeq$ofByte_appended0), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofByte_sorted0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofByte_apply1), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofByte_apply0), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofByte_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofByte_unsafeArray)], -sci_ArraySeq$ofShort, "ArraySeq$ofShort", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofShort_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofShort_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofShort_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofShort_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofShort_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofShort_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofShort_prepended), "$prepended", +sci_ArraySeq$ofShort, "ArraySeq$ofShort", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofShort_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofShort_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofShort_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofShort_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofShort_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofShort_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofShort_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofShort_prepended0), "$appended", $rt_wrapFunction1(sci_ArraySeq$ofShort_appended0), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofShort_sorted0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofShort_apply0), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofShort_apply1), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofShort_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofShort_unsafeArray)], -sci_ArraySeq$ofBoolean, "ArraySeq$ofBoolean", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofBoolean_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofBoolean_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofBoolean_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_prepended), +sci_ArraySeq$ofBoolean, "ArraySeq$ofBoolean", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofBoolean_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofBoolean_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_equals), "$sorted0", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_sorted), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofBoolean_iterator), "$appended0", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_appended), "$prepended1", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_prepended), "$prepended", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_prepended0), "$appended", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_appended0), "$sorted", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_sorted0), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_apply1), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofBoolean_apply0), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofBoolean_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofBoolean_unsafeArray)], -sci_ArraySeq$ofUnit, "ArraySeq$ofUnit", 22, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofUnit_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofUnit_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofUnit_equals), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofUnit_iterator), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofUnit_apply), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofUnit_apply0), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofUnit_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofUnit_unsafeArray)], +sci_ArraySeq$ofUnit, "ArraySeq$ofUnit", 20, sci_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sci_ArraySeq$ofUnit_length), "$hashCode", $rt_wrapFunction0(sci_ArraySeq$ofUnit_hashCode), "$equals", $rt_wrapFunction1(sci_ArraySeq$ofUnit_equals), "$iterator0", $rt_wrapFunction0(sci_ArraySeq$ofUnit_iterator), "$apply2", $rt_wrapFunction1(sci_ArraySeq$ofUnit_apply), "$apply1", $rt_wrapFunction1(sci_ArraySeq$ofUnit_apply0), "$elemTag", $rt_wrapFunction0(sci_ArraySeq$ofUnit_elemTag), "$unsafeArray", $rt_wrapFunction0(sci_ArraySeq$ofUnit_unsafeArray)], sc_StrictOptimizedSeqFactory, 0, jl_Object, [sc_SeqFactory], 3, 3, 0, 0, 0, sci_Vector$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, sci_Vector$_$callClinit, ["$apply28", $rt_wrapFunction1(sci_Vector$_apply), "$newBuilder", $rt_wrapFunction0(sci_Vector$_newBuilder), "$from0", $rt_wrapFunction1(sci_Vector$_from0), "$empty0", $rt_wrapFunction0(sci_Vector$_empty0)], sci_Vector, 0, sci_AbstractSeq, [sci_IndexedSeq, sci_StrictOptimizedSeqOps, scg_DefaultSerializable], 1, 3, 0, 0, ["$scala$collection$immutable$StrictOptimizedSeqOps$$super$sorted", $rt_wrapFunction1(sci_Vector_scala$collection$immutable$StrictOptimizedSeqOps$$super$sorted), "$distinctBy", $rt_wrapFunction1(sci_Vector_distinctBy), "$sorted", $rt_wrapFunction1(sci_Vector_sorted), "$intersect1", $rt_wrapFunction1(sci_Vector_intersect), "$partition", $rt_wrapFunction1(sci_Vector_partition), "$flatMap", $rt_wrapFunction1(sci_Vector_flatMap), "$collect", $rt_wrapFunction1(sci_Vector_collect), "$flatten", $rt_wrapFunction1(sci_Vector_flatten), "$zip1", $rt_wrapFunction1(sci_Vector_zip), "$zipWithIndex", $rt_wrapFunction0(sci_Vector_zipWithIndex), "$filter1", $rt_wrapFunction1(sci_Vector_filter), "$filterNot0", $rt_wrapFunction1(sci_Vector_filterNot), "$scala$collection$immutable$IndexedSeq$$super$canEqual", $rt_wrapFunction1(sci_Vector_scala$collection$immutable$IndexedSeq$$super$canEqual), "$scala$collection$immutable$IndexedSeq$$super$sameElements", $rt_wrapFunction1(sci_Vector_scala$collection$immutable$IndexedSeq$$super$sameElements), "$toIndexedSeq", $rt_wrapFunction0(sci_Vector_toIndexedSeq), "$canEqual", $rt_wrapFunction1(sci_Vector_canEqual), "$sameElements", $rt_wrapFunction1(sci_Vector_sameElements), "$stringPrefix", $rt_wrapFunction0(sci_Vector_stringPrefix), "$reverseIterator", $rt_wrapFunction0(sci_Vector_reverseIterator), "$view0", $rt_wrapFunction0(sci_Vector_view0), "$reversed", $rt_wrapFunction0(sci_Vector_reversed), "$reverse1", $rt_wrapFunction0(sci_Vector_reverse), "$headOption", $rt_wrapFunction0(sci_Vector_headOption), "$lengthCompare", $rt_wrapFunction1(sci_Vector_lengthCompare), "$knownSize", $rt_wrapFunction0(sci_Vector_knownSize), "$length", $rt_wrapFunction0(sci_Vector_length), "$iterator0", $rt_wrapFunction0(sci_Vector_iterator), "$className", $rt_wrapFunction0(sci_Vector_className), "$copyToArray", $rt_wrapFunction3(sci_Vector_copyToArray), "$toVector", $rt_wrapFunction0(sci_Vector_toVector), "$applyPreferredMaxLength", $rt_wrapFunction0(sci_Vector_applyPreferredMaxLength), -"$head", $rt_wrapFunction0(sci_Vector_head), "$last", $rt_wrapFunction0(sci_Vector_last), "$foreach", $rt_wrapFunction1(sci_Vector_foreach), "$view1", $rt_wrapFunction0(sci_Vector_view), "$dropRight", $rt_wrapFunction1(sci_Vector_dropRight), "$drop", $rt_wrapFunction1(sci_Vector_drop), "$appendedAll", $rt_wrapFunction1(sci_Vector_appendedAll), "$filterImpl", $rt_wrapFunction2(sci_Vector_filterImpl0), "$iterableFactory", $rt_wrapFunction0(sci_Vector_iterableFactory0)], +"$head", $rt_wrapFunction0(sci_Vector_head), "$last", $rt_wrapFunction0(sci_Vector_last), "$foreach", $rt_wrapFunction1(sci_Vector_foreach), "$view1", $rt_wrapFunction0(sci_Vector_view), "$dropRight0", $rt_wrapFunction1(sci_Vector_dropRight), "$drop", $rt_wrapFunction1(sci_Vector_drop), "$appendedAll", $rt_wrapFunction1(sci_Vector_appendedAll), "$filterImpl", $rt_wrapFunction2(sci_Vector_filterImpl0), "$iterableFactory", $rt_wrapFunction0(sci_Vector_iterableFactory0)], ji_ByteArrayOutputStream, 0, ji_OutputStream, [], 0, 3, 0, 0, 0, jn_Buffer, 0, jl_Object, [], 1, 3, 0, 0, 0, jn_ByteBuffer, 0, jn_Buffer, [jl_Comparable], 1, 3, 0, 0, 0, jn_CharBuffer, 0, jn_Buffer, [jl_Comparable, jl_Appendable, jl_CharSequence, jl_Readable], 1, 3, 0, 0, 0, s_package$, 0, jl_Object, [], 4, 3, 0, s_package$_$callClinit, 0, -onciu_InputPosition$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciu_InputPosition$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_InputPosition$$_clinit_$lambda$_0_0_apply)], sm_Ordering$IntOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, sm_Ordering$CachedReverse, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, sm_Ordering$Int$, 0, jl_Object, [sm_Ordering$IntOrdering, sm_Ordering$CachedReverse], 0, 3, 0, sm_Ordering$Int$_$callClinit, ["$lteq", $rt_wrapFunction2(sm_Ordering$Int$_lteq), "$gteq", $rt_wrapFunction2(sm_Ordering$Int$_gteq), "$lt", $rt_wrapFunction2(sm_Ordering$Int$_lt), "$max0", $rt_wrapFunction2(sm_Ordering$Int$_max), "$min0", $rt_wrapFunction2(sm_Ordering$Int$_min), "$on", $rt_wrapFunction1(sm_Ordering$Int$_on), "$compare2", $rt_wrapFunction2(sm_Ordering$Int$_compare)], sm_LowPriorityOrderingImplicits, 0, jl_Object, [], 3, 3, 0, 0, 0, sm_Ordering$, 0, jl_Object, [sm_LowPriorityOrderingImplicits, ji_Serializable], 4, 3, 0, 0, 0, onciu_InputPosition, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_InputPosition$Simple, "InputPosition$Simple", 54, jl_Object, [onciu_InputPosition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$withOffset", $rt_wrapFunction1(onciu_InputPosition$Simple_withOffset), "$toString", $rt_wrapFunction0(onciu_InputPosition$Simple_toString), "$offset", $rt_wrapFunction0(onciu_InputPosition$Simple_offset), "$line", $rt_wrapFunction0(onciu_InputPosition$Simple_line), "$column", $rt_wrapFunction0(onciu_InputPosition$Simple_column), "$productArity", $rt_wrapFunction0(onciu_InputPosition$Simple_productArity), +onciu_InputPosition$Simple, "InputPosition$Simple", 52, jl_Object, [onciu_InputPosition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$withOffset", $rt_wrapFunction1(onciu_InputPosition$Simple_withOffset), "$toString", $rt_wrapFunction0(onciu_InputPosition$Simple_toString), "$offset", $rt_wrapFunction0(onciu_InputPosition$Simple_offset), "$line", $rt_wrapFunction0(onciu_InputPosition$Simple_line), "$column", $rt_wrapFunction0(onciu_InputPosition$Simple_column), "$productArity", $rt_wrapFunction0(onciu_InputPosition$Simple_productArity), "$productElement", $rt_wrapFunction1(onciu_InputPosition$Simple_productElement), "$productIterator", $rt_wrapFunction0(onciu_InputPosition$Simple_productIterator), "$hashCode", $rt_wrapFunction0(onciu_InputPosition$Simple_hashCode), "$equals", $rt_wrapFunction1(onciu_InputPosition$Simple_equals)], scm_ArrayBuffer$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, 0, ["$apply28", $rt_wrapFunction1(scm_ArrayBuffer$_apply), "$newBuilder", $rt_wrapFunction0(scm_ArrayBuffer$_newBuilder), "$empty0", $rt_wrapFunction0(scm_ArrayBuffer$_empty), "$from0", $rt_wrapFunction1(scm_ArrayBuffer$_from)], -jl_CloneNotSupportedException, "CloneNotSupportedException", 14, jl_Exception, [], 0, 3, 0, 0, 0, +jl_CloneNotSupportedException, "CloneNotSupportedException", 12, jl_Exception, [], 0, 3, 0, 0, 0, sci_VectorImpl, 0, sci_Vector, [], 1, 3, 0, 0, 0, sci_BigVector, 0, sci_VectorImpl, [], 1, 3, 0, 0, 0, -sci_Vector0$, "Vector0$", 22, sci_BigVector, [], 4, 3, 0, sci_Vector0$_$callClinit, ["$updated1", $rt_wrapFunction2(sci_Vector0$_updated), "$appended1", $rt_wrapFunction1(sci_Vector0$_appended), "$prepended2", $rt_wrapFunction1(sci_Vector0$_prepended), "$init0", $rt_wrapFunction0(sci_Vector0$_init), "$slice00", $rt_wrapFunction2(sci_Vector0$_slice0), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector0$_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector0$_vectorSlice), "$equals", $rt_wrapFunction1(sci_Vector0$_equals), -"$appendedAll00", $rt_wrapFunction2(sci_Vector0$_appendedAll0), "$init1", $rt_wrapFunction0(sci_Vector0$_init0), "$tail", $rt_wrapFunction0(sci_Vector0$_tail), "$map", $rt_wrapFunction1(sci_Vector0$_map), "$prepended", $rt_wrapFunction1(sci_Vector0$_prepended0), "$appended", $rt_wrapFunction1(sci_Vector0$_appended0), "$apply2", $rt_wrapFunction1(sci_Vector0$_apply), "$apply1", $rt_wrapFunction1(sci_Vector0$_apply0)], -sci_VectorBuilder, "VectorBuilder", 22, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_VectorBuilder_sizeHint0), "$sizeHint0", $rt_wrapFunction2(sci_VectorBuilder_sizeHint), "$toString", $rt_wrapFunction0(sci_VectorBuilder_toString), "$result", $rt_wrapFunction0(sci_VectorBuilder_result0), "$addAll0", $rt_wrapFunction1(sci_VectorBuilder_addAll0), "$addOne", $rt_wrapFunction1(sci_VectorBuilder_addOne0)], -sci_Vector1, "Vector1", 22, sci_VectorImpl, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector1_apply), "$updated1", $rt_wrapFunction2(sci_Vector1_updated), "$appended1", $rt_wrapFunction1(sci_Vector1_appended), "$prepended2", $rt_wrapFunction1(sci_Vector1_prepended), "$slice00", $rt_wrapFunction2(sci_Vector1_slice0), "$init0", $rt_wrapFunction0(sci_Vector1_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector1_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector1_vectorSlice), "$appendedAll00", -$rt_wrapFunction2(sci_Vector1_appendedAll0), "$init1", $rt_wrapFunction0(sci_Vector1_init0), "$tail", $rt_wrapFunction0(sci_Vector1_tail), "$map", $rt_wrapFunction1(sci_Vector1_map), "$prepended", $rt_wrapFunction1(sci_Vector1_prepended0), "$appended", $rt_wrapFunction1(sci_Vector1_appended0), "$apply2", $rt_wrapFunction1(sci_Vector1_apply0)], -jl_ArrayIndexOutOfBoundsException, "ArrayIndexOutOfBoundsException", 14, jl_IndexOutOfBoundsException, [], 0, 3, 0, 0, 0, -sm_Ordering$$anon$5, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$max0", $rt_wrapFunction2(sm_Ordering$$anon$5_max), "$min0", $rt_wrapFunction2(sm_Ordering$$anon$5_min), "$on", $rt_wrapFunction1(sm_Ordering$$anon$5_on), "$compare2", $rt_wrapFunction2(sm_Ordering$$anon$5_compare), "$lt", $rt_wrapFunction2(sm_Ordering$$anon$5_lt), "$gteq", $rt_wrapFunction2(sm_Ordering$$anon$5_gteq), "$lteq", $rt_wrapFunction2(sm_Ordering$$anon$5_lteq)], -sci_NewVectorIterator, "NewVectorIterator", 22, jl_Object, [sc_Iterator, jl_Cloneable], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_NewVectorIterator_iterator), "$grouped", $rt_wrapFunction1(sci_NewVectorIterator_grouped), "$sliding0", $rt_wrapFunction2(sci_NewVectorIterator_sliding), "$indexWhere", $rt_wrapFunction2(sci_NewVectorIterator_indexWhere), "$isEmpty", $rt_wrapFunction0(sci_NewVectorIterator_isEmpty), "$filter", $rt_wrapFunction1(sci_NewVectorIterator_filter), "$filterImpl0", $rt_wrapFunction2(sci_NewVectorIterator_filterImpl), -"$distinctBy0", $rt_wrapFunction1(sci_NewVectorIterator_distinctBy), "$map5", $rt_wrapFunction1(sci_NewVectorIterator_map), "$flatMap2", $rt_wrapFunction1(sci_NewVectorIterator_flatMap), "$concat0", $rt_wrapFunction1(sci_NewVectorIterator_concat), "$zipAll0", $rt_wrapFunction3(sci_NewVectorIterator_zipAll), "$sameElements", $rt_wrapFunction1(sci_NewVectorIterator_sameElements), "$toString", $rt_wrapFunction0(sci_NewVectorIterator_toString), "$foreach", $rt_wrapFunction1(sci_NewVectorIterator_foreach), "$exists", -$rt_wrapFunction1(sci_NewVectorIterator_exists), "$find3", $rt_wrapFunction1(sci_NewVectorIterator_find), "$foldLeft", $rt_wrapFunction2(sci_NewVectorIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_NewVectorIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_NewVectorIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_NewVectorIterator_copyToArray0), "$copyToArray0", $rt_wrapFunction2(sci_NewVectorIterator_copyToArray1), "$to0", $rt_wrapFunction1(sci_NewVectorIterator_to), "$toList", $rt_wrapFunction0(sci_NewVectorIterator_toList), -"$toSeq", $rt_wrapFunction0(sci_NewVectorIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_NewVectorIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_NewVectorIterator_knownSize), "$hasNext", $rt_wrapFunction0(sci_NewVectorIterator_hasNext), "$next", $rt_wrapFunction0(sci_NewVectorIterator_next), "$drop1", $rt_wrapFunction1(sci_NewVectorIterator_drop), "$take0", $rt_wrapFunction1(sci_NewVectorIterator_take), "$copyToArray", $rt_wrapFunction3(sci_NewVectorIterator_copyToArray)], +sci_Vector0$, "Vector0$", 20, sci_BigVector, [], 4, 3, 0, sci_Vector0$_$callClinit, ["$updated1", $rt_wrapFunction2(sci_Vector0$_updated), "$appended1", $rt_wrapFunction1(sci_Vector0$_appended), "$prepended2", $rt_wrapFunction1(sci_Vector0$_prepended), "$init1", $rt_wrapFunction0(sci_Vector0$_init), "$slice00", $rt_wrapFunction2(sci_Vector0$_slice0), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector0$_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector0$_vectorSlice), "$equals", $rt_wrapFunction1(sci_Vector0$_equals), +"$appendedAll00", $rt_wrapFunction2(sci_Vector0$_appendedAll0), "$tail", $rt_wrapFunction0(sci_Vector0$_tail), "$map", $rt_wrapFunction1(sci_Vector0$_map), "$prepended", $rt_wrapFunction1(sci_Vector0$_prepended0), "$appended", $rt_wrapFunction1(sci_Vector0$_appended0), "$apply2", $rt_wrapFunction1(sci_Vector0$_apply), "$apply1", $rt_wrapFunction1(sci_Vector0$_apply0)], +sci_VectorBuilder, "VectorBuilder", 20, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_VectorBuilder_sizeHint0), "$sizeHint0", $rt_wrapFunction2(sci_VectorBuilder_sizeHint), "$toString", $rt_wrapFunction0(sci_VectorBuilder_toString), "$result", $rt_wrapFunction0(sci_VectorBuilder_result0), "$addAll0", $rt_wrapFunction1(sci_VectorBuilder_addAll0), "$addOne", $rt_wrapFunction1(sci_VectorBuilder_addOne0)], +sci_Vector1, "Vector1", 20, sci_VectorImpl, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector1_apply), "$updated1", $rt_wrapFunction2(sci_Vector1_updated), "$appended1", $rt_wrapFunction1(sci_Vector1_appended), "$prepended2", $rt_wrapFunction1(sci_Vector1_prepended), "$slice00", $rt_wrapFunction2(sci_Vector1_slice0), "$init1", $rt_wrapFunction0(sci_Vector1_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector1_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector1_vectorSlice), "$appendedAll00", +$rt_wrapFunction2(sci_Vector1_appendedAll0), "$tail", $rt_wrapFunction0(sci_Vector1_tail), "$map", $rt_wrapFunction1(sci_Vector1_map), "$prepended", $rt_wrapFunction1(sci_Vector1_prepended0), "$appended", $rt_wrapFunction1(sci_Vector1_appended0), "$apply2", $rt_wrapFunction1(sci_Vector1_apply0)], +jl_ArrayIndexOutOfBoundsException, "ArrayIndexOutOfBoundsException", 12, jl_IndexOutOfBoundsException, [], 0, 3, 0, 0, 0, +sm_Ordering$$anon$5, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$max0", $rt_wrapFunction2(sm_Ordering$$anon$5_max), "$min0", $rt_wrapFunction2(sm_Ordering$$anon$5_min), "$on", $rt_wrapFunction1(sm_Ordering$$anon$5_on), "$compare2", $rt_wrapFunction2(sm_Ordering$$anon$5_compare), "$gteq", $rt_wrapFunction2(sm_Ordering$$anon$5_gteq), "$lteq", $rt_wrapFunction2(sm_Ordering$$anon$5_lteq)], +sci_NewVectorIterator, "NewVectorIterator", 20, jl_Object, [sc_Iterator, jl_Cloneable], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_NewVectorIterator_iterator), "$grouped", $rt_wrapFunction1(sci_NewVectorIterator_grouped), "$sliding0", $rt_wrapFunction2(sci_NewVectorIterator_sliding), "$indexWhere", $rt_wrapFunction2(sci_NewVectorIterator_indexWhere), "$isEmpty", $rt_wrapFunction0(sci_NewVectorIterator_isEmpty), "$filter", $rt_wrapFunction1(sci_NewVectorIterator_filter), "$filterImpl0", $rt_wrapFunction2(sci_NewVectorIterator_filterImpl), +"$collect2", $rt_wrapFunction1(sci_NewVectorIterator_collect), "$distinctBy0", $rt_wrapFunction1(sci_NewVectorIterator_distinctBy), "$map5", $rt_wrapFunction1(sci_NewVectorIterator_map), "$flatMap2", $rt_wrapFunction1(sci_NewVectorIterator_flatMap), "$concat0", $rt_wrapFunction1(sci_NewVectorIterator_concat), "$zipAll0", $rt_wrapFunction3(sci_NewVectorIterator_zipAll), "$sameElements", $rt_wrapFunction1(sci_NewVectorIterator_sameElements), "$toString", $rt_wrapFunction0(sci_NewVectorIterator_toString), "$foreach", +$rt_wrapFunction1(sci_NewVectorIterator_foreach), "$exists", $rt_wrapFunction1(sci_NewVectorIterator_exists), "$find2", $rt_wrapFunction1(sci_NewVectorIterator_find), "$foldLeft", $rt_wrapFunction2(sci_NewVectorIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_NewVectorIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_NewVectorIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_NewVectorIterator_copyToArray0), "$copyToArray0", $rt_wrapFunction2(sci_NewVectorIterator_copyToArray1), "$to0", $rt_wrapFunction1(sci_NewVectorIterator_to), +"$toList", $rt_wrapFunction0(sci_NewVectorIterator_toList), "$toSeq", $rt_wrapFunction0(sci_NewVectorIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_NewVectorIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_NewVectorIterator_knownSize), "$hasNext", $rt_wrapFunction0(sci_NewVectorIterator_hasNext), "$next", $rt_wrapFunction0(sci_NewVectorIterator_next), "$drop1", $rt_wrapFunction1(sci_NewVectorIterator_drop), "$take0", $rt_wrapFunction1(sci_NewVectorIterator_take), "$copyToArray", $rt_wrapFunction3(sci_NewVectorIterator_copyToArray)], jn_ByteBufferImpl, 0, jn_ByteBuffer, [], 0, 0, 0, 0, 0, jn_CharBufferImpl, 0, jn_CharBuffer, [], 1, 0, 0, 0, 0, jn_CharBufferOverArray, 0, jn_CharBufferImpl, [], 0, 0, 0, 0, 0, @@ -359794,14 +287459,14 @@ sc_Iterable$, 0, sc_IterableFactory$Delegate, [], 4, 3, 0, sc_Iterable$_$callCli sci_Seq$, 0, sc_SeqFactory$Delegate, [], 4, 3, 0, sci_Seq$_$callClinit, ["$from0", $rt_wrapFunction1(sci_Seq$_from0)], sci_IndexedSeq$, 0, sc_SeqFactory$Delegate, [], 4, 3, 0, sci_IndexedSeq$_$callClinit, 0, sc_Iterator$, 0, jl_Object, [sc_IterableFactory], 4, 3, 0, 0, 0, -sci_List$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, sci_List$_$callClinit, ["$apply28", $rt_wrapFunction1(sci_List$_apply), "$newBuilder", $rt_wrapFunction0(sci_List$_newBuilder), "$empty0", $rt_wrapFunction0(sci_List$_empty0), "$from0", $rt_wrapFunction1(sci_List$_from)], -sci_$colon$colon$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +sci_List$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, sci_List$_$callClinit, ["$apply28", $rt_wrapFunction1(sci_List$_apply), "$newBuilder", $rt_wrapFunction0(sci_List$_newBuilder), "$empty0", $rt_wrapFunction0(sci_List$_empty0), "$from0", $rt_wrapFunction1(sci_List$_from)]]); +$rt_metadata([sci_$colon$colon$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, sc_package$$plus$colon$, 0, jl_Object, [], 0, 3, 0, 0, 0, sc_package$$colon$plus$, 0, jl_Object, [], 0, 3, 0, 0, 0, sci_Stream$, 0, jl_Object, [sc_SeqFactory], 132, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(sci_Stream$_newBuilder), "$from0", $rt_wrapFunction1(sci_Stream$_from0)], sci_LazyList$, 0, jl_Object, [sc_SeqFactory], 4, 3, 0, sci_LazyList$_$callClinit, ["$newBuilder", $rt_wrapFunction0(sci_LazyList$_newBuilder), "$from0", $rt_wrapFunction1(sci_LazyList$_from1)], -scm_StringBuilder$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0]); -$rt_metadata([sci_Range$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +scm_StringBuilder$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +sci_Range$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, sm_BigDecimal$, 0, jl_Object, [ji_Serializable], 4, 3, 0, sm_BigDecimal$_$callClinit, 0, sm_BigInt$, 0, jl_Object, [ji_Serializable], 4, 3, 0, sm_BigInt$_$callClinit, 0, sm_LowPriorityEquiv, 0, jl_Object, [], 3, 3, 0, 0, 0, @@ -359816,30 +287481,30 @@ su_Right$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, jl_SecurityException, 0, jl_RuntimeException, [], 0, 3, 0, 0, 0, sci_VectorStatics$, 0, jl_Object, [], 4, 3, 0, 0, 0, sci_VectorBuilder$addVector$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_VectorBuilder$addVector$lambda$_22_0_apply)], -sci_Vector2, "Vector2", 22, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector2_apply), "$updated1", $rt_wrapFunction2(sci_Vector2_updated), "$appended1", $rt_wrapFunction1(sci_Vector2_appended), "$prepended2", $rt_wrapFunction1(sci_Vector2_prepended), "$slice00", $rt_wrapFunction2(sci_Vector2_slice0), "$init0", $rt_wrapFunction0(sci_Vector2_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector2_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector2_vectorSlice), "$appendedAll00", -$rt_wrapFunction2(sci_Vector2_appendedAll0), "$init1", $rt_wrapFunction0(sci_Vector2_init0), "$tail", $rt_wrapFunction0(sci_Vector2_tail), "$map", $rt_wrapFunction1(sci_Vector2_map), "$prepended", $rt_wrapFunction1(sci_Vector2_prepended0), "$appended", $rt_wrapFunction1(sci_Vector2_appended0), "$apply2", $rt_wrapFunction1(sci_Vector2_apply0)], -sci_Vector3, "Vector3", 22, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector3_apply), "$updated1", $rt_wrapFunction2(sci_Vector3_updated), "$appended1", $rt_wrapFunction1(sci_Vector3_appended), "$prepended2", $rt_wrapFunction1(sci_Vector3_prepended), "$slice00", $rt_wrapFunction2(sci_Vector3_slice0), "$init0", $rt_wrapFunction0(sci_Vector3_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector3_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector3_vectorSlice), "$appendedAll00", -$rt_wrapFunction2(sci_Vector3_appendedAll0), "$init1", $rt_wrapFunction0(sci_Vector3_init0), "$tail", $rt_wrapFunction0(sci_Vector3_tail), "$map", $rt_wrapFunction1(sci_Vector3_map0), "$prepended", $rt_wrapFunction1(sci_Vector3_prepended0), "$appended", $rt_wrapFunction1(sci_Vector3_appended0), "$apply2", $rt_wrapFunction1(sci_Vector3_apply0)], -sci_Vector4, "Vector4", 22, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector4_apply), "$updated1", $rt_wrapFunction2(sci_Vector4_updated), "$appended1", $rt_wrapFunction1(sci_Vector4_appended), "$prepended2", $rt_wrapFunction1(sci_Vector4_prepended), "$slice00", $rt_wrapFunction2(sci_Vector4_slice0), "$init0", $rt_wrapFunction0(sci_Vector4_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector4_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector4_vectorSlice), "$appendedAll00", -$rt_wrapFunction2(sci_Vector4_appendedAll0), "$init1", $rt_wrapFunction0(sci_Vector4_init0), "$tail", $rt_wrapFunction0(sci_Vector4_tail), "$map", $rt_wrapFunction1(sci_Vector4_map0), "$prepended", $rt_wrapFunction1(sci_Vector4_prepended0), "$appended", $rt_wrapFunction1(sci_Vector4_appended0), "$apply2", $rt_wrapFunction1(sci_Vector4_apply0)], -sci_Vector5, "Vector5", 22, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector5_apply), "$updated1", $rt_wrapFunction2(sci_Vector5_updated), "$appended1", $rt_wrapFunction1(sci_Vector5_appended), "$prepended2", $rt_wrapFunction1(sci_Vector5_prepended), "$slice00", $rt_wrapFunction2(sci_Vector5_slice0), "$init0", $rt_wrapFunction0(sci_Vector5_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector5_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector5_vectorSlice), "$appendedAll00", -$rt_wrapFunction2(sci_Vector5_appendedAll0), "$init1", $rt_wrapFunction0(sci_Vector5_init0), "$tail", $rt_wrapFunction0(sci_Vector5_tail), "$map", $rt_wrapFunction1(sci_Vector5_map0), "$prepended", $rt_wrapFunction1(sci_Vector5_prepended0), "$appended", $rt_wrapFunction1(sci_Vector5_appended0), "$apply2", $rt_wrapFunction1(sci_Vector5_apply0)], -sci_Vector6, "Vector6", 22, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector6_apply), "$updated1", $rt_wrapFunction2(sci_Vector6_updated), "$appended1", $rt_wrapFunction1(sci_Vector6_appended), "$prepended2", $rt_wrapFunction1(sci_Vector6_prepended), "$slice00", $rt_wrapFunction2(sci_Vector6_slice0), "$init0", $rt_wrapFunction0(sci_Vector6_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector6_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector6_vectorSlice), "$appendedAll00", -$rt_wrapFunction2(sci_Vector6_appendedAll0), "$init1", $rt_wrapFunction0(sci_Vector6_init0), "$tail", $rt_wrapFunction0(sci_Vector6_tail), "$map", $rt_wrapFunction1(sci_Vector6_map), "$prepended", $rt_wrapFunction1(sci_Vector6_prepended0), "$appended", $rt_wrapFunction1(sci_Vector6_appended0), "$apply2", $rt_wrapFunction1(sci_Vector6_apply0)], +sci_Vector2, "Vector2", 20, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector2_apply), "$updated1", $rt_wrapFunction2(sci_Vector2_updated), "$appended1", $rt_wrapFunction1(sci_Vector2_appended), "$prepended2", $rt_wrapFunction1(sci_Vector2_prepended), "$slice00", $rt_wrapFunction2(sci_Vector2_slice0), "$init1", $rt_wrapFunction0(sci_Vector2_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector2_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector2_vectorSlice), "$appendedAll00", +$rt_wrapFunction2(sci_Vector2_appendedAll0), "$tail", $rt_wrapFunction0(sci_Vector2_tail), "$map", $rt_wrapFunction1(sci_Vector2_map), "$prepended", $rt_wrapFunction1(sci_Vector2_prepended0), "$appended", $rt_wrapFunction1(sci_Vector2_appended0), "$apply2", $rt_wrapFunction1(sci_Vector2_apply0)], +sci_Vector3, "Vector3", 20, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector3_apply), "$updated1", $rt_wrapFunction2(sci_Vector3_updated), "$appended1", $rt_wrapFunction1(sci_Vector3_appended), "$prepended2", $rt_wrapFunction1(sci_Vector3_prepended), "$slice00", $rt_wrapFunction2(sci_Vector3_slice0), "$init1", $rt_wrapFunction0(sci_Vector3_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector3_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector3_vectorSlice), "$appendedAll00", +$rt_wrapFunction2(sci_Vector3_appendedAll0), "$tail", $rt_wrapFunction0(sci_Vector3_tail), "$map", $rt_wrapFunction1(sci_Vector3_map0), "$prepended", $rt_wrapFunction1(sci_Vector3_prepended0), "$appended", $rt_wrapFunction1(sci_Vector3_appended0), "$apply2", $rt_wrapFunction1(sci_Vector3_apply0)], +sci_Vector4, "Vector4", 20, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector4_apply), "$updated1", $rt_wrapFunction2(sci_Vector4_updated), "$appended1", $rt_wrapFunction1(sci_Vector4_appended), "$prepended2", $rt_wrapFunction1(sci_Vector4_prepended), "$slice00", $rt_wrapFunction2(sci_Vector4_slice0), "$init1", $rt_wrapFunction0(sci_Vector4_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector4_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector4_vectorSlice), "$appendedAll00", +$rt_wrapFunction2(sci_Vector4_appendedAll0), "$tail", $rt_wrapFunction0(sci_Vector4_tail), "$map", $rt_wrapFunction1(sci_Vector4_map0), "$prepended", $rt_wrapFunction1(sci_Vector4_prepended0), "$appended", $rt_wrapFunction1(sci_Vector4_appended0), "$apply2", $rt_wrapFunction1(sci_Vector4_apply0)], +sci_Vector5, "Vector5", 20, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector5_apply), "$updated1", $rt_wrapFunction2(sci_Vector5_updated), "$appended1", $rt_wrapFunction1(sci_Vector5_appended), "$prepended2", $rt_wrapFunction1(sci_Vector5_prepended), "$slice00", $rt_wrapFunction2(sci_Vector5_slice0), "$init1", $rt_wrapFunction0(sci_Vector5_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector5_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector5_vectorSlice), "$appendedAll00", +$rt_wrapFunction2(sci_Vector5_appendedAll0), "$tail", $rt_wrapFunction0(sci_Vector5_tail), "$map", $rt_wrapFunction1(sci_Vector5_map0), "$prepended", $rt_wrapFunction1(sci_Vector5_prepended0), "$appended", $rt_wrapFunction1(sci_Vector5_appended0), "$apply2", $rt_wrapFunction1(sci_Vector5_apply0)], +sci_Vector6, "Vector6", 20, sci_BigVector, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Vector6_apply), "$updated1", $rt_wrapFunction2(sci_Vector6_updated), "$appended1", $rt_wrapFunction1(sci_Vector6_appended), "$prepended2", $rt_wrapFunction1(sci_Vector6_prepended), "$slice00", $rt_wrapFunction2(sci_Vector6_slice0), "$init1", $rt_wrapFunction0(sci_Vector6_init), "$vectorSliceCount", $rt_wrapFunction0(sci_Vector6_vectorSliceCount), "$vectorSlice", $rt_wrapFunction1(sci_Vector6_vectorSlice), "$appendedAll00", +$rt_wrapFunction2(sci_Vector6_appendedAll0), "$tail", $rt_wrapFunction0(sci_Vector6_tail), "$map", $rt_wrapFunction1(sci_Vector6_map), "$prepended", $rt_wrapFunction1(sci_Vector6_prepended0), "$appended", $rt_wrapFunction1(sci_Vector6_appended0), "$apply2", $rt_wrapFunction1(sci_Vector6_apply0)], sm_ScalaNumber, 0, jl_Number, [], 1, 3, 0, 0, 0, -jnc_IllegalCharsetNameException, "IllegalCharsetNameException", 10, jl_IllegalArgumentException, [], 0, 3, 0, 0, 0, +jnc_IllegalCharsetNameException, "IllegalCharsetNameException", 9, jl_IllegalArgumentException, [], 0, 3, 0, 0, 0, jn_ByteOrder, 0, jl_Object, [], 4, 3, 0, 0, 0, sc_AbstractIterator, 0, jl_Object, [sc_Iterator], 1, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_AbstractIterator_iterator), "$contains", $rt_wrapFunction1(sc_AbstractIterator_contains), "$grouped", $rt_wrapFunction1(sc_AbstractIterator_grouped), "$sliding0", $rt_wrapFunction2(sc_AbstractIterator_sliding), "$indexWhere", $rt_wrapFunction2(sc_AbstractIterator_indexWhere), "$isEmpty", $rt_wrapFunction0(sc_AbstractIterator_isEmpty), "$filter", $rt_wrapFunction1(sc_AbstractIterator_filter), "$filterImpl0", $rt_wrapFunction2(sc_AbstractIterator_filterImpl), "$collect2", $rt_wrapFunction1(sc_AbstractIterator_collect), "$distinctBy0", $rt_wrapFunction1(sc_AbstractIterator_distinctBy), "$map5", $rt_wrapFunction1(sc_AbstractIterator_map), "$flatMap2", $rt_wrapFunction1(sc_AbstractIterator_flatMap), "$concat0", $rt_wrapFunction1(sc_AbstractIterator_concat), "$take0", $rt_wrapFunction1(sc_AbstractIterator_take), "$drop1", $rt_wrapFunction1(sc_AbstractIterator_drop), "$sliceIterator", $rt_wrapFunction2(sc_AbstractIterator_sliceIterator), "$zipAll0", $rt_wrapFunction3(sc_AbstractIterator_zipAll), -"$sameElements", $rt_wrapFunction1(sc_AbstractIterator_sameElements), "$toString", $rt_wrapFunction0(sc_AbstractIterator_toString), "$foreach", $rt_wrapFunction1(sc_AbstractIterator_foreach), "$exists", $rt_wrapFunction1(sc_AbstractIterator_exists), "$find3", $rt_wrapFunction1(sc_AbstractIterator_find), "$foldLeft", $rt_wrapFunction2(sc_AbstractIterator_foldLeft), "$reduceLeft", $rt_wrapFunction1(sc_AbstractIterator_reduceLeft), "$nonEmpty", $rt_wrapFunction0(sc_AbstractIterator_nonEmpty), "$size", $rt_wrapFunction0(sc_AbstractIterator_size), +"$sameElements", $rt_wrapFunction1(sc_AbstractIterator_sameElements), "$toString", $rt_wrapFunction0(sc_AbstractIterator_toString), "$foreach", $rt_wrapFunction1(sc_AbstractIterator_foreach), "$exists", $rt_wrapFunction1(sc_AbstractIterator_exists), "$find2", $rt_wrapFunction1(sc_AbstractIterator_find), "$foldLeft", $rt_wrapFunction2(sc_AbstractIterator_foldLeft), "$reduceLeft", $rt_wrapFunction1(sc_AbstractIterator_reduceLeft), "$nonEmpty", $rt_wrapFunction0(sc_AbstractIterator_nonEmpty), "$size", $rt_wrapFunction0(sc_AbstractIterator_size), "$copyToArray1", $rt_wrapFunction1(sc_AbstractIterator_copyToArray0), "$copyToArray0", $rt_wrapFunction2(sc_AbstractIterator_copyToArray1), "$copyToArray", $rt_wrapFunction3(sc_AbstractIterator_copyToArray), "$addString", $rt_wrapFunction4(sc_AbstractIterator_addString), "$to0", $rt_wrapFunction1(sc_AbstractIterator_to), "$toList", $rt_wrapFunction0(sc_AbstractIterator_toList), "$toSeq", $rt_wrapFunction0(sc_AbstractIterator_toSeq), "$toArray", $rt_wrapFunction1(sc_AbstractIterator_toArray), "$knownSize", $rt_wrapFunction0(sc_AbstractIterator_knownSize)], -sc_Iterator$$anon$19, "Iterator$$anon$19", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$19_hasNext), "$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$19_knownSize), "$sliceIterator", $rt_wrapFunction2(sc_Iterator$$anon$19_sliceIterator), "$next", $rt_wrapFunction0(sc_Iterator$$anon$19_next)], -sci_List$$anon$1, "List$$anon$1", 22, jl_Object, [s_Function1], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(sci_List$$anon$1_toString), "$apply2", $rt_wrapFunction1(sci_List$$anon$1_apply)], +sc_Iterator$$anon$19, "Iterator$$anon$19", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$19_hasNext), "$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$19_knownSize), "$sliceIterator", $rt_wrapFunction2(sc_Iterator$$anon$19_sliceIterator), "$next", $rt_wrapFunction0(sc_Iterator$$anon$19_next)], +sci_List$$anon$1, "List$$anon$1", 20, jl_Object, [s_Function1], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(sci_List$$anon$1_toString), "$apply2", $rt_wrapFunction1(sci_List$$anon$1_apply)], sci_LazyList$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$_clinit_$lambda$_0_0_apply)], -sci_LazyList, "LazyList", 22, sci_AbstractSeq, [sci_LinearSeq, ji_Serializable], 4, 3, 0, 0, ["$stringPrefix", $rt_wrapFunction0(sci_LazyList_stringPrefix), "$scala$collection$LinearSeqOps$$super$sameElements", $rt_wrapFunction1(sci_LazyList_scala$collection$LinearSeqOps$$super$sameElements), "$headOption", $rt_wrapFunction0(sci_LazyList_headOption), "$length", $rt_wrapFunction0(sci_LazyList_length), "$last", $rt_wrapFunction0(sci_LazyList_last), "$lengthCompare", $rt_wrapFunction1(sci_LazyList_lengthCompare), +sci_LazyList, "LazyList", 20, sci_AbstractSeq, [sci_LinearSeq, ji_Serializable], 4, 3, 0, 0, ["$stringPrefix", $rt_wrapFunction0(sci_LazyList_stringPrefix), "$scala$collection$LinearSeqOps$$super$sameElements", $rt_wrapFunction1(sci_LazyList_scala$collection$LinearSeqOps$$super$sameElements), "$headOption", $rt_wrapFunction0(sci_LazyList_headOption), "$length", $rt_wrapFunction0(sci_LazyList_length), "$last", $rt_wrapFunction0(sci_LazyList_last), "$lengthCompare", $rt_wrapFunction1(sci_LazyList_lengthCompare), "$apply1", $rt_wrapFunction1(sci_LazyList_apply), "$forall", $rt_wrapFunction1(sci_LazyList_forall), "$exists", $rt_wrapFunction1(sci_LazyList_exists), "$contains", $rt_wrapFunction1(sci_LazyList_contains), "$sameElements", $rt_wrapFunction1(sci_LazyList_sameElements), "$indexWhere", $rt_wrapFunction2(sci_LazyList_indexWhere), "$isEmpty", $rt_wrapFunction0(sci_LazyList_isEmpty), "$knownSize", $rt_wrapFunction0(sci_LazyList_knownSize), "$head", $rt_wrapFunction0(sci_LazyList_head), "$iterator0", $rt_wrapFunction0(sci_LazyList_iterator), -"$foreach", $rt_wrapFunction1(sci_LazyList_foreach), "$foldLeft", $rt_wrapFunction2(sci_LazyList_foldLeft), "$className", $rt_wrapFunction0(sci_LazyList_className), "$reduceLeft", $rt_wrapFunction1(sci_LazyList_reduceLeft), "$collectFirst", $rt_wrapFunction1(sci_LazyList_collectFirst), "$find3", $rt_wrapFunction1(sci_LazyList_find), "$grouped0", $rt_wrapFunction1(sci_LazyList_grouped), "$sliding", $rt_wrapFunction2(sci_LazyList_sliding), "$addString", $rt_wrapFunction4(sci_LazyList_addString), "$toString", $rt_wrapFunction0(sci_LazyList_toString), -"$apply2", $rt_wrapFunction1(sci_LazyList_apply0), "$intersect1", $rt_wrapFunction1(sci_LazyList_intersect), "$reverse1", $rt_wrapFunction0(sci_LazyList_reverse), "$dropRight", $rt_wrapFunction1(sci_LazyList_dropRight), "$drop", $rt_wrapFunction1(sci_LazyList_drop0), "$zipAll", $rt_wrapFunction3(sci_LazyList_zipAll), "$zipWithIndex", $rt_wrapFunction0(sci_LazyList_zipWithIndex), "$zip1", $rt_wrapFunction1(sci_LazyList_zip0), "$flatten", $rt_wrapFunction1(sci_LazyList_flatten), "$flatMap", $rt_wrapFunction1(sci_LazyList_flatMap), +"$foreach", $rt_wrapFunction1(sci_LazyList_foreach), "$foldLeft", $rt_wrapFunction2(sci_LazyList_foldLeft), "$className", $rt_wrapFunction0(sci_LazyList_className), "$reduceLeft", $rt_wrapFunction1(sci_LazyList_reduceLeft), "$collectFirst", $rt_wrapFunction1(sci_LazyList_collectFirst), "$find2", $rt_wrapFunction1(sci_LazyList_find), "$grouped0", $rt_wrapFunction1(sci_LazyList_grouped), "$sliding", $rt_wrapFunction2(sci_LazyList_sliding), "$addString", $rt_wrapFunction4(sci_LazyList_addString), "$toString", $rt_wrapFunction0(sci_LazyList_toString), +"$apply2", $rt_wrapFunction1(sci_LazyList_apply0), "$intersect1", $rt_wrapFunction1(sci_LazyList_intersect), "$reverse1", $rt_wrapFunction0(sci_LazyList_reverse), "$dropRight0", $rt_wrapFunction1(sci_LazyList_dropRight), "$drop", $rt_wrapFunction1(sci_LazyList_drop0), "$zipAll", $rt_wrapFunction3(sci_LazyList_zipAll), "$zipWithIndex", $rt_wrapFunction0(sci_LazyList_zipWithIndex), "$zip1", $rt_wrapFunction1(sci_LazyList_zip0), "$flatten", $rt_wrapFunction1(sci_LazyList_flatten), "$flatMap", $rt_wrapFunction1(sci_LazyList_flatMap), "$collect", $rt_wrapFunction1(sci_LazyList_collect), "$map", $rt_wrapFunction1(sci_LazyList_map), "$prepended", $rt_wrapFunction1(sci_LazyList_prepended), "$filterNot0", $rt_wrapFunction1(sci_LazyList_filterNot), "$filter1", $rt_wrapFunction1(sci_LazyList_filter), "$appended", $rt_wrapFunction1(sci_LazyList_appended), "$appendedAll", $rt_wrapFunction1(sci_LazyList_appendedAll), "$tail", $rt_wrapFunction0(sci_LazyList_tail0), "$iterableFactory", $rt_wrapFunction0(sci_LazyList_iterableFactory)], sci_LazyList$$_clinit_$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_LazyList$$_clinit_$lambda$_0_1_apply)], jm_MathContext, 0, jl_Object, [ji_Serializable], 4, 3, 0, jm_MathContext_$callClinit, 0, @@ -359851,25 +287516,25 @@ sm_BigInt, 0, sm_ScalaNumber, [sm_ScalaNumericConversions, sm_Ordered], 4, 3, 0, sci_Iterable$, 0, sc_IterableFactory$Delegate, [], 4, 3, 0, sci_Iterable$_$callClinit, ["$from0", $rt_wrapFunction1(sci_Iterable$_from)], sci_LazyList$State, 0, jl_Object, [ji_Serializable], 3, 3, 0, 0, 0, sci_LazyList$State$Empty$, 0, jl_Object, [sci_LazyList$State], 0, 3, 0, 0, ["$tail1", $rt_wrapFunction0(sci_LazyList$State$Empty$_tail), "$head", $rt_wrapFunction0(sci_LazyList$State$Empty$_head)], -jm_RoundingMode, "RoundingMode", 13, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +jm_RoundingMode, "RoundingMode", 11, jl_Enum, [], 12, 3, [0,0,0], 0, 0, jur_BackReferencedSingleSet, "BackReferencedSingleSet", 6, jur_SingleSet, [], 0, 0, 0, 0, ["$find0", $rt_wrapFunction3(jur_BackReferencedSingleSet_find), "$findBack", $rt_wrapFunction4(jur_BackReferencedSingleSet_findBack), "$processBackRefReplacement", $rt_wrapFunction0(jur_BackReferencedSingleSet_processBackRefReplacement)], jl_ClassValue$Item, 0, jl_Object, [], 0, 0, 0, 0, 0, scm_HashSet$HashSetIterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_HashSet$HashSetIterator_hasNext), "$next", $rt_wrapFunction0(scm_HashSet$HashSetIterator_next)], -scm_HashSet$$anon$1, "HashSet$$anon$1", 23, scm_HashSet$HashSetIterator, [], 4, 3, 0, 0, ["$extract", $rt_wrapFunction1(scm_HashSet$$anon$1_extract)], -onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_0_apply)], -onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_1_apply)], +scm_HashSet$$anon$1, "HashSet$$anon$1", 21, scm_HashSet$HashSetIterator, [], 4, 3, 0, 0, ["$extract", $rt_wrapFunction1(scm_HashSet$$anon$1_extract)], +onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_0_apply)]]); +$rt_metadata([onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$MutableDirectedGraph$$copyOf$lambda$_1_1_apply)], jnci_BufferedDecoder, 0, jnc_CharsetDecoder, [], 1, 3, 0, 0, 0, jnci_UTF8Decoder, 0, jnci_BufferedDecoder, [], 0, 3, 0, 0, ["$arrayDecode", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return jnci_UTF8Decoder_arrayDecode(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }], -sc_ArrayOps$ArrayIterator, "ArrayOps$ArrayIterator", 21, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator_knownSize), "$hasNext", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator_hasNext), "$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator_next), "$drop1", $rt_wrapFunction1(sc_ArrayOps$ArrayIterator_drop)], -sc_ArrayOps$ArrayIterator$mcJ$sp, "ArrayOps$ArrayIterator$mcJ$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcJ$sp_next)], -sc_ArrayOps$ArrayIterator$mcS$sp, "ArrayOps$ArrayIterator$mcS$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcS$sp_next)]]); -$rt_metadata([sc_ArrayOps$ArrayIterator$mcV$sp, "ArrayOps$ArrayIterator$mcV$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcV$sp_next)], -sc_ArrayOps$ArrayIterator$mcF$sp, "ArrayOps$ArrayIterator$mcF$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcF$sp_next)], -sc_ArrayOps$ArrayIterator$mcB$sp, "ArrayOps$ArrayIterator$mcB$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcB$sp_next)], -sc_ArrayOps$ArrayIterator$mcI$sp, "ArrayOps$ArrayIterator$mcI$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcI$sp_next)], -sc_ArrayOps$ArrayIterator$mcD$sp, "ArrayOps$ArrayIterator$mcD$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcD$sp_next)], -sc_ArrayOps$ArrayIterator$mcC$sp, "ArrayOps$ArrayIterator$mcC$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcC$sp_next)], -sc_ArrayOps$ArrayIterator$mcZ$sp, "ArrayOps$ArrayIterator$mcZ$sp", 21, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcZ$sp_next)], +sc_ArrayOps$ArrayIterator, "ArrayOps$ArrayIterator", 19, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator_knownSize), "$hasNext", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator_hasNext), "$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator_next), "$drop1", $rt_wrapFunction1(sc_ArrayOps$ArrayIterator_drop)], +sc_ArrayOps$ArrayIterator$mcI$sp, "ArrayOps$ArrayIterator$mcI$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcI$sp_next)], +sc_ArrayOps$ArrayIterator$mcF$sp, "ArrayOps$ArrayIterator$mcF$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcF$sp_next)], +sc_ArrayOps$ArrayIterator$mcD$sp, "ArrayOps$ArrayIterator$mcD$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcD$sp_next)], +sc_ArrayOps$ArrayIterator$mcV$sp, "ArrayOps$ArrayIterator$mcV$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcV$sp_next)], +sc_ArrayOps$ArrayIterator$mcB$sp, "ArrayOps$ArrayIterator$mcB$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcB$sp_next)], +sc_ArrayOps$ArrayIterator$mcS$sp, "ArrayOps$ArrayIterator$mcS$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcS$sp_next)], +sc_ArrayOps$ArrayIterator$mcC$sp, "ArrayOps$ArrayIterator$mcC$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcC$sp_next)], +sc_ArrayOps$ArrayIterator$mcZ$sp, "ArrayOps$ArrayIterator$mcZ$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcZ$sp_next)], +sc_ArrayOps$ArrayIterator$mcJ$sp, "ArrayOps$ArrayIterator$mcJ$sp", 19, sc_ArrayOps$ArrayIterator, [], 4, 3, 0, 0, ["$next", $rt_wrapFunction0(sc_ArrayOps$ArrayIterator$mcJ$sp_next)], sci_HashCollisionSetNode$equals$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$equals$lambda$_20_0_apply)], jur_AbstractCharClass$LazyJavaLowerCase$1, "AbstractCharClass$LazyJavaLowerCase$1", 6, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_AbstractCharClass$LazyJavaLowerCase$1_contains)], jur_AbstractCharClass$LazyJavaUpperCase$1, "AbstractCharClass$LazyJavaUpperCase$1", 6, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_AbstractCharClass$LazyJavaUpperCase$1_contains)], @@ -359890,87 +287555,114 @@ jur_AbstractCharClass$LazyJavaUnicodeIdentifierStart$1, "AbstractCharClass$LazyJ jur_UnicodeCategory, "UnicodeCategory", 6, jur_AbstractCharClass, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_UnicodeCategory_contains)], jur_UnicodeCategoryScope, "UnicodeCategoryScope", 6, jur_UnicodeCategory, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(jur_UnicodeCategoryScope_contains)], ju_AbstractList$1, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_AbstractList$1_hasNext), "$next", $rt_wrapFunction0(ju_AbstractList$1_next)], -onciu_StepSequencer$AdjacencyList, "StepSequencer$AdjacencyList", 54, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_productPrefix), "$productArity", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_productArity), "$productElement", $rt_wrapFunction1(onciu_StepSequencer$AdjacencyList_productElement), "$productIterator", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_productIterator), "$hashCode", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_hashCode), +onciu_StepSequencer$AdjacencyList, "StepSequencer$AdjacencyList", 52, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_productPrefix), "$productArity", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_productArity), "$productElement", $rt_wrapFunction1(onciu_StepSequencer$AdjacencyList_productElement), "$productIterator", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_productIterator), "$hashCode", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_hashCode), "$toString", $rt_wrapFunction0(onciu_StepSequencer$AdjacencyList_toString), "$equals", $rt_wrapFunction1(onciu_StepSequencer$AdjacencyList_equals)], sci_Range, 0, sci_AbstractSeq, [sci_IndexedSeq, sci_StrictOptimizedSeqOps, ji_Serializable], 1, 3, 0, 0, ["$filterImpl", $rt_wrapFunction2(sci_Range_filterImpl), "$iterator0", $rt_wrapFunction0(sci_Range_iterator), "$iterableFactory", $rt_wrapFunction0(sci_Range_iterableFactory)], sci_Range$Inclusive, 0, sci_Range, [], 4, 3, 0, 0, ["$isInclusive", $rt_wrapFunction0(sci_Range$Inclusive_isInclusive)], -oncias_SemanticErrorDef, "SemanticErrorDef", 41, jl_Object, [], 3, 3, [0,0,0], 0, 0, -oncias_SemanticError, "SemanticError", 41, jl_Object, [oncias_SemanticErrorDef, s_Product, ji_Serializable], 4, 3, 0, 0, ["$msg", $rt_wrapFunction0(oncias_SemanticError_msg), "$position", $rt_wrapFunction0(oncias_SemanticError_position), "$productPrefix", $rt_wrapFunction0(oncias_SemanticError_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticError_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticError_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticError_productIterator), +oncias_SemanticErrorDef, "SemanticErrorDef", 40, jl_Object, [], 3, 3, [0,0,0], 0, 0, +oncias_SemanticError, "SemanticError", 40, jl_Object, [oncias_SemanticErrorDef, s_Product, ji_Serializable], 4, 3, 0, 0, ["$msg", $rt_wrapFunction0(oncias_SemanticError_msg), "$position", $rt_wrapFunction0(oncias_SemanticError_position), "$productPrefix", $rt_wrapFunction0(oncias_SemanticError_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticError_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticError_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticError_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticError_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticError_toString), "$equals", $rt_wrapFunction1(oncias_SemanticError_equals), "$withMsg", $rt_wrapFunction1(oncias_SemanticError_withMsg)], jur_MatchResult, 0, jl_Object, [], 3, 3, 0, 0, 0, jur_Matcher, 0, jl_Object, [jur_MatchResult], 4, 3, 0, 0, 0, -scm_ListBuffer, "ListBuffer", 23, scm_AbstractBuffer, [sc_StrictOptimizedSeqOps, scm_ReusableBuilder, scg_DefaultSerializable], 0, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_ListBuffer_sizeHint), "$sizeHint0", $rt_wrapFunction2(scm_ListBuffer_sizeHint0), "$distinctBy", $rt_wrapFunction1(scm_ListBuffer_distinctBy), "$prepended", $rt_wrapFunction1(scm_ListBuffer_prepended), "$appended", $rt_wrapFunction1(scm_ListBuffer_appended), "$appendedAll", $rt_wrapFunction1(scm_ListBuffer_appendedAll), "$map", $rt_wrapFunction1(scm_ListBuffer_map), +scm_ListBuffer, "ListBuffer", 21, scm_AbstractBuffer, [sc_StrictOptimizedSeqOps, scm_ReusableBuilder, scg_DefaultSerializable], 0, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_ListBuffer_sizeHint), "$sizeHint0", $rt_wrapFunction2(scm_ListBuffer_sizeHint0), "$distinctBy", $rt_wrapFunction1(scm_ListBuffer_distinctBy), "$prepended", $rt_wrapFunction1(scm_ListBuffer_prepended), "$appended", $rt_wrapFunction1(scm_ListBuffer_appended), "$appendedAll", $rt_wrapFunction1(scm_ListBuffer_appendedAll), "$map", $rt_wrapFunction1(scm_ListBuffer_map), "$flatMap", $rt_wrapFunction1(scm_ListBuffer_flatMap), "$flatten", $rt_wrapFunction1(scm_ListBuffer_flatten), "$filter1", $rt_wrapFunction1(scm_ListBuffer_filter), "$filterNot0", $rt_wrapFunction1(scm_ListBuffer_filterNot), "$filterImpl", $rt_wrapFunction2(scm_ListBuffer_filterImpl), "$iterator0", $rt_wrapFunction0(scm_ListBuffer_iterator), "$apply1", $rt_wrapFunction1(scm_ListBuffer_apply), "$length", $rt_wrapFunction0(scm_ListBuffer_length), "$knownSize", $rt_wrapFunction0(scm_ListBuffer_knownSize), "$isEmpty", $rt_wrapFunction0(scm_ListBuffer_isEmpty), "$toList", $rt_wrapFunction0(scm_ListBuffer_toList), "$stringPrefix", $rt_wrapFunction0(scm_ListBuffer_stringPrefix), "$addAll0", $rt_wrapFunction1(scm_ListBuffer_addAll0), "$addOne", $rt_wrapFunction1(scm_ListBuffer_addOne), "$result", $rt_wrapFunction0(scm_ListBuffer_result), "$apply2", $rt_wrapFunction1(scm_ListBuffer_apply0), "$iterableFactory", $rt_wrapFunction0(scm_ListBuffer_iterableFactory)], ju_NoSuchElementException, "NoSuchElementException", 5, jl_RuntimeException, [], 0, 3, 0, 0, 0, -sci_Set$Set4, "Set$Set4", 22, sci_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$partition", $rt_wrapFunction1(sci_Set$Set4_partition), "$map", $rt_wrapFunction1(sci_Set$Set4_map), "$flatMap", $rt_wrapFunction1(sci_Set$Set4_flatMap), "$collect", $rt_wrapFunction1(sci_Set$Set4_collect), "$flatten", $rt_wrapFunction1(sci_Set$Set4_flatten), "$filter1", $rt_wrapFunction1(sci_Set$Set4_filter), "$filterNot0", $rt_wrapFunction1(sci_Set$Set4_filterNot), "$size", $rt_wrapFunction0(sci_Set$Set4_size), -"$isEmpty", $rt_wrapFunction0(sci_Set$Set4_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$Set4_knownSize), "$contains", $rt_wrapFunction1(sci_Set$Set4_contains), "$iterator0", $rt_wrapFunction0(sci_Set$Set4_iterator), "$foreach", $rt_wrapFunction1(sci_Set$Set4_foreach), "$exists", $rt_wrapFunction1(sci_Set$Set4_exists), "$forall", $rt_wrapFunction1(sci_Set$Set4_forall), "$find3", $rt_wrapFunction1(sci_Set$Set4_find), "$head", $rt_wrapFunction0(sci_Set$Set4_head), "$tail", $rt_wrapFunction0(sci_Set$Set4_tail), +sci_Set$Set4, "Set$Set4", 20, sci_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$partition", $rt_wrapFunction1(sci_Set$Set4_partition), "$map", $rt_wrapFunction1(sci_Set$Set4_map), "$flatMap", $rt_wrapFunction1(sci_Set$Set4_flatMap), "$collect", $rt_wrapFunction1(sci_Set$Set4_collect), "$flatten", $rt_wrapFunction1(sci_Set$Set4_flatten), "$filter1", $rt_wrapFunction1(sci_Set$Set4_filter), "$filterNot0", $rt_wrapFunction1(sci_Set$Set4_filterNot), "$size", $rt_wrapFunction0(sci_Set$Set4_size), +"$isEmpty", $rt_wrapFunction0(sci_Set$Set4_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$Set4_knownSize), "$contains", $rt_wrapFunction1(sci_Set$Set4_contains), "$iterator0", $rt_wrapFunction0(sci_Set$Set4_iterator), "$foreach", $rt_wrapFunction1(sci_Set$Set4_foreach), "$exists", $rt_wrapFunction1(sci_Set$Set4_exists), "$forall", $rt_wrapFunction1(sci_Set$Set4_forall), "$find2", $rt_wrapFunction1(sci_Set$Set4_find), "$head", $rt_wrapFunction0(sci_Set$Set4_head), "$tail", $rt_wrapFunction0(sci_Set$Set4_tail), "$filterImpl", $rt_wrapFunction2(sci_Set$Set4_filterImpl), "$excl", $rt_wrapFunction1(sci_Set$Set4_excl), "$incl", $rt_wrapFunction1(sci_Set$Set4_incl)], sc_AbstractView, 0, sc_AbstractIterable, [sc_View], 1, 3, 0, 0, ["$iterableFactory", $rt_wrapFunction0(sc_AbstractView_iterableFactory), "$toString", $rt_wrapFunction0(sc_AbstractView_toString), "$stringPrefix", $rt_wrapFunction0(sc_AbstractView_stringPrefix)], -sc_View$Map, "View$Map", 21, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Map_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Map_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Map_isEmpty)], +sc_View$Map, "View$Map", 19, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Map_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Map_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Map_isEmpty)], sci_HashSet$, 0, jl_Object, [sc_IterableFactory], 4, 3, 0, sci_HashSet$_$callClinit, ["$newBuilder", $rt_wrapFunction0(sci_HashSet$_newBuilder), "$from0", $rt_wrapFunction1(sci_HashSet$_from)], -oncifp_FieldSignature$, 0, sr_AbstractFunction6, [ji_Serializable], 4, 3, 0, oncifp_FieldSignature$_$callClinit, 0, -sci_Range$Exclusive, 0, sci_Range, [], 4, 3, 0, 0, ["$isInclusive", $rt_wrapFunction0(sci_Range$Exclusive_isInclusive)], -cnsa_Position, 0, jl_Object, [otj_JSObject], 3, 0, 0, 0, 0, +s_Function6, 0, jl_Object, [], 3, 3, 0, 0, 0, +sr_AbstractFunction6, 0, jl_Object, [s_Function6], 1, 3, 0, 0, 0, +oncifp_FieldSignature$, 0, sr_AbstractFunction6, [ji_Serializable], 4, 3, 0, 0, 0, +sci_Range$Exclusive, 0, sci_Range, [], 4, 3, 0, 0, ["$isInclusive", $rt_wrapFunction0(sci_Range$Exclusive_isInclusive)]]); +$rt_metadata([cnsa_Position, 0, jl_Object, [otj_JSObject], 3, 0, 0, 0, 0, cnsa_PositionImpl, 0, jl_Object, [cnsa_Position], 0, 3, 0, 0, ["$setColumn$exported$0", $rt_wrapFunction1(cnsa_PositionImpl_setColumn$exported$0), "$setOffset$exported$1", $rt_wrapFunction1(cnsa_PositionImpl_setOffset$exported$1), "$setLine$exported$2", $rt_wrapFunction1(cnsa_PositionImpl_setLine$exported$2), "$getLine$exported$3", $rt_wrapFunction0(cnsa_PositionImpl_getLine$exported$3), "$getOffset$exported$4", $rt_wrapFunction0(cnsa_PositionImpl_getOffset$exported$4), "$getColumn$exported$5", $rt_wrapFunction0(cnsa_PositionImpl_getColumn$exported$5)], cnsa_SemanticAnalysisElement, 0, jl_Object, [otj_JSObject], 3, 0, 0, 0, 0, cnsa_SemanticAnalysisElementImpl, "SemanticAnalysisElementImpl", 3, jl_Object, [cnsa_SemanticAnalysisElement], 0, 3, 0, 0, ["$getPosition$exported$0", $rt_wrapFunction0(cnsa_SemanticAnalysisElementImpl_getPosition$exported$0), "$setPosition$exported$1", $rt_wrapFunction1(cnsa_SemanticAnalysisElementImpl_setPosition$exported$1), "$setMessage$exported$2", $rt_wrapFunction1(cnsa_SemanticAnalysisElementImpl_setMessage$exported$2), "$getMessage$exported$3", $rt_wrapFunction0(cnsa_SemanticAnalysisElementImpl_getMessage$exported$3)], jur_MatchResultImpl, 0, jl_Object, [jur_MatchResult], 0, 0, 0, 0, 0, sm_Ordering$Reverse, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, 0, -sci_MapBuilderImpl, "MapBuilderImpl", 22, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_MapBuilderImpl_sizeHint), "$addAll0", $rt_wrapFunction1(sci_MapBuilderImpl_addAll0), "$addOne", $rt_wrapFunction1(sci_MapBuilderImpl_addOne), "$result", $rt_wrapFunction0(sci_MapBuilderImpl_result)], -onm_Measurable, 0, jl_Object, [], 3, 3, 0, 0, 0]); -$rt_metadata([onv_AnyValue, 0, jl_Object, [onm_Measurable], 1, 3, 0, 0, ["$equals", $rt_wrapFunction1(onv_AnyValue_equals), "$hashCode", $rt_wrapFunction0(onv_AnyValue_hashCode)], +sci_MapBuilderImpl, "MapBuilderImpl", 20, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_MapBuilderImpl_sizeHint), "$addAll0", $rt_wrapFunction1(sci_MapBuilderImpl_addAll0), "$addOne", $rt_wrapFunction1(sci_MapBuilderImpl_addOne), "$result", $rt_wrapFunction0(sci_MapBuilderImpl_result)], +oncifp_Transformer$, 0, jl_Object, [], 4, 3, 0, 0, 0, +onm_Measurable, 0, jl_Object, [], 3, 3, 0, 0, 0, +onv_AnyValue, 0, jl_Object, [onm_Measurable], 1, 3, 0, 0, ["$equals", $rt_wrapFunction1(onv_AnyValue_equals), "$hashCode", $rt_wrapFunction0(onv_AnyValue_hashCode)], cnsa_CustomStringValue, "CustomStringValue", 3, onv_AnyValue, [], 4, 0, 0, 0, ["$toString", $rt_wrapFunction0(cnsa_CustomStringValue_toString)], -sci_HashMapBuilder, "HashMapBuilder", 22, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$addOne", $rt_wrapFunction1(sci_HashMapBuilder_addOne1), "$result", $rt_wrapFunction0(sci_HashMapBuilder_result0)], +sci_HashMapBuilder, "HashMapBuilder", 20, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$addOne", $rt_wrapFunction1(sci_HashMapBuilder_addOne1), "$result", $rt_wrapFunction0(sci_HashMapBuilder_result0)], +oncifp_Transformer$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_Transformer$$anonfun$1_applyOrElse)], onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_0_apply)], onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$dealWithInvalidatedConditions$1$lambda$_20_1_apply)], sci_SetNode$, 0, jl_Object, [], 4, 3, 0, sci_SetNode$_$callClinit, 0, sc_StrictOptimizedMapOps, 0, jl_Object, [sc_MapOps, sc_StrictOptimizedIterableOps], 3, 3, 0, 0, 0, sci_StrictOptimizedMapOps, 0, jl_Object, [sci_MapOps, sc_StrictOptimizedMapOps], 3, 3, 0, 0, 0, -sci_HashMap, "HashMap", 22, sci_AbstractMap, [sci_StrictOptimizedMapOps, scg_DefaultSerializable], 4, 3, 0, 0, ["$map10", $rt_wrapFunction1(sci_HashMap_map0), "$collect0", $rt_wrapFunction1(sci_HashMap_collect), "$map", $rt_wrapFunction1(sci_HashMap_map), "$flatMap", $rt_wrapFunction1(sci_HashMap_flatMap), "$collect", $rt_wrapFunction1(sci_HashMap_collect0), "$flatten", $rt_wrapFunction1(sci_HashMap_flatten), "$filter1", $rt_wrapFunction1(sci_HashMap_filter), "$filterNot0", $rt_wrapFunction1(sci_HashMap_filterNot), +sci_HashMap, "HashMap", 20, sci_AbstractMap, [sci_StrictOptimizedMapOps, scg_DefaultSerializable], 4, 3, 0, 0, ["$map12", $rt_wrapFunction1(sci_HashMap_map0), "$collect0", $rt_wrapFunction1(sci_HashMap_collect), "$map", $rt_wrapFunction1(sci_HashMap_map), "$flatMap", $rt_wrapFunction1(sci_HashMap_flatMap), "$collect", $rt_wrapFunction1(sci_HashMap_collect0), "$flatten", $rt_wrapFunction1(sci_HashMap_flatten), "$filter1", $rt_wrapFunction1(sci_HashMap_filter), "$filterNot0", $rt_wrapFunction1(sci_HashMap_filterNot), "$mapFactory", $rt_wrapFunction0(sci_HashMap_mapFactory), "$knownSize", $rt_wrapFunction0(sci_HashMap_knownSize), "$size", $rt_wrapFunction0(sci_HashMap_size), "$isEmpty", $rt_wrapFunction0(sci_HashMap_isEmpty), "$keySet0", $rt_wrapFunction0(sci_HashMap_keySet), "$iterator0", $rt_wrapFunction0(sci_HashMap_iterator), "$keysIterator", $rt_wrapFunction0(sci_HashMap_keysIterator), "$valuesIterator", $rt_wrapFunction0(sci_HashMap_valuesIterator), "$contains", $rt_wrapFunction1(sci_HashMap_contains), "$apply2", $rt_wrapFunction1(sci_HashMap_apply), "$get2", $rt_wrapFunction1(sci_HashMap_get), "$getOrElse1", $rt_wrapFunction2(sci_HashMap_getOrElse), "$foreach", $rt_wrapFunction1(sci_HashMap_foreach), "$foreachEntry", $rt_wrapFunction1(sci_HashMap_foreachEntry), "$equals", $rt_wrapFunction1(sci_HashMap_equals), "$hashCode", $rt_wrapFunction0(sci_HashMap_hashCode), "$className", $rt_wrapFunction0(sci_HashMap_className), "$drop", $rt_wrapFunction1(sci_HashMap_drop), "$removedAll0", $rt_wrapFunction1(sci_HashMap_removedAll), "$filterImpl", $rt_wrapFunction2(sci_HashMap_filterImpl), "$head", $rt_wrapFunction0(sci_HashMap_head0), "$tail", $rt_wrapFunction0(sci_HashMap_tail), "$concat2", $rt_wrapFunction1(sci_HashMap_concat0), "$removed", $rt_wrapFunction1(sci_HashMap_removed0), "$updated0", $rt_wrapFunction2(sci_HashMap_updated0), "$keySet", $rt_wrapFunction0(sci_HashMap_keySet0)], scm_AbstractMap, 0, sc_AbstractMap, [scm_Map], 1, 3, 0, 0, ["$iterableFactory", $rt_wrapFunction0(scm_AbstractMap_iterableFactory), "$result", $rt_wrapFunction0(scm_AbstractMap_result)], -scm_HashMap, "HashMap", 23, scm_AbstractMap, [sc_StrictOptimizedMapOps, ji_Serializable], 0, 3, 0, 0, ["$map10", $rt_wrapFunction1(scm_HashMap_map0), "$map", $rt_wrapFunction1(scm_HashMap_map), "$flatMap", $rt_wrapFunction1(scm_HashMap_flatMap), "$flatten", $rt_wrapFunction1(scm_HashMap_flatten), "$filter1", $rt_wrapFunction1(scm_HashMap_filter), "$filterNot0", $rt_wrapFunction1(scm_HashMap_filterNot), "$filterImpl", $rt_wrapFunction2(scm_HashMap_filterImpl), "$size", $rt_wrapFunction0(scm_HashMap_size), "$iterator0", +scm_HashMap, "HashMap", 21, scm_AbstractMap, [sc_StrictOptimizedMapOps, ji_Serializable], 0, 3, 0, 0, ["$map12", $rt_wrapFunction1(scm_HashMap_map0), "$map", $rt_wrapFunction1(scm_HashMap_map), "$flatMap", $rt_wrapFunction1(scm_HashMap_flatMap), "$flatten", $rt_wrapFunction1(scm_HashMap_flatten), "$filter1", $rt_wrapFunction1(scm_HashMap_filter), "$filterNot0", $rt_wrapFunction1(scm_HashMap_filterNot), "$filterImpl", $rt_wrapFunction2(scm_HashMap_filterImpl), "$size", $rt_wrapFunction0(scm_HashMap_size), "$iterator0", $rt_wrapFunction0(scm_HashMap_iterator), "$keysIterator", $rt_wrapFunction0(scm_HashMap_keysIterator), "$valuesIterator", $rt_wrapFunction0(scm_HashMap_valuesIterator), "$get2", $rt_wrapFunction1(scm_HashMap_get), "$apply2", $rt_wrapFunction1(scm_HashMap_apply), "$getOrElse1", $rt_wrapFunction2(scm_HashMap_getOrElse), "$knownSize", $rt_wrapFunction0(scm_HashMap_knownSize), "$isEmpty", $rt_wrapFunction0(scm_HashMap_isEmpty), "$foreach", $rt_wrapFunction1(scm_HashMap_foreach), "$foreachEntry", $rt_wrapFunction1(scm_HashMap_foreachEntry), "$mapFactory", $rt_wrapFunction0(scm_HashMap_mapFactory), "$stringPrefix", $rt_wrapFunction0(scm_HashMap_stringPrefix), "$hashCode", $rt_wrapFunction0(scm_HashMap_hashCode), "$subtractOne", $rt_wrapFunction1(scm_HashMap_subtractOne), "$addOne", $rt_wrapFunction1(scm_HashMap_addOne), "$addAll0", $rt_wrapFunction1(scm_HashMap_addAll0)], sci_HashMapBuilder$$anon$1, 0, sci_ChampBaseIterator, [], 4, 3, 0, 0, 0, sc_SeqMap, 0, jl_Object, [sc_Map], 3, 3, 0, 0, 0, scm_SeqMap, 0, jl_Object, [scm_Map, sc_SeqMap], 3, 3, 0, 0, 0, scm_LinkedHashMap, 0, scm_AbstractMap, [scm_SeqMap, sc_StrictOptimizedMapOps, scg_DefaultSerializable], 0, 3, 0, 0, 0, -scm_HashMap$Node, "HashMap$Node", 23, jl_Object, [], 4, 3, [scm_HashMap,0,"Node"], 0, ["$toString", $rt_wrapFunction0(scm_HashMap$Node_toString)], +scm_HashMap$Node, "HashMap$Node", 21, jl_Object, [], 4, 3, [scm_HashMap,0,"Node"], 0, ["$toString", $rt_wrapFunction0(scm_HashMap$Node_toString)], scm_LinkedHashMap$LinkedEntry, 0, jl_Object, [], 4, 3, 0, 0, 0, sci_HashMapBuilder$addAll$lambda$_25_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sci_HashMapBuilder$addAll$lambda$_25_0_apply)], sci_MapNode, 0, sci_Node, [], 1, 3, 0, 0, 0, -sci_BitmapIndexedMapNode, "BitmapIndexedMapNode", 22, sci_MapNode, [], 4, 3, 0, 0, ["$size", $rt_wrapFunction0(sci_BitmapIndexedMapNode_size), "$cachedJavaKeySetHashCode", $rt_wrapFunction0(sci_BitmapIndexedMapNode_cachedJavaKeySetHashCode), "$getKey0", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getKey), "$getValue1", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getValue), "$getPayload0", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getPayload), "$getHash", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getHash), "$apply38", -$rt_wrapFunction4(sci_BitmapIndexedMapNode_apply), "$get9", $rt_wrapFunction4(sci_BitmapIndexedMapNode_get), "$getOrElse0", function(var_1, var_2, var_3, var_4, var_5) { return sci_BitmapIndexedMapNode_getOrElse(this, var_1, var_2, var_3, var_4, var_5); }, "$containsKey0", $rt_wrapFunction4(sci_BitmapIndexedMapNode_containsKey), "$hasNodes", $rt_wrapFunction0(sci_BitmapIndexedMapNode_hasNodes), "$nodeArity", $rt_wrapFunction0(sci_BitmapIndexedMapNode_nodeArity), "$hasPayload", $rt_wrapFunction0(sci_BitmapIndexedMapNode_hasPayload), -"$payloadArity", $rt_wrapFunction0(sci_BitmapIndexedMapNode_payloadArity), "$foreach", $rt_wrapFunction1(sci_BitmapIndexedMapNode_foreach), "$foreachEntry", $rt_wrapFunction1(sci_BitmapIndexedMapNode_foreachEntry), "$foreachWithHash0", $rt_wrapFunction1(sci_BitmapIndexedMapNode_foreachWithHash), "$equals", $rt_wrapFunction1(sci_BitmapIndexedMapNode_equals), "$hashCode", $rt_wrapFunction0(sci_BitmapIndexedMapNode_hashCode), "$filterImpl4", $rt_wrapFunction2(sci_BitmapIndexedMapNode_filterImpl0), "$copy42", $rt_wrapFunction0(sci_BitmapIndexedMapNode_copy0), +sci_BitmapIndexedMapNode, "BitmapIndexedMapNode", 20, sci_MapNode, [], 4, 3, 0, 0, ["$size", $rt_wrapFunction0(sci_BitmapIndexedMapNode_size), "$cachedJavaKeySetHashCode", $rt_wrapFunction0(sci_BitmapIndexedMapNode_cachedJavaKeySetHashCode), "$getKey0", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getKey), "$getValue1", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getValue), "$getPayload0", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getPayload), "$getHash", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getHash), "$apply39", +$rt_wrapFunction4(sci_BitmapIndexedMapNode_apply), "$get8", $rt_wrapFunction4(sci_BitmapIndexedMapNode_get), "$getOrElse0", function(var_1, var_2, var_3, var_4, var_5) { return sci_BitmapIndexedMapNode_getOrElse(this, var_1, var_2, var_3, var_4, var_5); }, "$containsKey0", $rt_wrapFunction4(sci_BitmapIndexedMapNode_containsKey), "$hasNodes", $rt_wrapFunction0(sci_BitmapIndexedMapNode_hasNodes), "$nodeArity", $rt_wrapFunction0(sci_BitmapIndexedMapNode_nodeArity), "$hasPayload", $rt_wrapFunction0(sci_BitmapIndexedMapNode_hasPayload), +"$payloadArity", $rt_wrapFunction0(sci_BitmapIndexedMapNode_payloadArity), "$foreach", $rt_wrapFunction1(sci_BitmapIndexedMapNode_foreach), "$foreachEntry", $rt_wrapFunction1(sci_BitmapIndexedMapNode_foreachEntry), "$foreachWithHash0", $rt_wrapFunction1(sci_BitmapIndexedMapNode_foreachWithHash), "$equals", $rt_wrapFunction1(sci_BitmapIndexedMapNode_equals), "$hashCode", $rt_wrapFunction0(sci_BitmapIndexedMapNode_hashCode), "$filterImpl4", $rt_wrapFunction2(sci_BitmapIndexedMapNode_filterImpl0), "$copy48", $rt_wrapFunction0(sci_BitmapIndexedMapNode_copy0), "$concat8", $rt_wrapFunction2(sci_BitmapIndexedMapNode_concat0), "$removed4", $rt_wrapFunction4(sci_BitmapIndexedMapNode_removed0), "$updated5", function(var_1, var_2, var_3, var_4, var_5, var_6) { return sci_BitmapIndexedMapNode_updated0(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$getNode0", $rt_wrapFunction1(sci_BitmapIndexedMapNode_getNode0)], -sci_HashCollisionMapNode, "HashCollisionMapNode", 22, sci_MapNode, [], 4, 3, 0, 0, ["$size", $rt_wrapFunction0(sci_HashCollisionMapNode_size), "$apply38", $rt_wrapFunction4(sci_HashCollisionMapNode_apply), "$get9", $rt_wrapFunction4(sci_HashCollisionMapNode_get), "$getOrElse0", function(var_1, var_2, var_3, var_4, var_5) { return sci_HashCollisionMapNode_getOrElse(this, var_1, var_2, var_3, var_4, var_5); }, "$containsKey0", $rt_wrapFunction4(sci_HashCollisionMapNode_containsKey), "$updated5", function(var_1, +sci_HashCollisionMapNode, "HashCollisionMapNode", 20, sci_MapNode, [], 4, 3, 0, 0, ["$size", $rt_wrapFunction0(sci_HashCollisionMapNode_size), "$apply39", $rt_wrapFunction4(sci_HashCollisionMapNode_apply), "$get8", $rt_wrapFunction4(sci_HashCollisionMapNode_get), "$getOrElse0", function(var_1, var_2, var_3, var_4, var_5) { return sci_HashCollisionMapNode_getOrElse(this, var_1, var_2, var_3, var_4, var_5); }, "$containsKey0", $rt_wrapFunction4(sci_HashCollisionMapNode_containsKey), "$updated5", function(var_1, var_2, var_3, var_4, var_5, var_6) { return sci_HashCollisionMapNode_updated(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$removed4", $rt_wrapFunction4(sci_HashCollisionMapNode_removed), "$hasNodes", $rt_wrapFunction0(sci_HashCollisionMapNode_hasNodes), "$nodeArity", $rt_wrapFunction0(sci_HashCollisionMapNode_nodeArity), "$hasPayload", $rt_wrapFunction0(sci_HashCollisionMapNode_hasPayload), "$payloadArity", $rt_wrapFunction0(sci_HashCollisionMapNode_payloadArity), "$getKey0", $rt_wrapFunction1(sci_HashCollisionMapNode_getKey), "$getValue1", $rt_wrapFunction1(sci_HashCollisionMapNode_getValue), "$getPayload0", $rt_wrapFunction1(sci_HashCollisionMapNode_getPayload), "$getHash", $rt_wrapFunction1(sci_HashCollisionMapNode_getHash), "$foreach", $rt_wrapFunction1(sci_HashCollisionMapNode_foreach), "$foreachEntry", $rt_wrapFunction1(sci_HashCollisionMapNode_foreachEntry), "$foreachWithHash0", $rt_wrapFunction1(sci_HashCollisionMapNode_foreachWithHash), "$equals", $rt_wrapFunction1(sci_HashCollisionMapNode_equals), "$filterImpl4", $rt_wrapFunction2(sci_HashCollisionMapNode_filterImpl), -"$hashCode", $rt_wrapFunction0(sci_HashCollisionMapNode_hashCode), "$cachedJavaKeySetHashCode", $rt_wrapFunction0(sci_HashCollisionMapNode_cachedJavaKeySetHashCode), "$copy42", $rt_wrapFunction0(sci_HashCollisionMapNode_copy), "$concat8", $rt_wrapFunction2(sci_HashCollisionMapNode_concat), "$getNode0", $rt_wrapFunction1(sci_HashCollisionMapNode_getNode)], -scm_GrowableBuilder, "GrowableBuilder", 23, jl_Object, [scm_Builder], 0, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_GrowableBuilder_sizeHint), "$sizeHint0", $rt_wrapFunction2(scm_GrowableBuilder_sizeHint0), "$addAll0", $rt_wrapFunction1(scm_GrowableBuilder_addAll0), "$addOne", $rt_wrapFunction1(scm_GrowableBuilder_addOne), "$result", $rt_wrapFunction0(scm_GrowableBuilder_result)], -scm_HashSet$$anon$4, "HashSet$$anon$4", 23, scm_GrowableBuilder, [], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_HashSet$$anon$4_sizeHint)], -jl_UnsupportedOperationException, "UnsupportedOperationException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, +"$hashCode", $rt_wrapFunction0(sci_HashCollisionMapNode_hashCode), "$cachedJavaKeySetHashCode", $rt_wrapFunction0(sci_HashCollisionMapNode_cachedJavaKeySetHashCode), "$copy48", $rt_wrapFunction0(sci_HashCollisionMapNode_copy), "$concat8", $rt_wrapFunction2(sci_HashCollisionMapNode_concat), "$getNode0", $rt_wrapFunction1(sci_HashCollisionMapNode_getNode)], +scm_GrowableBuilder, "GrowableBuilder", 21, jl_Object, [scm_Builder], 0, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_GrowableBuilder_sizeHint), "$sizeHint0", $rt_wrapFunction2(scm_GrowableBuilder_sizeHint0), "$addAll0", $rt_wrapFunction1(scm_GrowableBuilder_addAll0), "$addOne", $rt_wrapFunction1(scm_GrowableBuilder_addOne), "$result", $rt_wrapFunction0(scm_GrowableBuilder_result)], +scm_HashSet$$anon$4, "HashSet$$anon$4", 21, scm_GrowableBuilder, [], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_HashSet$$anon$4_sizeHint)], +jl_UnsupportedOperationException, "UnsupportedOperationException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, +onciu_StepSequencer$Condition, "StepSequencer$Condition", 52, jl_Object, [], 3, 3, [onciu_StepSequencer,0,"Condition"], 0, 0, +oncir_ValidatingCondition, 0, jl_Object, [onciu_StepSequencer$Condition], 3, 3, 0, 0, 0, +oncifp_BaseContains, "BaseContains", 65, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_BaseContains_toString), "$unary_$bang", $rt_wrapFunction0(oncifp_BaseContains_unary_$bang), "$apply38", $rt_wrapFunction2(oncifp_BaseContains_apply), "$name", $rt_wrapFunction0(oncifp_BaseContains_name), "$hashCode", $rt_wrapFunction0(oncifp_BaseContains_hashCode), "$equals", $rt_wrapFunction1(oncifp_BaseContains_equals), "$productArity", $rt_wrapFunction0(oncifp_BaseContains_productArity), +"$productElement", $rt_wrapFunction1(oncifp_BaseContains_productElement), "$productIterator", $rt_wrapFunction0(oncifp_BaseContains_productIterator)], +oncia_Statement, "Statement", 35, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, +oncifp_ValidSymbolicNamesInLabelExpressions$, "ValidSymbolicNamesInLabelExpressions$", 65, jl_Object, [oncir_ValidatingCondition], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_ValidSymbolicNamesInLabelExpressions$_toString), "$unary_$bang", $rt_wrapFunction0(oncifp_ValidSymbolicNamesInLabelExpressions$_unary_$bang), "$name", $rt_wrapFunction0(oncifp_ValidSymbolicNamesInLabelExpressions$_name), "$apply38", $rt_wrapFunction2(oncifp_ValidSymbolicNamesInLabelExpressions$_apply)], +oncirc_package$, 0, jl_Object, [], 4, 3, 0, oncirc_package$_$callClinit, 0, +oncirc_containsNoReturnAll$, "containsNoReturnAll$", 60, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncirc_containsNoReturnAll$_toString), "$unary_$bang", $rt_wrapFunction0(oncirc_containsNoReturnAll$_unary_$bang), "$apply38", $rt_wrapFunction2(oncirc_containsNoReturnAll$_apply), "$name", $rt_wrapFunction0(oncirc_containsNoReturnAll$_name), "$productArity", $rt_wrapFunction0(oncirc_containsNoReturnAll$_productArity), "$productElement", $rt_wrapFunction1(oncirc_containsNoReturnAll$_productElement), +"$productIterator", $rt_wrapFunction0(oncirc_containsNoReturnAll$_productIterator), "$hashCode", $rt_wrapFunction0(oncirc_containsNoReturnAll$_hashCode)], onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_0_apply)], onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$MutableDirectedGraph$toString$lambda$_7_1_apply)], ju_ConcurrentModificationException, "ConcurrentModificationException", 5, jl_RuntimeException, [], 0, 3, 0, 0, 0, +oncias_SemanticState, "SemanticState", 40, jl_Object, [s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticState_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticState_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticState_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticState_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticState_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticState_toString), +"$equals", $rt_wrapFunction1(oncias_SemanticState_equals)], +oncias_TokenTable, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncias_SemanticTable, "SemanticTable", 40, jl_Object, [oncias_TokenTable, s_Product, ji_Serializable], 4, 3, [0,0,0], 0, ["$hashCode", $rt_wrapFunction0(oncias_SemanticTable_hashCode), "$productPrefix", $rt_wrapFunction0(oncias_SemanticTable_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticTable_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticTable_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticTable_productIterator), "$toString", $rt_wrapFunction0(oncias_SemanticTable_toString), +"$equals", $rt_wrapFunction1(oncias_SemanticTable_equals)], ju_AbstractMap, 0, jl_Object, [ju_Map], 1, 3, 0, 0, ["$equals", $rt_wrapFunction1(ju_AbstractMap_equals), "$hashCode", $rt_wrapFunction0(ju_AbstractMap_hashCode), "$toString", $rt_wrapFunction0(ju_AbstractMap_toString)], ju_WeakHashMap, 0, ju_AbstractMap, [ju_Map], 0, 3, 0, 0, 0, -sc_SeqOps$indexOf$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -sci_Map$Map4, "Map$Map4", 22, sci_AbstractMap, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_Map$Map4_map), "$flatMap", $rt_wrapFunction1(sci_Map$Map4_flatMap), "$collect", $rt_wrapFunction1(sci_Map$Map4_collect), "$flatten", $rt_wrapFunction1(sci_Map$Map4_flatten), "$filter1", $rt_wrapFunction1(sci_Map$Map4_filter), "$filterNot0", $rt_wrapFunction1(sci_Map$Map4_filterNot), "$size", $rt_wrapFunction0(sci_Map$Map4_size), "$knownSize", $rt_wrapFunction0(sci_Map$Map4_knownSize), +sc_SeqOps$indexOf$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0]); +$rt_metadata([sci_Map$Map4, "Map$Map4", 20, sci_AbstractMap, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_Map$Map4_map), "$flatMap", $rt_wrapFunction1(sci_Map$Map4_flatMap), "$collect", $rt_wrapFunction1(sci_Map$Map4_collect), "$flatten", $rt_wrapFunction1(sci_Map$Map4_flatten), "$filter1", $rt_wrapFunction1(sci_Map$Map4_filter), "$filterNot0", $rt_wrapFunction1(sci_Map$Map4_filterNot), "$size", $rt_wrapFunction0(sci_Map$Map4_size), "$knownSize", $rt_wrapFunction0(sci_Map$Map4_knownSize), "$isEmpty", $rt_wrapFunction0(sci_Map$Map4_isEmpty), "$apply2", $rt_wrapFunction1(sci_Map$Map4_apply), "$contains", $rt_wrapFunction1(sci_Map$Map4_contains), "$get2", $rt_wrapFunction1(sci_Map$Map4_get), "$getOrElse1", $rt_wrapFunction2(sci_Map$Map4_getOrElse), "$iterator0", $rt_wrapFunction0(sci_Map$Map4_iterator), "$keysIterator", $rt_wrapFunction0(sci_Map$Map4_keysIterator), "$valuesIterator", $rt_wrapFunction0(sci_Map$Map4_valuesIterator), "$foreach", $rt_wrapFunction1(sci_Map$Map4_foreach), "$exists", $rt_wrapFunction1(sci_Map$Map4_exists), "$forall", $rt_wrapFunction1(sci_Map$Map4_forall), "$hashCode", $rt_wrapFunction0(sci_Map$Map4_hashCode), "$filterImpl", $rt_wrapFunction2(sci_Map$Map4_filterImpl0), "$removed", $rt_wrapFunction1(sci_Map$Map4_removed), "$updated0", $rt_wrapFunction2(sci_Map$Map4_updated)], sci_HashMap$, 0, jl_Object, [sc_MapFactory], 4, 3, 0, sci_HashMap$_$callClinit, ["$newBuilder", $rt_wrapFunction0(sci_HashMap$_newBuilder), "$from0", $rt_wrapFunction1(sci_HashMap$_from)], -oncifp_Transformer$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncifp_Phase$transform$lambda$_2_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, +oncifh_package$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncirc_package$PatternExpressionsHaveSemanticInfo$, "package$PatternExpressionsHaveSemanticInfo$", 60, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$PatternExpressionsHaveSemanticInfo$_productElement), "$productIterator", +$rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_productIterator), "$hashCode", $rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_hashCode), "$toString", $rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_toString)], +oncirr_ProjectionClausesHaveSemanticInfo$, "ProjectionClausesHaveSemanticInfo$", 59, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_productArity), "$productElement", $rt_wrapFunction1(oncirr_ProjectionClausesHaveSemanticInfo$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_productIterator), +"$hashCode", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_hashCode), "$toString", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_toString)], +oncirc_containsNoMatchingNodes, 0, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncirc_containsNoReturnAll$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirc_containsNoReturnAll$$anonfun$1_applyOrElse)], +oncifh_package$$closing$default$3$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncifh_package$$closing$default$4$lambda$_3_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, +oncifh_package$$closing$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, jlr_ReferenceQueue, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncifp_Transformer$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_Transformer$$anonfun$1_applyOrElse)], sci_MapNode$, 0, jl_Object, [], 4, 3, 0, sci_MapNode$_$callClinit, 0, ju_WeakHashMap$Entry, 0, jlr_WeakReference, [ju_Map$Entry], 4, 0, 0, 0, 0, -sci_SetIterator, "SetIterator", 22, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_SetIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_SetIterator_isEmpty), "$filterImpl0", $rt_wrapFunction2(sci_SetIterator_filterImpl), "$collect2", $rt_wrapFunction1(sci_SetIterator_collect), "$map5", $rt_wrapFunction1(sci_SetIterator_map), "$flatMap2", $rt_wrapFunction1(sci_SetIterator_flatMap), "$concat0", $rt_wrapFunction1(sci_SetIterator_concat), "$drop1", $rt_wrapFunction1(sci_SetIterator_drop), -"$sliceIterator", $rt_wrapFunction2(sci_SetIterator_sliceIterator), "$toString", $rt_wrapFunction0(sci_SetIterator_toString), "$foreach", $rt_wrapFunction1(sci_SetIterator_foreach), "$exists", $rt_wrapFunction1(sci_SetIterator_exists), "$find3", $rt_wrapFunction1(sci_SetIterator_find), "$foldLeft", $rt_wrapFunction2(sci_SetIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_SetIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_SetIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_SetIterator_copyToArray1), +sci_SetIterator, "SetIterator", 20, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_SetIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_SetIterator_isEmpty), "$filterImpl0", $rt_wrapFunction2(sci_SetIterator_filterImpl), "$collect2", $rt_wrapFunction1(sci_SetIterator_collect), "$map5", $rt_wrapFunction1(sci_SetIterator_map), "$flatMap2", $rt_wrapFunction1(sci_SetIterator_flatMap), "$concat0", $rt_wrapFunction1(sci_SetIterator_concat), "$drop1", $rt_wrapFunction1(sci_SetIterator_drop), +"$sliceIterator", $rt_wrapFunction2(sci_SetIterator_sliceIterator), "$toString", $rt_wrapFunction0(sci_SetIterator_toString), "$foreach", $rt_wrapFunction1(sci_SetIterator_foreach), "$exists", $rt_wrapFunction1(sci_SetIterator_exists), "$find2", $rt_wrapFunction1(sci_SetIterator_find), "$foldLeft", $rt_wrapFunction2(sci_SetIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_SetIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_SetIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_SetIterator_copyToArray1), "$copyToArray0", $rt_wrapFunction2(sci_SetIterator_copyToArray0), "$copyToArray", $rt_wrapFunction3(sci_SetIterator_copyToArray), "$to0", $rt_wrapFunction1(sci_SetIterator_to), "$toList", $rt_wrapFunction0(sci_SetIterator_toList), "$toSeq", $rt_wrapFunction0(sci_SetIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_SetIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_SetIterator_knownSize), "$next", $rt_wrapFunction0(sci_SetIterator_next)], onciu_InternalNotification, 0, jl_Object, [], 3, 3, 0, 0, 0, otji_JSWrapper$JSTransparentInt, 0, jl_Object, [otj_JSObject], 1, 0, 0, 0, 0, @@ -359978,39 +287670,47 @@ otjc_JSNumber, 0, jl_Object, [otj_JSObject], 1, 3, 0, 0, 0, otjc_JSBoolean, 0, jl_Object, [otj_JSObject], 1, 3, 0, 0, 0, suh_MurmurHash3, 0, jl_Object, [], 0, 3, 0, 0, 0, suh_MurmurHash3$, 0, suh_MurmurHash3, [], 4, 3, 0, suh_MurmurHash3$_$callClinit, 0, -onciu_StepSequencer$Condition, "StepSequencer$Condition", 54, jl_Object, [], 3, 3, [onciu_StepSequencer,0,"Condition"], 0, 0, -oncir_ValidatingCondition, 0, jl_Object, [onciu_StepSequencer$Condition], 3, 3, 0, 0, 0, -oncifp_BaseContains, "BaseContains", 67, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_BaseContains_toString), "$unary_$bang", $rt_wrapFunction0(oncifp_BaseContains_unary_$bang), "$apply40", $rt_wrapFunction2(oncifp_BaseContains_apply), "$name", $rt_wrapFunction0(oncifp_BaseContains_name), "$hashCode", $rt_wrapFunction0(oncifp_BaseContains_hashCode), "$equals", $rt_wrapFunction1(oncifp_BaseContains_equals), "$productArity", $rt_wrapFunction0(oncifp_BaseContains_productArity), -"$productElement", $rt_wrapFunction1(oncifp_BaseContains_productElement), "$productIterator", $rt_wrapFunction0(oncifp_BaseContains_productIterator)], -oncia_Statement, "Statement", 36, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, -oncifp_ValidSymbolicNamesInLabelExpressions$, "ValidSymbolicNamesInLabelExpressions$", 67, jl_Object, [oncir_ValidatingCondition], 4, 3, 0, oncifp_ValidSymbolicNamesInLabelExpressions$_$callClinit, ["$toString", $rt_wrapFunction0(oncifp_ValidSymbolicNamesInLabelExpressions$_toString), "$unary_$bang", $rt_wrapFunction0(oncifp_ValidSymbolicNamesInLabelExpressions$_unary_$bang), "$name", $rt_wrapFunction0(oncifp_ValidSymbolicNamesInLabelExpressions$_name), "$apply40", $rt_wrapFunction2(oncifp_ValidSymbolicNamesInLabelExpressions$_apply)], -oncirc_package$, 0, jl_Object, [], 4, 3, 0, oncirc_package$_$callClinit, 0]); -$rt_metadata([oncirc_containsNoReturnAll$, "containsNoReturnAll$", 62, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncirc_containsNoReturnAll$_toString), "$unary_$bang", $rt_wrapFunction0(oncirc_containsNoReturnAll$_unary_$bang), "$apply40", $rt_wrapFunction2(oncirc_containsNoReturnAll$_apply), "$name", $rt_wrapFunction0(oncirc_containsNoReturnAll$_name), "$productArity", $rt_wrapFunction0(oncirc_containsNoReturnAll$_productArity), "$productElement", -$rt_wrapFunction1(oncirc_containsNoReturnAll$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_containsNoReturnAll$_productIterator), "$hashCode", $rt_wrapFunction0(oncirc_containsNoReturnAll$_hashCode)], -sci_Set$Set1, "Set$Set1", 22, sci_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$partition", $rt_wrapFunction1(sci_Set$Set1_partition), "$map", $rt_wrapFunction1(sci_Set$Set1_map), "$flatMap", $rt_wrapFunction1(sci_Set$Set1_flatMap), "$collect", $rt_wrapFunction1(sci_Set$Set1_collect), "$flatten", $rt_wrapFunction1(sci_Set$Set1_flatten), "$filter1", $rt_wrapFunction1(sci_Set$Set1_filter), "$filterNot0", $rt_wrapFunction1(sci_Set$Set1_filterNot), "$size", $rt_wrapFunction0(sci_Set$Set1_size), -"$isEmpty", $rt_wrapFunction0(sci_Set$Set1_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$Set1_knownSize), "$contains", $rt_wrapFunction1(sci_Set$Set1_contains), "$iterator0", $rt_wrapFunction0(sci_Set$Set1_iterator), "$foreach", $rt_wrapFunction1(sci_Set$Set1_foreach), "$exists", $rt_wrapFunction1(sci_Set$Set1_exists), "$forall", $rt_wrapFunction1(sci_Set$Set1_forall), "$find3", $rt_wrapFunction1(sci_Set$Set1_find), "$head", $rt_wrapFunction0(sci_Set$Set1_head), "$tail", $rt_wrapFunction0(sci_Set$Set1_tail), +sci_Set$Set1, "Set$Set1", 20, sci_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$partition", $rt_wrapFunction1(sci_Set$Set1_partition), "$map", $rt_wrapFunction1(sci_Set$Set1_map), "$flatMap", $rt_wrapFunction1(sci_Set$Set1_flatMap), "$collect", $rt_wrapFunction1(sci_Set$Set1_collect), "$flatten", $rt_wrapFunction1(sci_Set$Set1_flatten), "$filter1", $rt_wrapFunction1(sci_Set$Set1_filter), "$filterNot0", $rt_wrapFunction1(sci_Set$Set1_filterNot), "$size", $rt_wrapFunction0(sci_Set$Set1_size), +"$isEmpty", $rt_wrapFunction0(sci_Set$Set1_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$Set1_knownSize), "$contains", $rt_wrapFunction1(sci_Set$Set1_contains), "$iterator0", $rt_wrapFunction0(sci_Set$Set1_iterator), "$foreach", $rt_wrapFunction1(sci_Set$Set1_foreach), "$exists", $rt_wrapFunction1(sci_Set$Set1_exists), "$forall", $rt_wrapFunction1(sci_Set$Set1_forall), "$find2", $rt_wrapFunction1(sci_Set$Set1_find), "$head", $rt_wrapFunction0(sci_Set$Set1_head), "$tail", $rt_wrapFunction0(sci_Set$Set1_tail), "$filterImpl", $rt_wrapFunction2(sci_Set$Set1_filterImpl), "$excl", $rt_wrapFunction1(sci_Set$Set1_excl), "$incl", $rt_wrapFunction1(sci_Set$Set1_incl)], -oncias_SemanticState, "SemanticState", 41, jl_Object, [s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticState_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticState_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticState_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticState_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticState_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticState_toString), -"$equals", $rt_wrapFunction1(oncias_SemanticState_equals)], -oncias_TokenTable, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncias_SemanticTable, "SemanticTable", 41, jl_Object, [oncias_TokenTable, s_Product, ji_Serializable], 4, 3, [0,0,0], 0, ["$hashCode", $rt_wrapFunction0(oncias_SemanticTable_hashCode), "$productPrefix", $rt_wrapFunction0(oncias_SemanticTable_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticTable_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticTable_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticTable_productIterator), "$toString", $rt_wrapFunction0(oncias_SemanticTable_toString), -"$equals", $rt_wrapFunction1(oncias_SemanticTable_equals)], +oncifpf_PlanPipelineTransformerFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncifp_SemanticAnalysis$, 0, jl_Object, [onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, oncifpf_PlanPipelineTransformerFactory, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +oncifp_StatementCondition, "StatementCondition", 65, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_StatementCondition_toString), "$unary_$bang", $rt_wrapFunction0(oncifp_StatementCondition_unary_$bang), "$apply38", $rt_wrapFunction2(oncifp_StatementCondition_apply), "$name", $rt_wrapFunction0(oncifp_StatementCondition_name), "$productPrefix", $rt_wrapFunction0(oncifp_StatementCondition_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_StatementCondition_productArity), +"$productElement", $rt_wrapFunction1(oncifp_StatementCondition_productElement), "$productIterator", $rt_wrapFunction0(oncifp_StatementCondition_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_StatementCondition_hashCode), "$equals", $rt_wrapFunction1(oncifp_StatementCondition_equals)], +oncifp_DeprecatedSyntaxReplaced$, "DeprecatedSyntaxReplaced$", 65, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_unary_$bang), "$productArity", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_productArity), "$productElement", $rt_wrapFunction1(oncifp_DeprecatedSyntaxReplaced$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_hashCode), +"$toString", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_toString)], +oncifp_DeprecatedSemanticsReplaced$, "DeprecatedSemanticsReplaced$", 65, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_unary_$bang), "$productArity", $rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_productArity), "$productElement", $rt_wrapFunction1(oncifp_DeprecatedSemanticsReplaced$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_productIterator), "$hashCode", +$rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_hashCode), "$toString", $rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_toString)], +oncifp_PreparatoryRewriting$SemanticAnalysisPossible$, "PreparatoryRewriting$SemanticAnalysisPossible$", 65, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_unary_$bang), "$productArity", $rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productArity), "$productElement", $rt_wrapFunction1(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productElement), "$productIterator", +$rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_hashCode), "$toString", $rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_toString)], +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$, "IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$", 65, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_unary_$bang), "$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productArity), "$productElement", +$rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_toString)], +oncifp_CompilationPhaseTracer, 0, jl_Object, [], 3, 3, 0, 0, 0, jl_AbstractStringBuilder$Constants, 0, jl_Object, [], 0, 0, 0, 0, 0, otcit_FloatAnalyzer, 0, jl_Object, [], 4, 3, 0, 0, 0, otcit_FloatAnalyzer$Result, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncirc_containsNoNodesOfType, "containsNoNodesOfType", 60, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncirc_containsNoNodesOfType_toString), "$unary_$bang", $rt_wrapFunction0(oncirc_containsNoNodesOfType_unary_$bang), "$apply38", $rt_wrapFunction2(oncirc_containsNoNodesOfType_apply), "$name", $rt_wrapFunction0(oncirc_containsNoNodesOfType_name), "$hashCode", $rt_wrapFunction0(oncirc_containsNoNodesOfType_hashCode), "$equals", $rt_wrapFunction1(oncirc_containsNoNodesOfType_equals), +"$productArity", $rt_wrapFunction0(oncirc_containsNoNodesOfType_productArity), "$productElement", $rt_wrapFunction1(oncirc_containsNoNodesOfType_productElement), "$productIterator", $rt_wrapFunction0(oncirc_containsNoNodesOfType_productIterator)], +oncias_SemanticCheckable, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_ReturnItem, "ReturnItem", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable], 3, 3, [0,0,0], 0, 0, +oncia_UnaliasedReturnItem, "UnaliasedReturnItem", 35, jl_Object, [oncia_ReturnItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$isPassThrough", $rt_wrapFunction0(oncia_UnaliasedReturnItem_isPassThrough), "$semanticCheck", $rt_wrapFunction0(oncia_UnaliasedReturnItem_semanticCheck), "$expression0", $rt_wrapFunction0(oncia_UnaliasedReturnItem_expression), "$position", $rt_wrapFunction0(oncia_UnaliasedReturnItem_position), "$alias", $rt_wrapFunction0(oncia_UnaliasedReturnItem_alias), "$name", $rt_wrapFunction0(oncia_UnaliasedReturnItem_name), +"$productPrefix", $rt_wrapFunction0(oncia_UnaliasedReturnItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UnaliasedReturnItem_productArity), "$productElement", $rt_wrapFunction1(oncia_UnaliasedReturnItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_UnaliasedReturnItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UnaliasedReturnItem_hashCode), "$toString", $rt_wrapFunction0(oncia_UnaliasedReturnItem_toString), "$equals", $rt_wrapFunction1(oncia_UnaliasedReturnItem_equals), +"$dup", $rt_wrapFunction1(oncia_UnaliasedReturnItem_dup)], +oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$, "computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$", 59, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productArity), "$productElement", +$rt_wrapFunction1(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_hashCode), "$toString", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_toString)], onn_NotificationWrapping$, 0, jl_Object, [], 4, 3, 0, 0, 0, ong_CommonGqlStatusObject, 0, jl_Object, [], 3, 3, 0, 0, 0, -ong_CommonGqlStatusObjectImplementation, 0, jl_Object, [ong_CommonGqlStatusObject], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(ong_CommonGqlStatusObjectImplementation_equals), "$hashCode", $rt_wrapFunction0(ong_CommonGqlStatusObjectImplementation_hashCode)], -ong_Notification, 0, jl_Object, [], 3, 3, 0, 0, 0, +ong_CommonGqlStatusObjectImplementation, 0, jl_Object, [ong_CommonGqlStatusObject, ji_Serializable], 0, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(ong_CommonGqlStatusObjectImplementation_hashCode)], +ong_Notification, 0, jl_Object, [], 131, 3, 0, 0, 0, ong_GqlStatusObject, 0, jl_Object, [ong_CommonGqlStatusObject], 3, 3, 0, 0, 0, onn_NotificationImplementation, 0, ong_CommonGqlStatusObjectImplementation, [ong_Notification, ong_GqlStatusObject], 4, 3, 0, 0, 0, -ong_InputPosition, "InputPosition", 69, jl_Object, [], 4, 3, 0, 0, ["$equals", $rt_wrapFunction1(ong_InputPosition_equals), "$hashCode", $rt_wrapFunction0(ong_InputPosition_hashCode), "$toString", $rt_wrapFunction0(ong_InputPosition_toString)], -sc_Iterator$$anon$10, "Iterator$$anon$10", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$10_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$10_next)], +ong_InputPosition, "InputPosition", 67, jl_Object, [], 4, 3, 0, 0, ["$equals", $rt_wrapFunction1(ong_InputPosition_equals), "$hashCode", $rt_wrapFunction0(ong_InputPosition_hashCode), "$toString", $rt_wrapFunction0(ong_InputPosition_toString)], +sc_Iterator$$anon$10, "Iterator$$anon$10", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$10_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$10_next)], scm_StringBuilder, 0, scm_AbstractSeq, [scm_ReusableBuilder, scm_IndexedSeq, jl_CharSequence, ji_Serializable], 4, 3, 0, 0, 0, sc_MapOps$GenKeySet, 0, jl_Object, [], 3, 3, 0, 0, 0, sc_MapOps$KeySet, 0, sc_AbstractSet, [sc_MapOps$GenKeySet, scg_DefaultSerializable], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_MapOps$KeySet_iterator), "$knownSize", $rt_wrapFunction0(sc_MapOps$KeySet_knownSize), "$scala$collection$MapOps$GenKeySet$$$outer", $rt_wrapFunction0(sc_MapOps$KeySet_scala$collection$MapOps$GenKeySet$$$outer)], -scm_ArrayBuilder, 0, jl_Object, [scm_ReusableBuilder, ji_Serializable], 1, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_ArrayBuilder_sizeHint), "$addAll11", $rt_wrapFunction3(scm_ArrayBuilder_addAll0), "$addAll", $rt_wrapFunction1(scm_ArrayBuilder_addAll2), "$addAll0", $rt_wrapFunction1(scm_ArrayBuilder_addAll1)], -scm_ArrayBuilder$ofByte, 0, scm_ArrayBuilder, [], 4, 3, 0, 0, ["$resize", $rt_wrapFunction1(scm_ArrayBuilder$ofByte_resize), "$result", $rt_wrapFunction0(scm_ArrayBuilder$ofByte_result), "$addOne", $rt_wrapFunction1(scm_ArrayBuilder$ofByte_addOne), "$elems", $rt_wrapFunction0(scm_ArrayBuilder$ofByte_elems)], +scm_ArrayBuilder, 0, jl_Object, [scm_ReusableBuilder, ji_Serializable], 1, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_ArrayBuilder_sizeHint), "$addAll11", $rt_wrapFunction3(scm_ArrayBuilder_addAll0), "$addAll", $rt_wrapFunction1(scm_ArrayBuilder_addAll2), "$addAll0", $rt_wrapFunction1(scm_ArrayBuilder_addAll1)]]); +$rt_metadata([scm_ArrayBuilder$ofByte, 0, scm_ArrayBuilder, [], 4, 3, 0, 0, ["$resize", $rt_wrapFunction1(scm_ArrayBuilder$ofByte_resize), "$result", $rt_wrapFunction0(scm_ArrayBuilder$ofByte_result), "$addOne", $rt_wrapFunction1(scm_ArrayBuilder$ofByte_addOne), "$elems", $rt_wrapFunction0(scm_ArrayBuilder$ofByte_elems)], scm_ArrayBuilder$ofShort, 0, scm_ArrayBuilder, [], 4, 3, 0, 0, ["$resize", $rt_wrapFunction1(scm_ArrayBuilder$ofShort_resize), "$result", $rt_wrapFunction0(scm_ArrayBuilder$ofShort_result), "$addOne", $rt_wrapFunction1(scm_ArrayBuilder$ofShort_addOne), "$elems", $rt_wrapFunction0(scm_ArrayBuilder$ofShort_elems)], scm_ArrayBuilder$ofChar, 0, scm_ArrayBuilder, [], 4, 3, 0, 0, ["$resize", $rt_wrapFunction1(scm_ArrayBuilder$ofChar_resize), "$result", $rt_wrapFunction0(scm_ArrayBuilder$ofChar_result), "$addOne", $rt_wrapFunction1(scm_ArrayBuilder$ofChar_addOne), "$elems", $rt_wrapFunction0(scm_ArrayBuilder$ofChar_elems)], scm_ArrayBuilder$ofInt, 0, scm_ArrayBuilder, [], 4, 3, 0, 0, ["$resize", $rt_wrapFunction1(scm_ArrayBuilder$ofInt_resize), "$result", $rt_wrapFunction0(scm_ArrayBuilder$ofInt_result), "$addOne", $rt_wrapFunction1(scm_ArrayBuilder$ofInt_addOne), "$elems", $rt_wrapFunction0(scm_ArrayBuilder$ofInt_elems)], @@ -360020,34 +287720,35 @@ scm_ArrayBuilder$ofDouble, 0, scm_ArrayBuilder, [], 4, 3, 0, 0, ["$resize", $rt_ scm_ArrayBuilder$ofBoolean, 0, scm_ArrayBuilder, [], 0, 3, 0, 0, ["$resize", $rt_wrapFunction1(scm_ArrayBuilder$ofBoolean_resize), "$result", $rt_wrapFunction0(scm_ArrayBuilder$ofBoolean_result), "$addOne", $rt_wrapFunction1(scm_ArrayBuilder$ofBoolean_addOne), "$elems", $rt_wrapFunction0(scm_ArrayBuilder$ofBoolean_elems)], scm_ArrayBuilder$ofUnit, 0, scm_ArrayBuilder, [], 4, 3, 0, 0, ["$resize", $rt_wrapFunction1(scm_ArrayBuilder$ofUnit_resize), "$result", $rt_wrapFunction0(scm_ArrayBuilder$ofUnit_result), "$addAll11", $rt_wrapFunction3(scm_ArrayBuilder$ofUnit_addAll0), "$addAll0", $rt_wrapFunction1(scm_ArrayBuilder$ofUnit_addAll2), "$addAll", $rt_wrapFunction1(scm_ArrayBuilder$ofUnit_addAll1), "$addOne", $rt_wrapFunction1(scm_ArrayBuilder$ofUnit_addOne), "$elems", $rt_wrapFunction0(scm_ArrayBuilder$ofUnit_elems)], scm_ArrayBuilder$ofRef, 0, scm_ArrayBuilder, [], 4, 3, 0, 0, ["$resize", $rt_wrapFunction1(scm_ArrayBuilder$ofRef_resize), "$result", $rt_wrapFunction0(scm_ArrayBuilder$ofRef_result), "$addOne", $rt_wrapFunction1(scm_ArrayBuilder$ofRef_addOne), "$elems", $rt_wrapFunction0(scm_ArrayBuilder$ofRef_elems)], -oncifp_Phase$transform$lambda$_2_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, -oncifh_package$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncirc_package$PatternExpressionsHaveSemanticInfo$, "package$PatternExpressionsHaveSemanticInfo$", 62, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$PatternExpressionsHaveSemanticInfo$_productElement), "$productIterator", -$rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_productIterator), "$hashCode", $rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_hashCode), "$toString", $rt_wrapFunction0(oncirc_package$PatternExpressionsHaveSemanticInfo$_toString)], -oncirr_ProjectionClausesHaveSemanticInfo$, "ProjectionClausesHaveSemanticInfo$", 61, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_productArity), "$productElement", $rt_wrapFunction1(oncirr_ProjectionClausesHaveSemanticInfo$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_productIterator), -"$hashCode", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_hashCode), "$toString", $rt_wrapFunction0(oncirr_ProjectionClausesHaveSemanticInfo$_toString)], -oncirc_containsNoMatchingNodes, 0, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -oncirc_containsNoReturnAll$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirc_containsNoReturnAll$$anonfun$1_applyOrElse)], +oncifp_RewriteProcedureCalls, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncifp_TryRewriteProcedureCalls, 0, jl_Object, [oncifp_Phase, oncifp_RewriteProcedureCalls, s_Product, ji_Serializable], 0, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_TryRewriteProcedureCalls_transform), "$name", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_TryRewriteProcedureCalls_checkConditions), "$phase", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_phase), +"$postConditions", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_postConditions), "$productPrefix", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_productPrefix), "$process", $rt_wrapFunction2(oncifp_TryRewriteProcedureCalls_process)], +oncifp_extractSensitiveLiterals$, 0, jl_Object, [oncifp_Phase, onciu_StepSequencer$Step, s_Product, ji_Serializable], 4, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_extractSensitiveLiterals$_transform), "$name", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_name), "$checkConditions", $rt_wrapFunction3(oncifp_extractSensitiveLiterals$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_phase), "$postConditions", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_postConditions), +"$invalidatedConditions", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_invalidatedConditions), "$productPrefix", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_productPrefix), "$process", $rt_wrapFunction2(oncifp_extractSensitiveLiterals$_process)], jur_IntArrHash, 0, jl_Object, [], 0, 0, 0, 0, 0, -onciu_CartesianProductNotification, "CartesianProductNotification", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_CartesianProductNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_CartesianProductNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_CartesianProductNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_CartesianProductNotification_productIterator), "$hashCode", +onciu_StepSequencer$DefaultPostCondition$completed$, "StepSequencer$DefaultPostCondition$completed$", 52, jl_Object, [onciu_StepSequencer$Condition], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(onciu_StepSequencer$DefaultPostCondition$completed$_unary_$bang), "$toString", $rt_wrapFunction0(onciu_StepSequencer$DefaultPostCondition$completed$_toString)], +oncifp_CompilationPhaseTracer$CompilationPhaseEvent, 0, jl_Object, [jl_AutoCloseable], 3, 3, 0, 0, 0, +oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_0, 0, jl_Object, [oncifp_CompilationPhaseTracer$CompilationPhaseEvent], 0, 3, 0, 0, 0, +oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_1, 0, jl_Object, [oncifp_CompilationPhaseTracer], 0, 3, 0, 0, 0, +onciu_CartesianProductNotification, "CartesianProductNotification", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_CartesianProductNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_CartesianProductNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_CartesianProductNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_CartesianProductNotification_productIterator), "$hashCode", $rt_wrapFunction0(onciu_CartesianProductNotification_hashCode), "$toString", $rt_wrapFunction0(onciu_CartesianProductNotification_toString), "$equals", $rt_wrapFunction1(onciu_CartesianProductNotification_equals)], onn_RuntimeUnsupportedNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, scc_AsJavaExtensions, 0, jl_Object, [], 3, 3, 0, 0, 0, scc_AsScalaExtensions, 0, jl_Object, [], 3, 3, 0, 0, 0, sj_CollectionConverters$, 0, jl_Object, [scc_AsJavaExtensions, scc_AsScalaExtensions], 4, 3, 0, 0, 0, onn_NotificationDetail, 0, jl_Object, [], 0, 3, 0, 0, 0, -onn_NotificationCodeWithDescription, "NotificationCodeWithDescription", 71, jl_Enum, [], 12, 3, [0,0,0], onn_NotificationCodeWithDescription_$callClinit, 0, +onn_NotificationCodeWithDescription, "NotificationCodeWithDescription", 69, jl_Enum, [], 12, 3, [0,0,0], onn_NotificationCodeWithDescription_$callClinit, 0, onn_IndexHintUnfulfillableNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onn_JoinHintUnfulfillableNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, oncia_UsingIndexHint$UsingIndexHintType, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_UsingIndexHint$UsingAnyIndexType$, "UsingIndexHint$UsingAnyIndexType$", 36, jl_Object, [oncia_UsingIndexHint$UsingIndexHintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$UsingAnyIndexType$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$UsingAnyIndexType$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$UsingAnyIndexType$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$UsingAnyIndexType$_hashCode), +oncia_UsingIndexHint$UsingAnyIndexType$, "UsingIndexHint$UsingAnyIndexType$", 35, jl_Object, [oncia_UsingIndexHint$UsingIndexHintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$UsingAnyIndexType$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$UsingAnyIndexType$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$UsingAnyIndexType$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$UsingAnyIndexType$_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint$UsingAnyIndexType$_toString)], -oncia_UsingIndexHint$UsingTextIndexType$, "UsingIndexHint$UsingTextIndexType$", 36, jl_Object, [oncia_UsingIndexHint$UsingIndexHintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$UsingTextIndexType$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$UsingTextIndexType$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$UsingTextIndexType$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$UsingTextIndexType$_hashCode), +oncia_UsingIndexHint$UsingTextIndexType$, "UsingIndexHint$UsingTextIndexType$", 35, jl_Object, [oncia_UsingIndexHint$UsingIndexHintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$UsingTextIndexType$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$UsingTextIndexType$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$UsingTextIndexType$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$UsingTextIndexType$_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint$UsingTextIndexType$_toString)], -one_IndexHintException$IndexHintIndexType, "IndexHintException$IndexHintIndexType", 70, jl_Enum, [], 12, 3, [one_IndexHintException,0,"IndexHintIndexType"], 0, 0]); -$rt_metadata([oncia_UsingIndexHint$UsingRangeIndexType$, "UsingIndexHint$UsingRangeIndexType$", 36, jl_Object, [oncia_UsingIndexHint$UsingIndexHintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$UsingRangeIndexType$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$UsingRangeIndexType$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$UsingRangeIndexType$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$UsingRangeIndexType$_hashCode), +one_IndexHintException$IndexHintIndexType, "IndexHintException$IndexHintIndexType", 68, jl_Enum, [], 12, 3, [one_IndexHintException,0,"IndexHintIndexType"], 0, 0, +oncia_UsingIndexHint$UsingRangeIndexType$, "UsingIndexHint$UsingRangeIndexType$", 35, jl_Object, [oncia_UsingIndexHint$UsingIndexHintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$UsingRangeIndexType$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$UsingRangeIndexType$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$UsingRangeIndexType$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$UsingRangeIndexType$_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint$UsingRangeIndexType$_toString)], -oncia_UsingIndexHint$UsingPointIndexType$, "UsingIndexHint$UsingPointIndexType$", 36, jl_Object, [oncia_UsingIndexHint$UsingIndexHintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$UsingPointIndexType$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$UsingPointIndexType$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$UsingPointIndexType$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$UsingPointIndexType$_hashCode), +oncia_UsingIndexHint$UsingPointIndexType$, "UsingIndexHint$UsingPointIndexType$", 35, jl_Object, [oncia_UsingIndexHint$UsingIndexHintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$UsingPointIndexType$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$UsingPointIndexType$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$UsingPointIndexType$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$UsingPointIndexType$_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint$UsingPointIndexType$_toString)], onn_NodeIndexLookupUnfulfillableNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onn_RelationshipIndexLookupUnfulfillableNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, @@ -360056,63 +287757,73 @@ onn_LargeLabelWithLoadCsvNotification, 0, jl_Object, [onciu_InternalNotification onn_MissingLabelNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onn_MissingRelTypeNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onn_MissingPropertyNameNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -onciu_UnboundedShortestPathNotification, "UnboundedShortestPathNotification", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_UnboundedShortestPathNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_UnboundedShortestPathNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_UnboundedShortestPathNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_UnboundedShortestPathNotification_productIterator), +onciu_UnboundedShortestPathNotification, "UnboundedShortestPathNotification", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_UnboundedShortestPathNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_UnboundedShortestPathNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_UnboundedShortestPathNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_UnboundedShortestPathNotification_productIterator), "$hashCode", $rt_wrapFunction0(onciu_UnboundedShortestPathNotification_hashCode), "$toString", $rt_wrapFunction0(onciu_UnboundedShortestPathNotification_toString), "$equals", $rt_wrapFunction1(onciu_UnboundedShortestPathNotification_equals)], onn_ExhaustiveShortestPathForbiddenNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -onciu_DeprecatedFunctionNotification, "DeprecatedFunctionNotification", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedFunctionNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedFunctionNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedFunctionNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedFunctionNotification_productIterator), +onciu_DeprecatedFunctionNotification, "DeprecatedFunctionNotification", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedFunctionNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedFunctionNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedFunctionNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedFunctionNotification_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedFunctionNotification_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedFunctionNotification_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedFunctionNotification_equals)], -onn_DeprecatedProcedureNotification, "DeprecatedProcedureNotification", 71, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_DeprecatedProcedureNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_DeprecatedProcedureNotification_productArity), "$productElement", $rt_wrapFunction1(onn_DeprecatedProcedureNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_DeprecatedProcedureNotification_productIterator), +onn_DeprecatedProcedureNotification, "DeprecatedProcedureNotification", 69, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_DeprecatedProcedureNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_DeprecatedProcedureNotification_productArity), "$productElement", $rt_wrapFunction1(onn_DeprecatedProcedureNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_DeprecatedProcedureNotification_productIterator), "$hashCode", $rt_wrapFunction0(onn_DeprecatedProcedureNotification_hashCode), "$toString", $rt_wrapFunction0(onn_DeprecatedProcedureNotification_toString), "$equals", $rt_wrapFunction1(onn_DeprecatedProcedureNotification_equals)], -onn_DeprecatedProcedureReturnFieldNotification, "DeprecatedProcedureReturnFieldNotification", 71, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_DeprecatedProcedureReturnFieldNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_DeprecatedProcedureReturnFieldNotification_productArity), "$productElement", $rt_wrapFunction1(onn_DeprecatedProcedureReturnFieldNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_DeprecatedProcedureReturnFieldNotification_productIterator), +onn_DeprecatedProcedureReturnFieldNotification, "DeprecatedProcedureReturnFieldNotification", 69, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_DeprecatedProcedureReturnFieldNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_DeprecatedProcedureReturnFieldNotification_productArity), "$productElement", $rt_wrapFunction1(onn_DeprecatedProcedureReturnFieldNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_DeprecatedProcedureReturnFieldNotification_productIterator), "$hashCode", $rt_wrapFunction0(onn_DeprecatedProcedureReturnFieldNotification_hashCode), "$toString", $rt_wrapFunction0(onn_DeprecatedProcedureReturnFieldNotification_toString), "$equals", $rt_wrapFunction1(onn_DeprecatedProcedureReturnFieldNotification_equals)], -onn_DeprecatedProcedureFieldNotification, "DeprecatedProcedureFieldNotification", 71, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_DeprecatedProcedureFieldNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_DeprecatedProcedureFieldNotification_productArity), "$productElement", $rt_wrapFunction1(onn_DeprecatedProcedureFieldNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_DeprecatedProcedureFieldNotification_productIterator), +onn_DeprecatedProcedureFieldNotification, "DeprecatedProcedureFieldNotification", 69, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_DeprecatedProcedureFieldNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_DeprecatedProcedureFieldNotification_productArity), "$productElement", $rt_wrapFunction1(onn_DeprecatedProcedureFieldNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_DeprecatedProcedureFieldNotification_productIterator), "$hashCode", $rt_wrapFunction0(onn_DeprecatedProcedureFieldNotification_hashCode), "$toString", $rt_wrapFunction0(onn_DeprecatedProcedureFieldNotification_toString), "$equals", $rt_wrapFunction1(onn_DeprecatedProcedureFieldNotification_equals)], -onn_DeprecatedFunctionFieldNotification, "DeprecatedFunctionFieldNotification", 71, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_DeprecatedFunctionFieldNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_DeprecatedFunctionFieldNotification_productArity), "$productElement", $rt_wrapFunction1(onn_DeprecatedFunctionFieldNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_DeprecatedFunctionFieldNotification_productIterator), +onn_DeprecatedFunctionFieldNotification, "DeprecatedFunctionFieldNotification", 69, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_DeprecatedFunctionFieldNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_DeprecatedFunctionFieldNotification_productArity), "$productElement", $rt_wrapFunction1(onn_DeprecatedFunctionFieldNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_DeprecatedFunctionFieldNotification_productIterator), "$hashCode", $rt_wrapFunction0(onn_DeprecatedFunctionFieldNotification_hashCode), "$toString", $rt_wrapFunction0(onn_DeprecatedFunctionFieldNotification_toString), "$equals", $rt_wrapFunction1(onn_DeprecatedFunctionFieldNotification_equals)], -onciu_DeprecatedRelTypeSeparatorNotification, "DeprecatedRelTypeSeparatorNotification", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedRelTypeSeparatorNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedRelTypeSeparatorNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedRelTypeSeparatorNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedRelTypeSeparatorNotification_productIterator), +onciu_DeprecatedRelTypeSeparatorNotification, "DeprecatedRelTypeSeparatorNotification", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedRelTypeSeparatorNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedRelTypeSeparatorNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedRelTypeSeparatorNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedRelTypeSeparatorNotification_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedRelTypeSeparatorNotification_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedRelTypeSeparatorNotification_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedRelTypeSeparatorNotification_equals)], -onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification, "DeprecatedNodesOrRelationshipsInSetClauseNotification", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productElement), +onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification, "DeprecatedNodesOrRelationshipsInSetClauseNotification", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedNodesOrRelationshipsInSetClauseNotification_equals)], -onciu_DeprecatedPropertyReferenceInCreate, "DeprecatedPropertyReferenceInCreate", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedPropertyReferenceInCreate_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_productIterator), -"$hashCode", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedPropertyReferenceInCreate_equals)], -onciu_DeprecatedPropertyReferenceInMerge, "DeprecatedPropertyReferenceInMerge", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInMerge_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInMerge_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedPropertyReferenceInMerge_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInMerge_productIterator), +onciu_DeprecatedPropertyReferenceInCreate, "DeprecatedPropertyReferenceInCreate", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedPropertyReferenceInCreate_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_productIterator), +"$hashCode", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInCreate_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedPropertyReferenceInCreate_equals)]]); +$rt_metadata([onciu_DeprecatedPropertyReferenceInMerge, "DeprecatedPropertyReferenceInMerge", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInMerge_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInMerge_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedPropertyReferenceInMerge_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInMerge_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInMerge_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedPropertyReferenceInMerge_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedPropertyReferenceInMerge_equals)], -onn_ProcedureWarningNotification, "ProcedureWarningNotification", 71, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_ProcedureWarningNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_ProcedureWarningNotification_productArity), "$productElement", $rt_wrapFunction1(onn_ProcedureWarningNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_ProcedureWarningNotification_productIterator), "$hashCode", $rt_wrapFunction0(onn_ProcedureWarningNotification_hashCode), +onn_ProcedureWarningNotification, "ProcedureWarningNotification", 69, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onn_ProcedureWarningNotification_productPrefix), "$productArity", $rt_wrapFunction0(onn_ProcedureWarningNotification_productArity), "$productElement", $rt_wrapFunction1(onn_ProcedureWarningNotification_productElement), "$productIterator", $rt_wrapFunction0(onn_ProcedureWarningNotification_productIterator), "$hashCode", $rt_wrapFunction0(onn_ProcedureWarningNotification_hashCode), "$toString", $rt_wrapFunction0(onn_ProcedureWarningNotification_toString), "$equals", $rt_wrapFunction1(onn_ProcedureWarningNotification_equals)], onn_MissingParametersNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onn_CodeGenerationFailedNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -onciu_SubqueryVariableShadowing, "SubqueryVariableShadowing", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_productPrefix), "$productArity", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_productArity), "$productElement", $rt_wrapFunction1(onciu_SubqueryVariableShadowing_productElement), "$productIterator", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_productIterator), "$hashCode", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_hashCode), +onciu_SubqueryVariableShadowing, "SubqueryVariableShadowing", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_productPrefix), "$productArity", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_productArity), "$productElement", $rt_wrapFunction1(onciu_SubqueryVariableShadowing_productElement), "$productIterator", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_productIterator), "$hashCode", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_hashCode), "$toString", $rt_wrapFunction0(onciu_SubqueryVariableShadowing_toString), "$equals", $rt_wrapFunction1(onciu_SubqueryVariableShadowing_equals)], -onciu_RedundantOptionalProcedure, "RedundantOptionalProcedure", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_productPrefix), "$productArity", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_productArity), "$productElement", $rt_wrapFunction1(onciu_RedundantOptionalProcedure_productElement), "$productIterator", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_productIterator), "$hashCode", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_hashCode), +onciu_RedundantOptionalProcedure, "RedundantOptionalProcedure", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_productPrefix), "$productArity", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_productArity), "$productElement", $rt_wrapFunction1(onciu_RedundantOptionalProcedure_productElement), "$productIterator", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_productIterator), "$hashCode", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_hashCode), "$toString", $rt_wrapFunction0(onciu_RedundantOptionalProcedure_toString), "$equals", $rt_wrapFunction1(onciu_RedundantOptionalProcedure_equals)], -onciu_RedundantOptionalSubquery, "RedundantOptionalSubquery", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_productPrefix), "$productArity", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_productArity), "$productElement", $rt_wrapFunction1(onciu_RedundantOptionalSubquery_productElement), "$productIterator", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_productIterator), "$hashCode", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_hashCode), +onciu_RedundantOptionalSubquery, "RedundantOptionalSubquery", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_productPrefix), "$productArity", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_productArity), "$productElement", $rt_wrapFunction1(onciu_RedundantOptionalSubquery_productElement), "$productIterator", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_productIterator), "$hashCode", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_hashCode), "$toString", $rt_wrapFunction0(onciu_RedundantOptionalSubquery_toString), "$equals", $rt_wrapFunction1(onciu_RedundantOptionalSubquery_equals)], -onciu_DeprecatedImportingWithInSubqueryCall, "DeprecatedImportingWithInSubqueryCall", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedImportingWithInSubqueryCall_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedImportingWithInSubqueryCall_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedImportingWithInSubqueryCall_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedImportingWithInSubqueryCall_productIterator), +onciu_DeprecatedImportingWithInSubqueryCall, "DeprecatedImportingWithInSubqueryCall", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedImportingWithInSubqueryCall_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedImportingWithInSubqueryCall_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedImportingWithInSubqueryCall_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedImportingWithInSubqueryCall_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedImportingWithInSubqueryCall_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedImportingWithInSubqueryCall_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedImportingWithInSubqueryCall_equals)], -onciu_UnionReturnItemsInDifferentOrder, "UnionReturnItemsInDifferentOrder", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_UnionReturnItemsInDifferentOrder_productPrefix), "$productArity", $rt_wrapFunction0(onciu_UnionReturnItemsInDifferentOrder_productArity), "$productElement", $rt_wrapFunction1(onciu_UnionReturnItemsInDifferentOrder_productElement), "$productIterator", $rt_wrapFunction0(onciu_UnionReturnItemsInDifferentOrder_productIterator), -"$hashCode", $rt_wrapFunction0(onciu_UnionReturnItemsInDifferentOrder_hashCode), "$toString", $rt_wrapFunction0(onciu_UnionReturnItemsInDifferentOrder_toString), "$equals", $rt_wrapFunction1(onciu_UnionReturnItemsInDifferentOrder_equals)], +onciu_DeprecatedWhereVariableInNodePattern, "DeprecatedWhereVariableInNodePattern", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInNodePattern_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInNodePattern_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedWhereVariableInNodePattern_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInNodePattern_productIterator), +"$hashCode", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInNodePattern_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInNodePattern_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedWhereVariableInNodePattern_equals)], +onciu_DeprecatedWhereVariableInRelationshipPattern, "DeprecatedWhereVariableInRelationshipPattern", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInRelationshipPattern_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInRelationshipPattern_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedWhereVariableInRelationshipPattern_productElement), "$productIterator", +$rt_wrapFunction0(onciu_DeprecatedWhereVariableInRelationshipPattern_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInRelationshipPattern_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedWhereVariableInRelationshipPattern_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedWhereVariableInRelationshipPattern_equals)], +onciu_DeprecatedPrecedenceOfLabelExpressionPredicate, "DeprecatedPrecedenceOfLabelExpressionPredicate", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_productElement), "$productIterator", +$rt_wrapFunction0(onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedPrecedenceOfLabelExpressionPredicate_equals)], +onciu_DeprecatedKeywordVariableInWhenOperand, "DeprecatedKeywordVariableInWhenOperand", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedKeywordVariableInWhenOperand_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedKeywordVariableInWhenOperand_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedKeywordVariableInWhenOperand_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedKeywordVariableInWhenOperand_productIterator), +"$hashCode", $rt_wrapFunction0(onciu_DeprecatedKeywordVariableInWhenOperand_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedKeywordVariableInWhenOperand_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedKeywordVariableInWhenOperand_equals)], onciu_HomeDatabaseNotPresent, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -onciu_FixedLengthRelationshipInShortestPath, "FixedLengthRelationshipInShortestPath", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_FixedLengthRelationshipInShortestPath_productPrefix), "$productArity", $rt_wrapFunction0(onciu_FixedLengthRelationshipInShortestPath_productArity), "$productElement", $rt_wrapFunction1(onciu_FixedLengthRelationshipInShortestPath_productElement), "$productIterator", $rt_wrapFunction0(onciu_FixedLengthRelationshipInShortestPath_productIterator), +onciu_FixedLengthRelationshipInShortestPath, "FixedLengthRelationshipInShortestPath", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_FixedLengthRelationshipInShortestPath_productPrefix), "$productArity", $rt_wrapFunction0(onciu_FixedLengthRelationshipInShortestPath_productArity), "$productElement", $rt_wrapFunction1(onciu_FixedLengthRelationshipInShortestPath_productElement), "$productIterator", $rt_wrapFunction0(onciu_FixedLengthRelationshipInShortestPath_productIterator), "$hashCode", $rt_wrapFunction0(onciu_FixedLengthRelationshipInShortestPath_hashCode), "$toString", $rt_wrapFunction0(onciu_FixedLengthRelationshipInShortestPath_toString), "$equals", $rt_wrapFunction1(onciu_FixedLengthRelationshipInShortestPath_equals)], -onciu_DeprecatedTextIndexProvider, "DeprecatedTextIndexProvider", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedTextIndexProvider_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedTextIndexProvider_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedTextIndexProvider_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedTextIndexProvider_productIterator), "$hashCode", +onciu_DeprecatedTextIndexProvider, "DeprecatedTextIndexProvider", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedTextIndexProvider_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedTextIndexProvider_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedTextIndexProvider_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedTextIndexProvider_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedTextIndexProvider_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedTextIndexProvider_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedTextIndexProvider_equals)], -onciu_DeprecatedDatabaseNameNotification, "DeprecatedDatabaseNameNotification", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedDatabaseNameNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedDatabaseNameNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedDatabaseNameNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedDatabaseNameNotification_productIterator), +onciu_DeprecatedIndexProviderOption, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +onciu_DeprecatedDatabaseNameNotification, "DeprecatedDatabaseNameNotification", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedDatabaseNameNotification_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedDatabaseNameNotification_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedDatabaseNameNotification_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedDatabaseNameNotification_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedDatabaseNameNotification_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedDatabaseNameNotification_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedDatabaseNameNotification_equals)], onciu_DeprecatedRuntimeNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -onn_NotificationWrapping$$asKernelNotification$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onn_NotificationWrapping$$asKernelNotification$lambda$_1_0_apply)], -onn_NotificationWrapping$$asKernelNotification$lambda$_1_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onn_NotificationWrapping$$asKernelNotification$lambda$_1_1_apply)], -onciu_UnsatisfiableRelationshipTypeExpression, "UnsatisfiableRelationshipTypeExpression", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_UnsatisfiableRelationshipTypeExpression_productPrefix), "$productArity", $rt_wrapFunction0(onciu_UnsatisfiableRelationshipTypeExpression_productArity), "$productElement", $rt_wrapFunction1(onciu_UnsatisfiableRelationshipTypeExpression_productElement), "$productIterator", $rt_wrapFunction0(onciu_UnsatisfiableRelationshipTypeExpression_productIterator), +onn_NotificationWrapping$$asKernelNotification$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onn_NotificationWrapping$$asKernelNotification$lambda$_2_0_apply)], +onn_NotificationWrapping$$asKernelNotification$lambda$_2_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onn_NotificationWrapping$$asKernelNotification$lambda$_2_1_apply)], +onciu_UnsatisfiableRelationshipTypeExpression, "UnsatisfiableRelationshipTypeExpression", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_UnsatisfiableRelationshipTypeExpression_productPrefix), "$productArity", $rt_wrapFunction0(onciu_UnsatisfiableRelationshipTypeExpression_productArity), "$productElement", $rt_wrapFunction1(onciu_UnsatisfiableRelationshipTypeExpression_productElement), "$productIterator", $rt_wrapFunction0(onciu_UnsatisfiableRelationshipTypeExpression_productIterator), "$hashCode", $rt_wrapFunction0(onciu_UnsatisfiableRelationshipTypeExpression_hashCode), "$toString", $rt_wrapFunction0(onciu_UnsatisfiableRelationshipTypeExpression_toString), "$equals", $rt_wrapFunction1(onciu_UnsatisfiableRelationshipTypeExpression_equals)], -onciu_RepeatedRelationshipReference, "RepeatedRelationshipReference", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_RepeatedRelationshipReference_productPrefix), "$productArity", $rt_wrapFunction0(onciu_RepeatedRelationshipReference_productArity), "$productElement", $rt_wrapFunction1(onciu_RepeatedRelationshipReference_productElement), "$productIterator", $rt_wrapFunction0(onciu_RepeatedRelationshipReference_productIterator), "$hashCode", +onciu_RuntimeUnsatisfiableRelationshipTypeExpression, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +onciu_RepeatedRelationshipReference, "RepeatedRelationshipReference", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_RepeatedRelationshipReference_productPrefix), "$productArity", $rt_wrapFunction0(onciu_RepeatedRelationshipReference_productArity), "$productElement", $rt_wrapFunction1(onciu_RepeatedRelationshipReference_productElement), "$productIterator", $rt_wrapFunction0(onciu_RepeatedRelationshipReference_productIterator), "$hashCode", $rt_wrapFunction0(onciu_RepeatedRelationshipReference_hashCode), "$toString", $rt_wrapFunction0(onciu_RepeatedRelationshipReference_toString), "$equals", $rt_wrapFunction1(onciu_RepeatedRelationshipReference_equals)], -onciu_RepeatedVarLengthRelationshipReference, "RepeatedVarLengthRelationshipReference", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_RepeatedVarLengthRelationshipReference_productPrefix), "$productArity", $rt_wrapFunction0(onciu_RepeatedVarLengthRelationshipReference_productArity), "$productElement", $rt_wrapFunction1(onciu_RepeatedVarLengthRelationshipReference_productElement), "$productIterator", $rt_wrapFunction0(onciu_RepeatedVarLengthRelationshipReference_productIterator), +onciu_RepeatedVarLengthRelationshipReference, "RepeatedVarLengthRelationshipReference", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_RepeatedVarLengthRelationshipReference_productPrefix), "$productArity", $rt_wrapFunction0(onciu_RepeatedVarLengthRelationshipReference_productArity), "$productElement", $rt_wrapFunction1(onciu_RepeatedVarLengthRelationshipReference_productElement), "$productIterator", $rt_wrapFunction0(onciu_RepeatedVarLengthRelationshipReference_productIterator), "$hashCode", $rt_wrapFunction0(onciu_RepeatedVarLengthRelationshipReference_hashCode), "$toString", $rt_wrapFunction0(onciu_RepeatedVarLengthRelationshipReference_toString), "$equals", $rt_wrapFunction1(onciu_RepeatedVarLengthRelationshipReference_equals)], -onciu_DeprecatedIdentifierWhitespaceUnicode, "DeprecatedIdentifierWhitespaceUnicode", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedIdentifierWhitespaceUnicode_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedIdentifierWhitespaceUnicode_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedIdentifierWhitespaceUnicode_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedIdentifierWhitespaceUnicode_productIterator), +onciu_DeprecatedIdentifierWhitespaceUnicode, "DeprecatedIdentifierWhitespaceUnicode", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedIdentifierWhitespaceUnicode_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedIdentifierWhitespaceUnicode_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedIdentifierWhitespaceUnicode_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedIdentifierWhitespaceUnicode_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedIdentifierWhitespaceUnicode_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedIdentifierWhitespaceUnicode_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedIdentifierWhitespaceUnicode_equals)], -onciu_DeprecatedIdentifierUnicode, "DeprecatedIdentifierUnicode", 54, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedIdentifierUnicode_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedIdentifierUnicode_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedIdentifierUnicode_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedIdentifierUnicode_productIterator), "$hashCode", +onciu_DeprecatedIdentifierUnicode, "DeprecatedIdentifierUnicode", 52, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_DeprecatedIdentifierUnicode_productPrefix), "$productArity", $rt_wrapFunction0(onciu_DeprecatedIdentifierUnicode_productArity), "$productElement", $rt_wrapFunction1(onciu_DeprecatedIdentifierUnicode_productElement), "$productIterator", $rt_wrapFunction0(onciu_DeprecatedIdentifierUnicode_productIterator), "$hashCode", $rt_wrapFunction0(onciu_DeprecatedIdentifierUnicode_hashCode), "$toString", $rt_wrapFunction0(onciu_DeprecatedIdentifierUnicode_toString), "$equals", $rt_wrapFunction1(onciu_DeprecatedIdentifierUnicode_equals)], onciu_DeprecatedConnectComponentsPlannerPreParserOption, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_DeprecatedOptionInOptionMap, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +onciu_DeprecatedSeedingOption, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +onciu_DeprecatedStoreFormat, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_AuthProviderNotDefined, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_ExternalAuthNotEnabled, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_AssignPrivilegeCommandHasNoEffectNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, @@ -360120,8 +287831,8 @@ onciu_RevokePrivilegeCommandHasNoEffectNotification, 0, jl_Object, [onciu_Intern onciu_GrantRoleCommandHasNoEffectNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_RevokeRoleCommandHasNoEffectNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_IndexOrConstraintAlreadyExistsNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -onciu_IndexOrConstraintDoesNotExistNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_ImpossibleRevokeCommandWarning, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +onciu_IndexOrConstraintDoesNotExistNotification, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +onciu_ImpossibleRevokeCommandWarning, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_ServerAlreadyEnabled, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_ServerAlreadyCordoned, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_NoDatabasesReallocated, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, @@ -360129,14 +287840,12 @@ onciu_CordonedServersExistedDuringAllocation, 0, jl_Object, [onciu_InternalNotif onciu_RequestedTopologyMatchedCurrentTopology, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 0, 3, 0, 0, 0, onciu_AggregationSkippedNull$, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 4, 3, 0, 0, 0, onciu_DeprecatedBooleanCoercion$, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +onciu_InsecureProtocol$, 0, jl_Object, [onciu_InternalNotification, s_Product, ji_Serializable], 4, 3, 0, 0, 0, sc_SeqView, 0, jl_Object, [sc_SeqOps, sc_View], 3, 3, 0, 0, 0, sc_IndexedSeqView, 0, jl_Object, [sc_IndexedSeqOps, sc_SeqView], 3, 3, 0, 0, 0, -otr_EventQueue$Event, 0, jl_Object, [], 3, 3, 0, 0, 0, -jl_ThreadInterruptHandler, 0, jl_Object, [], 3, 3, 0, 0, 0, +otr_EventQueue$Event, 0, jl_Object, [], 3, 3, 0, 0, 0]); +$rt_metadata([jl_ThreadInterruptHandler, 0, jl_Object, [], 3, 3, 0, 0, 0, jlr_ReferenceQueue$RemoveCallback, 0, jl_Object, [otr_EventQueue$Event, otp_PlatformRunnable, oti_AsyncCallback, jl_ThreadInterruptHandler], 0, 0, 0, 0, 0, -oncifh_package$$closing$default$3$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncifh_package$$closing$default$4$lambda$_3_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, -oncifh_package$$closing$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, onciu_StepSequencer$$anonfun$orderSteps$19$lambda$_39_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$19$lambda$_39_0_apply)], onciu_StepSequencer$RepeatedSteps$Forbidden$, 0, jl_Object, [onciu_StepSequencer$RepeatedSteps], 0, 3, 0, 0, 0, onciu_StepSequencer$$anonfun$orderSteps$25$lambda$_48_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$25$lambda$_48_0_apply)], @@ -360156,85 +287865,89 @@ onn_NotificationDetail$nodeIndexSeekOrScan$lambda$_15_0, 0, jl_Object, [juf_Func jus_Collectors, 0, jl_Object, [], 4, 3, 0, 0, 0, ju_Set, 0, jl_Object, [ju_Collection], 3, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], onn_NotificationDetail$relationshipIndexSeekOrScan$lambda$_16_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onn_NotificationDetail$relationshipIndexSeekOrScan$lambda$_16_0_apply)], -ong_GqlParams$GqlParam, "GqlParams$GqlParam", 68, jl_Object, [], 3, 3, [ong_GqlParams,0,"GqlParam"], 0, 0, -ong_GqlParams$StringParam, "GqlParams$StringParam", 68, jl_Enum, [ong_GqlParams$GqlParam], 12, 3, [ong_GqlParams,0,"StringParam"], 0, ["$process", $rt_wrapFunction1(ong_GqlParams$StringParam_process)], +ong_GqlParams$GqlParam, "GqlParams$GqlParam", 66, jl_Object, [], 3, 3, [ong_GqlParams,0,"GqlParam"], 0, 0, +ong_GqlParams$StringParam, "GqlParams$StringParam", 66, jl_Enum, [ong_GqlParams$GqlParam], 12, 3, [ong_GqlParams,0,"StringParam"], 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$StringParam_process)], onis_AllIndexProviderDescriptors, 0, jl_Object, [], 3, 3, 0, onis_AllIndexProviderDescriptors_$callClinit, 0, +onsa_DeprecatedFormatWarning, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1_applyOrElse)], onkae_Status, 0, jl_Object, [], 3, 3, 0, 0, 0, -onkae_Status$Statement, "Status$Statement", 33, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Statement"], onkae_Status$Statement_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Statement_code)], +onkae_Status$Statement, "Status$Statement", 32, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Statement"], onkae_Status$Statement_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Statement_code)], ong_GqlStatusInfo, 0, jl_Object, [], 3, 3, 0, 0, 0, -ong_GqlStatusInfoCodes, "GqlStatusInfoCodes", 68, jl_Enum, [ong_GqlStatusInfo], 12, 3, [0,0,0], ong_GqlStatusInfoCodes_$callClinit, 0, -onkae_Status$Schema, "Status$Schema", 33, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Schema"], onkae_Status$Schema_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Schema_code)], -onkae_Status$Procedure, "Status$Procedure", 33, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Procedure"], onkae_Status$Procedure_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Procedure_code)], -onkae_Status$Request, "Status$Request", 33, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Request"], onkae_Status$Request_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Request_code)], -onkae_Status$Database, "Status$Database", 33, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Database"], onkae_Status$Database_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Database_code)], -onkae_Status$Security, "Status$Security", 33, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Security"], onkae_Status$Security_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Security_code)], -onkae_Status$Cluster, "Status$Cluster", 33, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Cluster"], onkae_Status$Cluster_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Cluster_code)], +ong_GqlStatusInfoCodes, "GqlStatusInfoCodes", 66, jl_Enum, [ong_GqlStatusInfo], 12, 3, [0,0,0], ong_GqlStatusInfoCodes_$callClinit, 0, +onkae_Status$Schema, "Status$Schema", 32, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Schema"], onkae_Status$Schema_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Schema_code)], +onkae_Status$Procedure, "Status$Procedure", 32, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Procedure"], onkae_Status$Procedure_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Procedure_code)], +onkae_Status$Request, "Status$Request", 32, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Request"], onkae_Status$Request_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Request_code)], +onkae_Status$Database, "Status$Database", 32, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Database"], onkae_Status$Database_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Database_code)], +onkae_Status$Security, "Status$Security", 32, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Security"], onkae_Status$Security_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Security_code)], +onkae_Status$Cluster, "Status$Cluster", 32, jl_Enum, [onkae_Status], 12, 3, [onkae_Status,0,"Cluster"], onkae_Status$Cluster_$callClinit, ["$code", $rt_wrapFunction0(onkae_Status$Cluster_code)], onn_NotificationImplementation$NotificationBuilder, 0, jl_Object, [], 0, 3, 0, 0, 0, -ju_Arrays$ArrayAsList, "Arrays$ArrayAsList", 5, ju_AbstractList, [ju_RandomAccess], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_Arrays$ArrayAsList_get), "$size", $rt_wrapFunction0(ju_Arrays$ArrayAsList_size)]]); -$rt_metadata([one_IndexHintException$indexFormatString$lambda$_4_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(one_IndexHintException$indexFormatString$lambda$_4_0_apply)], +ju_Arrays$ArrayAsList, "Arrays$ArrayAsList", 5, ju_AbstractList, [ju_RandomAccess], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_Arrays$ArrayAsList_get), "$size", $rt_wrapFunction0(ju_Arrays$ArrayAsList_size)], +one_IndexHintException$indexFormatString$lambda$_4_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(one_IndexHintException$indexFormatString$lambda$_4_0_apply)], +jl_MatchException, "MatchException", 12, jl_RuntimeException, [], 4, 3, 0, 0, 0, one_IndexHintException$1, 0, jl_Object, [], 32, 0, 0, one_IndexHintException$1_$callClinit, 0, -jl_LinkageError, 0, jl_Error, [], 0, 3, 0, 0, 0, -jl_IncompatibleClassChangeError, "IncompatibleClassChangeError", 14, jl_LinkageError, [], 0, 3, 0, 0, 0, juf_Supplier, 0, jl_Object, [], 3, 3, 0, 0, 0, jus_Collectors$toSet$lambda$_4_0, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get1", $rt_wrapFunction0(jus_Collectors$toSet$lambda$_4_0_get)], ju_Formatter, 0, jl_Object, [ji_Closeable, ji_Flushable], 4, 3, 0, 0, 0, -onis_IndexProviderDescriptor, "IndexProviderDescriptor", 28, jl_Object, [], 0, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(onis_IndexProviderDescriptor_hashCode), "$equals", $rt_wrapFunction1(onis_IndexProviderDescriptor_equals), "$toString", $rt_wrapFunction0(onis_IndexProviderDescriptor_toString)], -onkae_Status$Code, "Status$Code", 33, jl_Object, [], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onkae_Status$Code_toString)], +onis_IndexProviderDescriptor, "IndexProviderDescriptor", 26, jl_Object, [], 0, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(onis_IndexProviderDescriptor_hashCode), "$equals", $rt_wrapFunction1(onis_IndexProviderDescriptor_equals), "$toString", $rt_wrapFunction0(onis_IndexProviderDescriptor_toString)], +onkae_Status$Code, "Status$Code", 32, jl_Object, [], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onkae_Status$Code_toString)], juf_BiConsumer, 0, jl_Object, [], 3, 3, 0, 0, 0, jus_Collectors$toCollection$lambda$_1_0, 0, jl_Object, [juf_BiConsumer], 0, 3, 0, 0, ["$accept0", $rt_wrapFunction2(jus_Collectors$toCollection$lambda$_1_0_accept)], juf_BiFunction, 0, jl_Object, [], 3, 3, 0, 0, 0, -juf_BinaryOperator, 0, jl_Object, [juf_BiFunction], 3, 3, 0, 0, 0, -jus_Collectors$toCollection$lambda$_1_1, 0, jl_Object, [juf_BinaryOperator], 0, 3, 0, 0, 0, +juf_BinaryOperator, 0, jl_Object, [juf_BiFunction], 3, 3, 0, 0, 0]); +$rt_metadata([jus_Collectors$toCollection$lambda$_1_1, 0, jl_Object, [juf_BinaryOperator], 0, 3, 0, 0, 0, jus_Collector$Characteristics, "Collector$Characteristics", 7, jl_Enum, [], 12, 3, [jus_Collector,0,0], 0, 0, jus_Collector, 0, jl_Object, [], 3, 3, 0, 0, 0, ju_Locale, 0, jl_Object, [jl_Cloneable, ji_Serializable], 4, 3, 0, ju_Locale_$callClinit, 0, -ong_GqlParams$Processor, 0, jl_Object, [], 1, 3, 0, 0, ["$process", $rt_wrapFunction1(ong_GqlParams$Processor_process)], +ong_GqlParams$Processor, 0, jl_Object, [], 1, 3, 0, 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$Processor_process)], ong_GqlParams$VERBATIM, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, 0, -ong_GqlParams$IDENT, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process", $rt_wrapFunction1(ong_GqlParams$IDENT_process)], -ong_GqlParams$STRLIT, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process", $rt_wrapFunction1(ong_GqlParams$STRLIT_process)], -ong_GqlParams$CHAR_RANGE, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process", $rt_wrapFunction1(ong_GqlParams$CHAR_RANGE_process)], -ong_GqlParams$UPPER, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process", $rt_wrapFunction1(ong_GqlParams$UPPER_process)], +ong_GqlParams$IDENT, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$IDENT_process)], +ong_GqlParams$STRLIT, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$STRLIT_process)], +ong_GqlParams$CHAR_RANGE, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$CHAR_RANGE_process)], +ong_GqlParams$UPPER, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$UPPER_process)], ong_GqlParams$COORDINATES, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, 0, -ong_GqlParams$CALLABLE_IDENT, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process", $rt_wrapFunction1(ong_GqlParams$CALLABLE_IDENT_process)], -ong_GqlParams$PARAM, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process", $rt_wrapFunction1(ong_GqlParams$PARAM_process)], +ong_GqlParams$CALLABLE_IDENT, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$CALLABLE_IDENT_process)], +ong_GqlParams$PARAM, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$PARAM_process)], ong_GqlParams$TEMPORAL, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, 0, ong_GqlParams$VAL, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, 0, ong_GqlParams$VALTYPE, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, 0, -onis_IndexType, "IndexType", 28, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -onkae_Status$Classification, "Status$Classification", 33, jl_Enum, [], 12, 3, [onkae_Status,0,"Classification"], onkae_Status$Classification_$callClinit, 0, -onkae_SeverityLevel, "SeverityLevel", 33, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -onkae_NotificationCategory, "NotificationCategory", 33, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +onis_IndexType, "IndexType", 26, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +onkae_Status$Classification, "Status$Classification", 32, jl_Enum, [], 12, 3, [onkae_Status,0,"Classification"], onkae_Status$Classification_$callClinit, 0, +onkae_SeverityLevel, "SeverityLevel", 32, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +onkae_NotificationCategory, "NotificationCategory", 32, jl_Enum, [], 12, 3, [0,0,0], 0, 0, jl_Record, 0, jl_Object, [], 1, 3, 0, 0, 0, ong_GqlStatus, 0, jl_Record, [], 32772, 3, 0, 0, 0, ju_Collections, 0, jl_Object, [], 0, 3, 0, 0, 0, -ong_Condition, "Condition", 68, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +ong_Condition, "Condition", 66, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +ong_GqlClassification, 0, jl_Object, [], 3, 3, 0, 0, 0, +ong_NotificationClassification, "NotificationClassification", 66, jl_Enum, [ong_GqlClassification], 12, 3, [0,0,0], 0, 0, ong_GqlParams$HasJoinStyle, 0, jl_Object, [], 3, 3, 0, 0, 0, -ong_GqlParams$ListParam, "GqlParams$ListParam", 68, jl_Enum, [ong_GqlParams$GqlParam, ong_GqlParams$HasJoinStyle], 12, 3, [ong_GqlParams,0,"ListParam"], ong_GqlParams$ListParam_$callClinit, ["$process", $rt_wrapFunction1(ong_GqlParams$ListParam_process)], +ong_GqlParams$ListParam, "GqlParams$ListParam", 66, jl_Enum, [ong_GqlParams$GqlParam, ong_GqlParams$HasJoinStyle], 12, 3, [ong_GqlParams,0,"ListParam"], ong_GqlParams$ListParam_$callClinit, ["$process0", $rt_wrapFunction1(ong_GqlParams$ListParam_process)], ong_GqlParams$SpecialRule, 0, jl_Object, [], 3, 3, 0, 0, 0, -ong_GqlParams$JoinStyle, "GqlParams$JoinStyle", 68, jl_Enum, [ong_GqlParams$SpecialRule], 12, 3, [ong_GqlParams,0,"JoinStyle"], 0, 0, -ong_GqlParams$NumberParam, "GqlParams$NumberParam", 68, jl_Enum, [ong_GqlParams$GqlParam], 12, 3, [ong_GqlParams,0,"NumberParam"], ong_GqlParams$NumberParam_$callClinit, ["$process", $rt_wrapFunction1(ong_GqlParams$NumberParam_process)], +ong_GqlParams$JoinStyle, "GqlParams$JoinStyle", 66, jl_Enum, [ong_GqlParams$SpecialRule], 12, 3, [ong_GqlParams,0,"JoinStyle"], 0, 0, +ong_ErrorClassification, "ErrorClassification", 66, jl_Enum, [ong_GqlClassification], 12, 3, [0,0,0], 0, 0, +ong_GqlParams$NumberParam, "GqlParams$NumberParam", 66, jl_Enum, [ong_GqlParams$GqlParam], 12, 3, [ong_GqlParams,0,"NumberParam"], 0, ["$process0", $rt_wrapFunction1(ong_GqlParams$NumberParam_process)], juf_ToIntFunction, 0, jl_Object, [], 3, 3, 0, 0, 0, ong_GqlStatusInfoCodes$getOffsets$lambda$_8_0, 0, jl_Object, [juf_ToIntFunction], 0, 3, 0, 0, ["$applyAsInt", $rt_wrapFunction1(ong_GqlStatusInfoCodes$getOffsets$lambda$_8_0_applyAsInt)], jus_Collectors$joining$lambda$_8_0, 0, jl_Object, [juf_BiConsumer], 0, 3, 0, 0, ["$accept0", $rt_wrapFunction2(jus_Collectors$joining$lambda$_8_0_accept)], jus_Collectors$joining$lambda$_8_1, 0, jl_Object, [juf_BinaryOperator], 0, 3, 0, 0, 0, jus_Collectors$joining$lambda$_8_2, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get1", $rt_wrapFunction0(jus_Collectors$joining$lambda$_8_2_get)], jus_Collectors$joining$lambda$_8_3, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(jus_Collectors$joining$lambda$_8_3_apply)], -onc_EntityType, "EntityType", 29, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -jus_Collector$of$lambda$_5_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(jus_Collector$of$lambda$_5_0_apply)]]); -$rt_metadata([ju_Formatter$FormatWriter, 0, jl_Object, [], 0, 0, 0, 0, 0, -ji_IOException, "IOException", 11, jl_Exception, [], 0, 3, 0, 0, 0, +onc_EntityType, "EntityType", 28, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +jus_Collector$of$lambda$_5_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(jus_Collector$of$lambda$_5_0_apply)], +ju_Formatter$FormatWriter, 0, jl_Object, [], 0, 0, 0, 0, 0, +ji_IOException, 0, jl_Exception, [], 0, 3, 0, 0, 0, ju_FormatterClosedException, "FormatterClosedException", 5, jl_IllegalStateException, [], 0, 3, 0, 0, 0, ju_TemplateCollections$AbstractImmutableMap, 0, ju_AbstractMap, [], 1, 0, 0, 0, ["$put", $rt_wrapFunction2(ju_TemplateCollections$AbstractImmutableMap_put)], -ju_TemplateCollections$NEtriesMap, "TemplateCollections$NEtriesMap", 5, ju_TemplateCollections$AbstractImmutableMap, [], 0, 0, 0, 0, ["$size", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap_size), "$isEmpty", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap_isEmpty), "$containsKey", $rt_wrapFunction1(ju_TemplateCollections$NEtriesMap_containsKey), "$get6", $rt_wrapFunction1(ju_TemplateCollections$NEtriesMap_get), "$entrySet", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap_entrySet)], -onkae_Status$NotificationCode, "Status$NotificationCode", 33, onkae_Status$Code, [], 0, 3, 0, 0, 0, +ju_TemplateCollections$NEtriesMap, "TemplateCollections$NEtriesMap", 5, ju_TemplateCollections$AbstractImmutableMap, [], 0, 0, 0, 0, ["$size", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap_size), "$containsKey", $rt_wrapFunction1(ju_TemplateCollections$NEtriesMap_containsKey), "$get6", $rt_wrapFunction1(ju_TemplateCollections$NEtriesMap_get), "$entrySet", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap_entrySet)], +onkae_Status$NotificationCode, "Status$NotificationCode", 32, onkae_Status$Code, [], 0, 3, 0, 0, 0, ju_TemplateCollections$SingleEntryMap, 0, ju_TemplateCollections$AbstractImmutableMap, [], 0, 0, 0, 0, ["$get6", $rt_wrapFunction1(ju_TemplateCollections$SingleEntryMap_get)], ju_TemplateCollections$TwoEntriesMap, 0, ju_TemplateCollections$AbstractImmutableMap, [], 0, 0, 0, 0, ["$get6", $rt_wrapFunction1(ju_TemplateCollections$TwoEntriesMap_get)], ju_AbstractSet, 0, ju_AbstractCollection, [ju_Set], 1, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$equals", $rt_wrapFunction1(ju_AbstractSet_equals), "$hashCode", $rt_wrapFunction0(ju_AbstractSet_hashCode)], -ju_EnumSet, 0, ju_AbstractSet, [jl_Cloneable, ji_Serializable], 1, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -jus_CollectorImpl, 0, jl_Object, [jus_Collector], 0, 0, 0, 0, 0, +ju_EnumSet, 0, ju_AbstractSet, [jl_Cloneable, ji_Serializable], 1, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)]]); +$rt_metadata([jus_CollectorImpl, 0, jl_Object, [jus_Collector], 0, 0, 0, 0, 0, otciu_CLDRHelper, 0, jl_Object, [], 4, 3, 0, 0, 0, ju_TemplateCollections$ImmutableEntry, "TemplateCollections$ImmutableEntry", 5, jl_Object, [ju_Map$Entry, jl_Cloneable], 0, 0, 0, 0, ["$equals", $rt_wrapFunction1(ju_TemplateCollections$ImmutableEntry_equals), "$getKey", $rt_wrapFunction0(ju_TemplateCollections$ImmutableEntry_getKey), "$getValue0", $rt_wrapFunction0(ju_TemplateCollections$ImmutableEntry_getValue), "$hashCode", $rt_wrapFunction0(ju_TemplateCollections$ImmutableEntry_hashCode), "$toString", $rt_wrapFunction0(ju_TemplateCollections$ImmutableEntry_toString)], -onkae_Status$Classification$TransactionEffect, "Status$Classification$TransactionEffect", 33, jl_Enum, [], 12, 0, [onkae_Status$Classification,0,"TransactionEffect"], 0, 0, +onkae_Status$Classification$TransactionEffect, "Status$Classification$TransactionEffect", 32, jl_Enum, [], 12, 0, [onkae_Status$Classification,0,"TransactionEffect"], 0, 0, ju_TemplateCollections$AbstractImmutableSet, 0, ju_AbstractSet, [], 1, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], ju_Collections$1, 0, ju_TemplateCollections$AbstractImmutableSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], ju_Collections$2, 0, ju_TemplateCollections$AbstractImmutableMap, [], 0, 0, 0, 0, ["$get6", $rt_wrapFunction1(ju_Collections$2_get)], @@ -360251,78 +287964,61 @@ ong_GqlParams$NONNEG, 0, ong_GqlParams$Processor, [], 0, 3, 0, 0, 0, ju_GenericEnumSet, 0, ju_EnumSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$add", $rt_wrapFunction1(ju_GenericEnumSet_add)], jus_BaseStream, 0, jl_Object, [jl_AutoCloseable], 3, 3, 0, 0, 0, jus_Stream, 0, jl_Object, [jus_BaseStream], 3, 3, 0, 0, 0, -jusi_SimpleStreamImpl, 0, jl_Object, [jus_Stream], 1, 3, 0, 0, 0, +jusi_SimpleStreamImpl, 0, jl_Object, [jus_Stream], 1, 3, 0, 0, ["$estimateSize", $rt_wrapFunction0(jusi_SimpleStreamImpl_estimateSize)], jusi_StreamOverSpliterator, 0, jusi_SimpleStreamImpl, [], 0, 3, 0, 0, ["$next2", $rt_wrapFunction1(jusi_StreamOverSpliterator_next), "$estimateSize", $rt_wrapFunction0(jusi_StreamOverSpliterator_estimateSize)], scc_AsJavaConverters, 0, jl_Object, [], 3, 3, 0, 0, 0, scc_AsScalaConverters, 0, jl_Object, [], 3, 3, 0, 0, 0, sjj_CollectionConverters$, 0, jl_Object, [scc_AsJavaConverters, scc_AsScalaConverters], 4, 3, 0, 0, 0, -sc_Iterator$$anon$20, "Iterator$$anon$20", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$20_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$20_next), "$sliceIterator", $rt_wrapFunction2(sc_Iterator$$anon$20_sliceIterator)], -sci_Map$Map1, "Map$Map1", 22, sci_AbstractMap, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_Map$Map1_map), "$flatMap", $rt_wrapFunction1(sci_Map$Map1_flatMap), "$collect", $rt_wrapFunction1(sci_Map$Map1_collect), "$flatten", $rt_wrapFunction1(sci_Map$Map1_flatten), "$filter1", $rt_wrapFunction1(sci_Map$Map1_filter), "$filterNot0", $rt_wrapFunction1(sci_Map$Map1_filterNot), "$size", $rt_wrapFunction0(sci_Map$Map1_size), "$knownSize", $rt_wrapFunction0(sci_Map$Map1_knownSize), +sc_Iterator$$anon$20, "Iterator$$anon$20", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$20_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$20_next), "$sliceIterator", $rt_wrapFunction2(sc_Iterator$$anon$20_sliceIterator)], +sci_Map$Map1, "Map$Map1", 20, sci_AbstractMap, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_Map$Map1_map), "$flatMap", $rt_wrapFunction1(sci_Map$Map1_flatMap), "$collect", $rt_wrapFunction1(sci_Map$Map1_collect), "$flatten", $rt_wrapFunction1(sci_Map$Map1_flatten), "$filter1", $rt_wrapFunction1(sci_Map$Map1_filter), "$filterNot0", $rt_wrapFunction1(sci_Map$Map1_filterNot), "$size", $rt_wrapFunction0(sci_Map$Map1_size), "$knownSize", $rt_wrapFunction0(sci_Map$Map1_knownSize), "$isEmpty", $rt_wrapFunction0(sci_Map$Map1_isEmpty), "$apply2", $rt_wrapFunction1(sci_Map$Map1_apply), "$contains", $rt_wrapFunction1(sci_Map$Map1_contains), "$get2", $rt_wrapFunction1(sci_Map$Map1_get), "$getOrElse1", $rt_wrapFunction2(sci_Map$Map1_getOrElse), "$iterator0", $rt_wrapFunction0(sci_Map$Map1_iterator), "$keysIterator", $rt_wrapFunction0(sci_Map$Map1_keysIterator), "$valuesIterator", $rt_wrapFunction0(sci_Map$Map1_valuesIterator), "$foreach", $rt_wrapFunction1(sci_Map$Map1_foreach), "$exists", $rt_wrapFunction1(sci_Map$Map1_exists), "$forall", $rt_wrapFunction1(sci_Map$Map1_forall), "$hashCode", $rt_wrapFunction0(sci_Map$Map1_hashCode), "$filterImpl", $rt_wrapFunction2(sci_Map$Map1_filterImpl), "$removed", $rt_wrapFunction1(sci_Map$Map1_removed), "$updated0", $rt_wrapFunction2(sci_Map$Map1_updated)], -scm_MutationTracker$CheckedIterator, "MutationTracker$CheckedIterator", 23, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_MutationTracker$CheckedIterator_hasNext), "$next", $rt_wrapFunction0(scm_MutationTracker$CheckedIterator_next)], +scm_MutationTracker$CheckedIterator, "MutationTracker$CheckedIterator", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_MutationTracker$CheckedIterator_hasNext), "$next", $rt_wrapFunction0(scm_MutationTracker$CheckedIterator_next)], srj_JFunction0$mcI$sp, 0, jl_Object, [s_Function0, ji_Serializable], 3, 3, 0, 0, 0, scm_ListBuffer$iterator$lambda$_59_0, 0, jl_Object, [srj_JFunction0$mcI$sp, ji_Serializable], 0, 3, 0, 0, 0, -oncifpf_PlanPipelineTransformerFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_SemanticAnalysis$, 0, jl_Object, [onciu_StepSequencer$Step, oncifpf_ParsePipelineTransformerFactory, oncifpf_PlanPipelineTransformerFactory, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncifp_StatementCondition, "StatementCondition", 67, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncifp_StatementCondition_toString), "$unary_$bang", $rt_wrapFunction0(oncifp_StatementCondition_unary_$bang), "$apply40", $rt_wrapFunction2(oncifp_StatementCondition_apply), "$name", $rt_wrapFunction0(oncifp_StatementCondition_name), "$productPrefix", $rt_wrapFunction0(oncifp_StatementCondition_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_StatementCondition_productArity), -"$productElement", $rt_wrapFunction1(oncifp_StatementCondition_productElement), "$productIterator", $rt_wrapFunction0(oncifp_StatementCondition_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_StatementCondition_hashCode), "$equals", $rt_wrapFunction1(oncifp_StatementCondition_equals)], -oncifp_DeprecatedSyntaxReplaced$, "DeprecatedSyntaxReplaced$", 67, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_unary_$bang), "$productArity", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_productArity), "$productElement", $rt_wrapFunction1(oncifp_DeprecatedSyntaxReplaced$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_hashCode), -"$toString", $rt_wrapFunction0(oncifp_DeprecatedSyntaxReplaced$_toString)], -oncifp_DeprecatedSemanticsReplaced$, "DeprecatedSemanticsReplaced$", 67, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_unary_$bang), "$productArity", $rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_productArity), "$productElement", $rt_wrapFunction1(oncifp_DeprecatedSemanticsReplaced$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_productIterator), "$hashCode", -$rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_hashCode), "$toString", $rt_wrapFunction0(oncifp_DeprecatedSemanticsReplaced$_toString)], -oncifp_PreparatoryRewriting$SemanticAnalysisPossible$, "PreparatoryRewriting$SemanticAnalysisPossible$", 67, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_unary_$bang), "$productArity", $rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productArity), "$productElement", $rt_wrapFunction1(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productElement), "$productIterator", -$rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_hashCode), "$toString", $rt_wrapFunction0(oncifp_PreparatoryRewriting$SemanticAnalysisPossible$_toString)], -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$, "IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$", 67, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_unary_$bang), "$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productArity), "$productElement", -$rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueriesInMutatingPatternsIsolated$_toString)], -oncifp_CompilationPhaseTracer, 0, jl_Object, [], 3, 3, 0, 0, 0, s_Predef$ArrowAssoc$, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncirc_package$OptionalCallProcedureWrapped$, "package$OptionalCallProcedureWrapped$", 62, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$OptionalCallProcedureWrapped$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_productIterator), -"$hashCode", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_hashCode), "$toString", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_toString)]]); -$rt_metadata([oncirc_package$LiteralsExtracted$, "package$LiteralsExtracted$", 62, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$LiteralsExtracted$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_productIterator), "$hashCode", -$rt_wrapFunction0(oncirc_package$LiteralsExtracted$_hashCode), "$toString", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_toString)], -oncirc_package$SensitiveLiteralsExtracted$, "package$SensitiveLiteralsExtracted$", 62, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$SensitiveLiteralsExtracted$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$SensitiveLiteralsExtracted$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$SensitiveLiteralsExtracted$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_package$SensitiveLiteralsExtracted$_productIterator), +oncirr_TopLevelBracesUnwrapped$, "TopLevelBracesUnwrapped$", 59, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_TopLevelBracesUnwrapped$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_TopLevelBracesUnwrapped$_productArity), "$productElement", $rt_wrapFunction1(oncirr_TopLevelBracesUnwrapped$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_TopLevelBracesUnwrapped$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_TopLevelBracesUnwrapped$_hashCode), +"$toString", $rt_wrapFunction0(oncirr_TopLevelBracesUnwrapped$_toString)], +oncirc_package$OptionalCallProcedureWrapped$, "package$OptionalCallProcedureWrapped$", 60, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$OptionalCallProcedureWrapped$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_productIterator), +"$hashCode", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_hashCode), "$toString", $rt_wrapFunction0(oncirc_package$OptionalCallProcedureWrapped$_toString)], +oncirc_package$LiteralsExtracted$, "package$LiteralsExtracted$", 60, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$LiteralsExtracted$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_productIterator), "$hashCode", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_hashCode), +"$toString", $rt_wrapFunction0(oncirc_package$LiteralsExtracted$_toString)], +oncirc_package$SensitiveLiteralsExtracted$, "package$SensitiveLiteralsExtracted$", 60, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$SensitiveLiteralsExtracted$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$SensitiveLiteralsExtracted$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$SensitiveLiteralsExtracted$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_package$SensitiveLiteralsExtracted$_productIterator), "$hashCode", $rt_wrapFunction0(oncirc_package$SensitiveLiteralsExtracted$_hashCode), "$toString", $rt_wrapFunction0(oncirc_package$SensitiveLiteralsExtracted$_toString)], -oncirc_package$FunctionInvocationsResolved$, "package$FunctionInvocationsResolved$", 62, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$FunctionInvocationsResolved$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$FunctionInvocationsResolved$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$FunctionInvocationsResolved$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_package$FunctionInvocationsResolved$_productIterator), +oncirc_package$FunctionInvocationsResolved$, "package$FunctionInvocationsResolved$", 60, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirc_package$FunctionInvocationsResolved$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirc_package$FunctionInvocationsResolved$_productArity), "$productElement", $rt_wrapFunction1(oncirc_package$FunctionInvocationsResolved$_productElement), "$productIterator", $rt_wrapFunction0(oncirc_package$FunctionInvocationsResolved$_productIterator), "$hashCode", $rt_wrapFunction0(oncirc_package$FunctionInvocationsResolved$_hashCode), "$toString", $rt_wrapFunction0(oncirc_package$FunctionInvocationsResolved$_toString)], -sci_Set$Set2, "Set$Set2", 22, sci_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$partition", $rt_wrapFunction1(sci_Set$Set2_partition), "$map", $rt_wrapFunction1(sci_Set$Set2_map), "$flatMap", $rt_wrapFunction1(sci_Set$Set2_flatMap), "$collect", $rt_wrapFunction1(sci_Set$Set2_collect), "$flatten", $rt_wrapFunction1(sci_Set$Set2_flatten), "$filter1", $rt_wrapFunction1(sci_Set$Set2_filter), "$filterNot0", $rt_wrapFunction1(sci_Set$Set2_filterNot), "$size", $rt_wrapFunction0(sci_Set$Set2_size), -"$isEmpty", $rt_wrapFunction0(sci_Set$Set2_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$Set2_knownSize), "$contains", $rt_wrapFunction1(sci_Set$Set2_contains), "$iterator0", $rt_wrapFunction0(sci_Set$Set2_iterator), "$foreach", $rt_wrapFunction1(sci_Set$Set2_foreach), "$exists", $rt_wrapFunction1(sci_Set$Set2_exists), "$forall", $rt_wrapFunction1(sci_Set$Set2_forall), "$find3", $rt_wrapFunction1(sci_Set$Set2_find), "$head", $rt_wrapFunction0(sci_Set$Set2_head), "$tail", $rt_wrapFunction0(sci_Set$Set2_tail), +sci_Set$Set2, "Set$Set2", 20, sci_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$partition", $rt_wrapFunction1(sci_Set$Set2_partition), "$map", $rt_wrapFunction1(sci_Set$Set2_map), "$flatMap", $rt_wrapFunction1(sci_Set$Set2_flatMap), "$collect", $rt_wrapFunction1(sci_Set$Set2_collect), "$flatten", $rt_wrapFunction1(sci_Set$Set2_flatten), "$filter1", $rt_wrapFunction1(sci_Set$Set2_filter), "$filterNot0", $rt_wrapFunction1(sci_Set$Set2_filterNot), "$size", $rt_wrapFunction0(sci_Set$Set2_size), +"$isEmpty", $rt_wrapFunction0(sci_Set$Set2_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$Set2_knownSize), "$contains", $rt_wrapFunction1(sci_Set$Set2_contains), "$iterator0", $rt_wrapFunction0(sci_Set$Set2_iterator), "$foreach", $rt_wrapFunction1(sci_Set$Set2_foreach), "$exists", $rt_wrapFunction1(sci_Set$Set2_exists), "$forall", $rt_wrapFunction1(sci_Set$Set2_forall), "$find2", $rt_wrapFunction1(sci_Set$Set2_find), "$head", $rt_wrapFunction0(sci_Set$Set2_head), "$tail", $rt_wrapFunction0(sci_Set$Set2_tail), "$filterImpl", $rt_wrapFunction2(sci_Set$Set2_filterImpl), "$excl", $rt_wrapFunction1(sci_Set$Set2_excl), "$incl", $rt_wrapFunction1(sci_Set$Set2_incl)], -oncirc_containsNoNodesOfType, "containsNoNodesOfType", 62, jl_Object, [oncir_ValidatingCondition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncirc_containsNoNodesOfType_toString), "$unary_$bang", $rt_wrapFunction0(oncirc_containsNoNodesOfType_unary_$bang), "$apply40", $rt_wrapFunction2(oncirc_containsNoNodesOfType_apply), "$name", $rt_wrapFunction0(oncirc_containsNoNodesOfType_name), "$hashCode", $rt_wrapFunction0(oncirc_containsNoNodesOfType_hashCode), "$equals", $rt_wrapFunction1(oncirc_containsNoNodesOfType_equals), -"$productArity", $rt_wrapFunction0(oncirc_containsNoNodesOfType_productArity), "$productElement", $rt_wrapFunction1(oncirc_containsNoNodesOfType_productElement), "$productIterator", $rt_wrapFunction0(oncirc_containsNoNodesOfType_productIterator)], -oncias_SemanticCheckable, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_ReturnItem, "ReturnItem", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable], 3, 3, [0,0,0], 0, 0, -oncia_UnaliasedReturnItem, "UnaliasedReturnItem", 36, jl_Object, [oncia_ReturnItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$isPassThrough", $rt_wrapFunction0(oncia_UnaliasedReturnItem_isPassThrough), "$semanticCheck", $rt_wrapFunction0(oncia_UnaliasedReturnItem_semanticCheck), "$expression", $rt_wrapFunction0(oncia_UnaliasedReturnItem_expression), "$position", $rt_wrapFunction0(oncia_UnaliasedReturnItem_position), "$alias", $rt_wrapFunction0(oncia_UnaliasedReturnItem_alias), "$name", $rt_wrapFunction0(oncia_UnaliasedReturnItem_name), -"$productPrefix", $rt_wrapFunction0(oncia_UnaliasedReturnItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UnaliasedReturnItem_productArity), "$productElement", $rt_wrapFunction1(oncia_UnaliasedReturnItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_UnaliasedReturnItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UnaliasedReturnItem_hashCode), "$toString", $rt_wrapFunction0(oncia_UnaliasedReturnItem_toString), "$equals", $rt_wrapFunction1(oncia_UnaliasedReturnItem_equals), -"$dup", $rt_wrapFunction1(oncia_UnaliasedReturnItem_dup)], -oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$, "computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$", 61, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productArity), "$productElement", -$rt_wrapFunction1(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_hashCode), "$toString", $rt_wrapFunction0(oncirr_computeDependenciesForExpressions$ExpressionsHaveComputedDependencies$_toString)], +sci_HashSet$removedAll$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashSet$removedAll$lambda$_62_0_apply)], +scm_LinkedHashSet, 0, scm_AbstractSet, [sc_StrictOptimizedIterableOps, scg_DefaultSerializable], 0, 3, 0, 0, 0, +scm_HashSet$$anon$2, 0, scm_HashSet$HashSetIterator, [], 4, 3, 0, 0, ["$extract", $rt_wrapFunction1(scm_HashSet$$anon$2_extract)], +scm_LinkedHashSet$Entry, 0, jl_Object, [], 4, 3, 0, 0, 0, ju_IllegalFormatException, 0, jl_IllegalArgumentException, [], 0, 3, 0, 0, 0, ju_UnknownFormatConversionException, "UnknownFormatConversionException", 5, ju_IllegalFormatException, [], 0, 3, 0, 0, 0, -sc_StrictOptimizedLinearSeqOps$$anon$1, "StrictOptimizedLinearSeqOps$$anon$1", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_StrictOptimizedLinearSeqOps$$anon$1_hasNext), "$next", $rt_wrapFunction0(sc_StrictOptimizedLinearSeqOps$$anon$1_next)], +sc_StrictOptimizedLinearSeqOps$$anon$1, "StrictOptimizedLinearSeqOps$$anon$1", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_StrictOptimizedLinearSeqOps$$anon$1_hasNext), "$next", $rt_wrapFunction0(sc_StrictOptimizedLinearSeqOps$$anon$1_next)], onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_0_apply)], onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$3$lambda$_22_1_apply)], -scc_JavaCollectionWrappers$JSetWrapper, 0, scm_AbstractSet, [sc_StrictOptimizedSetOps, ji_Serializable], 0, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(scc_JavaCollectionWrappers$JSetWrapper_knownSize), "$iterator0", $rt_wrapFunction0(scc_JavaCollectionWrappers$JSetWrapper_iterator)], +scc_JavaCollectionWrappers$JSetWrapper, 0, scm_AbstractSet, [sc_StrictOptimizedSetOps, ji_Serializable], 0, 3, 0, 0, 0, scc_JavaCollectionWrappers$SetWrapper, 0, ju_AbstractSet, [ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$contains", $rt_wrapFunction1(scc_JavaCollectionWrappers$SetWrapper_contains), "$isEmpty", $rt_wrapFunction0(scc_JavaCollectionWrappers$SetWrapper_isEmpty), "$size", $rt_wrapFunction0(scc_JavaCollectionWrappers$SetWrapper_size), "$iterator", $rt_wrapFunction0(scc_JavaCollectionWrappers$SetWrapper_iterator)], scc_JavaCollectionWrappers$JListWrapper, 0, scm_AbstractBuffer, [sc_StrictOptimizedSeqOps, ji_Serializable], 0, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(scc_JavaCollectionWrappers$JListWrapper_knownSize), "$iterator0", $rt_wrapFunction0(scc_JavaCollectionWrappers$JListWrapper_iterator), "$iterableFactory", $rt_wrapFunction0(scc_JavaCollectionWrappers$JListWrapper_iterableFactory)], -scc_JavaCollectionWrappers$IterableWrapperTrait, 0, jl_Object, [], 3, 3, 0, 0, 0, -scc_JavaCollectionWrappers$SeqWrapper, "JavaCollectionWrappers$SeqWrapper", 24, ju_AbstractList, [scc_JavaCollectionWrappers$IterableWrapperTrait, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(scc_JavaCollectionWrappers$SeqWrapper_size), "$isEmpty", $rt_wrapFunction0(scc_JavaCollectionWrappers$SeqWrapper_isEmpty), "$get0", $rt_wrapFunction1(scc_JavaCollectionWrappers$SeqWrapper_get), "$iterator", $rt_wrapFunction0(scc_JavaCollectionWrappers$SeqWrapper_iterator)], -sc_Iterator$$anon$9, "Iterator$$anon$9", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$9_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$9_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$9_next)], -oncifp_RewriteProcedureCalls, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_TryRewriteProcedureCalls, 0, jl_Object, [oncifp_Phase, oncifp_RewriteProcedureCalls, s_Product, ji_Serializable], 0, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_TryRewriteProcedureCalls_transform), "$name", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_name), "$invalidatedConditions", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_invalidatedConditions), "$checkConditions", $rt_wrapFunction3(oncifp_TryRewriteProcedureCalls_checkConditions), "$phase", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_phase), -"$postConditions", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_postConditions), "$productPrefix", $rt_wrapFunction0(oncifp_TryRewriteProcedureCalls_productPrefix), "$process0", $rt_wrapFunction2(oncifp_TryRewriteProcedureCalls_process)], -oncifp_extractSensitiveLiterals$, 0, jl_Object, [oncifp_Phase, onciu_StepSequencer$Step, s_Product, ji_Serializable], 4, 3, 0, 0, ["$transform", $rt_wrapFunction2(oncifp_extractSensitiveLiterals$_transform), "$name", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_name), "$checkConditions", $rt_wrapFunction3(oncifp_extractSensitiveLiterals$_checkConditions), "$phase", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_phase), "$postConditions", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_postConditions), -"$invalidatedConditions", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_invalidatedConditions), "$productPrefix", $rt_wrapFunction0(oncifp_extractSensitiveLiterals$_productPrefix), "$process0", $rt_wrapFunction2(oncifp_extractSensitiveLiterals$_process)], +scc_JavaCollectionWrappers$IterableWrapperTrait, 0, jl_Object, [], 3, 3, 0, 0, 0]); +$rt_metadata([scc_JavaCollectionWrappers$SeqWrapper, "JavaCollectionWrappers$SeqWrapper", 22, ju_AbstractList, [scc_JavaCollectionWrappers$IterableWrapperTrait, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(scc_JavaCollectionWrappers$SeqWrapper_size), "$isEmpty", $rt_wrapFunction0(scc_JavaCollectionWrappers$SeqWrapper_isEmpty), "$get0", $rt_wrapFunction1(scc_JavaCollectionWrappers$SeqWrapper_get), "$iterator", $rt_wrapFunction0(scc_JavaCollectionWrappers$SeqWrapper_iterator), +"$underlying1", $rt_wrapFunction0(scc_JavaCollectionWrappers$SeqWrapper_underlying)], +sci_SetOps$removedAll$lambda$_9_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sci_SetOps$removedAll$lambda$_9_0_apply)], +sc_SetOps$concat$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_SetOps$concat$lambda$_23_0_apply)], +sc_View$Concat, "View$Concat", 19, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Concat_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Concat_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Concat_isEmpty)], +sci_Set$Set3, "Set$Set3", 20, sci_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$partition", $rt_wrapFunction1(sci_Set$Set3_partition), "$map", $rt_wrapFunction1(sci_Set$Set3_map), "$flatMap", $rt_wrapFunction1(sci_Set$Set3_flatMap), "$collect", $rt_wrapFunction1(sci_Set$Set3_collect), "$flatten", $rt_wrapFunction1(sci_Set$Set3_flatten), "$filter1", $rt_wrapFunction1(sci_Set$Set3_filter), "$filterNot0", $rt_wrapFunction1(sci_Set$Set3_filterNot), "$size", $rt_wrapFunction0(sci_Set$Set3_size), +"$isEmpty", $rt_wrapFunction0(sci_Set$Set3_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$Set3_knownSize), "$contains", $rt_wrapFunction1(sci_Set$Set3_contains), "$iterator0", $rt_wrapFunction0(sci_Set$Set3_iterator), "$foreach", $rt_wrapFunction1(sci_Set$Set3_foreach), "$exists", $rt_wrapFunction1(sci_Set$Set3_exists), "$forall", $rt_wrapFunction1(sci_Set$Set3_forall), "$find2", $rt_wrapFunction1(sci_Set$Set3_find), "$head", $rt_wrapFunction0(sci_Set$Set3_head), "$tail", $rt_wrapFunction0(sci_Set$Set3_tail), +"$filterImpl", $rt_wrapFunction2(sci_Set$Set3_filterImpl), "$excl", $rt_wrapFunction1(sci_Set$Set3_excl), "$incl", $rt_wrapFunction1(sci_Set$Set3_incl)], +sc_IterableOps$concat$lambda$_94_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_IterableOps$concat$lambda$_94_0_apply)], +sc_Iterator$$anon$9, "Iterator$$anon$9", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$9_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$9_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$9_next)], scm_HashSet$addAll$lambda$_52_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, -scm_LinkedHashSet, 0, scm_AbstractSet, [sc_StrictOptimizedIterableOps, scg_DefaultSerializable], 0, 3, 0, 0, 0, -scm_HashSet$$anon$2, 0, scm_HashSet$HashSetIterator, [], 4, 3, 0, 0, ["$extract", $rt_wrapFunction1(scm_HashSet$$anon$2_extract)], -scm_LinkedHashSet$Entry, 0, jl_Object, [], 4, 3, 0, 0, 0, +sci_HashSet$diff$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashSet$diff$lambda$_60_0_apply)], +scm_Queue$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_Queue$_newBuilder), "$from0", $rt_wrapFunction1(scm_Queue$_from)], onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_0_apply)], onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$12$lambda$_31_1_apply)], onciu_StepSequencer$$anonfun$$nestedInanonfun$sort$2$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciu_StepSequencer$$anonfun$$nestedInanonfun$sort$2$1_applyOrElse)], -oncifp_CompilationPhaseTracer$CompilationPhaseEvent, 0, jl_Object, [jl_AutoCloseable], 3, 3, 0, 0, 0, -oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_0, 0, jl_Object, [oncifp_CompilationPhaseTracer$CompilationPhaseEvent], 0, 3, 0, 0, 0, -oncifp_CompilationPhaseTracer$_clinit_$lambda$_3_1, 0, jl_Object, [oncifp_CompilationPhaseTracer], 0, 3, 0, 0, 0, sc_SeqOps$contains$lambda$_84_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_SeqOps$contains$lambda$_84_0_apply)], ju_DuplicateFormatFlagsException, "DuplicateFormatFlagsException", 5, ju_IllegalFormatException, [], 0, 3, 0, 0, 0, ju_IllegalFormatPrecisionException, "IllegalFormatPrecisionException", 5, ju_IllegalFormatException, [], 0, 3, 0, 0, 0, @@ -360334,18 +288030,25 @@ jt_NumberFormat, 0, jt_Format, [], 1, 3, 0, 0, 0, jt_DecimalFormat, 0, jt_NumberFormat, [], 0, 3, 0, 0, 0, ju_Formattable, 0, jl_Object, [], 3, 3, 0, 0, 0, jm_BigDecimal, 0, jl_Number, [jl_Comparable, ji_Serializable], 0, 3, 0, jm_BigDecimal_$callClinit, 0, +scm_ArrayDequeOps, 0, jl_Object, [sc_StrictOptimizedSeqOps], 3, 3, 0, 0, 0, +scm_ArrayDeque, "ArrayDeque", 21, scm_AbstractBuffer, [scm_IndexedBuffer, scm_ArrayDequeOps, scg_DefaultSerializable], 0, 3, 0, 0, ["$distinctBy", $rt_wrapFunction1(scm_ArrayDeque_distinctBy), "$prepended", $rt_wrapFunction1(scm_ArrayDeque_prepended), "$appended", $rt_wrapFunction1(scm_ArrayDeque_appended), "$appendedAll", $rt_wrapFunction1(scm_ArrayDeque_appendedAll), "$map", $rt_wrapFunction1(scm_ArrayDeque_map), "$flatMap", $rt_wrapFunction1(scm_ArrayDeque_flatMap), "$flatten", $rt_wrapFunction1(scm_ArrayDeque_flatten), +"$filter1", $rt_wrapFunction1(scm_ArrayDeque_filter), "$filterNot0", $rt_wrapFunction1(scm_ArrayDeque_filterNot), "$filterImpl", $rt_wrapFunction2(scm_ArrayDeque_filterImpl), "$iterator0", $rt_wrapFunction0(scm_ArrayDeque_iterator), "$reverseIterator", $rt_wrapFunction0(scm_ArrayDeque_reverseIterator), "$view0", $rt_wrapFunction0(scm_ArrayDeque_view), "$reversed", $rt_wrapFunction0(scm_ArrayDeque_reversed), "$drop", $rt_wrapFunction1(scm_ArrayDeque_drop), "$head", $rt_wrapFunction0(scm_ArrayDeque_head), "$headOption", +$rt_wrapFunction0(scm_ArrayDeque_headOption), "$lengthCompare", $rt_wrapFunction1(scm_ArrayDeque_lengthCompare), "$knownSize", $rt_wrapFunction0(scm_ArrayDeque_knownSize), "$apply1", $rt_wrapFunction1(scm_ArrayDeque_apply), "$length", $rt_wrapFunction0(scm_ArrayDeque_length), "$isEmpty", $rt_wrapFunction0(scm_ArrayDeque_isEmpty), "$iterableFactory0", $rt_wrapFunction0(scm_ArrayDeque_iterableFactory), "$copyToArray", $rt_wrapFunction3(scm_ArrayDeque_copyToArray), "$toArray", $rt_wrapFunction1(scm_ArrayDeque_toArray), +"$stringPrefix", $rt_wrapFunction0(scm_ArrayDeque_stringPrefix), "$iterableFactory", $rt_wrapFunction0(scm_ArrayDeque_iterableFactory0), "$addAll0", $rt_wrapFunction1(scm_ArrayDeque_addAll0), "$addOne", $rt_wrapFunction1(scm_ArrayDeque_addOne0), "$apply2", $rt_wrapFunction1(scm_ArrayDeque_apply0)], +scm_Queue, "Queue", 21, scm_ArrayDeque, [], 0, 3, 0, 0, ["$iterableFactory0", $rt_wrapFunction0(scm_Queue_iterableFactory), "$stringPrefix", $rt_wrapFunction0(scm_Queue_stringPrefix), "$iterableFactory", $rt_wrapFunction0(scm_Queue_iterableFactory0)], +oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1_applyOrElse)], ju_FormatFlagsConversionMismatchException, "FormatFlagsConversionMismatchException", 5, ju_IllegalFormatException, [], 0, 3, 0, 0, 0, ju_IllegalFormatFlagsException, "IllegalFormatFlagsException", 5, ju_IllegalFormatException, [], 0, 3, 0, 0, 0, ju_MissingFormatWidthException, "MissingFormatWidthException", 5, ju_IllegalFormatException, [], 0, 3, 0, 0, 0, jt_FieldPosition, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_RewriteProcedureCalls$$anonfun$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$fakeStandaloneCallDeclarations$1_applyOrElse)], -jt_DecimalFormat$FormatField, "DecimalFormat$FormatField", 12, jl_Object, [], 3, 0, [jt_DecimalFormat,0,0], 0, 0]); -$rt_metadata([jt_DecimalFormat$TextField, "DecimalFormat$TextField", 12, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$TextField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$TextField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$TextField_hashCode)], +scm_ArrayDeque$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_ArrayDeque$_newBuilder), "$from0", $rt_wrapFunction1(scm_ArrayDeque$_from)], +jt_DecimalFormat$FormatField, "DecimalFormat$FormatField", 10, jl_Object, [], 3, 0, [jt_DecimalFormat,0,0], 0, 0, +jt_DecimalFormat$TextField, "DecimalFormat$TextField", 10, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$TextField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$TextField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$TextField_hashCode)], +sc_StringOps$$format$extension$lambda$_92_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StringOps$$format$extension$lambda$_92_0_apply)], ju_Currency, "Currency", 5, jl_Object, [ji_Serializable], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(ju_Currency_toString)], jm_Multiplication, 0, jl_Object, [], 0, 0, 0, jm_Multiplication_$callClinit, 0, otcic_CurrencyHelper, 0, jl_Object, [], 4, 3, 0, 0, 0, -ju_HashMap, "HashMap", 5, ju_AbstractMap, [jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$newElementArray", $rt_wrapFunction1(ju_HashMap_newElementArray), "$containsKey", $rt_wrapFunction1(ju_HashMap_containsKey), "$entrySet", $rt_wrapFunction0(ju_HashMap_entrySet), "$get6", $rt_wrapFunction1(ju_HashMap_get), "$isEmpty", $rt_wrapFunction0(ju_HashMap_isEmpty), "$keySet1", $rt_wrapFunction0(ju_HashMap_keySet), "$put", $rt_wrapFunction2(ju_HashMap_put), "$remove3", $rt_wrapFunction1(ju_HashMap_remove), "$size", -$rt_wrapFunction0(ju_HashMap_size)], +ju_HashMap, "HashMap", 5, ju_AbstractMap, [jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$newElementArray", $rt_wrapFunction1(ju_HashMap_newElementArray), "$containsKey", $rt_wrapFunction1(ju_HashMap_containsKey), "$entrySet", $rt_wrapFunction0(ju_HashMap_entrySet), "$get6", $rt_wrapFunction1(ju_HashMap_get), "$keySet1", $rt_wrapFunction0(ju_HashMap_keySet), "$put", $rt_wrapFunction2(ju_HashMap_put), "$remove3", $rt_wrapFunction1(ju_HashMap_remove), "$size", $rt_wrapFunction0(ju_HashMap_size)], jusi_WrappingStreamImpl, 0, jusi_SimpleStreamImpl, [], 1, 3, 0, 0, ["$next2", $rt_wrapFunction1(jusi_WrappingStreamImpl_next), "$estimateSize", $rt_wrapFunction0(jusi_WrappingStreamImpl_estimateSize)], jusi_MappingStreamImpl, 0, jusi_WrappingStreamImpl, [], 0, 3, 0, 0, ["$wrap4", $rt_wrapFunction1(jusi_MappingStreamImpl_wrap)], jus_IntStream, 0, jl_Object, [jus_BaseStream], 3, 3, 0, 0, 0, @@ -360353,11 +288056,12 @@ jusi_SimpleIntStreamImpl, 0, jl_Object, [jus_IntStream], 1, 3, 0, 0, 0, jusi_MappingToIntStreamImpl, 0, jusi_SimpleIntStreamImpl, [], 0, 3, 0, 0, 0, scm_MutationTracker$, 0, jl_Object, [], 4, 3, 0, 0, 0, sci_Set$SetNIterator, 0, sc_AbstractIterator, [ji_Serializable], 1, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sci_Set$SetNIterator_knownSize), "$hasNext", $rt_wrapFunction0(sci_Set$SetNIterator_hasNext), "$next", $rt_wrapFunction0(sci_Set$SetNIterator_next), "$drop1", $rt_wrapFunction1(sci_Set$SetNIterator_drop)], -sci_Set$Set2$$anon$1, "Set$Set2$$anon$1", 22, sci_Set$SetNIterator, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Set$Set2$$anon$1_apply)], -scc_JavaCollectionWrappers$SetWrapper$$anon$1, 0, jl_Object, [ju_Iterator], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scc_JavaCollectionWrappers$SetWrapper$$anon$1_hasNext), "$next", $rt_wrapFunction0(scc_JavaCollectionWrappers$SetWrapper$$anon$1_next)], -ju_Spliterator, 0, jl_Object, [], 3, 3, 0, 0, 0, +sci_Set$Set2$$anon$1, "Set$Set2$$anon$1", 20, sci_Set$SetNIterator, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Set$Set2$$anon$1_apply)], +sc_View$Concat$iterator$lambda$_0_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_View$Concat$iterator$lambda$_0_0_apply)], +scc_JavaCollectionWrappers$SetWrapper$$anon$1, 0, jl_Object, [ju_Iterator], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scc_JavaCollectionWrappers$SetWrapper$$anon$1_hasNext), "$next", $rt_wrapFunction0(scc_JavaCollectionWrappers$SetWrapper$$anon$1_next)]]); +$rt_metadata([ju_Spliterator, 0, jl_Object, [], 3, 3, 0, 0, 0, jusi_SpliteratorOverCollection, 0, jl_Object, [ju_Spliterator], 0, 3, 0, 0, ["$tryAdvance", $rt_wrapFunction1(jusi_SpliteratorOverCollection_tryAdvance), "$estimateSize0", $rt_wrapFunction0(jusi_SpliteratorOverCollection_estimateSize)], -sci_SetHashIterator, "SetHashIterator", 22, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_SetHashIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_SetHashIterator_isEmpty), "$toString", $rt_wrapFunction0(sci_SetHashIterator_toString), "$foreach", $rt_wrapFunction1(sci_SetHashIterator_foreach), "$exists", $rt_wrapFunction1(sci_SetHashIterator_exists), "$find3", $rt_wrapFunction1(sci_SetHashIterator_find), "$foldLeft", $rt_wrapFunction2(sci_SetHashIterator_foldLeft), +sci_SetHashIterator, "SetHashIterator", 20, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_SetHashIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_SetHashIterator_isEmpty), "$toString", $rt_wrapFunction0(sci_SetHashIterator_toString), "$foreach", $rt_wrapFunction1(sci_SetHashIterator_foreach), "$exists", $rt_wrapFunction1(sci_SetHashIterator_exists), "$find2", $rt_wrapFunction1(sci_SetHashIterator_find), "$foldLeft", $rt_wrapFunction2(sci_SetHashIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_SetHashIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_SetHashIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_SetHashIterator_copyToArray1), "$copyToArray0", $rt_wrapFunction2(sci_SetHashIterator_copyToArray0), "$copyToArray", $rt_wrapFunction3(sci_SetHashIterator_copyToArray), "$toList", $rt_wrapFunction0(sci_SetHashIterator_toList), "$toSeq", $rt_wrapFunction0(sci_SetHashIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_SetHashIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_SetHashIterator_knownSize), "$hashCode", $rt_wrapFunction0(sci_SetHashIterator_hashCode), "$next", $rt_wrapFunction0(sci_SetHashIterator_next)], sc_AbstractSeqView, 0, sc_AbstractView, [sc_SeqView], 1, 3, 0, 0, ["$map8", $rt_wrapFunction1(sc_AbstractSeqView_map0), "$appended2", $rt_wrapFunction1(sc_AbstractSeqView_appended), "$prepended3", $rt_wrapFunction1(sc_AbstractSeqView_prepended), "$drop4", $rt_wrapFunction1(sc_AbstractSeqView_drop), "$stringPrefix", $rt_wrapFunction0(sc_AbstractSeqView_stringPrefix), "$scala$collection$SeqOps$$super$concat", $rt_wrapFunction1(sc_AbstractSeqView_scala$collection$SeqOps$$super$concat), "$scala$collection$SeqOps$$super$sizeCompare", @@ -360366,166 +288070,94 @@ $rt_wrapFunction1(sc_AbstractSeqView_scala$collection$SeqOps$$super$sizeCompare) sc_AbstractIndexedSeqView, 0, sc_AbstractSeqView, [sc_IndexedSeqView], 1, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_AbstractIndexedSeqView_iterator), "$lengthCompare", $rt_wrapFunction1(sc_AbstractIndexedSeqView_lengthCompare)], scm_ArrayBufferView, 0, sc_AbstractIndexedSeqView, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(scm_ArrayBufferView_apply), "$length", $rt_wrapFunction0(scm_ArrayBufferView_length), "$iterator0", $rt_wrapFunction0(scm_ArrayBufferView_iterator), "$reverseIterator", $rt_wrapFunction0(scm_ArrayBufferView_reverseIterator), "$reverse3", $rt_wrapFunction0(scm_ArrayBufferView_reverse)], scm_ArrayBuffer$view$lambda$_88_0, 0, jl_Object, [srj_JFunction0$mcI$sp, ji_Serializable], 0, 3, 0, 0, 0, -oncirr_ReturnItemsAreAliased$, "ReturnItemsAreAliased$", 61, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_productArity), "$productElement", $rt_wrapFunction1(oncirr_ReturnItemsAreAliased$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_hashCode), +oncirr_ReturnItemsAreAliased$, "ReturnItemsAreAliased$", 59, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_productArity), "$productElement", $rt_wrapFunction1(oncirr_ReturnItemsAreAliased$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_hashCode), "$toString", $rt_wrapFunction0(oncirr_ReturnItemsAreAliased$_toString)], -oncirr_ExpressionsInOrderByAndWhereUseAliases$, "ExpressionsInOrderByAndWhereUseAliases$", 61, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_ExpressionsInOrderByAndWhereUseAliases$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_ExpressionsInOrderByAndWhereUseAliases$_productArity), "$productElement", $rt_wrapFunction1(oncirr_ExpressionsInOrderByAndWhereUseAliases$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_ExpressionsInOrderByAndWhereUseAliases$_productIterator), +oncirr_ExpressionsInOrderByAndWhereUseAliases$, "ExpressionsInOrderByAndWhereUseAliases$", 59, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 4, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(oncirr_ExpressionsInOrderByAndWhereUseAliases$_unary_$bang), "$productArity", $rt_wrapFunction0(oncirr_ExpressionsInOrderByAndWhereUseAliases$_productArity), "$productElement", $rt_wrapFunction1(oncirr_ExpressionsInOrderByAndWhereUseAliases$_productElement), "$productIterator", $rt_wrapFunction0(oncirr_ExpressionsInOrderByAndWhereUseAliases$_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_ExpressionsInOrderByAndWhereUseAliases$_hashCode), "$toString", $rt_wrapFunction0(oncirr_ExpressionsInOrderByAndWhereUseAliases$_toString)], +sci_HashCollisionSetNode$filterImpl$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$filterImpl$lambda$_18_0_apply)], +sci_HashCollisionSetNode$filterImpl$lambda$_18_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$filterImpl$lambda$_18_1_apply)], +sci_HashCollisionSetNode$removed$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$removed$lambda$_6_0_apply)], +sci_HashCollisionSetNode$diff$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$diff$lambda$_19_0_apply)], +sci_HashCollisionSetNode$diff$lambda$_19_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$diff$lambda$_19_1_apply)], +sci_HashCollisionSetNode$diff$lambda$_19_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$diff$lambda$_19_2_apply)], jt_DecimalFormatParser, 0, jl_Object, [], 0, 0, 0, 0, 0, ju_HashMap$HashEntry, "HashMap$HashEntry", 5, ju_MapEntry, [], 0, 0, 0, 0, 0, oncifp_FieldSignature$toString$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_FieldSignature$toString$lambda$_19_0_apply)], oncifp_FieldSignature$toString$lambda$_19_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_FieldSignature$toString$lambda$_19_1_apply)], oncifp_ProcedureSignature$toString$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureSignature$toString$lambda$_31_0_apply)], oncifp_ProcedureSignature$toString$lambda$_31_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ProcedureSignature$toString$lambda$_31_1_apply)], -sci_Map$Map2, "Map$Map2", 22, sci_AbstractMap, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_Map$Map2_map), "$flatMap", $rt_wrapFunction1(sci_Map$Map2_flatMap), "$collect", $rt_wrapFunction1(sci_Map$Map2_collect), "$flatten", $rt_wrapFunction1(sci_Map$Map2_flatten), "$filter1", $rt_wrapFunction1(sci_Map$Map2_filter), "$filterNot0", $rt_wrapFunction1(sci_Map$Map2_filterNot), "$size", $rt_wrapFunction0(sci_Map$Map2_size), "$knownSize", $rt_wrapFunction0(sci_Map$Map2_knownSize), +oncifp_extractSensitiveLiterals$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_extractSensitiveLiterals$$anonfun$1_applyOrElse)], +onciu_Rewritable$RewritableAny$, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_Rewritable$, 0, jl_Object, [], 4, 3, 0, 0, 0, +sci_Map$Map2, "Map$Map2", 20, sci_AbstractMap, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_Map$Map2_map), "$flatMap", $rt_wrapFunction1(sci_Map$Map2_flatMap), "$collect", $rt_wrapFunction1(sci_Map$Map2_collect), "$flatten", $rt_wrapFunction1(sci_Map$Map2_flatten), "$filter1", $rt_wrapFunction1(sci_Map$Map2_filter), "$filterNot0", $rt_wrapFunction1(sci_Map$Map2_filterNot), "$size", $rt_wrapFunction0(sci_Map$Map2_size), "$knownSize", $rt_wrapFunction0(sci_Map$Map2_knownSize), "$isEmpty", $rt_wrapFunction0(sci_Map$Map2_isEmpty), "$apply2", $rt_wrapFunction1(sci_Map$Map2_apply), "$contains", $rt_wrapFunction1(sci_Map$Map2_contains), "$get2", $rt_wrapFunction1(sci_Map$Map2_get), "$getOrElse1", $rt_wrapFunction2(sci_Map$Map2_getOrElse), "$iterator0", $rt_wrapFunction0(sci_Map$Map2_iterator), "$keysIterator", $rt_wrapFunction0(sci_Map$Map2_keysIterator), "$valuesIterator", $rt_wrapFunction0(sci_Map$Map2_valuesIterator), "$foreach", $rt_wrapFunction1(sci_Map$Map2_foreach), "$exists", $rt_wrapFunction1(sci_Map$Map2_exists), "$forall", $rt_wrapFunction1(sci_Map$Map2_forall), "$hashCode", $rt_wrapFunction0(sci_Map$Map2_hashCode), "$filterImpl", $rt_wrapFunction2(sci_Map$Map2_filterImpl), "$removed", $rt_wrapFunction1(sci_Map$Map2_removed), "$updated0", $rt_wrapFunction2(sci_Map$Map2_updated)], -sci_Set$Set3, "Set$Set3", 22, sci_AbstractSet, [sc_StrictOptimizedIterableOps, ji_Serializable], 4, 3, 0, 0, ["$partition", $rt_wrapFunction1(sci_Set$Set3_partition), "$map", $rt_wrapFunction1(sci_Set$Set3_map), "$flatMap", $rt_wrapFunction1(sci_Set$Set3_flatMap), "$collect", $rt_wrapFunction1(sci_Set$Set3_collect), "$flatten", $rt_wrapFunction1(sci_Set$Set3_flatten), "$filter1", $rt_wrapFunction1(sci_Set$Set3_filter), "$filterNot0", $rt_wrapFunction1(sci_Set$Set3_filterNot), "$size", $rt_wrapFunction0(sci_Set$Set3_size), -"$isEmpty", $rt_wrapFunction0(sci_Set$Set3_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Set$Set3_knownSize), "$contains", $rt_wrapFunction1(sci_Set$Set3_contains), "$iterator0", $rt_wrapFunction0(sci_Set$Set3_iterator), "$foreach", $rt_wrapFunction1(sci_Set$Set3_foreach), "$exists", $rt_wrapFunction1(sci_Set$Set3_exists), "$forall", $rt_wrapFunction1(sci_Set$Set3_forall), "$find3", $rt_wrapFunction1(sci_Set$Set3_find), "$head", $rt_wrapFunction0(sci_Set$Set3_head), "$tail", $rt_wrapFunction0(sci_Set$Set3_tail), -"$filterImpl", $rt_wrapFunction2(sci_Set$Set3_filterImpl), "$excl", $rt_wrapFunction1(sci_Set$Set3_excl), "$incl", $rt_wrapFunction1(sci_Set$Set3_incl)], -onciu_StepSequencer$DefaultPostCondition$completed$, "StepSequencer$DefaultPostCondition$completed$", 54, jl_Object, [onciu_StepSequencer$Condition], 0, 3, 0, 0, ["$unary_$bang", $rt_wrapFunction0(onciu_StepSequencer$DefaultPostCondition$completed$_unary_$bang), "$toString", $rt_wrapFunction0(onciu_StepSequencer$DefaultPostCondition$completed$_toString)], -sci_HashSet$removedAll$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashSet$removedAll$lambda$_62_0_apply)], +oncirr_expandStar, 0, jl_Object, [s_Function1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar_apply)], +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$process$lambda$_10_0_apply)], +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$$process$lambda$_10_1_apply)], +oncie_Parameter, "Parameter", 62, jl_Object, [], 3, 3, [0,0,0], 0, 0, +oncifp_ObfuscationMetadataCollection$$process$lambda$_10_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$$process$lambda$_10_2_apply)], +onciu_ObfuscationMetadata, "ObfuscationMetadata", 52, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_ObfuscationMetadata_productPrefix), "$productArity", $rt_wrapFunction0(onciu_ObfuscationMetadata_productArity), "$productElement", $rt_wrapFunction1(onciu_ObfuscationMetadata_productElement), "$productIterator", $rt_wrapFunction0(onciu_ObfuscationMetadata_productIterator), "$hashCode", $rt_wrapFunction0(onciu_ObfuscationMetadata_hashCode), "$toString", $rt_wrapFunction0(onciu_ObfuscationMetadata_toString), +"$equals", $rt_wrapFunction1(onciu_ObfuscationMetadata_equals)], +oncifp_PreparatoryRewriting$$process$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_PreparatoryRewriting$$process$lambda$_9_0_apply)], +onciu_inSequence$, 0, jl_Object, [], 4, 3, 0, 0, 0, sc_IterableOps$groupBy$lambda$_72_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_IterableOps$groupBy$lambda$_72_0_apply)], -sci_SetOps$removedAll$lambda$_9_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sci_SetOps$removedAll$lambda$_9_0_apply)], -sc_SetOps$concat$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_SetOps$concat$lambda$_23_0_apply)], -sc_View$Concat, "View$Concat", 21, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Concat_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Concat_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Concat_isEmpty)], -sc_IterableOps$concat$lambda$_94_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_IterableOps$concat$lambda$_94_0_apply)], +sc_Iterator$ConcatIterator, "Iterator$ConcatIterator", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$ConcatIterator_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$ConcatIterator_next), "$concat0", $rt_wrapFunction1(sc_Iterator$ConcatIterator_concat)], +sc_View$Collect, "View$Collect", 19, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Collect_iterator)], +sc_StrictOptimizedMapOps$collect$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedMapOps$collect$lambda$_7_0_apply)], +sc_StrictOptimizedIterableOps$collect$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply)], onciu_StepSequencer$MutableDirectedGraph$$$anonfun$copyOf$2$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$MutableDirectedGraph$$$anonfun$copyOf$2$lambda$_4_0_apply)], onciu_StepSequencer$MutableDirectedGraph$$anonfun$toString$2$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$MutableDirectedGraph$$anonfun$toString$2$lambda$_10_0_apply)], -onciu_StepSequencer$NegatedCondition, "StepSequencer$NegatedCondition", 54, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_toString), "$unary_$bang", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_unary_$bang), "$productPrefix", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_productPrefix), "$productArity", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_productArity), "$productElement", +onciu_StepSequencer$NegatedCondition, "StepSequencer$NegatedCondition", 52, jl_Object, [onciu_StepSequencer$Condition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_toString), "$unary_$bang", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_unary_$bang), "$productPrefix", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_productPrefix), "$productArity", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_productArity), "$productElement", $rt_wrapFunction1(onciu_StepSequencer$NegatedCondition_productElement), "$productIterator", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_productIterator), "$hashCode", $rt_wrapFunction0(onciu_StepSequencer$NegatedCondition_hashCode), "$equals", $rt_wrapFunction1(onciu_StepSequencer$NegatedCondition_equals)], -sc_View$Collect, "View$Collect", 21, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Collect_iterator)], -sc_StrictOptimizedMapOps$collect$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedMapOps$collect$lambda$_7_0_apply)], -sci_HashSet$diff$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashSet$diff$lambda$_60_0_apply)], -scm_Queue$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_Queue$_newBuilder), "$from0", $rt_wrapFunction1(scm_Queue$_from)], -sc_StrictOptimizedIterableOps$collect$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedIterableOps$collect$lambda$_19_0_apply)], -onciu_StepSequencer$$anonfun$orderSteps$20$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$20$lambda$_38_0_apply)], +oncirr_expandStar$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_expandStar$$anonfun$1_applyOrElse)], +onciu_Foldable$Folder, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncifp_ObfuscationMetadataCollection$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ObfuscationMetadataCollection$$anonfun$1_applyOrElse)], +onciu_Foldable$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncifp_ObfuscationMetadataCollection$$collectSensitiveLiteralOffsets$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$collectSensitiveLiteralOffsets$lambda$_11_0_apply)], +oncie_SensitiveParameter, "SensitiveParameter", 62, jl_Object, [], 3, 3, [0,0,0], 0, 0, +oncifp_ObfuscationMetadataCollection$$collectSensitiveParameterNames$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$collectSensitiveParameterNames$lambda$_12_0_apply)], +oncip_AstParserFactory$, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciu_inSequence$InSequenceRewriter, 0, jl_Object, [s_Function1], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_inSequence$InSequenceRewriter_apply)]]); +$rt_metadata([onciu_StepSequencer$$anonfun$orderSteps$20$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$20$lambda$_38_0_apply)], onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_1_apply)], -su_Either, "Either", 18, jl_Object, [s_Product, ji_Serializable], 1, 3, [0,0,0], 0, 0, -su_Left, "Left", 18, su_Either, [], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(su_Left_productPrefix), "$productArity", $rt_wrapFunction0(su_Left_productArity), "$productElement", $rt_wrapFunction1(su_Left_productElement), "$productIterator", $rt_wrapFunction0(su_Left_productIterator), "$hashCode", $rt_wrapFunction0(su_Left_hashCode), "$toString", $rt_wrapFunction0(su_Left_toString), "$equals", $rt_wrapFunction1(su_Left_equals)]]); -$rt_metadata([onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_0_apply)], -onciu_StepSequencer$ByInitialCondition$, "StepSequencer$ByInitialCondition$", 54, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(onciu_StepSequencer$ByInitialCondition$_productArity), "$productElement", $rt_wrapFunction1(onciu_StepSequencer$ByInitialCondition$_productElement), "$productIterator", $rt_wrapFunction0(onciu_StepSequencer$ByInitialCondition$_productIterator), "$hashCode", $rt_wrapFunction0(onciu_StepSequencer$ByInitialCondition$_hashCode), "$toString", $rt_wrapFunction0(onciu_StepSequencer$ByInitialCondition$_toString)], +su_Either, "Either", 16, jl_Object, [s_Product, ji_Serializable], 1, 3, [0,0,0], 0, 0, +su_Left, "Left", 16, su_Either, [], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(su_Left_productPrefix), "$productArity", $rt_wrapFunction0(su_Left_productArity), "$productElement", $rt_wrapFunction1(su_Left_productElement), "$productIterator", $rt_wrapFunction0(su_Left_productIterator), "$hashCode", $rt_wrapFunction0(su_Left_hashCode), "$toString", $rt_wrapFunction0(su_Left_toString), "$equals", $rt_wrapFunction1(su_Left_equals)], +onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_0_apply)], +onciu_StepSequencer$ByInitialCondition$, "StepSequencer$ByInitialCondition$", 52, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(onciu_StepSequencer$ByInitialCondition$_productArity), "$productElement", $rt_wrapFunction1(onciu_StepSequencer$ByInitialCondition$_productElement), "$productIterator", $rt_wrapFunction0(onciu_StepSequencer$ByInitialCondition$_productIterator), "$hashCode", $rt_wrapFunction0(onciu_StepSequencer$ByInitialCondition$_hashCode), "$toString", $rt_wrapFunction0(onciu_StepSequencer$ByInitialCondition$_toString)], onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_2_apply)], onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$27$lambda$_47_3_apply)], -su_Right, "Right", 18, su_Either, [], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(su_Right_productPrefix), "$productArity", $rt_wrapFunction0(su_Right_productArity), "$productElement", $rt_wrapFunction1(su_Right_productElement), "$productIterator", $rt_wrapFunction0(su_Right_productIterator), "$hashCode", $rt_wrapFunction0(su_Right_hashCode), "$toString", $rt_wrapFunction0(su_Right_toString), "$equals", $rt_wrapFunction1(su_Right_equals)], -scm_ArrayDequeOps, 0, jl_Object, [sc_StrictOptimizedSeqOps], 3, 3, 0, 0, 0, -scm_ArrayDeque, "ArrayDeque", 23, scm_AbstractBuffer, [scm_IndexedBuffer, scm_ArrayDequeOps, scg_DefaultSerializable], 0, 3, 0, 0, ["$distinctBy", $rt_wrapFunction1(scm_ArrayDeque_distinctBy), "$prepended", $rt_wrapFunction1(scm_ArrayDeque_prepended), "$appended", $rt_wrapFunction1(scm_ArrayDeque_appended), "$appendedAll", $rt_wrapFunction1(scm_ArrayDeque_appendedAll), "$map", $rt_wrapFunction1(scm_ArrayDeque_map), "$flatMap", $rt_wrapFunction1(scm_ArrayDeque_flatMap), "$flatten", $rt_wrapFunction1(scm_ArrayDeque_flatten), -"$filter1", $rt_wrapFunction1(scm_ArrayDeque_filter), "$filterNot0", $rt_wrapFunction1(scm_ArrayDeque_filterNot), "$filterImpl", $rt_wrapFunction2(scm_ArrayDeque_filterImpl), "$iterator0", $rt_wrapFunction0(scm_ArrayDeque_iterator), "$reverseIterator", $rt_wrapFunction0(scm_ArrayDeque_reverseIterator), "$view0", $rt_wrapFunction0(scm_ArrayDeque_view), "$reversed", $rt_wrapFunction0(scm_ArrayDeque_reversed), "$drop", $rt_wrapFunction1(scm_ArrayDeque_drop), "$head", $rt_wrapFunction0(scm_ArrayDeque_head), "$headOption", -$rt_wrapFunction0(scm_ArrayDeque_headOption), "$lengthCompare", $rt_wrapFunction1(scm_ArrayDeque_lengthCompare), "$knownSize", $rt_wrapFunction0(scm_ArrayDeque_knownSize), "$apply1", $rt_wrapFunction1(scm_ArrayDeque_apply), "$length", $rt_wrapFunction0(scm_ArrayDeque_length), "$isEmpty", $rt_wrapFunction0(scm_ArrayDeque_isEmpty), "$iterableFactory0", $rt_wrapFunction0(scm_ArrayDeque_iterableFactory), "$copyToArray", $rt_wrapFunction3(scm_ArrayDeque_copyToArray), "$toArray", $rt_wrapFunction1(scm_ArrayDeque_toArray), -"$stringPrefix", $rt_wrapFunction0(scm_ArrayDeque_stringPrefix), "$iterableFactory", $rt_wrapFunction0(scm_ArrayDeque_iterableFactory0), "$addAll0", $rt_wrapFunction1(scm_ArrayDeque_addAll0), "$addOne", $rt_wrapFunction1(scm_ArrayDeque_addOne0), "$apply2", $rt_wrapFunction1(scm_ArrayDeque_apply0)], -scm_Queue, "Queue", 23, scm_ArrayDeque, [], 0, 3, 0, 0, ["$iterableFactory0", $rt_wrapFunction0(scm_Queue_iterableFactory), "$stringPrefix", $rt_wrapFunction0(scm_Queue_stringPrefix), "$iterableFactory", $rt_wrapFunction0(scm_Queue_iterableFactory0)], -oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_RewriteProcedureCalls$$anonfun$resolverProcedureCall$1_applyOrElse)], +su_Right, "Right", 16, su_Either, [], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(su_Right_productPrefix), "$productArity", $rt_wrapFunction0(su_Right_productArity), "$productElement", $rt_wrapFunction1(su_Right_productElement), "$productIterator", $rt_wrapFunction0(su_Right_productIterator), "$hashCode", $rt_wrapFunction0(su_Right_hashCode), "$toString", $rt_wrapFunction0(su_Right_toString), "$equals", $rt_wrapFunction1(su_Right_equals)], +sc_Iterator$ConcatIteratorCell, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciu_Foldable$FoldableAny, 0, jl_Object, [onciu_Foldable], 0, 3, 0, 0, ["$foldedOver", $rt_wrapFunction0(onciu_Foldable$FoldableAny_foldedOver)], +oncip_AstParserFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncip_Cypher5AstParserFactory$, 0, jl_Object, [oncip_AstParserFactory], 4, 3, 0, 0, ["$apply6", $rt_wrapFunction3(oncip_Cypher5AstParserFactory$_apply)], +oncip_Cypher25AstParserFactory$, 0, jl_Object, [oncip_AstParserFactory], 4, 3, 0, 0, ["$apply6", $rt_wrapFunction3(oncip_Cypher25AstParserFactory$_apply)], +oncipa_AstParser, 0, jl_Object, [], 3, 3, 0, 0, 0, jt_DecimalFormat$1, 0, jl_Object, [], 32, 0, 0, jt_DecimalFormat$1_$callClinit, 0, -jl_ArithmeticException, "ArithmeticException", 14, jl_RuntimeException, [], 0, 3, 0, 0, 0, -scm_ArrayDeque$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_ArrayDeque$_newBuilder), "$from0", $rt_wrapFunction1(scm_ArrayDeque$_from)], -sc_StringOps$$format$extension$lambda$_92_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StringOps$$format$extension$lambda$_92_0_apply)], +jl_ArithmeticException, "ArithmeticException", 12, jl_RuntimeException, [], 0, 3, 0, 0, 0, jm_BitLevel, 0, jl_Object, [], 0, 0, 0, 0, 0, juf_Predicate, 0, jl_Object, [], 3, 3, 0, 0, 0, jusi_SimpleStreamImpl$collect$lambda$_26_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_SimpleStreamImpl$collect$lambda$_26_0_test)], juf_IntPredicate, 0, jl_Object, [], 3, 3, 0, 0, 0, jusi_SimpleIntStreamImpl$ArrayFillingConsumer, 0, jl_Object, [juf_IntPredicate], 0, 0, 0, 0, ["$test", $rt_wrapFunction1(jusi_SimpleIntStreamImpl$ArrayFillingConsumer_test)], jusi_SimpleIntStreamImpl$toArray$lambda$_16_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_SimpleIntStreamImpl$toArray$lambda$_16_0_test)], -sc_IndexedSeqView$IndexedSeqViewIterator, "IndexedSeqView$IndexedSeqViewIterator", 21, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewIterator_knownSize), "$hasNext", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewIterator_hasNext), "$next", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewIterator_next), "$drop1", $rt_wrapFunction1(sc_IndexedSeqView$IndexedSeqViewIterator_drop), "$sliceIterator", $rt_wrapFunction2(sc_IndexedSeqView$IndexedSeqViewIterator_sliceIterator)], -scm_CheckedIndexedSeqView$CheckedIterator, "CheckedIndexedSeqView$CheckedIterator", 23, sc_IndexedSeqView$IndexedSeqViewIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_CheckedIndexedSeqView$CheckedIterator_hasNext)], +sc_IndexedSeqView$IndexedSeqViewIterator, "IndexedSeqView$IndexedSeqViewIterator", 19, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewIterator_knownSize), "$hasNext", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewIterator_hasNext), "$next", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewIterator_next), "$drop1", $rt_wrapFunction1(sc_IndexedSeqView$IndexedSeqViewIterator_drop), "$sliceIterator", $rt_wrapFunction2(sc_IndexedSeqView$IndexedSeqViewIterator_sliceIterator)], +scm_CheckedIndexedSeqView$CheckedIterator, "CheckedIndexedSeqView$CheckedIterator", 21, sc_IndexedSeqView$IndexedSeqViewIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_CheckedIndexedSeqView$CheckedIterator_hasNext)], s_Product3, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, -s_Tuple3, "Tuple3", 17, jl_Object, [s_Product3, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_Tuple3_productArity), "$productElement", $rt_wrapFunction1(s_Tuple3_productElement), "$toString", $rt_wrapFunction0(s_Tuple3_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple3_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple3_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple3_hashCode), "$equals", $rt_wrapFunction1(s_Tuple3_equals)], -sci_Set$Set3$$anon$2, "Set$Set3$$anon$2", 22, sci_Set$SetNIterator, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Set$Set3$$anon$2_apply)], -sc_View$Concat$iterator$lambda$_0_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_View$Concat$iterator$lambda$_0_0_apply)], +s_Tuple3, "Tuple3", 15, jl_Object, [s_Product3, ji_Serializable], 4, 3, [0,0,0], 0, ["$productArity", $rt_wrapFunction0(s_Tuple3_productArity), "$productElement", $rt_wrapFunction1(s_Tuple3_productElement), "$toString", $rt_wrapFunction0(s_Tuple3_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple3_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple3_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple3_hashCode), "$equals", $rt_wrapFunction1(s_Tuple3_equals)], +sci_Set$Set3$$anon$2, "Set$Set3$$anon$2", 20, sci_Set$SetNIterator, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Set$Set3$$anon$2_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$instance$lambda$_13_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, jm_Elementary, 0, jl_Object, [], 0, 0, 0, 0, 0, jm_Division, 0, jl_Object, [], 0, 0, 0, 0, 0, -jt_DecimalFormat$MinusField, "DecimalFormat$MinusField", 12, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$MinusField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$MinusField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$MinusField_hashCode)], -oncius_CypherType$, 0, jl_Object, [], 4, 3, 0, 0, 0, -scm_ArraySeq$ofChar, "ArraySeq$ofChar", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofChar_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofChar_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofChar_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofChar_iterator), "$addString", $rt_wrapFunction4(scm_ArraySeq$ofChar_addString), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofChar_apply0), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofChar_apply1), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofChar_elemTag), -"$array", $rt_wrapFunction0(scm_ArraySeq$ofChar_array)], -jt_DecimalFormat$Constants, 0, jl_Object, [], 0, 0, 0, 0, 0, -otcit_DoubleAnalyzer, 0, jl_Object, [], 4, 3, 0, 0, 0, -scm_HashMap$HashMapIterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_HashMap$HashMapIterator_hasNext), "$next", $rt_wrapFunction0(scm_HashMap$HashMapIterator_next)], -scm_HashMap$$anon$1, "HashMap$$anon$1", 23, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$extract0", $rt_wrapFunction1(scm_HashMap$$anon$1_extract)], -sci_MapKeyValueTupleIterator, "MapKeyValueTupleIterator", 22, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_isEmpty), "$filter", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_filter), "$filterImpl0", $rt_wrapFunction2(sci_MapKeyValueTupleIterator_filterImpl), "$collect2", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_collect), "$map5", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_map), -"$flatMap2", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_flatMap), "$concat0", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_concat), "$drop1", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_drop), "$sliceIterator", $rt_wrapFunction2(sci_MapKeyValueTupleIterator_sliceIterator), "$toString", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_toString), "$foreach", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_foreach), "$exists", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_exists), "$find3", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_find), -"$foldLeft", $rt_wrapFunction2(sci_MapKeyValueTupleIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_copyToArray), "$copyToArray0", $rt_wrapFunction2(sci_MapKeyValueTupleIterator_copyToArray0), "$copyToArray", $rt_wrapFunction3(sci_MapKeyValueTupleIterator_copyToArray1), "$to0", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_to), "$toList", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_toList), -"$toSeq", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_knownSize), "$next", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_next)], -sci_HashCollisionSetNode$filterImpl$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$filterImpl$lambda$_18_0_apply)], -sci_HashCollisionSetNode$filterImpl$lambda$_18_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$filterImpl$lambda$_18_1_apply)], -sci_HashCollisionSetNode$removed$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$removed$lambda$_6_0_apply)], -sci_HashCollisionSetNode$diff$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$diff$lambda$_19_0_apply)], -sci_HashCollisionSetNode$diff$lambda$_19_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$diff$lambda$_19_1_apply)], -sci_HashCollisionSetNode$diff$lambda$_19_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionSetNode$diff$lambda$_19_2_apply)], -oncifp_extractSensitiveLiterals$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_extractSensitiveLiterals$$anonfun$1_applyOrElse)], -onciu_Rewritable$RewritableAny$, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_Rewritable$, 0, jl_Object, [], 4, 3, 0, 0, 0, -sci_Map$Map3, "Map$Map3", 22, sci_AbstractMap, [sc_StrictOptimizedIterableOps, ji_Serializable], 0, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_Map$Map3_map), "$flatMap", $rt_wrapFunction1(sci_Map$Map3_flatMap), "$collect", $rt_wrapFunction1(sci_Map$Map3_collect), "$flatten", $rt_wrapFunction1(sci_Map$Map3_flatten), "$filter1", $rt_wrapFunction1(sci_Map$Map3_filter), "$filterNot0", $rt_wrapFunction1(sci_Map$Map3_filterNot), "$size", $rt_wrapFunction0(sci_Map$Map3_size), "$knownSize", $rt_wrapFunction0(sci_Map$Map3_knownSize), -"$isEmpty", $rt_wrapFunction0(sci_Map$Map3_isEmpty), "$apply2", $rt_wrapFunction1(sci_Map$Map3_apply), "$contains", $rt_wrapFunction1(sci_Map$Map3_contains), "$get2", $rt_wrapFunction1(sci_Map$Map3_get), "$getOrElse1", $rt_wrapFunction2(sci_Map$Map3_getOrElse), "$iterator0", $rt_wrapFunction0(sci_Map$Map3_iterator), "$keysIterator", $rt_wrapFunction0(sci_Map$Map3_keysIterator), "$valuesIterator", $rt_wrapFunction0(sci_Map$Map3_valuesIterator), "$foreach", $rt_wrapFunction1(sci_Map$Map3_foreach), "$exists", $rt_wrapFunction1(sci_Map$Map3_exists), -"$forall", $rt_wrapFunction1(sci_Map$Map3_forall), "$hashCode", $rt_wrapFunction0(sci_Map$Map3_hashCode), "$filterImpl", $rt_wrapFunction2(sci_Map$Map3_filterImpl), "$removed", $rt_wrapFunction1(sci_Map$Map3_removed), "$updated0", $rt_wrapFunction2(sci_Map$Map3_updated)], -oncius_ClosedDynamicUnionType, "ClosedDynamicUnionType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$coercibleTo", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_coercibleTo), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$position", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_position), "$parentType", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_parentType), -"$toString", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_sortOrder), "$isNullable", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_isNullable), "$description", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_description), "$simplify", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_simplify), "$isSubtypeOf", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_isSubtypeOf), -"$withIsNullable1", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_withPosition), "$equals", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_equals), "$isAssignableFrom0", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_isAssignableFrom), "$covariant", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_covariant), "$invariant", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_invariant), "$leastUpperBound", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_leastUpperBound), -"$greatestLowerBound", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_greatestLowerBound), "$productPrefix", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_productPrefix), "$productArity", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_productArity), "$productElement", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_productElement), "$productIterator", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_hashCode), "$dup", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_dup)], -oncius_PropertyValueType, "PropertyValueType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_PropertyValueType_description), "$simplify", $rt_wrapFunction0(oncius_PropertyValueType_simplify), "$isSubtypeOf", $rt_wrapFunction1(oncius_PropertyValueType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_PropertyValueType_isNullableSubtypeOf), "$coercibleTo", $rt_wrapFunction0(oncius_PropertyValueType_coercibleTo), "$isAssignableFrom0", -$rt_wrapFunction1(oncius_PropertyValueType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_PropertyValueType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_PropertyValueType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_PropertyValueType_covariant), "$invariant", $rt_wrapFunction0(oncius_PropertyValueType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_PropertyValueType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), -"$isNullable", $rt_wrapFunction0(oncius_PropertyValueType_isNullable), "$position", $rt_wrapFunction0(oncius_PropertyValueType_position), "$parentType", $rt_wrapFunction0(oncius_PropertyValueType_parentType), "$toString", $rt_wrapFunction0(oncius_PropertyValueType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_PropertyValueType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_PropertyValueType_sortOrder), "$withIsNullable1", $rt_wrapFunction1(oncius_PropertyValueType_withIsNullable), "$withPosition", -$rt_wrapFunction1(oncius_PropertyValueType_withPosition), "$productArity", $rt_wrapFunction0(oncius_PropertyValueType_productArity), "$productElement", $rt_wrapFunction1(oncius_PropertyValueType_productElement), "$productIterator", $rt_wrapFunction0(oncius_PropertyValueType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_PropertyValueType_hashCode), "$equals", $rt_wrapFunction1(oncius_PropertyValueType_equals), "$dup", $rt_wrapFunction1(oncius_PropertyValueType_dup)], -oncirr_expandStar, 0, jl_Object, [s_Function1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar_apply)], -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$process$lambda$_10_0_apply)], -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$$process$lambda$_10_1_apply)]]); -$rt_metadata([oncie_Parameter, "Parameter", 64, jl_Object, [], 3, 3, [0,0,0], 0, 0, -oncifp_ObfuscationMetadataCollection$$process$lambda$_10_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ObfuscationMetadataCollection$$process$lambda$_10_2_apply)], -onciu_ObfuscationMetadata, "ObfuscationMetadata", 54, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_ObfuscationMetadata_productPrefix), "$productArity", $rt_wrapFunction0(onciu_ObfuscationMetadata_productArity), "$productElement", $rt_wrapFunction1(onciu_ObfuscationMetadata_productElement), "$productIterator", $rt_wrapFunction0(onciu_ObfuscationMetadata_productIterator), "$hashCode", $rt_wrapFunction0(onciu_ObfuscationMetadata_hashCode), "$toString", $rt_wrapFunction0(onciu_ObfuscationMetadata_toString), -"$equals", $rt_wrapFunction1(onciu_ObfuscationMetadata_equals)], -oncifp_PreparatoryRewriting$$process$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_PreparatoryRewriting$$process$lambda$_9_0_apply)], -onciu_inSequence$, 0, jl_Object, [], 4, 3, 0, 0, 0, -sr_ScalaRunTime$$anon$1, "ScalaRunTime$$anon$1", 20, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sr_ScalaRunTime$$anon$1_hasNext), "$next", $rt_wrapFunction0(sr_ScalaRunTime$$anon$1_next)], -scm_HashSet$subtractAll$lambda$_53_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, -sc_AbstractMapView, 0, sc_AbstractView, [sc_MapView], 1, 3, 0, 0, 0, -sc_MapView$Id, 0, sc_AbstractMapView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_MapView$Id_iterator)], -s_Function1$andThen$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(s_Function1$andThen$lambda$_5_0_apply)], -sc_Iterator$ConcatIterator, "Iterator$ConcatIterator", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$ConcatIterator_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$ConcatIterator_next), "$concat0", $rt_wrapFunction1(sc_Iterator$ConcatIterator_concat)], -scc_JavaCollectionWrappers$IteratorWrapper, 0, jl_Object, [ju_Iterator, ju_Enumeration, ji_Serializable], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scc_JavaCollectionWrappers$IteratorWrapper_hasNext), "$next", $rt_wrapFunction0(scc_JavaCollectionWrappers$IteratorWrapper_next)], -oncius_CypherType$$anonfun$1, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$compare2", $rt_wrapFunction2(oncius_CypherType$$anonfun$1_compare)], -oncius_ClosedDynamicUnionType$_init_$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$_init_$lambda$_70_0_apply)], -oncius_ClosedDynamicUnionType$_init_$lambda$_70_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$_init_$lambda$_70_1_apply)], -oncius_ClosedDynamicUnionType$_init_$lambda$_70_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$_init_$lambda$_70_2_apply)], -oncirr_expandStar$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_expandStar$$anonfun$1_applyOrElse)], -onciu_Foldable$Folder, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncifp_ObfuscationMetadataCollection$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ObfuscationMetadataCollection$$anonfun$1_applyOrElse)], -onciu_Foldable$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncifp_ObfuscationMetadataCollection$$collectSensitiveLiteralOffsets$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$collectSensitiveLiteralOffsets$lambda$_11_0_apply)], -oncie_SensitiveParameter, "SensitiveParameter", 64, jl_Object, [], 3, 3, [0,0,0], 0, 0, -oncifp_ObfuscationMetadataCollection$$collectSensitiveParameterNames$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$collectSensitiveParameterNames$lambda$_12_0_apply)], -onciu_inSequence$InSequenceRewriter, 0, jl_Object, [s_Function1], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_inSequence$InSequenceRewriter_apply)], -onvs_Value, 0, onv_AnyValue, [], 1, 3, 0, 0, 0, -sc_Iterator$ConcatIteratorCell, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncius_CypherType$$normalize$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_0_apply)], -oncius_CypherType$$normalize$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_1_apply)], -oncius_CypherType$$normalize$lambda$_3_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_2_apply)], -oncius_CypherType$$normalize$lambda$_3_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncius_CypherType$$normalize$lambda$_3_3_apply)], -oncius_CypherType$$normalize$lambda$_3_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_4_apply)], -oncius_CypherType$$normalize$lambda$_3_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_5_apply)], -oncius_CypherType$$normalize$lambda$_3_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_6_apply)], -oncius_CypherType$$normalize$lambda$_3_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_7_apply)], -oncius_CypherType$$normalize$lambda$_3_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_8_apply)], -oncius_CypherType$$normalize$lambda$_3_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_9_apply)], -onciu_Foldable$FoldableAny, 0, jl_Object, [onciu_Foldable], 0, 3, 0, 0, ["$foldedOver", $rt_wrapFunction0(onciu_Foldable$FoldableAny_foldedOver)], -scm_Shrinkable$subtractAll$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(scm_Shrinkable$subtractAll$lambda$_6_0_apply)], -onciu_StepSequencer$$anonfun$orderSteps$21$lambda$_37_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -ong_GqlClassification, 0, jl_Object, [], 3, 3, 0, 0, 0, -ong_NotificationClassification, "NotificationClassification", 68, jl_Enum, [ong_GqlClassification], 12, 3, [0,0,0], 0, 0, -ong_DiagnosticRecord, 0, jl_Object, [], 0, 3, 0, ong_DiagnosticRecord_$callClinit, ["$hashCode", $rt_wrapFunction0(ong_DiagnosticRecord_hashCode), "$equals", $rt_wrapFunction1(ong_DiagnosticRecord_equals)], -sci_Map$Map3$Map3Iterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_Map$Map3$Map3Iterator_hasNext), "$next", $rt_wrapFunction0(sci_Map$Map3$Map3Iterator_next), "$drop1", $rt_wrapFunction1(sci_Map$Map3$Map3Iterator_drop)], -sci_Map$Map3$$anon$4, "Map$Map3$$anon$4", 22, sci_Map$Map3$Map3Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map3$$anon$4_nextResult)], -sci_Set$Set4$$anon$3, "Set$Set4$$anon$3", 22, sci_Set$SetNIterator, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Set$Set4$$anon$3_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$instance$lambda$_13_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, -jm_Conversion, 0, jl_Object, [], 0, 0, 0, 0, 0, -jusi_MappingToIntStreamImpl$next$lambda$_1_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_MappingToIntStreamImpl$next$lambda$_1_0_test)], -sci_Map$Map2$Map2Iterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_Map$Map2$Map2Iterator_hasNext), "$next", $rt_wrapFunction0(sci_Map$Map2$Map2Iterator_next), "$drop1", $rt_wrapFunction1(sci_Map$Map2$Map2Iterator_drop)], -sci_Map$Map2$$anon$1, "Map$Map2$$anon$1", 22, sci_Map$Map2$Map2Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map2$$anon$1_nextResult)]]); -$rt_metadata([jt_DecimalFormat$PerMillField, "DecimalFormat$PerMillField", 12, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$PerMillField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$PerMillField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$PerMillField_hashCode)], -jt_DecimalFormat$CurrencyField, "DecimalFormat$CurrencyField", 12, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$CurrencyField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$CurrencyField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$CurrencyField_hashCode)], -jt_DecimalFormat$PercentField, "DecimalFormat$PercentField", 12, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$PercentField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$PercentField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$PercentField_hashCode)], +oncipa_AntlrAstParser, 0, jl_Object, [oncipa_AstParser], 3, 3, 0, 0, 0, +oncipvaf_Cypher5AstParser, 0, jl_Object, [oncipa_AntlrAstParser], 4, 3, 0, 0, ["$exceptionFactory", $rt_wrapFunction0(oncipvaf_Cypher5AstParser_exceptionFactory), "$statements", $rt_wrapFunction0(oncipvaf_Cypher5AstParser_statements), "$syntaxException", $rt_wrapFunction2(oncipvaf_Cypher5AstParser_syntaxException), "$newLexer", $rt_wrapFunction1(oncipvaf_Cypher5AstParser_newLexer), "$errorStrategyConf", $rt_wrapFunction0(oncipvaf_Cypher5AstParser_errorStrategyConf), "$newParser", $rt_wrapFunction1(oncipvaf_Cypher5AstParser_newParser)], +oncipvaf_Cypher25AstParser, 0, jl_Object, [oncipa_AntlrAstParser], 4, 3, 0, 0, ["$exceptionFactory", $rt_wrapFunction0(oncipvaf_Cypher25AstParser_exceptionFactory), "$statements", $rt_wrapFunction0(oncipvaf_Cypher25AstParser_statements), "$syntaxException", $rt_wrapFunction2(oncipvaf_Cypher25AstParser_syntaxException), "$newLexer", $rt_wrapFunction1(oncipvaf_Cypher25AstParser_newLexer), "$errorStrategyConf", $rt_wrapFunction0(oncipvaf_Cypher25AstParser_errorStrategyConf), "$newParser", $rt_wrapFunction1(oncipvaf_Cypher25AstParser_newParser)], oncias_SemanticState$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncias_SemanticState$_$callClinit, 0, oncias_SemanticCheckContext, 0, jl_Object, [], 3, 3, 0, 0, 0, oncifp_SemanticAnalysis$$anon$1, 0, jl_Object, [oncias_SemanticCheckContext], 4, 3, 0, 0, ["$errorMessageProvider", $rt_wrapFunction0(oncifp_SemanticAnalysis$$anon$1_errorMessageProvider), "$sessionDatabaseReference", $rt_wrapFunction0(oncifp_SemanticAnalysis$$anon$1_sessionDatabaseReference)], oncias_SemanticChecker$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncias_SemanticCheckResult, "SemanticCheckResult", 41, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticCheckResult_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheckResult_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckResult_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheckResult_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheckResult_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckResult_toString), +oncias_SemanticCheckResult, "SemanticCheckResult", 40, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticCheckResult_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheckResult_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckResult_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheckResult_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheckResult_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckResult_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheckResult_equals)], oncifp_SemanticAnalysis$process$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SemanticAnalysis$process$lambda$_13_0_apply)], oncifp_SemanticAnalysis$process$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SemanticAnalysis$process$lambda$_13_1_apply)], @@ -360537,390 +288169,375 @@ oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_1, 0, jl_Objec oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_2_apply)], oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_3_apply)], oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1_applyOrElse)], -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4_apply)], -oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5_apply)], -oncius_ClosedDynamicUnionType$simplify$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$simplify$lambda$_28_0_apply)], +oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_4_apply)]]); +$rt_metadata([oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SyntaxDeprecationWarningsAndReplacements$process$lambda$_9_5_apply)], +jt_DecimalFormat$MinusField, "DecimalFormat$MinusField", 10, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$MinusField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$MinusField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$MinusField_hashCode)], +oncius_CypherType$, 0, jl_Object, [], 4, 3, 0, 0, 0, +scm_ArraySeq$ofChar, "ArraySeq$ofChar", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofChar_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofChar_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofChar_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofChar_iterator), "$addString", $rt_wrapFunction4(scm_ArraySeq$ofChar_addString), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofChar_apply0), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofChar_apply1), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofChar_elemTag), +"$array", $rt_wrapFunction0(scm_ArraySeq$ofChar_array)], +jt_DecimalFormat$Constants, 0, jl_Object, [], 0, 0, 0, 0, 0, +otcit_DoubleAnalyzer, 0, jl_Object, [], 4, 3, 0, 0, 0, +scm_HashMap$HashMapIterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_HashMap$HashMapIterator_hasNext), "$next", $rt_wrapFunction0(scm_HashMap$HashMapIterator_next)], +scm_HashMap$$anon$1, "HashMap$$anon$1", 21, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$extract0", $rt_wrapFunction1(scm_HashMap$$anon$1_extract)], +sci_MapKeyValueTupleIterator, "MapKeyValueTupleIterator", 20, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_isEmpty), "$filter", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_filter), "$filterImpl0", $rt_wrapFunction2(sci_MapKeyValueTupleIterator_filterImpl), "$collect2", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_collect), "$map5", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_map), +"$flatMap2", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_flatMap), "$concat0", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_concat), "$drop1", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_drop), "$sliceIterator", $rt_wrapFunction2(sci_MapKeyValueTupleIterator_sliceIterator), "$toString", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_toString), "$foreach", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_foreach), "$exists", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_exists), "$find2", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_find), +"$foldLeft", $rt_wrapFunction2(sci_MapKeyValueTupleIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_copyToArray), "$copyToArray0", $rt_wrapFunction2(sci_MapKeyValueTupleIterator_copyToArray0), "$copyToArray", $rt_wrapFunction3(sci_MapKeyValueTupleIterator_copyToArray1), "$to0", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_to), "$toList", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_toList), +"$toSeq", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_MapKeyValueTupleIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_knownSize), "$next", $rt_wrapFunction0(sci_MapKeyValueTupleIterator_next)], +onciu_CypherExceptionFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, +onciu_OpenCypherExceptionFactory, "OpenCypherExceptionFactory", 52, jl_Object, [onciu_CypherExceptionFactory, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_productPrefix), "$productArity", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_productArity), "$productElement", $rt_wrapFunction1(onciu_OpenCypherExceptionFactory_productElement), "$productIterator", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_productIterator), "$hashCode", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_hashCode), +"$toString", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_toString), "$equals", $rt_wrapFunction1(onciu_OpenCypherExceptionFactory_equals)], scm_Stack$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_Stack$_newBuilder), "$from0", $rt_wrapFunction1(scm_Stack$_from)], -scm_Stack, "Stack", 23, scm_ArrayDeque, [], 0, 3, 0, 0, ["$iterableFactory0", $rt_wrapFunction0(scm_Stack_iterableFactory0), "$stringPrefix", $rt_wrapFunction0(scm_Stack_stringPrefix), "$iterableFactory", $rt_wrapFunction0(scm_Stack_iterableFactory)], +scm_Stack, "Stack", 21, scm_ArrayDeque, [], 0, 3, 0, 0, ["$iterableFactory0", $rt_wrapFunction0(scm_Stack_iterableFactory0), "$stringPrefix", $rt_wrapFunction0(scm_Stack_stringPrefix), "$iterableFactory", $rt_wrapFunction0(scm_Stack_iterableFactory)], oncifp_RemoveDuplicateUseClauses$UseClauseRewriter, 0, jl_Object, [s_Function1], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter_apply)], onkd_NormalizedDatabaseName, 0, jl_Record, [], 32772, 3, 0, 0, 0, -scm_HashSet$$anon$3, "HashSet$$anon$3", 23, scm_HashSet$HashSetIterator, [], 4, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(scm_HashSet$$anon$3_hashCode), "$extract", $rt_wrapFunction1(scm_HashSet$$anon$3_extract)], -ong_SimpleMessageFormatter, 0, jl_Object, [], 0, 3, 0, 0, 0, oncifp_ProcedureAndFunctionDeprecationWarnings$$visit$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$visit$lambda$_10_0_apply)], oncifp_ProcedureWarnings$$visit$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$visit$lambda$_10_0_apply)], oncifp_CollectSyntaxUsageMetrics$$anonfun$visit$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_CollectSyntaxUsageMetrics$$anonfun$visit$1_applyOrElse)], +oncifp_SemanticTypeCheck$$visit$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SemanticTypeCheck$$visit$lambda$_10_0_apply)], +sci_Map$Map3, "Map$Map3", 20, sci_AbstractMap, [sc_StrictOptimizedIterableOps, ji_Serializable], 0, 3, 0, 0, ["$map", $rt_wrapFunction1(sci_Map$Map3_map), "$flatMap", $rt_wrapFunction1(sci_Map$Map3_flatMap), "$collect", $rt_wrapFunction1(sci_Map$Map3_collect), "$flatten", $rt_wrapFunction1(sci_Map$Map3_flatten), "$filter1", $rt_wrapFunction1(sci_Map$Map3_filter), "$filterNot0", $rt_wrapFunction1(sci_Map$Map3_filterNot), "$size", $rt_wrapFunction0(sci_Map$Map3_size), "$knownSize", $rt_wrapFunction0(sci_Map$Map3_knownSize), +"$isEmpty", $rt_wrapFunction0(sci_Map$Map3_isEmpty), "$apply2", $rt_wrapFunction1(sci_Map$Map3_apply), "$contains", $rt_wrapFunction1(sci_Map$Map3_contains), "$get2", $rt_wrapFunction1(sci_Map$Map3_get), "$getOrElse1", $rt_wrapFunction2(sci_Map$Map3_getOrElse), "$iterator0", $rt_wrapFunction0(sci_Map$Map3_iterator), "$keysIterator", $rt_wrapFunction0(sci_Map$Map3_keysIterator), "$valuesIterator", $rt_wrapFunction0(sci_Map$Map3_valuesIterator), "$foreach", $rt_wrapFunction1(sci_Map$Map3_foreach), "$exists", $rt_wrapFunction1(sci_Map$Map3_exists), +"$forall", $rt_wrapFunction1(sci_Map$Map3_forall), "$hashCode", $rt_wrapFunction0(sci_Map$Map3_hashCode), "$filterImpl", $rt_wrapFunction2(sci_Map$Map3_filterImpl), "$removed", $rt_wrapFunction1(sci_Map$Map3_removed), "$updated0", $rt_wrapFunction2(sci_Map$Map3_updated)], oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5_applyOrElse)], oncias_SemanticFeature$, 0, jl_Object, [], 4, 3, 0, oncias_SemanticFeature$_$callClinit, 0, -oncias_ScopeTreeVerifier$, 0, jl_Object, [], 4, 3, 0, oncias_ScopeTreeVerifier$_$callClinit, 0, +oncias_ScopeTreeVerifier$, 0, jl_Object, [], 4, 3, 0, 0, 0, oncirr_computeDependenciesForExpressions$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_computeDependenciesForExpressions$$anonfun$1_applyOrElse)], -sr_ObjectRef, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -sci_Vector$appendedAll0$lambda$_77_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Vector$appendedAll0$lambda$_77_0_apply)], -sci_Vector$appendedAll0$lambda$_77_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Vector$appendedAll0$lambda$_77_1_apply)], -onciu_Foldable$TreeAny$, 0, jl_Object, [], 0, 3, 0, onciu_Foldable$TreeAny$_$callClinit, 0, +oncius_ClosedDynamicUnionType, "ClosedDynamicUnionType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$coercibleTo", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_coercibleTo), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$position", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_position), "$parentType", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_parentType), +"$toString", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_toCypherTypeString), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_normalizedCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_sortOrder), "$isNullable", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_isNullable), "$description", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_description), "$simplify", +$rt_wrapFunction0(oncius_ClosedDynamicUnionType_simplify), "$isSubtypeOf", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_isSubtypeOf), "$withIsNullable1", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_withPosition), "$equals", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_equals), "$isAssignableFrom0", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_isAssignableFrom), "$covariant", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_covariant), +"$invariant", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_invariant), "$leastUpperBound", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_greatestLowerBound), "$productPrefix", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_productPrefix), "$productArity", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_productArity), "$productElement", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_productElement), "$productIterator", +$rt_wrapFunction0(oncius_ClosedDynamicUnionType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_ClosedDynamicUnionType_hashCode), "$dup", $rt_wrapFunction1(oncius_ClosedDynamicUnionType_dup)], +oncius_PropertyValueType, "PropertyValueType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_PropertyValueType_description), "$simplify", $rt_wrapFunction0(oncius_PropertyValueType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_PropertyValueType_normalizedCypherTypeString), "$isSubtypeOf", $rt_wrapFunction1(oncius_PropertyValueType_isSubtypeOf), "$isNullableSubtypeOf", $rt_wrapFunction2(oncius_PropertyValueType_isNullableSubtypeOf), +"$coercibleTo", $rt_wrapFunction0(oncius_PropertyValueType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_PropertyValueType_isAssignableFrom), "$leastUpperBound", $rt_wrapFunction1(oncius_PropertyValueType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_PropertyValueType_greatestLowerBound), "$covariant", $rt_wrapFunction0(oncius_PropertyValueType_covariant), "$invariant", $rt_wrapFunction0(oncius_PropertyValueType_invariant), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", +$rt_wrapFunction1(oncius_PropertyValueType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$isNullable", $rt_wrapFunction0(oncius_PropertyValueType_isNullable), "$position", $rt_wrapFunction0(oncius_PropertyValueType_position), "$parentType", $rt_wrapFunction0(oncius_PropertyValueType_parentType), "$toString", $rt_wrapFunction0(oncius_PropertyValueType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_PropertyValueType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_PropertyValueType_sortOrder), +"$withIsNullable1", $rt_wrapFunction1(oncius_PropertyValueType_withIsNullable), "$withPosition", $rt_wrapFunction1(oncius_PropertyValueType_withPosition), "$productArity", $rt_wrapFunction0(oncius_PropertyValueType_productArity), "$productElement", $rt_wrapFunction1(oncius_PropertyValueType_productElement), "$productIterator", $rt_wrapFunction0(oncius_PropertyValueType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_PropertyValueType_hashCode), "$equals", $rt_wrapFunction1(oncius_PropertyValueType_equals), +"$dup", $rt_wrapFunction1(oncius_PropertyValueType_dup)], +sr_ScalaRunTime$$anon$1, "ScalaRunTime$$anon$1", 18, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sr_ScalaRunTime$$anon$1_hasNext), "$next", $rt_wrapFunction0(sr_ScalaRunTime$$anon$1_next)], +scm_HashSet$subtractAll$lambda$_53_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, +onciu_Foldable$TreeAny$, 0, jl_Object, [], 0, 3, 0, 0, 0, oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1_applyOrElse)], oncifp_ProcedureWarnings$$anonfun$findWarnings$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ProcedureWarnings$$anonfun$findWarnings$1_applyOrElse)], oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1_applyOrElse)], oncifp_ObfuscationMetadataCollection$$$anonfun$process$1$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$$anonfun$process$1$lambda$_23_0_apply)], -sc_MapView$MapValues, 0, sc_AbstractMapView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_MapView$MapValues_iterator), "$knownSize", $rt_wrapFunction0(sc_MapView$MapValues_knownSize)], +sc_AbstractMapView, 0, sc_AbstractView, [sc_MapView], 1, 3, 0, 0, 0, +sc_MapView$Id, 0, sc_AbstractMapView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_MapView$Id_iterator)], oncir_RewriterStep$, 0, jl_Object, [], 4, 3, 0, 0, 0, -sc_Iterator$$anon$7, "Iterator$$anon$7", 21, sc_AbstractIterator, [s_Function1], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(sc_Iterator$$anon$7_toString), "$apply2", $rt_wrapFunction1(sc_Iterator$$anon$7_apply), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$7_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$7_next)], +scc_JavaCollectionWrappers$IteratorWrapper, 0, jl_Object, [ju_Iterator, ju_Enumeration, ji_Serializable], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scc_JavaCollectionWrappers$IteratorWrapper_hasNext), "$next", $rt_wrapFunction0(scc_JavaCollectionWrappers$IteratorWrapper_next)], oncias_Scope$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncias_Scope$_$callClinit, 0, onciuh_TreeZipper, 0, jl_Object, [], 1, 3, 0, 0, 0, oncias_SemanticState$ScopeZipper$, 0, onciuh_TreeZipper, [], 0, 3, 0, oncias_SemanticState$ScopeZipper$_$callClinit, 0, onciuh_TreeElem, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncias_Scope, "Scope", 41, jl_Object, [onciuh_TreeElem, s_Product, ji_Serializable], 4, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oncias_Scope_toString), "$productPrefix", $rt_wrapFunction0(oncias_Scope_productPrefix), "$productArity", $rt_wrapFunction0(oncias_Scope_productArity), "$productElement", $rt_wrapFunction1(oncias_Scope_productElement), "$productIterator", $rt_wrapFunction0(oncias_Scope_productIterator), "$hashCode", $rt_wrapFunction0(oncias_Scope_hashCode), "$equals", $rt_wrapFunction1(oncias_Scope_equals)]]); -$rt_metadata([oncia_ASTAnnotationMap$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncias_SemanticFeature$UseAsMultipleGraphsSelector$, "SemanticFeature$UseAsMultipleGraphsSelector$", 41, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productElement), +oncias_Scope, "Scope", 40, jl_Object, [onciuh_TreeElem, s_Product, ji_Serializable], 4, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oncias_Scope_toString), "$productPrefix", $rt_wrapFunction0(oncias_Scope_productPrefix), "$productArity", $rt_wrapFunction0(oncias_Scope_productArity), "$productElement", $rt_wrapFunction1(oncias_Scope_productElement), "$productIterator", $rt_wrapFunction0(oncias_Scope_productIterator), "$hashCode", $rt_wrapFunction0(oncias_Scope_hashCode), "$equals", $rt_wrapFunction1(oncias_Scope_equals)], +oncia_ASTAnnotationMap$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncias_SemanticFeature$UseAsMultipleGraphsSelector$, "SemanticFeature$UseAsMultipleGraphsSelector$", 40, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$UseAsMultipleGraphsSelector$_hashCode)], oncias_SemanticCheck, 0, jl_Object, [], 3, 3, 0, 0, 0, oncias_ScopeTreeVerifier$$verify$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_ScopeTreeVerifier$$verify$lambda$_1_0_apply)], -oncifp_BaseState$statement$lambda$_12_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_BaseState$statement$lambda$_12_0_apply)], +oncius_CypherType$$anonfun$1, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$compare2", $rt_wrapFunction2(oncius_CypherType$$anonfun$1_compare)], +oncius_ClosedDynamicUnionType$_init_$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$_init_$lambda$_70_0_apply)], +oncius_ClosedDynamicUnionType$_init_$lambda$_70_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$_init_$lambda$_70_1_apply)], +oncius_ClosedDynamicUnionType$_init_$lambda$_70_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$_init_$lambda$_70_2_apply)]]); +$rt_metadata([oncifp_BaseState$statement$lambda$_12_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_BaseState$statement$lambda$_12_0_apply)], oncifp_BaseState$semantics$lambda$_16_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_BaseState$semantics$lambda$_16_0_apply)], sci_ListSet, 0, sci_AbstractSet, [sci_StrictOptimizedSetOps, scg_DefaultSerializable], 0, 3, 0, 0, 0, onciuci_ListSet$, 0, jl_Object, [sc_IterableFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(onciuci_ListSet$_newBuilder), "$from0", $rt_wrapFunction1(onciuci_ListSet$_from0)], -onciuci_ListSet, "ListSet", 58, sci_AbstractSet, [sci_StrictOptimizedSetOps], 0, 3, 0, 0, ["$partition", $rt_wrapFunction1(onciuci_ListSet_partition), "$map", $rt_wrapFunction1(onciuci_ListSet_map), "$flatMap", $rt_wrapFunction1(onciuci_ListSet_flatMap), "$collect", $rt_wrapFunction1(onciuci_ListSet_collect), "$flatten", $rt_wrapFunction1(onciuci_ListSet_flatten), "$filter1", $rt_wrapFunction1(onciuci_ListSet_filter), "$filterNot0", $rt_wrapFunction1(onciuci_ListSet_filterNot), "$filterImpl", $rt_wrapFunction2(onciuci_ListSet_filterImpl), +onciuci_ListSet, "ListSet", 56, sci_AbstractSet, [sci_StrictOptimizedSetOps], 0, 3, 0, 0, ["$partition", $rt_wrapFunction1(onciuci_ListSet_partition), "$map", $rt_wrapFunction1(onciuci_ListSet_map), "$flatMap", $rt_wrapFunction1(onciuci_ListSet_flatMap), "$collect", $rt_wrapFunction1(onciuci_ListSet_collect), "$flatten", $rt_wrapFunction1(onciuci_ListSet_flatten), "$filter1", $rt_wrapFunction1(onciuci_ListSet_filter), "$filterNot0", $rt_wrapFunction1(onciuci_ListSet_filterNot), "$filterImpl", $rt_wrapFunction2(onciuci_ListSet_filterImpl), "$className", $rt_wrapFunction0(onciuci_ListSet_className), "$size", $rt_wrapFunction0(onciuci_ListSet_size), "$isEmpty", $rt_wrapFunction0(onciuci_ListSet_isEmpty), "$knownSize", $rt_wrapFunction0(onciuci_ListSet_knownSize), "$contains", $rt_wrapFunction1(onciuci_ListSet_contains), "$iterator0", $rt_wrapFunction0(onciuci_ListSet_iterator), "$iterableFactory", $rt_wrapFunction0(onciuci_ListSet_iterableFactory), "$hashCode", $rt_wrapFunction0(onciuci_ListSet_hashCode), "$removedAll", $rt_wrapFunction1(onciuci_ListSet_removedAll0), "$concat1", $rt_wrapFunction1(onciuci_ListSet_concat), "$excl", $rt_wrapFunction1(onciuci_ListSet_excl), "$incl", $rt_wrapFunction1(onciuci_ListSet_incl)], onciu_Rewritable$$dupAny$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Rewritable$$dupAny$lambda$_5_0_apply)], onciu_Foldable$TreeAny$$treeChildren$extension$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$TreeAny$$treeChildren$extension$lambda$_1_0_apply)], -sc_IterableOnceOps$min$lambda$_77_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$min$lambda$_77_0_apply)], -oncir_ValidatingRewriter, "ValidatingRewriter", 60, jl_Object, [s_Function1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncir_ValidatingRewriter_toString), "$apply2", $rt_wrapFunction1(oncir_ValidatingRewriter_apply), "$productPrefix", $rt_wrapFunction0(oncir_ValidatingRewriter_productPrefix), "$productArity", $rt_wrapFunction0(oncir_ValidatingRewriter_productArity), "$productElement", $rt_wrapFunction1(oncir_ValidatingRewriter_productElement), "$productIterator", $rt_wrapFunction0(oncir_ValidatingRewriter_productIterator), +onvs_Value, 0, onv_AnyValue, [], 1, 3, 0, 0, 0, +oncir_ValidatingRewriter, "ValidatingRewriter", 58, jl_Object, [s_Function1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncir_ValidatingRewriter_toString), "$apply2", $rt_wrapFunction1(oncir_ValidatingRewriter_apply), "$productPrefix", $rt_wrapFunction0(oncir_ValidatingRewriter_productPrefix), "$productArity", $rt_wrapFunction0(oncir_ValidatingRewriter_productArity), "$productElement", $rt_wrapFunction1(oncir_ValidatingRewriter_productElement), "$productIterator", $rt_wrapFunction0(oncir_ValidatingRewriter_productIterator), "$hashCode", $rt_wrapFunction0(oncir_ValidatingRewriter_hashCode), "$equals", $rt_wrapFunction1(oncir_ValidatingRewriter_equals)], -oncias_SemanticFeature$MultipleGraphs$, "SemanticFeature$MultipleGraphs$", 41, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$MultipleGraphs$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$MultipleGraphs$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$MultipleGraphs$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$MultipleGraphs$_productElement), "$productIterator", +oncias_SemanticFeature$MultipleGraphs$, "SemanticFeature$MultipleGraphs$", 40, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$MultipleGraphs$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$MultipleGraphs$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$MultipleGraphs$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$MultipleGraphs$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$MultipleGraphs$_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$MultipleGraphs$_hashCode)], -oncias_SemanticFeature$ShowSetting$, "SemanticFeature$ShowSetting$", 41, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$ShowSetting$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_productIterator), +oncias_SemanticFeature$ShowSetting$, "SemanticFeature$ShowSetting$", 40, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$ShowSetting$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$ShowSetting$_hashCode)], -oncias_SemanticFeature$MatchModes$, "SemanticFeature$MatchModes$", 41, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, oncias_SemanticFeature$MatchModes$_$callClinit, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$MatchModes$_productElement), -"$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_hashCode)], -oncias_SemanticFeature$ComposableCommands$, "SemanticFeature$ComposableCommands$", 41, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$ComposableCommands$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$ComposableCommands$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$ComposableCommands$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$ComposableCommands$_productElement), +oncias_SemanticFeature$MatchModes$, "SemanticFeature$MatchModes$", 40, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$MatchModes$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_productIterator), +"$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$MatchModes$_hashCode)], +oncias_SemanticFeature$ComposableCommands$, "SemanticFeature$ComposableCommands$", 40, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$ComposableCommands$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$ComposableCommands$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$ComposableCommands$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$ComposableCommands$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$ComposableCommands$_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$ComposableCommands$_hashCode)], -oncias_SemanticFeature$DynamicLabelsAndTypes$, "SemanticFeature$DynamicLabelsAndTypes$", 41, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$DynamicLabelsAndTypes$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$DynamicLabelsAndTypes$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$DynamicLabelsAndTypes$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$DynamicLabelsAndTypes$_productElement), -"$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$DynamicLabelsAndTypes$_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$DynamicLabelsAndTypes$_hashCode)], +oncias_SemanticFeature$GraphTypes$, "SemanticFeature$GraphTypes$", 40, jl_Object, [oncias_SemanticFeature, oncias_FeatureToString, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncias_SemanticFeature$GraphTypes$_toString), "$name", $rt_wrapFunction0(oncias_SemanticFeature$GraphTypes$_name), "$productArity", $rt_wrapFunction0(oncias_SemanticFeature$GraphTypes$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticFeature$GraphTypes$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticFeature$GraphTypes$_productIterator), +"$hashCode", $rt_wrapFunction0(oncias_SemanticFeature$GraphTypes$_hashCode)], oncias_Scope$allScopes$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$allScopes$lambda$_20_0_apply)], +oncius_CypherType$$normalize$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_0_apply)], +oncius_CypherType$$normalize$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_1_apply)], +oncius_CypherType$$normalize$lambda$_3_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_2_apply)], +oncius_CypherType$$normalize$lambda$_3_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncius_CypherType$$normalize$lambda$_3_3_apply)], +oncius_CypherType$$normalize$lambda$_3_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_4_apply)], +oncius_CypherType$$normalize$lambda$_3_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_5_apply)], +oncius_CypherType$$normalize$lambda$_3_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_6_apply)], +oncius_CypherType$$normalize$lambda$_3_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_7_apply)], +oncius_CypherType$$normalize$lambda$_3_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_8_apply)], +oncius_CypherType$$normalize$lambda$_3_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$normalize$lambda$_3_9_apply)], +scm_Shrinkable$subtractAll$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(scm_Shrinkable$subtractAll$lambda$_6_0_apply)], onciu_Rewritable$IteratorEq, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_StepSequencer$$anonfun$orderSteps$21$lambda$_37_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_0, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_1, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_2, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_3, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_30, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_31, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_32, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_33, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_34, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_35, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_36, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_37, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_38, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_39, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_40, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_41, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_42, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_43, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_44, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_45, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_46, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_65, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_66, 0, jl_Object, [], 0, 3, 0, 0, 0, -scm_HashMap$$anon$2, "HashMap$$anon$2", 23, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$extract0", $rt_wrapFunction1(scm_HashMap$$anon$2_extract)], -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0_apply)], -sc_MapView$MapValues$iterator$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_MapView$MapValues$iterator$lambda$_0_0_apply)], +onciu_RewritableJavascript$PROXY$7_4, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_5, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_6, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_7, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_8, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_9, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_10, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_11, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_12, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_13, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_14, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_15, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_16, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_18, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_19, 0, jl_Object, [], 0, 3, 0, 0, 0, +ong_DiagnosticRecord, 0, jl_Object, [ji_Serializable], 0, 3, 0, ong_DiagnosticRecord_$callClinit, ["$hashCode", $rt_wrapFunction0(ong_DiagnosticRecord_hashCode), "$equals", $rt_wrapFunction1(ong_DiagnosticRecord_equals)], +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$apply$lambda$_27_0_apply)]]); +$rt_metadata([sci_Map$Map3$Map3Iterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_Map$Map3$Map3Iterator_hasNext), "$next", $rt_wrapFunction0(sci_Map$Map3$Map3Iterator_next), "$drop1", $rt_wrapFunction1(sci_Map$Map3$Map3Iterator_drop)], +sci_Map$Map3$$anon$4, "Map$Map3$$anon$4", 20, sci_Map$Map3$Map3Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map3$$anon$4_nextResult)], +sci_Set$Set4$$anon$3, "Set$Set4$$anon$3", 20, sci_Set$SetNIterator, [], 4, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sci_Set$Set4$$anon$3_apply)], +jm_Conversion, 0, jl_Object, [], 0, 0, 0, 0, 0, onciu_Foldable$Folder$$anonfun$treeFold$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, 0, scm_ListBuffer$, 0, jl_Object, [sc_StrictOptimizedSeqFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(scm_ListBuffer$_newBuilder), "$from0", $rt_wrapFunction1(scm_ListBuffer$_from)], oncias_SemanticState$withFeatures$lambda$_46_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticState$withFeatures$lambda$_46_0_apply)], -onciuh_TreeZipper$Location, "TreeZipper$Location", 55, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciuh_TreeZipper$Location_productPrefix), "$productArity", $rt_wrapFunction0(onciuh_TreeZipper$Location_productArity), "$productElement", $rt_wrapFunction1(onciuh_TreeZipper$Location_productElement), "$productIterator", $rt_wrapFunction0(onciuh_TreeZipper$Location_productIterator), "$hashCode", $rt_wrapFunction0(onciuh_TreeZipper$Location_hashCode), "$toString", $rt_wrapFunction0(onciuh_TreeZipper$Location_toString), -"$equals", $rt_wrapFunction1(onciuh_TreeZipper$Location_equals)]]); -$rt_metadata([scm_HashMap$$anon$5, "HashMap$$anon$5", 23, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(scm_HashMap$$anon$5_hashCode), "$extract0", $rt_wrapFunction1(scm_HashMap$$anon$5_extract)], -oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0_apply)], -sci_MapOps$ImmutableKeySet, "MapOps$ImmutableKeySet", 22, sci_AbstractSet, [sc_MapOps$GenKeySet, scg_DefaultSerializable], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_iterator), "$contains", $rt_wrapFunction1(sci_MapOps$ImmutableKeySet_contains), "$size", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_size), "$knownSize", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_knownSize), "$isEmpty", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_isEmpty), "$incl2", $rt_wrapFunction1(sci_MapOps$ImmutableKeySet_incl0), +onciuh_TreeZipper$Location, "TreeZipper$Location", 53, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciuh_TreeZipper$Location_productPrefix), "$productArity", $rt_wrapFunction0(onciuh_TreeZipper$Location_productArity), "$productElement", $rt_wrapFunction1(onciuh_TreeZipper$Location_productElement), "$productIterator", $rt_wrapFunction0(onciuh_TreeZipper$Location_productIterator), "$hashCode", $rt_wrapFunction0(onciuh_TreeZipper$Location_hashCode), "$toString", $rt_wrapFunction0(onciuh_TreeZipper$Location_toString), +"$equals", $rt_wrapFunction1(onciuh_TreeZipper$Location_equals)], +sci_Map$Map2$Map2Iterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_Map$Map2$Map2Iterator_hasNext), "$next", $rt_wrapFunction0(sci_Map$Map2$Map2Iterator_next), "$drop1", $rt_wrapFunction1(sci_Map$Map2$Map2Iterator_drop)], +sci_Map$Map2$$anon$1, "Map$Map2$$anon$1", 20, sci_Map$Map2$Map2Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map2$$anon$1_nextResult)], +sci_MapOps$ImmutableKeySet, "MapOps$ImmutableKeySet", 20, sci_AbstractSet, [sc_MapOps$GenKeySet, scg_DefaultSerializable], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_iterator), "$contains", $rt_wrapFunction1(sci_MapOps$ImmutableKeySet_contains), "$size", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_size), "$knownSize", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_knownSize), "$isEmpty", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_isEmpty), "$incl2", $rt_wrapFunction1(sci_MapOps$ImmutableKeySet_incl0), "$excl2", $rt_wrapFunction1(sci_MapOps$ImmutableKeySet_excl0), "$scala$collection$MapOps$GenKeySet$$$outer", $rt_wrapFunction0(sci_MapOps$ImmutableKeySet_scala$collection$MapOps$GenKeySet$$$outer), "$excl", $rt_wrapFunction1(sci_MapOps$ImmutableKeySet_excl), "$incl", $rt_wrapFunction1(sci_MapOps$ImmutableKeySet_incl)], -sci_HashMap$HashKeySet, "HashMap$HashKeySet", 22, sci_MapOps$ImmutableKeySet, [], 4, 3, 0, 0, ["$incl2", $rt_wrapFunction1(sci_HashMap$HashKeySet_incl), "$excl2", $rt_wrapFunction1(sci_HashMap$HashKeySet_excl), "$filterNot0", $rt_wrapFunction1(sci_HashMap$HashKeySet_filterNot), "$filter1", $rt_wrapFunction1(sci_HashMap$HashKeySet_filter), "$excl", $rt_wrapFunction1(sci_HashMap$HashKeySet_excl0), "$incl", $rt_wrapFunction1(sci_HashMap$HashKeySet_incl0)], +sci_HashMap$HashKeySet, "HashMap$HashKeySet", 20, sci_MapOps$ImmutableKeySet, [], 4, 3, 0, 0, ["$incl2", $rt_wrapFunction1(sci_HashMap$HashKeySet_incl), "$excl2", $rt_wrapFunction1(sci_HashMap$HashKeySet_excl), "$filterNot0", $rt_wrapFunction1(sci_HashMap$HashKeySet_filterNot), "$filter1", $rt_wrapFunction1(sci_HashMap$HashKeySet_filter), "$excl", $rt_wrapFunction1(sci_HashMap$HashKeySet_excl0), "$incl", $rt_wrapFunction1(sci_HashMap$HashKeySet_incl0)], sci_ChampBaseReverseIterator, 0, jl_Object, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_ChampBaseReverseIterator_hasNext)], -sci_MapKeyValueTupleHashIterator, "MapKeyValueTupleHashIterator", 22, sci_ChampBaseReverseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_isEmpty), "$toString", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_toString), "$foreach", $rt_wrapFunction1(sci_MapKeyValueTupleHashIterator_foreach), "$exists", $rt_wrapFunction1(sci_MapKeyValueTupleHashIterator_exists), "$find3", $rt_wrapFunction1(sci_MapKeyValueTupleHashIterator_find), +sci_MapKeyValueTupleHashIterator, "MapKeyValueTupleHashIterator", 20, sci_ChampBaseReverseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_isEmpty), "$toString", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_toString), "$foreach", $rt_wrapFunction1(sci_MapKeyValueTupleHashIterator_foreach), "$exists", $rt_wrapFunction1(sci_MapKeyValueTupleHashIterator_exists), "$find2", $rt_wrapFunction1(sci_MapKeyValueTupleHashIterator_find), "$foldLeft", $rt_wrapFunction2(sci_MapKeyValueTupleHashIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_MapKeyValueTupleHashIterator_copyToArray1), "$copyToArray0", $rt_wrapFunction2(sci_MapKeyValueTupleHashIterator_copyToArray), "$copyToArray", $rt_wrapFunction3(sci_MapKeyValueTupleHashIterator_copyToArray0), "$toList", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_toList), "$toSeq", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_MapKeyValueTupleHashIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_knownSize), "$hashCode", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_hashCode), "$next", $rt_wrapFunction0(sci_MapKeyValueTupleHashIterator_next)], -oncifp_SemanticTypeCheck$visit$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SemanticTypeCheck$visit$lambda$_11_0_apply)], -jusi_MappingStreamImpl$wrap$lambda$_1_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_MappingStreamImpl$wrap$lambda$_1_0_test)], -juf_Consumer, 0, jl_Object, [], 3, 3, 0, 0, 0, -jusi_StreamOverSpliterator$AdapterAction, 0, jl_Object, [juf_Consumer], 0, 0, 0, 0, 0, -cnsa_EnrichedContext$errorHandler$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncip_AstParserFactory$, 0, jl_Object, [], 4, 3, 0, 0, 0, -onciafn_JavaCCParser$, 0, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, onciafn_JavaCCParser$_$callClinit, 0, +jusi_MappingToIntStreamImpl$next$lambda$_1_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_MappingToIntStreamImpl$next$lambda$_1_0_test)], +cnsa_EnrichedContext$errorHandler$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, s_Function$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncir_Deprecations$SemanticallyDeprecatedFeatures$find$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$find$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SyntacticallyDeprecatedFeatures$$find$lambda$_5_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$find$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$find$lambda$_4_0_apply)], +jt_DecimalFormat$PerMillField, "DecimalFormat$PerMillField", 10, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$PerMillField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$PerMillField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$PerMillField_hashCode)], +jt_DecimalFormat$CurrencyField, "DecimalFormat$CurrencyField", 10, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$CurrencyField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$CurrencyField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$CurrencyField_hashCode)], +jt_DecimalFormat$PercentField, "DecimalFormat$PercentField", 10, jl_Object, [jt_DecimalFormat$FormatField], 0, 0, 0, 0, ["$render", $rt_wrapFunction2(jt_DecimalFormat$PercentField_render), "$equals", $rt_wrapFunction1(jt_DecimalFormat$PercentField_equals), "$hashCode", $rt_wrapFunction0(jt_DecimalFormat$PercentField_hashCode)], oncifp_AmbiguousAggregationAnalysis$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_AmbiguousAggregationAnalysis$$anonfun$1_applyOrElse)], +oncius_ClosedDynamicUnionType$simplify$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$simplify$lambda$_28_0_apply)], oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1_applyOrElse)], -sci_HashCollisionMapNode$filterImpl$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionMapNode$filterImpl$lambda$_31_0_apply)], -sci_HashCollisionMapNode$filterImpl$lambda$_31_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionMapNode$filterImpl$lambda$_31_1_apply)], -ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0_apply)], -onciu_CypherExceptionFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_OpenCypherExceptionFactory, "OpenCypherExceptionFactory", 54, jl_Object, [onciu_CypherExceptionFactory, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_productPrefix), "$productArity", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_productArity), "$productElement", $rt_wrapFunction1(onciu_OpenCypherExceptionFactory_productElement), "$productIterator", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_productIterator), "$hashCode", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_hashCode), -"$toString", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory_toString), "$equals", $rt_wrapFunction1(onciu_OpenCypherExceptionFactory_equals)], -oncirr_normalizeWithAndReturnClauses, "normalizeWithAndReturnClauses", 61, jl_Object, [s_Function1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses_toString), "$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses_apply), "$productPrefix", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses_productPrefix), "$productArity", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses_productArity), "$productElement", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses_productElement), +oncirr_normalizeWithAndReturnClauses, "normalizeWithAndReturnClauses", 59, jl_Object, [s_Function1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses_toString), "$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses_apply), "$productPrefix", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses_productPrefix), "$productArity", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses_productArity), "$productElement", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses_productElement), "$productIterator", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses_productIterator), "$hashCode", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses_hashCode), "$equals", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses_equals)], -oncirr_rewriteShortestPathWithFixedLengthRel$, "rewriteShortestPathWithFixedLengthRel$", 61, jl_Object, [s_Function1], 4, 3, 0, oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit, ["$toString", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRel$_toString), "$apply2", $rt_wrapFunction1(oncirr_rewriteShortestPathWithFixedLengthRel$_apply)], -ju_HashSet, "HashSet", 5, ju_AbstractSet, [jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$add", $rt_wrapFunction1(ju_HashSet_add), "$contains", $rt_wrapFunction1(ju_HashSet_contains), "$isEmpty", $rt_wrapFunction0(ju_HashSet_isEmpty), "$iterator", $rt_wrapFunction0(ju_HashSet_iterator), "$size", $rt_wrapFunction0(ju_HashSet_size)], +oncirr_rewriteShortestPathWithFixedLengthRel$, "rewriteShortestPathWithFixedLengthRel$", 59, jl_Object, [s_Function1], 4, 3, 0, oncirr_rewriteShortestPathWithFixedLengthRel$_$callClinit, ["$toString", $rt_wrapFunction0(oncirr_rewriteShortestPathWithFixedLengthRel$_toString), "$apply2", $rt_wrapFunction1(oncirr_rewriteShortestPathWithFixedLengthRel$_apply)], +scm_HashSet$$anon$3, "HashSet$$anon$3", 21, scm_HashSet$HashSetIterator, [], 4, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(scm_HashSet$$anon$3_hashCode), "$extract", $rt_wrapFunction1(scm_HashSet$$anon$3_extract)], +ong_SimpleMessageFormatter, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncia_Statements, "Statements", 35, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_Statements_position), "$productPrefix", $rt_wrapFunction0(oncia_Statements_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Statements_productArity), "$productElement", $rt_wrapFunction1(oncia_Statements_productElement), "$productIterator", $rt_wrapFunction0(oncia_Statements_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Statements_hashCode), "$toString", $rt_wrapFunction0(oncia_Statements_toString), +"$equals", $rt_wrapFunction1(oncia_Statements_equals), "$dup", $rt_wrapFunction1(oncia_Statements_dup)], sr_LazyRef, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1_applyOrElse)], -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1, "RemoveDuplicateUseClauses$UseClauseRewriter$State$1", 67, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productArity), "$productElement", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productElement), "$productIterator", +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1, "RemoveDuplicateUseClauses$UseClauseRewriter$State$1", 65, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productArity), "$productElement", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productElement), "$productIterator", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_hashCode), "$toString", $rt_wrapFunction0(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_toString), "$equals", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$1_equals)], oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2_applyOrElse)], onciu_Foldable$TreeAny$$reverseTreeChildren$extension$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$TreeAny$$reverseTreeChildren$extension$lambda$_2_0_apply)], oncir_ValidatingRewriter$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_ValidatingRewriter$$anonfun$1_applyOrElse)], oncir_ValidatingRewriter$validate$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_ValidatingRewriter$validate$lambda$_35_0_apply)], -oncip_AstParserFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncip_Cypher5AstParserFactory$, 0, jl_Object, [oncip_AstParserFactory], 4, 3, 0, 0, ["$apply6", $rt_wrapFunction3(oncip_Cypher5AstParserFactory$_apply)], -oncip_Cypher25AstParserFactory$, 0, jl_Object, [oncip_AstParserFactory], 4, 3, 0, 0, ["$apply6", $rt_wrapFunction3(oncip_Cypher25AstParserFactory$_apply)], -oncipa_AstParser, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipj_CharStream, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipj_CypherCharStream, 0, jl_Object, [oncipj_CharStream], 0, 3, 0, 0, 0, -oncipcaf_ASTExceptionFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciafn_Neo4jASTExceptionFactory, 0, jl_Object, [oncipcaf_ASTExceptionFactory, scc_AsScalaConverters], 0, 3, 0, 0, 0, -onciaf_ASTExpressionFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciaf_ASTFactory, 0, jl_Object, [onciaf_ASTExpressionFactory], 3, 3, 0, 0, 0, -onciafn_Neo4jASTFactory, 0, jl_Object, [onciaf_ASTFactory], 0, 3, 0, 0, 0, -onciu_CypherException, 0, jl_RuntimeException, [], 1, 3, 0, 0, 0, -onciu_OpenCypherExceptionFactory$SyntaxException, "OpenCypherExceptionFactory$SyntaxException", 54, onciu_CypherException, [], 0, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory$SyntaxException_getMessage)], -one_SyntaxException, "SyntaxException", 70, one_Neo4jException, [], 0, 3, 0, 0, ["$cause0", $rt_wrapFunction0(ong_ErrorGqlStatusObject_cause), "$getMessage", $rt_wrapFunction0(one_SyntaxException_getMessage)], -one_CypherExecutionException, "CypherExecutionException", 70, one_Neo4jException, [], 0, 3, 0, 0, ["$cause0", $rt_wrapFunction0(ong_ErrorGqlStatusObject_cause)], -oncipj_CypherConstants, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipj_Cypher, 0, jl_Object, [oncipj_CypherConstants], 0, 3, 0, 0, 0, -oncia_Statements, "Statements", 36, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_Statements_position), "$productPrefix", $rt_wrapFunction0(oncia_Statements_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Statements_productArity), "$productElement", $rt_wrapFunction1(oncia_Statements_productElement), "$productIterator", $rt_wrapFunction0(oncia_Statements_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Statements_hashCode), "$toString", $rt_wrapFunction0(oncia_Statements_toString), -"$equals", $rt_wrapFunction1(oncia_Statements_equals), "$dup", $rt_wrapFunction1(oncia_Statements_dup)]]); -$rt_metadata([oncipj_TokenMgrException, "TokenMgrException", 50, jl_RuntimeException, [], 0, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(oncipj_TokenMgrException_getMessage)], s_PartialFunction$Lifted, 0, sr_AbstractFunction1, [ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(s_PartialFunction$Lifted_apply)], s_PartialFunction$Unlifted, 0, sr_AbstractPartialFunction, [ji_Serializable], 0, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(s_PartialFunction$Unlifted_applyOrElse)], -ju_Collections$13, 0, ju_AbstractMap, [], 0, 0, 0, 0, 0, +sr_ObjectRef, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +sci_Vector$appendedAll0$lambda$_77_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Vector$appendedAll0$lambda$_77_0_apply)], +sci_Vector$appendedAll0$lambda$_77_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Vector$appendedAll0$lambda$_77_1_apply)], oncirr_normalizeWithAndReturnClauses$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_normalizeWithAndReturnClauses$$anonfun$1_applyOrElse)], sci_Vector$filterImpl$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Vector$filterImpl$lambda$_70_0_apply)], sci_Vector$filterImpl$lambda$_70_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Vector$filterImpl$lambda$_70_1_apply)], -oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0_apply)], sr_AbstractFunction2, 0, jl_Object, [s_Function2], 1, 3, 0, 0, ["$toString", $rt_wrapFunction0(sr_AbstractFunction2_toString)], oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$State$2$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, -sci_Map$WithDefault, "Map$WithDefault", 22, sci_AbstractMap, [ji_Serializable], 0, 3, 0, 0, ["$get2", $rt_wrapFunction1(sci_Map$WithDefault_get), "$default0", $rt_wrapFunction1(sci_Map$WithDefault_default), "$iterableFactory", $rt_wrapFunction0(sci_Map$WithDefault_iterableFactory), "$iterator0", $rt_wrapFunction0(sci_Map$WithDefault_iterator), "$isEmpty", $rt_wrapFunction0(sci_Map$WithDefault_isEmpty), "$mapFactory", $rt_wrapFunction0(sci_Map$WithDefault_mapFactory), "$newSpecificBuilder", $rt_wrapFunction0(sci_Map$WithDefault_newSpecificBuilder), -"$fromSpecific", $rt_wrapFunction1(sci_Map$WithDefault_fromSpecific1), "$fromSpecific0", $rt_wrapFunction1(sci_Map$WithDefault_fromSpecific0), "$updated0", $rt_wrapFunction2(sci_Map$WithDefault_updated), "$removed", $rt_wrapFunction1(sci_Map$WithDefault_removed), "$concat2", $rt_wrapFunction1(sci_Map$WithDefault_concat)], -sci_Map$withDefaultValue$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciu_Foldable$TreeAny$$anon$1, "Foldable$TreeAny$$anon$1", 54, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$1_hasNext), "$next", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$1_next)], -onciu_Foldable$TreeAny$$anon$2, "Foldable$TreeAny$$anon$2", 54, jl_Object, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_iterator), "$isEmpty", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_isEmpty), "$toString", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_toString), "$foreach", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_foreach), "$exists", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_exists), "$find3", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_find), +sc_MapView$MapValues, 0, sc_AbstractMapView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_MapView$MapValues_iterator), "$knownSize", $rt_wrapFunction0(sc_MapView$MapValues_knownSize)], +onciu_Foldable$TreeAny$$anon$1, "Foldable$TreeAny$$anon$1", 52, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$1_hasNext), "$next", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$1_next)], +onciu_Foldable$TreeAny$$anon$2, "Foldable$TreeAny$$anon$2", 52, jl_Object, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_iterator), "$isEmpty", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_isEmpty), "$toString", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_toString), "$foreach", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_foreach), "$exists", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_exists), "$find2", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_find), "$foldLeft", $rt_wrapFunction2(onciu_Foldable$TreeAny$$anon$2_foldLeft), "$nonEmpty", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_nonEmpty), "$size", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_size), "$copyToArray1", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_copyToArray1), "$copyToArray0", $rt_wrapFunction2(onciu_Foldable$TreeAny$$anon$2_copyToArray0), "$copyToArray", $rt_wrapFunction3(onciu_Foldable$TreeAny$$anon$2_copyToArray), "$toList", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_toList), -"$toSeq", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_toSeq), "$toArray", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_toArray), "$knownSize", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_knownSize), "$hasNext", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_hasNext), "$next", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_next)], -oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1_applyOrElse)], -onciuci_ListSet$EmptyListSet$, "ListSet$EmptyListSet$", 58, onciuci_ListSet, [], 0, 3, 0, onciuci_ListSet$EmptyListSet$_$callClinit, ["$knownSize", $rt_wrapFunction0(onciuci_ListSet$EmptyListSet$_knownSize)], -onciuci_ListSet$Builder, "ListSet$Builder", 58, jl_Object, [scm_Builder], 0, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(onciuci_ListSet$Builder_sizeHint0), "$sizeHint0", $rt_wrapFunction2(onciuci_ListSet$Builder_sizeHint), "$addAll0", $rt_wrapFunction1(onciuci_ListSet$Builder_addAll), "$result", $rt_wrapFunction0(onciuci_ListSet$Builder_result), "$addOne", $rt_wrapFunction1(onciuci_ListSet$Builder_addOne)], -sc_Map$equals$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_Map$equals$lambda$_7_0_apply)], +"$toSeq", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_toSeq), "$toArray", $rt_wrapFunction1(onciu_Foldable$TreeAny$$anon$2_toArray), "$knownSize", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_knownSize), "$hasNext", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_hasNext), "$next", $rt_wrapFunction0(onciu_Foldable$TreeAny$$anon$2_next)]]); +$rt_metadata([oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_ScopeTreeVerifier$$anonfun$$nestedInanonfun$verify$1$1_applyOrElse)], +onciuci_ListSet$EmptyListSet$, "ListSet$EmptyListSet$", 56, onciuci_ListSet, [], 0, 3, 0, onciuci_ListSet$EmptyListSet$_$callClinit, ["$knownSize", $rt_wrapFunction0(onciuci_ListSet$EmptyListSet$_knownSize)], +onciuci_ListSet$Builder, "ListSet$Builder", 56, jl_Object, [scm_Builder], 0, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(onciuci_ListSet$Builder_sizeHint0), "$sizeHint0", $rt_wrapFunction2(onciuci_ListSet$Builder_sizeHint), "$addAll0", $rt_wrapFunction1(onciuci_ListSet$Builder_addAll), "$result", $rt_wrapFunction0(onciuci_ListSet$Builder_result), "$addOne", $rt_wrapFunction1(onciuci_ListSet$Builder_addOne)], oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_0_apply)], oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_ValidatingRewriter$buildErrorMessage$lambda$_36_1_apply)], +sc_Map$equals$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_Map$equals$lambda$_7_0_apply)], +sc_Iterator$$anon$7, "Iterator$$anon$7", 19, sc_AbstractIterator, [s_Function1], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(sc_Iterator$$anon$7_toString), "$apply2", $rt_wrapFunction1(sc_Iterator$$anon$7_apply), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$7_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$7_next)], oncifp_InstrumentedProcedureSignatureResolver, 0, jl_Object, [oncifp_ScopedProcedureSignatureResolver], 0, 3, 0, 0, ["$procedureSignature", $rt_wrapFunction1(oncifp_InstrumentedProcedureSignatureResolver_procedureSignature), "$functionSignature", $rt_wrapFunction1(oncifp_InstrumentedProcedureSignatureResolver_functionSignature)], oncifp_RewriteProcedureCalls$process$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RewriteProcedureCalls$process$lambda$_2_0_apply)], -onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_0_apply)], -onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_JavaCCParser$$findMismatchedDelimiters$lambda$_5_1_apply)], -ju_Optional, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncipj_ParseException, "ParseException", 50, jl_Exception, [], 0, 3, 0, 0, 0, -oncipc_InvalidUnicodeLiteral, "InvalidUnicodeLiteral", 43, jl_RuntimeException, [], 0, 3, 0, 0, 0, -oncipj_WithOffset, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncipj_Token, "Token", 50, oncipj_WithOffset, [ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncipj_Token_toString)], -oncipj_ParseExceptions, 0, jl_RuntimeException, [], 0, 3, 0, 0, 0, -sc_View$FlatMap, "View$FlatMap", 21, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$FlatMap_iterator), "$knownSize", $rt_wrapFunction0(sc_View$FlatMap_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$FlatMap_isEmpty)], +sc_View$FlatMap, "View$FlatMap", 19, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$FlatMap_iterator), "$knownSize", $rt_wrapFunction0(sc_View$FlatMap_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$FlatMap_isEmpty)], oncirr_rewriteShortestPathWithFixedLengthRel$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_rewriteShortestPathWithFixedLengthRel$$anonfun$1_applyOrElse)], -jusi_ArrayStreamImpl, 0, jusi_SimpleStreamImpl, [], 0, 3, 0, 0, ["$next2", $rt_wrapFunction1(jusi_ArrayStreamImpl_next), "$estimateSize", $rt_wrapFunction0(jusi_ArrayStreamImpl_estimateSize)], +sc_IterableOnceOps$min$lambda$_77_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$min$lambda$_77_0_apply)], +ju_HashSet, "HashSet", 5, ju_AbstractSet, [jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$add", $rt_wrapFunction1(ju_HashSet_add), "$contains", $rt_wrapFunction1(ju_HashSet_contains), "$isEmpty", $rt_wrapFunction0(ju_HashSet_isEmpty), "$iterator", $rt_wrapFunction0(ju_HashSet_iterator), "$size", $rt_wrapFunction0(ju_HashSet_size)], ju_SequencedSet, 0, jl_Object, [ju_SequencedCollection, ju_Set], 3, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], ju_LinkedHashSet, "LinkedHashSet", 5, ju_HashSet, [ju_SequencedSet, jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], suh_MurmurHash3$accum$1, 0, jl_Object, [s_Function2], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(suh_MurmurHash3$accum$1_apply)], -ju_Vector, 0, ju_AbstractList, [ju_List, ju_RandomAccess, jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -ju_Stack, 0, ju_Vector, [], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oncipj_Cypher$JJCalls, 0, jl_Object, [], 4, 0, 0, 0, 0, -oncipj_Cypher$LookaheadSuccess, "Cypher$LookaheadSuccess", 50, jl_IllegalStateException, [], 4, 0, 0, 0, 0, -oncipj_CypherTokenManager, 0, jl_Object, [oncipj_CypherConstants], 0, 3, 0, 0, 0, -oncipj_ParseExceptions$expected$lambda$_1_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, 0, -oncipj_ParseExceptions$expected$lambda$_1_1, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, 0, -ju_Comparator$NaturalOrder, 0, jl_Object, [ju_Comparator], 0, 3, 0, 0, ["$compare2", $rt_wrapFunction2(ju_Comparator$NaturalOrder_compare)], ju_SequencedMap, 0, jl_Object, [ju_Map], 3, 3, 0, 0, 0, ju_LinkedHashMap, "LinkedHashMap", 5, ju_HashMap, [ju_SequencedMap], 0, 3, 0, 0, ["$newElementArray", $rt_wrapFunction1(ju_LinkedHashMap_newElementArray), "$get6", $rt_wrapFunction1(ju_LinkedHashMap_get), "$put", $rt_wrapFunction2(ju_LinkedHashMap_put), "$entrySet", $rt_wrapFunction0(ju_LinkedHashMap_entrySet), "$keySet1", $rt_wrapFunction0(ju_LinkedHashMap_keySet), "$remove3", $rt_wrapFunction1(ju_LinkedHashMap_remove)], -oncipj_IdentifierTokens, 0, jl_Object, [], 0, 3, 0, oncipj_IdentifierTokens_$callClinit, 0, -oncipj_ParseExceptions$processExpectedList$lambda$_2_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipj_ParseExceptions$processExpectedList$lambda$_2_0_apply)], -oncipj_ExpressionTokens, 0, jl_Object, [], 0, 3, 0, oncipj_ExpressionTokens_$callClinit, 0, -jus_Collectors$toList$lambda$_2_0, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get1", $rt_wrapFunction0(jus_Collectors$toList$lambda$_2_0_get)]]); -$rt_metadata([oncipcaf_CreateIndexTypes, "CreateIndexTypes", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipcaf_ConstraintVersion, "ConstraintVersion", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipcaf_ConstraintType, "ConstraintType", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -onciaf_ASTFactory$StringPos, "ASTFactory$StringPos", 37, jl_Object, [], 0, 3, 0, 0, 0, -oncipcaf_ShowCommandFilterTypes, "ShowCommandFilterTypes", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipj_AliasName, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncipcaf_ParameterType, "ParameterType", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipcaf_SimpleEither, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipcaf_ParserCypherTypeName, "ParserCypherTypeName", 45, jl_Object, [], 0, 3, 0, 0, 0, -ju_AbstractSequentialList, 0, ju_AbstractList, [], 1, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_AbstractSequentialList_get), "$set1", $rt_wrapFunction2(ju_AbstractSequentialList_set), "$add3", $rt_wrapFunction2(ju_AbstractSequentialList_add), "$remove", $rt_wrapFunction1(ju_AbstractSequentialList_remove), "$iterator", $rt_wrapFunction0(ju_AbstractSequentialList_iterator)], -ju_Queue, 0, jl_Object, [ju_Collection], 3, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -ju_Deque, 0, jl_Object, [ju_Queue, ju_SequencedCollection], 3, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -ju_LinkedList, "LinkedList", 5, ju_AbstractSequentialList, [ju_Deque], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_LinkedList_size), "$listIterator", $rt_wrapFunction1(ju_LinkedList_listIterator)], -onciaf_ASTFactory$MergeActionType, "ASTFactory$MergeActionType", 37, jl_Enum, [], 12, 3, [onciaf_ASTFactory,0,"MergeActionType"], 0, 0, -oncipcaf_EitherImpl, "EitherImpl", 45, jl_Object, [oncipcaf_SimpleEither], 0, 0, 0, 0, 0, -oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName, "ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName", 45, oncipcaf_ParserCypherTypeName, [], 0, 3, 0, 0, 0, -oncipcaf_AccessType, "AccessType", 45, jl_Enum, [], 12, 3, [0,0,0], oncipcaf_AccessType_$callClinit, 0, -oncipcaf_ActionType, "ActionType", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipcaf_HintIndexType, "HintIndexType", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName$_init_$lambda$_0_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipcaf_ParserCypherTypeName$ClosedDynamicUnionParserCypherTypeName$_init_$lambda$_0_0_apply)], -oncipcaf_ScopeType, "ScopeType", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipcaf_ASTExceptionFactory$1, 0, jl_Object, [], 32, 0, 0, oncipcaf_ASTExceptionFactory$1_$callClinit, 0, -oncipcaf_CallInTxsOnErrorBehaviourType, "CallInTxsOnErrorBehaviourType", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipcd_DeprecatedChars, 0, jl_Object, [], 0, 3, 0, oncipcd_DeprecatedChars_$callClinit, 0, -oncipcaf_ParserCypherTypeName$ListParserCypherTypeName, "ParserCypherTypeName$ListParserCypherTypeName", 45, oncipcaf_ParserCypherTypeName, [], 0, 3, 0, 0, 0, -oncipj_ExpectBar, "ExpectBar", 50, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -ju_TemplateCollections$SingleElementList, 0, ju_TemplateCollections$AbstractImmutableList, [ju_RandomAccess], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_TemplateCollections$SingleElementList_size), "$get0", $rt_wrapFunction1(ju_TemplateCollections$SingleElementList_get)], -oncipcaf_ParserNormalForm, "ParserNormalForm", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oncipcaf_ParserTrimSpecification, "ParserTrimSpecification", 45, jl_Enum, [], 12, 3, [0,0,0], 0, 0, onciu_RewritableJavascript$PROXY$7_68, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncie_Expression, "Expression", 64, jl_Object, [onciu_ASTNode], 1, 3, [0,0,0], 0, ["$dup0", $rt_wrapFunction1(oncie_Expression_dup), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Expression_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncie_Expression_foldedOver), "$dependencies", $rt_wrapFunction0(oncie_Expression_dependencies), "$dup", $rt_wrapFunction1(oncie_Expression_dup0)], -oncie_AutoExtractedParameter, "AutoExtractedParameter", 64, oncie_Expression, [oncie_Parameter, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_AutoExtractedParameter_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_AutoExtractedParameter_isConstantForQuery), "$name", $rt_wrapFunction0(oncie_AutoExtractedParameter_name), "$parameterType", $rt_wrapFunction0(oncie_AutoExtractedParameter_parameterType), "$sizeHint1", $rt_wrapFunction0(oncie_AutoExtractedParameter_sizeHint), +onciu_RewritableJavascript$PROXY$7_69, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_70, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncie_Expression, "Expression", 62, jl_Object, [onciu_ASTNode], 1, 3, [0,0,0], 0, ["$dup0", $rt_wrapFunction1(oncie_Expression_dup), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Expression_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncie_Expression_foldedOver), "$dependencies", $rt_wrapFunction0(oncie_Expression_dependencies), "$dup", $rt_wrapFunction1(oncie_Expression_dup0)], +oncie_AutoExtractedParameter, "AutoExtractedParameter", 62, oncie_Expression, [oncie_Parameter, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_AutoExtractedParameter_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_AutoExtractedParameter_isConstantForQuery), "$name", $rt_wrapFunction0(oncie_AutoExtractedParameter_name), "$parameterType", $rt_wrapFunction0(oncie_AutoExtractedParameter_parameterType), "$sizeHint1", $rt_wrapFunction0(oncie_AutoExtractedParameter_sizeHint), "$position", $rt_wrapFunction0(oncie_AutoExtractedParameter_position), "$hashCode", $rt_wrapFunction0(oncie_AutoExtractedParameter_hashCode), "$canEqual", $rt_wrapFunction1(oncie_AutoExtractedParameter_canEqual), "$equals", $rt_wrapFunction1(oncie_AutoExtractedParameter_equals), "$productPrefix", $rt_wrapFunction0(oncie_AutoExtractedParameter_productPrefix), "$productArity", $rt_wrapFunction0(oncie_AutoExtractedParameter_productArity), "$productElement", $rt_wrapFunction1(oncie_AutoExtractedParameter_productElement), "$productIterator", $rt_wrapFunction0(oncie_AutoExtractedParameter_productIterator), "$toString", $rt_wrapFunction0(oncie_AutoExtractedParameter_toString)], -sci_Map$Map4$Map4Iterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_Map$Map4$Map4Iterator_hasNext), "$next", $rt_wrapFunction0(sci_Map$Map4$Map4Iterator_next), "$drop1", $rt_wrapFunction1(sci_Map$Map4$Map4Iterator_drop)], -sci_Map$Map4$$anon$7, "Map$Map4$$anon$7", 22, sci_Map$Map4$Map4Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map4$$anon$7_nextResult)], +scm_HashMap$$anon$2, "HashMap$$anon$2", 21, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$extract0", $rt_wrapFunction1(scm_HashMap$$anon$2_extract)], oncias_SemanticAnalysisTooling, 0, jl_Object, [], 3, 3, 0, 0, 0, oncia_Query, 0, jl_Object, [oncia_Statement, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, -oncia_SingleQuery, "SingleQuery", 36, jl_Object, [oncia_Query, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_SingleQuery_returnColumns), "$foldedOver", $rt_wrapFunction0(oncia_SingleQuery_foldedOver), "$folder", $rt_wrapFunction0(oncia_SingleQuery_folder), "$position", $rt_wrapFunction0(oncia_SingleQuery_position), "$mapEachSingleQuery", $rt_wrapFunction1(oncia_SingleQuery_mapEachSingleQuery), "$containsUpdates", $rt_wrapFunction0(oncia_SingleQuery_containsUpdates), "$returnVariables", -$rt_wrapFunction0(oncia_SingleQuery_returnVariables), "$getReturns", $rt_wrapFunction0(oncia_SingleQuery_getReturns), "$isCorrelated", $rt_wrapFunction0(oncia_SingleQuery_isCorrelated), "$isReturning", $rt_wrapFunction0(oncia_SingleQuery_isReturning), "$endsWithFinish", $rt_wrapFunction0(oncia_SingleQuery_endsWithFinish), "$importColumns", $rt_wrapFunction0(oncia_SingleQuery_importColumns), "$semanticCheck", $rt_wrapFunction0(oncia_SingleQuery_semanticCheck), "$semanticCheckInSubqueryExpressionContext", $rt_wrapFunction1(oncia_SingleQuery_semanticCheckInSubqueryExpressionContext), -"$checkImportingWith", $rt_wrapFunction0(oncia_SingleQuery_checkImportingWith), "$semanticCheckImportingWithSubQueryContext", $rt_wrapFunction1(oncia_SingleQuery_semanticCheckImportingWithSubQueryContext), "$semanticCheckInSubqueryContext", $rt_wrapFunction2(oncia_SingleQuery_semanticCheckInSubqueryContext), "$finalScope", $rt_wrapFunction1(oncia_SingleQuery_finalScope), "$productPrefix", $rt_wrapFunction0(oncia_SingleQuery_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SingleQuery_productArity), "$productElement", -$rt_wrapFunction1(oncia_SingleQuery_productElement), "$productIterator", $rt_wrapFunction0(oncia_SingleQuery_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SingleQuery_hashCode), "$toString", $rt_wrapFunction0(oncia_SingleQuery_toString), "$equals", $rt_wrapFunction1(oncia_SingleQuery_equals), "$dup", $rt_wrapFunction1(oncia_SingleQuery_dup)], +oncia_UnionArgument, 0, jl_Object, [oncia_Query], 3, 3, 0, 0, 0, +oncia_SingleQuery, "SingleQuery", 35, jl_Object, [oncia_UnionArgument, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_SingleQuery_returnColumns), "$foldedOver", $rt_wrapFunction0(oncia_SingleQuery_foldedOver), "$folder", $rt_wrapFunction0(oncia_SingleQuery_folder), "$position", $rt_wrapFunction0(oncia_SingleQuery_position), "$getQuery", $rt_wrapFunction1(oncia_SingleQuery_getQuery), "$getSingleQuery", $rt_wrapFunction0(oncia_SingleQuery_getSingleQuery), "$mapEachSingleQuery", +$rt_wrapFunction1(oncia_SingleQuery_mapEachSingleQuery), "$containsUpdates", $rt_wrapFunction0(oncia_SingleQuery_containsUpdates), "$returnVariables", $rt_wrapFunction0(oncia_SingleQuery_returnVariables), "$getReturns", $rt_wrapFunction0(oncia_SingleQuery_getReturns), "$isCorrelated", $rt_wrapFunction0(oncia_SingleQuery_isCorrelated), "$isReturning", $rt_wrapFunction0(oncia_SingleQuery_isReturning), "$endsWithFinish", $rt_wrapFunction0(oncia_SingleQuery_endsWithFinish), "$importColumns", $rt_wrapFunction0(oncia_SingleQuery_importColumns), +"$semanticCheck", $rt_wrapFunction0(oncia_SingleQuery_semanticCheck), "$semanticCheckInSubqueryExpressionContext", $rt_wrapFunction1(oncia_SingleQuery_semanticCheckInSubqueryExpressionContext), "$checkImportingWith", $rt_wrapFunction0(oncia_SingleQuery_checkImportingWith), "$semanticCheckImportingWithSubQueryContext", $rt_wrapFunction1(oncia_SingleQuery_semanticCheckImportingWithSubQueryContext), "$semanticCheckInSubqueryContext", $rt_wrapFunction2(oncia_SingleQuery_semanticCheckInSubqueryContext), "$finalScope", +$rt_wrapFunction1(oncia_SingleQuery_finalScope), "$productPrefix", $rt_wrapFunction0(oncia_SingleQuery_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SingleQuery_productArity), "$productElement", $rt_wrapFunction1(oncia_SingleQuery_productElement), "$productIterator", $rt_wrapFunction0(oncia_SingleQuery_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SingleQuery_hashCode), "$toString", $rt_wrapFunction0(oncia_SingleQuery_toString), "$equals", $rt_wrapFunction1(oncia_SingleQuery_equals), "$dup", +$rt_wrapFunction1(oncia_SingleQuery_dup)], oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$2$applyOrElse$lambda$_0_0_apply)], oncirc_containsNoMatchingNodes$$anonfun$apply$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirc_containsNoMatchingNodes$$anonfun$apply$1_applyOrElse)], -oncirc_containsNoMatchingNodes$apply$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirc_containsNoMatchingNodes$apply$lambda$_7_0_apply)], -oncia_Clause, "Clause", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling], 3, 3, [0,0,0], 0, 0, -oncia_HorizonClause, 0, jl_Object, [oncia_Clause], 3, 3, 0, 0, 0, -oncia_ProjectionClause, 0, jl_Object, [oncia_HorizonClause], 3, 3, 0, 0, 0, -oncia_ProjectionClause$, 0, jl_Object, [], 4, 3, 0, oncia_ProjectionClause$_$callClinit, 0, -s_Product6, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, -s_Tuple6, "Tuple6", 17, jl_Object, [s_Product6, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_Tuple6_productArity), "$productElement", $rt_wrapFunction1(s_Tuple6_productElement), "$toString", $rt_wrapFunction0(s_Tuple6_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple6_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple6_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple6_hashCode), "$equals", $rt_wrapFunction1(s_Tuple6_equals)], -oncia_ReturnItems, "ReturnItems", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling, ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_ReturnItems_position), "$semanticCheck", $rt_wrapFunction0(oncia_ReturnItems_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ReturnItems_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ReturnItems_productArity), "$productElement", $rt_wrapFunction1(oncia_ReturnItems_productElement), "$productIterator", -$rt_wrapFunction0(oncia_ReturnItems_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReturnItems_hashCode), "$toString", $rt_wrapFunction0(oncia_ReturnItems_toString), "$equals", $rt_wrapFunction1(oncia_ReturnItems_equals), "$dup", $rt_wrapFunction1(oncia_ReturnItems_dup)], -oncie_ScopeExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_ExpressionWithComputedDependencies, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_SubqueryExpression, 0, jl_Object, [oncie_ScopeExpression, oncie_ExpressionWithComputedDependencies], 3, 3, 0, 0, 0]); -$rt_metadata([oncia_FullSubqueryExpression, 0, jl_Object, [oncie_SubqueryExpression], 3, 3, 0, 0, 0, -oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, -oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2_applyOrElse)], -oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1_apply)], -oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2_apply)], -oncie_LogicalVariable, "LogicalVariable", 64, oncie_Expression, [], 1, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_LogicalVariable_isConstantForQuery)], -oncie_PatternPart, "PatternPart", 64, jl_Object, [onciu_ASTNode], 1, 3, [0,0,0], 0, ["$dup0", $rt_wrapFunction1(oncie_PatternPart_dup), "$foldedOver", $rt_wrapFunction0(oncie_PatternPart_foldedOver), "$folder", $rt_wrapFunction0(oncie_PatternPart_folder), "$dup", $rt_wrapFunction1(oncie_PatternPart_dup0)], -oncie_HasMappableExpressions, 0, jl_Object, [onciu_Foldable], 3, 3, 0, 0, 0, -oncie_NonPrefixedPatternPart, 0, jl_Object, [oncie_HasMappableExpressions], 3, 3, 0, 0, 0, -oncie_AnonymousPatternPart, 0, jl_Object, [oncie_NonPrefixedPatternPart], 3, 3, 0, 0, 0, -oncie_ShortestPathsPatternPart, "ShortestPathsPatternPart", 64, oncie_PatternPart, [oncie_AnonymousPatternPart, ji_Serializable], 0, 3, [0,0,0], 0, ["$allVariables", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_allVariables), "$element", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_element), "$position", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_position), "$isBounded", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_productArity), "$productElement", $rt_wrapFunction1(oncie_ShortestPathsPatternPart_productElement), "$productIterator", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_hashCode), "$toString", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_toString), "$equals", $rt_wrapFunction1(oncie_ShortestPathsPatternPart_equals), "$mapExpressions", $rt_wrapFunction1(oncie_ShortestPathsPatternPart_mapExpressions)], -oncie_PatternElement, 0, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions], 1, 3, 0, 0, ["$foldedOver", $rt_wrapFunction0(oncie_PatternElement_foldedOver), "$dup", $rt_wrapFunction1(oncie_PatternElement_dup)], -oncie_PathFactor, "PathFactor", 64, jl_Object, [], 3, 3, [0,0,0], 0, 0, -oncie_SimplePattern, 0, oncie_PatternElement, [oncie_PathFactor], 1, 3, 0, 0, 0, -oncie_RelationshipChain, "RelationshipChain", 64, oncie_SimplePattern, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_RelationshipChain_position), "$allVariables", $rt_wrapFunction0(oncie_RelationshipChain_allVariables), "$isBounded", $rt_wrapFunction0(oncie_RelationshipChain_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_RelationshipChain_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RelationshipChain_productArity), "$productElement", $rt_wrapFunction1(oncie_RelationshipChain_productElement), -"$productIterator", $rt_wrapFunction0(oncie_RelationshipChain_productIterator), "$hashCode", $rt_wrapFunction0(oncie_RelationshipChain_hashCode), "$toString", $rt_wrapFunction0(oncie_RelationshipChain_toString), "$equals", $rt_wrapFunction1(oncie_RelationshipChain_equals), "$mapExpressions", $rt_wrapFunction1(oncie_RelationshipChain_mapExpressions)], -oncie_PatternAtom, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, -oncie_NodePattern, "NodePattern", 64, oncie_SimplePattern, [oncie_PatternAtom, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_NodePattern_position), "$allVariables", $rt_wrapFunction0(oncie_NodePattern_allVariables), "$isBounded", $rt_wrapFunction0(oncie_NodePattern_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_NodePattern_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NodePattern_productArity), "$productElement", $rt_wrapFunction1(oncie_NodePattern_productElement), -"$productIterator", $rt_wrapFunction0(oncie_NodePattern_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NodePattern_hashCode), "$toString", $rt_wrapFunction0(oncie_NodePattern_toString), "$equals", $rt_wrapFunction1(oncie_NodePattern_equals), "$mapExpressions", $rt_wrapFunction1(oncie_NodePattern_mapExpressions0)], -oncie_Literal, "Literal", 64, jl_Object, [], 3, 3, [0,0,0], 0, 0, -oncie_NumberLiteral, 0, jl_Object, [oncie_Literal], 3, 3, 0, 0, 0, -oncie_IntegerLiteral, 0, jl_Object, [oncie_NumberLiteral], 3, 3, 0, 0, 0, -oncie_DecimalIntegerLiteral, 0, oncie_Expression, [oncie_IntegerLiteral], 1, 3, 0, 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_DecimalIntegerLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_DecimalIntegerLiteral_isConstantForQuery), "$value1", $rt_wrapFunction0(oncie_DecimalIntegerLiteral_value)], -oncie_UnsignedIntegerLiteral, 0, jl_Object, [oncie_IntegerLiteral], 3, 3, 0, 0, 0, -oncie_UnsignedDecimalIntegerLiteral, "UnsignedDecimalIntegerLiteral", 64, oncie_DecimalIntegerLiteral, [oncie_UnsignedIntegerLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$stringVal", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_UnsignedDecimalIntegerLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_toString), "$equals", $rt_wrapFunction1(oncie_UnsignedDecimalIntegerLiteral_equals)], -oncie_Range, "Range", 64, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_Range_position), "$productPrefix", $rt_wrapFunction0(oncie_Range_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Range_productArity), "$productElement", $rt_wrapFunction1(oncie_Range_productElement), "$productIterator", $rt_wrapFunction0(oncie_Range_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Range_hashCode), "$toString", $rt_wrapFunction0(oncie_Range_toString), -"$equals", $rt_wrapFunction1(oncie_Range_equals), "$dup", $rt_wrapFunction1(oncie_Range_dup)], -ju_TemplateCollections$ImmutableArrayList, 0, ju_TemplateCollections$AbstractImmutableList, [ju_RandomAccess], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_TemplateCollections$ImmutableArrayList_get), "$size", $rt_wrapFunction0(ju_TemplateCollections$ImmutableArrayList_size)], -oncipa_AntlrAstParser, 0, jl_Object, [oncipa_AstParser], 3, 3, 0, 0, 0, -oncipvaf_Cypher5AstParser, 0, jl_Object, [oncipa_AntlrAstParser], 4, 3, 0, 0, ["$exceptionFactory", $rt_wrapFunction0(oncipvaf_Cypher5AstParser_exceptionFactory), "$statements", $rt_wrapFunction0(oncipvaf_Cypher5AstParser_statements), "$syntaxException", $rt_wrapFunction2(oncipvaf_Cypher5AstParser_syntaxException), "$newLexer", $rt_wrapFunction1(oncipvaf_Cypher5AstParser_newLexer), "$errorStrategyConf", $rt_wrapFunction0(oncipvaf_Cypher5AstParser_errorStrategyConf), "$newParser", $rt_wrapFunction1(oncipvaf_Cypher5AstParser_newParser)], +oncirc_containsNoMatchingNodes$apply$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirc_containsNoMatchingNodes$apply$lambda$_7_0_apply)], +oncia_Clause, "Clause", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling], 3, 3, [0,0,0], 0, 0, +oncia_HorizonClause, 0, jl_Object, [oncia_Clause], 3, 3, 0, 0, 0, +oncia_ProjectionClause, 0, jl_Object, [oncia_HorizonClause], 3, 3, 0, 0, 0, +oncia_ProjectionClause$, 0, jl_Object, [], 4, 3, 0, oncia_ProjectionClause$_$callClinit, 0, +s_Product6, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, +s_Tuple6, "Tuple6", 15, jl_Object, [s_Product6, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_Tuple6_productArity), "$productElement", $rt_wrapFunction1(s_Tuple6_productElement), "$toString", $rt_wrapFunction0(s_Tuple6_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple6_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple6_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple6_hashCode), "$equals", $rt_wrapFunction1(s_Tuple6_equals)], +oncia_ReturnItems, "ReturnItems", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling, ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_ReturnItems_position), "$semanticCheck", $rt_wrapFunction0(oncia_ReturnItems_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ReturnItems_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ReturnItems_productArity), "$productElement", $rt_wrapFunction1(oncia_ReturnItems_productElement), "$productIterator", +$rt_wrapFunction0(oncia_ReturnItems_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReturnItems_hashCode), "$toString", $rt_wrapFunction0(oncia_ReturnItems_toString), "$equals", $rt_wrapFunction1(oncia_ReturnItems_equals), "$dup", $rt_wrapFunction1(oncia_ReturnItems_dup)], +oncie_ScopeExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_ExpressionWithComputedDependencies, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_SubqueryExpression, 0, jl_Object, [oncie_ScopeExpression, oncie_ExpressionWithComputedDependencies], 3, 3, 0, 0, 0, +oncia_FullSubqueryExpression, 0, jl_Object, [oncie_SubqueryExpression], 3, 3, 0, 0, 0, +oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, +oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_normalizeWithAndReturnClauses$$anonfun$1$$anonfun$2_applyOrElse)], +oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_1_apply)], +oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$$anonfun$1$applyOrElse$lambda$_0_2_apply)], +sc_MapView$MapValues$iterator$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_MapView$MapValues$iterator$lambda$_0_0_apply)], +oncie_LogicalVariable, "LogicalVariable", 62, oncie_Expression, [], 1, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_LogicalVariable_isConstantForQuery)], ju_LinkedHashMap$LinkedHashMapEntry, "LinkedHashMap$LinkedHashMapEntry", 5, ju_HashMap$HashEntry, [], 4, 0, 0, 0, 0, -oncipj_AliasName$getLocalAliasName$lambda$_5_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(oncipj_AliasName$getLocalAliasName$lambda$_5_0_test)], -oncipj_AliasName$getAsDatabaseName$lambda$_4_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(oncipj_AliasName$getAsDatabaseName$lambda$_4_0_test)], -oncia_StatementWithGraph, 0, jl_Object, [oncia_Statement], 3, 3, 0, 0, 0, -oncia_AdministrationCommand, 0, jl_Object, [oncia_StatementWithGraph, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, +oncia_StatementWithGraph, 0, jl_Object, [oncia_Statement], 3, 3, 0, 0, 0]); +$rt_metadata([oncia_AdministrationCommand, 0, jl_Object, [oncia_StatementWithGraph, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, oncia_ReadAdministrationCommand, 0, jl_Object, [oncia_AdministrationCommand], 3, 3, 0, 0, 0, -oncia_ShowPrivileges, "ShowPrivileges", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowPrivileges_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowPrivileges_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowPrivileges_yields), +oncia_ShowPrivileges, "ShowPrivileges", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowPrivileges_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowPrivileges_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowPrivileges_yields), "$returns", $rt_wrapFunction0(oncia_ShowPrivileges_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowPrivileges_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowPrivileges_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ShowPrivileges_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowPrivileges_semanticCheckFold), -"$declareVariable", $rt_wrapFunction2(oncia_ShowPrivileges_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowPrivileges_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowPrivileges_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowPrivileges_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowPrivileges_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowPrivileges_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", +"$declareVariable", $rt_wrapFunction2(oncia_ShowPrivileges_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowPrivileges_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowPrivileges_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowPrivileges_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowPrivileges_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowPrivileges_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowPrivileges_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowPrivileges_yieldOrWhere), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowPrivileges_defaultColumnSet), "$position", $rt_wrapFunction0(oncia_ShowPrivileges_position), "$name", $rt_wrapFunction0(oncia_ShowPrivileges_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowPrivileges_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowPrivileges_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowPrivileges_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowPrivileges_withGraph0)], oncia_ClauseAllowedOnSystem, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_Yield, "Yield", 36, jl_Object, [oncia_ProjectionClause, oncia_ClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$isReturn", $rt_wrapFunction0(oncia_Yield_isReturn), "$copyProjection", function(var_1, var_2, var_3, var_4, var_5, var_6) { return oncia_Yield_copyProjection(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$copyProjection$default$1", $rt_wrapFunction0(oncia_Yield_copyProjection$default$1), "$copyProjection$default$3", $rt_wrapFunction0(oncia_Yield_copyProjection$default$3), "$copyProjection$default$4", +oncia_Yield, "Yield", 35, jl_Object, [oncia_ProjectionClause, oncia_ClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$isReturn", $rt_wrapFunction0(oncia_Yield_isReturn), "$copyProjection", function(var_1, var_2, var_3, var_4, var_5, var_6) { return oncia_Yield_copyProjection(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$copyProjection$default$1", $rt_wrapFunction0(oncia_Yield_copyProjection$default$1), "$copyProjection$default$3", $rt_wrapFunction0(oncia_Yield_copyProjection$default$3), "$copyProjection$default$4", $rt_wrapFunction0(oncia_Yield_copyProjection$default$4), "$copyProjection$default$5", $rt_wrapFunction0(oncia_Yield_copyProjection$default$5), "$copyProjection$default$6", $rt_wrapFunction0(oncia_Yield_copyProjection$default$6), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Yield_clauseSpecificSemanticCheck), "$semanticCheckContinuation", $rt_wrapFunction2(oncia_Yield_semanticCheckContinuation), "$semanticCheckContinuation$default$2", $rt_wrapFunction0(oncia_Yield_semanticCheckContinuation$default$2), -"$verifyOrderByAggregationUse", $rt_wrapFunction1(oncia_Yield_verifyOrderByAggregationUse), "$returnVariables", $rt_wrapFunction0(oncia_Yield_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Yield_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Yield_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_Yield_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Yield_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Yield_foldedOver), "$folder", $rt_wrapFunction0(oncia_Yield_folder), +"$verifyOrderByAggregationUse", $rt_wrapFunction1(oncia_Yield_verifyOrderByAggregationUse), "$returnVariables", $rt_wrapFunction0(oncia_Yield_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Yield_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Yield_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_Yield_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Yield_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Yield_foldedOver), "$folder", $rt_wrapFunction0(oncia_Yield_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Yield_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Yield_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Yield_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$returnItems", $rt_wrapFunction0(oncia_Yield_returnItems), "$orderBy", $rt_wrapFunction0(oncia_Yield_orderBy), "$skip", $rt_wrapFunction0(oncia_Yield_skip), "$limit", $rt_wrapFunction0(oncia_Yield_limit), "$where", $rt_wrapFunction0(oncia_Yield_where), "$position", $rt_wrapFunction0(oncia_Yield_position), "$distinct", $rt_wrapFunction0(oncia_Yield_distinct), "$name", $rt_wrapFunction0(oncia_Yield_name), "$warnOnAccessToRestrictedVariableInOrderByOrWhere", $rt_wrapFunction2(oncia_Yield_warnOnAccessToRestrictedVariableInOrderByOrWhere), "$productPrefix", $rt_wrapFunction0(oncia_Yield_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Yield_productArity), "$productElement", $rt_wrapFunction1(oncia_Yield_productElement), "$productIterator", $rt_wrapFunction0(oncia_Yield_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Yield_hashCode), "$toString", $rt_wrapFunction0(oncia_Yield_toString), "$equals", $rt_wrapFunction1(oncia_Yield_equals), "$dup", $rt_wrapFunction1(oncia_Yield_dup)], oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_0_apply)], -oncia_ShowPrivilegeCommands, "ShowPrivilegeCommands", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_defaultColumnNames), +oncia_ShowPrivilegeCommands, "ShowPrivilegeCommands", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_yields), "$returns", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_withGraph), -"$semanticCheckFold", $rt_wrapFunction2(oncia_ShowPrivilegeCommands_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowPrivilegeCommands_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowPrivilegeCommands_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowPrivilegeCommands_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_folder), +"$semanticCheckFold", $rt_wrapFunction2(oncia_ShowPrivilegeCommands_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowPrivilegeCommands_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowPrivilegeCommands_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowPrivilegeCommands_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_yieldOrWhere), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_defaultColumnSet), "$position", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_position), "$name", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowPrivilegeCommands_toString), "$equals", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_equals), "$dup", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowPrivilegeCommands_withGraph0)], oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_1_apply)], -oncia_ShowSupportedPrivilegeCommand, "ShowSupportedPrivilegeCommand", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_defaultColumnNames), +oncia_ShowSupportedPrivilegeCommand, "ShowSupportedPrivilegeCommand", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_yields), "$returns", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_useGraph), "$withGraph", -$rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowSupportedPrivilegeCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowSupportedPrivilegeCommand_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowSupportedPrivilegeCommand_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowSupportedPrivilegeCommand_error), +$rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowSupportedPrivilegeCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowSupportedPrivilegeCommand_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowSupportedPrivilegeCommand_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowSupportedPrivilegeCommand_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_yieldOrWhere), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_defaultColumnSet), "$position", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_position), "$name", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowSupportedPrivilegeCommand_toString), "$equals", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_equals), "$dup", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowSupportedPrivilegeCommand_withGraph0)], oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_2_apply)], -oncia_ShowDatabase, "ShowDatabase", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowDatabase_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowDatabase_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowDatabase_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowDatabase_yields), +oncia_ShowDatabase, "ShowDatabase", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowDatabase_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowDatabase_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowDatabase_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowDatabase_yields), "$returns", $rt_wrapFunction0(oncia_ShowDatabase_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ShowDatabase_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowDatabase_semanticCheckFold), "$declareVariable", -$rt_wrapFunction2(oncia_ShowDatabase_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowDatabase_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowDatabase_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowDatabase_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowDatabase_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), +$rt_wrapFunction2(oncia_ShowDatabase_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowDatabase_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowDatabase_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowDatabase_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowDatabase_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowDatabase_yieldOrWhere), "$position", $rt_wrapFunction0(oncia_ShowDatabase_position), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowDatabase_defaultColumnSet), "$name", $rt_wrapFunction0(oncia_ShowDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowDatabase_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowDatabase_toString), "$equals", $rt_wrapFunction1(oncia_ShowDatabase_equals), "$dup", $rt_wrapFunction1(oncia_ShowDatabase_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowDatabase_withGraph0)], oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_3_apply)], -oncia_ShowAliases, "ShowAliases", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowAliases_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowAliases_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowAliases_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowAliases_yields), +oncia_ShowAliases, "ShowAliases", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowAliases_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowAliases_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowAliases_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowAliases_yields), "$returns", $rt_wrapFunction0(oncia_ShowAliases_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowAliases_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowAliases_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ShowAliases_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowAliases_semanticCheckFold), "$declareVariable", -$rt_wrapFunction2(oncia_ShowAliases_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowAliases_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowAliases_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowAliases_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowAliases_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowAliases_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowAliases_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), +$rt_wrapFunction2(oncia_ShowAliases_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowAliases_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowAliases_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowAliases_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowAliases_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowAliases_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowAliases_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowAliases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowAliases_yieldOrWhere), "$position", $rt_wrapFunction0(oncia_ShowAliases_position), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowAliases_defaultColumnSet), "$name", $rt_wrapFunction0(oncia_ShowAliases_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowAliases_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowAliases_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowAliases_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowAliases_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowAliases_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowAliases_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowAliases_toString), "$equals", $rt_wrapFunction1(oncia_ShowAliases_equals), "$dup", $rt_wrapFunction1(oncia_ShowAliases_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowAliases_withGraph0)], oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_4_apply)], -oncia_ShowCurrentUser, "ShowCurrentUser", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowCurrentUser_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowCurrentUser_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowCurrentUser_yields), +oncia_ShowCurrentUser, "ShowCurrentUser", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowCurrentUser_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowCurrentUser_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowCurrentUser_yields), "$returns", $rt_wrapFunction0(oncia_ShowCurrentUser_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowCurrentUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowCurrentUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ShowCurrentUser_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowCurrentUser_semanticCheckFold), -"$declareVariable", $rt_wrapFunction2(oncia_ShowCurrentUser_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowCurrentUser_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowCurrentUser_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowCurrentUser_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowCurrentUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowCurrentUser_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", +"$declareVariable", $rt_wrapFunction2(oncia_ShowCurrentUser_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowCurrentUser_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowCurrentUser_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowCurrentUser_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowCurrentUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowCurrentUser_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowCurrentUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowCurrentUser_yieldOrWhere), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowCurrentUser_defaultColumnSet), "$position", $rt_wrapFunction0(oncia_ShowCurrentUser_position), "$name", $rt_wrapFunction0(oncia_ShowCurrentUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowCurrentUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowCurrentUser_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowCurrentUser_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowCurrentUser_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowCurrentUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowCurrentUser_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowCurrentUser_toString), "$equals", $rt_wrapFunction1(oncia_ShowCurrentUser_equals), "$dup", $rt_wrapFunction1(oncia_ShowCurrentUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowCurrentUser_withGraph0)], oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_5_apply)], -oncia_ShowUsers, "ShowUsers", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowUsers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowUsers_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowUsers_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowUsers_yields), +oncia_ShowUsers, "ShowUsers", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowUsers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowUsers_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowUsers_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowUsers_yields), "$returns", $rt_wrapFunction0(oncia_ShowUsers_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowUsers_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowUsers_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ShowUsers_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowUsers_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowUsers_declareVariable), -"$recordCurrentScope", $rt_wrapFunction1(oncia_ShowUsers_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowUsers_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowUsers_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowUsers_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowUsers_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowUsers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), +"$recordCurrentScope", $rt_wrapFunction1(oncia_ShowUsers_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowUsers_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowUsers_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowUsers_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowUsers_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowUsers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowUsers_yieldOrWhere), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowUsers_defaultColumnSet), "$position", $rt_wrapFunction0(oncia_ShowUsers_position), "$name", $rt_wrapFunction0(oncia_ShowUsers_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowUsers_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowUsers_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowUsers_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowUsers_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowUsers_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowUsers_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowUsers_toString), "$equals", $rt_wrapFunction1(oncia_ShowUsers_equals), "$dup", $rt_wrapFunction1(oncia_ShowUsers_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowUsers_withGraph0)], oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_6_apply)], -oncia_ShowRoles, "ShowRoles", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowRoles_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowRoles_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowRoles_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowRoles_yields), +oncia_ShowRoles, "ShowRoles", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowRoles_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowRoles_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowRoles_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowRoles_yields), "$returns", $rt_wrapFunction0(oncia_ShowRoles_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowRoles_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowRoles_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ShowRoles_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowRoles_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowRoles_declareVariable), -"$recordCurrentScope", $rt_wrapFunction1(oncia_ShowRoles_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowRoles_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowRoles_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowRoles_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowRoles_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowRoles_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), +"$recordCurrentScope", $rt_wrapFunction1(oncia_ShowRoles_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowRoles_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowRoles_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowRoles_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowRoles_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowRoles_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowRoles_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowRoles_yieldOrWhere), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowRoles_defaultColumnSet), "$position", $rt_wrapFunction0(oncia_ShowRoles_position), "$name", $rt_wrapFunction0(oncia_ShowRoles_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowRoles_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowRoles_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowRoles_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowRoles_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowRoles_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowRoles_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowRoles_toString), "$equals", -$rt_wrapFunction1(oncia_ShowRoles_equals), "$dup", $rt_wrapFunction1(oncia_ShowRoles_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowRoles_withGraph0)]]); -$rt_metadata([oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7_apply)], -oncia_ShowServers, "ShowServers", 36, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowServers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowServers_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowServers_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowServers_yields), +$rt_wrapFunction1(oncia_ShowRoles_equals), "$dup", $rt_wrapFunction1(oncia_ShowRoles_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowRoles_withGraph0)], +oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_7_apply)], +oncia_ShowServers, "ShowServers", 35, jl_Object, [oncia_ReadAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck", $rt_wrapFunction0(oncia_ShowServers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$$super$semanticCheck), "$returnColumnNames", $rt_wrapFunction0(oncia_ShowServers_returnColumnNames), "$defaultColumnNames", $rt_wrapFunction0(oncia_ShowServers_defaultColumnNames), "$yields", $rt_wrapFunction0(oncia_ShowServers_yields), "$returns", $rt_wrapFunction0(oncia_ShowServers_returns), "$returnColumns", $rt_wrapFunction0(oncia_ShowServers_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ShowServers_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ShowServers_withGraph), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowServers_semanticCheckFold), "$declareVariable", -$rt_wrapFunction2(oncia_ShowServers_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowServers_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowServers_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_ShowServers_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowServers_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowServers_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowServers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), +$rt_wrapFunction2(oncia_ShowServers_declareVariable), "$recordCurrentScope", $rt_wrapFunction1(oncia_ShowServers_recordCurrentScope), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ShowServers_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_ShowServers_error), "$foldedOver", $rt_wrapFunction0(oncia_ShowServers_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowServers_folder), "$org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ShowServers_org$neo4j$cypher$internal$ast$ReadAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ShowServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$yieldOrWhere", $rt_wrapFunction0(oncia_ShowServers_yieldOrWhere), "$position", $rt_wrapFunction0(oncia_ShowServers_position), "$defaultColumnSet", $rt_wrapFunction0(oncia_ShowServers_defaultColumnSet), "$name", $rt_wrapFunction0(oncia_ShowServers_name), "$semanticCheck", $rt_wrapFunction0(oncia_ShowServers_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowServers_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowServers_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowServers_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowServers_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowServers_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowServers_toString), "$equals", $rt_wrapFunction1(oncia_ShowServers_equals), "$dup", $rt_wrapFunction1(oncia_ShowServers_dup), "$withGraph0", $rt_wrapFunction1(oncia_ShowServers_withGraph0)], oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$apply$lambda$_34_8_apply)], -oncipvaf_Cypher25AstParser, 0, jl_Object, [oncipa_AntlrAstParser], 4, 3, 0, 0, ["$exceptionFactory", $rt_wrapFunction0(oncipvaf_Cypher25AstParser_exceptionFactory), "$statements", $rt_wrapFunction0(oncipvaf_Cypher25AstParser_statements), "$syntaxException", $rt_wrapFunction2(oncipvaf_Cypher25AstParser_syntaxException), "$newLexer", $rt_wrapFunction1(oncipvaf_Cypher25AstParser_newLexer), "$errorStrategyConf", $rt_wrapFunction0(oncipvaf_Cypher25AstParser_errorStrategyConf), "$newParser", $rt_wrapFunction1(oncipvaf_Cypher25AstParser_newParser)], +oncie_PatternPart, "PatternPart", 62, jl_Object, [onciu_ASTNode], 1, 3, [0,0,0], 0, ["$dup0", $rt_wrapFunction1(oncie_PatternPart_dup), "$foldedOver", $rt_wrapFunction0(oncie_PatternPart_foldedOver), "$folder", $rt_wrapFunction0(oncie_PatternPart_folder), "$dup", $rt_wrapFunction1(oncie_PatternPart_dup0)], +oncie_HasMappableExpressions, 0, jl_Object, [onciu_Foldable], 3, 3, 0, 0, 0, +oncie_NonPrefixedPatternPart, 0, jl_Object, [oncie_HasMappableExpressions], 3, 3, 0, 0, 0, +oncie_AnonymousPatternPart, 0, jl_Object, [oncie_NonPrefixedPatternPart], 3, 3, 0, 0, 0, +oncie_ShortestPathsPatternPart, "ShortestPathsPatternPart", 62, oncie_PatternPart, [oncie_AnonymousPatternPart, ji_Serializable], 0, 3, [0,0,0], 0, ["$allVariables", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_allVariables), "$element", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_element), "$position", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_position), "$isBounded", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_productArity), "$productElement", $rt_wrapFunction1(oncie_ShortestPathsPatternPart_productElement), "$productIterator", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_hashCode), "$toString", $rt_wrapFunction0(oncie_ShortestPathsPatternPart_toString), "$equals", $rt_wrapFunction1(oncie_ShortestPathsPatternPart_equals), "$mapExpressions", $rt_wrapFunction1(oncie_ShortestPathsPatternPart_mapExpressions)], +oncie_PatternElement, 0, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions], 1, 3, 0, 0, ["$foldedOver", $rt_wrapFunction0(oncie_PatternElement_foldedOver), "$dup", $rt_wrapFunction1(oncie_PatternElement_dup)], +oncie_PathFactor, "PathFactor", 62, jl_Object, [], 3, 3, [0,0,0], 0, 0, +oncie_SimplePattern, 0, oncie_PatternElement, [oncie_PathFactor], 1, 3, 0, 0, 0, +oncie_RelationshipChain, "RelationshipChain", 62, oncie_SimplePattern, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_RelationshipChain_position), "$allVariables", $rt_wrapFunction0(oncie_RelationshipChain_allVariables), "$isBounded", $rt_wrapFunction0(oncie_RelationshipChain_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_RelationshipChain_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RelationshipChain_productArity), "$productElement", $rt_wrapFunction1(oncie_RelationshipChain_productElement), +"$productIterator", $rt_wrapFunction0(oncie_RelationshipChain_productIterator), "$hashCode", $rt_wrapFunction0(oncie_RelationshipChain_hashCode), "$toString", $rt_wrapFunction0(oncie_RelationshipChain_toString), "$equals", $rt_wrapFunction1(oncie_RelationshipChain_equals), "$mapExpressions", $rt_wrapFunction1(oncie_RelationshipChain_mapExpressions)], +oncie_PatternAtom, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, +oncie_NodePattern, "NodePattern", 62, oncie_SimplePattern, [oncie_PatternAtom, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_NodePattern_position), "$allVariables", $rt_wrapFunction0(oncie_NodePattern_allVariables), "$isBounded", $rt_wrapFunction0(oncie_NodePattern_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_NodePattern_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NodePattern_productArity), "$productElement", $rt_wrapFunction1(oncie_NodePattern_productElement), +"$productIterator", $rt_wrapFunction0(oncie_NodePattern_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NodePattern_hashCode), "$toString", $rt_wrapFunction0(oncie_NodePattern_toString), "$equals", $rt_wrapFunction1(oncie_NodePattern_equals), "$mapExpressions", $rt_wrapFunction1(oncie_NodePattern_mapExpressions0)], +oncie_Literal, "Literal", 62, jl_Object, [], 3, 3, [0,0,0], 0, 0, +oncie_NumberLiteral, 0, jl_Object, [oncie_Literal], 3, 3, 0, 0, 0, +oncie_IntegerLiteral, 0, jl_Object, [oncie_NumberLiteral], 3, 3, 0, 0, 0, +oncie_DecimalIntegerLiteral, 0, oncie_Expression, [oncie_IntegerLiteral], 1, 3, 0, 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_DecimalIntegerLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_DecimalIntegerLiteral_isConstantForQuery), "$value1", $rt_wrapFunction0(oncie_DecimalIntegerLiteral_value)], +oncie_UnsignedIntegerLiteral, 0, jl_Object, [oncie_IntegerLiteral], 3, 3, 0, 0, 0, +oncie_UnsignedDecimalIntegerLiteral, "UnsignedDecimalIntegerLiteral", 62, oncie_DecimalIntegerLiteral, [oncie_UnsignedIntegerLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$stringVal", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_UnsignedDecimalIntegerLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral_toString), "$equals", $rt_wrapFunction1(oncie_UnsignedDecimalIntegerLiteral_equals)], +oncie_Range, "Range", 62, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_Range_position), "$productPrefix", $rt_wrapFunction0(oncie_Range_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Range_productArity), "$productElement", $rt_wrapFunction1(oncie_Range_productElement), "$productIterator", $rt_wrapFunction0(oncie_Range_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Range_hashCode), "$toString", $rt_wrapFunction0(oncie_Range_toString), +"$equals", $rt_wrapFunction1(oncie_Range_equals), "$dup", $rt_wrapFunction1(oncie_Range_dup)], +scm_HashMap$$anon$5, "HashMap$$anon$5", 21, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(scm_HashMap$$anon$5_hashCode), "$extract0", $rt_wrapFunction1(scm_HashMap$$anon$5_extract)], +oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$withIsNullable$lambda$_30_0_apply)], +oncipvaf_Cypher5AstParser$statements$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5AstParser$statements$lambda$_2_0_apply)], +oncipvaf_Cypher25AstParser$statements$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25AstParser$statements$lambda$_2_0_apply)], +oncie_Variable, "Variable", 62, oncie_LogicalVariable, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_Variable_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Variable_asCanonicalStringVal), "$productPrefix", $rt_wrapFunction0(oncie_Variable_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Variable_productArity), "$productElement", $rt_wrapFunction1(oncie_Variable_productElement), "$productIterator", $rt_wrapFunction0(oncie_Variable_productIterator), "$hashCode", +$rt_wrapFunction0(oncie_Variable_hashCode), "$toString", $rt_wrapFunction0(oncie_Variable_toString), "$equals", $rt_wrapFunction1(oncie_Variable_equals), "$dup", $rt_wrapFunction1(oncie_Variable_dup0), "$dup0", $rt_wrapFunction1(oncie_Variable_dup1)], +oncie_Variable$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncie_Variable$_$callClinit, 0, +oncie_BooleanExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_OperatorExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_RightUnaryOperatorExpression, 0, jl_Object, [oncie_OperatorExpression], 3, 3, 0, 0, 0, +oncia_IsTyped, "IsTyped", 35, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncia_IsTyped_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncia_IsTyped_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncia_IsTyped_lhs), "$position", $rt_wrapFunction0(oncia_IsTyped_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncia_IsTyped_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncia_IsTyped_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_IsTyped_productArity), "$productElement", $rt_wrapFunction1(oncia_IsTyped_productElement), "$productIterator", $rt_wrapFunction0(oncia_IsTyped_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IsTyped_hashCode), "$toString", $rt_wrapFunction0(oncia_IsTyped_toString), "$equals", $rt_wrapFunction1(oncia_IsTyped_equals), "$dup", $rt_wrapFunction1(oncia_IsTyped_dup1), "$dup0", $rt_wrapFunction1(oncia_IsTyped_dup0)]]); +$rt_metadata([oncia_IsTyped$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncil_LabelExpressionPredicate, "LabelExpressionPredicate", 61, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncil_LabelExpressionPredicate_position), "$isConstantForQuery", $rt_wrapFunction0(oncil_LabelExpressionPredicate_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpressionPredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpressionPredicate_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpressionPredicate_productElement), +"$productIterator", $rt_wrapFunction0(oncil_LabelExpressionPredicate_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpressionPredicate_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpressionPredicate_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpressionPredicate_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpressionPredicate_dup0), "$dup0", $rt_wrapFunction1(oncil_LabelExpressionPredicate_dup1)], +oncil_LabelExpressionPredicate$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_insertWithBetweenOptionalMatchAndMatch$$anonfun$1$$anonfun$2_applyOrElse)], -oncia_CallClause, 0, jl_Object, [oncia_Clause], 1, 3, 0, 0, ["$semanticCheck", $rt_wrapFunction0(oncia_CallClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_CallClause_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_CallClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_CallClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_CallClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_CallClause_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", +oncia_CallClause, 0, jl_Object, [oncia_Clause], 1, 3, 0, 0, ["$semanticCheck", $rt_wrapFunction0(oncia_CallClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_CallClause_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_CallClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_CallClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_CallClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_CallClause_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_CallClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_CallClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_CallClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$name", $rt_wrapFunction0(oncia_CallClause_name), "$dup", $rt_wrapFunction1(oncia_CallClause_dup)], -oncia_UnresolvedCall, "UnresolvedCall", 36, oncia_CallClause, [ji_Serializable], 0, 3, [0,0,0], 0, ["$yieldAll", $rt_wrapFunction0(oncia_UnresolvedCall_yieldAll), "$position", $rt_wrapFunction0(oncia_UnresolvedCall_position), "$returnVariables", $rt_wrapFunction0(oncia_UnresolvedCall_returnVariables), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_UnresolvedCall_clauseSpecificSemanticCheck), "$containsNoUpdates", $rt_wrapFunction0(oncia_UnresolvedCall_containsNoUpdates), "$productPrefix", $rt_wrapFunction0(oncia_UnresolvedCall_productPrefix), +oncia_UnresolvedCall, "UnresolvedCall", 35, oncia_CallClause, [ji_Serializable], 0, 3, [0,0,0], 0, ["$yieldAll", $rt_wrapFunction0(oncia_UnresolvedCall_yieldAll), "$position", $rt_wrapFunction0(oncia_UnresolvedCall_position), "$returnVariables", $rt_wrapFunction0(oncia_UnresolvedCall_returnVariables), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_UnresolvedCall_clauseSpecificSemanticCheck), "$containsNoUpdates", $rt_wrapFunction0(oncia_UnresolvedCall_containsNoUpdates), "$productPrefix", $rt_wrapFunction0(oncia_UnresolvedCall_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UnresolvedCall_productArity), "$productElement", $rt_wrapFunction1(oncia_UnresolvedCall_productElement), "$productIterator", $rt_wrapFunction0(oncia_UnresolvedCall_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UnresolvedCall_hashCode), "$toString", $rt_wrapFunction0(oncia_UnresolvedCall_toString), "$equals", $rt_wrapFunction1(oncia_UnresolvedCall_equals)], oncirr_wrapOptionalCallProcedure$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_wrapOptionalCallProcedure$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncia_Return$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_Return$_$callClinit, 0, +oncia_Return$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, oncia_ReturnItems$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_ReturnItems$_$callClinit, 0, -oncia_SubqueryCall, "SubqueryCall", 36, jl_Object, [oncia_HorizonClause], 3, 3, [0,0,0], 0, 0, -oncia_ScopeClauseSubqueryCall, "ScopeClauseSubqueryCall", 36, jl_Object, [oncia_SubqueryCall, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_clauseSpecificSemanticCheck), "$reportParams", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_reportParams), "$semanticCheckContinuation", $rt_wrapFunction2(oncia_ScopeClauseSubqueryCall_semanticCheckContinuation), "$returnVariables", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_returnVariables), -"$semanticCheck", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_shouldRunQPPChecks), "$declareVariable", $rt_wrapFunction2(oncia_ScopeClauseSubqueryCall_declareVariable), "$error2", $rt_wrapFunction2(oncia_ScopeClauseSubqueryCall_error), "$warn", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall_warn), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_foldedOver), +oncia_SubqueryCall, "SubqueryCall", 35, jl_Object, [oncia_HorizonClause], 3, 3, [0,0,0], 0, 0, +oncia_ScopeClauseSubqueryCall, "ScopeClauseSubqueryCall", 35, jl_Object, [oncia_SubqueryCall, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_clauseSpecificSemanticCheck), "$reportParams", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_reportParams), "$semanticCheckContinuation", $rt_wrapFunction2(oncia_ScopeClauseSubqueryCall_semanticCheckContinuation), "$returnVariables", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_returnVariables), +"$semanticCheck", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_shouldRunQPPChecks), "$declareVariable", $rt_wrapFunction2(oncia_ScopeClauseSubqueryCall_declareVariable), "$error4", $rt_wrapFunction2(oncia_ScopeClauseSubqueryCall_error), "$warn", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall_warn), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_foldedOver), "$folder", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$innerQuery", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_innerQuery), "$inTransactionsParameters", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_inTransactionsParameters), "$optional", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_optional), "$position", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_position), "$checkSubquery", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_checkSubquery), "$productPrefix", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_productArity), "$productElement", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall_productElement), "$productIterator", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_hashCode), "$toString", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall_toString), "$equals", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall_equals), "$dup", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall_dup)], oncirr_expandCallWhere$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandCallWhere$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncia_Where, "Where", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$foldedOver", $rt_wrapFunction0(oncia_Where_foldedOver), "$position", $rt_wrapFunction0(oncia_Where_position), "$semanticCheck", $rt_wrapFunction0(oncia_Where_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Where_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Where_productArity), "$productElement", $rt_wrapFunction1(oncia_Where_productElement), +oncia_Where, "Where", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$foldedOver", $rt_wrapFunction0(oncia_Where_foldedOver), "$position", $rt_wrapFunction0(oncia_Where_position), "$semanticCheck", $rt_wrapFunction0(oncia_Where_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Where_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Where_productArity), "$productElement", $rt_wrapFunction1(oncia_Where_productElement), "$productIterator", $rt_wrapFunction0(oncia_Where_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Where_hashCode), "$toString", $rt_wrapFunction0(oncia_Where_toString), "$equals", $rt_wrapFunction1(oncia_Where_equals), "$dup", $rt_wrapFunction1(oncia_Where_dup)], oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_0_apply)], oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_1_apply)], @@ -360931,127 +288548,102 @@ oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_5, 0, jl_Object, [s_Func oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_6_apply)], oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_7_apply)], oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandShowWhere$$anonfun$1$applyOrElse$lambda$_0_8_apply)], -oncie_BooleanExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_OperatorExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, oncie_BinaryOperatorExpression, 0, jl_Object, [oncie_OperatorExpression], 3, 3, 0, 0, 0, -oncie_And, "And", 64, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_And_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_And_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_And_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_And_lhs), "$rhs0", $rt_wrapFunction0(oncie_And_rhs), "$position", $rt_wrapFunction0(oncie_And_position), "$productPrefix", +oncie_And, "And", 62, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_And_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_And_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_And_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_And_lhs), "$rhs", $rt_wrapFunction0(oncie_And_rhs), "$position", $rt_wrapFunction0(oncie_And_position), "$productPrefix", $rt_wrapFunction0(oncie_And_productPrefix), "$productArity", $rt_wrapFunction0(oncie_And_productArity), "$productElement", $rt_wrapFunction1(oncie_And_productElement), "$productIterator", $rt_wrapFunction0(oncie_And_productIterator), "$hashCode", $rt_wrapFunction0(oncie_And_hashCode), "$toString", $rt_wrapFunction0(oncie_And_toString), "$equals", $rt_wrapFunction1(oncie_And_equals)], oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_0_apply)], oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_1_apply)], oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_2_apply)], oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_3_apply)], -oncie_Or, "Or", 64, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Or_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Or_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Or_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_Or_lhs), "$rhs0", $rt_wrapFunction0(oncie_Or_rhs), "$position", $rt_wrapFunction0(oncie_Or_position), "$productPrefix", -$rt_wrapFunction0(oncie_Or_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Or_productArity), "$productElement", $rt_wrapFunction1(oncie_Or_productElement), "$productIterator", $rt_wrapFunction0(oncie_Or_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Or_hashCode), "$toString", $rt_wrapFunction0(oncie_Or_toString), "$equals", $rt_wrapFunction1(oncie_Or_equals)], +oncie_Or, "Or", 62, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Or_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Or_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Or_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_Or_lhs), "$rhs", $rt_wrapFunction0(oncie_Or_rhs), "$position", $rt_wrapFunction0(oncie_Or_position), "$productPrefix", $rt_wrapFunction0(oncie_Or_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_Or_productArity), "$productElement", $rt_wrapFunction1(oncie_Or_productElement), "$productIterator", $rt_wrapFunction0(oncie_Or_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Or_hashCode), "$toString", $rt_wrapFunction0(oncie_Or_toString), "$equals", $rt_wrapFunction1(oncie_Or_equals)], oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_4_apply)], oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_5, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_5_apply)], oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_6, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_6_apply)], oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_7, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$1$applyOrElse$lambda$_0_7_apply)], -oncie_FunctionInvocation, "FunctionInvocation", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_FunctionInvocation_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_FunctionInvocation_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_FunctionInvocation_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_FunctionInvocation_productPrefix), "$productArity", $rt_wrapFunction0(oncie_FunctionInvocation_productArity), "$productElement", +oncie_FunctionInvocation, "FunctionInvocation", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_FunctionInvocation_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_FunctionInvocation_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_FunctionInvocation_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_FunctionInvocation_productPrefix), "$productArity", $rt_wrapFunction0(oncie_FunctionInvocation_productArity), "$productElement", $rt_wrapFunction1(oncie_FunctionInvocation_productElement), "$productIterator", $rt_wrapFunction0(oncie_FunctionInvocation_productIterator), "$hashCode", $rt_wrapFunction0(oncie_FunctionInvocation_hashCode), "$toString", $rt_wrapFunction0(oncie_FunctionInvocation_toString), "$equals", $rt_wrapFunction1(oncie_FunctionInvocation_equals)], oncief_FunctionWithName, 0, jl_Object, [], 3, 3, 0, 0, 0, oncie_TypeSignatures, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncief_Function, "Function", 65, jl_Object, [oncief_FunctionWithName, oncie_TypeSignatures], 1, 3, [0,0,0], 0, ["$signatures", $rt_wrapFunction0(oncief_Function_signatures)], -oncief_Timestamp$, "Timestamp$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Timestamp$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Timestamp$_name), "$productArity", $rt_wrapFunction0(oncief_Timestamp$_productArity), "$productElement", $rt_wrapFunction1(oncief_Timestamp$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Timestamp$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Timestamp$_hashCode), "$toString", $rt_wrapFunction0(oncief_Timestamp$_toString), "$signatures", +oncief_Function, "Function", 63, jl_Object, [oncief_FunctionWithName, oncie_TypeSignatures], 1, 3, [0,0,0], 0, ["$signatures", $rt_wrapFunction0(oncief_Function_signatures)], +oncief_Timestamp$, "Timestamp$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Timestamp$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Timestamp$_name), "$productArity", $rt_wrapFunction0(oncief_Timestamp$_productArity), "$productElement", $rt_wrapFunction1(oncief_Timestamp$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Timestamp$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Timestamp$_hashCode), "$toString", $rt_wrapFunction0(oncief_Timestamp$_toString), "$signatures", $rt_wrapFunction0(oncief_Timestamp$_signatures0)], -oncie_FunctionName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncie_FunctionName$_$callClinit, 0, +oncie_FunctionName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, oncie_LogicalProperty, 0, oncie_Expression, [], 1, 3, 0, 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_LogicalProperty_isConstantForQuery)], -oncie_Property, "Property", 64, oncie_LogicalProperty, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_Property_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Property_asCanonicalStringVal), "$productPrefix", $rt_wrapFunction0(oncie_Property_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Property_productArity), "$productElement", $rt_wrapFunction1(oncie_Property_productElement), "$productIterator", $rt_wrapFunction0(oncie_Property_productIterator), "$hashCode", +oncie_Property, "Property", 62, oncie_LogicalProperty, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_Property_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Property_asCanonicalStringVal), "$productPrefix", $rt_wrapFunction0(oncie_Property_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Property_productArity), "$productElement", $rt_wrapFunction1(oncie_Property_productElement), "$productIterator", $rt_wrapFunction0(oncie_Property_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Property_hashCode), "$toString", $rt_wrapFunction0(oncie_Property_toString), "$equals", $rt_wrapFunction1(oncie_Property_equals)], oncie_SymbolicName, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, -oncie_PropertyKeyName, "PropertyKeyName", 64, jl_Object, [oncie_SymbolicName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_PropertyKeyName_name), "$position", $rt_wrapFunction0(oncie_PropertyKeyName_position), "$productPrefix", $rt_wrapFunction0(oncie_PropertyKeyName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PropertyKeyName_productArity), "$productElement", $rt_wrapFunction1(oncie_PropertyKeyName_productElement), "$productIterator", $rt_wrapFunction0(oncie_PropertyKeyName_productIterator), +oncie_PropertyKeyName, "PropertyKeyName", 62, jl_Object, [oncie_SymbolicName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_PropertyKeyName_name), "$position", $rt_wrapFunction0(oncie_PropertyKeyName_position), "$productPrefix", $rt_wrapFunction0(oncie_PropertyKeyName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PropertyKeyName_productArity), "$productElement", $rt_wrapFunction1(oncie_PropertyKeyName_productElement), "$productIterator", $rt_wrapFunction0(oncie_PropertyKeyName_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PropertyKeyName_hashCode), "$toString", $rt_wrapFunction0(oncie_PropertyKeyName_toString), "$equals", $rt_wrapFunction1(oncie_PropertyKeyName_equals), "$dup", $rt_wrapFunction1(oncie_PropertyKeyName_dup)], -sc_SeqFactory$UnapplySeqWrapper$, 0, jl_Object, [], 0, 3, 0, sc_SeqFactory$UnapplySeqWrapper$_$callClinit, 0, +sc_SeqFactory$UnapplySeqWrapper$, 0, jl_Object, [], 0, 3, 0, 0, 0, sc_SeqFactory$UnapplySeqWrapper, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncief_NullIf$, "NullIf$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_NullIf$_$callClinit, ["$name", $rt_wrapFunction0(oncief_NullIf$_name), "$productArity", $rt_wrapFunction0(oncief_NullIf$_productArity), "$productElement", $rt_wrapFunction1(oncief_NullIf$_productElement), "$productIterator", $rt_wrapFunction0(oncief_NullIf$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_NullIf$_hashCode), "$toString", $rt_wrapFunction0(oncief_NullIf$_toString), "$signatures", $rt_wrapFunction0(oncief_NullIf$_signatures0)], -oncie_ChainableBinaryOperatorExpression, 0, jl_Object, [oncie_BinaryOperatorExpression], 3, 3, 0, 0, 0]); -$rt_metadata([oncie_Equals, "Equals", 64, oncie_Expression, [oncie_BooleanExpression, oncie_ChainableBinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Equals_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Equals_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Equals_lhs), "$rhs0", $rt_wrapFunction0(oncie_Equals_rhs), "$position", $rt_wrapFunction0(oncie_Equals_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Equals_canonicalOperatorSymbol), +oncief_NullIf$, "NullIf$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_NullIf$_$callClinit, ["$name", $rt_wrapFunction0(oncief_NullIf$_name), "$productArity", $rt_wrapFunction0(oncief_NullIf$_productArity), "$productElement", $rt_wrapFunction1(oncief_NullIf$_productElement), "$productIterator", $rt_wrapFunction0(oncief_NullIf$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_NullIf$_hashCode), "$toString", $rt_wrapFunction0(oncief_NullIf$_toString), "$signatures", $rt_wrapFunction0(oncief_NullIf$_signatures0)], +oncie_ChainableBinaryOperatorExpression, 0, jl_Object, [oncie_BinaryOperatorExpression], 3, 3, 0, 0, 0, +oncie_Equals, "Equals", 62, oncie_Expression, [oncie_BooleanExpression, oncie_ChainableBinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Equals_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Equals_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Equals_lhs), "$rhs", $rt_wrapFunction0(oncie_Equals_rhs), "$position", $rt_wrapFunction0(oncie_Equals_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Equals_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_Equals_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Equals_productArity), "$productElement", $rt_wrapFunction1(oncie_Equals_productElement), "$productIterator", $rt_wrapFunction0(oncie_Equals_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Equals_hashCode), "$toString", $rt_wrapFunction0(oncie_Equals_toString), "$equals", $rt_wrapFunction1(oncie_Equals_equals)], -oncie_Null, "Null", 64, oncie_Expression, [oncie_Literal, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_Null_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_Null_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Null_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_Null_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_Null_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Null_productArity), "$productElement", +oncie_Null, "Null", 62, oncie_Expression, [oncie_Literal, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_Null_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_Null_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Null_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_Null_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_Null_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Null_productArity), "$productElement", $rt_wrapFunction1(oncie_Null_productElement), "$productIterator", $rt_wrapFunction0(oncie_Null_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Null_hashCode), "$toString", $rt_wrapFunction0(oncie_Null_toString), "$equals", $rt_wrapFunction1(oncie_Null_equals)], -oncie_CaseExpression, "CaseExpression", 64, oncie_Expression, [oncie_ScopeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$dependencies", $rt_wrapFunction0(oncie_CaseExpression_dependencies), "$position", $rt_wrapFunction0(oncie_CaseExpression_position), "$introducedVariables", $rt_wrapFunction0(oncie_CaseExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_CaseExpression_scopeDependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_CaseExpression_isConstantForQuery), "$productPrefix", -$rt_wrapFunction0(oncie_CaseExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_CaseExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_CaseExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_CaseExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_CaseExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_CaseExpression_toString), "$equals", $rt_wrapFunction1(oncie_CaseExpression_equals)], -oncifp_ResolvedCall, "ResolvedCall", 67, oncia_CallClause, [ji_Serializable], 0, 3, [0,0,0], 0, ["$yieldAll", $rt_wrapFunction0(oncifp_ResolvedCall_yieldAll), "$position", $rt_wrapFunction0(oncifp_ResolvedCall_position), "$returnVariables", $rt_wrapFunction0(oncifp_ResolvedCall_returnVariables), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncifp_ResolvedCall_clauseSpecificSemanticCheck), "$containsNoUpdates", $rt_wrapFunction0(oncifp_ResolvedCall_containsNoUpdates), "$productPrefix", $rt_wrapFunction0(oncifp_ResolvedCall_productPrefix), +oncie_CaseExpression, "CaseExpression", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_CaseExpression_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_CaseExpression_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_CaseExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_CaseExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_CaseExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_CaseExpression_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_CaseExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_CaseExpression_toString), "$equals", $rt_wrapFunction1(oncie_CaseExpression_equals)]]); +$rt_metadata([oncia_TopLevelBraces, "TopLevelBraces", 35, jl_Object, [oncia_UnionArgument, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_TopLevelBraces_returnColumns), "$foldedOver", $rt_wrapFunction0(oncia_TopLevelBraces_foldedOver), "$folder", $rt_wrapFunction0(oncia_TopLevelBraces_folder), "$position", $rt_wrapFunction0(oncia_TopLevelBraces_position), "$getQuery", $rt_wrapFunction1(oncia_TopLevelBraces_getQuery), "$getSingleQuery", $rt_wrapFunction0(oncia_TopLevelBraces_getSingleQuery), +"$containsUpdates", $rt_wrapFunction0(oncia_TopLevelBraces_containsUpdates), "$returnVariables", $rt_wrapFunction0(oncia_TopLevelBraces_returnVariables), "$finalScope", $rt_wrapFunction1(oncia_TopLevelBraces_finalScope), "$checkImportingWith", $rt_wrapFunction0(oncia_TopLevelBraces_checkImportingWith), "$semanticCheckInSubqueryContext", $rt_wrapFunction2(oncia_TopLevelBraces_semanticCheckInSubqueryContext), "$semanticCheckImportingWithSubQueryContext", $rt_wrapFunction1(oncia_TopLevelBraces_semanticCheckImportingWithSubQueryContext), +"$isCorrelated", $rt_wrapFunction0(oncia_TopLevelBraces_isCorrelated), "$isReturning", $rt_wrapFunction0(oncia_TopLevelBraces_isReturning), "$getReturns", $rt_wrapFunction0(oncia_TopLevelBraces_getReturns), "$endsWithFinish", $rt_wrapFunction0(oncia_TopLevelBraces_endsWithFinish), "$importColumns", $rt_wrapFunction0(oncia_TopLevelBraces_importColumns), "$semanticCheckInSubqueryExpressionContext", $rt_wrapFunction1(oncia_TopLevelBraces_semanticCheckInSubqueryExpressionContext), "$mapEachSingleQuery", $rt_wrapFunction1(oncia_TopLevelBraces_mapEachSingleQuery), +"$semanticCheck", $rt_wrapFunction0(oncia_TopLevelBraces_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_TopLevelBraces_productPrefix), "$productArity", $rt_wrapFunction0(oncia_TopLevelBraces_productArity), "$productElement", $rt_wrapFunction1(oncia_TopLevelBraces_productElement), "$productIterator", $rt_wrapFunction0(oncia_TopLevelBraces_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TopLevelBraces_hashCode), "$toString", $rt_wrapFunction0(oncia_TopLevelBraces_toString), "$equals", $rt_wrapFunction1(oncia_TopLevelBraces_equals), +"$dup", $rt_wrapFunction1(oncia_TopLevelBraces_dup)], +oncirr_unwrapTopLevelBraces$$anonfun$2$$anonfun$applyOrElse$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_unwrapTopLevelBraces$$anonfun$2$$anonfun$applyOrElse$1_applyOrElse)], +oncia_Union, 0, jl_Object, [oncia_Query], 3, 3, 0, 0, 0, +oncia_UnmappedUnion, 0, jl_Object, [oncia_Union], 3, 3, 0, 0, 0, +oncia_UnionDistinct, "UnionDistinct", 35, jl_Object, [oncia_UnmappedUnion, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup", $rt_wrapFunction1(oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup), "$unionMappings", $rt_wrapFunction0(oncia_UnionDistinct_unionMappings), "$checkColumnNamesAgree", $rt_wrapFunction0(oncia_UnionDistinct_checkColumnNamesAgree), "$getQuery", $rt_wrapFunction1(oncia_UnionDistinct_getQuery), "$returnVariables", $rt_wrapFunction0(oncia_UnionDistinct_returnVariables), +"$getReturns", $rt_wrapFunction0(oncia_UnionDistinct_getReturns), "$importColumns", $rt_wrapFunction0(oncia_UnionDistinct_importColumns), "$containsUpdates", $rt_wrapFunction0(oncia_UnionDistinct_containsUpdates), "$semanticCheck", $rt_wrapFunction0(oncia_UnionDistinct_semanticCheck), "$semanticCheckInSubqueryExpressionContext", $rt_wrapFunction1(oncia_UnionDistinct_semanticCheckInSubqueryExpressionContext), "$checkImportingWith", $rt_wrapFunction0(oncia_UnionDistinct_checkImportingWith), "$isCorrelated", $rt_wrapFunction0(oncia_UnionDistinct_isCorrelated), +"$isReturning", $rt_wrapFunction0(oncia_UnionDistinct_isReturning), "$endsWithFinish", $rt_wrapFunction0(oncia_UnionDistinct_endsWithFinish), "$semanticCheckInSubqueryContext", $rt_wrapFunction2(oncia_UnionDistinct_semanticCheckInSubqueryContext), "$semanticCheckImportingWithSubQueryContext", $rt_wrapFunction1(oncia_UnionDistinct_semanticCheckImportingWithSubQueryContext), "$finalScope", $rt_wrapFunction1(oncia_UnionDistinct_finalScope), "$returnColumns", $rt_wrapFunction0(oncia_UnionDistinct_returnColumns), +"$withScopedState", $rt_wrapFunction1(oncia_UnionDistinct_withScopedState), "$importValuesFromScope0", $rt_wrapFunction1(oncia_UnionDistinct_importValuesFromScope), "$error4", $rt_wrapFunction2(oncia_UnionDistinct_error), "$foldedOver", $rt_wrapFunction0(oncia_UnionDistinct_foldedOver), "$folder", $rt_wrapFunction0(oncia_UnionDistinct_folder), "$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings", $rt_wrapFunction0(oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings), "$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq", +$rt_wrapFunction1(oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq), "$lhs", $rt_wrapFunction0(oncia_UnionDistinct_lhs), "$rhs0", $rt_wrapFunction0(oncia_UnionDistinct_rhs), "$position", $rt_wrapFunction0(oncia_UnionDistinct_position), "$mapEachSingleQuery", $rt_wrapFunction1(oncia_UnionDistinct_mapEachSingleQuery), "$productPrefix", $rt_wrapFunction0(oncia_UnionDistinct_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UnionDistinct_productArity), "$productElement", +$rt_wrapFunction1(oncia_UnionDistinct_productElement), "$productIterator", $rt_wrapFunction0(oncia_UnionDistinct_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UnionDistinct_hashCode), "$toString", $rt_wrapFunction0(oncia_UnionDistinct_toString), "$equals", $rt_wrapFunction1(oncia_UnionDistinct_equals), "$dup", $rt_wrapFunction1(oncia_UnionDistinct_dup)], +oncia_UnionAll, "UnionAll", 35, jl_Object, [oncia_UnmappedUnion, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup", $rt_wrapFunction1(oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup), "$unionMappings", $rt_wrapFunction0(oncia_UnionAll_unionMappings), "$checkColumnNamesAgree", $rt_wrapFunction0(oncia_UnionAll_checkColumnNamesAgree), "$getQuery", $rt_wrapFunction1(oncia_UnionAll_getQuery), "$returnVariables", $rt_wrapFunction0(oncia_UnionAll_returnVariables), +"$getReturns", $rt_wrapFunction0(oncia_UnionAll_getReturns), "$importColumns", $rt_wrapFunction0(oncia_UnionAll_importColumns), "$containsUpdates", $rt_wrapFunction0(oncia_UnionAll_containsUpdates), "$semanticCheck", $rt_wrapFunction0(oncia_UnionAll_semanticCheck), "$semanticCheckInSubqueryExpressionContext", $rt_wrapFunction1(oncia_UnionAll_semanticCheckInSubqueryExpressionContext), "$checkImportingWith", $rt_wrapFunction0(oncia_UnionAll_checkImportingWith), "$isCorrelated", $rt_wrapFunction0(oncia_UnionAll_isCorrelated), +"$isReturning", $rt_wrapFunction0(oncia_UnionAll_isReturning), "$endsWithFinish", $rt_wrapFunction0(oncia_UnionAll_endsWithFinish), "$semanticCheckInSubqueryContext", $rt_wrapFunction2(oncia_UnionAll_semanticCheckInSubqueryContext), "$semanticCheckImportingWithSubQueryContext", $rt_wrapFunction1(oncia_UnionAll_semanticCheckImportingWithSubQueryContext), "$finalScope", $rt_wrapFunction1(oncia_UnionAll_finalScope), "$returnColumns", $rt_wrapFunction0(oncia_UnionAll_returnColumns), "$withScopedState", $rt_wrapFunction1(oncia_UnionAll_withScopedState), +"$importValuesFromScope0", $rt_wrapFunction1(oncia_UnionAll_importValuesFromScope), "$error4", $rt_wrapFunction2(oncia_UnionAll_error), "$foldedOver", $rt_wrapFunction0(oncia_UnionAll_foldedOver), "$folder", $rt_wrapFunction0(oncia_UnionAll_folder), "$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings", $rt_wrapFunction0(oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings), "$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq", $rt_wrapFunction1(oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq), +"$lhs", $rt_wrapFunction0(oncia_UnionAll_lhs), "$rhs0", $rt_wrapFunction0(oncia_UnionAll_rhs), "$position", $rt_wrapFunction0(oncia_UnionAll_position), "$mapEachSingleQuery", $rt_wrapFunction1(oncia_UnionAll_mapEachSingleQuery), "$productPrefix", $rt_wrapFunction0(oncia_UnionAll_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UnionAll_productArity), "$productElement", $rt_wrapFunction1(oncia_UnionAll_productElement), "$productIterator", $rt_wrapFunction0(oncia_UnionAll_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_UnionAll_hashCode), "$toString", $rt_wrapFunction0(oncia_UnionAll_toString), "$equals", $rt_wrapFunction1(oncia_UnionAll_equals), "$dup", $rt_wrapFunction1(oncia_UnionAll_dup)], +oncifp_ResolvedCall, "ResolvedCall", 65, oncia_CallClause, [ji_Serializable], 0, 3, [0,0,0], 0, ["$yieldAll", $rt_wrapFunction0(oncifp_ResolvedCall_yieldAll), "$position", $rt_wrapFunction0(oncifp_ResolvedCall_position), "$returnVariables", $rt_wrapFunction0(oncifp_ResolvedCall_returnVariables), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncifp_ResolvedCall_clauseSpecificSemanticCheck), "$containsNoUpdates", $rt_wrapFunction0(oncifp_ResolvedCall_containsNoUpdates), "$productPrefix", $rt_wrapFunction0(oncifp_ResolvedCall_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_ResolvedCall_productArity), "$productElement", $rt_wrapFunction1(oncifp_ResolvedCall_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ResolvedCall_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ResolvedCall_hashCode), "$toString", $rt_wrapFunction0(oncifp_ResolvedCall_toString), "$equals", $rt_wrapFunction1(oncifp_ResolvedCall_equals)], oncia_GraphSelection, 0, jl_Object, [oncia_Clause], 3, 3, 0, 0, 0, -oncia_With, "With", 36, jl_Object, [oncia_ProjectionClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$isReturn", $rt_wrapFunction0(oncia_With_isReturn), "$copyProjection", function(var_1, var_2, var_3, var_4, var_5, var_6) { return oncia_With_copyProjection(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$copyProjection$default$1", $rt_wrapFunction0(oncia_With_copyProjection$default$1), "$copyProjection$default$3", $rt_wrapFunction0(oncia_With_copyProjection$default$3), "$copyProjection$default$4", $rt_wrapFunction0(oncia_With_copyProjection$default$4), +oncia_With, "With", 35, jl_Object, [oncia_ProjectionClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$isReturn", $rt_wrapFunction0(oncia_With_isReturn), "$copyProjection", function(var_1, var_2, var_3, var_4, var_5, var_6) { return oncia_With_copyProjection(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$copyProjection$default$1", $rt_wrapFunction0(oncia_With_copyProjection$default$1), "$copyProjection$default$3", $rt_wrapFunction0(oncia_With_copyProjection$default$3), "$copyProjection$default$4", $rt_wrapFunction0(oncia_With_copyProjection$default$4), "$copyProjection$default$5", $rt_wrapFunction0(oncia_With_copyProjection$default$5), "$copyProjection$default$6", $rt_wrapFunction0(oncia_With_copyProjection$default$6), "$semanticCheckContinuation", $rt_wrapFunction2(oncia_With_semanticCheckContinuation), "$semanticCheckContinuation$default$2", $rt_wrapFunction0(oncia_With_semanticCheckContinuation$default$2), "$warnOnAccessToRestrictedVariableInOrderByOrWhere", $rt_wrapFunction2(oncia_With_warnOnAccessToRestrictedVariableInOrderByOrWhere), "$verifyOrderByAggregationUse", -$rt_wrapFunction1(oncia_With_verifyOrderByAggregationUse), "$returnVariables", $rt_wrapFunction0(oncia_With_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_With_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_With_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_With_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_With_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_With_foldedOver), "$folder", $rt_wrapFunction0(oncia_With_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", +$rt_wrapFunction1(oncia_With_verifyOrderByAggregationUse), "$returnVariables", $rt_wrapFunction0(oncia_With_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_With_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_With_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_With_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_With_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_With_foldedOver), "$folder", $rt_wrapFunction0(oncia_With_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_With_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_With_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_With_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$distinct", $rt_wrapFunction0(oncia_With_distinct), "$returnItems", $rt_wrapFunction0(oncia_With_returnItems), "$orderBy", $rt_wrapFunction0(oncia_With_orderBy), "$skip", $rt_wrapFunction0(oncia_With_skip), "$limit", $rt_wrapFunction0(oncia_With_limit), "$where", $rt_wrapFunction0(oncia_With_where), "$position", $rt_wrapFunction0(oncia_With_position), "$name", $rt_wrapFunction0(oncia_With_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_With_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_With_productPrefix), "$productArity", $rt_wrapFunction0(oncia_With_productArity), "$productElement", $rt_wrapFunction1(oncia_With_productElement), "$productIterator", $rt_wrapFunction0(oncia_With_productIterator), "$hashCode", $rt_wrapFunction0(oncia_With_hashCode), "$toString", $rt_wrapFunction0(oncia_With_toString), "$equals", $rt_wrapFunction1(oncia_With_equals), "$dup", $rt_wrapFunction1(oncia_With_dup)], -oncia_Return, "Return", 36, jl_Object, [oncia_ProjectionClause, oncia_ClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$copyProjection", function(var_1, var_2, var_3, var_4, var_5, var_6) { return oncia_Return_copyProjection(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$copyProjection$default$1", $rt_wrapFunction0(oncia_Return_copyProjection$default$1), "$copyProjection$default$3", $rt_wrapFunction0(oncia_Return_copyProjection$default$3), "$copyProjection$default$4", $rt_wrapFunction0(oncia_Return_copyProjection$default$4), +oncia_Return, "Return", 35, jl_Object, [oncia_ProjectionClause, oncia_ClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$copyProjection", function(var_1, var_2, var_3, var_4, var_5, var_6) { return oncia_Return_copyProjection(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$copyProjection$default$1", $rt_wrapFunction0(oncia_Return_copyProjection$default$1), "$copyProjection$default$3", $rt_wrapFunction0(oncia_Return_copyProjection$default$3), "$copyProjection$default$4", $rt_wrapFunction0(oncia_Return_copyProjection$default$4), "$copyProjection$default$5", $rt_wrapFunction0(oncia_Return_copyProjection$default$5), "$copyProjection$default$6", $rt_wrapFunction0(oncia_Return_copyProjection$default$6), "$semanticCheckContinuation", $rt_wrapFunction2(oncia_Return_semanticCheckContinuation), "$semanticCheckContinuation$default$2", $rt_wrapFunction0(oncia_Return_semanticCheckContinuation$default$2), "$warnOnAccessToRestrictedVariableInOrderByOrWhere", $rt_wrapFunction2(oncia_Return_warnOnAccessToRestrictedVariableInOrderByOrWhere), "$verifyOrderByAggregationUse", -$rt_wrapFunction1(oncia_Return_verifyOrderByAggregationUse), "$semanticCheck", $rt_wrapFunction0(oncia_Return_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Return_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_Return_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Return_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Return_foldedOver), "$folder", $rt_wrapFunction0(oncia_Return_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Return_org$neo4j$cypher$internal$ast$Clause$$stringifier), +$rt_wrapFunction1(oncia_Return_verifyOrderByAggregationUse), "$semanticCheck", $rt_wrapFunction0(oncia_Return_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Return_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_Return_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Return_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Return_foldedOver), "$folder", $rt_wrapFunction0(oncia_Return_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Return_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Return_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Return_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$distinct", $rt_wrapFunction0(oncia_Return_distinct), "$returnItems", $rt_wrapFunction0(oncia_Return_returnItems), "$orderBy", $rt_wrapFunction0(oncia_Return_orderBy), "$skip", $rt_wrapFunction0(oncia_Return_skip), "$limit", $rt_wrapFunction0(oncia_Return_limit), "$position", $rt_wrapFunction0(oncia_Return_position), "$name", $rt_wrapFunction0(oncia_Return_name), "$isReturn", $rt_wrapFunction0(oncia_Return_isReturn), "$where", $rt_wrapFunction0(oncia_Return_where), "$returnVariables", $rt_wrapFunction0(oncia_Return_returnVariables), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Return_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Return_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Return_productArity), "$productElement", $rt_wrapFunction1(oncia_Return_productElement), "$productIterator", $rt_wrapFunction0(oncia_Return_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Return_hashCode), "$toString", $rt_wrapFunction0(oncia_Return_toString), "$equals", $rt_wrapFunction1(oncia_Return_equals), "$dup", $rt_wrapFunction1(oncia_Return_dup)], onciu_Ref$, 0, jl_Object, [], 4, 3, 0, onciu_Ref$_$callClinit, 0, oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncia_ImportingWithSubqueryCall, "ImportingWithSubqueryCall", 36, jl_Object, [oncia_SubqueryCall, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_clauseSpecificSemanticCheck), "$reportParams", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_reportParams), "$semanticCheckContinuation", $rt_wrapFunction2(oncia_ImportingWithSubqueryCall_semanticCheckContinuation), "$returnVariables", -$rt_wrapFunction0(oncia_ImportingWithSubqueryCall_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_shouldRunQPPChecks), "$declareVariable", $rt_wrapFunction2(oncia_ImportingWithSubqueryCall_declareVariable), "$error2", $rt_wrapFunction2(oncia_ImportingWithSubqueryCall_error), "$warn", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall_warn), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_asCanonicalStringVal), +oncia_ImportingWithSubqueryCall, "ImportingWithSubqueryCall", 35, jl_Object, [oncia_SubqueryCall, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_clauseSpecificSemanticCheck), "$reportParams", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_reportParams), "$semanticCheckContinuation", $rt_wrapFunction2(oncia_ImportingWithSubqueryCall_semanticCheckContinuation), "$returnVariables", +$rt_wrapFunction0(oncia_ImportingWithSubqueryCall_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_shouldRunQPPChecks), "$declareVariable", $rt_wrapFunction2(oncia_ImportingWithSubqueryCall_declareVariable), "$error4", $rt_wrapFunction2(oncia_ImportingWithSubqueryCall_error), "$warn", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall_warn), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_foldedOver), "$folder", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$innerQuery", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_innerQuery), "$inTransactionsParameters", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_inTransactionsParameters), "$optional", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_optional), "$position", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_position), "$checkSubquery", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_checkSubquery), "$productPrefix", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_productArity), "$productElement", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall_productElement), "$productIterator", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_hashCode), "$toString", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall_toString), "$equals", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall_equals), "$dup", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall_dup)], oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_0_apply)], oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$getRewriter$5$applyOrElse$lambda$_0_1_apply)], -oncias_SemanticState$ScopeLocation$, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncias_SemanticState$ScopeLocation$, 0, jl_Object, [], 0, 3, 0, oncias_SemanticState$ScopeLocation$_$callClinit, 0, oncia_ASTAnnotationMap$PositionedNode$, 0, jl_Object, [ji_Serializable], 0, 3, 0, oncia_ASTAnnotationMap$PositionedNode$_$callClinit, 0, -oncias_SemanticState$ScopeLocation, "SemanticState$ScopeLocation", 41, jl_Object, [], 4, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(oncias_SemanticState$ScopeLocation_hashCode), "$equals", $rt_wrapFunction1(oncias_SemanticState$ScopeLocation_equals)], +oncias_SemanticState$ScopeLocation, "SemanticState$ScopeLocation", 40, jl_Object, [], 4, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(oncias_SemanticState$ScopeLocation_hashCode), "$equals", $rt_wrapFunction1(oncias_SemanticState$ScopeLocation_equals)], oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_0_apply)], oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_computeDependenciesForExpressions$$anonfun$1$applyOrElse$lambda$_0_1_apply)], +jusi_MappingStreamImpl$wrap$lambda$_1_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_MappingStreamImpl$wrap$lambda$_1_0_test)], +juf_Consumer, 0, jl_Object, [], 3, 3, 0, 0, 0, +jusi_StreamOverSpliterator$AdapterAction, 0, jl_Object, [juf_Consumer], 0, 0, 0, 0, 0, oncirc_containsNoNodesOfType$apply$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirc_containsNoNodesOfType$apply$lambda$_5_0_apply)], -sci_WrappedString, 0, sci_AbstractSeq, [sci_IndexedSeq, ji_Serializable], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_WrappedString_iterator), "$knownSize", $rt_wrapFunction0(sci_WrappedString_knownSize), "$length", $rt_wrapFunction0(sci_WrappedString_length), "$view0", $rt_wrapFunction0(sci_WrappedString_view)], -onciafn_Neo4jASTExceptionFactory$syntaxException$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTExceptionFactory$syntaxException$lambda$_10_0_apply)], -jusi_FlatMappingToIntStreamImpl, 0, jusi_SimpleIntStreamImpl, [], 0, 3, 0, 0, 0, -ju_HashMap$1, 0, ju_AbstractSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_HashMap$1_size), "$iterator", $rt_wrapFunction0(ju_HashMap$1_iterator)], -oncia_UseGraph, "UseGraph", 36, jl_Object, [oncia_GraphSelection, oncia_ClauseAllowedOnSystem, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_UseGraph_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_UseGraph_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_UseGraph_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_UseGraph_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_UseGraph_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_UseGraph_foldedOver), -"$folder", $rt_wrapFunction0(oncia_UseGraph_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_UseGraph_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_UseGraph_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_UseGraph_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_UseGraph_position), -"$name", $rt_wrapFunction0(oncia_UseGraph_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_UseGraph_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_UseGraph_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UseGraph_productArity), "$productElement", $rt_wrapFunction1(oncia_UseGraph_productElement), "$productIterator", $rt_wrapFunction0(oncia_UseGraph_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UseGraph_hashCode), "$toString", $rt_wrapFunction0(oncia_UseGraph_toString), -"$equals", $rt_wrapFunction1(oncia_UseGraph_equals), "$dup", $rt_wrapFunction1(oncia_UseGraph_dup)], -oncia_DatabaseName, "DatabaseName", 36, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, -oncia_WaitUntilComplete, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_Variable, "Variable", 64, oncie_LogicalVariable, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_Variable_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Variable_asCanonicalStringVal), "$productPrefix", $rt_wrapFunction0(oncie_Variable_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Variable_productArity), "$productElement", $rt_wrapFunction1(oncie_Variable_productElement), "$productIterator", $rt_wrapFunction0(oncie_Variable_productIterator), "$hashCode", -$rt_wrapFunction0(oncie_Variable_hashCode), "$toString", $rt_wrapFunction0(oncie_Variable_toString), "$equals", $rt_wrapFunction1(oncie_Variable_equals)], -onciafn_Privilege, 0, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncia_DatabaseScope, 0, jl_Object, [onciu_Rewritable], 3, 3, 0, 0, 0, -oncie_MatchMode$MatchMode, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, -oncia_SubqueryCall$InTransactionsParameters, "SubqueryCall$InTransactionsParameters", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_position), "$semanticCheck", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_productPrefix), "$productArity", -$rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_toString), "$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters_equals), -"$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters_dup)], -oncia_PrivilegeQualifier, 0, jl_Object, [onciu_Rewritable], 3, 3, 0, 0, 0, -oncia_GraphPrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, -oncia_AllQualifier, "AllQualifier", 36, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_AllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_AllQualifier_toString), -"$equals", $rt_wrapFunction1(oncia_AllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_AllQualifier_dup)], -oncia_AdministrationAction, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_PatternPart$Selector, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, -oncia_SubqueryCall$InTransactionsBatchParameters, "SubqueryCall$InTransactionsBatchParameters", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsBatchParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_position), "$semanticCheck", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsBatchParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_toString), "$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsBatchParameters_equals), -"$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsBatchParameters_dup)], -oncia_SubqueryCall$InTransactionsConcurrencyParameters, "SubqueryCall$InTransactionsConcurrencyParameters", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsConcurrencyParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_position), "$semanticCheck", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsConcurrencyParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_toString), -"$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsConcurrencyParameters_equals), "$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsConcurrencyParameters_dup)], -oncia_SubqueryCall$InTransactionsErrorParameters, "SubqueryCall$InTransactionsErrorParameters", 36, jl_Object, [onciu_ASTNode, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsErrorParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_position), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_productArity), "$productElement", -$rt_wrapFunction1(oncia_SubqueryCall$InTransactionsErrorParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_toString), "$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsErrorParameters_equals), "$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsErrorParameters_dup)], -oncia_SubqueryCall$InTransactionsReportParameters, "SubqueryCall$InTransactionsReportParameters", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsReportParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_position), "$semanticCheck", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsReportParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_toString), "$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsReportParameters_equals), -"$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsReportParameters_dup)], -oncia_DatabasePrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, -oncia_AllDatabasesQualifier, "AllDatabasesQualifier", 36, jl_Object, [oncia_DatabasePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllDatabasesQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllDatabasesQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDatabasesQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDatabasesQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDatabasesQualifier_hashCode), -"$toString", $rt_wrapFunction0(oncia_AllDatabasesQualifier_toString), "$equals", $rt_wrapFunction1(oncia_AllDatabasesQualifier_equals), "$dup", $rt_wrapFunction1(oncia_AllDatabasesQualifier_dup)], -onciafn_Neo4jASTFactory$userQualifier$lambda$_218_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(onciafn_Neo4jASTFactory$userQualifier$lambda$_218_0_accept)], -oncia_UserAllQualifier, "UserAllQualifier", 36, jl_Object, [oncia_DatabasePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_UserAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UserAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_UserAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_UserAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UserAllQualifier_hashCode), "$toString", -$rt_wrapFunction0(oncia_UserAllQualifier_toString), "$equals", $rt_wrapFunction1(oncia_UserAllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_UserAllQualifier_dup)], -oncia_GraphScope, 0, jl_Object, [onciu_Rewritable], 3, 3, 0, 0, 0, -oncia_ActionResourceBase, 0, jl_Object, [], 3, 3, 0, 0, 0, -ju_EmptyStackException, "EmptyStackException", 5, jl_RuntimeException, [], 0, 3, 0, 0, 0, -oncil_LabelExpression, "LabelExpression", 63, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, -oncie_RelationshipPattern, "RelationshipPattern", 64, jl_Object, [oncie_PatternAtom, oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_RelationshipPattern_position), "$productPrefix", $rt_wrapFunction0(oncie_RelationshipPattern_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RelationshipPattern_productArity), "$productElement", $rt_wrapFunction1(oncie_RelationshipPattern_productElement), "$productIterator", $rt_wrapFunction0(oncie_RelationshipPattern_productIterator), +sci_HashCollisionMapNode$filterImpl$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionMapNode$filterImpl$lambda$_31_0_apply)], +sci_HashCollisionMapNode$filterImpl$lambda$_31_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionMapNode$filterImpl$lambda$_31_1_apply)], +ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(ong_CommonGqlStatusObjectImplementation$insertMessageParameters$lambda$_6_0_apply)], +scc_AsScalaExtensions$IteratorHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncie_RelationshipPattern, "RelationshipPattern", 62, jl_Object, [oncie_PatternAtom, oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_RelationshipPattern_position), "$productPrefix", $rt_wrapFunction0(oncie_RelationshipPattern_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RelationshipPattern_productArity), "$productElement", $rt_wrapFunction1(oncie_RelationshipPattern_productElement), "$productIterator", $rt_wrapFunction0(oncie_RelationshipPattern_productIterator), "$hashCode", $rt_wrapFunction0(oncie_RelationshipPattern_hashCode), "$toString", $rt_wrapFunction0(oncie_RelationshipPattern_toString), "$equals", $rt_wrapFunction1(oncie_RelationshipPattern_equals), "$dup", $rt_wrapFunction1(oncie_RelationshipPattern_dup)], -oncie_GraphPatternQuantifier, 0, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, -oncipj_EntityType, "EntityType", 50, jl_Enum, [], 12, 3, [0,0,0], 0, 0]); -$rt_metadata([scc_AsScalaExtensions$IteratorHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncipj_AliasName$tokensAsStrings$lambda$_7_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipj_AliasName$tokensAsStrings$lambda$_7_0_apply)], -oncipj_AliasName$originalRepresentation$lambda$_8_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipj_AliasName$originalRepresentation$lambda$_8_0_apply)], oncia_ReturnItems$ReturnVariables, 0, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, 0, oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_0_apply)], oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_expandShowWhere$$org$neo4j$cypher$internal$rewriting$rewriters$expandShowWhere$$addDefaultColumns$lambda$_9_1_apply)], @@ -361062,41 +288654,38 @@ oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInP oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoNots$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoNots$lambda$_11_0_apply)], oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNots$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNots$lambda$_10_0_apply)], oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoAnds$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$org$neo4j$cypher$internal$rewriting$rewriters$mergeInPredicates$$containNoAnds$lambda$_9_0_apply)], -oncie_FunctionName, "FunctionName", 64, jl_Object, [oncie_SymbolicName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_FunctionName_name), "$position", $rt_wrapFunction0(oncie_FunctionName_position), "$equals", $rt_wrapFunction1(oncie_FunctionName_equals), "$hashCode", $rt_wrapFunction0(oncie_FunctionName_hashCode), "$productPrefix", $rt_wrapFunction0(oncie_FunctionName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_FunctionName_productArity), "$productElement", $rt_wrapFunction1(oncie_FunctionName_productElement), +oncie_FunctionName, "FunctionName", 62, jl_Object, [oncie_SymbolicName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_FunctionName_name), "$position", $rt_wrapFunction0(oncie_FunctionName_position), "$equals", $rt_wrapFunction1(oncie_FunctionName_equals), "$hashCode", $rt_wrapFunction0(oncie_FunctionName_hashCode), "$productPrefix", $rt_wrapFunction0(oncie_FunctionName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_FunctionName_productArity), "$productElement", $rt_wrapFunction1(oncie_FunctionName_productElement), "$productIterator", $rt_wrapFunction0(oncie_FunctionName_productIterator), "$toString", $rt_wrapFunction0(oncie_FunctionName_toString), "$dup", $rt_wrapFunction1(oncie_FunctionName_dup)], -oncie_Namespace, "Namespace", 64, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_Namespace_position), "$productPrefix", $rt_wrapFunction0(oncie_Namespace_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Namespace_productArity), "$productElement", $rt_wrapFunction1(oncie_Namespace_productElement), "$productIterator", $rt_wrapFunction0(oncie_Namespace_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Namespace_hashCode), "$toString", $rt_wrapFunction0(oncie_Namespace_toString), +oncie_Namespace, "Namespace", 62, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_Namespace_position), "$productPrefix", $rt_wrapFunction0(oncie_Namespace_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Namespace_productArity), "$productElement", $rt_wrapFunction1(oncie_Namespace_productElement), "$productIterator", $rt_wrapFunction0(oncie_Namespace_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Namespace_hashCode), "$toString", $rt_wrapFunction0(oncie_Namespace_toString), "$equals", $rt_wrapFunction1(oncie_Namespace_equals), "$dup", $rt_wrapFunction1(oncie_Namespace_dup)], -oncie_Namespace$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncie_Namespace$_$callClinit, 0, +oncie_Namespace$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, oncie_TypeSignature, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_ExpressionTypeSignature, "ExpressionTypeSignature", 64, jl_Object, [oncie_TypeSignature, s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$argumentTypes", $rt_wrapFunction0(oncie_ExpressionTypeSignature_argumentTypes), "$outputType", $rt_wrapFunction0(oncie_ExpressionTypeSignature_outputType), "$removeFirstArgumentType", $rt_wrapFunction0(oncie_ExpressionTypeSignature_removeFirstArgumentType), "$productPrefix", $rt_wrapFunction0(oncie_ExpressionTypeSignature_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ExpressionTypeSignature_productArity), -"$productElement", $rt_wrapFunction1(oncie_ExpressionTypeSignature_productElement), "$productIterator", $rt_wrapFunction0(oncie_ExpressionTypeSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ExpressionTypeSignature_hashCode), "$toString", $rt_wrapFunction0(oncie_ExpressionTypeSignature_toString), "$equals", $rt_wrapFunction1(oncie_ExpressionTypeSignature_equals)], +oncie_ExpressionTypeSignature, "ExpressionTypeSignature", 62, jl_Object, [oncie_TypeSignature, s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$argumentTypes", $rt_wrapFunction0(oncie_ExpressionTypeSignature_argumentTypes), "$outputType", $rt_wrapFunction0(oncie_ExpressionTypeSignature_outputType), "$removeFirstArgumentType", $rt_wrapFunction0(oncie_ExpressionTypeSignature_removeFirstArgumentType), "$getSignatureAsString", $rt_wrapFunction0(oncie_ExpressionTypeSignature_getSignatureAsString), "$productPrefix", +$rt_wrapFunction0(oncie_ExpressionTypeSignature_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ExpressionTypeSignature_productArity), "$productElement", $rt_wrapFunction1(oncie_ExpressionTypeSignature_productElement), "$productIterator", $rt_wrapFunction0(oncie_ExpressionTypeSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ExpressionTypeSignature_hashCode), "$toString", $rt_wrapFunction0(oncie_ExpressionTypeSignature_toString), "$equals", $rt_wrapFunction1(oncie_ExpressionTypeSignature_equals)], oncie_TypeSignature$, 0, jl_Object, [], 4, 3, 0, oncie_TypeSignature$_$callClinit, 0, +oncia_ProjectingUnion, 0, jl_Object, [oncia_Union], 3, 3, 0, 0, 0, sc_Iterable$$anon$1, 0, sc_AbstractIterable, [], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_Iterable$$anon$1_iterator), "$knownSize", $rt_wrapFunction0(sc_Iterable$$anon$1_knownSize), "$head", $rt_wrapFunction0(sc_Iterable$$anon$1_head)], -onciu_Ref, "Ref", 54, jl_Object, [], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_Ref_toString), "$hashCode", $rt_wrapFunction0(onciu_Ref_hashCode), "$equals", $rt_wrapFunction1(onciu_Ref_equals)], +onciu_Ref, "Ref", 52, jl_Object, [], 4, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciu_Ref_toString), "$hashCode", $rt_wrapFunction0(onciu_Ref_hashCode), "$equals", $rt_wrapFunction1(onciu_Ref_equals)], oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1$lambda$_32_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$rewrite$1$lambda$_32_0_apply)], -oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0_apply)], -oncias_Scope$DeclarationsAndDependencies, "Scope$DeclarationsAndDependencies", 41, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_Scope$DeclarationsAndDependencies_productPrefix), "$productArity", $rt_wrapFunction0(oncias_Scope$DeclarationsAndDependencies_productArity), "$productElement", $rt_wrapFunction1(oncias_Scope$DeclarationsAndDependencies_productElement), "$productIterator", $rt_wrapFunction0(oncias_Scope$DeclarationsAndDependencies_productIterator), +oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$ScopeLocation$$declarationsAndDependencies$extension$lambda$_17_0_apply)]]); +$rt_metadata([oncias_Scope$DeclarationsAndDependencies, "Scope$DeclarationsAndDependencies", 40, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_Scope$DeclarationsAndDependencies_productPrefix), "$productArity", $rt_wrapFunction0(oncias_Scope$DeclarationsAndDependencies_productArity), "$productElement", $rt_wrapFunction1(oncias_Scope$DeclarationsAndDependencies_productElement), "$productIterator", $rt_wrapFunction0(oncias_Scope$DeclarationsAndDependencies_productIterator), "$toString", $rt_wrapFunction0(oncias_Scope$DeclarationsAndDependencies_toString)], onciuh_TreeZipper$Context, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciuh_TreeZipper$Top$, "TreeZipper$Top$", 55, jl_Object, [onciuh_TreeZipper$Context, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(onciuh_TreeZipper$Top$_productArity), "$productElement", $rt_wrapFunction1(onciuh_TreeZipper$Top$_productElement), "$productIterator", $rt_wrapFunction0(onciuh_TreeZipper$Top$_productIterator), "$hashCode", $rt_wrapFunction0(onciuh_TreeZipper$Top$_hashCode), "$toString", $rt_wrapFunction0(onciuh_TreeZipper$Top$_toString)], -scm_SortedSetOps, 0, jl_Object, [scm_SetOps, sc_SortedSetOps], 3, 3, 0, 0, 0, -scm_SortedSet, 0, jl_Object, [scm_Set, sc_SortedSet, scm_SortedSetOps], 3, 3, 0, 0, 0, -sc_StrictOptimizedSortedSetOps, 0, jl_Object, [sc_SortedSetOps, sc_StrictOptimizedSetOps], 3, 3, 0, 0, 0, -scm_TreeSet, "TreeSet", 23, scm_AbstractSet, [scm_SortedSet, sc_StrictOptimizedSortedSetOps, scg_DefaultSerializable], 0, 3, 0, 0, ["$concat1", $rt_wrapFunction1(scm_TreeSet_concat), "$map", $rt_wrapFunction1(scm_TreeSet_map), "$flatMap", $rt_wrapFunction1(scm_TreeSet_flatMap), "$filterNot0", $rt_wrapFunction1(scm_TreeSet_filterNot), "$filterImpl", $rt_wrapFunction2(scm_TreeSet_filterImpl), "$stringPrefix", $rt_wrapFunction0(scm_TreeSet_stringPrefix), "$equals", $rt_wrapFunction1(scm_TreeSet_equals), "$newSpecificBuilder", -$rt_wrapFunction0(scm_TreeSet_newSpecificBuilder), "$iterator0", $rt_wrapFunction0(scm_TreeSet_iterator), "$contains", $rt_wrapFunction1(scm_TreeSet_contains), "$className", $rt_wrapFunction0(scm_TreeSet_className), "$size", $rt_wrapFunction0(scm_TreeSet_size), "$knownSize", $rt_wrapFunction0(scm_TreeSet_knownSize), "$isEmpty", $rt_wrapFunction0(scm_TreeSet_isEmpty), "$head", $rt_wrapFunction0(scm_TreeSet_head), "$foreach", $rt_wrapFunction1(scm_TreeSet_foreach), "$fromSpecific", $rt_wrapFunction1(scm_TreeSet_fromSpecific1), -"$fromSpecific0", $rt_wrapFunction1(scm_TreeSet_fromSpecific0), "$subtractOne", $rt_wrapFunction1(scm_TreeSet_subtractOne), "$addOne", $rt_wrapFunction1(scm_TreeSet_addOne)], -scm_RedBlackTree$Tree, 0, jl_Object, [], 4, 3, 0, 0, 0, -scm_RedBlackTree$, 0, jl_Object, [], 4, 3, 0, 0, 0, -scm_RedBlackTree$Tree$, 0, jl_Object, [], 0, 3, 0, 0, 0, -ju_AbstractMap$SimpleImmutableEntry, 0, jl_Object, [ju_Map$Entry, ji_Serializable], 0, 3, 0, 0, 0, -ju_Collections$7, 0, ju_AbstractMap, [], 0, 0, 0, 0, 0, -ju_Collections$9, 0, ju_AbstractList, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_Collections$9_get), "$size", $rt_wrapFunction0(ju_Collections$9_size)], +onciuh_TreeZipper$Top$, "TreeZipper$Top$", 53, jl_Object, [onciuh_TreeZipper$Context, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(onciuh_TreeZipper$Top$_productArity), "$productElement", $rt_wrapFunction1(onciuh_TreeZipper$Top$_productElement), "$productIterator", $rt_wrapFunction0(onciuh_TreeZipper$Top$_productIterator), "$hashCode", $rt_wrapFunction0(onciuh_TreeZipper$Top$_hashCode), "$toString", $rt_wrapFunction0(onciuh_TreeZipper$Top$_toString)], +ju_Collections$13, 0, ju_AbstractMap, [], 0, 0, 0, 0, 0, +oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$$anonfun$simplify$1$lambda$_55_0_apply)], s_PartialFunction$AndThen, 0, jl_Object, [s_PartialFunction, ji_Serializable], 0, 3, 0, 0, ["$lift0", $rt_wrapFunction0(s_PartialFunction$AndThen_lift), "$applyOrElse", $rt_wrapFunction2(s_PartialFunction$AndThen_applyOrElse)], +sci_Map$WithDefault, "Map$WithDefault", 20, sci_AbstractMap, [ji_Serializable], 0, 3, 0, 0, ["$get2", $rt_wrapFunction1(sci_Map$WithDefault_get), "$default0", $rt_wrapFunction1(sci_Map$WithDefault_default), "$iterableFactory", $rt_wrapFunction0(sci_Map$WithDefault_iterableFactory), "$iterator0", $rt_wrapFunction0(sci_Map$WithDefault_iterator), "$isEmpty", $rt_wrapFunction0(sci_Map$WithDefault_isEmpty), "$mapFactory", $rt_wrapFunction0(sci_Map$WithDefault_mapFactory), "$newSpecificBuilder", $rt_wrapFunction0(sci_Map$WithDefault_newSpecificBuilder), +"$fromSpecific", $rt_wrapFunction1(sci_Map$WithDefault_fromSpecific1), "$fromSpecific0", $rt_wrapFunction1(sci_Map$WithDefault_fromSpecific0), "$updated0", $rt_wrapFunction2(sci_Map$WithDefault_updated), "$removed", $rt_wrapFunction1(sci_Map$WithDefault_removed), "$concat2", $rt_wrapFunction1(sci_Map$WithDefault_concat)], +sci_Map$withDefaultValue$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, sc_MapOps$addString$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_MapOps$addString$lambda$_49_0_apply)], oncirr_normalizeWithAndReturnClauses$aliasUnaliasedReturnItems$lambda$_39_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$aliasUnaliasedReturnItems$lambda$_39_0_apply)], +oncie_Variable$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Variable$$_clinit_$lambda$_0_0_apply)], +sm_Ordering$StringOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, +sm_Ordering$String$, 0, jl_Object, [sm_Ordering$StringOrdering], 0, 3, 0, sm_Ordering$String$_$callClinit, ["$on", $rt_wrapFunction1(sm_Ordering$String$_on), "$compare2", $rt_wrapFunction2(sm_Ordering$String$_compare)], oncirr_rewriteShowQuery$$rewriteToWithAndReturn$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_rewriteShowQuery$$rewriteToWithAndReturn$lambda$_12_0_apply)], oncia_WithType, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_AddedInRewrite$, "AddedInRewrite$", 36, jl_Object, [oncia_WithType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AddedInRewrite$_productArity), "$productElement", $rt_wrapFunction1(oncia_AddedInRewrite$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AddedInRewrite$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AddedInRewrite$_hashCode), "$toString", $rt_wrapFunction0(oncia_AddedInRewrite$_toString)], +oncia_AddedInRewrite$, "AddedInRewrite$", 35, jl_Object, [oncia_WithType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AddedInRewrite$_productArity), "$productElement", $rt_wrapFunction1(oncia_AddedInRewrite$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AddedInRewrite$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AddedInRewrite$_hashCode), "$toString", $rt_wrapFunction0(oncia_AddedInRewrite$_toString)], oncirr_rewriteShowQuery$$anonfun$lastPosition$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_rewriteShowQuery$$anonfun$lastPosition$1_applyOrElse)], oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_0_apply)], oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_rewriteShowQuery$$getDefaultOrderFromProjectionOrCommand$lambda$_9_1_apply)], @@ -361104,10 +288693,10 @@ oncirr_rewriteShowQuery$$updateDefaultOrderOnReturn$lambda$_10_0, 0, jl_Object, oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_0_apply)], oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncirr_mergeInPredicates$$collectInPredicates$lambda$_15_1_apply)], oncirr_mergeInPredicates$$anonfun$inRewriter$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$inRewriter$1_applyOrElse)], -oncie_FunctionTypeSignature, "FunctionTypeSignature", 64, jl_Object, [oncie_TypeSignature, s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$outputType", $rt_wrapFunction0(oncie_FunctionTypeSignature_outputType), "$argumentTypes", $rt_wrapFunction0(oncie_FunctionTypeSignature_argumentTypes), "$removeFirstArgumentType", $rt_wrapFunction0(oncie_FunctionTypeSignature_removeFirstArgumentType), "$productPrefix", $rt_wrapFunction0(oncie_FunctionTypeSignature_productPrefix), "$productArity", $rt_wrapFunction0(oncie_FunctionTypeSignature_productArity), -"$productElement", $rt_wrapFunction1(oncie_FunctionTypeSignature_productElement), "$productIterator", $rt_wrapFunction0(oncie_FunctionTypeSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncie_FunctionTypeSignature_hashCode), "$toString", $rt_wrapFunction0(oncie_FunctionTypeSignature_toString), "$equals", $rt_wrapFunction1(oncie_FunctionTypeSignature_equals)]]); -$rt_metadata([oncie_FunctionTypeSignature$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncie_FunctionTypeSignature$_$callClinit, 0, -s_Enumeration, "Enumeration", 17, jl_Object, [ji_Serializable], 1, 3, 0, 0, 0, +oncie_FunctionTypeSignature, "FunctionTypeSignature", 62, jl_Object, [oncie_TypeSignature, s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$outputType", $rt_wrapFunction0(oncie_FunctionTypeSignature_outputType), "$argumentTypes", $rt_wrapFunction0(oncie_FunctionTypeSignature_argumentTypes), "$getSignatureAsString", $rt_wrapFunction0(oncie_FunctionTypeSignature_getSignatureAsString), "$removeFirstArgumentType", $rt_wrapFunction0(oncie_FunctionTypeSignature_removeFirstArgumentType), "$productPrefix", $rt_wrapFunction0(oncie_FunctionTypeSignature_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_FunctionTypeSignature_productArity), "$productElement", $rt_wrapFunction1(oncie_FunctionTypeSignature_productElement), "$productIterator", $rt_wrapFunction0(oncie_FunctionTypeSignature_productIterator), "$hashCode", $rt_wrapFunction0(oncie_FunctionTypeSignature_hashCode), "$toString", $rt_wrapFunction0(oncie_FunctionTypeSignature_toString), "$equals", $rt_wrapFunction1(oncie_FunctionTypeSignature_equals)], +oncie_FunctionTypeSignature$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +s_Enumeration, "Enumeration", 15, jl_Object, [ji_Serializable], 1, 3, 0, 0, 0, oncief_Category$, 0, s_Enumeration, [], 4, 3, 0, oncief_Category$_$callClinit, 0, s_Function3, 0, jl_Object, [], 3, 3, 0, 0, 0, sr_AbstractFunction3, 0, jl_Object, [s_Function3], 1, 3, 0, 0, 0, @@ -361116,40 +288705,81 @@ oncias_Scope$allSymbolDefinitions$lambda$_15_0, 0, jl_Object, [s_Function2, ji_S oncias_SemanticState$ScopeLocation$$parent$extension$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$ScopeLocation$$parent$extension$lambda$_4_0_apply)], oncias_SemanticState$ScopeLocation$$availableSymbolDefinitions$extension$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$ScopeLocation$$availableSymbolDefinitions$extension$lambda$_12_0_apply)], s_PartialFunction$Combined, 0, jl_Object, [s_PartialFunction, ji_Serializable], 0, 3, 0, 0, ["$lift0", $rt_wrapFunction0(s_PartialFunction$Combined_lift), "$applyOrElse", $rt_wrapFunction2(s_PartialFunction$Combined_applyOrElse)], -sci_RangeIterator, 0, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_RangeIterator_hasNext), "$next", $rt_wrapFunction0(sci_RangeIterator_next)], -scm_RedBlackTree$Node, 0, jl_Object, [], 4, 3, 0, 0, 0, -ju_TemplateCollections$SingleElementSet, 0, ju_TemplateCollections$AbstractImmutableSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +sc_SeqOps$distinct$lambda$_30_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, oncia_GraphReference, 0, jl_Object, [oncias_SemanticCheckable], 3, 3, 0, 0, 0, -oncia_GraphDirectReference, "GraphDirectReference", 36, oncie_Expression, [oncia_GraphReference, ji_Serializable], 4, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_GraphDirectReference_semanticCheck), "$position", $rt_wrapFunction0(oncia_GraphDirectReference_position), "$print0", $rt_wrapFunction0(oncia_GraphDirectReference_print), "$dependencies", $rt_wrapFunction0(oncia_GraphDirectReference_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_GraphDirectReference_isConstantForQuery), "$equals", +oncia_GraphDirectReference, "GraphDirectReference", 35, oncie_Expression, [oncia_GraphReference, ji_Serializable], 4, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_GraphDirectReference_semanticCheck), "$position", $rt_wrapFunction0(oncia_GraphDirectReference_position), "$print0", $rt_wrapFunction0(oncia_GraphDirectReference_print), "$dependencies", $rt_wrapFunction0(oncia_GraphDirectReference_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_GraphDirectReference_isConstantForQuery), "$equals", $rt_wrapFunction1(oncia_GraphDirectReference_equals), "$hashCode", $rt_wrapFunction0(oncia_GraphDirectReference_hashCode), "$semanticallyEqual", $rt_wrapFunction1(oncia_GraphDirectReference_semanticallyEqual), "$productPrefix", $rt_wrapFunction0(oncia_GraphDirectReference_productPrefix), "$productArity", $rt_wrapFunction0(oncia_GraphDirectReference_productArity), "$productElement", $rt_wrapFunction1(oncia_GraphDirectReference_productElement), "$productIterator", $rt_wrapFunction0(oncia_GraphDirectReference_productIterator), "$toString", $rt_wrapFunction0(oncia_GraphDirectReference_toString)], -oncia_CatalogName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -sc_SeqOps$distinct$lambda$_30_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -sc_SeqView$Id, "SeqView$Id", 21, sc_AbstractSeqView, [], 0, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sc_SeqView$Id_apply), "$length", $rt_wrapFunction0(sc_SeqView$Id_length), "$iterator0", $rt_wrapFunction0(sc_SeqView$Id_iterator), "$knownSize", $rt_wrapFunction0(sc_SeqView$Id_knownSize), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Id_isEmpty)], -sc_IndexedSeqView$Id, 0, sc_SeqView$Id, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Id_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Id_reverseIterator), "$reverse3", $rt_wrapFunction0(sc_IndexedSeqView$Id_reverse), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Id_lengthCompare), "$knownSize", $rt_wrapFunction0(sc_IndexedSeqView$Id_knownSize)], -s_Proxy, 0, jl_Object, [], 131, 3, 0, 0, 0, -s_Proxy$Typed, 0, jl_Object, [s_Proxy], 131, 3, 0, 0, 0, -sr_OrderedProxy, 0, jl_Object, [sm_Ordered, s_Proxy$Typed], 3, 3, 0, 0, 0, -sr_RichBoolean, 0, jl_Object, [sr_OrderedProxy], 4, 3, 0, 0, ["$ord", $rt_wrapFunction0(sr_RichBoolean_ord), "$self", $rt_wrapFunction0(sr_RichBoolean_self)], -sr_ScalaNumberProxy, 0, jl_Object, [sm_ScalaNumericAnyConversions, sr_OrderedProxy], 3, 3, 0, 0, 0, -sr_RangedProxy, 0, jl_Object, [s_Proxy$Typed], 3, 3, 0, 0, 0, -sr_RichInt, 0, jl_Object, [sr_ScalaNumberProxy, sr_RangedProxy], 4, 3, 0, 0, ["$ord", $rt_wrapFunction0(sr_RichInt_ord), "$self", $rt_wrapFunction0(sr_RichInt_self)], -cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_14_0_apply)], +oncia_CatalogName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_CatalogName$_$callClinit, 0, +oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1_applyOrElse)], +oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1_applyOrElse)], +oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1_applyOrElse)], +oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1_applyOrElse)], +jusi_ArrayStreamImpl, 0, jusi_SimpleStreamImpl, [], 0, 3, 0, 0, ["$next2", $rt_wrapFunction1(jusi_ArrayStreamImpl_next), "$estimateSize", $rt_wrapFunction0(jusi_ArrayStreamImpl_estimateSize)], +sc_Map$, 0, sc_MapFactory$Delegate, [], 4, 3, 0, sc_Map$_$callClinit, 0, +cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(cnsa_EnrichedContext$$anonfun$errorHandler$1$lambda$_15_0_apply)], +oncia_DefaultOrAllShowColumns, "DefaultOrAllShowColumns", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_productArity), "$productElement", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns_productElement), "$productIterator", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_hashCode), +"$toString", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_toString), "$equals", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns_equals)], +oavr_ANTLRErrorListener, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavr_BaseErrorListener, 0, jl_Object, [oavr_ANTLRErrorListener], 0, 3, 0, 0, 0, +oncip_SyntaxErrorListener, "SyntaxErrorListener", 41, oavr_BaseErrorListener, [], 0, 3, 0, 0, ["$syntaxError", function(var_1, var_2, var_3, var_4, var_5, var_6) { oncip_SyntaxErrorListener_syntaxError(this, var_1, var_2, var_3, var_4, var_5, var_6); }], +oavr_Recognizer, 0, jl_Object, [], 1, 3, 0, oavr_Recognizer_$callClinit, 0]); +$rt_metadata([oavra_ATNSimulator, 0, jl_Object, [], 1, 3, 0, oavra_ATNSimulator_$callClinit, 0, +oavra_ParserATNSimulator, 0, oavra_ATNSimulator, [], 0, 3, 0, oavra_ParserATNSimulator_$callClinit, ["$reset0", $rt_wrapFunction0(oavra_ParserATNSimulator_reset)], +oavra_PredictionMode, "PredictionMode", 83, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +oavr_ANTLRErrorStrategy, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavr_DefaultErrorStrategy, 0, jl_Object, [oavr_ANTLRErrorStrategy], 0, 3, 0, 0, ["$reset2", $rt_wrapFunction1(oavr_DefaultErrorStrategy_reset), "$inErrorRecoveryMode", $rt_wrapFunction1(oavr_DefaultErrorStrategy_inErrorRecoveryMode), "$reportMatch", $rt_wrapFunction1(oavr_DefaultErrorStrategy_reportMatch), "$reportError", $rt_wrapFunction2(oavr_DefaultErrorStrategy_reportError), "$recover", $rt_wrapFunction2(oavr_DefaultErrorStrategy_recover), "$sync", $rt_wrapFunction1(oavr_DefaultErrorStrategy_sync), "$recoverInline", +$rt_wrapFunction1(oavr_DefaultErrorStrategy_recoverInline)], +oavr_BailErrorStrategy, 0, oavr_DefaultErrorStrategy, [], 0, 3, 0, 0, ["$recover", $rt_wrapFunction2(oavr_BailErrorStrategy_recover), "$recoverInline", $rt_wrapFunction1(oavr_BailErrorStrategy_recoverInline), "$sync", $rt_wrapFunction1(oavr_BailErrorStrategy_sync)], +suc_NonFatal$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oavr_Parser, 0, oavr_Recognizer, [], 1, 3, 0, 0, ["$getInputStream", $rt_wrapFunction0(oavr_Parser_getInputStream)], +oncip_CypherErrorStrategy, 0, jl_Object, [oavr_ANTLRErrorStrategy], 4, 3, 0, 0, ["$reportError", $rt_wrapFunction2(oncip_CypherErrorStrategy_reportError), "$recoverInline", $rt_wrapFunction1(oncip_CypherErrorStrategy_recoverInline), "$recover", $rt_wrapFunction2(oncip_CypherErrorStrategy_recover), "$sync", $rt_wrapFunction1(oncip_CypherErrorStrategy_sync), "$inErrorRecoveryMode", $rt_wrapFunction1(oncip_CypherErrorStrategy_inErrorRecoveryMode), "$reset2", $rt_wrapFunction1(oncip_CypherErrorStrategy_reset), "$reportMatch", +$rt_wrapFunction1(oncip_CypherErrorStrategy_reportMatch)], +sm_Ordering$Tuple2Ordering, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$lteq", $rt_wrapFunction2(sm_Ordering$Tuple2Ordering_lteq), "$gteq", $rt_wrapFunction2(sm_Ordering$Tuple2Ordering_gteq), "$lt", $rt_wrapFunction2(sm_Ordering$Tuple2Ordering_lt), "$on", $rt_wrapFunction1(sm_Ordering$Tuple2Ordering_on), "$compare2", $rt_wrapFunction2(sm_Ordering$Tuple2Ordering_compare)], +oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0_apply)], +oncia_SingleQuery$PartitionedClauses, "SingleQuery$PartitionedClauses", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_productArity), "$productElement", $rt_wrapFunction1(oncia_SingleQuery$PartitionedClauses_productElement), "$productIterator", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_hashCode), +"$toString", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_toString), "$equals", $rt_wrapFunction1(oncia_SingleQuery$PartitionedClauses_equals)], +oncia_UnmappedUnion$$init$$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$$init$$lambda$_16_0_apply)], +oncias_Scope$symbolDefinitions$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$symbolDefinitions$lambda$_17_0_apply)], onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_0_apply)], onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_1_apply)], onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_2_apply)], onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_3_apply)], onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$$anonfun$sort$6$lambda$_19_4_apply)], -oncia_DefaultOrAllShowColumns, "DefaultOrAllShowColumns", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_productArity), "$productElement", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns_productElement), "$productIterator", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_hashCode), -"$toString", $rt_wrapFunction0(oncia_DefaultOrAllShowColumns_toString), "$equals", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns_equals)], -oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$defaultColumnNames$lambda$_7_0_apply)], -oncias_Scope$symbolDefinitions$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$symbolDefinitions$lambda$_17_0_apply)], -sc_Map$, 0, sc_MapFactory$Delegate, [], 4, 3, 0, sc_Map$_$callClinit, 0, -oncia_CatalogName, "CatalogName", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oncia_CatalogName_equals), "$hashCode", $rt_wrapFunction0(oncia_CatalogName_hashCode), "$productPrefix", $rt_wrapFunction0(oncia_CatalogName_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CatalogName_productArity), "$productElement", $rt_wrapFunction1(oncia_CatalogName_productElement), "$productIterator", $rt_wrapFunction0(oncia_CatalogName_productIterator), "$toString", $rt_wrapFunction0(oncia_CatalogName_toString)], +ju_Comparator$NaturalOrder, 0, jl_Object, [ju_Comparator], 0, 3, 0, 0, ["$compare2", $rt_wrapFunction2(ju_Comparator$NaturalOrder_compare)], +oavr_IntStream, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavr_TokenStream, 0, jl_Object, [oavr_IntStream], 3, 3, 0, 0, 0, +oavr_BufferedTokenStream, 0, jl_Object, [oavr_TokenStream], 0, 3, 0, 0, ["$index0", $rt_wrapFunction0(oavr_BufferedTokenStream_index)], +oavr_CommonTokenStream, 0, oavr_BufferedTokenStream, [], 0, 3, 0, 0, 0, +oncipl_UnicodeEscapeReplacementReader$InvalidUnicodeLiteral, "UnicodeEscapeReplacementReader$InvalidUnicodeLiteral", 48, jl_RuntimeException, [], 0, 3, 0, 0, 0, +oncipa_AstBuildingAntlrParser, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavr_Vocabulary, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncip_CypherErrorVocabulary, 0, jl_Object, [oavr_Vocabulary], 4, 3, 0, 0, 0, +oavrt_Tree, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavrt_SyntaxTree, 0, jl_Object, [oavrt_Tree], 3, 3, 0, 0, 0, +oavrt_ParseTree, 0, jl_Object, [oavrt_SyntaxTree], 3, 3, 0, 0, 0, +oavrt_RuleNode, 0, jl_Object, [oavrt_ParseTree], 3, 3, 0, 0, 0, +oavr_RuleContext, 0, jl_Object, [oavrt_RuleNode], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oavr_RuleContext_getRuleIndex), "$toString", $rt_wrapFunction0(oavr_RuleContext_toString0)], +oavr_ParserRuleContext, "ParserRuleContext", 81, oavr_RuleContext, [], 0, 3, 0, 0, 0, +oncip_AstRuleCtx, 0, oavr_ParserRuleContext, [], 0, 3, 0, 0, ["$getText", $rt_wrapFunction0(oncip_AstRuleCtx_getText)], +oncipa_AntlrAstParser$doParse$lambda$_6_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipa_AntlrAstParser$doParse$lambda$_6_0_apply)], +oncipa_AntlrAstParser$doParse$lambda$_6_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipa_AntlrAstParser$doParse$lambda$_6_1_apply)], +oncia_CatalogName, "CatalogName", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oncia_CatalogName_equals), "$hashCode", $rt_wrapFunction0(oncia_CatalogName_hashCode), "$productPrefix", $rt_wrapFunction0(oncia_CatalogName_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CatalogName_productArity), "$productElement", $rt_wrapFunction1(oncia_CatalogName_productElement), "$productIterator", $rt_wrapFunction0(oncia_CatalogName_productIterator), "$toString", $rt_wrapFunction0(oncia_CatalogName_toString)], sc_Map$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_Map$$_clinit_$lambda$_0_0_apply)], -onciu_RewritableJavascript$PROXY$7_71, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_73, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_74, 0, jl_Object, [], 0, 3, 0, 0, 0, +jl_VirtualMachineError, 0, jl_Error, [], 0, 3, 0, 0, 0, +jl_ThreadDeath, 0, jl_Error, [], 0, 3, 0, 0, 0, +jl_InterruptedException, 0, jl_Exception, [], 0, 3, 0, 0, 0, +jl_LinkageError, 0, jl_Error, [], 0, 3, 0, 0, 0, +suc_ControlThrowable, 0, jl_Throwable, [], 1, 3, 0, 0, 0, +oavr_Token, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipl_CypherToken, 0, jl_Object, [oavr_Token], 3, 3, 0, 0, 0, +js_PrivilegedAction, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavra_ParserATNSimulator$1, 0, jl_Object, [js_PrivilegedAction], 0, 0, 0, 0, 0, +js_AccessController, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_73, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$7_74, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_76, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_77, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_0, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_0, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_1, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -361158,8 +288788,8 @@ onciu_RewritableJavascript$PROXY$9_2, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_2, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_3, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_3, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_4, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$11_4, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_4, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_4, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_5, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_5, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_6, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -361182,1427 +288812,3102 @@ onciu_RewritableJavascript$PROXY$9_14, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_14, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_15, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_15, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_16, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_16, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_17, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_17, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_18, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_18, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_75, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_76, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_77, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_78, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_79, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_80, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_81, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_82, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_83, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_84, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_85, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_86, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_87, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_88, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_89, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_90, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_91, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_92, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_19, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_19, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_95, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_93, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_94, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$7_95, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_96, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_97, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([oncia_OrderBy, "OrderBy", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_OrderBy_position), "$semanticCheck", $rt_wrapFunction0(oncia_OrderBy_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_OrderBy_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OrderBy_productArity), "$productElement", $rt_wrapFunction1(oncia_OrderBy_productElement), "$productIterator", $rt_wrapFunction0(oncia_OrderBy_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_OrderBy_hashCode), "$toString", $rt_wrapFunction0(oncia_OrderBy_toString), "$equals", $rt_wrapFunction1(oncia_OrderBy_equals), "$dup", $rt_wrapFunction1(oncia_OrderBy_dup)], +onciu_RewritableJavascript$PROXY$7_97, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_16, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_16, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_98, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_100, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_101, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncia_OrderBy, "OrderBy", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_OrderBy_position), "$semanticCheck", $rt_wrapFunction0(oncia_OrderBy_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_OrderBy_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OrderBy_productArity), "$productElement", $rt_wrapFunction1(oncia_OrderBy_productElement), "$productIterator", $rt_wrapFunction0(oncia_OrderBy_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_OrderBy_hashCode), "$toString", $rt_wrapFunction0(oncia_OrderBy_toString), "$equals", $rt_wrapFunction1(oncia_OrderBy_equals), "$dup", $rt_wrapFunction1(oncia_OrderBy_dup)], +sci_Map$Map4$Map4Iterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_Map$Map4$Map4Iterator_hasNext), "$next", $rt_wrapFunction0(sci_Map$Map4$Map4Iterator_next), "$drop1", $rt_wrapFunction1(sci_Map$Map4$Map4Iterator_drop)], +sci_Map$Map4$$anon$7, "Map$Map4$$anon$7", 20, sci_Map$Map4$Map4Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map4$$anon$7_nextResult)], +sc_IndexedSeqView$IndexedSeqViewReverseIterator, "IndexedSeqView$IndexedSeqViewReverseIterator", 19, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewReverseIterator_hasNext), "$next", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewReverseIterator_next)], +scm_CheckedIndexedSeqView$CheckedReverseIterator, "CheckedIndexedSeqView$CheckedReverseIterator", 21, sc_IndexedSeqView$IndexedSeqViewReverseIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_CheckedIndexedSeqView$CheckedReverseIterator_hasNext)], +oavr_TokenSource, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavr_Lexer, 0, oavr_Recognizer, [oavr_TokenSource], 1, 3, 0, 0, ["$getInputStream", $rt_wrapFunction0(oavr_Lexer_getInputStream)], +oncipv_Cypher25Lexer, 0, oavr_Lexer, [], 0, 3, 0, oncipv_Cypher25Lexer_$callClinit, ["$getATN", $rt_wrapFunction0(oncipv_Cypher25Lexer_getATN)], +oncipl_CypherQueryAccess, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipvaf_Cypher25AstLexer, "Cypher25AstLexer", 47, oncipv_Cypher25Lexer, [oncipl_CypherQueryAccess], 4, 3, 0, 0, ["$notifyListeners", $rt_wrapFunction1(oncipvaf_Cypher25AstLexer_notifyListeners), "$inputQuery", $rt_wrapFunction0(oncipvaf_Cypher25AstLexer_inputQuery), "$offsetTable", $rt_wrapFunction0(oncipvaf_Cypher25AstLexer_offsetTable)], +oncip_CypherErrorStrategy$Conf, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipvaf_Cypher25ErrorStrategyConf, 0, jl_Object, [oncip_CypherErrorStrategy$Conf], 0, 3, 0, 0, ["$preferredRules", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_preferredRules), "$vocabulary0", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_vocabulary), "$ignoredTokens", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_ignoredTokens), "$customTokenDisplayNames", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_customTokenDisplayNames), "$ruleGroups", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_ruleGroups), +"$errorCharTokenType", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_errorCharTokenType)], +oncipv_Cypher25Parser, 0, oavr_Parser, [], 0, 3, 0, oncipv_Cypher25Parser_$callClinit, ["$getVocabulary", $rt_wrapFunction0(oncipv_Cypher25Parser_getVocabulary), "$getRuleNames", $rt_wrapFunction0(oncipv_Cypher25Parser_getRuleNames), "$getATN", $rt_wrapFunction0(oncipv_Cypher25Parser_getATN)], +oncipvaf_CypherAstBuildingAntlrParser0, "CypherAstBuildingAntlrParser", 47, oncipv_Cypher25Parser, [oncipa_AstBuildingAntlrParser], 4, 3, 0, 0, ["$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode", $rt_wrapFunction2(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode), +"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners", +$rt_wrapFunction3(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners), "$createTerminalNode", $rt_wrapFunction2(oncipvaf_CypherAstBuildingAntlrParser_createTerminalNode), "$reset0", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_reset), "$addParseListener", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_addParseListener0), "$setErrorHandler", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_setErrorHandler0), +"$notifyErrorListeners", $rt_wrapFunction3(oncipvaf_CypherAstBuildingAntlrParser_notifyErrorListeners), "$syntaxChecker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_syntaxChecker), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq), +"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0), +"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq), +"$createSyntaxChecker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_createSyntaxChecker0), "$createAstBuilder", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_createAstBuilder), "$isSafeToFreeChildren", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_isSafeToFreeChildren0)], +oncia_ShowColumn, "ShowColumn", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowColumn_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowColumn_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowColumn_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowColumn_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowColumn_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowColumn_toString), "$equals", $rt_wrapFunction1(oncia_ShowColumn_equals)], +oncia_ASTAnnotationMap$PositionedNode, "ASTAnnotationMap$PositionedNode", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncia_ASTAnnotationMap$PositionedNode_toString), "$equals", $rt_wrapFunction1(oncia_ASTAnnotationMap$PositionedNode_equals), "$hashCode", $rt_wrapFunction0(oncia_ASTAnnotationMap$PositionedNode_hashCode), "$productArity", $rt_wrapFunction0(oncia_ASTAnnotationMap$PositionedNode_productArity), "$productElement", $rt_wrapFunction1(oncia_ASTAnnotationMap$PositionedNode_productElement), +"$productIterator", $rt_wrapFunction0(oncia_ASTAnnotationMap$PositionedNode_productIterator)], +ju_TemplateCollections$ImmutableArrayList, "TemplateCollections$ImmutableArrayList", 5, ju_TemplateCollections$AbstractImmutableList, [ju_RandomAccess], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_TemplateCollections$ImmutableArrayList_get), "$size", $rt_wrapFunction0(ju_TemplateCollections$ImmutableArrayList_size)], +oncia_SingleQuery$semanticCheck$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheck$lambda$_74_0_apply)], oncie_SensitiveLiteral, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_Null$$anon$7, "Null$$anon$7", 64, oncie_Null, [oncie_SensitiveLiteral], 4, 3, [oncie_Null,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_Null$$anon$7_literalLength)], -sc_IndexedSeqView$IndexedSeqViewReverseIterator, "IndexedSeqView$IndexedSeqViewReverseIterator", 21, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewReverseIterator_hasNext), "$next", $rt_wrapFunction0(sc_IndexedSeqView$IndexedSeqViewReverseIterator_next)], -scm_CheckedIndexedSeqView$CheckedReverseIterator, "CheckedIndexedSeqView$CheckedReverseIterator", 23, sc_IndexedSeqView$IndexedSeqViewReverseIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_CheckedIndexedSeqView$CheckedReverseIterator_hasNext)], -jusi_BoxedIntStream, 0, jusi_SimpleStreamImpl, [], 0, 3, 0, 0, 0, -ju_HashMap$AbstractMapIterator, 0, jl_Object, [], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_HashMap$AbstractMapIterator_hasNext), "$remove2", $rt_wrapFunction0(ju_HashMap$AbstractMapIterator_remove)], -ju_HashMap$KeyIterator, 0, ju_HashMap$AbstractMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_HashMap$KeyIterator_next)], -juf_IntFunction, 0, jl_Object, [], 3, 3, 0, 0, 0, -jusi_SimpleStreamImpl$toArray$lambda$_20_0, 0, jl_Object, [juf_IntFunction], 0, 3, 0, 0, 0, -oncia_ShowColumn, "ShowColumn", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowColumn_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowColumn_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowColumn_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowColumn_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowColumn_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowColumn_toString), "$equals", $rt_wrapFunction1(oncia_ShowColumn_equals)], -oncie_In, "In", 64, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_In_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_In_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_In_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_In_lhs), "$rhs0", $rt_wrapFunction0(oncie_In_rhs), "$position", $rt_wrapFunction0(oncie_In_position), "$productPrefix", -$rt_wrapFunction0(oncie_In_productPrefix), "$productArity", $rt_wrapFunction0(oncie_In_productArity), "$productElement", $rt_wrapFunction1(oncie_In_productElement), "$productIterator", $rt_wrapFunction0(oncie_In_productIterator), "$hashCode", $rt_wrapFunction0(oncie_In_hashCode), "$toString", $rt_wrapFunction0(oncie_In_toString), "$equals", $rt_wrapFunction1(oncie_In_equals)], -oncie_ListLiteral, "ListLiteral", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ListLiteral_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_ListLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_ListLiteral_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ListLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ListLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_ListLiteral_productElement), +oncie_Null$$anon$7, "Null$$anon$7", 62, oncie_Null, [oncie_SensitiveLiteral], 4, 3, [oncie_Null,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_Null$$anon$7_literalLength)], +oncia_ShowPrivilegeScope, 0, jl_Object, [onciu_Rewritable], 3, 3, 0, 0, 0, +oncie_In, "In", 62, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_In_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_In_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_In_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_In_lhs), "$rhs", $rt_wrapFunction0(oncie_In_rhs), "$position", $rt_wrapFunction0(oncie_In_position), "$productPrefix", $rt_wrapFunction0(oncie_In_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_In_productArity), "$productElement", $rt_wrapFunction1(oncie_In_productElement), "$productIterator", $rt_wrapFunction0(oncie_In_productIterator), "$hashCode", $rt_wrapFunction0(oncie_In_hashCode), "$toString", $rt_wrapFunction0(oncie_In_toString), "$equals", $rt_wrapFunction1(oncie_In_equals)], +oncie_ListLiteral, "ListLiteral", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ListLiteral_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_ListLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_ListLiteral_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ListLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ListLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_ListLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_ListLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ListLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_ListLiteral_toString), "$equals", $rt_wrapFunction1(oncie_ListLiteral_equals)], oncie_BooleanLiteral, 0, jl_Object, [oncie_Literal], 3, 3, 0, 0, 0, -oncie_False, "False", 64, oncie_Expression, [oncie_BooleanLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_False_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_False_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_False_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_False_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_False_productPrefix), "$productArity", $rt_wrapFunction0(oncie_False_productArity), "$productElement", +oncie_False, "False", 62, oncie_Expression, [oncie_BooleanLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_False_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_False_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_False_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_False_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_False_productPrefix), "$productArity", $rt_wrapFunction0(oncie_False_productArity), "$productElement", $rt_wrapFunction1(oncie_False_productElement), "$productIterator", $rt_wrapFunction0(oncie_False_productIterator), "$hashCode", $rt_wrapFunction0(oncie_False_hashCode), "$toString", $rt_wrapFunction0(oncie_False_toString), "$equals", $rt_wrapFunction1(oncie_False_equals)], -oncia_ASTAnnotationMap$PositionedNode, "ASTAnnotationMap$PositionedNode", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oncia_ASTAnnotationMap$PositionedNode_toString), "$equals", $rt_wrapFunction1(oncia_ASTAnnotationMap$PositionedNode_equals), "$hashCode", $rt_wrapFunction0(oncia_ASTAnnotationMap$PositionedNode_hashCode), "$productArity", $rt_wrapFunction0(oncia_ASTAnnotationMap$PositionedNode_productArity), "$productElement", $rt_wrapFunction1(oncia_ASTAnnotationMap$PositionedNode_productElement), -"$productIterator", $rt_wrapFunction0(oncia_ASTAnnotationMap$PositionedNode_productIterator)], -oncia_SingleQuery$semanticCheck$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheck$lambda$_67_0_apply)], -scm_RedBlackTree$TreeIterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_RedBlackTree$TreeIterator_hasNext), "$next", $rt_wrapFunction0(scm_RedBlackTree$TreeIterator_next)], -scm_RedBlackTree$KeysIterator, "RedBlackTree$KeysIterator", 23, scm_RedBlackTree$TreeIterator, [], 4, 3, 0, 0, 0, -oncia_ShowPrivilegeScope, 0, jl_Object, [onciu_Rewritable], 3, 3, 0, 0, 0, -ju_HashMap$HashMapEntrySet, 0, ju_AbstractSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_HashMap$HashMapEntrySet_size), "$iterator", $rt_wrapFunction0(ju_HashMap$HashMapEntrySet_iterator)], +oncia_DatabaseScope, 0, jl_Object, [onciu_Rewritable], 3, 3, 0, 0, 0, oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasImplicitlyAliasedReturnItems$lambda$_40_0_apply)], -oncia_Union, 0, jl_Object, [oncia_Query], 3, 3, 0, 0, 0, -oncia_UnmappedUnion, 0, jl_Object, [oncia_Union], 3, 3, 0, 0, 0, -oncia_UnionAll, "UnionAll", 36, jl_Object, [oncia_UnmappedUnion, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup", $rt_wrapFunction1(oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup), "$unionMappings", $rt_wrapFunction0(oncia_UnionAll_unionMappings), "$checkColumnNamesAgree", $rt_wrapFunction0(oncia_UnionAll_checkColumnNamesAgree), "$returnVariables", $rt_wrapFunction0(oncia_UnionAll_returnVariables), "$getReturns", $rt_wrapFunction0(oncia_UnionAll_getReturns), -"$importColumns", $rt_wrapFunction0(oncia_UnionAll_importColumns), "$containsUpdates", $rt_wrapFunction0(oncia_UnionAll_containsUpdates), "$semanticCheck", $rt_wrapFunction0(oncia_UnionAll_semanticCheck), "$semanticCheckInSubqueryExpressionContext", $rt_wrapFunction1(oncia_UnionAll_semanticCheckInSubqueryExpressionContext), "$checkImportingWith", $rt_wrapFunction0(oncia_UnionAll_checkImportingWith), "$isCorrelated", $rt_wrapFunction0(oncia_UnionAll_isCorrelated), "$isReturning", $rt_wrapFunction0(oncia_UnionAll_isReturning), -"$endsWithFinish", $rt_wrapFunction0(oncia_UnionAll_endsWithFinish), "$semanticCheckInSubqueryContext", $rt_wrapFunction2(oncia_UnionAll_semanticCheckInSubqueryContext), "$semanticCheckImportingWithSubQueryContext", $rt_wrapFunction1(oncia_UnionAll_semanticCheckImportingWithSubQueryContext), "$finalScope", $rt_wrapFunction1(oncia_UnionAll_finalScope), "$returnColumns", $rt_wrapFunction0(oncia_UnionAll_returnColumns), "$withScopedState", $rt_wrapFunction1(oncia_UnionAll_withScopedState), "$error2", $rt_wrapFunction2(oncia_UnionAll_error), -"$foldedOver", $rt_wrapFunction0(oncia_UnionAll_foldedOver), "$folder", $rt_wrapFunction0(oncia_UnionAll_folder), "$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings", $rt_wrapFunction0(oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings), "$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq", $rt_wrapFunction1(oncia_UnionAll_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq), "$lhs", $rt_wrapFunction0(oncia_UnionAll_lhs), "$rhs", $rt_wrapFunction0(oncia_UnionAll_rhs), -"$differentReturnOrderAllowed", $rt_wrapFunction0(oncia_UnionAll_differentReturnOrderAllowed), "$position", $rt_wrapFunction0(oncia_UnionAll_position), "$mapEachSingleQuery", $rt_wrapFunction1(oncia_UnionAll_mapEachSingleQuery), "$productPrefix", $rt_wrapFunction0(oncia_UnionAll_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UnionAll_productArity), "$productElement", $rt_wrapFunction1(oncia_UnionAll_productElement), "$productIterator", $rt_wrapFunction0(oncia_UnionAll_productIterator), "$hashCode", -$rt_wrapFunction0(oncia_UnionAll_hashCode), "$toString", $rt_wrapFunction0(oncia_UnionAll_toString), "$equals", $rt_wrapFunction1(oncia_UnionAll_equals), "$dup", $rt_wrapFunction1(oncia_UnionAll_dup)], -oncia_UnionDistinct, "UnionDistinct", 36, jl_Object, [oncia_UnmappedUnion, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup", $rt_wrapFunction1(oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$super$dup), "$unionMappings", $rt_wrapFunction0(oncia_UnionDistinct_unionMappings), "$checkColumnNamesAgree", $rt_wrapFunction0(oncia_UnionDistinct_checkColumnNamesAgree), "$returnVariables", $rt_wrapFunction0(oncia_UnionDistinct_returnVariables), "$getReturns", -$rt_wrapFunction0(oncia_UnionDistinct_getReturns), "$importColumns", $rt_wrapFunction0(oncia_UnionDistinct_importColumns), "$containsUpdates", $rt_wrapFunction0(oncia_UnionDistinct_containsUpdates), "$semanticCheck", $rt_wrapFunction0(oncia_UnionDistinct_semanticCheck), "$semanticCheckInSubqueryExpressionContext", $rt_wrapFunction1(oncia_UnionDistinct_semanticCheckInSubqueryExpressionContext), "$checkImportingWith", $rt_wrapFunction0(oncia_UnionDistinct_checkImportingWith), "$isCorrelated", $rt_wrapFunction0(oncia_UnionDistinct_isCorrelated), -"$isReturning", $rt_wrapFunction0(oncia_UnionDistinct_isReturning), "$endsWithFinish", $rt_wrapFunction0(oncia_UnionDistinct_endsWithFinish), "$semanticCheckInSubqueryContext", $rt_wrapFunction2(oncia_UnionDistinct_semanticCheckInSubqueryContext), "$semanticCheckImportingWithSubQueryContext", $rt_wrapFunction1(oncia_UnionDistinct_semanticCheckImportingWithSubQueryContext), "$finalScope", $rt_wrapFunction1(oncia_UnionDistinct_finalScope), "$returnColumns", $rt_wrapFunction0(oncia_UnionDistinct_returnColumns), -"$withScopedState", $rt_wrapFunction1(oncia_UnionDistinct_withScopedState), "$error2", $rt_wrapFunction2(oncia_UnionDistinct_error), "$foldedOver", $rt_wrapFunction0(oncia_UnionDistinct_foldedOver), "$folder", $rt_wrapFunction0(oncia_UnionDistinct_folder), "$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings", $rt_wrapFunction0(oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings), "$org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq", $rt_wrapFunction1(oncia_UnionDistinct_org$neo4j$cypher$internal$ast$UnmappedUnion$$_unionMappings_$eq), -"$lhs", $rt_wrapFunction0(oncia_UnionDistinct_lhs), "$rhs", $rt_wrapFunction0(oncia_UnionDistinct_rhs), "$differentReturnOrderAllowed", $rt_wrapFunction0(oncia_UnionDistinct_differentReturnOrderAllowed), "$position", $rt_wrapFunction0(oncia_UnionDistinct_position), "$mapEachSingleQuery", $rt_wrapFunction1(oncia_UnionDistinct_mapEachSingleQuery), "$productPrefix", $rt_wrapFunction0(oncia_UnionDistinct_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UnionDistinct_productArity), "$productElement", $rt_wrapFunction1(oncia_UnionDistinct_productElement), -"$productIterator", $rt_wrapFunction0(oncia_UnionDistinct_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UnionDistinct_hashCode), "$toString", $rt_wrapFunction0(oncia_UnionDistinct_toString), "$equals", $rt_wrapFunction1(oncia_UnionDistinct_equals), "$dup", $rt_wrapFunction1(oncia_UnionDistinct_dup)], -oncia_ProjectingUnion, 0, jl_Object, [oncia_Union], 3, 3, 0, 0, 0, scm_ArrayDeque$addAll$lambda$_98_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(scm_ArrayDeque$addAll$lambda$_98_0_apply)], scm_ArrayDeque$addAll$lambda$_98_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(scm_ArrayDeque$addAll$lambda$_98_1_apply)], -jusi_FilteringStreamImpl, 0, jusi_WrappingStreamImpl, [], 0, 3, 0, 0, ["$wrap4", $rt_wrapFunction1(jusi_FilteringStreamImpl_wrap)], -ju_LinkedList$SequentialListIterator, 0, jl_Object, [ju_ListIterator], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_LinkedList$SequentialListIterator_hasNext), "$next", $rt_wrapFunction0(ju_LinkedList$SequentialListIterator_next), "$nextIndex", $rt_wrapFunction0(ju_LinkedList$SequentialListIterator_nextIndex)], -ju_LinkedList$Entry, 0, jl_Object, [], 0, 0, 0, 0, 0, oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_0_apply)], oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RewriteProcedureCalls$org$neo4j$cypher$internal$frontend$phases$RewriteProcedureCalls$$getResolvedAndProjection$lambda$_12_1_apply)], -su_Try$, 0, jl_Object, [ji_Serializable], 4, 3, 0, su_Try$_$callClinit, 0, +su_Try$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, oncifp_TryRewriteProcedureCalls$resolveProcedure$lambda$_18_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, oncief_UserDefinedFunctionInvocation, 0, jl_Object, [], 3, 3, 0, 0, 0, oncias_SemanticCheckableExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_ResolvedFunctionInvocation, "ResolvedFunctionInvocation", 67, oncie_Expression, [oncief_UserDefinedFunctionInvocation, oncias_SemanticCheckableExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_position), "$isConstantForQuery", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_productArity), +oncifp_ResolvedFunctionInvocation, "ResolvedFunctionInvocation", 65, oncie_Expression, [oncief_UserDefinedFunctionInvocation, oncias_SemanticCheckableExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_position), "$isConstantForQuery", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_productArity), "$productElement", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation_productElement), "$productIterator", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_hashCode), "$toString", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation_toString), "$equals", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation_equals)], oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_0_apply)], oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_1_apply)], oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_2_apply)], oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_3_apply)], -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4_apply)], -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0_apply)], +oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$returnItems$lambda$_37_4_apply)]]); +$rt_metadata([oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_0_apply)], oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_1_apply)], oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_2_apply)], oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_3_apply)], -oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4_apply)]]); -$rt_metadata([oncias_SymbolUse, "SymbolUse", 41, jl_Object, [s_Product, ji_Serializable], 4, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oncias_SymbolUse_toString), "$productPrefix", $rt_wrapFunction0(oncias_SymbolUse_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SymbolUse_productArity), "$productElement", $rt_wrapFunction1(oncias_SymbolUse_productElement), "$productIterator", $rt_wrapFunction0(oncias_SymbolUse_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SymbolUse_hashCode), "$equals", -$rt_wrapFunction1(oncias_SymbolUse_equals)], +oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$org$neo4j$cypher$internal$rewriting$rewriters$expandStar$$importVariables$lambda$_39_4_apply)], +oncias_SymbolUse, "SymbolUse", 40, jl_Object, [s_Product, ji_Serializable], 4, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oncias_SymbolUse_toString), "$productPrefix", $rt_wrapFunction0(oncias_SymbolUse_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SymbolUse_productArity), "$productElement", $rt_wrapFunction1(oncias_SymbolUse_productElement), "$productIterator", $rt_wrapFunction0(oncias_SymbolUse_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SymbolUse_hashCode), "$equals", $rt_wrapFunction1(oncias_SymbolUse_equals)], sci_HashCollisionMapNode$foreachEntry$lambda$_24_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionMapNode$foreachEntry$lambda$_24_0_apply)], -onciafn_Neo4jASTConstructionException, "Neo4jASTConstructionException", 38, ong_GqlRuntimeException, [onkae_Status$HasStatus], 0, 3, 0, 0, ["$cause0", $rt_wrapFunction0(ong_ErrorGqlStatusObject_cause)], -oncia_GraphFunctionReference, "GraphFunctionReference", 36, oncie_Expression, [oncia_GraphReference, oncias_SemanticAnalysisTooling, ji_Serializable], 4, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_GraphFunctionReference_semanticCheck), "$position", $rt_wrapFunction0(oncia_GraphFunctionReference_position), "$print0", $rt_wrapFunction0(oncia_GraphFunctionReference_print), "$dependencies", $rt_wrapFunction0(oncia_GraphFunctionReference_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_GraphFunctionReference_isConstantForQuery), -"$semanticallyEqual", $rt_wrapFunction1(oncia_GraphFunctionReference_semanticallyEqual), "$productPrefix", $rt_wrapFunction0(oncia_GraphFunctionReference_productPrefix), "$productArity", $rt_wrapFunction0(oncia_GraphFunctionReference_productArity), "$productElement", $rt_wrapFunction1(oncia_GraphFunctionReference_productElement), "$productIterator", $rt_wrapFunction0(oncia_GraphFunctionReference_productIterator), "$hashCode", $rt_wrapFunction0(oncia_GraphFunctionReference_hashCode), "$toString", $rt_wrapFunction0(oncia_GraphFunctionReference_toString), -"$equals", $rt_wrapFunction1(oncia_GraphFunctionReference_equals)], -oncia_NamespacedName, "NamespacedName", 36, jl_Object, [oncia_DatabaseName, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_NamespacedName_position), "$toString", $rt_wrapFunction0(oncia_NamespacedName_toString), "$productPrefix", $rt_wrapFunction0(oncia_NamespacedName_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NamespacedName_productArity), "$productElement", $rt_wrapFunction1(oncia_NamespacedName_productElement), "$productIterator", $rt_wrapFunction0(oncia_NamespacedName_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_NamespacedName_hashCode), "$equals", $rt_wrapFunction1(oncia_NamespacedName_equals), "$dup", $rt_wrapFunction1(oncia_NamespacedName_dup)], -oncia_ParameterName, "ParameterName", 36, jl_Object, [oncia_DatabaseName, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_ParameterName_position), "$productPrefix", $rt_wrapFunction0(oncia_ParameterName_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ParameterName_productArity), "$productElement", $rt_wrapFunction1(oncia_ParameterName_productElement), "$productIterator", $rt_wrapFunction0(oncia_ParameterName_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ParameterName_hashCode), -"$toString", $rt_wrapFunction0(oncia_ParameterName_toString), "$equals", $rt_wrapFunction1(oncia_ParameterName_equals), "$dup", $rt_wrapFunction1(oncia_ParameterName_dup)], -oncia_WriteAdministrationCommand, 0, jl_Object, [oncia_AdministrationCommand], 3, 3, 0, 0, 0, -oncia_CreateRemoteDatabaseAlias, "CreateRemoteDatabaseAlias", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_withGraph), -"$requireFeatureSupport", $rt_wrapFunction3(oncia_CreateRemoteDatabaseAlias_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_CreateRemoteDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_name), -"$semanticCheck", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_toString), -"$equals", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_withGraph0)], -onciafn_DecorateTuple, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciafn_TupleConverter$, 0, jl_Object, [onciafn_DecorateTuple], 4, 3, 0, onciafn_TupleConverter$_$callClinit, 0, -onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_0_apply)], -onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createRemoteDatabaseAlias$lambda$_244_1_apply)], -oncia_CreateLocalDatabaseAlias, "CreateLocalDatabaseAlias", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_withGraph0), -"$requireFeatureSupport", $rt_wrapFunction3(oncia_CreateLocalDatabaseAlias_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_CreateLocalDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_name), -"$semanticCheck", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_toString), -"$equals", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_withGraph)], -onciafn_Neo4jASTFactory$createLocalDatabaseAlias$lambda$_243_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createLocalDatabaseAlias$lambda$_243_0_apply)], -oncia_NoWait$, "NoWait$", 36, jl_Object, [oncia_WaitUntilComplete, s_Product, ji_Serializable], 4, 3, 0, oncia_NoWait$_$callClinit, ["$org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq", $rt_wrapFunction1(oncia_NoWait$_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq), "$name", $rt_wrapFunction0(oncia_NoWait$_name0), "$productArity", $rt_wrapFunction0(oncia_NoWait$_productArity), "$productElement", $rt_wrapFunction1(oncia_NoWait$_productElement), "$productIterator", -$rt_wrapFunction0(oncia_NoWait$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NoWait$_hashCode), "$toString", $rt_wrapFunction0(oncia_NoWait$_toString)], -oncia_IndefiniteWait$, "IndefiniteWait$", 36, jl_Object, [oncia_WaitUntilComplete, s_Product, ji_Serializable], 4, 3, 0, oncia_IndefiniteWait$_$callClinit, ["$org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq", $rt_wrapFunction1(oncia_IndefiniteWait$_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq), "$name", $rt_wrapFunction0(oncia_IndefiniteWait$_name0), "$productArity", $rt_wrapFunction0(oncia_IndefiniteWait$_productArity), "$productElement", $rt_wrapFunction1(oncia_IndefiniteWait$_productElement), -"$productIterator", $rt_wrapFunction0(oncia_IndefiniteWait$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IndefiniteWait$_hashCode), "$toString", $rt_wrapFunction0(oncia_IndefiniteWait$_toString)], -oncia_TimeoutAfter, "TimeoutAfter", 36, jl_Object, [oncia_WaitUntilComplete, s_Product, ji_Serializable], 0, 3, 0, 0, ["$org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq", $rt_wrapFunction1(oncia_TimeoutAfter_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq), "$name", $rt_wrapFunction0(oncia_TimeoutAfter_name), "$productPrefix", $rt_wrapFunction0(oncia_TimeoutAfter_productPrefix), "$productArity", $rt_wrapFunction0(oncia_TimeoutAfter_productArity), "$productElement", -$rt_wrapFunction1(oncia_TimeoutAfter_productElement), "$productIterator", $rt_wrapFunction0(oncia_TimeoutAfter_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TimeoutAfter_hashCode), "$toString", $rt_wrapFunction0(oncia_TimeoutAfter_toString), "$equals", $rt_wrapFunction1(oncia_TimeoutAfter_equals)], -oncia_WaitableAdministrationCommand, 0, jl_Object, [oncia_WriteAdministrationCommand], 3, 3, 0, 0, 0, -oncia_CreateCompositeDatabase, "CreateCompositeDatabase", 36, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateCompositeDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateCompositeDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateCompositeDatabase_withGraph), -"$requireFeatureSupport", $rt_wrapFunction3(oncia_CreateCompositeDatabase_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_CreateCompositeDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateCompositeDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateCompositeDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_CreateCompositeDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_CreateCompositeDatabase_position), -"$name", $rt_wrapFunction0(oncia_CreateCompositeDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_CreateCompositeDatabase_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateCompositeDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateCompositeDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateCompositeDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateCompositeDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateCompositeDatabase_hashCode), -"$toString", $rt_wrapFunction0(oncia_CreateCompositeDatabase_toString), "$equals", $rt_wrapFunction1(oncia_CreateCompositeDatabase_equals), "$dup", $rt_wrapFunction1(oncia_CreateCompositeDatabase_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateCompositeDatabase_withGraph0)], -oncia_Options, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$createConstraint$lambda$_162_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createConstraint$lambda$_162_0_apply)], -oncia_CreateConstraint$, 0, jl_Object, [], 4, 3, 0, oncia_CreateConstraint$_$callClinit, 0, -oncil_LabelExpressionLeafName, 0, jl_Object, [oncie_SymbolicName], 3, 3, 0, 0, 0, -oncie_ElementTypeName, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_LabelName, "LabelName", 64, jl_Object, [oncil_LabelExpressionLeafName, oncie_ElementTypeName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_LabelName_name), "$position", $rt_wrapFunction0(oncie_LabelName_position), "$productPrefix", $rt_wrapFunction0(oncie_LabelName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LabelName_productArity), "$productElement", $rt_wrapFunction1(oncie_LabelName_productElement), "$productIterator", $rt_wrapFunction0(oncie_LabelName_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_LabelName_hashCode), "$toString", $rt_wrapFunction0(oncie_LabelName_toString), "$equals", $rt_wrapFunction1(oncie_LabelName_equals), "$dup", $rt_wrapFunction1(oncie_LabelName_dup)], -oncie_RelTypeName, "RelTypeName", 64, jl_Object, [oncil_LabelExpressionLeafName, oncie_ElementTypeName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_RelTypeName_name), "$position", $rt_wrapFunction0(oncie_RelTypeName_position), "$productPrefix", $rt_wrapFunction0(oncie_RelTypeName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RelTypeName_productArity), "$productElement", $rt_wrapFunction1(oncie_RelTypeName_productElement), "$productIterator", $rt_wrapFunction0(oncie_RelTypeName_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_RelTypeName_hashCode), "$toString", $rt_wrapFunction0(oncie_RelTypeName_toString), "$equals", $rt_wrapFunction1(oncie_RelTypeName_equals), "$dup", $rt_wrapFunction1(oncie_RelTypeName_dup)], -onciafn_Neo4jASTFactory$createDatabase$lambda$_232_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createDatabase$lambda$_232_0_apply)], -onciafn_Neo4jASTFactory$createDatabase$lambda$_232_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createDatabase$lambda$_232_1_apply)], -oncia_CreateDatabase, "CreateDatabase", 36, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateDatabase_withGraph0), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_CreateDatabase_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_CreateDatabase_error0), "$error4", $rt_wrapFunction3(oncia_CreateDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_CreateDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_CreateDatabase_position), "$name", $rt_wrapFunction0(oncia_CreateDatabase_name), -"$semanticCheck", $rt_wrapFunction0(oncia_CreateDatabase_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateDatabase_toString), "$equals", $rt_wrapFunction1(oncia_CreateDatabase_equals), -"$dup", $rt_wrapFunction1(oncia_CreateDatabase_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateDatabase_withGraph)], -oncia_Topology, "Topology", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Topology_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Topology_productArity), "$productElement", $rt_wrapFunction1(oncia_Topology_productElement), "$productIterator", $rt_wrapFunction0(oncia_Topology_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Topology_hashCode), "$toString", $rt_wrapFunction0(oncia_Topology_toString), "$equals", $rt_wrapFunction1(oncia_Topology_equals)], -oncia_CreateRole, "CreateRole", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateRole_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateRole_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateRole_withGraph0), "$requireFeatureSupport", $rt_wrapFunction3(oncia_CreateRole_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_CreateRole_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateRole_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateRole_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_CreateRole_position), "$name", $rt_wrapFunction0(oncia_CreateRole_name), "$semanticCheck", $rt_wrapFunction0(oncia_CreateRole_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateRole_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateRole_productArity), "$productElement", -$rt_wrapFunction1(oncia_CreateRole_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateRole_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateRole_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateRole_toString), "$equals", $rt_wrapFunction1(oncia_CreateRole_equals), "$dup", $rt_wrapFunction1(oncia_CreateRole_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateRole_withGraph)], -onciafn_Neo4jASTFactory$createRole$lambda$_171_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createRole$lambda$_171_0_apply)], -oncia_HomeDatabaseAction, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_SetHomeDatabaseAction, "SetHomeDatabaseAction", 36, jl_Object, [oncia_HomeDatabaseAction, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_productArity), "$productElement", $rt_wrapFunction1(oncia_SetHomeDatabaseAction_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_hashCode), -"$toString", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_toString), "$equals", $rt_wrapFunction1(oncia_SetHomeDatabaseAction_equals)], -oncia_UserOptions, "UserOptions", 36, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_UserOptions_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UserOptions_productArity), "$productElement", $rt_wrapFunction1(oncia_UserOptions_productElement), "$productIterator", $rt_wrapFunction0(oncia_UserOptions_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UserOptions_hashCode), "$toString", $rt_wrapFunction0(oncia_UserOptions_toString), "$equals", $rt_wrapFunction1(oncia_UserOptions_equals)], -oncia_Auth, "Auth", 36, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_Auth_position), "$productPrefix", $rt_wrapFunction0(oncia_Auth_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Auth_productArity), "$productElement", $rt_wrapFunction1(oncia_Auth_productElement), "$productIterator", $rt_wrapFunction0(oncia_Auth_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Auth_hashCode), "$toString", $rt_wrapFunction0(oncia_Auth_toString), "$equals", -$rt_wrapFunction1(oncia_Auth_equals), "$dup", $rt_wrapFunction1(oncia_Auth_dup)], -oncia_AdministrationCommand$, 0, jl_Object, [], 4, 3, 0, oncia_AdministrationCommand$_$callClinit, 0, -oncia_AuthAttribute, "AuthAttribute", 36, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, -oncia_UserAuth, 0, jl_Object, [oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, -oncia_CreateUser, "CreateUser", 36, jl_Object, [oncia_WriteAdministrationCommand, oncia_UserAuth, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateUser_withGraph), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_CreateUser_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_CreateUser_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateUser_folder), "$externalAuths", $rt_wrapFunction0(oncia_CreateUser_externalAuths), "$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths", $rt_wrapFunction0(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq", -$rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq), -"$org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$newStyleAuth", $rt_wrapFunction0(oncia_CreateUser_newStyleAuth), "$oldStyleAuth", $rt_wrapFunction0(oncia_CreateUser_oldStyleAuth), "$position", $rt_wrapFunction0(oncia_CreateUser_position), -"$name", $rt_wrapFunction0(oncia_CreateUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_CreateUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateUser_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateUser_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateUser_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateUser_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateUser_toString), -"$equals", $rt_wrapFunction1(oncia_CreateUser_equals), "$dup", $rt_wrapFunction1(oncia_CreateUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateUser_withGraph0)], -oncie_FunctionInvocation$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncie_FunctionInvocation$_$callClinit, 0, -oncie_ExplicitParameter, "ExplicitParameter", 64, oncie_Expression, [oncie_Parameter, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_ExplicitParameter_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_ExplicitParameter_isConstantForQuery), "$name", $rt_wrapFunction0(oncie_ExplicitParameter_name), "$parameterType", $rt_wrapFunction0(oncie_ExplicitParameter_parameterType), "$sizeHint1", $rt_wrapFunction0(oncie_ExplicitParameter_sizeHint), "$position", -$rt_wrapFunction0(oncie_ExplicitParameter_position), "$hashCode", $rt_wrapFunction0(oncie_ExplicitParameter_hashCode), "$canEqual", $rt_wrapFunction1(oncie_ExplicitParameter_canEqual), "$equals", $rt_wrapFunction1(oncie_ExplicitParameter_equals), "$productPrefix", $rt_wrapFunction0(oncie_ExplicitParameter_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ExplicitParameter_productArity), "$productElement", $rt_wrapFunction1(oncie_ExplicitParameter_productElement), "$productIterator", $rt_wrapFunction0(oncie_ExplicitParameter_productIterator), -"$toString", $rt_wrapFunction0(oncie_ExplicitParameter_toString)], -onciafn_Neo4jASTFactory$$anon$3, "Neo4jASTFactory$$anon$3", 38, oncie_ExplicitParameter, [oncie_SensitiveParameter], 4, 3, [onciafn_Neo4jASTFactory,0,0], 0, 0, -oncie_SensitiveStringLiteral, "SensitiveStringLiteral", 64, oncie_Expression, [oncie_SensitiveLiteral, ji_Serializable], 4, 3, [0,0,0], 0, ["$equals", $rt_wrapFunction1(oncie_SensitiveStringLiteral_equals), "$hashCode", $rt_wrapFunction0(oncie_SensitiveStringLiteral_hashCode), "$literalLength", $rt_wrapFunction0(oncie_SensitiveStringLiteral_literalLength), "$isConstantForQuery", $rt_wrapFunction0(oncie_SensitiveStringLiteral_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_SensitiveStringLiteral_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_SensitiveStringLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_SensitiveStringLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_SensitiveStringLiteral_productIterator), "$toString", $rt_wrapFunction0(oncie_SensitiveStringLiteral_toString), "$dup", $rt_wrapFunction1(oncie_SensitiveStringLiteral_dup1), "$dup0", $rt_wrapFunction1(oncie_SensitiveStringLiteral_dup0), "$position", $rt_wrapFunction0(oncie_SensitiveStringLiteral_position)], -jnc_StandardCharsets, 0, jl_Object, [], 4, 3, 0, jnc_StandardCharsets_$callClinit, 0, -onciafn_Neo4jASTFactory$createIndex$lambda$_168_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createIndex$lambda$_168_0_apply)], -oncia_CreateIndex$, 0, jl_Object, [], 4, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_0_apply)], -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_1_apply)], -onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createFulltextIndex$lambda$_169_2_apply)]]); -$rt_metadata([onciafn_Neo4jASTFactory$createLookupIndex$lambda$_167_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createLookupIndex$lambda$_167_0_apply)], -oncia_ExternalAuthAttribute, 0, jl_Object, [oncia_AuthAttribute], 3, 3, 0, 0, 0, -oncia_AuthId, "AuthId", 36, jl_Object, [oncia_ExternalAuthAttribute, ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_AuthId_position), "$name", $rt_wrapFunction0(oncia_AuthId_name), "$productPrefix", $rt_wrapFunction0(oncia_AuthId_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AuthId_productArity), "$productElement", $rt_wrapFunction1(oncia_AuthId_productElement), "$productIterator", $rt_wrapFunction0(oncia_AuthId_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AuthId_hashCode), -"$toString", $rt_wrapFunction0(oncia_AuthId_toString), "$equals", $rt_wrapFunction1(oncia_AuthId_equals), "$dup", $rt_wrapFunction1(oncia_AuthId_dup)], -oncia_NativeAuthAttribute, 0, jl_Object, [oncia_AuthAttribute], 3, 3, 0, 0, 0, -oncia_Password, "Password", 36, jl_Object, [oncia_NativeAuthAttribute, ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_Password_position), "$name", $rt_wrapFunction0(oncia_Password_name), "$productPrefix", $rt_wrapFunction0(oncia_Password_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Password_productArity), "$productElement", $rt_wrapFunction1(oncia_Password_productElement), "$productIterator", $rt_wrapFunction0(oncia_Password_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Password_hashCode), -"$toString", $rt_wrapFunction0(oncia_Password_toString), "$equals", $rt_wrapFunction1(oncia_Password_equals), "$dup", $rt_wrapFunction1(oncia_Password_dup)], -oncia_PasswordChange, "PasswordChange", 36, jl_Object, [oncia_NativeAuthAttribute, ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_PasswordChange_position), "$name", $rt_wrapFunction0(oncia_PasswordChange_name), "$productPrefix", $rt_wrapFunction0(oncia_PasswordChange_productPrefix), "$productArity", $rt_wrapFunction0(oncia_PasswordChange_productArity), "$productElement", $rt_wrapFunction1(oncia_PasswordChange_productElement), "$productIterator", $rt_wrapFunction0(oncia_PasswordChange_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_PasswordChange_hashCode), "$toString", $rt_wrapFunction0(oncia_PasswordChange_toString), "$equals", $rt_wrapFunction1(oncia_PasswordChange_equals), "$dup", $rt_wrapFunction1(oncia_PasswordChange_dup)], -oncia_PrivilegeCommand, 0, jl_Object, [oncia_WriteAdministrationCommand], 1, 3, 0, 0, ["$returnColumns", $rt_wrapFunction0(oncia_PrivilegeCommand_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_PrivilegeCommand_useGraph), "$withGraph", $rt_wrapFunction1(oncia_PrivilegeCommand_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_PrivilegeCommand_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_PrivilegeCommand_error), "$foldedOver", $rt_wrapFunction0(oncia_PrivilegeCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_PrivilegeCommand_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$dup", $rt_wrapFunction1(oncia_PrivilegeCommand_dup), "$withGraph0", $rt_wrapFunction1(oncia_PrivilegeCommand_withGraph0)], -oncia_DenyPrivilege, "DenyPrivilege", 36, oncia_PrivilegeCommand, [ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_DenyPrivilege_position), "$name", $rt_wrapFunction0(oncia_DenyPrivilege_name), "$semanticCheck", $rt_wrapFunction0(oncia_DenyPrivilege_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DenyPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DenyPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_DenyPrivilege_productElement), "$productIterator", -$rt_wrapFunction0(oncia_DenyPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DenyPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_DenyPrivilege_toString), "$equals", $rt_wrapFunction1(oncia_DenyPrivilege_equals)], -onciafn_Neo4jASTFactory$denyPrivilege$lambda$_196_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$denyPrivilege$lambda$_196_0_apply)], -oncia_EnableServer, "EnableServer", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_EnableServer_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_EnableServer_useGraph), "$withGraph", $rt_wrapFunction1(oncia_EnableServer_withGraph), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_EnableServer_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_EnableServer_error), "$foldedOver", $rt_wrapFunction0(oncia_EnableServer_foldedOver), "$folder", $rt_wrapFunction0(oncia_EnableServer_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_EnableServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", -$rt_wrapFunction0(oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_EnableServer_position), "$name", $rt_wrapFunction0(oncia_EnableServer_name), "$semanticCheck", $rt_wrapFunction0(oncia_EnableServer_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_EnableServer_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_EnableServer_productArity), "$productElement", $rt_wrapFunction1(oncia_EnableServer_productElement), "$productIterator", $rt_wrapFunction0(oncia_EnableServer_productIterator), "$hashCode", $rt_wrapFunction0(oncia_EnableServer_hashCode), "$toString", $rt_wrapFunction0(oncia_EnableServer_toString), "$equals", $rt_wrapFunction1(oncia_EnableServer_equals), "$dup", $rt_wrapFunction1(oncia_EnableServer_dup), "$withGraph0", $rt_wrapFunction1(oncia_EnableServer_withGraph0)], -oncia_StartDatabase, "StartDatabase", 36, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_StartDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_StartDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_StartDatabase_withGraph0), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_StartDatabase_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_StartDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_StartDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_StartDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_StartDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", -$rt_wrapFunction0(oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_StartDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_StartDatabase_position), "$name", $rt_wrapFunction0(oncia_StartDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_StartDatabase_semanticCheck), -"$productPrefix", $rt_wrapFunction0(oncia_StartDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_StartDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_StartDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_StartDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_StartDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_StartDatabase_toString), "$equals", $rt_wrapFunction1(oncia_StartDatabase_equals), "$dup", $rt_wrapFunction1(oncia_StartDatabase_dup), -"$withGraph0", $rt_wrapFunction1(oncia_StartDatabase_withGraph)], -oncia_StopDatabase, "StopDatabase", 36, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_StopDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_StopDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_StopDatabase_withGraph), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_StopDatabase_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_StopDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_StopDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_StopDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_StopDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", -$rt_wrapFunction0(oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_StopDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_StopDatabase_position), "$name", $rt_wrapFunction0(oncia_StopDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_StopDatabase_semanticCheck), -"$productPrefix", $rt_wrapFunction0(oncia_StopDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_StopDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_StopDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_StopDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_StopDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_StopDatabase_toString), "$equals", $rt_wrapFunction1(oncia_StopDatabase_equals), "$dup", $rt_wrapFunction1(oncia_StopDatabase_dup), -"$withGraph0", $rt_wrapFunction1(oncia_StopDatabase_withGraph0)], -oncia_ShowAliases$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowIndexType, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_AllIndexes$, "AllIndexes$", 36, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_AllIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_AllIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllIndexes$_toString)], -oncia_ShowIndexesClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_RangeIndexes$, "RangeIndexes$", 36, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RangeIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RangeIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_RangeIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RangeIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RangeIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_RangeIndexes$_toString)], -oncia_FulltextIndexes$, "FulltextIndexes$", 36, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_FulltextIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_FulltextIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_FulltextIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_FulltextIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_FulltextIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_FulltextIndexes$_toString)], -oncia_TextIndexes$, "TextIndexes$", 36, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_TextIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_TextIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_TextIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_TextIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TextIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_TextIndexes$_toString)], -oncia_PointIndexes$, "PointIndexes$", 36, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_PointIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_PointIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_PointIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_PointIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PointIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_PointIndexes$_toString)], -oncia_VectorIndexes$, "VectorIndexes$", 36, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_VectorIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_VectorIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_VectorIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_VectorIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_VectorIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_VectorIndexes$_toString)], -oncia_LookupIndexes$, "LookupIndexes$", 36, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_LookupIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_LookupIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_LookupIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_LookupIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LookupIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_LookupIndexes$_toString)], -onciafn_Neo4jASTFactory$turnYieldToWith$lambda$_161_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$turnYieldToWith$lambda$_161_0_apply)], -oncia_CommandClause$, 0, jl_Object, [], 4, 3, 0, oncia_CommandClause$_$callClinit, 0, -oncia_ParsedAsYield$, "ParsedAsYield$", 36, jl_Object, [oncia_WithType, s_Product, ji_Serializable], 4, 3, 0, oncia_ParsedAsYield$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_ParsedAsYield$_productArity), "$productElement", $rt_wrapFunction1(oncia_ParsedAsYield$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ParsedAsYield$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ParsedAsYield$_hashCode), "$toString", $rt_wrapFunction0(oncia_ParsedAsYield$_toString)], -oncia_ShowFunctionType, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_AllFunctions$, "AllFunctions$", 36, jl_Object, [oncia_ShowFunctionType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_AllFunctions$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_AllFunctions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllFunctions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllFunctions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllFunctions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllFunctions$_toString)], -oncia_ExecutableBy, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_User, "User", 36, jl_Object, [oncia_ExecutableBy, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_User_productPrefix), "$productArity", $rt_wrapFunction0(oncia_User_productArity), "$productElement", $rt_wrapFunction1(oncia_User_productElement), "$productIterator", $rt_wrapFunction0(oncia_User_productIterator), "$hashCode", $rt_wrapFunction0(oncia_User_hashCode), "$toString", $rt_wrapFunction0(oncia_User_toString), "$equals", $rt_wrapFunction1(oncia_User_equals)], -oncia_ShowFunctionsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_CurrentUser$, "CurrentUser$", 36, jl_Object, [oncia_ExecutableBy, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CurrentUser$_productArity), "$productElement", $rt_wrapFunction1(oncia_CurrentUser$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CurrentUser$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CurrentUser$_hashCode), "$toString", $rt_wrapFunction0(oncia_CurrentUser$_toString)], -oncia_BuiltInFunctions$, "BuiltInFunctions$", 36, jl_Object, [oncia_ShowFunctionType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_BuiltInFunctions$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_BuiltInFunctions$_productArity), "$productElement", $rt_wrapFunction1(oncia_BuiltInFunctions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_BuiltInFunctions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_BuiltInFunctions$_hashCode), "$toString", $rt_wrapFunction0(oncia_BuiltInFunctions$_toString)], -oncia_UserDefinedFunctions$, "UserDefinedFunctions$", 36, jl_Object, [oncia_ShowFunctionType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_UserDefinedFunctions$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_UserDefinedFunctions$_productArity), "$productElement", $rt_wrapFunction1(oncia_UserDefinedFunctions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UserDefinedFunctions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UserDefinedFunctions$_hashCode), -"$toString", $rt_wrapFunction0(oncia_UserDefinedFunctions$_toString)], -oncia_ShowConstraintType, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_AllConstraints$, "AllConstraints$", 36, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_AllConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_AllConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllConstraints$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllConstraints$_toString)], -oncia_ShowConstraintsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_UniqueConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_NodeUniqueConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_RelUniqueConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_KeyConstraints$, "KeyConstraints$", 36, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_KeyConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_KeyConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_KeyConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_KeyConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_KeyConstraints$_hashCode), "$toString", $rt_wrapFunction0(oncia_KeyConstraints$_toString)], -oncia_NodeKeyConstraints$, "NodeKeyConstraints$", 36, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeKeyConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodeKeyConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeKeyConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeKeyConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodeKeyConstraints$_hashCode), -"$toString", $rt_wrapFunction0(oncia_NodeKeyConstraints$_toString)], -oncia_RelKeyConstraints$, "RelKeyConstraints$", 36, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelKeyConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelKeyConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelKeyConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelKeyConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelKeyConstraints$_hashCode), "$toString", -$rt_wrapFunction0(oncia_RelKeyConstraints$_toString)], -oncia_ExistsConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_NodeExistsConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_RelExistsConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_PropTypeConstraints$, "PropTypeConstraints$", 36, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_PropTypeConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_PropTypeConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_PropTypeConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_PropTypeConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PropTypeConstraints$_hashCode), -"$toString", $rt_wrapFunction0(oncia_PropTypeConstraints$_toString)], -oncia_NodePropTypeConstraints$, "NodePropTypeConstraints$", 36, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropTypeConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_hashCode), -"$toString", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_toString)], -oncia_RelPropTypeConstraints$, "RelPropTypeConstraints$", 36, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelPropTypeConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_hashCode), -"$toString", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_toString)], -oncia_ShowCurrentUser$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_SingleNamedDatabaseScope, "SingleNamedDatabaseScope", 36, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_productArity), "$productElement", $rt_wrapFunction1(oncia_SingleNamedDatabaseScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_hashCode), -"$toString", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_toString), "$equals", $rt_wrapFunction1(oncia_SingleNamedDatabaseScope_equals), "$dup", $rt_wrapFunction1(oncia_SingleNamedDatabaseScope_dup)]]); -$rt_metadata([oncia_DefaultDatabaseScope, "DefaultDatabaseScope", 36, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_DefaultDatabaseScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DefaultDatabaseScope_productArity), "$productElement", $rt_wrapFunction1(oncia_DefaultDatabaseScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_DefaultDatabaseScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DefaultDatabaseScope_hashCode), -"$toString", $rt_wrapFunction0(oncia_DefaultDatabaseScope_toString), "$equals", $rt_wrapFunction1(oncia_DefaultDatabaseScope_equals), "$dup", $rt_wrapFunction1(oncia_DefaultDatabaseScope_dup)], -oncia_AllDatabasesScope, "AllDatabasesScope", 36, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllDatabasesScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllDatabasesScope_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDatabasesScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDatabasesScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDatabasesScope_hashCode), "$toString", $rt_wrapFunction0(oncia_AllDatabasesScope_toString), -"$equals", $rt_wrapFunction1(oncia_AllDatabasesScope_equals), "$dup", $rt_wrapFunction1(oncia_AllDatabasesScope_dup)], -oncia_HomeDatabaseScope, "HomeDatabaseScope", 36, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_HomeDatabaseScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_HomeDatabaseScope_productArity), "$productElement", $rt_wrapFunction1(oncia_HomeDatabaseScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_HomeDatabaseScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_HomeDatabaseScope_hashCode), "$toString", $rt_wrapFunction0(oncia_HomeDatabaseScope_toString), -"$equals", $rt_wrapFunction1(oncia_HomeDatabaseScope_equals), "$dup", $rt_wrapFunction1(oncia_HomeDatabaseScope_dup)], -oncia_ShowDatabase$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$showDatabase$lambda$_236_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$showDatabase$lambda$_236_0_apply)], -oncia_ShowPrivileges$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowAllPrivileges, "ShowAllPrivileges", 36, jl_Object, [oncia_ShowPrivilegeScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowAllPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowAllPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowAllPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowAllPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowAllPrivileges_hashCode), "$toString", -$rt_wrapFunction0(oncia_ShowAllPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowAllPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowAllPrivileges_dup)], -oncia_ShowPrivilegeCommands$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowProceduresClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowServers$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$showSettingsClause$lambda$_159_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$showSettingsClause$lambda$_159_0_apply)], -su_Either$LeftProjection, 0, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowSettingsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowSupportedPrivilegeCommand$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$showTransactionsClause$lambda$_157_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$showTransactionsClause$lambda$_157_0_apply)], -oncia_ShowTransactionsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowUsers$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowRolesPrivileges, "ShowRolesPrivileges", 36, jl_Object, [oncia_ShowPrivilegeScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowRolesPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowRolesPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowRolesPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowRolesPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowRolesPrivileges_hashCode), -"$toString", $rt_wrapFunction0(oncia_ShowRolesPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowRolesPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowRolesPrivileges_dup)], -onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_0_apply)], -onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$showRolePrivileges$lambda$_192_1_apply)], -oncia_ShowRoles$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_0_apply)], -oncia_TerminateTransactionsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$terminateTransactionsClause$lambda$_158_1_apply)], -onciafn_Neo4jASTFactory$createClause$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createClause$lambda$_13_0_apply)], +oncipvaf_Cypher5ErrorStrategyConf, 0, jl_Object, [oncip_CypherErrorStrategy$Conf], 0, 3, 0, 0, ["$preferredRules", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_preferredRules), "$vocabulary0", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_vocabulary), "$ignoredTokens", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_ignoredTokens), "$customTokenDisplayNames", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_customTokenDisplayNames), "$ruleGroups", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_ruleGroups), +"$errorCharTokenType", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_errorCharTokenType)], +oncipv_Cypher5Lexer, 0, oavr_Lexer, [], 0, 3, 0, oncipv_Cypher5Lexer_$callClinit, ["$getATN", $rt_wrapFunction0(oncipv_Cypher5Lexer_getATN)], +oncipvaf_Cypher5AstLexer, "Cypher5AstLexer", 51, oncipv_Cypher5Lexer, [oncipl_CypherQueryAccess], 4, 3, 0, 0, ["$notifyListeners", $rt_wrapFunction1(oncipvaf_Cypher5AstLexer_notifyListeners), "$inputQuery", $rt_wrapFunction0(oncipvaf_Cypher5AstLexer_inputQuery), "$offsetTable", $rt_wrapFunction0(oncipvaf_Cypher5AstLexer_offsetTable)], +oncipv_Cypher5Parser, 0, oavr_Parser, [], 0, 3, 0, oncipv_Cypher5Parser_$callClinit, ["$getVocabulary", $rt_wrapFunction0(oncipv_Cypher5Parser_getVocabulary), "$getRuleNames", $rt_wrapFunction0(oncipv_Cypher5Parser_getRuleNames), "$getATN", $rt_wrapFunction0(oncipv_Cypher5Parser_getATN)], +oncipvaf_CypherAstBuildingAntlrParser, "CypherAstBuildingAntlrParser", 51, oncipv_Cypher5Parser, [oncipa_AstBuildingAntlrParser], 4, 3, 0, 0, ["$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode", $rt_wrapFunction2(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode0), +"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners", +$rt_wrapFunction3(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners0), "$createTerminalNode", $rt_wrapFunction2(oncipvaf_CypherAstBuildingAntlrParser_createTerminalNode0), "$reset0", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_reset0), "$addParseListener", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_addParseListener), "$setErrorHandler", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_setErrorHandler), +"$notifyErrorListeners", $rt_wrapFunction3(oncipvaf_CypherAstBuildingAntlrParser_notifyErrorListeners0), "$syntaxChecker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_syntaxChecker0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq0), +"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed), +"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq0), +"$createSyntaxChecker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_createSyntaxChecker), "$createAstBuilder", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_createAstBuilder0), "$isSafeToFreeChildren", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_isSafeToFreeChildren)], +oncie_UnsignedDecimalIntegerLiteral$$anon$2, "UnsignedDecimalIntegerLiteral$$anon$2", 62, oncie_UnsignedDecimalIntegerLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_UnsignedDecimalIntegerLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral$$anon$2_literalLength)], +oncias_Symbol, "Symbol", 40, jl_Object, [s_Product, ji_Serializable], 4, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oncias_Symbol_toString), "$productArity", $rt_wrapFunction0(oncias_Symbol_productArity), "$productElement", $rt_wrapFunction1(oncias_Symbol_productElement), "$productIterator", $rt_wrapFunction0(oncias_Symbol_productIterator), "$hashCode", $rt_wrapFunction0(oncias_Symbol_hashCode), "$equals", $rt_wrapFunction1(oncias_Symbol_equals)], +oncipl_UnicodeEscapeReplacementReader, 0, ji_Reader, [], 0, 3, 0, 0, 0, +oncia_AliasedReturnItem, "AliasedReturnItem", 35, jl_Object, [oncia_ReturnItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$isPassThrough", $rt_wrapFunction0(oncia_AliasedReturnItem_isPassThrough), "$semanticCheck", $rt_wrapFunction0(oncia_AliasedReturnItem_semanticCheck), "$expression0", $rt_wrapFunction0(oncia_AliasedReturnItem_expression), "$position", $rt_wrapFunction0(oncia_AliasedReturnItem_position), "$alias", $rt_wrapFunction0(oncia_AliasedReturnItem_alias), "$name", $rt_wrapFunction0(oncia_AliasedReturnItem_name), +"$productPrefix", $rt_wrapFunction0(oncia_AliasedReturnItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AliasedReturnItem_productArity), "$productElement", $rt_wrapFunction1(oncia_AliasedReturnItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_AliasedReturnItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AliasedReturnItem_hashCode), "$toString", $rt_wrapFunction0(oncia_AliasedReturnItem_toString), "$equals", $rt_wrapFunction1(oncia_AliasedReturnItem_equals), "$dup", $rt_wrapFunction1(oncia_AliasedReturnItem_dup)], +onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0_apply)], +onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1_apply)], +oncia_SingleQuery$semanticCheckAbstract$lambda$_73_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$semanticCheckAbstract$lambda$_73_0_apply)], +oncias_package$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncias_SemanticState$$recordCurrentScope$lambda$_9_0, "SemanticState$$recordCurrentScope$lambda$_9_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$$recordCurrentScope$lambda$_9_0_apply)], +oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0_apply)], +su_Try, 0, jl_Object, [s_Product, ji_Serializable], 1, 3, 0, 0, 0, +su_Success, 0, su_Try, [], 4, 3, 0, 0, ["$getOrElse", $rt_wrapFunction1(su_Success_getOrElse)], +su_Failure, 0, su_Try, [], 4, 3, 0, 0, ["$getOrElse", $rt_wrapFunction1(su_Failure_getOrElse)], +scm_SortedSetOps, 0, jl_Object, [scm_SetOps, sc_SortedSetOps], 3, 3, 0, 0, 0, +scm_SortedSet, 0, jl_Object, [scm_Set, sc_SortedSet, scm_SortedSetOps], 3, 3, 0, 0, 0, +sc_StrictOptimizedSortedSetOps, 0, jl_Object, [sc_SortedSetOps, sc_StrictOptimizedSetOps], 3, 3, 0, 0, 0, +scm_TreeSet, "TreeSet", 21, scm_AbstractSet, [scm_SortedSet, sc_StrictOptimizedSortedSetOps, scg_DefaultSerializable], 0, 3, 0, 0, ["$concat1", $rt_wrapFunction1(scm_TreeSet_concat), "$map", $rt_wrapFunction1(scm_TreeSet_map), "$flatMap", $rt_wrapFunction1(scm_TreeSet_flatMap), "$filterNot0", $rt_wrapFunction1(scm_TreeSet_filterNot), "$filterImpl", $rt_wrapFunction2(scm_TreeSet_filterImpl), "$stringPrefix", $rt_wrapFunction0(scm_TreeSet_stringPrefix), "$equals", $rt_wrapFunction1(scm_TreeSet_equals), "$newSpecificBuilder", +$rt_wrapFunction0(scm_TreeSet_newSpecificBuilder), "$iterator0", $rt_wrapFunction0(scm_TreeSet_iterator), "$contains", $rt_wrapFunction1(scm_TreeSet_contains), "$className", $rt_wrapFunction0(scm_TreeSet_className), "$size", $rt_wrapFunction0(scm_TreeSet_size), "$knownSize", $rt_wrapFunction0(scm_TreeSet_knownSize), "$isEmpty", $rt_wrapFunction0(scm_TreeSet_isEmpty), "$head", $rt_wrapFunction0(scm_TreeSet_head), "$foreach", $rt_wrapFunction1(scm_TreeSet_foreach), "$fromSpecific", $rt_wrapFunction1(scm_TreeSet_fromSpecific1), +"$fromSpecific0", $rt_wrapFunction1(scm_TreeSet_fromSpecific0), "$subtractOne", $rt_wrapFunction1(scm_TreeSet_subtractOne), "$addOne", $rt_wrapFunction1(scm_TreeSet_addOne)], +scm_RedBlackTree$Tree, 0, jl_Object, [], 4, 3, 0, 0, 0, +scm_RedBlackTree$, 0, jl_Object, [], 4, 3, 0, 0, 0, +scm_RedBlackTree$Tree$, 0, jl_Object, [], 0, 3, 0, 0, 0, +ju_AbstractMap$SimpleImmutableEntry, 0, jl_Object, [ju_Map$Entry, ji_Serializable], 0, 3, 0, 0, 0, +ju_Collections$7, 0, ju_AbstractMap, [], 0, 0, 0, 0, 0, +ju_Collections$9, 0, ju_AbstractList, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_Collections$9_get), "$size", $rt_wrapFunction0(ju_Collections$9_size)], +sc_SeqView$Id, "SeqView$Id", 19, sc_AbstractSeqView, [], 0, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sc_SeqView$Id_apply), "$length", $rt_wrapFunction0(sc_SeqView$Id_length), "$iterator0", $rt_wrapFunction0(sc_SeqView$Id_iterator), "$knownSize", $rt_wrapFunction0(sc_SeqView$Id_knownSize), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Id_isEmpty)], +sc_IndexedSeqView$Id, 0, sc_SeqView$Id, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Id_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Id_reverseIterator), "$reverse3", $rt_wrapFunction0(sc_IndexedSeqView$Id_reverse), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Id_lengthCompare), "$knownSize", $rt_wrapFunction0(sc_IndexedSeqView$Id_knownSize)], +sc_WithFilter, 0, jl_Object, [ji_Serializable], 1, 3, 0, 0, 0, +sc_IterableOps$WithFilter, 0, sc_WithFilter, [], 0, 3, 0, 0, 0, +oncipl_UnicodeEscapeReplacementReader$Result, 0, jl_Record, [], 32772, 3, 0, 0, 0, +oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0_apply)], +oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0_apply)], +oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0_apply)], +oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0_apply)], +scc_JavaCollectionWrappers$JIteratorWrapper, "JavaCollectionWrappers$JIteratorWrapper", 22, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scc_JavaCollectionWrappers$JIteratorWrapper_hasNext), "$next", $rt_wrapFunction0(scc_JavaCollectionWrappers$JIteratorWrapper_next)], +oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0_apply)], +oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1_apply)], +ong_GqlHelper, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncias_SemanticCheck$, 0, jl_Object, [], 4, 3, 0, oncias_SemanticCheck$_$callClinit, 0, +oncia_SingleQuery$checkStandaloneCall$lambda$_83_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkStandaloneCall$lambda$_83_0_apply)]]); +$rt_metadata([oncia_SingleQuery$checkStandaloneCall$lambda$_83_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkStandaloneCall$lambda$_83_1_apply)], +oncia_SingleQuery$checkStandaloneCall$lambda$_83_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkStandaloneCall$lambda$_83_2_apply)], +oncia_SingleQuery$checkStandaloneCall$lambda$_83_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$checkStandaloneCall$lambda$_83_3_apply)], +oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_0_apply)], +oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_84_1_apply)], +oncia_SingleQuery$checkOrder$lambda$_85_0, "SingleQuery$checkOrder$lambda$_85_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkOrder$lambda$_85_0_apply)], +oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_86_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_86_0_apply)], +oncia_SingleQuery$Acc$1, "SingleQuery$Acc$1", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_productArity), "$productElement", $rt_wrapFunction1(oncia_SingleQuery$Acc$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_hashCode), "$toString", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_toString), +"$equals", $rt_wrapFunction1(oncia_SingleQuery$Acc$1_equals)], +oncia_SingleQuery$checkInputDataStream$lambda$_89_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkInputDataStream$lambda$_89_0_apply)], +oncia_InputDataStream, 0, jl_Object, [oncia_Clause, ji_Serializable], 0, 3, 0, 0, 0, +oncias_IterableOnceSemanticChecking$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_SingleQuery$$anonfun$checkUsePosition$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$checkUsePosition$1_applyOrElse)], +oncia_SingleQuery$checkUsePosition$lambda$_91_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkUsePosition$lambda$_91_0_apply)], +oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0_apply)], +oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0_apply)], +oncia_Union$semanticCheck$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$semanticCheck$lambda$_15_0_apply)], +oncifp_ResolvedFunctionInvocation$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncifp_ResolvedFunctionInvocation$_$callClinit, 0, +oncifp_RewriteProcedureCalls$resolveFunction$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +sci_RangeIterator, 0, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_RangeIterator_hasNext), "$next", $rt_wrapFunction0(sci_RangeIterator_next)], +scm_RedBlackTree$Node, 0, jl_Object, [], 4, 3, 0, 0, 0, +ju_TemplateCollections$SingleElementSet, 0, ju_TemplateCollections$AbstractImmutableSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1_applyOrElse)], +oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0_apply)], +oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0_apply)], +sc_MapOps$$anon$1, 0, sc_AbstractIterable, [scg_DefaultSerializable], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_MapOps$$anon$1_knownSize), "$iterator0", $rt_wrapFunction0(sc_MapOps$$anon$1_iterator)], +sc_SeqView$Reverse, 0, sc_AbstractSeqView, [], 0, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sc_SeqView$Reverse_apply), "$length", $rt_wrapFunction0(sc_SeqView$Reverse_length), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Reverse_isEmpty)], +sc_IndexedSeqView$Reverse, "IndexedSeqView$Reverse", 19, sc_SeqView$Reverse, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_reverseIterator), "$stringPrefix", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_stringPrefix), "$head", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_head), "$headOption", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_headOption), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_lengthCompare), +"$knownSize", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_knownSize), "$map8", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_map), "$map", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_map0), "$drop4", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_drop), "$drop", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_drop0), "$prepended3", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_prepended0), "$prepended", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_prepended), "$appended", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_appended), +"$appended2", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_appended0)], +oncifp_BaseState$semanticTable$lambda$_18_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_BaseState$semanticTable$lambda$_18_0_apply)], +oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0_apply)], +s_Proxy, 0, jl_Object, [], 131, 3, 0, 0, 0, +s_Proxy$Typed, 0, jl_Object, [s_Proxy], 131, 3, 0, 0, 0, +sr_OrderedProxy, 0, jl_Object, [sm_Ordered, s_Proxy$Typed], 3, 3, 0, 0, 0, +sr_RichBoolean, 0, jl_Object, [sr_OrderedProxy], 4, 3, 0, 0, ["$ord", $rt_wrapFunction0(sr_RichBoolean_ord), "$self", $rt_wrapFunction0(sr_RichBoolean_self)], +sr_ScalaNumberProxy, 0, jl_Object, [sm_ScalaNumericAnyConversions, sr_OrderedProxy], 3, 3, 0, 0, 0, +sr_RangedProxy, 0, jl_Object, [s_Proxy$Typed], 3, 3, 0, 0, 0, +sr_RichInt, 0, jl_Object, [sr_ScalaNumberProxy, sr_RangedProxy], 4, 3, 0, 0, ["$ord", $rt_wrapFunction0(sr_RichInt_ord), "$self", $rt_wrapFunction0(sr_RichInt_self)], +oavr_CodePointBuffer, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavr_CharStream, 0, jl_Object, [oavr_IntStream], 3, 3, 0, 0, 0, +oavr_CodePointCharStream, 0, jl_Object, [oavr_CharStream], 1, 3, 0, 0, ["$index0", $rt_wrapFunction0(oavr_CodePointCharStream_index), "$toString", $rt_wrapFunction0(oavr_CodePointCharStream_toString)], +oncipl_CypherToken$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncipv_Cypher25Parser$StatementsContext, "Cypher25Parser$StatementsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StatementsContext_getRuleIndex)], +oavr_RecognitionException, 0, jl_RuntimeException, [], 0, 3, 0, 0, 0, +oncia_ReturnItems$containsAggregate$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$containsAggregate$lambda$_71_0_apply)], +ong_ErrorGqlStatusObjectImplementation, "ErrorGqlStatusObjectImplementation", 66, ong_CommonGqlStatusObjectImplementation, [ong_ErrorGqlStatusObject], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(ong_ErrorGqlStatusObjectImplementation_equals), "$cause0", $rt_wrapFunction0(ong_ErrorGqlStatusObjectImplementation_cause), "$gqlStatusObject", $rt_wrapFunction0(ong_ErrorGqlStatusObjectImplementation_gqlStatusObject), "$toString", $rt_wrapFunction0(ong_ErrorGqlStatusObjectImplementation_toString)], +oncia_SingleQuery$Acc$2$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, +oncias_package$$liftSemanticErrorDefs$lambda$_5_0, "package$$liftSemanticErrorDefs$lambda$_5_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticErrorDefs$lambda$_5_0_apply)], +oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0_apply)], +oncias_SemanticCheck$$nestedCheck$lambda$_11_0, "SemanticCheck$$nestedCheck$lambda$_11_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$nestedCheck$lambda$_11_0_apply)], +oncias_SemanticCheck$Leaf, "SemanticCheck$Leaf", 40, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$run", $rt_wrapFunction2(oncias_SemanticCheck$Leaf_run), "$chain", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_chain), "$ifOkChain", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_ifOkChain), "$map11", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_map), "$flatMap3", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_flatMap), "$productPrefix", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_productPrefix), +"$productArity", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_equals)], +oncia_Union$checkRecursively$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$checkRecursively$lambda$_13_0_apply)]]); +$rt_metadata([oncifp_QualifiedName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0_apply)], +oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1_apply)], +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1_applyOrElse)], +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1_applyOrElse)], +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1_applyOrElse)], +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1_applyOrElse)], +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1_applyOrElse)], +oncias_SemanticError$, "SemanticError$", 40, jl_Object, [ji_Serializable], 4, 3, [0,0,0], oncias_SemanticError$_$callClinit, 0, +oncipv_Cypher5Parser$StatementsContext, "Cypher5Parser$StatementsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StatementsContext_getRuleIndex)], +oavr_CodePointBuffer$Builder, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavr_CodePointCharStream$1, 0, jl_Object, [], 32, 0, 0, oavr_CodePointCharStream$1_$callClinit, 0, +oavr_CodePointCharStream$CodePoint8BitCharStream, "CodePointCharStream$CodePoint8BitCharStream", 81, oavr_CodePointCharStream, [], 4, 0, 0, 0, ["$getText0", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint8BitCharStream_getText), "$LA", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint8BitCharStream_LA)], +oavr_CodePointCharStream$CodePoint16BitCharStream, "CodePointCharStream$CodePoint16BitCharStream", 81, oavr_CodePointCharStream, [], 4, 0, 0, 0, ["$getText0", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint16BitCharStream_getText), "$LA", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint16BitCharStream_LA)], +oavr_CodePointCharStream$CodePoint32BitCharStream, "CodePointCharStream$CodePoint32BitCharStream", 81, oavr_CodePointCharStream, [], 4, 0, 0, 0, ["$getText0", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint32BitCharStream_getText), "$LA", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint32BitCharStream_LA)], +oavra_LexerATNSimulator, 0, oavra_ATNSimulator, [], 0, 3, 0, 0, ["$reset0", $rt_wrapFunction0(oavra_LexerATNSimulator_reset)], +oavr_TokenFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipl_CypherTokenFactory$, 0, jl_Object, [oavr_TokenFactory], 4, 3, 0, 0, ["$create1", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return oncipl_CypherTokenFactory$_create(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], +oncipl_FullCypherTokenFactory$, 0, jl_Object, [oavr_TokenFactory], 4, 3, 0, 0, ["$create1", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return oncipl_FullCypherTokenFactory$_create(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], +oavrm_IntegerList, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavrm_IntegerStack, 0, oavrm_IntegerList, [], 0, 3, 0, 0, 0, +oavr_RuntimeMetaData, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavra_PredictionContextCache, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavr_VocabularyImpl, 0, jl_Object, [oavr_Vocabulary], 0, 3, 0, 0, 0, +oavrm_Utils, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavra_ATNDeserializer, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavrd_DFA, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$StatementContext, "Cypher25Parser$StatementContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StatementContext_getRuleIndex)], +ong_ErrorGqlStatusObjectImplementation$Builder, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncias_SemanticCheck$$_clinit_$lambda$_0_0, "SemanticCheck$$$lambda$_0_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$_clinit_$lambda$_0_0_apply)], +oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0_apply)], +oncias_SemanticCheck$$fromState$lambda$_8_0, "SemanticCheck$$fromState$lambda$_8_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$fromState$lambda$_8_0_apply)], +oncipv_Cypher5Parser$StatementContext, "Cypher5Parser$StatementContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StatementContext_getRuleIndex)], +oavr_CommonTokenFactory, 0, jl_Object, [oavr_TokenFactory], 0, 3, 0, 0, ["$create1", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return oavr_CommonTokenFactory_create(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], +oavrm_Pair, "Pair", 85, jl_Object, [ji_Serializable], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oavrm_Pair_equals), "$hashCode", $rt_wrapFunction0(oavrm_Pair_hashCode), "$toString", $rt_wrapFunction0(oavrm_Pair_toString)], +oavra_LexerATNSimulator$SimState, 0, jl_Object, [], 0, 3, 0, 0, 0, +juc_CopyOnWriteArrayList, 0, jl_Object, [ju_List, ju_RandomAccess, jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +oavr_Recognizer$1, 0, juc_CopyOnWriteArrayList, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +oavra_ATNDeserializationOptions, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavra_ATN, "ATN", 83, jl_Object, [], 0, 3, 0, 0, 0, +oavra_ATNState, 0, jl_Object, [], 1, 3, 0, oavra_ATNState_$callClinit, ["$hashCode", $rt_wrapFunction0(oavra_ATNState_hashCode), "$equals", $rt_wrapFunction1(oavra_ATNState_equals), "$toString", $rt_wrapFunction0(oavra_ATNState_toString)], +oavra_DecisionState, 0, oavra_ATNState, [], 1, 3, 0, 0, 0, +oavra_StarLoopEntryState, "StarLoopEntryState", 83, oavra_DecisionState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_StarLoopEntryState_getStateType)], +oavrd_DFAState, "DFAState", 84, jl_Object, [], 0, 3, [0,0,0], 0, ["$hashCode", $rt_wrapFunction0(oavrd_DFAState_hashCode), "$equals", $rt_wrapFunction1(oavrd_DFAState_equals), "$toString", $rt_wrapFunction0(oavrd_DFAState_toString)], +oavra_ATNConfigSet, "ATNConfigSet", 83, jl_Object, [ju_Set], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$equals", $rt_wrapFunction1(oavra_ATNConfigSet_equals), "$hashCode", $rt_wrapFunction0(oavra_ATNConfigSet_hashCode), "$size", $rt_wrapFunction0(oavra_ATNConfigSet_size), "$iterator", $rt_wrapFunction0(oavra_ATNConfigSet_iterator), "$toString", $rt_wrapFunction0(oavra_ATNConfigSet_toString)], +oncipv_Cypher25Parser$CommandContext, "Cypher25Parser$CommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandContext_getRuleIndex)], +oavr_NoViableAltException, "NoViableAltException", 81, oavr_RecognitionException, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$RegularQueryContext, "Cypher25Parser$RegularQueryContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RegularQueryContext_getRuleIndex)], +oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext, "Cypher5Parser$PeriodicCommitQueryHintFailureContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext_getRuleIndex)], +oncipv_Cypher5Parser$CommandContext, "Cypher5Parser$CommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$RegularQueryContext, "Cypher5Parser$RegularQueryContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RegularQueryContext_getRuleIndex)], +oavr_CodePointBuffer$Type, "CodePointBuffer$Type", 81, jl_Enum, [], 12, 3, [oavr_CodePointBuffer,0,"Type"], 0, 0, +oavr_ConsoleErrorListener, "ConsoleErrorListener", 81, oavr_BaseErrorListener, [], 0, 3, 0, 0, ["$syntaxError", function(var_1, var_2, var_3, var_4, var_5, var_6) { oavr_ConsoleErrorListener_syntaxError(this, var_1, var_2, var_3, var_4, var_5, var_6); }], +oncipv_Cypher25Parser$UseClauseContext, "Cypher25Parser$UseClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UseClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterCommandContext, "Cypher25Parser$AlterCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateCommandContext, "Cypher25Parser$CreateCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$AllocationCommandContext, "Cypher25Parser$AllocationCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AllocationCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$DenyCommandContext, "Cypher25Parser$DenyCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DenyCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$DropCommandContext, "Cypher25Parser$DropCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$EnableServerCommandContext, "Cypher25Parser$EnableServerCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$EnableServerCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$GrantCommandContext, "Cypher25Parser$GrantCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GrantCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$RenameCommandContext, "Cypher25Parser$RenameCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RenameCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$RevokeCommandContext, "Cypher25Parser$RevokeCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RevokeCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowCommandContext, "Cypher25Parser$ShowCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$StartDatabaseContext, "Cypher25Parser$StartDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StartDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$StopDatabaseContext, "Cypher25Parser$StopDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StopDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$TerminateCommandContext, "Cypher25Parser$TerminateCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TerminateCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$SingleQueryContext, "Cypher25Parser$SingleQueryContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SingleQueryContext_getRuleIndex)], +ong_DiagnosticRecord$Builder, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$UseClauseContext, "Cypher5Parser$UseClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UseClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterCommandContext, "Cypher5Parser$AlterCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateCommandContext, "Cypher5Parser$CreateCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$AllocationCommandContext, "Cypher5Parser$AllocationCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AllocationCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$DenyCommandContext, "Cypher5Parser$DenyCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DenyCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$DropCommandContext, "Cypher5Parser$DropCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$EnableServerCommandContext, "Cypher5Parser$EnableServerCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$EnableServerCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$GrantCommandContext, "Cypher5Parser$GrantCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GrantCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$RenameCommandContext, "Cypher5Parser$RenameCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RenameCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$RevokeCommandContext, "Cypher5Parser$RevokeCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RevokeCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowCommandContext, "Cypher5Parser$ShowCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$StartDatabaseContext, "Cypher5Parser$StartDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StartDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$StopDatabaseContext, "Cypher5Parser$StopDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StopDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$TerminateCommandContext, "Cypher5Parser$TerminateCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TerminateCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$SingleQueryContext, "Cypher5Parser$SingleQueryContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SingleQueryContext_getRuleIndex)], +jl_OutOfMemoryError, "OutOfMemoryError", 12, jl_VirtualMachineError, [], 0, 3, 0, 0, 0, +oavrm_Array2DHashSet, 0, jl_Object, [ju_Set], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +oavra_ATNConfigSet$AbstractConfigHashSet, 0, oavrm_Array2DHashSet, [], 1, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +oavra_ATNConfigSet$ConfigHashSet, 0, oavra_ATNConfigSet$AbstractConfigHashSet, [], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +oncipv_Cypher25Parser$GraphReferenceContext, "Cypher25Parser$GraphReferenceContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GraphReferenceContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterAliasContext, "Cypher25Parser$AlterAliasContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterCurrentUserContext, "Cypher25Parser$AlterCurrentUserContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterCurrentUserContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterDatabaseContext, "Cypher25Parser$AlterDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterServerContext, "Cypher25Parser$AlterServerContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterServerContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterUserContext, "Cypher25Parser$AlterUserContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterUserContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateAliasContext, "Cypher25Parser$CreateAliasContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateAliasContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateCompositeDatabaseContext, "Cypher25Parser$CreateCompositeDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateCompositeDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateConstraintContext, "Cypher25Parser$CreateConstraintContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateConstraintContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateDatabaseContext, "Cypher25Parser$CreateDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateIndexContext, "Cypher25Parser$CreateIndexContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateIndexContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateRoleContext, "Cypher25Parser$CreateRoleContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateRoleContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher25Parser$CreateUserContext, "Cypher25Parser$CreateUserContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateUserContext_getRuleIndex)], +oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext, "Cypher25Parser$DeallocateDatabaseFromServersContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext_getRuleIndex)], +oncipv_Cypher25Parser$ReallocateDatabasesContext, "Cypher25Parser$ReallocateDatabasesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReallocateDatabasesContext_getRuleIndex)], +oncipv_Cypher25Parser$PrivilegeContext, "Cypher25Parser$PrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$RoleNamesContext, "Cypher25Parser$RoleNamesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RoleNamesContext_getRuleIndex)], +oncipv_Cypher25Parser$DropAliasContext, "Cypher25Parser$DropAliasContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropAliasContext_getRuleIndex)], +oncipv_Cypher25Parser$DropDatabaseContext, "Cypher25Parser$DropDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$DropConstraintContext, "Cypher25Parser$DropConstraintContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropConstraintContext_getRuleIndex)], +oncipv_Cypher25Parser$DropIndexContext, "Cypher25Parser$DropIndexContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropIndexContext_getRuleIndex)], +oncipv_Cypher25Parser$DropRoleContext, "Cypher25Parser$DropRoleContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropRoleContext_getRuleIndex)], +oncipv_Cypher25Parser$DropServerContext, "Cypher25Parser$DropServerContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropServerContext_getRuleIndex)], +oncipv_Cypher25Parser$DropUserContext, "Cypher25Parser$DropUserContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropUserContext_getRuleIndex)], +oncipv_Cypher25Parser$CommandOptionsContext, "Cypher25Parser$CommandOptionsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandOptionsContext_getRuleIndex)], +oncipv_Cypher25Parser$StringOrParameterContext, "Cypher25Parser$StringOrParameterContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringOrParameterContext_getRuleIndex)], +oncipv_Cypher25Parser$RoleTokenContext, "Cypher25Parser$RoleTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RoleTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$GrantRoleContext, "Cypher25Parser$GrantRoleContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GrantRoleContext_getRuleIndex)], +oncipv_Cypher25Parser$RenameRoleContext, "Cypher25Parser$RenameRoleContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RenameRoleContext_getRuleIndex)], +oncipv_Cypher25Parser$RenameServerContext, "Cypher25Parser$RenameServerContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RenameServerContext_getRuleIndex)], +oncipv_Cypher25Parser$RenameUserContext, "Cypher25Parser$RenameUserContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RenameUserContext_getRuleIndex)], +oncipv_Cypher25Parser$RevokeRoleContext, "Cypher25Parser$RevokeRoleContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RevokeRoleContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowAliasesContext, "Cypher25Parser$ShowAliasesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowAliasesContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowConstraintCommandContext, "Cypher25Parser$ShowConstraintCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowConstraintCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowConstraintAllContext, "Cypher25Parser$ShowConstraintAllContext", 45, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ShowConstraintExistContext, "Cypher25Parser$ShowConstraintExistContext", 45, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ShowConstraintKeyContext, "Cypher25Parser$ShowConstraintKeyContext", 45, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ShowConstraintPropTypeContext, "Cypher25Parser$ShowConstraintPropTypeContext", 45, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ShowConstraintUniqueContext, "Cypher25Parser$ShowConstraintUniqueContext", 45, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ShowCurrentUserContext, "Cypher25Parser$ShowCurrentUserContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowCurrentUserContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowDatabaseContext, "Cypher25Parser$ShowDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowFunctionsContext, "Cypher25Parser$ShowFunctionsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowFunctionsContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowIndexCommandContext, "Cypher25Parser$ShowIndexCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowIndexCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowPrivilegesContext, "Cypher25Parser$ShowPrivilegesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowPrivilegesContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowProceduresContext, "Cypher25Parser$ShowProceduresContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowProceduresContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowRolePrivilegesContext, "Cypher25Parser$ShowRolePrivilegesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowRolePrivilegesContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowRolesContext, "Cypher25Parser$ShowRolesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowRolesContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowServersContext, "Cypher25Parser$ShowServersContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowServersContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowSettingsContext, "Cypher25Parser$ShowSettingsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowSettingsContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowSupportedPrivilegesContext, "Cypher25Parser$ShowSupportedPrivilegesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowSupportedPrivilegesContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowTransactionsContext, "Cypher25Parser$ShowTransactionsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowTransactionsContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowUserPrivilegesContext, "Cypher25Parser$ShowUserPrivilegesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowUserPrivilegesContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowUsersContext, "Cypher25Parser$ShowUsersContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowUsersContext_getRuleIndex)], +oncipv_Cypher25Parser$WaitClauseContext, "Cypher25Parser$WaitClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$WaitClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext, "Cypher25Parser$SymbolicAliasNameOrParameterContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_getRuleIndex)], +oncipv_Cypher25Parser$TerminateTransactionsContext, "Cypher25Parser$TerminateTransactionsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TerminateTransactionsContext_getRuleIndex)], +oncipv_Cypher25Parser$ClauseContext, "Cypher25Parser$ClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$GraphReferenceContext, "Cypher5Parser$GraphReferenceContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GraphReferenceContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterAliasContext, "Cypher5Parser$AlterAliasContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterCurrentUserContext, "Cypher5Parser$AlterCurrentUserContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterCurrentUserContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterDatabaseContext, "Cypher5Parser$AlterDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterServerContext, "Cypher5Parser$AlterServerContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterServerContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$AlterUserContext, "Cypher5Parser$AlterUserContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterUserContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateAliasContext, "Cypher5Parser$CreateAliasContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateAliasContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateIndexContext, "Cypher5Parser$CreateIndexContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateIndexContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateCompositeDatabaseContext, "Cypher5Parser$CreateCompositeDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateCompositeDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateConstraintContext, "Cypher5Parser$CreateConstraintContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateConstraintContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateDatabaseContext, "Cypher5Parser$CreateDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateRoleContext, "Cypher5Parser$CreateRoleContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateRoleContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateUserContext, "Cypher5Parser$CreateUserContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateUserContext_getRuleIndex)], +oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext, "Cypher5Parser$DeallocateDatabaseFromServersContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext_getRuleIndex)], +oncipv_Cypher5Parser$ReallocateDatabasesContext, "Cypher5Parser$ReallocateDatabasesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReallocateDatabasesContext_getRuleIndex)], +oncipv_Cypher5Parser$PrivilegeContext, "Cypher5Parser$PrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$RoleNamesContext, "Cypher5Parser$RoleNamesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RoleNamesContext_getRuleIndex)], +oncipv_Cypher5Parser$DropAliasContext, "Cypher5Parser$DropAliasContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropAliasContext_getRuleIndex)], +oncipv_Cypher5Parser$DropDatabaseContext, "Cypher5Parser$DropDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$DropConstraintContext, "Cypher5Parser$DropConstraintContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropConstraintContext_getRuleIndex)], +oncipv_Cypher5Parser$DropIndexContext, "Cypher5Parser$DropIndexContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropIndexContext_getRuleIndex)], +oncipv_Cypher5Parser$DropRoleContext, "Cypher5Parser$DropRoleContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropRoleContext_getRuleIndex)], +oncipv_Cypher5Parser$DropServerContext, "Cypher5Parser$DropServerContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropServerContext_getRuleIndex)], +oncipv_Cypher5Parser$DropUserContext, "Cypher5Parser$DropUserContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropUserContext_getRuleIndex)], +oncipv_Cypher5Parser$CommandOptionsContext, "Cypher5Parser$CommandOptionsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandOptionsContext_getRuleIndex)], +oncipv_Cypher5Parser$StringOrParameterContext, "Cypher5Parser$StringOrParameterContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringOrParameterContext_getRuleIndex)], +oncipv_Cypher5Parser$RoleTokenContext, "Cypher5Parser$RoleTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RoleTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$GrantRoleContext, "Cypher5Parser$GrantRoleContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GrantRoleContext_getRuleIndex)], +oncipv_Cypher5Parser$RenameRoleContext, "Cypher5Parser$RenameRoleContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RenameRoleContext_getRuleIndex)], +oncipv_Cypher5Parser$RenameServerContext, "Cypher5Parser$RenameServerContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RenameServerContext_getRuleIndex)], +oncipv_Cypher5Parser$RenameUserContext, "Cypher5Parser$RenameUserContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RenameUserContext_getRuleIndex)], +oncipv_Cypher5Parser$RevokeRoleContext, "Cypher5Parser$RevokeRoleContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RevokeRoleContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowAliasesContext, "Cypher5Parser$ShowAliasesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowAliasesContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowConstraintCommandContext, "Cypher5Parser$ShowConstraintCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowConstraintCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowConstraintMultiContext, "Cypher5Parser$ShowConstraintMultiContext", 49, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ShowConstraintUniqueContext, "Cypher5Parser$ShowConstraintUniqueContext", 49, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ShowConstraintKeyContext, "Cypher5Parser$ShowConstraintKeyContext", 49, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ShowConstraintRelExistContext, "Cypher5Parser$ShowConstraintRelExistContext", 49, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ShowConstraintOldExistsContext, "Cypher5Parser$ShowConstraintOldExistsContext", 49, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext, "Cypher5Parser$ShowConstraintBriefAndYieldContext", 49, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ShowCurrentUserContext, "Cypher5Parser$ShowCurrentUserContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowCurrentUserContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowDatabaseContext, "Cypher5Parser$ShowDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowFunctionsContext, "Cypher5Parser$ShowFunctionsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowFunctionsContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowIndexCommandContext, "Cypher5Parser$ShowIndexCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowIndexCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowPrivilegesContext, "Cypher5Parser$ShowPrivilegesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowPrivilegesContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowProceduresContext, "Cypher5Parser$ShowProceduresContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowProceduresContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowRolePrivilegesContext, "Cypher5Parser$ShowRolePrivilegesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowRolePrivilegesContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowRolesContext, "Cypher5Parser$ShowRolesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowRolesContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowServersContext, "Cypher5Parser$ShowServersContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowServersContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowSettingsContext, "Cypher5Parser$ShowSettingsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowSettingsContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowSupportedPrivilegesContext, "Cypher5Parser$ShowSupportedPrivilegesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowSupportedPrivilegesContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowTransactionsContext, "Cypher5Parser$ShowTransactionsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowTransactionsContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowUserPrivilegesContext, "Cypher5Parser$ShowUserPrivilegesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowUserPrivilegesContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowUsersContext, "Cypher5Parser$ShowUsersContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowUsersContext_getRuleIndex)], +oncipv_Cypher5Parser$WaitClauseContext, "Cypher5Parser$WaitClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$WaitClauseContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext, "Cypher5Parser$SymbolicAliasNameOrParameterContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_getRuleIndex)], +oncipv_Cypher5Parser$TerminateTransactionsContext, "Cypher5Parser$TerminateTransactionsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TerminateTransactionsContext_getRuleIndex)], +oncipv_Cypher5Parser$ClauseContext, "Cypher5Parser$ClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ClauseContext_getRuleIndex)], +oavrm_EqualityComparator, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavrm_AbstractEqualityComparator, 0, jl_Object, [oavrm_EqualityComparator], 1, 3, 0, 0, 0, +oavra_ATNConfigSet$ConfigEqualityComparator, 0, oavrm_AbstractEqualityComparator, [], 4, 3, 0, 0, ["$equals0", $rt_wrapFunction2(oavra_ATNConfigSet$ConfigEqualityComparator_equals), "$hashCode2", $rt_wrapFunction1(oavra_ATNConfigSet$ConfigEqualityComparator_hashCode)], +oncipv_Cypher25Parser$FunctionInvocationContext, "Cypher25Parser$FunctionInvocationContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FunctionInvocationContext_getRuleIndex)], +oncipv_Cypher25Parser$SymbolicAliasNameContext, "Cypher25Parser$SymbolicAliasNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicAliasNameContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterAliasDriverContext, "Cypher25Parser$AlterAliasDriverContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasDriverContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterAliasPasswordContext, "Cypher25Parser$AlterAliasPasswordContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasPasswordContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterAliasPropertiesContext, "Cypher25Parser$AlterAliasPropertiesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasPropertiesContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterAliasTargetContext, "Cypher25Parser$AlterAliasTargetContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasTargetContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterAliasUserContext, "Cypher25Parser$AlterAliasUserContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasUserContext_getRuleIndex)], +oncipv_Cypher25Parser$AliasNameContext, "Cypher25Parser$AliasNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AliasNameContext_getRuleIndex)], +oncipv_Cypher25Parser$PasswordExpressionContext, "Cypher25Parser$PasswordExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterDatabaseAccessContext, "Cypher25Parser$AlterDatabaseAccessContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterDatabaseAccessContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterDatabaseOptionContext, "Cypher25Parser$AlterDatabaseOptionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterDatabaseOptionContext_getRuleIndex)], +oncipv_Cypher25Parser$AlterDatabaseTopologyContext, "Cypher25Parser$AlterDatabaseTopologyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterDatabaseTopologyContext_getRuleIndex)], +oncipv_Cypher25Parser$SymbolicNameStringContext, "Cypher25Parser$SymbolicNameStringContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicNameStringContext_getRuleIndex)], +oncipv_Cypher25Parser$RemoveNamedProviderContext, "Cypher25Parser$RemoveNamedProviderContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RemoveNamedProviderContext_getRuleIndex)], +oncipv_Cypher25Parser$PasswordContext, "Cypher25Parser$PasswordContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordContext_getRuleIndex)], +oncipv_Cypher25Parser$PasswordChangeRequiredContext, "Cypher25Parser$PasswordChangeRequiredContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordChangeRequiredContext_getRuleIndex)], +oncipv_Cypher25Parser$UserStatusContext, "Cypher25Parser$UserStatusContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UserStatusContext_getRuleIndex)], +oncipv_Cypher25Parser$HomeDatabaseContext, "Cypher25Parser$HomeDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$HomeDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$SetAuthClauseContext, "Cypher25Parser$SetAuthClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SetAuthClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$CommandNameExpressionContext, "Cypher25Parser$CommandNameExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandNameExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$AliasTargetNameContext, "Cypher25Parser$AliasTargetNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AliasTargetNameContext_getRuleIndex)], +oncipv_Cypher25Parser$MapOrParameterContext, "Cypher25Parser$MapOrParameterContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MapOrParameterContext_getRuleIndex)], +oncipv_Cypher25Parser$DatabaseNameContext, "Cypher25Parser$DatabaseNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DatabaseNameContext_getRuleIndex)], +oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext, "Cypher25Parser$SymbolicNameOrStringParameterContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_getRuleIndex)], +oncipv_Cypher25Parser$CommandNodePatternContext, "Cypher25Parser$CommandNodePatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandNodePatternContext_getRuleIndex)], +oncipv_Cypher25Parser$CommandRelPatternContext, "Cypher25Parser$CommandRelPatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandRelPatternContext_getRuleIndex)], +oncipv_Cypher25Parser$ConstraintTypeContext, "Cypher25Parser$ConstraintTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ConstraintTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$ConstraintTypedContext, "Cypher25Parser$ConstraintTypedContext", 45, oncipv_Cypher25Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ConstraintIsUniqueContext, "Cypher25Parser$ConstraintIsUniqueContext", 45, oncipv_Cypher25Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ConstraintKeyContext, "Cypher25Parser$ConstraintKeyContext", 45, oncipv_Cypher25Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ConstraintIsNotNullContext, "Cypher25Parser$ConstraintIsNotNullContext", 45, oncipv_Cypher25Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$PrimaryTopologyContext, "Cypher25Parser$PrimaryTopologyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrimaryTopologyContext_getRuleIndex)], +oncipv_Cypher25Parser$SecondaryTopologyContext, "Cypher25Parser$SecondaryTopologyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SecondaryTopologyContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateFulltextIndexContext, "Cypher25Parser$CreateFulltextIndexContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateFulltextIndexContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateIndex_Context, "Cypher25Parser$CreateIndex_Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateIndex_Context_getRuleIndex)], +oncipv_Cypher25Parser$CreateLookupIndexContext, "Cypher25Parser$CreateLookupIndexContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateLookupIndexContext_getRuleIndex)], +oncipv_Cypher25Parser$DatabasePrivilegeContext, "Cypher25Parser$DatabasePrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DatabasePrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$DbmsPrivilegeContext, "Cypher25Parser$DbmsPrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DbmsPrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$AllPrivilegeContext, "Cypher25Parser$AllPrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AllPrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$CreatePrivilegeContext, "Cypher25Parser$CreatePrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreatePrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext, "Cypher25Parser$QualifiedGraphPrivilegesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext_getRuleIndex)], +oncipv_Cypher25Parser$DropPrivilegeContext, "Cypher25Parser$DropPrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropPrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$LoadPrivilegeContext, "Cypher25Parser$LoadPrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LoadPrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext, "Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher25Parser$RemovePrivilegeContext, "Cypher25Parser$RemovePrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RemovePrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$SetPrivilegeContext, "Cypher25Parser$SetPrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SetPrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowPrivilegeContext, "Cypher25Parser$ShowPrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowPrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$WritePrivilegeContext, "Cypher25Parser$WritePrivilegeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$WritePrivilegeContext_getRuleIndex)], +oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext, "Cypher25Parser$SymbolicNameOrStringParameterListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext_getRuleIndex)], +oncipv_Cypher25Parser$AliasActionContext, "Cypher25Parser$AliasActionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AliasActionContext_getRuleIndex)], +oncipv_Cypher25Parser$StringLiteralContext, "Cypher25Parser$StringLiteralContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringLiteralContext_getRuleIndex)], +oncipv_Cypher25Parser$ParameterContext, "Cypher25Parser$ParameterContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ParameterContext_getRuleIndex)], +oncipv_Cypher25Parser$UserNamesContext, "Cypher25Parser$UserNamesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UserNamesContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowCommandYieldContext, "Cypher25Parser$ShowCommandYieldContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowCommandYieldContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowConstraintEntityContext, "Cypher25Parser$ShowConstraintEntityContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowConstraintEntityContext_getRuleIndex)], +oncipv_Cypher25Parser$NodeEntityContext, "Cypher25Parser$NodeEntityContext", 45, oncipv_Cypher25Parser$ShowConstraintEntityContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$RelEntityContext, "Cypher25Parser$RelEntityContext", 45, oncipv_Cypher25Parser$ShowConstraintEntityContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ShowConstraintsEndContext, "Cypher25Parser$ShowConstraintsEndContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowConstraintsEndContext_getRuleIndex)], +oncipv_Cypher25Parser$ConstraintExistTypeContext, "Cypher25Parser$ConstraintExistTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ConstraintExistTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowFunctionsTypeContext, "Cypher25Parser$ShowFunctionsTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowFunctionsTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$FunctionTokenContext, "Cypher25Parser$FunctionTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FunctionTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$ExecutableByContext, "Cypher25Parser$ExecutableByContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExecutableByContext_getRuleIndex)], +oncipv_Cypher25Parser$ComposableCommandClausesContext, "Cypher25Parser$ComposableCommandClausesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ComposableCommandClausesContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowIndexTypeContext, "Cypher25Parser$ShowIndexTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowIndexTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$ShowIndexesEndContext, "Cypher25Parser$ShowIndexesEndContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowIndexesEndContext_getRuleIndex)], +oncipv_Cypher25Parser$PrivilegeTokenContext, "Cypher25Parser$PrivilegeTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrivilegeTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$PrivilegeAsCommandContext, "Cypher25Parser$PrivilegeAsCommandContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrivilegeAsCommandContext_getRuleIndex)], +oncipv_Cypher25Parser$SettingTokenContext, "Cypher25Parser$SettingTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SettingTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$NamesAndClausesContext, "Cypher25Parser$NamesAndClausesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NamesAndClausesContext_getRuleIndex)], +oncipv_Cypher25Parser$TransactionTokenContext, "Cypher25Parser$TransactionTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TransactionTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$SecondsTokenContext, "Cypher25Parser$SecondsTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SecondsTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$StringsOrExpressionContext, "Cypher25Parser$StringsOrExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringsOrExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$FinishClauseContext, "Cypher25Parser$FinishClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FinishClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$ReturnClauseContext, "Cypher25Parser$ReturnClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReturnClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateClauseContext, "Cypher25Parser$CreateClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$InsertClauseContext, "Cypher25Parser$InsertClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$DeleteClauseContext, "Cypher25Parser$DeleteClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DeleteClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$SetClauseContext, "Cypher25Parser$SetClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SetClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$RemoveClauseContext, "Cypher25Parser$RemoveClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RemoveClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$MatchClauseContext, "Cypher25Parser$MatchClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MatchClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$MergeClauseContext, "Cypher25Parser$MergeClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MergeClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$WithClauseContext, "Cypher25Parser$WithClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$WithClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$UnwindClauseContext, "Cypher25Parser$UnwindClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UnwindClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$CallClauseContext, "Cypher25Parser$CallClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CallClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$SubqueryClauseContext, "Cypher25Parser$SubqueryClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$LoadCSVClauseContext, "Cypher25Parser$LoadCSVClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LoadCSVClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$ForeachClauseContext, "Cypher25Parser$ForeachClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ForeachClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$OrderBySkipLimitClauseContext, "Cypher25Parser$OrderBySkipLimitClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$OrderBySkipLimitClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$FunctionInvocationContext, "Cypher5Parser$FunctionInvocationContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FunctionInvocationContext_getRuleIndex)], +oncipv_Cypher5Parser$SymbolicAliasNameContext, "Cypher5Parser$SymbolicAliasNameContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicAliasNameContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterAliasDriverContext, "Cypher5Parser$AlterAliasDriverContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasDriverContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterAliasPasswordContext, "Cypher5Parser$AlterAliasPasswordContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasPasswordContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterAliasPropertiesContext, "Cypher5Parser$AlterAliasPropertiesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasPropertiesContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterAliasTargetContext, "Cypher5Parser$AlterAliasTargetContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasTargetContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$AlterAliasUserContext, "Cypher5Parser$AlterAliasUserContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasUserContext_getRuleIndex)], +oncipv_Cypher5Parser$AliasNameContext, "Cypher5Parser$AliasNameContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AliasNameContext_getRuleIndex)], +oncipv_Cypher5Parser$PasswordExpressionContext, "Cypher5Parser$PasswordExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterDatabaseAccessContext, "Cypher5Parser$AlterDatabaseAccessContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterDatabaseAccessContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterDatabaseOptionContext, "Cypher5Parser$AlterDatabaseOptionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterDatabaseOptionContext_getRuleIndex)], +oncipv_Cypher5Parser$AlterDatabaseTopologyContext, "Cypher5Parser$AlterDatabaseTopologyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterDatabaseTopologyContext_getRuleIndex)], +oncipv_Cypher5Parser$SymbolicNameStringContext, "Cypher5Parser$SymbolicNameStringContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicNameStringContext_getRuleIndex)], +oncipv_Cypher5Parser$RemoveNamedProviderContext, "Cypher5Parser$RemoveNamedProviderContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RemoveNamedProviderContext_getRuleIndex)], +oncipv_Cypher5Parser$PasswordContext, "Cypher5Parser$PasswordContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordContext_getRuleIndex)], +oncipv_Cypher5Parser$PasswordChangeRequiredContext, "Cypher5Parser$PasswordChangeRequiredContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordChangeRequiredContext_getRuleIndex)], +oncipv_Cypher5Parser$UserStatusContext, "Cypher5Parser$UserStatusContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UserStatusContext_getRuleIndex)], +oncipv_Cypher5Parser$HomeDatabaseContext, "Cypher5Parser$HomeDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$HomeDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$SetAuthClauseContext, "Cypher5Parser$SetAuthClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SetAuthClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$CommandNameExpressionContext, "Cypher5Parser$CommandNameExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandNameExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$DatabaseNameContext, "Cypher5Parser$DatabaseNameContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DatabaseNameContext_getRuleIndex)], +oncipv_Cypher5Parser$MapOrParameterContext, "Cypher5Parser$MapOrParameterContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MapOrParameterContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateIndex_Context, "Cypher5Parser$CreateIndex_Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateIndex_Context_getRuleIndex)], +oncipv_Cypher5Parser$CreateFulltextIndexContext, "Cypher5Parser$CreateFulltextIndexContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateFulltextIndexContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateLookupIndexContext, "Cypher5Parser$CreateLookupIndexContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateLookupIndexContext_getRuleIndex)], +oncipv_Cypher5Parser$OldCreateIndexContext, "Cypher5Parser$OldCreateIndexContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$OldCreateIndexContext_getRuleIndex)], +oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext, "Cypher5Parser$SymbolicNameOrStringParameterContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_getRuleIndex)], +oncipv_Cypher5Parser$CommandNodePatternContext, "Cypher5Parser$CommandNodePatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandNodePatternContext_getRuleIndex)], +oncipv_Cypher5Parser$CommandRelPatternContext, "Cypher5Parser$CommandRelPatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandRelPatternContext_getRuleIndex)], +oncipv_Cypher5Parser$ConstraintTypeContext, "Cypher5Parser$ConstraintTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$ConstraintExistsContext, "Cypher5Parser$ConstraintExistsContext", 49, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ConstraintTypedContext, "Cypher5Parser$ConstraintTypedContext", 49, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ConstraintIsUniqueContext, "Cypher5Parser$ConstraintIsUniqueContext", 49, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ConstraintKeyContext, "Cypher5Parser$ConstraintKeyContext", 49, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ConstraintIsNotNullContext, "Cypher5Parser$ConstraintIsNotNullContext", 49, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$PrimaryTopologyContext, "Cypher5Parser$PrimaryTopologyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrimaryTopologyContext_getRuleIndex)], +oncipv_Cypher5Parser$SecondaryTopologyContext, "Cypher5Parser$SecondaryTopologyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SecondaryTopologyContext_getRuleIndex)], +oncipv_Cypher5Parser$DatabasePrivilegeContext, "Cypher5Parser$DatabasePrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DatabasePrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$DbmsPrivilegeContext, "Cypher5Parser$DbmsPrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DbmsPrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$AllPrivilegeContext, "Cypher5Parser$AllPrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AllPrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$CreatePrivilegeContext, "Cypher5Parser$CreatePrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreatePrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext, "Cypher5Parser$QualifiedGraphPrivilegesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext_getRuleIndex)], +oncipv_Cypher5Parser$DropPrivilegeContext, "Cypher5Parser$DropPrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropPrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$LoadPrivilegeContext, "Cypher5Parser$LoadPrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LoadPrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext, "Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext_getRuleIndex)], +oncipv_Cypher5Parser$RemovePrivilegeContext, "Cypher5Parser$RemovePrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RemovePrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$SetPrivilegeContext, "Cypher5Parser$SetPrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SetPrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowPrivilegeContext, "Cypher5Parser$ShowPrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowPrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$WritePrivilegeContext, "Cypher5Parser$WritePrivilegeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$WritePrivilegeContext_getRuleIndex)], +oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext, "Cypher5Parser$SymbolicNameOrStringParameterListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext_getRuleIndex)], +oncipv_Cypher5Parser$AliasActionContext, "Cypher5Parser$AliasActionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AliasActionContext_getRuleIndex)], +oncipv_Cypher5Parser$PropertyListContext, "Cypher5Parser$PropertyListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertyListContext_getRuleIndex)], +oncipv_Cypher5Parser$LabelTypeContext, "Cypher5Parser$LabelTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$NonEmptyNameListContext, "Cypher5Parser$NonEmptyNameListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NonEmptyNameListContext_getRuleIndex)], +oncipv_Cypher5Parser$StringLiteralContext, "Cypher5Parser$StringLiteralContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringLiteralContext_getRuleIndex)], +oncipv_Cypher5Parser$ParameterContext, "Cypher5Parser$ParameterContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ParameterContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$UserNamesContext, "Cypher5Parser$UserNamesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UserNamesContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowCommandYieldContext, "Cypher5Parser$ShowCommandYieldContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowCommandYieldContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext, "Cypher5Parser$ShowConstraintsAllowYieldContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext_getRuleIndex)], +oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext, "Cypher5Parser$ConstraintBriefAndYieldTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext, "Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext, "Cypher5Parser$ShowConstraintsAllowBriefContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext_getRuleIndex)], +oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext, "Cypher5Parser$ConstraintAllowYieldTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowFunctionsTypeContext, "Cypher5Parser$ShowFunctionsTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowFunctionsTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$FunctionTokenContext, "Cypher5Parser$FunctionTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FunctionTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$ExecutableByContext, "Cypher5Parser$ExecutableByContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExecutableByContext_getRuleIndex)], +oncipv_Cypher5Parser$ComposableCommandClausesContext, "Cypher5Parser$ComposableCommandClausesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ComposableCommandClausesContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowIndexesNoBriefContext, "Cypher5Parser$ShowIndexesNoBriefContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowIndexesNoBriefContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowIndexesAllowBriefContext, "Cypher5Parser$ShowIndexesAllowBriefContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowIndexesAllowBriefContext_getRuleIndex)], +oncipv_Cypher5Parser$PrivilegeTokenContext, "Cypher5Parser$PrivilegeTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrivilegeTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$PrivilegeAsCommandContext, "Cypher5Parser$PrivilegeAsCommandContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrivilegeAsCommandContext_getRuleIndex)], +oncipv_Cypher5Parser$SettingTokenContext, "Cypher5Parser$SettingTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SettingTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$NamesAndClausesContext, "Cypher5Parser$NamesAndClausesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NamesAndClausesContext_getRuleIndex)], +oncipv_Cypher5Parser$TransactionTokenContext, "Cypher5Parser$TransactionTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TransactionTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$SecondsTokenContext, "Cypher5Parser$SecondsTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SecondsTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$StringsOrExpressionContext, "Cypher5Parser$StringsOrExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringsOrExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$FinishClauseContext, "Cypher5Parser$FinishClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FinishClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$ReturnClauseContext, "Cypher5Parser$ReturnClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReturnClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateClauseContext, "Cypher5Parser$CreateClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$InsertClauseContext, "Cypher5Parser$InsertClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$DeleteClauseContext, "Cypher5Parser$DeleteClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DeleteClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$SetClauseContext, "Cypher5Parser$SetClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SetClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$RemoveClauseContext, "Cypher5Parser$RemoveClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RemoveClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$MatchClauseContext, "Cypher5Parser$MatchClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MatchClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$MergeClauseContext, "Cypher5Parser$MergeClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MergeClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$WithClauseContext, "Cypher5Parser$WithClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$WithClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$UnwindClauseContext, "Cypher5Parser$UnwindClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnwindClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$CallClauseContext, "Cypher5Parser$CallClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CallClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$SubqueryClauseContext, "Cypher5Parser$SubqueryClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$LoadCSVClauseContext, "Cypher5Parser$LoadCSVClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LoadCSVClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$ForeachClauseContext, "Cypher5Parser$ForeachClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ForeachClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$OrderBySkipLimitClauseContext, "Cypher5Parser$OrderBySkipLimitClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$OrderBySkipLimitClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$FunctionArgumentContext, "Cypher25Parser$FunctionArgumentContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FunctionArgumentContext_getRuleIndex)], +oncipv_Cypher25Parser$FunctionNameContext, "Cypher25Parser$FunctionNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FunctionNameContext_getRuleIndex)], +oncipv_Cypher25Parser$ExpressionContext, "Cypher25Parser$ExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$EscapedSymbolicNameStringContext, "Cypher25Parser$EscapedSymbolicNameStringContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$EscapedSymbolicNameStringContext_getRuleIndex)], +oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext, "Cypher25Parser$UnescapedSymbolicNameStringContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext_getRuleIndex)], +oncipv_Cypher25Parser$StringListLiteralContext, "Cypher25Parser$StringListLiteralContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringListLiteralContext_getRuleIndex)], +oncipv_Cypher25Parser$UserAuthAttributeContext, "Cypher25Parser$UserAuthAttributeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UserAuthAttributeContext_getRuleIndex)], +oncipv_Cypher25Parser$MapContext, "Cypher25Parser$MapContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MapContext_getRuleIndex)], +oncipv_Cypher25Parser$VariableContext, "Cypher25Parser$VariableContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$VariableContext_getRuleIndex)], +oncipv_Cypher25Parser$LabelTypeContext, "Cypher25Parser$LabelTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$LeftArrowContext, "Cypher25Parser$LeftArrowContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LeftArrowContext_getRuleIndex)], +oncipv_Cypher25Parser$ArrowLineContext, "Cypher25Parser$ArrowLineContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ArrowLineContext_getRuleIndex)], +oncipv_Cypher25Parser$RelTypeContext, "Cypher25Parser$RelTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RelTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$RightArrowContext, "Cypher25Parser$RightArrowContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RightArrowContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher25Parser$PropertyListContext, "Cypher25Parser$PropertyListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertyListContext_getRuleIndex)], +oncipv_Cypher25Parser$TypeContext, "Cypher25Parser$TypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypeContext_getRuleIndex)], +oncipv_Cypher25Parser$UIntOrIntParameterContext, "Cypher25Parser$UIntOrIntParameterContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UIntOrIntParameterContext_getRuleIndex)], +oncipv_Cypher25Parser$PrimaryTokenContext, "Cypher25Parser$PrimaryTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrimaryTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$SecondaryTokenContext, "Cypher25Parser$SecondaryTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SecondaryTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$FulltextNodePatternContext, "Cypher25Parser$FulltextNodePatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FulltextNodePatternContext_getRuleIndex)], +oncipv_Cypher25Parser$FulltextRelPatternContext, "Cypher25Parser$FulltextRelPatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FulltextRelPatternContext_getRuleIndex)], +oncipv_Cypher25Parser$EnclosedPropertyListContext, "Cypher25Parser$EnclosedPropertyListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$EnclosedPropertyListContext_getRuleIndex)], +oncipv_Cypher25Parser$LookupIndexNodePatternContext, "Cypher25Parser$LookupIndexNodePatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LookupIndexNodePatternContext_getRuleIndex)], +oncipv_Cypher25Parser$LookupIndexRelPatternContext, "Cypher25Parser$LookupIndexRelPatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LookupIndexRelPatternContext_getRuleIndex)], +oncipv_Cypher25Parser$DatabaseScopeContext, "Cypher25Parser$DatabaseScopeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DatabaseScopeContext_getRuleIndex)], +oncipv_Cypher25Parser$UserQualifierContext, "Cypher25Parser$UserQualifierContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UserQualifierContext_getRuleIndex)], +oncipv_Cypher25Parser$ConstraintTokenContext, "Cypher25Parser$ConstraintTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ConstraintTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$IndexTokenContext, "Cypher25Parser$IndexTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$IndexTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext, "Cypher25Parser$DbmsPrivilegeExecuteContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_getRuleIndex)], +oncipv_Cypher25Parser$AllPrivilegeTypeContext, "Cypher25Parser$AllPrivilegeTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AllPrivilegeTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$AllPrivilegeTargetContext, "Cypher25Parser$AllPrivilegeTargetContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AllPrivilegeTargetContext_getRuleIndex)], +oncipv_Cypher25Parser$DatabaseVariableTargetContext, "Cypher25Parser$DatabaseVariableTargetContext", 45, oncipv_Cypher25Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$DBMSTargetContext, "Cypher25Parser$DBMSTargetContext", 45, oncipv_Cypher25Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$GraphVariableTargetContext, "Cypher25Parser$GraphVariableTargetContext", 45, oncipv_Cypher25Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$DefaultTargetContext, "Cypher25Parser$DefaultTargetContext", 45, oncipv_Cypher25Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ActionForDBMSContext, "Cypher25Parser$ActionForDBMSContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ActionForDBMSContext_getRuleIndex)], +oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext, "Cypher25Parser$CreatePrivilegeForDatabaseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext_getRuleIndex)], +oncipv_Cypher25Parser$GraphScopeContext, "Cypher25Parser$GraphScopeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GraphScopeContext_getRuleIndex)], +oncipv_Cypher25Parser$GraphQualifierContext, "Cypher25Parser$GraphQualifierContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GraphQualifierContext_getRuleIndex)], +oncipv_Cypher25Parser$PropertiesResourceContext, "Cypher25Parser$PropertiesResourceContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertiesResourceContext_getRuleIndex)], +oncipv_Cypher25Parser$LabelsResourceContext, "Cypher25Parser$LabelsResourceContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelsResourceContext_getRuleIndex)], +oncipv_Cypher25Parser$PasswordTokenContext, "Cypher25Parser$PasswordTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$SettingQualifierContext, "Cypher25Parser$SettingQualifierContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SettingQualifierContext_getRuleIndex)], +oncipv_Cypher25Parser$ParameterNameContext, "Cypher25Parser$ParameterNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ParameterNameContext_getRuleIndex)], +oncipv_Cypher25Parser$WhereClauseContext, "Cypher25Parser$WhereClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$WhereClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$YieldClauseContext, "Cypher25Parser$YieldClauseContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$YieldClauseContext_getRuleIndex)], +oncipv_Cypher25Parser$ComposableShowCommandClausesContext, "Cypher25Parser$ComposableShowCommandClausesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ComposableShowCommandClausesContext_getRuleIndex)], +oncipv_Cypher25Parser$StringListContext, "Cypher25Parser$StringListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringListContext_getRuleIndex)], +oncipv_Cypher25Parser$ReturnBodyContext, "Cypher25Parser$ReturnBodyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReturnBodyContext_getRuleIndex)], +oncipv_Cypher25Parser$PatternListContext, "Cypher25Parser$PatternListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternListContext_getRuleIndex)], +oncipv_Cypher25Parser$InsertPatternListContext, "Cypher25Parser$InsertPatternListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertPatternListContext_getRuleIndex)], +oncipv_Cypher25Parser$SetItemContext, "Cypher25Parser$SetItemContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SetItemContext_getRuleIndex)], +oncipv_Cypher25Parser$SetPropContext, "Cypher25Parser$SetPropContext", 45, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$SetDynamicPropContext, "Cypher25Parser$SetDynamicPropContext", 45, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$SetPropsContext, "Cypher25Parser$SetPropsContext", 45, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$AddPropContext, "Cypher25Parser$AddPropContext", 45, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$SetLabelsContext, "Cypher25Parser$SetLabelsContext", 45, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$SetLabelsIsContext, "Cypher25Parser$SetLabelsIsContext", 45, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$RemoveItemContext, "Cypher25Parser$RemoveItemContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RemoveItemContext_getRuleIndex)], +oncipv_Cypher25Parser$RemovePropContext, "Cypher25Parser$RemovePropContext", 45, oncipv_Cypher25Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$RemoveDynamicPropContext, "Cypher25Parser$RemoveDynamicPropContext", 45, oncipv_Cypher25Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$RemoveLabelsContext, "Cypher25Parser$RemoveLabelsContext", 45, oncipv_Cypher25Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$RemoveLabelsIsContext, "Cypher25Parser$RemoveLabelsIsContext", 45, oncipv_Cypher25Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$MatchModeContext, "Cypher25Parser$MatchModeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MatchModeContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher25Parser$HintContext, "Cypher25Parser$HintContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$HintContext_getRuleIndex)], +oncipv_Cypher25Parser$MergeActionContext, "Cypher25Parser$MergeActionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MergeActionContext_getRuleIndex)], +oncipv_Cypher25Parser$PatternContext, "Cypher25Parser$PatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternContext_getRuleIndex)], +oncipv_Cypher25Parser$ProcedureNameContext, "Cypher25Parser$ProcedureNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ProcedureNameContext_getRuleIndex)], +oncipv_Cypher25Parser$ProcedureArgumentContext, "Cypher25Parser$ProcedureArgumentContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ProcedureArgumentContext_getRuleIndex)], +oncipv_Cypher25Parser$ProcedureResultItemContext, "Cypher25Parser$ProcedureResultItemContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ProcedureResultItemContext_getRuleIndex)], +oncipv_Cypher25Parser$SubqueryScopeContext, "Cypher25Parser$SubqueryScopeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryScopeContext_getRuleIndex)], +oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext, "Cypher25Parser$SubqueryInTransactionsParametersContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_getRuleIndex)], +oncipv_Cypher25Parser$LimitContext, "Cypher25Parser$LimitContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LimitContext_getRuleIndex)], +oncipv_Cypher25Parser$SkipContext, "Cypher25Parser$SkipContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SkipContext_getRuleIndex)], +oncipv_Cypher25Parser$OrderByContext, "Cypher25Parser$OrderByContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$OrderByContext_getRuleIndex)], +oncipv_Cypher5Parser$FunctionArgumentContext, "Cypher5Parser$FunctionArgumentContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FunctionArgumentContext_getRuleIndex)], +oncipv_Cypher5Parser$FunctionNameContext, "Cypher5Parser$FunctionNameContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FunctionNameContext_getRuleIndex)], +oncipv_Cypher5Parser$ExpressionContext, "Cypher5Parser$ExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$EscapedSymbolicNameStringContext, "Cypher5Parser$EscapedSymbolicNameStringContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$EscapedSymbolicNameStringContext_getRuleIndex)], +oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext, "Cypher5Parser$UnescapedSymbolicNameStringContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext_getRuleIndex)], +oncipv_Cypher5Parser$StringListLiteralContext, "Cypher5Parser$StringListLiteralContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringListLiteralContext_getRuleIndex)], +oncipv_Cypher5Parser$UserAuthAttributeContext, "Cypher5Parser$UserAuthAttributeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UserAuthAttributeContext_getRuleIndex)], +oncipv_Cypher5Parser$MapContext, "Cypher5Parser$MapContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MapContext_getRuleIndex)], +oncipv_Cypher5Parser$FulltextNodePatternContext, "Cypher5Parser$FulltextNodePatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FulltextNodePatternContext_getRuleIndex)], +oncipv_Cypher5Parser$FulltextRelPatternContext, "Cypher5Parser$FulltextRelPatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FulltextRelPatternContext_getRuleIndex)], +oncipv_Cypher5Parser$EnclosedPropertyListContext, "Cypher5Parser$EnclosedPropertyListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$EnclosedPropertyListContext_getRuleIndex)], +oncipv_Cypher5Parser$LookupIndexNodePatternContext, "Cypher5Parser$LookupIndexNodePatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LookupIndexNodePatternContext_getRuleIndex)], +oncipv_Cypher5Parser$LookupIndexRelPatternContext, "Cypher5Parser$LookupIndexRelPatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LookupIndexRelPatternContext_getRuleIndex)], +oncipv_Cypher5Parser$VariableContext, "Cypher5Parser$VariableContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$VariableContext_getRuleIndex)], +oncipv_Cypher5Parser$LeftArrowContext, "Cypher5Parser$LeftArrowContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LeftArrowContext_getRuleIndex)], +oncipv_Cypher5Parser$ArrowLineContext, "Cypher5Parser$ArrowLineContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ArrowLineContext_getRuleIndex)], +oncipv_Cypher5Parser$RelTypeContext, "Cypher5Parser$RelTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RelTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$RightArrowContext, "Cypher5Parser$RightArrowContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RightArrowContext_getRuleIndex)], +oncipv_Cypher5Parser$TypeContext, "Cypher5Parser$TypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypeContext_getRuleIndex)], +oncipv_Cypher5Parser$UIntOrIntParameterContext, "Cypher5Parser$UIntOrIntParameterContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UIntOrIntParameterContext_getRuleIndex)], +oncipv_Cypher5Parser$PrimaryTokenContext, "Cypher5Parser$PrimaryTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrimaryTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$SecondaryTokenContext, "Cypher5Parser$SecondaryTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SecondaryTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$DatabaseScopeContext, "Cypher5Parser$DatabaseScopeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DatabaseScopeContext_getRuleIndex)], +oncipv_Cypher5Parser$UserQualifierContext, "Cypher5Parser$UserQualifierContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UserQualifierContext_getRuleIndex)], +oncipv_Cypher5Parser$ConstraintTokenContext, "Cypher5Parser$ConstraintTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$IndexTokenContext, "Cypher5Parser$IndexTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$IndexTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext, "Cypher5Parser$DbmsPrivilegeExecuteContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_getRuleIndex)], +oncipv_Cypher5Parser$AllPrivilegeTypeContext, "Cypher5Parser$AllPrivilegeTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AllPrivilegeTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$AllPrivilegeTargetContext, "Cypher5Parser$AllPrivilegeTargetContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AllPrivilegeTargetContext_getRuleIndex)], +oncipv_Cypher5Parser$DatabaseVariableTargetContext, "Cypher5Parser$DatabaseVariableTargetContext", 49, oncipv_Cypher5Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$DBMSTargetContext, "Cypher5Parser$DBMSTargetContext", 49, oncipv_Cypher5Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$DefaultTargetContext, "Cypher5Parser$DefaultTargetContext", 49, oncipv_Cypher5Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$GraphVariableTargetContext, "Cypher5Parser$GraphVariableTargetContext", 49, oncipv_Cypher5Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ActionForDBMSContext, "Cypher5Parser$ActionForDBMSContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ActionForDBMSContext_getRuleIndex)], +oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext, "Cypher5Parser$CreatePrivilegeForDatabaseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext_getRuleIndex)], +oncipv_Cypher5Parser$GraphScopeContext, "Cypher5Parser$GraphScopeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GraphScopeContext_getRuleIndex)], +oncipv_Cypher5Parser$GraphQualifierContext, "Cypher5Parser$GraphQualifierContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GraphQualifierContext_getRuleIndex)], +oncipv_Cypher5Parser$PropertiesResourceContext, "Cypher5Parser$PropertiesResourceContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertiesResourceContext_getRuleIndex)], +oncipv_Cypher5Parser$LabelsResourceContext, "Cypher5Parser$LabelsResourceContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelsResourceContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$PasswordTokenContext, "Cypher5Parser$PasswordTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$SettingQualifierContext, "Cypher5Parser$SettingQualifierContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SettingQualifierContext_getRuleIndex)], +oncipv_Cypher5Parser$PropertyContext, "Cypher5Parser$PropertyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertyContext_getRuleIndex)], +oncipv_Cypher5Parser$ParameterNameContext, "Cypher5Parser$ParameterNameContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ParameterNameContext_getRuleIndex)], +oncipv_Cypher5Parser$WhereClauseContext, "Cypher5Parser$WhereClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$WhereClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$YieldClauseContext, "Cypher5Parser$YieldClauseContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$YieldClauseContext_getRuleIndex)], +oncipv_Cypher5Parser$ShowBriefAndYieldContext, "Cypher5Parser$ShowBriefAndYieldContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowBriefAndYieldContext_getRuleIndex)], +oncipv_Cypher5Parser$ConstraintExistTypeContext, "Cypher5Parser$ConstraintExistTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintExistTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$ComposableShowCommandClausesContext, "Cypher5Parser$ComposableShowCommandClausesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ComposableShowCommandClausesContext_getRuleIndex)], +oncipv_Cypher5Parser$StringListContext, "Cypher5Parser$StringListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringListContext_getRuleIndex)], +oncipv_Cypher5Parser$ReturnBodyContext, "Cypher5Parser$ReturnBodyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReturnBodyContext_getRuleIndex)], +oncipv_Cypher5Parser$PatternListContext, "Cypher5Parser$PatternListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternListContext_getRuleIndex)], +oncipv_Cypher5Parser$InsertPatternListContext, "Cypher5Parser$InsertPatternListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertPatternListContext_getRuleIndex)], +oncipv_Cypher5Parser$SetItemContext, "Cypher5Parser$SetItemContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SetItemContext_getRuleIndex)], +oncipv_Cypher5Parser$SetPropContext, "Cypher5Parser$SetPropContext", 49, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$SetDynamicPropContext, "Cypher5Parser$SetDynamicPropContext", 49, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$SetPropsContext, "Cypher5Parser$SetPropsContext", 49, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$AddPropContext, "Cypher5Parser$AddPropContext", 49, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$SetLabelsContext, "Cypher5Parser$SetLabelsContext", 49, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$SetLabelsIsContext, "Cypher5Parser$SetLabelsIsContext", 49, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$RemoveItemContext, "Cypher5Parser$RemoveItemContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RemoveItemContext_getRuleIndex)], +oncipv_Cypher5Parser$RemovePropContext, "Cypher5Parser$RemovePropContext", 49, oncipv_Cypher5Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$RemoveDynamicPropContext, "Cypher5Parser$RemoveDynamicPropContext", 49, oncipv_Cypher5Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$RemoveLabelsContext, "Cypher5Parser$RemoveLabelsContext", 49, oncipv_Cypher5Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$RemoveLabelsIsContext, "Cypher5Parser$RemoveLabelsIsContext", 49, oncipv_Cypher5Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$MatchModeContext, "Cypher5Parser$MatchModeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MatchModeContext_getRuleIndex)], +oncipv_Cypher5Parser$HintContext, "Cypher5Parser$HintContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$HintContext_getRuleIndex)], +oncipv_Cypher5Parser$MergeActionContext, "Cypher5Parser$MergeActionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MergeActionContext_getRuleIndex)], +oncipv_Cypher5Parser$PatternContext, "Cypher5Parser$PatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternContext_getRuleIndex)], +oncipv_Cypher5Parser$ProcedureNameContext, "Cypher5Parser$ProcedureNameContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ProcedureNameContext_getRuleIndex)], +oncipv_Cypher5Parser$ProcedureArgumentContext, "Cypher5Parser$ProcedureArgumentContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ProcedureArgumentContext_getRuleIndex)], +oncipv_Cypher5Parser$ProcedureResultItemContext, "Cypher5Parser$ProcedureResultItemContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ProcedureResultItemContext_getRuleIndex)], +oncipv_Cypher5Parser$SubqueryScopeContext, "Cypher5Parser$SubqueryScopeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryScopeContext_getRuleIndex)], +oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext, "Cypher5Parser$SubqueryInTransactionsParametersContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_getRuleIndex)], +oncipv_Cypher5Parser$LimitContext, "Cypher5Parser$LimitContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LimitContext_getRuleIndex)], +oncipv_Cypher5Parser$SkipContext, "Cypher5Parser$SkipContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SkipContext_getRuleIndex)], +oncipv_Cypher5Parser$OrderByContext, "Cypher5Parser$OrderByContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$OrderByContext_getRuleIndex)], +oncipv_Cypher25Parser$NamespaceContext, "Cypher25Parser$NamespaceContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NamespaceContext_getRuleIndex)], +oncipv_Cypher25Parser$Expression11Context, "Cypher25Parser$Expression11Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression11Context_getRuleIndex)], +oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext, "Cypher25Parser$UnescapedLabelSymbolicNameStringContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext_getRuleIndex)], +oncipv_Cypher25Parser$StringOrParameterExpressionContext, "Cypher25Parser$StringOrParameterExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringOrParameterExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$PasswordOnlyContext, "Cypher25Parser$PasswordOnlyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordOnlyContext_getRuleIndex)], +oncipv_Cypher25Parser$PropertyKeyNameContext, "Cypher25Parser$PropertyKeyNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertyKeyNameContext_getRuleIndex)], +oncipv_Cypher25Parser$PropertyContext, "Cypher25Parser$PropertyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertyContext_getRuleIndex)], +oncipv_Cypher25Parser$TypePartContext, "Cypher25Parser$TypePartContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypePartContext_getRuleIndex)], +oncipv_Cypher25Parser$SymbolicAliasNameListContext, "Cypher25Parser$SymbolicAliasNameListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicAliasNameListContext_getRuleIndex)], +oncipv_Cypher25Parser$AdminTokenContext, "Cypher25Parser$AdminTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AdminTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$ProcedureTokenContext, "Cypher25Parser$ProcedureTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ProcedureTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$ExecuteProcedureQualifierContext, "Cypher25Parser$ExecuteProcedureQualifierContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExecuteProcedureQualifierContext_getRuleIndex)], +oncipv_Cypher25Parser$ExecuteFunctionQualifierContext, "Cypher25Parser$ExecuteFunctionQualifierContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExecuteFunctionQualifierContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext, "Cypher25Parser$CreateNodePrivilegeTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext, "Cypher25Parser$CreateRelPrivilegeTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext, "Cypher25Parser$CreatePropertyPrivilegeTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$GraphQualifierTokenContext, "Cypher25Parser$GraphQualifierTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GraphQualifierTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$NonEmptyStringListContext, "Cypher25Parser$NonEmptyStringListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NonEmptyStringListContext_getRuleIndex)], +oncipv_Cypher25Parser$GlobsContext, "Cypher25Parser$GlobsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GlobsContext_getRuleIndex)], +oncipv_Cypher25Parser$YieldItemContext, "Cypher25Parser$YieldItemContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$YieldItemContext_getRuleIndex)], +oncipv_Cypher25Parser$YieldSkipContext, "Cypher25Parser$YieldSkipContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$YieldSkipContext_getRuleIndex)], +oncipv_Cypher25Parser$YieldLimitContext, "Cypher25Parser$YieldLimitContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$YieldLimitContext_getRuleIndex)], +oncipv_Cypher25Parser$ReturnItemsContext, "Cypher25Parser$ReturnItemsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReturnItemsContext_getRuleIndex)], +oncipv_Cypher25Parser$InsertPatternContext, "Cypher25Parser$InsertPatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertPatternContext_getRuleIndex)], +oncipv_Cypher25Parser$PropertyExpressionContext, "Cypher25Parser$PropertyExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertyExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$DynamicPropertyExpressionContext, "Cypher25Parser$DynamicPropertyExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicPropertyExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$NodeLabelsContext, "Cypher25Parser$NodeLabelsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NodeLabelsContext_getRuleIndex)], +oncipv_Cypher25Parser$NodeLabelsIsContext, "Cypher25Parser$NodeLabelsIsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NodeLabelsIsContext_getRuleIndex)], +oncipv_Cypher25Parser$NonEmptyNameListContext, "Cypher25Parser$NonEmptyNameListContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NonEmptyNameListContext_getRuleIndex)], +oncipv_Cypher25Parser$LabelOrRelTypeContext, "Cypher25Parser$LabelOrRelTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelOrRelTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$SelectorContext, "Cypher25Parser$SelectorContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SelectorContext_getRuleIndex)], +oncipv_Cypher25Parser$AnyShortestPathContext, "Cypher25Parser$AnyShortestPathContext", 45, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$AllShortestPathContext, "Cypher25Parser$AllShortestPathContext", 45, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$AnyPathContext, "Cypher25Parser$AnyPathContext", 45, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$AllPathContext, "Cypher25Parser$AllPathContext", 45, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ShortestGroupContext, "Cypher25Parser$ShortestGroupContext", 45, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$AnonymousPatternContext, "Cypher25Parser$AnonymousPatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AnonymousPatternContext_getRuleIndex)], +oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext, "Cypher25Parser$SubqueryInTransactionsBatchParametersContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext_getRuleIndex)], +oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext, "Cypher25Parser$SubqueryInTransactionsErrorParametersContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext_getRuleIndex)], +oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext, "Cypher25Parser$SubqueryInTransactionsReportParametersContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext_getRuleIndex)], +oncipv_Cypher25Parser$OrderItemContext, "Cypher25Parser$OrderItemContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$OrderItemContext_getRuleIndex)], +oncipv_Cypher5Parser$NamespaceContext, "Cypher5Parser$NamespaceContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NamespaceContext_getRuleIndex)], +oncipv_Cypher5Parser$Expression11Context, "Cypher5Parser$Expression11Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression11Context_getRuleIndex)], +oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext, "Cypher5Parser$UnescapedLabelSymbolicNameStringContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext_getRuleIndex)], +oncipv_Cypher5Parser$StringOrParameterExpressionContext, "Cypher5Parser$StringOrParameterExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringOrParameterExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$PasswordOnlyContext, "Cypher5Parser$PasswordOnlyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordOnlyContext_getRuleIndex)], +oncipv_Cypher5Parser$PropertyKeyNameContext, "Cypher5Parser$PropertyKeyNameContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertyKeyNameContext_getRuleIndex)], +oncipv_Cypher5Parser$SymbolicVariableNameStringContext, "Cypher5Parser$SymbolicVariableNameStringContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicVariableNameStringContext_getRuleIndex)], +oncipv_Cypher5Parser$TypePartContext, "Cypher5Parser$TypePartContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypePartContext_getRuleIndex)], +oncipv_Cypher5Parser$SymbolicAliasNameListContext, "Cypher5Parser$SymbolicAliasNameListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicAliasNameListContext_getRuleIndex)], +oncipv_Cypher5Parser$AdminTokenContext, "Cypher5Parser$AdminTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AdminTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$ProcedureTokenContext, "Cypher5Parser$ProcedureTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ProcedureTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$ExecuteProcedureQualifierContext, "Cypher5Parser$ExecuteProcedureQualifierContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExecuteProcedureQualifierContext_getRuleIndex)], +oncipv_Cypher5Parser$ExecuteFunctionQualifierContext, "Cypher5Parser$ExecuteFunctionQualifierContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExecuteFunctionQualifierContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext, "Cypher5Parser$CreateNodePrivilegeTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext, "Cypher5Parser$CreateRelPrivilegeTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext, "Cypher5Parser$CreatePropertyPrivilegeTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$GraphQualifierTokenContext, "Cypher5Parser$GraphQualifierTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GraphQualifierTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$NonEmptyStringListContext, "Cypher5Parser$NonEmptyStringListContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NonEmptyStringListContext_getRuleIndex)], +oncipv_Cypher5Parser$GlobsContext, "Cypher5Parser$GlobsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GlobsContext_getRuleIndex)], +oncipv_Cypher5Parser$YieldItemContext, "Cypher5Parser$YieldItemContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$YieldItemContext_getRuleIndex)], +oncipv_Cypher5Parser$YieldSkipContext, "Cypher5Parser$YieldSkipContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$YieldSkipContext_getRuleIndex)], +oncipv_Cypher5Parser$YieldLimitContext, "Cypher5Parser$YieldLimitContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$YieldLimitContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$ReturnItemsContext, "Cypher5Parser$ReturnItemsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReturnItemsContext_getRuleIndex)], +oncipv_Cypher5Parser$InsertPatternContext, "Cypher5Parser$InsertPatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertPatternContext_getRuleIndex)], +oncipv_Cypher5Parser$PropertyExpressionContext, "Cypher5Parser$PropertyExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertyExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$DynamicPropertyExpressionContext, "Cypher5Parser$DynamicPropertyExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicPropertyExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$NodeLabelsContext, "Cypher5Parser$NodeLabelsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NodeLabelsContext_getRuleIndex)], +oncipv_Cypher5Parser$NodeLabelsIsContext, "Cypher5Parser$NodeLabelsIsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NodeLabelsIsContext_getRuleIndex)], +oncipv_Cypher5Parser$LabelOrRelTypeContext, "Cypher5Parser$LabelOrRelTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelOrRelTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$SelectorContext, "Cypher5Parser$SelectorContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SelectorContext_getRuleIndex)], +oncipv_Cypher5Parser$AnyShortestPathContext, "Cypher5Parser$AnyShortestPathContext", 49, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$AllShortestPathContext, "Cypher5Parser$AllShortestPathContext", 49, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$AnyPathContext, "Cypher5Parser$AnyPathContext", 49, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$AllPathContext, "Cypher5Parser$AllPathContext", 49, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ShortestGroupContext, "Cypher5Parser$ShortestGroupContext", 49, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$AnonymousPatternContext, "Cypher5Parser$AnonymousPatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AnonymousPatternContext_getRuleIndex)], +oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext, "Cypher5Parser$SubqueryInTransactionsBatchParametersContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext_getRuleIndex)], +oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext, "Cypher5Parser$SubqueryInTransactionsErrorParametersContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext_getRuleIndex)], +oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext, "Cypher5Parser$SubqueryInTransactionsReportParametersContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext_getRuleIndex)], +oncipv_Cypher5Parser$OrderItemContext, "Cypher5Parser$OrderItemContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$OrderItemContext_getRuleIndex)], +oavrm_ObjectEqualityComparator, 0, oavrm_AbstractEqualityComparator, [], 4, 3, 0, oavrm_ObjectEqualityComparator_$callClinit, ["$hashCode2", $rt_wrapFunction1(oavrm_ObjectEqualityComparator_hashCode), "$equals0", $rt_wrapFunction2(oavrm_ObjectEqualityComparator_equals)], +oncipv_Cypher25Parser$Expression10Context, "Cypher25Parser$Expression10Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression10Context_getRuleIndex)], +oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context, "Cypher25Parser$UnescapedLabelSymbolicNameString_Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context_getRuleIndex)], +oncipv_Cypher25Parser$TypeNullabilityContext, "Cypher25Parser$TypeNullabilityContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypeNullabilityContext_getRuleIndex)], +oncipv_Cypher25Parser$TypeListSuffixContext, "Cypher25Parser$TypeListSuffixContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypeListSuffixContext_getRuleIndex)], +oncipv_Cypher25Parser$TypeNameContext, "Cypher25Parser$TypeNameContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypeNameContext_getRuleIndex)], +oncipv_Cypher25Parser$ElementTokenContext, "Cypher25Parser$ElementTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ElementTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$NodeTokenContext, "Cypher25Parser$NodeTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NodeTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$RelTokenContext, "Cypher25Parser$RelTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RelTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$GlobContext, "Cypher25Parser$GlobContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GlobContext_getRuleIndex)], +oncipv_Cypher25Parser$SignedIntegerLiteralContext, "Cypher25Parser$SignedIntegerLiteralContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SignedIntegerLiteralContext_getRuleIndex)], +oncipv_Cypher25Parser$ReturnItemContext, "Cypher25Parser$ReturnItemContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReturnItemContext_getRuleIndex)], +oncipv_Cypher25Parser$InsertNodePatternContext, "Cypher25Parser$InsertNodePatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertNodePatternContext_getRuleIndex)], +oncipv_Cypher25Parser$InsertRelationshipPatternContext, "Cypher25Parser$InsertRelationshipPatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertRelationshipPatternContext_getRuleIndex)], +oncipv_Cypher25Parser$Expression1Context, "Cypher25Parser$Expression1Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression1Context_getRuleIndex)], +oncipv_Cypher25Parser$DynamicPropertyContext, "Cypher25Parser$DynamicPropertyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicPropertyContext_getRuleIndex)], +oncipv_Cypher25Parser$DynamicLabelTypeContext, "Cypher25Parser$DynamicLabelTypeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicLabelTypeContext_getRuleIndex)], +oncipv_Cypher25Parser$DynamicExpressionContext, "Cypher25Parser$DynamicExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$PathTokenContext, "Cypher25Parser$PathTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PathTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$GroupTokenContext, "Cypher25Parser$GroupTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GroupTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$ShortestPathPatternContext, "Cypher25Parser$ShortestPathPatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShortestPathPatternContext_getRuleIndex)], +oncipv_Cypher25Parser$PatternElementContext, "Cypher25Parser$PatternElementContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternElementContext_getRuleIndex)], +oncipv_Cypher25Parser$AscTokenContext, "Cypher25Parser$AscTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AscTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$DescTokenContext, "Cypher25Parser$DescTokenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DescTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$Expression10Context, "Cypher5Parser$Expression10Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression10Context_getRuleIndex)], +oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context, "Cypher5Parser$UnescapedLabelSymbolicNameString_Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context_getRuleIndex)], +oncipv_Cypher5Parser$EscapedSymbolicVariableNameStringContext, "Cypher5Parser$EscapedSymbolicVariableNameStringContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$EscapedSymbolicVariableNameStringContext_getRuleIndex)], +oncipv_Cypher5Parser$UnescapedSymbolicVariableNameStringContext, "Cypher5Parser$UnescapedSymbolicVariableNameStringContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnescapedSymbolicVariableNameStringContext_getRuleIndex)], +oncipv_Cypher5Parser$TypeNullabilityContext, "Cypher5Parser$TypeNullabilityContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypeNullabilityContext_getRuleIndex)], +oncipv_Cypher5Parser$TypeListSuffixContext, "Cypher5Parser$TypeListSuffixContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypeListSuffixContext_getRuleIndex)], +oncipv_Cypher5Parser$TypeNameContext, "Cypher5Parser$TypeNameContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypeNameContext_getRuleIndex)], +oncipv_Cypher5Parser$ElementTokenContext, "Cypher5Parser$ElementTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ElementTokenContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$NodeTokenContext, "Cypher5Parser$NodeTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NodeTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$RelTokenContext, "Cypher5Parser$RelTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RelTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$GlobContext, "Cypher5Parser$GlobContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GlobContext_getRuleIndex)], +oncipv_Cypher5Parser$SignedIntegerLiteralContext, "Cypher5Parser$SignedIntegerLiteralContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SignedIntegerLiteralContext_getRuleIndex)], +oncipv_Cypher5Parser$ReturnItemContext, "Cypher5Parser$ReturnItemContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReturnItemContext_getRuleIndex)], +oncipv_Cypher5Parser$InsertNodePatternContext, "Cypher5Parser$InsertNodePatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertNodePatternContext_getRuleIndex)], +oncipv_Cypher5Parser$InsertRelationshipPatternContext, "Cypher5Parser$InsertRelationshipPatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertRelationshipPatternContext_getRuleIndex)], +oncipv_Cypher5Parser$Expression1Context, "Cypher5Parser$Expression1Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression1Context_getRuleIndex)], +oncipv_Cypher5Parser$DynamicPropertyContext, "Cypher5Parser$DynamicPropertyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicPropertyContext_getRuleIndex)], +oncipv_Cypher5Parser$DynamicLabelTypeContext, "Cypher5Parser$DynamicLabelTypeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicLabelTypeContext_getRuleIndex)], +oncipv_Cypher5Parser$DynamicExpressionContext, "Cypher5Parser$DynamicExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$PathTokenContext, "Cypher5Parser$PathTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PathTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$GroupTokenContext, "Cypher5Parser$GroupTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GroupTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$ShortestPathPatternContext, "Cypher5Parser$ShortestPathPatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShortestPathPatternContext_getRuleIndex)], +oncipv_Cypher5Parser$PatternElementContext, "Cypher5Parser$PatternElementContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternElementContext_getRuleIndex)], +oncipv_Cypher5Parser$AscTokenContext, "Cypher5Parser$AscTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AscTokenContext_getRuleIndex)], +oncipv_Cypher5Parser$DescTokenContext, "Cypher5Parser$DescTokenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DescTokenContext_getRuleIndex)], +oncipv_Cypher25Parser$Expression9Context, "Cypher25Parser$Expression9Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression9Context_getRuleIndex)], +oncipv_Cypher25Parser$GlobRecursiveContext, "Cypher25Parser$GlobRecursiveContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GlobRecursiveContext_getRuleIndex)], +oncipv_Cypher25Parser$InsertNodeLabelExpressionContext, "Cypher25Parser$InsertNodeLabelExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext, "Cypher25Parser$InsertRelationshipLabelExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$LiteralContext, "Cypher25Parser$LiteralContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LiteralContext_getRuleIndex)], +oncipv_Cypher25Parser$NummericLiteralContext, "Cypher25Parser$NummericLiteralContext", 45, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$StringsLiteralContext, "Cypher25Parser$StringsLiteralContext", 45, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$BooleanLiteralContext, "Cypher25Parser$BooleanLiteralContext", 45, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$KeywordLiteralContext, "Cypher25Parser$KeywordLiteralContext", 45, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$OtherLiteralContext, "Cypher25Parser$OtherLiteralContext", 45, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$CaseExpressionContext, "Cypher25Parser$CaseExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CaseExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$ExtendedCaseExpressionContext, "Cypher25Parser$ExtendedCaseExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExtendedCaseExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$CountStarContext, "Cypher25Parser$CountStarContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CountStarContext_getRuleIndex)], +oncipv_Cypher25Parser$ExistsExpressionContext, "Cypher25Parser$ExistsExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExistsExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$CountExpressionContext, "Cypher25Parser$CountExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CountExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$CollectExpressionContext, "Cypher25Parser$CollectExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CollectExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$MapProjectionContext, "Cypher25Parser$MapProjectionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MapProjectionContext_getRuleIndex)], +oncipv_Cypher25Parser$ListComprehensionContext, "Cypher25Parser$ListComprehensionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ListComprehensionContext_getRuleIndex)], +oncipv_Cypher25Parser$ListLiteralContext, "Cypher25Parser$ListLiteralContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ListLiteralContext_getRuleIndex)], +oncipv_Cypher25Parser$PatternComprehensionContext, "Cypher25Parser$PatternComprehensionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternComprehensionContext_getRuleIndex)], +oncipv_Cypher25Parser$ReduceExpressionContext, "Cypher25Parser$ReduceExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReduceExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$ListItemsPredicateContext, "Cypher25Parser$ListItemsPredicateContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ListItemsPredicateContext_getRuleIndex)], +oncipv_Cypher25Parser$NormalizeFunctionContext, "Cypher25Parser$NormalizeFunctionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NormalizeFunctionContext_getRuleIndex)], +oncipv_Cypher25Parser$TrimFunctionContext, "Cypher25Parser$TrimFunctionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TrimFunctionContext_getRuleIndex)], +oncipv_Cypher25Parser$PatternExpressionContext, "Cypher25Parser$PatternExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$ShortestPathExpressionContext, "Cypher25Parser$ShortestPathExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShortestPathExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$ParenthesizedExpressionContext, "Cypher25Parser$ParenthesizedExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ParenthesizedExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$NodePatternContext, "Cypher25Parser$NodePatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NodePatternContext_getRuleIndex)], +oncipv_Cypher25Parser$ParenthesizedPathContext, "Cypher25Parser$ParenthesizedPathContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ParenthesizedPathContext_getRuleIndex)], +oncipv_Cypher25Parser$RelationshipPatternContext, "Cypher25Parser$RelationshipPatternContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RelationshipPatternContext_getRuleIndex)], +oncipv_Cypher25Parser$QuantifierContext, "Cypher25Parser$QuantifierContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$QuantifierContext_getRuleIndex)], +oncipv_Cypher5Parser$Expression9Context, "Cypher5Parser$Expression9Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression9Context_getRuleIndex)], +oncipv_Cypher5Parser$GlobRecursiveContext, "Cypher5Parser$GlobRecursiveContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GlobRecursiveContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$InsertNodeLabelExpressionContext, "Cypher5Parser$InsertNodeLabelExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext, "Cypher5Parser$InsertRelationshipLabelExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$LiteralContext, "Cypher5Parser$LiteralContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LiteralContext_getRuleIndex)], +oncipv_Cypher5Parser$NummericLiteralContext, "Cypher5Parser$NummericLiteralContext", 49, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$StringsLiteralContext, "Cypher5Parser$StringsLiteralContext", 49, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$BooleanLiteralContext, "Cypher5Parser$BooleanLiteralContext", 49, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$KeywordLiteralContext, "Cypher5Parser$KeywordLiteralContext", 49, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$OtherLiteralContext, "Cypher5Parser$OtherLiteralContext", 49, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$CaseExpressionContext, "Cypher5Parser$CaseExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CaseExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$ExtendedCaseExpressionContext, "Cypher5Parser$ExtendedCaseExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExtendedCaseExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$CountStarContext, "Cypher5Parser$CountStarContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CountStarContext_getRuleIndex)], +oncipv_Cypher5Parser$ExistsExpressionContext, "Cypher5Parser$ExistsExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExistsExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$CountExpressionContext, "Cypher5Parser$CountExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CountExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$CollectExpressionContext, "Cypher5Parser$CollectExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CollectExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$MapProjectionContext, "Cypher5Parser$MapProjectionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MapProjectionContext_getRuleIndex)], +oncipv_Cypher5Parser$ListComprehensionContext, "Cypher5Parser$ListComprehensionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ListComprehensionContext_getRuleIndex)], +oncipv_Cypher5Parser$ListLiteralContext, "Cypher5Parser$ListLiteralContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ListLiteralContext_getRuleIndex)], +oncipv_Cypher5Parser$PatternComprehensionContext, "Cypher5Parser$PatternComprehensionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternComprehensionContext_getRuleIndex)], +oncipv_Cypher5Parser$ReduceExpressionContext, "Cypher5Parser$ReduceExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReduceExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$ListItemsPredicateContext, "Cypher5Parser$ListItemsPredicateContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ListItemsPredicateContext_getRuleIndex)], +oncipv_Cypher5Parser$NormalizeFunctionContext, "Cypher5Parser$NormalizeFunctionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NormalizeFunctionContext_getRuleIndex)], +oncipv_Cypher5Parser$TrimFunctionContext, "Cypher5Parser$TrimFunctionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TrimFunctionContext_getRuleIndex)], +oncipv_Cypher5Parser$PatternExpressionContext, "Cypher5Parser$PatternExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$ShortestPathExpressionContext, "Cypher5Parser$ShortestPathExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShortestPathExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$ParenthesizedExpressionContext, "Cypher5Parser$ParenthesizedExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ParenthesizedExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$NodePatternContext, "Cypher5Parser$NodePatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NodePatternContext_getRuleIndex)], +oncipv_Cypher5Parser$ParenthesizedPathContext, "Cypher5Parser$ParenthesizedPathContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ParenthesizedPathContext_getRuleIndex)], +oncipv_Cypher5Parser$RelationshipPatternContext, "Cypher5Parser$RelationshipPatternContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RelationshipPatternContext_getRuleIndex)], +oncipv_Cypher5Parser$QuantifierContext, "Cypher5Parser$QuantifierContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$QuantifierContext_getRuleIndex)], +oncipv_Cypher25Parser$Expression8Context, "Cypher25Parser$Expression8Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression8Context_getRuleIndex)], +oncipv_Cypher25Parser$GlobPartContext, "Cypher25Parser$GlobPartContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GlobPartContext_getRuleIndex)], +oncipv_Cypher25Parser$NumberLiteralContext, "Cypher25Parser$NumberLiteralContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NumberLiteralContext_getRuleIndex)], +oncipv_Cypher25Parser$CaseAlternativeContext, "Cypher25Parser$CaseAlternativeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CaseAlternativeContext_getRuleIndex)], +oncipv_Cypher25Parser$ExtendedCaseAlternativeContext, "Cypher25Parser$ExtendedCaseAlternativeContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExtendedCaseAlternativeContext_getRuleIndex)], +oncipv_Cypher25Parser$MapProjectionElementContext, "Cypher25Parser$MapProjectionElementContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MapProjectionElementContext_getRuleIndex)], +oncipv_Cypher25Parser$PathPatternNonEmptyContext, "Cypher25Parser$PathPatternNonEmptyContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PathPatternNonEmptyContext_getRuleIndex)], +oncipv_Cypher25Parser$NormalFormContext, "Cypher25Parser$NormalFormContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NormalFormContext_getRuleIndex)], +oncipv_Cypher25Parser$LabelExpressionContext, "Cypher25Parser$LabelExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$PropertiesContext, "Cypher25Parser$PropertiesContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertiesContext_getRuleIndex)], +oncipv_Cypher25Parser$PathLengthContext, "Cypher25Parser$PathLengthContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PathLengthContext_getRuleIndex)], +oncipv_Cypher5Parser$Expression8Context, "Cypher5Parser$Expression8Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression8Context_getRuleIndex)], +oncipv_Cypher5Parser$GlobPartContext, "Cypher5Parser$GlobPartContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GlobPartContext_getRuleIndex)], +oncipv_Cypher5Parser$NumberLiteralContext, "Cypher5Parser$NumberLiteralContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NumberLiteralContext_getRuleIndex)], +oncipv_Cypher5Parser$CaseAlternativeContext, "Cypher5Parser$CaseAlternativeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CaseAlternativeContext_getRuleIndex)], +oncipv_Cypher5Parser$ExtendedCaseAlternativeContext, "Cypher5Parser$ExtendedCaseAlternativeContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExtendedCaseAlternativeContext_getRuleIndex)], +oncipv_Cypher5Parser$MapProjectionElementContext, "Cypher5Parser$MapProjectionElementContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MapProjectionElementContext_getRuleIndex)], +oncipv_Cypher5Parser$PathPatternNonEmptyContext, "Cypher5Parser$PathPatternNonEmptyContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PathPatternNonEmptyContext_getRuleIndex)], +oncipv_Cypher5Parser$NormalFormContext, "Cypher5Parser$NormalFormContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NormalFormContext_getRuleIndex)], +oncipv_Cypher5Parser$LabelExpressionContext, "Cypher5Parser$LabelExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$PropertiesContext, "Cypher5Parser$PropertiesContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertiesContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher5Parser$PathLengthContext, "Cypher5Parser$PathLengthContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PathLengthContext_getRuleIndex)], +oncipv_Cypher25Parser$Expression7Context, "Cypher25Parser$Expression7Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression7Context_getRuleIndex)], +oncipv_Cypher25Parser$ExtendedWhenContext, "Cypher25Parser$ExtendedWhenContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExtendedWhenContext_getRuleIndex)], +oncipv_Cypher25Parser$WhenStringOrListContext, "Cypher25Parser$WhenStringOrListContext", 45, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$WhenNullContext, "Cypher25Parser$WhenNullContext", 45, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$WhenTypeContext, "Cypher25Parser$WhenTypeContext", 45, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$WhenFormContext, "Cypher25Parser$WhenFormContext", 45, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$WhenComparatorContext, "Cypher25Parser$WhenComparatorContext", 45, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$WhenEqualsContext, "Cypher25Parser$WhenEqualsContext", 45, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$LabelExpression4Context, "Cypher25Parser$LabelExpression4Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression4Context_getRuleIndex)], +oncipv_Cypher25Parser$LabelExpression4IsContext, "Cypher25Parser$LabelExpression4IsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression4IsContext_getRuleIndex)], +oncipv_Cypher5Parser$Expression7Context, "Cypher5Parser$Expression7Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression7Context_getRuleIndex)], +oncipv_Cypher5Parser$ExtendedWhenContext, "Cypher5Parser$ExtendedWhenContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExtendedWhenContext_getRuleIndex)], +oncipv_Cypher5Parser$WhenStringOrListContext, "Cypher5Parser$WhenStringOrListContext", 49, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$WhenNullContext, "Cypher5Parser$WhenNullContext", 49, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$WhenTypeContext, "Cypher5Parser$WhenTypeContext", 49, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$WhenFormContext, "Cypher5Parser$WhenFormContext", 49, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$WhenComparatorContext, "Cypher5Parser$WhenComparatorContext", 49, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$WhenEqualsContext, "Cypher5Parser$WhenEqualsContext", 49, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$LabelExpression4Context, "Cypher5Parser$LabelExpression4Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression4Context_getRuleIndex)], +oncipv_Cypher5Parser$LabelExpression4IsContext, "Cypher5Parser$LabelExpression4IsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression4IsContext_getRuleIndex)], +oncipv_Cypher25Parser$ComparisonExpression6Context, "Cypher25Parser$ComparisonExpression6Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ComparisonExpression6Context_getRuleIndex)], +oncipv_Cypher25Parser$StringAndListComparisonContext, "Cypher25Parser$StringAndListComparisonContext", 45, oncipv_Cypher25Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$NullComparisonContext, "Cypher25Parser$NullComparisonContext", 45, oncipv_Cypher25Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$TypeComparisonContext, "Cypher25Parser$TypeComparisonContext", 45, oncipv_Cypher25Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$NormalFormComparisonContext, "Cypher25Parser$NormalFormComparisonContext", 45, oncipv_Cypher25Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$Expression6Context, "Cypher25Parser$Expression6Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression6Context_getRuleIndex)], +oncipv_Cypher25Parser$LabelExpression3Context, "Cypher25Parser$LabelExpression3Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression3Context_getRuleIndex)], +oncipv_Cypher25Parser$LabelExpression3IsContext, "Cypher25Parser$LabelExpression3IsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression3IsContext_getRuleIndex)], +oncipv_Cypher5Parser$ComparisonExpression6Context, "Cypher5Parser$ComparisonExpression6Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ComparisonExpression6Context_getRuleIndex)], +oncipv_Cypher5Parser$StringAndListComparisonContext, "Cypher5Parser$StringAndListComparisonContext", 49, oncipv_Cypher5Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$NullComparisonContext, "Cypher5Parser$NullComparisonContext", 49, oncipv_Cypher5Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$TypeComparisonContext, "Cypher5Parser$TypeComparisonContext", 49, oncipv_Cypher5Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$NormalFormComparisonContext, "Cypher5Parser$NormalFormComparisonContext", 49, oncipv_Cypher5Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$Expression6Context, "Cypher5Parser$Expression6Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression6Context_getRuleIndex)], +oncipv_Cypher5Parser$LabelExpression3Context, "Cypher5Parser$LabelExpression3Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression3Context_getRuleIndex)], +oncipv_Cypher5Parser$LabelExpression3IsContext, "Cypher5Parser$LabelExpression3IsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression3IsContext_getRuleIndex)], +oncipv_Cypher25Parser$Expression5Context, "Cypher25Parser$Expression5Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression5Context_getRuleIndex)], +oncipv_Cypher25Parser$LabelExpression2Context, "Cypher25Parser$LabelExpression2Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression2Context_getRuleIndex)], +oncipv_Cypher25Parser$LabelExpression2IsContext, "Cypher25Parser$LabelExpression2IsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression2IsContext_getRuleIndex)], +oncipv_Cypher5Parser$Expression5Context, "Cypher5Parser$Expression5Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression5Context_getRuleIndex)], +oncipv_Cypher5Parser$LabelExpression2Context, "Cypher5Parser$LabelExpression2Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression2Context_getRuleIndex)], +oncipv_Cypher5Parser$LabelExpression2IsContext, "Cypher5Parser$LabelExpression2IsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression2IsContext_getRuleIndex)], +oncipv_Cypher25Parser$Expression4Context, "Cypher25Parser$Expression4Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression4Context_getRuleIndex)], +oncipv_Cypher25Parser$LabelExpression1Context, "Cypher25Parser$LabelExpression1Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression1Context_getRuleIndex)], +oncipv_Cypher25Parser$LabelNameContext, "Cypher25Parser$LabelNameContext", 45, oncipv_Cypher25Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$DynamicLabelContext, "Cypher25Parser$DynamicLabelContext", 45, oncipv_Cypher25Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext, "Cypher25Parser$ParenthesizedLabelExpressionContext", 45, oncipv_Cypher25Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$AnyLabelContext, "Cypher25Parser$AnyLabelContext", 45, oncipv_Cypher25Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$LabelExpression1IsContext, "Cypher25Parser$LabelExpression1IsContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression1IsContext_getRuleIndex)]]); +$rt_metadata([oncipv_Cypher25Parser$LabelNameIsContext, "Cypher25Parser$LabelNameIsContext", 45, oncipv_Cypher25Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$DynamicLabelIsContext, "Cypher25Parser$DynamicLabelIsContext", 45, oncipv_Cypher25Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext, "Cypher25Parser$ParenthesizedLabelExpressionIsContext", 45, oncipv_Cypher25Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$AnyLabelIsContext, "Cypher25Parser$AnyLabelIsContext", 45, oncipv_Cypher25Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$Expression4Context, "Cypher5Parser$Expression4Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression4Context_getRuleIndex)], +oncipv_Cypher5Parser$LabelExpression1Context, "Cypher5Parser$LabelExpression1Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression1Context_getRuleIndex)], +oncipv_Cypher5Parser$LabelNameContext, "Cypher5Parser$LabelNameContext", 49, oncipv_Cypher5Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$DynamicLabelContext, "Cypher5Parser$DynamicLabelContext", 49, oncipv_Cypher5Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext, "Cypher5Parser$ParenthesizedLabelExpressionContext", 49, oncipv_Cypher5Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$AnyLabelContext, "Cypher5Parser$AnyLabelContext", 49, oncipv_Cypher5Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$LabelExpression1IsContext, "Cypher5Parser$LabelExpression1IsContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression1IsContext_getRuleIndex)], +oncipv_Cypher5Parser$LabelNameIsContext, "Cypher5Parser$LabelNameIsContext", 49, oncipv_Cypher5Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$DynamicLabelIsContext, "Cypher5Parser$DynamicLabelIsContext", 49, oncipv_Cypher5Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext, "Cypher5Parser$ParenthesizedLabelExpressionIsContext", 49, oncipv_Cypher5Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$AnyLabelIsContext, "Cypher5Parser$AnyLabelIsContext", 49, oncipv_Cypher5Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$Expression3Context, "Cypher25Parser$Expression3Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression3Context_getRuleIndex)], +oncipv_Cypher25Parser$DynamicAnyAllExpressionContext, "Cypher25Parser$DynamicAnyAllExpressionContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicAnyAllExpressionContext_getRuleIndex)], +oncipv_Cypher25Parser$SymbolicLabelNameStringContext, "Cypher25Parser$SymbolicLabelNameStringContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicLabelNameStringContext_getRuleIndex)], +oncipv_Cypher5Parser$Expression3Context, "Cypher5Parser$Expression3Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression3Context_getRuleIndex)], +oncipv_Cypher5Parser$DynamicAnyAllExpressionContext, "Cypher5Parser$DynamicAnyAllExpressionContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicAnyAllExpressionContext_getRuleIndex)], +oncipv_Cypher5Parser$SymbolicLabelNameStringContext, "Cypher5Parser$SymbolicLabelNameStringContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicLabelNameStringContext_getRuleIndex)], +oncipv_Cypher25Parser$Expression2Context, "Cypher25Parser$Expression2Context", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression2Context_getRuleIndex)], +oncipv_Cypher5Parser$Expression2Context, "Cypher5Parser$Expression2Context", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression2Context_getRuleIndex)], +oncipv_Cypher25Parser$PostFixContext, "Cypher25Parser$PostFixContext", 45, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PostFixContext_getRuleIndex)], +oncipv_Cypher25Parser$PropertyPostfixContext, "Cypher25Parser$PropertyPostfixContext", 45, oncipv_Cypher25Parser$PostFixContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$LabelPostfixContext, "Cypher25Parser$LabelPostfixContext", 45, oncipv_Cypher25Parser$PostFixContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$IndexPostfixContext, "Cypher25Parser$IndexPostfixContext", 45, oncipv_Cypher25Parser$PostFixContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$RangePostfixContext, "Cypher25Parser$RangePostfixContext", 45, oncipv_Cypher25Parser$PostFixContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$PostFixContext, "Cypher5Parser$PostFixContext", 49, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PostFixContext_getRuleIndex)], +oncipv_Cypher5Parser$PropertyPostfixContext, "Cypher5Parser$PropertyPostfixContext", 49, oncipv_Cypher5Parser$PostFixContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$LabelPostfixContext, "Cypher5Parser$LabelPostfixContext", 49, oncipv_Cypher5Parser$PostFixContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$IndexPostfixContext, "Cypher5Parser$IndexPostfixContext", 49, oncipv_Cypher5Parser$PostFixContext, [], 0, 3, 0, 0, 0, +oncipv_Cypher5Parser$RangePostfixContext, "Cypher5Parser$RangePostfixContext", 49, oncipv_Cypher5Parser$PostFixContext, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_17, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_17, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_18, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_18, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_19, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_19, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_106, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_107, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_108, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_109, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncir_Deprecation, "Deprecation", 58, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncir_Deprecation_productPrefix), "$productArity", $rt_wrapFunction0(oncir_Deprecation_productArity), "$productElement", $rt_wrapFunction1(oncir_Deprecation_productElement), "$productIterator", $rt_wrapFunction0(oncir_Deprecation_productIterator), "$hashCode", $rt_wrapFunction0(oncir_Deprecation_hashCode), "$toString", $rt_wrapFunction0(oncir_Deprecation_toString), "$equals", $rt_wrapFunction1(oncir_Deprecation_equals)], +scm_IndexedSeq$, 0, sc_SeqFactory$Delegate, [], 4, 3, 0, scm_IndexedSeq$_$callClinit, 0, +oavrt_ParseTreeListener, 0, jl_Object, [], 3, 3, 0, 0, 0, +juf_IntFunction, 0, jl_Object, [], 3, 3, 0, 0, 0, +jusi_SimpleStreamImpl$toArray$lambda$_20_0, 0, jl_Object, [juf_IntFunction], 0, 3, 0, 0, 0, +onciuh_TreeZipper$TreeContext, "TreeZipper$TreeContext", 53, jl_Object, [onciuh_TreeZipper$Context, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_productPrefix), "$productArity", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_productArity), "$productElement", $rt_wrapFunction1(onciuh_TreeZipper$TreeContext_productElement), "$productIterator", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_productIterator), "$hashCode", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_hashCode), +"$toString", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_toString), "$equals", $rt_wrapFunction1(onciuh_TreeZipper$TreeContext_equals)], +oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0_apply)]]); +$rt_metadata([onciu_ZippableUtil$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1_apply)], +oavr_CodePointBuffer$1, 0, jl_Object, [], 32, 0, 0, oavr_CodePointBuffer$1_$callClinit, 0, +oavr_InputMismatchException, "InputMismatchException", 81, oavr_RecognitionException, [], 0, 3, 0, 0, 0, +oavr_FailedPredicateException, 0, oavr_RecognitionException, [], 0, 3, 0, 0, 0, +oavrm_IntSet, 0, jl_Object, [], 3, 3, 0, 0, 0, +oavrm_IntervalSet, "IntervalSet", 85, jl_Object, [oavrm_IntSet], 0, 3, 0, oavrm_IntervalSet_$callClinit, ["$hashCode", $rt_wrapFunction0(oavrm_IntervalSet_hashCode), "$equals", $rt_wrapFunction1(oavrm_IntervalSet_equals), "$toString", $rt_wrapFunction0(oavrm_IntervalSet_toString0)], +oncie_False$$anon$11, "False$$anon$11", 62, oncie_False, [oncie_SensitiveLiteral], 4, 3, [oncie_False,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_False$$anon$11_literalLength)], +scm_RedBlackTree$TreeIterator, 0, sc_AbstractIterator, [], 1, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scm_RedBlackTree$TreeIterator_hasNext), "$next", $rt_wrapFunction0(scm_RedBlackTree$TreeIterator_next)], +scm_RedBlackTree$KeysIterator, "RedBlackTree$KeysIterator", 21, scm_RedBlackTree$TreeIterator, [], 4, 3, 0, 0, 0, +ju_HashMap$1, 0, ju_AbstractSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_HashMap$1_size), "$iterator", $rt_wrapFunction0(ju_HashMap$1_iterator)], +onciu_CypherException, 0, jl_RuntimeException, [], 1, 3, 0, 0, 0, +onciu_OpenCypherExceptionFactory$SyntaxException, "OpenCypherExceptionFactory$SyntaxException", 52, onciu_CypherException, [], 0, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(onciu_OpenCypherExceptionFactory$SyntaxException_getMessage)], +ju_HashMap$HashMapEntrySet, 0, ju_AbstractSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_HashMap$HashMapEntrySet_size), "$iterator", $rt_wrapFunction0(ju_HashMap$HashMapEntrySet_iterator)], +oncia_SubqueryCall$InTransactionsParameters, "SubqueryCall$InTransactionsParameters", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_position), "$semanticCheck", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_productPrefix), "$productArity", +$rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsParameters_toString), "$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters_equals), +"$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters_dup)], +oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0_apply)], +oncius_CypherTypeOrder$, "CypherTypeOrder$", 57, s_Enumeration, [], 4, 3, 0, oncius_CypherTypeOrder$_$callClinit, 0, +oncipl_UnicodeEscapeReplacementReader$OffsetTableBuilder, 0, jl_Object, [], 0, 0, 0, 0, 0, +jn_ReadOnlyBufferException, "ReadOnlyBufferException", 8, jl_UnsupportedOperationException, [], 0, 3, 0, 0, 0, +sm_Ordering$BooleanOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, +sm_Ordering$Boolean$, 0, jl_Object, [sm_Ordering$BooleanOrdering], 0, 3, 0, 0, ["$compare2", $rt_wrapFunction2(sm_Ordering$Boolean$_compare)], +oncia_SingleQuery$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_SingleQuery$_$callClinit, 0, +onciu_ZippableUtil$Zippable, 0, jl_Object, [], 0, 3, 0, 0, 0, +jn_IntBuffer, 0, jn_Buffer, [jl_Comparable], 1, 3, 0, 0, 0, +oncirr_normalizeWithAndReturnClauses$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_normalizeWithAndReturnClauses$$anonfun$3_applyOrElse)], +oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0, 0, jl_Object, [onciu_RewriterStopper], 0, 3, 0, 0, ["$shouldStop", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0_shouldStop)], +oeca_PrimitiveIterable, 0, jl_Object, [], 3, 3, 0, 0, 0, +oeca_IntIterable, 0, jl_Object, [oeca_PrimitiveIterable], 3, 3, 0, 0, 0, +oecip_AbstractIntIterable, 0, jl_Object, [oeca_IntIterable], 1, 3, 0, 0, 0, +oecacp_MutableIntCollection, 0, jl_Object, [oeca_IntIterable], 3, 3, 0, 0, 0, +oecaop_OrderedIntIterable, 0, jl_Object, [oeca_IntIterable], 3, 3, 0, 0, 0, +oecaop_ReversibleIntIterable, 0, jl_Object, [oecaop_OrderedIntIterable], 3, 3, 0, 0, 0, +oecalp_IntList, 0, jl_Object, [oecaop_ReversibleIntIterable], 3, 3, 0, 0, 0, +oecalp_MutableIntList, 0, jl_Object, [oecacp_MutableIntCollection, oecalp_IntList], 3, 3, 0, 0, 0, +ji_Externalizable, 0, jl_Object, [], 3, 3, 0, 0, 0, +oecilmp_IntArrayList, 0, oecip_AbstractIntIterable, [oecalp_MutableIntList, ji_Externalizable], 0, 3, 0, 0, 0, +oavrt_TerminalNode, 0, jl_Object, [oavrt_ParseTree], 3, 3, 0, 0, 0, +oavrt_ErrorNode, 0, jl_Object, [oavrt_TerminalNode], 3, 3, 0, 0, 0, +oavra_ATNConfig, "ATNConfig", 83, jl_Object, [], 0, 3, [0,0,0], 0, ["$equals", $rt_wrapFunction1(oavra_ATNConfig_equals0), "$equals10", $rt_wrapFunction1(oavra_ATNConfig_equals), "$hashCode", $rt_wrapFunction0(oavra_ATNConfig_hashCode), "$toString", $rt_wrapFunction0(oavra_ATNConfig_toString)], +sci_HashMap$HashKeySet$filterNot$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashMap$HashKeySet$filterNot$lambda$_5_0_apply)], +oncia_ProcedureResult, "ProcedureResult", 35, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_ProcedureResult_position), "$productPrefix", $rt_wrapFunction0(oncia_ProcedureResult_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ProcedureResult_productArity), "$productElement", $rt_wrapFunction1(oncia_ProcedureResult_productElement), "$productIterator", $rt_wrapFunction0(oncia_ProcedureResult_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ProcedureResult_hashCode), +"$toString", $rt_wrapFunction0(oncia_ProcedureResult_toString), "$equals", $rt_wrapFunction1(oncia_ProcedureResult_equals), "$dup", $rt_wrapFunction1(oncia_ProcedureResult_dup)], +oncia_With$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_Union$returnVariables$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$returnVariables$lambda$_6_0_apply)], +oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0_apply)], +oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1_apply)], +oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0_apply)], +oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1_apply)], +sc_Iterator$GroupedIterator, "Iterator$GroupedIterator", 19, sc_AbstractIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$GroupedIterator_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$GroupedIterator_next)], +oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0_apply)], +oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0_apply)]]); +$rt_metadata([sc_View$Filter, "View$Filter", 19, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Filter_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Filter_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Filter_isEmpty)], +oncia_Union$UnionMapping, "Union$UnionMapping", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Union$UnionMapping_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Union$UnionMapping_productArity), "$productElement", $rt_wrapFunction1(oncia_Union$UnionMapping_productElement), "$productIterator", $rt_wrapFunction0(oncia_Union$UnionMapping_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Union$UnionMapping_hashCode), "$toString", $rt_wrapFunction0(oncia_Union$UnionMapping_toString), +"$equals", $rt_wrapFunction1(oncia_Union$UnionMapping_equals)], +sc_StrictOptimizedIterableOps$partition$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedIterableOps$partition$lambda$_1_0_apply)], +oncias_SemanticCheck$chain$lambda$_15_0, "SemanticCheck$chain$lambda$_15_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$chain$lambda$_15_0_apply)], +oncias_SemanticCheck$FlatMap, "SemanticCheck$FlatMap", 40, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$run", $rt_wrapFunction2(oncias_SemanticCheck$FlatMap_run), "$chain", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_chain), "$ifOkChain", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_ifOkChain), "$map11", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_map), "$flatMap3", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_flatMap), "$productPrefix", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_productPrefix), +"$productArity", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_equals)], +oncia_SubqueryCall$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1_applyOrElse)], +oncias_SemanticAnalysisTooling$, 0, jl_Object, [], 4, 3, 0, oncias_SemanticAnalysisTooling$_$callClinit, 0, +oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_73_0, "SemanticAnalysisTooling$recordCurrentScope$lambda$_73_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_73_0_apply)], +oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0_apply)], +oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_79_0, "SemanticAnalysisTooling$requireFeatureSupport$lambda$_79_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_79_0_apply)], +oncia_DefaultWith$, "DefaultWith$", 35, jl_Object, [oncia_WithType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DefaultWith$_productArity), "$productElement", $rt_wrapFunction1(oncia_DefaultWith$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DefaultWith$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DefaultWith$_hashCode), "$toString", $rt_wrapFunction0(oncia_DefaultWith$_toString)], +oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0_apply)], +oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0_apply)], +oncie_containsAggregate$, 0, jl_Object, [s_Function1], 4, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_containsAggregate$_apply)], +oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0_apply)], +oncias_SemanticCheck$$error$lambda$_2_0, "SemanticCheck$$error$lambda$_2_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$error$lambda$_2_0_apply)], +oncia_SingleQuery$$anonfun$extractImportingWith$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$extractImportingWith$1_applyOrElse)], +jn_IntBufferImpl, 0, jn_IntBuffer, [], 1, 0, 0, 0, 0, +jn_IntBufferOverArray, 0, jn_IntBufferImpl, [], 0, 0, 0, 0, 0, +oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0, "SemanticAnalysisTooling$$$lambda$_0_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0_apply)], +oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1, "SemanticAnalysisTooling$$$lambda$_0_1", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1_apply)], +s_Enumeration$Value, "Enumeration$Value", 15, jl_Object, [sm_Ordered, ji_Serializable], 1, 3, 0, 0, ["$compareTo1", $rt_wrapFunction1(s_Enumeration$Value_compareTo), "$equals", $rt_wrapFunction1(s_Enumeration$Value_equals), "$hashCode", $rt_wrapFunction0(s_Enumeration$Value_hashCode)], +s_Enumeration$Val, "Enumeration$Val", 15, s_Enumeration$Value, [], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(s_Enumeration$Val_toString)], +oncifp_ResolvedCall$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncifp_ResolvedCall$_$callClinit, 0, +oncifp_RewriteProcedureCalls$resolveProcedure$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +s_Product4, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, +s_Tuple4, 0, jl_Object, [s_Product4, ji_Serializable], 4, 3, 0, 0, 0, +oncifp_ResolvedCall$$apply$lambda$_5_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$apply$lambda$_5_0_apply)], +oncifp_ResolvedCall$$apply$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$apply$lambda$_5_1_apply)], +oncifp_ResolvedCall$$apply$lambda$_5_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$apply$lambda$_5_2_apply)], +oncifp_ResolvedCall$$apply$lambda$_5_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$apply$lambda$_5_3_apply)], +oncifp_ResolvedCall$$apply$lambda$_5_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$apply$lambda$_5_4_apply)], +oncifp_ResolvedCall$$apply$lambda$_5_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$apply$lambda$_5_5_apply)], +oncifp_ResolvedCall$_init_$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$_init_$lambda$_71_0_apply)], +oncifp_ResolvedCall$_init_$lambda$_71_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$_init_$lambda$_71_1_apply)], +oncie_ProcedureName, "ProcedureName", 62, jl_Object, [oncie_SymbolicName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_ProcedureName_name), "$position", $rt_wrapFunction0(oncie_ProcedureName_position), "$productPrefix", $rt_wrapFunction0(oncie_ProcedureName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ProcedureName_productArity), "$productElement", $rt_wrapFunction1(oncie_ProcedureName_productElement), "$productIterator", $rt_wrapFunction0(oncie_ProcedureName_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_ProcedureName_hashCode), "$toString", $rt_wrapFunction0(oncie_ProcedureName_toString), "$equals", $rt_wrapFunction1(oncie_ProcedureName_equals), "$dup", $rt_wrapFunction1(oncie_ProcedureName_dup)], +ong_GqlParams, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_20, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_21, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_22, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_23, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_24, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_25, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_26, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_27, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_28, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_29, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_30, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_31, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$9_32, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_33, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_34, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_35, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_36, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_37, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_38, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_39, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_40, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_41, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_42, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_43, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_44, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_45, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_46, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_20, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_21, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_22, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_23, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_24, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_25, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_26, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_27, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_28, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_29, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_30, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_31, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_32, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_33, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_34, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_35, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_36, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_37, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_38, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_39, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_40, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_41, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_42, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_43, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_44, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_45, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_46, 0, jl_Object, [], 0, 3, 0, 0, 0, +onc_SettingsDeclaration, 0, jl_Object, [], 3, 3, 0, 0, 0, +onc_GraphDatabaseInternalSettings, 0, jl_Object, [onc_SettingsDeclaration], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_117, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_121, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_122, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_124, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_125, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_47, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$11_47, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_48, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_49, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_48, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_49, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_127, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_133, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavrm_Interval, "Interval", 85, jl_Object, [], 0, 3, 0, oavrm_Interval_$callClinit, ["$equals", $rt_wrapFunction1(oavrm_Interval_equals), "$hashCode", $rt_wrapFunction0(oavrm_Interval_hashCode), "$toString", $rt_wrapFunction0(oavrm_Interval_toString)], +sci_MapKeyIterator, "MapKeyIterator", 20, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapKeyIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_MapKeyIterator_isEmpty), "$filterImpl0", $rt_wrapFunction2(sci_MapKeyIterator_filterImpl), "$collect2", $rt_wrapFunction1(sci_MapKeyIterator_collect), "$map5", $rt_wrapFunction1(sci_MapKeyIterator_map), "$flatMap2", $rt_wrapFunction1(sci_MapKeyIterator_flatMap), "$concat0", $rt_wrapFunction1(sci_MapKeyIterator_concat), "$drop1", +$rt_wrapFunction1(sci_MapKeyIterator_drop), "$sliceIterator", $rt_wrapFunction2(sci_MapKeyIterator_sliceIterator), "$toString", $rt_wrapFunction0(sci_MapKeyIterator_toString), "$foreach", $rt_wrapFunction1(sci_MapKeyIterator_foreach), "$exists", $rt_wrapFunction1(sci_MapKeyIterator_exists), "$find2", $rt_wrapFunction1(sci_MapKeyIterator_find), "$foldLeft", $rt_wrapFunction2(sci_MapKeyIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_MapKeyIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_MapKeyIterator_size), +"$copyToArray1", $rt_wrapFunction1(sci_MapKeyIterator_copyToArray), "$copyToArray0", $rt_wrapFunction2(sci_MapKeyIterator_copyToArray0), "$copyToArray", $rt_wrapFunction3(sci_MapKeyIterator_copyToArray1), "$to0", $rt_wrapFunction1(sci_MapKeyIterator_to), "$toList", $rt_wrapFunction0(sci_MapKeyIterator_toList), "$toSeq", $rt_wrapFunction0(sci_MapKeyIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_MapKeyIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_MapKeyIterator_knownSize), "$next", $rt_wrapFunction0(sci_MapKeyIterator_next)], +sci_Map$Map2$$anon$2, "Map$Map2$$anon$2", 20, sci_Map$Map2$Map2Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map2$$anon$2_nextResult)], +sci_Map$Map3$$anon$5, "Map$Map3$$anon$5", 20, sci_Map$Map3$Map3Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map3$$anon$5_nextResult)], +sci_Map$Map4$$anon$8, "Map$Map4$$anon$8", 20, sci_Map$Map4$Map4Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map4$$anon$8_nextResult)], +ju_HashMap$AbstractMapIterator, 0, jl_Object, [], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_HashMap$AbstractMapIterator_hasNext), "$remove2", $rt_wrapFunction0(ju_HashMap$AbstractMapIterator_remove)], +ju_HashMap$KeyIterator, 0, ju_HashMap$AbstractMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_HashMap$KeyIterator_next)], +ju_HashMap$EntryIterator, 0, ju_HashMap$AbstractMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_HashMap$EntryIterator_next)], +onciu_ZippableUtil$Zippable$zipLeft$lambda$_0_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, +scm_CheckedIndexedSeqView, 0, jl_Object, [sc_IndexedSeqView], 3, 3, 0, 0, 0, +scm_CheckedIndexedSeqView$Reverse, 0, sc_IndexedSeqView$Reverse, [scm_CheckedIndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(scm_CheckedIndexedSeqView$Reverse_iterator)], +oncia_SubqueryCall$InTransactionsReportParameters, "SubqueryCall$InTransactionsReportParameters", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsReportParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_position), "$semanticCheck", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsReportParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters_toString), "$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsReportParameters_equals), +"$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsReportParameters_dup)], +jn_BufferOverflowException, "BufferOverflowException", 8, jl_RuntimeException, [], 0, 3, 0, 0, 0, +oncifp_ResolvedCall$coerceArguments$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$coerceArguments$lambda$_22_0_apply)], +oncifp_ResolvedCall$coerceArguments$lambda$_22_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$coerceArguments$lambda$_22_1_apply)], +oavrt_TerminalNodeImpl, "TerminalNodeImpl", 82, jl_Object, [oavrt_TerminalNode], 0, 3, 0, 0, ["$getSymbol", $rt_wrapFunction0(oavrt_TerminalNodeImpl_getSymbol), "$setParent", $rt_wrapFunction1(oavrt_TerminalNodeImpl_setParent), "$getText", $rt_wrapFunction0(oavrt_TerminalNodeImpl_getText), "$toString", $rt_wrapFunction0(oavrt_TerminalNodeImpl_toString)], +oavrt_ErrorNodeImpl, "ErrorNodeImpl", 82, oavrt_TerminalNodeImpl, [oavrt_ErrorNode], 0, 3, 0, 0, 0, +oncia_CatalogName$qualifiedNameString$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CatalogName$qualifiedNameString$lambda$_10_0_apply)], +jusi_SimpleStreamImpl$ArrayFillingConsumer, 0, jl_Object, [juf_Predicate], 0, 0, 0, 0, ["$test0", $rt_wrapFunction1(jusi_SimpleStreamImpl$ArrayFillingConsumer_test)], +jusi_SimpleStreamImpl$toArray$lambda$_21_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_SimpleStreamImpl$toArray$lambda$_21_0_test)], +sci_MapValueIterator, "MapValueIterator", 20, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapValueIterator_iterator), "$contains", $rt_wrapFunction1(sci_MapValueIterator_contains), "$isEmpty", $rt_wrapFunction0(sci_MapValueIterator_isEmpty), "$filterImpl0", $rt_wrapFunction2(sci_MapValueIterator_filterImpl), "$map5", $rt_wrapFunction1(sci_MapValueIterator_map), "$flatMap2", $rt_wrapFunction1(sci_MapValueIterator_flatMap), "$toString", $rt_wrapFunction0(sci_MapValueIterator_toString), +"$foreach", $rt_wrapFunction1(sci_MapValueIterator_foreach), "$exists", $rt_wrapFunction1(sci_MapValueIterator_exists), "$find2", $rt_wrapFunction1(sci_MapValueIterator_find), "$foldLeft", $rt_wrapFunction2(sci_MapValueIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_MapValueIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_MapValueIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_MapValueIterator_copyToArray0), "$copyToArray0", $rt_wrapFunction2(sci_MapValueIterator_copyToArray), "$copyToArray", +$rt_wrapFunction3(sci_MapValueIterator_copyToArray1), "$toList", $rt_wrapFunction0(sci_MapValueIterator_toList), "$toSeq", $rt_wrapFunction0(sci_MapValueIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_MapValueIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_MapValueIterator_knownSize), "$next", $rt_wrapFunction0(sci_MapValueIterator_next)], +sci_Map$Map4$$anon$9, "Map$Map4$$anon$9", 20, sci_Map$Map4$Map4Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map4$$anon$9_nextResult)], +sci_Map$Map2$$anon$3, "Map$Map2$$anon$3", 20, sci_Map$Map2$Map2Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map2$$anon$3_nextResult)], +sci_Map$Map3$$anon$6, "Map$Map3$$anon$6", 20, sci_Map$Map3$Map3Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map3$$anon$6_nextResult)], +oavra_Transition, "Transition", 83, jl_Object, [], 1, 3, [0,0,0], oavra_Transition_$callClinit, ["$isEpsilon", $rt_wrapFunction0(oavra_Transition_isEpsilon), "$label0", $rt_wrapFunction0(oavra_Transition_label)], +oavra_RuleTransition, "RuleTransition", 83, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_RuleTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_RuleTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_RuleTransition_matches)], +onciuci_ListSet$removedAll$lambda$_51_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciuci_ListSet$removedAll$lambda$_51_0_apply)], +ju_LinkedHashMapKeySet, 0, ju_AbstractSet, [ju_SequencedSet], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_LinkedHashMapKeySet_size), "$iterator", $rt_wrapFunction0(ju_LinkedHashMapKeySet_iterator)], +oavra_ATNType, "ATNType", 83, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +ji_ObjectStreamException, 0, ji_IOException, [], 0, 3, 0, 0, 0, +ji_InvalidClassException, 0, ji_ObjectStreamException, [], 0, 3, 0, 0, 0, +oavra_BlockStartState, 0, oavra_DecisionState, [], 1, 3, 0, 0, 0, +oavra_LoopEndState, "LoopEndState", 83, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_LoopEndState_getStateType)], +oavra_BlockEndState, "BlockEndState", 83, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_BlockEndState_getStateType)], +oavra_RuleStartState, "RuleStartState", 83, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_RuleStartState_getStateType)], +oavra_RuleStopState, "RuleStopState", 83, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_RuleStopState_getStateType)], +oavra_TokensStartState, "TokensStartState", 83, oavra_DecisionState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_TokensStartState_getStateType)], +oavra_EpsilonTransition, "EpsilonTransition", 83, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_EpsilonTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_EpsilonTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_EpsilonTransition_matches), "$toString", $rt_wrapFunction0(oavra_EpsilonTransition_toString)], +oavra_PlusLoopbackState, "PlusLoopbackState", 83, oavra_DecisionState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_PlusLoopbackState_getStateType)], +oavra_StarLoopbackState, "StarLoopbackState", 83, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_StarLoopbackState_getStateType)], +oavra_PlusBlockStartState, "PlusBlockStartState", 83, oavra_BlockStartState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_PlusBlockStartState_getStateType)], +oavra_LexerAction, "LexerAction", 83, jl_Object, [], 3, 3, [0,0,0], 0, 0, +oavra_LexerActionType, "LexerActionType", 83, jl_Enum, [], 12, 3, [0,0,0], 0, 0]); +$rt_metadata([oavra_BasicBlockStartState, "BasicBlockStartState", 83, oavra_BlockStartState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_BasicBlockStartState_getStateType)], +oavra_BasicState, "BasicState", 83, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_BasicState_getStateType)], +oavra_AtomTransition, "AtomTransition", 83, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_AtomTransition_getSerializationType), "$label0", $rt_wrapFunction0(oavra_AtomTransition_label), "$matches3", $rt_wrapFunction3(oavra_AtomTransition_matches), "$toString", $rt_wrapFunction0(oavra_AtomTransition_toString)], +oncia_ProcedureResultItem, "ProcedureResultItem", 35, jl_Object, [onciu_ASTNode, oncias_SemanticAnalysisTooling, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_ProcedureResultItem_position), "$productPrefix", $rt_wrapFunction0(oncia_ProcedureResultItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ProcedureResultItem_productArity), "$productElement", $rt_wrapFunction1(oncia_ProcedureResultItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_ProcedureResultItem_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_ProcedureResultItem_hashCode), "$toString", $rt_wrapFunction0(oncia_ProcedureResultItem_toString), "$equals", $rt_wrapFunction1(oncia_ProcedureResultItem_equals), "$dup", $rt_wrapFunction1(oncia_ProcedureResultItem_dup)], +jn_BufferUnderflowException, "BufferUnderflowException", 8, jl_RuntimeException, [], 0, 3, 0, 0, 0, +oncie_Expression$$anonfun$containsAggregate$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$containsAggregate$1_applyOrElse)], +sci_HashCollisionMapNode$removed$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionMapNode$removed$lambda$_13_0_apply)], +oncia_ReturnItems$returnVariables$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$returnVariables$lambda$_70_0_apply)], +sci_HashMap$HashKeySet$filter$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashMap$HashKeySet$filter$lambda$_4_0_apply)], +sci_HashMap$accum$1, 0, sr_AbstractFunction2, [s_Function1], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sci_HashMap$accum$1_apply0), "$apply2", $rt_wrapFunction1(sci_HashMap$accum$1_apply1)], +sci_MapNodeRemoveAllSetNodeIterator, 0, sci_ChampBaseIterator, [], 4, 3, 0, 0, 0, +sm_Ordering$LongOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, +sm_Ordering$Long$, 0, jl_Object, [sm_Ordering$LongOrdering], 0, 3, 0, 0, 0, +sm_Ordering$ByteOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, +sm_Ordering$Byte$, 0, jl_Object, [sm_Ordering$ByteOrdering], 0, 3, 0, 0, 0, +sm_Ordering$ShortOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, +sm_Ordering$Short$, 0, jl_Object, [sm_Ordering$ShortOrdering], 0, 3, 0, 0, 0, +sm_Ordering$CharOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, +sm_Ordering$Char$, 0, jl_Object, [sm_Ordering$CharOrdering], 0, 3, 0, 0, 0, +su_Sorting$, 0, jl_Object, [], 4, 3, 0, 0, 0, oncia_UpdateClause, 0, jl_Object, [oncia_Clause, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, -oncia_CreateOrInsert, 0, jl_Object, [oncia_UpdateClause], 3, 3, 0, 0, 0, +oncia_SetClause, "SetClause", 35, jl_Object, [oncia_UpdateClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_SetClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_SetClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_SetClause_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_SetClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_SetClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_SetClause_foldedOver), +"$folder", $rt_wrapFunction0(oncia_SetClause_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_SetClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_SetClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_SetClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", +$rt_wrapFunction0(oncia_SetClause_position), "$name", $rt_wrapFunction0(oncia_SetClause_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_SetClause_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetClause_productArity), "$productElement", $rt_wrapFunction1(oncia_SetClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetClause_hashCode), +"$toString", $rt_wrapFunction0(oncia_SetClause_toString), "$equals", $rt_wrapFunction1(oncia_SetClause_equals), "$dup", $rt_wrapFunction1(oncia_SetClause_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetClause_mapExpressions0)], oncia_SingleRelTypeCheck, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_Create, "Create", 36, jl_Object, [oncia_CreateOrInsert, oncia_SingleRelTypeCheck, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Create_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Create_semanticCheck), "$error2", $rt_wrapFunction2(oncia_Create_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Create_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Create_foldedOver), "$folder", $rt_wrapFunction0(oncia_Create_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", -$rt_wrapFunction0(oncia_Create_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Create_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Create_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$pattern5", $rt_wrapFunction0(oncia_Create_pattern), "$position", $rt_wrapFunction0(oncia_Create_position), "$name", $rt_wrapFunction0(oncia_Create_name), -"$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Create_clauseSpecificSemanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Create_shouldRunQPPChecks), "$productPrefix", $rt_wrapFunction0(oncia_Create_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Create_productArity), "$productElement", $rt_wrapFunction1(oncia_Create_productElement), "$productIterator", $rt_wrapFunction0(oncia_Create_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Create_hashCode), "$toString", $rt_wrapFunction0(oncia_Create_toString), -"$equals", $rt_wrapFunction1(oncia_Create_equals), "$dup", $rt_wrapFunction1(oncia_Create_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Create_mapExpressions)], -oncie_Pattern, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, -oncie_Pattern$ForUpdate, "Pattern$ForUpdate", 64, jl_Object, [oncie_Pattern, oncie_HasMappableExpressions, ji_Serializable], 4, 3, [oncie_Pattern,0,"ForUpdate"], 0, ["$foldedOver", $rt_wrapFunction0(oncie_Pattern$ForUpdate_foldedOver), "$folder", $rt_wrapFunction0(oncie_Pattern$ForUpdate_folder), "$patternParts", $rt_wrapFunction0(oncie_Pattern$ForUpdate_patternParts), "$position", $rt_wrapFunction0(oncie_Pattern$ForUpdate_position), "$productPrefix", $rt_wrapFunction0(oncie_Pattern$ForUpdate_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_Pattern$ForUpdate_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$ForUpdate_productElement), "$productIterator", $rt_wrapFunction0(oncie_Pattern$ForUpdate_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$ForUpdate_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$ForUpdate_toString), "$equals", $rt_wrapFunction1(oncie_Pattern$ForUpdate_equals), "$dup", $rt_wrapFunction1(oncie_Pattern$ForUpdate_dup)], -onciafn_Neo4jASTFactory$createClause$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createClause$lambda$_13_1_apply)], -onciafn_Neo4jASTFactory$createClause$lambda$_13_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$createClause$lambda$_13_2_apply)], -oncia_Delete, "Delete", 36, jl_Object, [oncia_UpdateClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Delete_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Delete_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Delete_shouldRunQPPChecks), "$expectType4", $rt_wrapFunction4(oncia_Delete_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_Delete_expectType$default$4), "$error2", $rt_wrapFunction2(oncia_Delete_error), "$asCanonicalStringVal", -$rt_wrapFunction0(oncia_Delete_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Delete_foldedOver), "$folder", $rt_wrapFunction0(oncia_Delete_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Delete_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Delete_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Delete_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), -"$position", $rt_wrapFunction0(oncia_Delete_position), "$name", $rt_wrapFunction0(oncia_Delete_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Delete_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Delete_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Delete_productArity), "$productElement", $rt_wrapFunction1(oncia_Delete_productElement), "$productIterator", $rt_wrapFunction0(oncia_Delete_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Delete_hashCode), -"$toString", $rt_wrapFunction0(oncia_Delete_toString), "$equals", $rt_wrapFunction1(oncia_Delete_equals), "$dup", $rt_wrapFunction1(oncia_Delete_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Delete_mapExpressions)], -oncia_Finish, "Finish", 36, jl_Object, [oncia_Clause, oncia_ClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Finish_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Finish_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Finish_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_Finish_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Finish_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Finish_foldedOver), +oncia_Merge, "Merge", 35, jl_Object, [oncia_UpdateClause, oncia_SingleRelTypeCheck, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Merge_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Merge_semanticCheck), "$error4", $rt_wrapFunction2(oncia_Merge_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Merge_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Merge_foldedOver), "$folder", $rt_wrapFunction0(oncia_Merge_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", +$rt_wrapFunction0(oncia_Merge_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Merge_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Merge_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Merge_position), "$name", $rt_wrapFunction0(oncia_Merge_name), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Merge_shouldRunQPPChecks), +"$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Merge_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Merge_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Merge_productArity), "$productElement", $rt_wrapFunction1(oncia_Merge_productElement), "$productIterator", $rt_wrapFunction0(oncia_Merge_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Merge_hashCode), "$toString", $rt_wrapFunction0(oncia_Merge_toString), "$equals", $rt_wrapFunction1(oncia_Merge_equals), "$dup", +$rt_wrapFunction1(oncia_Merge_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Merge_mapExpressions)], +oncia_Foreach, "Foreach", 35, jl_Object, [oncia_UpdateClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Foreach_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Foreach_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Foreach_shouldRunQPPChecks), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_Foreach_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_Foreach_expectType$default$5), +"$error4", $rt_wrapFunction2(oncia_Foreach_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Foreach_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Foreach_foldedOver), "$folder", $rt_wrapFunction0(oncia_Foreach_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Foreach_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Foreach_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", +$rt_wrapFunction1(oncia_Foreach_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Foreach_position), "$name", $rt_wrapFunction0(oncia_Foreach_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Foreach_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Foreach_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Foreach_productArity), "$productElement", $rt_wrapFunction1(oncia_Foreach_productElement), +"$productIterator", $rt_wrapFunction0(oncia_Foreach_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Foreach_hashCode), "$toString", $rt_wrapFunction0(oncia_Foreach_toString), "$equals", $rt_wrapFunction1(oncia_Foreach_equals), "$dup", $rt_wrapFunction1(oncia_Foreach_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Foreach_mapExpressions)], +oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply)], +oncia_Unwind, "Unwind", 35, jl_Object, [oncia_Clause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Unwind_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Unwind_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Unwind_shouldRunQPPChecks), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_Unwind_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_Unwind_expectType$default$5), +"$error4", $rt_wrapFunction2(oncia_Unwind_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Unwind_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Unwind_foldedOver), "$folder", $rt_wrapFunction0(oncia_Unwind_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Unwind_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Unwind_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", +$rt_wrapFunction1(oncia_Unwind_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Unwind_position), "$name", $rt_wrapFunction0(oncia_Unwind_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Unwind_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Unwind_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Unwind_productArity), "$productElement", $rt_wrapFunction1(oncia_Unwind_productElement), +"$productIterator", $rt_wrapFunction0(oncia_Unwind_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Unwind_hashCode), "$toString", $rt_wrapFunction0(oncia_Unwind_toString), "$equals", $rt_wrapFunction1(oncia_Unwind_equals), "$dup", $rt_wrapFunction1(oncia_Unwind_dup)], +oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2_apply)], +oncia_ReadAdministrationCommand$yields$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$yields$lambda$_11_0_apply)], +oncia_ReadAdministrationCommand$returns$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$returns$lambda$_13_0_apply)], +oncias_SemanticCheckInterpreter$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0_apply)], +oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1_apply)], +oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0_apply)], +oncias_Scope$dumpTree$lambda$_24_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$dumpTree$lambda$_24_0_apply)], +oncias_Scope$dumpTree$lambda$_24_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$dumpTree$lambda$_24_1_apply)], +oncia_ReturnItems$ReturnVariables$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +sc_IterableOps$sliding$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOps$sliding$lambda$_64_0_apply)], +onih_Exceptions, 0, jl_Object, [], 4, 3, 0, 0, 0, +scm_Iterable$, 0, sc_IterableFactory$Delegate, [], 4, 3, 0, scm_Iterable$_$callClinit, 0, +onciu_StepSequencer$$anonfun$orderSteps$16$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$16$lambda$_34_0_apply)], +onciu_StepSequencer$$anonfun$orderSteps$8$lambda$_26_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$8$lambda$_26_0_apply)], +sc_MapOps$concat$lambda$_45_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_MapOps$concat$lambda$_45_0_apply)], +sci_MapOps$removedAll$lambda$_7_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sci_MapOps$removedAll$lambda$_7_0_apply)], +sm_Ordering$$anon$1, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$compare2", $rt_wrapFunction2(sm_Ordering$$anon$1_compare)], +sc_View$ZipAll, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$ZipAll_iterator), "$knownSize", $rt_wrapFunction0(sc_View$ZipAll_knownSize)], +oncia_CommandClauseWithNames, 0, jl_Object, [oncia_CommandClause], 3, 3, 0, 0, 0, +oncia_CommandClauseAllowedOnSystem, 0, jl_Object, [oncia_ClauseAllowedOnSystem], 3, 3, 0, 0, 0, +oncia_TransactionsCommandClause, 0, jl_Object, [oncia_CommandClauseWithNames, oncia_CommandClauseAllowedOnSystem], 3, 3, 0, 0, 0]); +$rt_metadata([oncias_SemanticCheckResult$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncias_SemanticCheckInterpreter$ExecutableCheck$, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncia_SingleQuery$$anonfun$extractGraphSelection$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$extractGraphSelection$1_applyOrElse)], +oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0_apply)], +oavra_Transition$1, "Transition$1", 83, ju_HashMap, [], 0, 0, 0, 0, 0, +oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0_apply)], +oncias_SemanticCheckInterpreter$ExecutableCheck, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper, "SemanticCheckInterpreter$ExecutableCheck$Wrapper", 40, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productElement), +"$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_equals)], +oncias_SemanticCheck$Map, "SemanticCheck$Map", 40, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$chain", $rt_wrapFunction1(oncias_SemanticCheck$Map_chain), "$ifOkChain", $rt_wrapFunction1(oncias_SemanticCheck$Map_ifOkChain), "$map11", $rt_wrapFunction1(oncias_SemanticCheck$Map_map), "$flatMap3", $rt_wrapFunction1(oncias_SemanticCheck$Map_flatMap), "$productPrefix", $rt_wrapFunction0(oncias_SemanticCheck$Map_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheck$Map_productArity), +"$productElement", $rt_wrapFunction1(oncias_SemanticCheck$Map_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheck$Map_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheck$Map_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheck$Map_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheck$Map_equals)], +oncias_SemanticCheckInterpreter$ExecutableCheck$Map, "SemanticCheckInterpreter$ExecutableCheck$Map", 40, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productElement), +"$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_equals)], +oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap, "SemanticCheckInterpreter$ExecutableCheck$FlatMap", 40, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productElement), +"$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_equals)], +oncias_SemanticCheck$CheckFromContext, "SemanticCheck$CheckFromContext", 40, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$chain", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_chain), "$ifOkChain", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_ifOkChain), "$map11", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_map), "$flatMap3", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_flatMap), "$productPrefix", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_productPrefix), +"$productArity", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_equals)], +oncias_SemanticCheck$Annotated, 0, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$, "SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$", 40, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productIterator), +"$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_toString)], +oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$, "SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$", 40, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productIterator), +"$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_toString)], +oncifp_ResolvedCall$$signatureResults$lambda$_10_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$signatureResults$lambda$_10_0_apply)], +oncifp_ResolvedCall$$signatureResults$lambda$_10_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$signatureResults$lambda$_10_1_apply)], +oavra_RangeTransition, "RangeTransition", 83, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_RangeTransition_getSerializationType), "$label0", $rt_wrapFunction0(oavra_RangeTransition_label), "$matches3", $rt_wrapFunction3(oavra_RangeTransition_matches), "$toString", $rt_wrapFunction0(oavra_RangeTransition_toString)], +oavra_AbstractPredicateTransition, 0, oavra_Transition, [], 1, 3, 0, 0, 0, +oavra_PredicateTransition, "PredicateTransition", 83, oavra_AbstractPredicateTransition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_PredicateTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_PredicateTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_PredicateTransition_matches), "$toString", $rt_wrapFunction0(oavra_PredicateTransition_toString)], +oavra_ActionTransition, "ActionTransition", 83, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_ActionTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_ActionTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_ActionTransition_matches), "$toString", $rt_wrapFunction0(oavra_ActionTransition_toString)], +oavra_SetTransition, "SetTransition", 83, oavra_Transition, [], 0, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_SetTransition_getSerializationType), "$label0", $rt_wrapFunction0(oavra_SetTransition_label), "$matches3", $rt_wrapFunction3(oavra_SetTransition_matches), "$toString", $rt_wrapFunction0(oavra_SetTransition_toString)], +oavra_NotSetTransition, "NotSetTransition", 83, oavra_SetTransition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_NotSetTransition_getSerializationType), "$matches3", $rt_wrapFunction3(oavra_NotSetTransition_matches), "$toString", $rt_wrapFunction0(oavra_NotSetTransition_toString)], +oavra_WildcardTransition, "WildcardTransition", 83, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_WildcardTransition_getSerializationType), "$matches3", $rt_wrapFunction3(oavra_WildcardTransition_matches), "$toString", $rt_wrapFunction0(oavra_WildcardTransition_toString)], +oavra_PrecedencePredicateTransition, "PrecedencePredicateTransition", 83, oavra_AbstractPredicateTransition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_PrecedencePredicateTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_PrecedencePredicateTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_PrecedencePredicateTransition_matches), "$toString", $rt_wrapFunction0(oavra_PrecedencePredicateTransition_toString)], +onih_Exceptions$_clinit_$lambda$_17_0, 0, jl_Object, [jl_Thread$UncaughtExceptionHandler], 0, 3, 0, 0, 0, +oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0_apply)], +onciu_RewritableJavascript$PROXY$9_50, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_50, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_135, 0, jl_Object, [], 0, 3, 0, 0, 0, +scm_ArrayBuffer$$anon$1, "ArrayBuffer$$anon$1", 21, scm_GrowableBuilder, [], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_ArrayBuffer$$anon$1_sizeHint)], +oncipv_Cypher5ParserListener, 0, jl_Object, [oavrt_ParseTreeListener], 3, 3, 0, 0, 0, +oncipv_AbstractCypher5AstBuilder, 0, jl_Object, [oncipv_Cypher5ParserListener], 1, 3, 0, 0, ["$exitEveryRule", $rt_wrapFunction1(oncipv_AbstractCypher5AstBuilder_exitEveryRule)], +oncipvaf_LiteralBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, +oncipvaf_LabelExpressionBuilder, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, +oncipvaf_DdlBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, +oncipvaf_DdlCreateBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, +oncipvaf_DdlPrivilegeBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, +oncipvaf_ExpressionBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, +oncipvaf_StatementBuilder, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, +oncipvaf_Cypher5AstBuilder, 0, oncipv_AbstractCypher5AstBuilder, [oncipvaf_LiteralBuilder0, oncipvaf_LabelExpressionBuilder, oncipvaf_DdlBuilder0, oncipvaf_DdlCreateBuilder0, oncipvaf_DdlShowBuilder, oncipvaf_DdlPrivilegeBuilder0, oncipvaf_ExpressionBuilder0, oncipvaf_StatementBuilder], 4, 3, 0, 0, 0, +oncipa_SyntaxChecker, 0, jl_Object, [oavrt_ParseTreeListener], 3, 3, 0, 0, 0, +oncipvaf_Cypher5SyntaxChecker, 0, jl_Object, [oncipa_SyntaxChecker], 4, 3, 0, 0, ["$errors", $rt_wrapFunction0(oncipvaf_Cypher5SyntaxChecker_errors), "$exitEveryRule", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker_exitEveryRule), "$check0", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker_check)], +ju_LinkedHashMapIterator, 0, jl_Object, [], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_LinkedHashMapIterator_hasNext), "$remove2", $rt_wrapFunction0(ju_LinkedHashMapIterator_remove)], +ju_LinkedHashMapIterator$KeyIterator, 0, ju_LinkedHashMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_LinkedHashMapIterator$KeyIterator_next)], +oavra_LL1Analyzer, 0, jl_Object, [], 0, 3, 0, 0, 0, +juc_CancellationException, 0, jl_IllegalStateException, [], 0, 3, 0, 0, 0, +oavrm_ParseCancellationException, "ParseCancellationException", 85, juc_CancellationException, [], 0, 3, 0, 0, 0, +oncias_SemanticState$scope$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$scope$lambda$_52_0_apply)]]); +$rt_metadata([oavra_PredictionContext, "PredictionContext", 83, jl_Object, [], 1, 3, [0,0,0], oavra_PredictionContext_$callClinit, ["$isEmpty", $rt_wrapFunction0(oavra_PredictionContext_isEmpty), "$hashCode", $rt_wrapFunction0(oavra_PredictionContext_hashCode)], +oavrd_DFASerializer, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0_apply)], +oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1_apply)], +oavra_StarBlockStartState, "StarBlockStartState", 83, oavra_BlockStartState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_StarBlockStartState_getStateType)], +oavra_ATNDeserializer$1, 0, jl_Object, [], 32, 0, 0, oavra_ATNDeserializer$1_$callClinit, 0, +oavra_LexerChannelAction, "LexerChannelAction", 83, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerChannelAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerChannelAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerChannelAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerChannelAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerChannelAction_toString)], +oavra_LexerCustomAction, "LexerCustomAction", 83, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerCustomAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerCustomAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerCustomAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerCustomAction_equals)], +oavra_LexerModeAction, "LexerModeAction", 83, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerModeAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerModeAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerModeAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerModeAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerModeAction_toString)], +oavra_LexerMoreAction, "LexerMoreAction", 83, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerMoreAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerMoreAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerMoreAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerMoreAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerMoreAction_toString)], +oavra_LexerPopModeAction, "LexerPopModeAction", 83, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerPopModeAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerPopModeAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerPopModeAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerPopModeAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerPopModeAction_toString)], +oavra_LexerPushModeAction, "LexerPushModeAction", 83, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerPushModeAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerPushModeAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerPushModeAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerPushModeAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerPushModeAction_toString)], +oavra_LexerSkipAction, "LexerSkipAction", 83, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerSkipAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerSkipAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerSkipAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerSkipAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerSkipAction_toString)], +oavra_LexerTypeAction, "LexerTypeAction", 83, jl_Object, [oavra_LexerAction], 0, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerTypeAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerTypeAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerTypeAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerTypeAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerTypeAction_toString)], +oncipv_Cypher25ParserListener, 0, jl_Object, [oavrt_ParseTreeListener], 3, 3, 0, 0, 0, +oncipv_AbstractCypher25AstBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 1, 3, 0, 0, ["$exitEveryRule", $rt_wrapFunction1(oncipv_AbstractCypher25AstBuilder_exitEveryRule)], +oncipvaf_LiteralBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, +oncipvaf_LabelExpressionBuilder0, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, +oncipvaf_DdlBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, +oncipvaf_DdlCreateBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder0, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, +oncipvaf_DdlPrivilegeBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, +oncipvaf_ExpressionBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, +oncipvaf_StatementBuilder0, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, +oncipvaf_Cypher25AstBuilder, 0, oncipv_AbstractCypher25AstBuilder, [oncipvaf_LiteralBuilder, oncipvaf_LabelExpressionBuilder0, oncipvaf_DdlBuilder, oncipvaf_DdlCreateBuilder, oncipvaf_DdlShowBuilder0, oncipvaf_DdlPrivilegeBuilder, oncipvaf_ExpressionBuilder, oncipvaf_StatementBuilder0], 4, 3, 0, 0, 0, +oncipvaf_Cypher25SyntaxChecker, 0, jl_Object, [oncipa_SyntaxChecker], 4, 3, 0, 0, ["$errors", $rt_wrapFunction0(oncipvaf_Cypher25SyntaxChecker_errors), "$exitEveryRule", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker_exitEveryRule), "$check0", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker_check)], +oncius_ListType$isSubtypeOf$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ListType$isSubtypeOf$lambda$_33_0_apply)], +oncius_NothingType, "NothingType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$simplify", $rt_wrapFunction0(oncius_NothingType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_NothingType_normalizedCypherTypeString), "$coercibleTo", $rt_wrapFunction0(oncius_NothingType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_NothingType_isAssignableFrom), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_NothingType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), +"$position", $rt_wrapFunction0(oncius_NothingType_position), "$parentType", $rt_wrapFunction0(oncius_NothingType_parentType), "$toString", $rt_wrapFunction0(oncius_NothingType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_NothingType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_NothingType_sortOrder), "$isNullable", $rt_wrapFunction0(oncius_NothingType_isNullable), "$description", $rt_wrapFunction0(oncius_NothingType_description), "$withIsNullable1", $rt_wrapFunction1(oncius_NothingType_withIsNullable), +"$isSubtypeOf", $rt_wrapFunction1(oncius_NothingType_isSubtypeOf), "$withPosition", $rt_wrapFunction1(oncius_NothingType_withPosition), "$covariant", $rt_wrapFunction0(oncius_NothingType_covariant), "$invariant", $rt_wrapFunction0(oncius_NothingType_invariant), "$leastUpperBound", $rt_wrapFunction1(oncius_NothingType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_NothingType_greatestLowerBound), "$productPrefix", $rt_wrapFunction0(oncius_NothingType_productPrefix), "$productArity", $rt_wrapFunction0(oncius_NothingType_productArity), +"$productElement", $rt_wrapFunction1(oncius_NothingType_productElement), "$productIterator", $rt_wrapFunction0(oncius_NothingType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_NothingType_hashCode), "$equals", $rt_wrapFunction1(oncius_NothingType_equals), "$dup", $rt_wrapFunction1(oncius_NothingType_dup)], +oncius_NullType, "NullType", 57, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_NullType_description), "$simplify", $rt_wrapFunction0(oncius_NullType_simplify), "$normalizedCypherTypeString", $rt_wrapFunction0(oncius_NullType_normalizedCypherTypeString), "$coercibleTo", $rt_wrapFunction0(oncius_NullType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_NullType_isAssignableFrom), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", +$rt_wrapFunction1(oncius_NullType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$position", $rt_wrapFunction0(oncius_NullType_position), "$parentType", $rt_wrapFunction0(oncius_NullType_parentType), "$toString", $rt_wrapFunction0(oncius_NullType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_NullType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_NullType_sortOrder), "$isNullable", $rt_wrapFunction0(oncius_NullType_isNullable), "$withIsNullable1", $rt_wrapFunction1(oncius_NullType_withIsNullable), +"$isSubtypeOf", $rt_wrapFunction1(oncius_NullType_isSubtypeOf), "$withPosition", $rt_wrapFunction1(oncius_NullType_withPosition), "$covariant", $rt_wrapFunction0(oncius_NullType_covariant), "$invariant", $rt_wrapFunction0(oncius_NullType_invariant), "$leastUpperBound", $rt_wrapFunction1(oncius_NullType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_NullType_greatestLowerBound), "$productPrefix", $rt_wrapFunction0(oncius_NullType_productPrefix), "$productArity", $rt_wrapFunction0(oncius_NullType_productArity), +"$productElement", $rt_wrapFunction1(oncius_NullType_productElement), "$productIterator", $rt_wrapFunction0(oncius_NullType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_NullType_hashCode), "$equals", $rt_wrapFunction1(oncius_NullType_equals), "$dup", $rt_wrapFunction1(oncius_NullType_dup)], +oncius_ListType$isSubtypeOf$lambda$_33_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ListType$isSubtypeOf$lambda$_33_1_apply)], +oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0_apply)], +oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1_apply)], +oavrm_MurmurHash, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1, "IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1", 65, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productArity), "$productElement", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productElement), +"$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_toString), "$equals", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_equals)], +oncip_CypherErrorStrategy$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncip_CypherErrorStrategy$message$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorStrategy$message$lambda$_7_0_apply)], +oncip_CypherErrorStrategy$message$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorStrategy$message$lambda$_7_1_apply)], +oncip_CypherErrorStrategy$message$lambda$_7_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorStrategy$message$lambda$_7_2_apply)], +oncip_CypherErrorStrategy$message$lambda$_7_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncip_CypherErrorStrategy$message$lambda$_7_3_apply)], +sci_VectorSliceBuilder, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses$leadingGraphSelection$lzycompute$lambda$_5_0_apply)], +oavra_SingletonPredictionContext, "SingletonPredictionContext", 83, oavra_PredictionContext, [], 0, 3, 0, 0, ["$size", $rt_wrapFunction0(oavra_SingletonPredictionContext_size), "$getParent", $rt_wrapFunction1(oavra_SingletonPredictionContext_getParent), "$getReturnState", $rt_wrapFunction1(oavra_SingletonPredictionContext_getReturnState), "$equals", $rt_wrapFunction1(oavra_SingletonPredictionContext_equals), "$toString", $rt_wrapFunction0(oavra_SingletonPredictionContext_toString)], +oavra_EmptyPredictionContext, "EmptyPredictionContext", 83, oavra_SingletonPredictionContext, [], 0, 3, 0, oavra_EmptyPredictionContext_$callClinit, ["$isEmpty", $rt_wrapFunction0(oavra_EmptyPredictionContext_isEmpty), "$size", $rt_wrapFunction0(oavra_EmptyPredictionContext_size), "$getParent", $rt_wrapFunction1(oavra_EmptyPredictionContext_getParent), "$getReturnState", $rt_wrapFunction1(oavra_EmptyPredictionContext_getReturnState), "$equals", $rt_wrapFunction1(oavra_EmptyPredictionContext_equals), "$toString", +$rt_wrapFunction0(oavra_EmptyPredictionContext_toString)], +oavra_SemanticContext, "SemanticContext", 83, jl_Object, [], 1, 3, [0,0,0], 0, ["$evalPrecedence", $rt_wrapFunction2(oavra_SemanticContext_evalPrecedence)], +oavra_SemanticContext$Empty, "SemanticContext$Empty", 83, oavra_SemanticContext, [], 0, 3, 0, 0, ["$eval", $rt_wrapFunction2(oavra_SemanticContext$Empty_eval)], +sci_ArraySeq$$newBuilder$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_ArraySeq$$newBuilder$lambda$_21_0_apply)], +scm_ArraySeq$$newBuilder$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(scm_ArraySeq$$newBuilder$lambda$_21_0_apply)], +ju_Optional, 0, jl_Object, [], 4, 3, 0, 0, 0, +ong_DiagnosticRecord$_init_$lambda$_4_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(ong_DiagnosticRecord$_init_$lambda$_4_0_accept)], +ong_DiagnosticRecord$_init_$lambda$_4_1, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(ong_DiagnosticRecord$_init_$lambda$_4_1_accept)]]); +$rt_metadata([ong_DiagnosticRecord$_init_$lambda$_4_2, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(ong_DiagnosticRecord$_init_$lambda$_4_2_accept)], +oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0_apply)], +sc_Iterator$contains$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_Iterator$contains$lambda$_35_0_apply)], +onciafnc_CodeCompletionCore, 0, jl_Object, [], 0, 3, 0, 0, 0, +su_Either$LeftProjection, 0, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, 0, +oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0_apply)], +oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0_apply)], +oncia_UseGraph, "UseGraph", 35, jl_Object, [oncia_GraphSelection, oncia_ClauseAllowedOnSystem, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_UseGraph_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_UseGraph_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_UseGraph_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_UseGraph_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_UseGraph_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_UseGraph_foldedOver), +"$folder", $rt_wrapFunction0(oncia_UseGraph_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_UseGraph_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_UseGraph_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_UseGraph_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_UseGraph_position), +"$name", $rt_wrapFunction0(oncia_UseGraph_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_UseGraph_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_UseGraph_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UseGraph_productArity), "$productElement", $rt_wrapFunction1(oncia_UseGraph_productElement), "$productIterator", $rt_wrapFunction0(oncia_UseGraph_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UseGraph_hashCode), "$toString", $rt_wrapFunction0(oncia_UseGraph_toString), +"$equals", $rt_wrapFunction1(oncia_UseGraph_equals), "$dup", $rt_wrapFunction1(oncia_UseGraph_dup)], +oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0_apply)], +oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1_apply)], +oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0, "SemanticCheck$$anonfun$chain$1$lambda$_29_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0_apply)], +oncia_ProcedureResultItem$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncias_FeatureError$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_0_apply)], +oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_154_2_apply)], +oncia_Finish, "Finish", 35, jl_Object, [oncia_Clause, oncia_ClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Finish_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Finish_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Finish_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_Finish_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Finish_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Finish_foldedOver), "$folder", $rt_wrapFunction0(oncia_Finish_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Finish_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Finish_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Finish_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Finish_position), "$name", $rt_wrapFunction0(oncia_Finish_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Finish_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Finish_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Finish_productArity), "$productElement", $rt_wrapFunction1(oncia_Finish_productElement), "$productIterator", $rt_wrapFunction0(oncia_Finish_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Finish_hashCode), "$toString", $rt_wrapFunction0(oncia_Finish_toString), "$equals", $rt_wrapFunction1(oncia_Finish_equals), "$dup", $rt_wrapFunction1(oncia_Finish_dup)], -oncia_Insert, "Insert", 36, jl_Object, [oncia_CreateOrInsert, oncia_SingleRelTypeCheck, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Insert_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Insert_semanticCheck), "$error2", $rt_wrapFunction2(oncia_Insert_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Insert_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Insert_foldedOver), "$folder", $rt_wrapFunction0(oncia_Insert_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", -$rt_wrapFunction0(oncia_Insert_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Insert_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Insert_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$pattern5", $rt_wrapFunction0(oncia_Insert_pattern), "$position", $rt_wrapFunction0(oncia_Insert_position), "$name", $rt_wrapFunction0(oncia_Insert_name), -"$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Insert_clauseSpecificSemanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Insert_shouldRunQPPChecks), "$productPrefix", $rt_wrapFunction0(oncia_Insert_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Insert_productArity), "$productElement", $rt_wrapFunction1(oncia_Insert_productElement), "$productIterator", $rt_wrapFunction0(oncia_Insert_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Insert_hashCode), "$toString", $rt_wrapFunction0(oncia_Insert_toString), -"$equals", $rt_wrapFunction1(oncia_Insert_equals), "$dup", $rt_wrapFunction1(oncia_Insert_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Insert_mapExpressions)], -onciafn_Neo4jASTFactory$insertClause$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$insertClause$lambda$_14_0_apply)], -onciafn_Neo4jASTFactory$insertClause$lambda$_14_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$insertClause$lambda$_14_1_apply)], -oncia_Remove, "Remove", 36, jl_Object, [oncia_UpdateClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Remove_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Remove_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Remove_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_Remove_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Remove_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Remove_foldedOver), "$folder", $rt_wrapFunction0(oncia_Remove_folder), -"$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Remove_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Remove_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Remove_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Remove_position), "$name", $rt_wrapFunction0(oncia_Remove_name), -"$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Remove_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Remove_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Remove_productArity), "$productElement", $rt_wrapFunction1(oncia_Remove_productElement), "$productIterator", $rt_wrapFunction0(oncia_Remove_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Remove_hashCode), "$toString", $rt_wrapFunction0(oncia_Remove_toString), "$equals", $rt_wrapFunction1(oncia_Remove_equals), -"$dup", $rt_wrapFunction1(oncia_Remove_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Remove_mapExpressions)], -oncia_SetClause, "SetClause", 36, jl_Object, [oncia_UpdateClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_SetClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_SetClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_SetClause_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_SetClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_SetClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_SetClause_foldedOver), -"$folder", $rt_wrapFunction0(oncia_SetClause_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_SetClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_SetClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_SetClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", -$rt_wrapFunction0(oncia_SetClause_position), "$name", $rt_wrapFunction0(oncia_SetClause_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_SetClause_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetClause_productArity), "$productElement", $rt_wrapFunction1(oncia_SetClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetClause_hashCode), -"$toString", $rt_wrapFunction0(oncia_SetClause_toString), "$equals", $rt_wrapFunction1(oncia_SetClause_equals), "$dup", $rt_wrapFunction1(oncia_SetClause_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetClause_mapExpressions0)], -onciafn_Neo4jASTFactory$matchClause$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$matchClause$lambda$_15_0_apply)], -oncie_MatchMode$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_Match, "Match", 36, jl_Object, [oncia_Clause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Match_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Match_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Match_shouldRunQPPChecks), "$error2", $rt_wrapFunction2(oncia_Match_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Match_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Match_foldedOver), "$folder", $rt_wrapFunction0(oncia_Match_folder), +juca_AtomicInteger, 0, jl_Number, [ji_Serializable], 0, 3, 0, 0, 0, +sc_View$Fill, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Fill_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Fill_knownSize)], +scm_ArraySeq$ofInt, "ArraySeq$ofInt", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofInt_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofInt_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofInt_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofInt_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofInt_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofInt_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofInt_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofInt_array)], +scm_ArraySeq$ofDouble, "ArraySeq$ofDouble", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofDouble_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofDouble_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofDouble_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofDouble_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofDouble_apply0), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofDouble_apply1), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofDouble_elemTag), "$array", +$rt_wrapFunction0(scm_ArraySeq$ofDouble_array)], +scm_ArraySeq$ofLong, "ArraySeq$ofLong", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofLong_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofLong_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofLong_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofLong_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofLong_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofLong_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofLong_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofLong_array)], +scm_ArraySeq$ofFloat, "ArraySeq$ofFloat", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofFloat_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofFloat_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofFloat_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofFloat_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofFloat_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofFloat_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofFloat_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofFloat_array)], +scm_ArraySeq$ofByte, "ArraySeq$ofByte", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofByte_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofByte_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofByte_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofByte_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofByte_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofByte_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofByte_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofByte_array)], +scm_ArraySeq$ofShort, "ArraySeq$ofShort", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofShort_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofShort_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofShort_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofShort_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofShort_apply0), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofShort_apply1), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofShort_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofShort_array)], +scm_ArraySeq$ofBoolean, "ArraySeq$ofBoolean", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofBoolean_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofBoolean_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofBoolean_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_elemTag), +"$array", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_array)], +scm_ArraySeq$ofUnit, "ArraySeq$ofUnit", 21, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofUnit_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofUnit_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofUnit_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofUnit_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofUnit_apply0), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofUnit_apply), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofUnit_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofUnit_array)], +oncius_CypherType$isSubtypeOf$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$isSubtypeOf$lambda$_19_0_apply)], +oncifp_SensitiveParameterRewriter$, 0, jl_Object, [s_Function1], 4, 3, 0, oncifp_SensitiveParameterRewriter$_$callClinit, ["$apply2", $rt_wrapFunction1(oncifp_SensitiveParameterRewriter$_apply)], +onciafnc_CodeCompletionCore$CandidatesCollection, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncip_CypherErrorVocabulary$expected$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$expected$lambda$_0_0_apply)], +oncip_CypherErrorVocabulary$expected$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$expected$lambda$_0_1_apply)], +oncip_CypherErrorVocabulary$expected$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$expected$lambda$_0_2_apply)], +sm_Ordering$ExtraImplicits, 0, jl_Object, [], 3, 3, 0, 0, 0, +sm_Ordering$Implicits$, 0, jl_Object, [sm_Ordering$ExtraImplicits], 0, 3, 0, 0, 0, +oncip_CypherErrorVocabulary$expected$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$expected$lambda$_0_3_apply)], +oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0_apply)], +oncias_UnsupportedOpenCypher, 0, jl_Object, [oncias_SemanticErrorDef], 3, 3, 0, 0, 0, +oncias_FeatureError, "FeatureError", 40, jl_Object, [oncias_UnsupportedOpenCypher, s_Product, ji_Serializable], 4, 3, 0, 0, ["$msg", $rt_wrapFunction0(oncias_FeatureError_msg), "$position", $rt_wrapFunction0(oncias_FeatureError_position), "$productPrefix", $rt_wrapFunction0(oncias_FeatureError_productPrefix), "$productArity", $rt_wrapFunction0(oncias_FeatureError_productArity), "$productElement", $rt_wrapFunction1(oncias_FeatureError_productElement), "$productIterator", $rt_wrapFunction0(oncias_FeatureError_productIterator), +"$hashCode", $rt_wrapFunction0(oncias_FeatureError_hashCode), "$toString", $rt_wrapFunction0(oncias_FeatureError_toString), "$equals", $rt_wrapFunction1(oncias_FeatureError_equals), "$withMsg", $rt_wrapFunction1(oncias_FeatureError_withMsg)], +oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0_apply)], +oncia_SingleQuery$checkClauses$lambda$_87_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkClauses$lambda$_87_0_apply)], +scc_AsScalaExtensions$IterableHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, +scc_AsScalaExtensions$ListHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncia_ProcedureResultItem$_init_$lambda$_81_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProcedureResultItem$_init_$lambda$_81_0_apply)], +oncia_ProcedureResultItem$_init_$lambda$_81_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ProcedureResultItem$_init_$lambda$_81_1_apply)], +oncifp_SensitiveParameterRewriter$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_SensitiveParameterRewriter$$anonfun$1_applyOrElse)], +onciu_RewritableJavascript$PROXY$9_51, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_52, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_53, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_51, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$11_52, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_53, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_143, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_146, 0, jl_Object, [], 0, 3, 0, 0, 0, +ju_TemplateCollections$NEtriesMap$1, 0, ju_TemplateCollections$AbstractImmutableSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$iterator", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap$1_iterator)], +oncipv_Cypher5Parser$EndOfFileContext, 0, oncip_AstRuleCtx, [], 0, 3, 0, 0, 0, +oncipau_Util$, 0, jl_Object, [], 4, 3, 0, oncipau_Util$_$callClinit, 0, +oncie_IsAggregate$, 0, jl_Object, [], 4, 3, 0, oncie_IsAggregate$_$callClinit, 0, +oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0, "AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0", 65, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0_apply)], +oncie_LeftUnaryOperatorExpression, 0, jl_Object, [oncie_OperatorExpression], 3, 3, 0, 0, 0, +oncie_Not, "Not", 62, oncie_Expression, [oncie_BooleanExpression, oncie_LeftUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Not_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Not_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Not_canonicalOperatorSymbol), "$rhs", $rt_wrapFunction0(oncie_Not_rhs), "$position", $rt_wrapFunction0(oncie_Not_position), "$productPrefix", $rt_wrapFunction0(oncie_Not_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_Not_productArity), "$productElement", $rt_wrapFunction1(oncie_Not_productElement), "$productIterator", $rt_wrapFunction0(oncie_Not_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Not_hashCode), "$toString", $rt_wrapFunction0(oncie_Not_toString), "$equals", $rt_wrapFunction1(oncie_Not_equals)], +oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0, "containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0", 60, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply)], +oncil_LabelExpression, "LabelExpression", 61, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions], 3, 3, [0,0,0], 0, 0, +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1, "ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1", 65, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3, "ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3", 65, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5, "ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5", 65, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5_apply)], +oncie_PatternPart$Selector, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, +oncie_PatternPart$SelectiveSelector, 0, jl_Object, [oncie_PatternPart$Selector], 3, 3, 0, 0, 0, +oncifp_SyntaxUsageMetricKey, "SyntaxUsageMetricKey", 65, jl_Enum, [], 12, 3, [0,0,0], oncifp_SyntaxUsageMetricKey_$callClinit, 0, +oncie_QuantifiedPath, "QuantifiedPath", 62, oncie_PatternElement, [oncie_PathFactor, oncie_PatternAtom, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_QuantifiedPath_position), "$allVariables", $rt_wrapFunction0(oncie_QuantifiedPath_allVariables), "$isBounded", $rt_wrapFunction0(oncie_QuantifiedPath_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_QuantifiedPath_productPrefix), "$productArity", $rt_wrapFunction0(oncie_QuantifiedPath_productArity), "$productElement", $rt_wrapFunction1(oncie_QuantifiedPath_productElement), +"$productIterator", $rt_wrapFunction0(oncie_QuantifiedPath_productIterator), "$hashCode", $rt_wrapFunction0(oncie_QuantifiedPath_hashCode), "$toString", $rt_wrapFunction0(oncie_QuantifiedPath_toString), "$equals", $rt_wrapFunction1(oncie_QuantifiedPath_equals), "$mapExpressions", $rt_wrapFunction1(oncie_QuantifiedPath_mapExpressions)], +oncia_ExistsExpression, "ExistsExpression", 35, oncie_Expression, [oncia_FullSubqueryExpression, oncie_BooleanExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncia_ExistsExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncia_ExistsExpression_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncia_ExistsExpression_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_ExistsExpression_isConstantForQuery), "$query", $rt_wrapFunction0(oncia_ExistsExpression_query), +"$position", $rt_wrapFunction0(oncia_ExistsExpression_position), "$computedIntroducedVariables", $rt_wrapFunction0(oncia_ExistsExpression_computedIntroducedVariables), "$computedScopeDependencies", $rt_wrapFunction0(oncia_ExistsExpression_computedScopeDependencies), "$withQuery", $rt_wrapFunction1(oncia_ExistsExpression_withQuery), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncia_ExistsExpression_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncia_ExistsExpression_withComputedScopeDependencies), +"$subqueryAstNode", $rt_wrapFunction0(oncia_ExistsExpression_subqueryAstNode), "$productPrefix", $rt_wrapFunction0(oncia_ExistsExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ExistsExpression_productArity), "$productElement", $rt_wrapFunction1(oncia_ExistsExpression_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExistsExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExistsExpression_hashCode), "$toString", $rt_wrapFunction0(oncia_ExistsExpression_toString), +"$equals", $rt_wrapFunction1(oncia_ExistsExpression_equals), "$dup", $rt_wrapFunction1(oncia_ExistsExpression_dup1), "$dup0", $rt_wrapFunction1(oncia_ExistsExpression_dup0)], +oncia_CountExpression, "CountExpression", 35, oncie_Expression, [oncia_FullSubqueryExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncia_CountExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncia_CountExpression_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncia_CountExpression_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_CountExpression_isConstantForQuery), "$query", $rt_wrapFunction0(oncia_CountExpression_query), +"$position", $rt_wrapFunction0(oncia_CountExpression_position), "$computedIntroducedVariables", $rt_wrapFunction0(oncia_CountExpression_computedIntroducedVariables), "$computedScopeDependencies", $rt_wrapFunction0(oncia_CountExpression_computedScopeDependencies), "$withQuery", $rt_wrapFunction1(oncia_CountExpression_withQuery), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncia_CountExpression_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncia_CountExpression_withComputedScopeDependencies), +"$subqueryAstNode", $rt_wrapFunction0(oncia_CountExpression_subqueryAstNode), "$productPrefix", $rt_wrapFunction0(oncia_CountExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CountExpression_productArity), "$productElement", $rt_wrapFunction1(oncia_CountExpression_productElement), "$productIterator", $rt_wrapFunction0(oncia_CountExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CountExpression_hashCode), "$toString", $rt_wrapFunction0(oncia_CountExpression_toString), "$equals", +$rt_wrapFunction1(oncia_CountExpression_equals), "$dup", $rt_wrapFunction1(oncia_CountExpression_dup1), "$dup0", $rt_wrapFunction1(oncia_CountExpression_dup0)], +oncia_CollectExpression, "CollectExpression", 35, oncie_Expression, [oncia_FullSubqueryExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncia_CollectExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncia_CollectExpression_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncia_CollectExpression_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_CollectExpression_isConstantForQuery), "$query", $rt_wrapFunction0(oncia_CollectExpression_query), +"$position", $rt_wrapFunction0(oncia_CollectExpression_position), "$computedIntroducedVariables", $rt_wrapFunction0(oncia_CollectExpression_computedIntroducedVariables), "$computedScopeDependencies", $rt_wrapFunction0(oncia_CollectExpression_computedScopeDependencies), "$withQuery", $rt_wrapFunction1(oncia_CollectExpression_withQuery), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncia_CollectExpression_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncia_CollectExpression_withComputedScopeDependencies), +"$subqueryAstNode", $rt_wrapFunction0(oncia_CollectExpression_subqueryAstNode), "$productPrefix", $rt_wrapFunction0(oncia_CollectExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CollectExpression_productArity), "$productElement", $rt_wrapFunction1(oncia_CollectExpression_productElement), "$productIterator", $rt_wrapFunction0(oncia_CollectExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CollectExpression_hashCode), "$toString", $rt_wrapFunction0(oncia_CollectExpression_toString), +"$equals", $rt_wrapFunction1(oncia_CollectExpression_equals), "$dup", $rt_wrapFunction1(oncia_CollectExpression_dup0), "$dup0", $rt_wrapFunction1(oncia_CollectExpression_dup1)], +s_PartialFunction$Combined$applyOrElse$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oavr_Parser$TraceListener, 0, jl_Object, [oavrt_ParseTreeListener], 0, 3, 0, 0, 0, +oncipv_Cypher25Parser$EndOfFileContext, 0, oncip_AstRuleCtx, [], 0, 3, 0, 0, 0, +oavr_ProxyErrorListener, 0, jl_Object, [oavr_ANTLRErrorListener], 0, 3, 0, 0, 0, +oncie_ProcedureOutput, "ProcedureOutput", 62, jl_Object, [oncie_SymbolicName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_ProcedureOutput_name), "$position", $rt_wrapFunction0(oncie_ProcedureOutput_position), "$productPrefix", $rt_wrapFunction0(oncie_ProcedureOutput_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ProcedureOutput_productArity), "$productElement", $rt_wrapFunction1(oncie_ProcedureOutput_productElement), "$productIterator", $rt_wrapFunction0(oncie_ProcedureOutput_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_ProcedureOutput_hashCode), "$toString", $rt_wrapFunction0(oncie_ProcedureOutput_toString), "$equals", $rt_wrapFunction1(oncie_ProcedureOutput_equals), "$dup", $rt_wrapFunction1(oncie_ProcedureOutput_dup)], +oncia_SortItem, "SortItem", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable], 3, 3, [0,0,0], 0, 0, +oncifp_ResolvedCall$returnVariables$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$returnVariables$lambda$_23_0_apply)], +oncie_ExplicitParameter, "ExplicitParameter", 62, oncie_Expression, [oncie_Parameter, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_ExplicitParameter_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_ExplicitParameter_isConstantForQuery), "$name", $rt_wrapFunction0(oncie_ExplicitParameter_name), "$parameterType", $rt_wrapFunction0(oncie_ExplicitParameter_parameterType), "$sizeHint1", $rt_wrapFunction0(oncie_ExplicitParameter_sizeHint), "$position", +$rt_wrapFunction0(oncie_ExplicitParameter_position), "$hashCode", $rt_wrapFunction0(oncie_ExplicitParameter_hashCode), "$canEqual", $rt_wrapFunction1(oncie_ExplicitParameter_canEqual), "$equals", $rt_wrapFunction1(oncie_ExplicitParameter_equals), "$productPrefix", $rt_wrapFunction0(oncie_ExplicitParameter_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ExplicitParameter_productArity), "$productElement", $rt_wrapFunction1(oncie_ExplicitParameter_productElement), "$productIterator", $rt_wrapFunction0(oncie_ExplicitParameter_productIterator), +"$toString", $rt_wrapFunction0(oncie_ExplicitParameter_toString)], +oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$1, "SensitiveParameterRewriter$$anonfun$1$$anon$1", 65, oncie_ExplicitParameter, [oncie_SensitiveParameter], 4, 3, [oncifp_SensitiveParameterRewriter$$anonfun$1,0,0], 0, 0, +oncie_SensitiveAutoParameter, 0, jl_Object, [oncie_SensitiveParameter], 3, 3, 0, 0, 0, +oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$2, "SensitiveParameterRewriter$$anonfun$1$$anon$2", 65, oncie_AutoExtractedParameter, [oncie_SensitiveAutoParameter], 4, 3, [oncifp_SensitiveParameterRewriter$$anonfun$1,0,0], 0, 0, +onciu_LiteralOffset, "LiteralOffset", 52, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_LiteralOffset_productPrefix), "$productArity", $rt_wrapFunction0(onciu_LiteralOffset_productArity), "$productElement", $rt_wrapFunction1(onciu_LiteralOffset_productElement), "$productIterator", $rt_wrapFunction0(onciu_LiteralOffset_productIterator), "$hashCode", $rt_wrapFunction0(onciu_LiteralOffset_hashCode), "$toString", $rt_wrapFunction0(onciu_LiteralOffset_toString), "$equals", +$rt_wrapFunction1(onciu_LiteralOffset_equals)], +oavrd_DFAState$PredPrediction, "DFAState$PredPrediction", 84, jl_Object, [], 0, 3, [oavrd_DFAState,0,"PredPrediction"], 0, ["$toString", $rt_wrapFunction0(oavrd_DFAState$PredPrediction_toString)], +oavr_WritableToken, 0, jl_Object, [oavr_Token], 3, 3, 0, 0, 0, +scm_HashMap$$anon$6, "HashMap$$anon$6", 21, scm_GrowableBuilder, [], 4, 3, 0, 0, 0, +ju_AbstractSequentialList, 0, ju_AbstractList, [], 1, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_AbstractSequentialList_get), "$set1", $rt_wrapFunction2(ju_AbstractSequentialList_set), "$add3", $rt_wrapFunction2(ju_AbstractSequentialList_add), "$remove", $rt_wrapFunction1(ju_AbstractSequentialList_remove), "$iterator", $rt_wrapFunction0(ju_AbstractSequentialList_iterator)], +ju_Queue, 0, jl_Object, [ju_Collection], 3, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +ju_Deque, 0, jl_Object, [ju_Queue, ju_SequencedCollection], 3, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +ju_LinkedList, "LinkedList", 5, ju_AbstractSequentialList, [ju_Deque], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_LinkedList_size), "$listIterator", $rt_wrapFunction1(ju_LinkedList_listIterator)], +oncipcaf_HintIndexType, "HintIndexType", 44, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +oncipcaf_ASTExceptionFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipcaf_ConstraintType, "ConstraintType", 44, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +sr_IntRef, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0_apply)]]); +$rt_metadata([oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1_apply)], +oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2_apply)], +oncipvaf_Cypher5SyntaxChecker$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncie_containsAggregate$$anonfun$apply$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_containsAggregate$$anonfun$apply$1_applyOrElse)], +oncie_CountStar, "CountStar", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_CountStar_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_CountStar_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_CountStar_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_CountStar_productPrefix), "$productArity", $rt_wrapFunction0(oncie_CountStar_productArity), "$productElement", $rt_wrapFunction1(oncie_CountStar_productElement), "$productIterator", +$rt_wrapFunction0(oncie_CountStar_productIterator), "$hashCode", $rt_wrapFunction0(oncie_CountStar_hashCode), "$toString", $rt_wrapFunction0(oncie_CountStar_toString), "$equals", $rt_wrapFunction1(oncie_CountStar_equals)], +oncief_AggregatingFunction, 0, oncief_Function, [], 1, 3, 0, 0, 0, +oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0_apply)], +oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0_apply)], +oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1_apply)], +oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2_apply)], +oncipvaf_Cypher25SyntaxChecker$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_Match, "Match", 35, jl_Object, [oncia_Clause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Match_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Match_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Match_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_Match_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Match_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Match_foldedOver), "$folder", $rt_wrapFunction0(oncia_Match_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Match_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Match_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Match_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Match_position), "$name", $rt_wrapFunction0(oncia_Match_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Match_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Match_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Match_productArity), "$productElement", $rt_wrapFunction1(oncia_Match_productElement), "$productIterator", $rt_wrapFunction0(oncia_Match_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Match_hashCode), "$toString", $rt_wrapFunction0(oncia_Match_toString), "$equals", $rt_wrapFunction1(oncia_Match_equals), "$dup", $rt_wrapFunction1(oncia_Match_dup)], -oncie_Pattern$ForMatch, "Pattern$ForMatch", 64, jl_Object, [oncie_Pattern, ji_Serializable], 4, 3, [oncie_Pattern,0,"ForMatch"], 0, ["$foldedOver", $rt_wrapFunction0(oncie_Pattern$ForMatch_foldedOver), "$folder", $rt_wrapFunction0(oncie_Pattern$ForMatch_folder), "$patternParts", $rt_wrapFunction0(oncie_Pattern$ForMatch_patternParts), "$position", $rt_wrapFunction0(oncie_Pattern$ForMatch_position), "$productPrefix", $rt_wrapFunction0(oncie_Pattern$ForMatch_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Pattern$ForMatch_productArity), +oavrm_FlexibleHashMap, 0, jl_Object, [ju_Map], 0, 3, 0, 0, 0, +oavra_PredictionMode$AltAndContextMap, 0, oavrm_FlexibleHashMap, [], 0, 0, 0, 0, 0, +oavra_ArrayPredictionContext, "ArrayPredictionContext", 83, oavra_PredictionContext, [], 0, 3, 0, 0, ["$isEmpty", $rt_wrapFunction0(oavra_ArrayPredictionContext_isEmpty), "$size", $rt_wrapFunction0(oavra_ArrayPredictionContext_size), "$getParent", $rt_wrapFunction1(oavra_ArrayPredictionContext_getParent), "$getReturnState", $rt_wrapFunction1(oavra_ArrayPredictionContext_getReturnState), "$equals", $rt_wrapFunction1(oavra_ArrayPredictionContext_equals), "$toString", $rt_wrapFunction0(oavra_ArrayPredictionContext_toString)], +ju_TemplateCollections$TwoElementsSet, 0, ju_TemplateCollections$AbstractImmutableSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$contains", $rt_wrapFunction1(ju_TemplateCollections$TwoElementsSet_contains)], +onciafnc_CodeCompletionCore$FollowSetsHolder, "CodeCompletionCore$FollowSetsHolder", 38, jl_Object, [], 0, 3, 0, 0, 0, +onciafnc_CodeCompletionCore$RuleWithStartToken, "CodeCompletionCore$RuleWithStartToken", 38, jl_Record, [], 32772, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciafnc_CodeCompletionCore$RuleWithStartToken_toString), "$hashCode", $rt_wrapFunction0(onciafnc_CodeCompletionCore$RuleWithStartToken_hashCode), "$equals", $rt_wrapFunction1(onciafnc_CodeCompletionCore$RuleWithStartToken_equals)], +onciafnc_CodeCompletionCore$FollowSetWithPath, "CodeCompletionCore$FollowSetWithPath", 38, jl_Object, [], 0, 3, 0, 0, 0, +onciafnc_CodeCompletionCore$processRule$lambda$_9_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafnc_CodeCompletionCore$processRule$lambda$_9_0_apply)], +onciafnc_CodeCompletionCore$PipelineEntry, "CodeCompletionCore$PipelineEntry", 38, jl_Object, [], 0, 3, 0, 0, 0, +oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_9_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, 0, +oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_9_1, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_9_1_apply)], +ju_TemplateCollections$TwoElementsList, "TemplateCollections$TwoElementsList", 5, ju_TemplateCollections$AbstractImmutableList, [ju_RandomAccess], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_TemplateCollections$TwoElementsList_size), "$get0", $rt_wrapFunction1(ju_TemplateCollections$TwoElementsList_get)], +oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0_apply)], +oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1_apply)], +sc_Iterator$$anon$6, "Iterator$$anon$6", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$6_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$6_next)], +oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0_apply)], +oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1_apply)], +scm_Builder$$anon$1, "Builder$$anon$1", 21, jl_Object, [scm_Builder], 4, 3, 0, 0, ["$sizeHint0", $rt_wrapFunction2(scm_Builder$$anon$1_sizeHint0), "$sizeHint", $rt_wrapFunction1(scm_Builder$$anon$1_sizeHint), "$result", $rt_wrapFunction0(scm_Builder$$anon$1_result), "$addAll0", $rt_wrapFunction1(scm_Builder$$anon$1_addAll), "$addOne", $rt_wrapFunction1(scm_Builder$$anon$1_addOne)], +sm_Ordering$IterableOrdering, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$on", $rt_wrapFunction1(sm_Ordering$IterableOrdering_on), "$compare2", $rt_wrapFunction2(sm_Ordering$IterableOrdering_compare)], +scc_JavaCollectionWrappers$IterableWrapper, 0, ju_AbstractCollection, [scc_JavaCollectionWrappers$IterableWrapperTrait, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(scc_JavaCollectionWrappers$IterableWrapper_size), "$underlying1", $rt_wrapFunction0(scc_JavaCollectionWrappers$IterableWrapper_underlying), "$iterator", $rt_wrapFunction0(scc_JavaCollectionWrappers$IterableWrapper_iterator)], +scc_JavaCollectionWrappers$JIterableWrapper, 0, sc_AbstractIterable, [sc_StrictOptimizedIterableOps, ji_Serializable], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(scc_JavaCollectionWrappers$JIterableWrapper_iterator), "$iterableFactory", $rt_wrapFunction0(scc_JavaCollectionWrappers$JIterableWrapper_iterableFactory)], +scc_JavaCollectionWrappers$MutableBufferWrapper, 0, ju_AbstractList, [scc_JavaCollectionWrappers$IterableWrapperTrait, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0_apply)], +oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1_apply)], +oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0_apply)], +oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1_apply)], +oavra_PredictionMode$AltAndContextConfigEqualityComparator, 0, oavrm_AbstractEqualityComparator, [], 4, 0, 0, 0, ["$equals0", $rt_wrapFunction2(oavra_PredictionMode$AltAndContextConfigEqualityComparator_equals), "$hashCode2", $rt_wrapFunction1(oavra_PredictionMode$AltAndContextConfigEqualityComparator_hashCode)], +sc_Iterator$$anon$15, "Iterator$$anon$15", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$15_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$15_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$15_next)], +sc_Iterator$SliceIterator, "Iterator$SliceIterator", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$SliceIterator_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$SliceIterator_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$SliceIterator_next), "$sliceIterator", $rt_wrapFunction2(sc_Iterator$SliceIterator_sliceIterator)], +oncip_CypherErrorStrategy$CypherRuleGroup, "CypherErrorStrategy$CypherRuleGroup", 41, jl_Object, [], 3, 3, [oncip_CypherErrorStrategy,0,"CypherRuleGroup"], 0, 0, +oncip_CypherErrorStrategy$ExpressionRule$, "CypherErrorStrategy$ExpressionRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$ExpressionRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$ExpressionRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$ExpressionRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$ExpressionRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$ExpressionRule$_toString)], +oncip_CypherErrorStrategy$StringLiteralRule$, "CypherErrorStrategy$StringLiteralRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$StringLiteralRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$StringLiteralRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$StringLiteralRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$StringLiteralRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$StringLiteralRule$_toString)], +oncip_CypherErrorStrategy$NumberLiteralRule$, "CypherErrorStrategy$NumberLiteralRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$NumberLiteralRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$NumberLiteralRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$NumberLiteralRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$NumberLiteralRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$NumberLiteralRule$_toString)], +oncip_CypherErrorStrategy$ParameterRule$, "CypherErrorStrategy$ParameterRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$ParameterRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$ParameterRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$ParameterRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$ParameterRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$ParameterRule$_toString)], +oncip_CypherErrorStrategy$VariableRule$, "CypherErrorStrategy$VariableRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$VariableRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$VariableRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$VariableRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$VariableRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$VariableRule$_toString)], +oncip_CypherErrorStrategy$IdentifierRule$, "CypherErrorStrategy$IdentifierRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$IdentifierRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$IdentifierRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$IdentifierRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$IdentifierRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$IdentifierRule$_toString)], +oncip_CypherErrorStrategy$DatabaseNameRule$, "CypherErrorStrategy$DatabaseNameRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$DatabaseNameRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$DatabaseNameRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$DatabaseNameRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$DatabaseNameRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$DatabaseNameRule$_toString)], +oncip_CypherErrorStrategy$GraphPatternRule$, "CypherErrorStrategy$GraphPatternRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$GraphPatternRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$GraphPatternRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$GraphPatternRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$GraphPatternRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$GraphPatternRule$_toString)]]); +$rt_metadata([oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1_applyOrElse)], +onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0_apply)], +onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get1", $rt_wrapFunction0(onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1_get)], +onciafnc_CodeCompletionCore$CandidateRule, "CodeCompletionCore$CandidateRule", 38, jl_Record, [], 32772, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciafnc_CodeCompletionCore$CandidateRule_toString), "$hashCode", $rt_wrapFunction0(onciafnc_CodeCompletionCore$CandidateRule_hashCode), "$equals", $rt_wrapFunction1(onciafnc_CodeCompletionCore$CandidateRule_equals)], +ju_LinkedList$Entry, 0, jl_Object, [], 0, 0, 0, 0, 0, +oncia_Union$$anonfun$checkRecursively$4$lambda$_44_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$checkRecursively$4$lambda$_44_0_apply)], +oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0, "ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0_apply)], +oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1_apply)], +oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2_apply)], +oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_0_apply)], +oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_149_1_apply)], +oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_0_apply)], +oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_153_1_apply)], +oncia_SubqueryCall$reportParams$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$reportParams$lambda$_10_0_apply)], +sc_StrictOptimizedSeqOps$intersect$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedSeqOps$intersect$lambda$_15_0_apply)], +oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0_apply)], +oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1_apply)], +jus_Collectors$toList$lambda$_2_0, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get1", $rt_wrapFunction0(jus_Collectors$toList$lambda$_2_0_get)], +oncipcaf_ASTExceptionFactory$joiningLastDelimiter$lambda$_10_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, 0, +sc_StringOps$$anon$1, "StringOps$$anon$1", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_StringOps$$anon$1_hasNext), "$next", $rt_wrapFunction0(sc_StringOps$$anon$1_next)], +sc_StringOps$$stripMargin$extension$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StringOps$$stripMargin$extension$lambda$_68_0_apply)], +ju_TemplateCollections$SingleElementList, "TemplateCollections$SingleElementList", 5, ju_TemplateCollections$AbstractImmutableList, [ju_RandomAccess], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_TemplateCollections$SingleElementList_size), "$get0", $rt_wrapFunction1(ju_TemplateCollections$SingleElementList_get)], +oncia_AscSortItem, "AscSortItem", 35, jl_Object, [oncia_SortItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_AscSortItem_semanticCheck), "$expression0", $rt_wrapFunction0(oncia_AscSortItem_expression), "$position", $rt_wrapFunction0(oncia_AscSortItem_position), "$productPrefix", $rt_wrapFunction0(oncia_AscSortItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AscSortItem_productArity), "$productElement", $rt_wrapFunction1(oncia_AscSortItem_productElement), "$productIterator", +$rt_wrapFunction0(oncia_AscSortItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AscSortItem_hashCode), "$toString", $rt_wrapFunction0(oncia_AscSortItem_toString), "$equals", $rt_wrapFunction1(oncia_AscSortItem_equals), "$dup", $rt_wrapFunction1(oncia_AscSortItem_dup), "$mapExpression", $rt_wrapFunction1(oncia_AscSortItem_mapExpression)], +oncia_DescSortItem, "DescSortItem", 35, jl_Object, [oncia_SortItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_DescSortItem_semanticCheck), "$expression0", $rt_wrapFunction0(oncia_DescSortItem_expression), "$position", $rt_wrapFunction0(oncia_DescSortItem_position), "$productPrefix", $rt_wrapFunction0(oncia_DescSortItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DescSortItem_productArity), "$productElement", $rt_wrapFunction1(oncia_DescSortItem_productElement), +"$productIterator", $rt_wrapFunction0(oncia_DescSortItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DescSortItem_hashCode), "$toString", $rt_wrapFunction0(oncia_DescSortItem_toString), "$equals", $rt_wrapFunction1(oncia_DescSortItem_equals), "$dup", $rt_wrapFunction1(oncia_DescSortItem_dup), "$mapExpression", $rt_wrapFunction1(oncia_DescSortItem_mapExpression)], +oavrm_DoubleKeyMap, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0_apply)], +oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0_apply)], +oavra_SemanticContext$Predicate, "SemanticContext$Predicate", 83, oavra_SemanticContext, [], 0, 3, 0, 0, ["$eval", $rt_wrapFunction2(oavra_SemanticContext$Predicate_eval), "$hashCode", $rt_wrapFunction0(oavra_SemanticContext$Predicate_hashCode), "$equals", $rt_wrapFunction1(oavra_SemanticContext$Predicate_equals), "$toString", $rt_wrapFunction0(oavra_SemanticContext$Predicate_toString)], +oncia_ProjectingUnionAll, 0, jl_Object, [oncia_ProjectingUnion, ji_Serializable], 4, 3, 0, 0, 0, +oncia_ProjectingUnionDistinct, 0, jl_Object, [oncia_ProjectingUnion, ji_Serializable], 4, 3, 0, 0, 0, +oncia_Union$checkNestedQuery$1$lambda$_42_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Union$checkNestedQuery$1$lambda$_42_0_apply)], +oncia_Union$checkSingleQuery$1$lambda$_39_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Union$checkSingleQuery$1$lambda$_39_0_apply)], +oncia_Union$defineUnionVariables$lambda$_30_0, "Union$defineUnionVariables$lambda$_30_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$defineUnionVariables$lambda$_30_0_apply)], +oncia_ReadAdministrationCommand$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ReadAdministrationCommand$$anonfun$1_applyOrElse)], +oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0_apply)], +oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1_apply)], +oncias_package$$liftSemanticErrorDefOption$lambda$_7_0, "package$$liftSemanticErrorDefOption$lambda$_7_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticErrorDefOption$lambda$_7_0_apply)], +onciu_RewritableJavascript$PROXY$9_54, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_54, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_149, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_154, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_156, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_158, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_162, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_55, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_56, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_55, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_56, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_57, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_57, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([ju_TemplateCollections$NEtriesMap$1$1, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap$1$1_hasNext), "$next", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap$1$1_next)], +s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0_apply)], +oncip_CypherErrorStrategy$LabelExpressionRule$, "CypherErrorStrategy$LabelExpressionRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpressionRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$LabelExpressionRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpressionRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpressionRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpressionRule$_toString)], +oncip_CypherErrorStrategy$RelationshipPatternRule$, "CypherErrorStrategy$RelationshipPatternRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$RelationshipPatternRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$RelationshipPatternRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$RelationshipPatternRule$_productIterator), +"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$RelationshipPatternRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$RelationshipPatternRule$_toString)], +oncip_CypherErrorStrategy$NodePatternRule$, "CypherErrorStrategy$NodePatternRule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$NodePatternRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$NodePatternRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$NodePatternRule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$NodePatternRule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$NodePatternRule$_toString)], +oncip_CypherErrorStrategy$LabelExpression1Rule$, "CypherErrorStrategy$LabelExpression1Rule$", 41, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpression1Rule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$LabelExpression1Rule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpression1Rule$_productIterator), "$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpression1Rule$_hashCode), +"$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpression1Rule$_toString)], +juf_Function$andThen$lambda$_2_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(juf_Function$andThen$lambda$_2_0_apply)], +ju_HashMap$2, 0, ju_AbstractCollection, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_HashMap$2_size), "$iterator", $rt_wrapFunction0(ju_HashMap$2_iterator)], +oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply)], +sc_Iterator$$anon$22, "Iterator$$anon$22", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$22_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$22_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$22_next)], +scm_HashMap$$anon$4, 0, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$extract0", $rt_wrapFunction1(scm_HashMap$$anon$4_extract)], +scm_HashMap$$anon$3, "HashMap$$anon$3", 21, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$extract0", $rt_wrapFunction1(scm_HashMap$$anon$3_extract)], +onciu_BucketSize, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0_apply)], +oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1_apply)], +oncifp_DeprecationInfo, 0, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9_apply)], +one_InternalException, "InternalException", 68, one_Neo4jException, [], 0, 3, 0, 0, ["$cause0", $rt_wrapFunction0(ong_ErrorGqlStatusObject_cause)], +oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0_apply)], +oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1_apply)], +oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2_apply)], +oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0_apply)], +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0_apply)], +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1_apply)], +oncief_Exists$, "Exists$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Exists$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Exists$_name), "$productArity", $rt_wrapFunction0(oncief_Exists$_productArity), "$productElement", $rt_wrapFunction1(oncief_Exists$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Exists$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Exists$_hashCode), "$toString", $rt_wrapFunction0(oncief_Exists$_toString), "$signatures", $rt_wrapFunction0(oncief_Exists$_signatures1)], +oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0_apply)], +oncie_PatternExpression, "PatternExpression", 62, oncie_Expression, [oncie_SubqueryExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncie_PatternExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_PatternExpression_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncie_PatternExpression_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_PatternExpression_isConstantForQuery), "$computedIntroducedVariables", $rt_wrapFunction0(oncie_PatternExpression_computedIntroducedVariables), +"$computedScopeDependencies", $rt_wrapFunction0(oncie_PatternExpression_computedScopeDependencies), "$position", $rt_wrapFunction0(oncie_PatternExpression_position), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncie_PatternExpression_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncie_PatternExpression_withComputedScopeDependencies), "$subqueryAstNode", $rt_wrapFunction0(oncie_PatternExpression_subqueryAstNode), "$productPrefix", $rt_wrapFunction0(oncie_PatternExpression_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_PatternExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternExpression_toString), "$equals", $rt_wrapFunction1(oncie_PatternExpression_equals), "$dup", $rt_wrapFunction1(oncie_PatternExpression_dup0), "$dup0", $rt_wrapFunction1(oncie_PatternExpression_dup1)], +oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1_apply)], +oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2_apply)], +oncia_CreateOrInsert, 0, jl_Object, [oncia_UpdateClause], 3, 3, 0, 0, 0, +oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0_apply)], +onciu_DeprecatedFeature, 0, jl_Object, [], 3, 3, 0, 0, 0, +onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25, 0, jl_Object, [onciu_DeprecatedFeature], 3, 3, 0, 0, 0, +oncia_Merge$SelfReference$, 0, jl_Object, [onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1_apply)], +oncia_Insert, "Insert", 35, jl_Object, [oncia_CreateOrInsert, oncia_SingleRelTypeCheck, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Insert_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Insert_semanticCheck), "$error4", $rt_wrapFunction2(oncia_Insert_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Insert_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Insert_foldedOver), "$folder", $rt_wrapFunction0(oncia_Insert_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", +$rt_wrapFunction0(oncia_Insert_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Insert_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Insert_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$pattern5", $rt_wrapFunction0(oncia_Insert_pattern), "$position", $rt_wrapFunction0(oncia_Insert_position), "$name", $rt_wrapFunction0(oncia_Insert_name), +"$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Insert_clauseSpecificSemanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Insert_shouldRunQPPChecks), "$productPrefix", $rt_wrapFunction0(oncia_Insert_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Insert_productArity), "$productElement", $rt_wrapFunction1(oncia_Insert_productElement), "$productIterator", $rt_wrapFunction0(oncia_Insert_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Insert_hashCode), "$toString", $rt_wrapFunction0(oncia_Insert_toString), +"$equals", $rt_wrapFunction1(oncia_Insert_equals), "$dup", $rt_wrapFunction1(oncia_Insert_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Insert_mapExpressions)], +oncia_Create, "Create", 35, jl_Object, [oncia_CreateOrInsert, oncia_SingleRelTypeCheck, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Create_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Create_semanticCheck), "$error4", $rt_wrapFunction2(oncia_Create_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Create_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Create_foldedOver), "$folder", $rt_wrapFunction0(oncia_Create_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", +$rt_wrapFunction0(oncia_Create_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Create_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Create_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$pattern5", $rt_wrapFunction0(oncia_Create_pattern), "$position", $rt_wrapFunction0(oncia_Create_position), "$name", $rt_wrapFunction0(oncia_Create_name), +"$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Create_clauseSpecificSemanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Create_shouldRunQPPChecks), "$productPrefix", $rt_wrapFunction0(oncia_Create_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Create_productArity), "$productElement", $rt_wrapFunction1(oncia_Create_productElement), "$productIterator", $rt_wrapFunction0(oncia_Create_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Create_hashCode), "$toString", $rt_wrapFunction0(oncia_Create_toString), +"$equals", $rt_wrapFunction1(oncia_Create_equals), "$dup", $rt_wrapFunction1(oncia_Create_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Create_mapExpressions)], +oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0_apply)], +oncia_Create$SelfReferenceAcrossPatterns$, 0, jl_Object, [onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1_apply)], +oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0_apply)]]); +$rt_metadata([oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0_apply)], +jnc_StandardCharsets, 0, jl_Object, [], 4, 3, 0, jnc_StandardCharsets_$callClinit, 0, +ju_IdentityHashMap, 0, ju_AbstractMap, [jl_Cloneable, ji_Serializable], 0, 3, 0, 0, 0, +oavrd_DFA$1, 0, jl_Object, [ju_Comparator], 0, 0, 0, 0, ["$compare2", $rt_wrapFunction2(oavrd_DFA$1_compare)], +oavr_LexerNoViableAltException, "LexerNoViableAltException", 81, oavr_RecognitionException, [], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oavr_LexerNoViableAltException_toString)], +ju_AbstractList$TListIteratorImpl, 0, jl_Object, [ju_ListIterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_AbstractList$TListIteratorImpl_next), "$nextIndex", $rt_wrapFunction0(ju_AbstractList$TListIteratorImpl_nextIndex)], +oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0_apply)], +oncifp_InternalSyntaxUsageStats, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncifp_InternalSyntaxUsageStatsNoOp$, 0, jl_Object, [oncifp_InternalSyntaxUsageStats, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +scm_HashMap$addAll$lambda$_42_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, 0, +scm_HashMap$addAll$lambda$_42_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(scm_HashMap$addAll$lambda$_42_1_apply)], +oavrm_FlexibleHashMap$Entry, "FlexibleHashMap$Entry", 85, jl_Object, [], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oavrm_FlexibleHashMap$Entry_toString)], +jusi_FilteringStreamImpl, 0, jusi_WrappingStreamImpl, [], 0, 3, 0, 0, ["$wrap4", $rt_wrapFunction1(jusi_FilteringStreamImpl_wrap)], +ju_AbstractList$SubAbstractList, 0, ju_AbstractList, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_AbstractList$SubAbstractList_get), "$iterator", $rt_wrapFunction0(ju_AbstractList$SubAbstractList_iterator), "$size", $rt_wrapFunction0(ju_AbstractList$SubAbstractList_size)], +ju_AbstractList$SubAbstractListRandomAccess, 0, ju_AbstractList$SubAbstractList, [ju_RandomAccess], 4, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +scm_TreeSet$$anon$1, 0, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$addAll0", $rt_wrapFunction1(scm_TreeSet$$anon$1_addAll), "$result", $rt_wrapFunction0(scm_TreeSet$$anon$1_result), "$addOne", $rt_wrapFunction1(scm_TreeSet$$anon$1_addOne)], +oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0_apply)], +oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0_apply)], +sc_SeqOps$occCounts$lambda$_124_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_SeqOps$occCounts$lambda$_124_0_apply)], +sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0_apply)], +oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0_apply)], +oncie_ImplicitProcedureArgument, "ImplicitProcedureArgument", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_asCanonicalStringVal), "$position", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_productArity), +"$productElement", $rt_wrapFunction1(oncie_ImplicitProcedureArgument_productElement), "$productIterator", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_hashCode), "$toString", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_toString), "$equals", $rt_wrapFunction1(oncie_ImplicitProcedureArgument_equals)], +oncie_ExplicitParameter$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncie_ExplicitParameter$_$callClinit, 0, +oncie_CoerceTo, "CoerceTo", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_CoerceTo_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_CoerceTo_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_CoerceTo_productPrefix), "$productArity", $rt_wrapFunction0(oncie_CoerceTo_productArity), "$productElement", $rt_wrapFunction1(oncie_CoerceTo_productElement), "$productIterator", $rt_wrapFunction0(oncie_CoerceTo_productIterator), "$hashCode", $rt_wrapFunction0(oncie_CoerceTo_hashCode), +"$toString", $rt_wrapFunction0(oncie_CoerceTo_toString), "$equals", $rt_wrapFunction1(oncie_CoerceTo_equals)], +oncias_OptionSemanticChecking$, 0, jl_Object, [], 4, 3, 0, oncias_OptionSemanticChecking$_$callClinit, 0, +oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0_apply)], +oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_0_apply)], +oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_1_apply)], +oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_2_apply)], +oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$1$lambda$_58_3_apply)], +oncia_AdministrationCommandSemanticAnalysis$, 0, jl_Object, [], 4, 3, 0, oncia_AdministrationCommandSemanticAnalysis$_$callClinit, 0, +oncie_PatternComprehension, "PatternComprehension", 62, oncie_Expression, [oncie_SubqueryExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncie_PatternComprehension_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_PatternComprehension_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncie_PatternComprehension_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_PatternComprehension_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_PatternComprehension_position), +"$computedIntroducedVariables", $rt_wrapFunction0(oncie_PatternComprehension_computedIntroducedVariables), "$computedScopeDependencies", $rt_wrapFunction0(oncie_PatternComprehension_computedScopeDependencies), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncie_PatternComprehension_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncie_PatternComprehension_withComputedScopeDependencies), "$subqueryAstNode", $rt_wrapFunction0(oncie_PatternComprehension_subqueryAstNode), +"$productPrefix", $rt_wrapFunction0(oncie_PatternComprehension_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternComprehension_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternComprehension_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternComprehension_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternComprehension_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternComprehension_toString), "$equals", $rt_wrapFunction1(oncie_PatternComprehension_equals), +"$dup", $rt_wrapFunction1(oncie_PatternComprehension_dup1), "$dup0", $rt_wrapFunction1(oncie_PatternComprehension_dup0)], +oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply)], +oncia_GraphFunctionReference, "GraphFunctionReference", 35, oncie_Expression, [oncia_GraphReference, oncias_SemanticAnalysisTooling, ji_Serializable], 4, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_GraphFunctionReference_semanticCheck), "$position", $rt_wrapFunction0(oncia_GraphFunctionReference_position), "$print0", $rt_wrapFunction0(oncia_GraphFunctionReference_print), "$dependencies", $rt_wrapFunction0(oncia_GraphFunctionReference_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_GraphFunctionReference_isConstantForQuery), +"$semanticallyEqual", $rt_wrapFunction1(oncia_GraphFunctionReference_semanticallyEqual), "$productPrefix", $rt_wrapFunction0(oncia_GraphFunctionReference_productPrefix), "$productArity", $rt_wrapFunction0(oncia_GraphFunctionReference_productArity), "$productElement", $rt_wrapFunction1(oncia_GraphFunctionReference_productElement), "$productIterator", $rt_wrapFunction0(oncia_GraphFunctionReference_productIterator), "$hashCode", $rt_wrapFunction0(oncia_GraphFunctionReference_hashCode), "$toString", $rt_wrapFunction0(oncia_GraphFunctionReference_toString), +"$equals", $rt_wrapFunction1(oncia_GraphFunctionReference_equals)], +oncia_ASTSlicingPhrase, 0, jl_Object, [oncias_SemanticCheckable, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, +oncia_Skip, "Skip", 35, jl_Object, [onciu_ASTNode, oncia_ASTSlicingPhrase, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_Skip_semanticCheck), "$expression0", $rt_wrapFunction0(oncia_Skip_expression), "$position", $rt_wrapFunction0(oncia_Skip_position), "$name", $rt_wrapFunction0(oncia_Skip_name), "$productPrefix", $rt_wrapFunction0(oncia_Skip_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Skip_productArity), "$productElement", $rt_wrapFunction1(oncia_Skip_productElement), +"$productIterator", $rt_wrapFunction0(oncia_Skip_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Skip_hashCode), "$toString", $rt_wrapFunction0(oncia_Skip_toString), "$equals", $rt_wrapFunction1(oncia_Skip_equals), "$dup", $rt_wrapFunction1(oncia_Skip_dup)], +oncia_Limit, "Limit", 35, jl_Object, [onciu_ASTNode, oncia_ASTSlicingPhrase, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_Limit_semanticCheck), "$expression0", $rt_wrapFunction0(oncia_Limit_expression), "$position", $rt_wrapFunction0(oncia_Limit_position), "$name", $rt_wrapFunction0(oncia_Limit_name), "$productPrefix", $rt_wrapFunction0(oncia_Limit_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Limit_productArity), "$productElement", $rt_wrapFunction1(oncia_Limit_productElement), +"$productIterator", $rt_wrapFunction0(oncia_Limit_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Limit_hashCode), "$toString", $rt_wrapFunction0(oncia_Limit_toString), "$equals", $rt_wrapFunction1(oncia_Limit_equals), "$dup", $rt_wrapFunction1(oncia_Limit_dup)], +oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0_apply0)], +oncie_Pattern, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, +oncie_Pattern$ForUpdate, "Pattern$ForUpdate", 62, jl_Object, [oncie_Pattern, oncie_HasMappableExpressions, ji_Serializable], 4, 3, [oncie_Pattern,0,"ForUpdate"], 0, ["$foldedOver", $rt_wrapFunction0(oncie_Pattern$ForUpdate_foldedOver), "$folder", $rt_wrapFunction0(oncie_Pattern$ForUpdate_folder), "$patternParts", $rt_wrapFunction0(oncie_Pattern$ForUpdate_patternParts), "$position", $rt_wrapFunction0(oncie_Pattern$ForUpdate_position), "$productPrefix", $rt_wrapFunction0(oncie_Pattern$ForUpdate_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_Pattern$ForUpdate_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$ForUpdate_productElement), "$productIterator", $rt_wrapFunction0(oncie_Pattern$ForUpdate_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$ForUpdate_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$ForUpdate_toString), "$equals", $rt_wrapFunction1(oncie_Pattern$ForUpdate_equals), "$dup", $rt_wrapFunction1(oncie_Pattern$ForUpdate_dup)], +oncia_SetItem, 0, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, +oncia_SetProperty, 0, jl_Object, [oncia_SetItem, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, +oncia_SetPropertyItem, "SetPropertyItem", 35, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, [0,0,0], 0, ["$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_SetPropertyItem_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_SetPropertyItem_expectType$default$5), "$position", $rt_wrapFunction0(oncia_SetPropertyItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetPropertyItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetPropertyItem_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_SetPropertyItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetPropertyItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetPropertyItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetPropertyItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetPropertyItem_toString), "$equals", $rt_wrapFunction1(oncia_SetPropertyItem_equals), "$dup", $rt_wrapFunction1(oncia_SetPropertyItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetPropertyItem_mapExpressions)], +oncie_ContainerIndex, "ContainerIndex", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ContainerIndex_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ContainerIndex_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ContainerIndex_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ContainerIndex_productArity), "$productElement", $rt_wrapFunction1(oncie_ContainerIndex_productElement), "$productIterator", $rt_wrapFunction0(oncie_ContainerIndex_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_ContainerIndex_hashCode), "$toString", $rt_wrapFunction0(oncie_ContainerIndex_toString), "$equals", $rt_wrapFunction1(oncie_ContainerIndex_equals)], +oncia_SetDynamicPropertyItem, "SetDynamicPropertyItem", 35, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetDynamicPropertyItem_productElement), +"$productIterator", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_toString), "$equals", $rt_wrapFunction1(oncia_SetDynamicPropertyItem_equals), "$dup", $rt_wrapFunction1(oncia_SetDynamicPropertyItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetDynamicPropertyItem_mapExpressions)], +oncia_SetExactPropertiesFromMapItem, "SetExactPropertiesFromMapItem", 35, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, [0,0,0], 0, ["$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_SetExactPropertiesFromMapItem_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_expectType$default$5), "$position", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_semanticCheck), +"$productPrefix", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetExactPropertiesFromMapItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_toString), "$equals", +$rt_wrapFunction1(oncia_SetExactPropertiesFromMapItem_equals), "$dup", $rt_wrapFunction1(oncia_SetExactPropertiesFromMapItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetExactPropertiesFromMapItem_mapExpressions)], +oncia_SetExactPropertiesFromMapItem$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_SetIncludingPropertiesFromMapItem, "SetIncludingPropertiesFromMapItem", 35, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, [0,0,0], 0, ["$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_SetIncludingPropertiesFromMapItem_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_expectType$default$5), "$position", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_position), "$semanticCheck", +$rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetIncludingPropertiesFromMapItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_hashCode), +"$toString", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_toString), "$equals", $rt_wrapFunction1(oncia_SetIncludingPropertiesFromMapItem_equals), "$dup", $rt_wrapFunction1(oncia_SetIncludingPropertiesFromMapItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetIncludingPropertiesFromMapItem_mapExpressions)], +oncia_SetIncludingPropertiesFromMapItem$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_SetLabelItem, "SetLabelItem", 35, jl_Object, [oncia_SetItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_SetLabelItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetLabelItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetLabelItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetLabelItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetLabelItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetLabelItem_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_SetLabelItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetLabelItem_toString), "$equals", $rt_wrapFunction1(oncia_SetLabelItem_equals), "$dup", $rt_wrapFunction1(oncia_SetLabelItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetLabelItem_mapExpressions)]]); +$rt_metadata([oncia_Remove, "Remove", 35, jl_Object, [oncia_UpdateClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Remove_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Remove_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Remove_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_Remove_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Remove_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Remove_foldedOver), "$folder", +$rt_wrapFunction0(oncia_Remove_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Remove_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Remove_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Remove_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Remove_position), +"$name", $rt_wrapFunction0(oncia_Remove_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Remove_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Remove_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Remove_productArity), "$productElement", $rt_wrapFunction1(oncia_Remove_productElement), "$productIterator", $rt_wrapFunction0(oncia_Remove_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Remove_hashCode), "$toString", $rt_wrapFunction0(oncia_Remove_toString), +"$equals", $rt_wrapFunction1(oncia_Remove_equals), "$dup", $rt_wrapFunction1(oncia_Remove_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Remove_mapExpressions)], +oncia_RemoveItem, 0, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, +oncia_RemovePropertyItem, "RemovePropertyItem", 35, jl_Object, [oncia_RemoveItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_RemovePropertyItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_RemovePropertyItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RemovePropertyItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RemovePropertyItem_productArity), "$productElement", $rt_wrapFunction1(oncia_RemovePropertyItem_productElement), "$productIterator", +$rt_wrapFunction0(oncia_RemovePropertyItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemovePropertyItem_hashCode), "$toString", $rt_wrapFunction0(oncia_RemovePropertyItem_toString), "$equals", $rt_wrapFunction1(oncia_RemovePropertyItem_equals), "$dup", $rt_wrapFunction1(oncia_RemovePropertyItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_RemovePropertyItem_mapExpressions)], +oncia_RemoveDynamicPropertyItem, "RemoveDynamicPropertyItem", 35, jl_Object, [oncia_RemoveItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveDynamicPropertyItem_productElement), +"$productIterator", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_toString), "$equals", $rt_wrapFunction1(oncia_RemoveDynamicPropertyItem_equals), "$dup", $rt_wrapFunction1(oncia_RemoveDynamicPropertyItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_RemoveDynamicPropertyItem_mapExpressions)], +oncia_RemoveLabelItem, "RemoveLabelItem", 35, jl_Object, [oncia_RemoveItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_RemoveLabelItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_RemoveLabelItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RemoveLabelItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RemoveLabelItem_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveLabelItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveLabelItem_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_RemoveLabelItem_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveLabelItem_toString), "$equals", $rt_wrapFunction1(oncia_RemoveLabelItem_equals), "$dup", $rt_wrapFunction1(oncia_RemoveLabelItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_RemoveLabelItem_mapExpressions)], +oncia_Delete, "Delete", 35, jl_Object, [oncia_UpdateClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Delete_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Delete_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Delete_shouldRunQPPChecks), "$expectType", $rt_wrapFunction3(oncia_Delete_expectType0), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_Delete_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", +$rt_wrapFunction0(oncia_Delete_expectType$default$5), "$error4", $rt_wrapFunction2(oncia_Delete_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Delete_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Delete_foldedOver), "$folder", $rt_wrapFunction0(oncia_Delete_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Delete_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Delete_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", +$rt_wrapFunction1(oncia_Delete_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Delete_position), "$name", $rt_wrapFunction0(oncia_Delete_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Delete_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Delete_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Delete_productArity), "$productElement", $rt_wrapFunction1(oncia_Delete_productElement), +"$productIterator", $rt_wrapFunction0(oncia_Delete_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Delete_hashCode), "$toString", $rt_wrapFunction0(oncia_Delete_toString), "$equals", $rt_wrapFunction1(oncia_Delete_equals), "$dup", $rt_wrapFunction1(oncia_Delete_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Delete_mapExpressions)], +oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0_apply0)], +oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1_apply)], +oncie_MatchMode$MatchMode, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, +oncie_Pattern$ForMatch, "Pattern$ForMatch", 62, jl_Object, [oncie_Pattern, ji_Serializable], 4, 3, [oncie_Pattern,0,"ForMatch"], 0, ["$foldedOver", $rt_wrapFunction0(oncie_Pattern$ForMatch_foldedOver), "$folder", $rt_wrapFunction0(oncie_Pattern$ForMatch_folder), "$patternParts", $rt_wrapFunction0(oncie_Pattern$ForMatch_patternParts), "$position", $rt_wrapFunction0(oncie_Pattern$ForMatch_position), "$productPrefix", $rt_wrapFunction0(oncie_Pattern$ForMatch_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Pattern$ForMatch_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$ForMatch_productElement), "$productIterator", $rt_wrapFunction0(oncie_Pattern$ForMatch_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$ForMatch_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$ForMatch_toString), "$equals", $rt_wrapFunction1(oncie_Pattern$ForMatch_equals), "$dup", $rt_wrapFunction1(oncie_Pattern$ForMatch_dup)], -oncie_PatternPartWithSelector, "PatternPartWithSelector", 64, oncie_PatternPart, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_PatternPartWithSelector_position), "$allVariables", $rt_wrapFunction0(oncie_PatternPartWithSelector_allVariables), "$element", $rt_wrapFunction0(oncie_PatternPartWithSelector_element), "$productPrefix", $rt_wrapFunction0(oncie_PatternPartWithSelector_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternPartWithSelector_productArity), "$productElement", +oncie_MatchMode$DifferentRelationships, "MatchMode$DifferentRelationships", 62, jl_Object, [oncie_MatchMode$MatchMode, ji_Serializable], 0, 3, [oncie_MatchMode,0,"DifferentRelationships"], 0, ["$position", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_position), "$prettified", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_prettified), "$productPrefix", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_productPrefix), "$productArity", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_productArity), +"$productElement", $rt_wrapFunction1(oncie_MatchMode$DifferentRelationships_productElement), "$productIterator", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_productIterator), "$hashCode", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_hashCode), "$toString", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_toString), "$equals", $rt_wrapFunction1(oncie_MatchMode$DifferentRelationships_equals), "$dup", $rt_wrapFunction1(oncie_MatchMode$DifferentRelationships_dup)], +oncie_MatchMode$DifferentRelationships$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +oncie_MatchMode$RepeatableElements, "MatchMode$RepeatableElements", 62, jl_Object, [oncie_MatchMode$MatchMode, ji_Serializable], 0, 3, [oncie_MatchMode,0,"RepeatableElements"], 0, ["$position", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_position), "$prettified", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_prettified), "$productPrefix", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_productPrefix), "$productArity", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_productArity), "$productElement", +$rt_wrapFunction1(oncie_MatchMode$RepeatableElements_productElement), "$productIterator", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_productIterator), "$hashCode", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_hashCode), "$toString", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_toString), "$equals", $rt_wrapFunction1(oncie_MatchMode$RepeatableElements_equals), "$dup", $rt_wrapFunction1(oncie_MatchMode$RepeatableElements_dup)], +oncia_Hint, 0, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, +oncia_UserHint, 0, jl_Object, [oncia_Hint], 3, 3, 0, 0, 0, +oncia_UsingJoinHint, "UsingJoinHint", 35, jl_Object, [oncia_UserHint, ji_Serializable], 0, 3, [0,0,0], 0, ["$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_UsingJoinHint_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_UsingJoinHint_expectType$default$5), "$position", $rt_wrapFunction0(oncia_UsingJoinHint_position), "$semanticCheck", $rt_wrapFunction0(oncia_UsingJoinHint_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_UsingJoinHint_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_UsingJoinHint_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingJoinHint_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingJoinHint_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingJoinHint_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingJoinHint_toString), "$equals", $rt_wrapFunction1(oncia_UsingJoinHint_equals), "$dup", $rt_wrapFunction1(oncia_UsingJoinHint_dup)], +oncia_LeafPlanHint, 0, jl_Object, [oncia_UserHint], 3, 3, 0, 0, 0, +oncia_UsingScanHint, "UsingScanHint", 35, jl_Object, [oncia_LeafPlanHint, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_UsingScanHint_semanticCheck), "$expectType1", $rt_wrapFunction2(oncia_UsingScanHint_expectType0), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_UsingScanHint_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_UsingScanHint_expectType$default$5), "$ensureDefined", $rt_wrapFunction1(oncia_UsingScanHint_ensureDefined), +"$variable4", $rt_wrapFunction0(oncia_UsingScanHint_variable), "$position", $rt_wrapFunction0(oncia_UsingScanHint_position), "$productPrefix", $rt_wrapFunction0(oncia_UsingScanHint_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UsingScanHint_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingScanHint_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingScanHint_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingScanHint_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingScanHint_toString), +"$equals", $rt_wrapFunction1(oncia_UsingScanHint_equals), "$dup", $rt_wrapFunction1(oncia_UsingScanHint_dup)], +oncil_LabelExpressionLeafName, 0, jl_Object, [oncie_SymbolicName], 3, 3, 0, 0, 0, +oncie_LabelOrRelTypeName, "LabelOrRelTypeName", 62, jl_Object, [oncil_LabelExpressionLeafName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_LabelOrRelTypeName_name), "$position", $rt_wrapFunction0(oncie_LabelOrRelTypeName_position), "$productPrefix", $rt_wrapFunction0(oncie_LabelOrRelTypeName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LabelOrRelTypeName_productArity), "$productElement", $rt_wrapFunction1(oncie_LabelOrRelTypeName_productElement), "$productIterator", $rt_wrapFunction0(oncie_LabelOrRelTypeName_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_LabelOrRelTypeName_hashCode), "$toString", $rt_wrapFunction0(oncie_LabelOrRelTypeName_toString), "$equals", $rt_wrapFunction1(oncie_LabelOrRelTypeName_equals), "$dup", $rt_wrapFunction1(oncie_LabelOrRelTypeName_dup)], +oncie_PatternPartWithSelector, "PatternPartWithSelector", 62, oncie_PatternPart, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_PatternPartWithSelector_position), "$allVariables", $rt_wrapFunction0(oncie_PatternPartWithSelector_allVariables), "$element", $rt_wrapFunction0(oncie_PatternPartWithSelector_element), "$productPrefix", $rt_wrapFunction0(oncie_PatternPartWithSelector_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternPartWithSelector_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPartWithSelector_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPartWithSelector_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPartWithSelector_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPartWithSelector_toString), "$equals", $rt_wrapFunction1(oncie_PatternPartWithSelector_equals)], -onciafn_Neo4jASTFactory$mergeClause$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$mergeClause$lambda$_34_0_apply)], -oncia_Merge, "Merge", 36, jl_Object, [oncia_UpdateClause, oncia_SingleRelTypeCheck, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Merge_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Merge_semanticCheck), "$error2", $rt_wrapFunction2(oncia_Merge_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_Merge_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Merge_foldedOver), "$folder", $rt_wrapFunction0(oncia_Merge_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", -$rt_wrapFunction0(oncia_Merge_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Merge_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Merge_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_Merge_position), "$name", $rt_wrapFunction0(oncia_Merge_name), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Merge_shouldRunQPPChecks), -"$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Merge_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Merge_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Merge_productArity), "$productElement", $rt_wrapFunction1(oncia_Merge_productElement), "$productIterator", $rt_wrapFunction0(oncia_Merge_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Merge_hashCode), "$toString", $rt_wrapFunction0(oncia_Merge_toString), "$equals", $rt_wrapFunction1(oncia_Merge_equals), "$dup", -$rt_wrapFunction1(oncia_Merge_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Merge_mapExpressions)], oncia_Merge$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_Unwind, "Unwind", 36, jl_Object, [oncia_Clause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Unwind_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Unwind_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Unwind_shouldRunQPPChecks), "$expectType4", $rt_wrapFunction4(oncia_Unwind_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_Unwind_expectType$default$4), "$error2", $rt_wrapFunction2(oncia_Unwind_error), "$asCanonicalStringVal", -$rt_wrapFunction0(oncia_Unwind_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Unwind_foldedOver), "$folder", $rt_wrapFunction0(oncia_Unwind_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Unwind_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Unwind_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Unwind_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), -"$position", $rt_wrapFunction0(oncia_Unwind_position), "$name", $rt_wrapFunction0(oncia_Unwind_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Unwind_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Unwind_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Unwind_productArity), "$productElement", $rt_wrapFunction1(oncia_Unwind_productElement), "$productIterator", $rt_wrapFunction0(oncia_Unwind_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Unwind_hashCode), -"$toString", $rt_wrapFunction0(oncia_Unwind_toString), "$equals", $rt_wrapFunction1(oncia_Unwind_equals), "$dup", $rt_wrapFunction1(oncia_Unwind_dup)], -oncia_With$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_With$_$callClinit, 0]); -$rt_metadata([oncie_ProcedureName, "ProcedureName", 64, jl_Object, [oncie_SymbolicName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_ProcedureName_name), "$position", $rt_wrapFunction0(oncie_ProcedureName_position), "$productPrefix", $rt_wrapFunction0(oncie_ProcedureName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ProcedureName_productArity), "$productElement", $rt_wrapFunction1(oncie_ProcedureName_productElement), "$productIterator", $rt_wrapFunction0(oncie_ProcedureName_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_ProcedureName_hashCode), "$toString", $rt_wrapFunction0(oncie_ProcedureName_toString), "$equals", $rt_wrapFunction1(oncie_ProcedureName_equals), "$dup", $rt_wrapFunction1(oncie_ProcedureName_dup)], -onciafn_Neo4jASTFactory$callClause$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$callClause$lambda$_35_0_apply)], -oncia_Foreach, "Foreach", 36, jl_Object, [oncia_UpdateClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_Foreach_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_Foreach_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_Foreach_shouldRunQPPChecks), "$expectType4", $rt_wrapFunction4(oncia_Foreach_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_Foreach_expectType$default$4), "$error2", $rt_wrapFunction2(oncia_Foreach_error), "$asCanonicalStringVal", -$rt_wrapFunction0(oncia_Foreach_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_Foreach_foldedOver), "$folder", $rt_wrapFunction0(oncia_Foreach_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_Foreach_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_Foreach_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_Foreach_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), -"$position", $rt_wrapFunction0(oncia_Foreach_position), "$name", $rt_wrapFunction0(oncia_Foreach_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_Foreach_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_Foreach_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Foreach_productArity), "$productElement", $rt_wrapFunction1(oncia_Foreach_productElement), "$productIterator", $rt_wrapFunction0(oncia_Foreach_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Foreach_hashCode), -"$toString", $rt_wrapFunction0(oncia_Foreach_toString), "$equals", $rt_wrapFunction1(oncia_Foreach_equals), "$dup", $rt_wrapFunction1(oncia_Foreach_dup), "$mapExpressions", $rt_wrapFunction1(oncia_Foreach_mapExpressions)], -onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_0_apply)], -onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$orderBySkipLimitClause$lambda$_45_1_apply)], +oncia_MergeAction, 0, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, +oncia_OnCreate, "OnCreate", 35, jl_Object, [oncia_MergeAction, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_OnCreate_position), "$semanticCheck", $rt_wrapFunction0(oncia_OnCreate_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_OnCreate_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OnCreate_productArity), "$productElement", $rt_wrapFunction1(oncia_OnCreate_productElement), "$productIterator", $rt_wrapFunction0(oncia_OnCreate_productIterator), "$hashCode", $rt_wrapFunction0(oncia_OnCreate_hashCode), +"$toString", $rt_wrapFunction0(oncia_OnCreate_toString), "$equals", $rt_wrapFunction1(oncia_OnCreate_equals), "$dup", $rt_wrapFunction1(oncia_OnCreate_dup), "$mapExpressions", $rt_wrapFunction1(oncia_OnCreate_mapExpressions)], +oncia_OnMatch, "OnMatch", 35, jl_Object, [oncia_MergeAction, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_OnMatch_position), "$semanticCheck", $rt_wrapFunction0(oncia_OnMatch_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_OnMatch_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OnMatch_productArity), "$productElement", $rt_wrapFunction1(oncia_OnMatch_productElement), "$productIterator", $rt_wrapFunction0(oncia_OnMatch_productIterator), "$hashCode", $rt_wrapFunction0(oncia_OnMatch_hashCode), +"$toString", $rt_wrapFunction0(oncia_OnMatch_toString), "$equals", $rt_wrapFunction1(oncia_OnMatch_equals), "$dup", $rt_wrapFunction1(oncia_OnMatch_dup), "$mapExpressions", $rt_wrapFunction1(oncia_OnMatch_mapExpressions)], +oncipvaf_StatementBuilder$exitCallClause$lambda$_68_00, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0_apply)], oncia_LoadCSV$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_LoadCSV$_$callClinit, 0, -onciafn_Neo4jASTFactory$loadCsvClause$lambda$_37_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$loadCsvClause$lambda$_37_0_apply)], -oncie_ExplicitParameter$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncie_StringLiteral, "StringLiteral", 64, oncie_Expression, [oncie_Literal, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_StringLiteral_isConstantForQuery), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_StringLiteral_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_StringLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_StringLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_StringLiteral_productArity), "$productElement", +oncia_SubqueryCall$InTransactionsConcurrencyParameters, "SubqueryCall$InTransactionsConcurrencyParameters", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsConcurrencyParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_position), "$semanticCheck", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsConcurrencyParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsConcurrencyParameters_toString), +"$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsConcurrencyParameters_equals), "$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsConcurrencyParameters_dup)], +oncia_SubqueryCall$InTransactionsBatchParameters, "SubqueryCall$InTransactionsBatchParameters", 35, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsBatchParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_position), "$semanticCheck", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsBatchParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsBatchParameters_toString), "$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsBatchParameters_equals), +"$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsBatchParameters_dup)], +oncia_SubqueryCall$InTransactionsOnErrorBehaviour, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$, "SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$", 35, jl_Object, [oncia_SubqueryCall$InTransactionsOnErrorBehaviour, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_toString)], +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$, "SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$", 35, jl_Object, [oncia_SubqueryCall$InTransactionsOnErrorBehaviour, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_toString)], +oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$, "SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$", 35, jl_Object, [oncia_SubqueryCall$InTransactionsOnErrorBehaviour, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_toString)], +oncia_SubqueryCall$InTransactionsErrorParameters, "SubqueryCall$InTransactionsErrorParameters", 35, jl_Object, [onciu_ASTNode, ji_Serializable], 4, 3, [oncia_SubqueryCall,0,"InTransactionsErrorParameters"], 0, ["$position", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_position), "$productPrefix", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_productArity), "$productElement", +$rt_wrapFunction1(oncia_SubqueryCall$InTransactionsErrorParameters_productElement), "$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsErrorParameters_toString), "$equals", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsErrorParameters_equals), "$dup", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsErrorParameters_dup)], +oncie_PathPatternPart, "PathPatternPart", 62, oncie_PatternPart, [oncie_AnonymousPatternPart, ji_Serializable], 0, 3, [0,0,0], 0, ["$allVariables", $rt_wrapFunction0(oncie_PathPatternPart_allVariables), "$element", $rt_wrapFunction0(oncie_PathPatternPart_element), "$position", $rt_wrapFunction0(oncie_PathPatternPart_position), "$isBounded", $rt_wrapFunction0(oncie_PathPatternPart_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PathPatternPart_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PathPatternPart_productArity), +"$productElement", $rt_wrapFunction1(oncie_PathPatternPart_productElement), "$productIterator", $rt_wrapFunction0(oncie_PathPatternPart_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PathPatternPart_hashCode), "$toString", $rt_wrapFunction0(oncie_PathPatternPart_toString), "$equals", $rt_wrapFunction1(oncie_PathPatternPart_equals), "$mapExpressions", $rt_wrapFunction1(oncie_PathPatternPart_mapExpressions), "$dup", $rt_wrapFunction1(oncie_PathPatternPart_dup1), "$dup0", $rt_wrapFunction1(oncie_PathPatternPart_dup0)], +oncie_NamedPatternPart, "NamedPatternPart", 62, oncie_PatternPart, [oncie_NonPrefixedPatternPart, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_NamedPatternPart_position), "$element", $rt_wrapFunction0(oncie_NamedPatternPart_element), "$allVariables", $rt_wrapFunction0(oncie_NamedPatternPart_allVariables), "$isBounded", $rt_wrapFunction0(oncie_NamedPatternPart_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_NamedPatternPart_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NamedPatternPart_productArity), +"$productElement", $rt_wrapFunction1(oncie_NamedPatternPart_productElement), "$productIterator", $rt_wrapFunction0(oncie_NamedPatternPart_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NamedPatternPart_hashCode), "$toString", $rt_wrapFunction0(oncie_NamedPatternPart_toString), "$equals", $rt_wrapFunction1(oncie_NamedPatternPart_equals), "$mapExpressions", $rt_wrapFunction1(oncie_NamedPatternPart_mapExpressions)], +oncie_GraphPatternQuantifier, 0, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, +oncie_PlusQuantifier, "PlusQuantifier", 62, jl_Object, [oncie_GraphPatternQuantifier, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_PlusQuantifier_position), "$canBeEmpty", $rt_wrapFunction0(oncie_PlusQuantifier_canBeEmpty), "$productPrefix", $rt_wrapFunction0(oncie_PlusQuantifier_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PlusQuantifier_productArity), "$productElement", $rt_wrapFunction1(oncie_PlusQuantifier_productElement), "$productIterator", $rt_wrapFunction0(oncie_PlusQuantifier_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_PlusQuantifier_hashCode), "$toString", $rt_wrapFunction0(oncie_PlusQuantifier_toString), "$equals", $rt_wrapFunction1(oncie_PlusQuantifier_equals), "$dup", $rt_wrapFunction1(oncie_PlusQuantifier_dup), "$mapExpressions", $rt_wrapFunction1(oncie_PlusQuantifier_mapExpressions)], +oncie_StarQuantifier, "StarQuantifier", 62, jl_Object, [oncie_GraphPatternQuantifier, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_StarQuantifier_position), "$canBeEmpty", $rt_wrapFunction0(oncie_StarQuantifier_canBeEmpty), "$productPrefix", $rt_wrapFunction0(oncie_StarQuantifier_productPrefix), "$productArity", $rt_wrapFunction0(oncie_StarQuantifier_productArity), "$productElement", $rt_wrapFunction1(oncie_StarQuantifier_productElement), "$productIterator", $rt_wrapFunction0(oncie_StarQuantifier_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_StarQuantifier_hashCode), "$toString", $rt_wrapFunction0(oncie_StarQuantifier_toString), "$equals", $rt_wrapFunction1(oncie_StarQuantifier_equals), "$dup", $rt_wrapFunction1(oncie_StarQuantifier_dup), "$mapExpressions", $rt_wrapFunction1(oncie_StarQuantifier_mapExpressions)], +oncie_IntervalQuantifier, "IntervalQuantifier", 62, jl_Object, [oncie_GraphPatternQuantifier, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_IntervalQuantifier_position), "$canBeEmpty", $rt_wrapFunction0(oncie_IntervalQuantifier_canBeEmpty), "$productPrefix", $rt_wrapFunction0(oncie_IntervalQuantifier_productPrefix), "$productArity", $rt_wrapFunction0(oncie_IntervalQuantifier_productArity), "$productElement", $rt_wrapFunction1(oncie_IntervalQuantifier_productElement), "$productIterator", +$rt_wrapFunction0(oncie_IntervalQuantifier_productIterator), "$hashCode", $rt_wrapFunction0(oncie_IntervalQuantifier_hashCode), "$toString", $rt_wrapFunction0(oncie_IntervalQuantifier_toString), "$equals", $rt_wrapFunction1(oncie_IntervalQuantifier_equals), "$dup", $rt_wrapFunction1(oncie_IntervalQuantifier_dup), "$mapExpressions", $rt_wrapFunction1(oncie_IntervalQuantifier_mapExpressions)], +oncie_FixedQuantifier, "FixedQuantifier", 62, jl_Object, [oncie_GraphPatternQuantifier, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_FixedQuantifier_position), "$canBeEmpty", $rt_wrapFunction0(oncie_FixedQuantifier_canBeEmpty), "$productPrefix", $rt_wrapFunction0(oncie_FixedQuantifier_productPrefix), "$productArity", $rt_wrapFunction0(oncie_FixedQuantifier_productArity), "$productElement", $rt_wrapFunction1(oncie_FixedQuantifier_productElement), "$productIterator", $rt_wrapFunction0(oncie_FixedQuantifier_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_FixedQuantifier_hashCode), "$toString", $rt_wrapFunction0(oncie_FixedQuantifier_toString), "$equals", $rt_wrapFunction1(oncie_FixedQuantifier_equals), "$dup", $rt_wrapFunction1(oncie_FixedQuantifier_dup), "$mapExpressions", $rt_wrapFunction1(oncie_FixedQuantifier_mapExpressions)], +oncie_QuantifiedPath$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncie_PathConcatenation, "PathConcatenation", 62, oncie_PatternElement, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_PathConcatenation_position), "$allVariables", $rt_wrapFunction0(oncie_PathConcatenation_allVariables), "$isBounded", $rt_wrapFunction0(oncie_PathConcatenation_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PathConcatenation_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PathConcatenation_productArity), "$productElement", $rt_wrapFunction1(oncie_PathConcatenation_productElement), +"$productIterator", $rt_wrapFunction0(oncie_PathConcatenation_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PathConcatenation_hashCode), "$toString", $rt_wrapFunction0(oncie_PathConcatenation_toString), "$equals", $rt_wrapFunction1(oncie_PathConcatenation_equals), "$mapExpressions", $rt_wrapFunction1(oncie_PathConcatenation_mapExpressions)], +oncie_PatternPart$CountedSelector, 0, jl_Object, [oncie_PatternPart$Selector], 3, 3, 0, 0, 0, +oncie_PatternPart$AnyShortestPath, "PatternPart$AnyShortestPath", 62, jl_Object, [oncie_PatternPart$SelectiveSelector, oncie_PatternPart$CountedSelector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"AnyShortestPath"], 0, ["$count0", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_count), "$position", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_isBounded), +"$productPrefix", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPart$AnyShortestPath_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$AnyShortestPath_equals), +"$dup", $rt_wrapFunction1(oncie_PatternPart$AnyShortestPath_dup)], +oncie_PatternPart$AllShortestPaths, "PatternPart$AllShortestPaths", 62, jl_Object, [oncie_PatternPart$SelectiveSelector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"AllShortestPaths"], 0, ["$position", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPart$AllShortestPaths_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$AllShortestPaths_equals), "$dup", $rt_wrapFunction1(oncie_PatternPart$AllShortestPaths_dup)], +oncie_PatternPart$AnyPath, "PatternPart$AnyPath", 62, jl_Object, [oncie_PatternPart$SelectiveSelector, oncie_PatternPart$CountedSelector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"AnyPath"], 0, ["$count0", $rt_wrapFunction0(oncie_PatternPart$AnyPath_count), "$position", $rt_wrapFunction0(oncie_PatternPart$AnyPath_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$AnyPath_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$AnyPath_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PatternPart$AnyPath_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_PatternPart$AnyPath_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPart$AnyPath_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$AnyPath_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$AnyPath_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$AnyPath_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$AnyPath_equals), "$dup", $rt_wrapFunction1(oncie_PatternPart$AnyPath_dup)], +oncie_PatternPart$ShortestGroups, "PatternPart$ShortestGroups", 62, jl_Object, [oncie_PatternPart$SelectiveSelector, oncie_PatternPart$CountedSelector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"ShortestGroups"], 0, ["$count0", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_count), "$position", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_isBounded), +"$productPrefix", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPart$ShortestGroups_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$ShortestGroups_equals), +"$dup", $rt_wrapFunction1(oncie_PatternPart$ShortestGroups_dup)], +oncie_PatternPart$AllPaths, "PatternPart$AllPaths", 62, jl_Object, [oncie_PatternPart$Selector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"AllPaths"], 0, ["$position", $rt_wrapFunction0(oncie_PatternPart$AllPaths_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$AllPaths_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$AllPaths_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PatternPart$AllPaths_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternPart$AllPaths_productArity), +"$productElement", $rt_wrapFunction1(oncie_PatternPart$AllPaths_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$AllPaths_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$AllPaths_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$AllPaths_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$AllPaths_equals), "$dup", $rt_wrapFunction1(oncie_PatternPart$AllPaths_dup)], +oncie_RelationshipsPattern, "RelationshipsPattern", 62, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$foldedOver", $rt_wrapFunction0(oncie_RelationshipsPattern_foldedOver), "$folder", $rt_wrapFunction0(oncie_RelationshipsPattern_folder), "$position", $rt_wrapFunction0(oncie_RelationshipsPattern_position), "$productPrefix", $rt_wrapFunction0(oncie_RelationshipsPattern_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RelationshipsPattern_productArity), "$productElement", $rt_wrapFunction1(oncie_RelationshipsPattern_productElement), +"$productIterator", $rt_wrapFunction0(oncie_RelationshipsPattern_productIterator), "$hashCode", $rt_wrapFunction0(oncie_RelationshipsPattern_hashCode), "$toString", $rt_wrapFunction0(oncie_RelationshipsPattern_toString), "$equals", $rt_wrapFunction1(oncie_RelationshipsPattern_equals), "$dup", $rt_wrapFunction1(oncie_RelationshipsPattern_dup)]]); +$rt_metadata([oncie_ParenthesizedPath, "ParenthesizedPath", 62, oncie_PatternElement, [oncie_PathFactor, oncie_PatternAtom, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ParenthesizedPath_position), "$allVariables", $rt_wrapFunction0(oncie_ParenthesizedPath_allVariables), "$isBounded", $rt_wrapFunction0(oncie_ParenthesizedPath_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_ParenthesizedPath_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ParenthesizedPath_productArity), +"$productElement", $rt_wrapFunction1(oncie_ParenthesizedPath_productElement), "$productIterator", $rt_wrapFunction0(oncie_ParenthesizedPath_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ParenthesizedPath_hashCode), "$toString", $rt_wrapFunction0(oncie_ParenthesizedPath_toString), "$equals", $rt_wrapFunction1(oncie_ParenthesizedPath_equals), "$mapExpressions", $rt_wrapFunction1(oncie_ParenthesizedPath_mapExpressions)], +oncie_ElementTypeName, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_LabelName, "LabelName", 62, jl_Object, [oncil_LabelExpressionLeafName, oncie_ElementTypeName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_LabelName_name), "$position", $rt_wrapFunction0(oncie_LabelName_position), "$productPrefix", $rt_wrapFunction0(oncie_LabelName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LabelName_productArity), "$productElement", $rt_wrapFunction1(oncie_LabelName_productElement), "$productIterator", $rt_wrapFunction0(oncie_LabelName_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_LabelName_hashCode), "$toString", $rt_wrapFunction0(oncie_LabelName_toString), "$equals", $rt_wrapFunction1(oncie_LabelName_equals), "$dup", $rt_wrapFunction1(oncie_LabelName_dup)], +oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0_apply0)], +oncil_LabelExpressionDynamicLeafExpression, "LabelExpressionDynamicLeafExpression", 61, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions], 3, 3, [0,0,0], 0, 0, +oncie_DynamicLabelOrRelTypeExpression, "DynamicLabelOrRelTypeExpression", 62, jl_Object, [oncil_LabelExpressionDynamicLeafExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$expression0", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_expression), "$all", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_all), "$position", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_position), "$productPrefix", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_productPrefix), "$productArity", +$rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_DynamicLabelOrRelTypeExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_toString), "$equals", $rt_wrapFunction1(oncie_DynamicLabelOrRelTypeExpression_equals), "$dup", $rt_wrapFunction1(oncie_DynamicLabelOrRelTypeExpression_dup), +"$mapExpressions", $rt_wrapFunction1(oncie_DynamicLabelOrRelTypeExpression_mapExpressions)], +oncie_RelTypeExpression, 0, jl_Object, [onciu_ASTNode], 3, 3, 0, 0, 0, +oncie_RelTypeName, "RelTypeName", 62, jl_Object, [oncil_LabelExpressionLeafName, oncie_ElementTypeName, oncie_RelTypeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_RelTypeName_name), "$position", $rt_wrapFunction0(oncie_RelTypeName_position), "$productPrefix", $rt_wrapFunction0(oncie_RelTypeName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RelTypeName_productArity), "$productElement", $rt_wrapFunction1(oncie_RelTypeName_productElement), "$productIterator", $rt_wrapFunction0(oncie_RelTypeName_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_RelTypeName_hashCode), "$toString", $rt_wrapFunction0(oncie_RelTypeName_toString), "$equals", $rt_wrapFunction1(oncie_RelTypeName_equals), "$dup", $rt_wrapFunction1(oncie_RelTypeName_dup)], +oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0_apply0)], +oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1_apply)], +oncil_LabelExpression$Disjunctions$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +oncil_BinaryLabelExpression, 0, jl_Object, [oncil_LabelExpression], 3, 3, 0, 0, 0, +oncil_LabelExpression$ColonDisjunction, "LabelExpression$ColonDisjunction", 61, jl_Object, [oncil_BinaryLabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"ColonDisjunction"], 0, ["$flatten0", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_flatten), "$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsGpmSpecificRelTypeExpression), +"$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsMatchSpecificLabelExpression), "$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_folder0), +"$folder0", $rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_folder), "$lhs1", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_lhs), "$rhs1", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_rhs), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_position), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_productArity), +"$productElement", $rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_dup), "$mapExpressions", +$rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_mapExpressions)], +oncil_LabelExpression$ColonDisjunction$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +oncil_LabelExpression$Conjunctions$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +oncil_LabelExpression$ColonConjunction, "LabelExpression$ColonConjunction", 61, jl_Object, [oncil_BinaryLabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"ColonConjunction"], 0, ["$flatten0", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_flatten), "$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsGpmSpecificRelTypeExpression), +"$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsMatchSpecificLabelExpression), "$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_folder), +"$folder0", $rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_folder0), "$lhs1", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_lhs), "$rhs1", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_rhs), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_position), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_productArity), +"$productElement", $rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_dup), "$mapExpressions", +$rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_mapExpressions)], +oncil_LabelExpression$ColonConjunction$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +oncil_LabelExpression$Negation, "LabelExpression$Negation", 61, jl_Object, [oncil_LabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"Negation"], 0, ["$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsGpmSpecificRelTypeExpression), "$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsMatchSpecificLabelExpression), +"$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Negation_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Negation_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Negation_folder0), "$folder0", $rt_wrapFunction1(oncil_LabelExpression$Negation_folder), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsIs), +"$position", $rt_wrapFunction0(oncil_LabelExpression$Negation_position), "$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Negation_flatten), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Negation_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Negation_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Negation_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Negation_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Negation_hashCode), +"$toString", $rt_wrapFunction0(oncil_LabelExpression$Negation_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$Negation_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Negation_dup), "$mapExpressions", $rt_wrapFunction1(oncil_LabelExpression$Negation_mapExpressions)], +oncil_LabelExpression$Negation$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_00, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0_apply0)], +oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_00, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0_apply0)], +oncil_LabelExpression$Wildcard, "LabelExpression$Wildcard", 61, jl_Object, [oncil_LabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"Wildcard"], 0, ["$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsGpmSpecificRelTypeExpression), "$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsMatchSpecificLabelExpression), +"$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_folder0), "$folder0", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_folder), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsIs), +"$position", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_position), "$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_flatten), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_hashCode), +"$toString", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_dup), "$mapExpressions", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_mapExpressions)], +oncil_LabelExpression$Wildcard$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +oncil_LabelExpression$Leaf, "LabelExpression$Leaf", 61, jl_Object, [oncil_LabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"Leaf"], 0, ["$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsGpmSpecificRelTypeExpression), "$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsMatchSpecificLabelExpression), +"$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Leaf_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Leaf_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Leaf_folder0), "$folder0", $rt_wrapFunction1(oncil_LabelExpression$Leaf_folder), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$Leaf_position), +"$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Leaf_flatten), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Leaf_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Leaf_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Leaf_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Leaf_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Leaf_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$Leaf_toString), +"$equals", $rt_wrapFunction1(oncil_LabelExpression$Leaf_equals), "$mapExpressions", $rt_wrapFunction1(oncil_LabelExpression$Leaf_mapExpressions), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Leaf_dup)], +oncil_LabelExpression$Leaf$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, +oncil_LabelExpression$DynamicLeaf, "LabelExpression$DynamicLeaf", 61, jl_Object, [oncil_LabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"DynamicLeaf"], 0, ["$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsGpmSpecificRelTypeExpression), "$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsMatchSpecificLabelExpression), +"$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_folder), "$folder0", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_folder0), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsIs), +"$position", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_position), "$flatten0", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_flatten), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_hashCode), +"$toString", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_equals), "$mapExpressions", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_mapExpressions), "$dup", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_dup)], +oncil_LabelExpression$DynamicLeaf$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, +oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0_apply)], +oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0_apply)], +oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0_apply)], +oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_00, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0_apply0)], +oncie_Ands$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0_apply0)], +oncie_NormalForm, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_NFCNormalForm$, "NFCNormalForm$", 62, jl_Object, [oncie_NormalForm, s_Product, ji_Serializable], 4, 3, 0, oncie_NFCNormalForm$_$callClinit, ["$description", $rt_wrapFunction0(oncie_NFCNormalForm$_description), "$toString", $rt_wrapFunction0(oncie_NFCNormalForm$_toString), "$formName", $rt_wrapFunction0(oncie_NFCNormalForm$_formName), "$productArity", $rt_wrapFunction0(oncie_NFCNormalForm$_productArity), "$productElement", $rt_wrapFunction1(oncie_NFCNormalForm$_productElement), "$productIterator", $rt_wrapFunction0(oncie_NFCNormalForm$_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_NFCNormalForm$_hashCode)], +oncie_NFDNormalForm$, "NFDNormalForm$", 62, jl_Object, [oncie_NormalForm, s_Product, ji_Serializable], 4, 3, 0, oncie_NFDNormalForm$_$callClinit, ["$description", $rt_wrapFunction0(oncie_NFDNormalForm$_description), "$toString", $rt_wrapFunction0(oncie_NFDNormalForm$_toString), "$formName", $rt_wrapFunction0(oncie_NFDNormalForm$_formName), "$productArity", $rt_wrapFunction0(oncie_NFDNormalForm$_productArity), "$productElement", $rt_wrapFunction1(oncie_NFDNormalForm$_productElement), "$productIterator", $rt_wrapFunction0(oncie_NFDNormalForm$_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_NFDNormalForm$_hashCode)], +oncie_NFKCNormalForm$, "NFKCNormalForm$", 62, jl_Object, [oncie_NormalForm, s_Product, ji_Serializable], 4, 3, 0, oncie_NFKCNormalForm$_$callClinit, ["$description", $rt_wrapFunction0(oncie_NFKCNormalForm$_description), "$toString", $rt_wrapFunction0(oncie_NFKCNormalForm$_toString), "$formName", $rt_wrapFunction0(oncie_NFKCNormalForm$_formName0), "$productArity", $rt_wrapFunction0(oncie_NFKCNormalForm$_productArity), "$productElement", $rt_wrapFunction1(oncie_NFKCNormalForm$_productElement), "$productIterator", +$rt_wrapFunction0(oncie_NFKCNormalForm$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NFKCNormalForm$_hashCode)], +oncie_NFKDNormalForm$, "NFKDNormalForm$", 62, jl_Object, [oncie_NormalForm, s_Product, ji_Serializable], 4, 3, 0, oncie_NFKDNormalForm$_$callClinit, ["$description", $rt_wrapFunction0(oncie_NFKDNormalForm$_description), "$toString", $rt_wrapFunction0(oncie_NFKDNormalForm$_toString), "$formName", $rt_wrapFunction0(oncie_NFKDNormalForm$_formName0), "$productArity", $rt_wrapFunction0(oncie_NFKDNormalForm$_productArity), "$productElement", $rt_wrapFunction1(oncie_NFKDNormalForm$_productElement), "$productIterator", +$rt_wrapFunction0(oncie_NFKDNormalForm$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NFKDNormalForm$_hashCode)], +oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0_apply0)], +oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0_apply0)], +oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0_apply)], +oncie_UnarySubtract, "UnarySubtract", 62, oncie_Expression, [oncie_LeftUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_UnarySubtract_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_UnarySubtract_isConstantForQuery), "$rhs", $rt_wrapFunction0(oncie_UnarySubtract_rhs), "$position", $rt_wrapFunction0(oncie_UnarySubtract_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_UnarySubtract_canonicalOperatorSymbol), "$productPrefix", +$rt_wrapFunction0(oncie_UnarySubtract_productPrefix), "$productArity", $rt_wrapFunction0(oncie_UnarySubtract_productArity), "$productElement", $rt_wrapFunction1(oncie_UnarySubtract_productElement), "$productIterator", $rt_wrapFunction0(oncie_UnarySubtract_productIterator), "$hashCode", $rt_wrapFunction0(oncie_UnarySubtract_hashCode), "$toString", $rt_wrapFunction0(oncie_UnarySubtract_toString), "$equals", $rt_wrapFunction1(oncie_UnarySubtract_equals)], +oncie_UnaryAdd, "UnaryAdd", 62, oncie_Expression, [oncie_LeftUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_UnaryAdd_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_UnaryAdd_isConstantForQuery), "$rhs", $rt_wrapFunction0(oncie_UnaryAdd_rhs), "$position", $rt_wrapFunction0(oncie_UnaryAdd_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_UnaryAdd_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_UnaryAdd_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_UnaryAdd_productArity), "$productElement", $rt_wrapFunction1(oncie_UnaryAdd_productElement), "$productIterator", $rt_wrapFunction0(oncie_UnaryAdd_productIterator), "$hashCode", $rt_wrapFunction0(oncie_UnaryAdd_hashCode), "$toString", $rt_wrapFunction0(oncie_UnaryAdd_toString), "$equals", $rt_wrapFunction1(oncie_UnaryAdd_equals)], +oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0_apply0)], +oncie_Infinity, "Infinity", 62, oncie_Expression, [oncie_Literal, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_Infinity_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_Infinity_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Infinity_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_Infinity_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_Infinity_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Infinity_productArity), +"$productElement", $rt_wrapFunction1(oncie_Infinity_productElement), "$productIterator", $rt_wrapFunction0(oncie_Infinity_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Infinity_hashCode), "$toString", $rt_wrapFunction0(oncie_Infinity_toString), "$equals", $rt_wrapFunction1(oncie_Infinity_equals)], +oncie_NaN, "NaN", 62, oncie_Expression, [oncie_Literal, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_NaN_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_NaN_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_NaN_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_NaN_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_NaN_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NaN_productArity), "$productElement", $rt_wrapFunction1(oncie_NaN_productElement), +"$productIterator", $rt_wrapFunction0(oncie_NaN_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NaN_hashCode), "$toString", $rt_wrapFunction0(oncie_NaN_toString), "$equals", $rt_wrapFunction1(oncie_NaN_equals)], +oncie_True, "True", 62, oncie_Expression, [oncie_BooleanLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_True_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_True_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_True_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_True_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_True_productPrefix), "$productArity", $rt_wrapFunction0(oncie_True_productArity), "$productElement", +$rt_wrapFunction1(oncie_True_productElement), "$productIterator", $rt_wrapFunction0(oncie_True_productIterator), "$hashCode", $rt_wrapFunction0(oncie_True_hashCode), "$toString", $rt_wrapFunction0(oncie_True_toString), "$equals", $rt_wrapFunction1(oncie_True_equals)], +oncie_ListComprehension$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncie_ReduceExpression, "ReduceExpression", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ReduceExpression_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ReduceExpression_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ReduceExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ReduceExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_ReduceExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_ReduceExpression_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_ReduceExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_ReduceExpression_toString), "$equals", $rt_wrapFunction1(oncie_ReduceExpression_equals)], +oncie_ReduceScope, "ReduceScope", 62, oncie_Expression, [oncie_ScopeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$dependencies", $rt_wrapFunction0(oncie_ReduceScope_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_ReduceScope_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_ReduceScope_position), "$introducedVariables", $rt_wrapFunction0(oncie_ReduceScope_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_ReduceScope_scopeDependencies), "$productPrefix", $rt_wrapFunction0(oncie_ReduceScope_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_ReduceScope_productArity), "$productElement", $rt_wrapFunction1(oncie_ReduceScope_productElement), "$productIterator", $rt_wrapFunction0(oncie_ReduceScope_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ReduceScope_hashCode), "$toString", $rt_wrapFunction0(oncie_ReduceScope_toString), "$equals", $rt_wrapFunction1(oncie_ReduceScope_equals)]]); +$rt_metadata([oncie_IterableExpressionWithInfo, 0, jl_Object, [oncief_FunctionWithName, oncie_TypeSignatures], 3, 3, 0, 0, 0, +oncie_AllIterablePredicate$, 0, jl_Object, [oncie_IterableExpressionWithInfo, ji_Serializable], 4, 3, 0, oncie_AllIterablePredicate$_$callClinit, 0, +oncie_AnyIterablePredicate$, 0, jl_Object, [oncie_IterableExpressionWithInfo, ji_Serializable], 4, 3, 0, oncie_AnyIterablePredicate$_$callClinit, 0, +oncie_NoneIterablePredicate$, 0, jl_Object, [oncie_IterableExpressionWithInfo, ji_Serializable], 4, 3, 0, oncie_NoneIterablePredicate$_$callClinit, 0, +oncie_SingleIterablePredicate$, 0, jl_Object, [oncie_IterableExpressionWithInfo, ji_Serializable], 4, 3, 0, oncie_SingleIterablePredicate$_$callClinit, 0, +oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_154_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_154_0_apply)], +oncie_StringLiteral, "StringLiteral", 62, oncie_Expression, [oncie_Literal, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_StringLiteral_isConstantForQuery), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_StringLiteral_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_StringLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_StringLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_StringLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_StringLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_StringLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_StringLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_StringLiteral_toString), "$equals", $rt_wrapFunction1(oncie_StringLiteral_equals), "$dup", $rt_wrapFunction1(oncie_StringLiteral_dup1), "$dup0", $rt_wrapFunction1(oncie_StringLiteral_dup0), "$position", $rt_wrapFunction0(oncie_StringLiteral_position)], -oncia_AlterLocalDatabaseAlias, "AlterLocalDatabaseAlias", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_withGraph0), -"$requireFeatureSupport", $rt_wrapFunction3(oncia_AlterLocalDatabaseAlias_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_AlterLocalDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_name), "$semanticCheck", -$rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_toString), -"$equals", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_dup), "$withGraph0", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_withGraph)], -onciafn_Neo4jASTFactory$alterLocalDatabaseAlias$lambda$_245_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$alterLocalDatabaseAlias$lambda$_245_0_apply)], -oncia_AlterRemoteDatabaseAlias, "AlterRemoteDatabaseAlias", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_withGraph0), -"$requireFeatureSupport", $rt_wrapFunction3(oncia_AlterRemoteDatabaseAlias_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_AlterRemoteDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_name), -"$semanticCheck", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_toString), -"$equals", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_dup), "$withGraph0", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_withGraph)], -onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_0_apply)], -onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_1_apply)], -onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_2_apply)], -onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$alterRemoteDatabaseAlias$lambda$_246_3_apply)], -oncia_SetOwnPassword, "SetOwnPassword", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_SetOwnPassword_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_SetOwnPassword_useGraph), "$withGraph", $rt_wrapFunction1(oncia_SetOwnPassword_withGraph), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_SetOwnPassword_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_SetOwnPassword_error), "$foldedOver", $rt_wrapFunction0(oncia_SetOwnPassword_foldedOver), "$folder", $rt_wrapFunction0(oncia_SetOwnPassword_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", -$rt_wrapFunction0(oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_SetOwnPassword_position), "$name", $rt_wrapFunction0(oncia_SetOwnPassword_name), "$semanticCheck", $rt_wrapFunction0(oncia_SetOwnPassword_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetOwnPassword_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_SetOwnPassword_productArity), "$productElement", $rt_wrapFunction1(oncia_SetOwnPassword_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetOwnPassword_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetOwnPassword_hashCode), "$toString", $rt_wrapFunction0(oncia_SetOwnPassword_toString), "$equals", $rt_wrapFunction1(oncia_SetOwnPassword_equals), "$dup", $rt_wrapFunction1(oncia_SetOwnPassword_dup), "$withGraph0", $rt_wrapFunction1(oncia_SetOwnPassword_withGraph0)], -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_0_apply)], -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_1_apply)], -onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$alterDatabase$lambda$_235_2_apply)], -oncia_NoOptions$, "NoOptions$", 36, jl_Object, [oncia_Options, s_Product, ji_Serializable], 4, 3, 0, oncia_NoOptions$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_NoOptions$_productArity), "$productElement", $rt_wrapFunction1(oncia_NoOptions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NoOptions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NoOptions$_hashCode), "$toString", $rt_wrapFunction0(oncia_NoOptions$_toString)], -oncia_OptionsMap, "OptionsMap", 36, jl_Object, [oncia_Options, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_OptionsMap_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OptionsMap_productArity), "$productElement", $rt_wrapFunction1(oncia_OptionsMap_productElement), "$productIterator", $rt_wrapFunction0(oncia_OptionsMap_productIterator), "$hashCode", $rt_wrapFunction0(oncia_OptionsMap_hashCode), "$toString", $rt_wrapFunction0(oncia_OptionsMap_toString), "$equals", -$rt_wrapFunction1(oncia_OptionsMap_equals)], -oncia_AlterDatabase, "AlterDatabase", 36, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterDatabase_withGraph), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_AlterDatabase_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_AlterDatabase_error), "$error4", $rt_wrapFunction3(oncia_AlterDatabase_error0), "$foldedOver", $rt_wrapFunction0(oncia_AlterDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", -$rt_wrapFunction0(oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_AlterDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_AlterDatabase_position), "$name", $rt_wrapFunction0(oncia_AlterDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_AlterDatabase_semanticCheck), -"$productPrefix", $rt_wrapFunction0(oncia_AlterDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AlterDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterDatabase_toString), "$equals", $rt_wrapFunction1(oncia_AlterDatabase_equals), "$dup", $rt_wrapFunction1(oncia_AlterDatabase_dup), -"$withGraph0", $rt_wrapFunction1(oncia_AlterDatabase_withGraph0)], -oncia_AlterServer, "AlterServer", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterServer_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterServer_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterServer_withGraph0), "$requireFeatureSupport", $rt_wrapFunction3(oncia_AlterServer_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_AlterServer_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterServer_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterServer_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_AlterServer_position), "$name", $rt_wrapFunction0(oncia_AlterServer_name), "$semanticCheck", $rt_wrapFunction0(oncia_AlterServer_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_AlterServer_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AlterServer_productArity), "$productElement", -$rt_wrapFunction1(oncia_AlterServer_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterServer_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterServer_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterServer_toString), "$equals", $rt_wrapFunction1(oncia_AlterServer_equals), "$dup", $rt_wrapFunction1(oncia_AlterServer_dup), "$withGraph0", $rt_wrapFunction1(oncia_AlterServer_withGraph)], -oncia_AlterUser, "AlterUser", 36, jl_Object, [oncia_WriteAdministrationCommand, oncia_UserAuth, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterUser_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_AlterUser_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_AlterUser_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterUser_folder), "$externalAuths", $rt_wrapFunction0(oncia_AlterUser_externalAuths), "$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths", $rt_wrapFunction0(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq), -"$org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq), -"$org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$newStyleAuth", $rt_wrapFunction0(oncia_AlterUser_newStyleAuth), "$oldStyleAuth", $rt_wrapFunction0(oncia_AlterUser_oldStyleAuth), "$position", $rt_wrapFunction0(oncia_AlterUser_position), "$name", $rt_wrapFunction0(oncia_AlterUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_AlterUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_AlterUser_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_AlterUser_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterUser_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterUser_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterUser_toString), "$equals", $rt_wrapFunction1(oncia_AlterUser_equals), "$dup", $rt_wrapFunction1(oncia_AlterUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_AlterUser_withGraph0)], -oncia_RemoveAuth, "RemoveAuth", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RemoveAuth_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RemoveAuth_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveAuth_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveAuth_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveAuth_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveAuth_toString), "$equals", $rt_wrapFunction1(oncia_RemoveAuth_equals)], -oncia_RemoveHomeDatabaseAction$, "RemoveHomeDatabaseAction$", 36, jl_Object, [oncia_HomeDatabaseAction, s_Product, ji_Serializable], 4, 3, 0, oncia_RemoveHomeDatabaseAction$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_RemoveHomeDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveHomeDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveHomeDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveHomeDatabaseAction$_hashCode), -"$toString", $rt_wrapFunction0(oncia_RemoveHomeDatabaseAction$_toString)], -oncia_DeallocateServers, "DeallocateServers", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DeallocateServers_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DeallocateServers_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_DeallocateServers_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_DeallocateServers_error), "$foldedOver", $rt_wrapFunction0(oncia_DeallocateServers_foldedOver), "$folder", $rt_wrapFunction0(oncia_DeallocateServers_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DeallocateServers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DeallocateServers_position), "$name", $rt_wrapFunction0(oncia_DeallocateServers_name), "$returnColumns", $rt_wrapFunction0(oncia_DeallocateServers_returnColumns), "$semanticCheck", $rt_wrapFunction0(oncia_DeallocateServers_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DeallocateServers_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_DeallocateServers_productArity), "$productElement", $rt_wrapFunction1(oncia_DeallocateServers_productElement), "$productIterator", $rt_wrapFunction0(oncia_DeallocateServers_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DeallocateServers_hashCode), "$toString", $rt_wrapFunction0(oncia_DeallocateServers_toString), "$equals", $rt_wrapFunction1(oncia_DeallocateServers_equals), "$dup", $rt_wrapFunction1(oncia_DeallocateServers_dup), "$withGraph0", $rt_wrapFunction1(oncia_DeallocateServers_withGraph0)], -onciafn_Neo4jASTFactory$deallocateServers$lambda$_230_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$deallocateServers$lambda$_230_0_apply)], -oncia_ReallocateDatabases, "ReallocateDatabases", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ReallocateDatabases_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ReallocateDatabases_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ReallocateDatabases_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_ReallocateDatabases_error), "$foldedOver", $rt_wrapFunction0(oncia_ReallocateDatabases_foldedOver), "$folder", $rt_wrapFunction0(oncia_ReallocateDatabases_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_ReallocateDatabases_position), "$name", $rt_wrapFunction0(oncia_ReallocateDatabases_name), "$returnColumns", $rt_wrapFunction0(oncia_ReallocateDatabases_returnColumns), "$semanticCheck", $rt_wrapFunction0(oncia_ReallocateDatabases_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ReallocateDatabases_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_ReallocateDatabases_productArity), "$productElement", $rt_wrapFunction1(oncia_ReallocateDatabases_productElement), "$productIterator", $rt_wrapFunction0(oncia_ReallocateDatabases_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReallocateDatabases_hashCode), "$toString", $rt_wrapFunction0(oncia_ReallocateDatabases_toString), "$equals", $rt_wrapFunction1(oncia_ReallocateDatabases_equals), "$dup", $rt_wrapFunction1(oncia_ReallocateDatabases_dup), "$withGraph0", $rt_wrapFunction1(oncia_ReallocateDatabases_withGraph0)], -oncia_DatabaseAction, 0, jl_Object, [oncia_AdministrationAction], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_DatabaseAction_name)], -oncia_AllDatabaseAction$, "AllDatabaseAction$", 36, oncia_DatabaseAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllDatabaseAction$_toString)], -oncia_AccessDatabaseAction$, "AccessDatabaseAction$", 36, oncia_DatabaseAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AccessDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AccessDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AccessDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AccessDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AccessDatabaseAction$_toString)], -oncia_StartDatabaseAction$, "StartDatabaseAction$", 36, oncia_DatabaseAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_StartDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_StartDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_StartDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_StartDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_StartDatabaseAction$_toString)], -oncia_StopDatabaseAction$, "StopDatabaseAction$", 36, oncia_DatabaseAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_StopDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_StopDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_StopDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_StopDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_StopDatabaseAction$_toString)], -oncia_IndexManagementAction, 0, oncia_DatabaseAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_IndexManagementAction_name)], -oncia_AllIndexActions$, "AllIndexActions$", 36, oncia_IndexManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllIndexActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllIndexActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllIndexActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllIndexActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllIndexActions$_toString)], -oncia_CreateIndexAction$, "CreateIndexAction$", 36, oncia_IndexManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateIndexAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateIndexAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateIndexAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateIndexAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateIndexAction$_toString)], -oncia_DropIndexAction$, "DropIndexAction$", 36, oncia_IndexManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropIndexAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropIndexAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropIndexAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropIndexAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropIndexAction$_toString)], -oncia_ShowIndexAction$, "ShowIndexAction$", 36, oncia_IndexManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowIndexAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowIndexAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowIndexAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowIndexAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowIndexAction$_toString)], -oncia_ConstraintManagementAction, 0, oncia_DatabaseAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_ConstraintManagementAction_name)], -oncia_AllConstraintActions$, "AllConstraintActions$", 36, oncia_ConstraintManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllConstraintActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllConstraintActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllConstraintActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllConstraintActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllConstraintActions$_toString)], -oncia_CreateConstraintAction$, "CreateConstraintAction$", 36, oncia_ConstraintManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateConstraintAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateConstraintAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateConstraintAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateConstraintAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateConstraintAction$_toString)], -oncia_DropConstraintAction$, "DropConstraintAction$", 36, oncia_ConstraintManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropConstraintAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropConstraintAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropConstraintAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropConstraintAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropConstraintAction$_toString)], -oncia_ShowConstraintAction$, "ShowConstraintAction$", 36, oncia_ConstraintManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowConstraintAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowConstraintAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowConstraintAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowConstraintAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowConstraintAction$_toString)], -oncia_NameManagementAction, 0, oncia_DatabaseAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_NameManagementAction_name)], -oncia_AllTokenActions$, "AllTokenActions$", 36, oncia_NameManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllTokenActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllTokenActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllTokenActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllTokenActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllTokenActions$_toString)], -oncia_CreatePropertyKeyAction$, "CreatePropertyKeyAction$", 36, oncia_NameManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreatePropertyKeyAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreatePropertyKeyAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreatePropertyKeyAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreatePropertyKeyAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreatePropertyKeyAction$_toString)], -oncia_CreateNodeLabelAction$, "CreateNodeLabelAction$", 36, oncia_NameManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateNodeLabelAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateNodeLabelAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateNodeLabelAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateNodeLabelAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateNodeLabelAction$_toString)], -oncia_CreateRelationshipTypeAction$, "CreateRelationshipTypeAction$", 36, oncia_NameManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateRelationshipTypeAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateRelationshipTypeAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateRelationshipTypeAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateRelationshipTypeAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateRelationshipTypeAction$_toString)]]); -$rt_metadata([oncia_TransactionManagementAction, 0, oncia_DatabaseAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_TransactionManagementAction_name)], -oncia_AllTransactionActions$, "AllTransactionActions$", 36, oncia_TransactionManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllTransactionActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllTransactionActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllTransactionActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllTransactionActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllTransactionActions$_toString)], -oncia_ShowTransactionAction$, "ShowTransactionAction$", 36, oncia_TransactionManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowTransactionAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowTransactionAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowTransactionAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowTransactionAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowTransactionAction$_toString)], -oncia_TerminateTransactionAction$, "TerminateTransactionAction$", 36, oncia_TransactionManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_TerminateTransactionAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_TerminateTransactionAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_TerminateTransactionAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TerminateTransactionAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_TerminateTransactionAction$_toString)], -oncia_DbmsAction, 0, jl_Object, [oncia_AdministrationAction], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_DbmsAction_name)], -oncia_AllDbmsAction$, "AllDbmsAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllDbmsAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDbmsAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDbmsAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDbmsAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllDbmsAction$_toString)], -oncia_UserManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_UserManagementAction_name)], -oncia_AllUserActions$, "AllUserActions$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllUserActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllUserActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllUserActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllUserActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllUserActions$_toString)], -oncia_ShowUserAction$, "ShowUserAction$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowUserAction$_toString)], -oncia_AlterUserAction$, "AlterUserAction$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AlterUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterUserAction$_toString)], -oncia_CreateUserAction$, "CreateUserAction$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateUserAction$_toString)], -oncia_DropUserAction$, "DropUserAction$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropUserAction$_toString)], -oncia_RoleManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_RoleManagementAction_name)], -oncia_RenameUserAction$, "RenameUserAction$", 36, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RenameUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RenameUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameUserAction$_toString)], -oncia_SetPasswordsAction$, "SetPasswordsAction$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetPasswordsAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetPasswordsAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetPasswordsAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetPasswordsAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetPasswordsAction$_toString)], -oncia_SetAuthAction$, "SetAuthAction$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetAuthAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetAuthAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetAuthAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetAuthAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetAuthAction$_toString)], -oncia_SetUserStatusAction$, "SetUserStatusAction$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetUserStatusAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetUserStatusAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetUserStatusAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetUserStatusAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetUserStatusAction$_toString)], -oncia_SetUserHomeDatabaseAction$, "SetUserHomeDatabaseAction$", 36, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetUserHomeDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetUserHomeDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetUserHomeDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetUserHomeDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetUserHomeDatabaseAction$_toString)], -oncia_ImpersonateUserAction$, "ImpersonateUserAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ImpersonateUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ImpersonateUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ImpersonateUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ImpersonateUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ImpersonateUserAction$_toString)], -oncia_AllRoleActions$, "AllRoleActions$", 36, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllRoleActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllRoleActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllRoleActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllRoleActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllRoleActions$_toString)], -oncia_ShowRoleAction$, "ShowRoleAction$", 36, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowRoleAction$_toString)], -oncia_CreateRoleAction$, "CreateRoleAction$", 36, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateRoleAction$_toString)], -oncia_DropRoleAction$, "DropRoleAction$", 36, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropRoleAction$_toString)], -oncia_RenameRoleAction$, "RenameRoleAction$", 36, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RenameRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RenameRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameRoleAction$_toString)], -oncia_AssignRoleAction$, "AssignRoleAction$", 36, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AssignRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AssignRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AssignRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AssignRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AssignRoleAction$_toString)], -oncia_RemoveRoleAction$, "RemoveRoleAction$", 36, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RemoveRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveRoleAction$_toString)], -oncia_DatabaseManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_DatabaseManagementAction_name)], -oncia_AllDatabaseManagementActions$, "AllDatabaseManagementActions$", 36, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllDatabaseManagementActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDatabaseManagementActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDatabaseManagementActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDatabaseManagementActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllDatabaseManagementActions$_toString)], -oncia_CreateDatabaseAction$, "CreateDatabaseAction$", 36, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateDatabaseAction$_toString)], -oncia_DropDatabaseAction$, "DropDatabaseAction$", 36, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropDatabaseAction$_toString)], -oncia_CompositeDatabaseManagementActions$, "CompositeDatabaseManagementActions$", 36, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CompositeDatabaseManagementActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_CompositeDatabaseManagementActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CompositeDatabaseManagementActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CompositeDatabaseManagementActions$_hashCode), -"$toString", $rt_wrapFunction0(oncia_CompositeDatabaseManagementActions$_toString)], -oncia_CreateCompositeDatabaseAction$, "CreateCompositeDatabaseAction$", 36, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateCompositeDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateCompositeDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateCompositeDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateCompositeDatabaseAction$_hashCode), "$toString", -$rt_wrapFunction0(oncia_CreateCompositeDatabaseAction$_toString)], -oncia_DropCompositeDatabaseAction$, "DropCompositeDatabaseAction$", 36, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropCompositeDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropCompositeDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropCompositeDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropCompositeDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropCompositeDatabaseAction$_toString)], -oncia_AlterDatabaseAction$, "AlterDatabaseAction$", 36, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AlterDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterDatabaseAction$_toString)], -oncia_SetDatabaseAccessAction$, "SetDatabaseAccessAction$", 36, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetDatabaseAccessAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetDatabaseAccessAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetDatabaseAccessAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetDatabaseAccessAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetDatabaseAccessAction$_toString)], -oncia_AliasManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_AliasManagementAction_name)], -oncia_AllAliasManagementActions$, "AllAliasManagementActions$", 36, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllAliasManagementActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllAliasManagementActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllAliasManagementActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllAliasManagementActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllAliasManagementActions$_toString)], -oncia_CreateAliasAction$, "CreateAliasAction$", 36, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateAliasAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateAliasAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateAliasAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateAliasAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateAliasAction$_toString)], -oncia_DropAliasAction$, "DropAliasAction$", 36, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropAliasAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropAliasAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropAliasAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropAliasAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropAliasAction$_toString)], -oncia_AlterAliasAction$, "AlterAliasAction$", 36, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AlterAliasAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterAliasAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterAliasAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterAliasAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterAliasAction$_toString)], -oncia_ShowAliasAction$, "ShowAliasAction$", 36, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowAliasAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowAliasAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowAliasAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowAliasAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowAliasAction$_toString)], -oncia_PrivilegeManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_PrivilegeManagementAction_name)], -oncia_AllPrivilegeActions$, "AllPrivilegeActions$", 36, oncia_PrivilegeManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllPrivilegeActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllPrivilegeActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllPrivilegeActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllPrivilegeActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllPrivilegeActions$_toString)], -oncia_AssignPrivilegeAction$, "AssignPrivilegeAction$", 36, oncia_PrivilegeManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AssignPrivilegeAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AssignPrivilegeAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AssignPrivilegeAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AssignPrivilegeAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AssignPrivilegeAction$_toString)], -oncia_RemovePrivilegeAction$, "RemovePrivilegeAction$", 36, oncia_PrivilegeManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RemovePrivilegeAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RemovePrivilegeAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemovePrivilegeAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemovePrivilegeAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RemovePrivilegeAction$_toString)], -oncia_ShowPrivilegeAction$, "ShowPrivilegeAction$", 36, oncia_PrivilegeManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowPrivilegeAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowPrivilegeAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowPrivilegeAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowPrivilegeAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowPrivilegeAction$_toString)], -oncia_ExecuteFunctionAction$, "ExecuteFunctionAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteFunctionAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteFunctionAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteFunctionAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteFunctionAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteFunctionAction$_toString)], -oncia_ExecuteBoostedFunctionAction$, "ExecuteBoostedFunctionAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteBoostedFunctionAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteBoostedFunctionAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteBoostedFunctionAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteBoostedFunctionAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteBoostedFunctionAction$_toString)], -oncia_ExecuteProcedureAction$, "ExecuteProcedureAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteProcedureAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteProcedureAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteProcedureAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteProcedureAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteProcedureAction$_toString)], -oncia_ExecuteBoostedProcedureAction$, "ExecuteBoostedProcedureAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteBoostedProcedureAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteBoostedProcedureAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteBoostedProcedureAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteBoostedProcedureAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteBoostedProcedureAction$_toString)]]); -$rt_metadata([oncia_ExecuteAdminProcedureAction$, "ExecuteAdminProcedureAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteAdminProcedureAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteAdminProcedureAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteAdminProcedureAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteAdminProcedureAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteAdminProcedureAction$_toString)], -oncia_ShowServerAction$, "ShowServerAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowServerAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowServerAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowServerAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowServerAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowServerAction$_toString)], -oncia_ServerManagementAction$, "ServerManagementAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ServerManagementAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ServerManagementAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ServerManagementAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ServerManagementAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ServerManagementAction$_toString)], -oncia_ShowSettingAction$, "ShowSettingAction$", 36, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowSettingAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowSettingAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowSettingAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowSettingAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowSettingAction$_toString)], -oncia_GraphAction, 0, jl_Object, [oncia_AdministrationAction], 1, 3, 0, 0, 0, -oncia_AllGraphAction$, "AllGraphAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllGraphAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllGraphAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllGraphAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllGraphAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllGraphAction$_toString)], -oncia_WriteAction$, "WriteAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_WriteAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_WriteAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_WriteAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_WriteAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_WriteAction$_toString)], -oncia_CreateElementAction$, "CreateElementAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateElementAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateElementAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateElementAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateElementAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateElementAction$_toString)], -oncia_MergeAdminAction$, "MergeAdminAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_MergeAdminAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_MergeAdminAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_MergeAdminAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_MergeAdminAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_MergeAdminAction$_toString)], -oncia_DeleteElementAction$, "DeleteElementAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DeleteElementAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DeleteElementAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DeleteElementAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DeleteElementAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DeleteElementAction$_toString)], -oncia_SetLabelAction$, "SetLabelAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetLabelAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetLabelAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetLabelAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetLabelAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetLabelAction$_toString)], -oncia_RemoveLabelAction$, "RemoveLabelAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RemoveLabelAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveLabelAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveLabelAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveLabelAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveLabelAction$_toString)], -oncia_SetPropertyAction$, "SetPropertyAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetPropertyAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetPropertyAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetPropertyAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetPropertyAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetPropertyAction$_toString)], -oncia_MatchAction$, "MatchAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_MatchAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_MatchAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_MatchAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_MatchAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_MatchAction$_toString)], -oncia_ReadAction$, "ReadAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ReadAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ReadAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ReadAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReadAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ReadAction$_toString)], -oncia_TraverseAction$, "TraverseAction$", 36, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_TraverseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_TraverseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_TraverseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TraverseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_TraverseAction$_toString)], -oncia_PrivilegeType, 0, jl_Object, [], 1, 3, 0, 0, 0, -oncia_DbmsPrivilege, "DbmsPrivilege", 36, oncia_PrivilegeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_DbmsPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DbmsPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_DbmsPrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_DbmsPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DbmsPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_DbmsPrivilege_toString), -"$equals", $rt_wrapFunction1(oncia_DbmsPrivilege_equals)], -oncia_DropDatabaseAlias, "DropDatabaseAlias", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropDatabaseAlias_withGraph), -"$requireFeatureSupport", $rt_wrapFunction3(oncia_DropDatabaseAlias_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_DropDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_DropDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", -$rt_wrapFunction0(oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DropDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_DropDatabaseAlias_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropDatabaseAlias_semanticCheck), "$productPrefix", -$rt_wrapFunction0(oncia_DropDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_DropDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_DropDatabaseAlias_toString), "$equals", $rt_wrapFunction1(oncia_DropDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_DropDatabaseAlias_dup), -"$withGraph0", $rt_wrapFunction1(oncia_DropDatabaseAlias_withGraph0)], -oncia_DropDatabaseAdditionalAction, 0, jl_Object, [], 1, 3, 0, 0, 0, -oncia_DestroyData$, "DestroyData$", 36, oncia_DropDatabaseAdditionalAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DestroyData$_productArity), "$productElement", $rt_wrapFunction1(oncia_DestroyData$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DestroyData$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DestroyData$_hashCode), "$toString", $rt_wrapFunction0(oncia_DestroyData$_toString)], -oncia_DumpData$, "DumpData$", 36, oncia_DropDatabaseAdditionalAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DumpData$_productArity), "$productElement", $rt_wrapFunction1(oncia_DumpData$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DumpData$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DumpData$_hashCode), "$toString", $rt_wrapFunction0(oncia_DumpData$_toString)], -oncia_DropDatabaseAliasAction, 0, jl_Object, [], 1, 3, 0, 0, 0, -oncia_Restrict$, "Restrict$", 36, oncia_DropDatabaseAliasAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_Restrict$_productArity), "$productElement", $rt_wrapFunction1(oncia_Restrict$_productElement), "$productIterator", $rt_wrapFunction0(oncia_Restrict$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Restrict$_hashCode), "$toString", $rt_wrapFunction0(oncia_Restrict$_toString)], -oncia_CascadeAliases$, "CascadeAliases$", 36, oncia_DropDatabaseAliasAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CascadeAliases$_productArity), "$productElement", $rt_wrapFunction1(oncia_CascadeAliases$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CascadeAliases$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CascadeAliases$_hashCode), "$toString", $rt_wrapFunction0(oncia_CascadeAliases$_toString)], -oncia_DropDatabase, "DropDatabase", 36, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropDatabase_withGraph0), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_DropDatabase_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_DropDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_DropDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", -$rt_wrapFunction0(oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_DropDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_DropDatabase_position), "$name", $rt_wrapFunction0(oncia_DropDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropDatabase_semanticCheck), -"$productPrefix", $rt_wrapFunction0(oncia_DropDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_DropDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_DropDatabase_toString), "$equals", $rt_wrapFunction1(oncia_DropDatabase_equals), "$dup", $rt_wrapFunction1(oncia_DropDatabase_dup), -"$withGraph0", $rt_wrapFunction1(oncia_DropDatabase_withGraph)], +oncie_FunctionInvocation$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncie_FunctionInvocation$_$callClinit, 0, +oncipcaf_ParserTrimSpecification, "ParserTrimSpecification", 44, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +oncief_Trim$, "Trim$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Trim$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Trim$_name), "$productArity", $rt_wrapFunction0(oncief_Trim$_productArity), "$productElement", $rt_wrapFunction1(oncief_Trim$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Trim$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Trim$_hashCode), "$toString", $rt_wrapFunction0(oncief_Trim$_toString), "$signatures", $rt_wrapFunction0(oncief_Trim$_signatures0)], +oncie_ShortestPathExpression, "ShortestPathExpression", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ShortestPathExpression_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ShortestPathExpression_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ShortestPathExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ShortestPathExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_ShortestPathExpression_productElement), +"$productIterator", $rt_wrapFunction0(oncie_ShortestPathExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ShortestPathExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_ShortestPathExpression_toString), "$equals", $rt_wrapFunction1(oncie_ShortestPathExpression_equals)], +oncie_MapProjection, "MapProjection", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_MapProjection_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_MapProjection_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_MapProjection_productPrefix), "$productArity", $rt_wrapFunction0(oncie_MapProjection_productArity), "$productElement", $rt_wrapFunction1(oncie_MapProjection_productElement), "$productIterator", $rt_wrapFunction0(oncie_MapProjection_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_MapProjection_hashCode), "$toString", $rt_wrapFunction0(oncie_MapProjection_toString), "$equals", $rt_wrapFunction1(oncie_MapProjection_equals)], +oncie_MapProjectionElement, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_LiteralEntry, "LiteralEntry", 62, oncie_Expression, [oncie_MapProjectionElement, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_LiteralEntry_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_LiteralEntry_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_LiteralEntry_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LiteralEntry_productArity), "$productElement", $rt_wrapFunction1(oncie_LiteralEntry_productElement), "$productIterator", $rt_wrapFunction0(oncie_LiteralEntry_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_LiteralEntry_hashCode), "$toString", $rt_wrapFunction0(oncie_LiteralEntry_toString), "$equals", $rt_wrapFunction1(oncie_LiteralEntry_equals)], +oncie_VariableSelector, "VariableSelector", 62, oncie_Expression, [oncie_MapProjectionElement, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_VariableSelector_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_VariableSelector_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_VariableSelector_productPrefix), "$productArity", $rt_wrapFunction0(oncie_VariableSelector_productArity), "$productElement", $rt_wrapFunction1(oncie_VariableSelector_productElement), "$productIterator", +$rt_wrapFunction0(oncie_VariableSelector_productIterator), "$hashCode", $rt_wrapFunction0(oncie_VariableSelector_hashCode), "$toString", $rt_wrapFunction0(oncie_VariableSelector_toString), "$equals", $rt_wrapFunction1(oncie_VariableSelector_equals)], +oncie_AllPropertiesSelector, "AllPropertiesSelector", 62, oncie_Expression, [oncie_MapProjectionElement, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_AllPropertiesSelector_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_AllPropertiesSelector_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_AllPropertiesSelector_productPrefix), "$productArity", $rt_wrapFunction0(oncie_AllPropertiesSelector_productArity), "$productElement", $rt_wrapFunction1(oncie_AllPropertiesSelector_productElement), +"$productIterator", $rt_wrapFunction0(oncie_AllPropertiesSelector_productIterator), "$hashCode", $rt_wrapFunction0(oncie_AllPropertiesSelector_hashCode), "$toString", $rt_wrapFunction0(oncie_AllPropertiesSelector_toString), "$equals", $rt_wrapFunction1(oncie_AllPropertiesSelector_equals)], +oncie_PropertySelector, "PropertySelector", 62, oncie_Expression, [oncie_MapProjectionElement, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_PropertySelector_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_PropertySelector_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_PropertySelector_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PropertySelector_productArity), "$productElement", $rt_wrapFunction1(oncie_PropertySelector_productElement), "$productIterator", +$rt_wrapFunction0(oncie_PropertySelector_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PropertySelector_hashCode), "$toString", $rt_wrapFunction0(oncie_PropertySelector_toString), "$equals", $rt_wrapFunction1(oncie_PropertySelector_equals)], +oncie_DoubleLiteral, 0, jl_Object, [oncie_NumberLiteral], 3, 3, 0, 0, 0, +oncie_DecimalDoubleLiteral, "DecimalDoubleLiteral", 62, oncie_Expression, [oncie_DoubleLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_isConstantForQuery), "$stringVal", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_asSensitiveLiteral), +"$productPrefix", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_DecimalDoubleLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_toString), "$equals", $rt_wrapFunction1(oncie_DecimalDoubleLiteral_equals)], +oncie_SignedIntegerLiteral, 0, jl_Object, [oncie_IntegerLiteral], 3, 3, 0, 0, 0, +oncie_SignedDecimalIntegerLiteral, "SignedDecimalIntegerLiteral", 62, oncie_DecimalIntegerLiteral, [oncie_SignedIntegerLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$stringVal", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_productPrefix), "$productArity", +$rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_SignedDecimalIntegerLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_toString), "$equals", $rt_wrapFunction1(oncie_SignedDecimalIntegerLiteral_equals)], +oncie_HexIntegerLiteral, 0, oncie_Expression, [oncie_IntegerLiteral], 1, 3, 0, 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_HexIntegerLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_HexIntegerLiteral_isConstantForQuery), "$value1", $rt_wrapFunction0(oncie_HexIntegerLiteral_value)], +oncie_SignedHexIntegerLiteral, "SignedHexIntegerLiteral", 62, oncie_HexIntegerLiteral, [oncie_SignedIntegerLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$stringVal", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_productArity), +"$productElement", $rt_wrapFunction1(oncie_SignedHexIntegerLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_toString), "$equals", $rt_wrapFunction1(oncie_SignedHexIntegerLiteral_equals)], +oncie_OctalIntegerLiteral, 0, oncie_Expression, [oncie_IntegerLiteral], 1, 3, 0, 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_OctalIntegerLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_OctalIntegerLiteral_isConstantForQuery), "$value1", $rt_wrapFunction0(oncie_OctalIntegerLiteral_value)], +oncie_SignedOctalIntegerLiteral, "SignedOctalIntegerLiteral", 62, oncie_OctalIntegerLiteral, [oncie_SignedIntegerLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$stringVal", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_productArity), +"$productElement", $rt_wrapFunction1(oncie_SignedOctalIntegerLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_toString), "$equals", $rt_wrapFunction1(oncie_SignedOctalIntegerLiteral_equals)], +oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0_apply0)], +oncie_FunctionInvocation$ArgumentOrder, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_FunctionInvocation$ArgumentUnordered$, "FunctionInvocation$ArgumentUnordered$", 62, jl_Object, [oncie_FunctionInvocation$ArgumentOrder, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncie_FunctionInvocation$ArgumentUnordered$_productArity), "$productElement", $rt_wrapFunction1(oncie_FunctionInvocation$ArgumentUnordered$_productElement), "$productIterator", $rt_wrapFunction0(oncie_FunctionInvocation$ArgumentUnordered$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_FunctionInvocation$ArgumentUnordered$_hashCode), +"$toString", $rt_wrapFunction0(oncie_FunctionInvocation$ArgumentUnordered$_toString)], +oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0_apply)], +oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0_accept0)], +oncia_Options, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_OptionsMap, "OptionsMap", 35, jl_Object, [oncia_Options, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_OptionsMap_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OptionsMap_productArity), "$productElement", $rt_wrapFunction1(oncia_OptionsMap_productElement), "$productIterator", $rt_wrapFunction0(oncia_OptionsMap_productIterator), "$hashCode", $rt_wrapFunction0(oncia_OptionsMap_hashCode), "$toString", $rt_wrapFunction0(oncia_OptionsMap_toString), "$equals", +$rt_wrapFunction1(oncia_OptionsMap_equals)], +oncia_OptionsParam, "OptionsParam", 35, jl_Object, [oncia_Options, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_OptionsParam_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OptionsParam_productArity), "$productElement", $rt_wrapFunction1(oncia_OptionsParam_productElement), "$productIterator", $rt_wrapFunction0(oncia_OptionsParam_productIterator), "$hashCode", $rt_wrapFunction0(oncia_OptionsParam_hashCode), "$toString", $rt_wrapFunction0(oncia_OptionsParam_toString), +"$equals", $rt_wrapFunction1(oncia_OptionsParam_equals)], +oncipvaf_DdlShowBuilder$ShowWrapper, "DdlShowBuilder$ShowWrapper", 51, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productPrefix), "$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_hashCode0), +"$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_toString), "$equals", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper_equals0)], +s_Function7, 0, jl_Object, [], 3, 3, 0, 0, 0, +sr_AbstractFunction7, 0, jl_Object, [s_Function7], 1, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$, 0, sr_AbstractFunction7, [ji_Serializable], 0, 3, 0, 0, 0, +oncia_ShowIndexType, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_AllIndexes$, "AllIndexes$", 35, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, oncia_AllIndexes$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_AllIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_AllIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllIndexes$_toString)], +oncia_FulltextIndexes$, "FulltextIndexes$", 35, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_FulltextIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_FulltextIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_FulltextIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_FulltextIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_FulltextIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_FulltextIndexes$_toString)], +oncia_LookupIndexes$, "LookupIndexes$", 35, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_LookupIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_LookupIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_LookupIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_LookupIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LookupIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_LookupIndexes$_toString)], +oncia_PointIndexes$, "PointIndexes$", 35, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_PointIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_PointIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_PointIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_PointIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PointIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_PointIndexes$_toString)], +oncia_RangeIndexes$, "RangeIndexes$", 35, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RangeIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RangeIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_RangeIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RangeIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RangeIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_RangeIndexes$_toString)], +oncia_TextIndexes$, "TextIndexes$", 35, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_TextIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_TextIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_TextIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_TextIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TextIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_TextIndexes$_toString)], +oncia_VectorIndexes$, "VectorIndexes$", 35, jl_Object, [oncia_ShowIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_VectorIndexes$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_VectorIndexes$_productArity), "$productElement", $rt_wrapFunction1(oncia_VectorIndexes$_productElement), "$productIterator", $rt_wrapFunction0(oncia_VectorIndexes$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_VectorIndexes$_hashCode), "$toString", $rt_wrapFunction0(oncia_VectorIndexes$_toString)], +oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0_apply)], +oncia_ShowConstraintType, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_NodeUniqueConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_RelUniqueConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_RelKeyConstraints$, "RelKeyConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelKeyConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelKeyConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelKeyConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelKeyConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelKeyConstraints$_hashCode), "$toString", +$rt_wrapFunction0(oncia_RelKeyConstraints$_toString)]]); +$rt_metadata([oncia_KeyConstraints$, "KeyConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_KeyConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_KeyConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_KeyConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_KeyConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_KeyConstraints$_hashCode), "$toString", +$rt_wrapFunction0(oncia_KeyConstraints$_toString)], +oncia_RelAllExistsConstraints$, "RelAllExistsConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelAllExistsConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelAllExistsConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelAllExistsConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelAllExistsConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelAllExistsConstraints$_hashCode), +"$toString", $rt_wrapFunction0(oncia_RelAllExistsConstraints$_toString)], +oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0_apply)], +oncia_NodePropTypeConstraints$, "NodePropTypeConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropTypeConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_hashCode), +"$toString", $rt_wrapFunction0(oncia_NodePropTypeConstraints$_toString)], +oncia_RelPropTypeConstraints$, "RelPropTypeConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelPropTypeConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_hashCode), +"$toString", $rt_wrapFunction0(oncia_RelPropTypeConstraints$_toString)], +oncia_PropTypeConstraints$, "PropTypeConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_PropTypeConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_PropTypeConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_PropTypeConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_PropTypeConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PropTypeConstraints$_hashCode), +"$toString", $rt_wrapFunction0(oncia_PropTypeConstraints$_toString)], +oncia_UniqueConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_NodeAllExistsConstraints$, "NodeAllExistsConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeAllExistsConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodeAllExistsConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeAllExistsConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeAllExistsConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodeAllExistsConstraints$_hashCode), +"$toString", $rt_wrapFunction0(oncia_NodeAllExistsConstraints$_toString)], +oncia_NodePropExistsConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_RelPropExistsConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_AllExistsConstraints$, "AllExistsConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_AllExistsConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_AllExistsConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllExistsConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllExistsConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllExistsConstraints$_hashCode), +"$toString", $rt_wrapFunction0(oncia_AllExistsConstraints$_toString)], +oncia_PropExistsConstraints$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_AllConstraints$, "AllConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_AllConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_AllConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllConstraints$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllConstraints$_toString)], +oncia_NodeKeyConstraints$, "NodeKeyConstraints$", 35, jl_Object, [oncia_ShowConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeKeyConstraints$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodeKeyConstraints$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeKeyConstraints$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeKeyConstraints$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodeKeyConstraints$_hashCode), +"$toString", $rt_wrapFunction0(oncia_NodeKeyConstraints$_toString)], +oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0_apply)], +oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0_apply)], +oncia_ShowFunctionType, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_ExecutableBy, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_CurrentUser$, "CurrentUser$", 35, jl_Object, [oncia_ExecutableBy, s_Product, ji_Serializable], 4, 3, 0, oncia_CurrentUser$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_CurrentUser$_productArity), "$productElement", $rt_wrapFunction1(oncia_CurrentUser$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CurrentUser$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CurrentUser$_hashCode), "$toString", $rt_wrapFunction0(oncia_CurrentUser$_toString)], +oncia_User, "User", 35, jl_Object, [oncia_ExecutableBy, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_User_productPrefix), "$productArity", $rt_wrapFunction0(oncia_User_productArity), "$productElement", $rt_wrapFunction1(oncia_User_productElement), "$productIterator", $rt_wrapFunction0(oncia_User_productIterator), "$hashCode", $rt_wrapFunction0(oncia_User_hashCode), "$toString", $rt_wrapFunction0(oncia_User_toString), "$equals", $rt_wrapFunction1(oncia_User_equals)], +oncia_BuiltInFunctions$, "BuiltInFunctions$", 35, jl_Object, [oncia_ShowFunctionType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_BuiltInFunctions$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_BuiltInFunctions$_productArity), "$productElement", $rt_wrapFunction1(oncia_BuiltInFunctions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_BuiltInFunctions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_BuiltInFunctions$_hashCode), "$toString", $rt_wrapFunction0(oncia_BuiltInFunctions$_toString)], +oncia_AllFunctions$, "AllFunctions$", 35, jl_Object, [oncia_ShowFunctionType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_AllFunctions$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_AllFunctions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllFunctions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllFunctions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllFunctions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllFunctions$_toString)], +oncia_UserDefinedFunctions$, "UserDefinedFunctions$", 35, jl_Object, [oncia_ShowFunctionType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_UserDefinedFunctions$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_UserDefinedFunctions$_productArity), "$productElement", $rt_wrapFunction1(oncia_UserDefinedFunctions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UserDefinedFunctions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UserDefinedFunctions$_hashCode), +"$toString", $rt_wrapFunction0(oncia_UserDefinedFunctions$_toString)], +oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0_apply)], +oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0_apply)], +oncia_CreateConstraint$, 0, jl_Object, [], 4, 3, 0, oncia_CreateConstraint$_$callClinit, 0, oncia_SchemaCommand, 0, jl_Object, [oncia_StatementWithGraph, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, -oncia_DropConstraintOnName, "DropConstraintOnName", 36, jl_Object, [oncia_SchemaCommand, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropConstraintOnName_returnColumns), "$foldedOver", $rt_wrapFunction0(oncia_DropConstraintOnName_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropConstraintOnName_folder), "$position", $rt_wrapFunction0(oncia_DropConstraintOnName_position), "$semanticCheck", $rt_wrapFunction0(oncia_DropConstraintOnName_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropConstraintOnName_productPrefix), +oncia_DropConstraintOnName, "DropConstraintOnName", 35, jl_Object, [oncia_SchemaCommand, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropConstraintOnName_returnColumns), "$foldedOver", $rt_wrapFunction0(oncia_DropConstraintOnName_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropConstraintOnName_folder), "$position", $rt_wrapFunction0(oncia_DropConstraintOnName_position), "$semanticCheck", $rt_wrapFunction0(oncia_DropConstraintOnName_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropConstraintOnName_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropConstraintOnName_productArity), "$productElement", $rt_wrapFunction1(oncia_DropConstraintOnName_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropConstraintOnName_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropConstraintOnName_hashCode), "$toString", $rt_wrapFunction0(oncia_DropConstraintOnName_toString), "$equals", $rt_wrapFunction1(oncia_DropConstraintOnName_equals), "$dup", $rt_wrapFunction1(oncia_DropConstraintOnName_dup), "$withGraph0", $rt_wrapFunction1(oncia_DropConstraintOnName_withGraph)], -onciafn_Neo4jASTFactory$dropConstraint$lambda$_163_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$dropConstraint$lambda$_163_0_apply)], oncia_DropConstraintOnName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_DropIndexOnName, "DropIndexOnName", 36, jl_Object, [oncia_SchemaCommand, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropIndexOnName_returnColumns), "$foldedOver", $rt_wrapFunction0(oncia_DropIndexOnName_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropIndexOnName_folder), "$position", $rt_wrapFunction0(oncia_DropIndexOnName_position), "$semanticCheck", $rt_wrapFunction0(oncia_DropIndexOnName_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropIndexOnName_productPrefix), +oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0_apply)], +oncia_CreateIndex$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0_apply)], +oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0_apply)], +oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0_apply)], +oncia_DropIndexOnName, "DropIndexOnName", 35, jl_Object, [oncia_SchemaCommand, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropIndexOnName_returnColumns), "$foldedOver", $rt_wrapFunction0(oncia_DropIndexOnName_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropIndexOnName_folder), "$position", $rt_wrapFunction0(oncia_DropIndexOnName_position), "$semanticCheck", $rt_wrapFunction0(oncia_DropIndexOnName_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropIndexOnName_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropIndexOnName_productArity), "$productElement", $rt_wrapFunction1(oncia_DropIndexOnName_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropIndexOnName_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropIndexOnName_hashCode), "$toString", $rt_wrapFunction0(oncia_DropIndexOnName_toString), "$equals", $rt_wrapFunction1(oncia_DropIndexOnName_equals), "$dup", $rt_wrapFunction1(oncia_DropIndexOnName_dup), "$withGraph0", $rt_wrapFunction1(oncia_DropIndexOnName_withGraph)], -onciafn_Neo4jASTFactory$dropIndex$lambda$_170_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$dropIndex$lambda$_170_0_apply)], oncia_DropIndexOnName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_DropRole, "DropRole", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropRole_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropRole_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropRole_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_DropRole_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_DropRole_error), "$foldedOver", $rt_wrapFunction0(oncia_DropRole_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropRole_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DropRole_position), "$name", $rt_wrapFunction0(oncia_DropRole_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropRole_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropRole_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropRole_productArity), "$productElement", $rt_wrapFunction1(oncia_DropRole_productElement), -"$productIterator", $rt_wrapFunction0(oncia_DropRole_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropRole_hashCode), "$toString", $rt_wrapFunction0(oncia_DropRole_toString), "$equals", $rt_wrapFunction1(oncia_DropRole_equals), "$dup", $rt_wrapFunction1(oncia_DropRole_dup), "$withGraph0", $rt_wrapFunction1(oncia_DropRole_withGraph0)], -oncia_DropServer, "DropServer", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropServer_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropServer_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropServer_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_DropServer_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_DropServer_error), "$foldedOver", $rt_wrapFunction0(oncia_DropServer_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropServer_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DropServer_position), "$name", $rt_wrapFunction0(oncia_DropServer_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropServer_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropServer_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropServer_productArity), "$productElement", -$rt_wrapFunction1(oncia_DropServer_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropServer_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropServer_hashCode), "$toString", $rt_wrapFunction0(oncia_DropServer_toString), "$equals", $rt_wrapFunction1(oncia_DropServer_equals), "$dup", $rt_wrapFunction1(oncia_DropServer_dup), "$withGraph0", $rt_wrapFunction1(oncia_DropServer_withGraph0)], -oncia_DropUser, "DropUser", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropUser_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_DropUser_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_DropUser_error), "$foldedOver", $rt_wrapFunction0(oncia_DropUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropUser_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DropUser_position), "$name", $rt_wrapFunction0(oncia_DropUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropUser_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropUser_productArity), "$productElement", $rt_wrapFunction1(oncia_DropUser_productElement), -"$productIterator", $rt_wrapFunction0(oncia_DropUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropUser_hashCode), "$toString", $rt_wrapFunction0(oncia_DropUser_toString), "$equals", $rt_wrapFunction1(oncia_DropUser_equals), "$dup", $rt_wrapFunction1(oncia_DropUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_DropUser_withGraph0)], -oncia_GrantPrivilege, "GrantPrivilege", 36, oncia_PrivilegeCommand, [ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_GrantPrivilege_position), "$name", $rt_wrapFunction0(oncia_GrantPrivilege_name), "$semanticCheck", $rt_wrapFunction0(oncia_GrantPrivilege_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_GrantPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_GrantPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_GrantPrivilege_productElement), +oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0_apply0)], +oncia_PrivilegeType, 0, jl_Object, [], 1, 3, 0, 0, 0, +oncia_WriteAdministrationCommand, 0, jl_Object, [oncia_AdministrationCommand], 3, 3, 0, 0, 0, +oncia_PrivilegeCommand, 0, jl_Object, [oncia_WriteAdministrationCommand], 1, 3, 0, 0, ["$returnColumns", $rt_wrapFunction0(oncia_PrivilegeCommand_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_PrivilegeCommand_useGraph), "$withGraph", $rt_wrapFunction1(oncia_PrivilegeCommand_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_PrivilegeCommand_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_PrivilegeCommand_error0), "$foldedOver", $rt_wrapFunction0(oncia_PrivilegeCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_PrivilegeCommand_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_PrivilegeCommand_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$dup", $rt_wrapFunction1(oncia_PrivilegeCommand_dup), "$withGraph0", $rt_wrapFunction1(oncia_PrivilegeCommand_withGraph0)], +oncia_GrantPrivilege, "GrantPrivilege", 35, oncia_PrivilegeCommand, [ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_GrantPrivilege_position), "$name", $rt_wrapFunction0(oncia_GrantPrivilege_name), "$semanticCheck", $rt_wrapFunction0(oncia_GrantPrivilege_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_GrantPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_GrantPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_GrantPrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_GrantPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_GrantPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_GrantPrivilege_toString), "$equals", $rt_wrapFunction1(oncia_GrantPrivilege_equals)], -onciafn_Neo4jASTFactory$grantPrivilege$lambda$_195_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$grantPrivilege$lambda$_195_0_apply)], -oncia_GrantRolesToUsers, "GrantRolesToUsers", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_GrantRolesToUsers_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_GrantRolesToUsers_useGraph), "$withGraph", $rt_wrapFunction1(oncia_GrantRolesToUsers_withGraph), -"$requireFeatureSupport", $rt_wrapFunction3(oncia_GrantRolesToUsers_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_GrantRolesToUsers_error), "$foldedOver", $rt_wrapFunction0(oncia_GrantRolesToUsers_foldedOver), "$folder", $rt_wrapFunction0(oncia_GrantRolesToUsers_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +oncia_GrantRolesToUsers, "GrantRolesToUsers", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_GrantRolesToUsers_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_GrantRolesToUsers_useGraph), "$withGraph", $rt_wrapFunction1(oncia_GrantRolesToUsers_withGraph), +"$requireFeatureSupport", $rt_wrapFunction3(oncia_GrantRolesToUsers_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_GrantRolesToUsers_error), "$foldedOver", $rt_wrapFunction0(oncia_GrantRolesToUsers_foldedOver), "$folder", $rt_wrapFunction0(oncia_GrantRolesToUsers_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_GrantRolesToUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_GrantRolesToUsers_position), "$name", $rt_wrapFunction0(oncia_GrantRolesToUsers_name), "$semanticCheck", $rt_wrapFunction0(oncia_GrantRolesToUsers_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_GrantRolesToUsers_productPrefix), "$productArity", $rt_wrapFunction0(oncia_GrantRolesToUsers_productArity), "$productElement", $rt_wrapFunction1(oncia_GrantRolesToUsers_productElement), "$productIterator", $rt_wrapFunction0(oncia_GrantRolesToUsers_productIterator), "$hashCode", $rt_wrapFunction0(oncia_GrantRolesToUsers_hashCode), "$toString", $rt_wrapFunction0(oncia_GrantRolesToUsers_toString), "$equals", $rt_wrapFunction1(oncia_GrantRolesToUsers_equals), "$dup", $rt_wrapFunction1(oncia_GrantRolesToUsers_dup), "$withGraph0", $rt_wrapFunction1(oncia_GrantRolesToUsers_withGraph0)], -onciafn_Neo4jASTFactory$grantRoles$lambda$_175_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$grantRoles$lambda$_175_0_apply)], -onciafn_Neo4jASTFactory$grantRoles$lambda$_175_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$grantRoles$lambda$_175_1_apply)], -oncia_RenameRole, "RenameRole", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_RenameRole_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_RenameRole_useGraph), "$withGraph", $rt_wrapFunction1(oncia_RenameRole_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_RenameRole_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_RenameRole_error), "$foldedOver", $rt_wrapFunction0(oncia_RenameRole_foldedOver), "$folder", $rt_wrapFunction0(oncia_RenameRole_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_RenameRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_RenameRole_position), "$name", $rt_wrapFunction0(oncia_RenameRole_name), "$semanticCheck", $rt_wrapFunction0(oncia_RenameRole_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RenameRole_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RenameRole_productArity), "$productElement", -$rt_wrapFunction1(oncia_RenameRole_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameRole_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameRole_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameRole_toString), "$equals", $rt_wrapFunction1(oncia_RenameRole_equals), "$dup", $rt_wrapFunction1(oncia_RenameRole_dup), "$withGraph0", $rt_wrapFunction1(oncia_RenameRole_withGraph0)], -oncia_RenameServer, "RenameServer", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_RenameServer_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_RenameServer_useGraph), "$withGraph", $rt_wrapFunction1(oncia_RenameServer_withGraph), "$requireFeatureSupport", -$rt_wrapFunction3(oncia_RenameServer_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_RenameServer_error), "$foldedOver", $rt_wrapFunction0(oncia_RenameServer_foldedOver), "$folder", $rt_wrapFunction0(oncia_RenameServer_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_RenameServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", -$rt_wrapFunction0(oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_RenameServer_position), "$name", $rt_wrapFunction0(oncia_RenameServer_name), "$semanticCheck", $rt_wrapFunction0(oncia_RenameServer_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RenameServer_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_RenameServer_productArity), "$productElement", $rt_wrapFunction1(oncia_RenameServer_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameServer_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameServer_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameServer_toString), "$equals", $rt_wrapFunction1(oncia_RenameServer_equals), "$dup", $rt_wrapFunction1(oncia_RenameServer_dup), "$withGraph0", $rt_wrapFunction1(oncia_RenameServer_withGraph0)], -oncia_RenameUser, "RenameUser", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_RenameUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_RenameUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_RenameUser_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_RenameUser_requireFeatureSupport), -"$error2", $rt_wrapFunction2(oncia_RenameUser_error), "$foldedOver", $rt_wrapFunction0(oncia_RenameUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_RenameUser_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_RenameUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), -"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_RenameUser_position), "$name", $rt_wrapFunction0(oncia_RenameUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_RenameUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RenameUser_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RenameUser_productArity), "$productElement", -$rt_wrapFunction1(oncia_RenameUser_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameUser_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameUser_toString), "$equals", $rt_wrapFunction1(oncia_RenameUser_equals), "$dup", $rt_wrapFunction1(oncia_RenameUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_RenameUser_withGraph0)], -s_Tuple2$mcZZ$sp, "Tuple2$mcZZ$sp", 17, s_Tuple2, [], 4, 3, 0, 0, ["$_1$mcZ$sp", $rt_wrapFunction0(s_Tuple2$mcZZ$sp__1$mcZ$sp), "$_2$mcZ$sp", $rt_wrapFunction0(s_Tuple2$mcZZ$sp__2$mcZ$sp), "$_2", $rt_wrapFunction0(s_Tuple2$mcZZ$sp__2), "$_1", $rt_wrapFunction0(s_Tuple2$mcZZ$sp__1)], -oncia_RevokePrivilege, "RevokePrivilege", 36, oncia_PrivilegeCommand, [ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_RevokePrivilege_position), "$name", $rt_wrapFunction0(oncia_RevokePrivilege_name), "$semanticCheck", $rt_wrapFunction0(oncia_RevokePrivilege_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RevokePrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokePrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokePrivilege_productElement), -"$productIterator", $rt_wrapFunction0(oncia_RevokePrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokePrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokePrivilege_toString), "$equals", $rt_wrapFunction1(oncia_RevokePrivilege_equals)], -onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_0_apply)], +oncia_DenyPrivilege, "DenyPrivilege", 35, oncia_PrivilegeCommand, [ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_DenyPrivilege_position), "$name", $rt_wrapFunction0(oncia_DenyPrivilege_name), "$semanticCheck", $rt_wrapFunction0(oncia_DenyPrivilege_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DenyPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DenyPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_DenyPrivilege_productElement), "$productIterator", +$rt_wrapFunction0(oncia_DenyPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DenyPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_DenyPrivilege_toString), "$equals", $rt_wrapFunction1(oncia_DenyPrivilege_equals)], oncia_RevokeType, 0, jl_Object, [], 1, 3, 0, 0, 0, -oncia_RevokeGrantType, "RevokeGrantType", 36, oncia_RevokeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RevokeGrantType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokeGrantType_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokeGrantType_productElement), "$productIterator", $rt_wrapFunction0(oncia_RevokeGrantType_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokeGrantType_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokeGrantType_toString), -"$equals", $rt_wrapFunction1(oncia_RevokeGrantType_equals)], -onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_1_apply)]]); -$rt_metadata([oncia_RevokeDenyType, "RevokeDenyType", 36, oncia_RevokeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RevokeDenyType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokeDenyType_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokeDenyType_productElement), "$productIterator", $rt_wrapFunction0(oncia_RevokeDenyType_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokeDenyType_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokeDenyType_toString), +oncia_RevokeDenyType, "RevokeDenyType", 35, oncia_RevokeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RevokeDenyType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokeDenyType_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokeDenyType_productElement), "$productIterator", $rt_wrapFunction0(oncia_RevokeDenyType_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokeDenyType_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokeDenyType_toString), "$equals", $rt_wrapFunction1(oncia_RevokeDenyType_equals)], -onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$revokePrivilege$lambda$_197_2_apply)], -oncia_RevokeBothType, "RevokeBothType", 36, oncia_RevokeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RevokeBothType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokeBothType_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokeBothType_productElement), "$productIterator", $rt_wrapFunction0(oncia_RevokeBothType_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokeBothType_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokeBothType_toString), +oncia_RevokePrivilege, "RevokePrivilege", 35, oncia_PrivilegeCommand, [ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_RevokePrivilege_position), "$name", $rt_wrapFunction0(oncia_RevokePrivilege_name), "$semanticCheck", $rt_wrapFunction0(oncia_RevokePrivilege_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RevokePrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokePrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokePrivilege_productElement), +"$productIterator", $rt_wrapFunction0(oncia_RevokePrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokePrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokePrivilege_toString), "$equals", $rt_wrapFunction1(oncia_RevokePrivilege_equals)], +oncia_RevokeBothType, "RevokeBothType", 35, oncia_RevokeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RevokeBothType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokeBothType_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokeBothType_productElement), "$productIterator", $rt_wrapFunction0(oncia_RevokeBothType_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokeBothType_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokeBothType_toString), "$equals", $rt_wrapFunction1(oncia_RevokeBothType_equals)], -oncia_RevokeRolesFromUsers, "RevokeRolesFromUsers", 36, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_useGraph), "$withGraph", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_withGraph), -"$requireFeatureSupport", $rt_wrapFunction3(oncia_RevokeRolesFromUsers_requireFeatureSupport), "$error2", $rt_wrapFunction2(oncia_RevokeRolesFromUsers_error), "$foldedOver", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_foldedOver), "$folder", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +oncia_RevokeGrantType, "RevokeGrantType", 35, oncia_RevokeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RevokeGrantType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokeGrantType_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokeGrantType_productElement), "$productIterator", $rt_wrapFunction0(oncia_RevokeGrantType_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokeGrantType_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokeGrantType_toString), +"$equals", $rt_wrapFunction1(oncia_RevokeGrantType_equals)]]); +$rt_metadata([oncia_RevokeRolesFromUsers, "RevokeRolesFromUsers", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_useGraph), "$withGraph", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_withGraph), +"$requireFeatureSupport", $rt_wrapFunction3(oncia_RevokeRolesFromUsers_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_RevokeRolesFromUsers_error), "$foldedOver", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_foldedOver), "$folder", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_position), "$name", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_name), "$semanticCheck", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_productArity), "$productElement", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_productElement), "$productIterator", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_hashCode), "$toString", $rt_wrapFunction0(oncia_RevokeRolesFromUsers_toString), "$equals", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_equals), "$dup", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_dup), "$withGraph0", $rt_wrapFunction1(oncia_RevokeRolesFromUsers_withGraph0)], -onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_0_apply)], -onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$revokeRoles$lambda$_176_1_apply)], -onciafn_Neo4jASTFactory$yieldClause$lambda$_152_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$yieldClause$lambda$_152_0_apply)], -onciafn_Neo4jASTFactory$yieldClause$lambda$_152_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$yieldClause$lambda$_152_1_apply)], -onciafn_Neo4jASTFactory$yieldClause$lambda$_152_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$yieldClause$lambda$_152_2_apply)], -onciafn_Neo4jASTFactory$yieldClause$lambda$_152_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$yieldClause$lambda$_152_3_apply)], -oncia_RemoveItem, 0, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, -oncia_RemovePropertyItem, "RemovePropertyItem", 36, jl_Object, [oncia_RemoveItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_RemovePropertyItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_RemovePropertyItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RemovePropertyItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RemovePropertyItem_productArity), "$productElement", $rt_wrapFunction1(oncia_RemovePropertyItem_productElement), "$productIterator", -$rt_wrapFunction0(oncia_RemovePropertyItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemovePropertyItem_hashCode), "$toString", $rt_wrapFunction0(oncia_RemovePropertyItem_toString), "$equals", $rt_wrapFunction1(oncia_RemovePropertyItem_equals), "$dup", $rt_wrapFunction1(oncia_RemovePropertyItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_RemovePropertyItem_mapExpressions)], -oncie_ContainerIndex, "ContainerIndex", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ContainerIndex_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ContainerIndex_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ContainerIndex_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ContainerIndex_productArity), "$productElement", $rt_wrapFunction1(oncie_ContainerIndex_productElement), "$productIterator", $rt_wrapFunction0(oncie_ContainerIndex_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_ContainerIndex_hashCode), "$toString", $rt_wrapFunction0(oncie_ContainerIndex_toString), "$equals", $rt_wrapFunction1(oncie_ContainerIndex_equals)], -oncia_RemoveDynamicPropertyItem, "RemoveDynamicPropertyItem", 36, jl_Object, [oncia_RemoveItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveDynamicPropertyItem_productElement), -"$productIterator", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem_toString), "$equals", $rt_wrapFunction1(oncia_RemoveDynamicPropertyItem_equals), "$dup", $rt_wrapFunction1(oncia_RemoveDynamicPropertyItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_RemoveDynamicPropertyItem_mapExpressions)], -onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_0_apply)], -onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$newReturnClause$lambda$_7_1_apply)], -oncia_SetItem, 0, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, -oncia_SetProperty, 0, jl_Object, [oncia_SetItem, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, -oncia_SetPropertyItem, "SetPropertyItem", 36, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, [0,0,0], 0, ["$expectType4", $rt_wrapFunction4(oncia_SetPropertyItem_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_SetPropertyItem_expectType$default$4), "$position", $rt_wrapFunction0(oncia_SetPropertyItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetPropertyItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetPropertyItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetPropertyItem_productArity), -"$productElement", $rt_wrapFunction1(oncia_SetPropertyItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetPropertyItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetPropertyItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetPropertyItem_toString), "$equals", $rt_wrapFunction1(oncia_SetPropertyItem_equals), "$dup", $rt_wrapFunction1(oncia_SetPropertyItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetPropertyItem_mapExpressions)], -oncia_SetDynamicPropertyItem, "SetDynamicPropertyItem", 36, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetDynamicPropertyItem_productElement), -"$productIterator", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetDynamicPropertyItem_toString), "$equals", $rt_wrapFunction1(oncia_SetDynamicPropertyItem_equals), "$dup", $rt_wrapFunction1(oncia_SetDynamicPropertyItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetDynamicPropertyItem_mapExpressions)], -oncia_SetExactPropertiesFromMapItem, "SetExactPropertiesFromMapItem", 36, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, [0,0,0], 0, ["$expectType4", $rt_wrapFunction4(oncia_SetExactPropertiesFromMapItem_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_expectType$default$4), "$position", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetExactPropertiesFromMapItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem_toString), "$equals", $rt_wrapFunction1(oncia_SetExactPropertiesFromMapItem_equals), "$dup", $rt_wrapFunction1(oncia_SetExactPropertiesFromMapItem_dup), -"$mapExpressions", $rt_wrapFunction1(oncia_SetExactPropertiesFromMapItem_mapExpressions)], -oncia_SetIncludingPropertiesFromMapItem, "SetIncludingPropertiesFromMapItem", 36, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, [0,0,0], 0, ["$expectType4", $rt_wrapFunction4(oncia_SetIncludingPropertiesFromMapItem_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_expectType$default$4), "$position", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_semanticCheck), -"$productPrefix", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetIncludingPropertiesFromMapItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem_toString), -"$equals", $rt_wrapFunction1(oncia_SetIncludingPropertiesFromMapItem_equals), "$dup", $rt_wrapFunction1(oncia_SetIncludingPropertiesFromMapItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetIncludingPropertiesFromMapItem_mapExpressions)], -oncia_UsingJoinHint$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_Hint, 0, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, -oncia_UserHint, 0, jl_Object, [oncia_Hint], 3, 3, 0, 0, 0, -oncia_LeafPlanHint, 0, jl_Object, [oncia_UserHint], 3, 3, 0, 0, 0, -oncia_UsingScanHint, "UsingScanHint", 36, jl_Object, [oncia_LeafPlanHint, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_UsingScanHint_semanticCheck), "$expectType", $rt_wrapFunction2(oncia_UsingScanHint_expectType0), "$expectType4", $rt_wrapFunction4(oncia_UsingScanHint_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_UsingScanHint_expectType$default$4), "$ensureDefined", $rt_wrapFunction1(oncia_UsingScanHint_ensureDefined), "$variable2", $rt_wrapFunction0(oncia_UsingScanHint_variable), -"$position", $rt_wrapFunction0(oncia_UsingScanHint_position), "$productPrefix", $rt_wrapFunction0(oncia_UsingScanHint_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UsingScanHint_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingScanHint_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingScanHint_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingScanHint_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingScanHint_toString), "$equals", $rt_wrapFunction1(oncia_UsingScanHint_equals), -"$dup", $rt_wrapFunction1(oncia_UsingScanHint_dup)], -oncie_LabelOrRelTypeName, "LabelOrRelTypeName", 64, jl_Object, [oncil_LabelExpressionLeafName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_LabelOrRelTypeName_name), "$position", $rt_wrapFunction0(oncie_LabelOrRelTypeName_position), "$productPrefix", $rt_wrapFunction0(oncie_LabelOrRelTypeName_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LabelOrRelTypeName_productArity), "$productElement", $rt_wrapFunction1(oncie_LabelOrRelTypeName_productElement), "$productIterator", $rt_wrapFunction0(oncie_LabelOrRelTypeName_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_LabelOrRelTypeName_hashCode), "$toString", $rt_wrapFunction0(oncie_LabelOrRelTypeName_toString), "$equals", $rt_wrapFunction1(oncie_LabelOrRelTypeName_equals), "$dup", $rt_wrapFunction1(oncie_LabelOrRelTypeName_dup)], -oncie_MatchMode$RepeatableElements, "MatchMode$RepeatableElements", 64, jl_Object, [oncie_MatchMode$MatchMode, ji_Serializable], 0, 3, [oncie_MatchMode,0,"RepeatableElements"], 0, ["$position", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_position), "$prettified", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_prettified), "$productPrefix", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_productPrefix), "$productArity", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_productArity), "$productElement", -$rt_wrapFunction1(oncie_MatchMode$RepeatableElements_productElement), "$productIterator", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_productIterator), "$hashCode", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_hashCode), "$toString", $rt_wrapFunction0(oncie_MatchMode$RepeatableElements_toString), "$equals", $rt_wrapFunction1(oncie_MatchMode$RepeatableElements_equals), "$dup", $rt_wrapFunction1(oncie_MatchMode$RepeatableElements_dup)], -oncie_MatchMode$DifferentRelationships, "MatchMode$DifferentRelationships", 64, jl_Object, [oncie_MatchMode$MatchMode, ji_Serializable], 0, 3, [oncie_MatchMode,0,"DifferentRelationships"], 0, ["$position", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_position), "$prettified", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_prettified), "$productPrefix", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_productPrefix), "$productArity", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_productArity), -"$productElement", $rt_wrapFunction1(oncie_MatchMode$DifferentRelationships_productElement), "$productIterator", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_productIterator), "$hashCode", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_hashCode), "$toString", $rt_wrapFunction0(oncie_MatchMode$DifferentRelationships_toString), "$equals", $rt_wrapFunction1(oncie_MatchMode$DifferentRelationships_equals), "$dup", $rt_wrapFunction1(oncie_MatchMode$DifferentRelationships_dup)], -oncie_MatchMode$DifferentRelationships$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, -oncie_NamedPatternPart, "NamedPatternPart", 64, oncie_PatternPart, [oncie_NonPrefixedPatternPart, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_NamedPatternPart_position), "$element", $rt_wrapFunction0(oncie_NamedPatternPart_element), "$allVariables", $rt_wrapFunction0(oncie_NamedPatternPart_allVariables), "$isBounded", $rt_wrapFunction0(oncie_NamedPatternPart_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_NamedPatternPart_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NamedPatternPart_productArity), -"$productElement", $rt_wrapFunction1(oncie_NamedPatternPart_productElement), "$productIterator", $rt_wrapFunction0(oncie_NamedPatternPart_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NamedPatternPart_hashCode), "$toString", $rt_wrapFunction0(oncie_NamedPatternPart_toString), "$equals", $rt_wrapFunction1(oncie_NamedPatternPart_equals), "$mapExpressions", $rt_wrapFunction1(oncie_NamedPatternPart_mapExpressions)], -oncia_ProcedureResultItem$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncie_ProcedureOutput, "ProcedureOutput", 64, jl_Object, [oncie_SymbolicName, ji_Serializable], 0, 3, [0,0,0], 0, ["$name", $rt_wrapFunction0(oncie_ProcedureOutput_name), "$position", $rt_wrapFunction0(oncie_ProcedureOutput_position), "$productPrefix", $rt_wrapFunction0(oncie_ProcedureOutput_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ProcedureOutput_productArity), "$productElement", $rt_wrapFunction1(oncie_ProcedureOutput_productElement), "$productIterator", $rt_wrapFunction0(oncie_ProcedureOutput_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_ProcedureOutput_hashCode), "$toString", $rt_wrapFunction0(oncie_ProcedureOutput_toString), "$equals", $rt_wrapFunction1(oncie_ProcedureOutput_equals), "$dup", $rt_wrapFunction1(oncie_ProcedureOutput_dup)], -oncia_SortItem, "SortItem", 36, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable], 3, 3, [0,0,0], 0, 0, -oncia_AscSortItem, "AscSortItem", 36, jl_Object, [oncia_SortItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_AscSortItem_semanticCheck), "$expression", $rt_wrapFunction0(oncia_AscSortItem_expression), "$position", $rt_wrapFunction0(oncia_AscSortItem_position), "$productPrefix", $rt_wrapFunction0(oncia_AscSortItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AscSortItem_productArity), "$productElement", $rt_wrapFunction1(oncia_AscSortItem_productElement), "$productIterator", -$rt_wrapFunction0(oncia_AscSortItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AscSortItem_hashCode), "$toString", $rt_wrapFunction0(oncia_AscSortItem_toString), "$equals", $rt_wrapFunction1(oncia_AscSortItem_equals), "$dup", $rt_wrapFunction1(oncia_AscSortItem_dup), "$mapExpression", $rt_wrapFunction1(oncia_AscSortItem_mapExpression)], -oncia_DescSortItem, "DescSortItem", 36, jl_Object, [oncia_SortItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_DescSortItem_semanticCheck), "$expression", $rt_wrapFunction0(oncia_DescSortItem_expression), "$position", $rt_wrapFunction0(oncia_DescSortItem_position), "$productPrefix", $rt_wrapFunction0(oncia_DescSortItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DescSortItem_productArity), "$productElement", $rt_wrapFunction1(oncia_DescSortItem_productElement), -"$productIterator", $rt_wrapFunction0(oncia_DescSortItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DescSortItem_hashCode), "$toString", $rt_wrapFunction0(oncia_DescSortItem_toString), "$equals", $rt_wrapFunction1(oncia_DescSortItem_equals), "$dup", $rt_wrapFunction1(oncia_DescSortItem_dup), "$mapExpression", $rt_wrapFunction1(oncia_DescSortItem_mapExpression)], -oncia_DatabasePrivilege, "DatabasePrivilege", 36, oncia_PrivilegeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_DatabasePrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DatabasePrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_DatabasePrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_DatabasePrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DatabasePrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_DatabasePrivilege_toString), +oncia_EnableServer, "EnableServer", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_EnableServer_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_EnableServer_useGraph), "$withGraph", $rt_wrapFunction1(oncia_EnableServer_withGraph), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_EnableServer_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_EnableServer_error), "$foldedOver", $rt_wrapFunction0(oncia_EnableServer_foldedOver), "$folder", $rt_wrapFunction0(oncia_EnableServer_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_EnableServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +$rt_wrapFunction0(oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_EnableServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_EnableServer_position), "$name", $rt_wrapFunction0(oncia_EnableServer_name), "$semanticCheck", $rt_wrapFunction0(oncia_EnableServer_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_EnableServer_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_EnableServer_productArity), "$productElement", $rt_wrapFunction1(oncia_EnableServer_productElement), "$productIterator", $rt_wrapFunction0(oncia_EnableServer_productIterator), "$hashCode", $rt_wrapFunction0(oncia_EnableServer_hashCode), "$toString", $rt_wrapFunction0(oncia_EnableServer_toString), "$equals", $rt_wrapFunction1(oncia_EnableServer_equals), "$dup", $rt_wrapFunction1(oncia_EnableServer_dup), "$withGraph0", $rt_wrapFunction1(oncia_EnableServer_withGraph0)], +oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0_apply)], +oncia_AlterServer, "AlterServer", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterServer_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterServer_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterServer_withGraph0), "$requireFeatureSupport", $rt_wrapFunction3(oncia_AlterServer_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_AlterServer_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterServer_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterServer_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_AlterServer_position), "$name", $rt_wrapFunction0(oncia_AlterServer_name), "$semanticCheck", $rt_wrapFunction0(oncia_AlterServer_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_AlterServer_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AlterServer_productArity), "$productElement", +$rt_wrapFunction1(oncia_AlterServer_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterServer_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterServer_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterServer_toString), "$equals", $rt_wrapFunction1(oncia_AlterServer_equals), "$dup", $rt_wrapFunction1(oncia_AlterServer_dup), "$withGraph0", $rt_wrapFunction1(oncia_AlterServer_withGraph)], +oncia_RenameServer, "RenameServer", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_RenameServer_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_RenameServer_useGraph), "$withGraph", $rt_wrapFunction1(oncia_RenameServer_withGraph), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_RenameServer_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_RenameServer_error), "$foldedOver", $rt_wrapFunction0(oncia_RenameServer_foldedOver), "$folder", $rt_wrapFunction0(oncia_RenameServer_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_RenameServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +$rt_wrapFunction0(oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_RenameServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_RenameServer_position), "$name", $rt_wrapFunction0(oncia_RenameServer_name), "$semanticCheck", $rt_wrapFunction0(oncia_RenameServer_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RenameServer_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_RenameServer_productArity), "$productElement", $rt_wrapFunction1(oncia_RenameServer_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameServer_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameServer_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameServer_toString), "$equals", $rt_wrapFunction1(oncia_RenameServer_equals), "$dup", $rt_wrapFunction1(oncia_RenameServer_dup), "$withGraph0", $rt_wrapFunction1(oncia_RenameServer_withGraph0)], +oncia_DropServer, "DropServer", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropServer_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropServer_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropServer_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_DropServer_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_DropServer_error), "$foldedOver", $rt_wrapFunction0(oncia_DropServer_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropServer_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropServer_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropServer_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DropServer_position), "$name", $rt_wrapFunction0(oncia_DropServer_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropServer_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropServer_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropServer_productArity), "$productElement", +$rt_wrapFunction1(oncia_DropServer_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropServer_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropServer_hashCode), "$toString", $rt_wrapFunction0(oncia_DropServer_toString), "$equals", $rt_wrapFunction1(oncia_DropServer_equals), "$dup", $rt_wrapFunction1(oncia_DropServer_dup), "$withGraph0", $rt_wrapFunction1(oncia_DropServer_withGraph0)], +oncia_ShowServers$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_ShowServers$_$callClinit, 0, +oncia_DeallocateServers, "DeallocateServers", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DeallocateServers_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DeallocateServers_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_DeallocateServers_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_DeallocateServers_error), "$foldedOver", $rt_wrapFunction0(oncia_DeallocateServers_foldedOver), "$folder", $rt_wrapFunction0(oncia_DeallocateServers_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DeallocateServers_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DeallocateServers_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DeallocateServers_position), "$name", $rt_wrapFunction0(oncia_DeallocateServers_name), "$returnColumns", $rt_wrapFunction0(oncia_DeallocateServers_returnColumns), "$semanticCheck", $rt_wrapFunction0(oncia_DeallocateServers_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DeallocateServers_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_DeallocateServers_productArity), "$productElement", $rt_wrapFunction1(oncia_DeallocateServers_productElement), "$productIterator", $rt_wrapFunction0(oncia_DeallocateServers_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DeallocateServers_hashCode), "$toString", $rt_wrapFunction0(oncia_DeallocateServers_toString), "$equals", $rt_wrapFunction1(oncia_DeallocateServers_equals), "$dup", $rt_wrapFunction1(oncia_DeallocateServers_dup), "$withGraph0", $rt_wrapFunction1(oncia_DeallocateServers_withGraph0)], +oncia_ReallocateDatabases, "ReallocateDatabases", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_ReallocateDatabases_useGraph), "$withGraph", $rt_wrapFunction1(oncia_ReallocateDatabases_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_ReallocateDatabases_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_ReallocateDatabases_error), "$foldedOver", $rt_wrapFunction0(oncia_ReallocateDatabases_foldedOver), "$folder", $rt_wrapFunction0(oncia_ReallocateDatabases_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_ReallocateDatabases_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_ReallocateDatabases_position), "$name", $rt_wrapFunction0(oncia_ReallocateDatabases_name), "$returnColumns", $rt_wrapFunction0(oncia_ReallocateDatabases_returnColumns), "$semanticCheck", $rt_wrapFunction0(oncia_ReallocateDatabases_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ReallocateDatabases_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_ReallocateDatabases_productArity), "$productElement", $rt_wrapFunction1(oncia_ReallocateDatabases_productElement), "$productIterator", $rt_wrapFunction0(oncia_ReallocateDatabases_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReallocateDatabases_hashCode), "$toString", $rt_wrapFunction0(oncia_ReallocateDatabases_toString), "$equals", $rt_wrapFunction1(oncia_ReallocateDatabases_equals), "$dup", $rt_wrapFunction1(oncia_ReallocateDatabases_dup), "$withGraph0", $rt_wrapFunction1(oncia_ReallocateDatabases_withGraph0)], +oncia_CreateRole, "CreateRole", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateRole_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateRole_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateRole_withGraph0), "$requireFeatureSupport", $rt_wrapFunction3(oncia_CreateRole_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_CreateRole_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateRole_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateRole_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_CreateRole_position), "$name", $rt_wrapFunction0(oncia_CreateRole_name), "$semanticCheck", $rt_wrapFunction0(oncia_CreateRole_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateRole_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateRole_productArity), "$productElement", +$rt_wrapFunction1(oncia_CreateRole_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateRole_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateRole_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateRole_toString), "$equals", $rt_wrapFunction1(oncia_CreateRole_equals), "$dup", $rt_wrapFunction1(oncia_CreateRole_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateRole_withGraph)], +oncia_DropRole, "DropRole", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropRole_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropRole_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropRole_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_DropRole_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_DropRole_error), "$foldedOver", $rt_wrapFunction0(oncia_DropRole_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropRole_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DropRole_position), "$name", $rt_wrapFunction0(oncia_DropRole_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropRole_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropRole_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropRole_productArity), "$productElement", $rt_wrapFunction1(oncia_DropRole_productElement), +"$productIterator", $rt_wrapFunction0(oncia_DropRole_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropRole_hashCode), "$toString", $rt_wrapFunction0(oncia_DropRole_toString), "$equals", $rt_wrapFunction1(oncia_DropRole_equals), "$dup", $rt_wrapFunction1(oncia_DropRole_dup), "$withGraph0", $rt_wrapFunction1(oncia_DropRole_withGraph0)], +oncia_RenameRole, "RenameRole", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_RenameRole_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_RenameRole_useGraph), "$withGraph", $rt_wrapFunction1(oncia_RenameRole_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_RenameRole_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_RenameRole_error), "$foldedOver", $rt_wrapFunction0(oncia_RenameRole_foldedOver), "$folder", $rt_wrapFunction0(oncia_RenameRole_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_RenameRole_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_RenameRole_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_RenameRole_position), "$name", $rt_wrapFunction0(oncia_RenameRole_name), "$semanticCheck", $rt_wrapFunction0(oncia_RenameRole_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RenameRole_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RenameRole_productArity), "$productElement", +$rt_wrapFunction1(oncia_RenameRole_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameRole_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameRole_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameRole_toString), "$equals", $rt_wrapFunction1(oncia_RenameRole_equals), "$dup", $rt_wrapFunction1(oncia_RenameRole_dup), "$withGraph0", $rt_wrapFunction1(oncia_RenameRole_withGraph0)], +oncia_ShowRoles$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4_apply)], +oncia_Auth, "Auth", 35, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_Auth_position), "$productPrefix", $rt_wrapFunction0(oncia_Auth_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Auth_productArity), "$productElement", $rt_wrapFunction1(oncia_Auth_productElement), "$productIterator", $rt_wrapFunction0(oncia_Auth_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Auth_hashCode), "$toString", $rt_wrapFunction0(oncia_Auth_toString), "$equals", +$rt_wrapFunction1(oncia_Auth_equals), "$dup", $rt_wrapFunction1(oncia_Auth_dup)], +oncia_AdministrationCommand$, 0, jl_Object, [], 4, 3, 0, oncia_AdministrationCommand$_$callClinit, 0, +oncia_AuthAttribute, "AuthAttribute", 35, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7_apply)], +oncia_UserAuth, 0, jl_Object, [oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, +oncia_CreateUser, "CreateUser", 35, jl_Object, [oncia_WriteAdministrationCommand, oncia_UserAuth, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateUser_withGraph), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_CreateUser_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_CreateUser_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateUser_folder), "$externalAuths", $rt_wrapFunction0(oncia_CreateUser_externalAuths), "$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths", $rt_wrapFunction0(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq", +$rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq), +"$org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$newStyleAuth", $rt_wrapFunction0(oncia_CreateUser_newStyleAuth), "$oldStyleAuth", $rt_wrapFunction0(oncia_CreateUser_oldStyleAuth), "$position", $rt_wrapFunction0(oncia_CreateUser_position), +"$name", $rt_wrapFunction0(oncia_CreateUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_CreateUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateUser_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateUser_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateUser_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateUser_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateUser_toString), +"$equals", $rt_wrapFunction1(oncia_CreateUser_equals), "$dup", $rt_wrapFunction1(oncia_CreateUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateUser_withGraph0)], +oncia_UserOptions, "UserOptions", 35, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_UserOptions_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UserOptions_productArity), "$productElement", $rt_wrapFunction1(oncia_UserOptions_productElement), "$productIterator", $rt_wrapFunction0(oncia_UserOptions_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UserOptions_hashCode), "$toString", $rt_wrapFunction0(oncia_UserOptions_toString), "$equals", $rt_wrapFunction1(oncia_UserOptions_equals)], +oncia_DropUser, "DropUser", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropUser_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_DropUser_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_DropUser_error), "$foldedOver", $rt_wrapFunction0(oncia_DropUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropUser_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DropUser_position), "$name", $rt_wrapFunction0(oncia_DropUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_DropUser_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropUser_productArity), "$productElement", $rt_wrapFunction1(oncia_DropUser_productElement), +"$productIterator", $rt_wrapFunction0(oncia_DropUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropUser_hashCode), "$toString", $rt_wrapFunction0(oncia_DropUser_toString), "$equals", $rt_wrapFunction1(oncia_DropUser_equals), "$dup", $rt_wrapFunction1(oncia_DropUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_DropUser_withGraph0)], +oncia_RenameUser, "RenameUser", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_RenameUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_RenameUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_RenameUser_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_RenameUser_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_RenameUser_error), "$foldedOver", $rt_wrapFunction0(oncia_RenameUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_RenameUser_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_RenameUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_RenameUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_RenameUser_position), "$name", $rt_wrapFunction0(oncia_RenameUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_RenameUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RenameUser_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RenameUser_productArity), "$productElement", +$rt_wrapFunction1(oncia_RenameUser_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameUser_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameUser_toString), "$equals", $rt_wrapFunction1(oncia_RenameUser_equals), "$dup", $rt_wrapFunction1(oncia_RenameUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_RenameUser_withGraph0)], +oncia_SetOwnPassword, "SetOwnPassword", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_SetOwnPassword_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_SetOwnPassword_useGraph), "$withGraph", $rt_wrapFunction1(oncia_SetOwnPassword_withGraph), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_SetOwnPassword_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_SetOwnPassword_error), "$foldedOver", $rt_wrapFunction0(oncia_SetOwnPassword_foldedOver), "$folder", $rt_wrapFunction0(oncia_SetOwnPassword_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +$rt_wrapFunction0(oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_SetOwnPassword_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_SetOwnPassword_position), "$name", $rt_wrapFunction0(oncia_SetOwnPassword_name), "$semanticCheck", $rt_wrapFunction0(oncia_SetOwnPassword_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetOwnPassword_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_SetOwnPassword_productArity), "$productElement", $rt_wrapFunction1(oncia_SetOwnPassword_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetOwnPassword_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetOwnPassword_hashCode), "$toString", $rt_wrapFunction0(oncia_SetOwnPassword_toString), "$equals", $rt_wrapFunction1(oncia_SetOwnPassword_equals), "$dup", $rt_wrapFunction1(oncia_SetOwnPassword_dup), "$withGraph0", $rt_wrapFunction1(oncia_SetOwnPassword_withGraph0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0_apply0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_10, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1_apply)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2_apply0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_30, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3_apply)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_40, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4_apply)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_50, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5_apply)], +oncia_HomeDatabaseAction, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_RemoveHomeDatabaseAction$, "RemoveHomeDatabaseAction$", 35, jl_Object, [oncia_HomeDatabaseAction, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RemoveHomeDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveHomeDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveHomeDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveHomeDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveHomeDatabaseAction$_toString)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_60, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6_apply)], +oncia_RemoveAuth, "RemoveAuth", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RemoveAuth_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RemoveAuth_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveAuth_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveAuth_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveAuth_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveAuth_toString), "$equals", $rt_wrapFunction1(oncia_RemoveAuth_equals)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_70, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7_apply0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_80, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8_apply0)], +oncia_AlterUser, "AlterUser", 35, jl_Object, [oncia_WriteAdministrationCommand, oncia_UserAuth, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterUser_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterUser_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterUser_withGraph), "$requireFeatureSupport", $rt_wrapFunction3(oncia_AlterUser_requireFeatureSupport), +"$error4", $rt_wrapFunction2(oncia_AlterUser_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterUser_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterUser_folder), "$externalAuths", $rt_wrapFunction0(oncia_AlterUser_externalAuths), "$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths", $rt_wrapFunction0(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$externalAuths_$eq), +"$org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$org$neo4j$cypher$internal$ast$UserAuth$$allNativeAuths_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$nativeAuth_$eq), "$org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$allAuths_$eq), +"$org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$UserAuth$_setter_$useOldStyleNativeAuth_$eq), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterUser_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$newStyleAuth", $rt_wrapFunction0(oncia_AlterUser_newStyleAuth), "$oldStyleAuth", $rt_wrapFunction0(oncia_AlterUser_oldStyleAuth), "$position", $rt_wrapFunction0(oncia_AlterUser_position), "$name", $rt_wrapFunction0(oncia_AlterUser_name), "$semanticCheck", $rt_wrapFunction0(oncia_AlterUser_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_AlterUser_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_AlterUser_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterUser_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterUser_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterUser_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterUser_toString), "$equals", $rt_wrapFunction1(oncia_AlterUser_equals), "$dup", $rt_wrapFunction1(oncia_AlterUser_dup), "$withGraph0", $rt_wrapFunction1(oncia_AlterUser_withGraph0)], +oncia_NativeAuthAttribute, 0, jl_Object, [oncia_AuthAttribute], 3, 3, 0, 0, 0, +oncia_Password, "Password", 35, jl_Object, [oncia_NativeAuthAttribute, ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_Password_position), "$name", $rt_wrapFunction0(oncia_Password_name), "$productPrefix", $rt_wrapFunction0(oncia_Password_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Password_productArity), "$productElement", $rt_wrapFunction1(oncia_Password_productElement), "$productIterator", $rt_wrapFunction0(oncia_Password_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Password_hashCode), +"$toString", $rt_wrapFunction0(oncia_Password_toString), "$equals", $rt_wrapFunction1(oncia_Password_equals), "$dup", $rt_wrapFunction1(oncia_Password_dup)], +oncia_PasswordChange, "PasswordChange", 35, jl_Object, [oncia_NativeAuthAttribute, ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_PasswordChange_position), "$name", $rt_wrapFunction0(oncia_PasswordChange_name), "$productPrefix", $rt_wrapFunction0(oncia_PasswordChange_productPrefix), "$productArity", $rt_wrapFunction0(oncia_PasswordChange_productArity), "$productElement", $rt_wrapFunction1(oncia_PasswordChange_productElement), "$productIterator", $rt_wrapFunction0(oncia_PasswordChange_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_PasswordChange_hashCode), "$toString", $rt_wrapFunction0(oncia_PasswordChange_toString), "$equals", $rt_wrapFunction1(oncia_PasswordChange_equals), "$dup", $rt_wrapFunction1(oncia_PasswordChange_dup)], +oncipvaf_DdlBuilder$$anon$1, "DdlBuilder$$anon$1", 51, oncie_ExplicitParameter, [oncie_SensitiveParameter], 4, 3, [oncipvaf_DdlBuilder0,0,0], 0, 0, +oncie_SensitiveStringLiteral, "SensitiveStringLiteral", 62, oncie_Expression, [oncie_SensitiveLiteral, ji_Serializable], 4, 3, [0,0,0], 0, ["$equals", $rt_wrapFunction1(oncie_SensitiveStringLiteral_equals), "$hashCode", $rt_wrapFunction0(oncie_SensitiveStringLiteral_hashCode), "$literalLength", $rt_wrapFunction0(oncie_SensitiveStringLiteral_literalLength), "$isConstantForQuery", $rt_wrapFunction0(oncie_SensitiveStringLiteral_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_SensitiveStringLiteral_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_SensitiveStringLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_SensitiveStringLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_SensitiveStringLiteral_productIterator), "$toString", $rt_wrapFunction0(oncie_SensitiveStringLiteral_toString), "$dup", $rt_wrapFunction1(oncie_SensitiveStringLiteral_dup1), "$dup0", $rt_wrapFunction1(oncie_SensitiveStringLiteral_dup0), "$position", $rt_wrapFunction0(oncie_SensitiveStringLiteral_position)], +oncia_DatabaseName, "DatabaseName", 35, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, +oncia_SetHomeDatabaseAction, "SetHomeDatabaseAction", 35, jl_Object, [oncia_HomeDatabaseAction, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_productArity), "$productElement", $rt_wrapFunction1(oncia_SetHomeDatabaseAction_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_hashCode), +"$toString", $rt_wrapFunction0(oncia_SetHomeDatabaseAction_toString), "$equals", $rt_wrapFunction1(oncia_SetHomeDatabaseAction_equals)]]); +$rt_metadata([oncia_ExternalAuthAttribute, 0, jl_Object, [oncia_AuthAttribute], 3, 3, 0, 0, 0, +oncia_AuthId, "AuthId", 35, jl_Object, [oncia_ExternalAuthAttribute, ji_Serializable], 4, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_AuthId_position), "$name", $rt_wrapFunction0(oncia_AuthId_name), "$productPrefix", $rt_wrapFunction0(oncia_AuthId_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AuthId_productArity), "$productElement", $rt_wrapFunction1(oncia_AuthId_productElement), "$productIterator", $rt_wrapFunction0(oncia_AuthId_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AuthId_hashCode), +"$toString", $rt_wrapFunction0(oncia_AuthId_toString), "$equals", $rt_wrapFunction1(oncia_AuthId_equals), "$dup", $rt_wrapFunction1(oncia_AuthId_dup)], +oncia_ShowUsers$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_ShowCurrentUser$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_ShowSupportedPrivilegeCommand$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0_apply)], +s_Tuple2$mcZZ$sp, "Tuple2$mcZZ$sp", 15, s_Tuple2, [], 4, 3, 0, 0, ["$_1$mcZ$sp", $rt_wrapFunction0(s_Tuple2$mcZZ$sp__1$mcZ$sp), "$_2$mcZ$sp", $rt_wrapFunction0(s_Tuple2$mcZZ$sp__2$mcZ$sp), "$_2", $rt_wrapFunction0(s_Tuple2$mcZZ$sp__2), "$_1", $rt_wrapFunction0(s_Tuple2$mcZZ$sp__1)], +oncia_ShowPrivileges$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_ShowAllPrivileges, "ShowAllPrivileges", 35, jl_Object, [oncia_ShowPrivilegeScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowAllPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowAllPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowAllPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowAllPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowAllPrivileges_hashCode), "$toString", +$rt_wrapFunction0(oncia_ShowAllPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowAllPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowAllPrivileges_dup)], +oncia_ShowPrivilegeCommands$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0_apply)], +oncia_ShowRolesPrivileges, "ShowRolesPrivileges", 35, jl_Object, [oncia_ShowPrivilegeScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowRolesPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowRolesPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowRolesPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowRolesPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowRolesPrivileges_hashCode), +"$toString", $rt_wrapFunction0(oncia_ShowRolesPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowRolesPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowRolesPrivileges_dup)], +oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0_apply)], +oncia_ShowUserPrivileges, "ShowUserPrivileges", 35, jl_Object, [oncia_ShowPrivilegeScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowUserPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowUserPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowUserPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowUserPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowUserPrivileges_hashCode), "$toString", +$rt_wrapFunction0(oncia_ShowUserPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowUserPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowUserPrivileges_dup)], +oncia_ShowUsersPrivileges, "ShowUsersPrivileges", 35, jl_Object, [oncia_ShowPrivilegeScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowUsersPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowUsersPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowUsersPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowUsersPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowUsersPrivileges_hashCode), +"$toString", $rt_wrapFunction0(oncia_ShowUsersPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowUsersPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowUsersPrivileges_dup)], +oncia_GraphPrivilege, "GraphPrivilege", 35, oncia_PrivilegeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_GraphPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_GraphPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_GraphPrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_GraphPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_GraphPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_GraphPrivilege_toString), +"$equals", $rt_wrapFunction1(oncia_GraphPrivilege_equals)], +oncia_AdministrationAction, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_GraphAction, 0, jl_Object, [oncia_AdministrationAction], 1, 3, 0, 0, 0, +oncia_AllGraphAction$, "AllGraphAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllGraphAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllGraphAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllGraphAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllGraphAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllGraphAction$_toString)], +oncia_GraphScope, 0, jl_Object, [onciu_Rewritable], 3, 3, 0, 0, 0, +oncia_HomeGraphScope, "HomeGraphScope", 35, jl_Object, [oncia_GraphScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_HomeGraphScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_HomeGraphScope_productArity), "$productElement", $rt_wrapFunction1(oncia_HomeGraphScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_HomeGraphScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_HomeGraphScope_hashCode), "$toString", $rt_wrapFunction0(oncia_HomeGraphScope_toString), +"$equals", $rt_wrapFunction1(oncia_HomeGraphScope_equals), "$dup", $rt_wrapFunction1(oncia_HomeGraphScope_dup)], +oncia_DatabasePrivilege, "DatabasePrivilege", 35, oncia_PrivilegeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_DatabasePrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DatabasePrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_DatabasePrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_DatabasePrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DatabasePrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_DatabasePrivilege_toString), "$equals", $rt_wrapFunction1(oncia_DatabasePrivilege_equals)], -oncia_NamedDatabasesScope, "NamedDatabasesScope", 36, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_NamedDatabasesScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NamedDatabasesScope_productArity), "$productElement", $rt_wrapFunction1(oncia_NamedDatabasesScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_NamedDatabasesScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NamedDatabasesScope_hashCode), +oncia_DatabaseAction, 0, jl_Object, [oncia_AdministrationAction], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_DatabaseAction_name)], +oncia_AllDatabaseAction$, "AllDatabaseAction$", 35, oncia_DatabaseAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllDatabaseAction$_toString)], +oncia_HomeDatabaseScope, "HomeDatabaseScope", 35, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_HomeDatabaseScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_HomeDatabaseScope_productArity), "$productElement", $rt_wrapFunction1(oncia_HomeDatabaseScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_HomeDatabaseScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_HomeDatabaseScope_hashCode), "$toString", $rt_wrapFunction0(oncia_HomeDatabaseScope_toString), +"$equals", $rt_wrapFunction1(oncia_HomeDatabaseScope_equals), "$dup", $rt_wrapFunction1(oncia_HomeDatabaseScope_dup)], +oncia_NamedDatabasesScope, "NamedDatabasesScope", 35, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_NamedDatabasesScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NamedDatabasesScope_productArity), "$productElement", $rt_wrapFunction1(oncia_NamedDatabasesScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_NamedDatabasesScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NamedDatabasesScope_hashCode), "$toString", $rt_wrapFunction0(oncia_NamedDatabasesScope_toString), "$equals", $rt_wrapFunction1(oncia_NamedDatabasesScope_equals), "$dup", $rt_wrapFunction1(oncia_NamedDatabasesScope_dup)], -oncia_AllGraphsScope, "AllGraphsScope", 36, jl_Object, [oncia_GraphScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllGraphsScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllGraphsScope_productArity), "$productElement", $rt_wrapFunction1(oncia_AllGraphsScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllGraphsScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllGraphsScope_hashCode), "$toString", $rt_wrapFunction0(oncia_AllGraphsScope_toString), -"$equals", $rt_wrapFunction1(oncia_AllGraphsScope_equals), "$dup", $rt_wrapFunction1(oncia_AllGraphsScope_dup)], -oncia_HomeGraphScope, "HomeGraphScope", 36, jl_Object, [oncia_GraphScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_HomeGraphScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_HomeGraphScope_productArity), "$productElement", $rt_wrapFunction1(oncia_HomeGraphScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_HomeGraphScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_HomeGraphScope_hashCode), "$toString", $rt_wrapFunction0(oncia_HomeGraphScope_toString), -"$equals", $rt_wrapFunction1(oncia_HomeGraphScope_equals), "$dup", $rt_wrapFunction1(oncia_HomeGraphScope_dup)], -oncia_NamedGraphsScope, "NamedGraphsScope", 36, jl_Object, [oncia_GraphScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_NamedGraphsScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NamedGraphsScope_productArity), "$productElement", $rt_wrapFunction1(oncia_NamedGraphsScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_NamedGraphsScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NamedGraphsScope_hashCode), "$toString", $rt_wrapFunction0(oncia_NamedGraphsScope_toString), +oncia_AllDatabasesScope, "AllDatabasesScope", 35, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllDatabasesScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllDatabasesScope_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDatabasesScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDatabasesScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDatabasesScope_hashCode), "$toString", $rt_wrapFunction0(oncia_AllDatabasesScope_toString), +"$equals", $rt_wrapFunction1(oncia_AllDatabasesScope_equals), "$dup", $rt_wrapFunction1(oncia_AllDatabasesScope_dup)], +oncia_NamedGraphsScope, "NamedGraphsScope", 35, jl_Object, [oncia_GraphScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_NamedGraphsScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NamedGraphsScope_productArity), "$productElement", $rt_wrapFunction1(oncia_NamedGraphsScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_NamedGraphsScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NamedGraphsScope_hashCode), "$toString", $rt_wrapFunction0(oncia_NamedGraphsScope_toString), "$equals", $rt_wrapFunction1(oncia_NamedGraphsScope_equals), "$dup", $rt_wrapFunction1(oncia_NamedGraphsScope_dup)], -oncia_GraphPrivilege, "GraphPrivilege", 36, oncia_PrivilegeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_GraphPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_GraphPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_GraphPrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_GraphPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_GraphPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_GraphPrivilege_toString), -"$equals", $rt_wrapFunction1(oncia_GraphPrivilege_equals)], -oncia_LoadPrivilege, "LoadPrivilege", 36, oncia_PrivilegeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LoadPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadPrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadPrivilege_toString), +oncia_AllGraphsScope, "AllGraphsScope", 35, jl_Object, [oncia_GraphScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllGraphsScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllGraphsScope_productArity), "$productElement", $rt_wrapFunction1(oncia_AllGraphsScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllGraphsScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllGraphsScope_hashCode), "$toString", $rt_wrapFunction0(oncia_AllGraphsScope_toString), +"$equals", $rt_wrapFunction1(oncia_AllGraphsScope_equals), "$dup", $rt_wrapFunction1(oncia_AllGraphsScope_dup)], +oncia_DbmsPrivilege, "DbmsPrivilege", 35, oncia_PrivilegeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_DbmsPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DbmsPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_DbmsPrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_DbmsPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DbmsPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_DbmsPrivilege_toString), +"$equals", $rt_wrapFunction1(oncia_DbmsPrivilege_equals)], +oncia_DbmsAction, 0, jl_Object, [oncia_AdministrationAction], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_DbmsAction_name)], +oncia_AllDbmsAction$, "AllDbmsAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllDbmsAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDbmsAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDbmsAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDbmsAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllDbmsAction$_toString)], +oncia_CreateElementAction$, "CreateElementAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateElementAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateElementAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateElementAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateElementAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateElementAction$_toString)], +oncia_NameManagementAction, 0, oncia_DatabaseAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_NameManagementAction_name)], +oncia_CreateNodeLabelAction$, "CreateNodeLabelAction$", 35, oncia_NameManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateNodeLabelAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateNodeLabelAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateNodeLabelAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateNodeLabelAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateNodeLabelAction$_toString)], +oncia_CreateRelationshipTypeAction$, "CreateRelationshipTypeAction$", 35, oncia_NameManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateRelationshipTypeAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateRelationshipTypeAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateRelationshipTypeAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateRelationshipTypeAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateRelationshipTypeAction$_toString)], +oncia_CreatePropertyKeyAction$, "CreatePropertyKeyAction$", 35, oncia_NameManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreatePropertyKeyAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreatePropertyKeyAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreatePropertyKeyAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreatePropertyKeyAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreatePropertyKeyAction$_toString)], +oncia_UserManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_UserManagementAction_name)], +oncia_DropUserAction$, "DropUserAction$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropUserAction$_toString)], +oncia_CreateUserAction$, "CreateUserAction$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateUserAction$_toString)], +oncia_RoleManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_RoleManagementAction_name)], +oncia_DropRoleAction$, "DropRoleAction$", 35, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropRoleAction$_toString)], +oncia_CreateRoleAction$, "CreateRoleAction$", 35, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateRoleAction$_toString)], +oncia_DatabaseManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_DatabaseManagementAction_name)], +oncia_DropDatabaseAction$, "DropDatabaseAction$", 35, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropDatabaseAction$_toString)], +oncia_CreateDatabaseAction$, "CreateDatabaseAction$", 35, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateDatabaseAction$_toString)], +oncia_DropCompositeDatabaseAction$, "DropCompositeDatabaseAction$", 35, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropCompositeDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropCompositeDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropCompositeDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropCompositeDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropCompositeDatabaseAction$_toString)], +oncia_CreateCompositeDatabaseAction$, "CreateCompositeDatabaseAction$", 35, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateCompositeDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateCompositeDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateCompositeDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateCompositeDatabaseAction$_hashCode), "$toString", +$rt_wrapFunction0(oncia_CreateCompositeDatabaseAction$_toString)], +oncia_AliasManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_AliasManagementAction_name)], +oncia_DropAliasAction$, "DropAliasAction$", 35, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropAliasAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropAliasAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropAliasAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropAliasAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropAliasAction$_toString)]]); +$rt_metadata([oncia_CreateAliasAction$, "CreateAliasAction$", 35, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateAliasAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateAliasAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateAliasAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateAliasAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateAliasAction$_toString)], +oncia_ConstraintManagementAction, 0, oncia_DatabaseAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_ConstraintManagementAction_name)], +oncia_DropConstraintAction$, "DropConstraintAction$", 35, oncia_ConstraintManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropConstraintAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropConstraintAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropConstraintAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropConstraintAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropConstraintAction$_toString)], +oncia_IndexManagementAction, 0, oncia_DatabaseAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_IndexManagementAction_name)], +oncia_DropIndexAction$, "DropIndexAction$", 35, oncia_IndexManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DropIndexAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DropIndexAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropIndexAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropIndexAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DropIndexAction$_toString)], +oncia_LoadPrivilege, "LoadPrivilege", 35, oncia_PrivilegeType, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LoadPrivilege_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadPrivilege_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadPrivilege_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadPrivilege_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadPrivilege_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadPrivilege_toString), "$equals", $rt_wrapFunction1(oncia_LoadPrivilege_equals)], oncia_DataExchangeAction, 0, jl_Object, [oncia_AdministrationAction], 3, 3, 0, 0, 0, oncia_LoadActions, 0, jl_Object, [oncia_DataExchangeAction], 3, 3, 0, 0, 0, -oncia_LoadUrlAction$, "LoadUrlAction$", 36, jl_Object, [oncia_LoadActions, s_Product, ji_Serializable], 4, 3, 0, oncia_LoadUrlAction$_$callClinit, ["$name", $rt_wrapFunction0(oncia_LoadUrlAction$_name0), "$org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq", $rt_wrapFunction1(oncia_LoadUrlAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq), "$productArity", $rt_wrapFunction0(oncia_LoadUrlAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadUrlAction$_productElement), -"$productIterator", $rt_wrapFunction0(oncia_LoadUrlAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadUrlAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadUrlAction$_toString)], +oncia_LoadAllDataAction$, "LoadAllDataAction$", 35, jl_Object, [oncia_LoadActions, s_Product, ji_Serializable], 4, 3, 0, oncia_LoadAllDataAction$_$callClinit, ["$name", $rt_wrapFunction0(oncia_LoadAllDataAction$_name0), "$org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq", $rt_wrapFunction1(oncia_LoadAllDataAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq), "$productArity", $rt_wrapFunction0(oncia_LoadAllDataAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadAllDataAction$_productElement), +"$productIterator", $rt_wrapFunction0(oncia_LoadAllDataAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadAllDataAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadAllDataAction$_toString)], +oncia_ActionResourceBase, 0, jl_Object, [], 3, 3, 0, 0, 0, oncia_ActionResource, 0, jl_Object, [oncia_ActionResourceBase], 3, 3, 0, 0, 0, -oncia_FileResource, "FileResource", 36, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_FileResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_FileResource_productArity), "$productElement", $rt_wrapFunction1(oncia_FileResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_FileResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_FileResource_hashCode), "$toString", $rt_wrapFunction0(oncia_FileResource_toString), +oncia_FileResource, "FileResource", 35, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_FileResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_FileResource_productArity), "$productElement", $rt_wrapFunction1(oncia_FileResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_FileResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_FileResource_hashCode), "$toString", $rt_wrapFunction0(oncia_FileResource_toString), "$equals", $rt_wrapFunction1(oncia_FileResource_equals)], -oncia_LoadPrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0]); -$rt_metadata([oncia_LoadUrlQualifier, "LoadUrlQualifier", 36, jl_Object, [oncia_LoadPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LoadUrlQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadUrlQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadUrlQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadUrlQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadUrlQualifier_hashCode), -"$toString", $rt_wrapFunction0(oncia_LoadUrlQualifier_toString), "$equals", $rt_wrapFunction1(oncia_LoadUrlQualifier_equals), "$dup", $rt_wrapFunction1(oncia_LoadUrlQualifier_dup)], -oncia_LoadAllDataAction$, "LoadAllDataAction$", 36, jl_Object, [oncia_LoadActions, s_Product, ji_Serializable], 4, 3, 0, oncia_LoadAllDataAction$_$callClinit, ["$name", $rt_wrapFunction0(oncia_LoadAllDataAction$_name0), "$org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq", $rt_wrapFunction1(oncia_LoadAllDataAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq), "$productArity", $rt_wrapFunction0(oncia_LoadAllDataAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadAllDataAction$_productElement), -"$productIterator", $rt_wrapFunction0(oncia_LoadAllDataAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadAllDataAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadAllDataAction$_toString)], -oncia_LoadAllQualifier, "LoadAllQualifier", 36, jl_Object, [oncia_LoadPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LoadAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadAllQualifier_hashCode), "$toString", +oncia_PrivilegeQualifier, 0, jl_Object, [onciu_Rewritable], 3, 3, 0, 0, 0, +oncia_LoadPrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, +oncia_LoadAllQualifier, "LoadAllQualifier", 35, jl_Object, [oncia_LoadPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LoadAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadAllQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadAllQualifier_toString), "$equals", $rt_wrapFunction1(oncia_LoadAllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_LoadAllQualifier_dup)], -oncia_LoadCidrAction$, "LoadCidrAction$", 36, jl_Object, [oncia_LoadActions, s_Product, ji_Serializable], 4, 3, 0, oncia_LoadCidrAction$_$callClinit, ["$name", $rt_wrapFunction0(oncia_LoadCidrAction$_name0), "$org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq", $rt_wrapFunction1(oncia_LoadCidrAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq), "$productArity", $rt_wrapFunction0(oncia_LoadCidrAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadCidrAction$_productElement), +oncia_LoadCidrAction$, "LoadCidrAction$", 35, jl_Object, [oncia_LoadActions, s_Product, ji_Serializable], 4, 3, 0, oncia_LoadCidrAction$_$callClinit, ["$name", $rt_wrapFunction0(oncia_LoadCidrAction$_name0), "$org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq", $rt_wrapFunction1(oncia_LoadCidrAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq), "$productArity", $rt_wrapFunction0(oncia_LoadCidrAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadCidrAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadCidrAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadCidrAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadCidrAction$_toString)], -oncia_LoadCidrQualifier, "LoadCidrQualifier", 36, jl_Object, [oncia_LoadPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LoadCidrQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadCidrQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadCidrQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadCidrQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadCidrQualifier_hashCode), "$toString", +oncia_LoadCidrQualifier, "LoadCidrQualifier", 35, jl_Object, [oncia_LoadPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LoadCidrQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadCidrQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadCidrQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadCidrQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadCidrQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadCidrQualifier_toString), "$equals", $rt_wrapFunction1(oncia_LoadCidrQualifier_equals), "$dup", $rt_wrapFunction1(oncia_LoadCidrQualifier_dup)], -oncia_LabelAllQualifier, "LabelAllQualifier", 36, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LabelAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LabelAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LabelAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LabelAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LabelAllQualifier_hashCode), "$toString", -$rt_wrapFunction0(oncia_LabelAllQualifier_toString), "$equals", $rt_wrapFunction1(oncia_LabelAllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_LabelAllQualifier_dup)], -oncia_ElementsAllQualifier, "ElementsAllQualifier", 36, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ElementsAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ElementsAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_ElementsAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_ElementsAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ElementsAllQualifier_hashCode), +oncia_LoadUrlAction$, "LoadUrlAction$", 35, jl_Object, [oncia_LoadActions, s_Product, ji_Serializable], 4, 3, 0, oncia_LoadUrlAction$_$callClinit, ["$name", $rt_wrapFunction0(oncia_LoadUrlAction$_name0), "$org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq", $rt_wrapFunction1(oncia_LoadUrlAction$_org$neo4j$cypher$internal$ast$LoadActions$_setter_$name_$eq), "$productArity", $rt_wrapFunction0(oncia_LoadUrlAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadUrlAction$_productElement), +"$productIterator", $rt_wrapFunction0(oncia_LoadUrlAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadUrlAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadUrlAction$_toString)], +oncia_LoadUrlQualifier, "LoadUrlQualifier", 35, jl_Object, [oncia_LoadPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LoadUrlQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadUrlQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadUrlQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadUrlQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadUrlQualifier_hashCode), "$toString", +$rt_wrapFunction0(oncia_LoadUrlQualifier_toString), "$equals", $rt_wrapFunction1(oncia_LoadUrlQualifier_equals), "$dup", $rt_wrapFunction1(oncia_LoadUrlQualifier_dup)], +oncia_ShowConstraintAction$, "ShowConstraintAction$", 35, oncia_ConstraintManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowConstraintAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowConstraintAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowConstraintAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowConstraintAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowConstraintAction$_toString)], +oncia_ShowIndexAction$, "ShowIndexAction$", 35, oncia_IndexManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowIndexAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowIndexAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowIndexAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowIndexAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowIndexAction$_toString)], +oncia_TransactionManagementAction, 0, oncia_DatabaseAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_TransactionManagementAction_name)], +oncia_ShowTransactionAction$, "ShowTransactionAction$", 35, oncia_TransactionManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowTransactionAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowTransactionAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowTransactionAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowTransactionAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowTransactionAction$_toString)], +oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0_apply0)], +oncia_ShowAliasAction$, "ShowAliasAction$", 35, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowAliasAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowAliasAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowAliasAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowAliasAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowAliasAction$_toString)], +oncia_PrivilegeManagementAction, 0, oncia_DbmsAction, [], 1, 3, 0, 0, ["$name", $rt_wrapFunction0(oncia_PrivilegeManagementAction_name)], +oncia_ShowPrivilegeAction$, "ShowPrivilegeAction$", 35, oncia_PrivilegeManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowPrivilegeAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowPrivilegeAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowPrivilegeAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowPrivilegeAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowPrivilegeAction$_toString)], +oncia_ShowRoleAction$, "ShowRoleAction$", 35, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowRoleAction$_toString)], +oncia_ShowServerAction$, "ShowServerAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowServerAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowServerAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowServerAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowServerAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowServerAction$_toString)], +oncia_ShowUserAction$, "ShowUserAction$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowUserAction$_toString)], +oncia_ShowSettingAction$, "ShowSettingAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ShowSettingAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowSettingAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowSettingAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowSettingAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowSettingAction$_toString)], +oncia_SetPasswordsAction$, "SetPasswordsAction$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetPasswordsAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetPasswordsAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetPasswordsAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetPasswordsAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetPasswordsAction$_toString)], +oncia_SetUserStatusAction$, "SetUserStatusAction$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetUserStatusAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetUserStatusAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetUserStatusAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetUserStatusAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetUserStatusAction$_toString)], +oncia_SetUserHomeDatabaseAction$, "SetUserHomeDatabaseAction$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetUserHomeDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetUserHomeDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetUserHomeDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetUserHomeDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetUserHomeDatabaseAction$_toString)], +oncia_SetDatabaseAccessAction$, "SetDatabaseAccessAction$", 35, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetDatabaseAccessAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetDatabaseAccessAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetDatabaseAccessAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetDatabaseAccessAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetDatabaseAccessAction$_toString)], +oncia_SetAuthAction$, "SetAuthAction$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetAuthAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetAuthAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetAuthAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetAuthAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetAuthAction$_toString)], +oncia_SetPropertyAction$, "SetPropertyAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetPropertyAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetPropertyAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetPropertyAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetPropertyAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetPropertyAction$_toString)], +oncia_SetLabelAction$, "SetLabelAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_SetLabelAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_SetLabelAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetLabelAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SetLabelAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_SetLabelAction$_toString)], +oncia_RemoveLabelAction$, "RemoveLabelAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RemoveLabelAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveLabelAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveLabelAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveLabelAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveLabelAction$_toString)], +oncia_RemoveRoleAction$, "RemoveRoleAction$", 35, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RemoveRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemoveRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveRoleAction$_toString)], +oncia_RemovePrivilegeAction$, "RemovePrivilegeAction$", 35, oncia_PrivilegeManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RemovePrivilegeAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RemovePrivilegeAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemovePrivilegeAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RemovePrivilegeAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RemovePrivilegeAction$_toString)], +oncia_WriteAction$, "WriteAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_WriteAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_WriteAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_WriteAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_WriteAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_WriteAction$_toString)], +oncia_GraphPrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, +oncia_ElementsAllQualifier, "ElementsAllQualifier", 35, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ElementsAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ElementsAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_ElementsAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_ElementsAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ElementsAllQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_ElementsAllQualifier_toString), "$equals", $rt_wrapFunction1(oncia_ElementsAllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_ElementsAllQualifier_dup)], -oncia_AliasedReturnItem, "AliasedReturnItem", 36, jl_Object, [oncia_ReturnItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$isPassThrough", $rt_wrapFunction0(oncia_AliasedReturnItem_isPassThrough), "$semanticCheck", $rt_wrapFunction0(oncia_AliasedReturnItem_semanticCheck), "$expression", $rt_wrapFunction0(oncia_AliasedReturnItem_expression), "$position", $rt_wrapFunction0(oncia_AliasedReturnItem_position), "$alias", $rt_wrapFunction0(oncia_AliasedReturnItem_alias), "$name", $rt_wrapFunction0(oncia_AliasedReturnItem_name), -"$productPrefix", $rt_wrapFunction0(oncia_AliasedReturnItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AliasedReturnItem_productArity), "$productElement", $rt_wrapFunction1(oncia_AliasedReturnItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_AliasedReturnItem_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AliasedReturnItem_hashCode), "$toString", $rt_wrapFunction0(oncia_AliasedReturnItem_toString), "$equals", $rt_wrapFunction1(oncia_AliasedReturnItem_equals), "$dup", $rt_wrapFunction1(oncia_AliasedReturnItem_dup)], -oncie_SignedIntegerLiteral, 0, jl_Object, [oncie_IntegerLiteral], 3, 3, 0, 0, 0, -oncie_SignedDecimalIntegerLiteral, "SignedDecimalIntegerLiteral", 64, oncie_DecimalIntegerLiteral, [oncie_SignedIntegerLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$stringVal", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_productPrefix), "$productArity", -$rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_SignedDecimalIntegerLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral_toString), "$equals", $rt_wrapFunction1(oncie_SignedDecimalIntegerLiteral_equals)], -oncie_PathPatternPart, "PathPatternPart", 64, oncie_PatternPart, [oncie_AnonymousPatternPart, ji_Serializable], 0, 3, [0,0,0], 0, ["$allVariables", $rt_wrapFunction0(oncie_PathPatternPart_allVariables), "$element", $rt_wrapFunction0(oncie_PathPatternPart_element), "$position", $rt_wrapFunction0(oncie_PathPatternPart_position), "$isBounded", $rt_wrapFunction0(oncie_PathPatternPart_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PathPatternPart_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PathPatternPart_productArity), -"$productElement", $rt_wrapFunction1(oncie_PathPatternPart_productElement), "$productIterator", $rt_wrapFunction0(oncie_PathPatternPart_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PathPatternPart_hashCode), "$toString", $rt_wrapFunction0(oncie_PathPatternPart_toString), "$equals", $rt_wrapFunction1(oncie_PathPatternPart_equals), "$mapExpressions", $rt_wrapFunction1(oncie_PathPatternPart_mapExpressions), "$dup", $rt_wrapFunction1(oncie_PathPatternPart_dup1), "$dup0", $rt_wrapFunction1(oncie_PathPatternPart_dup0)], -oncia_RemoveLabelItem, "RemoveLabelItem", 36, jl_Object, [oncia_RemoveItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_RemoveLabelItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_RemoveLabelItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_RemoveLabelItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RemoveLabelItem_productArity), "$productElement", $rt_wrapFunction1(oncia_RemoveLabelItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_RemoveLabelItem_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_RemoveLabelItem_hashCode), "$toString", $rt_wrapFunction0(oncia_RemoveLabelItem_toString), "$equals", $rt_wrapFunction1(oncia_RemoveLabelItem_equals), "$dup", $rt_wrapFunction1(oncia_RemoveLabelItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_RemoveLabelItem_mapExpressions)], -onciafn_Neo4jASTFactory$removeLabels$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$removeLabels$lambda$_31_0_apply)], -oncia_SetLabelItem, "SetLabelItem", 36, jl_Object, [oncia_SetItem, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_SetLabelItem_position), "$semanticCheck", $rt_wrapFunction0(oncia_SetLabelItem_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_SetLabelItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SetLabelItem_productArity), "$productElement", $rt_wrapFunction1(oncia_SetLabelItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_SetLabelItem_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_SetLabelItem_hashCode), "$toString", $rt_wrapFunction0(oncia_SetLabelItem_toString), "$equals", $rt_wrapFunction1(oncia_SetLabelItem_equals), "$dup", $rt_wrapFunction1(oncia_SetLabelItem_dup), "$mapExpressions", $rt_wrapFunction1(oncia_SetLabelItem_mapExpressions)], -onciafn_Neo4jASTFactory$setLabels$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$setLabels$lambda$_27_0_apply)], -oncia_UsingIndexHint, "UsingIndexHint", 36, jl_Object, [oncia_LeafPlanHint, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_UsingIndexHint_semanticCheck), "$expectType", $rt_wrapFunction2(oncia_UsingIndexHint_expectType0), "$expectType4", $rt_wrapFunction4(oncia_UsingIndexHint_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_UsingIndexHint_expectType$default$4), "$ensureDefined", $rt_wrapFunction1(oncia_UsingIndexHint_ensureDefined), "$variable2", $rt_wrapFunction0(oncia_UsingIndexHint_variable), -"$position", $rt_wrapFunction0(oncia_UsingIndexHint_position), "$productPrefix", $rt_wrapFunction0(oncia_UsingIndexHint_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UsingIndexHint_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint_toString), "$equals", $rt_wrapFunction1(oncia_UsingIndexHint_equals), -"$dup", $rt_wrapFunction1(oncia_UsingIndexHint_dup)], -onciafn_Neo4jASTFactory$usingIndexHint$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$usingIndexHint$lambda$_16_0_apply)], -oncia_UsingIndexHint$UsingIndexHintSpec, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_UsingIndexHint$SeekOrScan$, "UsingIndexHint$SeekOrScan$", 36, jl_Object, [oncia_UsingIndexHint$UsingIndexHintSpec, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOrScan$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$SeekOrScan$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOrScan$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOrScan$_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOrScan$_toString)], -oncia_UsingIndexHint$SeekOnly$, "UsingIndexHint$SeekOnly$", 36, jl_Object, [oncia_UsingIndexHint$UsingIndexHintSpec, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOnly$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$SeekOnly$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOnly$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOnly$_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOnly$_toString)], -oncie_PatternPart$SelectiveSelector, 0, jl_Object, [oncie_PatternPart$Selector], 3, 3, 0, 0, 0, -oncie_PatternPart$CountedSelector, 0, jl_Object, [oncie_PatternPart$Selector], 3, 3, 0, 0, 0, -oncie_PatternPart$AnyShortestPath, "PatternPart$AnyShortestPath", 64, jl_Object, [oncie_PatternPart$SelectiveSelector, oncie_PatternPart$CountedSelector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"AnyShortestPath"], 0, ["$count0", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_count), "$position", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_isBounded), -"$productPrefix", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPart$AnyShortestPath_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$AnyShortestPath_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$AnyShortestPath_equals), -"$dup", $rt_wrapFunction1(oncie_PatternPart$AnyShortestPath_dup)], -oncie_PatternPart$AllShortestPaths, "PatternPart$AllShortestPaths", 64, jl_Object, [oncie_PatternPart$SelectiveSelector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"AllShortestPaths"], 0, ["$position", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPart$AllShortestPaths_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$AllShortestPaths_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$AllShortestPaths_equals), "$dup", $rt_wrapFunction1(oncie_PatternPart$AllShortestPaths_dup)], -oncie_PatternPart$AnyPath, "PatternPart$AnyPath", 64, jl_Object, [oncie_PatternPart$SelectiveSelector, oncie_PatternPart$CountedSelector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"AnyPath"], 0, ["$count0", $rt_wrapFunction0(oncie_PatternPart$AnyPath_count), "$position", $rt_wrapFunction0(oncie_PatternPart$AnyPath_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$AnyPath_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$AnyPath_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PatternPart$AnyPath_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_PatternPart$AnyPath_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPart$AnyPath_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$AnyPath_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$AnyPath_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$AnyPath_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$AnyPath_equals), "$dup", $rt_wrapFunction1(oncie_PatternPart$AnyPath_dup)], -oncie_PatternPart$AllPaths, "PatternPart$AllPaths", 64, jl_Object, [oncie_PatternPart$Selector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"AllPaths"], 0, ["$position", $rt_wrapFunction0(oncie_PatternPart$AllPaths_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$AllPaths_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$AllPaths_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PatternPart$AllPaths_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternPart$AllPaths_productArity), -"$productElement", $rt_wrapFunction1(oncie_PatternPart$AllPaths_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$AllPaths_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$AllPaths_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$AllPaths_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$AllPaths_equals), "$dup", $rt_wrapFunction1(oncie_PatternPart$AllPaths_dup)], -oncie_PatternPart$ShortestGroups, "PatternPart$ShortestGroups", 64, jl_Object, [oncie_PatternPart$SelectiveSelector, oncie_PatternPart$CountedSelector, ji_Serializable], 0, 3, [oncie_PatternPart,0,"ShortestGroups"], 0, ["$count0", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_count), "$position", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_position), "$prettified", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_prettified), "$isBounded", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_isBounded), -"$productPrefix", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternPart$ShortestGroups_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternPart$ShortestGroups_toString), "$equals", $rt_wrapFunction1(oncie_PatternPart$ShortestGroups_equals), -"$dup", $rt_wrapFunction1(oncie_PatternPart$ShortestGroups_dup)], -oncia_SubqueryCall$InTransactionsOnErrorBehaviour, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$, "SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$", 36, jl_Object, [oncia_SubqueryCall$InTransactionsOnErrorBehaviour, s_Product, ji_Serializable], 0, 3, 0, oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productElement), -"$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorContinue$_toString)], -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$, "SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$", 36, jl_Object, [oncia_SubqueryCall$InTransactionsOnErrorBehaviour, s_Product, ji_Serializable], 0, 3, 0, oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productElement), -"$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorBreak$_toString)], -oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$, "SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$", 36, jl_Object, [oncia_SubqueryCall$InTransactionsOnErrorBehaviour, s_Product, ji_Serializable], 0, 3, 0, oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productArity), "$productElement", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productElement), -"$productIterator", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_hashCode), "$toString", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsOnErrorBehaviour$OnErrorFail$_toString)], -oncie_Xor, "Xor", 64, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Xor_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Xor_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Xor_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_Xor_lhs), "$rhs0", $rt_wrapFunction0(oncie_Xor_rhs), "$position", $rt_wrapFunction0(oncie_Xor_position), "$productPrefix", -$rt_wrapFunction0(oncie_Xor_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Xor_productArity), "$productElement", $rt_wrapFunction1(oncie_Xor_productElement), "$productIterator", $rt_wrapFunction0(oncie_Xor_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Xor_hashCode), "$toString", $rt_wrapFunction0(oncie_Xor_toString), "$equals", $rt_wrapFunction1(oncie_Xor_equals)], -onciafn_Neo4jASTFactory$functionQualifier$lambda$_220_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(onciafn_Neo4jASTFactory$functionQualifier$lambda$_220_0_accept)], -onciafn_Neo4jASTFactory$procedureQualifier$lambda$_221_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(onciafn_Neo4jASTFactory$procedureQualifier$lambda$_221_0_accept)], -oncia_RelationshipQualifier, "RelationshipQualifier", 36, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RelationshipQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RelationshipQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelationshipQualifier_hashCode), -"$toString", $rt_wrapFunction0(oncia_RelationshipQualifier_toString), "$equals", $rt_wrapFunction1(oncia_RelationshipQualifier_equals), "$dup", $rt_wrapFunction1(oncia_RelationshipQualifier_dup)], -oncia_RelationshipAllQualifier, "RelationshipAllQualifier", 36, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RelationshipAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RelationshipAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelationshipAllQualifier_hashCode), -"$toString", $rt_wrapFunction0(oncia_RelationshipAllQualifier_toString), "$equals", $rt_wrapFunction1(oncia_RelationshipAllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_RelationshipAllQualifier_dup)], -oncia_LabelQualifier, "LabelQualifier", 36, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LabelQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LabelQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LabelQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LabelQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LabelQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_LabelQualifier_toString), -"$equals", $rt_wrapFunction1(oncia_LabelQualifier_equals), "$dup", $rt_wrapFunction1(oncia_LabelQualifier_dup)], -oncia_PatternQualifier, "PatternQualifier", 36, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_PatternQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_PatternQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_PatternQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_PatternQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PatternQualifier_hashCode), "$toString", -$rt_wrapFunction0(oncia_PatternQualifier_toString), "$equals", $rt_wrapFunction1(oncia_PatternQualifier_equals), "$dup", $rt_wrapFunction1(oncia_PatternQualifier_dup)], -oncia_ElementQualifier, "ElementQualifier", 36, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ElementQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ElementQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_ElementQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_ElementQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ElementQualifier_hashCode), "$toString", -$rt_wrapFunction0(oncia_ElementQualifier_toString), "$equals", $rt_wrapFunction1(oncia_ElementQualifier_equals), "$dup", $rt_wrapFunction1(oncia_ElementQualifier_dup)], +oncia_AllConstraintActions$, "AllConstraintActions$", 35, oncia_ConstraintManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllConstraintActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllConstraintActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllConstraintActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllConstraintActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllConstraintActions$_toString)], +oncia_AllIndexActions$, "AllIndexActions$", 35, oncia_IndexManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllIndexActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllIndexActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllIndexActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllIndexActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllIndexActions$_toString)], +oncia_AccessDatabaseAction$, "AccessDatabaseAction$", 35, oncia_DatabaseAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AccessDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AccessDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AccessDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AccessDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AccessDatabaseAction$_toString)], +oncia_AllTokenActions$, "AllTokenActions$", 35, oncia_NameManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllTokenActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllTokenActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllTokenActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllTokenActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllTokenActions$_toString)], +oncia_StartDatabaseAction$, "StartDatabaseAction$", 35, oncia_DatabaseAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_StartDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_StartDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_StartDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_StartDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_StartDatabaseAction$_toString)], +oncia_StopDatabaseAction$, "StopDatabaseAction$", 35, oncia_DatabaseAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_StopDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_StopDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_StopDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_StopDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_StopDatabaseAction$_toString)]]); +$rt_metadata([oncia_TerminateTransactionAction$, "TerminateTransactionAction$", 35, oncia_TransactionManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_TerminateTransactionAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_TerminateTransactionAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_TerminateTransactionAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TerminateTransactionAction$_hashCode), "$toString", +$rt_wrapFunction0(oncia_TerminateTransactionAction$_toString)], +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0_apply)], +oncia_AllTransactionActions$, "AllTransactionActions$", 35, oncia_TransactionManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllTransactionActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllTransactionActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllTransactionActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllTransactionActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllTransactionActions$_toString)], +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1_apply0)], +oncia_AllAliasManagementActions$, "AllAliasManagementActions$", 35, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllAliasManagementActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllAliasManagementActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllAliasManagementActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllAliasManagementActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllAliasManagementActions$_toString)], +oncia_CompositeDatabaseManagementActions$, "CompositeDatabaseManagementActions$", 35, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CompositeDatabaseManagementActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_CompositeDatabaseManagementActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CompositeDatabaseManagementActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CompositeDatabaseManagementActions$_hashCode), +"$toString", $rt_wrapFunction0(oncia_CompositeDatabaseManagementActions$_toString)], +oncia_AllDatabaseManagementActions$, "AllDatabaseManagementActions$", 35, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllDatabaseManagementActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDatabaseManagementActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDatabaseManagementActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDatabaseManagementActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllDatabaseManagementActions$_toString)], +oncia_ImpersonateUserAction$, "ImpersonateUserAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ImpersonateUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ImpersonateUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ImpersonateUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ImpersonateUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ImpersonateUserAction$_toString)], +oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0_apply)], +oncia_AllPrivilegeActions$, "AllPrivilegeActions$", 35, oncia_PrivilegeManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllPrivilegeActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllPrivilegeActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllPrivilegeActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllPrivilegeActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllPrivilegeActions$_toString)], +oncia_AllRoleActions$, "AllRoleActions$", 35, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllRoleActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllRoleActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllRoleActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllRoleActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllRoleActions$_toString)], +oncia_ServerManagementAction$, "ServerManagementAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ServerManagementAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ServerManagementAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ServerManagementAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ServerManagementAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ServerManagementAction$_toString)], +oncia_AllUserActions$, "AllUserActions$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AllUserActions$_productArity), "$productElement", $rt_wrapFunction1(oncia_AllUserActions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllUserActions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllUserActions$_hashCode), "$toString", $rt_wrapFunction0(oncia_AllUserActions$_toString)], +oncia_RenameRoleAction$, "RenameRoleAction$", 35, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RenameRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RenameRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameRoleAction$_toString)], +oncia_RenameUserAction$, "RenameUserAction$", 35, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_RenameUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_RenameUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RenameUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RenameUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_RenameUserAction$_toString)], +oncia_AssignPrivilegeAction$, "AssignPrivilegeAction$", 35, oncia_PrivilegeManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AssignPrivilegeAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AssignPrivilegeAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AssignPrivilegeAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AssignPrivilegeAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AssignPrivilegeAction$_toString)], +oncia_AssignRoleAction$, "AssignRoleAction$", 35, oncia_RoleManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AssignRoleAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AssignRoleAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AssignRoleAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AssignRoleAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AssignRoleAction$_toString)], +oncia_AlterAliasAction$, "AlterAliasAction$", 35, oncia_AliasManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AlterAliasAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterAliasAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterAliasAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterAliasAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterAliasAction$_toString)], +oncia_AlterDatabaseAction$, "AlterDatabaseAction$", 35, oncia_DatabaseManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AlterDatabaseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterDatabaseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterDatabaseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterDatabaseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterDatabaseAction$_toString)], +oncia_AlterUserAction$, "AlterUserAction$", 35, oncia_UserManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_AlterUserAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterUserAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterUserAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterUserAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterUserAction$_toString)], +oncia_ExecuteAdminProcedureAction$, "ExecuteAdminProcedureAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteAdminProcedureAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteAdminProcedureAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteAdminProcedureAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteAdminProcedureAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteAdminProcedureAction$_toString)], +oncia_ExecuteProcedureAction$, "ExecuteProcedureAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteProcedureAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteProcedureAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteProcedureAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteProcedureAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteProcedureAction$_toString)], +oncia_ExecuteBoostedProcedureAction$, "ExecuteBoostedProcedureAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteBoostedProcedureAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteBoostedProcedureAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteBoostedProcedureAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteBoostedProcedureAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteBoostedProcedureAction$_toString)], +oncia_ExecuteFunctionAction$, "ExecuteFunctionAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteFunctionAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteFunctionAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteFunctionAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteFunctionAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteFunctionAction$_toString)], +oncia_ExecuteBoostedFunctionAction$, "ExecuteBoostedFunctionAction$", 35, oncia_DbmsAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ExecuteBoostedFunctionAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExecuteBoostedFunctionAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExecuteBoostedFunctionAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExecuteBoostedFunctionAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExecuteBoostedFunctionAction$_toString)], +oncia_CreateIndexAction$, "CreateIndexAction$", 35, oncia_IndexManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateIndexAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateIndexAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateIndexAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateIndexAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateIndexAction$_toString)], +oncia_CreateConstraintAction$, "CreateConstraintAction$", 35, oncia_ConstraintManagementAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CreateConstraintAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateConstraintAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateConstraintAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateConstraintAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateConstraintAction$_toString)], +oncia_DatabasePrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, +oncia_UserAllQualifier, "UserAllQualifier", 35, jl_Object, [oncia_DatabasePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_UserAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UserAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_UserAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_UserAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UserAllQualifier_hashCode), "$toString", +$rt_wrapFunction0(oncia_UserAllQualifier_toString), "$equals", $rt_wrapFunction1(oncia_UserAllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_UserAllQualifier_dup)], +oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0_apply0)], +oncia_TraverseAction$, "TraverseAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_TraverseAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_TraverseAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_TraverseAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TraverseAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_TraverseAction$_toString)], +oncia_MatchAction$, "MatchAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_MatchAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_MatchAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_MatchAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_MatchAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_MatchAction$_toString)], +oncia_ReadAction$, "ReadAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ReadAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_ReadAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ReadAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReadAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_ReadAction$_toString)], +oncia_MergeAdminAction$, "MergeAdminAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_MergeAdminAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_MergeAdminAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_MergeAdminAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_MergeAdminAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_MergeAdminAction$_toString)], +oncia_DeleteElementAction$, "DeleteElementAction$", 35, oncia_GraphAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DeleteElementAction$_productArity), "$productElement", $rt_wrapFunction1(oncia_DeleteElementAction$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DeleteElementAction$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DeleteElementAction$_hashCode), "$toString", $rt_wrapFunction0(oncia_DeleteElementAction$_toString)], oncia_NestedActionResource, 0, jl_Object, [oncia_ActionResourceBase], 3, 3, 0, 0, 0, -oncia_PropertiesResource, "PropertiesResource", 36, jl_Object, [oncia_NestedActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_PropertiesResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_PropertiesResource_productArity), "$productElement", $rt_wrapFunction1(oncia_PropertiesResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_PropertiesResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PropertiesResource_hashCode), -"$toString", $rt_wrapFunction0(oncia_PropertiesResource_toString), "$equals", $rt_wrapFunction1(oncia_PropertiesResource_equals)], -oncia_AllPropertyResource, "AllPropertyResource", 36, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllPropertyResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllPropertyResource_productArity), "$productElement", $rt_wrapFunction1(oncia_AllPropertyResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllPropertyResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllPropertyResource_hashCode), -"$toString", $rt_wrapFunction0(oncia_AllPropertyResource_toString), "$equals", $rt_wrapFunction1(oncia_AllPropertyResource_equals)], -oncia_LabelsResource, "LabelsResource", 36, jl_Object, [oncia_NestedActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LabelsResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LabelsResource_productArity), "$productElement", $rt_wrapFunction1(oncia_LabelsResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_LabelsResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LabelsResource_hashCode), "$toString", $rt_wrapFunction0(oncia_LabelsResource_toString), +oncia_LabelsResource, "LabelsResource", 35, jl_Object, [oncia_NestedActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LabelsResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LabelsResource_productArity), "$productElement", $rt_wrapFunction1(oncia_LabelsResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_LabelsResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LabelsResource_hashCode), "$toString", $rt_wrapFunction0(oncia_LabelsResource_toString), "$equals", $rt_wrapFunction1(oncia_LabelsResource_equals)], -oncia_AllLabelResource, "AllLabelResource", 36, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllLabelResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllLabelResource_productArity), "$productElement", $rt_wrapFunction1(oncia_AllLabelResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllLabelResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllLabelResource_hashCode), "$toString", $rt_wrapFunction0(oncia_AllLabelResource_toString), +oncia_AllLabelResource, "AllLabelResource", 35, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllLabelResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllLabelResource_productArity), "$productElement", $rt_wrapFunction1(oncia_AllLabelResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllLabelResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllLabelResource_hashCode), "$toString", $rt_wrapFunction0(oncia_AllLabelResource_toString), "$equals", $rt_wrapFunction1(oncia_AllLabelResource_equals)], -onciafn_Neo4jASTFactory$settingQualifier$lambda$_222_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(onciafn_Neo4jASTFactory$settingQualifier$lambda$_222_0_accept)], -oncie_NaN, "NaN", 64, oncie_Expression, [oncie_Literal, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_NaN_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_NaN_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_NaN_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_NaN_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_NaN_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NaN_productArity), "$productElement", $rt_wrapFunction1(oncie_NaN_productElement), -"$productIterator", $rt_wrapFunction0(oncie_NaN_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NaN_hashCode), "$toString", $rt_wrapFunction0(oncie_NaN_toString), "$equals", $rt_wrapFunction1(oncie_NaN_equals)], -oncie_True, "True", 64, oncie_Expression, [oncie_BooleanLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_True_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_True_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_True_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_True_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_True_productPrefix), "$productArity", $rt_wrapFunction0(oncie_True_productArity), "$productElement", -$rt_wrapFunction1(oncie_True_productElement), "$productIterator", $rt_wrapFunction0(oncie_True_productIterator), "$hashCode", $rt_wrapFunction0(oncie_True_hashCode), "$toString", $rt_wrapFunction0(oncie_True_toString), "$equals", $rt_wrapFunction1(oncie_True_equals)], -oncie_CountStar, "CountStar", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_CountStar_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_CountStar_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_CountStar_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_CountStar_productPrefix), "$productArity", $rt_wrapFunction0(oncie_CountStar_productArity), "$productElement", $rt_wrapFunction1(oncie_CountStar_productElement), "$productIterator", -$rt_wrapFunction0(oncie_CountStar_productIterator), "$hashCode", $rt_wrapFunction0(oncie_CountStar_hashCode), "$toString", $rt_wrapFunction0(oncie_CountStar_toString), "$equals", $rt_wrapFunction1(oncie_CountStar_equals)], -oncie_Infinity, "Infinity", 64, oncie_Expression, [oncie_Literal, ji_Serializable], 0, 3, [0,0,0], 0, ["$isConstantForQuery", $rt_wrapFunction0(oncie_Infinity_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_Infinity_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_Infinity_asCanonicalStringVal), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_Infinity_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_Infinity_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Infinity_productArity), -"$productElement", $rt_wrapFunction1(oncie_Infinity_productElement), "$productIterator", $rt_wrapFunction0(oncie_Infinity_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Infinity_hashCode), "$toString", $rt_wrapFunction0(oncie_Infinity_toString), "$equals", $rt_wrapFunction1(oncie_Infinity_equals)], -oncie_MapExpression, "MapExpression", 64, oncie_Expression, [oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_MapExpression_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_MapExpression_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_MapExpression_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_MapExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_MapExpression_productArity), "$productElement", -$rt_wrapFunction1(oncie_MapExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_MapExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_MapExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_MapExpression_toString), "$equals", $rt_wrapFunction1(oncie_MapExpression_equals)]]); -$rt_metadata([oncie_SemanticDirection, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_SemanticDirection$INCOMING$, "SemanticDirection$INCOMING$", 64, jl_Object, [oncie_SemanticDirection, s_Product, ji_Serializable], 0, 3, 0, oncie_SemanticDirection$INCOMING$_$callClinit, ["$productArity", $rt_wrapFunction0(oncie_SemanticDirection$INCOMING$_productArity), "$productElement", $rt_wrapFunction1(oncie_SemanticDirection$INCOMING$_productElement), "$productIterator", $rt_wrapFunction0(oncie_SemanticDirection$INCOMING$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SemanticDirection$INCOMING$_hashCode), -"$toString", $rt_wrapFunction0(oncie_SemanticDirection$INCOMING$_toString)], -oncie_SemanticDirection$BOTH$, "SemanticDirection$BOTH$", 64, jl_Object, [oncie_SemanticDirection, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncie_SemanticDirection$BOTH$_productArity), "$productElement", $rt_wrapFunction1(oncie_SemanticDirection$BOTH$_productElement), "$productIterator", $rt_wrapFunction0(oncie_SemanticDirection$BOTH$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SemanticDirection$BOTH$_hashCode), "$toString", $rt_wrapFunction0(oncie_SemanticDirection$BOTH$_toString)], -oncie_SemanticDirection$OUTGOING$, "SemanticDirection$OUTGOING$", 64, jl_Object, [oncie_SemanticDirection, s_Product, ji_Serializable], 0, 3, 0, oncie_SemanticDirection$OUTGOING$_$callClinit, ["$productArity", $rt_wrapFunction0(oncie_SemanticDirection$OUTGOING$_productArity), "$productElement", $rt_wrapFunction1(oncie_SemanticDirection$OUTGOING$_productElement), "$productIterator", $rt_wrapFunction0(oncie_SemanticDirection$OUTGOING$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SemanticDirection$OUTGOING$_hashCode), +oncia_PropertiesResource, "PropertiesResource", 35, jl_Object, [oncia_NestedActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_PropertiesResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_PropertiesResource_productArity), "$productElement", $rt_wrapFunction1(oncia_PropertiesResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_PropertiesResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PropertiesResource_hashCode), +"$toString", $rt_wrapFunction0(oncia_PropertiesResource_toString), "$equals", $rt_wrapFunction1(oncia_PropertiesResource_equals)], +oncia_AllPropertyResource, "AllPropertyResource", 35, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllPropertyResource_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllPropertyResource_productArity), "$productElement", $rt_wrapFunction1(oncia_AllPropertyResource_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllPropertyResource_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllPropertyResource_hashCode), +"$toString", $rt_wrapFunction0(oncia_AllPropertyResource_toString), "$equals", $rt_wrapFunction1(oncia_AllPropertyResource_equals)], +oncipvaf_DdlPrivilegeBuilder$GraphToken0, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0_apply0)], +oncia_RelationshipAllQualifier, "RelationshipAllQualifier", 35, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RelationshipAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RelationshipAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelationshipAllQualifier_hashCode), +"$toString", $rt_wrapFunction0(oncia_RelationshipAllQualifier_toString), "$equals", $rt_wrapFunction1(oncia_RelationshipAllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_RelationshipAllQualifier_dup)]]); +$rt_metadata([oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1_apply)], +oncia_LabelAllQualifier, "LabelAllQualifier", 35, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LabelAllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LabelAllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LabelAllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LabelAllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LabelAllQualifier_hashCode), "$toString", +$rt_wrapFunction0(oncia_LabelAllQualifier_toString), "$equals", $rt_wrapFunction1(oncia_LabelAllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_LabelAllQualifier_dup)], +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2_apply)], +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3_apply0)], +oncia_PatternQualifier, "PatternQualifier", 35, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_PatternQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_PatternQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_PatternQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_PatternQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PatternQualifier_hashCode), "$toString", +$rt_wrapFunction0(oncia_PatternQualifier_toString), "$equals", $rt_wrapFunction1(oncia_PatternQualifier_equals), "$dup", $rt_wrapFunction1(oncia_PatternQualifier_dup)], +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4_apply0)], +oncia_WaitableAdministrationCommand, 0, jl_Object, [oncia_WriteAdministrationCommand], 3, 3, 0, 0, 0, +oncia_CreateCompositeDatabase, "CreateCompositeDatabase", 35, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateCompositeDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateCompositeDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateCompositeDatabase_withGraph), +"$requireFeatureSupport", $rt_wrapFunction3(oncia_CreateCompositeDatabase_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_CreateCompositeDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateCompositeDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateCompositeDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateCompositeDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_CreateCompositeDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_CreateCompositeDatabase_position), +"$name", $rt_wrapFunction0(oncia_CreateCompositeDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_CreateCompositeDatabase_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateCompositeDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateCompositeDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateCompositeDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateCompositeDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateCompositeDatabase_hashCode), +"$toString", $rt_wrapFunction0(oncia_CreateCompositeDatabase_toString), "$equals", $rt_wrapFunction1(oncia_CreateCompositeDatabase_equals), "$dup", $rt_wrapFunction1(oncia_CreateCompositeDatabase_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateCompositeDatabase_withGraph0)], +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1_apply)], +oncia_WaitUntilComplete, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1_apply)], +oncia_Topology, "Topology", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Topology_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Topology_productArity), "$productElement", $rt_wrapFunction1(oncia_Topology_productElement), "$productIterator", $rt_wrapFunction0(oncia_Topology_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Topology_hashCode), "$toString", $rt_wrapFunction0(oncia_Topology_toString), "$equals", $rt_wrapFunction1(oncia_Topology_equals)], +oncia_CreateDatabase, "CreateDatabase", 35, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateDatabase_withGraph0), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_CreateDatabase_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_CreateDatabase_error), "$error5", $rt_wrapFunction1(oncia_CreateDatabase_error0), "$foldedOver", $rt_wrapFunction0(oncia_CreateDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_CreateDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_CreateDatabase_position), "$name", $rt_wrapFunction0(oncia_CreateDatabase_name), +"$semanticCheck", $rt_wrapFunction0(oncia_CreateDatabase_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateDatabase_toString), "$equals", $rt_wrapFunction1(oncia_CreateDatabase_equals), +"$dup", $rt_wrapFunction1(oncia_CreateDatabase_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateDatabase_withGraph)], +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2_apply)], +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3_apply)], +oncia_DropDatabaseAdditionalAction, 0, jl_Object, [], 1, 3, 0, 0, 0, +oncia_DestroyData$, "DestroyData$", 35, oncia_DropDatabaseAdditionalAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DestroyData$_productArity), "$productElement", $rt_wrapFunction1(oncia_DestroyData$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DestroyData$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DestroyData$_hashCode), "$toString", $rt_wrapFunction0(oncia_DestroyData$_toString)], +oncia_DumpData$, "DumpData$", 35, oncia_DropDatabaseAdditionalAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DumpData$_productArity), "$productElement", $rt_wrapFunction1(oncia_DumpData$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DumpData$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DumpData$_hashCode), "$toString", $rt_wrapFunction0(oncia_DumpData$_toString)], +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0_apply)], +oncia_DropDatabaseAliasAction, 0, jl_Object, [], 1, 3, 0, 0, 0, +oncia_DropDatabase, "DropDatabase", 35, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropDatabase_withGraph0), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_DropDatabase_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_DropDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_DropDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +$rt_wrapFunction0(oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_DropDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_DropDatabase_position), "$name", $rt_wrapFunction0(oncia_DropDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropDatabase_semanticCheck), +"$productPrefix", $rt_wrapFunction0(oncia_DropDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_DropDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_DropDatabase_toString), "$equals", $rt_wrapFunction1(oncia_DropDatabase_equals), "$dup", $rt_wrapFunction1(oncia_DropDatabase_dup), +"$withGraph0", $rt_wrapFunction1(oncia_DropDatabase_withGraph)], +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1_apply0)], +oncia_Restrict$, "Restrict$", 35, oncia_DropDatabaseAliasAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_Restrict$_productArity), "$productElement", $rt_wrapFunction1(oncia_Restrict$_productElement), "$productIterator", $rt_wrapFunction0(oncia_Restrict$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Restrict$_hashCode), "$toString", $rt_wrapFunction0(oncia_Restrict$_toString)], +oncia_CascadeAliases$, "CascadeAliases$", 35, oncia_DropDatabaseAliasAction, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_CascadeAliases$_productArity), "$productElement", $rt_wrapFunction1(oncia_CascadeAliases$_productElement), "$productIterator", $rt_wrapFunction0(oncia_CascadeAliases$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CascadeAliases$_hashCode), "$toString", $rt_wrapFunction0(oncia_CascadeAliases$_toString)], +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0_apply0)], +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1_apply)], +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_20, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2_apply0)], +oncia_AlterDatabase, "AlterDatabase", 35, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterDatabase_withGraph), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_AlterDatabase_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_AlterDatabase_error0), "$error5", $rt_wrapFunction1(oncia_AlterDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +$rt_wrapFunction0(oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_AlterDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_AlterDatabase_position), "$name", $rt_wrapFunction0(oncia_AlterDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_AlterDatabase_semanticCheck), +"$productPrefix", $rt_wrapFunction0(oncia_AlterDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AlterDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterDatabase_toString), "$equals", $rt_wrapFunction1(oncia_AlterDatabase_equals), "$dup", $rt_wrapFunction1(oncia_AlterDatabase_dup), +"$withGraph0", $rt_wrapFunction1(oncia_AlterDatabase_withGraph0)], +oncia_NoOptions$, "NoOptions$", 35, jl_Object, [oncia_Options, s_Product, ji_Serializable], 4, 3, 0, oncia_NoOptions$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_NoOptions$_productArity), "$productElement", $rt_wrapFunction1(oncia_NoOptions$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NoOptions$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NoOptions$_hashCode), "$toString", $rt_wrapFunction0(oncia_NoOptions$_toString)], +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_30, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3_apply)], +oncia_Access, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_ReadWriteAccess$, "ReadWriteAccess$", 35, jl_Object, [oncia_Access, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ReadWriteAccess$_productArity), "$productElement", $rt_wrapFunction1(oncia_ReadWriteAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ReadWriteAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReadWriteAccess$_hashCode), "$toString", $rt_wrapFunction0(oncia_ReadWriteAccess$_toString)], +oncia_ReadOnlyAccess$, "ReadOnlyAccess$", 35, jl_Object, [oncia_Access, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ReadOnlyAccess$_productArity), "$productElement", $rt_wrapFunction1(oncia_ReadOnlyAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ReadOnlyAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReadOnlyAccess$_hashCode), "$toString", $rt_wrapFunction0(oncia_ReadOnlyAccess$_toString)], +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0_apply)], +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1_apply0)], +oncia_StartDatabase, "StartDatabase", 35, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_StartDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_StartDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_StartDatabase_withGraph0), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_StartDatabase_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_StartDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_StartDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_StartDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_StartDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +$rt_wrapFunction0(oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_StartDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_StartDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_StartDatabase_position), "$name", $rt_wrapFunction0(oncia_StartDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_StartDatabase_semanticCheck), +"$productPrefix", $rt_wrapFunction0(oncia_StartDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_StartDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_StartDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_StartDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_StartDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_StartDatabase_toString), "$equals", $rt_wrapFunction1(oncia_StartDatabase_equals), "$dup", $rt_wrapFunction1(oncia_StartDatabase_dup), +"$withGraph0", $rt_wrapFunction1(oncia_StartDatabase_withGraph)], +oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0_apply0)], +oncia_StopDatabase, "StopDatabase", 35, jl_Object, [oncia_WaitableAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_StopDatabase_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_StopDatabase_useGraph), "$withGraph", $rt_wrapFunction1(oncia_StopDatabase_withGraph), "$requireFeatureSupport", +$rt_wrapFunction3(oncia_StopDatabase_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_StopDatabase_error), "$foldedOver", $rt_wrapFunction0(oncia_StopDatabase_foldedOver), "$folder", $rt_wrapFunction0(oncia_StopDatabase_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_StopDatabase_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +$rt_wrapFunction0(oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_StopDatabase_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$waitUntilComplete", $rt_wrapFunction0(oncia_StopDatabase_waitUntilComplete), "$position", $rt_wrapFunction0(oncia_StopDatabase_position), "$name", $rt_wrapFunction0(oncia_StopDatabase_name), "$semanticCheck", $rt_wrapFunction0(oncia_StopDatabase_semanticCheck), +"$productPrefix", $rt_wrapFunction0(oncia_StopDatabase_productPrefix), "$productArity", $rt_wrapFunction0(oncia_StopDatabase_productArity), "$productElement", $rt_wrapFunction1(oncia_StopDatabase_productElement), "$productIterator", $rt_wrapFunction0(oncia_StopDatabase_productIterator), "$hashCode", $rt_wrapFunction0(oncia_StopDatabase_hashCode), "$toString", $rt_wrapFunction0(oncia_StopDatabase_toString), "$equals", $rt_wrapFunction1(oncia_StopDatabase_equals), "$dup", $rt_wrapFunction1(oncia_StopDatabase_dup), +"$withGraph0", $rt_wrapFunction1(oncia_StopDatabase_withGraph0)], +oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0_apply0)], +oncia_NoWait$, "NoWait$", 35, jl_Object, [oncia_WaitUntilComplete, s_Product, ji_Serializable], 4, 3, 0, oncia_NoWait$_$callClinit, ["$org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq", $rt_wrapFunction1(oncia_NoWait$_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq), "$name", $rt_wrapFunction0(oncia_NoWait$_name0), "$productArity", $rt_wrapFunction0(oncia_NoWait$_productArity), "$productElement", $rt_wrapFunction1(oncia_NoWait$_productElement), "$productIterator", +$rt_wrapFunction0(oncia_NoWait$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NoWait$_hashCode), "$toString", $rt_wrapFunction0(oncia_NoWait$_toString)], +oncia_IndefiniteWait$, "IndefiniteWait$", 35, jl_Object, [oncia_WaitUntilComplete, s_Product, ji_Serializable], 4, 3, 0, oncia_IndefiniteWait$_$callClinit, ["$org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq", $rt_wrapFunction1(oncia_IndefiniteWait$_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq), "$name", $rt_wrapFunction0(oncia_IndefiniteWait$_name0), "$productArity", $rt_wrapFunction0(oncia_IndefiniteWait$_productArity), "$productElement", $rt_wrapFunction1(oncia_IndefiniteWait$_productElement), +"$productIterator", $rt_wrapFunction0(oncia_IndefiniteWait$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IndefiniteWait$_hashCode), "$toString", $rt_wrapFunction0(oncia_IndefiniteWait$_toString)], +oncia_TimeoutAfter, "TimeoutAfter", 35, jl_Object, [oncia_WaitUntilComplete, s_Product, ji_Serializable], 0, 3, 0, 0, ["$org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq", $rt_wrapFunction1(oncia_TimeoutAfter_org$neo4j$cypher$internal$ast$WaitUntilComplete$_setter_$DEFAULT_TIMEOUT_$eq), "$name", $rt_wrapFunction0(oncia_TimeoutAfter_name), "$productPrefix", $rt_wrapFunction0(oncia_TimeoutAfter_productPrefix), "$productArity", $rt_wrapFunction0(oncia_TimeoutAfter_productArity), "$productElement", +$rt_wrapFunction1(oncia_TimeoutAfter_productElement), "$productIterator", $rt_wrapFunction0(oncia_TimeoutAfter_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TimeoutAfter_hashCode), "$toString", $rt_wrapFunction0(oncia_TimeoutAfter_toString), "$equals", $rt_wrapFunction1(oncia_TimeoutAfter_equals)], +oncia_SingleNamedDatabaseScope, "SingleNamedDatabaseScope", 35, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_productArity), "$productElement", $rt_wrapFunction1(oncia_SingleNamedDatabaseScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_hashCode), +"$toString", $rt_wrapFunction0(oncia_SingleNamedDatabaseScope_toString), "$equals", $rt_wrapFunction1(oncia_SingleNamedDatabaseScope_equals), "$dup", $rt_wrapFunction1(oncia_SingleNamedDatabaseScope_dup)], +oncia_ShowDatabase$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_DefaultDatabaseScope, "DefaultDatabaseScope", 35, jl_Object, [oncia_DatabaseScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_DefaultDatabaseScope_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DefaultDatabaseScope_productArity), "$productElement", $rt_wrapFunction1(oncia_DefaultDatabaseScope_productElement), "$productIterator", $rt_wrapFunction0(oncia_DefaultDatabaseScope_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DefaultDatabaseScope_hashCode), +"$toString", $rt_wrapFunction0(oncia_DefaultDatabaseScope_toString), "$equals", $rt_wrapFunction1(oncia_DefaultDatabaseScope_equals), "$dup", $rt_wrapFunction1(oncia_DefaultDatabaseScope_dup)], +oncia_CreateLocalDatabaseAlias, "CreateLocalDatabaseAlias", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_withGraph0), +"$requireFeatureSupport", $rt_wrapFunction3(oncia_CreateLocalDatabaseAlias_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_CreateLocalDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_name), +"$semanticCheck", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateLocalDatabaseAlias_toString), +"$equals", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateLocalDatabaseAlias_withGraph)], +oncia_CreateRemoteDatabaseAlias, "CreateRemoteDatabaseAlias", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_withGraph), +"$requireFeatureSupport", $rt_wrapFunction3(oncia_CreateRemoteDatabaseAlias_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_CreateRemoteDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_name), +"$semanticCheck", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateRemoteDatabaseAlias_toString), +"$equals", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateRemoteDatabaseAlias_withGraph0)], +oncia_DropDatabaseAlias, "DropDatabaseAlias", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_DropDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_DropDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_DropDatabaseAlias_withGraph), +"$requireFeatureSupport", $rt_wrapFunction3(oncia_DropDatabaseAlias_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_DropDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_DropDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_DropDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", +$rt_wrapFunction0(oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_DropDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_DropDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_DropDatabaseAlias_name), "$semanticCheck", $rt_wrapFunction0(oncia_DropDatabaseAlias_semanticCheck), "$productPrefix", +$rt_wrapFunction0(oncia_DropDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_DropDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_DropDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_DropDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DropDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_DropDatabaseAlias_toString), "$equals", $rt_wrapFunction1(oncia_DropDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_DropDatabaseAlias_dup), +"$withGraph0", $rt_wrapFunction1(oncia_DropDatabaseAlias_withGraph0)]]); +$rt_metadata([oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0_apply)], +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1_apply0)], +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_20, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2_apply0)], +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_30, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3_apply)], +oncia_AlterRemoteDatabaseAlias, "AlterRemoteDatabaseAlias", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_withGraph0), +"$requireFeatureSupport", $rt_wrapFunction3(oncia_AlterRemoteDatabaseAlias_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_AlterRemoteDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_name), +"$semanticCheck", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterRemoteDatabaseAlias_toString), +"$equals", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_dup), "$withGraph0", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias_withGraph)], +oncia_AlterLocalDatabaseAlias, "AlterLocalDatabaseAlias", 35, jl_Object, [oncia_WriteAdministrationCommand, ji_Serializable], 4, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_returnColumns), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$super$dup), "$useGraph", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_useGraph), "$withGraph", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_withGraph0), +"$requireFeatureSupport", $rt_wrapFunction3(oncia_AlterLocalDatabaseAlias_requireFeatureSupport), "$error4", $rt_wrapFunction2(oncia_AlterLocalDatabaseAlias_error), "$foldedOver", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_foldedOver), "$folder", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_folder), "$org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$WriteAdministrationCommand$_setter_$isReadOnly_$eq), +"$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar), "$org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_org$neo4j$cypher$internal$ast$AdministrationCommand$$useGraphVar_$eq), "$position", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_position), "$name", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_name), "$semanticCheck", +$rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_productArity), "$productElement", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_productElement), "$productIterator", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_hashCode), "$toString", $rt_wrapFunction0(oncia_AlterLocalDatabaseAlias_toString), +"$equals", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_equals), "$dup", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_dup), "$withGraph0", $rt_wrapFunction1(oncia_AlterLocalDatabaseAlias_withGraph)], +oncia_ShowAliases$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_ParameterName, "ParameterName", 35, jl_Object, [oncia_DatabaseName, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_ParameterName_position), "$productPrefix", $rt_wrapFunction0(oncia_ParameterName_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ParameterName_productArity), "$productElement", $rt_wrapFunction1(oncia_ParameterName_productElement), "$productIterator", $rt_wrapFunction0(oncia_ParameterName_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ParameterName_hashCode), +"$toString", $rt_wrapFunction0(oncia_ParameterName_toString), "$equals", $rt_wrapFunction1(oncia_ParameterName_equals), "$dup", $rt_wrapFunction1(oncia_ParameterName_dup)], +oncia_NamespacedName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_LiteralBuilder$0, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncie_MapExpression, "MapExpression", 62, oncie_Expression, [oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_MapExpression_position), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_MapExpression_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_MapExpression_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_MapExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_MapExpression_productArity), "$productElement", +$rt_wrapFunction1(oncie_MapExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_MapExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_MapExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_MapExpression_toString), "$equals", $rt_wrapFunction1(oncie_MapExpression_equals)], +oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0_apply0)], +oncipcd_DeprecatedChars, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0, "SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0", 65, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0_apply)], +oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0, "SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0", 65, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0_apply)], +oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0_apply)], +oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0_apply)], +oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1_apply0)], +oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0_apply0)], +oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0_apply)], +oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0_apply)], +oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1_apply0)], +oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0_apply)], +oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0_apply)], +oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0_apply0)], +oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0_apply0)], +oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0_apply0)], +oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0_apply)], +oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0_apply)], +oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0_apply)], +oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0_apply)], +oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply40", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0_apply0)], +oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_00, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0_apply)], +oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0_apply)], +oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_00, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0_apply)], +oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0_apply0)], +oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_00, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0_accept)], +oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper0, "DdlShowBuilder$ShowWrapper", 47, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productPrefix0), "$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_hashCode), +"$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_toString0), "$equals", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper_equals)], +oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0_apply)], +oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0_apply)], +oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0_apply0)], +oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0_apply)], +oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0_apply)], +oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0_apply)], +oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0_apply)], +oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0_apply0)]]); +$rt_metadata([oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6_apply)], +oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7_apply)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0_apply)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1_apply0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2_apply)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3_apply0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4_apply0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5_apply0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6_apply0)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7_apply)], +oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8_apply)], +oncipvaf_DdlBuilder$$anon$10, "DdlBuilder$$anon$1", 47, oncie_ExplicitParameter, [oncie_SensitiveParameter], 4, 3, [oncipvaf_DdlBuilder,0,0], 0, 0, +oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0_apply)], +oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0_apply)], +oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1_apply)], +oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1_apply)], +oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0_apply)], +oncipvaf_DdlPrivilegeBuilder$GraphToken, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0_apply)], +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2_apply0)], +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_30, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3_apply)], +oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_40, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4_apply)], +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1_apply)], +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0_apply)], +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1_apply)], +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2_apply)], +oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3_apply)], +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0_apply0)], +oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1_apply)], +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0_apply)], +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1_apply0)], +oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2_apply)]]); +$rt_metadata([oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3_apply0)], +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0_apply0)], +oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1_apply)], +oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0_apply)], +oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0_apply)], +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0_apply0)], +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1_apply)], +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2_apply)], +oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3_apply0)], +oncipvaf_LiteralBuilder$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0_apply)], +jnci_AsciiCharset, 0, jnc_Charset, [], 0, 3, 0, 0, 0, +jnci_Iso8859Charset, 0, jnc_Charset, [], 0, 3, 0, 0, 0, +jnci_UTF16Charset, 0, jnc_Charset, [], 0, 3, 0, 0, 0, +oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_160_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_160_0_apply)], +oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0, "UnmappedUnion$checkColumnNamesAgree$lambda$_8_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0_apply)], +oncia_AdministrationCommand$semanticCheck$lambda$_13_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_AdministrationCommand$semanticCheck$lambda$_13_0_apply)], +oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0_apply)], +oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0_apply)], +oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3_applyOrElse)], +oncip_CypherErrorVocabulary$displayName$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$displayName$lambda$_5_0_apply)], +oncip_CypherErrorVocabulary$displayName$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$displayName$lambda$_5_1_apply)], +onciu_UnknownSize$, "UnknownSize$", 52, jl_Object, [onciu_BucketSize, s_Product, ji_Serializable], 4, 3, 0, onciu_UnknownSize$_$callClinit, ["$productArity", $rt_wrapFunction0(onciu_UnknownSize$_productArity), "$productElement", $rt_wrapFunction1(onciu_UnknownSize$_productElement), "$productIterator", $rt_wrapFunction0(onciu_UnknownSize$_productIterator), "$hashCode", $rt_wrapFunction0(onciu_UnknownSize$_hashCode), "$toString", $rt_wrapFunction0(onciu_UnknownSize$_toString)], +oncias_SemanticCheck$$setState$lambda$_7_0, "SemanticCheck$$setState$lambda$_7_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$setState$lambda$_7_0_apply)], +oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1_applyOrElse)], +oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_0_apply)], +oncia_ReturnItems$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ReturnItems$$anonfun$1_applyOrElse)], +oncia_ReturnItems$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ReturnItems$$anonfun$2_applyOrElse)], +oncia_ReturnItems$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ReturnItems$$anonfun$3_applyOrElse)], +oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_1_apply)], +oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_2_2_apply)], +oncia_UnaliasedReturnItem$_init_$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnaliasedReturnItem$_init_$lambda$_31_0_apply)], +oncia_UnaliasedReturnItem$_init_$lambda$_31_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnaliasedReturnItem$_init_$lambda$_31_1_apply)], +oncia_UsingIndexHint$UsingIndexHintSpec, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_UsingIndexHint$SeekOrScan$, "UsingIndexHint$SeekOrScan$", 35, jl_Object, [oncia_UsingIndexHint$UsingIndexHintSpec, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOrScan$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$SeekOrScan$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOrScan$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOrScan$_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOrScan$_toString)], +oncia_UsingIndexHint$SeekOnly$, "UsingIndexHint$SeekOnly$", 35, jl_Object, [oncia_UsingIndexHint$UsingIndexHintSpec, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOnly$_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint$SeekOnly$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOnly$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOnly$_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint$SeekOnly$_toString)], +oncia_UsingIndexHint, "UsingIndexHint", 35, jl_Object, [oncia_LeafPlanHint, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_UsingIndexHint_semanticCheck), "$expectType1", $rt_wrapFunction2(oncia_UsingIndexHint_expectType0), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_UsingIndexHint_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_UsingIndexHint_expectType$default$5), "$ensureDefined", $rt_wrapFunction1(oncia_UsingIndexHint_ensureDefined), +"$variable4", $rt_wrapFunction0(oncia_UsingIndexHint_variable), "$position", $rt_wrapFunction0(oncia_UsingIndexHint_position), "$productPrefix", $rt_wrapFunction0(oncia_UsingIndexHint_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UsingIndexHint_productArity), "$productElement", $rt_wrapFunction1(oncia_UsingIndexHint_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingIndexHint_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingIndexHint_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingIndexHint_toString), +"$equals", $rt_wrapFunction1(oncia_UsingIndexHint_equals), "$dup", $rt_wrapFunction1(oncia_UsingIndexHint_dup)], +oncipvaf_Cypher5AstUtil$, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciu_NonEmptyList$, 0, jl_Object, [], 4, 3, 0, onciu_NonEmptyList$_$callClinit, 0, +oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1_applyOrElse0)], +oncia_LoadCSV, "LoadCSV", 35, jl_Object, [oncia_Clause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_LoadCSV_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_LoadCSV_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_LoadCSV_shouldRunQPPChecks), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_LoadCSV_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_LoadCSV_expectType$default$5), +"$error4", $rt_wrapFunction2(oncia_LoadCSV_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_LoadCSV_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_LoadCSV_foldedOver), "$folder", $rt_wrapFunction0(oncia_LoadCSV_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_LoadCSV_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_LoadCSV_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", +$rt_wrapFunction1(oncia_LoadCSV_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$position", $rt_wrapFunction0(oncia_LoadCSV_position), "$name", $rt_wrapFunction0(oncia_LoadCSV_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_LoadCSV_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_LoadCSV_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadCSV_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadCSV_productElement), +"$productIterator", $rt_wrapFunction0(oncia_LoadCSV_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadCSV_hashCode), "$toString", $rt_wrapFunction0(oncia_LoadCSV_toString), "$equals", $rt_wrapFunction1(oncia_LoadCSV_equals), "$dup", $rt_wrapFunction1(oncia_LoadCSV_dup)], +oncie_QuantifiedPath$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_QuantifiedPath$$apply$lambda$_1_0_apply)], +oncie_SemanticDirection, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_SemanticDirection$OUTGOING$, "SemanticDirection$OUTGOING$", 62, jl_Object, [oncie_SemanticDirection, s_Product, ji_Serializable], 0, 3, 0, oncie_SemanticDirection$OUTGOING$_$callClinit, ["$productArity", $rt_wrapFunction0(oncie_SemanticDirection$OUTGOING$_productArity), "$productElement", $rt_wrapFunction1(oncie_SemanticDirection$OUTGOING$_productElement), "$productIterator", $rt_wrapFunction0(oncie_SemanticDirection$OUTGOING$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SemanticDirection$OUTGOING$_hashCode), "$toString", $rt_wrapFunction0(oncie_SemanticDirection$OUTGOING$_toString)], -oncie_OctalIntegerLiteral, 0, oncie_Expression, [oncie_IntegerLiteral], 1, 3, 0, 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_OctalIntegerLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_OctalIntegerLiteral_isConstantForQuery), "$value1", $rt_wrapFunction0(oncie_OctalIntegerLiteral_value)], -oncie_SignedOctalIntegerLiteral, "SignedOctalIntegerLiteral", 64, oncie_OctalIntegerLiteral, [oncie_SignedIntegerLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$stringVal", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_productArity), -"$productElement", $rt_wrapFunction1(oncie_SignedOctalIntegerLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral_toString), "$equals", $rt_wrapFunction1(oncie_SignedOctalIntegerLiteral_equals)], -oncie_HexIntegerLiteral, 0, oncie_Expression, [oncie_IntegerLiteral], 1, 3, 0, 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_HexIntegerLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_HexIntegerLiteral_isConstantForQuery), "$value1", $rt_wrapFunction0(oncie_HexIntegerLiteral_value)], -oncie_SignedHexIntegerLiteral, "SignedHexIntegerLiteral", 64, oncie_HexIntegerLiteral, [oncie_SignedIntegerLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$stringVal", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_asSensitiveLiteral), "$productPrefix", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_productArity), -"$productElement", $rt_wrapFunction1(oncie_SignedHexIntegerLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral_toString), "$equals", $rt_wrapFunction1(oncie_SignedHexIntegerLiteral_equals)], -oncie_DoubleLiteral, 0, jl_Object, [oncie_NumberLiteral], 3, 3, 0, 0, 0, -oncie_DecimalDoubleLiteral, "DecimalDoubleLiteral", 64, oncie_Expression, [oncie_DoubleLiteral, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_isConstantForQuery), "$stringVal", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_stringVal), "$position", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_position), "$asSensitiveLiteral", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_asSensitiveLiteral), -"$productPrefix", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_productPrefix), "$productArity", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_productArity), "$productElement", $rt_wrapFunction1(oncie_DecimalDoubleLiteral_productElement), "$productIterator", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_productIterator), "$hashCode", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_hashCode), "$toString", $rt_wrapFunction0(oncie_DecimalDoubleLiteral_toString), "$equals", $rt_wrapFunction1(oncie_DecimalDoubleLiteral_equals)], -oncia_ExistsExpression, "ExistsExpression", 36, oncie_Expression, [oncia_FullSubqueryExpression, oncie_BooleanExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncia_ExistsExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncia_ExistsExpression_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncia_ExistsExpression_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_ExistsExpression_isConstantForQuery), "$query", $rt_wrapFunction0(oncia_ExistsExpression_query), -"$position", $rt_wrapFunction0(oncia_ExistsExpression_position), "$computedIntroducedVariables", $rt_wrapFunction0(oncia_ExistsExpression_computedIntroducedVariables), "$computedScopeDependencies", $rt_wrapFunction0(oncia_ExistsExpression_computedScopeDependencies), "$withQuery", $rt_wrapFunction1(oncia_ExistsExpression_withQuery), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncia_ExistsExpression_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncia_ExistsExpression_withComputedScopeDependencies), -"$subqueryAstNode", $rt_wrapFunction0(oncia_ExistsExpression_subqueryAstNode), "$productPrefix", $rt_wrapFunction0(oncia_ExistsExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ExistsExpression_productArity), "$productElement", $rt_wrapFunction1(oncia_ExistsExpression_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExistsExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExistsExpression_hashCode), "$toString", $rt_wrapFunction0(oncia_ExistsExpression_toString), -"$equals", $rt_wrapFunction1(oncia_ExistsExpression_equals), "$dup", $rt_wrapFunction1(oncia_ExistsExpression_dup1), "$dup0", $rt_wrapFunction1(oncia_ExistsExpression_dup0)], -oncia_CountExpression, "CountExpression", 36, oncie_Expression, [oncia_FullSubqueryExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncia_CountExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncia_CountExpression_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncia_CountExpression_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_CountExpression_isConstantForQuery), "$query", $rt_wrapFunction0(oncia_CountExpression_query), -"$position", $rt_wrapFunction0(oncia_CountExpression_position), "$computedIntroducedVariables", $rt_wrapFunction0(oncia_CountExpression_computedIntroducedVariables), "$computedScopeDependencies", $rt_wrapFunction0(oncia_CountExpression_computedScopeDependencies), "$withQuery", $rt_wrapFunction1(oncia_CountExpression_withQuery), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncia_CountExpression_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncia_CountExpression_withComputedScopeDependencies), -"$subqueryAstNode", $rt_wrapFunction0(oncia_CountExpression_subqueryAstNode), "$productPrefix", $rt_wrapFunction0(oncia_CountExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CountExpression_productArity), "$productElement", $rt_wrapFunction1(oncia_CountExpression_productElement), "$productIterator", $rt_wrapFunction0(oncia_CountExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CountExpression_hashCode), "$toString", $rt_wrapFunction0(oncia_CountExpression_toString), "$equals", -$rt_wrapFunction1(oncia_CountExpression_equals), "$dup", $rt_wrapFunction1(oncia_CountExpression_dup1), "$dup0", $rt_wrapFunction1(oncia_CountExpression_dup0)], -oncia_CollectExpression, "CollectExpression", 36, oncie_Expression, [oncia_FullSubqueryExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncia_CollectExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncia_CollectExpression_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncia_CollectExpression_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncia_CollectExpression_isConstantForQuery), "$query", $rt_wrapFunction0(oncia_CollectExpression_query), -"$position", $rt_wrapFunction0(oncia_CollectExpression_position), "$computedIntroducedVariables", $rt_wrapFunction0(oncia_CollectExpression_computedIntroducedVariables), "$computedScopeDependencies", $rt_wrapFunction0(oncia_CollectExpression_computedScopeDependencies), "$withQuery", $rt_wrapFunction1(oncia_CollectExpression_withQuery), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncia_CollectExpression_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncia_CollectExpression_withComputedScopeDependencies), -"$subqueryAstNode", $rt_wrapFunction0(oncia_CollectExpression_subqueryAstNode), "$productPrefix", $rt_wrapFunction0(oncia_CollectExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CollectExpression_productArity), "$productElement", $rt_wrapFunction1(oncia_CollectExpression_productElement), "$productIterator", $rt_wrapFunction0(oncia_CollectExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CollectExpression_hashCode), "$toString", $rt_wrapFunction0(oncia_CollectExpression_toString), -"$equals", $rt_wrapFunction1(oncia_CollectExpression_equals), "$dup", $rt_wrapFunction1(oncia_CollectExpression_dup0), "$dup0", $rt_wrapFunction1(oncia_CollectExpression_dup1)], -oncie_MapProjection, "MapProjection", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_MapProjection_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_MapProjection_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_MapProjection_productPrefix), "$productArity", $rt_wrapFunction0(oncie_MapProjection_productArity), "$productElement", $rt_wrapFunction1(oncie_MapProjection_productElement), "$productIterator", $rt_wrapFunction0(oncie_MapProjection_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_MapProjection_hashCode), "$toString", $rt_wrapFunction0(oncie_MapProjection_toString), "$equals", $rt_wrapFunction1(oncie_MapProjection_equals)], -oncie_ListComprehension$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncie_PatternComprehension, "PatternComprehension", 64, oncie_Expression, [oncie_SubqueryExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncie_PatternComprehension_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_PatternComprehension_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncie_PatternComprehension_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_PatternComprehension_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_PatternComprehension_position), -"$computedIntroducedVariables", $rt_wrapFunction0(oncie_PatternComprehension_computedIntroducedVariables), "$computedScopeDependencies", $rt_wrapFunction0(oncie_PatternComprehension_computedScopeDependencies), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncie_PatternComprehension_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncie_PatternComprehension_withComputedScopeDependencies), "$subqueryAstNode", $rt_wrapFunction0(oncie_PatternComprehension_subqueryAstNode), -"$productPrefix", $rt_wrapFunction0(oncie_PatternComprehension_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PatternComprehension_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternComprehension_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternComprehension_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternComprehension_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternComprehension_toString), "$equals", $rt_wrapFunction1(oncie_PatternComprehension_equals), -"$dup", $rt_wrapFunction1(oncie_PatternComprehension_dup1), "$dup0", $rt_wrapFunction1(oncie_PatternComprehension_dup0)], -oncie_RelationshipsPattern, "RelationshipsPattern", 64, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$foldedOver", $rt_wrapFunction0(oncie_RelationshipsPattern_foldedOver), "$folder", $rt_wrapFunction0(oncie_RelationshipsPattern_folder), "$position", $rt_wrapFunction0(oncie_RelationshipsPattern_position), "$productPrefix", $rt_wrapFunction0(oncie_RelationshipsPattern_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RelationshipsPattern_productArity), "$productElement", $rt_wrapFunction1(oncie_RelationshipsPattern_productElement), -"$productIterator", $rt_wrapFunction0(oncie_RelationshipsPattern_productIterator), "$hashCode", $rt_wrapFunction0(oncie_RelationshipsPattern_hashCode), "$toString", $rt_wrapFunction0(oncie_RelationshipsPattern_toString), "$equals", $rt_wrapFunction1(oncie_RelationshipsPattern_equals), "$dup", $rt_wrapFunction1(oncie_RelationshipsPattern_dup)], -oncie_ReduceExpression$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncie_IterableExpressionWithInfo, 0, jl_Object, [oncief_FunctionWithName, oncie_TypeSignatures], 3, 3, 0, 0, 0, -oncie_AllIterablePredicate$, 0, jl_Object, [oncie_IterableExpressionWithInfo, ji_Serializable], 4, 3, 0, oncie_AllIterablePredicate$_$callClinit, 0, -oncie_AnyIterablePredicate$, 0, jl_Object, [oncie_IterableExpressionWithInfo, ji_Serializable], 4, 3, 0, oncie_AnyIterablePredicate$_$callClinit, 0, -oncie_NoneIterablePredicate$, 0, jl_Object, [oncie_IterableExpressionWithInfo, ji_Serializable], 4, 3, 0, oncie_NoneIterablePredicate$_$callClinit, 0, -oncie_SingleIterablePredicate$, 0, jl_Object, [oncie_IterableExpressionWithInfo, ji_Serializable], 4, 3, 0, oncie_SingleIterablePredicate$_$callClinit, 0, -oncief_Normalize$, "Normalize$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Normalize$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Normalize$_name), "$productArity", $rt_wrapFunction0(oncief_Normalize$_productArity), "$productElement", $rt_wrapFunction1(oncief_Normalize$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Normalize$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Normalize$_hashCode), "$toString", $rt_wrapFunction0(oncief_Normalize$_toString), "$signatures", -$rt_wrapFunction0(oncief_Normalize$_signatures0)], -oncief_Trim$, "Trim$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Trim$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Trim$_name), "$productArity", $rt_wrapFunction0(oncief_Trim$_productArity), "$productElement", $rt_wrapFunction1(oncief_Trim$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Trim$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Trim$_hashCode), "$toString", $rt_wrapFunction0(oncief_Trim$_toString), "$signatures", $rt_wrapFunction0(oncief_Trim$_signatures0)], -oncie_ShortestPathExpression, "ShortestPathExpression", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ShortestPathExpression_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ShortestPathExpression_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ShortestPathExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ShortestPathExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_ShortestPathExpression_productElement), -"$productIterator", $rt_wrapFunction0(oncie_ShortestPathExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ShortestPathExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_ShortestPathExpression_toString), "$equals", $rt_wrapFunction1(oncie_ShortestPathExpression_equals)], -oncie_PatternExpression, "PatternExpression", 64, oncie_Expression, [oncie_SubqueryExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$introducedVariables", $rt_wrapFunction0(oncie_PatternExpression_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_PatternExpression_scopeDependencies), "$dependencies", $rt_wrapFunction0(oncie_PatternExpression_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_PatternExpression_isConstantForQuery), "$computedIntroducedVariables", $rt_wrapFunction0(oncie_PatternExpression_computedIntroducedVariables), -"$computedScopeDependencies", $rt_wrapFunction0(oncie_PatternExpression_computedScopeDependencies), "$position", $rt_wrapFunction0(oncie_PatternExpression_position), "$withComputedIntroducedVariables", $rt_wrapFunction1(oncie_PatternExpression_withComputedIntroducedVariables), "$withComputedScopeDependencies", $rt_wrapFunction1(oncie_PatternExpression_withComputedScopeDependencies), "$subqueryAstNode", $rt_wrapFunction0(oncie_PatternExpression_subqueryAstNode), "$productPrefix", $rt_wrapFunction0(oncie_PatternExpression_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_PatternExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_PatternExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_PatternExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PatternExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_PatternExpression_toString), "$equals", $rt_wrapFunction1(oncie_PatternExpression_equals), "$dup", $rt_wrapFunction1(oncie_PatternExpression_dup0), "$dup0", $rt_wrapFunction1(oncie_PatternExpression_dup1)], -oncie_LeftUnaryOperatorExpression, 0, jl_Object, [oncie_OperatorExpression], 3, 3, 0, 0, 0, -oncie_Not, "Not", 64, oncie_Expression, [oncie_BooleanExpression, oncie_LeftUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Not_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Not_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Not_canonicalOperatorSymbol), "$rhs0", $rt_wrapFunction0(oncie_Not_rhs), "$position", $rt_wrapFunction0(oncie_Not_position), "$productPrefix", $rt_wrapFunction0(oncie_Not_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_Not_productArity), "$productElement", $rt_wrapFunction1(oncie_Not_productElement), "$productIterator", $rt_wrapFunction0(oncie_Not_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Not_hashCode), "$toString", $rt_wrapFunction0(oncie_Not_toString), "$equals", $rt_wrapFunction1(oncie_Not_equals)], -oncie_MapProjectionElement, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_LiteralEntry, "LiteralEntry", 64, oncie_Expression, [oncie_MapProjectionElement, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_LiteralEntry_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_LiteralEntry_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_LiteralEntry_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LiteralEntry_productArity), "$productElement", $rt_wrapFunction1(oncie_LiteralEntry_productElement), "$productIterator", $rt_wrapFunction0(oncie_LiteralEntry_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_LiteralEntry_hashCode), "$toString", $rt_wrapFunction0(oncie_LiteralEntry_toString), "$equals", $rt_wrapFunction1(oncie_LiteralEntry_equals)], -oncie_PropertySelector, "PropertySelector", 64, oncie_Expression, [oncie_MapProjectionElement, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_PropertySelector_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_PropertySelector_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_PropertySelector_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PropertySelector_productArity), "$productElement", $rt_wrapFunction1(oncie_PropertySelector_productElement), "$productIterator", -$rt_wrapFunction0(oncie_PropertySelector_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PropertySelector_hashCode), "$toString", $rt_wrapFunction0(oncie_PropertySelector_toString), "$equals", $rt_wrapFunction1(oncie_PropertySelector_equals)], -oncie_VariableSelector, "VariableSelector", 64, oncie_Expression, [oncie_MapProjectionElement, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_VariableSelector_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_VariableSelector_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_VariableSelector_productPrefix), "$productArity", $rt_wrapFunction0(oncie_VariableSelector_productArity), "$productElement", $rt_wrapFunction1(oncie_VariableSelector_productElement), "$productIterator", -$rt_wrapFunction0(oncie_VariableSelector_productIterator), "$hashCode", $rt_wrapFunction0(oncie_VariableSelector_hashCode), "$toString", $rt_wrapFunction0(oncie_VariableSelector_toString), "$equals", $rt_wrapFunction1(oncie_VariableSelector_equals)], -oncie_AllPropertiesSelector, "AllPropertiesSelector", 64, oncie_Expression, [oncie_MapProjectionElement, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_AllPropertiesSelector_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_AllPropertiesSelector_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_AllPropertiesSelector_productPrefix), "$productArity", $rt_wrapFunction0(oncie_AllPropertiesSelector_productArity), "$productElement", $rt_wrapFunction1(oncie_AllPropertiesSelector_productElement), -"$productIterator", $rt_wrapFunction0(oncie_AllPropertiesSelector_productIterator), "$hashCode", $rt_wrapFunction0(oncie_AllPropertiesSelector_hashCode), "$toString", $rt_wrapFunction0(oncie_AllPropertiesSelector_toString), "$equals", $rt_wrapFunction1(oncie_AllPropertiesSelector_equals)], -oncie_ParenthesizedPath, "ParenthesizedPath", 64, oncie_PatternElement, [oncie_PathFactor, oncie_PatternAtom, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ParenthesizedPath_position), "$allVariables", $rt_wrapFunction0(oncie_ParenthesizedPath_allVariables), "$isBounded", $rt_wrapFunction0(oncie_ParenthesizedPath_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_ParenthesizedPath_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ParenthesizedPath_productArity), "$productElement", -$rt_wrapFunction1(oncie_ParenthesizedPath_productElement), "$productIterator", $rt_wrapFunction0(oncie_ParenthesizedPath_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ParenthesizedPath_hashCode), "$toString", $rt_wrapFunction0(oncie_ParenthesizedPath_toString), "$equals", $rt_wrapFunction1(oncie_ParenthesizedPath_equals), "$mapExpressions", $rt_wrapFunction1(oncie_ParenthesizedPath_mapExpressions)], -oncie_QuantifiedPath$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncie_Ands$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncie_InequalityExpression, 0, jl_Object, [oncie_BooleanExpression, oncie_ChainableBinaryOperatorExpression], 3, 3, 0, 0, 0, -oncie_GreaterThanOrEqual, "GreaterThanOrEqual", 64, oncie_Expression, [oncie_InequalityExpression, ji_Serializable], 4, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_GreaterThanOrEqual_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_GreaterThanOrEqual_isConstantForQuery), "$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq", $rt_wrapFunction1(oncie_GreaterThanOrEqual_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq), -"$lhs0", $rt_wrapFunction0(oncie_GreaterThanOrEqual_lhs), "$rhs0", $rt_wrapFunction0(oncie_GreaterThanOrEqual_rhs), "$position", $rt_wrapFunction0(oncie_GreaterThanOrEqual_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_GreaterThanOrEqual_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_GreaterThanOrEqual_productPrefix), "$productArity", $rt_wrapFunction0(oncie_GreaterThanOrEqual_productArity), "$productElement", $rt_wrapFunction1(oncie_GreaterThanOrEqual_productElement), "$productIterator", +oncie_SemanticDirection$BOTH$, "SemanticDirection$BOTH$", 62, jl_Object, [oncie_SemanticDirection, s_Product, ji_Serializable], 0, 3, 0, oncie_SemanticDirection$BOTH$_$callClinit, ["$productArity", $rt_wrapFunction0(oncie_SemanticDirection$BOTH$_productArity), "$productElement", $rt_wrapFunction1(oncie_SemanticDirection$BOTH$_productElement), "$productIterator", $rt_wrapFunction0(oncie_SemanticDirection$BOTH$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SemanticDirection$BOTH$_hashCode), "$toString", +$rt_wrapFunction0(oncie_SemanticDirection$BOTH$_toString)], +oncie_SemanticDirection$INCOMING$, "SemanticDirection$INCOMING$", 62, jl_Object, [oncie_SemanticDirection, s_Product, ji_Serializable], 0, 3, 0, oncie_SemanticDirection$INCOMING$_$callClinit, ["$productArity", $rt_wrapFunction0(oncie_SemanticDirection$INCOMING$_productArity), "$productElement", $rt_wrapFunction1(oncie_SemanticDirection$INCOMING$_productElement), "$productIterator", $rt_wrapFunction0(oncie_SemanticDirection$INCOMING$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_SemanticDirection$INCOMING$_hashCode), +"$toString", $rt_wrapFunction0(oncie_SemanticDirection$INCOMING$_toString)], +scc_AsScalaExtensions$CollectionHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncipau_Util$$astBinaryFold$lambda$_16_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipau_Util$$astBinaryFold$lambda$_16_0_apply)], +oncie_InequalityExpression, 0, jl_Object, [oncie_BooleanExpression, oncie_ChainableBinaryOperatorExpression], 3, 3, 0, 0, 0]); +$rt_metadata([oncie_GreaterThanOrEqual, "GreaterThanOrEqual", 62, oncie_Expression, [oncie_InequalityExpression, ji_Serializable], 4, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_GreaterThanOrEqual_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_GreaterThanOrEqual_isConstantForQuery), "$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq", $rt_wrapFunction1(oncie_GreaterThanOrEqual_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq), +"$lhs0", $rt_wrapFunction0(oncie_GreaterThanOrEqual_lhs), "$rhs", $rt_wrapFunction0(oncie_GreaterThanOrEqual_rhs), "$position", $rt_wrapFunction0(oncie_GreaterThanOrEqual_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_GreaterThanOrEqual_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_GreaterThanOrEqual_productPrefix), "$productArity", $rt_wrapFunction0(oncie_GreaterThanOrEqual_productArity), "$productElement", $rt_wrapFunction1(oncie_GreaterThanOrEqual_productElement), "$productIterator", $rt_wrapFunction0(oncie_GreaterThanOrEqual_productIterator), "$hashCode", $rt_wrapFunction0(oncie_GreaterThanOrEqual_hashCode), "$toString", $rt_wrapFunction0(oncie_GreaterThanOrEqual_toString), "$equals", $rt_wrapFunction1(oncie_GreaterThanOrEqual_equals)], -oncie_GreaterThan, "GreaterThan", 64, oncie_Expression, [oncie_InequalityExpression, ji_Serializable], 4, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_GreaterThan_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_GreaterThan_isConstantForQuery), "$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq", $rt_wrapFunction1(oncie_GreaterThan_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq), "$lhs0", $rt_wrapFunction0(oncie_GreaterThan_lhs), -"$rhs0", $rt_wrapFunction0(oncie_GreaterThan_rhs), "$position", $rt_wrapFunction0(oncie_GreaterThan_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_GreaterThan_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_GreaterThan_productPrefix), "$productArity", $rt_wrapFunction0(oncie_GreaterThan_productArity), "$productElement", $rt_wrapFunction1(oncie_GreaterThan_productElement), "$productIterator", $rt_wrapFunction0(oncie_GreaterThan_productIterator), "$hashCode", $rt_wrapFunction0(oncie_GreaterThan_hashCode), +oncie_GreaterThan, "GreaterThan", 62, oncie_Expression, [oncie_InequalityExpression, ji_Serializable], 4, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_GreaterThan_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_GreaterThan_isConstantForQuery), "$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq", $rt_wrapFunction1(oncie_GreaterThan_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq), "$lhs0", $rt_wrapFunction0(oncie_GreaterThan_lhs), +"$rhs", $rt_wrapFunction0(oncie_GreaterThan_rhs), "$position", $rt_wrapFunction0(oncie_GreaterThan_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_GreaterThan_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_GreaterThan_productPrefix), "$productArity", $rt_wrapFunction0(oncie_GreaterThan_productArity), "$productElement", $rt_wrapFunction1(oncie_GreaterThan_productElement), "$productIterator", $rt_wrapFunction0(oncie_GreaterThan_productIterator), "$hashCode", $rt_wrapFunction0(oncie_GreaterThan_hashCode), "$toString", $rt_wrapFunction0(oncie_GreaterThan_toString), "$equals", $rt_wrapFunction1(oncie_GreaterThan_equals)], -oncie_LessThanOrEqual, "LessThanOrEqual", 64, oncie_Expression, [oncie_InequalityExpression, ji_Serializable], 4, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_LessThanOrEqual_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_LessThanOrEqual_isConstantForQuery), "$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq", $rt_wrapFunction1(oncie_LessThanOrEqual_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq), -"$lhs0", $rt_wrapFunction0(oncie_LessThanOrEqual_lhs), "$rhs0", $rt_wrapFunction0(oncie_LessThanOrEqual_rhs), "$position", $rt_wrapFunction0(oncie_LessThanOrEqual_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_LessThanOrEqual_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_LessThanOrEqual_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LessThanOrEqual_productArity), "$productElement", $rt_wrapFunction1(oncie_LessThanOrEqual_productElement), "$productIterator", $rt_wrapFunction0(oncie_LessThanOrEqual_productIterator), +oncie_LessThanOrEqual, "LessThanOrEqual", 62, oncie_Expression, [oncie_InequalityExpression, ji_Serializable], 4, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_LessThanOrEqual_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_LessThanOrEqual_isConstantForQuery), "$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq", $rt_wrapFunction1(oncie_LessThanOrEqual_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq), +"$lhs0", $rt_wrapFunction0(oncie_LessThanOrEqual_lhs), "$rhs", $rt_wrapFunction0(oncie_LessThanOrEqual_rhs), "$position", $rt_wrapFunction0(oncie_LessThanOrEqual_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_LessThanOrEqual_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_LessThanOrEqual_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LessThanOrEqual_productArity), "$productElement", $rt_wrapFunction1(oncie_LessThanOrEqual_productElement), "$productIterator", $rt_wrapFunction0(oncie_LessThanOrEqual_productIterator), "$hashCode", $rt_wrapFunction0(oncie_LessThanOrEqual_hashCode), "$toString", $rt_wrapFunction0(oncie_LessThanOrEqual_toString), "$equals", $rt_wrapFunction1(oncie_LessThanOrEqual_equals)], -oncie_LessThan, "LessThan", 64, oncie_Expression, [oncie_InequalityExpression, ji_Serializable], 4, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_LessThan_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_LessThan_isConstantForQuery), "$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq", $rt_wrapFunction1(oncie_LessThan_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq), "$lhs0", $rt_wrapFunction0(oncie_LessThan_lhs), -"$rhs0", $rt_wrapFunction0(oncie_LessThan_rhs), "$position", $rt_wrapFunction0(oncie_LessThan_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_LessThan_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_LessThan_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LessThan_productArity), "$productElement", $rt_wrapFunction1(oncie_LessThan_productElement), "$productIterator", $rt_wrapFunction0(oncie_LessThan_productIterator), "$hashCode", $rt_wrapFunction0(oncie_LessThan_hashCode), +oncie_LessThan, "LessThan", 62, oncie_Expression, [oncie_InequalityExpression, ji_Serializable], 4, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_LessThan_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_LessThan_isConstantForQuery), "$org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq", $rt_wrapFunction1(oncie_LessThan_org$neo4j$cypher$internal$expressions$InequalityExpression$_setter_$signatures_$eq), "$lhs0", $rt_wrapFunction0(oncie_LessThan_lhs), +"$rhs", $rt_wrapFunction0(oncie_LessThan_rhs), "$position", $rt_wrapFunction0(oncie_LessThan_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_LessThan_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_LessThan_productPrefix), "$productArity", $rt_wrapFunction0(oncie_LessThan_productArity), "$productElement", $rt_wrapFunction1(oncie_LessThan_productElement), "$productIterator", $rt_wrapFunction0(oncie_LessThan_productIterator), "$hashCode", $rt_wrapFunction0(oncie_LessThan_hashCode), "$toString", $rt_wrapFunction0(oncie_LessThan_toString), "$equals", $rt_wrapFunction1(oncie_LessThan_equals)], -oncie_InvalidNotEquals, "InvalidNotEquals", 64, oncie_Expression, [oncie_BooleanExpression, oncie_ChainableBinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_InvalidNotEquals_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_InvalidNotEquals_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_InvalidNotEquals_lhs), "$rhs0", $rt_wrapFunction0(oncie_InvalidNotEquals_rhs), "$position", $rt_wrapFunction0(oncie_InvalidNotEquals_position), +oncie_InvalidNotEquals, "InvalidNotEquals", 62, oncie_Expression, [oncie_BooleanExpression, oncie_ChainableBinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_InvalidNotEquals_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_InvalidNotEquals_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_InvalidNotEquals_lhs), "$rhs", $rt_wrapFunction0(oncie_InvalidNotEquals_rhs), "$position", $rt_wrapFunction0(oncie_InvalidNotEquals_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_InvalidNotEquals_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_InvalidNotEquals_productPrefix), "$productArity", $rt_wrapFunction0(oncie_InvalidNotEquals_productArity), "$productElement", $rt_wrapFunction1(oncie_InvalidNotEquals_productElement), "$productIterator", $rt_wrapFunction0(oncie_InvalidNotEquals_productIterator), "$hashCode", $rt_wrapFunction0(oncie_InvalidNotEquals_hashCode), "$toString", $rt_wrapFunction0(oncie_InvalidNotEquals_toString), "$equals", $rt_wrapFunction1(oncie_InvalidNotEquals_equals)], -oncie_NotEquals, "NotEquals", 64, oncie_Expression, [oncie_BooleanExpression, oncie_ChainableBinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_NotEquals_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_NotEquals_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_NotEquals_lhs), "$rhs0", $rt_wrapFunction0(oncie_NotEquals_rhs), "$position", $rt_wrapFunction0(oncie_NotEquals_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_NotEquals_canonicalOperatorSymbol), +oncie_NotEquals, "NotEquals", 62, oncie_Expression, [oncie_BooleanExpression, oncie_ChainableBinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_NotEquals_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_NotEquals_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_NotEquals_lhs), "$rhs", $rt_wrapFunction0(oncie_NotEquals_rhs), "$position", $rt_wrapFunction0(oncie_NotEquals_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_NotEquals_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_NotEquals_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NotEquals_productArity), "$productElement", $rt_wrapFunction1(oncie_NotEquals_productElement), "$productIterator", $rt_wrapFunction0(oncie_NotEquals_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NotEquals_hashCode), "$toString", $rt_wrapFunction0(oncie_NotEquals_toString), "$equals", $rt_wrapFunction1(oncie_NotEquals_equals)], -oncil_LabelExpression$Conjunctions$, 0, jl_Object, [ji_Serializable], 0, 3, 0, oncil_LabelExpression$Conjunctions$_$callClinit, 0, -oncil_LabelExpression$Leaf, "LabelExpression$Leaf", 63, jl_Object, [oncil_LabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"Leaf"], 0, ["$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsGpmSpecificRelTypeExpression), "$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsMatchSpecificLabelExpression), -"$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Leaf_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Leaf_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Leaf_folder0), "$folder0", $rt_wrapFunction1(oncil_LabelExpression$Leaf_folder), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Leaf_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$Leaf_position), -"$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Leaf_flatten), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Leaf_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Leaf_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Leaf_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Leaf_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Leaf_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$Leaf_toString), -"$equals", $rt_wrapFunction1(oncil_LabelExpression$Leaf_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Leaf_dup)], -oncie_FixedQuantifier, "FixedQuantifier", 64, jl_Object, [oncie_GraphPatternQuantifier, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_FixedQuantifier_position), "$canBeEmpty", $rt_wrapFunction0(oncie_FixedQuantifier_canBeEmpty), "$productPrefix", $rt_wrapFunction0(oncie_FixedQuantifier_productPrefix), "$productArity", $rt_wrapFunction0(oncie_FixedQuantifier_productArity), "$productElement", $rt_wrapFunction1(oncie_FixedQuantifier_productElement), "$productIterator", $rt_wrapFunction0(oncie_FixedQuantifier_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_FixedQuantifier_hashCode), "$toString", $rt_wrapFunction0(oncie_FixedQuantifier_toString), "$equals", $rt_wrapFunction1(oncie_FixedQuantifier_equals), "$dup", $rt_wrapFunction1(oncie_FixedQuantifier_dup), "$mapExpressions", $rt_wrapFunction1(oncie_FixedQuantifier_mapExpressions)], -oncie_PlusQuantifier, "PlusQuantifier", 64, jl_Object, [oncie_GraphPatternQuantifier, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_PlusQuantifier_position), "$canBeEmpty", $rt_wrapFunction0(oncie_PlusQuantifier_canBeEmpty), "$productPrefix", $rt_wrapFunction0(oncie_PlusQuantifier_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PlusQuantifier_productArity), "$productElement", $rt_wrapFunction1(oncie_PlusQuantifier_productElement), "$productIterator", $rt_wrapFunction0(oncie_PlusQuantifier_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_PlusQuantifier_hashCode), "$toString", $rt_wrapFunction0(oncie_PlusQuantifier_toString), "$equals", $rt_wrapFunction1(oncie_PlusQuantifier_equals), "$dup", $rt_wrapFunction1(oncie_PlusQuantifier_dup), "$mapExpressions", $rt_wrapFunction1(oncie_PlusQuantifier_mapExpressions)], -oncie_StarQuantifier, "StarQuantifier", 64, jl_Object, [oncie_GraphPatternQuantifier, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_StarQuantifier_position), "$canBeEmpty", $rt_wrapFunction0(oncie_StarQuantifier_canBeEmpty), "$productPrefix", $rt_wrapFunction0(oncie_StarQuantifier_productPrefix), "$productArity", $rt_wrapFunction0(oncie_StarQuantifier_productArity), "$productElement", $rt_wrapFunction1(oncie_StarQuantifier_productElement), "$productIterator", $rt_wrapFunction0(oncie_StarQuantifier_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_StarQuantifier_hashCode), "$toString", $rt_wrapFunction0(oncie_StarQuantifier_toString), "$equals", $rt_wrapFunction1(oncie_StarQuantifier_equals), "$dup", $rt_wrapFunction1(oncie_StarQuantifier_dup), "$mapExpressions", $rt_wrapFunction1(oncie_StarQuantifier_mapExpressions)], -oncie_IntervalQuantifier, "IntervalQuantifier", 64, jl_Object, [oncie_GraphPatternQuantifier, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_IntervalQuantifier_position), "$canBeEmpty", $rt_wrapFunction0(oncie_IntervalQuantifier_canBeEmpty), "$productPrefix", $rt_wrapFunction0(oncie_IntervalQuantifier_productPrefix), "$productArity", $rt_wrapFunction0(oncie_IntervalQuantifier_productArity), "$productElement", $rt_wrapFunction1(oncie_IntervalQuantifier_productElement), "$productIterator", -$rt_wrapFunction0(oncie_IntervalQuantifier_productIterator), "$hashCode", $rt_wrapFunction0(oncie_IntervalQuantifier_hashCode), "$toString", $rt_wrapFunction0(oncie_IntervalQuantifier_toString), "$equals", $rt_wrapFunction1(oncie_IntervalQuantifier_equals), "$dup", $rt_wrapFunction1(oncie_IntervalQuantifier_dup), "$mapExpressions", $rt_wrapFunction1(oncie_IntervalQuantifier_mapExpressions)]]); -$rt_metadata([oncie_CaseExpression$Placeholder, "CaseExpression$Placeholder", 64, oncie_Expression, [ji_Serializable], 0, 3, [oncie_CaseExpression,0,"Placeholder"], 0, ["$position", $rt_wrapFunction0(oncie_CaseExpression$Placeholder_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_CaseExpression$Placeholder_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_CaseExpression$Placeholder_productPrefix), "$productArity", $rt_wrapFunction0(oncie_CaseExpression$Placeholder_productArity), "$productElement", -$rt_wrapFunction1(oncie_CaseExpression$Placeholder_productElement), "$productIterator", $rt_wrapFunction0(oncie_CaseExpression$Placeholder_productIterator), "$hashCode", $rt_wrapFunction0(oncie_CaseExpression$Placeholder_hashCode), "$toString", $rt_wrapFunction0(oncie_CaseExpression$Placeholder_toString), "$equals", $rt_wrapFunction1(oncie_CaseExpression$Placeholder_equals)], -oncie_CaseExpression$Placeholder$, "CaseExpression$Placeholder$", 64, oncie_CaseExpression$Placeholder, [], 0, 3, [oncie_CaseExpression,0,"Placeholder$"], oncie_CaseExpression$Placeholder$_$callClinit, ["$dup", $rt_wrapFunction1(oncie_CaseExpression$Placeholder$_dup), "$dup0", $rt_wrapFunction1(oncie_CaseExpression$Placeholder$_dup0)], -oncie_EndsWith, "EndsWith", 64, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_EndsWith_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_EndsWith_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_EndsWith_lhs), "$rhs0", $rt_wrapFunction0(oncie_EndsWith_rhs), "$position", $rt_wrapFunction0(oncie_EndsWith_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_EndsWith_canonicalOperatorSymbol), +oncie_MultiOperatorExpression, 0, jl_Object, [oncie_OperatorExpression], 3, 3, 0, 0, 0, +oncie_Ands, "Ands", 62, oncie_Expression, [oncie_BooleanExpression, oncie_MultiOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Ands_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Ands_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_Ands_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Ands_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_Ands_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Ands_productArity), +"$productElement", $rt_wrapFunction1(oncie_Ands_productElement), "$productIterator", $rt_wrapFunction0(oncie_Ands_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Ands_hashCode), "$toString", $rt_wrapFunction0(oncie_Ands_toString), "$equals", $rt_wrapFunction1(oncie_Ands_equals)], +oncie_Contains, "Contains", 62, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Contains_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Contains_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Contains_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_Contains_lhs), "$rhs", $rt_wrapFunction0(oncie_Contains_rhs), "$position", $rt_wrapFunction0(oncie_Contains_position), +"$productPrefix", $rt_wrapFunction0(oncie_Contains_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Contains_productArity), "$productElement", $rt_wrapFunction1(oncie_Contains_productElement), "$productIterator", $rt_wrapFunction0(oncie_Contains_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Contains_hashCode), "$toString", $rt_wrapFunction0(oncie_Contains_toString), "$equals", $rt_wrapFunction1(oncie_Contains_equals)], +oncie_EndsWith, "EndsWith", 62, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_EndsWith_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_EndsWith_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_EndsWith_lhs), "$rhs", $rt_wrapFunction0(oncie_EndsWith_rhs), "$position", $rt_wrapFunction0(oncie_EndsWith_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_EndsWith_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_EndsWith_productPrefix), "$productArity", $rt_wrapFunction0(oncie_EndsWith_productArity), "$productElement", $rt_wrapFunction1(oncie_EndsWith_productElement), "$productIterator", $rt_wrapFunction0(oncie_EndsWith_productIterator), "$hashCode", $rt_wrapFunction0(oncie_EndsWith_hashCode), "$toString", $rt_wrapFunction0(oncie_EndsWith_toString), "$equals", $rt_wrapFunction1(oncie_EndsWith_equals)], -oncie_RegexMatch, "RegexMatch", 64, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_RegexMatch_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_RegexMatch_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_RegexMatch_lhs), "$rhs0", $rt_wrapFunction0(oncie_RegexMatch_rhs), "$position", $rt_wrapFunction0(oncie_RegexMatch_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_RegexMatch_canonicalOperatorSymbol), +oncie_RegexMatch, "RegexMatch", 62, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_RegexMatch_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_RegexMatch_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_RegexMatch_lhs), "$rhs", $rt_wrapFunction0(oncie_RegexMatch_rhs), "$position", $rt_wrapFunction0(oncie_RegexMatch_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_RegexMatch_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_RegexMatch_productPrefix), "$productArity", $rt_wrapFunction0(oncie_RegexMatch_productArity), "$productElement", $rt_wrapFunction1(oncie_RegexMatch_productElement), "$productIterator", $rt_wrapFunction0(oncie_RegexMatch_productIterator), "$hashCode", $rt_wrapFunction0(oncie_RegexMatch_hashCode), "$toString", $rt_wrapFunction0(oncie_RegexMatch_toString), "$equals", $rt_wrapFunction1(oncie_RegexMatch_equals)], -oncie_StartsWith, "StartsWith", 64, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_StartsWith_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_StartsWith_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_StartsWith_lhs), "$rhs0", $rt_wrapFunction0(oncie_StartsWith_rhs), "$position", $rt_wrapFunction0(oncie_StartsWith_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_StartsWith_canonicalOperatorSymbol), +oncie_StartsWith, "StartsWith", 62, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_StartsWith_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_StartsWith_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_StartsWith_lhs), "$rhs", $rt_wrapFunction0(oncie_StartsWith_rhs), "$position", $rt_wrapFunction0(oncie_StartsWith_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_StartsWith_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_StartsWith_productPrefix), "$productArity", $rt_wrapFunction0(oncie_StartsWith_productArity), "$productElement", $rt_wrapFunction1(oncie_StartsWith_productElement), "$productIterator", $rt_wrapFunction0(oncie_StartsWith_productIterator), "$hashCode", $rt_wrapFunction0(oncie_StartsWith_hashCode), "$toString", $rt_wrapFunction0(oncie_StartsWith_toString), "$equals", $rt_wrapFunction1(oncie_StartsWith_equals)], -oncie_RightUnaryOperatorExpression, 0, jl_Object, [oncie_OperatorExpression], 3, 3, 0, 0, 0, -oncie_IsNull, "IsNull", 64, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_IsNull_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_IsNull_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_IsNull_lhs), "$position", $rt_wrapFunction0(oncie_IsNull_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_IsNull_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_IsNull_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_IsNull_productArity), "$productElement", $rt_wrapFunction1(oncie_IsNull_productElement), "$productIterator", $rt_wrapFunction0(oncie_IsNull_productIterator), "$hashCode", $rt_wrapFunction0(oncie_IsNull_hashCode), "$toString", $rt_wrapFunction0(oncie_IsNull_toString), "$equals", $rt_wrapFunction1(oncie_IsNull_equals)], -oncie_IsNotNull, "IsNotNull", 64, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_IsNotNull_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_IsNotNull_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_IsNotNull_lhs), "$position", $rt_wrapFunction0(oncie_IsNotNull_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_IsNotNull_canonicalOperatorSymbol), "$productPrefix", +oncie_IsNotNull, "IsNotNull", 62, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_IsNotNull_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_IsNotNull_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_IsNotNull_lhs), "$position", $rt_wrapFunction0(oncie_IsNotNull_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_IsNotNull_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_IsNotNull_productPrefix), "$productArity", $rt_wrapFunction0(oncie_IsNotNull_productArity), "$productElement", $rt_wrapFunction1(oncie_IsNotNull_productElement), "$productIterator", $rt_wrapFunction0(oncie_IsNotNull_productIterator), "$hashCode", $rt_wrapFunction0(oncie_IsNotNull_hashCode), "$toString", $rt_wrapFunction0(oncie_IsNotNull_toString), "$equals", $rt_wrapFunction1(oncie_IsNotNull_equals)], -oncia_IsNormalized, "IsNormalized", 36, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncia_IsNormalized_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncia_IsNormalized_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncia_IsNormalized_lhs), "$position", $rt_wrapFunction0(oncia_IsNormalized_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncia_IsNormalized_canonicalOperatorSymbol), +oncie_IsNull, "IsNull", 62, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_IsNull_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_IsNull_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_IsNull_lhs), "$position", $rt_wrapFunction0(oncie_IsNull_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_IsNull_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_IsNull_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_IsNull_productArity), "$productElement", $rt_wrapFunction1(oncie_IsNull_productElement), "$productIterator", $rt_wrapFunction0(oncie_IsNull_productIterator), "$hashCode", $rt_wrapFunction0(oncie_IsNull_hashCode), "$toString", $rt_wrapFunction0(oncie_IsNull_toString), "$equals", $rt_wrapFunction1(oncie_IsNull_equals)], +oncia_IsNotTyped, "IsNotTyped", 35, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncia_IsNotTyped_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncia_IsNotTyped_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncia_IsNotTyped_lhs), "$position", $rt_wrapFunction0(oncia_IsNotTyped_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncia_IsNotTyped_canonicalOperatorSymbol), +"$productPrefix", $rt_wrapFunction0(oncia_IsNotTyped_productPrefix), "$productArity", $rt_wrapFunction0(oncia_IsNotTyped_productArity), "$productElement", $rt_wrapFunction1(oncia_IsNotTyped_productElement), "$productIterator", $rt_wrapFunction0(oncia_IsNotTyped_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IsNotTyped_hashCode), "$toString", $rt_wrapFunction0(oncia_IsNotTyped_toString), "$equals", $rt_wrapFunction1(oncia_IsNotTyped_equals)], +oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0_apply0)], +oncia_IsNormalized, "IsNormalized", 35, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncia_IsNormalized_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncia_IsNormalized_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncia_IsNormalized_lhs), "$position", $rt_wrapFunction0(oncia_IsNormalized_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncia_IsNormalized_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncia_IsNormalized_productPrefix), "$productArity", $rt_wrapFunction0(oncia_IsNormalized_productArity), "$productElement", $rt_wrapFunction1(oncia_IsNormalized_productElement), "$productIterator", $rt_wrapFunction0(oncia_IsNormalized_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IsNormalized_hashCode), "$toString", $rt_wrapFunction0(oncia_IsNormalized_toString), "$equals", $rt_wrapFunction1(oncia_IsNormalized_equals)], -oncia_IsNotNormalized, "IsNotNormalized", 36, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncia_IsNotNormalized_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncia_IsNotNormalized_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncia_IsNotNormalized_lhs), "$position", $rt_wrapFunction0(oncia_IsNotNormalized_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncia_IsNotNormalized_canonicalOperatorSymbol), +oncia_IsNotNormalized, "IsNotNormalized", 35, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncia_IsNotNormalized_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncia_IsNotNormalized_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncia_IsNotNormalized_lhs), "$position", $rt_wrapFunction0(oncia_IsNotNormalized_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncia_IsNotNormalized_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncia_IsNotNormalized_productPrefix), "$productArity", $rt_wrapFunction0(oncia_IsNotNormalized_productArity), "$productElement", $rt_wrapFunction1(oncia_IsNotNormalized_productElement), "$productIterator", $rt_wrapFunction0(oncia_IsNotNormalized_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IsNotNormalized_hashCode), "$toString", $rt_wrapFunction0(oncia_IsNotNormalized_toString), "$equals", $rt_wrapFunction1(oncia_IsNotNormalized_equals)], -oncia_IsTyped, "IsTyped", 36, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncia_IsTyped_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncia_IsTyped_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncia_IsTyped_lhs), "$position", $rt_wrapFunction0(oncia_IsTyped_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncia_IsTyped_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncia_IsTyped_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_IsTyped_productArity), "$productElement", $rt_wrapFunction1(oncia_IsTyped_productElement), "$productIterator", $rt_wrapFunction0(oncia_IsTyped_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IsTyped_hashCode), "$toString", $rt_wrapFunction0(oncia_IsTyped_toString), "$equals", $rt_wrapFunction1(oncia_IsTyped_equals)], -oncia_IsNotTyped, "IsNotTyped", 36, oncie_Expression, [oncie_BooleanExpression, oncie_RightUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncia_IsNotTyped_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncia_IsNotTyped_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncia_IsNotTyped_lhs), "$position", $rt_wrapFunction0(oncia_IsNotTyped_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncia_IsNotTyped_canonicalOperatorSymbol), -"$productPrefix", $rt_wrapFunction0(oncia_IsNotTyped_productPrefix), "$productArity", $rt_wrapFunction0(oncia_IsNotTyped_productArity), "$productElement", $rt_wrapFunction1(oncia_IsNotTyped_productElement), "$productIterator", $rt_wrapFunction0(oncia_IsNotTyped_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IsNotTyped_hashCode), "$toString", $rt_wrapFunction0(oncia_IsNotTyped_toString), "$equals", $rt_wrapFunction1(oncia_IsNotTyped_equals)], -oncie_Concatenate, "Concatenate", 64, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Concatenate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Concatenate_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Concatenate_lhs), "$rhs0", $rt_wrapFunction0(oncie_Concatenate_rhs), "$position", $rt_wrapFunction0(oncie_Concatenate_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Concatenate_canonicalOperatorSymbol), -"$productPrefix", $rt_wrapFunction0(oncie_Concatenate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Concatenate_productArity), "$productElement", $rt_wrapFunction1(oncie_Concatenate_productElement), "$productIterator", $rt_wrapFunction0(oncie_Concatenate_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Concatenate_hashCode), "$toString", $rt_wrapFunction0(oncie_Concatenate_toString), "$equals", $rt_wrapFunction1(oncie_Concatenate_equals)], -oncie_Subtract, "Subtract", 64, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Subtract_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Subtract_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Subtract_lhs), "$rhs0", $rt_wrapFunction0(oncie_Subtract_rhs), "$position", $rt_wrapFunction0(oncie_Subtract_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Subtract_canonicalOperatorSymbol), -"$productPrefix", $rt_wrapFunction0(oncie_Subtract_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Subtract_productArity), "$productElement", $rt_wrapFunction1(oncie_Subtract_productElement), "$productIterator", $rt_wrapFunction0(oncie_Subtract_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Subtract_hashCode), "$toString", $rt_wrapFunction0(oncie_Subtract_toString), "$equals", $rt_wrapFunction1(oncie_Subtract_equals)], -oncie_Add, "Add", 64, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Add_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Add_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Add_lhs), "$rhs0", $rt_wrapFunction0(oncie_Add_rhs), "$position", $rt_wrapFunction0(oncie_Add_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Add_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_Add_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_Add_productArity), "$productElement", $rt_wrapFunction1(oncie_Add_productElement), "$productIterator", $rt_wrapFunction0(oncie_Add_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Add_hashCode), "$toString", $rt_wrapFunction0(oncie_Add_toString), "$equals", $rt_wrapFunction1(oncie_Add_equals)], -oncie_Contains, "Contains", 64, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Contains_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Contains_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Contains_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_Contains_lhs), "$rhs0", $rt_wrapFunction0(oncie_Contains_rhs), "$position", $rt_wrapFunction0(oncie_Contains_position), -"$productPrefix", $rt_wrapFunction0(oncie_Contains_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Contains_productArity), "$productElement", $rt_wrapFunction1(oncie_Contains_productElement), "$productIterator", $rt_wrapFunction0(oncie_Contains_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Contains_hashCode), "$toString", $rt_wrapFunction0(oncie_Contains_toString), "$equals", $rt_wrapFunction1(oncie_Contains_equals)], -oncil_LabelExpression$Disjunctions$, 0, jl_Object, [ji_Serializable], 0, 3, 0, oncil_LabelExpression$Disjunctions$_$callClinit, 0, -oncil_BinaryLabelExpression, 0, jl_Object, [oncil_LabelExpression], 3, 3, 0, 0, 0, -oncil_LabelExpression$ColonDisjunction, "LabelExpression$ColonDisjunction", 63, jl_Object, [oncil_BinaryLabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"ColonDisjunction"], 0, ["$flatten0", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_flatten), "$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsGpmSpecificRelTypeExpression), -"$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsMatchSpecificLabelExpression), "$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_folder0), -"$folder0", $rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_folder), "$lhs1", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_lhs), "$rhs1", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_rhs), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_position), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_productArity), -"$productElement", $rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$ColonDisjunction_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$ColonDisjunction_dup)], -oncie_Divide, "Divide", 64, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Divide_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Divide_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Divide_lhs), "$rhs0", $rt_wrapFunction0(oncie_Divide_rhs), "$position", $rt_wrapFunction0(oncie_Divide_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Divide_canonicalOperatorSymbol), "$productPrefix", -$rt_wrapFunction0(oncie_Divide_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Divide_productArity), "$productElement", $rt_wrapFunction1(oncie_Divide_productElement), "$productIterator", $rt_wrapFunction0(oncie_Divide_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Divide_hashCode), "$toString", $rt_wrapFunction0(oncie_Divide_toString), "$equals", $rt_wrapFunction1(oncie_Divide_equals)], -oncie_Modulo, "Modulo", 64, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Modulo_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Modulo_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Modulo_lhs), "$rhs0", $rt_wrapFunction0(oncie_Modulo_rhs), "$position", $rt_wrapFunction0(oncie_Modulo_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Modulo_canonicalOperatorSymbol), "$productPrefix", -$rt_wrapFunction0(oncie_Modulo_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Modulo_productArity), "$productElement", $rt_wrapFunction1(oncie_Modulo_productElement), "$productIterator", $rt_wrapFunction0(oncie_Modulo_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Modulo_hashCode), "$toString", $rt_wrapFunction0(oncie_Modulo_toString), "$equals", $rt_wrapFunction1(oncie_Modulo_equals)], -oncie_Multiply, "Multiply", 64, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Multiply_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Multiply_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Multiply_lhs), "$rhs0", $rt_wrapFunction0(oncie_Multiply_rhs), "$position", $rt_wrapFunction0(oncie_Multiply_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Multiply_canonicalOperatorSymbol), -"$productPrefix", $rt_wrapFunction0(oncie_Multiply_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Multiply_productArity), "$productElement", $rt_wrapFunction1(oncie_Multiply_productElement), "$productIterator", $rt_wrapFunction0(oncie_Multiply_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Multiply_hashCode), "$toString", $rt_wrapFunction0(oncie_Multiply_toString), "$equals", $rt_wrapFunction1(oncie_Multiply_equals)], -oncil_LabelExpression$ColonConjunction, "LabelExpression$ColonConjunction", 63, jl_Object, [oncil_BinaryLabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"ColonConjunction"], 0, ["$flatten0", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_flatten), "$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsGpmSpecificRelTypeExpression), -"$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsMatchSpecificLabelExpression), "$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_folder), -"$folder0", $rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_folder0), "$lhs1", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_lhs), "$rhs1", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_rhs), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_position), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_productArity), -"$productElement", $rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$ColonConjunction_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$ColonConjunction_dup)], -oncie_Pow, "Pow", 64, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Pow_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Pow_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Pow_lhs), "$rhs0", $rt_wrapFunction0(oncie_Pow_rhs), "$position", $rt_wrapFunction0(oncie_Pow_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Pow_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_Pow_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_Pow_productArity), "$productElement", $rt_wrapFunction1(oncie_Pow_productElement), "$productIterator", $rt_wrapFunction0(oncie_Pow_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pow_hashCode), "$toString", $rt_wrapFunction0(oncie_Pow_toString), "$equals", $rt_wrapFunction1(oncie_Pow_equals)], -oncil_LabelExpression$Negation, "LabelExpression$Negation", 63, jl_Object, [oncil_LabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"Negation"], 0, ["$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsGpmSpecificRelTypeExpression), "$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsMatchSpecificLabelExpression), -"$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Negation_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Negation_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Negation_folder0), "$folder0", $rt_wrapFunction1(oncil_LabelExpression$Negation_folder), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Negation_containsIs), -"$position", $rt_wrapFunction0(oncil_LabelExpression$Negation_position), "$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Negation_flatten), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Negation_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Negation_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Negation_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Negation_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Negation_hashCode), -"$toString", $rt_wrapFunction0(oncil_LabelExpression$Negation_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$Negation_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Negation_dup)], -oncie_UnarySubtract, "UnarySubtract", 64, oncie_Expression, [oncie_LeftUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_UnarySubtract_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_UnarySubtract_isConstantForQuery), "$rhs0", $rt_wrapFunction0(oncie_UnarySubtract_rhs), "$position", $rt_wrapFunction0(oncie_UnarySubtract_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_UnarySubtract_canonicalOperatorSymbol), "$productPrefix", -$rt_wrapFunction0(oncie_UnarySubtract_productPrefix), "$productArity", $rt_wrapFunction0(oncie_UnarySubtract_productArity), "$productElement", $rt_wrapFunction1(oncie_UnarySubtract_productElement), "$productIterator", $rt_wrapFunction0(oncie_UnarySubtract_productIterator), "$hashCode", $rt_wrapFunction0(oncie_UnarySubtract_hashCode), "$toString", $rt_wrapFunction0(oncie_UnarySubtract_toString), "$equals", $rt_wrapFunction1(oncie_UnarySubtract_equals)], -oncie_UnaryAdd, "UnaryAdd", 64, oncie_Expression, [oncie_LeftUnaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_UnaryAdd_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_UnaryAdd_isConstantForQuery), "$rhs0", $rt_wrapFunction0(oncie_UnaryAdd_rhs), "$position", $rt_wrapFunction0(oncie_UnaryAdd_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_UnaryAdd_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_UnaryAdd_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_UnaryAdd_productArity), "$productElement", $rt_wrapFunction1(oncie_UnaryAdd_productElement), "$productIterator", $rt_wrapFunction0(oncie_UnaryAdd_productIterator), "$hashCode", $rt_wrapFunction0(oncie_UnaryAdd_hashCode), "$toString", $rt_wrapFunction0(oncie_UnaryAdd_toString), "$equals", $rt_wrapFunction1(oncie_UnaryAdd_equals)], -oncil_LabelExpression$Wildcard, "LabelExpression$Wildcard", 63, jl_Object, [oncil_LabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"Wildcard"], 0, ["$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsGpmSpecificRelTypeExpression), "$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsMatchSpecificLabelExpression), -"$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_folder0), "$folder0", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_folder), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_containsIs), -"$position", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_position), "$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_flatten), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_hashCode), -"$toString", $rt_wrapFunction0(oncil_LabelExpression$Wildcard_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Wildcard_dup)], -oncil_LabelExpression$DynamicLeaf, "LabelExpression$DynamicLeaf", 63, jl_Object, [oncil_LabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"DynamicLeaf"], 0, ["$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsGpmSpecificRelTypeExpression), "$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsMatchSpecificLabelExpression), -"$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_folder), "$folder0", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_folder0), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_containsIs), -"$position", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_position), "$flatten0", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_flatten), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_productElement), "$productIterator", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_hashCode), -"$toString", $rt_wrapFunction0(oncil_LabelExpression$DynamicLeaf_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$DynamicLeaf_dup)], -oncil_LabelExpressionDynamicLeafExpression, "LabelExpressionDynamicLeafExpression", 63, jl_Object, [onciu_ASTNode], 3, 3, [0,0,0], 0, 0, -oncie_DynamicLabelExpression, "DynamicLabelExpression", 64, jl_Object, [oncil_LabelExpressionDynamicLeafExpression, oncie_ElementTypeName, ji_Serializable], 0, 3, [0,0,0], 0, ["$expression", $rt_wrapFunction0(oncie_DynamicLabelExpression_expression), "$all", $rt_wrapFunction0(oncie_DynamicLabelExpression_all), "$position", $rt_wrapFunction0(oncie_DynamicLabelExpression_position), "$productPrefix", $rt_wrapFunction0(oncie_DynamicLabelExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_DynamicLabelExpression_productArity), -"$productElement", $rt_wrapFunction1(oncie_DynamicLabelExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_DynamicLabelExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_DynamicLabelExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_DynamicLabelExpression_toString), "$equals", $rt_wrapFunction1(oncie_DynamicLabelExpression_equals), "$dup", $rt_wrapFunction1(oncie_DynamicLabelExpression_dup)], -oncie_DynamicLabelOrRelTypeExpression, "DynamicLabelOrRelTypeExpression", 64, jl_Object, [oncil_LabelExpressionDynamicLeafExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$expression", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_expression), "$all", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_all), "$position", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_position), "$productPrefix", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_productArity), -"$productElement", $rt_wrapFunction1(oncie_DynamicLabelOrRelTypeExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_DynamicLabelOrRelTypeExpression_toString), "$equals", $rt_wrapFunction1(oncie_DynamicLabelOrRelTypeExpression_equals), "$dup", $rt_wrapFunction1(oncie_DynamicLabelOrRelTypeExpression_dup)], -oncie_DynamicRelTypeExpression, "DynamicRelTypeExpression", 64, jl_Object, [oncil_LabelExpressionDynamicLeafExpression, oncie_ElementTypeName, ji_Serializable], 0, 3, [0,0,0], 0, ["$expression", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_expression), "$all", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_all), "$position", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_position), "$productPrefix", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_productArity), -"$productElement", $rt_wrapFunction1(oncie_DynamicRelTypeExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_toString), "$equals", $rt_wrapFunction1(oncie_DynamicRelTypeExpression_equals), "$dup", $rt_wrapFunction1(oncie_DynamicRelTypeExpression_dup)], -oncie_ListSlice, "ListSlice", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ListSlice_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ListSlice_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ListSlice_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ListSlice_productArity), "$productElement", $rt_wrapFunction1(oncie_ListSlice_productElement), "$productIterator", $rt_wrapFunction0(oncie_ListSlice_productIterator), "$hashCode", -$rt_wrapFunction0(oncie_ListSlice_hashCode), "$toString", $rt_wrapFunction0(oncie_ListSlice_toString), "$equals", $rt_wrapFunction1(oncie_ListSlice_equals)], -oncil_LabelExpressionPredicate, "LabelExpressionPredicate", 63, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncil_LabelExpressionPredicate_position), "$isConstantForQuery", $rt_wrapFunction0(oncil_LabelExpressionPredicate_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpressionPredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpressionPredicate_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpressionPredicate_productElement), -"$productIterator", $rt_wrapFunction0(oncil_LabelExpressionPredicate_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpressionPredicate_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpressionPredicate_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpressionPredicate_equals)], -oncius_CypherTypeOrder$, "CypherTypeOrder$", 59, s_Enumeration, [], 4, 3, 0, oncius_CypherTypeOrder$_$callClinit, 0, -sm_Ordering$BooleanOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, -sm_Ordering$Boolean$, 0, jl_Object, [sm_Ordering$BooleanOrdering], 0, 3, 0, 0, ["$compare2", $rt_wrapFunction2(sm_Ordering$Boolean$_compare)], -oncie_UnsignedDecimalIntegerLiteral$$anon$2, "UnsignedDecimalIntegerLiteral$$anon$2", 64, oncie_UnsignedDecimalIntegerLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_UnsignedDecimalIntegerLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_UnsignedDecimalIntegerLiteral$$anon$2_literalLength)], -oncias_Symbol, "Symbol", 41, jl_Object, [s_Product, ji_Serializable], 4, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oncias_Symbol_toString), "$productArity", $rt_wrapFunction0(oncias_Symbol_productArity), "$productElement", $rt_wrapFunction1(oncias_Symbol_productElement), "$productIterator", $rt_wrapFunction0(oncias_Symbol_productIterator), "$hashCode", $rt_wrapFunction0(oncias_Symbol_hashCode), "$equals", $rt_wrapFunction1(oncias_Symbol_equals)], -onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_0_apply)], -onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$$org$neo4j$cypher$internal$util$Foldable$$foldAcc$lambda$_3_1_apply)], -oncia_SingleQuery$semanticCheckAbstract$lambda$_66_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$semanticCheckAbstract$lambda$_66_0_apply)], -oncias_package$, 0, jl_Object, [], 4, 3, 0, oncias_package$_$callClinit, 0, -oncias_SemanticState$$recordCurrentScope$lambda$_9_0, "SemanticState$$recordCurrentScope$lambda$_9_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$$recordCurrentScope$lambda$_9_0_apply)], -oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$rewriteTopLevelSingleQuery$lambda$_36_0_apply)], -su_Try, 0, jl_Object, [s_Product, ji_Serializable], 1, 3, 0, 0, 0, -su_Success, 0, su_Try, [], 4, 3, 0, 0, ["$getOrElse", $rt_wrapFunction1(su_Success_getOrElse)], -suc_NonFatal$, 0, jl_Object, [], 4, 3, 0, 0, 0, -su_Failure, 0, su_Try, [], 4, 3, 0, 0, ["$getOrElse", $rt_wrapFunction1(su_Failure_getOrElse)]]); -$rt_metadata([scc_AsScalaExtensions$ListHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncie_FilteringExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_ListComprehension, "ListComprehension", 62, oncie_Expression, [oncie_FilteringExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$expression0", $rt_wrapFunction0(oncie_ListComprehension_expression), "$position", $rt_wrapFunction0(oncie_ListComprehension_position), "$variable0", $rt_wrapFunction0(oncie_ListComprehension_variable), "$innerPredicate", $rt_wrapFunction0(oncie_ListComprehension_innerPredicate), "$isConstantForQuery", $rt_wrapFunction0(oncie_ListComprehension_isConstantForQuery), "$productPrefix", +$rt_wrapFunction0(oncie_ListComprehension_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ListComprehension_productArity), "$productElement", $rt_wrapFunction1(oncie_ListComprehension_productElement), "$productIterator", $rt_wrapFunction0(oncie_ListComprehension_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ListComprehension_hashCode), "$toString", $rt_wrapFunction0(oncie_ListComprehension_toString), "$equals", $rt_wrapFunction1(oncie_ListComprehension_equals)], +oncie_ExtractScope, "ExtractScope", 62, oncie_Expression, [oncie_ScopeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$dependencies", $rt_wrapFunction0(oncie_ExtractScope_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_ExtractScope_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_ExtractScope_position), "$introducedVariables", $rt_wrapFunction0(oncie_ExtractScope_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_ExtractScope_scopeDependencies), "$productPrefix", $rt_wrapFunction0(oncie_ExtractScope_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_ExtractScope_productArity), "$productElement", $rt_wrapFunction1(oncie_ExtractScope_productElement), "$productIterator", $rt_wrapFunction0(oncie_ExtractScope_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ExtractScope_hashCode), "$toString", $rt_wrapFunction0(oncie_ExtractScope_toString), "$equals", $rt_wrapFunction1(oncie_ExtractScope_equals)], +oncie_IterablePredicateExpression, 0, jl_Object, [oncie_FilteringExpression, oncie_BooleanExpression], 3, 3, 0, 0, 0, +oncie_AllIterablePredicate, "AllIterablePredicate", 62, oncie_Expression, [oncie_IterablePredicateExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$variable0", $rt_wrapFunction0(oncie_AllIterablePredicate_variable), "$innerPredicate", $rt_wrapFunction0(oncie_AllIterablePredicate_innerPredicate), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_AllIterablePredicate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_AllIterablePredicate_isConstantForQuery), "$scope", $rt_wrapFunction0(oncie_AllIterablePredicate_scope), +"$expression0", $rt_wrapFunction0(oncie_AllIterablePredicate_expression), "$position", $rt_wrapFunction0(oncie_AllIterablePredicate_position), "$name", $rt_wrapFunction0(oncie_AllIterablePredicate_name), "$productPrefix", $rt_wrapFunction0(oncie_AllIterablePredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_AllIterablePredicate_productArity), "$productElement", $rt_wrapFunction1(oncie_AllIterablePredicate_productElement), "$productIterator", $rt_wrapFunction0(oncie_AllIterablePredicate_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_AllIterablePredicate_hashCode), "$toString", $rt_wrapFunction0(oncie_AllIterablePredicate_toString), "$equals", $rt_wrapFunction1(oncie_AllIterablePredicate_equals)], +oncie_FilterScope, "FilterScope", 62, oncie_Expression, [oncie_ScopeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$dependencies", $rt_wrapFunction0(oncie_FilterScope_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_FilterScope_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_FilterScope_position), "$introducedVariables", $rt_wrapFunction0(oncie_FilterScope_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_FilterScope_scopeDependencies), "$productPrefix", $rt_wrapFunction0(oncie_FilterScope_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_FilterScope_productArity), "$productElement", $rt_wrapFunction1(oncie_FilterScope_productElement), "$productIterator", $rt_wrapFunction0(oncie_FilterScope_productIterator), "$hashCode", $rt_wrapFunction0(oncie_FilterScope_hashCode), "$toString", $rt_wrapFunction0(oncie_FilterScope_toString), "$equals", $rt_wrapFunction1(oncie_FilterScope_equals)], +oncie_AnyIterablePredicate, "AnyIterablePredicate", 62, oncie_Expression, [oncie_IterablePredicateExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$variable0", $rt_wrapFunction0(oncie_AnyIterablePredicate_variable), "$innerPredicate", $rt_wrapFunction0(oncie_AnyIterablePredicate_innerPredicate), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_AnyIterablePredicate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_AnyIterablePredicate_isConstantForQuery), "$scope", $rt_wrapFunction0(oncie_AnyIterablePredicate_scope), +"$expression0", $rt_wrapFunction0(oncie_AnyIterablePredicate_expression), "$position", $rt_wrapFunction0(oncie_AnyIterablePredicate_position), "$name", $rt_wrapFunction0(oncie_AnyIterablePredicate_name), "$productPrefix", $rt_wrapFunction0(oncie_AnyIterablePredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_AnyIterablePredicate_productArity), "$productElement", $rt_wrapFunction1(oncie_AnyIterablePredicate_productElement), "$productIterator", $rt_wrapFunction0(oncie_AnyIterablePredicate_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_AnyIterablePredicate_hashCode), "$toString", $rt_wrapFunction0(oncie_AnyIterablePredicate_toString), "$equals", $rt_wrapFunction1(oncie_AnyIterablePredicate_equals)], +oncie_NoneIterablePredicate, "NoneIterablePredicate", 62, oncie_Expression, [oncie_IterablePredicateExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$variable0", $rt_wrapFunction0(oncie_NoneIterablePredicate_variable), "$innerPredicate", $rt_wrapFunction0(oncie_NoneIterablePredicate_innerPredicate), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_NoneIterablePredicate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_NoneIterablePredicate_isConstantForQuery), "$scope", $rt_wrapFunction0(oncie_NoneIterablePredicate_scope), +"$expression0", $rt_wrapFunction0(oncie_NoneIterablePredicate_expression), "$position", $rt_wrapFunction0(oncie_NoneIterablePredicate_position), "$name", $rt_wrapFunction0(oncie_NoneIterablePredicate_name), "$productPrefix", $rt_wrapFunction0(oncie_NoneIterablePredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NoneIterablePredicate_productArity), "$productElement", $rt_wrapFunction1(oncie_NoneIterablePredicate_productElement), "$productIterator", $rt_wrapFunction0(oncie_NoneIterablePredicate_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_NoneIterablePredicate_hashCode), "$toString", $rt_wrapFunction0(oncie_NoneIterablePredicate_toString), "$equals", $rt_wrapFunction1(oncie_NoneIterablePredicate_equals)], +oncie_SingleIterablePredicate, "SingleIterablePredicate", 62, oncie_Expression, [oncie_IterablePredicateExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$variable0", $rt_wrapFunction0(oncie_SingleIterablePredicate_variable), "$innerPredicate", $rt_wrapFunction0(oncie_SingleIterablePredicate_innerPredicate), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_SingleIterablePredicate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_SingleIterablePredicate_isConstantForQuery), "$scope", $rt_wrapFunction0(oncie_SingleIterablePredicate_scope), +"$expression0", $rt_wrapFunction0(oncie_SingleIterablePredicate_expression), "$position", $rt_wrapFunction0(oncie_SingleIterablePredicate_position), "$name", $rt_wrapFunction0(oncie_SingleIterablePredicate_name), "$productPrefix", $rt_wrapFunction0(oncie_SingleIterablePredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_SingleIterablePredicate_productArity), "$productElement", $rt_wrapFunction1(oncie_SingleIterablePredicate_productElement), "$productIterator", $rt_wrapFunction0(oncie_SingleIterablePredicate_productIterator), +"$hashCode", $rt_wrapFunction0(oncie_SingleIterablePredicate_hashCode), "$toString", $rt_wrapFunction0(oncie_SingleIterablePredicate_toString), "$equals", $rt_wrapFunction1(oncie_SingleIterablePredicate_equals)], +oncief_Function$, 0, jl_Object, [], 4, 3, 0, oncief_Function$_$callClinit, 0, +oncie_FunctionInvocation$_init_$lambda$_41_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_FunctionInvocation$_init_$lambda$_41_0_apply)], +oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0_apply0)], +oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1_apply0)], +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0_apply0)], +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1_apply0)], +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_20, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2_apply0)], +oncia_NodeUniqueConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, +oncia_NodeUniqueConstraintsCypher5$, "NodeUniqueConstraintsCypher5$", 35, jl_Object, [oncia_NodeUniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeUniqueConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_toString)], +oncia_RelUniqueConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, +oncia_RelUniqueConstraintsCypher5$, "RelUniqueConstraintsCypher5$", 35, jl_Object, [oncia_RelUniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelUniqueConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_toString)], +oncia_UniqueConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, +oncia_UniqueConstraintsCypher5$, "UniqueConstraintsCypher5$", 35, jl_Object, [oncia_UniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_UniqueConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_hashCode), +"$toString", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_toString)], +oncia_NodePropExistsConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, +oncia_NodePropExistsConstraintsCypher5$, "NodePropExistsConstraintsCypher5$", 35, jl_Object, [oncia_NodePropExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_NodePropExistsConstraintsCypher5$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher5$_prettyPrint0), "$org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_NodePropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$output_$eq), +"$org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$prettyPrint_$eq", $rt_wrapFunction1(oncia_NodePropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropExistsConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher5$_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher5$_toString)], +oncia_RelPropExistsConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, +oncia_RelPropExistsConstraintsCypher5$, "RelPropExistsConstraintsCypher5$", 35, jl_Object, [oncia_RelPropExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_RelPropExistsConstraintsCypher5$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher5$_prettyPrint0), "$org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_RelPropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$output_$eq), +"$org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$prettyPrint_$eq", $rt_wrapFunction1(oncia_RelPropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelPropExistsConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher5$_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher5$_toString)], +oncia_PropExistsConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, +oncia_PropExistsConstraintsCypher5$, "PropExistsConstraintsCypher5$", 35, jl_Object, [oncia_PropExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_PropExistsConstraintsCypher5$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher5$_prettyPrint0), "$org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_PropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$output_$eq), "$org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$prettyPrint_$eq", +$rt_wrapFunction1(oncia_PropExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_PropExistsConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher5$_toString)], oncia_IfExistsDo, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_IfExistsInvalidSyntax$, "IfExistsInvalidSyntax$", 36, jl_Object, [oncia_IfExistsDo, s_Product, ji_Serializable], 4, 3, 0, oncia_IfExistsInvalidSyntax$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_IfExistsInvalidSyntax$_productArity), "$productElement", $rt_wrapFunction1(oncia_IfExistsInvalidSyntax$_productElement), "$productIterator", $rt_wrapFunction0(oncia_IfExistsInvalidSyntax$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IfExistsInvalidSyntax$_hashCode), "$toString", $rt_wrapFunction0(oncia_IfExistsInvalidSyntax$_toString)], -oncia_IfExistsReplace$, "IfExistsReplace$", 36, jl_Object, [oncia_IfExistsDo, s_Product, ji_Serializable], 4, 3, 0, oncia_IfExistsReplace$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_IfExistsReplace$_productArity), "$productElement", $rt_wrapFunction1(oncia_IfExistsReplace$_productElement), "$productIterator", $rt_wrapFunction0(oncia_IfExistsReplace$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IfExistsReplace$_hashCode), "$toString", $rt_wrapFunction0(oncia_IfExistsReplace$_toString)], -oncia_IfExistsDoNothing$, "IfExistsDoNothing$", 36, jl_Object, [oncia_IfExistsDo, s_Product, ji_Serializable], 4, 3, 0, oncia_IfExistsDoNothing$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_IfExistsDoNothing$_productArity), "$productElement", $rt_wrapFunction1(oncia_IfExistsDoNothing$_productElement), "$productIterator", $rt_wrapFunction0(oncia_IfExistsDoNothing$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IfExistsDoNothing$_hashCode), "$toString", $rt_wrapFunction0(oncia_IfExistsDoNothing$_toString)], -oncia_IfExistsThrowError$, "IfExistsThrowError$", 36, jl_Object, [oncia_IfExistsDo, s_Product, ji_Serializable], 4, 3, 0, oncia_IfExistsThrowError$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_IfExistsThrowError$_productArity), "$productElement", $rt_wrapFunction1(oncia_IfExistsThrowError$_productElement), "$productIterator", $rt_wrapFunction0(oncia_IfExistsThrowError$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IfExistsThrowError$_hashCode), "$toString", $rt_wrapFunction0(oncia_IfExistsThrowError$_toString)], -onciafn_DecorateTuple$AsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$asOptionsAst$lambda$_252_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$asOptionsAst$lambda$_252_0_apply)], -oncia_OptionsParam, "OptionsParam", 36, jl_Object, [oncia_Options, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_OptionsParam_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OptionsParam_productArity), "$productElement", $rt_wrapFunction1(oncia_OptionsParam_productElement), "$productIterator", $rt_wrapFunction0(oncia_OptionsParam_productIterator), "$hashCode", $rt_wrapFunction0(oncia_OptionsParam_hashCode), "$toString", $rt_wrapFunction0(oncia_OptionsParam_toString), -"$equals", $rt_wrapFunction1(oncia_OptionsParam_equals)], +oncia_IfExistsInvalidSyntax$, "IfExistsInvalidSyntax$", 35, jl_Object, [oncia_IfExistsDo, s_Product, ji_Serializable], 4, 3, 0, oncia_IfExistsInvalidSyntax$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_IfExistsInvalidSyntax$_productArity), "$productElement", $rt_wrapFunction1(oncia_IfExistsInvalidSyntax$_productElement), "$productIterator", $rt_wrapFunction0(oncia_IfExistsInvalidSyntax$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IfExistsInvalidSyntax$_hashCode), "$toString", $rt_wrapFunction0(oncia_IfExistsInvalidSyntax$_toString)], +oncia_IfExistsReplace$, "IfExistsReplace$", 35, jl_Object, [oncia_IfExistsDo, s_Product, ji_Serializable], 4, 3, 0, oncia_IfExistsReplace$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_IfExistsReplace$_productArity), "$productElement", $rt_wrapFunction1(oncia_IfExistsReplace$_productElement), "$productIterator", $rt_wrapFunction0(oncia_IfExistsReplace$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IfExistsReplace$_hashCode), "$toString", $rt_wrapFunction0(oncia_IfExistsReplace$_toString)], +oncia_IfExistsDoNothing$, "IfExistsDoNothing$", 35, jl_Object, [oncia_IfExistsDo, s_Product, ji_Serializable], 4, 3, 0, oncia_IfExistsDoNothing$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_IfExistsDoNothing$_productArity), "$productElement", $rt_wrapFunction1(oncia_IfExistsDoNothing$_productElement), "$productIterator", $rt_wrapFunction0(oncia_IfExistsDoNothing$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IfExistsDoNothing$_hashCode), "$toString", $rt_wrapFunction0(oncia_IfExistsDoNothing$_toString)]]); +$rt_metadata([oncia_IfExistsThrowError$, "IfExistsThrowError$", 35, jl_Object, [oncia_IfExistsDo, s_Product, ji_Serializable], 4, 3, 0, oncia_IfExistsThrowError$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_IfExistsThrowError$_productArity), "$productElement", $rt_wrapFunction1(oncia_IfExistsThrowError$_productElement), "$productIterator", $rt_wrapFunction0(oncia_IfExistsThrowError$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_IfExistsThrowError$_hashCode), "$toString", $rt_wrapFunction0(oncia_IfExistsThrowError$_toString)], oncia_CreateConstraint, 0, jl_Object, [oncia_SchemaCommand], 3, 3, 0, 0, 0, -oncia_CreateConstraintCommand, "CreateConstraintCommand", 36, jl_Object, [oncia_CreateConstraint, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateConstraintCommand_returnColumns), "$checkOptionsMap", $rt_wrapFunction2(oncia_CreateConstraintCommand_checkOptionsMap), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreateConstraintCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreateConstraintCommand_declareVariable), "$error2", $rt_wrapFunction2(oncia_CreateConstraintCommand_error), -"$foldedOver", $rt_wrapFunction0(oncia_CreateConstraintCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateConstraintCommand_folder), "$org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq", $rt_wrapFunction1(oncia_CreateConstraintCommand_org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq), "$variable2", $rt_wrapFunction0(oncia_CreateConstraintCommand_variable), -"$properties0", $rt_wrapFunction0(oncia_CreateConstraintCommand_properties), "$constraintType", $rt_wrapFunction0(oncia_CreateConstraintCommand_constraintType), "$ifExistsDo", $rt_wrapFunction0(oncia_CreateConstraintCommand_ifExistsDo), "$options", $rt_wrapFunction0(oncia_CreateConstraintCommand_options), "$position", $rt_wrapFunction0(oncia_CreateConstraintCommand_position), "$entityType1", $rt_wrapFunction0(oncia_CreateConstraintCommand_entityType), "$semanticCheck", $rt_wrapFunction0(oncia_CreateConstraintCommand_semanticCheck), +oncia_CreateConstraintCommand, "CreateConstraintCommand", 35, jl_Object, [oncia_CreateConstraint, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreateConstraintCommand_returnColumns), "$checkOptionsMap", $rt_wrapFunction2(oncia_CreateConstraintCommand_checkOptionsMap), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreateConstraintCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreateConstraintCommand_declareVariable), "$error4", $rt_wrapFunction2(oncia_CreateConstraintCommand_error), +"$foldedOver", $rt_wrapFunction0(oncia_CreateConstraintCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateConstraintCommand_folder), "$org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq", $rt_wrapFunction1(oncia_CreateConstraintCommand_org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq), "$variable4", $rt_wrapFunction0(oncia_CreateConstraintCommand_variable), +"$properties3", $rt_wrapFunction0(oncia_CreateConstraintCommand_properties), "$constraintType1", $rt_wrapFunction0(oncia_CreateConstraintCommand_constraintType), "$ifExistsDo", $rt_wrapFunction0(oncia_CreateConstraintCommand_ifExistsDo), "$options", $rt_wrapFunction0(oncia_CreateConstraintCommand_options), "$position", $rt_wrapFunction0(oncia_CreateConstraintCommand_position), "$entityType1", $rt_wrapFunction0(oncia_CreateConstraintCommand_entityType), "$semanticCheck", $rt_wrapFunction0(oncia_CreateConstraintCommand_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreateConstraintCommand_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateConstraintCommand_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateConstraintCommand_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateConstraintCommand_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateConstraintCommand_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateConstraintCommand_toString), "$equals", $rt_wrapFunction1(oncia_CreateConstraintCommand_equals), "$dup", $rt_wrapFunction1(oncia_CreateConstraintCommand_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateConstraintCommand_withGraph)], oncia_CreateConstraintType, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_NodePropertyUniqueness$, "NodePropertyUniqueness$", 36, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_NodePropertyUniqueness$_description0), "$productArity", $rt_wrapFunction0(oncia_NodePropertyUniqueness$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropertyUniqueness$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropertyUniqueness$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodePropertyUniqueness$_hashCode), -"$toString", $rt_wrapFunction0(oncia_NodePropertyUniqueness$_toString)], -oncia_RelationshipPropertyUniqueness$, "RelationshipPropertyUniqueness$", 36, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_RelationshipPropertyUniqueness$_description0), "$productArity", $rt_wrapFunction0(oncia_RelationshipPropertyUniqueness$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipPropertyUniqueness$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipPropertyUniqueness$_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_RelationshipPropertyUniqueness$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipPropertyUniqueness$_toString)], -oncia_NodeKey$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_RelationshipKey$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_NodePropertyExistence$, "NodePropertyExistence$", 36, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_NodePropertyExistence$_description0), "$productArity", $rt_wrapFunction0(oncia_NodePropertyExistence$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropertyExistence$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropertyExistence$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodePropertyExistence$_hashCode), +oncia_NodePropertyExistence$, "NodePropertyExistence$", 35, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_NodePropertyExistence$_description0), "$productArity", $rt_wrapFunction0(oncia_NodePropertyExistence$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropertyExistence$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropertyExistence$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodePropertyExistence$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodePropertyExistence$_toString)], -oncia_RelationshipPropertyExistence$, "RelationshipPropertyExistence$", 36, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_description0), "$productArity", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipPropertyExistence$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_toString)], -oncius_NothingType, "NothingType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$simplify", $rt_wrapFunction0(oncius_NothingType_simplify), "$coercibleTo", $rt_wrapFunction0(oncius_NothingType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_NothingType_isAssignableFrom), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_NothingType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), "$position", -$rt_wrapFunction0(oncius_NothingType_position), "$parentType", $rt_wrapFunction0(oncius_NothingType_parentType), "$toString", $rt_wrapFunction0(oncius_NothingType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_NothingType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_NothingType_sortOrder), "$isNullable", $rt_wrapFunction0(oncius_NothingType_isNullable), "$description", $rt_wrapFunction0(oncius_NothingType_description), "$withIsNullable1", $rt_wrapFunction1(oncius_NothingType_withIsNullable), -"$isSubtypeOf", $rt_wrapFunction1(oncius_NothingType_isSubtypeOf), "$withPosition", $rt_wrapFunction1(oncius_NothingType_withPosition), "$covariant", $rt_wrapFunction0(oncius_NothingType_covariant), "$invariant", $rt_wrapFunction0(oncius_NothingType_invariant), "$leastUpperBound", $rt_wrapFunction1(oncius_NothingType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_NothingType_greatestLowerBound), "$productPrefix", $rt_wrapFunction0(oncius_NothingType_productPrefix), "$productArity", $rt_wrapFunction0(oncius_NothingType_productArity), -"$productElement", $rt_wrapFunction1(oncius_NothingType_productElement), "$productIterator", $rt_wrapFunction0(oncius_NothingType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_NothingType_hashCode), "$equals", $rt_wrapFunction1(oncius_NothingType_equals), "$dup", $rt_wrapFunction1(oncius_NothingType_dup)], -oncius_NullType, "NullType", 59, jl_Object, [oncius_CypherType, ji_Serializable], 0, 3, [0,0,0], 0, ["$description", $rt_wrapFunction0(oncius_NullType_description), "$simplify", $rt_wrapFunction0(oncius_NullType_simplify), "$coercibleTo", $rt_wrapFunction0(oncius_NullType_coercibleTo), "$isAssignableFrom0", $rt_wrapFunction1(oncius_NullType_isAssignableFrom), "$org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq", $rt_wrapFunction1(oncius_NullType_org$neo4j$cypher$internal$util$symbols$CypherType$_setter_$isAbstract_$eq), -"$position", $rt_wrapFunction0(oncius_NullType_position), "$parentType", $rt_wrapFunction0(oncius_NullType_parentType), "$toString", $rt_wrapFunction0(oncius_NullType_toString), "$toCypherTypeString", $rt_wrapFunction0(oncius_NullType_toCypherTypeString), "$sortOrder", $rt_wrapFunction0(oncius_NullType_sortOrder), "$isNullable", $rt_wrapFunction0(oncius_NullType_isNullable), "$withIsNullable1", $rt_wrapFunction1(oncius_NullType_withIsNullable), "$isSubtypeOf", $rt_wrapFunction1(oncius_NullType_isSubtypeOf), -"$withPosition", $rt_wrapFunction1(oncius_NullType_withPosition), "$covariant", $rt_wrapFunction0(oncius_NullType_covariant), "$invariant", $rt_wrapFunction0(oncius_NullType_invariant), "$leastUpperBound", $rt_wrapFunction1(oncius_NullType_leastUpperBound), "$greatestLowerBound", $rt_wrapFunction1(oncius_NullType_greatestLowerBound), "$productPrefix", $rt_wrapFunction0(oncius_NullType_productPrefix), "$productArity", $rt_wrapFunction0(oncius_NullType_productArity), "$productElement", $rt_wrapFunction1(oncius_NullType_productElement), -"$productIterator", $rt_wrapFunction0(oncius_NullType_productIterator), "$hashCode", $rt_wrapFunction0(oncius_NullType_hashCode), "$equals", $rt_wrapFunction1(oncius_NullType_equals), "$dup", $rt_wrapFunction1(oncius_NullType_dup)], -onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$convertCypherType$lambda$_165_0_apply)], -oncia_CreatePropertyTypeConstraint, "CreatePropertyTypeConstraint", 36, jl_Object, [oncia_CreateConstraint, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_returnColumns), "$checkOptionsMap", $rt_wrapFunction2(oncia_CreatePropertyTypeConstraint_checkOptionsMap), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreatePropertyTypeConstraint_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreatePropertyTypeConstraint_declareVariable), "$error2", +oncia_CreatePropertyTypeConstraint, "CreatePropertyTypeConstraint", 35, jl_Object, [oncia_CreateConstraint, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnColumns", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_returnColumns), "$checkOptionsMap", $rt_wrapFunction2(oncia_CreatePropertyTypeConstraint_checkOptionsMap), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreatePropertyTypeConstraint_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreatePropertyTypeConstraint_declareVariable), "$error4", $rt_wrapFunction2(oncia_CreatePropertyTypeConstraint_error), "$foldedOver", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_folder), "$org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq", $rt_wrapFunction1(oncia_CreatePropertyTypeConstraint_org$neo4j$cypher$internal$ast$CreateConstraint$_setter_$org$neo4j$cypher$internal$ast$CreateConstraint$$allowedPropertyTypes_$eq), -"$variable2", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_variable), "$ifExistsDo", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_ifExistsDo), "$options", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_options), "$position", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_position), "$properties0", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_properties), "$entityType1", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_entityType), "$constraintType", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_constraintType), +"$variable4", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_variable), "$ifExistsDo", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_ifExistsDo), "$options", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_options), "$position", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_position), "$properties3", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_properties), "$entityType1", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_entityType), "$constraintType1", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_constraintType), "$semanticCheck", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_productArity), "$productElement", $rt_wrapFunction1(oncia_CreatePropertyTypeConstraint_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_hashCode), "$toString", $rt_wrapFunction0(oncia_CreatePropertyTypeConstraint_toString), "$equals", $rt_wrapFunction1(oncia_CreatePropertyTypeConstraint_equals), "$dup", $rt_wrapFunction1(oncia_CreatePropertyTypeConstraint_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreatePropertyTypeConstraint_withGraph)], -oncie_FunctionInvocation$ArgumentOrder, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_FunctionInvocation$ArgumentUnordered$, "FunctionInvocation$ArgumentUnordered$", 64, jl_Object, [oncie_FunctionInvocation$ArgumentOrder, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncie_FunctionInvocation$ArgumentUnordered$_productArity), "$productElement", $rt_wrapFunction1(oncie_FunctionInvocation$ArgumentUnordered$_productElement), "$productIterator", $rt_wrapFunction0(oncie_FunctionInvocation$ArgumentUnordered$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_FunctionInvocation$ArgumentUnordered$_hashCode), -"$toString", $rt_wrapFunction0(oncie_FunctionInvocation$ArgumentUnordered$_toString)], -oncief_Function$, 0, jl_Object, [], 4, 3, 0, oncief_Function$_$callClinit, 0, -oncie_FunctionInvocation$_init_$lambda$_41_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_FunctionInvocation$_init_$lambda$_41_0_apply)], +oncia_NodePropertyUniqueness$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_NodeKey$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_RelationshipPropertyExistence$, "RelationshipPropertyExistence$", 35, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_description0), "$productArity", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipPropertyExistence$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipPropertyExistence$_toString)], +oncia_RelationshipPropertyUniqueness$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_RelationshipKey$, 0, jl_Object, [], 4, 3, 0, 0, 0, oncia_CreateIndex, 0, jl_Object, [oncia_SchemaCommand], 3, 3, 0, 0, 0, oncia_CreateSingleLabelPropertyIndex, 0, jl_Object, [oncia_CreateIndex], 3, 3, 0, 0, 0, -oncia_CreateSingleLabelPropertyIndexCommand, "CreateSingleLabelPropertyIndexCommand", 36, jl_Object, [oncia_CreateSingleLabelPropertyIndex, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_semanticCheck), "$returnColumns", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_returnColumns), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreateSingleLabelPropertyIndexCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreateSingleLabelPropertyIndexCommand_declareVariable), -"$error2", $rt_wrapFunction2(oncia_CreateSingleLabelPropertyIndexCommand_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_folder), "$isNodeIndex", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_isNodeIndex), "$variable2", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_variable), "$properties1", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_properties), +oncia_CreateSingleLabelPropertyIndexCommand, "CreateSingleLabelPropertyIndexCommand", 35, jl_Object, [oncia_CreateSingleLabelPropertyIndex, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_semanticCheck), "$returnColumns", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_returnColumns), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreateSingleLabelPropertyIndexCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreateSingleLabelPropertyIndexCommand_declareVariable), +"$error4", $rt_wrapFunction2(oncia_CreateSingleLabelPropertyIndexCommand_error), "$foldedOver", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_folder), "$isNodeIndex", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_isNodeIndex), "$variable4", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_variable), "$properties4", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_properties), "$indexType", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_indexType), "$ifExistsDo", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_ifExistsDo), "$options", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_options), "$position", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_position), "$productPrefix", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateSingleLabelPropertyIndexCommand_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateSingleLabelPropertyIndexCommand_toString), "$equals", $rt_wrapFunction1(oncia_CreateSingleLabelPropertyIndexCommand_equals), "$dup", $rt_wrapFunction1(oncia_CreateSingleLabelPropertyIndexCommand_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateSingleLabelPropertyIndexCommand_withGraph)], oncia_CreateIndexType, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_RangeCreateIndex, "RangeCreateIndex", 36, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$nodeDescription", $rt_wrapFunction0(oncia_RangeCreateIndex_nodeDescription), "$relDescription", $rt_wrapFunction0(oncia_RangeCreateIndex_relDescription), "$allDescription", $rt_wrapFunction0(oncia_RangeCreateIndex_allDescription), "$singlePropertyOnly", $rt_wrapFunction0(oncia_RangeCreateIndex_singlePropertyOnly), "$productPrefix", $rt_wrapFunction0(oncia_RangeCreateIndex_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_RangeCreateIndex_productArity), "$productElement", $rt_wrapFunction1(oncia_RangeCreateIndex_productElement), "$productIterator", $rt_wrapFunction0(oncia_RangeCreateIndex_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RangeCreateIndex_hashCode), "$toString", $rt_wrapFunction0(oncia_RangeCreateIndex_toString), "$equals", $rt_wrapFunction1(oncia_RangeCreateIndex_equals)], -oncia_TextCreateIndex$, "TextCreateIndex$", 36, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, oncia_TextCreateIndex$_$callClinit, ["$nodeDescription", $rt_wrapFunction0(oncia_TextCreateIndex$_nodeDescription0), "$relDescription", $rt_wrapFunction0(oncia_TextCreateIndex$_relDescription0), "$allDescription", $rt_wrapFunction0(oncia_TextCreateIndex$_allDescription0), "$singlePropertyOnly", $rt_wrapFunction0(oncia_TextCreateIndex$_singlePropertyOnly0), "$productArity", $rt_wrapFunction0(oncia_TextCreateIndex$_productArity), +oncia_VectorCreateIndex$, "VectorCreateIndex$", 35, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$nodeDescription", $rt_wrapFunction0(oncia_VectorCreateIndex$_nodeDescription0), "$relDescription", $rt_wrapFunction0(oncia_VectorCreateIndex$_relDescription0), "$allDescription", $rt_wrapFunction0(oncia_VectorCreateIndex$_allDescription0), "$singlePropertyOnly", $rt_wrapFunction0(oncia_VectorCreateIndex$_singlePropertyOnly0), "$productArity", $rt_wrapFunction0(oncia_VectorCreateIndex$_productArity), +"$productElement", $rt_wrapFunction1(oncia_VectorCreateIndex$_productElement), "$productIterator", $rt_wrapFunction0(oncia_VectorCreateIndex$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_VectorCreateIndex$_hashCode), "$toString", $rt_wrapFunction0(oncia_VectorCreateIndex$_toString)], +oncia_TextCreateIndex$, "TextCreateIndex$", 35, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$nodeDescription", $rt_wrapFunction0(oncia_TextCreateIndex$_nodeDescription0), "$relDescription", $rt_wrapFunction0(oncia_TextCreateIndex$_relDescription0), "$allDescription", $rt_wrapFunction0(oncia_TextCreateIndex$_allDescription0), "$singlePropertyOnly", $rt_wrapFunction0(oncia_TextCreateIndex$_singlePropertyOnly0), "$productArity", $rt_wrapFunction0(oncia_TextCreateIndex$_productArity), "$productElement", $rt_wrapFunction1(oncia_TextCreateIndex$_productElement), "$productIterator", $rt_wrapFunction0(oncia_TextCreateIndex$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TextCreateIndex$_hashCode), "$toString", $rt_wrapFunction0(oncia_TextCreateIndex$_toString)], -oncia_PointCreateIndex$, "PointCreateIndex$", 36, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$nodeDescription", $rt_wrapFunction0(oncia_PointCreateIndex$_nodeDescription0), "$relDescription", $rt_wrapFunction0(oncia_PointCreateIndex$_relDescription0), "$allDescription", $rt_wrapFunction0(oncia_PointCreateIndex$_allDescription0), "$singlePropertyOnly", $rt_wrapFunction0(oncia_PointCreateIndex$_singlePropertyOnly0), "$productArity", $rt_wrapFunction0(oncia_PointCreateIndex$_productArity), +oncia_RangeCreateIndex, "RangeCreateIndex", 35, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$nodeDescription", $rt_wrapFunction0(oncia_RangeCreateIndex_nodeDescription), "$relDescription", $rt_wrapFunction0(oncia_RangeCreateIndex_relDescription), "$allDescription", $rt_wrapFunction0(oncia_RangeCreateIndex_allDescription), "$singlePropertyOnly", $rt_wrapFunction0(oncia_RangeCreateIndex_singlePropertyOnly), "$productPrefix", $rt_wrapFunction0(oncia_RangeCreateIndex_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_RangeCreateIndex_productArity), "$productElement", $rt_wrapFunction1(oncia_RangeCreateIndex_productElement), "$productIterator", $rt_wrapFunction0(oncia_RangeCreateIndex_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RangeCreateIndex_hashCode), "$toString", $rt_wrapFunction0(oncia_RangeCreateIndex_toString), "$equals", $rt_wrapFunction1(oncia_RangeCreateIndex_equals)], +oncia_PointCreateIndex$, "PointCreateIndex$", 35, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$nodeDescription", $rt_wrapFunction0(oncia_PointCreateIndex$_nodeDescription0), "$relDescription", $rt_wrapFunction0(oncia_PointCreateIndex$_relDescription0), "$allDescription", $rt_wrapFunction0(oncia_PointCreateIndex$_allDescription0), "$singlePropertyOnly", $rt_wrapFunction0(oncia_PointCreateIndex$_singlePropertyOnly0), "$productArity", $rt_wrapFunction0(oncia_PointCreateIndex$_productArity), "$productElement", $rt_wrapFunction1(oncia_PointCreateIndex$_productElement), "$productIterator", $rt_wrapFunction0(oncia_PointCreateIndex$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PointCreateIndex$_hashCode), "$toString", $rt_wrapFunction0(oncia_PointCreateIndex$_toString)], -oncia_VectorCreateIndex$, "VectorCreateIndex$", 36, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$nodeDescription", $rt_wrapFunction0(oncia_VectorCreateIndex$_nodeDescription0), "$relDescription", $rt_wrapFunction0(oncia_VectorCreateIndex$_relDescription0), "$allDescription", $rt_wrapFunction0(oncia_VectorCreateIndex$_allDescription0), "$singlePropertyOnly", $rt_wrapFunction0(oncia_VectorCreateIndex$_singlePropertyOnly0), "$productArity", $rt_wrapFunction0(oncia_VectorCreateIndex$_productArity), -"$productElement", $rt_wrapFunction1(oncia_VectorCreateIndex$_productElement), "$productIterator", $rt_wrapFunction0(oncia_VectorCreateIndex$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_VectorCreateIndex$_hashCode), "$toString", $rt_wrapFunction0(oncia_VectorCreateIndex$_toString)], oncia_CreateFulltextIndex, 0, jl_Object, [oncia_CreateIndex], 3, 3, 0, 0, 0, -oncia_CreateFulltextIndexCommand, "CreateFulltextIndexCommand", 36, jl_Object, [oncia_CreateFulltextIndex, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_semanticCheck), "$returnColumns", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_returnColumns), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreateFulltextIndexCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreateFulltextIndexCommand_declareVariable), "$error2", $rt_wrapFunction2(oncia_CreateFulltextIndexCommand_error), -"$foldedOver", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_folder), "$indexType", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_indexType), "$isNodeIndex", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_isNodeIndex), "$variable2", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_variable), "$properties1", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_properties), "$ifExistsDo", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_ifExistsDo), +oncia_CreateFulltextIndexCommand, "CreateFulltextIndexCommand", 35, jl_Object, [oncia_CreateFulltextIndex, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_semanticCheck), "$returnColumns", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_returnColumns), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreateFulltextIndexCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreateFulltextIndexCommand_declareVariable), "$error4", $rt_wrapFunction2(oncia_CreateFulltextIndexCommand_error), +"$foldedOver", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_folder), "$indexType", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_indexType), "$isNodeIndex", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_isNodeIndex), "$variable4", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_variable), "$properties4", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_properties), "$ifExistsDo", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_ifExistsDo), "$options", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_options), "$position", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_position), "$productPrefix", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateFulltextIndexCommand_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateFulltextIndexCommand_toString), "$equals", $rt_wrapFunction1(oncia_CreateFulltextIndexCommand_equals), "$dup", $rt_wrapFunction1(oncia_CreateFulltextIndexCommand_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateFulltextIndexCommand_withGraph)], oncia_CreateLookupIndex, 0, jl_Object, [oncia_CreateIndex], 3, 3, 0, 0, 0, -oncia_CreateLookupIndexCommand, "CreateLookupIndexCommand", 36, jl_Object, [oncia_CreateLookupIndex, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_semanticCheck), "$returnColumns", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_returnColumns), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreateLookupIndexCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreateLookupIndexCommand_declareVariable), "$error2", $rt_wrapFunction2(oncia_CreateLookupIndexCommand_error), -"$foldedOver", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_folder), "$indexType", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_indexType), "$properties1", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_properties), "$variable2", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_variable), "$isNodeIndex", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_isNodeIndex), "$ifExistsDo", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_ifExistsDo), +oncia_CreateLookupIndexCommand, "CreateLookupIndexCommand", 35, jl_Object, [oncia_CreateLookupIndex, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_semanticCheck), "$returnColumns", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_returnColumns), "$semanticCheckFold", $rt_wrapFunction2(oncia_CreateLookupIndexCommand_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_CreateLookupIndexCommand_declareVariable), "$error4", $rt_wrapFunction2(oncia_CreateLookupIndexCommand_error), +"$foldedOver", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_foldedOver), "$folder", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_folder), "$indexType", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_indexType), "$properties4", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_properties), "$variable4", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_variable), "$isNodeIndex", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_isNodeIndex), "$ifExistsDo", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_ifExistsDo), "$options", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_options), "$position", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_position), "$productPrefix", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_productArity), "$productElement", $rt_wrapFunction1(oncia_CreateLookupIndexCommand_productElement), "$productIterator", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_productIterator), "$hashCode", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_hashCode), "$toString", $rt_wrapFunction0(oncia_CreateLookupIndexCommand_toString), "$equals", $rt_wrapFunction1(oncia_CreateLookupIndexCommand_equals), "$dup", $rt_wrapFunction1(oncia_CreateLookupIndexCommand_dup), "$withGraph0", $rt_wrapFunction1(oncia_CreateLookupIndexCommand_withGraph)], oncia_ShowColumn$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_DefaultOrAllShowColumns$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_DefaultOrAllShowColumns$_$callClinit, 0, -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_0_apply)], -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_1_apply)], -onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciafn_Neo4jASTFactory$getYieldAllAndYieldItems$lambda$_160_2_apply)], -oncia_ShowAndTerminateColumn, "ShowAndTerminateColumn", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowAndTerminateColumn_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_hashCode), -"$toString", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_toString), "$equals", $rt_wrapFunction1(oncia_ShowAndTerminateColumn_equals)], -oncia_ShowAndTerminateColumn$, 0, sr_AbstractFunction2, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_ShowIndexesClause, "ShowIndexesClause", 36, jl_Object, [oncia_CommandClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowIndexesClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowIndexesClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowIndexesClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowIndexesClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowIndexesClause_semanticCheckFold), -"$declareVariable", $rt_wrapFunction2(oncia_ShowIndexesClause_declareVariable), "$error2", $rt_wrapFunction2(oncia_ShowIndexesClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowIndexesClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowIndexesClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowIndexesClause_folder), "$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap", $rt_wrapFunction0(oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap), -"$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowIndexesClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$where", $rt_wrapFunction0(oncia_ShowIndexesClause_where), -"$yieldItems", $rt_wrapFunction0(oncia_ShowIndexesClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowIndexesClause_yieldAll), "$position", $rt_wrapFunction0(oncia_ShowIndexesClause_position), "$name", $rt_wrapFunction0(oncia_ShowIndexesClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowIndexesClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowIndexesClause_unfilteredColumns), "$moveWhereToProjection", $rt_wrapFunction0(oncia_ShowIndexesClause_moveWhereToProjection), -"$productPrefix", $rt_wrapFunction0(oncia_ShowIndexesClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowIndexesClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowIndexesClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowIndexesClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowIndexesClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowIndexesClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowIndexesClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowIndexesClause_dup)], -oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0_apply)], -oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1_apply)], -oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2_apply)], -oncia_CommandClauseAllowedOnSystem, 0, jl_Object, [oncia_ClauseAllowedOnSystem], 3, 3, 0, 0, 0]); -$rt_metadata([oncia_ShowFunctionsClause, "ShowFunctionsClause", 36, jl_Object, [oncia_CommandClause, oncia_CommandClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowFunctionsClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowFunctionsClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowFunctionsClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowFunctionsClause_shouldRunQPPChecks), -"$semanticCheckFold", $rt_wrapFunction2(oncia_ShowFunctionsClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowFunctionsClause_declareVariable), "$error2", $rt_wrapFunction2(oncia_ShowFunctionsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowFunctionsClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowFunctionsClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowFunctionsClause_folder), "$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap", -$rt_wrapFunction0(oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowFunctionsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), -"$where", $rt_wrapFunction0(oncia_ShowFunctionsClause_where), "$yieldItems", $rt_wrapFunction0(oncia_ShowFunctionsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowFunctionsClause_yieldAll), "$position", $rt_wrapFunction0(oncia_ShowFunctionsClause_position), "$name", $rt_wrapFunction0(oncia_ShowFunctionsClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowFunctionsClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowFunctionsClause_unfilteredColumns), "$moveWhereToProjection", -$rt_wrapFunction0(oncia_ShowFunctionsClause_moveWhereToProjection), "$productPrefix", $rt_wrapFunction0(oncia_ShowFunctionsClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowFunctionsClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowFunctionsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowFunctionsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowFunctionsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowFunctionsClause_toString), -"$equals", $rt_wrapFunction1(oncia_ShowFunctionsClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowFunctionsClause_dup)], -oncia_ShowConstraintsClause, "ShowConstraintsClause", 36, jl_Object, [oncia_CommandClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowConstraintsClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowConstraintsClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowConstraintsClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowConstraintsClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowConstraintsClause_semanticCheckFold), -"$declareVariable", $rt_wrapFunction2(oncia_ShowConstraintsClause_declareVariable), "$error2", $rt_wrapFunction2(oncia_ShowConstraintsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowConstraintsClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowConstraintsClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowConstraintsClause_folder), "$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap", $rt_wrapFunction0(oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap), -"$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowConstraintsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$where", $rt_wrapFunction0(oncia_ShowConstraintsClause_where), -"$yieldItems", $rt_wrapFunction0(oncia_ShowConstraintsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowConstraintsClause_yieldAll), "$position", $rt_wrapFunction0(oncia_ShowConstraintsClause_position), "$name", $rt_wrapFunction0(oncia_ShowConstraintsClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowConstraintsClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowConstraintsClause_unfilteredColumns), "$moveWhereToProjection", $rt_wrapFunction0(oncia_ShowConstraintsClause_moveWhereToProjection), -"$productPrefix", $rt_wrapFunction0(oncia_ShowConstraintsClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowConstraintsClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowConstraintsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowConstraintsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowConstraintsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowConstraintsClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowConstraintsClause_equals), -"$dup", $rt_wrapFunction1(oncia_ShowConstraintsClause_dup)], -oncia_UniqueConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, -oncia_UniqueConstraintsCypher5$, "UniqueConstraintsCypher5$", 36, jl_Object, [oncia_UniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_UniqueConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_hashCode), -"$toString", $rt_wrapFunction0(oncia_UniqueConstraintsCypher5$_toString)], -oncia_NodeUniqueConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, -oncia_NodeUniqueConstraintsCypher5$, "NodeUniqueConstraintsCypher5$", 36, jl_Object, [oncia_NodeUniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeUniqueConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_productIterator), "$hashCode", -$rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher5$_toString)], -oncia_RelUniqueConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, -oncia_RelUniqueConstraintsCypher5$, "RelUniqueConstraintsCypher5$", 36, jl_Object, [oncia_RelUniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelUniqueConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_productIterator), "$hashCode", -$rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher5$_toString)], -oncia_ExistsConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, -oncia_ExistsConstraintsCypher5$, "ExistsConstraintsCypher5$", 36, jl_Object, [oncia_ExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_ExistsConstraintsCypher5$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_ExistsConstraintsCypher5$_prettyPrint0), "$org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_ExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$output_$eq), "$org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$prettyPrint_$eq", -$rt_wrapFunction1(oncia_ExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_ExistsConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExistsConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExistsConstraintsCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExistsConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExistsConstraintsCypher5$_toString)], -oncia_NodeExistsConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, -oncia_NodeExistsConstraintsCypher5$, "NodeExistsConstraintsCypher5$", 36, jl_Object, [oncia_NodeExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_NodeExistsConstraintsCypher5$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher5$_prettyPrint0), "$org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_NodeExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$output_$eq), "$org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$prettyPrint_$eq", -$rt_wrapFunction1(oncia_NodeExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeExistsConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher5$_toString)], -oncia_RelExistsConstraints, 0, jl_Object, [oncia_ShowConstraintType], 3, 3, 0, 0, 0, -oncia_RelExistsConstraintsCypher5$, "RelExistsConstraintsCypher5$", 36, jl_Object, [oncia_RelExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_RelExistsConstraintsCypher5$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher5$_prettyPrint0), "$org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_RelExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$output_$eq), "$org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$prettyPrint_$eq", -$rt_wrapFunction1(oncia_RelExistsConstraintsCypher5$_org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelExistsConstraintsCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher5$_toString)], -oncia_ShowUserPrivileges, "ShowUserPrivileges", 36, jl_Object, [oncia_ShowPrivilegeScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowUserPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowUserPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowUserPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowUserPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowUserPrivileges_hashCode), "$toString", -$rt_wrapFunction0(oncia_ShowUserPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowUserPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowUserPrivileges_dup)], -oncia_ShowUsersPrivileges, "ShowUsersPrivileges", 36, jl_Object, [oncia_ShowPrivilegeScope, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowUsersPrivileges_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowUsersPrivileges_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowUsersPrivileges_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowUsersPrivileges_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowUsersPrivileges_hashCode), -"$toString", $rt_wrapFunction0(oncia_ShowUsersPrivileges_toString), "$equals", $rt_wrapFunction1(oncia_ShowUsersPrivileges_equals), "$dup", $rt_wrapFunction1(oncia_ShowUsersPrivileges_dup)], -oncia_ShowProceduresClause, "ShowProceduresClause", 36, jl_Object, [oncia_CommandClause, oncia_CommandClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowProceduresClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowProceduresClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowProceduresClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowProceduresClause_shouldRunQPPChecks), -"$semanticCheckFold", $rt_wrapFunction2(oncia_ShowProceduresClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowProceduresClause_declareVariable), "$error2", $rt_wrapFunction2(oncia_ShowProceduresClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowProceduresClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowProceduresClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowProceduresClause_folder), "$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap", -$rt_wrapFunction0(oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowProceduresClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), -"$where", $rt_wrapFunction0(oncia_ShowProceduresClause_where), "$yieldItems", $rt_wrapFunction0(oncia_ShowProceduresClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowProceduresClause_yieldAll), "$position", $rt_wrapFunction0(oncia_ShowProceduresClause_position), "$name", $rt_wrapFunction0(oncia_ShowProceduresClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowProceduresClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowProceduresClause_unfilteredColumns), "$moveWhereToProjection", -$rt_wrapFunction0(oncia_ShowProceduresClause_moveWhereToProjection), "$productPrefix", $rt_wrapFunction0(oncia_ShowProceduresClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowProceduresClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowProceduresClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowProceduresClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowProceduresClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowProceduresClause_toString), -"$equals", $rt_wrapFunction1(oncia_ShowProceduresClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowProceduresClause_dup)], oncia_ShowServers$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowServers$$apply$lambda$_1_0_apply)], oncia_ShowServers$$apply$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowServers$$apply$lambda$_1_1_apply)], oncia_ShowServers$$apply$lambda$_1_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowServers$$apply$lambda$_1_2_apply)], -oncia_CommandClauseWithNames, 0, jl_Object, [oncia_CommandClause], 3, 3, 0, 0, 0, -oncia_ShowSettingsClause, "ShowSettingsClause", 36, jl_Object, [oncia_CommandClauseWithNames, oncia_CommandClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowSettingsClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowSettingsClause_semanticCheck), -"$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowSettingsClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowSettingsClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowSettingsClause_declareVariable), "$error2", $rt_wrapFunction2(oncia_ShowSettingsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowSettingsClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowSettingsClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowSettingsClause_folder), -"$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap", $rt_wrapFunction0(oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowSettingsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), -"$names", $rt_wrapFunction0(oncia_ShowSettingsClause_names), "$where", $rt_wrapFunction0(oncia_ShowSettingsClause_where), "$yieldItems", $rt_wrapFunction0(oncia_ShowSettingsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowSettingsClause_yieldAll), "$position", $rt_wrapFunction0(oncia_ShowSettingsClause_position), "$name", $rt_wrapFunction0(oncia_ShowSettingsClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowSettingsClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowSettingsClause_unfilteredColumns), -"$moveWhereToProjection", $rt_wrapFunction0(oncia_ShowSettingsClause_moveWhereToProjection), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowSettingsClause_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowSettingsClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowSettingsClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowSettingsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowSettingsClause_productIterator), "$hashCode", -$rt_wrapFunction0(oncia_ShowSettingsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowSettingsClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowSettingsClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowSettingsClause_dup)], -oncia_ShowTransactionsClause$$apply$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$$apply$lambda$_40_0_apply)], -oncia_ShowTransactionsClause$$apply$lambda$_40_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$$apply$lambda$_40_1_apply)], -oncia_ShowTransactionsClause$$apply$lambda$_40_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$$apply$lambda$_40_2_apply)], -oncia_TransactionsCommandClause, 0, jl_Object, [oncia_CommandClauseWithNames, oncia_CommandClauseAllowedOnSystem], 3, 3, 0, 0, 0, -oncia_ShowTransactionsClause, "ShowTransactionsClause", 36, jl_Object, [oncia_TransactionsCommandClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowTransactionsClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowTransactionsClause_returnVariables), -"$semanticCheck", $rt_wrapFunction0(oncia_ShowTransactionsClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowTransactionsClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowTransactionsClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowTransactionsClause_declareVariable), "$error2", $rt_wrapFunction2(oncia_ShowTransactionsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowTransactionsClause_asCanonicalStringVal), "$foldedOver", -$rt_wrapFunction0(oncia_ShowTransactionsClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowTransactionsClause_folder), "$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap", $rt_wrapFunction0(oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowTransactionsClause_SetExtractor), -"$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$names", $rt_wrapFunction0(oncia_ShowTransactionsClause_names), "$where", $rt_wrapFunction0(oncia_ShowTransactionsClause_where), "$yieldItems", $rt_wrapFunction0(oncia_ShowTransactionsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowTransactionsClause_yieldAll), -"$position", $rt_wrapFunction0(oncia_ShowTransactionsClause_position), "$name", $rt_wrapFunction0(oncia_ShowTransactionsClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowTransactionsClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowTransactionsClause_unfilteredColumns), "$moveWhereToProjection", $rt_wrapFunction0(oncia_ShowTransactionsClause_moveWhereToProjection), "$productPrefix", $rt_wrapFunction0(oncia_ShowTransactionsClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowTransactionsClause_productArity), -"$productElement", $rt_wrapFunction1(oncia_ShowTransactionsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowTransactionsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowTransactionsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowTransactionsClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowTransactionsClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowTransactionsClause_dup)], -onciafn_Neo4jASTFactory$userPrivilegeScope$lambda$_194_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$userPrivilegeScope$lambda$_194_0_apply)], -oncia_TerminateTransactionsClause, "TerminateTransactionsClause", 36, jl_Object, [oncia_TransactionsCommandClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_TerminateTransactionsClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_TerminateTransactionsClause_semanticCheck), -"$shouldRunQPPChecks", $rt_wrapFunction0(oncia_TerminateTransactionsClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_TerminateTransactionsClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_TerminateTransactionsClause_declareVariable), "$error2", $rt_wrapFunction2(oncia_TerminateTransactionsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_TerminateTransactionsClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_TerminateTransactionsClause_foldedOver), -"$folder", $rt_wrapFunction0(oncia_TerminateTransactionsClause_folder), "$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap", $rt_wrapFunction0(oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_TerminateTransactionsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", -$rt_wrapFunction1(oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$originalColumns", $rt_wrapFunction0(oncia_TerminateTransactionsClause_originalColumns), "$names", $rt_wrapFunction0(oncia_TerminateTransactionsClause_names), "$yieldItems", $rt_wrapFunction0(oncia_TerminateTransactionsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_TerminateTransactionsClause_yieldAll), "$position", $rt_wrapFunction0(oncia_TerminateTransactionsClause_position), -"$name", $rt_wrapFunction0(oncia_TerminateTransactionsClause_name), "$unfilteredColumns", $rt_wrapFunction0(oncia_TerminateTransactionsClause_unfilteredColumns), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_TerminateTransactionsClause_clauseSpecificSemanticCheck), "$where", $rt_wrapFunction0(oncia_TerminateTransactionsClause_where), "$moveWhereToProjection", $rt_wrapFunction0(oncia_TerminateTransactionsClause_moveWhereToProjection), "$productPrefix", $rt_wrapFunction0(oncia_TerminateTransactionsClause_productPrefix), -"$productArity", $rt_wrapFunction0(oncia_TerminateTransactionsClause_productArity), "$productElement", $rt_wrapFunction1(oncia_TerminateTransactionsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_TerminateTransactionsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TerminateTransactionsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_TerminateTransactionsClause_toString), "$equals", $rt_wrapFunction1(oncia_TerminateTransactionsClause_equals), "$dup", $rt_wrapFunction1(oncia_TerminateTransactionsClause_dup)], -oncia_DefaultWith$, "DefaultWith$", 36, jl_Object, [oncia_WithType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_DefaultWith$_productArity), "$productElement", $rt_wrapFunction1(oncia_DefaultWith$_productElement), "$productIterator", $rt_wrapFunction0(oncia_DefaultWith$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_DefaultWith$_hashCode), "$toString", $rt_wrapFunction0(oncia_DefaultWith$_toString)], -oncia_LoadCSV, "LoadCSV", 36, jl_Object, [oncia_Clause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_LoadCSV_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_LoadCSV_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_LoadCSV_shouldRunQPPChecks), "$expectType4", $rt_wrapFunction4(oncia_LoadCSV_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_LoadCSV_expectType$default$4), "$error2", $rt_wrapFunction2(oncia_LoadCSV_error), "$asCanonicalStringVal", -$rt_wrapFunction0(oncia_LoadCSV_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_LoadCSV_foldedOver), "$folder", $rt_wrapFunction0(oncia_LoadCSV_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_LoadCSV_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_LoadCSV_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_LoadCSV_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), -"$position", $rt_wrapFunction0(oncia_LoadCSV_position), "$name", $rt_wrapFunction0(oncia_LoadCSV_name), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_LoadCSV_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_LoadCSV_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LoadCSV_productArity), "$productElement", $rt_wrapFunction1(oncia_LoadCSV_productElement), "$productIterator", $rt_wrapFunction0(oncia_LoadCSV_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LoadCSV_hashCode), -"$toString", $rt_wrapFunction0(oncia_LoadCSV_toString), "$equals", $rt_wrapFunction1(oncia_LoadCSV_equals), "$dup", $rt_wrapFunction1(oncia_LoadCSV_dup)], -onciu_BucketSize, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_UnknownSize$, "UnknownSize$", 54, jl_Object, [onciu_BucketSize, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(onciu_UnknownSize$_productArity), "$productElement", $rt_wrapFunction1(onciu_UnknownSize$_productElement), "$productIterator", $rt_wrapFunction0(onciu_UnknownSize$_productIterator), "$hashCode", $rt_wrapFunction0(onciu_UnknownSize$_hashCode), "$toString", $rt_wrapFunction0(onciu_UnknownSize$_toString)], -scc_AsScalaExtensions$MapHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, -scc_AsScalaExtensions$SetHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncia_UsingJoinHint, "UsingJoinHint", 36, jl_Object, [oncia_UserHint, ji_Serializable], 0, 3, [0,0,0], 0, ["$expectType4", $rt_wrapFunction4(oncia_UsingJoinHint_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_UsingJoinHint_expectType$default$4), "$position", $rt_wrapFunction0(oncia_UsingJoinHint_position), "$semanticCheck", $rt_wrapFunction0(oncia_UsingJoinHint_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_UsingJoinHint_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UsingJoinHint_productArity), -"$productElement", $rt_wrapFunction1(oncia_UsingJoinHint_productElement), "$productIterator", $rt_wrapFunction0(oncia_UsingJoinHint_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UsingJoinHint_hashCode), "$toString", $rt_wrapFunction0(oncia_UsingJoinHint_toString), "$equals", $rt_wrapFunction1(oncia_UsingJoinHint_equals), "$dup", $rt_wrapFunction1(oncia_UsingJoinHint_dup)], -onciu_NonEmptyList$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_ProcedureResultItem, "ProcedureResultItem", 36, jl_Object, [onciu_ASTNode, oncias_SemanticAnalysisTooling, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_ProcedureResultItem_position), "$productPrefix", $rt_wrapFunction0(oncia_ProcedureResultItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ProcedureResultItem_productArity), "$productElement", $rt_wrapFunction1(oncia_ProcedureResultItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_ProcedureResultItem_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_ProcedureResultItem_hashCode), "$toString", $rt_wrapFunction0(oncia_ProcedureResultItem_toString), "$equals", $rt_wrapFunction1(oncia_ProcedureResultItem_equals), "$dup", $rt_wrapFunction1(oncia_ProcedureResultItem_dup)], -oncia_UnaliasedReturnItem$_init_$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnaliasedReturnItem$_init_$lambda$_31_0_apply)], -oncia_UnaliasedReturnItem$_init_$lambda$_31_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnaliasedReturnItem$_init_$lambda$_31_1_apply)], -oncie_QuantifiedPath, "QuantifiedPath", 64, oncie_PatternElement, [oncie_PathFactor, oncie_PatternAtom, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_QuantifiedPath_position), "$allVariables", $rt_wrapFunction0(oncie_QuantifiedPath_allVariables), "$isBounded", $rt_wrapFunction0(oncie_QuantifiedPath_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_QuantifiedPath_productPrefix), "$productArity", $rt_wrapFunction0(oncie_QuantifiedPath_productArity), "$productElement", $rt_wrapFunction1(oncie_QuantifiedPath_productElement), -"$productIterator", $rt_wrapFunction0(oncie_QuantifiedPath_productIterator), "$hashCode", $rt_wrapFunction0(oncie_QuantifiedPath_hashCode), "$toString", $rt_wrapFunction0(oncie_QuantifiedPath_toString), "$equals", $rt_wrapFunction1(oncie_QuantifiedPath_equals), "$mapExpressions", $rt_wrapFunction1(oncie_QuantifiedPath_mapExpressions)], -oncie_PathConcatenation, "PathConcatenation", 64, oncie_PatternElement, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_PathConcatenation_position), "$allVariables", $rt_wrapFunction0(oncie_PathConcatenation_allVariables), "$isBounded", $rt_wrapFunction0(oncie_PathConcatenation_isBounded), "$productPrefix", $rt_wrapFunction0(oncie_PathConcatenation_productPrefix), "$productArity", $rt_wrapFunction0(oncie_PathConcatenation_productArity), "$productElement", $rt_wrapFunction1(oncie_PathConcatenation_productElement), -"$productIterator", $rt_wrapFunction0(oncie_PathConcatenation_productIterator), "$hashCode", $rt_wrapFunction0(oncie_PathConcatenation_hashCode), "$toString", $rt_wrapFunction0(oncie_PathConcatenation_toString), "$equals", $rt_wrapFunction1(oncie_PathConcatenation_equals), "$mapExpressions", $rt_wrapFunction1(oncie_PathConcatenation_mapExpressions)], -onciafn_Neo4jASTFactory$pretty$lambda$_254_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$pretty$lambda$_254_0_apply)], -onciafn_Neo4jASTFactory$convertSubqueryExpressionToUnifiedExpression$lambda$_139_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$convertSubqueryExpressionToUnifiedExpression$lambda$_139_0_apply)], -oncie_FilteringExpression, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_ListComprehension, "ListComprehension", 64, oncie_Expression, [oncie_FilteringExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$expression", $rt_wrapFunction0(oncie_ListComprehension_expression), "$position", $rt_wrapFunction0(oncie_ListComprehension_position), "$variable0", $rt_wrapFunction0(oncie_ListComprehension_variable), "$innerPredicate", $rt_wrapFunction0(oncie_ListComprehension_innerPredicate), "$isConstantForQuery", $rt_wrapFunction0(oncie_ListComprehension_isConstantForQuery), "$productPrefix", -$rt_wrapFunction0(oncie_ListComprehension_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ListComprehension_productArity), "$productElement", $rt_wrapFunction1(oncie_ListComprehension_productElement), "$productIterator", $rt_wrapFunction0(oncie_ListComprehension_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ListComprehension_hashCode), "$toString", $rt_wrapFunction0(oncie_ListComprehension_toString), "$equals", $rt_wrapFunction1(oncie_ListComprehension_equals)], -oncie_ExtractScope, "ExtractScope", 64, oncie_Expression, [oncie_ScopeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$dependencies", $rt_wrapFunction0(oncie_ExtractScope_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_ExtractScope_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_ExtractScope_position), "$introducedVariables", $rt_wrapFunction0(oncie_ExtractScope_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_ExtractScope_scopeDependencies), "$productPrefix", $rt_wrapFunction0(oncie_ExtractScope_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_ExtractScope_productArity), "$productElement", $rt_wrapFunction1(oncie_ExtractScope_productElement), "$productIterator", $rt_wrapFunction0(oncie_ExtractScope_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ExtractScope_hashCode), "$toString", $rt_wrapFunction0(oncie_ExtractScope_toString), "$equals", $rt_wrapFunction1(oncie_ExtractScope_equals)], -oncie_ReduceExpression, "ReduceExpression", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ReduceExpression_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ReduceExpression_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ReduceExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ReduceExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_ReduceExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_ReduceExpression_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_ReduceExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_ReduceExpression_toString), "$equals", $rt_wrapFunction1(oncie_ReduceExpression_equals)], -oncie_ReduceScope, "ReduceScope", 64, oncie_Expression, [oncie_ScopeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$dependencies", $rt_wrapFunction0(oncie_ReduceScope_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_ReduceScope_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_ReduceScope_position), "$introducedVariables", $rt_wrapFunction0(oncie_ReduceScope_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_ReduceScope_scopeDependencies), "$productPrefix", $rt_wrapFunction0(oncie_ReduceScope_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_ReduceScope_productArity), "$productElement", $rt_wrapFunction1(oncie_ReduceScope_productElement), "$productIterator", $rt_wrapFunction0(oncie_ReduceScope_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ReduceScope_hashCode), "$toString", $rt_wrapFunction0(oncie_ReduceScope_toString), "$equals", $rt_wrapFunction1(oncie_ReduceScope_equals)], -oncie_IterablePredicateExpression, 0, jl_Object, [oncie_FilteringExpression, oncie_BooleanExpression], 3, 3, 0, 0, 0]); -$rt_metadata([oncie_AllIterablePredicate, "AllIterablePredicate", 64, oncie_Expression, [oncie_IterablePredicateExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$variable0", $rt_wrapFunction0(oncie_AllIterablePredicate_variable), "$innerPredicate", $rt_wrapFunction0(oncie_AllIterablePredicate_innerPredicate), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_AllIterablePredicate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_AllIterablePredicate_isConstantForQuery), "$scope", $rt_wrapFunction0(oncie_AllIterablePredicate_scope), -"$expression", $rt_wrapFunction0(oncie_AllIterablePredicate_expression), "$position", $rt_wrapFunction0(oncie_AllIterablePredicate_position), "$name", $rt_wrapFunction0(oncie_AllIterablePredicate_name), "$productPrefix", $rt_wrapFunction0(oncie_AllIterablePredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_AllIterablePredicate_productArity), "$productElement", $rt_wrapFunction1(oncie_AllIterablePredicate_productElement), "$productIterator", $rt_wrapFunction0(oncie_AllIterablePredicate_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_AllIterablePredicate_hashCode), "$toString", $rt_wrapFunction0(oncie_AllIterablePredicate_toString), "$equals", $rt_wrapFunction1(oncie_AllIterablePredicate_equals)], -oncie_FilterScope, "FilterScope", 64, oncie_Expression, [oncie_ScopeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$dependencies", $rt_wrapFunction0(oncie_FilterScope_dependencies), "$isConstantForQuery", $rt_wrapFunction0(oncie_FilterScope_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_FilterScope_position), "$introducedVariables", $rt_wrapFunction0(oncie_FilterScope_introducedVariables), "$scopeDependencies", $rt_wrapFunction0(oncie_FilterScope_scopeDependencies), "$productPrefix", $rt_wrapFunction0(oncie_FilterScope_productPrefix), -"$productArity", $rt_wrapFunction0(oncie_FilterScope_productArity), "$productElement", $rt_wrapFunction1(oncie_FilterScope_productElement), "$productIterator", $rt_wrapFunction0(oncie_FilterScope_productIterator), "$hashCode", $rt_wrapFunction0(oncie_FilterScope_hashCode), "$toString", $rt_wrapFunction0(oncie_FilterScope_toString), "$equals", $rt_wrapFunction1(oncie_FilterScope_equals)], -oncie_AnyIterablePredicate, "AnyIterablePredicate", 64, oncie_Expression, [oncie_IterablePredicateExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$variable0", $rt_wrapFunction0(oncie_AnyIterablePredicate_variable), "$innerPredicate", $rt_wrapFunction0(oncie_AnyIterablePredicate_innerPredicate), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_AnyIterablePredicate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_AnyIterablePredicate_isConstantForQuery), "$scope", $rt_wrapFunction0(oncie_AnyIterablePredicate_scope), -"$expression", $rt_wrapFunction0(oncie_AnyIterablePredicate_expression), "$position", $rt_wrapFunction0(oncie_AnyIterablePredicate_position), "$name", $rt_wrapFunction0(oncie_AnyIterablePredicate_name), "$productPrefix", $rt_wrapFunction0(oncie_AnyIterablePredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_AnyIterablePredicate_productArity), "$productElement", $rt_wrapFunction1(oncie_AnyIterablePredicate_productElement), "$productIterator", $rt_wrapFunction0(oncie_AnyIterablePredicate_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_AnyIterablePredicate_hashCode), "$toString", $rt_wrapFunction0(oncie_AnyIterablePredicate_toString), "$equals", $rt_wrapFunction1(oncie_AnyIterablePredicate_equals)], -oncie_NoneIterablePredicate, "NoneIterablePredicate", 64, oncie_Expression, [oncie_IterablePredicateExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$variable0", $rt_wrapFunction0(oncie_NoneIterablePredicate_variable), "$innerPredicate", $rt_wrapFunction0(oncie_NoneIterablePredicate_innerPredicate), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_NoneIterablePredicate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_NoneIterablePredicate_isConstantForQuery), "$scope", $rt_wrapFunction0(oncie_NoneIterablePredicate_scope), -"$expression", $rt_wrapFunction0(oncie_NoneIterablePredicate_expression), "$position", $rt_wrapFunction0(oncie_NoneIterablePredicate_position), "$name", $rt_wrapFunction0(oncie_NoneIterablePredicate_name), "$productPrefix", $rt_wrapFunction0(oncie_NoneIterablePredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_NoneIterablePredicate_productArity), "$productElement", $rt_wrapFunction1(oncie_NoneIterablePredicate_productElement), "$productIterator", $rt_wrapFunction0(oncie_NoneIterablePredicate_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_NoneIterablePredicate_hashCode), "$toString", $rt_wrapFunction0(oncie_NoneIterablePredicate_toString), "$equals", $rt_wrapFunction1(oncie_NoneIterablePredicate_equals)], -oncie_SingleIterablePredicate, "SingleIterablePredicate", 64, oncie_Expression, [oncie_IterablePredicateExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$variable0", $rt_wrapFunction0(oncie_SingleIterablePredicate_variable), "$innerPredicate", $rt_wrapFunction0(oncie_SingleIterablePredicate_innerPredicate), "$asCanonicalStringVal", $rt_wrapFunction0(oncie_SingleIterablePredicate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_SingleIterablePredicate_isConstantForQuery), "$scope", $rt_wrapFunction0(oncie_SingleIterablePredicate_scope), -"$expression", $rt_wrapFunction0(oncie_SingleIterablePredicate_expression), "$position", $rt_wrapFunction0(oncie_SingleIterablePredicate_position), "$name", $rt_wrapFunction0(oncie_SingleIterablePredicate_name), "$productPrefix", $rt_wrapFunction0(oncie_SingleIterablePredicate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_SingleIterablePredicate_productArity), "$productElement", $rt_wrapFunction1(oncie_SingleIterablePredicate_productElement), "$productIterator", $rt_wrapFunction0(oncie_SingleIterablePredicate_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_SingleIterablePredicate_hashCode), "$toString", $rt_wrapFunction0(oncie_SingleIterablePredicate_toString), "$equals", $rt_wrapFunction1(oncie_SingleIterablePredicate_equals)], -oncie_QuantifiedPath$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_QuantifiedPath$$apply$lambda$_1_0_apply)], -oncie_MultiOperatorExpression, 0, jl_Object, [oncie_OperatorExpression], 3, 3, 0, 0, 0, -oncie_Ands, "Ands", 64, oncie_Expression, [oncie_BooleanExpression, oncie_MultiOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Ands_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Ands_isConstantForQuery), "$position", $rt_wrapFunction0(oncie_Ands_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Ands_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_Ands_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Ands_productArity), -"$productElement", $rt_wrapFunction1(oncie_Ands_productElement), "$productIterator", $rt_wrapFunction0(oncie_Ands_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Ands_hashCode), "$toString", $rt_wrapFunction0(oncie_Ands_toString), "$equals", $rt_wrapFunction1(oncie_Ands_equals)], -oncie_NormalForm, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_NFCNormalForm$, "NFCNormalForm$", 64, jl_Object, [oncie_NormalForm, s_Product, ji_Serializable], 4, 3, 0, oncie_NFCNormalForm$_$callClinit, ["$description", $rt_wrapFunction0(oncie_NFCNormalForm$_description), "$toString", $rt_wrapFunction0(oncie_NFCNormalForm$_toString), "$formName", $rt_wrapFunction0(oncie_NFCNormalForm$_formName), "$productArity", $rt_wrapFunction0(oncie_NFCNormalForm$_productArity), "$productElement", $rt_wrapFunction1(oncie_NFCNormalForm$_productElement), "$productIterator", $rt_wrapFunction0(oncie_NFCNormalForm$_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_NFCNormalForm$_hashCode)], -oncie_NFDNormalForm$, "NFDNormalForm$", 64, jl_Object, [oncie_NormalForm, s_Product, ji_Serializable], 4, 3, 0, oncie_NFDNormalForm$_$callClinit, ["$description", $rt_wrapFunction0(oncie_NFDNormalForm$_description), "$toString", $rt_wrapFunction0(oncie_NFDNormalForm$_toString), "$formName", $rt_wrapFunction0(oncie_NFDNormalForm$_formName), "$productArity", $rt_wrapFunction0(oncie_NFDNormalForm$_productArity), "$productElement", $rt_wrapFunction1(oncie_NFDNormalForm$_productElement), "$productIterator", $rt_wrapFunction0(oncie_NFDNormalForm$_productIterator), -"$hashCode", $rt_wrapFunction0(oncie_NFDNormalForm$_hashCode)], -oncie_NFKCNormalForm$, "NFKCNormalForm$", 64, jl_Object, [oncie_NormalForm, s_Product, ji_Serializable], 4, 3, 0, oncie_NFKCNormalForm$_$callClinit, ["$description", $rt_wrapFunction0(oncie_NFKCNormalForm$_description), "$toString", $rt_wrapFunction0(oncie_NFKCNormalForm$_toString), "$formName", $rt_wrapFunction0(oncie_NFKCNormalForm$_formName0), "$productArity", $rt_wrapFunction0(oncie_NFKCNormalForm$_productArity), "$productElement", $rt_wrapFunction1(oncie_NFKCNormalForm$_productElement), "$productIterator", -$rt_wrapFunction0(oncie_NFKCNormalForm$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NFKCNormalForm$_hashCode)], -oncie_NFKDNormalForm$, "NFKDNormalForm$", 64, jl_Object, [oncie_NormalForm, s_Product, ji_Serializable], 4, 3, 0, oncie_NFKDNormalForm$_$callClinit, ["$description", $rt_wrapFunction0(oncie_NFKDNormalForm$_description), "$toString", $rt_wrapFunction0(oncie_NFKDNormalForm$_toString), "$formName", $rt_wrapFunction0(oncie_NFKDNormalForm$_formName0), "$productArity", $rt_wrapFunction0(oncie_NFKDNormalForm$_productArity), "$productElement", $rt_wrapFunction1(oncie_NFKDNormalForm$_productElement), "$productIterator", -$rt_wrapFunction0(oncie_NFKDNormalForm$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NFKDNormalForm$_hashCode)], -sc_WithFilter, 0, jl_Object, [ji_Serializable], 1, 3, 0, 0, 0, -sc_IterableOps$WithFilter, 0, sc_WithFilter, [], 0, 3, 0, 0, 0, -sc_View$ZipWithIndex, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$ZipWithIndex_iterator), "$knownSize", $rt_wrapFunction0(sc_View$ZipWithIndex_knownSize)], -oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$verifyOrderByAggregationUse$lambda$_37_0_apply)], -oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_expandShowWhere$$$anonfun$addDefaultColumns$3$lambda$_23_0_apply)], -sc_View$Filter, "View$Filter", 21, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Filter_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Filter_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Filter_isEmpty)], -oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_normalizeWithAndReturnClauses$$anonfun$aliasUnaliasedReturnItems$1$lambda$_68_0_apply)], -oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_rewriteShowQuery$$$anonfun$getDefaultOrderFromProjectionOrCommand$1$lambda$_26_0_apply)], -scc_JavaCollectionWrappers$JIteratorWrapper, "JavaCollectionWrappers$JIteratorWrapper", 24, sc_AbstractIterator, [ji_Serializable], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scc_JavaCollectionWrappers$JIteratorWrapper_hasNext), "$next", $rt_wrapFunction0(scc_JavaCollectionWrappers$JIteratorWrapper_next)], -oncias_SemanticCheck$, 0, jl_Object, [], 4, 3, 0, oncias_SemanticCheck$_$callClinit, 0, -oncia_SingleQuery$checkStandaloneCall$lambda$_77_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkStandaloneCall$lambda$_77_0_apply)], -oncia_SingleQuery$checkStandaloneCall$lambda$_77_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkStandaloneCall$lambda$_77_1_apply)], -oncia_SingleQuery$checkStandaloneCall$lambda$_77_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkStandaloneCall$lambda$_77_2_apply)], -oncia_SingleQuery$checkStandaloneCall$lambda$_77_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$checkStandaloneCall$lambda$_77_3_apply)], -oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_0_apply)], -oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkComposableNonTransactionCommandsAllowed$lambda$_78_1_apply)], -oncia_SingleQuery$checkOrder$lambda$_79_0, "SingleQuery$checkOrder$lambda$_79_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkOrder$lambda$_79_0_apply)], -oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_80_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$checkNoCallInTransactionsAfterWriteClause$lambda$_80_0_apply)], -oncia_SingleQuery$Acc$1, "SingleQuery$Acc$1", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_productArity), "$productElement", $rt_wrapFunction1(oncia_SingleQuery$Acc$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_hashCode), "$toString", $rt_wrapFunction0(oncia_SingleQuery$Acc$1_toString), -"$equals", $rt_wrapFunction1(oncia_SingleQuery$Acc$1_equals)], -oncia_SingleQuery$checkInputDataStream$lambda$_83_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkInputDataStream$lambda$_83_0_apply)], -oncia_InputDataStream, 0, jl_Object, [oncia_Clause, ji_Serializable], 0, 3, 0, 0, 0, -oncias_IterableOnceSemanticChecking$, 0, jl_Object, [], 4, 3, 0, oncias_IterableOnceSemanticChecking$_$callClinit, 0, -oncia_SingleQuery$$anonfun$checkUsePosition$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$checkUsePosition$1_applyOrElse)], -oncia_SingleQuery$checkUsePosition$lambda$_85_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkUsePosition$lambda$_85_0_apply)], -oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$returnColumns$lambda$_16_0_apply)], -oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ReadAdministrationCommand$semanticCheck$lambda$_18_0_apply)], -oncifp_ResolvedFunctionInvocation$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncifp_ResolvedFunctionInvocation$_$callClinit, 0, -oncifp_RewriteProcedureCalls$resolveFunction$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -scc_JavaCollectionWrappers$MutableBufferWrapper, 0, ju_AbstractList, [scc_JavaCollectionWrappers$IterableWrapperTrait, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oncia_UnmappedUnion$$init$$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$$init$$lambda$_16_0_apply)], +oncia_DefaultOrAllShowColumns$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_DefaultOrAllShowColumns$_$callClinit, 0, +oncia_AllQualifier, "AllQualifier", 35, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_AllQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_AllQualifier_toString), +"$equals", $rt_wrapFunction1(oncia_AllQualifier_equals), "$dup", $rt_wrapFunction1(oncia_AllQualifier_dup)], +oncia_AllDatabasesQualifier, "AllDatabasesQualifier", 35, jl_Object, [oncia_DatabasePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_AllDatabasesQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_AllDatabasesQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_AllDatabasesQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_AllDatabasesQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_AllDatabasesQualifier_hashCode), +"$toString", $rt_wrapFunction0(oncia_AllDatabasesQualifier_toString), "$equals", $rt_wrapFunction1(oncia_AllDatabasesQualifier_equals), "$dup", $rt_wrapFunction1(oncia_AllDatabasesQualifier_dup)], +oncia_NamespacedName, "NamespacedName", 35, jl_Object, [oncia_DatabaseName, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_NamespacedName_position), "$toString", $rt_wrapFunction0(oncia_NamespacedName_toString), "$productPrefix", $rt_wrapFunction0(oncia_NamespacedName_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NamespacedName_productArity), "$productElement", $rt_wrapFunction1(oncia_NamespacedName_productElement), "$productIterator", $rt_wrapFunction0(oncia_NamespacedName_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_NamespacedName_hashCode), "$equals", $rt_wrapFunction1(oncia_NamespacedName_equals), "$dup", $rt_wrapFunction1(oncia_NamespacedName_dup)], +jl_InternalError, "InternalError", 12, jl_VirtualMachineError, [], 0, 3, 0, 0, 0, +oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_144_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_144_0_apply)], +oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0_apply)], +oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1_apply)], +oncipvaf_Cypher25AstUtil$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$10, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1_applyOrElse)], +oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0_apply)], +oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0_apply)], +oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$0, 0, sr_AbstractFunction7, [ji_Serializable], 0, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0_apply)], +oncipvaf_DdlShowBuilder$ConstraintEntity, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncia_NodePropExistsConstraintsCypher25$, "NodePropExistsConstraintsCypher25$", 35, jl_Object, [oncia_NodePropExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_NodePropExistsConstraintsCypher25$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher25$_prettyPrint0), "$org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_NodePropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$output_$eq), +"$org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$prettyPrint_$eq", $rt_wrapFunction1(oncia_NodePropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$NodePropExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropExistsConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher25$_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodePropExistsConstraintsCypher25$_toString)], +oncia_RelPropExistsConstraintsCypher25$, "RelPropExistsConstraintsCypher25$", 35, jl_Object, [oncia_RelPropExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_RelPropExistsConstraintsCypher25$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher25$_prettyPrint0), "$org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_RelPropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$output_$eq), +"$org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$prettyPrint_$eq", $rt_wrapFunction1(oncia_RelPropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$RelPropExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelPropExistsConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher25$_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelPropExistsConstraintsCypher25$_toString)], +oncia_PropExistsConstraintsCypher25$, "PropExistsConstraintsCypher25$", 35, jl_Object, [oncia_PropExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_PropExistsConstraintsCypher25$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher25$_prettyPrint0), "$org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_PropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$output_$eq), "$org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$prettyPrint_$eq", +$rt_wrapFunction1(oncia_PropExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$PropExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_PropExistsConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_PropExistsConstraintsCypher25$_toString)], +oncia_NodeUniqueConstraintsCypher25$, "NodeUniqueConstraintsCypher25$", 35, jl_Object, [oncia_NodeUniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeUniqueConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_toString)], +oncia_RelUniqueConstraintsCypher25$, "RelUniqueConstraintsCypher25$", 35, jl_Object, [oncia_RelUniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelUniqueConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_toString)], +oncia_UniqueConstraintsCypher25$, "UniqueConstraintsCypher25$", 35, jl_Object, [oncia_UniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_UniqueConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_hashCode), +"$toString", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_toString)], +jnc_CharacterCodingException, 0, ji_IOException, [], 0, 3, 0, 0, 0]); +$rt_metadata([oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0_apply)], +oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1_apply)], +oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0_apply)], +oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1_apply)], +oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0_apply)], +oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1_apply)], +oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1_applyOrElse)], +oncie_Ands$_init_$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, +oncie_DynamicLabelExpression, "DynamicLabelExpression", 62, jl_Object, [oncil_LabelExpressionDynamicLeafExpression, oncie_ElementTypeName, ji_Serializable], 0, 3, [0,0,0], 0, ["$expression0", $rt_wrapFunction0(oncie_DynamicLabelExpression_expression), "$all", $rt_wrapFunction0(oncie_DynamicLabelExpression_all), "$position", $rt_wrapFunction0(oncie_DynamicLabelExpression_position), "$productPrefix", $rt_wrapFunction0(oncie_DynamicLabelExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncie_DynamicLabelExpression_productArity), +"$productElement", $rt_wrapFunction1(oncie_DynamicLabelExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_DynamicLabelExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_DynamicLabelExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_DynamicLabelExpression_toString), "$equals", $rt_wrapFunction1(oncie_DynamicLabelExpression_equals), "$dup", $rt_wrapFunction1(oncie_DynamicLabelExpression_dup), "$mapExpressions", $rt_wrapFunction1(oncie_DynamicLabelExpression_mapExpressions)], +oncie_DynamicRelTypeExpression, "DynamicRelTypeExpression", 62, jl_Object, [oncil_LabelExpressionDynamicLeafExpression, oncie_ElementTypeName, oncie_RelTypeExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$expression0", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_expression), "$all", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_all), "$position", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_position), "$productPrefix", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_productPrefix), "$productArity", +$rt_wrapFunction0(oncie_DynamicRelTypeExpression_productArity), "$productElement", $rt_wrapFunction1(oncie_DynamicRelTypeExpression_productElement), "$productIterator", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_hashCode), "$toString", $rt_wrapFunction0(oncie_DynamicRelTypeExpression_toString), "$equals", $rt_wrapFunction1(oncie_DynamicRelTypeExpression_equals), "$dup", $rt_wrapFunction1(oncie_DynamicRelTypeExpression_dup), +"$mapExpressions", $rt_wrapFunction1(oncie_DynamicRelTypeExpression_mapExpressions)], +oncia_NodePropertyType, "NodePropertyType", 35, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_NodePropertyType_description), "$productPrefix", $rt_wrapFunction0(oncia_NodePropertyType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NodePropertyType_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropertyType_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropertyType_productIterator), "$hashCode", +$rt_wrapFunction0(oncia_NodePropertyType_hashCode), "$toString", $rt_wrapFunction0(oncia_NodePropertyType_toString), "$equals", $rt_wrapFunction1(oncia_NodePropertyType_equals)], +oncia_RelationshipPropertyType, "RelationshipPropertyType", 35, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_RelationshipPropertyType_description), "$productPrefix", $rt_wrapFunction0(oncia_RelationshipPropertyType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RelationshipPropertyType_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipPropertyType_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipPropertyType_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_RelationshipPropertyType_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipPropertyType_toString), "$equals", $rt_wrapFunction1(oncia_RelationshipPropertyType_equals)], +oncia_NodePropertyUniqueness, 0, jl_Object, [oncia_CreateConstraintType], 3, 3, 0, 0, 0, +oncia_NodePropertyUniquenessCypher25$, "NodePropertyUniquenessCypher25$", 35, jl_Object, [oncia_NodePropertyUniqueness, s_Product, ji_Serializable], 4, 3, 0, oncia_NodePropertyUniquenessCypher25$_$callClinit, ["$org$neo4j$cypher$internal$ast$NodePropertyUniqueness$_setter_$predicate_$eq", $rt_wrapFunction1(oncia_NodePropertyUniquenessCypher25$_org$neo4j$cypher$internal$ast$NodePropertyUniqueness$_setter_$predicate_$eq), "$description", $rt_wrapFunction0(oncia_NodePropertyUniquenessCypher25$_description0), "$productArity", +$rt_wrapFunction0(oncia_NodePropertyUniquenessCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropertyUniquenessCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropertyUniquenessCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodePropertyUniquenessCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodePropertyUniquenessCypher25$_toString)], +oncia_NodePropertyUniquenessCypher5$, "NodePropertyUniquenessCypher5$", 35, jl_Object, [oncia_NodePropertyUniqueness, s_Product, ji_Serializable], 4, 3, 0, oncia_NodePropertyUniquenessCypher5$_$callClinit, ["$org$neo4j$cypher$internal$ast$NodePropertyUniqueness$_setter_$predicate_$eq", $rt_wrapFunction1(oncia_NodePropertyUniquenessCypher5$_org$neo4j$cypher$internal$ast$NodePropertyUniqueness$_setter_$predicate_$eq), "$description", $rt_wrapFunction0(oncia_NodePropertyUniquenessCypher5$_description0), "$productArity", +$rt_wrapFunction0(oncia_NodePropertyUniquenessCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropertyUniquenessCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropertyUniquenessCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodePropertyUniquenessCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodePropertyUniquenessCypher5$_toString)], oncia_NodeKey, 0, jl_Object, [oncia_CreateConstraintType], 3, 3, 0, 0, 0, -oncia_NodeKeyCypher25$, "NodeKeyCypher25$", 36, jl_Object, [oncia_NodeKey, s_Product, ji_Serializable], 4, 3, 0, oncia_NodeKeyCypher25$_$callClinit, ["$description", $rt_wrapFunction0(oncia_NodeKeyCypher25$_description0), "$org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq", $rt_wrapFunction1(oncia_NodeKeyCypher25$_org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq), "$productArity", $rt_wrapFunction0(oncia_NodeKeyCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeKeyCypher25$_productElement), +oncia_NodeKeyCypher25$, "NodeKeyCypher25$", 35, jl_Object, [oncia_NodeKey, s_Product, ji_Serializable], 4, 3, 0, oncia_NodeKeyCypher25$_$callClinit, ["$description", $rt_wrapFunction0(oncia_NodeKeyCypher25$_description0), "$org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq", $rt_wrapFunction1(oncia_NodeKeyCypher25$_org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq), "$productArity", $rt_wrapFunction0(oncia_NodeKeyCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeKeyCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeKeyCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodeKeyCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodeKeyCypher25$_toString)], -oncia_NodeKeyCypher5$, "NodeKeyCypher5$", 36, jl_Object, [oncia_NodeKey, s_Product, ji_Serializable], 4, 3, 0, oncia_NodeKeyCypher5$_$callClinit, ["$description", $rt_wrapFunction0(oncia_NodeKeyCypher5$_description0), "$org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq", $rt_wrapFunction1(oncia_NodeKeyCypher5$_org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq), "$productArity", $rt_wrapFunction0(oncia_NodeKeyCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeKeyCypher5$_productElement), +oncia_NodeKeyCypher5$, "NodeKeyCypher5$", 35, jl_Object, [oncia_NodeKey, s_Product, ji_Serializable], 4, 3, 0, oncia_NodeKeyCypher5$_$callClinit, ["$description", $rt_wrapFunction0(oncia_NodeKeyCypher5$_description0), "$org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq", $rt_wrapFunction1(oncia_NodeKeyCypher5$_org$neo4j$cypher$internal$ast$NodeKey$_setter_$description_$eq), "$productArity", $rt_wrapFunction0(oncia_NodeKeyCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeKeyCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeKeyCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodeKeyCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodeKeyCypher5$_toString)], +oncia_RelationshipPropertyUniqueness, 0, jl_Object, [oncia_CreateConstraintType], 3, 3, 0, 0, 0, +oncia_RelationshipPropertyUniquenessCypher25$, "RelationshipPropertyUniquenessCypher25$", 35, jl_Object, [oncia_RelationshipPropertyUniqueness, s_Product, ji_Serializable], 4, 3, 0, oncia_RelationshipPropertyUniquenessCypher25$_$callClinit, ["$org$neo4j$cypher$internal$ast$RelationshipPropertyUniqueness$_setter_$predicate_$eq", $rt_wrapFunction1(oncia_RelationshipPropertyUniquenessCypher25$_org$neo4j$cypher$internal$ast$RelationshipPropertyUniqueness$_setter_$predicate_$eq), "$description", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher25$_description0), +"$productArity", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipPropertyUniquenessCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher25$_toString)], +oncia_RelationshipPropertyUniquenessCypher5$, "RelationshipPropertyUniquenessCypher5$", 35, jl_Object, [oncia_RelationshipPropertyUniqueness, s_Product, ji_Serializable], 4, 3, 0, oncia_RelationshipPropertyUniquenessCypher5$_$callClinit, ["$org$neo4j$cypher$internal$ast$RelationshipPropertyUniqueness$_setter_$predicate_$eq", $rt_wrapFunction1(oncia_RelationshipPropertyUniquenessCypher5$_org$neo4j$cypher$internal$ast$RelationshipPropertyUniqueness$_setter_$predicate_$eq), "$description", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher5$_description0), +"$productArity", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipPropertyUniquenessCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipPropertyUniquenessCypher5$_toString)], oncia_RelationshipKey, 0, jl_Object, [oncia_CreateConstraintType], 3, 3, 0, 0, 0, -oncia_RelationshipKeyCypher25$, "RelationshipKeyCypher25$", 36, jl_Object, [oncia_RelationshipKey, s_Product, ji_Serializable], 4, 3, 0, oncia_RelationshipKeyCypher25$_$callClinit, ["$description", $rt_wrapFunction0(oncia_RelationshipKeyCypher25$_description0), "$org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq", $rt_wrapFunction1(oncia_RelationshipKeyCypher25$_org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq), "$productArity", $rt_wrapFunction0(oncia_RelationshipKeyCypher25$_productArity), +oncia_RelationshipKeyCypher25$, "RelationshipKeyCypher25$", 35, jl_Object, [oncia_RelationshipKey, s_Product, ji_Serializable], 4, 3, 0, oncia_RelationshipKeyCypher25$_$callClinit, ["$description", $rt_wrapFunction0(oncia_RelationshipKeyCypher25$_description0), "$org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq", $rt_wrapFunction1(oncia_RelationshipKeyCypher25$_org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq), "$productArity", $rt_wrapFunction0(oncia_RelationshipKeyCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipKeyCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipKeyCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelationshipKeyCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipKeyCypher25$_toString)], -oncia_RelationshipKeyCypher5$, "RelationshipKeyCypher5$", 36, jl_Object, [oncia_RelationshipKey, s_Product, ji_Serializable], 4, 3, 0, oncia_RelationshipKeyCypher5$_$callClinit, ["$description", $rt_wrapFunction0(oncia_RelationshipKeyCypher5$_description0), "$org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq", $rt_wrapFunction1(oncia_RelationshipKeyCypher5$_org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq), "$productArity", $rt_wrapFunction0(oncia_RelationshipKeyCypher5$_productArity), +oncia_RelationshipKeyCypher5$, "RelationshipKeyCypher5$", 35, jl_Object, [oncia_RelationshipKey, s_Product, ji_Serializable], 4, 3, 0, oncia_RelationshipKeyCypher5$_$callClinit, ["$description", $rt_wrapFunction0(oncia_RelationshipKeyCypher5$_description0), "$org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq", $rt_wrapFunction1(oncia_RelationshipKeyCypher5$_org$neo4j$cypher$internal$ast$RelationshipKey$_setter_$description_$eq), "$productArity", $rt_wrapFunction0(oncia_RelationshipKeyCypher5$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipKeyCypher5$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipKeyCypher5$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelationshipKeyCypher5$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipKeyCypher5$_toString)], -oncia_NodePropertyType, "NodePropertyType", 36, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_NodePropertyType_description), "$productPrefix", $rt_wrapFunction0(oncia_NodePropertyType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NodePropertyType_productArity), "$productElement", $rt_wrapFunction1(oncia_NodePropertyType_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodePropertyType_productIterator), "$hashCode", -$rt_wrapFunction0(oncia_NodePropertyType_hashCode), "$toString", $rt_wrapFunction0(oncia_NodePropertyType_toString), "$equals", $rt_wrapFunction1(oncia_NodePropertyType_equals)]]); -$rt_metadata([oncia_RelationshipPropertyType, "RelationshipPropertyType", 36, jl_Object, [oncia_CreateConstraintType, s_Product, ji_Serializable], 0, 3, 0, 0, ["$description", $rt_wrapFunction0(oncia_RelationshipPropertyType_description), "$productPrefix", $rt_wrapFunction0(oncia_RelationshipPropertyType_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RelationshipPropertyType_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipPropertyType_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipPropertyType_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_RelationshipPropertyType_hashCode), "$toString", $rt_wrapFunction0(oncia_RelationshipPropertyType_toString), "$equals", $rt_wrapFunction1(oncia_RelationshipPropertyType_equals)], +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0_apply)], +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1_apply)], +oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2_apply)], oncia_UserAuth$$init$$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UserAuth$$init$$lambda$_23_0_apply)], oncia_UserAuth$$init$$lambda$_23_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UserAuth$$init$$lambda$_23_1_apply)], oncia_UserAuth$$init$$lambda$_23_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UserAuth$$init$$lambda$_23_2_apply)], oncia_UserAuth$$init$$lambda$_23_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UserAuth$$init$$lambda$_23_3_apply)], -jnci_AsciiCharset, 0, jnc_Charset, [], 0, 3, 0, 0, 0, -jnci_Iso8859Charset, 0, jnc_Charset, [], 0, 3, 0, 0, 0, -jnci_UTF16Charset, 0, jnc_Charset, [], 0, 3, 0, 0, 0, -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns$$apply$lambda$_1_0_apply)], -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns$$apply$lambda$_1_1_apply)], -oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_DefaultOrAllShowColumns$$apply$lambda$_1_2_apply)], -oncia_ShowIndexesClause$_init_$lambda$_111_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowIndexesClause$_init_$lambda$_111_0_apply)], -oncia_ShowIndexesClause$_init_$lambda$_111_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowIndexesClause$_init_$lambda$_111_1_apply)], -oncia_ShowFunctionsClause$_init_$lambda$_109_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowFunctionsClause$_init_$lambda$_109_0_apply)], -oncia_ShowFunctionsClause$_init_$lambda$_109_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowFunctionsClause$_init_$lambda$_109_1_apply)], -oncia_ShowConstraintsClause$_init_$lambda$_105_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$_init_$lambda$_105_0_apply)], -oncia_ShowConstraintsClause$_init_$lambda$_105_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$_init_$lambda$_105_1_apply)], -oncia_ShowProceduresClause$_init_$lambda$_108_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowProceduresClause$_init_$lambda$_108_0_apply)], -oncia_ShowProceduresClause$_init_$lambda$_108_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowProceduresClause$_init_$lambda$_108_1_apply)], -oncia_ShowSettingsClause$_init_$lambda$_105_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowSettingsClause$_init_$lambda$_105_0_apply)], -oncia_ShowSettingsClause$_init_$lambda$_105_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowSettingsClause$_init_$lambda$_105_1_apply)], -oncia_ShowTransactionsClause$_init_$lambda$_135_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$_init_$lambda$_135_0_apply)], -oncia_ShowTransactionsClause$_init_$lambda$_135_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$_init_$lambda$_135_1_apply)], -oncia_TerminateTransactionsClause$_init_$lambda$_96_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_TerminateTransactionsClause$_init_$lambda$_96_0_apply)], -onciu_NonEmptyList$IterableConverter, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncia_ProcedureResultItem$_init_$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProcedureResultItem$_init_$lambda$_76_0_apply)], -oncia_ProcedureResultItem$_init_$lambda$_76_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ProcedureResultItem$_init_$lambda$_76_1_apply)], -oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_0_test)], -oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_1, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipcaf_ASTExceptionFactory$invalidHintIndexType$lambda$_14_1_apply)], -oncie_ReduceExpression$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncie_ReduceExpression$$_clinit_$lambda$_0_0_apply)], -oncie_Ands$_init_$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, -oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$$$anonfun$normalize$4$lambda$_12_0_apply)], -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1_applyOrElse)], -oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$$anonfun$collectInPredicates$2$lambda$_33_0_apply)], -oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_Scope$$anonfun$allSymbolDefinitions$1$lambda$_38_0_apply)], -sc_MapOps$$anon$1, 0, sc_AbstractIterable, [scg_DefaultSerializable], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_MapOps$$anon$1_knownSize), "$iterator0", $rt_wrapFunction0(sc_MapOps$$anon$1_iterator)], -sc_SeqView$Reverse, 0, sc_AbstractSeqView, [], 0, 3, 0, 0, ["$apply1", $rt_wrapFunction1(sc_SeqView$Reverse_apply), "$length", $rt_wrapFunction0(sc_SeqView$Reverse_length), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Reverse_isEmpty)], -sc_IndexedSeqView$Reverse, "IndexedSeqView$Reverse", 21, sc_SeqView$Reverse, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_reverseIterator), "$stringPrefix", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_stringPrefix), "$head", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_head), "$headOption", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_headOption), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_lengthCompare), -"$knownSize", $rt_wrapFunction0(sc_IndexedSeqView$Reverse_knownSize), "$map8", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_map), "$map", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_map0), "$drop4", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_drop), "$drop", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_drop0), "$prepended3", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_prepended0), "$prepended", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_prepended), "$appended", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_appended), -"$appended2", $rt_wrapFunction1(sc_IndexedSeqView$Reverse_appended0)], -oncia_ReturnItems$containsAggregate$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$containsAggregate$lambda$_67_0_apply)], -oncia_SingleQuery$Acc$2$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, -oncias_package$$liftSemanticErrorDefs$lambda$_5_0, "package$$liftSemanticErrorDefs$lambda$_5_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticErrorDefs$lambda$_5_0_apply)], -oncia_SingleQuery$PartitionedClauses, "SingleQuery$PartitionedClauses", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_productArity), "$productElement", $rt_wrapFunction1(oncia_SingleQuery$PartitionedClauses_productElement), "$productIterator", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_hashCode), -"$toString", $rt_wrapFunction0(oncia_SingleQuery$PartitionedClauses_toString), "$equals", $rt_wrapFunction1(oncia_SingleQuery$PartitionedClauses_equals)], -oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_IterableOnceSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0_apply)], -oncias_SemanticCheck$$nestedCheck$lambda$_11_0, "SemanticCheck$$nestedCheck$lambda$_11_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$nestedCheck$lambda$_11_0_apply)], -oncias_SemanticCheck$Leaf, "SemanticCheck$Leaf", 41, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$run", $rt_wrapFunction2(oncias_SemanticCheck$Leaf_run), "$chain", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_chain), "$ifOkChain", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_ifOkChain), "$map11", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_map), "$flatMap3", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_flatMap), "$productPrefix", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_productPrefix), -"$productArity", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheck$Leaf_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheck$Leaf_equals)], -jl_VirtualMachineError, 0, jl_Error, [], 0, 3, 0, 0, 0, -jl_ThreadDeath, 0, jl_Error, [], 0, 3, 0, 0, 0, -jl_InterruptedException, 0, jl_Exception, [], 0, 3, 0, 0, 0, -suc_ControlThrowable, 0, jl_Throwable, [], 1, 3, 0, 0, 0, -oncifp_QualifiedName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0]); -$rt_metadata([oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_0_apply)], -oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$$apply$lambda$_1_1_apply)], -onciafn_DecorateTuple$asScalaEither$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, -oncief_Abs$, "Abs$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Abs$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Abs$_name), "$productArity", $rt_wrapFunction0(oncief_Abs$_productArity), "$productElement", $rt_wrapFunction1(oncief_Abs$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Abs$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Abs$_hashCode), "$toString", $rt_wrapFunction0(oncief_Abs$_toString), "$signatures", $rt_wrapFunction0(oncief_Abs$_signatures0)], -oncief_Acos$, "Acos$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Acos$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Acos$_name), "$productArity", $rt_wrapFunction0(oncief_Acos$_productArity), "$productElement", $rt_wrapFunction1(oncief_Acos$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Acos$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Acos$_hashCode), "$toString", $rt_wrapFunction0(oncief_Acos$_toString), "$signatures", $rt_wrapFunction0(oncief_Acos$_signatures0)], -oncief_Asin$, "Asin$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Asin$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Asin$_name), "$productArity", $rt_wrapFunction0(oncief_Asin$_productArity), "$productElement", $rt_wrapFunction1(oncief_Asin$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Asin$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Asin$_hashCode), "$toString", $rt_wrapFunction0(oncief_Asin$_toString), "$signatures", $rt_wrapFunction0(oncief_Asin$_signatures0)], -oncief_Atan$, "Atan$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Atan$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Atan$_name), "$productArity", $rt_wrapFunction0(oncief_Atan$_productArity), "$productElement", $rt_wrapFunction1(oncief_Atan$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Atan$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Atan$_hashCode), "$toString", $rt_wrapFunction0(oncief_Atan$_toString), "$signatures", $rt_wrapFunction0(oncief_Atan$_signatures0)], -oncief_Atan2$, "Atan2$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Atan2$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Atan2$_name), "$productArity", $rt_wrapFunction0(oncief_Atan2$_productArity), "$productElement", $rt_wrapFunction1(oncief_Atan2$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Atan2$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Atan2$_hashCode), "$toString", $rt_wrapFunction0(oncief_Atan2$_toString), "$signatures", $rt_wrapFunction0(oncief_Atan2$_signatures0)], -oncief_AggregatingFunction, 0, oncief_Function, [], 1, 3, 0, 0, 0, -oncief_Avg$, "Avg$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Avg$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Avg$_name), "$productArity", $rt_wrapFunction0(oncief_Avg$_productArity), "$productElement", $rt_wrapFunction1(oncief_Avg$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Avg$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Avg$_hashCode), "$toString", $rt_wrapFunction0(oncief_Avg$_toString), "$signatures", $rt_wrapFunction0(oncief_Avg$_signatures0)], -oncief_BTrim$, "BTrim$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_BTrim$_$callClinit, ["$name", $rt_wrapFunction0(oncief_BTrim$_name), "$productArity", $rt_wrapFunction0(oncief_BTrim$_productArity), "$productElement", $rt_wrapFunction1(oncief_BTrim$_productElement), "$productIterator", $rt_wrapFunction0(oncief_BTrim$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_BTrim$_hashCode), "$toString", $rt_wrapFunction0(oncief_BTrim$_toString), "$signatures", $rt_wrapFunction0(oncief_BTrim$_signatures0)], -oncief_Ceil$, "Ceil$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Ceil$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Ceil$_name), "$productArity", $rt_wrapFunction0(oncief_Ceil$_productArity), "$productElement", $rt_wrapFunction1(oncief_Ceil$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Ceil$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Ceil$_hashCode), "$toString", $rt_wrapFunction0(oncief_Ceil$_toString), "$signatures", $rt_wrapFunction0(oncief_Ceil$_signatures0)], -oncief_CharLength$, "CharLength$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_CharLength$_$callClinit, ["$name", $rt_wrapFunction0(oncief_CharLength$_name), "$productArity", $rt_wrapFunction0(oncief_CharLength$_productArity), "$productElement", $rt_wrapFunction1(oncief_CharLength$_productElement), "$productIterator", $rt_wrapFunction0(oncief_CharLength$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_CharLength$_hashCode), "$toString", $rt_wrapFunction0(oncief_CharLength$_toString), +oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1_applyOrElse)], +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0_apply)], +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1_apply)], +oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2_apply)], +onciu_NonEmptyList$$from$lambda$_3_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciu_NonEmptyList$$from$lambda$_3_0_apply)], +onciu_NonEmptyList, 0, jl_Object, [sc_IterableOnce], 3, 3, 0, 0, 0, +oncief_Abs$, "Abs$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Abs$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Abs$_name), "$productArity", $rt_wrapFunction0(oncief_Abs$_productArity), "$productElement", $rt_wrapFunction1(oncief_Abs$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Abs$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Abs$_hashCode), "$toString", $rt_wrapFunction0(oncief_Abs$_toString), "$signatures", $rt_wrapFunction0(oncief_Abs$_signatures0)], +oncief_Acos$, "Acos$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Acos$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Acos$_name), "$productArity", $rt_wrapFunction0(oncief_Acos$_productArity), "$productElement", $rt_wrapFunction1(oncief_Acos$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Acos$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Acos$_hashCode), "$toString", $rt_wrapFunction0(oncief_Acos$_toString), "$signatures", $rt_wrapFunction0(oncief_Acos$_signatures0)], +oncief_Asin$, "Asin$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Asin$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Asin$_name), "$productArity", $rt_wrapFunction0(oncief_Asin$_productArity), "$productElement", $rt_wrapFunction1(oncief_Asin$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Asin$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Asin$_hashCode), "$toString", $rt_wrapFunction0(oncief_Asin$_toString), "$signatures", $rt_wrapFunction0(oncief_Asin$_signatures0)], +oncief_Atan$, "Atan$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Atan$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Atan$_name), "$productArity", $rt_wrapFunction0(oncief_Atan$_productArity), "$productElement", $rt_wrapFunction1(oncief_Atan$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Atan$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Atan$_hashCode), "$toString", $rt_wrapFunction0(oncief_Atan$_toString), "$signatures", $rt_wrapFunction0(oncief_Atan$_signatures0)], +oncief_Atan2$, "Atan2$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Atan2$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Atan2$_name), "$productArity", $rt_wrapFunction0(oncief_Atan2$_productArity), "$productElement", $rt_wrapFunction1(oncief_Atan2$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Atan2$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Atan2$_hashCode), "$toString", $rt_wrapFunction0(oncief_Atan2$_toString), "$signatures", $rt_wrapFunction0(oncief_Atan2$_signatures0)], +oncief_Avg$, "Avg$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Avg$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Avg$_name), "$productArity", $rt_wrapFunction0(oncief_Avg$_productArity), "$productElement", $rt_wrapFunction1(oncief_Avg$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Avg$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Avg$_hashCode), "$toString", $rt_wrapFunction0(oncief_Avg$_toString), "$signatures", $rt_wrapFunction0(oncief_Avg$_signatures0)], +oncief_BTrim$, "BTrim$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_BTrim$_$callClinit, ["$name", $rt_wrapFunction0(oncief_BTrim$_name), "$productArity", $rt_wrapFunction0(oncief_BTrim$_productArity), "$productElement", $rt_wrapFunction1(oncief_BTrim$_productElement), "$productIterator", $rt_wrapFunction0(oncief_BTrim$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_BTrim$_hashCode), "$toString", $rt_wrapFunction0(oncief_BTrim$_toString), "$signatures", $rt_wrapFunction0(oncief_BTrim$_signatures0)], +oncief_Ceil$, "Ceil$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Ceil$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Ceil$_name), "$productArity", $rt_wrapFunction0(oncief_Ceil$_productArity), "$productElement", $rt_wrapFunction1(oncief_Ceil$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Ceil$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Ceil$_hashCode), "$toString", $rt_wrapFunction0(oncief_Ceil$_toString), "$signatures", $rt_wrapFunction0(oncief_Ceil$_signatures0)], +oncief_CharLength$, "CharLength$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_CharLength$_$callClinit, ["$name", $rt_wrapFunction0(oncief_CharLength$_name), "$productArity", $rt_wrapFunction0(oncief_CharLength$_productArity), "$productElement", $rt_wrapFunction1(oncief_CharLength$_productElement), "$productIterator", $rt_wrapFunction0(oncief_CharLength$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_CharLength$_hashCode), "$toString", $rt_wrapFunction0(oncief_CharLength$_toString), "$signatures", $rt_wrapFunction0(oncief_CharLength$_signatures0)], -oncief_CharacterLength$, "CharacterLength$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_CharacterLength$_$callClinit, ["$name", $rt_wrapFunction0(oncief_CharacterLength$_name), "$productArity", $rt_wrapFunction0(oncief_CharacterLength$_productArity), "$productElement", $rt_wrapFunction1(oncief_CharacterLength$_productElement), "$productIterator", $rt_wrapFunction0(oncief_CharacterLength$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_CharacterLength$_hashCode), "$toString", $rt_wrapFunction0(oncief_CharacterLength$_toString), +oncief_CharacterLength$, "CharacterLength$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_CharacterLength$_$callClinit, ["$name", $rt_wrapFunction0(oncief_CharacterLength$_name), "$productArity", $rt_wrapFunction0(oncief_CharacterLength$_productArity), "$productElement", $rt_wrapFunction1(oncief_CharacterLength$_productElement), "$productIterator", $rt_wrapFunction0(oncief_CharacterLength$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_CharacterLength$_hashCode), "$toString", $rt_wrapFunction0(oncief_CharacterLength$_toString), "$signatures", $rt_wrapFunction0(oncief_CharacterLength$_signatures0)], -oncief_Coalesce$, "Coalesce$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Coalesce$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Coalesce$_name), "$productArity", $rt_wrapFunction0(oncief_Coalesce$_productArity), "$productElement", $rt_wrapFunction1(oncief_Coalesce$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Coalesce$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Coalesce$_hashCode), "$toString", $rt_wrapFunction0(oncief_Coalesce$_toString), "$signatures", -$rt_wrapFunction0(oncief_Coalesce$_signatures0)], -oncief_Collect$, "Collect$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Collect$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Collect$_name), "$productArity", $rt_wrapFunction0(oncief_Collect$_productArity), "$productElement", $rt_wrapFunction1(oncief_Collect$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Collect$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Collect$_hashCode), "$toString", $rt_wrapFunction0(oncief_Collect$_toString), "$signatures", +oncief_Coalesce$, "Coalesce$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Coalesce$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Coalesce$_name), "$productArity", $rt_wrapFunction0(oncief_Coalesce$_productArity), "$productElement", $rt_wrapFunction1(oncief_Coalesce$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Coalesce$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Coalesce$_hashCode), "$toString", $rt_wrapFunction0(oncief_Coalesce$_toString), "$signatures", +$rt_wrapFunction0(oncief_Coalesce$_signatures1)], +oncief_Collect$, "Collect$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Collect$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Collect$_name), "$productArity", $rt_wrapFunction0(oncief_Collect$_productArity), "$productElement", $rt_wrapFunction1(oncief_Collect$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Collect$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Collect$_hashCode), "$toString", $rt_wrapFunction0(oncief_Collect$_toString), "$signatures", $rt_wrapFunction0(oncief_Collect$_signatures0)], -oncief_Cos$, "Cos$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Cos$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Cos$_name), "$productArity", $rt_wrapFunction0(oncief_Cos$_productArity), "$productElement", $rt_wrapFunction1(oncief_Cos$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Cos$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Cos$_hashCode), "$toString", $rt_wrapFunction0(oncief_Cos$_toString), "$signatures", $rt_wrapFunction0(oncief_Cos$_signatures0)], -oncief_Cot$, "Cot$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Cot$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Cot$_name), "$productArity", $rt_wrapFunction0(oncief_Cot$_productArity), "$productElement", $rt_wrapFunction1(oncief_Cot$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Cot$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Cot$_hashCode), "$toString", $rt_wrapFunction0(oncief_Cot$_toString), "$signatures", $rt_wrapFunction0(oncief_Cot$_signatures0)], -oncief_Count$, "Count$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Count$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Count$_name), "$productArity", $rt_wrapFunction0(oncief_Count$_productArity), "$productElement", $rt_wrapFunction1(oncief_Count$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Count$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Count$_hashCode), "$toString", $rt_wrapFunction0(oncief_Count$_toString), "$signatures", $rt_wrapFunction0(oncief_Count$_signatures0)], -oncief_Degrees$, "Degrees$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Degrees$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Degrees$_name), "$productArity", $rt_wrapFunction0(oncief_Degrees$_productArity), "$productElement", $rt_wrapFunction1(oncief_Degrees$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Degrees$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Degrees$_hashCode), "$toString", $rt_wrapFunction0(oncief_Degrees$_toString), "$signatures", $rt_wrapFunction0(oncief_Degrees$_signatures0)], -oncief_Distance$, "Distance$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Distance$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Distance$_name0), "$productArity", $rt_wrapFunction0(oncief_Distance$_productArity), "$productElement", $rt_wrapFunction1(oncief_Distance$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Distance$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Distance$_hashCode), "$toString", $rt_wrapFunction0(oncief_Distance$_toString), "$signatures", -$rt_wrapFunction0(oncief_Distance$_signatures0)], -oncief_E$, "E$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_E$_$callClinit, ["$name", $rt_wrapFunction0(oncief_E$_name), "$productArity", $rt_wrapFunction0(oncief_E$_productArity), "$productElement", $rt_wrapFunction1(oncief_E$_productElement), "$productIterator", $rt_wrapFunction0(oncief_E$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_E$_hashCode), "$toString", $rt_wrapFunction0(oncief_E$_toString), "$signatures", $rt_wrapFunction0(oncief_E$_signatures0)], -oncief_ElementId$, "ElementId$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ElementId$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ElementId$_name), "$productArity", $rt_wrapFunction0(oncief_ElementId$_productArity), "$productElement", $rt_wrapFunction1(oncief_ElementId$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ElementId$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ElementId$_hashCode), "$toString", $rt_wrapFunction0(oncief_ElementId$_toString), "$signatures", +oncief_Cos$, "Cos$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Cos$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Cos$_name), "$productArity", $rt_wrapFunction0(oncief_Cos$_productArity), "$productElement", $rt_wrapFunction1(oncief_Cos$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Cos$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Cos$_hashCode), "$toString", $rt_wrapFunction0(oncief_Cos$_toString), "$signatures", $rt_wrapFunction0(oncief_Cos$_signatures0)]]); +$rt_metadata([oncief_Cot$, "Cot$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Cot$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Cot$_name), "$productArity", $rt_wrapFunction0(oncief_Cot$_productArity), "$productElement", $rt_wrapFunction1(oncief_Cot$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Cot$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Cot$_hashCode), "$toString", $rt_wrapFunction0(oncief_Cot$_toString), "$signatures", $rt_wrapFunction0(oncief_Cot$_signatures0)], +oncief_Count$, "Count$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Count$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Count$_name), "$productArity", $rt_wrapFunction0(oncief_Count$_productArity), "$productElement", $rt_wrapFunction1(oncief_Count$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Count$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Count$_hashCode), "$toString", $rt_wrapFunction0(oncief_Count$_toString), "$signatures", $rt_wrapFunction0(oncief_Count$_signatures0)], +oncief_Degrees$, "Degrees$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Degrees$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Degrees$_name), "$productArity", $rt_wrapFunction0(oncief_Degrees$_productArity), "$productElement", $rt_wrapFunction1(oncief_Degrees$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Degrees$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Degrees$_hashCode), "$toString", $rt_wrapFunction0(oncief_Degrees$_toString), "$signatures", $rt_wrapFunction0(oncief_Degrees$_signatures0)], +oncief_Distance$, "Distance$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Distance$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Distance$_name0), "$productArity", $rt_wrapFunction0(oncief_Distance$_productArity), "$productElement", $rt_wrapFunction1(oncief_Distance$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Distance$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Distance$_hashCode), "$toString", $rt_wrapFunction0(oncief_Distance$_toString), "$signatures", +$rt_wrapFunction0(oncief_Distance$_signatures1)], +oncief_E$, "E$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_E$_$callClinit, ["$name", $rt_wrapFunction0(oncief_E$_name), "$productArity", $rt_wrapFunction0(oncief_E$_productArity), "$productElement", $rt_wrapFunction1(oncief_E$_productElement), "$productIterator", $rt_wrapFunction0(oncief_E$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_E$_hashCode), "$toString", $rt_wrapFunction0(oncief_E$_toString), "$signatures", $rt_wrapFunction0(oncief_E$_signatures0)], +oncief_ElementId$, "ElementId$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ElementId$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ElementId$_name), "$productArity", $rt_wrapFunction0(oncief_ElementId$_productArity), "$productElement", $rt_wrapFunction1(oncief_ElementId$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ElementId$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ElementId$_hashCode), "$toString", $rt_wrapFunction0(oncief_ElementId$_toString), "$signatures", $rt_wrapFunction0(oncief_ElementId$_signatures0)], -oncief_EndNode$, "EndNode$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_EndNode$_$callClinit, ["$name", $rt_wrapFunction0(oncief_EndNode$_name), "$productArity", $rt_wrapFunction0(oncief_EndNode$_productArity), "$productElement", $rt_wrapFunction1(oncief_EndNode$_productElement), "$productIterator", $rt_wrapFunction0(oncief_EndNode$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_EndNode$_hashCode), "$toString", $rt_wrapFunction0(oncief_EndNode$_toString), "$signatures", $rt_wrapFunction0(oncief_EndNode$_signatures0)], -oncief_Exists$, "Exists$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Exists$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Exists$_name), "$productArity", $rt_wrapFunction0(oncief_Exists$_productArity), "$productElement", $rt_wrapFunction1(oncief_Exists$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Exists$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Exists$_hashCode), "$toString", $rt_wrapFunction0(oncief_Exists$_toString), "$signatures", $rt_wrapFunction0(oncief_Exists$_signatures0)], -oncief_Exp$, "Exp$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Exp$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Exp$_name), "$productArity", $rt_wrapFunction0(oncief_Exp$_productArity), "$productElement", $rt_wrapFunction1(oncief_Exp$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Exp$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Exp$_hashCode), "$toString", $rt_wrapFunction0(oncief_Exp$_toString), "$signatures", $rt_wrapFunction0(oncief_Exp$_signatures0)], -oncief_File$, "File$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_File$_$callClinit, ["$name", $rt_wrapFunction0(oncief_File$_name), "$productArity", $rt_wrapFunction0(oncief_File$_productArity), "$productElement", $rt_wrapFunction1(oncief_File$_productElement), "$productIterator", $rt_wrapFunction0(oncief_File$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_File$_hashCode), "$toString", $rt_wrapFunction0(oncief_File$_toString), "$signatures", $rt_wrapFunction0(oncief_File$_signatures0)], -oncief_Floor$, "Floor$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Floor$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Floor$_name), "$productArity", $rt_wrapFunction0(oncief_Floor$_productArity), "$productElement", $rt_wrapFunction1(oncief_Floor$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Floor$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Floor$_hashCode), "$toString", $rt_wrapFunction0(oncief_Floor$_toString), "$signatures", $rt_wrapFunction0(oncief_Floor$_signatures0)], -oncief_GraphByName$, "GraphByName$", 65, oncief_Function, [], 4, 3, 0, oncief_GraphByName$_$callClinit, ["$name", $rt_wrapFunction0(oncief_GraphByName$_name), "$signatures", $rt_wrapFunction0(oncief_GraphByName$_signatures0)], -oncief_GraphByElementId$, "GraphByElementId$", 65, oncief_Function, [], 4, 3, 0, oncief_GraphByElementId$_$callClinit, ["$name", $rt_wrapFunction0(oncief_GraphByElementId$_name), "$signatures", $rt_wrapFunction0(oncief_GraphByElementId$_signatures0)], -oncief_Haversin$, "Haversin$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Haversin$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Haversin$_name), "$productArity", $rt_wrapFunction0(oncief_Haversin$_productArity), "$productElement", $rt_wrapFunction1(oncief_Haversin$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Haversin$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Haversin$_hashCode), "$toString", $rt_wrapFunction0(oncief_Haversin$_toString), "$signatures", +oncief_EndNode$, "EndNode$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_EndNode$_$callClinit, ["$name", $rt_wrapFunction0(oncief_EndNode$_name), "$productArity", $rt_wrapFunction0(oncief_EndNode$_productArity), "$productElement", $rt_wrapFunction1(oncief_EndNode$_productElement), "$productIterator", $rt_wrapFunction0(oncief_EndNode$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_EndNode$_hashCode), "$toString", $rt_wrapFunction0(oncief_EndNode$_toString), "$signatures", $rt_wrapFunction0(oncief_EndNode$_signatures0)], +oncief_Exp$, "Exp$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Exp$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Exp$_name), "$productArity", $rt_wrapFunction0(oncief_Exp$_productArity), "$productElement", $rt_wrapFunction1(oncief_Exp$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Exp$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Exp$_hashCode), "$toString", $rt_wrapFunction0(oncief_Exp$_toString), "$signatures", $rt_wrapFunction0(oncief_Exp$_signatures0)], +oncief_File$, "File$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_File$_$callClinit, ["$name", $rt_wrapFunction0(oncief_File$_name), "$productArity", $rt_wrapFunction0(oncief_File$_productArity), "$productElement", $rt_wrapFunction1(oncief_File$_productElement), "$productIterator", $rt_wrapFunction0(oncief_File$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_File$_hashCode), "$toString", $rt_wrapFunction0(oncief_File$_toString), "$signatures", $rt_wrapFunction0(oncief_File$_signatures0)], +oncief_Floor$, "Floor$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Floor$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Floor$_name), "$productArity", $rt_wrapFunction0(oncief_Floor$_productArity), "$productElement", $rt_wrapFunction1(oncief_Floor$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Floor$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Floor$_hashCode), "$toString", $rt_wrapFunction0(oncief_Floor$_toString), "$signatures", $rt_wrapFunction0(oncief_Floor$_signatures0)], +oncief_GraphByName$, "GraphByName$", 63, oncief_Function, [], 4, 3, 0, oncief_GraphByName$_$callClinit, ["$name", $rt_wrapFunction0(oncief_GraphByName$_name), "$signatures", $rt_wrapFunction0(oncief_GraphByName$_signatures0)], +oncief_GraphByElementId$, "GraphByElementId$", 63, oncief_Function, [], 4, 3, 0, oncief_GraphByElementId$_$callClinit, ["$name", $rt_wrapFunction0(oncief_GraphByElementId$_name), "$signatures", $rt_wrapFunction0(oncief_GraphByElementId$_signatures1)], +oncief_Haversin$, "Haversin$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Haversin$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Haversin$_name), "$productArity", $rt_wrapFunction0(oncief_Haversin$_productArity), "$productElement", $rt_wrapFunction1(oncief_Haversin$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Haversin$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Haversin$_hashCode), "$toString", $rt_wrapFunction0(oncief_Haversin$_toString), "$signatures", $rt_wrapFunction0(oncief_Haversin$_signatures0)], -oncief_Head$, "Head$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Head$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Head$_name0), "$productArity", $rt_wrapFunction0(oncief_Head$_productArity), "$productElement", $rt_wrapFunction1(oncief_Head$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Head$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Head$_hashCode), "$toString", $rt_wrapFunction0(oncief_Head$_toString), "$signatures", $rt_wrapFunction0(oncief_Head$_signatures0)], -oncief_Id$, "Id$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Id$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Id$_name), "$productArity", $rt_wrapFunction0(oncief_Id$_productArity), "$productElement", $rt_wrapFunction1(oncief_Id$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Id$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Id$_hashCode), "$toString", $rt_wrapFunction0(oncief_Id$_toString), "$signatures", $rt_wrapFunction0(oncief_Id$_signatures0)], -oncief_IsEmpty$, "IsEmpty$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_IsEmpty$_$callClinit, ["$name", $rt_wrapFunction0(oncief_IsEmpty$_name0), "$productArity", $rt_wrapFunction0(oncief_IsEmpty$_productArity), "$productElement", $rt_wrapFunction1(oncief_IsEmpty$_productElement), "$productIterator", $rt_wrapFunction0(oncief_IsEmpty$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_IsEmpty$_hashCode), "$toString", $rt_wrapFunction0(oncief_IsEmpty$_toString), "$signatures", $rt_wrapFunction0(oncief_IsEmpty$_signatures0)], -oncief_IsNaN$, "IsNaN$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_IsNaN$_$callClinit, ["$name", $rt_wrapFunction0(oncief_IsNaN$_name), "$productArity", $rt_wrapFunction0(oncief_IsNaN$_productArity), "$productElement", $rt_wrapFunction1(oncief_IsNaN$_productElement), "$productIterator", $rt_wrapFunction0(oncief_IsNaN$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_IsNaN$_hashCode), "$toString", $rt_wrapFunction0(oncief_IsNaN$_toString), "$signatures", $rt_wrapFunction0(oncief_IsNaN$_signatures0)], -oncief_Labels$, "Labels$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Labels$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Labels$_name), "$productArity", $rt_wrapFunction0(oncief_Labels$_productArity), "$productElement", $rt_wrapFunction1(oncief_Labels$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Labels$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Labels$_hashCode), "$toString", $rt_wrapFunction0(oncief_Labels$_toString), "$signatures", $rt_wrapFunction0(oncief_Labels$_signatures0)], -oncief_Last$, "Last$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Last$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Last$_name), "$productArity", $rt_wrapFunction0(oncief_Last$_productArity), "$productElement", $rt_wrapFunction1(oncief_Last$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Last$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Last$_hashCode), "$toString", $rt_wrapFunction0(oncief_Last$_toString), "$signatures", $rt_wrapFunction0(oncief_Last$_signatures0)], -oncief_Left$, "Left$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Left$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Left$_name), "$productArity", $rt_wrapFunction0(oncief_Left$_productArity), "$productElement", $rt_wrapFunction1(oncief_Left$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Left$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Left$_hashCode), "$toString", $rt_wrapFunction0(oncief_Left$_toString), "$signatures", $rt_wrapFunction0(oncief_Left$_signatures0)], -oncief_Length$, "Length$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Length$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Length$_name), "$productArity", $rt_wrapFunction0(oncief_Length$_productArity), "$productElement", $rt_wrapFunction1(oncief_Length$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Length$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Length$_hashCode), "$toString", $rt_wrapFunction0(oncief_Length$_toString), "$signatures", $rt_wrapFunction0(oncief_Length$_signatures0)], -oncief_Linenumber$, "Linenumber$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Linenumber$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Linenumber$_name), "$productArity", $rt_wrapFunction0(oncief_Linenumber$_productArity), "$productElement", $rt_wrapFunction1(oncief_Linenumber$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Linenumber$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Linenumber$_hashCode), "$toString", $rt_wrapFunction0(oncief_Linenumber$_toString), +oncief_Head$, "Head$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Head$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Head$_name0), "$productArity", $rt_wrapFunction0(oncief_Head$_productArity), "$productElement", $rt_wrapFunction1(oncief_Head$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Head$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Head$_hashCode), "$toString", $rt_wrapFunction0(oncief_Head$_toString), "$signatures", $rt_wrapFunction0(oncief_Head$_signatures1)], +oncief_Id$, "Id$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Id$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Id$_name), "$productArity", $rt_wrapFunction0(oncief_Id$_productArity), "$productElement", $rt_wrapFunction1(oncief_Id$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Id$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Id$_hashCode), "$toString", $rt_wrapFunction0(oncief_Id$_toString), "$signatures", $rt_wrapFunction0(oncief_Id$_signatures0)], +oncief_IsEmpty$, "IsEmpty$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_IsEmpty$_$callClinit, ["$name", $rt_wrapFunction0(oncief_IsEmpty$_name0), "$productArity", $rt_wrapFunction0(oncief_IsEmpty$_productArity), "$productElement", $rt_wrapFunction1(oncief_IsEmpty$_productElement), "$productIterator", $rt_wrapFunction0(oncief_IsEmpty$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_IsEmpty$_hashCode), "$toString", $rt_wrapFunction0(oncief_IsEmpty$_toString), "$signatures", $rt_wrapFunction0(oncief_IsEmpty$_signatures0)], +oncief_IsNaN$, "IsNaN$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_IsNaN$_$callClinit, ["$name", $rt_wrapFunction0(oncief_IsNaN$_name), "$productArity", $rt_wrapFunction0(oncief_IsNaN$_productArity), "$productElement", $rt_wrapFunction1(oncief_IsNaN$_productElement), "$productIterator", $rt_wrapFunction0(oncief_IsNaN$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_IsNaN$_hashCode), "$toString", $rt_wrapFunction0(oncief_IsNaN$_toString), "$signatures", $rt_wrapFunction0(oncief_IsNaN$_signatures0)], +oncief_Labels$, "Labels$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Labels$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Labels$_name), "$productArity", $rt_wrapFunction0(oncief_Labels$_productArity), "$productElement", $rt_wrapFunction1(oncief_Labels$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Labels$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Labels$_hashCode), "$toString", $rt_wrapFunction0(oncief_Labels$_toString), "$signatures", $rt_wrapFunction0(oncief_Labels$_signatures0)], +oncief_Last$, "Last$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Last$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Last$_name), "$productArity", $rt_wrapFunction0(oncief_Last$_productArity), "$productElement", $rt_wrapFunction1(oncief_Last$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Last$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Last$_hashCode), "$toString", $rt_wrapFunction0(oncief_Last$_toString), "$signatures", $rt_wrapFunction0(oncief_Last$_signatures1)], +oncief_Left$, "Left$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Left$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Left$_name), "$productArity", $rt_wrapFunction0(oncief_Left$_productArity), "$productElement", $rt_wrapFunction1(oncief_Left$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Left$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Left$_hashCode), "$toString", $rt_wrapFunction0(oncief_Left$_toString), "$signatures", $rt_wrapFunction0(oncief_Left$_signatures0)], +oncief_Length$, "Length$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Length$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Length$_name), "$productArity", $rt_wrapFunction0(oncief_Length$_productArity), "$productElement", $rt_wrapFunction1(oncief_Length$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Length$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Length$_hashCode), "$toString", $rt_wrapFunction0(oncief_Length$_toString), "$signatures", $rt_wrapFunction0(oncief_Length$_signatures0)], +oncief_Linenumber$, "Linenumber$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Linenumber$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Linenumber$_name), "$productArity", $rt_wrapFunction0(oncief_Linenumber$_productArity), "$productElement", $rt_wrapFunction1(oncief_Linenumber$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Linenumber$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Linenumber$_hashCode), "$toString", $rt_wrapFunction0(oncief_Linenumber$_toString), "$signatures", $rt_wrapFunction0(oncief_Linenumber$_signatures0)], -oncief_Log$, "Log$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Log$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Log$_name), "$productArity", $rt_wrapFunction0(oncief_Log$_productArity), "$productElement", $rt_wrapFunction1(oncief_Log$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Log$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Log$_hashCode), "$toString", $rt_wrapFunction0(oncief_Log$_toString), "$signatures", $rt_wrapFunction0(oncief_Log$_signatures0)], -oncief_Log10$, "Log10$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Log10$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Log10$_name), "$productArity", $rt_wrapFunction0(oncief_Log10$_productArity), "$productElement", $rt_wrapFunction1(oncief_Log10$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Log10$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Log10$_hashCode), "$toString", $rt_wrapFunction0(oncief_Log10$_toString), "$signatures", $rt_wrapFunction0(oncief_Log10$_signatures0)], -oncief_Lower$, "Lower$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Lower$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Lower$_name), "$productArity", $rt_wrapFunction0(oncief_Lower$_productArity), "$productElement", $rt_wrapFunction1(oncief_Lower$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Lower$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Lower$_hashCode), "$toString", $rt_wrapFunction0(oncief_Lower$_toString), "$signatures", $rt_wrapFunction0(oncief_Lower$_signatures0)], -oncief_LTrim$, "LTrim$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_LTrim$_$callClinit, ["$name", $rt_wrapFunction0(oncief_LTrim$_name), "$productArity", $rt_wrapFunction0(oncief_LTrim$_productArity), "$productElement", $rt_wrapFunction1(oncief_LTrim$_productElement), "$productIterator", $rt_wrapFunction0(oncief_LTrim$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_LTrim$_hashCode), "$toString", $rt_wrapFunction0(oncief_LTrim$_toString), "$signatures", $rt_wrapFunction0(oncief_LTrim$_signatures0)], -oncief_Max$, "Max$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Max$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Max$_name), "$productArity", $rt_wrapFunction0(oncief_Max$_productArity), "$productElement", $rt_wrapFunction1(oncief_Max$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Max$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Max$_hashCode), "$toString", $rt_wrapFunction0(oncief_Max$_toString), "$signatures", $rt_wrapFunction0(oncief_Max$_signatures0)], -oncief_Min$, "Min$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Min$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Min$_name), "$productArity", $rt_wrapFunction0(oncief_Min$_productArity), "$productElement", $rt_wrapFunction1(oncief_Min$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Min$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Min$_hashCode), "$toString", $rt_wrapFunction0(oncief_Min$_toString), "$signatures", $rt_wrapFunction0(oncief_Min$_signatures0)], -oncief_Nodes$, "Nodes$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Nodes$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Nodes$_name), "$productArity", $rt_wrapFunction0(oncief_Nodes$_productArity), "$productElement", $rt_wrapFunction1(oncief_Nodes$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Nodes$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Nodes$_hashCode), "$toString", $rt_wrapFunction0(oncief_Nodes$_toString), "$signatures", $rt_wrapFunction0(oncief_Nodes$_signatures0)], -oncief_Pi$, "Pi$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Pi$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Pi$_name), "$productArity", $rt_wrapFunction0(oncief_Pi$_productArity), "$productElement", $rt_wrapFunction1(oncief_Pi$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Pi$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Pi$_hashCode), "$toString", $rt_wrapFunction0(oncief_Pi$_toString), "$signatures", $rt_wrapFunction0(oncief_Pi$_signatures0)], -oncief_PercentileCont$, "PercentileCont$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_PercentileCont$_$callClinit, ["$name", $rt_wrapFunction0(oncief_PercentileCont$_name), "$productArity", $rt_wrapFunction0(oncief_PercentileCont$_productArity), "$productElement", $rt_wrapFunction1(oncief_PercentileCont$_productElement), "$productIterator", $rt_wrapFunction0(oncief_PercentileCont$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_PercentileCont$_hashCode), "$toString", +oncief_Log$, "Log$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Log$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Log$_name), "$productArity", $rt_wrapFunction0(oncief_Log$_productArity), "$productElement", $rt_wrapFunction1(oncief_Log$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Log$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Log$_hashCode), "$toString", $rt_wrapFunction0(oncief_Log$_toString), "$signatures", $rt_wrapFunction0(oncief_Log$_signatures0)], +oncief_Log10$, "Log10$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Log10$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Log10$_name), "$productArity", $rt_wrapFunction0(oncief_Log10$_productArity), "$productElement", $rt_wrapFunction1(oncief_Log10$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Log10$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Log10$_hashCode), "$toString", $rt_wrapFunction0(oncief_Log10$_toString), "$signatures", $rt_wrapFunction0(oncief_Log10$_signatures0)], +oncief_Lower$, "Lower$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Lower$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Lower$_name), "$productArity", $rt_wrapFunction0(oncief_Lower$_productArity), "$productElement", $rt_wrapFunction1(oncief_Lower$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Lower$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Lower$_hashCode), "$toString", $rt_wrapFunction0(oncief_Lower$_toString), "$signatures", $rt_wrapFunction0(oncief_Lower$_signatures0)], +oncief_LTrim$, "LTrim$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_LTrim$_$callClinit, ["$name", $rt_wrapFunction0(oncief_LTrim$_name), "$productArity", $rt_wrapFunction0(oncief_LTrim$_productArity), "$productElement", $rt_wrapFunction1(oncief_LTrim$_productElement), "$productIterator", $rt_wrapFunction0(oncief_LTrim$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_LTrim$_hashCode), "$toString", $rt_wrapFunction0(oncief_LTrim$_toString), "$signatures", $rt_wrapFunction0(oncief_LTrim$_signatures0)], +oncief_Max$, "Max$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Max$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Max$_name), "$productArity", $rt_wrapFunction0(oncief_Max$_productArity), "$productElement", $rt_wrapFunction1(oncief_Max$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Max$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Max$_hashCode), "$toString", $rt_wrapFunction0(oncief_Max$_toString), "$signatures", $rt_wrapFunction0(oncief_Max$_signatures0)], +oncief_Min$, "Min$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Min$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Min$_name), "$productArity", $rt_wrapFunction0(oncief_Min$_productArity), "$productElement", $rt_wrapFunction1(oncief_Min$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Min$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Min$_hashCode), "$toString", $rt_wrapFunction0(oncief_Min$_toString), "$signatures", $rt_wrapFunction0(oncief_Min$_signatures0)], +oncief_Nodes$, "Nodes$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Nodes$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Nodes$_name), "$productArity", $rt_wrapFunction0(oncief_Nodes$_productArity), "$productElement", $rt_wrapFunction1(oncief_Nodes$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Nodes$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Nodes$_hashCode), "$toString", $rt_wrapFunction0(oncief_Nodes$_toString), "$signatures", $rt_wrapFunction0(oncief_Nodes$_signatures0)], +oncief_Normalize$, "Normalize$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Normalize$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Normalize$_name), "$productArity", $rt_wrapFunction0(oncief_Normalize$_productArity), "$productElement", $rt_wrapFunction1(oncief_Normalize$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Normalize$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Normalize$_hashCode), "$toString", $rt_wrapFunction0(oncief_Normalize$_toString), "$signatures", +$rt_wrapFunction0(oncief_Normalize$_signatures0)], +oncief_Pi$, "Pi$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Pi$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Pi$_name), "$productArity", $rt_wrapFunction0(oncief_Pi$_productArity), "$productElement", $rt_wrapFunction1(oncief_Pi$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Pi$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Pi$_hashCode), "$toString", $rt_wrapFunction0(oncief_Pi$_toString), "$signatures", $rt_wrapFunction0(oncief_Pi$_signatures0)], +oncief_PercentileCont$, "PercentileCont$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_PercentileCont$_$callClinit, ["$name", $rt_wrapFunction0(oncief_PercentileCont$_name), "$productArity", $rt_wrapFunction0(oncief_PercentileCont$_productArity), "$productElement", $rt_wrapFunction1(oncief_PercentileCont$_productElement), "$productIterator", $rt_wrapFunction0(oncief_PercentileCont$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_PercentileCont$_hashCode), "$toString", $rt_wrapFunction0(oncief_PercentileCont$_toString), "$signatures", $rt_wrapFunction0(oncief_PercentileCont$_signatures0)], -oncief_PercentileDisc$, "PercentileDisc$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_PercentileDisc$_$callClinit, ["$name", $rt_wrapFunction0(oncief_PercentileDisc$_name), "$productArity", $rt_wrapFunction0(oncief_PercentileDisc$_productArity), "$productElement", $rt_wrapFunction1(oncief_PercentileDisc$_productElement), "$productIterator", $rt_wrapFunction0(oncief_PercentileDisc$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_PercentileDisc$_hashCode), "$toString", -$rt_wrapFunction0(oncief_PercentileDisc$_toString), "$signatures", $rt_wrapFunction0(oncief_PercentileDisc$_signatures0)]]); -$rt_metadata([oncief_Percentiles$, "Percentiles$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Percentiles$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Percentiles$_name), "$productArity", $rt_wrapFunction0(oncief_Percentiles$_productArity), "$productElement", $rt_wrapFunction1(oncief_Percentiles$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Percentiles$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Percentiles$_hashCode), "$toString", $rt_wrapFunction0(oncief_Percentiles$_toString), +oncief_PercentileDisc$, "PercentileDisc$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_PercentileDisc$_$callClinit, ["$name", $rt_wrapFunction0(oncief_PercentileDisc$_name), "$productArity", $rt_wrapFunction0(oncief_PercentileDisc$_productArity), "$productElement", $rt_wrapFunction1(oncief_PercentileDisc$_productElement), "$productIterator", $rt_wrapFunction0(oncief_PercentileDisc$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_PercentileDisc$_hashCode), "$toString", +$rt_wrapFunction0(oncief_PercentileDisc$_toString), "$signatures", $rt_wrapFunction0(oncief_PercentileDisc$_signatures0)], +oncief_Percentiles$, "Percentiles$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Percentiles$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Percentiles$_name), "$productArity", $rt_wrapFunction0(oncief_Percentiles$_productArity), "$productElement", $rt_wrapFunction1(oncief_Percentiles$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Percentiles$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Percentiles$_hashCode), "$toString", $rt_wrapFunction0(oncief_Percentiles$_toString), "$signatures", $rt_wrapFunction0(oncief_Percentiles$_signatures0)], -oncief_Point$, "Point$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Point$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Point$_name), "$productArity", $rt_wrapFunction0(oncief_Point$_productArity), "$productElement", $rt_wrapFunction1(oncief_Point$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Point$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Point$_hashCode), "$toString", $rt_wrapFunction0(oncief_Point$_toString), "$signatures", $rt_wrapFunction0(oncief_Point$_signatures0)], -oncief_Keys$, "Keys$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Keys$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Keys$_name), "$productArity", $rt_wrapFunction0(oncief_Keys$_productArity), "$productElement", $rt_wrapFunction1(oncief_Keys$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Keys$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Keys$_hashCode), "$toString", $rt_wrapFunction0(oncief_Keys$_toString), "$signatures", $rt_wrapFunction0(oncief_Keys$_signatures0)], -oncief_Radians$, "Radians$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Radians$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Radians$_name), "$productArity", $rt_wrapFunction0(oncief_Radians$_productArity), "$productElement", $rt_wrapFunction1(oncief_Radians$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Radians$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Radians$_hashCode), "$toString", $rt_wrapFunction0(oncief_Radians$_toString), "$signatures", $rt_wrapFunction0(oncief_Radians$_signatures0)], -oncief_Rand$, "Rand$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Rand$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Rand$_name0), "$productArity", $rt_wrapFunction0(oncief_Rand$_productArity), "$productElement", $rt_wrapFunction1(oncief_Rand$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Rand$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Rand$_hashCode), "$toString", $rt_wrapFunction0(oncief_Rand$_toString), "$signatures", $rt_wrapFunction0(oncief_Rand$_signatures0)], -oncief_RandomUUID$, "RandomUUID$", 65, oncief_Function, [], 4, 3, 0, oncief_RandomUUID$_$callClinit, ["$name", $rt_wrapFunction0(oncief_RandomUUID$_name), "$signatures", $rt_wrapFunction0(oncief_RandomUUID$_signatures0)], -oncief_Range$, "Range$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Range$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Range$_name), "$productArity", $rt_wrapFunction0(oncief_Range$_productArity), "$productElement", $rt_wrapFunction1(oncief_Range$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Range$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Range$_hashCode), "$toString", $rt_wrapFunction0(oncief_Range$_toString), "$signatures", $rt_wrapFunction0(oncief_Range$_signatures0)], -oncief_Reduce$, "Reduce$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Reduce$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Reduce$_name), "$productArity", $rt_wrapFunction0(oncief_Reduce$_productArity), "$productElement", $rt_wrapFunction1(oncief_Reduce$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Reduce$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Reduce$_hashCode), "$toString", $rt_wrapFunction0(oncief_Reduce$_toString), "$signatures", $rt_wrapFunction0(oncief_Reduce$_signatures0)], -oncief_Relationships$, "Relationships$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Relationships$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Relationships$_name), "$productArity", $rt_wrapFunction0(oncief_Relationships$_productArity), "$productElement", $rt_wrapFunction1(oncief_Relationships$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Relationships$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Relationships$_hashCode), "$toString", $rt_wrapFunction0(oncief_Relationships$_toString), +oncief_Point$, "Point$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Point$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Point$_name), "$productArity", $rt_wrapFunction0(oncief_Point$_productArity), "$productElement", $rt_wrapFunction1(oncief_Point$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Point$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Point$_hashCode), "$toString", $rt_wrapFunction0(oncief_Point$_toString), "$signatures", $rt_wrapFunction0(oncief_Point$_signatures0)], +oncief_Keys$, "Keys$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Keys$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Keys$_name), "$productArity", $rt_wrapFunction0(oncief_Keys$_productArity), "$productElement", $rt_wrapFunction1(oncief_Keys$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Keys$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Keys$_hashCode), "$toString", $rt_wrapFunction0(oncief_Keys$_toString), "$signatures", $rt_wrapFunction0(oncief_Keys$_signatures0)], +oncief_Radians$, "Radians$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Radians$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Radians$_name), "$productArity", $rt_wrapFunction0(oncief_Radians$_productArity), "$productElement", $rt_wrapFunction1(oncief_Radians$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Radians$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Radians$_hashCode), "$toString", $rt_wrapFunction0(oncief_Radians$_toString), "$signatures", $rt_wrapFunction0(oncief_Radians$_signatures0)], +oncief_Rand$, "Rand$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Rand$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Rand$_name0), "$productArity", $rt_wrapFunction0(oncief_Rand$_productArity), "$productElement", $rt_wrapFunction1(oncief_Rand$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Rand$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Rand$_hashCode), "$toString", $rt_wrapFunction0(oncief_Rand$_toString), "$signatures", $rt_wrapFunction0(oncief_Rand$_signatures0)], +oncief_RandomUUID$, "RandomUUID$", 63, oncief_Function, [], 4, 3, 0, oncief_RandomUUID$_$callClinit, ["$name", $rt_wrapFunction0(oncief_RandomUUID$_name), "$signatures", $rt_wrapFunction0(oncief_RandomUUID$_signatures0)], +oncief_Range$, "Range$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Range$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Range$_name), "$productArity", $rt_wrapFunction0(oncief_Range$_productArity), "$productElement", $rt_wrapFunction1(oncief_Range$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Range$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Range$_hashCode), "$toString", $rt_wrapFunction0(oncief_Range$_toString), "$signatures", $rt_wrapFunction0(oncief_Range$_signatures0)], +oncief_Reduce$, "Reduce$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Reduce$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Reduce$_name), "$productArity", $rt_wrapFunction0(oncief_Reduce$_productArity), "$productElement", $rt_wrapFunction1(oncief_Reduce$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Reduce$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Reduce$_hashCode), "$toString", $rt_wrapFunction0(oncief_Reduce$_toString), "$signatures", $rt_wrapFunction0(oncief_Reduce$_signatures0)], +oncief_Relationships$, "Relationships$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Relationships$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Relationships$_name), "$productArity", $rt_wrapFunction0(oncief_Relationships$_productArity), "$productElement", $rt_wrapFunction1(oncief_Relationships$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Relationships$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Relationships$_hashCode), "$toString", $rt_wrapFunction0(oncief_Relationships$_toString), "$signatures", $rt_wrapFunction0(oncief_Relationships$_signatures0)], -oncief_Replace$, "Replace$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Replace$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Replace$_name), "$productArity", $rt_wrapFunction0(oncief_Replace$_productArity), "$productElement", $rt_wrapFunction1(oncief_Replace$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Replace$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Replace$_hashCode), "$toString", $rt_wrapFunction0(oncief_Replace$_toString), "$signatures", $rt_wrapFunction0(oncief_Replace$_signatures0)], -oncief_Reverse$, "Reverse$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Reverse$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Reverse$_name), "$productArity", $rt_wrapFunction0(oncief_Reverse$_productArity), "$productElement", $rt_wrapFunction1(oncief_Reverse$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Reverse$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Reverse$_hashCode), "$toString", $rt_wrapFunction0(oncief_Reverse$_toString), "$signatures", $rt_wrapFunction0(oncief_Reverse$_signatures0)], -oncief_Right$, "Right$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Right$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Right$_name), "$productArity", $rt_wrapFunction0(oncief_Right$_productArity), "$productElement", $rt_wrapFunction1(oncief_Right$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Right$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Right$_hashCode), "$toString", $rt_wrapFunction0(oncief_Right$_toString), "$signatures", $rt_wrapFunction0(oncief_Right$_signatures0)], -oncief_Round$, "Round$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Round$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Round$_name), "$productArity", $rt_wrapFunction0(oncief_Round$_productArity), "$productElement", $rt_wrapFunction1(oncief_Round$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Round$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Round$_hashCode), "$toString", $rt_wrapFunction0(oncief_Round$_toString), "$signatures", $rt_wrapFunction0(oncief_Round$_signatures0)], -oncief_RTrim$, "RTrim$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_RTrim$_$callClinit, ["$name", $rt_wrapFunction0(oncief_RTrim$_name), "$productArity", $rt_wrapFunction0(oncief_RTrim$_productArity), "$productElement", $rt_wrapFunction1(oncief_RTrim$_productElement), "$productIterator", $rt_wrapFunction0(oncief_RTrim$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_RTrim$_hashCode), "$toString", $rt_wrapFunction0(oncief_RTrim$_toString), "$signatures", $rt_wrapFunction0(oncief_RTrim$_signatures0)], -oncief_Sign$, "Sign$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Sign$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Sign$_name), "$productArity", $rt_wrapFunction0(oncief_Sign$_productArity), "$productElement", $rt_wrapFunction1(oncief_Sign$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Sign$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Sign$_hashCode), "$toString", $rt_wrapFunction0(oncief_Sign$_toString), "$signatures", $rt_wrapFunction0(oncief_Sign$_signatures0)], -oncief_Sin$, "Sin$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Sin$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Sin$_name), "$productArity", $rt_wrapFunction0(oncief_Sin$_productArity), "$productElement", $rt_wrapFunction1(oncief_Sin$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Sin$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Sin$_hashCode), "$toString", $rt_wrapFunction0(oncief_Sin$_toString), "$signatures", $rt_wrapFunction0(oncief_Sin$_signatures0)], -oncief_Size$, "Size$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Size$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Size$_name), "$productArity", $rt_wrapFunction0(oncief_Size$_productArity), "$productElement", $rt_wrapFunction1(oncief_Size$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Size$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Size$_hashCode), "$toString", $rt_wrapFunction0(oncief_Size$_toString), "$signatures", $rt_wrapFunction0(oncief_Size$_signatures0)], -oncief_Sqrt$, "Sqrt$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Sqrt$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Sqrt$_name), "$productArity", $rt_wrapFunction0(oncief_Sqrt$_productArity), "$productElement", $rt_wrapFunction1(oncief_Sqrt$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Sqrt$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Sqrt$_hashCode), "$toString", $rt_wrapFunction0(oncief_Sqrt$_toString), "$signatures", $rt_wrapFunction0(oncief_Sqrt$_signatures0)], -oncief_Split$, "Split$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Split$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Split$_name), "$productArity", $rt_wrapFunction0(oncief_Split$_productArity), "$productElement", $rt_wrapFunction1(oncief_Split$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Split$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Split$_hashCode), "$toString", $rt_wrapFunction0(oncief_Split$_toString), "$signatures", $rt_wrapFunction0(oncief_Split$_signatures0)], -oncief_StartNode$, "StartNode$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_StartNode$_$callClinit, ["$name", $rt_wrapFunction0(oncief_StartNode$_name), "$productArity", $rt_wrapFunction0(oncief_StartNode$_productArity), "$productElement", $rt_wrapFunction1(oncief_StartNode$_productElement), "$productIterator", $rt_wrapFunction0(oncief_StartNode$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_StartNode$_hashCode), "$toString", $rt_wrapFunction0(oncief_StartNode$_toString), "$signatures", +oncief_Replace$, "Replace$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Replace$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Replace$_name), "$productArity", $rt_wrapFunction0(oncief_Replace$_productArity), "$productElement", $rt_wrapFunction1(oncief_Replace$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Replace$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Replace$_hashCode), "$toString", $rt_wrapFunction0(oncief_Replace$_toString), "$signatures", $rt_wrapFunction0(oncief_Replace$_signatures0)], +oncief_Reverse$, "Reverse$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Reverse$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Reverse$_name), "$productArity", $rt_wrapFunction0(oncief_Reverse$_productArity), "$productElement", $rt_wrapFunction1(oncief_Reverse$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Reverse$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Reverse$_hashCode), "$toString", $rt_wrapFunction0(oncief_Reverse$_toString), "$signatures", $rt_wrapFunction0(oncief_Reverse$_signatures1)], +oncief_Right$, "Right$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Right$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Right$_name), "$productArity", $rt_wrapFunction0(oncief_Right$_productArity), "$productElement", $rt_wrapFunction1(oncief_Right$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Right$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Right$_hashCode), "$toString", $rt_wrapFunction0(oncief_Right$_toString), "$signatures", $rt_wrapFunction0(oncief_Right$_signatures0)], +oncief_Round$, "Round$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Round$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Round$_name), "$productArity", $rt_wrapFunction0(oncief_Round$_productArity), "$productElement", $rt_wrapFunction1(oncief_Round$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Round$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Round$_hashCode), "$toString", $rt_wrapFunction0(oncief_Round$_toString), "$signatures", $rt_wrapFunction0(oncief_Round$_signatures0)], +oncief_RTrim$, "RTrim$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_RTrim$_$callClinit, ["$name", $rt_wrapFunction0(oncief_RTrim$_name), "$productArity", $rt_wrapFunction0(oncief_RTrim$_productArity), "$productElement", $rt_wrapFunction1(oncief_RTrim$_productElement), "$productIterator", $rt_wrapFunction0(oncief_RTrim$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_RTrim$_hashCode), "$toString", $rt_wrapFunction0(oncief_RTrim$_toString), "$signatures", $rt_wrapFunction0(oncief_RTrim$_signatures0)], +oncief_Sign$, "Sign$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Sign$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Sign$_name), "$productArity", $rt_wrapFunction0(oncief_Sign$_productArity), "$productElement", $rt_wrapFunction1(oncief_Sign$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Sign$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Sign$_hashCode), "$toString", $rt_wrapFunction0(oncief_Sign$_toString), "$signatures", $rt_wrapFunction0(oncief_Sign$_signatures0)], +oncief_Sin$, "Sin$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Sin$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Sin$_name), "$productArity", $rt_wrapFunction0(oncief_Sin$_productArity), "$productElement", $rt_wrapFunction1(oncief_Sin$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Sin$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Sin$_hashCode), "$toString", $rt_wrapFunction0(oncief_Sin$_toString), "$signatures", $rt_wrapFunction0(oncief_Sin$_signatures0)], +oncief_Size$, "Size$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Size$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Size$_name), "$productArity", $rt_wrapFunction0(oncief_Size$_productArity), "$productElement", $rt_wrapFunction1(oncief_Size$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Size$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Size$_hashCode), "$toString", $rt_wrapFunction0(oncief_Size$_toString), "$signatures", $rt_wrapFunction0(oncief_Size$_signatures0)]]); +$rt_metadata([oncief_Sqrt$, "Sqrt$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Sqrt$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Sqrt$_name), "$productArity", $rt_wrapFunction0(oncief_Sqrt$_productArity), "$productElement", $rt_wrapFunction1(oncief_Sqrt$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Sqrt$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Sqrt$_hashCode), "$toString", $rt_wrapFunction0(oncief_Sqrt$_toString), "$signatures", $rt_wrapFunction0(oncief_Sqrt$_signatures0)], +oncief_Split$, "Split$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Split$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Split$_name), "$productArity", $rt_wrapFunction0(oncief_Split$_productArity), "$productElement", $rt_wrapFunction1(oncief_Split$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Split$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Split$_hashCode), "$toString", $rt_wrapFunction0(oncief_Split$_toString), "$signatures", $rt_wrapFunction0(oncief_Split$_signatures0)], +oncief_StartNode$, "StartNode$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_StartNode$_$callClinit, ["$name", $rt_wrapFunction0(oncief_StartNode$_name), "$productArity", $rt_wrapFunction0(oncief_StartNode$_productArity), "$productElement", $rt_wrapFunction1(oncief_StartNode$_productElement), "$productIterator", $rt_wrapFunction0(oncief_StartNode$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_StartNode$_hashCode), "$toString", $rt_wrapFunction0(oncief_StartNode$_toString), "$signatures", $rt_wrapFunction0(oncief_StartNode$_signatures0)], -oncief_StdDev$, "StdDev$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_StdDev$_$callClinit, ["$name", $rt_wrapFunction0(oncief_StdDev$_name), "$productArity", $rt_wrapFunction0(oncief_StdDev$_productArity), "$productElement", $rt_wrapFunction1(oncief_StdDev$_productElement), "$productIterator", $rt_wrapFunction0(oncief_StdDev$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_StdDev$_hashCode), "$toString", $rt_wrapFunction0(oncief_StdDev$_toString), "$signatures", $rt_wrapFunction0(oncief_StdDev$_signatures0)], -oncief_StdDevP$, "StdDevP$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_StdDevP$_$callClinit, ["$name", $rt_wrapFunction0(oncief_StdDevP$_name), "$productArity", $rt_wrapFunction0(oncief_StdDevP$_productArity), "$productElement", $rt_wrapFunction1(oncief_StdDevP$_productElement), "$productIterator", $rt_wrapFunction0(oncief_StdDevP$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_StdDevP$_hashCode), "$toString", $rt_wrapFunction0(oncief_StdDevP$_toString), "$signatures", +oncief_StdDev$, "StdDev$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_StdDev$_$callClinit, ["$name", $rt_wrapFunction0(oncief_StdDev$_name), "$productArity", $rt_wrapFunction0(oncief_StdDev$_productArity), "$productElement", $rt_wrapFunction1(oncief_StdDev$_productElement), "$productIterator", $rt_wrapFunction0(oncief_StdDev$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_StdDev$_hashCode), "$toString", $rt_wrapFunction0(oncief_StdDev$_toString), "$signatures", $rt_wrapFunction0(oncief_StdDev$_signatures0)], +oncief_StdDevP$, "StdDevP$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_StdDevP$_$callClinit, ["$name", $rt_wrapFunction0(oncief_StdDevP$_name), "$productArity", $rt_wrapFunction0(oncief_StdDevP$_productArity), "$productElement", $rt_wrapFunction1(oncief_StdDevP$_productElement), "$productIterator", $rt_wrapFunction0(oncief_StdDevP$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_StdDevP$_hashCode), "$toString", $rt_wrapFunction0(oncief_StdDevP$_toString), "$signatures", $rt_wrapFunction0(oncief_StdDevP$_signatures0)], -oncief_Substring$, "Substring$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Substring$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Substring$_name), "$productArity", $rt_wrapFunction0(oncief_Substring$_productArity), "$productElement", $rt_wrapFunction1(oncief_Substring$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Substring$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Substring$_hashCode), "$toString", $rt_wrapFunction0(oncief_Substring$_toString), "$signatures", +oncief_Substring$, "Substring$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Substring$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Substring$_name), "$productArity", $rt_wrapFunction0(oncief_Substring$_productArity), "$productElement", $rt_wrapFunction1(oncief_Substring$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Substring$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Substring$_hashCode), "$toString", $rt_wrapFunction0(oncief_Substring$_toString), "$signatures", $rt_wrapFunction0(oncief_Substring$_signatures0)], -oncief_Sum$, "Sum$", 65, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Sum$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Sum$_name), "$productArity", $rt_wrapFunction0(oncief_Sum$_productArity), "$productElement", $rt_wrapFunction1(oncief_Sum$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Sum$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Sum$_hashCode), "$toString", $rt_wrapFunction0(oncief_Sum$_toString), "$signatures", $rt_wrapFunction0(oncief_Sum$_signatures0)], -oncief_Tail$, "Tail$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Tail$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Tail$_name), "$productArity", $rt_wrapFunction0(oncief_Tail$_productArity), "$productElement", $rt_wrapFunction1(oncief_Tail$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Tail$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Tail$_hashCode), "$toString", $rt_wrapFunction0(oncief_Tail$_toString), "$signatures", $rt_wrapFunction0(oncief_Tail$_signatures0)], -oncief_Tan$, "Tan$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Tan$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Tan$_name), "$productArity", $rt_wrapFunction0(oncief_Tan$_productArity), "$productElement", $rt_wrapFunction1(oncief_Tan$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Tan$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Tan$_hashCode), "$toString", $rt_wrapFunction0(oncief_Tan$_toString), "$signatures", $rt_wrapFunction0(oncief_Tan$_signatures0)], -oncief_ToBoolean$, "ToBoolean$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToBoolean$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToBoolean$_name), "$productArity", $rt_wrapFunction0(oncief_ToBoolean$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToBoolean$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToBoolean$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToBoolean$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToBoolean$_toString), "$signatures", -$rt_wrapFunction0(oncief_ToBoolean$_signatures0)], -oncief_ToBooleanList$, "ToBooleanList$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToBooleanList$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToBooleanList$_name), "$productArity", $rt_wrapFunction0(oncief_ToBooleanList$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToBooleanList$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToBooleanList$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToBooleanList$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToBooleanList$_toString), +oncief_Sum$, "Sum$", 63, oncief_AggregatingFunction, [s_Product, ji_Serializable], 4, 3, 0, oncief_Sum$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Sum$_name), "$productArity", $rt_wrapFunction0(oncief_Sum$_productArity), "$productElement", $rt_wrapFunction1(oncief_Sum$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Sum$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Sum$_hashCode), "$toString", $rt_wrapFunction0(oncief_Sum$_toString), "$signatures", $rt_wrapFunction0(oncief_Sum$_signatures0)], +oncief_Tail$, "Tail$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Tail$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Tail$_name), "$productArity", $rt_wrapFunction0(oncief_Tail$_productArity), "$productElement", $rt_wrapFunction1(oncief_Tail$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Tail$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Tail$_hashCode), "$toString", $rt_wrapFunction0(oncief_Tail$_toString), "$signatures", $rt_wrapFunction0(oncief_Tail$_signatures1)], +oncief_Tan$, "Tan$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Tan$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Tan$_name), "$productArity", $rt_wrapFunction0(oncief_Tan$_productArity), "$productElement", $rt_wrapFunction1(oncief_Tan$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Tan$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Tan$_hashCode), "$toString", $rt_wrapFunction0(oncief_Tan$_toString), "$signatures", $rt_wrapFunction0(oncief_Tan$_signatures0)], +oncief_ToBoolean$, "ToBoolean$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToBoolean$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToBoolean$_name), "$productArity", $rt_wrapFunction0(oncief_ToBoolean$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToBoolean$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToBoolean$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToBoolean$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToBoolean$_toString), "$signatures", +$rt_wrapFunction0(oncief_ToBoolean$_signatures1)], +oncief_ToBooleanList$, "ToBooleanList$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToBooleanList$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToBooleanList$_name), "$productArity", $rt_wrapFunction0(oncief_ToBooleanList$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToBooleanList$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToBooleanList$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToBooleanList$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToBooleanList$_toString), "$signatures", $rt_wrapFunction0(oncief_ToBooleanList$_signatures0)], -oncief_ToBooleanOrNull$, "ToBooleanOrNull$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToBooleanOrNull$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToBooleanOrNull$_name), "$productArity", $rt_wrapFunction0(oncief_ToBooleanOrNull$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToBooleanOrNull$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToBooleanOrNull$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToBooleanOrNull$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToBooleanOrNull$_toString), +oncief_ToBooleanOrNull$, "ToBooleanOrNull$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToBooleanOrNull$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToBooleanOrNull$_name), "$productArity", $rt_wrapFunction0(oncief_ToBooleanOrNull$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToBooleanOrNull$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToBooleanOrNull$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToBooleanOrNull$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToBooleanOrNull$_toString), "$signatures", $rt_wrapFunction0(oncief_ToBooleanOrNull$_signatures0)], -oncief_ToFloat$, "ToFloat$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToFloat$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToFloat$_name), "$productArity", $rt_wrapFunction0(oncief_ToFloat$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToFloat$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToFloat$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToFloat$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToFloat$_toString), "$signatures", $rt_wrapFunction0(oncief_ToFloat$_signatures0)], -oncief_ToFloatList$, "ToFloatList$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToFloatList$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToFloatList$_name), "$productArity", $rt_wrapFunction0(oncief_ToFloatList$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToFloatList$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToFloatList$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToFloatList$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToFloatList$_toString), +oncief_ToFloat$, "ToFloat$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToFloat$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToFloat$_name), "$productArity", $rt_wrapFunction0(oncief_ToFloat$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToFloat$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToFloat$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToFloat$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToFloat$_toString), "$signatures", $rt_wrapFunction0(oncief_ToFloat$_signatures0)], +oncief_ToFloatList$, "ToFloatList$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToFloatList$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToFloatList$_name), "$productArity", $rt_wrapFunction0(oncief_ToFloatList$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToFloatList$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToFloatList$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToFloatList$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToFloatList$_toString), "$signatures", $rt_wrapFunction0(oncief_ToFloatList$_signatures0)], -oncief_ToFloatOrNull$, "ToFloatOrNull$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToFloatOrNull$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToFloatOrNull$_name), "$productArity", $rt_wrapFunction0(oncief_ToFloatOrNull$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToFloatOrNull$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToFloatOrNull$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToFloatOrNull$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToFloatOrNull$_toString), +oncief_ToFloatOrNull$, "ToFloatOrNull$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToFloatOrNull$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToFloatOrNull$_name), "$productArity", $rt_wrapFunction0(oncief_ToFloatOrNull$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToFloatOrNull$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToFloatOrNull$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToFloatOrNull$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToFloatOrNull$_toString), "$signatures", $rt_wrapFunction0(oncief_ToFloatOrNull$_signatures0)], -oncief_ToInteger$, "ToInteger$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToInteger$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToInteger$_name), "$productArity", $rt_wrapFunction0(oncief_ToInteger$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToInteger$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToInteger$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToInteger$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToInteger$_toString), "$signatures", +oncief_ToInteger$, "ToInteger$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToInteger$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToInteger$_name), "$productArity", $rt_wrapFunction0(oncief_ToInteger$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToInteger$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToInteger$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToInteger$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToInteger$_toString), "$signatures", $rt_wrapFunction0(oncief_ToInteger$_signatures0)], -oncief_ToIntegerList$, "ToIntegerList$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToIntegerList$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToIntegerList$_name), "$productArity", $rt_wrapFunction0(oncief_ToIntegerList$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToIntegerList$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToIntegerList$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToIntegerList$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToIntegerList$_toString), +oncief_ToIntegerList$, "ToIntegerList$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToIntegerList$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToIntegerList$_name), "$productArity", $rt_wrapFunction0(oncief_ToIntegerList$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToIntegerList$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToIntegerList$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToIntegerList$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToIntegerList$_toString), "$signatures", $rt_wrapFunction0(oncief_ToIntegerList$_signatures0)], -oncief_ToIntegerOrNull$, "ToIntegerOrNull$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToIntegerOrNull$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToIntegerOrNull$_name), "$productArity", $rt_wrapFunction0(oncief_ToIntegerOrNull$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToIntegerOrNull$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToIntegerOrNull$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToIntegerOrNull$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToIntegerOrNull$_toString), +oncief_ToIntegerOrNull$, "ToIntegerOrNull$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToIntegerOrNull$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToIntegerOrNull$_name), "$productArity", $rt_wrapFunction0(oncief_ToIntegerOrNull$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToIntegerOrNull$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToIntegerOrNull$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToIntegerOrNull$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToIntegerOrNull$_toString), "$signatures", $rt_wrapFunction0(oncief_ToIntegerOrNull$_signatures0)], -oncief_ToLower$, "ToLower$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToLower$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToLower$_name), "$productArity", $rt_wrapFunction0(oncief_ToLower$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToLower$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToLower$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToLower$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToLower$_toString), "$signatures", $rt_wrapFunction0(oncief_ToLower$_signatures0)], -oncief_ToString$, "ToString$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToString$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToString$_name), "$productArity", $rt_wrapFunction0(oncief_ToString$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToString$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToString$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToString$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToString$_toString), "$signatures", -$rt_wrapFunction0(oncief_ToString$_signatures0)], -oncief_ToStringList$, "ToStringList$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToStringList$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToStringList$_name), "$productArity", $rt_wrapFunction0(oncief_ToStringList$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToStringList$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToStringList$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToStringList$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToStringList$_toString), +oncief_ToLower$, "ToLower$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToLower$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToLower$_name), "$productArity", $rt_wrapFunction0(oncief_ToLower$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToLower$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToLower$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToLower$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToLower$_toString), "$signatures", $rt_wrapFunction0(oncief_ToLower$_signatures0)], +oncief_ToString$, "ToString$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToString$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToString$_name), "$productArity", $rt_wrapFunction0(oncief_ToString$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToString$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToString$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToString$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToString$_toString), "$signatures", +$rt_wrapFunction0(oncief_ToString$_signatures1)], +oncief_ToStringList$, "ToStringList$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToStringList$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToStringList$_name), "$productArity", $rt_wrapFunction0(oncief_ToStringList$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToStringList$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToStringList$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToStringList$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToStringList$_toString), "$signatures", $rt_wrapFunction0(oncief_ToStringList$_signatures0)], -oncief_ToStringOrNull$, "ToStringOrNull$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToStringOrNull$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToStringOrNull$_name), "$productArity", $rt_wrapFunction0(oncief_ToStringOrNull$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToStringOrNull$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToStringOrNull$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToStringOrNull$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToStringOrNull$_toString), +oncief_ToStringOrNull$, "ToStringOrNull$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToStringOrNull$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToStringOrNull$_name), "$productArity", $rt_wrapFunction0(oncief_ToStringOrNull$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToStringOrNull$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToStringOrNull$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToStringOrNull$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToStringOrNull$_toString), "$signatures", $rt_wrapFunction0(oncief_ToStringOrNull$_signatures0)], -oncief_ToUpper$, "ToUpper$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToUpper$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToUpper$_name), "$productArity", $rt_wrapFunction0(oncief_ToUpper$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToUpper$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToUpper$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToUpper$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToUpper$_toString), "$signatures", $rt_wrapFunction0(oncief_ToUpper$_signatures0)], -oncief_Properties$, "Properties$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Properties$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Properties$_name), "$productArity", $rt_wrapFunction0(oncief_Properties$_productArity), "$productElement", $rt_wrapFunction1(oncief_Properties$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Properties$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Properties$_hashCode), "$toString", $rt_wrapFunction0(oncief_Properties$_toString), +oncief_ToUpper$, "ToUpper$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ToUpper$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ToUpper$_name), "$productArity", $rt_wrapFunction0(oncief_ToUpper$_productArity), "$productElement", $rt_wrapFunction1(oncief_ToUpper$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ToUpper$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ToUpper$_hashCode), "$toString", $rt_wrapFunction0(oncief_ToUpper$_toString), "$signatures", $rt_wrapFunction0(oncief_ToUpper$_signatures0)], +oncief_Properties$, "Properties$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Properties$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Properties$_name), "$productArity", $rt_wrapFunction0(oncief_Properties$_productArity), "$productElement", $rt_wrapFunction1(oncief_Properties$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Properties$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Properties$_hashCode), "$toString", $rt_wrapFunction0(oncief_Properties$_toString), "$signatures", $rt_wrapFunction0(oncief_Properties$_signatures0)], -oncief_Type$, "Type$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Type$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Type$_name), "$productArity", $rt_wrapFunction0(oncief_Type$_productArity), "$productElement", $rt_wrapFunction1(oncief_Type$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Type$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Type$_hashCode), "$toString", $rt_wrapFunction0(oncief_Type$_toString), "$signatures", $rt_wrapFunction0(oncief_Type$_signatures0)], -oncief_Upper$, "Upper$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Upper$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Upper$_name), "$productArity", $rt_wrapFunction0(oncief_Upper$_productArity), "$productElement", $rt_wrapFunction1(oncief_Upper$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Upper$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Upper$_hashCode), "$toString", $rt_wrapFunction0(oncief_Upper$_toString), "$signatures", $rt_wrapFunction0(oncief_Upper$_signatures0)], -oncief_ValueType$, "ValueType$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ValueType$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ValueType$_name), "$productArity", $rt_wrapFunction0(oncief_ValueType$_productArity), "$productElement", $rt_wrapFunction1(oncief_ValueType$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ValueType$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ValueType$_hashCode), "$toString", $rt_wrapFunction0(oncief_ValueType$_toString), "$signatures", +oncief_Type$, "Type$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Type$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Type$_name), "$productArity", $rt_wrapFunction0(oncief_Type$_productArity), "$productElement", $rt_wrapFunction1(oncief_Type$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Type$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Type$_hashCode), "$toString", $rt_wrapFunction0(oncief_Type$_toString), "$signatures", $rt_wrapFunction0(oncief_Type$_signatures0)], +oncief_Upper$, "Upper$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_Upper$_$callClinit, ["$name", $rt_wrapFunction0(oncief_Upper$_name), "$productArity", $rt_wrapFunction0(oncief_Upper$_productArity), "$productElement", $rt_wrapFunction1(oncief_Upper$_productElement), "$productIterator", $rt_wrapFunction0(oncief_Upper$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_Upper$_hashCode), "$toString", $rt_wrapFunction0(oncief_Upper$_toString), "$signatures", $rt_wrapFunction0(oncief_Upper$_signatures0)], +oncief_ValueType$, "ValueType$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_ValueType$_$callClinit, ["$name", $rt_wrapFunction0(oncief_ValueType$_name), "$productArity", $rt_wrapFunction0(oncief_ValueType$_productArity), "$productElement", $rt_wrapFunction1(oncief_ValueType$_productElement), "$productIterator", $rt_wrapFunction0(oncief_ValueType$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_ValueType$_hashCode), "$toString", $rt_wrapFunction0(oncief_ValueType$_toString), "$signatures", $rt_wrapFunction0(oncief_ValueType$_signatures0)], -oncief_WithinBBox$, "WithinBBox$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_WithinBBox$_$callClinit, ["$name", $rt_wrapFunction0(oncief_WithinBBox$_name0), "$productArity", $rt_wrapFunction0(oncief_WithinBBox$_productArity), "$productElement", $rt_wrapFunction1(oncief_WithinBBox$_productElement), "$productIterator", $rt_wrapFunction0(oncief_WithinBBox$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_WithinBBox$_hashCode), "$toString", $rt_wrapFunction0(oncief_WithinBBox$_toString), -"$signatures", $rt_wrapFunction0(oncief_WithinBBox$_signatures0)], -oncief_VectorSimilarityEuclidean$, "VectorSimilarityEuclidean$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_VectorSimilarityEuclidean$_$callClinit, ["$name", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_name), "$productArity", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_productArity), "$productElement", $rt_wrapFunction1(oncief_VectorSimilarityEuclidean$_productElement), "$productIterator", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_productIterator), "$hashCode", +oncief_WithinBBox$, "WithinBBox$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_WithinBBox$_$callClinit, ["$name", $rt_wrapFunction0(oncief_WithinBBox$_name0), "$productArity", $rt_wrapFunction0(oncief_WithinBBox$_productArity), "$productElement", $rt_wrapFunction1(oncief_WithinBBox$_productElement), "$productIterator", $rt_wrapFunction0(oncief_WithinBBox$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_WithinBBox$_hashCode), "$toString", $rt_wrapFunction0(oncief_WithinBBox$_toString), +"$signatures", $rt_wrapFunction0(oncief_WithinBBox$_signatures1)], +oncief_VectorSimilarityEuclidean$, "VectorSimilarityEuclidean$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_VectorSimilarityEuclidean$_$callClinit, ["$name", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_name), "$productArity", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_productArity), "$productElement", $rt_wrapFunction1(oncief_VectorSimilarityEuclidean$_productElement), "$productIterator", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_hashCode), "$toString", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_toString), "$signatures", $rt_wrapFunction0(oncief_VectorSimilarityEuclidean$_signatures0)], -oncief_VectorSimilarityCosine$, "VectorSimilarityCosine$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_VectorSimilarityCosine$_$callClinit, ["$name", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_name), "$productArity", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_productArity), "$productElement", $rt_wrapFunction1(oncief_VectorSimilarityCosine$_productElement), "$productIterator", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_hashCode), +oncief_VectorSimilarityCosine$, "VectorSimilarityCosine$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_VectorSimilarityCosine$_$callClinit, ["$name", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_name), "$productArity", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_productArity), "$productElement", $rt_wrapFunction1(oncief_VectorSimilarityCosine$_productElement), "$productIterator", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_hashCode), "$toString", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_toString), "$signatures", $rt_wrapFunction0(oncief_VectorSimilarityCosine$_signatures0)], oncief_Function$$lookup$lzycompute$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncief_Function$$lookup$lzycompute$lambda$_2_0_apply)], oncia_FulltextCreateIndex$, 0, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncia_LookupCreateIndex$, 0, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, 0]); -$rt_metadata([oncipcaf_ASTExceptionFactory$joiningLastDelimiter$lambda$_15_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, 0, -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNeitherOrsNorInnerScopes$1$1_applyOrElse)], -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containIns$1$1_applyOrElse)], -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoNots$1$1_applyOrElse)], -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNots$1$1_applyOrElse)], -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$containNoAnds$1$1_applyOrElse)], -oncias_SemanticError$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncias_SemanticError$_$callClinit, 0, -oncias_SemanticCheck$$_clinit_$lambda$_0_0, "SemanticCheck$$$lambda$_0_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$_clinit_$lambda$_0_0_apply)], -ong_ErrorMessageHolder, 0, jl_Object, [], 0, 3, 0, 0, 0, -ong_GqlHelper, 0, jl_Object, [], 0, 3, 0, 0, 0, -s_Enumeration$Value, "Enumeration$Value", 17, jl_Object, [sm_Ordered, ji_Serializable], 1, 3, 0, 0, ["$compareTo1", $rt_wrapFunction1(s_Enumeration$Value_compareTo), "$equals", $rt_wrapFunction1(s_Enumeration$Value_equals), "$hashCode", $rt_wrapFunction0(s_Enumeration$Value_hashCode)], -s_Enumeration$Val, "Enumeration$Val", 17, s_Enumeration$Value, [], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(s_Enumeration$Val_toString)], -ong_ErrorGqlStatusObjectImplementation, "ErrorGqlStatusObjectImplementation", 68, ong_CommonGqlStatusObjectImplementation, [ong_ErrorGqlStatusObject], 0, 3, 0, 0, ["$cause0", $rt_wrapFunction0(ong_ErrorGqlStatusObjectImplementation_cause), "$gqlStatusObject", $rt_wrapFunction0(ong_ErrorGqlStatusObjectImplementation_gqlStatusObject), "$toString", $rt_wrapFunction0(ong_ErrorGqlStatusObjectImplementation_toString)], -ong_ErrorGqlStatusObjectImplementation$Builder, 0, jl_Object, [], 0, 3, 0, 0, 0, -ong_DiagnosticRecord$Builder, 0, jl_Object, [], 0, 3, 0, 0, 0, -onc_SettingsDeclaration, 0, jl_Object, [], 3, 3, 0, 0, 0, -onc_GraphDatabaseInternalSettings, 0, jl_Object, [onc_SettingsDeclaration], 0, 3, 0, 0, 0, -ong_GqlParams, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_20, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_20, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_105, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_106, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_107, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_108, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_109, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_110, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_111, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_112, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_114, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_115, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_116, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_117, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_118, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_119, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_133, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_146, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_160, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncia_LookupCreateIndex$, 0, jl_Object, [oncia_CreateIndexType, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +jnc_CoderResult, 0, jl_Object, [], 0, 3, 0, 0, 0, +jnc_CoderMalfunctionError, "CoderMalfunctionError", 9, jl_Error, [], 0, 3, 0, 0, 0, +onciu_NonEmptyList$IteratorConverter, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_58, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_59, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_58, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_59, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncie_MatchMode, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_165, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_166, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_167, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_168, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_169, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_170, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_171, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_172, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_174, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$7_175, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_176, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_177, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_178, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_179, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_180, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_181, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_182, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_183, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_184, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_185, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_186, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_187, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_189, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_190, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_191, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_192, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_193, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_205, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_194, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_195, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_196, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_197, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_198, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_199, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_200, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_201, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_202, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_203, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_204, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_206, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_207, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_208, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_209, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_210, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_211, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_213, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_214, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_215, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_216, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_217, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_218, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_219, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_220, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_222, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_223, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_224, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_226, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_228, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_229, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_230, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_231, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_230, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$7_231, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_232, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_233, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_234, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_235, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_236, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_238, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$7_239, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_237, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_238, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_239, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_241, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_242, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_243, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -362610,34 +291915,29 @@ onciu_RewritableJavascript$PROXY$7_244, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_245, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_246, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_247, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_248, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_249, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_250, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_251, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_252, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_253, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_254, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_255, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_256, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_257, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_258, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_259, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_260, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_261, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_262, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_263, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_264, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_265, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_266, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_267, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_268, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_269, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_270, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_271, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_272, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_273, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_274, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_275, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_276, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_277, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_278, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_279, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_280, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_281, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -362645,7 +291945,6 @@ onciu_RewritableJavascript$PROXY$7_282, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_283, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_284, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_285, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_286, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_287, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_288, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_289, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -362653,303 +291952,67 @@ onciu_RewritableJavascript$PROXY$7_290, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_291, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_292, 0, jl_Object, [], 0, 3, 0, 0, 0]); $rt_metadata([onciu_RewritableJavascript$PROXY$7_293, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_294, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_295, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_296, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_297, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_298, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_299, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_300, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_302, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_301, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_303, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_304, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_305, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_306, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_307, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_308, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_309, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_310, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_311, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_312, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_313, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_314, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_315, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_316, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_317, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_318, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_319, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_320, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_321, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_322, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_323, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_324, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_325, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_326, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_327, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_328, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_329, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_330, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_331, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_334, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_335, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_332, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_336, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_337, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_338, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$7_339, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_340, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_341, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_342, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_343, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_344, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_345, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_346, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_348, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_349, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$7_350, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_351, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_352, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_353, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_354, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_355, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_356, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncie_False$$anon$11, "False$$anon$11", 64, oncie_False, [oncie_SensitiveLiteral], 4, 3, [oncie_False,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_False$$anon$11_literalLength)], -oncir_Deprecation, "Deprecation", 60, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncir_Deprecation_productPrefix), "$productArity", $rt_wrapFunction0(oncir_Deprecation_productArity), "$productElement", $rt_wrapFunction1(oncir_Deprecation_productElement), "$productIterator", $rt_wrapFunction0(oncir_Deprecation_productIterator), "$hashCode", $rt_wrapFunction0(oncir_Deprecation_hashCode), "$toString", $rt_wrapFunction0(oncir_Deprecation_toString), "$equals", $rt_wrapFunction1(oncir_Deprecation_equals)], -ju_HashMap$EntryIterator, 0, ju_HashMap$AbstractMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_HashMap$EntryIterator_next)], -scm_IndexedSeq$, 0, sc_SeqFactory$Delegate, [], 4, 3, 0, scm_IndexedSeq$_$callClinit, 0, -jusi_FindFirstConsumer, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_FindFirstConsumer_test)], -onciu_NonEmptyList$IterableConverter$toNonEmptyList$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciu_NonEmptyList$IterableConverter$toNonEmptyList$lambda$_1_0_apply)], -onciu_NonEmptyList, 0, jl_Object, [sc_IterableOnce], 3, 3, 0, 0, 0, -oncil_MultiOperatorLabelExpression, 0, jl_Object, [oncil_LabelExpression], 3, 3, 0, 0, 0, -oncil_LabelExpression$Conjunctions, "LabelExpression$Conjunctions", 63, jl_Object, [oncil_MultiOperatorLabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"Conjunctions"], 0, ["$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_flatten), "$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsGpmSpecificRelTypeExpression), -"$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsMatchSpecificLabelExpression), "$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_folder), -"$folder0", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_folder0), "$children", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_children), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_position), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_productElement), -"$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_dup)], -oncil_LabelExpression$Disjunctions, "LabelExpression$Disjunctions", 63, jl_Object, [oncil_MultiOperatorLabelExpression, ji_Serializable], 4, 3, [oncil_LabelExpression,0,"Disjunctions"], 0, ["$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_flatten), "$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsGpmSpecificRelTypeExpression), -"$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsMatchSpecificLabelExpression), "$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_folder0), -"$folder0", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_folder), "$children", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_children), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_position), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_productElement), -"$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_dup)], -onciuh_TreeZipper$TreeContext, "TreeZipper$TreeContext", 55, jl_Object, [onciuh_TreeZipper$Context, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_productPrefix), "$productArity", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_productArity), "$productElement", $rt_wrapFunction1(onciuh_TreeZipper$TreeContext_productElement), "$productIterator", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_productIterator), "$hashCode", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_hashCode), -"$toString", $rt_wrapFunction0(onciuh_TreeZipper$TreeContext_toString), "$equals", $rt_wrapFunction1(onciuh_TreeZipper$TreeContext_equals)], -oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_0_apply)], -onciu_ZippableUtil$, 0, jl_Object, [], 4, 3, 0, onciu_ZippableUtil$_$callClinit, 0, -oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$coerceArguments$lambda$_8_1_apply)], -oncie_SignedDecimalIntegerLiteral$$anon$1, "SignedDecimalIntegerLiteral$$anon$1", 64, oncie_SignedDecimalIntegerLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_SignedDecimalIntegerLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral$$anon$1_literalLength)], -oncie_StringLiteral$$anon$6, "StringLiteral$$anon$6", 64, oncie_StringLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_StringLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_StringLiteral$$anon$6_literalLength), "$position", $rt_wrapFunction0(oncie_StringLiteral$$anon$6_position)], -onciu_InputPosition$Range, "InputPosition$Range", 54, jl_Object, [onciu_InputPosition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$withOffset", $rt_wrapFunction1(onciu_InputPosition$Range_withOffset), "$toString", $rt_wrapFunction0(onciu_InputPosition$Range_toString), "$offset", $rt_wrapFunction0(onciu_InputPosition$Range_offset), "$line", $rt_wrapFunction0(onciu_InputPosition$Range_line), "$column", $rt_wrapFunction0(onciu_InputPosition$Range_column), "$productArity", $rt_wrapFunction0(onciu_InputPosition$Range_productArity), -"$productElement", $rt_wrapFunction1(onciu_InputPosition$Range_productElement), "$productIterator", $rt_wrapFunction0(onciu_InputPosition$Range_productIterator), "$hashCode", $rt_wrapFunction0(onciu_InputPosition$Range_hashCode), "$equals", $rt_wrapFunction1(onciu_InputPosition$Range_equals)], -oncie_Infinity$$anon$8, "Infinity$$anon$8", 64, oncie_Infinity, [oncie_SensitiveLiteral], 4, 3, [oncie_Infinity,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_Infinity$$anon$8_literalLength)], -oncie_DecimalDoubleLiteral$$anon$5, "DecimalDoubleLiteral$$anon$5", 64, oncie_DecimalDoubleLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_DecimalDoubleLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_DecimalDoubleLiteral$$anon$5_literalLength)], -oncie_SignedHexIntegerLiteral$$anon$4, "SignedHexIntegerLiteral$$anon$4", 64, oncie_SignedHexIntegerLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_SignedHexIntegerLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral$$anon$4_literalLength)], -oncie_True$$anon$10, "True$$anon$10", 64, oncie_True, [oncie_SensitiveLiteral], 4, 3, [oncie_True,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_True$$anon$10_literalLength)], -oncie_NaN$$anon$9, "NaN$$anon$9", 64, oncie_NaN, [oncie_SensitiveLiteral], 4, 3, [oncie_NaN,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_NaN$$anon$9_literalLength)], -oncie_SignedOctalIntegerLiteral$$anon$3, "SignedOctalIntegerLiteral$$anon$3", 64, oncie_SignedOctalIntegerLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_SignedOctalIntegerLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral$$anon$3_literalLength)], -oncief_UnresolvedFunction$, "UnresolvedFunction$", 65, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, oncief_UnresolvedFunction$_$callClinit, ["$name", $rt_wrapFunction0(oncief_UnresolvedFunction$_name), "$productArity", $rt_wrapFunction0(oncief_UnresolvedFunction$_productArity), "$productElement", $rt_wrapFunction1(oncief_UnresolvedFunction$_productElement), "$productIterator", $rt_wrapFunction0(oncief_UnresolvedFunction$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_UnresolvedFunction$_hashCode), -"$toString", $rt_wrapFunction0(oncief_UnresolvedFunction$_toString)], -oncia_UnresolvedCall$returnVariables$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$returnVariables$lambda$_17_0_apply)], -oncia_UnresolvedCall$returnVariables$lambda$_17_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$returnVariables$lambda$_17_1_apply)], -oncipvaf_Cypher5AstParser$statements$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5AstParser$statements$lambda$_2_0_apply)], -oncipvaf_Cypher25AstParser$statements$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25AstParser$statements$lambda$_2_0_apply)], -jusi_SimpleStreamImpl$ArrayFillingConsumer, 0, jl_Object, [juf_Predicate], 0, 0, 0, 0, ["$test0", $rt_wrapFunction1(jusi_SimpleStreamImpl$ArrayFillingConsumer_test)], -jusi_SimpleStreamImpl$toArray$lambda$_21_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_SimpleStreamImpl$toArray$lambda$_21_0_test)], -oncia_NamespacedName$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -ju_LinkedHashMapKeySet, 0, ju_AbstractSet, [ju_SequencedSet], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_LinkedHashMapKeySet_size), "$iterator", $rt_wrapFunction0(ju_LinkedHashMapKeySet_iterator)], -oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$aliasOrderBy$lambda$_42_0_apply)], -juf_Function$andThen$lambda$_2_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(juf_Function$andThen$lambda$_2_0_apply)], -jusi_FilteringStreamImpl$wrap$lambda$_1_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_FilteringStreamImpl$wrap$lambda$_1_0_test)], -jnc_CharsetEncoder, 0, jl_Object, [], 1, 3, 0, 0, 0, -jnc_CharacterCodingException, 0, ji_IOException, [], 0, 3, 0, 0, 0, -oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_0_apply)], -oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_15_1_apply)], -onciu_ZippableUtil$Zippable, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncirr_normalizeWithAndReturnClauses$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncirr_normalizeWithAndReturnClauses$$anonfun$3_applyOrElse)], -oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0, 0, jl_Object, [onciu_RewriterStopper], 0, 3, 0, 0, ["$shouldStop", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$aliasExpression$lambda$_45_0_shouldStop)], -oncia_SingleQuery$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_SingleQuery$_$callClinit, 0]); -$rt_metadata([sci_HashMap$HashKeySet$filterNot$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashMap$HashKeySet$filterNot$lambda$_5_0_apply)], -oncia_ProcedureResult, "ProcedureResult", 36, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_ProcedureResult_position), "$productPrefix", $rt_wrapFunction0(oncia_ProcedureResult_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ProcedureResult_productArity), "$productElement", $rt_wrapFunction1(oncia_ProcedureResult_productElement), "$productIterator", $rt_wrapFunction0(oncia_ProcedureResult_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ProcedureResult_hashCode), -"$toString", $rt_wrapFunction0(oncia_ProcedureResult_toString), "$equals", $rt_wrapFunction1(oncia_ProcedureResult_equals), "$dup", $rt_wrapFunction1(oncia_ProcedureResult_dup)], -oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_0_apply)], -oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$returnColumnNames$lambda$_5_1_apply)], -sc_Iterator$GroupedIterator, "Iterator$GroupedIterator", 21, sc_AbstractIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$GroupedIterator_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$GroupedIterator_next)], -oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RewriteProcedureCalls$$anonfun$getResolvedAndProjection$2$lambda$_18_0_apply)], -oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$$anonfun$returnItems$3$lambda$_53_0_apply)], -sm_Ordering$StringOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, -sm_Ordering$String$, 0, jl_Object, [sm_Ordering$StringOrdering], 0, 3, 0, sm_Ordering$String$_$callClinit, ["$on", $rt_wrapFunction1(sm_Ordering$String$_on), "$compare2", $rt_wrapFunction2(sm_Ordering$String$_compare)], -jnc_CoderResult, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciafn_Neo4jASTFactory$$anonfun$createConstraint$1$lambda$_547_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$$anonfun$createConstraint$1$lambda$_547_0_apply)], -onciafn_Neo4jASTFactory$$anonfun$createIndex$1$lambda$_553_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$$anonfun$createIndex$1$lambda$_553_0_apply)], -onciafn_Neo4jASTFactory$$anonfun$createFulltextIndex$1$lambda$_555_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$$anonfun$createFulltextIndex$1$lambda$_555_0_apply)], -onciafn_Neo4jASTFactory$$anonfun$createLookupIndex$1$lambda$_551_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$$anonfun$createLookupIndex$1$lambda$_551_0_apply)], -oncia_MergeAction, 0, jl_Object, [onciu_ASTNode, oncias_SemanticCheckable, oncie_HasMappableExpressions], 3, 3, 0, 0, 0, -oncia_OnMatch, "OnMatch", 36, jl_Object, [oncia_MergeAction, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_OnMatch_position), "$semanticCheck", $rt_wrapFunction0(oncia_OnMatch_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_OnMatch_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OnMatch_productArity), "$productElement", $rt_wrapFunction1(oncia_OnMatch_productElement), "$productIterator", $rt_wrapFunction0(oncia_OnMatch_productIterator), "$hashCode", $rt_wrapFunction0(oncia_OnMatch_hashCode), -"$toString", $rt_wrapFunction0(oncia_OnMatch_toString), "$equals", $rt_wrapFunction1(oncia_OnMatch_equals), "$dup", $rt_wrapFunction1(oncia_OnMatch_dup), "$mapExpressions", $rt_wrapFunction1(oncia_OnMatch_mapExpressions)], -oncia_OnCreate, "OnCreate", 36, jl_Object, [oncia_MergeAction, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_OnCreate_position), "$semanticCheck", $rt_wrapFunction0(oncia_OnCreate_semanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_OnCreate_productPrefix), "$productArity", $rt_wrapFunction0(oncia_OnCreate_productArity), "$productElement", $rt_wrapFunction1(oncia_OnCreate_productElement), "$productIterator", $rt_wrapFunction0(oncia_OnCreate_productIterator), "$hashCode", $rt_wrapFunction0(oncia_OnCreate_hashCode), -"$toString", $rt_wrapFunction0(oncia_OnCreate_toString), "$equals", $rt_wrapFunction1(oncia_OnCreate_equals), "$dup", $rt_wrapFunction1(oncia_OnCreate_dup), "$mapExpressions", $rt_wrapFunction1(oncia_OnCreate_mapExpressions)], -oncia_ASTSlicingPhrase, 0, jl_Object, [oncias_SemanticCheckable, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, -oncia_Skip, "Skip", 36, jl_Object, [onciu_ASTNode, oncia_ASTSlicingPhrase, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_Skip_semanticCheck), "$expression", $rt_wrapFunction0(oncia_Skip_expression), "$position", $rt_wrapFunction0(oncia_Skip_position), "$name", $rt_wrapFunction0(oncia_Skip_name), "$productPrefix", $rt_wrapFunction0(oncia_Skip_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Skip_productArity), "$productElement", $rt_wrapFunction1(oncia_Skip_productElement), -"$productIterator", $rt_wrapFunction0(oncia_Skip_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Skip_hashCode), "$toString", $rt_wrapFunction0(oncia_Skip_toString), "$equals", $rt_wrapFunction1(oncia_Skip_equals), "$dup", $rt_wrapFunction1(oncia_Skip_dup)], -oncia_Limit, "Limit", 36, jl_Object, [onciu_ASTNode, oncia_ASTSlicingPhrase, ji_Serializable], 0, 3, [0,0,0], 0, ["$semanticCheck", $rt_wrapFunction0(oncia_Limit_semanticCheck), "$expression", $rt_wrapFunction0(oncia_Limit_expression), "$position", $rt_wrapFunction0(oncia_Limit_position), "$name", $rt_wrapFunction0(oncia_Limit_name), "$productPrefix", $rt_wrapFunction0(oncia_Limit_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Limit_productArity), "$productElement", $rt_wrapFunction1(oncia_Limit_productElement), -"$productIterator", $rt_wrapFunction0(oncia_Limit_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Limit_hashCode), "$toString", $rt_wrapFunction0(oncia_Limit_toString), "$equals", $rt_wrapFunction1(oncia_Limit_equals), "$dup", $rt_wrapFunction1(oncia_Limit_dup)], -oncia_Access, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_ReadOnlyAccess$, "ReadOnlyAccess$", 36, jl_Object, [oncia_Access, s_Product, ji_Serializable], 4, 3, 0, oncia_ReadOnlyAccess$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_ReadOnlyAccess$_productArity), "$productElement", $rt_wrapFunction1(oncia_ReadOnlyAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ReadOnlyAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReadOnlyAccess$_hashCode), "$toString", $rt_wrapFunction0(oncia_ReadOnlyAccess$_toString)], -oncia_ReadWriteAccess$, "ReadWriteAccess$", 36, jl_Object, [oncia_Access, s_Product, ji_Serializable], 4, 3, 0, oncia_ReadWriteAccess$_$callClinit, ["$productArity", $rt_wrapFunction0(oncia_ReadWriteAccess$_productArity), "$productElement", $rt_wrapFunction1(oncia_ReadWriteAccess$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ReadWriteAccess$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ReadWriteAccess$_hashCode), "$toString", $rt_wrapFunction0(oncia_ReadWriteAccess$_toString)], -onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$2$lambda$_543_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$2$lambda$_543_0_apply)], -oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0_apply)], -oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0_apply)], -sci_VectorSliceBuilder, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_0_apply)], -oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$$anonfun$_unionMappings$1$lambda$_11_1_apply)], -oncia_AuthImpl, 0, jl_Object, [onciu_ASTNode, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, -oncia_ExternalAuth, "ExternalAuth", 36, jl_Object, [oncia_AuthImpl, ji_Serializable], 4, 3, [0,0,0], 0, ["$checkDuplicates", $rt_wrapFunction0(oncia_ExternalAuth_checkDuplicates), "$checkProviderName", $rt_wrapFunction0(oncia_ExternalAuth_checkProviderName), "$missingRequiredClauseErrorMessage", $rt_wrapFunction1(oncia_ExternalAuth_missingRequiredClauseErrorMessage), "$error2", $rt_wrapFunction2(oncia_ExternalAuth_error), "$provider", $rt_wrapFunction0(oncia_ExternalAuth_provider), "$authAttributes", $rt_wrapFunction0(oncia_ExternalAuth_authAttributes), -"$position", $rt_wrapFunction0(oncia_ExternalAuth_position), "$checkRequiredAttributes", $rt_wrapFunction0(oncia_ExternalAuth_checkRequiredAttributes), "$checkNoUnsupportedAttributes", $rt_wrapFunction0(oncia_ExternalAuth_checkNoUnsupportedAttributes), "$productPrefix", $rt_wrapFunction0(oncia_ExternalAuth_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ExternalAuth_productArity), "$productElement", $rt_wrapFunction1(oncia_ExternalAuth_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExternalAuth_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_ExternalAuth_hashCode), "$toString", $rt_wrapFunction0(oncia_ExternalAuth_toString), "$equals", $rt_wrapFunction1(oncia_ExternalAuth_equals), "$dup", $rt_wrapFunction1(oncia_ExternalAuth_dup)], -oncia_NativeAuth, "NativeAuth", 36, jl_Object, [oncia_AuthImpl, ji_Serializable], 4, 3, [0,0,0], 0, ["$checkDuplicates", $rt_wrapFunction0(oncia_NativeAuth_checkDuplicates), "$checkProviderName", $rt_wrapFunction0(oncia_NativeAuth_checkProviderName), "$missingRequiredClauseErrorMessage", $rt_wrapFunction1(oncia_NativeAuth_missingRequiredClauseErrorMessage), "$error2", $rt_wrapFunction2(oncia_NativeAuth_error), "$authAttributes", $rt_wrapFunction0(oncia_NativeAuth_authAttributes), "$position", $rt_wrapFunction0(oncia_NativeAuth_position), -"$provider", $rt_wrapFunction0(oncia_NativeAuth_provider), "$checkRequiredAttributes", $rt_wrapFunction0(oncia_NativeAuth_checkRequiredAttributes), "$checkNoUnsupportedAttributes", $rt_wrapFunction0(oncia_NativeAuth_checkNoUnsupportedAttributes), "$productPrefix", $rt_wrapFunction0(oncia_NativeAuth_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NativeAuth_productArity), "$productElement", $rt_wrapFunction1(oncia_NativeAuth_productElement), "$productIterator", $rt_wrapFunction0(oncia_NativeAuth_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_NativeAuth_hashCode), "$toString", $rt_wrapFunction0(oncia_NativeAuth_toString), "$equals", $rt_wrapFunction1(oncia_NativeAuth_equals), "$dup", $rt_wrapFunction1(oncia_NativeAuth_dup)], -onih_Strings, 0, jl_Object, [], 4, 3, 0, 0, 0, -onciap_ExpressionStringifier$$backtick$lambda$_9_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(onciap_ExpressionStringifier$$backtick$lambda$_9_0_test)], -onciap_ExpressionStringifier$$backtick$lambda$_9_1, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(onciap_ExpressionStringifier$$backtick$lambda$_9_1_test)], -sc_StrictOptimizedIterableOps$partition$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedIterableOps$partition$lambda$_1_0_apply)], -scc_JavaCollectionWrappers$MapWrapper, 0, ju_AbstractMap, [ji_Serializable], 0, 3, 0, 0, 0, -scc_JavaCollectionWrappers$MutableMapWrapper, 0, scc_JavaCollectionWrappers$MapWrapper, [], 0, 3, 0, 0, 0, -scc_JavaCollectionWrappers$JMapWrapperLike, 0, jl_Object, [scm_MapOps, sc_StrictOptimizedMapOps], 3, 3, 0, 0, 0, -scc_JavaCollectionWrappers$AbstractJMapWrapper, 0, scm_AbstractMap, [scc_JavaCollectionWrappers$JMapWrapperLike, ji_Serializable], 1, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(scc_JavaCollectionWrappers$AbstractJMapWrapper_iterator)], -scc_JavaCollectionWrappers$JMapWrapper, 0, scc_JavaCollectionWrappers$AbstractJMapWrapper, [], 0, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(scc_JavaCollectionWrappers$JMapWrapper_knownSize)], -scc_JavaCollectionWrappers$MutableSetWrapper, 0, scc_JavaCollectionWrappers$SetWrapper, [], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oncias_SemanticCheck$chain$lambda$_15_0, "SemanticCheck$chain$lambda$_15_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$chain$lambda$_15_0_apply)], -oncias_SemanticCheck$FlatMap, "SemanticCheck$FlatMap", 41, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$run", $rt_wrapFunction2(oncias_SemanticCheck$FlatMap_run), "$chain", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_chain), "$ifOkChain", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_ifOkChain), "$map11", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_map), "$flatMap3", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_flatMap), "$productPrefix", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_productPrefix), -"$productArity", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheck$FlatMap_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheck$FlatMap_equals)], -scm_Iterable$, 0, sc_IterableFactory$Delegate, [], 4, 3, 0, scm_Iterable$_$callClinit, 0, -oncia_Union$semanticCheck$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$semanticCheck$lambda$_15_0_apply)], -oncia_SubqueryCall$, 0, jl_Object, [], 4, 3, 0, oncia_SubqueryCall$_$callClinit, 0, -oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$$nestedInanonfun$checkNoCallInTransactionsAfterWriteClause$1$1_applyOrElse)], -jl_InternalError, "InternalError", 14, jl_VirtualMachineError, [], 0, 3, 0, 0, 0, -oncia_Union$returnVariables$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$returnVariables$lambda$_6_0_apply)]]); -$rt_metadata([oncia_UserQualifier, "UserQualifier", 36, jl_Object, [oncia_DatabasePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_UserQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UserQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_UserQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_UserQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UserQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_UserQualifier_toString), -"$equals", $rt_wrapFunction1(oncia_UserQualifier_equals), "$dup", $rt_wrapFunction1(oncia_UserQualifier_dup)], -oncia_ExecutePrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, -oncia_FunctionPrivilegeQualifier, 0, jl_Object, [oncia_ExecutePrivilegeQualifier], 3, 3, 0, 0, 0, -oncia_FunctionQualifier, "FunctionQualifier", 36, jl_Object, [oncia_FunctionPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_FunctionQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_FunctionQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_FunctionQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_FunctionQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_FunctionQualifier_hashCode), "$toString", -$rt_wrapFunction0(oncia_FunctionQualifier_toString), "$equals", $rt_wrapFunction1(oncia_FunctionQualifier_equals), "$dup", $rt_wrapFunction1(oncia_FunctionQualifier_dup)], -oncia_ProcedurePrivilegeQualifier, 0, jl_Object, [oncia_ExecutePrivilegeQualifier], 3, 3, 0, 0, 0, -oncia_ProcedureQualifier, "ProcedureQualifier", 36, jl_Object, [oncia_ProcedurePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ProcedureQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ProcedureQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_ProcedureQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_ProcedureQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ProcedureQualifier_hashCode), -"$toString", $rt_wrapFunction0(oncia_ProcedureQualifier_toString), "$equals", $rt_wrapFunction1(oncia_ProcedureQualifier_equals), "$dup", $rt_wrapFunction1(oncia_ProcedureQualifier_dup)], -oncia_SettingPrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, -oncia_SettingQualifier, "SettingQualifier", 36, jl_Object, [oncia_SettingPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SettingQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SettingQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_SettingQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_SettingQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SettingQualifier_hashCode), "$toString", -$rt_wrapFunction0(oncia_SettingQualifier_toString), "$equals", $rt_wrapFunction1(oncia_SettingQualifier_equals), "$dup", $rt_wrapFunction1(oncia_SettingQualifier_dup)], -oncias_SemanticAnalysisTooling$, 0, jl_Object, [], 4, 3, 0, oncias_SemanticAnalysisTooling$_$callClinit, 0, -oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_71_0, "SemanticAnalysisTooling$recordCurrentScope$lambda$_71_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$recordCurrentScope$lambda$_71_0_apply)], -oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_expandStar$$anonfun$importVariables$4$lambda$_60_0_apply)], -sc_BufferedIterator, 0, jl_Object, [sc_Iterator], 3, 3, 0, 0, 0, -sc_Iterator$$anon$1, 0, sc_AbstractIterator, [sc_BufferedIterator], 4, 3, 0, 0, 0, -oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1_applyOrElse)], -oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1_applyOrElse)], -oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1_applyOrElse)], -oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1_applyOrElse)], -oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_75_0, "SemanticAnalysisTooling$requireFeatureSupport$lambda$_75_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$requireFeatureSupport$lambda$_75_0_apply)], -oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_0_apply)], -oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$org$neo4j$cypher$internal$ast$SingleQuery$$partitionClauses$lambda$_1_1_apply)], -onciu_StepSequencer$$anonfun$orderSteps$16$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$16$lambda$_34_0_apply)], -onciu_StepSequencer$$anonfun$orderSteps$8$lambda$_26_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_StepSequencer$$anonfun$orderSteps$8$lambda$_26_0_apply)], -jnc_CoderMalfunctionError, "CoderMalfunctionError", 10, jl_Error, [], 0, 3, 0, 0, 0, -oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$verifyOrderByAggregationUse$1$lambda$_58_0_apply)], -oncie_containsAggregate$, 0, jl_Object, [s_Function1], 4, 3, 0, oncie_containsAggregate$_$callClinit, ["$apply2", $rt_wrapFunction1(oncie_containsAggregate$_apply)], -oncia_ExternalAuth$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ExternalAuth$$anonfun$2_applyOrElse)], -onih_Strings$codePoints$lambda$_5_0, 0, jl_Object, [jl_Iterable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -jus_StreamSupport, 0, jl_Object, [], 4, 3, 0, 0, 0, -onih_Strings$codePoints$lambda$_5_1, 0, jl_Object, [juf_ToIntFunction], 0, 3, 0, 0, ["$applyAsInt", $rt_wrapFunction1(onih_Strings$codePoints$lambda$_5_1_applyAsInt)], -oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$$obfuscateArgs$lambda$_2_0_apply)], -oncia_Union$checkRecursively$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$checkRecursively$lambda$_13_0_apply)], -oavr_ANTLRErrorListener, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavr_BaseErrorListener, 0, jl_Object, [oavr_ANTLRErrorListener], 0, 3, 0, 0, 0, -oncip_SyntaxErrorListener, "SyntaxErrorListener", 42, oavr_BaseErrorListener, [], 0, 3, 0, 0, ["$syntaxError", function(var_1, var_2, var_3, var_4, var_5, var_6) { oncip_SyntaxErrorListener_syntaxError(this, var_1, var_2, var_3, var_4, var_5, var_6); }], -oavr_Recognizer, 0, jl_Object, [], 1, 3, 0, oavr_Recognizer_$callClinit, 0, -oavra_ATNSimulator, 0, jl_Object, [], 1, 3, 0, oavra_ATNSimulator_$callClinit, 0, -oavra_ParserATNSimulator, 0, oavra_ATNSimulator, [], 0, 3, 0, oavra_ParserATNSimulator_$callClinit, ["$reset0", $rt_wrapFunction0(oavra_ParserATNSimulator_reset)], -oavra_PredictionMode, "PredictionMode", 85, jl_Enum, [], 12, 3, [0,0,0], 0, 0, -oavr_ANTLRErrorStrategy, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavr_DefaultErrorStrategy, 0, jl_Object, [oavr_ANTLRErrorStrategy], 0, 3, 0, 0, ["$reset2", $rt_wrapFunction1(oavr_DefaultErrorStrategy_reset), "$inErrorRecoveryMode", $rt_wrapFunction1(oavr_DefaultErrorStrategy_inErrorRecoveryMode), "$reportMatch", $rt_wrapFunction1(oavr_DefaultErrorStrategy_reportMatch), "$reportError", $rt_wrapFunction2(oavr_DefaultErrorStrategy_reportError), "$recover", $rt_wrapFunction2(oavr_DefaultErrorStrategy_recover), "$sync", $rt_wrapFunction1(oavr_DefaultErrorStrategy_sync), "$recoverInline", -$rt_wrapFunction1(oavr_DefaultErrorStrategy_recoverInline)], -oavr_BailErrorStrategy, 0, oavr_DefaultErrorStrategy, [], 0, 3, 0, 0, ["$recover", $rt_wrapFunction2(oavr_BailErrorStrategy_recover), "$recoverInline", $rt_wrapFunction1(oavr_BailErrorStrategy_recoverInline), "$sync", $rt_wrapFunction1(oavr_BailErrorStrategy_sync)], -oavr_Parser, 0, oavr_Recognizer, [], 1, 3, 0, 0, ["$getInputStream", $rt_wrapFunction0(oavr_Parser_getInputStream)], -oncip_CypherErrorStrategy, 0, jl_Object, [oavr_ANTLRErrorStrategy], 4, 3, 0, 0, ["$reportError", $rt_wrapFunction2(oncip_CypherErrorStrategy_reportError), "$recoverInline", $rt_wrapFunction1(oncip_CypherErrorStrategy_recoverInline), "$recover", $rt_wrapFunction2(oncip_CypherErrorStrategy_recover), "$sync", $rt_wrapFunction1(oncip_CypherErrorStrategy_sync), "$inErrorRecoveryMode", $rt_wrapFunction1(oncip_CypherErrorStrategy_inErrorRecoveryMode), "$reset2", $rt_wrapFunction1(oncip_CypherErrorStrategy_reset), "$reportMatch", -$rt_wrapFunction1(oncip_CypherErrorStrategy_reportMatch)], -oncias_SemanticCheck$$error$lambda$_2_0, "SemanticCheck$$error$lambda$_2_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$error$lambda$_2_0_apply)], -oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$startingWithImportingWith$lambda$_2_0_apply)], -oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$containTheSameInstances$1$lambda$_14_0_apply)], -oncias_SemanticCheck$$fromState$lambda$_8_0, "SemanticCheck$$fromState$lambda$_8_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$fromState$lambda$_8_0_apply)], -oavr_IntStream, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavr_TokenStream, 0, jl_Object, [oavr_IntStream], 3, 3, 0, 0, 0, -oavr_BufferedTokenStream, 0, jl_Object, [oavr_TokenStream], 0, 3, 0, 0, ["$index0", $rt_wrapFunction0(oavr_BufferedTokenStream_index)]]); -$rt_metadata([oavr_CommonTokenStream, 0, oavr_BufferedTokenStream, [], 0, 3, 0, 0, 0, -oncipl_UnicodeEscapeReplacementReader$InvalidUnicodeLiteral, "UnicodeEscapeReplacementReader$InvalidUnicodeLiteral", 49, jl_RuntimeException, [], 0, 3, 0, 0, 0, -oncipa_AstBuildingAntlrParser, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavr_Vocabulary, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncip_CypherErrorVocabulary, 0, jl_Object, [oavr_Vocabulary], 4, 3, 0, 0, 0, -oavrt_Tree, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavrt_SyntaxTree, 0, jl_Object, [oavrt_Tree], 3, 3, 0, 0, 0, -oavrt_ParseTree, 0, jl_Object, [oavrt_SyntaxTree], 3, 3, 0, 0, 0, -oavrt_RuleNode, 0, jl_Object, [oavrt_ParseTree], 3, 3, 0, 0, 0, -oavr_RuleContext, 0, jl_Object, [oavrt_RuleNode], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oavr_RuleContext_getRuleIndex), "$toString", $rt_wrapFunction0(oavr_RuleContext_toString0)], -oavr_ParserRuleContext, "ParserRuleContext", 83, oavr_RuleContext, [], 0, 3, 0, 0, 0, -oncip_AstRuleCtx, 0, oavr_ParserRuleContext, [], 0, 3, 0, 0, ["$getText", $rt_wrapFunction0(oncip_AstRuleCtx_getText)], -oncipa_AntlrAstParser$doParse$lambda$_6_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipa_AntlrAstParser$doParse$lambda$_6_0_apply)], -oncipa_AntlrAstParser$doParse$lambda$_6_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipa_AntlrAstParser$doParse$lambda$_6_1_apply)], -oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0, "SemanticAnalysisTooling$$$lambda$_0_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_0_apply)], -oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1, "SemanticAnalysisTooling$$$lambda$_0_1", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$_clinit_$lambda$_0_1_apply)], -oncia_SingleQuery$$anonfun$extractImportingWith$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$extractImportingWith$1_applyOrElse)], -oavr_Token, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipl_CypherToken, 0, jl_Object, [oavr_Token], 3, 3, 0, 0, 0, -oncifp_ResolvedCall$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncifp_ResolvedCall$_$callClinit, 0, -oncifp_RewriteProcedureCalls$resolveProcedure$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -js_PrivilegedAction, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavra_ParserATNSimulator$1, 0, jl_Object, [js_PrivilegedAction], 0, 0, 0, 0, 0, -js_AccessController, 0, jl_Object, [], 4, 3, 0, 0, 0, -s_Product4, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, -s_Tuple4, 0, jl_Object, [s_Product4, ji_Serializable], 4, 3, 0, 0, 0, -oncifp_ResolvedCall$$apply$lambda$_5_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$apply$lambda$_5_0_apply)], -oncifp_ResolvedCall$$apply$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$apply$lambda$_5_1_apply)], -oncifp_ResolvedCall$$apply$lambda$_5_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$apply$lambda$_5_2_apply)], -oncifp_ResolvedCall$$apply$lambda$_5_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$apply$lambda$_5_3_apply)], -oncifp_ResolvedCall$$apply$lambda$_5_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$apply$lambda$_5_4_apply)], -oncifp_ResolvedCall$$apply$lambda$_5_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$apply$lambda$_5_5_apply)], -oncifp_ResolvedCall$_init_$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$_init_$lambda$_71_0_apply)], -oncifp_ResolvedCall$_init_$lambda$_71_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$_init_$lambda$_71_1_apply)], -onciu_RewritableJavascript$PROXY$9_21, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_22, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_23, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_24, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_25, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_26, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_27, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_28, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_29, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_30, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_31, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_32, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_33, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_34, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_35, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_36, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$9_37, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_38, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_39, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_40, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_41, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_42, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_43, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_44, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_45, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_46, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_47, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_48, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_49, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_50, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_51, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_52, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_53, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_54, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_55, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_56, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_57, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_58, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_59, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_359, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_361, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_367, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_370, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_371, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_374, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_375, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_381, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_384, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_386, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_390, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_391, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_395, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_396, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_397, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_406, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_407, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$7_408, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_413, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_421, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_436, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_440, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_445, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_449, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_450, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_451, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_460, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_463, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_481, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_60, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_61, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_62, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -362976,85 +292039,19 @@ onciu_RewritableJavascript$PROXY$9_82, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_83, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_84, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_85, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_86, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$9_87, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_86, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_87, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_88, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_89, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_90, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_91, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_92, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_93, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_94, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_95, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_96, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_97, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_98, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_99, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_100, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_101, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_102, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_103, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_104, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_105, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_106, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_107, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_108, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_109, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_110, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_111, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_112, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_113, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_114, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_115, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_116, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_117, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_118, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_119, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_120, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_21, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_22, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_23, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_24, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_25, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_26, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_27, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_28, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_29, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_30, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_31, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_32, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_33, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_34, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_35, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_36, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$11_37, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_38, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_39, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_40, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_41, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_42, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_43, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_44, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_45, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_46, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_47, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_48, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_49, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_50, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_51, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_52, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_53, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_54, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_55, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_56, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_57, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_58, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_59, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_60, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_61, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_62, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_63, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_64, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_63, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$11_64, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_65, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_66, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_67, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -363076,14 +292073,39 @@ onciu_RewritableJavascript$PROXY$11_82, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_83, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_84, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_85, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_86, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$11_87, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_86, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_87, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_88, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_89, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_90, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_91, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_92, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_93, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_492, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_495, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_528, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_540, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_94, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_95, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_96, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_97, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_98, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_99, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_100, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_101, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_102, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_103, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_104, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_105, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_106, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_107, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_108, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_109, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$9_110, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_111, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_112, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_113, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_114, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_94, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_95, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_96, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -363105,1076 +292127,343 @@ onciu_RewritableJavascript$PROXY$11_111, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_112, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_113, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_114, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_115, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_116, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_117, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_115, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_116, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_117, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_118, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_119, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_120, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_363, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_364, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_366, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_367, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_369, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_373, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_374, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_375, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_378, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_379, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_380, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_381, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_383, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_385, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_386, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_388, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$7_389, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_390, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_391, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_392, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_393, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_394, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_395, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_396, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_397, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_398, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_399, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_400, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_401, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_402, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_404, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_408, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_409, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_412, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_413, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_573, 0, jl_Object, [], 0, 3, 0, 0, 0, +ju_GenericEnumSet$1, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, 0, +ju_HashMap$ValueIterator, 0, ju_HashMap$AbstractMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_HashMap$ValueIterator_next)], +jusi_FilteringStreamImpl$wrap$lambda$_1_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_FilteringStreamImpl$wrap$lambda$_1_0_test)], +oncias_ExpressionTypeInfo, "ExpressionTypeInfo", 40, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_ExpressionTypeInfo_productPrefix), "$productArity", $rt_wrapFunction0(oncias_ExpressionTypeInfo_productArity), "$productElement", $rt_wrapFunction1(oncias_ExpressionTypeInfo_productElement), "$productIterator", $rt_wrapFunction0(oncias_ExpressionTypeInfo_productIterator), "$hashCode", $rt_wrapFunction0(oncias_ExpressionTypeInfo_hashCode), "$toString", $rt_wrapFunction0(oncias_ExpressionTypeInfo_toString), +"$equals", $rt_wrapFunction1(oncias_ExpressionTypeInfo_equals)], +oncia_ShowConstraintsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_ShowConstraintsClause$_$callClinit, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_0_apply0)], +oncia_ShowIndexesClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_0_apply)], +oncia_ShowSettingsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_0_apply0)], +oncia_ShowTransactionsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_ShowTransactionsClause$_$callClinit, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_0_apply0)], +oncia_RevokePrivilege$semanticCheck$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_RevokePrivilege$semanticCheck$lambda$_15_0_apply)], +oncia_GrantPrivilege$semanticCheck$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GrantPrivilege$semanticCheck$lambda$_14_0_apply)], +oncia_CreateUser$semanticCheck$lambda$_88_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateUser$semanticCheck$lambda$_88_0_apply)], +s_DummyImplicit$, 0, jl_Object, [], 4, 3, 0, s_DummyImplicit$_$callClinit, 0, +oncia_CreateRole$semanticCheck$lambda$_72_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateRole$semanticCheck$lambda$_72_0_apply)]]); +$rt_metadata([oncia_AlterUser$semanticCheck$lambda$_90_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterUser$semanticCheck$lambda$_90_0_apply)], +oncia_AlterUser$semanticCheck$lambda$_90_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterUser$semanticCheck$lambda$_90_1_apply)], +oncia_AliasDriverSettingsCheck$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_90_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_90_0_apply)], +jnci_Iso8859Decoder, 0, jnci_BufferedDecoder, [], 0, 3, 0, 0, ["$arrayDecode", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return jnci_Iso8859Decoder_arrayDecode(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }], +oncius_TypeSpec, "TypeSpec", 57, jl_Object, [s_Equals], 0, 3, [0,0,0], 0, ["$hashCode", $rt_wrapFunction0(oncius_TypeSpec_hashCode), "$equals", $rt_wrapFunction1(oncius_TypeSpec_equals), "$toString", $rt_wrapFunction0(oncius_TypeSpec_toString)], +oncil_MultiOperatorLabelExpression, 0, jl_Object, [oncil_LabelExpression], 3, 3, 0, 0, 0, +oncil_LabelExpression$Disjunctions, "LabelExpression$Disjunctions", 61, jl_Object, [oncil_MultiOperatorLabelExpression, ji_Serializable], 4, 3, [oncil_LabelExpression,0,"Disjunctions"], 0, ["$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_flatten), "$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsGpmSpecificRelTypeExpression), +"$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsMatchSpecificLabelExpression), "$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_folder0), +"$folder0", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_folder), "$children", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_children), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_position), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_productElement), +"$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$Disjunctions_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_dup), "$mapExpressions", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions_mapExpressions)], +oncil_LabelExpression$Conjunctions, "LabelExpression$Conjunctions", 61, jl_Object, [oncil_MultiOperatorLabelExpression, ji_Serializable], 0, 3, [oncil_LabelExpression,0,"Conjunctions"], 0, ["$flatten0", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_flatten), "$containsGpmSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsGpmSpecificLabelExpression), "$containsGpmSpecificRelTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsGpmSpecificRelTypeExpression), +"$containsMatchSpecificLabelExpression", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsMatchSpecificLabelExpression), "$containsDynamicLabelOrTypeExpression", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsDynamicLabelOrTypeExpression), "$replaceColonSyntax", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_replaceColonSyntax), "$foldedOver", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_foldedOver), "$folder", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_folder), +"$folder0", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_folder0), "$children", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_children), "$containsIs", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_containsIs), "$position", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_position), "$productPrefix", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_productPrefix), "$productArity", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_productArity), "$productElement", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_productElement), +"$productIterator", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_productIterator), "$hashCode", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_hashCode), "$toString", $rt_wrapFunction0(oncil_LabelExpression$Conjunctions_toString), "$equals", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_equals), "$dup", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_dup), "$mapExpressions", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions_mapExpressions)], +onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0_apply)], +jnc_BufferUnderflowException, "BufferUnderflowException", 9, jl_RuntimeException, [], 0, 3, 0, 0, 0, +jnc_BufferOverflowException, "BufferOverflowException", 9, jl_RuntimeException, [], 0, 3, 0, 0, 0, +jnc_MalformedInputException, "MalformedInputException", 9, jnc_CharacterCodingException, [], 0, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(jnc_MalformedInputException_getMessage)], +jnc_UnmappableCharacterException, "UnmappableCharacterException", 9, jnc_CharacterCodingException, [], 0, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(jnc_UnmappableCharacterException_getMessage)], +oncief_UnresolvedFunction$, "UnresolvedFunction$", 63, oncief_Function, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$name", $rt_wrapFunction0(oncief_UnresolvedFunction$_name), "$productArity", $rt_wrapFunction0(oncief_UnresolvedFunction$_productArity), "$productElement", $rt_wrapFunction1(oncief_UnresolvedFunction$_productElement), "$productIterator", $rt_wrapFunction0(oncief_UnresolvedFunction$_productIterator), "$hashCode", $rt_wrapFunction0(oncief_UnresolvedFunction$_hashCode), "$toString", $rt_wrapFunction0(oncief_UnresolvedFunction$_toString)], +oncia_UnresolvedCall$returnVariables$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$returnVariables$lambda$_17_0_apply)], +oncia_UnresolvedCall$returnVariables$lambda$_17_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$returnVariables$lambda$_17_1_apply)], +oncie_DecimalDoubleLiteral$$anon$5, "DecimalDoubleLiteral$$anon$5", 62, oncie_DecimalDoubleLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_DecimalDoubleLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_DecimalDoubleLiteral$$anon$5_literalLength)], +oncie_SignedDecimalIntegerLiteral$$anon$1, "SignedDecimalIntegerLiteral$$anon$1", 62, oncie_SignedDecimalIntegerLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_SignedDecimalIntegerLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_SignedDecimalIntegerLiteral$$anon$1_literalLength)], +oncie_NaN$$anon$9, "NaN$$anon$9", 62, oncie_NaN, [oncie_SensitiveLiteral], 4, 3, [oncie_NaN,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_NaN$$anon$9_literalLength)], +oncie_True$$anon$10, "True$$anon$10", 62, oncie_True, [oncie_SensitiveLiteral], 4, 3, [oncie_True,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_True$$anon$10_literalLength)], +oncie_Infinity$$anon$8, "Infinity$$anon$8", 62, oncie_Infinity, [oncie_SensitiveLiteral], 4, 3, [oncie_Infinity,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_Infinity$$anon$8_literalLength)], +oncie_StringLiteral$$anon$6, "StringLiteral$$anon$6", 62, oncie_StringLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_StringLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_StringLiteral$$anon$6_literalLength), "$position", $rt_wrapFunction0(oncie_StringLiteral$$anon$6_position)], +oncia_GrantRolesToUsers$semanticCheck$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GrantRolesToUsers$semanticCheck$lambda$_70_0_apply)], +oncia_GrantRolesToUsers$semanticCheck$lambda$_70_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GrantRolesToUsers$semanticCheck$lambda$_70_1_apply)], +oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_0_apply)], +oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_RevokeRolesFromUsers$semanticCheck$lambda$_70_1_apply)], +onciu_InputPosition$Range, "InputPosition$Range", 52, jl_Object, [onciu_InputPosition, s_Product, ji_Serializable], 0, 3, 0, 0, ["$withOffset", $rt_wrapFunction1(onciu_InputPosition$Range_withOffset), "$toString", $rt_wrapFunction0(onciu_InputPosition$Range_toString), "$offset", $rt_wrapFunction0(onciu_InputPosition$Range_offset), "$line", $rt_wrapFunction0(onciu_InputPosition$Range_line), "$column", $rt_wrapFunction0(onciu_InputPosition$Range_column), "$productArity", $rt_wrapFunction0(onciu_InputPosition$Range_productArity), +"$productElement", $rt_wrapFunction1(onciu_InputPosition$Range_productElement), "$productIterator", $rt_wrapFunction0(onciu_InputPosition$Range_productIterator), "$hashCode", $rt_wrapFunction0(onciu_InputPosition$Range_hashCode), "$equals", $rt_wrapFunction1(onciu_InputPosition$Range_equals)], +oncie_SignedOctalIntegerLiteral$$anon$3, "SignedOctalIntegerLiteral$$anon$3", 62, oncie_SignedOctalIntegerLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_SignedOctalIntegerLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_SignedOctalIntegerLiteral$$anon$3_literalLength)], +oncie_SignedHexIntegerLiteral$$anon$4, "SignedHexIntegerLiteral$$anon$4", 62, oncie_SignedHexIntegerLiteral, [oncie_SensitiveLiteral], 4, 3, [oncie_SignedHexIntegerLiteral,0,0], 0, ["$literalLength", $rt_wrapFunction0(oncie_SignedHexIntegerLiteral$$anon$4_literalLength)], +ju_LinkedList$SequentialListIterator, 0, jl_Object, [ju_ListIterator], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_LinkedList$SequentialListIterator_hasNext), "$next", $rt_wrapFunction0(ju_LinkedList$SequentialListIterator_next), "$nextIndex", $rt_wrapFunction0(ju_LinkedList$SequentialListIterator_nextIndex)], +onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0, "Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0", 52, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0_apply)], +oncia_Union$Mapping$1, "Union$Mapping$1", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Union$Mapping$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Union$Mapping$1_productArity), "$productElement", $rt_wrapFunction1(oncia_Union$Mapping$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_Union$Mapping$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Union$Mapping$1_hashCode), "$toString", $rt_wrapFunction0(oncia_Union$Mapping$1_toString), +"$equals", $rt_wrapFunction1(oncia_Union$Mapping$1_equals)], +ju_IdentityHashMap$HashEntry, 0, ju_MapEntry, [], 0, 0, 0, 0, 0, +jnci_BufferedDecoder$Controller, 0, jl_Object, [], 0, 3, 0, 0, 0, +oavr_CommonToken, "CommonToken", 81, jl_Object, [oavr_WritableToken, ji_Serializable], 0, 3, 0, 0, ["$getType0", $rt_wrapFunction0(oavr_CommonToken_getType), "$getText", $rt_wrapFunction0(oavr_CommonToken_getText), "$getLine", $rt_wrapFunction0(oavr_CommonToken_getLine), "$getCharPositionInLine", $rt_wrapFunction0(oavr_CommonToken_getCharPositionInLine), "$getChannel", $rt_wrapFunction0(oavr_CommonToken_getChannel), "$getStartIndex", $rt_wrapFunction0(oavr_CommonToken_getStartIndex), "$getStopIndex", $rt_wrapFunction0(oavr_CommonToken_getStopIndex), +"$getTokenIndex", $rt_wrapFunction0(oavr_CommonToken_getTokenIndex), "$getTokenSource", $rt_wrapFunction0(oavr_CommonToken_getTokenSource), "$getInputStream0", $rt_wrapFunction0(oavr_CommonToken_getInputStream), "$toString", $rt_wrapFunction0(oavr_CommonToken_toString0)], +oncipl_FullCypherToken, "FullCypherToken", 48, oavr_CommonToken, [oncipl_CypherToken], 0, 3, 0, 0, ["$position", $rt_wrapFunction0(oncipl_FullCypherToken_position), "$inputOffset", $rt_wrapFunction1(oncipl_FullCypherToken_inputOffset)], +oncipl_ThinCypherToken, "ThinCypherToken", 48, jl_Object, [oncipl_CypherToken, oavrt_TerminalNode], 4, 3, 0, 0, ["$position", $rt_wrapFunction0(oncipl_ThinCypherToken_position), "$inputOffset", $rt_wrapFunction1(oncipl_ThinCypherToken_inputOffset), "$getType0", $rt_wrapFunction0(oncipl_ThinCypherToken_getType), "$getChannel", $rt_wrapFunction0(oncipl_ThinCypherToken_getChannel), "$getStartIndex", $rt_wrapFunction0(oncipl_ThinCypherToken_getStartIndex), "$getStopIndex", $rt_wrapFunction0(oncipl_ThinCypherToken_getStopIndex), +"$getLine", $rt_wrapFunction0(oncipl_ThinCypherToken_getLine), "$getCharPositionInLine", $rt_wrapFunction0(oncipl_ThinCypherToken_getCharPositionInLine), "$getText", $rt_wrapFunction0(oncipl_ThinCypherToken_getText), "$getTokenSource", $rt_wrapFunction0(oncipl_ThinCypherToken_getTokenSource), "$getInputStream0", $rt_wrapFunction0(oncipl_ThinCypherToken_getInputStream), "$getTokenIndex", $rt_wrapFunction0(oncipl_ThinCypherToken_getTokenIndex), "$getSymbol", $rt_wrapFunction0(oncipl_ThinCypherToken_getSymbol), +"$setParent", $rt_wrapFunction1(oncipl_ThinCypherToken_setParent)], +oncia_ShowAndTerminateColumn, "ShowAndTerminateColumn", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$productPrefix", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowAndTerminateColumn_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_hashCode), +"$toString", $rt_wrapFunction0(oncia_ShowAndTerminateColumn_toString), "$equals", $rt_wrapFunction1(oncia_ShowAndTerminateColumn_equals)], +oncia_ShowAndTerminateColumn$, 0, sr_AbstractFunction2, [ji_Serializable], 4, 3, 0, 0, 0, +oncia_ShowConstraintsClause$$apply$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$apply$lambda$_13_0_apply)], +oncia_ShowConstraintsClause$$apply$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$apply$lambda$_13_1_apply)], +oncia_ShowConstraintsClause$$apply$lambda$_13_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$apply$lambda$_13_2_apply)], +oncia_ShowConstraintsClause$$apply$lambda$_13_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$apply$lambda$_13_3_apply)], +oncia_ShowConstraintsClause$$apply$lambda$_13_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$apply$lambda$_13_4_apply)], +oncia_ShowConstraintsClause, "ShowConstraintsClause", 35, jl_Object, [oncia_CommandClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$returnVariables", $rt_wrapFunction0(oncia_ShowConstraintsClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowConstraintsClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowConstraintsClause_shouldRunQPPChecks), "$error4", $rt_wrapFunction2(oncia_ShowConstraintsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowConstraintsClause_asCanonicalStringVal), +"$foldedOver", $rt_wrapFunction0(oncia_ShowConstraintsClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowConstraintsClause_folder), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowConstraintsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowConstraintsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), +"$where", $rt_wrapFunction0(oncia_ShowConstraintsClause_where), "$yieldAll", $rt_wrapFunction0(oncia_ShowConstraintsClause_yieldAll), "$yieldWith", $rt_wrapFunction0(oncia_ShowConstraintsClause_yieldWith), "$position", $rt_wrapFunction0(oncia_ShowConstraintsClause_position), "$name", $rt_wrapFunction0(oncia_ShowConstraintsClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowConstraintsClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowConstraintsClause_unfilteredColumns), "$moveWhereToProjection", +$rt_wrapFunction0(oncia_ShowConstraintsClause_moveWhereToProjection), "$moveOutWith", $rt_wrapFunction0(oncia_ShowConstraintsClause_moveOutWith), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowConstraintsClause_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowConstraintsClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowConstraintsClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowConstraintsClause_productElement), "$productIterator", +$rt_wrapFunction0(oncia_ShowConstraintsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowConstraintsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowConstraintsClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowConstraintsClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowConstraintsClause_dup)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0_apply)], +oncia_ShowIndexesClause, "ShowIndexesClause", 35, jl_Object, [oncia_CommandClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowIndexesClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowIndexesClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowIndexesClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowIndexesClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowIndexesClause_semanticCheckFold), +"$declareVariable", $rt_wrapFunction2(oncia_ShowIndexesClause_declareVariable), "$error4", $rt_wrapFunction2(oncia_ShowIndexesClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowIndexesClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowIndexesClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowIndexesClause_folder), "$columnsAsMap", $rt_wrapFunction0(oncia_ShowIndexesClause_columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), +"$SetExtractor", $rt_wrapFunction0(oncia_ShowIndexesClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowIndexesClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$where", $rt_wrapFunction0(oncia_ShowIndexesClause_where), "$yieldItems", $rt_wrapFunction0(oncia_ShowIndexesClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowIndexesClause_yieldAll), +"$yieldWith", $rt_wrapFunction0(oncia_ShowIndexesClause_yieldWith), "$position", $rt_wrapFunction0(oncia_ShowIndexesClause_position), "$name", $rt_wrapFunction0(oncia_ShowIndexesClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowIndexesClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowIndexesClause_unfilteredColumns), "$moveWhereToProjection", $rt_wrapFunction0(oncia_ShowIndexesClause_moveWhereToProjection), "$moveOutWith", $rt_wrapFunction0(oncia_ShowIndexesClause_moveOutWith), +"$productPrefix", $rt_wrapFunction0(oncia_ShowIndexesClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowIndexesClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowIndexesClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowIndexesClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowIndexesClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowIndexesClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowIndexesClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowIndexesClause_dup)], +oncia_ShowSettingsClause, "ShowSettingsClause", 35, jl_Object, [oncia_CommandClauseWithNames, oncia_CommandClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowSettingsClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowSettingsClause_semanticCheck), +"$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowSettingsClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowSettingsClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowSettingsClause_declareVariable), "$error4", $rt_wrapFunction2(oncia_ShowSettingsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowSettingsClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowSettingsClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowSettingsClause_folder), +"$columnsAsMap", $rt_wrapFunction0(oncia_ShowSettingsClause_columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowSettingsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowSettingsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), +"$names", $rt_wrapFunction0(oncia_ShowSettingsClause_names), "$where", $rt_wrapFunction0(oncia_ShowSettingsClause_where), "$yieldItems", $rt_wrapFunction0(oncia_ShowSettingsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowSettingsClause_yieldAll), "$yieldWith", $rt_wrapFunction0(oncia_ShowSettingsClause_yieldWith), "$position", $rt_wrapFunction0(oncia_ShowSettingsClause_position), "$name", $rt_wrapFunction0(oncia_ShowSettingsClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowSettingsClause_originalColumns), +"$unfilteredColumns", $rt_wrapFunction0(oncia_ShowSettingsClause_unfilteredColumns), "$moveWhereToProjection", $rt_wrapFunction0(oncia_ShowSettingsClause_moveWhereToProjection), "$moveOutWith", $rt_wrapFunction0(oncia_ShowSettingsClause_moveOutWith), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowSettingsClause_clauseSpecificSemanticCheck), "$productPrefix", $rt_wrapFunction0(oncia_ShowSettingsClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowSettingsClause_productArity), "$productElement", +$rt_wrapFunction1(oncia_ShowSettingsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowSettingsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowSettingsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowSettingsClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowSettingsClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowSettingsClause_dup)], +oncia_ShowTransactionsClause$$apply$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$$apply$lambda$_40_0_apply)]]); +$rt_metadata([oncia_ShowTransactionsClause$$apply$lambda$_40_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$$apply$lambda$_40_1_apply)], +oncia_ShowTransactionsClause$$apply$lambda$_40_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$$apply$lambda$_40_2_apply)], +oncia_ShowTransactionsClause, "ShowTransactionsClause", 35, jl_Object, [oncia_TransactionsCommandClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowTransactionsClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowTransactionsClause_returnVariables), +"$semanticCheck", $rt_wrapFunction0(oncia_ShowTransactionsClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowTransactionsClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_ShowTransactionsClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowTransactionsClause_declareVariable), "$error4", $rt_wrapFunction2(oncia_ShowTransactionsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowTransactionsClause_asCanonicalStringVal), "$foldedOver", +$rt_wrapFunction0(oncia_ShowTransactionsClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowTransactionsClause_folder), "$columnsAsMap", $rt_wrapFunction0(oncia_ShowTransactionsClause_columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowTransactionsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", +$rt_wrapFunction1(oncia_ShowTransactionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$names", $rt_wrapFunction0(oncia_ShowTransactionsClause_names), "$where", $rt_wrapFunction0(oncia_ShowTransactionsClause_where), "$yieldItems", $rt_wrapFunction0(oncia_ShowTransactionsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowTransactionsClause_yieldAll), "$yieldWith", $rt_wrapFunction0(oncia_ShowTransactionsClause_yieldWith), "$position", $rt_wrapFunction0(oncia_ShowTransactionsClause_position), +"$name", $rt_wrapFunction0(oncia_ShowTransactionsClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowTransactionsClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowTransactionsClause_unfilteredColumns), "$moveWhereToProjection", $rt_wrapFunction0(oncia_ShowTransactionsClause_moveWhereToProjection), "$moveOutWith", $rt_wrapFunction0(oncia_ShowTransactionsClause_moveOutWith), "$productPrefix", $rt_wrapFunction0(oncia_ShowTransactionsClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowTransactionsClause_productArity), +"$productElement", $rt_wrapFunction1(oncia_ShowTransactionsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowTransactionsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowTransactionsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_ShowTransactionsClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowTransactionsClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowTransactionsClause_dup)], +onu_Stringifier, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_AlterUser$checkRemoveAuth$lambda$_89_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterUser$checkRemoveAuth$lambda$_89_0_apply)], +oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0_apply)], +oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_0_apply)], +oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions$unnestDisjunctions$lambda$_16_1_apply)], +oavra_SemanticContext$Operator, 0, oavra_SemanticContext, [], 1, 3, 0, 0, 0, +oavra_SemanticContext$OR, "SemanticContext$OR", 83, oavra_SemanticContext$Operator, [], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oavra_SemanticContext$OR_equals), "$hashCode", $rt_wrapFunction0(oavra_SemanticContext$OR_hashCode), "$eval", $rt_wrapFunction2(oavra_SemanticContext$OR_eval), "$evalPrecedence", $rt_wrapFunction2(oavra_SemanticContext$OR_evalPrecedence), "$toString", $rt_wrapFunction0(oavra_SemanticContext$OR_toString)], +oncipvaf_DdlShowBuilder$ConstraintEntity0, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$Rel$, "DdlShowBuilder$Rel$", 51, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity0, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$Rel$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_hashCode), "$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_toString)], +oncipvaf_DdlShowBuilder$Node$0, "DdlShowBuilder$Node$", 51, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity0, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$Node$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_hashCode), "$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_toString0)], +oncipvaf_DdlShowBuilder$NoEntity$0, "DdlShowBuilder$NoEntity$", 51, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity0, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$NoEntity$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_hashCode0), "$toString", +$rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_toString0)], +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$0, "DdlPrivilegeBuilder$RelGraphToken$", 51, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken0, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_hashCode), +"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_toString0)], +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$0, "DdlPrivilegeBuilder$NodeGraphToken$", 51, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken0, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_hashCode0), +"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_toString)], +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$0, "DdlPrivilegeBuilder$ElementGraphToken$", 51, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken0, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_hashCode0), +"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_toString)], +oncipvaf_DdlShowBuilder$Node$, "DdlShowBuilder$Node$", 47, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$Node$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_hashCode0), "$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_toString)], +oncipvaf_DdlShowBuilder$Rel$0, "DdlShowBuilder$Rel$", 47, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$Rel$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_hashCode0), "$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_toString0)], +oncipvaf_DdlShowBuilder$NoEntity$, "DdlShowBuilder$NoEntity$", 47, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$NoEntity$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_hashCode), "$toString", +$rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_toString)], +oncipvaf_DdlPrivilegeBuilder$RelGraphToken$, "DdlPrivilegeBuilder$RelGraphToken$", 47, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_hashCode0), +"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_toString)], +oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$, "DdlPrivilegeBuilder$NodeGraphToken$", 47, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_hashCode), +"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_toString0)], +oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$, "DdlPrivilegeBuilder$ElementGraphToken$", 47, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_hashCode), +"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_toString0)], +oncie_LogicalProperty$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncie_LogicalVariable$, 0, jl_Object, [], 4, 3, 0, 0, 0, +sc_View$, 0, jl_Object, [sc_IterableFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(sc_View$_newBuilder), "$from0", $rt_wrapFunction1(sc_View$_from0)], +srj_JFunction1$mcZI$sp, 0, jl_Object, [s_Function1, ji_Serializable], 3, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcZI$sp_apply)], +oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0, 0, jl_Object, [srj_JFunction1$mcZI$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcZI$sp_apply), "$apply$mcZI$sp", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0_apply$mcZI$sp)], +oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1_apply)], +oncia_Union$$anonfun$checkRecursively$2$lambda$_41_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Union$$anonfun$checkRecursively$2$lambda$_41_0_apply)], +oncie_Xor, "Xor", 62, oncie_Expression, [oncie_BooleanExpression, oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Xor_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Xor_isConstantForQuery), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Xor_canonicalOperatorSymbol), "$lhs0", $rt_wrapFunction0(oncie_Xor_lhs), "$rhs", $rt_wrapFunction0(oncie_Xor_rhs), "$position", $rt_wrapFunction0(oncie_Xor_position), "$productPrefix", +$rt_wrapFunction0(oncie_Xor_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Xor_productArity), "$productElement", $rt_wrapFunction1(oncie_Xor_productElement), "$productIterator", $rt_wrapFunction0(oncie_Xor_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Xor_hashCode), "$toString", $rt_wrapFunction0(oncie_Xor_toString), "$equals", $rt_wrapFunction1(oncie_Xor_equals)], +oncie_Pow, "Pow", 62, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Pow_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Pow_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Pow_lhs), "$rhs", $rt_wrapFunction0(oncie_Pow_rhs), "$position", $rt_wrapFunction0(oncie_Pow_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Pow_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_Pow_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_Pow_productArity), "$productElement", $rt_wrapFunction1(oncie_Pow_productElement), "$productIterator", $rt_wrapFunction0(oncie_Pow_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pow_hashCode), "$toString", $rt_wrapFunction0(oncie_Pow_toString), "$equals", $rt_wrapFunction1(oncie_Pow_equals)], +oncia_ShowConstraintsClause$_init_$lambda$_121_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$_init_$lambda$_121_0_apply)], +oncia_ShowConstraintsClause$_init_$lambda$_121_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$_init_$lambda$_121_1_apply)], +oncia_ShowIndexesClause$_init_$lambda$_119_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowIndexesClause$_init_$lambda$_119_0_apply)], +oncia_ShowIndexesClause$_init_$lambda$_119_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowIndexesClause$_init_$lambda$_119_1_apply)], +oncia_ShowSettingsClause$_init_$lambda$_113_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowSettingsClause$_init_$lambda$_113_0_apply)], +oncia_ShowSettingsClause$_init_$lambda$_113_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowSettingsClause$_init_$lambda$_113_1_apply)], +oncia_ShowTransactionsClause$_init_$lambda$_143_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$_init_$lambda$_143_0_apply)], +oncia_ShowTransactionsClause$_init_$lambda$_143_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowTransactionsClause$_init_$lambda$_143_1_apply)], +oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0_apply)], +oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0_apply)], +oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_73_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_73_0_apply)], +oncia_ExecutePrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, +oncia_ProcedurePrivilegeQualifier, 0, jl_Object, [oncia_ExecutePrivilegeQualifier], 3, 3, 0, 0, 0, +oncia_ProcedureQualifier, "ProcedureQualifier", 35, jl_Object, [oncia_ProcedurePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ProcedureQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ProcedureQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_ProcedureQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_ProcedureQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ProcedureQualifier_hashCode), +"$toString", $rt_wrapFunction0(oncia_ProcedureQualifier_toString), "$equals", $rt_wrapFunction1(oncia_ProcedureQualifier_equals), "$dup", $rt_wrapFunction1(oncia_ProcedureQualifier_dup)], +oncia_LabelQualifier, "LabelQualifier", 35, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_LabelQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_LabelQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_LabelQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_LabelQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_LabelQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_LabelQualifier_toString), +"$equals", $rt_wrapFunction1(oncia_LabelQualifier_equals), "$dup", $rt_wrapFunction1(oncia_LabelQualifier_dup)], +s_DummyImplicit, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncie_MatchMode$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0_apply)]]); +$rt_metadata([oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0_apply)], +oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0_apply)], +oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_159_0, "SingleQuery$$anonfun$checkClauses$2$lambda$_159_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_159_0_apply)], +oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0_apply)], +oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0_apply)], +oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0_apply)], +oncia_AuthImpl, 0, jl_Object, [onciu_ASTNode, oncias_SemanticAnalysisTooling], 3, 3, 0, 0, 0, +oncia_ExternalAuth, "ExternalAuth", 35, jl_Object, [oncia_AuthImpl, ji_Serializable], 4, 3, [0,0,0], 0, ["$checkDuplicates", $rt_wrapFunction0(oncia_ExternalAuth_checkDuplicates), "$checkProviderName", $rt_wrapFunction0(oncia_ExternalAuth_checkProviderName), "$missingRequiredClauseErrorMessage", $rt_wrapFunction1(oncia_ExternalAuth_missingRequiredClauseErrorMessage), "$error4", $rt_wrapFunction2(oncia_ExternalAuth_error), "$provider", $rt_wrapFunction0(oncia_ExternalAuth_provider), "$authAttributes", $rt_wrapFunction0(oncia_ExternalAuth_authAttributes), +"$position", $rt_wrapFunction0(oncia_ExternalAuth_position), "$checkRequiredAttributes", $rt_wrapFunction0(oncia_ExternalAuth_checkRequiredAttributes), "$checkNoUnsupportedAttributes", $rt_wrapFunction0(oncia_ExternalAuth_checkNoUnsupportedAttributes), "$productPrefix", $rt_wrapFunction0(oncia_ExternalAuth_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ExternalAuth_productArity), "$productElement", $rt_wrapFunction1(oncia_ExternalAuth_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExternalAuth_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_ExternalAuth_hashCode), "$toString", $rt_wrapFunction0(oncia_ExternalAuth_toString), "$equals", $rt_wrapFunction1(oncia_ExternalAuth_equals), "$dup", $rt_wrapFunction1(oncia_ExternalAuth_dup)], +oncia_NativeAuth, "NativeAuth", 35, jl_Object, [oncia_AuthImpl, ji_Serializable], 4, 3, [0,0,0], 0, ["$checkDuplicates", $rt_wrapFunction0(oncia_NativeAuth_checkDuplicates), "$checkProviderName", $rt_wrapFunction0(oncia_NativeAuth_checkProviderName), "$missingRequiredClauseErrorMessage", $rt_wrapFunction1(oncia_NativeAuth_missingRequiredClauseErrorMessage), "$error4", $rt_wrapFunction2(oncia_NativeAuth_error), "$authAttributes", $rt_wrapFunction0(oncia_NativeAuth_authAttributes), "$position", $rt_wrapFunction0(oncia_NativeAuth_position), +"$provider", $rt_wrapFunction0(oncia_NativeAuth_provider), "$checkRequiredAttributes", $rt_wrapFunction0(oncia_NativeAuth_checkRequiredAttributes), "$checkNoUnsupportedAttributes", $rt_wrapFunction0(oncia_NativeAuth_checkNoUnsupportedAttributes), "$productPrefix", $rt_wrapFunction0(oncia_NativeAuth_productPrefix), "$productArity", $rt_wrapFunction0(oncia_NativeAuth_productArity), "$productElement", $rt_wrapFunction1(oncia_NativeAuth_productElement), "$productIterator", $rt_wrapFunction0(oncia_NativeAuth_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_NativeAuth_hashCode), "$toString", $rt_wrapFunction0(oncia_NativeAuth_toString), "$equals", $rt_wrapFunction1(oncia_NativeAuth_equals), "$dup", $rt_wrapFunction1(oncia_NativeAuth_dup)], +oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0_apply)], +scc_JavaCollectionWrappers$JCollectionWrapper, 0, sc_AbstractIterable, [sc_StrictOptimizedIterableOps, ji_Serializable], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(scc_JavaCollectionWrappers$JCollectionWrapper_iterator)], +oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0_apply)], +oncia_RelationshipQualifier, "RelationshipQualifier", 35, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_RelationshipQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_RelationshipQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_RelationshipQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelationshipQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelationshipQualifier_hashCode), +"$toString", $rt_wrapFunction0(oncia_RelationshipQualifier_toString), "$equals", $rt_wrapFunction1(oncia_RelationshipQualifier_equals), "$dup", $rt_wrapFunction1(oncia_RelationshipQualifier_dup)], +oncia_UserQualifier, "UserQualifier", 35, jl_Object, [oncia_DatabasePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_UserQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_UserQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_UserQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_UserQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UserQualifier_hashCode), "$toString", $rt_wrapFunction0(oncia_UserQualifier_toString), +"$equals", $rt_wrapFunction1(oncia_UserQualifier_equals), "$dup", $rt_wrapFunction1(oncia_UserQualifier_dup)], +oncia_ElementQualifier, "ElementQualifier", 35, jl_Object, [oncia_GraphPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_ElementQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ElementQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_ElementQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_ElementQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ElementQualifier_hashCode), "$toString", +$rt_wrapFunction0(oncia_ElementQualifier_toString), "$equals", $rt_wrapFunction1(oncia_ElementQualifier_equals), "$dup", $rt_wrapFunction1(oncia_ElementQualifier_dup)], +oncia_SettingPrivilegeQualifier, 0, jl_Object, [oncia_PrivilegeQualifier], 3, 3, 0, 0, 0, +oncia_SettingQualifier, "SettingQualifier", 35, jl_Object, [oncia_SettingPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_SettingQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_SettingQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_SettingQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_SettingQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_SettingQualifier_hashCode), "$toString", +$rt_wrapFunction0(oncia_SettingQualifier_toString), "$equals", $rt_wrapFunction1(oncia_SettingQualifier_equals), "$dup", $rt_wrapFunction1(oncia_SettingQualifier_dup)], +oncia_FunctionPrivilegeQualifier, 0, jl_Object, [oncia_ExecutePrivilegeQualifier], 3, 3, 0, 0, 0, +oncia_FunctionQualifier, "FunctionQualifier", 35, jl_Object, [oncia_FunctionPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_FunctionQualifier_productPrefix), "$productArity", $rt_wrapFunction0(oncia_FunctionQualifier_productArity), "$productElement", $rt_wrapFunction1(oncia_FunctionQualifier_productElement), "$productIterator", $rt_wrapFunction0(oncia_FunctionQualifier_productIterator), "$hashCode", $rt_wrapFunction0(oncia_FunctionQualifier_hashCode), "$toString", +$rt_wrapFunction0(oncia_FunctionQualifier_toString), "$equals", $rt_wrapFunction1(oncia_FunctionQualifier_equals), "$dup", $rt_wrapFunction1(oncia_FunctionQualifier_dup)], +oncias_SemanticExpressionCheck$, 0, jl_Object, [oncias_SemanticAnalysisTooling], 4, 3, 0, oncias_SemanticExpressionCheck$_$callClinit, ["$specifyType0", $rt_wrapFunction2(oncias_SemanticExpressionCheck$_specifyType), "$expectType", $rt_wrapFunction3(oncias_SemanticExpressionCheck$_expectType5), "$expectType1", $rt_wrapFunction2(oncias_SemanticExpressionCheck$_expectType), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncias_SemanticExpressionCheck$_expectType3(this, var_1, var_2, var_3, +var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncias_SemanticExpressionCheck$_expectType$default$5), "$types1", $rt_wrapFunction1(oncias_SemanticExpressionCheck$_types)], +oncia_CreateConstraint$semanticCheck$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$semanticCheck$lambda$_28_0_apply)], +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SyntacticallyDeprecatedFeatures$$$anonfun$find$1$lambda$_16_0_apply)], +oncie_NodePattern$WhereVariableInNodePatterns$, 0, jl_Object, [onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncie_RelationshipPattern$WhereVariableInRelationshipPatterns$, 0, jl_Object, [onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncie_Add, "Add", 62, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Add_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Add_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Add_lhs), "$rhs", $rt_wrapFunction0(oncie_Add_rhs), "$position", $rt_wrapFunction0(oncie_Add_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Add_canonicalOperatorSymbol), "$productPrefix", $rt_wrapFunction0(oncie_Add_productPrefix), +"$productArity", $rt_wrapFunction0(oncie_Add_productArity), "$productElement", $rt_wrapFunction1(oncie_Add_productElement), "$productIterator", $rt_wrapFunction0(oncie_Add_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Add_hashCode), "$toString", $rt_wrapFunction0(oncie_Add_toString), "$equals", $rt_wrapFunction1(oncie_Add_equals)], +oncil_LabelExpressionPredicate$UnparenthesizedLabelPredicateOnRhsOfAdd$, 0, jl_Object, [onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncie_CaseExpression$KeywordVariablesInWhenOperand$, 0, jl_Object, [onciu_DeprecatedFeature$DeprecatedIn5ErrorIn25, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_Deprecations$SyntacticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1_applyOrElse0)], +oncir_Deprecations$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$1_applyOrElse)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$3$2_applyOrElse)], +oavra_SemanticContext$PrecedencePredicate, "SemanticContext$PrecedencePredicate", 83, oavra_SemanticContext, [jl_Comparable], 0, 3, 0, 0, ["$eval", $rt_wrapFunction2(oavra_SemanticContext$PrecedencePredicate_eval), "$evalPrecedence", $rt_wrapFunction2(oavra_SemanticContext$PrecedencePredicate_evalPrecedence), "$hashCode", $rt_wrapFunction0(oavra_SemanticContext$PrecedencePredicate_hashCode), "$equals", $rt_wrapFunction1(oavra_SemanticContext$PrecedencePredicate_equals), "$toString", $rt_wrapFunction0(oavra_SemanticContext$PrecedencePredicate_toString), +"$compareTo1", $rt_wrapFunction1(oavra_SemanticContext$PrecedencePredicate_compareTo)], +sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0_apply)], +oncia_Union$$anonfun$defineUnionVariables$5$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$5$lambda$_57_0_apply)], +sc_IterableOnceOps$foldRight$lambda$_36_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$foldRight$lambda$_36_0_apply)], +oncia_AmbiguousAggregation$, 0, jl_Object, [], 4, 3, 0, 0, 0, +sc_View$Drop, "View$Drop", 19, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Drop_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Drop_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Drop_isEmpty)], +oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0_apply)], +oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1_applyOrElse)], +oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_34_0_apply)], +oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_36_0_apply)], +oncia_Union$Mapping$2$, 0, sr_AbstractFunction3, [ji_Serializable], 0, 3, 0, 0, 0, +oncie_Concatenate, "Concatenate", 62, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Concatenate_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Concatenate_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Concatenate_lhs), "$rhs", $rt_wrapFunction0(oncie_Concatenate_rhs), "$position", $rt_wrapFunction0(oncie_Concatenate_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Concatenate_canonicalOperatorSymbol), +"$productPrefix", $rt_wrapFunction0(oncie_Concatenate_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Concatenate_productArity), "$productElement", $rt_wrapFunction1(oncie_Concatenate_productElement), "$productIterator", $rt_wrapFunction0(oncie_Concatenate_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Concatenate_hashCode), "$toString", $rt_wrapFunction0(oncie_Concatenate_toString), "$equals", $rt_wrapFunction1(oncie_Concatenate_equals)], +oncie_Subtract, "Subtract", 62, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Subtract_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Subtract_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Subtract_lhs), "$rhs", $rt_wrapFunction0(oncie_Subtract_rhs), "$position", $rt_wrapFunction0(oncie_Subtract_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Subtract_canonicalOperatorSymbol), +"$productPrefix", $rt_wrapFunction0(oncie_Subtract_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Subtract_productArity), "$productElement", $rt_wrapFunction1(oncie_Subtract_productElement), "$productIterator", $rt_wrapFunction0(oncie_Subtract_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Subtract_hashCode), "$toString", $rt_wrapFunction0(oncie_Subtract_toString), "$equals", $rt_wrapFunction1(oncie_Subtract_equals)], +oncie_Divide, "Divide", 62, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Divide_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Divide_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Divide_lhs), "$rhs", $rt_wrapFunction0(oncie_Divide_rhs), "$position", $rt_wrapFunction0(oncie_Divide_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Divide_canonicalOperatorSymbol), "$productPrefix", +$rt_wrapFunction0(oncie_Divide_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Divide_productArity), "$productElement", $rt_wrapFunction1(oncie_Divide_productElement), "$productIterator", $rt_wrapFunction0(oncie_Divide_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Divide_hashCode), "$toString", $rt_wrapFunction0(oncie_Divide_toString), "$equals", $rt_wrapFunction1(oncie_Divide_equals)], +oncie_Modulo, "Modulo", 62, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Modulo_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Modulo_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Modulo_lhs), "$rhs", $rt_wrapFunction0(oncie_Modulo_rhs), "$position", $rt_wrapFunction0(oncie_Modulo_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Modulo_canonicalOperatorSymbol), "$productPrefix", +$rt_wrapFunction0(oncie_Modulo_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Modulo_productArity), "$productElement", $rt_wrapFunction1(oncie_Modulo_productElement), "$productIterator", $rt_wrapFunction0(oncie_Modulo_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Modulo_hashCode), "$toString", $rt_wrapFunction0(oncie_Modulo_toString), "$equals", $rt_wrapFunction1(oncie_Modulo_equals)], +oncie_Multiply, "Multiply", 62, oncie_Expression, [oncie_BinaryOperatorExpression, ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_Multiply_asCanonicalStringVal), "$isConstantForQuery", $rt_wrapFunction0(oncie_Multiply_isConstantForQuery), "$lhs0", $rt_wrapFunction0(oncie_Multiply_lhs), "$rhs", $rt_wrapFunction0(oncie_Multiply_rhs), "$position", $rt_wrapFunction0(oncie_Multiply_position), "$canonicalOperatorSymbol", $rt_wrapFunction0(oncie_Multiply_canonicalOperatorSymbol), +"$productPrefix", $rt_wrapFunction0(oncie_Multiply_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Multiply_productArity), "$productElement", $rt_wrapFunction1(oncie_Multiply_productElement), "$productIterator", $rt_wrapFunction0(oncie_Multiply_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Multiply_hashCode), "$toString", $rt_wrapFunction0(oncie_Multiply_toString), "$equals", $rt_wrapFunction1(oncie_Multiply_equals)], +oncia_UserAuth$checkDuplicateAuth$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UserAuth$checkDuplicateAuth$lambda$_12_0_apply)], +oncia_UserAuth$$anonfun$checkDuplicateAuth$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_UserAuth$$anonfun$checkDuplicateAuth$2_applyOrElse)], +oncia_UserAuth$checkDuplicateAuth$lambda$_12_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UserAuth$checkDuplicateAuth$lambda$_12_1_apply)]]); +$rt_metadata([oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0_apply)], +oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0_apply)], +oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1_apply)], +onih_Strings, 0, jl_Object, [], 4, 3, 0, 0, 0, +onu_Stringifier$backtick$lambda$_3_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(onu_Stringifier$backtick$lambda$_3_0_test)], +onu_Stringifier$backtick$lambda$_3_1, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(onu_Stringifier$backtick$lambda$_3_1_test)], +oncie_ListSlice, "ListSlice", 62, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_ListSlice_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ListSlice_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ListSlice_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ListSlice_productArity), "$productElement", $rt_wrapFunction1(oncie_ListSlice_productElement), "$productIterator", $rt_wrapFunction0(oncie_ListSlice_productIterator), "$hashCode", +$rt_wrapFunction0(oncie_ListSlice_hashCode), "$toString", $rt_wrapFunction0(oncie_ListSlice_toString), "$equals", $rt_wrapFunction1(oncie_ListSlice_equals)], +oncia_SingleQuery$checkHorizon$lambda$_88_0, "SingleQuery$checkHorizon$lambda$_88_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkHorizon$lambda$_88_0_apply)], +oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0, "ReadAdministrationCommand$checkProjection$1$lambda$_32_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0_apply)], +oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_174_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_174_0_apply)], +oncia_ExternalAuth$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ExternalAuth$$anonfun$2_applyOrElse)], +oncie_Expression$SemanticContext, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_Expression$SemanticContext$Simple$, 0, jl_Object, [oncie_Expression$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncias_package$$liftSemanticEitherFunc$lambda$_2_0, "package$$liftSemanticEitherFunc$lambda$_2_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticEitherFunc$lambda$_2_0_apply)], +jlr_AccessibleObject, 0, jl_Object, [jlr_AnnotatedElement], 0, 3, 0, 0, 0, +jlr_Member, 0, jl_Object, [], 3, 3, 0, 0, 0, +jlr_Method, "Method", 13, jlr_AccessibleObject, [jlr_Member], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(jlr_Method_toString)], +oncir_Deprecations$SyntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SyntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0_apply)], +oncias_SemanticTable$TypeGetter, 0, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticTable$typeFor$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticTable$typeFor$lambda$_25_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$includesExisting$1$lambda$_20_1_apply)], +oncie_Expression$TreeAcc, "Expression$TreeAcc", 62, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncie_Expression$TreeAcc_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Expression$TreeAcc_productArity), "$productElement", $rt_wrapFunction1(oncie_Expression$TreeAcc_productElement), "$productIterator", $rt_wrapFunction0(oncie_Expression$TreeAcc_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Expression$TreeAcc_hashCode), "$toString", $rt_wrapFunction0(oncie_Expression$TreeAcc_toString), +"$equals", $rt_wrapFunction1(oncie_Expression$TreeAcc_equals)], +oncie_Expression$TreeAcc$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1_applyOrElse)], +oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1_applyOrElse)], +onih_Strings$codePoints$lambda$_5_0, 0, jl_Object, [jl_Iterable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +jus_StreamSupport, 0, jl_Object, [], 4, 3, 0, 0, 0, +onih_Strings$codePoints$lambda$_5_1, 0, jl_Object, [juf_ToIntFunction], 0, 3, 0, 0, ["$applyAsInt", $rt_wrapFunction1(onih_Strings$codePoints$lambda$_5_1_applyAsInt)], +oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$check$lambda$_53_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$check$lambda$_53_0_apply)], +oncias_SemanticExpressionCheck$$check$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$check$lambda$_58_0_apply)], +jlr_Field, "Field", 13, jlr_AccessibleObject, [jlr_Member], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(jlr_Field_toString)], +onciu_RewritableJavascript$PROXY$9_118, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_119, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_120, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_121, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_122, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_123, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_124, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_125, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_126, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_127, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_128, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_129, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_130, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_118, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_119, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_120, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_121, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_122, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_123, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_124, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_125, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_126, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_125, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$11_126, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_574, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_575, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_577, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_578, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_579, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_580, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_581, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_582, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_584, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_591, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_593, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_599, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_625, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_626, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_627, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_643, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_127, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_128, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_129, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_130, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_131, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_132, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_133, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_134, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_127, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_128, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_129, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_130, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_415, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_416, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_417, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_418, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_419, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_420, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_421, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_422, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_423, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_424, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_425, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$7_426, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_427, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_428, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_429, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_430, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_431, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_433, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_434, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_131, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_131, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncie_QuantifiedPath$allVariables$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_QuantifiedPath$allVariables$lambda$_9_0_apply)], -oncie_PathConcatenation$allVariables$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_PathConcatenation$allVariables$lambda$_4_0_apply)], -sci_Map$Map4$$anon$8, "Map$Map4$$anon$8", 22, sci_Map$Map4$Map4Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map4$$anon$8_nextResult)], -sci_Map$Map3$$anon$5, "Map$Map3$$anon$5", 22, sci_Map$Map3$Map3Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map3$$anon$5_nextResult)], -sci_MapKeyIterator, "MapKeyIterator", 22, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapKeyIterator_iterator), "$isEmpty", $rt_wrapFunction0(sci_MapKeyIterator_isEmpty), "$filterImpl0", $rt_wrapFunction2(sci_MapKeyIterator_filterImpl), "$collect2", $rt_wrapFunction1(sci_MapKeyIterator_collect), "$map5", $rt_wrapFunction1(sci_MapKeyIterator_map), "$flatMap2", $rt_wrapFunction1(sci_MapKeyIterator_flatMap), "$concat0", $rt_wrapFunction1(sci_MapKeyIterator_concat), "$drop1", -$rt_wrapFunction1(sci_MapKeyIterator_drop), "$sliceIterator", $rt_wrapFunction2(sci_MapKeyIterator_sliceIterator), "$toString", $rt_wrapFunction0(sci_MapKeyIterator_toString), "$foreach", $rt_wrapFunction1(sci_MapKeyIterator_foreach), "$exists", $rt_wrapFunction1(sci_MapKeyIterator_exists), "$find3", $rt_wrapFunction1(sci_MapKeyIterator_find), "$foldLeft", $rt_wrapFunction2(sci_MapKeyIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_MapKeyIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_MapKeyIterator_size), -"$copyToArray1", $rt_wrapFunction1(sci_MapKeyIterator_copyToArray), "$copyToArray0", $rt_wrapFunction2(sci_MapKeyIterator_copyToArray0), "$copyToArray", $rt_wrapFunction3(sci_MapKeyIterator_copyToArray1), "$to0", $rt_wrapFunction1(sci_MapKeyIterator_to), "$toList", $rt_wrapFunction0(sci_MapKeyIterator_toList), "$toSeq", $rt_wrapFunction0(sci_MapKeyIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_MapKeyIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_MapKeyIterator_knownSize), "$next", $rt_wrapFunction0(sci_MapKeyIterator_next)], -sci_Map$Map2$$anon$2, "Map$Map2$$anon$2", 22, sci_Map$Map2$Map2Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map2$$anon$2_nextResult)], -ju_LinkedHashMapIterator, 0, jl_Object, [], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_LinkedHashMapIterator_hasNext), "$remove2", $rt_wrapFunction0(ju_LinkedHashMapIterator_remove)], -ju_LinkedHashMapIterator$KeyIterator, 0, ju_LinkedHashMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_LinkedHashMapIterator$KeyIterator_next)], -ju_GenericEnumSet$1, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, 0, -onciu_ZippableUtil$Zippable$zipLeft$lambda$_0_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, -oavr_TokenSource, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavr_Lexer, 0, oavr_Recognizer, [oavr_TokenSource], 1, 3, 0, 0, ["$getInputStream", $rt_wrapFunction0(oavr_Lexer_getInputStream)], -oncipv_Cypher25Lexer, 0, oavr_Lexer, [], 0, 3, 0, oncipv_Cypher25Lexer_$callClinit, ["$getATN", $rt_wrapFunction0(oncipv_Cypher25Lexer_getATN)], -oncipl_CypherQueryAccess, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipvaf_Cypher25AstLexer, "Cypher25AstLexer", 48, oncipv_Cypher25Lexer, [oncipl_CypherQueryAccess], 4, 3, 0, 0, ["$notifyListeners", $rt_wrapFunction1(oncipvaf_Cypher25AstLexer_notifyListeners), "$inputQuery", $rt_wrapFunction0(oncipvaf_Cypher25AstLexer_inputQuery), "$offsetTable", $rt_wrapFunction0(oncipvaf_Cypher25AstLexer_offsetTable)], -oncip_CypherErrorStrategy$Conf, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipvaf_Cypher25ErrorStrategyConf, 0, jl_Object, [oncip_CypherErrorStrategy$Conf], 0, 3, 0, 0, ["$preferredRules", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_preferredRules), "$vocabulary0", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_vocabulary), "$ignoredTokens", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_ignoredTokens), "$customTokenDisplayNames", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_customTokenDisplayNames), "$ruleGroups", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_ruleGroups), -"$errorCharTokenType", $rt_wrapFunction0(oncipvaf_Cypher25ErrorStrategyConf_errorCharTokenType)], -oncipv_Cypher25Parser, 0, oavr_Parser, [], 0, 3, 0, oncipv_Cypher25Parser_$callClinit, ["$getVocabulary", $rt_wrapFunction0(oncipv_Cypher25Parser_getVocabulary), "$getRuleNames", $rt_wrapFunction0(oncipv_Cypher25Parser_getRuleNames), "$getATN", $rt_wrapFunction0(oncipv_Cypher25Parser_getATN)], -oncipvaf_CypherAstBuildingAntlrParser0, "CypherAstBuildingAntlrParser", 48, oncipv_Cypher25Parser, [oncipa_AstBuildingAntlrParser], 4, 3, 0, 0, ["$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode", $rt_wrapFunction2(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode), -"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners", -$rt_wrapFunction3(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners), "$createTerminalNode", $rt_wrapFunction2(oncipvaf_CypherAstBuildingAntlrParser_createTerminalNode), "$reset0", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_reset), "$addParseListener", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_addParseListener0), "$setErrorHandler", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_setErrorHandler0), -"$notifyErrorListeners", $rt_wrapFunction3(oncipvaf_CypherAstBuildingAntlrParser_notifyErrorListeners), "$syntaxChecker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_syntaxChecker), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq), -"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed0), -"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq), -"$createSyntaxChecker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_createSyntaxChecker0), "$createAstBuilder", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_createAstBuilder), "$isSafeToFreeChildren", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_isSafeToFreeChildren0)], -scm_CheckedIndexedSeqView, 0, jl_Object, [sc_IndexedSeqView], 3, 3, 0, 0, 0, -scm_CheckedIndexedSeqView$Reverse, 0, sc_IndexedSeqView$Reverse, [scm_CheckedIndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(scm_CheckedIndexedSeqView$Reverse_iterator)], -oncia_Union$UnionMapping, "Union$UnionMapping", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Union$UnionMapping_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Union$UnionMapping_productArity), "$productElement", $rt_wrapFunction1(oncia_Union$UnionMapping_productElement), "$productIterator", $rt_wrapFunction0(oncia_Union$UnionMapping_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Union$UnionMapping_hashCode), "$toString", $rt_wrapFunction0(oncia_Union$UnionMapping_toString), -"$equals", $rt_wrapFunction1(oncia_Union$UnionMapping_equals)], -jn_ReadOnlyBufferException, "ReadOnlyBufferException", 9, jl_UnsupportedOperationException, [], 0, 3, 0, 0, 0, -jn_BufferOverflowException, "BufferOverflowException", 9, jl_RuntimeException, [], 0, 3, 0, 0, 0, -jnc_BufferUnderflowException, "BufferUnderflowException", 10, jl_RuntimeException, [], 0, 3, 0, 0, 0, -jnc_BufferOverflowException, "BufferOverflowException", 10, jl_RuntimeException, [], 0, 3, 0, 0, 0, -jnc_MalformedInputException, "MalformedInputException", 10, jnc_CharacterCodingException, [], 0, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(jnc_MalformedInputException_getMessage)], -jnc_UnmappableCharacterException, "UnmappableCharacterException", 10, jnc_CharacterCodingException, [], 0, 3, 0, 0, ["$getMessage", $rt_wrapFunction0(jnc_UnmappableCharacterException_getMessage)], -jusi_LimitingIntStreamImpl, 0, jusi_SimpleIntStreamImpl, [], 0, 3, 0, 0, ["$next1", $rt_wrapFunction1(jusi_LimitingIntStreamImpl_next)], -jusi_SkippingIntStreamImpl, 0, jusi_SimpleIntStreamImpl, [], 0, 3, 0, 0, ["$next1", $rt_wrapFunction1(jusi_SkippingIntStreamImpl_next)], -scm_ArrayBuffer$$anon$1, "ArrayBuffer$$anon$1", 23, scm_GrowableBuilder, [], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_ArrayBuffer$$anon$1_sizeHint)], -oncifp_ResolvedCall$coerceArguments$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$coerceArguments$lambda$_22_0_apply)], -oncifp_ResolvedCall$coerceArguments$lambda$_22_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$coerceArguments$lambda$_22_1_apply)], -oncia_CreateRole$semanticCheck$lambda$_66_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateRole$semanticCheck$lambda$_66_0_apply)], -oncia_AliasDriverSettingsCheck$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_85_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterRemoteDatabaseAlias$semanticCheck$lambda$_85_0_apply)], -s_DummyImplicit$, 0, jl_Object, [], 4, 3, 0, s_DummyImplicit$_$callClinit, 0, -oncia_CreateUser$semanticCheck$lambda$_83_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateUser$semanticCheck$lambda$_83_0_apply)], -oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_0_apply)], -oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_RevokeRolesFromUsers$semanticCheck$lambda$_65_1_apply)]]); -$rt_metadata([oncia_GrantRolesToUsers$semanticCheck$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GrantRolesToUsers$semanticCheck$lambda$_65_0_apply)], -oncia_GrantRolesToUsers$semanticCheck$lambda$_65_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GrantRolesToUsers$semanticCheck$lambda$_65_1_apply)], -oncia_AlterUser$semanticCheck$lambda$_85_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterUser$semanticCheck$lambda$_85_0_apply)], -oncia_AlterUser$semanticCheck$lambda$_85_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterUser$semanticCheck$lambda$_85_1_apply)], -jusi_SimpleStreamImpl$forEachOrdered$lambda$_19_0, "SimpleStreamImpl$forEachOrdered$lambda$_19_0", 8, jl_Object, [juf_Predicate], 0, 3, 0, 0, 0, -oncia_CatalogName$qualifiedNameString$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CatalogName$qualifiedNameString$lambda$_11_0_apply)], -oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_0_apply)], -oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_15_1_apply)], -sci_MapValueIterator, "MapValueIterator", 22, sci_ChampBaseIterator, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_MapValueIterator_iterator), "$contains", $rt_wrapFunction1(sci_MapValueIterator_contains), "$isEmpty", $rt_wrapFunction0(sci_MapValueIterator_isEmpty), "$filterImpl0", $rt_wrapFunction2(sci_MapValueIterator_filterImpl), "$map5", $rt_wrapFunction1(sci_MapValueIterator_map), "$flatMap2", $rt_wrapFunction1(sci_MapValueIterator_flatMap), "$toString", $rt_wrapFunction0(sci_MapValueIterator_toString), -"$foreach", $rt_wrapFunction1(sci_MapValueIterator_foreach), "$exists", $rt_wrapFunction1(sci_MapValueIterator_exists), "$find3", $rt_wrapFunction1(sci_MapValueIterator_find), "$foldLeft", $rt_wrapFunction2(sci_MapValueIterator_foldLeft), "$nonEmpty", $rt_wrapFunction0(sci_MapValueIterator_nonEmpty), "$size", $rt_wrapFunction0(sci_MapValueIterator_size), "$copyToArray1", $rt_wrapFunction1(sci_MapValueIterator_copyToArray0), "$copyToArray0", $rt_wrapFunction2(sci_MapValueIterator_copyToArray), "$copyToArray", -$rt_wrapFunction3(sci_MapValueIterator_copyToArray1), "$toList", $rt_wrapFunction0(sci_MapValueIterator_toList), "$toSeq", $rt_wrapFunction0(sci_MapValueIterator_toSeq), "$toArray", $rt_wrapFunction1(sci_MapValueIterator_toArray), "$knownSize", $rt_wrapFunction0(sci_MapValueIterator_knownSize), "$next", $rt_wrapFunction0(sci_MapValueIterator_next)], -sci_Map$Map4$$anon$9, "Map$Map4$$anon$9", 22, sci_Map$Map4$Map4Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map4$$anon$9_nextResult)], -sci_Map$Map2$$anon$3, "Map$Map2$$anon$3", 22, sci_Map$Map2$Map2Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map2$$anon$3_nextResult)], -sci_Map$Map3$$anon$6, "Map$Map3$$anon$6", 22, sci_Map$Map3$Map3Iterator, [], 4, 3, 0, 0, ["$nextResult", $rt_wrapFunction2(sci_Map$Map3$$anon$6_nextResult)], -onciuci_ListSet$removedAll$lambda$_51_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciuci_ListSet$removedAll$lambda$_51_0_apply)], -jnci_BufferedEncoder, 0, jnc_CharsetEncoder, [], 1, 3, 0, 0, 0, -jnci_UTF8Encoder, 0, jnci_BufferedEncoder, [], 0, 3, 0, 0, 0, -jl_Iterable$1, 0, jl_Object, [ju_Spliterator], 0, 0, 0, 0, ["$tryAdvance", $rt_wrapFunction1(jl_Iterable$1_tryAdvance), "$estimateSize0", $rt_wrapFunction0(jl_Iterable$1_estimateSize)], -oncie_Expression$$anonfun$containsAggregate$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$containsAggregate$1_applyOrElse)], -oncipvaf_Cypher5ErrorStrategyConf, 0, jl_Object, [oncip_CypherErrorStrategy$Conf], 0, 3, 0, 0, ["$preferredRules", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_preferredRules), "$vocabulary0", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_vocabulary), "$ignoredTokens", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_ignoredTokens), "$customTokenDisplayNames", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_customTokenDisplayNames), "$ruleGroups", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_ruleGroups), -"$errorCharTokenType", $rt_wrapFunction0(oncipvaf_Cypher5ErrorStrategyConf_errorCharTokenType)], -sci_HashCollisionMapNode$removed$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashCollisionMapNode$removed$lambda$_13_0_apply)], -oncipv_Cypher5Lexer, 0, oavr_Lexer, [], 0, 3, 0, oncipv_Cypher5Lexer_$callClinit, ["$getATN", $rt_wrapFunction0(oncipv_Cypher5Lexer_getATN)], -oncipvaf_Cypher5AstLexer, "Cypher5AstLexer", 53, oncipv_Cypher5Lexer, [oncipl_CypherQueryAccess], 4, 3, 0, 0, ["$notifyListeners", $rt_wrapFunction1(oncipvaf_Cypher5AstLexer_notifyListeners), "$inputQuery", $rt_wrapFunction0(oncipvaf_Cypher5AstLexer_inputQuery), "$offsetTable", $rt_wrapFunction0(oncipvaf_Cypher5AstLexer_offsetTable)], -oncipv_Cypher5Parser, 0, oavr_Parser, [], 0, 3, 0, oncipv_Cypher5Parser_$callClinit, ["$getVocabulary", $rt_wrapFunction0(oncipv_Cypher5Parser_getVocabulary), "$getRuleNames", $rt_wrapFunction0(oncipv_Cypher5Parser_getRuleNames), "$getATN", $rt_wrapFunction0(oncipv_Cypher5Parser_getATN)], -oncipvaf_CypherAstBuildingAntlrParser, "CypherAstBuildingAntlrParser", 53, oncipv_Cypher5Parser, [oncipa_AstBuildingAntlrParser], 4, 3, 0, 0, ["$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$exitRule0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode", $rt_wrapFunction2(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$createTerminalNode0), -"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$reset0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$setErrorHandler0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners", -$rt_wrapFunction3(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$super$notifyErrorListeners0), "$createTerminalNode", $rt_wrapFunction2(oncipvaf_CypherAstBuildingAntlrParser_createTerminalNode0), "$reset0", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_reset0), "$addParseListener", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_addParseListener), "$setErrorHandler", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_setErrorHandler), -"$notifyErrorListeners", $rt_wrapFunction3(oncipvaf_CypherAstBuildingAntlrParser_notifyErrorListeners0), "$syntaxChecker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_syntaxChecker0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$astBuilder_$eq0), -"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$checker_$eq0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed), -"$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$hasFailed_$eq), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors0), "$org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_org$neo4j$cypher$internal$parser$ast$AstBuildingAntlrParser$$bailErrors_$eq0), -"$createSyntaxChecker", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_createSyntaxChecker), "$createAstBuilder", $rt_wrapFunction0(oncipvaf_CypherAstBuildingAntlrParser_createAstBuilder0), "$isSafeToFreeChildren", $rt_wrapFunction1(oncipvaf_CypherAstBuildingAntlrParser_isSafeToFreeChildren)], -ong_Condition$1, 0, jl_Object, [], 32, 0, 0, ong_Condition$1_$callClinit, 0, -oncipl_UnicodeEscapeReplacementReader, 0, ji_Reader, [], 0, 3, 0, 0, 0, -oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AliasDriverSettingsCheck$$findInvalidDriverSettings$lambda$_5_0_apply)], -oncia_AlterUser$checkRemoveAuth$lambda$_84_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterUser$checkRemoveAuth$lambda$_84_0_apply)], -onciu_NonEmptyList$IteratorConverter, 0, jl_Object, [], 0, 3, 0, 0, 0, -ong_DiagnosticRecord$_init_$lambda$_4_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(ong_DiagnosticRecord$_init_$lambda$_4_0_accept)], -ong_DiagnosticRecord$_init_$lambda$_4_1, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(ong_DiagnosticRecord$_init_$lambda$_4_1_accept)], -ong_DiagnosticRecord$_init_$lambda$_4_2, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(ong_DiagnosticRecord$_init_$lambda$_4_2_accept)], -oncia_ReturnItems$returnVariables$lambda$_66_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$returnVariables$lambda$_66_0_apply)], -sci_HashMap$HashKeySet$filter$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_HashMap$HashKeySet$filter$lambda$_4_0_apply)], -sci_HashMap$accum$1, 0, sr_AbstractFunction2, [s_Function1], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sci_HashMap$accum$1_apply0), "$apply2", $rt_wrapFunction1(sci_HashMap$accum$1_apply1)], -sci_MapNodeRemoveAllSetNodeIterator, 0, sci_ChampBaseIterator, [], 4, 3, 0, 0, 0, -sm_Ordering$LongOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, -sm_Ordering$Long$, 0, jl_Object, [sm_Ordering$LongOrdering], 0, 3, 0, 0, 0, -sm_Ordering$CharOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, -sm_Ordering$Char$, 0, jl_Object, [sm_Ordering$CharOrdering], 0, 3, 0, 0, 0, -su_Sorting$, 0, jl_Object, [], 4, 3, 0, 0, 0, -sm_Ordering$ShortOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, -sm_Ordering$Short$, 0, jl_Object, [sm_Ordering$ShortOrdering], 0, 3, 0, 0, 0, -sm_Ordering$ByteOrdering, 0, jl_Object, [sm_Ordering], 3, 3, 0, 0, 0, -sm_Ordering$Byte$, 0, jl_Object, [sm_Ordering$ByteOrdering], 0, 3, 0, 0, 0, -oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_0_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_1_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$$anonfun$getRewriter$1$lambda$_31_2_apply)], -oncia_ReadAdministrationCommand$yields$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$yields$lambda$_11_0_apply)], -oncia_ReadAdministrationCommand$returns$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$returns$lambda$_13_0_apply)], -oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0_apply)]]); -$rt_metadata([oncipl_UnicodeEscapeReplacementReader$Result, 0, jl_Record, [], 32772, 3, 0, 0, 0, -scc_JavaCollectionWrappers$JMapWrapperLike$$anon$5, "JavaCollectionWrappers$JMapWrapperLike$$anon$5", 24, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(scc_JavaCollectionWrappers$JMapWrapperLike$$anon$5_hasNext), "$next", $rt_wrapFunction0(scc_JavaCollectionWrappers$JMapWrapperLike$$anon$5_next)], -oncias_SemanticCheckInterpreter$, 0, jl_Object, [], 4, 3, 0, oncias_SemanticCheckInterpreter$_$callClinit, 0, -oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_0_apply)], -oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$$anonfun$startingWithImportingWith$1$lambda$_13_1_apply)], -oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$anonfun$callOutputTypes$1$lambda$_69_0_apply)], -oncias_Scope$dumpTree$lambda$_24_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$dumpTree$lambda$_24_0_apply)], -oncias_Scope$dumpTree$lambda$_24_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$dumpTree$lambda$_24_1_apply)], -oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_WaitableAdministrationCommand$returnColumns$lambda$_2_0_apply)], -oncia_AdministrationCommand$semanticCheck$lambda$_13_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_AdministrationCommand$semanticCheck$lambda$_13_0_apply)], -s_DummyImplicit, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_ReturnItems$ReturnVariables$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, -sc_IterableOps$sliding$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOps$sliding$lambda$_64_0_apply)], -onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$3$lambda$_542_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciafn_Neo4jASTFactory$$anonfun$getYieldAllAndYieldItems$3$lambda$_542_0_apply)], -oncia_CommandResultItem, "CommandResultItem", 36, jl_Object, [onciu_ASTNode, oncias_SemanticAnalysisTooling, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_CommandResultItem_position), "$productPrefix", $rt_wrapFunction0(oncia_CommandResultItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CommandResultItem_productArity), "$productElement", $rt_wrapFunction1(oncia_CommandResultItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_CommandResultItem_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_CommandResultItem_hashCode), "$toString", $rt_wrapFunction0(oncia_CommandResultItem_toString), "$equals", $rt_wrapFunction1(oncia_CommandResultItem_equals), "$dup", $rt_wrapFunction1(oncia_CommandResultItem_dup)], -oncifp_BaseState$semanticTable$lambda$_18_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_BaseState$semanticTable$lambda$_18_0_apply)], -sc_MapOps$concat$lambda$_45_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_MapOps$concat$lambda$_45_0_apply)], -sci_MapOps$removedAll$lambda$_7_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sci_MapOps$removedAll$lambda$_7_0_apply)], -sm_Ordering$$anon$1, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$compare2", $rt_wrapFunction2(sm_Ordering$$anon$1_compare)], -sc_View$ZipAll, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$ZipAll_iterator), "$knownSize", $rt_wrapFunction0(sc_View$ZipAll_knownSize)], -oavr_CodePointBuffer, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavr_CharStream, 0, jl_Object, [oavr_IntStream], 3, 3, 0, 0, 0, -oavr_CodePointCharStream, 0, jl_Object, [oavr_CharStream], 1, 3, 0, 0, ["$index0", $rt_wrapFunction0(oavr_CodePointCharStream_index), "$toString", $rt_wrapFunction0(oavr_CodePointCharStream_toString)], -oncipl_CypherToken$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncipv_Cypher25Parser$StatementsContext, "Cypher25Parser$StatementsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StatementsContext_getRuleIndex)], -oavr_RecognitionException, 0, jl_RuntimeException, [], 0, 3, 0, 0, 0, -oncias_SemanticCheckResult$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncias_SemanticCheckResult$_$callClinit, 0, -oncias_SemanticCheckInterpreter$ExecutableCheck$, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncia_SingleQuery$$anonfun$extractGraphSelection$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$extractGraphSelection$1_applyOrElse)], -oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$implicitArguments$1$lambda$_17_0_apply)], -oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$semanticCheckFold$lambda$_1_0_apply)], -oncia_UserAuth$checkDuplicateAuth$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UserAuth$checkDuplicateAuth$lambda$_12_0_apply)], -oncia_UserAuth$$anonfun$checkDuplicateAuth$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_UserAuth$$anonfun$checkDuplicateAuth$2_applyOrElse)], -oncia_UserAuth$checkDuplicateAuth$lambda$_12_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UserAuth$checkDuplicateAuth$lambda$_12_1_apply)], -oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UserAuth$checkOldAndNewStyleCombination$lambda$_14_0_apply)], -oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_0_apply)], -oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_WriteAdministrationCommand$topologyCheck$lambda$_5_1_apply)], -oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$startingWithGraphSelection$lambda$_3_0_apply)], -oncipv_Cypher5Parser$StatementsContext, "Cypher5Parser$StatementsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StatementsContext_getRuleIndex)], -oavr_CodePointBuffer$Builder, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavr_CodePointCharStream$1, 0, jl_Object, [], 32, 0, 0, oavr_CodePointCharStream$1_$callClinit, 0, -oavr_CodePointCharStream$CodePoint8BitCharStream, "CodePointCharStream$CodePoint8BitCharStream", 83, oavr_CodePointCharStream, [], 4, 0, 0, 0, ["$getText0", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint8BitCharStream_getText), "$LA", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint8BitCharStream_LA)], -oavr_CodePointCharStream$CodePoint16BitCharStream, "CodePointCharStream$CodePoint16BitCharStream", 83, oavr_CodePointCharStream, [], 4, 0, 0, 0, ["$getText0", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint16BitCharStream_getText), "$LA", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint16BitCharStream_LA)], -oavr_CodePointCharStream$CodePoint32BitCharStream, "CodePointCharStream$CodePoint32BitCharStream", 83, oavr_CodePointCharStream, [], 4, 0, 0, 0, ["$getText0", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint32BitCharStream_getText), "$LA", $rt_wrapFunction1(oavr_CodePointCharStream$CodePoint32BitCharStream_LA)], -oavra_LexerATNSimulator, 0, oavra_ATNSimulator, [], 0, 3, 0, 0, ["$reset0", $rt_wrapFunction0(oavra_LexerATNSimulator_reset)], -oavr_TokenFactory, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipl_CypherTokenFactory$, 0, jl_Object, [oavr_TokenFactory], 4, 3, 0, 0, ["$create1", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return oncipl_CypherTokenFactory$_create(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], -oncipl_FullCypherTokenFactory$, 0, jl_Object, [oavr_TokenFactory], 4, 3, 0, 0, ["$create1", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return oncipl_FullCypherTokenFactory$_create(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], -oavrm_IntegerList, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavrm_IntegerStack, 0, oavrm_IntegerList, [], 0, 3, 0, 0, 0]); -$rt_metadata([oavr_RuntimeMetaData, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavra_PredictionContextCache, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavr_VocabularyImpl, 0, jl_Object, [oavr_Vocabulary], 0, 3, 0, oavr_VocabularyImpl_$callClinit, 0, -oavrm_Utils, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavra_ATNDeserializer, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavrd_DFA, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$StatementContext, "Cypher25Parser$StatementContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StatementContext_getRuleIndex)], -oncias_SemanticCheckInterpreter$ExecutableCheck, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper, "SemanticCheckInterpreter$ExecutableCheck$Wrapper", 41, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productElement), -"$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$Wrapper_equals)], -oncias_SemanticCheck$Map, "SemanticCheck$Map", 41, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$chain", $rt_wrapFunction1(oncias_SemanticCheck$Map_chain), "$ifOkChain", $rt_wrapFunction1(oncias_SemanticCheck$Map_ifOkChain), "$map11", $rt_wrapFunction1(oncias_SemanticCheck$Map_map), "$flatMap3", $rt_wrapFunction1(oncias_SemanticCheck$Map_flatMap), "$productPrefix", $rt_wrapFunction0(oncias_SemanticCheck$Map_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheck$Map_productArity), -"$productElement", $rt_wrapFunction1(oncias_SemanticCheck$Map_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheck$Map_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheck$Map_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheck$Map_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheck$Map_equals)], -oncias_SemanticCheckInterpreter$ExecutableCheck$Map, "SemanticCheckInterpreter$ExecutableCheck$Map", 41, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productElement), -"$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$Map_equals)], -oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap, "SemanticCheckInterpreter$ExecutableCheck$FlatMap", 41, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productElement), -"$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$FlatMap_equals)], -oncias_SemanticCheck$CheckFromContext, "SemanticCheck$CheckFromContext", 41, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$chain", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_chain), "$ifOkChain", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_ifOkChain), "$map11", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_map), "$flatMap3", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_flatMap), "$productPrefix", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_productPrefix), -"$productArity", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheck$CheckFromContext_toString), "$equals", $rt_wrapFunction1(oncias_SemanticCheck$CheckFromContext_equals)], -oncias_SemanticCheck$Annotated, 0, jl_Object, [oncias_SemanticCheck, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$, "SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$", 41, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_productIterator), -"$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PopAnnotation$_toString)], -oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$, "SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$", 41, jl_Object, [oncias_SemanticCheckInterpreter$ExecutableCheck, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productArity), "$productElement", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_productIterator), -"$hashCode", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticCheckInterpreter$ExecutableCheck$PrintAnnotations$_toString)], -oncifp_ResolvedCall$$signatureResults$lambda$_10_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$signatureResults$lambda$_10_0_apply)], -oncifp_ResolvedCall$$signatureResults$lambda$_10_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$signatureResults$lambda$_10_1_apply)], -oncipv_Cypher5Parser$StatementContext, "Cypher5Parser$StatementContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StatementContext_getRuleIndex)], -oavr_CommonTokenFactory, 0, jl_Object, [oavr_TokenFactory], 0, 3, 0, 0, ["$create1", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return oavr_CommonTokenFactory_create(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], -oavrm_Pair, "Pair", 87, jl_Object, [ji_Serializable], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oavrm_Pair_equals), "$hashCode", $rt_wrapFunction0(oavrm_Pair_hashCode), "$toString", $rt_wrapFunction0(oavrm_Pair_toString)], -oavra_LexerATNSimulator$SimState, 0, jl_Object, [], 0, 3, 0, 0, 0, -juc_CopyOnWriteArrayList, 0, jl_Object, [ju_List, ju_RandomAccess, jl_Cloneable, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oavr_Recognizer$1, 0, juc_CopyOnWriteArrayList, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oavra_ATNDeserializationOptions, 0, jl_Object, [], 0, 3, 0, oavra_ATNDeserializationOptions_$callClinit, 0, -oavra_ATN, "ATN", 85, jl_Object, [], 0, 3, 0, 0, 0, -oavra_ATNState, 0, jl_Object, [], 1, 3, 0, oavra_ATNState_$callClinit, ["$hashCode", $rt_wrapFunction0(oavra_ATNState_hashCode), "$equals", $rt_wrapFunction1(oavra_ATNState_equals), "$toString", $rt_wrapFunction0(oavra_ATNState_toString)], -oavra_DecisionState, 0, oavra_ATNState, [], 1, 3, 0, 0, 0, -oavra_StarLoopEntryState, "StarLoopEntryState", 85, oavra_DecisionState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_StarLoopEntryState_getStateType)], -oavrd_DFAState, "DFAState", 86, jl_Object, [], 0, 3, [0,0,0], 0, ["$hashCode", $rt_wrapFunction0(oavrd_DFAState_hashCode), "$equals", $rt_wrapFunction1(oavrd_DFAState_equals), "$toString", $rt_wrapFunction0(oavrd_DFAState_toString)], -oavra_ATNConfigSet, "ATNConfigSet", 85, jl_Object, [ju_Set], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$equals", $rt_wrapFunction1(oavra_ATNConfigSet_equals), "$hashCode", $rt_wrapFunction0(oavra_ATNConfigSet_hashCode), "$size", $rt_wrapFunction0(oavra_ATNConfigSet_size), "$iterator", $rt_wrapFunction0(oavra_ATNConfigSet_iterator), "$toString", $rt_wrapFunction0(oavra_ATNConfigSet_toString)], -oncipv_Cypher25Parser$CommandContext, "Cypher25Parser$CommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandContext_getRuleIndex)], -oavr_NoViableAltException, "NoViableAltException", 83, oavr_RecognitionException, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$RegularQueryContext, "Cypher25Parser$RegularQueryContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RegularQueryContext_getRuleIndex)], -oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheckInterpreter$$printAnnotations$lambda$_4_0_apply)], -oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext, "Cypher5Parser$PeriodicCommitQueryHintFailureContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PeriodicCommitQueryHintFailureContext_getRuleIndex)], -oncipv_Cypher5Parser$CommandContext, "Cypher5Parser$CommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandContext_getRuleIndex)], -oncipv_Cypher5Parser$RegularQueryContext, "Cypher5Parser$RegularQueryContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RegularQueryContext_getRuleIndex)], -oavr_CodePointBuffer$Type, "CodePointBuffer$Type", 83, jl_Enum, [], 12, 3, [oavr_CodePointBuffer,0,"Type"], 0, 0, -oavr_ConsoleErrorListener, "ConsoleErrorListener", 83, oavr_BaseErrorListener, [], 0, 3, 0, 0, ["$syntaxError", function(var_1, var_2, var_3, var_4, var_5, var_6) { oavr_ConsoleErrorListener_syntaxError(this, var_1, var_2, var_3, var_4, var_5, var_6); }], -oncipv_Cypher25Parser$UseClauseContext, "Cypher25Parser$UseClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UseClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterCommandContext, "Cypher25Parser$AlterCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateCommandContext, "Cypher25Parser$CreateCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$AllocationCommandContext, "Cypher25Parser$AllocationCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AllocationCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$DenyCommandContext, "Cypher25Parser$DenyCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DenyCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$DropCommandContext, "Cypher25Parser$DropCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$EnableServerCommandContext, "Cypher25Parser$EnableServerCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$EnableServerCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$GrantCommandContext, "Cypher25Parser$GrantCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GrantCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$RenameCommandContext, "Cypher25Parser$RenameCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RenameCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$RevokeCommandContext, "Cypher25Parser$RevokeCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RevokeCommandContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher25Parser$ShowCommandContext, "Cypher25Parser$ShowCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$StartDatabaseContext, "Cypher25Parser$StartDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StartDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$StopDatabaseContext, "Cypher25Parser$StopDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StopDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$TerminateCommandContext, "Cypher25Parser$TerminateCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TerminateCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$SingleQueryContext, "Cypher25Parser$SingleQueryContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SingleQueryContext_getRuleIndex)], -oncipv_Cypher5Parser$UseClauseContext, "Cypher5Parser$UseClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UseClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterCommandContext, "Cypher5Parser$AlterCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateCommandContext, "Cypher5Parser$CreateCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$AllocationCommandContext, "Cypher5Parser$AllocationCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AllocationCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$DenyCommandContext, "Cypher5Parser$DenyCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DenyCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$DropCommandContext, "Cypher5Parser$DropCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$EnableServerCommandContext, "Cypher5Parser$EnableServerCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$EnableServerCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$GrantCommandContext, "Cypher5Parser$GrantCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GrantCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$RenameCommandContext, "Cypher5Parser$RenameCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RenameCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$RevokeCommandContext, "Cypher5Parser$RevokeCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RevokeCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowCommandContext, "Cypher5Parser$ShowCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$StartDatabaseContext, "Cypher5Parser$StartDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StartDatabaseContext_getRuleIndex)], -oncipv_Cypher5Parser$StopDatabaseContext, "Cypher5Parser$StopDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StopDatabaseContext_getRuleIndex)], -oncipv_Cypher5Parser$TerminateCommandContext, "Cypher5Parser$TerminateCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TerminateCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$SingleQueryContext, "Cypher5Parser$SingleQueryContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SingleQueryContext_getRuleIndex)], -jl_OutOfMemoryError, "OutOfMemoryError", 14, jl_VirtualMachineError, [], 0, 3, 0, 0, 0, -oavrm_Array2DHashSet, 0, jl_Object, [ju_Set], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oavra_ATNConfigSet$AbstractConfigHashSet, 0, oavrm_Array2DHashSet, [], 1, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oavra_ATNConfigSet$ConfigHashSet, 0, oavra_ATNConfigSet$AbstractConfigHashSet, [], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oncipv_Cypher25Parser$GraphReferenceContext, "Cypher25Parser$GraphReferenceContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GraphReferenceContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterAliasContext, "Cypher25Parser$AlterAliasContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterCurrentUserContext, "Cypher25Parser$AlterCurrentUserContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterCurrentUserContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterDatabaseContext, "Cypher25Parser$AlterDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterServerContext, "Cypher25Parser$AlterServerContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterServerContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterUserContext, "Cypher25Parser$AlterUserContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterUserContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateAliasContext, "Cypher25Parser$CreateAliasContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateAliasContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateCompositeDatabaseContext, "Cypher25Parser$CreateCompositeDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateCompositeDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateConstraintContext, "Cypher25Parser$CreateConstraintContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateConstraintContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateDatabaseContext, "Cypher25Parser$CreateDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateIndexContext, "Cypher25Parser$CreateIndexContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateIndexContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateRoleContext, "Cypher25Parser$CreateRoleContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateRoleContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateUserContext, "Cypher25Parser$CreateUserContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateUserContext_getRuleIndex)], -oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext, "Cypher25Parser$DeallocateDatabaseFromServersContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DeallocateDatabaseFromServersContext_getRuleIndex)], -oncipv_Cypher25Parser$ReallocateDatabasesContext, "Cypher25Parser$ReallocateDatabasesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReallocateDatabasesContext_getRuleIndex)], -oncipv_Cypher25Parser$PrivilegeContext, "Cypher25Parser$PrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$RoleNamesContext, "Cypher25Parser$RoleNamesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RoleNamesContext_getRuleIndex)], -oncipv_Cypher25Parser$DropAliasContext, "Cypher25Parser$DropAliasContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropAliasContext_getRuleIndex)], -oncipv_Cypher25Parser$DropDatabaseContext, "Cypher25Parser$DropDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$DropConstraintContext, "Cypher25Parser$DropConstraintContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropConstraintContext_getRuleIndex)], -oncipv_Cypher25Parser$DropIndexContext, "Cypher25Parser$DropIndexContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropIndexContext_getRuleIndex)], -oncipv_Cypher25Parser$DropRoleContext, "Cypher25Parser$DropRoleContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropRoleContext_getRuleIndex)], -oncipv_Cypher25Parser$DropServerContext, "Cypher25Parser$DropServerContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropServerContext_getRuleIndex)], -oncipv_Cypher25Parser$DropUserContext, "Cypher25Parser$DropUserContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropUserContext_getRuleIndex)], -oncipv_Cypher25Parser$CommandOptionsContext, "Cypher25Parser$CommandOptionsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandOptionsContext_getRuleIndex)], -oncipv_Cypher25Parser$StringOrParameterContext, "Cypher25Parser$StringOrParameterContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringOrParameterContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher25Parser$RoleTokenContext, "Cypher25Parser$RoleTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RoleTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$GrantRoleContext, "Cypher25Parser$GrantRoleContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GrantRoleContext_getRuleIndex)], -oncipv_Cypher25Parser$RenameRoleContext, "Cypher25Parser$RenameRoleContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RenameRoleContext_getRuleIndex)], -oncipv_Cypher25Parser$RenameServerContext, "Cypher25Parser$RenameServerContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RenameServerContext_getRuleIndex)], -oncipv_Cypher25Parser$RenameUserContext, "Cypher25Parser$RenameUserContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RenameUserContext_getRuleIndex)], -oncipv_Cypher25Parser$RevokeRoleContext, "Cypher25Parser$RevokeRoleContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RevokeRoleContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowAliasesContext, "Cypher25Parser$ShowAliasesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowAliasesContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowConstraintCommandContext, "Cypher25Parser$ShowConstraintCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowConstraintCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowConstraintAllContext, "Cypher25Parser$ShowConstraintAllContext", 46, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ShowConstraintExistContext, "Cypher25Parser$ShowConstraintExistContext", 46, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ShowConstraintKeyContext, "Cypher25Parser$ShowConstraintKeyContext", 46, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ShowConstraintPropTypeContext, "Cypher25Parser$ShowConstraintPropTypeContext", 46, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ShowConstraintUniqueContext, "Cypher25Parser$ShowConstraintUniqueContext", 46, oncipv_Cypher25Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ShowCurrentUserContext, "Cypher25Parser$ShowCurrentUserContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowCurrentUserContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowDatabaseContext, "Cypher25Parser$ShowDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowFunctionsContext, "Cypher25Parser$ShowFunctionsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowFunctionsContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowIndexCommandContext, "Cypher25Parser$ShowIndexCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowIndexCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowPrivilegesContext, "Cypher25Parser$ShowPrivilegesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowPrivilegesContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowProceduresContext, "Cypher25Parser$ShowProceduresContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowProceduresContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowRolePrivilegesContext, "Cypher25Parser$ShowRolePrivilegesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowRolePrivilegesContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowRolesContext, "Cypher25Parser$ShowRolesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowRolesContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowServersContext, "Cypher25Parser$ShowServersContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowServersContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowSettingsContext, "Cypher25Parser$ShowSettingsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowSettingsContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowSupportedPrivilegesContext, "Cypher25Parser$ShowSupportedPrivilegesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowSupportedPrivilegesContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowTransactionsContext, "Cypher25Parser$ShowTransactionsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowTransactionsContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowUserPrivilegesContext, "Cypher25Parser$ShowUserPrivilegesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowUserPrivilegesContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowUsersContext, "Cypher25Parser$ShowUsersContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowUsersContext_getRuleIndex)], -oncipv_Cypher25Parser$WaitClauseContext, "Cypher25Parser$WaitClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$WaitClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext, "Cypher25Parser$SymbolicAliasNameOrParameterContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicAliasNameOrParameterContext_getRuleIndex)], -oncipv_Cypher25Parser$TerminateTransactionsContext, "Cypher25Parser$TerminateTransactionsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TerminateTransactionsContext_getRuleIndex)], -oncipv_Cypher25Parser$ClauseContext, "Cypher25Parser$ClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$GraphReferenceContext, "Cypher5Parser$GraphReferenceContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GraphReferenceContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterAliasContext, "Cypher5Parser$AlterAliasContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterCurrentUserContext, "Cypher5Parser$AlterCurrentUserContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterCurrentUserContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterDatabaseContext, "Cypher5Parser$AlterDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterDatabaseContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterServerContext, "Cypher5Parser$AlterServerContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterServerContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterUserContext, "Cypher5Parser$AlterUserContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterUserContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateAliasContext, "Cypher5Parser$CreateAliasContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateAliasContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateIndexContext, "Cypher5Parser$CreateIndexContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateIndexContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateCompositeDatabaseContext, "Cypher5Parser$CreateCompositeDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateCompositeDatabaseContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateConstraintContext, "Cypher5Parser$CreateConstraintContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateConstraintContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateDatabaseContext, "Cypher5Parser$CreateDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateDatabaseContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateRoleContext, "Cypher5Parser$CreateRoleContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateRoleContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateUserContext, "Cypher5Parser$CreateUserContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateUserContext_getRuleIndex)], -oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext, "Cypher5Parser$DeallocateDatabaseFromServersContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DeallocateDatabaseFromServersContext_getRuleIndex)], -oncipv_Cypher5Parser$ReallocateDatabasesContext, "Cypher5Parser$ReallocateDatabasesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReallocateDatabasesContext_getRuleIndex)], -oncipv_Cypher5Parser$PrivilegeContext, "Cypher5Parser$PrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$RoleNamesContext, "Cypher5Parser$RoleNamesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RoleNamesContext_getRuleIndex)], -oncipv_Cypher5Parser$DropAliasContext, "Cypher5Parser$DropAliasContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropAliasContext_getRuleIndex)], -oncipv_Cypher5Parser$DropDatabaseContext, "Cypher5Parser$DropDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropDatabaseContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher5Parser$DropConstraintContext, "Cypher5Parser$DropConstraintContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropConstraintContext_getRuleIndex)], -oncipv_Cypher5Parser$DropIndexContext, "Cypher5Parser$DropIndexContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropIndexContext_getRuleIndex)], -oncipv_Cypher5Parser$DropRoleContext, "Cypher5Parser$DropRoleContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropRoleContext_getRuleIndex)], -oncipv_Cypher5Parser$DropServerContext, "Cypher5Parser$DropServerContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropServerContext_getRuleIndex)], -oncipv_Cypher5Parser$DropUserContext, "Cypher5Parser$DropUserContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropUserContext_getRuleIndex)], -oncipv_Cypher5Parser$CommandOptionsContext, "Cypher5Parser$CommandOptionsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandOptionsContext_getRuleIndex)], -oncipv_Cypher5Parser$StringOrParameterContext, "Cypher5Parser$StringOrParameterContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringOrParameterContext_getRuleIndex)], -oncipv_Cypher5Parser$RoleTokenContext, "Cypher5Parser$RoleTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RoleTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$GrantRoleContext, "Cypher5Parser$GrantRoleContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GrantRoleContext_getRuleIndex)], -oncipv_Cypher5Parser$RenameRoleContext, "Cypher5Parser$RenameRoleContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RenameRoleContext_getRuleIndex)], -oncipv_Cypher5Parser$RenameServerContext, "Cypher5Parser$RenameServerContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RenameServerContext_getRuleIndex)], -oncipv_Cypher5Parser$RenameUserContext, "Cypher5Parser$RenameUserContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RenameUserContext_getRuleIndex)], -oncipv_Cypher5Parser$RevokeRoleContext, "Cypher5Parser$RevokeRoleContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RevokeRoleContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowAliasesContext, "Cypher5Parser$ShowAliasesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowAliasesContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowConstraintCommandContext, "Cypher5Parser$ShowConstraintCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowConstraintCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowConstraintMultiContext, "Cypher5Parser$ShowConstraintMultiContext", 51, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ShowConstraintUniqueContext, "Cypher5Parser$ShowConstraintUniqueContext", 51, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ShowConstraintKeyContext, "Cypher5Parser$ShowConstraintKeyContext", 51, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ShowConstraintRelExistContext, "Cypher5Parser$ShowConstraintRelExistContext", 51, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ShowConstraintOldExistsContext, "Cypher5Parser$ShowConstraintOldExistsContext", 51, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ShowConstraintBriefAndYieldContext, "Cypher5Parser$ShowConstraintBriefAndYieldContext", 51, oncipv_Cypher5Parser$ShowConstraintCommandContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ShowCurrentUserContext, "Cypher5Parser$ShowCurrentUserContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowCurrentUserContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowDatabaseContext, "Cypher5Parser$ShowDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowDatabaseContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowFunctionsContext, "Cypher5Parser$ShowFunctionsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowFunctionsContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowIndexCommandContext, "Cypher5Parser$ShowIndexCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowIndexCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowPrivilegesContext, "Cypher5Parser$ShowPrivilegesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowPrivilegesContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowProceduresContext, "Cypher5Parser$ShowProceduresContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowProceduresContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowRolePrivilegesContext, "Cypher5Parser$ShowRolePrivilegesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowRolePrivilegesContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowRolesContext, "Cypher5Parser$ShowRolesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowRolesContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowServersContext, "Cypher5Parser$ShowServersContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowServersContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowSettingsContext, "Cypher5Parser$ShowSettingsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowSettingsContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowSupportedPrivilegesContext, "Cypher5Parser$ShowSupportedPrivilegesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowSupportedPrivilegesContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowTransactionsContext, "Cypher5Parser$ShowTransactionsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowTransactionsContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowUserPrivilegesContext, "Cypher5Parser$ShowUserPrivilegesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowUserPrivilegesContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowUsersContext, "Cypher5Parser$ShowUsersContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowUsersContext_getRuleIndex)], -oncipv_Cypher5Parser$WaitClauseContext, "Cypher5Parser$WaitClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$WaitClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext, "Cypher5Parser$SymbolicAliasNameOrParameterContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicAliasNameOrParameterContext_getRuleIndex)], -oncipv_Cypher5Parser$TerminateTransactionsContext, "Cypher5Parser$TerminateTransactionsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TerminateTransactionsContext_getRuleIndex)], -oncipv_Cypher5Parser$ClauseContext, "Cypher5Parser$ClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ClauseContext_getRuleIndex)], -oavrm_EqualityComparator, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavrm_AbstractEqualityComparator, 0, jl_Object, [oavrm_EqualityComparator], 1, 3, 0, 0, 0, -oavra_ATNConfigSet$ConfigEqualityComparator, 0, oavrm_AbstractEqualityComparator, [], 4, 3, 0, 0, ["$equals0", $rt_wrapFunction2(oavra_ATNConfigSet$ConfigEqualityComparator_equals), "$hashCode2", $rt_wrapFunction1(oavra_ATNConfigSet$ConfigEqualityComparator_hashCode)], -oncipv_Cypher25Parser$FunctionInvocationContext, "Cypher25Parser$FunctionInvocationContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FunctionInvocationContext_getRuleIndex)], -oncipv_Cypher25Parser$SymbolicAliasNameContext, "Cypher25Parser$SymbolicAliasNameContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicAliasNameContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterAliasDriverContext, "Cypher25Parser$AlterAliasDriverContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasDriverContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterAliasPasswordContext, "Cypher25Parser$AlterAliasPasswordContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasPasswordContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterAliasPropertiesContext, "Cypher25Parser$AlterAliasPropertiesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasPropertiesContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterAliasTargetContext, "Cypher25Parser$AlterAliasTargetContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasTargetContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterAliasUserContext, "Cypher25Parser$AlterAliasUserContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterAliasUserContext_getRuleIndex)], -oncipv_Cypher25Parser$AliasNameContext, "Cypher25Parser$AliasNameContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AliasNameContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher25Parser$PasswordExpressionContext, "Cypher25Parser$PasswordExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterDatabaseAccessContext, "Cypher25Parser$AlterDatabaseAccessContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterDatabaseAccessContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterDatabaseOptionContext, "Cypher25Parser$AlterDatabaseOptionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterDatabaseOptionContext_getRuleIndex)], -oncipv_Cypher25Parser$AlterDatabaseTopologyContext, "Cypher25Parser$AlterDatabaseTopologyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AlterDatabaseTopologyContext_getRuleIndex)], -oncipv_Cypher25Parser$SymbolicNameStringContext, "Cypher25Parser$SymbolicNameStringContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicNameStringContext_getRuleIndex)], -oncipv_Cypher25Parser$RemoveNamedProviderContext, "Cypher25Parser$RemoveNamedProviderContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RemoveNamedProviderContext_getRuleIndex)], -oncipv_Cypher25Parser$PasswordContext, "Cypher25Parser$PasswordContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordContext_getRuleIndex)], -oncipv_Cypher25Parser$PasswordChangeRequiredContext, "Cypher25Parser$PasswordChangeRequiredContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordChangeRequiredContext_getRuleIndex)], -oncipv_Cypher25Parser$UserStatusContext, "Cypher25Parser$UserStatusContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UserStatusContext_getRuleIndex)], -oncipv_Cypher25Parser$HomeDatabaseContext, "Cypher25Parser$HomeDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$HomeDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$SetAuthClauseContext, "Cypher25Parser$SetAuthClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SetAuthClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$CommandNameExpressionContext, "Cypher25Parser$CommandNameExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandNameExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$DatabaseNameContext, "Cypher25Parser$DatabaseNameContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DatabaseNameContext_getRuleIndex)], -oncipv_Cypher25Parser$MapOrParameterContext, "Cypher25Parser$MapOrParameterContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MapOrParameterContext_getRuleIndex)], -oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext, "Cypher25Parser$SymbolicNameOrStringParameterContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicNameOrStringParameterContext_getRuleIndex)], -oncipv_Cypher25Parser$CommandNodePatternContext, "Cypher25Parser$CommandNodePatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandNodePatternContext_getRuleIndex)], -oncipv_Cypher25Parser$CommandRelPatternContext, "Cypher25Parser$CommandRelPatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CommandRelPatternContext_getRuleIndex)], -oncipv_Cypher25Parser$ConstraintTypeContext, "Cypher25Parser$ConstraintTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ConstraintTypeContext_getRuleIndex)], -oncipv_Cypher25Parser$ConstraintTypedContext, "Cypher25Parser$ConstraintTypedContext", 46, oncipv_Cypher25Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ConstraintIsUniqueContext, "Cypher25Parser$ConstraintIsUniqueContext", 46, oncipv_Cypher25Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ConstraintKeyContext, "Cypher25Parser$ConstraintKeyContext", 46, oncipv_Cypher25Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ConstraintIsNotNullContext, "Cypher25Parser$ConstraintIsNotNullContext", 46, oncipv_Cypher25Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$PrimaryTopologyContext, "Cypher25Parser$PrimaryTopologyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrimaryTopologyContext_getRuleIndex)], -oncipv_Cypher25Parser$SecondaryTopologyContext, "Cypher25Parser$SecondaryTopologyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SecondaryTopologyContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateFulltextIndexContext, "Cypher25Parser$CreateFulltextIndexContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateFulltextIndexContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateIndex_Context, "Cypher25Parser$CreateIndex_Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateIndex_Context_getRuleIndex)], -oncipv_Cypher25Parser$CreateLookupIndexContext, "Cypher25Parser$CreateLookupIndexContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateLookupIndexContext_getRuleIndex)], -oncipv_Cypher25Parser$DatabasePrivilegeContext, "Cypher25Parser$DatabasePrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DatabasePrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$DbmsPrivilegeContext, "Cypher25Parser$DbmsPrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DbmsPrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$AllPrivilegeContext, "Cypher25Parser$AllPrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AllPrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$CreatePrivilegeContext, "Cypher25Parser$CreatePrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreatePrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext, "Cypher25Parser$QualifiedGraphPrivilegesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$QualifiedGraphPrivilegesContext_getRuleIndex)], -oncipv_Cypher25Parser$DropPrivilegeContext, "Cypher25Parser$DropPrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DropPrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$LoadPrivilegeContext, "Cypher25Parser$LoadPrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LoadPrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext, "Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$QualifiedGraphPrivilegesWithPropertyContext_getRuleIndex)], -oncipv_Cypher25Parser$RemovePrivilegeContext, "Cypher25Parser$RemovePrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RemovePrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$SetPrivilegeContext, "Cypher25Parser$SetPrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SetPrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowPrivilegeContext, "Cypher25Parser$ShowPrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowPrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$WritePrivilegeContext, "Cypher25Parser$WritePrivilegeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$WritePrivilegeContext_getRuleIndex)], -oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext, "Cypher25Parser$SymbolicNameOrStringParameterListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicNameOrStringParameterListContext_getRuleIndex)], -oncipv_Cypher25Parser$AliasActionContext, "Cypher25Parser$AliasActionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AliasActionContext_getRuleIndex)], -oncipv_Cypher25Parser$StringLiteralContext, "Cypher25Parser$StringLiteralContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringLiteralContext_getRuleIndex)], -oncipv_Cypher25Parser$ParameterContext, "Cypher25Parser$ParameterContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ParameterContext_getRuleIndex)], -oncipv_Cypher25Parser$UserNamesContext, "Cypher25Parser$UserNamesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UserNamesContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowCommandYieldContext, "Cypher25Parser$ShowCommandYieldContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowCommandYieldContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowConstraintEntityContext, "Cypher25Parser$ShowConstraintEntityContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowConstraintEntityContext_getRuleIndex)], -oncipv_Cypher25Parser$NodeEntityContext, "Cypher25Parser$NodeEntityContext", 46, oncipv_Cypher25Parser$ShowConstraintEntityContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$RelEntityContext, "Cypher25Parser$RelEntityContext", 46, oncipv_Cypher25Parser$ShowConstraintEntityContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ShowConstraintsEndContext, "Cypher25Parser$ShowConstraintsEndContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowConstraintsEndContext_getRuleIndex)], -oncipv_Cypher25Parser$ConstraintExistTypeContext, "Cypher25Parser$ConstraintExistTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ConstraintExistTypeContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher25Parser$ShowFunctionsTypeContext, "Cypher25Parser$ShowFunctionsTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowFunctionsTypeContext_getRuleIndex)], -oncipv_Cypher25Parser$FunctionTokenContext, "Cypher25Parser$FunctionTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FunctionTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$ExecutableByContext, "Cypher25Parser$ExecutableByContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExecutableByContext_getRuleIndex)], -oncipv_Cypher25Parser$ComposableCommandClausesContext, "Cypher25Parser$ComposableCommandClausesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ComposableCommandClausesContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowIndexTypeContext, "Cypher25Parser$ShowIndexTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowIndexTypeContext_getRuleIndex)], -oncipv_Cypher25Parser$ShowIndexesEndContext, "Cypher25Parser$ShowIndexesEndContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShowIndexesEndContext_getRuleIndex)], -oncipv_Cypher25Parser$PrivilegeTokenContext, "Cypher25Parser$PrivilegeTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrivilegeTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$PrivilegeAsCommandContext, "Cypher25Parser$PrivilegeAsCommandContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrivilegeAsCommandContext_getRuleIndex)], -oncipv_Cypher25Parser$SettingTokenContext, "Cypher25Parser$SettingTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SettingTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$NamesAndClausesContext, "Cypher25Parser$NamesAndClausesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NamesAndClausesContext_getRuleIndex)], -oncipv_Cypher25Parser$TransactionTokenContext, "Cypher25Parser$TransactionTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TransactionTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$SecondsTokenContext, "Cypher25Parser$SecondsTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SecondsTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$FinishClauseContext, "Cypher25Parser$FinishClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FinishClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$ReturnClauseContext, "Cypher25Parser$ReturnClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReturnClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateClauseContext, "Cypher25Parser$CreateClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$InsertClauseContext, "Cypher25Parser$InsertClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$DeleteClauseContext, "Cypher25Parser$DeleteClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DeleteClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$SetClauseContext, "Cypher25Parser$SetClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SetClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$RemoveClauseContext, "Cypher25Parser$RemoveClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RemoveClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$MatchClauseContext, "Cypher25Parser$MatchClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MatchClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$MergeClauseContext, "Cypher25Parser$MergeClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MergeClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$WithClauseContext, "Cypher25Parser$WithClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$WithClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$UnwindClauseContext, "Cypher25Parser$UnwindClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UnwindClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$CallClauseContext, "Cypher25Parser$CallClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CallClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$SubqueryClauseContext, "Cypher25Parser$SubqueryClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$LoadCSVClauseContext, "Cypher25Parser$LoadCSVClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LoadCSVClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$ForeachClauseContext, "Cypher25Parser$ForeachClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ForeachClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$OrderBySkipLimitClauseContext, "Cypher25Parser$OrderBySkipLimitClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$OrderBySkipLimitClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$FunctionInvocationContext, "Cypher5Parser$FunctionInvocationContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FunctionInvocationContext_getRuleIndex)], -oncipv_Cypher5Parser$SymbolicAliasNameContext, "Cypher5Parser$SymbolicAliasNameContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicAliasNameContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterAliasDriverContext, "Cypher5Parser$AlterAliasDriverContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasDriverContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterAliasPasswordContext, "Cypher5Parser$AlterAliasPasswordContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasPasswordContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterAliasPropertiesContext, "Cypher5Parser$AlterAliasPropertiesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasPropertiesContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterAliasTargetContext, "Cypher5Parser$AlterAliasTargetContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasTargetContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterAliasUserContext, "Cypher5Parser$AlterAliasUserContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterAliasUserContext_getRuleIndex)], -oncipv_Cypher5Parser$AliasNameContext, "Cypher5Parser$AliasNameContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AliasNameContext_getRuleIndex)], -oncipv_Cypher5Parser$PasswordExpressionContext, "Cypher5Parser$PasswordExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterDatabaseAccessContext, "Cypher5Parser$AlterDatabaseAccessContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterDatabaseAccessContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterDatabaseOptionContext, "Cypher5Parser$AlterDatabaseOptionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterDatabaseOptionContext_getRuleIndex)], -oncipv_Cypher5Parser$AlterDatabaseTopologyContext, "Cypher5Parser$AlterDatabaseTopologyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AlterDatabaseTopologyContext_getRuleIndex)], -oncipv_Cypher5Parser$SymbolicNameStringContext, "Cypher5Parser$SymbolicNameStringContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicNameStringContext_getRuleIndex)], -oncipv_Cypher5Parser$RemoveNamedProviderContext, "Cypher5Parser$RemoveNamedProviderContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RemoveNamedProviderContext_getRuleIndex)], -oncipv_Cypher5Parser$PasswordContext, "Cypher5Parser$PasswordContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordContext_getRuleIndex)], -oncipv_Cypher5Parser$PasswordChangeRequiredContext, "Cypher5Parser$PasswordChangeRequiredContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordChangeRequiredContext_getRuleIndex)], -oncipv_Cypher5Parser$UserStatusContext, "Cypher5Parser$UserStatusContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UserStatusContext_getRuleIndex)], -oncipv_Cypher5Parser$HomeDatabaseContext, "Cypher5Parser$HomeDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$HomeDatabaseContext_getRuleIndex)], -oncipv_Cypher5Parser$SetAuthClauseContext, "Cypher5Parser$SetAuthClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SetAuthClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$CommandNameExpressionContext, "Cypher5Parser$CommandNameExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandNameExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$DatabaseNameContext, "Cypher5Parser$DatabaseNameContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DatabaseNameContext_getRuleIndex)], -oncipv_Cypher5Parser$MapOrParameterContext, "Cypher5Parser$MapOrParameterContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MapOrParameterContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher5Parser$CreateIndex_Context, "Cypher5Parser$CreateIndex_Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateIndex_Context_getRuleIndex)], -oncipv_Cypher5Parser$CreateFulltextIndexContext, "Cypher5Parser$CreateFulltextIndexContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateFulltextIndexContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateLookupIndexContext, "Cypher5Parser$CreateLookupIndexContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateLookupIndexContext_getRuleIndex)], -oncipv_Cypher5Parser$OldCreateIndexContext, "Cypher5Parser$OldCreateIndexContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$OldCreateIndexContext_getRuleIndex)], -oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext, "Cypher5Parser$SymbolicNameOrStringParameterContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicNameOrStringParameterContext_getRuleIndex)], -oncipv_Cypher5Parser$CommandNodePatternContext, "Cypher5Parser$CommandNodePatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandNodePatternContext_getRuleIndex)], -oncipv_Cypher5Parser$CommandRelPatternContext, "Cypher5Parser$CommandRelPatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CommandRelPatternContext_getRuleIndex)], -oncipv_Cypher5Parser$ConstraintTypeContext, "Cypher5Parser$ConstraintTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$ConstraintExistsContext, "Cypher5Parser$ConstraintExistsContext", 51, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ConstraintTypedContext, "Cypher5Parser$ConstraintTypedContext", 51, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ConstraintIsUniqueContext, "Cypher5Parser$ConstraintIsUniqueContext", 51, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ConstraintKeyContext, "Cypher5Parser$ConstraintKeyContext", 51, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ConstraintIsNotNullContext, "Cypher5Parser$ConstraintIsNotNullContext", 51, oncipv_Cypher5Parser$ConstraintTypeContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$PrimaryTopologyContext, "Cypher5Parser$PrimaryTopologyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrimaryTopologyContext_getRuleIndex)], -oncipv_Cypher5Parser$SecondaryTopologyContext, "Cypher5Parser$SecondaryTopologyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SecondaryTopologyContext_getRuleIndex)], -oncipv_Cypher5Parser$DatabasePrivilegeContext, "Cypher5Parser$DatabasePrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DatabasePrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$DbmsPrivilegeContext, "Cypher5Parser$DbmsPrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DbmsPrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$AllPrivilegeContext, "Cypher5Parser$AllPrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AllPrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$CreatePrivilegeContext, "Cypher5Parser$CreatePrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreatePrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext, "Cypher5Parser$QualifiedGraphPrivilegesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$QualifiedGraphPrivilegesContext_getRuleIndex)], -oncipv_Cypher5Parser$DropPrivilegeContext, "Cypher5Parser$DropPrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DropPrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$LoadPrivilegeContext, "Cypher5Parser$LoadPrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LoadPrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext, "Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$QualifiedGraphPrivilegesWithPropertyContext_getRuleIndex)], -oncipv_Cypher5Parser$RemovePrivilegeContext, "Cypher5Parser$RemovePrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RemovePrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$SetPrivilegeContext, "Cypher5Parser$SetPrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SetPrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowPrivilegeContext, "Cypher5Parser$ShowPrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowPrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$WritePrivilegeContext, "Cypher5Parser$WritePrivilegeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$WritePrivilegeContext_getRuleIndex)], -oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext, "Cypher5Parser$SymbolicNameOrStringParameterListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicNameOrStringParameterListContext_getRuleIndex)], -oncipv_Cypher5Parser$AliasActionContext, "Cypher5Parser$AliasActionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AliasActionContext_getRuleIndex)], -oncipv_Cypher5Parser$PropertyListContext, "Cypher5Parser$PropertyListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertyListContext_getRuleIndex)], -oncipv_Cypher5Parser$LabelTypeContext, "Cypher5Parser$LabelTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$NonEmptyNameListContext, "Cypher5Parser$NonEmptyNameListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NonEmptyNameListContext_getRuleIndex)], -oncipv_Cypher5Parser$StringLiteralContext, "Cypher5Parser$StringLiteralContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringLiteralContext_getRuleIndex)], -oncipv_Cypher5Parser$ParameterContext, "Cypher5Parser$ParameterContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ParameterContext_getRuleIndex)], -oncipv_Cypher5Parser$UserNamesContext, "Cypher5Parser$UserNamesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UserNamesContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowCommandYieldContext, "Cypher5Parser$ShowCommandYieldContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowCommandYieldContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext, "Cypher5Parser$ShowConstraintsAllowYieldContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowConstraintsAllowYieldContext_getRuleIndex)], -oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext, "Cypher5Parser$ConstraintBriefAndYieldTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintBriefAndYieldTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext, "Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowConstraintsAllowBriefAndYieldContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext, "Cypher5Parser$ShowConstraintsAllowBriefContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowConstraintsAllowBriefContext_getRuleIndex)], -oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext, "Cypher5Parser$ConstraintAllowYieldTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintAllowYieldTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowFunctionsTypeContext, "Cypher5Parser$ShowFunctionsTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowFunctionsTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$FunctionTokenContext, "Cypher5Parser$FunctionTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FunctionTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$ExecutableByContext, "Cypher5Parser$ExecutableByContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExecutableByContext_getRuleIndex)], -oncipv_Cypher5Parser$ComposableCommandClausesContext, "Cypher5Parser$ComposableCommandClausesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ComposableCommandClausesContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowIndexesNoBriefContext, "Cypher5Parser$ShowIndexesNoBriefContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowIndexesNoBriefContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowIndexesAllowBriefContext, "Cypher5Parser$ShowIndexesAllowBriefContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowIndexesAllowBriefContext_getRuleIndex)], -oncipv_Cypher5Parser$PrivilegeTokenContext, "Cypher5Parser$PrivilegeTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrivilegeTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$PrivilegeAsCommandContext, "Cypher5Parser$PrivilegeAsCommandContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrivilegeAsCommandContext_getRuleIndex)], -oncipv_Cypher5Parser$SettingTokenContext, "Cypher5Parser$SettingTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SettingTokenContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher5Parser$NamesAndClausesContext, "Cypher5Parser$NamesAndClausesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NamesAndClausesContext_getRuleIndex)], -oncipv_Cypher5Parser$TransactionTokenContext, "Cypher5Parser$TransactionTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TransactionTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$SecondsTokenContext, "Cypher5Parser$SecondsTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SecondsTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$FinishClauseContext, "Cypher5Parser$FinishClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FinishClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$ReturnClauseContext, "Cypher5Parser$ReturnClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReturnClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateClauseContext, "Cypher5Parser$CreateClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$InsertClauseContext, "Cypher5Parser$InsertClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$DeleteClauseContext, "Cypher5Parser$DeleteClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DeleteClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$SetClauseContext, "Cypher5Parser$SetClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SetClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$RemoveClauseContext, "Cypher5Parser$RemoveClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RemoveClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$MatchClauseContext, "Cypher5Parser$MatchClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MatchClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$MergeClauseContext, "Cypher5Parser$MergeClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MergeClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$WithClauseContext, "Cypher5Parser$WithClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$WithClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$UnwindClauseContext, "Cypher5Parser$UnwindClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnwindClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$CallClauseContext, "Cypher5Parser$CallClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CallClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$SubqueryClauseContext, "Cypher5Parser$SubqueryClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$LoadCSVClauseContext, "Cypher5Parser$LoadCSVClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LoadCSVClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$ForeachClauseContext, "Cypher5Parser$ForeachClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ForeachClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$OrderBySkipLimitClauseContext, "Cypher5Parser$OrderBySkipLimitClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$OrderBySkipLimitClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$FunctionArgumentContext, "Cypher25Parser$FunctionArgumentContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FunctionArgumentContext_getRuleIndex)], -oncipv_Cypher25Parser$FunctionNameContext, "Cypher25Parser$FunctionNameContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FunctionNameContext_getRuleIndex)], -oncipv_Cypher25Parser$ExpressionContext, "Cypher25Parser$ExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$EscapedSymbolicNameStringContext, "Cypher25Parser$EscapedSymbolicNameStringContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$EscapedSymbolicNameStringContext_getRuleIndex)], -oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext, "Cypher25Parser$UnescapedSymbolicNameStringContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UnescapedSymbolicNameStringContext_getRuleIndex)], -oncipv_Cypher25Parser$StringListLiteralContext, "Cypher25Parser$StringListLiteralContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringListLiteralContext_getRuleIndex)], -oncipv_Cypher25Parser$UserAuthAttributeContext, "Cypher25Parser$UserAuthAttributeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UserAuthAttributeContext_getRuleIndex)], -oncipv_Cypher25Parser$MapContext, "Cypher25Parser$MapContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MapContext_getRuleIndex)], -oncipv_Cypher25Parser$VariableContext, "Cypher25Parser$VariableContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$VariableContext_getRuleIndex)], -oncipv_Cypher25Parser$LabelTypeContext, "Cypher25Parser$LabelTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelTypeContext_getRuleIndex)], -oncipv_Cypher25Parser$LeftArrowContext, "Cypher25Parser$LeftArrowContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LeftArrowContext_getRuleIndex)], -oncipv_Cypher25Parser$ArrowLineContext, "Cypher25Parser$ArrowLineContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ArrowLineContext_getRuleIndex)], -oncipv_Cypher25Parser$RelTypeContext, "Cypher25Parser$RelTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RelTypeContext_getRuleIndex)], -oncipv_Cypher25Parser$RightArrowContext, "Cypher25Parser$RightArrowContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RightArrowContext_getRuleIndex)], -oncipv_Cypher25Parser$PropertyListContext, "Cypher25Parser$PropertyListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertyListContext_getRuleIndex)], -oncipv_Cypher25Parser$TypeContext, "Cypher25Parser$TypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypeContext_getRuleIndex)], -oncipv_Cypher25Parser$PrimaryTokenContext, "Cypher25Parser$PrimaryTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PrimaryTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$SecondaryTokenContext, "Cypher25Parser$SecondaryTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SecondaryTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$FulltextNodePatternContext, "Cypher25Parser$FulltextNodePatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FulltextNodePatternContext_getRuleIndex)], -oncipv_Cypher25Parser$FulltextRelPatternContext, "Cypher25Parser$FulltextRelPatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$FulltextRelPatternContext_getRuleIndex)], -oncipv_Cypher25Parser$EnclosedPropertyListContext, "Cypher25Parser$EnclosedPropertyListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$EnclosedPropertyListContext_getRuleIndex)], -oncipv_Cypher25Parser$LookupIndexNodePatternContext, "Cypher25Parser$LookupIndexNodePatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LookupIndexNodePatternContext_getRuleIndex)], -oncipv_Cypher25Parser$LookupIndexRelPatternContext, "Cypher25Parser$LookupIndexRelPatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LookupIndexRelPatternContext_getRuleIndex)], -oncipv_Cypher25Parser$DatabaseScopeContext, "Cypher25Parser$DatabaseScopeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DatabaseScopeContext_getRuleIndex)], -oncipv_Cypher25Parser$UserQualifierContext, "Cypher25Parser$UserQualifierContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UserQualifierContext_getRuleIndex)], -oncipv_Cypher25Parser$ConstraintTokenContext, "Cypher25Parser$ConstraintTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ConstraintTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$IndexTokenContext, "Cypher25Parser$IndexTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$IndexTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext, "Cypher25Parser$DbmsPrivilegeExecuteContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DbmsPrivilegeExecuteContext_getRuleIndex)], -oncipv_Cypher25Parser$AllPrivilegeTypeContext, "Cypher25Parser$AllPrivilegeTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AllPrivilegeTypeContext_getRuleIndex)], -oncipv_Cypher25Parser$AllPrivilegeTargetContext, "Cypher25Parser$AllPrivilegeTargetContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AllPrivilegeTargetContext_getRuleIndex)], -oncipv_Cypher25Parser$DatabaseVariableTargetContext, "Cypher25Parser$DatabaseVariableTargetContext", 46, oncipv_Cypher25Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0]); -$rt_metadata([oncipv_Cypher25Parser$DBMSTargetContext, "Cypher25Parser$DBMSTargetContext", 46, oncipv_Cypher25Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$GraphVariableTargetContext, "Cypher25Parser$GraphVariableTargetContext", 46, oncipv_Cypher25Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$DefaultTargetContext, "Cypher25Parser$DefaultTargetContext", 46, oncipv_Cypher25Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ActionForDBMSContext, "Cypher25Parser$ActionForDBMSContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ActionForDBMSContext_getRuleIndex)], -oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext, "Cypher25Parser$CreatePrivilegeForDatabaseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreatePrivilegeForDatabaseContext_getRuleIndex)], -oncipv_Cypher25Parser$GraphScopeContext, "Cypher25Parser$GraphScopeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GraphScopeContext_getRuleIndex)], -oncipv_Cypher25Parser$GraphQualifierContext, "Cypher25Parser$GraphQualifierContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GraphQualifierContext_getRuleIndex)], -oncipv_Cypher25Parser$PropertiesResourceContext, "Cypher25Parser$PropertiesResourceContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertiesResourceContext_getRuleIndex)], -oncipv_Cypher25Parser$LabelsResourceContext, "Cypher25Parser$LabelsResourceContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelsResourceContext_getRuleIndex)], -oncipv_Cypher25Parser$PasswordTokenContext, "Cypher25Parser$PasswordTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$SettingQualifierContext, "Cypher25Parser$SettingQualifierContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SettingQualifierContext_getRuleIndex)], -oncipv_Cypher25Parser$ParameterNameContext, "Cypher25Parser$ParameterNameContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ParameterNameContext_getRuleIndex)], -oncipv_Cypher25Parser$WhereClauseContext, "Cypher25Parser$WhereClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$WhereClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$YieldClauseContext, "Cypher25Parser$YieldClauseContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$YieldClauseContext_getRuleIndex)], -oncipv_Cypher25Parser$ComposableShowCommandClausesContext, "Cypher25Parser$ComposableShowCommandClausesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ComposableShowCommandClausesContext_getRuleIndex)], -oncipv_Cypher25Parser$StringsOrExpressionContext, "Cypher25Parser$StringsOrExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringsOrExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$ReturnBodyContext, "Cypher25Parser$ReturnBodyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReturnBodyContext_getRuleIndex)], -oncipv_Cypher25Parser$PatternListContext, "Cypher25Parser$PatternListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternListContext_getRuleIndex)], -oncipv_Cypher25Parser$InsertPatternListContext, "Cypher25Parser$InsertPatternListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertPatternListContext_getRuleIndex)], -oncipv_Cypher25Parser$SetItemContext, "Cypher25Parser$SetItemContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SetItemContext_getRuleIndex)], -oncipv_Cypher25Parser$SetPropContext, "Cypher25Parser$SetPropContext", 46, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$SetDynamicPropContext, "Cypher25Parser$SetDynamicPropContext", 46, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$SetPropsContext, "Cypher25Parser$SetPropsContext", 46, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$AddPropContext, "Cypher25Parser$AddPropContext", 46, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$SetLabelsContext, "Cypher25Parser$SetLabelsContext", 46, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$SetLabelsIsContext, "Cypher25Parser$SetLabelsIsContext", 46, oncipv_Cypher25Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$RemoveItemContext, "Cypher25Parser$RemoveItemContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RemoveItemContext_getRuleIndex)], -oncipv_Cypher25Parser$RemovePropContext, "Cypher25Parser$RemovePropContext", 46, oncipv_Cypher25Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$RemoveDynamicPropContext, "Cypher25Parser$RemoveDynamicPropContext", 46, oncipv_Cypher25Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$RemoveLabelsContext, "Cypher25Parser$RemoveLabelsContext", 46, oncipv_Cypher25Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$RemoveLabelsIsContext, "Cypher25Parser$RemoveLabelsIsContext", 46, oncipv_Cypher25Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$MatchModeContext, "Cypher25Parser$MatchModeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MatchModeContext_getRuleIndex)], -oncipv_Cypher25Parser$HintContext, "Cypher25Parser$HintContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$HintContext_getRuleIndex)], -oncipv_Cypher25Parser$MergeActionContext, "Cypher25Parser$MergeActionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MergeActionContext_getRuleIndex)], -oncipv_Cypher25Parser$PatternContext, "Cypher25Parser$PatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternContext_getRuleIndex)], -oncipv_Cypher25Parser$ProcedureNameContext, "Cypher25Parser$ProcedureNameContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ProcedureNameContext_getRuleIndex)], -oncipv_Cypher25Parser$ProcedureArgumentContext, "Cypher25Parser$ProcedureArgumentContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ProcedureArgumentContext_getRuleIndex)], -oncipv_Cypher25Parser$ProcedureResultItemContext, "Cypher25Parser$ProcedureResultItemContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ProcedureResultItemContext_getRuleIndex)], -oncipv_Cypher25Parser$SubqueryScopeContext, "Cypher25Parser$SubqueryScopeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryScopeContext_getRuleIndex)], -oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext, "Cypher25Parser$SubqueryInTransactionsParametersContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryInTransactionsParametersContext_getRuleIndex)], -oncipv_Cypher25Parser$LimitContext, "Cypher25Parser$LimitContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LimitContext_getRuleIndex)], -oncipv_Cypher25Parser$SkipContext, "Cypher25Parser$SkipContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SkipContext_getRuleIndex)], -oncipv_Cypher25Parser$OrderByContext, "Cypher25Parser$OrderByContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$OrderByContext_getRuleIndex)], -oncipv_Cypher5Parser$FunctionArgumentContext, "Cypher5Parser$FunctionArgumentContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FunctionArgumentContext_getRuleIndex)], -oncipv_Cypher5Parser$FunctionNameContext, "Cypher5Parser$FunctionNameContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FunctionNameContext_getRuleIndex)], -oncipv_Cypher5Parser$ExpressionContext, "Cypher5Parser$ExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$EscapedSymbolicNameStringContext, "Cypher5Parser$EscapedSymbolicNameStringContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$EscapedSymbolicNameStringContext_getRuleIndex)], -oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext, "Cypher5Parser$UnescapedSymbolicNameStringContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnescapedSymbolicNameStringContext_getRuleIndex)], -oncipv_Cypher5Parser$StringListLiteralContext, "Cypher5Parser$StringListLiteralContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringListLiteralContext_getRuleIndex)], -oncipv_Cypher5Parser$UserAuthAttributeContext, "Cypher5Parser$UserAuthAttributeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UserAuthAttributeContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher5Parser$MapContext, "Cypher5Parser$MapContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MapContext_getRuleIndex)], -oncipv_Cypher5Parser$FulltextNodePatternContext, "Cypher5Parser$FulltextNodePatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FulltextNodePatternContext_getRuleIndex)], -oncipv_Cypher5Parser$FulltextRelPatternContext, "Cypher5Parser$FulltextRelPatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$FulltextRelPatternContext_getRuleIndex)], -oncipv_Cypher5Parser$EnclosedPropertyListContext, "Cypher5Parser$EnclosedPropertyListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$EnclosedPropertyListContext_getRuleIndex)], -oncipv_Cypher5Parser$LookupIndexNodePatternContext, "Cypher5Parser$LookupIndexNodePatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LookupIndexNodePatternContext_getRuleIndex)], -oncipv_Cypher5Parser$LookupIndexRelPatternContext, "Cypher5Parser$LookupIndexRelPatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LookupIndexRelPatternContext_getRuleIndex)], -oncipv_Cypher5Parser$VariableContext, "Cypher5Parser$VariableContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$VariableContext_getRuleIndex)], -oncipv_Cypher5Parser$LeftArrowContext, "Cypher5Parser$LeftArrowContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LeftArrowContext_getRuleIndex)], -oncipv_Cypher5Parser$ArrowLineContext, "Cypher5Parser$ArrowLineContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ArrowLineContext_getRuleIndex)], -oncipv_Cypher5Parser$RelTypeContext, "Cypher5Parser$RelTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RelTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$RightArrowContext, "Cypher5Parser$RightArrowContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RightArrowContext_getRuleIndex)], -oncipv_Cypher5Parser$TypeContext, "Cypher5Parser$TypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypeContext_getRuleIndex)], -oncipv_Cypher5Parser$PrimaryTokenContext, "Cypher5Parser$PrimaryTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PrimaryTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$SecondaryTokenContext, "Cypher5Parser$SecondaryTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SecondaryTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$DatabaseScopeContext, "Cypher5Parser$DatabaseScopeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DatabaseScopeContext_getRuleIndex)], -oncipv_Cypher5Parser$UserQualifierContext, "Cypher5Parser$UserQualifierContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UserQualifierContext_getRuleIndex)], -oncipv_Cypher5Parser$ConstraintTokenContext, "Cypher5Parser$ConstraintTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$IndexTokenContext, "Cypher5Parser$IndexTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$IndexTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext, "Cypher5Parser$DbmsPrivilegeExecuteContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DbmsPrivilegeExecuteContext_getRuleIndex)], -oncipv_Cypher5Parser$AllPrivilegeTypeContext, "Cypher5Parser$AllPrivilegeTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AllPrivilegeTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$AllPrivilegeTargetContext, "Cypher5Parser$AllPrivilegeTargetContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AllPrivilegeTargetContext_getRuleIndex)], -oncipv_Cypher5Parser$DatabaseVariableTargetContext, "Cypher5Parser$DatabaseVariableTargetContext", 51, oncipv_Cypher5Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$DBMSTargetContext, "Cypher5Parser$DBMSTargetContext", 51, oncipv_Cypher5Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$DefaultTargetContext, "Cypher5Parser$DefaultTargetContext", 51, oncipv_Cypher5Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$GraphVariableTargetContext, "Cypher5Parser$GraphVariableTargetContext", 51, oncipv_Cypher5Parser$AllPrivilegeTargetContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ActionForDBMSContext, "Cypher5Parser$ActionForDBMSContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ActionForDBMSContext_getRuleIndex)], -oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext, "Cypher5Parser$CreatePrivilegeForDatabaseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreatePrivilegeForDatabaseContext_getRuleIndex)], -oncipv_Cypher5Parser$GraphScopeContext, "Cypher5Parser$GraphScopeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GraphScopeContext_getRuleIndex)], -oncipv_Cypher5Parser$GraphQualifierContext, "Cypher5Parser$GraphQualifierContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GraphQualifierContext_getRuleIndex)], -oncipv_Cypher5Parser$PropertiesResourceContext, "Cypher5Parser$PropertiesResourceContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertiesResourceContext_getRuleIndex)], -oncipv_Cypher5Parser$LabelsResourceContext, "Cypher5Parser$LabelsResourceContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelsResourceContext_getRuleIndex)], -oncipv_Cypher5Parser$PasswordTokenContext, "Cypher5Parser$PasswordTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$SettingQualifierContext, "Cypher5Parser$SettingQualifierContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SettingQualifierContext_getRuleIndex)], -oncipv_Cypher5Parser$PropertyContext, "Cypher5Parser$PropertyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertyContext_getRuleIndex)], -oncipv_Cypher5Parser$ParameterNameContext, "Cypher5Parser$ParameterNameContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ParameterNameContext_getRuleIndex)], -oncipv_Cypher5Parser$WhereClauseContext, "Cypher5Parser$WhereClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$WhereClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$YieldClauseContext, "Cypher5Parser$YieldClauseContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$YieldClauseContext_getRuleIndex)], -oncipv_Cypher5Parser$ShowBriefAndYieldContext, "Cypher5Parser$ShowBriefAndYieldContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShowBriefAndYieldContext_getRuleIndex)], -oncipv_Cypher5Parser$ConstraintExistTypeContext, "Cypher5Parser$ConstraintExistTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ConstraintExistTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$ComposableShowCommandClausesContext, "Cypher5Parser$ComposableShowCommandClausesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ComposableShowCommandClausesContext_getRuleIndex)], -oncipv_Cypher5Parser$StringsOrExpressionContext, "Cypher5Parser$StringsOrExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringsOrExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$ReturnBodyContext, "Cypher5Parser$ReturnBodyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReturnBodyContext_getRuleIndex)], -oncipv_Cypher5Parser$PatternListContext, "Cypher5Parser$PatternListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternListContext_getRuleIndex)], -oncipv_Cypher5Parser$InsertPatternListContext, "Cypher5Parser$InsertPatternListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertPatternListContext_getRuleIndex)], -oncipv_Cypher5Parser$SetItemContext, "Cypher5Parser$SetItemContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SetItemContext_getRuleIndex)], -oncipv_Cypher5Parser$SetPropContext, "Cypher5Parser$SetPropContext", 51, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$SetDynamicPropContext, "Cypher5Parser$SetDynamicPropContext", 51, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$SetPropsContext, "Cypher5Parser$SetPropsContext", 51, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$AddPropContext, "Cypher5Parser$AddPropContext", 51, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$SetLabelsContext, "Cypher5Parser$SetLabelsContext", 51, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0]); -$rt_metadata([oncipv_Cypher5Parser$SetLabelsIsContext, "Cypher5Parser$SetLabelsIsContext", 51, oncipv_Cypher5Parser$SetItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$RemoveItemContext, "Cypher5Parser$RemoveItemContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RemoveItemContext_getRuleIndex)], -oncipv_Cypher5Parser$RemovePropContext, "Cypher5Parser$RemovePropContext", 51, oncipv_Cypher5Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$RemoveDynamicPropContext, "Cypher5Parser$RemoveDynamicPropContext", 51, oncipv_Cypher5Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$RemoveLabelsContext, "Cypher5Parser$RemoveLabelsContext", 51, oncipv_Cypher5Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$RemoveLabelsIsContext, "Cypher5Parser$RemoveLabelsIsContext", 51, oncipv_Cypher5Parser$RemoveItemContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$MatchModeContext, "Cypher5Parser$MatchModeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MatchModeContext_getRuleIndex)], -oncipv_Cypher5Parser$HintContext, "Cypher5Parser$HintContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$HintContext_getRuleIndex)], -oncipv_Cypher5Parser$MergeActionContext, "Cypher5Parser$MergeActionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MergeActionContext_getRuleIndex)], -oncipv_Cypher5Parser$PatternContext, "Cypher5Parser$PatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternContext_getRuleIndex)], -oncipv_Cypher5Parser$ProcedureNameContext, "Cypher5Parser$ProcedureNameContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ProcedureNameContext_getRuleIndex)], -oncipv_Cypher5Parser$ProcedureArgumentContext, "Cypher5Parser$ProcedureArgumentContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ProcedureArgumentContext_getRuleIndex)], -oncipv_Cypher5Parser$ProcedureResultItemContext, "Cypher5Parser$ProcedureResultItemContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ProcedureResultItemContext_getRuleIndex)], -oncipv_Cypher5Parser$SubqueryScopeContext, "Cypher5Parser$SubqueryScopeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryScopeContext_getRuleIndex)], -oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext, "Cypher5Parser$SubqueryInTransactionsParametersContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryInTransactionsParametersContext_getRuleIndex)], -oncipv_Cypher5Parser$LimitContext, "Cypher5Parser$LimitContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LimitContext_getRuleIndex)], -oncipv_Cypher5Parser$SkipContext, "Cypher5Parser$SkipContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SkipContext_getRuleIndex)], -oncipv_Cypher5Parser$OrderByContext, "Cypher5Parser$OrderByContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$OrderByContext_getRuleIndex)], -oncipv_Cypher25Parser$NamespaceContext, "Cypher25Parser$NamespaceContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NamespaceContext_getRuleIndex)], -oncipv_Cypher25Parser$Expression11Context, "Cypher25Parser$Expression11Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression11Context_getRuleIndex)], -oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext, "Cypher25Parser$UnescapedLabelSymbolicNameStringContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UnescapedLabelSymbolicNameStringContext_getRuleIndex)], -oncipv_Cypher25Parser$StringOrParameterExpressionContext, "Cypher25Parser$StringOrParameterExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringOrParameterExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$PasswordOnlyContext, "Cypher25Parser$PasswordOnlyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PasswordOnlyContext_getRuleIndex)], -oncipv_Cypher25Parser$PropertyKeyNameContext, "Cypher25Parser$PropertyKeyNameContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertyKeyNameContext_getRuleIndex)], -oncipv_Cypher25Parser$PropertyContext, "Cypher25Parser$PropertyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertyContext_getRuleIndex)], -oncipv_Cypher25Parser$TypePartContext, "Cypher25Parser$TypePartContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypePartContext_getRuleIndex)], -oncipv_Cypher25Parser$SymbolicAliasNameListContext, "Cypher25Parser$SymbolicAliasNameListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicAliasNameListContext_getRuleIndex)], -oncipv_Cypher25Parser$AdminTokenContext, "Cypher25Parser$AdminTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AdminTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$ProcedureTokenContext, "Cypher25Parser$ProcedureTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ProcedureTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$ExecuteProcedureQualifierContext, "Cypher25Parser$ExecuteProcedureQualifierContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExecuteProcedureQualifierContext_getRuleIndex)], -oncipv_Cypher25Parser$ExecuteFunctionQualifierContext, "Cypher25Parser$ExecuteFunctionQualifierContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExecuteFunctionQualifierContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext, "Cypher25Parser$CreateNodePrivilegeTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateNodePrivilegeTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext, "Cypher25Parser$CreateRelPrivilegeTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreateRelPrivilegeTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext, "Cypher25Parser$CreatePropertyPrivilegeTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CreatePropertyPrivilegeTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$GraphQualifierTokenContext, "Cypher25Parser$GraphQualifierTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GraphQualifierTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$NonEmptyStringListContext, "Cypher25Parser$NonEmptyStringListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NonEmptyStringListContext_getRuleIndex)], -oncipv_Cypher25Parser$GlobsContext, "Cypher25Parser$GlobsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GlobsContext_getRuleIndex)], -oncipv_Cypher25Parser$YieldItemContext, "Cypher25Parser$YieldItemContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$YieldItemContext_getRuleIndex)], -oncipv_Cypher25Parser$YieldSkipContext, "Cypher25Parser$YieldSkipContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$YieldSkipContext_getRuleIndex)], -oncipv_Cypher25Parser$YieldLimitContext, "Cypher25Parser$YieldLimitContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$YieldLimitContext_getRuleIndex)], -oncipv_Cypher25Parser$StringListContext, "Cypher25Parser$StringListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$StringListContext_getRuleIndex)], -oncipv_Cypher25Parser$ReturnItemsContext, "Cypher25Parser$ReturnItemsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReturnItemsContext_getRuleIndex)], -oncipv_Cypher25Parser$InsertPatternContext, "Cypher25Parser$InsertPatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertPatternContext_getRuleIndex)], -oncipv_Cypher25Parser$PropertyExpressionContext, "Cypher25Parser$PropertyExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertyExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$DynamicPropertyExpressionContext, "Cypher25Parser$DynamicPropertyExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicPropertyExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$NodeLabelsContext, "Cypher25Parser$NodeLabelsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NodeLabelsContext_getRuleIndex)], -oncipv_Cypher25Parser$NodeLabelsIsContext, "Cypher25Parser$NodeLabelsIsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NodeLabelsIsContext_getRuleIndex)], -oncipv_Cypher25Parser$NonEmptyNameListContext, "Cypher25Parser$NonEmptyNameListContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NonEmptyNameListContext_getRuleIndex)], -oncipv_Cypher25Parser$LabelOrRelTypeContext, "Cypher25Parser$LabelOrRelTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelOrRelTypeContext_getRuleIndex)], -oncipv_Cypher25Parser$SelectorContext, "Cypher25Parser$SelectorContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SelectorContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher25Parser$AnyShortestPathContext, "Cypher25Parser$AnyShortestPathContext", 46, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$AllShortestPathContext, "Cypher25Parser$AllShortestPathContext", 46, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$AnyPathContext, "Cypher25Parser$AnyPathContext", 46, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$AllPathContext, "Cypher25Parser$AllPathContext", 46, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ShortestGroupContext, "Cypher25Parser$ShortestGroupContext", 46, oncipv_Cypher25Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$AnonymousPatternContext, "Cypher25Parser$AnonymousPatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AnonymousPatternContext_getRuleIndex)], -oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext, "Cypher25Parser$SubqueryInTransactionsBatchParametersContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryInTransactionsBatchParametersContext_getRuleIndex)], -oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext, "Cypher25Parser$SubqueryInTransactionsErrorParametersContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryInTransactionsErrorParametersContext_getRuleIndex)], -oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext, "Cypher25Parser$SubqueryInTransactionsReportParametersContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SubqueryInTransactionsReportParametersContext_getRuleIndex)], -oncipv_Cypher25Parser$OrderItemContext, "Cypher25Parser$OrderItemContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$OrderItemContext_getRuleIndex)], -oncipv_Cypher5Parser$NamespaceContext, "Cypher5Parser$NamespaceContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NamespaceContext_getRuleIndex)], -oncipv_Cypher5Parser$Expression11Context, "Cypher5Parser$Expression11Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression11Context_getRuleIndex)], -oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext, "Cypher5Parser$UnescapedLabelSymbolicNameStringContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnescapedLabelSymbolicNameStringContext_getRuleIndex)], -oncipv_Cypher5Parser$StringOrParameterExpressionContext, "Cypher5Parser$StringOrParameterExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringOrParameterExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$PasswordOnlyContext, "Cypher5Parser$PasswordOnlyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PasswordOnlyContext_getRuleIndex)], -oncipv_Cypher5Parser$PropertyKeyNameContext, "Cypher5Parser$PropertyKeyNameContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertyKeyNameContext_getRuleIndex)], -oncipv_Cypher5Parser$TypePartContext, "Cypher5Parser$TypePartContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypePartContext_getRuleIndex)], -oncipv_Cypher5Parser$SymbolicAliasNameListContext, "Cypher5Parser$SymbolicAliasNameListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicAliasNameListContext_getRuleIndex)], -oncipv_Cypher5Parser$AdminTokenContext, "Cypher5Parser$AdminTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AdminTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$ProcedureTokenContext, "Cypher5Parser$ProcedureTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ProcedureTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$ExecuteProcedureQualifierContext, "Cypher5Parser$ExecuteProcedureQualifierContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExecuteProcedureQualifierContext_getRuleIndex)], -oncipv_Cypher5Parser$ExecuteFunctionQualifierContext, "Cypher5Parser$ExecuteFunctionQualifierContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExecuteFunctionQualifierContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext, "Cypher5Parser$CreateNodePrivilegeTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateNodePrivilegeTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext, "Cypher5Parser$CreateRelPrivilegeTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreateRelPrivilegeTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext, "Cypher5Parser$CreatePropertyPrivilegeTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CreatePropertyPrivilegeTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$GraphQualifierTokenContext, "Cypher5Parser$GraphQualifierTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GraphQualifierTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$NonEmptyStringListContext, "Cypher5Parser$NonEmptyStringListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NonEmptyStringListContext_getRuleIndex)], -oncipv_Cypher5Parser$GlobsContext, "Cypher5Parser$GlobsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GlobsContext_getRuleIndex)], -oncipv_Cypher5Parser$YieldItemContext, "Cypher5Parser$YieldItemContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$YieldItemContext_getRuleIndex)], -oncipv_Cypher5Parser$YieldSkipContext, "Cypher5Parser$YieldSkipContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$YieldSkipContext_getRuleIndex)], -oncipv_Cypher5Parser$YieldLimitContext, "Cypher5Parser$YieldLimitContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$YieldLimitContext_getRuleIndex)], -oncipv_Cypher5Parser$StringListContext, "Cypher5Parser$StringListContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$StringListContext_getRuleIndex)], -oncipv_Cypher5Parser$ReturnItemsContext, "Cypher5Parser$ReturnItemsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReturnItemsContext_getRuleIndex)], -oncipv_Cypher5Parser$InsertPatternContext, "Cypher5Parser$InsertPatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertPatternContext_getRuleIndex)], -oncipv_Cypher5Parser$PropertyExpressionContext, "Cypher5Parser$PropertyExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertyExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$DynamicPropertyExpressionContext, "Cypher5Parser$DynamicPropertyExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicPropertyExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$NodeLabelsContext, "Cypher5Parser$NodeLabelsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NodeLabelsContext_getRuleIndex)], -oncipv_Cypher5Parser$NodeLabelsIsContext, "Cypher5Parser$NodeLabelsIsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NodeLabelsIsContext_getRuleIndex)], -oncipv_Cypher5Parser$LabelOrRelTypeContext, "Cypher5Parser$LabelOrRelTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelOrRelTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$SelectorContext, "Cypher5Parser$SelectorContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SelectorContext_getRuleIndex)], -oncipv_Cypher5Parser$AnyShortestPathContext, "Cypher5Parser$AnyShortestPathContext", 51, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$AllShortestPathContext, "Cypher5Parser$AllShortestPathContext", 51, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$AnyPathContext, "Cypher5Parser$AnyPathContext", 51, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$AllPathContext, "Cypher5Parser$AllPathContext", 51, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ShortestGroupContext, "Cypher5Parser$ShortestGroupContext", 51, oncipv_Cypher5Parser$SelectorContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$AnonymousPatternContext, "Cypher5Parser$AnonymousPatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AnonymousPatternContext_getRuleIndex)], -oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext, "Cypher5Parser$SubqueryInTransactionsBatchParametersContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryInTransactionsBatchParametersContext_getRuleIndex)], -oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext, "Cypher5Parser$SubqueryInTransactionsErrorParametersContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryInTransactionsErrorParametersContext_getRuleIndex)], -oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext, "Cypher5Parser$SubqueryInTransactionsReportParametersContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SubqueryInTransactionsReportParametersContext_getRuleIndex)], -oncipv_Cypher5Parser$OrderItemContext, "Cypher5Parser$OrderItemContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$OrderItemContext_getRuleIndex)]]); -$rt_metadata([oavrm_ObjectEqualityComparator, 0, oavrm_AbstractEqualityComparator, [], 4, 3, 0, 0, ["$hashCode2", $rt_wrapFunction1(oavrm_ObjectEqualityComparator_hashCode), "$equals0", $rt_wrapFunction2(oavrm_ObjectEqualityComparator_equals)], -oncipv_Cypher25Parser$Expression10Context, "Cypher25Parser$Expression10Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression10Context_getRuleIndex)], -oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context, "Cypher25Parser$UnescapedLabelSymbolicNameString_Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$UnescapedLabelSymbolicNameString_Context_getRuleIndex)], -oncipv_Cypher25Parser$TypeNullabilityContext, "Cypher25Parser$TypeNullabilityContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypeNullabilityContext_getRuleIndex)], -oncipv_Cypher25Parser$TypeListSuffixContext, "Cypher25Parser$TypeListSuffixContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypeListSuffixContext_getRuleIndex)], -oncipv_Cypher25Parser$TypeNameContext, "Cypher25Parser$TypeNameContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TypeNameContext_getRuleIndex)], -oncipv_Cypher25Parser$ElementTokenContext, "Cypher25Parser$ElementTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ElementTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$NodeTokenContext, "Cypher25Parser$NodeTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NodeTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$RelTokenContext, "Cypher25Parser$RelTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RelTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$GlobContext, "Cypher25Parser$GlobContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GlobContext_getRuleIndex)], -oncipv_Cypher25Parser$SignedIntegerLiteralContext, "Cypher25Parser$SignedIntegerLiteralContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SignedIntegerLiteralContext_getRuleIndex)], -oncipv_Cypher25Parser$ReturnItemContext, "Cypher25Parser$ReturnItemContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReturnItemContext_getRuleIndex)], -oncipv_Cypher25Parser$InsertNodePatternContext, "Cypher25Parser$InsertNodePatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertNodePatternContext_getRuleIndex)], -oncipv_Cypher25Parser$InsertRelationshipPatternContext, "Cypher25Parser$InsertRelationshipPatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertRelationshipPatternContext_getRuleIndex)], -oncipv_Cypher25Parser$Expression1Context, "Cypher25Parser$Expression1Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression1Context_getRuleIndex)], -oncipv_Cypher25Parser$DynamicPropertyContext, "Cypher25Parser$DynamicPropertyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicPropertyContext_getRuleIndex)], -oncipv_Cypher25Parser$DynamicLabelTypeContext, "Cypher25Parser$DynamicLabelTypeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicLabelTypeContext_getRuleIndex)], -oncipv_Cypher25Parser$DynamicExpressionContext, "Cypher25Parser$DynamicExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$PathTokenContext, "Cypher25Parser$PathTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PathTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$GroupTokenContext, "Cypher25Parser$GroupTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GroupTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$ShortestPathPatternContext, "Cypher25Parser$ShortestPathPatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShortestPathPatternContext_getRuleIndex)], -oncipv_Cypher25Parser$PatternElementContext, "Cypher25Parser$PatternElementContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternElementContext_getRuleIndex)], -oncipv_Cypher25Parser$AscTokenContext, "Cypher25Parser$AscTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$AscTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$DescTokenContext, "Cypher25Parser$DescTokenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DescTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$Expression10Context, "Cypher5Parser$Expression10Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression10Context_getRuleIndex)], -oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context, "Cypher5Parser$UnescapedLabelSymbolicNameString_Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$UnescapedLabelSymbolicNameString_Context_getRuleIndex)], -oncipv_Cypher5Parser$TypeNullabilityContext, "Cypher5Parser$TypeNullabilityContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypeNullabilityContext_getRuleIndex)], -oncipv_Cypher5Parser$TypeListSuffixContext, "Cypher5Parser$TypeListSuffixContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypeListSuffixContext_getRuleIndex)], -oncipv_Cypher5Parser$TypeNameContext, "Cypher5Parser$TypeNameContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TypeNameContext_getRuleIndex)], -oncipv_Cypher5Parser$ElementTokenContext, "Cypher5Parser$ElementTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ElementTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$NodeTokenContext, "Cypher5Parser$NodeTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NodeTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$RelTokenContext, "Cypher5Parser$RelTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RelTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$GlobContext, "Cypher5Parser$GlobContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GlobContext_getRuleIndex)], -oncipv_Cypher5Parser$SignedIntegerLiteralContext, "Cypher5Parser$SignedIntegerLiteralContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SignedIntegerLiteralContext_getRuleIndex)], -oncipv_Cypher5Parser$ReturnItemContext, "Cypher5Parser$ReturnItemContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReturnItemContext_getRuleIndex)], -oncipv_Cypher5Parser$InsertNodePatternContext, "Cypher5Parser$InsertNodePatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertNodePatternContext_getRuleIndex)], -oncipv_Cypher5Parser$InsertRelationshipPatternContext, "Cypher5Parser$InsertRelationshipPatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertRelationshipPatternContext_getRuleIndex)], -oncipv_Cypher5Parser$Expression1Context, "Cypher5Parser$Expression1Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression1Context_getRuleIndex)], -oncipv_Cypher5Parser$DynamicPropertyContext, "Cypher5Parser$DynamicPropertyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicPropertyContext_getRuleIndex)], -oncipv_Cypher5Parser$DynamicLabelTypeContext, "Cypher5Parser$DynamicLabelTypeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicLabelTypeContext_getRuleIndex)], -oncipv_Cypher5Parser$DynamicExpressionContext, "Cypher5Parser$DynamicExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$PathTokenContext, "Cypher5Parser$PathTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PathTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$GroupTokenContext, "Cypher5Parser$GroupTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GroupTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$ShortestPathPatternContext, "Cypher5Parser$ShortestPathPatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShortestPathPatternContext_getRuleIndex)], -oncipv_Cypher5Parser$PatternElementContext, "Cypher5Parser$PatternElementContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternElementContext_getRuleIndex)], -oncipv_Cypher5Parser$AscTokenContext, "Cypher5Parser$AscTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$AscTokenContext_getRuleIndex)], -oncipv_Cypher5Parser$DescTokenContext, "Cypher5Parser$DescTokenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DescTokenContext_getRuleIndex)], -oncipv_Cypher25Parser$Expression9Context, "Cypher25Parser$Expression9Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression9Context_getRuleIndex)], -oncipv_Cypher25Parser$GlobRecursiveContext, "Cypher25Parser$GlobRecursiveContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GlobRecursiveContext_getRuleIndex)], -oncipv_Cypher25Parser$InsertNodeLabelExpressionContext, "Cypher25Parser$InsertNodeLabelExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertNodeLabelExpressionContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext, "Cypher25Parser$InsertRelationshipLabelExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$InsertRelationshipLabelExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$LiteralContext, "Cypher25Parser$LiteralContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LiteralContext_getRuleIndex)], -oncipv_Cypher25Parser$NummericLiteralContext, "Cypher25Parser$NummericLiteralContext", 46, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$StringsLiteralContext, "Cypher25Parser$StringsLiteralContext", 46, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$BooleanLiteralContext, "Cypher25Parser$BooleanLiteralContext", 46, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$KeywordLiteralContext, "Cypher25Parser$KeywordLiteralContext", 46, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$OtherLiteralContext, "Cypher25Parser$OtherLiteralContext", 46, oncipv_Cypher25Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$CaseExpressionContext, "Cypher25Parser$CaseExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CaseExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$ExtendedCaseExpressionContext, "Cypher25Parser$ExtendedCaseExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExtendedCaseExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$CountStarContext, "Cypher25Parser$CountStarContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CountStarContext_getRuleIndex)], -oncipv_Cypher25Parser$ExistsExpressionContext, "Cypher25Parser$ExistsExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExistsExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$CountExpressionContext, "Cypher25Parser$CountExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CountExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$CollectExpressionContext, "Cypher25Parser$CollectExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CollectExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$MapProjectionContext, "Cypher25Parser$MapProjectionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MapProjectionContext_getRuleIndex)], -oncipv_Cypher25Parser$ListComprehensionContext, "Cypher25Parser$ListComprehensionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ListComprehensionContext_getRuleIndex)], -oncipv_Cypher25Parser$ListLiteralContext, "Cypher25Parser$ListLiteralContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ListLiteralContext_getRuleIndex)], -oncipv_Cypher25Parser$PatternComprehensionContext, "Cypher25Parser$PatternComprehensionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternComprehensionContext_getRuleIndex)], -oncipv_Cypher25Parser$ReduceExpressionContext, "Cypher25Parser$ReduceExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ReduceExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$ListItemsPredicateContext, "Cypher25Parser$ListItemsPredicateContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ListItemsPredicateContext_getRuleIndex)], -oncipv_Cypher25Parser$NormalizeFunctionContext, "Cypher25Parser$NormalizeFunctionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NormalizeFunctionContext_getRuleIndex)], -oncipv_Cypher25Parser$TrimFunctionContext, "Cypher25Parser$TrimFunctionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$TrimFunctionContext_getRuleIndex)], -oncipv_Cypher25Parser$PatternExpressionContext, "Cypher25Parser$PatternExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PatternExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$ShortestPathExpressionContext, "Cypher25Parser$ShortestPathExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ShortestPathExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$ParenthesizedExpressionContext, "Cypher25Parser$ParenthesizedExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ParenthesizedExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$NodePatternContext, "Cypher25Parser$NodePatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NodePatternContext_getRuleIndex)], -oncipv_Cypher25Parser$ParenthesizedPathContext, "Cypher25Parser$ParenthesizedPathContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ParenthesizedPathContext_getRuleIndex)], -oncipv_Cypher25Parser$RelationshipPatternContext, "Cypher25Parser$RelationshipPatternContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$RelationshipPatternContext_getRuleIndex)], -oncipv_Cypher25Parser$QuantifierContext, "Cypher25Parser$QuantifierContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$QuantifierContext_getRuleIndex)], -oncipv_Cypher5Parser$Expression9Context, "Cypher5Parser$Expression9Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression9Context_getRuleIndex)], -oncipv_Cypher5Parser$GlobRecursiveContext, "Cypher5Parser$GlobRecursiveContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GlobRecursiveContext_getRuleIndex)], -oncipv_Cypher5Parser$InsertNodeLabelExpressionContext, "Cypher5Parser$InsertNodeLabelExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertNodeLabelExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext, "Cypher5Parser$InsertRelationshipLabelExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$InsertRelationshipLabelExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$LiteralContext, "Cypher5Parser$LiteralContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LiteralContext_getRuleIndex)], -oncipv_Cypher5Parser$NummericLiteralContext, "Cypher5Parser$NummericLiteralContext", 51, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$StringsLiteralContext, "Cypher5Parser$StringsLiteralContext", 51, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$BooleanLiteralContext, "Cypher5Parser$BooleanLiteralContext", 51, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$KeywordLiteralContext, "Cypher5Parser$KeywordLiteralContext", 51, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$OtherLiteralContext, "Cypher5Parser$OtherLiteralContext", 51, oncipv_Cypher5Parser$LiteralContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$CaseExpressionContext, "Cypher5Parser$CaseExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CaseExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$ExtendedCaseExpressionContext, "Cypher5Parser$ExtendedCaseExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExtendedCaseExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$CountStarContext, "Cypher5Parser$CountStarContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CountStarContext_getRuleIndex)], -oncipv_Cypher5Parser$ExistsExpressionContext, "Cypher5Parser$ExistsExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExistsExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$CountExpressionContext, "Cypher5Parser$CountExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CountExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$CollectExpressionContext, "Cypher5Parser$CollectExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CollectExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$MapProjectionContext, "Cypher5Parser$MapProjectionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MapProjectionContext_getRuleIndex)], -oncipv_Cypher5Parser$ListComprehensionContext, "Cypher5Parser$ListComprehensionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ListComprehensionContext_getRuleIndex)], -oncipv_Cypher5Parser$ListLiteralContext, "Cypher5Parser$ListLiteralContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ListLiteralContext_getRuleIndex)], -oncipv_Cypher5Parser$PatternComprehensionContext, "Cypher5Parser$PatternComprehensionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternComprehensionContext_getRuleIndex)], -oncipv_Cypher5Parser$ReduceExpressionContext, "Cypher5Parser$ReduceExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ReduceExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$ListItemsPredicateContext, "Cypher5Parser$ListItemsPredicateContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ListItemsPredicateContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher5Parser$NormalizeFunctionContext, "Cypher5Parser$NormalizeFunctionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NormalizeFunctionContext_getRuleIndex)], -oncipv_Cypher5Parser$TrimFunctionContext, "Cypher5Parser$TrimFunctionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$TrimFunctionContext_getRuleIndex)], -oncipv_Cypher5Parser$PatternExpressionContext, "Cypher5Parser$PatternExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PatternExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$ShortestPathExpressionContext, "Cypher5Parser$ShortestPathExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ShortestPathExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$ParenthesizedExpressionContext, "Cypher5Parser$ParenthesizedExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ParenthesizedExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$NodePatternContext, "Cypher5Parser$NodePatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NodePatternContext_getRuleIndex)], -oncipv_Cypher5Parser$ParenthesizedPathContext, "Cypher5Parser$ParenthesizedPathContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ParenthesizedPathContext_getRuleIndex)], -oncipv_Cypher5Parser$RelationshipPatternContext, "Cypher5Parser$RelationshipPatternContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$RelationshipPatternContext_getRuleIndex)], -oncipv_Cypher5Parser$QuantifierContext, "Cypher5Parser$QuantifierContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$QuantifierContext_getRuleIndex)], -oncipv_Cypher25Parser$Expression8Context, "Cypher25Parser$Expression8Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression8Context_getRuleIndex)], -oncipv_Cypher25Parser$GlobPartContext, "Cypher25Parser$GlobPartContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$GlobPartContext_getRuleIndex)], -oncipv_Cypher25Parser$NumberLiteralContext, "Cypher25Parser$NumberLiteralContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NumberLiteralContext_getRuleIndex)], -oncipv_Cypher25Parser$CaseAlternativeContext, "Cypher25Parser$CaseAlternativeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$CaseAlternativeContext_getRuleIndex)], -oncipv_Cypher25Parser$ExtendedCaseAlternativeContext, "Cypher25Parser$ExtendedCaseAlternativeContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExtendedCaseAlternativeContext_getRuleIndex)], -oncipv_Cypher25Parser$MapProjectionElementContext, "Cypher25Parser$MapProjectionElementContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$MapProjectionElementContext_getRuleIndex)], -oncipv_Cypher25Parser$PathPatternNonEmptyContext, "Cypher25Parser$PathPatternNonEmptyContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PathPatternNonEmptyContext_getRuleIndex)], -oncipv_Cypher25Parser$NormalFormContext, "Cypher25Parser$NormalFormContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$NormalFormContext_getRuleIndex)], -oncipv_Cypher25Parser$LabelExpressionContext, "Cypher25Parser$LabelExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$PropertiesContext, "Cypher25Parser$PropertiesContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PropertiesContext_getRuleIndex)], -oncipv_Cypher25Parser$PathLengthContext, "Cypher25Parser$PathLengthContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PathLengthContext_getRuleIndex)], -oncipv_Cypher5Parser$Expression8Context, "Cypher5Parser$Expression8Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression8Context_getRuleIndex)], -oncipv_Cypher5Parser$GlobPartContext, "Cypher5Parser$GlobPartContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$GlobPartContext_getRuleIndex)], -oncipv_Cypher5Parser$NumberLiteralContext, "Cypher5Parser$NumberLiteralContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NumberLiteralContext_getRuleIndex)], -oncipv_Cypher5Parser$CaseAlternativeContext, "Cypher5Parser$CaseAlternativeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$CaseAlternativeContext_getRuleIndex)], -oncipv_Cypher5Parser$ExtendedCaseAlternativeContext, "Cypher5Parser$ExtendedCaseAlternativeContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExtendedCaseAlternativeContext_getRuleIndex)], -oncipv_Cypher5Parser$MapProjectionElementContext, "Cypher5Parser$MapProjectionElementContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$MapProjectionElementContext_getRuleIndex)], -oncipv_Cypher5Parser$PathPatternNonEmptyContext, "Cypher5Parser$PathPatternNonEmptyContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PathPatternNonEmptyContext_getRuleIndex)], -oncipv_Cypher5Parser$NormalFormContext, "Cypher5Parser$NormalFormContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$NormalFormContext_getRuleIndex)], -oncipv_Cypher5Parser$LabelExpressionContext, "Cypher5Parser$LabelExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpressionContext_getRuleIndex)], -oncipv_Cypher5Parser$PropertiesContext, "Cypher5Parser$PropertiesContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PropertiesContext_getRuleIndex)], -oncipv_Cypher5Parser$PathLengthContext, "Cypher5Parser$PathLengthContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PathLengthContext_getRuleIndex)], -oncipv_Cypher25Parser$Expression7Context, "Cypher25Parser$Expression7Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression7Context_getRuleIndex)], -oncipv_Cypher25Parser$ExtendedWhenContext, "Cypher25Parser$ExtendedWhenContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ExtendedWhenContext_getRuleIndex)], -oncipv_Cypher25Parser$WhenStringOrListContext, "Cypher25Parser$WhenStringOrListContext", 46, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$WhenNullContext, "Cypher25Parser$WhenNullContext", 46, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$WhenTypeContext, "Cypher25Parser$WhenTypeContext", 46, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$WhenFormContext, "Cypher25Parser$WhenFormContext", 46, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$WhenComparatorContext, "Cypher25Parser$WhenComparatorContext", 46, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$WhenEqualsContext, "Cypher25Parser$WhenEqualsContext", 46, oncipv_Cypher25Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$LabelExpression4Context, "Cypher25Parser$LabelExpression4Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression4Context_getRuleIndex)], -oncipv_Cypher25Parser$LabelExpression4IsContext, "Cypher25Parser$LabelExpression4IsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression4IsContext_getRuleIndex)], -oncipv_Cypher5Parser$Expression7Context, "Cypher5Parser$Expression7Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression7Context_getRuleIndex)], -oncipv_Cypher5Parser$ExtendedWhenContext, "Cypher5Parser$ExtendedWhenContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ExtendedWhenContext_getRuleIndex)], -oncipv_Cypher5Parser$WhenStringOrListContext, "Cypher5Parser$WhenStringOrListContext", 51, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$WhenNullContext, "Cypher5Parser$WhenNullContext", 51, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$WhenTypeContext, "Cypher5Parser$WhenTypeContext", 51, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$WhenFormContext, "Cypher5Parser$WhenFormContext", 51, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$WhenComparatorContext, "Cypher5Parser$WhenComparatorContext", 51, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$WhenEqualsContext, "Cypher5Parser$WhenEqualsContext", 51, oncipv_Cypher5Parser$ExtendedWhenContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$LabelExpression4Context, "Cypher5Parser$LabelExpression4Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression4Context_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher5Parser$LabelExpression4IsContext, "Cypher5Parser$LabelExpression4IsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression4IsContext_getRuleIndex)], -oncipv_Cypher25Parser$ComparisonExpression6Context, "Cypher25Parser$ComparisonExpression6Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$ComparisonExpression6Context_getRuleIndex)], -oncipv_Cypher25Parser$StringAndListComparisonContext, "Cypher25Parser$StringAndListComparisonContext", 46, oncipv_Cypher25Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$NullComparisonContext, "Cypher25Parser$NullComparisonContext", 46, oncipv_Cypher25Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$TypeComparisonContext, "Cypher25Parser$TypeComparisonContext", 46, oncipv_Cypher25Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$NormalFormComparisonContext, "Cypher25Parser$NormalFormComparisonContext", 46, oncipv_Cypher25Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$Expression6Context, "Cypher25Parser$Expression6Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression6Context_getRuleIndex)], -oncipv_Cypher25Parser$LabelExpression3Context, "Cypher25Parser$LabelExpression3Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression3Context_getRuleIndex)], -oncipv_Cypher25Parser$LabelExpression3IsContext, "Cypher25Parser$LabelExpression3IsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression3IsContext_getRuleIndex)], -oncipv_Cypher5Parser$ComparisonExpression6Context, "Cypher5Parser$ComparisonExpression6Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$ComparisonExpression6Context_getRuleIndex)], -oncipv_Cypher5Parser$StringAndListComparisonContext, "Cypher5Parser$StringAndListComparisonContext", 51, oncipv_Cypher5Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$NullComparisonContext, "Cypher5Parser$NullComparisonContext", 51, oncipv_Cypher5Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$TypeComparisonContext, "Cypher5Parser$TypeComparisonContext", 51, oncipv_Cypher5Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$NormalFormComparisonContext, "Cypher5Parser$NormalFormComparisonContext", 51, oncipv_Cypher5Parser$ComparisonExpression6Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$Expression6Context, "Cypher5Parser$Expression6Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression6Context_getRuleIndex)], -oncipv_Cypher5Parser$LabelExpression3Context, "Cypher5Parser$LabelExpression3Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression3Context_getRuleIndex)], -oncipv_Cypher5Parser$LabelExpression3IsContext, "Cypher5Parser$LabelExpression3IsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression3IsContext_getRuleIndex)], -oncipv_Cypher25Parser$Expression5Context, "Cypher25Parser$Expression5Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression5Context_getRuleIndex)], -oncipv_Cypher25Parser$LabelExpression2Context, "Cypher25Parser$LabelExpression2Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression2Context_getRuleIndex)], -oncipv_Cypher25Parser$LabelExpression2IsContext, "Cypher25Parser$LabelExpression2IsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression2IsContext_getRuleIndex)], -oncipv_Cypher5Parser$Expression5Context, "Cypher5Parser$Expression5Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression5Context_getRuleIndex)], -oncipv_Cypher5Parser$LabelExpression2Context, "Cypher5Parser$LabelExpression2Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression2Context_getRuleIndex)], -oncipv_Cypher5Parser$LabelExpression2IsContext, "Cypher5Parser$LabelExpression2IsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression2IsContext_getRuleIndex)], -oncipv_Cypher25Parser$Expression4Context, "Cypher25Parser$Expression4Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression4Context_getRuleIndex)], -oncipv_Cypher25Parser$LabelExpression1Context, "Cypher25Parser$LabelExpression1Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression1Context_getRuleIndex)], -oncipv_Cypher25Parser$LabelNameContext, "Cypher25Parser$LabelNameContext", 46, oncipv_Cypher25Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$DynamicLabelContext, "Cypher25Parser$DynamicLabelContext", 46, oncipv_Cypher25Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ParenthesizedLabelExpressionContext, "Cypher25Parser$ParenthesizedLabelExpressionContext", 46, oncipv_Cypher25Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$AnyLabelContext, "Cypher25Parser$AnyLabelContext", 46, oncipv_Cypher25Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$LabelExpression1IsContext, "Cypher25Parser$LabelExpression1IsContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$LabelExpression1IsContext_getRuleIndex)], -oncipv_Cypher25Parser$LabelNameIsContext, "Cypher25Parser$LabelNameIsContext", 46, oncipv_Cypher25Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$DynamicLabelIsContext, "Cypher25Parser$DynamicLabelIsContext", 46, oncipv_Cypher25Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$ParenthesizedLabelExpressionIsContext, "Cypher25Parser$ParenthesizedLabelExpressionIsContext", 46, oncipv_Cypher25Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$AnyLabelIsContext, "Cypher25Parser$AnyLabelIsContext", 46, oncipv_Cypher25Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$Expression4Context, "Cypher5Parser$Expression4Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression4Context_getRuleIndex)], -oncipv_Cypher5Parser$LabelExpression1Context, "Cypher5Parser$LabelExpression1Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression1Context_getRuleIndex)], -oncipv_Cypher5Parser$LabelNameContext, "Cypher5Parser$LabelNameContext", 51, oncipv_Cypher5Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$DynamicLabelContext, "Cypher5Parser$DynamicLabelContext", 51, oncipv_Cypher5Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ParenthesizedLabelExpressionContext, "Cypher5Parser$ParenthesizedLabelExpressionContext", 51, oncipv_Cypher5Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$AnyLabelContext, "Cypher5Parser$AnyLabelContext", 51, oncipv_Cypher5Parser$LabelExpression1Context, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$LabelExpression1IsContext, "Cypher5Parser$LabelExpression1IsContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$LabelExpression1IsContext_getRuleIndex)], -oncipv_Cypher5Parser$LabelNameIsContext, "Cypher5Parser$LabelNameIsContext", 51, oncipv_Cypher5Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$DynamicLabelIsContext, "Cypher5Parser$DynamicLabelIsContext", 51, oncipv_Cypher5Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$ParenthesizedLabelExpressionIsContext, "Cypher5Parser$ParenthesizedLabelExpressionIsContext", 51, oncipv_Cypher5Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$AnyLabelIsContext, "Cypher5Parser$AnyLabelIsContext", 51, oncipv_Cypher5Parser$LabelExpression1IsContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$Expression3Context, "Cypher25Parser$Expression3Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression3Context_getRuleIndex)], -oncipv_Cypher25Parser$DynamicAnyAllExpressionContext, "Cypher25Parser$DynamicAnyAllExpressionContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$DynamicAnyAllExpressionContext_getRuleIndex)], -oncipv_Cypher25Parser$SymbolicLabelNameStringContext, "Cypher25Parser$SymbolicLabelNameStringContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$SymbolicLabelNameStringContext_getRuleIndex)], -oncipv_Cypher5Parser$Expression3Context, "Cypher5Parser$Expression3Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression3Context_getRuleIndex)], -oncipv_Cypher5Parser$DynamicAnyAllExpressionContext, "Cypher5Parser$DynamicAnyAllExpressionContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$DynamicAnyAllExpressionContext_getRuleIndex)]]); -$rt_metadata([oncipv_Cypher5Parser$SymbolicLabelNameStringContext, "Cypher5Parser$SymbolicLabelNameStringContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$SymbolicLabelNameStringContext_getRuleIndex)], -oncipv_Cypher25Parser$Expression2Context, "Cypher25Parser$Expression2Context", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$Expression2Context_getRuleIndex)], -oncipv_Cypher5Parser$Expression2Context, "Cypher5Parser$Expression2Context", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$Expression2Context_getRuleIndex)], -oncipv_Cypher25Parser$PostFixContext, "Cypher25Parser$PostFixContext", 46, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher25Parser$PostFixContext_getRuleIndex)], -oncipv_Cypher25Parser$PropertyPostfixContext, "Cypher25Parser$PropertyPostfixContext", 46, oncipv_Cypher25Parser$PostFixContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$LabelPostfixContext, "Cypher25Parser$LabelPostfixContext", 46, oncipv_Cypher25Parser$PostFixContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$IndexPostfixContext, "Cypher25Parser$IndexPostfixContext", 46, oncipv_Cypher25Parser$PostFixContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$RangePostfixContext, "Cypher25Parser$RangePostfixContext", 46, oncipv_Cypher25Parser$PostFixContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$PostFixContext, "Cypher5Parser$PostFixContext", 51, oncip_AstRuleCtx, [], 0, 3, 0, 0, ["$getRuleIndex", $rt_wrapFunction0(oncipv_Cypher5Parser$PostFixContext_getRuleIndex)], -oncipv_Cypher5Parser$PropertyPostfixContext, "Cypher5Parser$PropertyPostfixContext", 51, oncipv_Cypher5Parser$PostFixContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$LabelPostfixContext, "Cypher5Parser$LabelPostfixContext", 51, oncipv_Cypher5Parser$PostFixContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$IndexPostfixContext, "Cypher5Parser$IndexPostfixContext", 51, oncipv_Cypher5Parser$PostFixContext, [], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$RangePostfixContext, "Cypher5Parser$RangePostfixContext", 51, oncipv_Cypher5Parser$PostFixContext, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_132, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_133, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_134, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_132, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_133, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_134, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_649, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_650, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_652, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_653, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_656, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_660, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_661, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_662, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_665, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_666, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_667, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_669, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_135, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_135, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_136, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_137, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_138, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_139, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_138, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$9_139, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_140, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_141, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_142, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -364183,6 +292472,435 @@ onciu_RewritableJavascript$PROXY$9_144, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_145, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_146, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_147, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_136, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_137, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_138, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_139, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_140, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_141, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_142, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_143, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_144, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_145, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_146, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_147, 0, jl_Object, [], 0, 3, 0, 0, 0, +s_Enumeration$ValueOrdering$, "Enumeration$ValueOrdering$", 15, jl_Object, [sm_Ordering], 0, 3, 0, 0, 0, +sc_SpecificIterableFactory, 0, jl_Object, [sc_Factory], 3, 3, 0, 0, 0, +s_Enumeration$ValueSet$, "Enumeration$ValueSet$", 15, jl_Object, [sc_SpecificIterableFactory, ji_Serializable], 0, 3, 0, 0, 0, +s_Enumeration$ValueSet, "Enumeration$ValueSet", 15, sci_AbstractSet, [sci_SortedSet, sc_StrictOptimizedIterableOps, ji_Serializable], 0, 3, 0, 0, 0, +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2_apply)], +oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3_apply)], +oncia_ShowProceduresClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_0_apply)], +oncia_ShowFunctionsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_0_apply)], +oncia_TerminateTransactionsClause$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0_apply0)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_1_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildProcedureClauses$lambda$_11_0_apply0)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildFunctionClauses$lambda$_10_0_apply0)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_1_apply0)], +oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0_apply)], +jusi_LimitingIntStreamImpl, 0, jusi_SimpleIntStreamImpl, [], 0, 3, 0, 0, ["$next1", $rt_wrapFunction1(jusi_LimitingIntStreamImpl_next)], +jusi_SkippingIntStreamImpl, 0, jusi_SimpleIntStreamImpl, [], 0, 3, 0, 0, ["$next1", $rt_wrapFunction1(jusi_SkippingIntStreamImpl_next)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildConstraintClauses$lambda$_8_0_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildSettingsClauses$lambda$_12_0_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildShowTransactions$lambda$_13_0_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildIndexClauses$lambda$_9_0_apply0)], +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0_apply)], +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1_apply)], +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2_apply)]]); +$rt_metadata([oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3_apply)], +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4_apply)], +juc_CopyOnWriteArrayList$ListIteratorImpl, 0, jl_Object, [ju_ListIterator], 0, 0, 0, 0, 0, +ju_AbstractList$SubAbstractList$SubAbstractListIterator, 0, jl_Object, [ju_ListIterator], 4, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_AbstractList$SubAbstractList$SubAbstractListIterator_hasNext), "$next", $rt_wrapFunction0(ju_AbstractList$SubAbstractList$SubAbstractListIterator_next)], +oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_0_apply)], +oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions$unnestConjunctions$lambda$_16_1_apply)], +onciu_Last, "Last", 52, jl_Object, [onciu_NonEmptyList, s_Product, ji_Serializable], 4, 3, 0, 0, ["$map4", $rt_wrapFunction1(onciu_Last_map), "$mapAndPrependReversedTo", $rt_wrapFunction2(onciu_Last_mapAndPrependReversedTo), "$reverse4", $rt_wrapFunction0(onciu_Last_reverse), "$toIterable", $rt_wrapFunction0(onciu_Last_toIterable), "$toIndexedSeq", $rt_wrapFunction0(onciu_Last_toIndexedSeq), "$knownSize", $rt_wrapFunction0(onciu_Last_knownSize), "$head", $rt_wrapFunction0(onciu_Last_head), "$tailOption", $rt_wrapFunction0(onciu_Last_tailOption), +"$toString", $rt_wrapFunction0(onciu_Last_toString), "$iterator0", $rt_wrapFunction0(onciu_Last_iterator), "$productPrefix", $rt_wrapFunction0(onciu_Last_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Last_productArity), "$productElement", $rt_wrapFunction1(onciu_Last_productElement), "$productIterator", $rt_wrapFunction0(onciu_Last_productIterator), "$hashCode", $rt_wrapFunction0(onciu_Last_hashCode), "$equals", $rt_wrapFunction1(onciu_Last_equals)], +oncia_Remove$mapExpressions$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$mapExpressions$lambda$_68_0_apply)], +oncia_SetClause$mapExpressions$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$mapExpressions$lambda$_68_0_apply)], +oncia_Foreach$mapExpressions$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Foreach$mapExpressions$lambda$_69_0_apply)], +oncia_Merge$mapExpressions$lambda$_73_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Merge$mapExpressions$lambda$_73_0_apply)], +oncia_Merge$mapExpressions$lambda$_73_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Merge$mapExpressions$lambda$_73_1_apply)], +ong_ErrorGqlStatusObjectImplementation$adjustPosition$lambda$_8_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(ong_ErrorGqlStatusObjectImplementation$adjustPosition$lambda$_8_0_accept)], +oncie_QuantifiedPath$allVariables$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_QuantifiedPath$allVariables$lambda$_9_0_apply)], +oncie_PathConcatenation$allVariables$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_PathConcatenation$allVariables$lambda$_4_0_apply)], +oncia_SingleQuery$isCorrelated$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$isCorrelated$lambda$_67_0_apply)], +oncia_SingleQuery$importColumns$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$importColumns$lambda$_70_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1_applyOrElse)], +oncia_OrderBy$checkIllegalOrdering$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_OrderBy$checkIllegalOrdering$lambda$_11_0_apply)], +oncia_OrderBy$checkIllegalOrdering$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_OrderBy$checkIllegalOrdering$lambda$_11_1_apply)], +oncia_OrderBy$checkIllegalOrdering$lambda$_11_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_OrderBy$checkIllegalOrdering$lambda$_11_2_apply)], +oncia_Order$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_OrderBy$checkIllegalOrdering$lambda$_11_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_OrderBy$checkIllegalOrdering$lambda$_11_3_apply)], +oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0_apply)], +oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0_apply)], +oncie_MapExpression$asCanonicalStringVal$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MapExpression$asCanonicalStringVal$lambda$_5_0_apply)], +jl_Iterable$1, 0, jl_Object, [ju_Spliterator], 0, 0, 0, 0, ["$tryAdvance", $rt_wrapFunction1(jl_Iterable$1_tryAdvance), "$estimateSize0", $rt_wrapFunction0(jl_Iterable$1_estimateSize)], +ju_LinkedHashMapEntrySet, 0, ju_AbstractSet, [ju_SequencedSet], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$iterator", $rt_wrapFunction0(ju_LinkedHashMapEntrySet_iterator)], +oncia_ShowProceduresClause, "ShowProceduresClause", 35, jl_Object, [oncia_CommandClause, oncia_CommandClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowProceduresClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowProceduresClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowProceduresClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowProceduresClause_shouldRunQPPChecks), +"$semanticCheckFold", $rt_wrapFunction2(oncia_ShowProceduresClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowProceduresClause_declareVariable), "$error4", $rt_wrapFunction2(oncia_ShowProceduresClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowProceduresClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowProceduresClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowProceduresClause_folder), "$columnsAsMap", $rt_wrapFunction0(oncia_ShowProceduresClause_columnsAsMap), +"$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowProceduresClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowProceduresClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$where", $rt_wrapFunction0(oncia_ShowProceduresClause_where), +"$yieldItems", $rt_wrapFunction0(oncia_ShowProceduresClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowProceduresClause_yieldAll), "$yieldWith", $rt_wrapFunction0(oncia_ShowProceduresClause_yieldWith), "$position", $rt_wrapFunction0(oncia_ShowProceduresClause_position), "$name", $rt_wrapFunction0(oncia_ShowProceduresClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowProceduresClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowProceduresClause_unfilteredColumns), +"$moveWhereToProjection", $rt_wrapFunction0(oncia_ShowProceduresClause_moveWhereToProjection), "$moveOutWith", $rt_wrapFunction0(oncia_ShowProceduresClause_moveOutWith), "$productPrefix", $rt_wrapFunction0(oncia_ShowProceduresClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowProceduresClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowProceduresClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowProceduresClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowProceduresClause_hashCode), +"$toString", $rt_wrapFunction0(oncia_ShowProceduresClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowProceduresClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowProceduresClause_dup)], +oncia_ShowFunctionsClause, "ShowFunctionsClause", 35, jl_Object, [oncia_CommandClause, oncia_CommandClauseAllowedOnSystem, ji_Serializable], 0, 3, [0,0,0], 0, ["$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_ShowFunctionsClause_clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_ShowFunctionsClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_ShowFunctionsClause_semanticCheck), "$shouldRunQPPChecks", $rt_wrapFunction0(oncia_ShowFunctionsClause_shouldRunQPPChecks), +"$semanticCheckFold", $rt_wrapFunction2(oncia_ShowFunctionsClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_ShowFunctionsClause_declareVariable), "$error4", $rt_wrapFunction2(oncia_ShowFunctionsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_ShowFunctionsClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_ShowFunctionsClause_foldedOver), "$folder", $rt_wrapFunction0(oncia_ShowFunctionsClause_folder), "$columnsAsMap", $rt_wrapFunction0(oncia_ShowFunctionsClause_columnsAsMap), +"$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_ShowFunctionsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_ShowFunctionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), "$where", $rt_wrapFunction0(oncia_ShowFunctionsClause_where), +"$yieldItems", $rt_wrapFunction0(oncia_ShowFunctionsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_ShowFunctionsClause_yieldAll), "$yieldWith", $rt_wrapFunction0(oncia_ShowFunctionsClause_yieldWith), "$position", $rt_wrapFunction0(oncia_ShowFunctionsClause_position), "$name", $rt_wrapFunction0(oncia_ShowFunctionsClause_name), "$originalColumns", $rt_wrapFunction0(oncia_ShowFunctionsClause_originalColumns), "$unfilteredColumns", $rt_wrapFunction0(oncia_ShowFunctionsClause_unfilteredColumns), "$moveWhereToProjection", +$rt_wrapFunction0(oncia_ShowFunctionsClause_moveWhereToProjection), "$moveOutWith", $rt_wrapFunction0(oncia_ShowFunctionsClause_moveOutWith), "$productPrefix", $rt_wrapFunction0(oncia_ShowFunctionsClause_productPrefix), "$productArity", $rt_wrapFunction0(oncia_ShowFunctionsClause_productArity), "$productElement", $rt_wrapFunction1(oncia_ShowFunctionsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_ShowFunctionsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ShowFunctionsClause_hashCode), +"$toString", $rt_wrapFunction0(oncia_ShowFunctionsClause_toString), "$equals", $rt_wrapFunction1(oncia_ShowFunctionsClause_equals), "$dup", $rt_wrapFunction1(oncia_ShowFunctionsClause_dup)], +oncia_TerminateTransactionsClause, "TerminateTransactionsClause", 35, jl_Object, [oncia_TransactionsCommandClause, ji_Serializable], 0, 3, [0,0,0], 0, ["$org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$CommandClauseWithNames$$super$clauseSpecificSemanticCheck), "$returnVariables", $rt_wrapFunction0(oncia_TerminateTransactionsClause_returnVariables), "$semanticCheck", $rt_wrapFunction0(oncia_TerminateTransactionsClause_semanticCheck), +"$shouldRunQPPChecks", $rt_wrapFunction0(oncia_TerminateTransactionsClause_shouldRunQPPChecks), "$semanticCheckFold", $rt_wrapFunction2(oncia_TerminateTransactionsClause_semanticCheckFold), "$declareVariable", $rt_wrapFunction2(oncia_TerminateTransactionsClause_declareVariable), "$error4", $rt_wrapFunction2(oncia_TerminateTransactionsClause_error), "$asCanonicalStringVal", $rt_wrapFunction0(oncia_TerminateTransactionsClause_asCanonicalStringVal), "$foldedOver", $rt_wrapFunction0(oncia_TerminateTransactionsClause_foldedOver), +"$folder", $rt_wrapFunction0(oncia_TerminateTransactionsClause_folder), "$columnsAsMap", $rt_wrapFunction0(oncia_TerminateTransactionsClause_columnsAsMap), "$org$neo4j$cypher$internal$ast$Clause$$stringifier", $rt_wrapFunction0(oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$Clause$$stringifier), "$SetExtractor", $rt_wrapFunction0(oncia_TerminateTransactionsClause_SetExtractor), "$org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq", $rt_wrapFunction1(oncia_TerminateTransactionsClause_org$neo4j$cypher$internal$ast$Clause$_setter_$org$neo4j$cypher$internal$ast$Clause$$stringifier_$eq), +"$originalColumns", $rt_wrapFunction0(oncia_TerminateTransactionsClause_originalColumns), "$names", $rt_wrapFunction0(oncia_TerminateTransactionsClause_names), "$yieldItems", $rt_wrapFunction0(oncia_TerminateTransactionsClause_yieldItems), "$yieldAll", $rt_wrapFunction0(oncia_TerminateTransactionsClause_yieldAll), "$yieldWith", $rt_wrapFunction0(oncia_TerminateTransactionsClause_yieldWith), "$position", $rt_wrapFunction0(oncia_TerminateTransactionsClause_position), "$name", $rt_wrapFunction0(oncia_TerminateTransactionsClause_name), +"$unfilteredColumns", $rt_wrapFunction0(oncia_TerminateTransactionsClause_unfilteredColumns), "$clauseSpecificSemanticCheck", $rt_wrapFunction0(oncia_TerminateTransactionsClause_clauseSpecificSemanticCheck), "$where", $rt_wrapFunction0(oncia_TerminateTransactionsClause_where), "$moveWhereToProjection", $rt_wrapFunction0(oncia_TerminateTransactionsClause_moveWhereToProjection), "$moveOutWith", $rt_wrapFunction0(oncia_TerminateTransactionsClause_moveOutWith), "$productPrefix", $rt_wrapFunction0(oncia_TerminateTransactionsClause_productPrefix), +"$productArity", $rt_wrapFunction0(oncia_TerminateTransactionsClause_productArity), "$productElement", $rt_wrapFunction1(oncia_TerminateTransactionsClause_productElement), "$productIterator", $rt_wrapFunction0(oncia_TerminateTransactionsClause_productIterator), "$hashCode", $rt_wrapFunction0(oncia_TerminateTransactionsClause_hashCode), "$toString", $rt_wrapFunction0(oncia_TerminateTransactionsClause_toString), "$equals", $rt_wrapFunction1(oncia_TerminateTransactionsClause_equals), "$dup", $rt_wrapFunction1(oncia_TerminateTransactionsClause_dup)], +jnc_CharsetEncoder, 0, jl_Object, [], 1, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0_apply0)], +sc_View$$from$lambda$_18_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, +sc_View$$anon$1, "View$$anon$1", 19, sc_AbstractView, [], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$$anon$1_iterator)], +onciu_Fby, "Fby", 52, jl_Object, [onciu_NonEmptyList, s_Product, ji_Serializable], 4, 3, 0, 0, ["$map4", $rt_wrapFunction1(onciu_Fby_map), "$mapAndPrependReversedTo", $rt_wrapFunction2(onciu_Fby_mapAndPrependReversedTo), "$reverse4", $rt_wrapFunction0(onciu_Fby_reverse), "$toIterable", $rt_wrapFunction0(onciu_Fby_toIterable), "$toIndexedSeq", $rt_wrapFunction0(onciu_Fby_toIndexedSeq), "$knownSize", $rt_wrapFunction0(onciu_Fby_knownSize), "$head", $rt_wrapFunction0(onciu_Fby_head), "$tailOption", $rt_wrapFunction0(onciu_Fby_tailOption), +"$toString", $rt_wrapFunction0(onciu_Fby_toString), "$iterator0", $rt_wrapFunction0(onciu_Fby_iterator), "$productPrefix", $rt_wrapFunction0(onciu_Fby_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Fby_productArity), "$productElement", $rt_wrapFunction1(onciu_Fby_productElement), "$productIterator", $rt_wrapFunction0(onciu_Fby_productIterator), "$hashCode", $rt_wrapFunction0(onciu_Fby_hashCode), "$equals", $rt_wrapFunction1(onciu_Fby_equals)], +oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0_apply)], +jlr_Modifier, 0, jl_Object, [], 0, 3, 0, 0, 0, +jl_Class$MethodSignature, "Class$MethodSignature", 12, jl_Object, [], 4, 0, 0, 0, ["$equals", $rt_wrapFunction1(jl_Class$MethodSignature_equals), "$hashCode", $rt_wrapFunction0(jl_Class$MethodSignature_hashCode)], +oncia_ShowProceduresClause$_init_$lambda$_116_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowProceduresClause$_init_$lambda$_116_0_apply)], +oncia_ShowProceduresClause$_init_$lambda$_116_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowProceduresClause$_init_$lambda$_116_1_apply)], +oncia_ShowFunctionsClause$_init_$lambda$_117_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowFunctionsClause$_init_$lambda$_117_0_apply)], +oncia_ShowFunctionsClause$_init_$lambda$_117_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowFunctionsClause$_init_$lambda$_117_1_apply)], +oncia_TerminateTransactionsClause$_init_$lambda$_103_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_TerminateTransactionsClause$_init_$lambda$_103_0_apply)], +oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$$anonfun$returnVariables$1$lambda$_38_0_apply)], +oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0_apply)], +onih_NameUtil, 0, jl_Object, [], 0, 3, 0, onih_NameUtil_$callClinit, 0, +sc_IterableOnceOps$$anon$1, "IterableOnceOps$$anon$1", 19, sr_AbstractFunction1, [], 4, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOnceOps$$anon$1_apply)], +oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_111_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_111_0_apply)], +oncia_Union$$anonfun$defineUnionVariables$6$lambda$_56_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$6$lambda$_56_0_apply)]]); +$rt_metadata([oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +sci_LazyList$$from$lambda$_25_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$from$lambda$_25_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_0_apply)], +oncie_Ors, 0, oncie_Expression, [oncie_BooleanExpression, oncie_MultiOperatorExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_1_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_2_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_3_apply)], +oncia_CypherTypeName, 0, jl_Object, [oncias_SemanticCheckable, oncias_SemanticAnalysisTooling, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_4_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_5_apply)], +oncie_RelationshipUniquenessPredicate, 0, jl_Object, [oncie_BooleanExpression], 3, 3, 0, 0, 0, +oncie_DifferentRelationships, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, +oncie_NoneOfRelationships, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_6_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_7_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_8_apply)], +oncie_Disjoint, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_9_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_10_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_11_apply)], +oncie_Unique, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_12_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_13_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_14_apply)], +oncie_VarLengthBound, 0, oncie_Expression, [oncie_BooleanExpression], 1, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_15_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_16_apply)], +oncie_PartialPredicate, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_17_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_18_apply)], +oncie_AndedPropertyInequalities, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_19_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_20_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_21, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_22, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_23_apply)], +oncie_ASTCachedProperty, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_CachedProperty, 0, oncie_LogicalProperty, [oncie_ASTCachedProperty, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_24_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_25_apply)], +oncie_CachedHasProperty, 0, oncie_LogicalProperty, [oncie_ASTCachedProperty, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_26_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_27_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28, "SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_28_apply)], +oncie_GetDegree, 0, oncie_Expression, [ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticFunctionCheck$, 0, jl_Object, [oncias_SemanticAnalysisTooling], 4, 3, 0, oncias_SemanticFunctionCheck$_$callClinit, ["$specifyType0", $rt_wrapFunction2(oncias_SemanticFunctionCheck$_specifyType), "$expectType", $rt_wrapFunction3(oncias_SemanticFunctionCheck$_expectType0), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncias_SemanticFunctionCheck$_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncias_SemanticFunctionCheck$_expectType$default$5), +"$types1", $rt_wrapFunction1(oncias_SemanticFunctionCheck$_types)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_29_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_30_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_31_apply)]]); +$rt_metadata([oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_32_apply)], +oncie_LabelOrTypeCheckExpression, 0, jl_Object, [oncie_BooleanExpression], 3, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_33_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_34_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_35_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_36_apply)], +oncie_LabelCheckExpression, 0, jl_Object, [oncie_BooleanExpression], 3, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_37_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_38_apply)], +oncie_DynamicLabelsOrTypeExpressions, 0, jl_Object, [oncie_LabelOrTypeCheckExpression], 3, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_39_apply)], +oncie_HasTypes, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_40_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_41_apply)], +oncie_DynamicLabelsExpressions, 0, jl_Object, [oncie_LabelCheckExpression], 3, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_42_apply)], +oncie_HasDynamicType, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_43_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_44_apply)], +oncie_HasAnyDynamicType, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_45_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_46_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_47_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_48_apply)], +oncias_SemanticExpressionCheck$FilteringExpressions$, 0, jl_Object, [], 0, 3, 0, oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_49_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_50_apply)], +oncie_PathExpression, 0, oncie_Expression, [ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_51_apply)], +oncie_PathStep, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_NodePathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 4, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_52_apply)], +oncie_SingleRelationshipPathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 4, 3, 0, 0, 0, +oncie_MultiRelationshipPathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 4, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_53_apply)], +oncie_RepeatPathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 4, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_54_apply)], +oncie_NilPathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_55, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticPatternCheck$, 0, jl_Object, [oncias_SemanticAnalysisTooling], 4, 3, 0, oncias_SemanticPatternCheck$_$callClinit, ["$expectType1", $rt_wrapFunction2(oncias_SemanticPatternCheck$_expectType0), "$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncias_SemanticPatternCheck$_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncias_SemanticPatternCheck$_expectType$default$5)], +oncie_Pattern$SemanticContext, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_Pattern$SemanticContext$Expression$, "Pattern$SemanticContext$Expression$", 62, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Expression$_productElement), +"$productIterator", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_toString)], +oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1_applyOrElse)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_56_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_57_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_58_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_59_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_60_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_61_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_62_apply)]]); +$rt_metadata([oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_63, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$TypeMismatchContext$, 0, s_Enumeration, [], 0, 3, 0, oncias_SemanticExpressionCheck$TypeMismatchContext$_$callClinit, 0, +oncie_ReduceExpression$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_64_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_65_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_66_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_67_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_68_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_69_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_70_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_71_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_72_apply)], +oncie_DesugaredMapProjection, 0, oncie_Expression, [ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_73_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_74_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_75_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_76_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_77_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_78_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_79_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_80_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_81_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_82_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_83_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_84_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_85_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_86_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_87_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_88_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_89_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_90_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_91_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_92_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_93_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_94_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_95_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_195_96_apply)], +oncia_AliasedReturnItem$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +onciu_Foldable$FoldingBehavior, 0, jl_Object, [], 3, 3, 0, 0, 0, +onciu_Foldable$SkipChildren, "Foldable$SkipChildren", 52, jl_Object, [onciu_Foldable$FoldingBehavior, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_Foldable$SkipChildren_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Foldable$SkipChildren_productArity), "$productElement", $rt_wrapFunction1(onciu_Foldable$SkipChildren_productElement), "$productIterator", $rt_wrapFunction0(onciu_Foldable$SkipChildren_productIterator), "$toString", $rt_wrapFunction0(onciu_Foldable$SkipChildren_toString)], +onciu_Foldable$TraverseChildren, "Foldable$TraverseChildren", 52, jl_Object, [onciu_Foldable$FoldingBehavior, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_Foldable$TraverseChildren_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Foldable$TraverseChildren_productArity), "$productElement", $rt_wrapFunction1(onciu_Foldable$TraverseChildren_productElement), "$productIterator", $rt_wrapFunction0(onciu_Foldable$TraverseChildren_productIterator), "$toString", $rt_wrapFunction0(onciu_Foldable$TraverseChildren_toString)], +onciu_Foldable$TraverseChildrenNewAccForSiblings, "Foldable$TraverseChildrenNewAccForSiblings", 52, jl_Object, [onciu_Foldable$FoldingBehavior, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_Foldable$TraverseChildrenNewAccForSiblings_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Foldable$TraverseChildrenNewAccForSiblings_productArity), "$productElement", $rt_wrapFunction1(onciu_Foldable$TraverseChildrenNewAccForSiblings_productElement), "$productIterator", $rt_wrapFunction0(onciu_Foldable$TraverseChildrenNewAccForSiblings_productIterator), +"$toString", $rt_wrapFunction0(onciu_Foldable$TraverseChildrenNewAccForSiblings_toString)], +onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0, "Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0", 52, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0_apply)], +onciuh_NameDeduplicator$, 0, jl_Object, [], 4, 3, 0, onciuh_NameDeduplicator$_$callClinit, 0, +oncia_Clause$semanticCheck$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$semanticCheck$lambda$_6_0_apply)], +oncia_Clause$semanticCheck$lambda$_6_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Clause$semanticCheck$lambda$_6_1_apply)], +oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0_apply)], +oncil_LabelExpression$replaceColonSyntax$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$replaceColonSyntax$lambda$_13_0_apply)], +oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0, "CreateConstraint$checkPropertyTypes$lambda$_33_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0_apply)], +oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1_applyOrElse)]]); +$rt_metadata([oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_80_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_80_0_apply)], +oncie_Expression$SemanticContext$Results$, 0, jl_Object, [oncie_Expression$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncia_SchemaCommand$checkOptionsMap$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_CreateIndex$semanticCheck$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateIndex$semanticCheck$lambda$_31_0_apply)], +oncia_SchemaCommand$checkSingleProperty$lambda$_8_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SchemaCommand$checkSingleProperty$lambda$_8_0_apply)], +sc_IterableOps$grouped$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOps$grouped$lambda$_60_0_apply)], +oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0_apply)], +oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0_apply)], +oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1_apply)], +oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0_apply)], +oncia_CommandResultItem, "CommandResultItem", 35, jl_Object, [onciu_ASTNode, oncias_SemanticAnalysisTooling, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncia_CommandResultItem_position), "$productPrefix", $rt_wrapFunction0(oncia_CommandResultItem_productPrefix), "$productArity", $rt_wrapFunction0(oncia_CommandResultItem_productArity), "$productElement", $rt_wrapFunction1(oncia_CommandResultItem_productElement), "$productIterator", $rt_wrapFunction0(oncia_CommandResultItem_productIterator), +"$hashCode", $rt_wrapFunction0(oncia_CommandResultItem_hashCode), "$toString", $rt_wrapFunction0(oncia_CommandResultItem_toString), "$equals", $rt_wrapFunction1(oncia_CommandResultItem_equals), "$dup", $rt_wrapFunction1(oncia_CommandResultItem_dup)], +oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0_apply)], +oncia_CommandClause$, 0, jl_Object, [], 4, 3, 0, oncia_CommandClause$_$callClinit, 0, +oncia_ParsedAsYield$, "ParsedAsYield$", 35, jl_Object, [oncia_WithType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_ParsedAsYield$_productArity), "$productElement", $rt_wrapFunction1(oncia_ParsedAsYield$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ParsedAsYield$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ParsedAsYield$_hashCode), "$toString", $rt_wrapFunction0(oncia_ParsedAsYield$_toString)], +oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_0_apply)], +oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_67_1_apply)], +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_0_apply)], +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_1, 0, jl_Object, [srj_JFunction1$mcZI$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcZI$sp_apply), "$apply$mcZI$sp", $rt_wrapFunction1(oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_1_apply$mcZI$sp)], +oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_9_2_apply)], +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_0_apply)], +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_1, 0, jl_Object, [srj_JFunction1$mcZI$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcZI$sp_apply), "$apply$mcZI$sp", $rt_wrapFunction1(oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_1_apply$mcZI$sp)], +oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_13_2_apply)], +oncias_SemanticExpressionCheck$$infixAddRhsTypes$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_66_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_66_0_apply)], +onciuh_Try$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_61_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_61_0_apply$mcJ$sp)], +oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_62_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_62_0_apply$mcJ$sp)], +oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_63_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_63_0_apply$mcJ$sp)], +oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_64_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_64_0_apply$mcJ$sp)], +oncias_package$$liftSemanticErrorDef$lambda$_6_0, "package$$liftSemanticErrorDef$lambda$_6_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticErrorDef$lambda$_6_0_apply)], +oncias_SemanticExpressionCheck$$check$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$check$lambda$_60_0_apply)], +oncias_SemanticFunctionCheck$$check$lambda$_49_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$check$lambda$_49_0_apply)], +oncias_SemanticFunctionCheck$$check$lambda$_49_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$check$lambda$_49_1_apply)], +oncias_SemanticFunctionCheck$$check$lambda$_49_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$check$lambda$_49_2_apply)], +oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_55_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_55_0_apply)], +oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_0_apply)], +oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_1_apply)], +oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_67_2_apply)], +oncie_Pattern$SemanticContext$Match$, "Pattern$SemanticContext$Match$", 62, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Match$_productElement), "$productIterator", +$rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_toString)], +oncias_SemanticPatternCheck$$declareVariables$lambda$_51_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_51_0_apply)], +oncias_SemanticPatternCheck$$check$lambda$_52_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_52_0_apply)], +oncias_SemanticPatternCheck$$check$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$check$lambda$_58_0_apply)], +oncias_SemanticPatternCheck$$check$lambda$_58_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticPatternCheck$$check$lambda$_58_1_apply)], +oncias_SemanticPatternCheck$$check$lambda$_58_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_58_2_apply)], +oncias_SemanticPatternCheck$$check$lambda$_58_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_58_3_apply)], +oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_142_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_142_0_apply)], +oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_0_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_1_apply)]]); +$rt_metadata([oncia_PrivilegeCommand$checkExpression$lambda$_74_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_2_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_3_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_4_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_5_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_6_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_7_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_8_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_9_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_10_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_11, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_11_apply)], +oncia_PrivilegeCommand$checkExpression$lambda$_74_12, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkExpression$lambda$_74_12_apply)], +oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0_apply)], +oncius_TypeSpec$, 0, jl_Object, [], 4, 3, 0, oncius_TypeSpec$_$callClinit, 0, +oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_0_apply)], +oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_1_apply)], +oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateAliasedVariablesFromYieldInOrderByAndWhere$lambda$_2_2_apply)], +onciap_Prettifier$$extractTopology$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractTopology$lambda$_19_0_apply)], +onciap_Prettifier$$extractTopology$lambda$_19_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$extractTopology$lambda$_19_1_apply)], +onciap_Prettifier$$extractTopology$lambda$_19_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractTopology$lambda$_19_2_apply)], +onciap_Prettifier$$extractTopology$lambda$_19_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$extractTopology$lambda$_19_3_apply)], +oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0_apply)], +oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1_apply)], +onciuh_Try, 0, jl_Object, [], 3, 3, 0, 0, 0, +onciuh_Success, 0, jl_Object, [onciuh_Try, s_Product, ji_Serializable], 0, 3, 0, 0, ["$isFailure", $rt_wrapFunction0(onciuh_Success_isFailure)], +onciuh_Failure, 0, jl_Object, [onciuh_Try], 0, 3, 0, 0, ["$isFailure", $rt_wrapFunction0(onciuh_Failure_isFailure)], +oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1_applyOrElse)], +oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_50_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_50_0_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_0_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_1_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_2_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_3_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_4_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_5_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_6_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_7_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_8_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_9_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_10_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_11_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_12_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_13_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_14_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_15_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_16_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_17_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_18_apply)], +oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_51_19_apply)], +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0_apply)], +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_65_1_apply)], +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticPatternCheck$$declareVariables$lambda$_65_2_apply)]]); +$rt_metadata([oncias_SemanticPatternCheck$$declareVariables$lambda$_65_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$declareVariables$lambda$_65_3_apply)], +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_65_4_apply)], +oncias_SemanticPatternCheck$$declareVariables$lambda$_65_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$declareVariables$lambda$_65_5_apply)], +oncie_Pattern$SemanticContext$Merge$, "Pattern$SemanticContext$Merge$", 62, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Merge$_productElement), "$productIterator", +$rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_toString)], +oncie_Pattern$SemanticContext$Create$, "Pattern$SemanticContext$Create$", 62, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Create$_productElement), "$productIterator", +$rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_toString)], +oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1_applyOrElse), "$isDefinedAt", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1_isDefinedAt)], +oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_98_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_98_0_apply)], +oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_103_0, "SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_103_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_103_0_apply)], +oncias_checkNoParamMapsWhenMatching$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncias_checkValidPropertyKeyNamesInPattern$, 0, jl_Object, [], 4, 3, 0, oncias_checkValidPropertyKeyNamesInPattern$_$callClinit, 0, +oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_80_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_80_0_apply)], +oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_79_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_79_0_apply)], +oncias_SemanticPatternCheck$$checkPredicate$lambda$_78_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkPredicate$lambda$_78_0_apply)], +oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_0_apply)], +oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_60_1_apply)], +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1_applyOrElse)], +oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_110_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_110_0_apply)], +oncias_SemanticPatternCheck$$checkQuantifier$lambda$_61_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$checkQuantifier$lambda$_61_0_apply)], +oncias_SemanticExpressionCheck$TypeMismatchContext$TypeMismatchContextVal, 0, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncie_ReduceExpression$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncie_ReduceExpression$$_clinit_$lambda$_0_0_apply)], +onciuh_fixedPoint$, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciuh_NameDeduplicator$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0_apply)], +oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1_apply)], +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0_apply)], +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1_apply)], +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2_apply)], +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3_apply)], +oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4_apply)], +oncia_PrivilegeCommand$stringifyExpression$1$lambda$_82_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$stringifyExpression$1$lambda$_82_0_apply)], +oncias_SemanticAnalysisTooling$expectType$lambda$_25_0, "SemanticAnalysisTooling$expectType$lambda$_25_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_25_0_apply)], +oncias_SemanticAnalysisTooling$expectType$lambda$_13_0, "SemanticAnalysisTooling$expectType$lambda$_13_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_13_0_apply)], +oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0_apply)], +oncias_SemanticAnalysisTooling$checkTypes$lambda$_33_0, "SemanticAnalysisTooling$checkTypes$lambda$_33_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$checkTypes$lambda$_33_0_apply)], +oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0_apply)], +oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_41_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_41_0_apply)], +oncias_SemanticAnalysisTooling$typeSwitch$lambda$_51_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$typeSwitch$lambda$_51_0_apply)], +oncias_SemanticFunctionCheck$$checkMinArgs$lambda$_55_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkMinArgs$lambda$_55_0_apply)], +oncias_SemanticPatternCheck$$declareVariables$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_68_0_apply)], +oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_121_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_121_0_apply)], +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_0_apply)], +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_1_apply)], +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_2_apply)], +oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_128_3_apply)], +oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0_apply)], +oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_134_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_134_0_apply)], +oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_140_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_140_0_apply)], +oncie_Pattern$SemanticContext$Insert$, "Pattern$SemanticContext$Insert$", 62, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Insert$_productElement), "$productIterator", +$rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_toString)], +oncie_Pattern$SemanticContext$, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncias_SemanticAnalysisTooling$expectType$lambda$_17_0, "SemanticAnalysisTooling$expectType$lambda$_17_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_17_0_apply)]]); +$rt_metadata([oncias_SemanticAnalysisTooling$expectType$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_15_0_apply)], +oncias_SemanticAnalysisTooling$types$lambda$_95_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$types$lambda$_95_0_apply)], +oncias_SemanticAnalysisTooling$ensureDefined$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$ensureDefined$lambda$_57_0_apply)], +onciuh_fixedPoint$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_PrivilegeCommand$checkTypesInList$1$lambda$_87_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkTypesInList$1$lambda$_87_0_apply)], +oncius_TypeRange, "TypeRange", 57, jl_Object, [s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$productPrefix", $rt_wrapFunction0(oncius_TypeRange_productPrefix), "$productArity", $rt_wrapFunction0(oncius_TypeRange_productArity), "$productElement", $rt_wrapFunction1(oncius_TypeRange_productElement), "$productIterator", $rt_wrapFunction0(oncius_TypeRange_productIterator), "$hashCode", $rt_wrapFunction0(oncius_TypeRange_hashCode), "$toString", $rt_wrapFunction0(oncius_TypeRange_toString), "$equals", $rt_wrapFunction1(oncius_TypeRange_equals)], +oncias_SemanticFunctionCheck$$checkMaxArgs$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkMaxArgs$lambda$_54_0_apply)], +oncias_SemanticPatternCheck$$anonfun$4, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$4_applyOrElse)], +oncius_TypeRange$_init_$lambda$_43_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, +jur_Matcher$1, "Matcher$1", 6, jl_Object, [], 0, 0, 0, 0, ["$toString", $rt_wrapFunction0(jur_Matcher$1_toString)], +oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_75_0, "SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_75_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_75_0_apply)], +oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0, "SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0_apply)], +oncias_SemanticCheck$$warn$lambda$_4_0, "SemanticCheck$$warn$lambda$_4_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$warn$lambda$_4_0_apply)], onciu_RewritableJavascript$PROXY$9_148, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_149, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_150, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -364203,8 +292921,8 @@ onciu_RewritableJavascript$PROXY$9_164, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_165, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_166, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_167, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_168, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$9_169, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_168, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_169, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_170, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_171, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_172, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -364219,202 +292937,18 @@ onciu_RewritableJavascript$PROXY$9_180, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_181, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_182, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_183, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_184, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_185, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_184, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$9_185, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_186, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_187, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_188, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_189, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_190, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_132, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_133, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_134, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_135, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_136, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_137, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_138, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_139, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_140, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_141, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_142, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_143, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_144, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_145, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_146, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_147, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_148, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_149, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_150, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_151, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_152, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_153, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_154, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_155, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_156, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_157, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_158, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_159, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$11_160, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_161, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_162, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_163, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_164, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_165, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_166, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_167, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_168, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_169, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_170, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_171, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_172, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_173, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_174, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_175, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_176, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_177, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_178, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_179, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_180, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_181, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_182, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_183, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_184, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_185, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_186, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_187, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_188, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_189, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_190, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_453, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_460, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_464, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_191, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_191, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_468, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_470, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_471, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncie_MatchMode, 0, jl_Object, [], 4, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_476, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_484, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_489, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_490, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_492, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_494, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_498, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_500, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_501, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_503, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$7_509, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_510, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_512, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_514, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_515, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_520, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_523, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_524, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_525, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_530, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_532, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_533, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_534, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_535, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_537, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_192, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_193, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_194, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_195, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_192, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_193, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_194, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_195, 0, jl_Object, [], 0, 3, 0, 0, 0, -jusi_AllMatchConsumer, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_AllMatchConsumer_test)], -jnci_BufferedEncoder$Controller, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavrt_ParseTreeListener, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_NonEmptyList$IteratorConverter$asNonEmptyListOption$lambda$_1_0_apply)], -oavr_CodePointBuffer$1, 0, jl_Object, [], 32, 0, 0, oavr_CodePointBuffer$1_$callClinit, 0, -oavr_InputMismatchException, "InputMismatchException", 83, oavr_RecognitionException, [], 0, 3, 0, 0, 0, -oavr_FailedPredicateException, 0, oavr_RecognitionException, [], 0, 3, 0, 0, 0, -oavrm_IntSet, 0, jl_Object, [], 3, 3, 0, 0, 0, -oavrm_IntervalSet, "IntervalSet", 87, jl_Object, [oavrm_IntSet], 0, 3, 0, oavrm_IntervalSet_$callClinit, ["$hashCode", $rt_wrapFunction0(oavrm_IntervalSet_hashCode), "$equals", $rt_wrapFunction1(oavrm_IntervalSet_equals), "$toString", $rt_wrapFunction0(oavrm_IntervalSet_toString0)], -oncias_SemanticState$scope$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$scope$lambda$_52_0_apply)], -oncia_GrantPrivilege$semanticCheck$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GrantPrivilege$semanticCheck$lambda$_14_0_apply)], -oncia_RevokePrivilege$semanticCheck$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_RevokePrivilege$semanticCheck$lambda$_15_0_apply)], -oncie_VariableGrouping, "VariableGrouping", 64, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_VariableGrouping_position), "$toString", $rt_wrapFunction0(oncie_VariableGrouping_toString), "$productPrefix", $rt_wrapFunction0(oncie_VariableGrouping_productPrefix), "$productArity", $rt_wrapFunction0(oncie_VariableGrouping_productArity), "$productElement", $rt_wrapFunction1(oncie_VariableGrouping_productElement), "$productIterator", -$rt_wrapFunction0(oncie_VariableGrouping_productIterator), "$hashCode", $rt_wrapFunction0(oncie_VariableGrouping_hashCode), "$equals", $rt_wrapFunction1(oncie_VariableGrouping_equals), "$dup", $rt_wrapFunction1(oncie_VariableGrouping_dup)], -oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_0_apply)], -oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_normalizeWithAndReturnClauses$org$neo4j$cypher$internal$rewriting$rewriters$normalizeWithAndReturnClauses$$potentiallyRedefined$lambda$_46_1_apply)], -jn_BufferUnderflowException, "BufferUnderflowException", 9, jl_RuntimeException, [], 0, 3, 0, 0, 0, -jusi_BoxedIntStream$next$lambda$_1_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_BoxedIntStream$next$lambda$_1_0_test)], -scm_HashMap$$anon$6, "HashMap$$anon$6", 23, scm_GrowableBuilder, [], 4, 3, 0, 0, 0, -oncipl_UnicodeEscapeReplacementReader$OffsetTableBuilder, 0, jl_Object, [], 0, 0, 0, 0, 0, -oncius_ListType$isSubtypeOf$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ListType$isSubtypeOf$lambda$_33_0_apply)], -oncius_ListType$isSubtypeOf$lambda$_33_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ListType$isSubtypeOf$lambda$_33_1_apply)], -oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_0_apply)], -oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$isSubtypeOf$lambda$_29_1_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1, "IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1", 67, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productPrefix), "$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productArity), "$productElement", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productElement), -"$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_toString), "$equals", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$1_equals)], -ju_TemplateCollections$NEtriesMap$1, 0, ju_TemplateCollections$AbstractImmutableSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap$1_size), "$iterator", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap$1_iterator)], -oncie_containsAggregate$$anonfun$apply$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_containsAggregate$$anonfun$apply$1_applyOrElse)], -jn_IntBuffer, 0, jn_Buffer, [jl_Comparable], 1, 3, 0, 0, 0]); -$rt_metadata([oncia_UnassignableAction, 0, jl_Object, [], 3, 3, 0, 0, 0, -onih_Strings$CodePointsIterator, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, 0, -oeca_PrimitiveIterable, 0, jl_Object, [], 3, 3, 0, 0, 0, -oeca_IntIterable, 0, jl_Object, [oeca_PrimitiveIterable], 3, 3, 0, 0, 0, -oecip_AbstractIntIterable, 0, jl_Object, [oeca_IntIterable], 1, 3, 0, 0, 0, -oecacp_MutableIntCollection, 0, jl_Object, [oeca_IntIterable], 3, 3, 0, 0, 0, -oecaop_OrderedIntIterable, 0, jl_Object, [oeca_IntIterable], 3, 3, 0, 0, 0, -oecaop_ReversibleIntIterable, 0, jl_Object, [oecaop_OrderedIntIterable], 3, 3, 0, 0, 0, -oecalp_IntList, 0, jl_Object, [oecaop_ReversibleIntIterable], 3, 3, 0, 0, 0, -oecalp_MutableIntList, 0, jl_Object, [oecacp_MutableIntCollection, oecalp_IntList], 3, 3, 0, 0, 0, -ji_Externalizable, 0, jl_Object, [], 3, 3, 0, 0, 0, -oecilmp_IntArrayList, 0, oecip_AbstractIntIterable, [oecalp_MutableIntList, ji_Externalizable], 0, 3, 0, 0, 0, -oavrt_TerminalNode, 0, jl_Object, [oavrt_ParseTree], 3, 3, 0, 0, 0, -oavrt_ErrorNode, 0, jl_Object, [oavrt_TerminalNode], 3, 3, 0, 0, 0, -oavra_ATNConfig, "ATNConfig", 85, jl_Object, [], 0, 3, [0,0,0], 0, ["$equals", $rt_wrapFunction1(oavra_ATNConfig_equals0), "$equals10", $rt_wrapFunction1(oavra_ATNConfig_equals), "$hashCode", $rt_wrapFunction0(oavra_ATNConfig_hashCode), "$toString", $rt_wrapFunction0(oavra_ATNConfig_toString)], -sc_IterableOnceOps$Maximized, "IterableOnceOps$Maximized", 21, sr_AbstractFunction2, [], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$Maximized_apply0)], -sc_IterableOnceOps$minBy$lambda$_89_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, -sc_IterableOnceOps$minBy$lambda$_89_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$minBy$lambda$_89_1_apply)], -oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$$anonfun$dup$1$lambda$_13_0_apply)], -sc_Iterator$contains$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_Iterator$contains$lambda$_35_0_apply)], -sc_Iterator$$anon$6, "Iterator$$anon$6", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$6_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$6_next)], -sc_IterableOnceOps$$anon$1, "IterableOnceOps$$anon$1", 21, sr_AbstractFunction1, [], 4, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOnceOps$$anon$1_apply)], -oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_0_apply)], -oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$checkOrder$1$lambda$_149_2_apply)], -oncias_FeatureError$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncias_FeatureError$_$callClinit, 0, -oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$yields$1$lambda$_23_0_apply)], -oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$returns$1$lambda$_25_0_apply)], -oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_0_apply)], -oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$$anonfun$startingWithGraphSelection$1$lambda$_16_1_apply)], -oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0, "SemanticCheck$$anonfun$chain$1$lambda$_29_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$anonfun$chain$1$lambda$_29_0_apply)], -oncia_AliasedReturnItem$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_69_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_PrivilegeCommand$privilegeQualifierCheckForPropertyRules$lambda$_69_0_apply)], -sc_View$Fill, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Fill_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Fill_knownSize)], -oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_AliasDriverSettingsCheck$$anonfun$$nestedInanonfun$findInvalidDriverSettings$1$1_applyOrElse)], -sc_Iterator$SliceIterator, "Iterator$SliceIterator", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$SliceIterator_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$SliceIterator_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$SliceIterator_next), "$sliceIterator", $rt_wrapFunction2(sc_Iterator$SliceIterator_sliceIterator)], -oncius_CypherType$isSubtypeOf$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$isSubtypeOf$lambda$_19_0_apply)], -oncifp_SensitiveParameterRewriter$, 0, jl_Object, [s_Function1], 4, 3, 0, oncifp_SensitiveParameterRewriter$_$callClinit, ["$apply2", $rt_wrapFunction1(oncifp_SensitiveParameterRewriter$_apply)], -oncias_UnsupportedOpenCypher, 0, jl_Object, [oncias_SemanticErrorDef], 3, 3, 0, 0, 0, -oncias_FeatureError, "FeatureError", 41, jl_Object, [oncias_UnsupportedOpenCypher, s_Product, ji_Serializable], 4, 3, 0, 0, ["$msg", $rt_wrapFunction0(oncias_FeatureError_msg), "$position", $rt_wrapFunction0(oncias_FeatureError_position), "$productPrefix", $rt_wrapFunction0(oncias_FeatureError_productPrefix), "$productArity", $rt_wrapFunction0(oncias_FeatureError_productArity), "$productElement", $rt_wrapFunction1(oncias_FeatureError_productElement), "$productIterator", $rt_wrapFunction0(oncias_FeatureError_productIterator), -"$hashCode", $rt_wrapFunction0(oncias_FeatureError_hashCode), "$toString", $rt_wrapFunction0(oncias_FeatureError_toString), "$equals", $rt_wrapFunction1(oncias_FeatureError_equals), "$withMsg", $rt_wrapFunction1(oncias_FeatureError_withMsg)], -srj_JFunction1$mcZI$sp, 0, jl_Object, [s_Function1, ji_Serializable], 3, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcZI$sp_apply)], -oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_7_0, 0, jl_Object, [srj_JFunction1$mcZI$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcZI$sp_apply), "$apply$mcZI$sp", $rt_wrapFunction1(oncia_WriteAdministrationCommand$numPrimaryGreaterThanZero$1$lambda$_7_0_apply$mcZI$sp)], -ong_ErrorClassification, "ErrorClassification", 68, jl_Enum, [ong_GqlClassification], 12, 3, [0,0,0], ong_ErrorClassification_$callClinit, 0, -oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_9_0, 0, jl_Object, [srj_JFunction1$mcZI$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcZI$sp_apply), "$apply$mcZI$sp", $rt_wrapFunction1(oncia_WriteAdministrationCommand$numSecondaryPositive$1$lambda$_9_0_apply$mcZI$sp)], -oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_ValidatingRewriter$$anonfun$buildErrorMessage$2$lambda$_52_0_apply)], -oncia_CommandClause$$updateExpression$1$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateExpression$1$lambda$_8_0_apply)], -oncia_CommandClause$$updateExpression$1$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateExpression$1$lambda$_8_1_apply)], -oncia_CommandClause$$updateExpression$1$lambda$_8_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_CommandClause$$updateExpression$1$lambda$_8_2_apply)], -oncia_SingleQuery$checkClauses$lambda$_81_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkClauses$lambda$_81_0_apply)]]); -$rt_metadata([onciap_Prettifier$$extractTopology$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractTopology$lambda$_19_0_apply)], -onciap_Prettifier$$extractTopology$lambda$_19_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$extractTopology$lambda$_19_1_apply)], -onciap_Prettifier$$extractTopology$lambda$_19_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractTopology$lambda$_19_2_apply)], -onciap_Prettifier$$extractTopology$lambda$_19_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$extractTopology$lambda$_19_3_apply)], -jn_IntBufferImpl, 0, jn_IntBuffer, [], 1, 0, 0, 0, 0, -jn_IntBufferOverArray, 0, jn_IntBufferImpl, [], 0, 0, 0, 0, 0, -s_Tuple2$mcCI$sp, "Tuple2$mcCI$sp", 17, s_Tuple2, [], 4, 3, 0, 0, ["$_1$mcC$sp", $rt_wrapFunction0(s_Tuple2$mcCI$sp__1$mcC$sp), "$_2$mcI$sp", $rt_wrapFunction0(s_Tuple2$mcCI$sp__2$mcI$sp), "$_2", $rt_wrapFunction0(s_Tuple2$mcCI$sp__2), "$_1", $rt_wrapFunction0(s_Tuple2$mcCI$sp__1)], -oncifp_SensitiveParameterRewriter$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_SensitiveParameterRewriter$$anonfun$1_applyOrElse)], onciu_RewritableJavascript$PROXY$9_196, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_197, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_198, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -364453,11 +292987,79 @@ onciu_RewritableJavascript$PROXY$9_230, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_231, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_232, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_233, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_234, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_235, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_234, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$9_235, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$9_236, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_196, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$11_197, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_237, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_238, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_239, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_240, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_241, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_242, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_243, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_244, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_245, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_246, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_247, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_248, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_249, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_250, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_251, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_252, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_253, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_254, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_255, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_256, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_148, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_149, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_150, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_151, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_152, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_153, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_154, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_155, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_156, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_157, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_158, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_159, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_160, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_161, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_162, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_163, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_164, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_165, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_166, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_167, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_168, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_169, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_170, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_171, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_172, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_173, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_174, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_175, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$11_176, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_177, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_178, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_179, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_180, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_181, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_182, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_183, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_184, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_185, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_186, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_187, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_188, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_189, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_190, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_191, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_192, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_193, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_194, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_195, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_196, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_197, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_198, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_199, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_200, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -364485,8 +293087,8 @@ onciu_RewritableJavascript$PROXY$11_221, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_222, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_223, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_224, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_225, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_226, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_225, 0, jl_Object, [], 0, 3, 0, 0, 0]); +$rt_metadata([onciu_RewritableJavascript$PROXY$11_226, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_227, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_228, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_229, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -364497,180 +293099,8 @@ onciu_RewritableJavascript$PROXY$11_233, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_234, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_235, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_236, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_546, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_549, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_550, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_551, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_552, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_553, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_560, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_562, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_564, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_237, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$11_237, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_565, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_238, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_237, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_238, 0, jl_Object, [], 0, 3, 0, 0, 0, -oavrm_Interval, "Interval", 87, jl_Object, [], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oavrm_Interval_equals), "$hashCode", $rt_wrapFunction0(oavrm_Interval_hashCode), "$toString", $rt_wrapFunction0(oavrm_Interval_toString)], -ju_LinkedHashMapEntrySet, 0, ju_AbstractSet, [ju_SequencedSet], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$iterator", $rt_wrapFunction0(ju_LinkedHashMapEntrySet_iterator)], -s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(s_Enumeration$scala$Enumeration$$nameOf$lambda$_23_0_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1, "ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1", 67, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_1_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_2_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3, "ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3", 67, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_3_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_4_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5, "ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5", 67, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$apply$1$applyOrElse$lambda$_0_5_apply)], -oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0, "AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0", 67, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_AmbiguousAggregationAnalysis$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0, "containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0", 62, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirc_containsNoMatchingNodes$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply)], -oncie_IsAggregate$, 0, jl_Object, [], 4, 3, 0, oncie_IsAggregate$_$callClinit, 0, -oncifp_SyntaxUsageMetricKey, "SyntaxUsageMetricKey", 67, jl_Enum, [], 12, 3, [0,0,0], oncifp_SyntaxUsageMetricKey_$callClinit, 0, -s_PartialFunction$Combined$applyOrElse$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -ju_TemplateCollections$NEtriesMap$1$1, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap$1$1_hasNext), "$next", $rt_wrapFunction0(ju_TemplateCollections$NEtriesMap$1$1_next)], -oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$1, "SensitiveParameterRewriter$$anonfun$1$$anon$1", 67, oncie_ExplicitParameter, [oncie_SensitiveParameter], 4, 3, [oncifp_SensitiveParameterRewriter$$anonfun$1,0,0], 0, 0, -oncie_SensitiveAutoParameter, 0, jl_Object, [oncie_SensitiveParameter], 3, 3, 0, 0, 0, -oncifp_SensitiveParameterRewriter$$anonfun$1$$anon$2, "SensitiveParameterRewriter$$anonfun$1$$anon$2", 67, oncie_AutoExtractedParameter, [oncie_SensitiveAutoParameter], 4, 3, [oncifp_SensitiveParameterRewriter$$anonfun$1,0,0], 0, 0, -scm_HashMap$$anon$4, 0, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$extract0", $rt_wrapFunction1(scm_HashMap$$anon$4_extract)], -oncifp_ResolvedCall$returnVariables$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$returnVariables$lambda$_23_0_apply)], -jusi_LimitingIntStreamImpl$next$lambda$_1_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_LimitingIntStreamImpl$next$lambda$_1_0_test)], -jusi_SkippingIntStreamImpl$next$lambda$_1_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_SkippingIntStreamImpl$next$lambda$_1_0_test)], -oavrt_TerminalNodeImpl, "TerminalNodeImpl", 84, jl_Object, [oavrt_TerminalNode], 0, 3, 0, 0, ["$getSymbol", $rt_wrapFunction0(oavrt_TerminalNodeImpl_getSymbol), "$setParent", $rt_wrapFunction1(oavrt_TerminalNodeImpl_setParent), "$getText", $rt_wrapFunction0(oavrt_TerminalNodeImpl_getText), "$toString", $rt_wrapFunction0(oavrt_TerminalNodeImpl_toString)], -oavrt_ErrorNodeImpl, "ErrorNodeImpl", 84, oavrt_TerminalNodeImpl, [oavrt_ErrorNode], 0, 3, 0, 0, 0, -onciu_Last, "Last", 54, jl_Object, [onciu_NonEmptyList, s_Product, ji_Serializable], 4, 3, 0, 0, ["$map4", $rt_wrapFunction1(onciu_Last_map), "$mapAndPrependReversedTo", $rt_wrapFunction2(onciu_Last_mapAndPrependReversedTo), "$reverse4", $rt_wrapFunction0(onciu_Last_reverse), "$toIterable", $rt_wrapFunction0(onciu_Last_toIterable), "$toIndexedSeq", $rt_wrapFunction0(onciu_Last_toIndexedSeq), "$knownSize", $rt_wrapFunction0(onciu_Last_knownSize), "$head", $rt_wrapFunction0(onciu_Last_head), "$tailOption", $rt_wrapFunction0(onciu_Last_tailOption), -"$toString", $rt_wrapFunction0(onciu_Last_toString), "$iterator0", $rt_wrapFunction0(onciu_Last_iterator), "$productPrefix", $rt_wrapFunction0(onciu_Last_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Last_productArity), "$productElement", $rt_wrapFunction1(onciu_Last_productElement), "$productIterator", $rt_wrapFunction0(onciu_Last_productIterator), "$hashCode", $rt_wrapFunction0(onciu_Last_hashCode), "$equals", $rt_wrapFunction1(onciu_Last_equals)], -onciu_LiteralOffset, "LiteralOffset", 54, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_LiteralOffset_productPrefix), "$productArity", $rt_wrapFunction0(onciu_LiteralOffset_productArity), "$productElement", $rt_wrapFunction1(onciu_LiteralOffset_productElement), "$productIterator", $rt_wrapFunction0(onciu_LiteralOffset_productIterator), "$hashCode", $rt_wrapFunction0(onciu_LiteralOffset_hashCode), "$toString", $rt_wrapFunction0(onciu_LiteralOffset_toString), "$equals", -$rt_wrapFunction1(onciu_LiteralOffset_equals)], -oavra_Transition, "Transition", 85, jl_Object, [], 1, 3, [0,0,0], oavra_Transition_$callClinit, ["$isEpsilon", $rt_wrapFunction0(oavra_Transition_isEpsilon), "$label0", $rt_wrapFunction0(oavra_Transition_label)], -oavra_RuleTransition, "RuleTransition", 85, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_RuleTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_RuleTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_RuleTransition_matches)], -scm_HashMap$$anon$3, "HashMap$$anon$3", 23, scm_HashMap$HashMapIterator, [], 4, 3, 0, 0, ["$extract0", $rt_wrapFunction1(scm_HashMap$$anon$3_extract)], -jusi_FlatMappingToIntStreamImpl$next$lambda$_1_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_FlatMappingToIntStreamImpl$next$lambda$_1_0_test)], -oncia_Remove$mapExpressions$lambda$_63_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$mapExpressions$lambda$_63_0_apply)], -oncia_SetClause$mapExpressions$lambda$_63_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$mapExpressions$lambda$_63_0_apply)], -oncia_Merge$mapExpressions$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Merge$mapExpressions$lambda$_68_0_apply)], -oncia_Merge$mapExpressions$lambda$_68_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Merge$mapExpressions$lambda$_68_1_apply)], -oncia_Foreach$mapExpressions$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Foreach$mapExpressions$lambda$_64_0_apply)], -oavra_ATNType, "ATNType", 85, jl_Enum, [], 12, 3, [0,0,0], oavra_ATNType_$callClinit, 0, -ji_ObjectStreamException, 0, ji_IOException, [], 0, 3, 0, 0, 0, -ji_InvalidClassException, 0, ji_ObjectStreamException, [], 0, 3, 0, 0, 0, -oavra_BlockStartState, 0, oavra_DecisionState, [], 1, 3, 0, 0, 0, -oavra_LoopEndState, "LoopEndState", 85, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_LoopEndState_getStateType)], -oavra_BlockEndState, "BlockEndState", 85, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_BlockEndState_getStateType)], -oavra_RuleStartState, "RuleStartState", 85, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_RuleStartState_getStateType)], -oavra_RuleStopState, "RuleStopState", 85, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_RuleStopState_getStateType)], -oavra_TokensStartState, "TokensStartState", 85, oavra_DecisionState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_TokensStartState_getStateType)], -oavra_EpsilonTransition, "EpsilonTransition", 85, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_EpsilonTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_EpsilonTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_EpsilonTransition_matches), "$toString", $rt_wrapFunction0(oavra_EpsilonTransition_toString)], -oavra_PlusLoopbackState, "PlusLoopbackState", 85, oavra_DecisionState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_PlusLoopbackState_getStateType)]]); -$rt_metadata([oavra_StarLoopbackState, "StarLoopbackState", 85, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_StarLoopbackState_getStateType)], -oavra_PlusBlockStartState, "PlusBlockStartState", 85, oavra_BlockStartState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_PlusBlockStartState_getStateType)], -oavra_LexerAction, "LexerAction", 85, jl_Object, [], 3, 3, [0,0,0], 0, 0, -oavra_LexerActionType, "LexerActionType", 85, jl_Enum, [], 12, 3, [0,0,0], oavra_LexerActionType_$callClinit, 0, -oavra_BasicBlockStartState, "BasicBlockStartState", 85, oavra_BlockStartState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_BasicBlockStartState_getStateType)], -oavra_BasicState, "BasicState", 85, oavra_ATNState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_BasicState_getStateType)], -oavra_AtomTransition, "AtomTransition", 85, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_AtomTransition_getSerializationType), "$label0", $rt_wrapFunction0(oavra_AtomTransition_label), "$matches3", $rt_wrapFunction3(oavra_AtomTransition_matches), "$toString", $rt_wrapFunction0(oavra_AtomTransition_toString)], -scm_HashMap$addAll$lambda$_42_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, 0, -scm_HashMap$addAll$lambda$_42_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(scm_HashMap$addAll$lambda$_42_1_apply)], -ju_AbstractList$SubAbstractList, 0, ju_AbstractList, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$get0", $rt_wrapFunction1(ju_AbstractList$SubAbstractList_get), "$iterator", $rt_wrapFunction0(ju_AbstractList$SubAbstractList_iterator), "$size", $rt_wrapFunction0(ju_AbstractList$SubAbstractList_size)], -ju_AbstractList$SubAbstractListRandomAccess, 0, ju_AbstractList$SubAbstractList, [ju_RandomAccess], 4, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0_apply)], -oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$extractImportingWith$1$applyOrElse$lambda$_0_0_apply)], -sci_ArraySeq$$newBuilder$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_ArraySeq$$newBuilder$lambda$_21_0_apply)], -onciu_Fby, "Fby", 54, jl_Object, [onciu_NonEmptyList, s_Product, ji_Serializable], 4, 3, 0, 0, ["$map4", $rt_wrapFunction1(onciu_Fby_map), "$mapAndPrependReversedTo", $rt_wrapFunction2(onciu_Fby_mapAndPrependReversedTo), "$reverse4", $rt_wrapFunction0(onciu_Fby_reverse), "$toIterable", $rt_wrapFunction0(onciu_Fby_toIterable), "$toIndexedSeq", $rt_wrapFunction0(onciu_Fby_toIndexedSeq), "$knownSize", $rt_wrapFunction0(onciu_Fby_knownSize), "$head", $rt_wrapFunction0(onciu_Fby_head), "$tailOption", $rt_wrapFunction0(onciu_Fby_tailOption), -"$toString", $rt_wrapFunction0(onciu_Fby_toString), "$iterator0", $rt_wrapFunction0(onciu_Fby_iterator), "$productPrefix", $rt_wrapFunction0(onciu_Fby_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Fby_productArity), "$productElement", $rt_wrapFunction1(onciu_Fby_productElement), "$productIterator", $rt_wrapFunction0(onciu_Fby_productIterator), "$hashCode", $rt_wrapFunction0(onciu_Fby_hashCode), "$equals", $rt_wrapFunction1(onciu_Fby_equals)], -scm_ArraySeq$$newBuilder$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(scm_ArraySeq$$newBuilder$lambda$_21_0_apply)], -ju_PrimitiveIterator, 0, jl_Object, [ju_Iterator], 3, 3, 0, 0, 0, -ju_PrimitiveIterator$OfInt, 0, jl_Object, [ju_PrimitiveIterator], 3, 3, 0, 0, 0, -oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Pattern$ForUpdate$mapExpressions$lambda$_11_0_apply)], -scm_TreeSet$$anon$1, 0, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$addAll0", $rt_wrapFunction1(scm_TreeSet$$anon$1_addAll), "$result", $rt_wrapFunction0(scm_TreeSet$$anon$1_result), "$addOne", $rt_wrapFunction1(scm_TreeSet$$anon$1_addOne)], -oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_155_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkClauses$1$lambda$_155_0_apply)], -oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_0_apply)], -oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$$anonfun$apply$1$lambda$_16_1_apply)], -oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_0_apply)], -oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$anonfun$coerceArguments$2$lambda$_53_1_apply)], -oncias_SemanticExpressionCheck$, 0, jl_Object, [oncias_SemanticAnalysisTooling], 4, 3, 0, oncias_SemanticExpressionCheck$_$callClinit, ["$specifyType0", $rt_wrapFunction2(oncias_SemanticExpressionCheck$_specifyType), "$expectType", $rt_wrapFunction2(oncias_SemanticExpressionCheck$_expectType), "$expectType4", $rt_wrapFunction4(oncias_SemanticExpressionCheck$_expectType2), "$expectType$default$4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$_expectType$default$4), "$types0", $rt_wrapFunction1(oncias_SemanticExpressionCheck$_types)], -oncia_CreateConstraint$semanticCheck$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$semanticCheck$lambda$_28_0_apply)], -scm_ArraySeq$ofInt, "ArraySeq$ofInt", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofInt_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofInt_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofInt_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofInt_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofInt_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofInt_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofInt_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofInt_array)], -scm_ArraySeq$ofDouble, "ArraySeq$ofDouble", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofDouble_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofDouble_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofDouble_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofDouble_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofDouble_apply0), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofDouble_apply1), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofDouble_elemTag), "$array", -$rt_wrapFunction0(scm_ArraySeq$ofDouble_array)], -scm_ArraySeq$ofLong, "ArraySeq$ofLong", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofLong_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofLong_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofLong_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofLong_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofLong_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofLong_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofLong_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofLong_array)], -scm_ArraySeq$ofFloat, "ArraySeq$ofFloat", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofFloat_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofFloat_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofFloat_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofFloat_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofFloat_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofFloat_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofFloat_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofFloat_array)], -scm_ArraySeq$ofByte, "ArraySeq$ofByte", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofByte_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofByte_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofByte_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofByte_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofByte_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofByte_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofByte_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofByte_array)], -scm_ArraySeq$ofShort, "ArraySeq$ofShort", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofShort_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofShort_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofShort_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofShort_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofShort_apply0), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofShort_apply1), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofShort_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofShort_array)], -scm_ArraySeq$ofBoolean, "ArraySeq$ofBoolean", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofBoolean_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofBoolean_apply1), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofBoolean_apply0), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_elemTag), -"$array", $rt_wrapFunction0(scm_ArraySeq$ofBoolean_array)], -scm_ArraySeq$ofUnit, "ArraySeq$ofUnit", 23, scm_ArraySeq, [], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(scm_ArraySeq$ofUnit_length), "$hashCode", $rt_wrapFunction0(scm_ArraySeq$ofUnit_hashCode), "$equals", $rt_wrapFunction1(scm_ArraySeq$ofUnit_equals), "$iterator0", $rt_wrapFunction0(scm_ArraySeq$ofUnit_iterator), "$apply2", $rt_wrapFunction1(scm_ArraySeq$ofUnit_apply0), "$apply1", $rt_wrapFunction1(scm_ArraySeq$ofUnit_apply), "$elemTag", $rt_wrapFunction0(scm_ArraySeq$ofUnit_elemTag), "$array", $rt_wrapFunction0(scm_ArraySeq$ofUnit_array)], -sc_Iterator$$anon$15, "Iterator$$anon$15", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$15_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$15_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$15_next)], -onih_Exceptions, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_106_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AlterUser$$anonfun$checkRemoveAuth$1$lambda$_106_0_apply)], -oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_0_apply)], -oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkOrder$2$lambda$_144_1_apply)], -oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_0_apply)], -oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkOrder$6$lambda$_148_1_apply)], -oncia_SubqueryCall$reportParams$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$reportParams$lambda$_10_0_apply)], -oncia_Union$$anonfun$checkRecursively$6$lambda$_50_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$checkRecursively$6$lambda$_50_0_apply)], -oncia_Union$$anonfun$checkRecursively$6$lambda$_50_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Union$$anonfun$checkRecursively$6$lambda$_50_1_apply)], -oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0, "ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_0_apply)], -oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_1_apply)], -oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$2$lambda$_37_2_apply)], -oncias_OptionSemanticChecking$, 0, jl_Object, [], 4, 3, 0, oncias_OptionSemanticChecking$_$callClinit, 0, -oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$$anonfun$privilegeQualifierCheckForPropertyRules$1$lambda$_76_0_apply)]]); -$rt_metadata([oncie_Expression$SemanticContext, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_Expression$SemanticContext$Results$, 0, jl_Object, [oncie_Expression$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, oncie_Expression$SemanticContext$Results$_$callClinit, 0, -sc_StrictOptimizedSeqOps$intersect$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedSeqOps$intersect$lambda$_15_0_apply)], -oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_0_apply)], -oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$$anonfun$coerceArguments$2$lambda$_29_1_apply)], -oncie_Expression$SemanticContext$Simple$, 0, jl_Object, [oncie_Expression$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, oncie_Expression$SemanticContext$Simple$_$callClinit, 0, -oncias_package$$liftSemanticEitherFunc$lambda$_2_0, "package$$liftSemanticEitherFunc$lambda$_2_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticEitherFunc$lambda$_2_0_apply)], -oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ListType$$anonfun$isSubtypeOf$1$lambda$_54_0_apply)], -oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$$anonfun$isSubtypeOf$1$lambda$_57_0_apply)], -oavra_Transition$1, "Transition$1", 85, ju_HashMap, [], 0, 0, 0, 0, 0, -oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_0_apply)], -oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ExternalAuth$checkIdIsStringLiteralOrParameter$lambda$_62_1_apply)], -oncia_ProjectingUnionAll, 0, jl_Object, [oncia_ProjectingUnion, ji_Serializable], 4, 3, 0, 0, 0, -oncia_ProjectingUnionDistinct, 0, jl_Object, [oncia_ProjectingUnion, ji_Serializable], 4, 3, 0, 0, 0, -oncia_Union$checkNestedQuery$1$lambda$_44_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Union$checkNestedQuery$1$lambda$_44_0_apply)], -oncia_Union$checkSingleQuery$1$lambda$_41_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Union$checkSingleQuery$1$lambda$_41_0_apply)], -oncia_Union$defineUnionVariables$lambda$_32_0, "Union$defineUnionVariables$lambda$_32_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$defineUnionVariables$lambda$_32_0_apply)], -oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_0_apply)], -oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$unionReturnItemsInDifferentOrder$1$lambda$_47_1_apply)], -oncia_ReadAdministrationCommand$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ReadAdministrationCommand$$anonfun$1_applyOrElse)], -oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_0_apply)], -oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ReadAdministrationCommand$checkForSubquery$1$lambda$_29_1_apply)], -oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_OptionSemanticChecking$$foldSemanticCheck$extension$lambda$_1_0_apply)], -oncias_SemanticExpressionCheck$$check$lambda$_48_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$check$lambda$_48_0_apply)], -oncias_SemanticExpressionCheck$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$check$lambda$_53_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$check$lambda$_53_0_apply)], -oavra_RangeTransition, "RangeTransition", 85, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_RangeTransition_getSerializationType), "$label0", $rt_wrapFunction0(oavra_RangeTransition_label), "$matches3", $rt_wrapFunction3(oavra_RangeTransition_matches), "$toString", $rt_wrapFunction0(oavra_RangeTransition_toString)], -oavra_AbstractPredicateTransition, 0, oavra_Transition, [], 1, 3, 0, 0, 0, -oavra_PredicateTransition, "PredicateTransition", 85, oavra_AbstractPredicateTransition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_PredicateTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_PredicateTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_PredicateTransition_matches), "$toString", $rt_wrapFunction0(oavra_PredicateTransition_toString)], -oavra_ActionTransition, "ActionTransition", 85, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_ActionTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_ActionTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_ActionTransition_matches), "$toString", $rt_wrapFunction0(oavra_ActionTransition_toString)], -oavra_SetTransition, "SetTransition", 85, oavra_Transition, [], 0, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_SetTransition_getSerializationType), "$label0", $rt_wrapFunction0(oavra_SetTransition_label), "$matches3", $rt_wrapFunction3(oavra_SetTransition_matches), "$toString", $rt_wrapFunction0(oavra_SetTransition_toString)], -oavra_NotSetTransition, "NotSetTransition", 85, oavra_SetTransition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_NotSetTransition_getSerializationType), "$matches3", $rt_wrapFunction3(oavra_NotSetTransition_matches), "$toString", $rt_wrapFunction0(oavra_NotSetTransition_toString)], -oavra_WildcardTransition, "WildcardTransition", 85, oavra_Transition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_WildcardTransition_getSerializationType), "$matches3", $rt_wrapFunction3(oavra_WildcardTransition_matches), "$toString", $rt_wrapFunction0(oavra_WildcardTransition_toString)], -oavra_PrecedencePredicateTransition, "PrecedencePredicateTransition", 85, oavra_AbstractPredicateTransition, [], 4, 3, 0, 0, ["$getSerializationType", $rt_wrapFunction0(oavra_PrecedencePredicateTransition_getSerializationType), "$isEpsilon", $rt_wrapFunction0(oavra_PrecedencePredicateTransition_isEpsilon), "$matches3", $rt_wrapFunction3(oavra_PrecedencePredicateTransition_matches), "$toString", $rt_wrapFunction0(oavra_PrecedencePredicateTransition_toString)], -onih_Exceptions$_clinit_$lambda$_17_0, 0, jl_Object, [jl_Thread$UncaughtExceptionHandler], 0, 3, 0, 0, 0, -oncias_package$$liftSemanticErrorDefOption$lambda$_7_0, "package$$liftSemanticErrorDefOption$lambda$_7_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticErrorDefOption$lambda$_7_0_apply)], -oncia_PrivilegeCommand$stringifyExpression$1$lambda$_78_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$stringifyExpression$1$lambda$_78_0_apply)], -oncia_PrivilegeCommand$checkTypesInList$1$lambda$_80_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_PrivilegeCommand$checkTypesInList$1$lambda$_80_0_apply)], -onciu_RewritableJavascript$PROXY$9_239, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_240, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_241, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_242, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_243, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_244, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_245, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_246, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_247, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_248, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_249, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_250, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$9_251, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_252, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_253, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_254, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_255, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_256, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_257, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_258, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_259, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_239, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_240, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_241, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -364689,123 +293119,111 @@ onciu_RewritableJavascript$PROXY$11_253, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_254, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_255, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_256, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_674, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_675, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_676, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_679, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_681, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_682, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_683, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_685, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_687, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_688, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_690, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_257, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_258, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_259, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_257, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_258, 0, jl_Object, [], 0, 3, 0, 0, 0, onciu_RewritableJavascript$PROXY$11_259, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_607, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_646, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_260, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_261, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_260, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_261, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_697, 0, jl_Object, [], 0, 3, 0, 0, 0, +jli_SerializedLambda, "SerializedLambda", 14, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0]); +$rt_metadata([oti_Structure, 0, jl_Object, [], 0, 3, 0, 0, 0, +otr_RuntimeObject, "RuntimeObject", 78, oti_Structure, [], 0, 3, 0, 0, 0, +jusi_AllMatchConsumer, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_AllMatchConsumer_test)], +oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0_apply)], +scm_ArrayDeque$$anon$1, "ArrayDeque$$anon$1", 21, scm_GrowableBuilder, [], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_ArrayDeque$$anon$1_sizeHint)], +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0_apply)], +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1_apply)], +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2_apply)], +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3_apply)], +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4_apply)], +oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5_apply)], +oncias_SemanticCheckableIterableOnce$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_SetClause$clauseSpecificSemanticCheck$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$clauseSpecificSemanticCheck$lambda$_67_0_apply)], +oncias_SemanticCheckableOption$, 0, jl_Object, [], 4, 3, 0, oncias_SemanticCheckableOption$_$callClinit, 0, +oncia_Merge$clauseSpecificSemanticCheck$lambda$_75_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Merge$clauseSpecificSemanticCheck$lambda$_75_0_apply)], +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_0_apply)], +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_1_apply)], +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_2_apply)], +oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Foreach$clauseSpecificSemanticCheck$lambda$_70_3_apply)], +oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_0_apply)], +oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_1_apply)], +oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Unwind$clauseSpecificSemanticCheck$lambda$_66_2_apply)], +oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_0_apply)], +oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_1_apply)], +oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_65_2_apply)], +oncia_Match$clauseSpecificSemanticCheck$lambda$_69_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$clauseSpecificSemanticCheck$lambda$_69_0_apply)], +oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_70_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_70_0_apply)], +onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0_apply)], +onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1_apply)], ju_LinkedHashMapIterator$EntryIterator, 0, ju_LinkedHashMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_LinkedHashMapIterator$EntryIterator_next)], -oncipv_Cypher5ParserListener, 0, jl_Object, [oavrt_ParseTreeListener], 3, 3, 0, 0, 0, -oncipv_AbstractCypher5AstBuilder, 0, jl_Object, [oncipv_Cypher5ParserListener], 1, 3, 0, 0, ["$exitEveryRule", $rt_wrapFunction1(oncipv_AbstractCypher5AstBuilder_exitEveryRule)], -oncipvaf_LiteralBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, -oncipvaf_LabelExpressionBuilder, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, -oncipvaf_DdlBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, -oncipvaf_DdlCreateBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, -oncipvaf_DdlShowBuilder, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, -oncipvaf_DdlPrivilegeBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, -oncipvaf_ExpressionBuilder0, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, -oncipvaf_StatementBuilder, 0, jl_Object, [oncipv_Cypher5ParserListener], 3, 3, 0, 0, 0, -oncipvaf_Cypher5AstBuilder, 0, oncipv_AbstractCypher5AstBuilder, [oncipvaf_LiteralBuilder0, oncipvaf_LabelExpressionBuilder, oncipvaf_DdlBuilder0, oncipvaf_DdlCreateBuilder0, oncipvaf_DdlShowBuilder, oncipvaf_DdlPrivilegeBuilder0, oncipvaf_ExpressionBuilder0, oncipvaf_StatementBuilder], 4, 3, 0, 0, 0, -oncipa_SyntaxChecker, 0, jl_Object, [oavrt_ParseTreeListener], 3, 3, 0, 0, 0, -oncipvaf_Cypher5SyntaxChecker, 0, jl_Object, [oncipa_SyntaxChecker], 4, 3, 0, 0, ["$errors", $rt_wrapFunction0(oncipvaf_Cypher5SyntaxChecker_errors), "$exitEveryRule", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker_exitEveryRule), "$check2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker_check)]]); -$rt_metadata([oavra_LL1Analyzer, 0, jl_Object, [], 0, 3, 0, 0, 0, -juc_CancellationException, 0, jl_IllegalStateException, [], 0, 3, 0, 0, 0, -oavrm_ParseCancellationException, "ParseCancellationException", 87, juc_CancellationException, [], 0, 3, 0, 0, 0, -sc_Iterator$$anon$22, "Iterator$$anon$22", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$22_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$22_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$22_next)], -onciu_Fby$$anon$2, "Fby$$anon$2", 54, jl_Object, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(onciu_Fby$$anon$2_iterator), "$isEmpty", $rt_wrapFunction0(onciu_Fby$$anon$2_isEmpty), "$toString", $rt_wrapFunction0(onciu_Fby$$anon$2_toString), "$foreach", $rt_wrapFunction1(onciu_Fby$$anon$2_foreach), "$exists", $rt_wrapFunction1(onciu_Fby$$anon$2_exists), "$find3", $rt_wrapFunction1(onciu_Fby$$anon$2_find), "$foldLeft", $rt_wrapFunction2(onciu_Fby$$anon$2_foldLeft), "$nonEmpty", $rt_wrapFunction0(onciu_Fby$$anon$2_nonEmpty), -"$size", $rt_wrapFunction0(onciu_Fby$$anon$2_size), "$copyToArray1", $rt_wrapFunction1(onciu_Fby$$anon$2_copyToArray0), "$copyToArray0", $rt_wrapFunction2(onciu_Fby$$anon$2_copyToArray), "$copyToArray", $rt_wrapFunction3(onciu_Fby$$anon$2_copyToArray1), "$to0", $rt_wrapFunction1(onciu_Fby$$anon$2_to), "$toList", $rt_wrapFunction0(onciu_Fby$$anon$2_toList), "$toSeq", $rt_wrapFunction0(onciu_Fby$$anon$2_toSeq), "$toArray", $rt_wrapFunction1(onciu_Fby$$anon$2_toArray), "$knownSize", $rt_wrapFunction0(onciu_Fby$$anon$2_knownSize), -"$hasNext", $rt_wrapFunction0(onciu_Fby$$anon$2_hasNext), "$next", $rt_wrapFunction0(onciu_Fby$$anon$2_next)], -onciu_Last$$anon$3, "Last$$anon$3", 54, jl_Object, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(onciu_Last$$anon$3_iterator), "$isEmpty", $rt_wrapFunction0(onciu_Last$$anon$3_isEmpty), "$toString", $rt_wrapFunction0(onciu_Last$$anon$3_toString), "$foreach", $rt_wrapFunction1(onciu_Last$$anon$3_foreach), "$exists", $rt_wrapFunction1(onciu_Last$$anon$3_exists), "$find3", $rt_wrapFunction1(onciu_Last$$anon$3_find), "$foldLeft", $rt_wrapFunction2(onciu_Last$$anon$3_foldLeft), "$nonEmpty", $rt_wrapFunction0(onciu_Last$$anon$3_nonEmpty), +oncie_Expression$$anonfun$arguments$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$arguments$1_applyOrElse)], +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0_apply)], +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1_apply)], +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2_apply)], +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3_apply)], +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4_apply)], +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5_apply)], +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6, "ResolvedFunctionInvocation$semanticCheck$lambda$_9_6", 65, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6_apply)], +oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7_apply)], +oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0_apply)], +oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0_apply)], +oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0_apply)], +oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0_apply)], +oncie_VariableGrouping, "VariableGrouping", 62, jl_Object, [onciu_ASTNode, oncie_HasMappableExpressions, ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_VariableGrouping_position), "$toString", $rt_wrapFunction0(oncie_VariableGrouping_toString), "$productPrefix", $rt_wrapFunction0(oncie_VariableGrouping_productPrefix), "$productArity", $rt_wrapFunction0(oncie_VariableGrouping_productArity), "$productElement", $rt_wrapFunction1(oncie_VariableGrouping_productElement), "$productIterator", +$rt_wrapFunction0(oncie_VariableGrouping_productIterator), "$hashCode", $rt_wrapFunction0(oncie_VariableGrouping_hashCode), "$equals", $rt_wrapFunction1(oncie_VariableGrouping_equals), "$dup", $rt_wrapFunction1(oncie_VariableGrouping_dup)], +oncius_TypeSpec$constrain$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$constrain$lambda$_21_0_apply)], +onciu_Last$$anon$3, "Last$$anon$3", 52, jl_Object, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(onciu_Last$$anon$3_iterator), "$isEmpty", $rt_wrapFunction0(onciu_Last$$anon$3_isEmpty), "$toString", $rt_wrapFunction0(onciu_Last$$anon$3_toString), "$foreach", $rt_wrapFunction1(onciu_Last$$anon$3_foreach), "$exists", $rt_wrapFunction1(onciu_Last$$anon$3_exists), "$find2", $rt_wrapFunction1(onciu_Last$$anon$3_find), "$foldLeft", $rt_wrapFunction2(onciu_Last$$anon$3_foldLeft), "$nonEmpty", $rt_wrapFunction0(onciu_Last$$anon$3_nonEmpty), "$size", $rt_wrapFunction0(onciu_Last$$anon$3_size), "$copyToArray1", $rt_wrapFunction1(onciu_Last$$anon$3_copyToArray1), "$copyToArray0", $rt_wrapFunction2(onciu_Last$$anon$3_copyToArray0), "$copyToArray", $rt_wrapFunction3(onciu_Last$$anon$3_copyToArray), "$to0", $rt_wrapFunction1(onciu_Last$$anon$3_to), "$toList", $rt_wrapFunction0(onciu_Last$$anon$3_toList), "$toSeq", $rt_wrapFunction0(onciu_Last$$anon$3_toSeq), "$toArray", $rt_wrapFunction1(onciu_Last$$anon$3_toArray), "$knownSize", $rt_wrapFunction0(onciu_Last$$anon$3_knownSize), "$hasNext", $rt_wrapFunction0(onciu_Last$$anon$3_hasNext), "$next", $rt_wrapFunction0(onciu_Last$$anon$3_next)], -oavra_PredictionContext, "PredictionContext", 85, jl_Object, [], 1, 3, [0,0,0], 0, ["$isEmpty", $rt_wrapFunction0(oavra_PredictionContext_isEmpty), "$hashCode", $rt_wrapFunction0(oavra_PredictionContext_hashCode)], -oavrd_DFASerializer, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$syntacticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncir_Deprecations$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$anonfun$1$applyOrElse$lambda$_0_1_apply)], -oncifp_DeprecationInfo, 0, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, 0, -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_0_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_1_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_2_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_3_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_4_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_5_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_6_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_7_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_8_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$applyOrElse$lambda$_0_9_apply)], -one_InternalException, "InternalException", 70, one_Neo4jException, [], 0, 3, 0, 0, ["$cause0", $rt_wrapFunction0(ong_ErrorGqlStatusObject_cause)], -oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_0_apply)], -oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_1_apply)], -oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$anonfun$findWarnings$1$applyOrElse$lambda$_0_2_apply)], -oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$anonfun$findWarningsForOptionals$1$applyOrElse$lambda$_0_0_apply)], -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$applyOrElse$lambda$_0_1_apply)], -oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_rewriteShowQuery$$anonfun$lastPosition$1$applyOrElse$lambda$_0_0_apply)], -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$applyOrElse$lambda$_0_0_apply)], -oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_0_apply)], -oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_1_apply)], -oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_PatternExpressionInNonExistenceCheck$$anonfun$$nestedInanonfun$patternExpressionInNonExistenceCheck$1$1$applyOrElse$lambda$_0_2_apply)], -oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ListCoercedToBooleanCheck$$anonfun$$nestedInanonfun$listCoercedToBooleanCheck$1$1$applyOrElse$lambda$_0_0_apply)], -oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0_apply)], -onciu_DeprecatedFeature, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6, 0, jl_Object, [onciu_DeprecatedFeature], 3, 3, 0, 0, 0, -oncia_Merge$SelfReference$, 0, jl_Object, [onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6, s_Product, ji_Serializable], 0, 3, 0, oncia_Merge$SelfReference$_$callClinit, 0, -oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_1_apply)], -oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_0_apply)], -oncia_Create$SelfReferenceAcrossPatterns$, 0, jl_Object, [onciu_DeprecatedFeature$DeprecatedIn5ErrorIn6, s_Product, ji_Serializable], 0, 3, 0, oncia_Create$SelfReferenceAcrossPatterns$_$callClinit, 0, -oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckAcrossPatternParts$$anonfun$$nestedInanonfun$check$2$1$applyOrElse$lambda$_0_1_apply)], -oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_containsAggregate$$anonfun$apply$1$applyOrElse$lambda$_0_0_apply)], -oavra_StarBlockStartState, "StarBlockStartState", 85, oavra_BlockStartState, [], 4, 3, 0, 0, ["$getStateType", $rt_wrapFunction0(oavra_StarBlockStartState_getStateType)], -oavra_ATNDeserializer$1, 0, jl_Object, [], 32, 0, 0, oavra_ATNDeserializer$1_$callClinit, 0, -oavra_LexerChannelAction, "LexerChannelAction", 85, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerChannelAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerChannelAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerChannelAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerChannelAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerChannelAction_toString)], -oavra_LexerCustomAction, "LexerCustomAction", 85, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerCustomAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerCustomAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerCustomAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerCustomAction_equals)], -oavra_LexerModeAction, "LexerModeAction", 85, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerModeAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerModeAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerModeAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerModeAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerModeAction_toString)]]); -$rt_metadata([oavra_LexerMoreAction, "LexerMoreAction", 85, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerMoreAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerMoreAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerMoreAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerMoreAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerMoreAction_toString)], -oavra_LexerPopModeAction, "LexerPopModeAction", 85, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerPopModeAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerPopModeAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerPopModeAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerPopModeAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerPopModeAction_toString)], -oavra_LexerPushModeAction, "LexerPushModeAction", 85, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerPushModeAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerPushModeAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerPushModeAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerPushModeAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerPushModeAction_toString)], -oavra_LexerSkipAction, "LexerSkipAction", 85, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerSkipAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerSkipAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerSkipAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerSkipAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerSkipAction_toString)], -oavra_LexerTypeAction, "LexerTypeAction", 85, jl_Object, [oavra_LexerAction], 0, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerTypeAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerTypeAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerTypeAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerTypeAction_equals), "$toString", $rt_wrapFunction0(oavra_LexerTypeAction_toString)], -oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$isAggregate$lambda$_10_0_apply)], -oncifp_InternalSyntaxUsageStats, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_InternalSyntaxUsageStatsNoOp$, 0, jl_Object, [oncifp_InternalSyntaxUsageStats, s_Product, ji_Serializable], 4, 3, 0, oncifp_InternalSyntaxUsageStatsNoOp$_$callClinit, 0, -oncipv_Cypher25ParserListener, 0, jl_Object, [oavrt_ParseTreeListener], 3, 3, 0, 0, 0, -oncipv_AbstractCypher25AstBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 1, 3, 0, 0, ["$exitEveryRule", $rt_wrapFunction1(oncipv_AbstractCypher25AstBuilder_exitEveryRule)], -oncipvaf_LiteralBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, -oncipvaf_LabelExpressionBuilder0, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, -oncipvaf_DdlBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, -oncipvaf_DdlCreateBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, -oncipvaf_DdlShowBuilder0, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, -oncipvaf_DdlPrivilegeBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, -oncipvaf_ExpressionBuilder, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, -oncipvaf_StatementBuilder0, 0, jl_Object, [oncipv_Cypher25ParserListener], 3, 3, 0, 0, 0, -oncipvaf_Cypher25AstBuilder, 0, oncipv_AbstractCypher25AstBuilder, [oncipvaf_LiteralBuilder, oncipvaf_LabelExpressionBuilder0, oncipvaf_DdlBuilder, oncipvaf_DdlCreateBuilder, oncipvaf_DdlShowBuilder0, oncipvaf_DdlPrivilegeBuilder, oncipvaf_ExpressionBuilder, oncipvaf_StatementBuilder0], 4, 3, 0, 0, 0, -oncipvaf_Cypher25SyntaxChecker, 0, jl_Object, [oncipa_SyntaxChecker], 4, 3, 0, 0, ["$errors", $rt_wrapFunction0(oncipvaf_Cypher25SyntaxChecker_errors), "$exitEveryRule", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker_exitEveryRule), "$check2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker_check)], -oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_0_apply)], -oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ExternalAuth$checkRequiredAttributes$lambda$_60_1_apply)], -oncia_NativeAuth$checkRequiredAttributes$lambda$_59_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_NativeAuth$checkRequiredAttributes$lambda$_59_0_apply)], -oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_61_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_61_0_apply)], -oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_60_0_apply)], -oavrm_MurmurHash, 0, jl_Object, [], 4, 3, 0, 0, 0, -sc_StringView, 0, sc_AbstractIndexedSeqView, [s_Product], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sc_StringView_length), "$apply1", $rt_wrapFunction1(sc_StringView_apply)], -oncip_CypherErrorStrategy$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncip_CypherErrorStrategy$message$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorStrategy$message$lambda$_7_0_apply)], -oncip_CypherErrorStrategy$message$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorStrategy$message$lambda$_7_1_apply)], -oncip_CypherErrorStrategy$message$lambda$_7_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorStrategy$message$lambda$_7_2_apply)], -oncip_CypherErrorStrategy$message$lambda$_7_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncip_CypherErrorStrategy$message$lambda$_7_3_apply)], -oavra_SingletonPredictionContext, "SingletonPredictionContext", 85, oavra_PredictionContext, [], 0, 3, 0, 0, ["$size", $rt_wrapFunction0(oavra_SingletonPredictionContext_size), "$getParent", $rt_wrapFunction1(oavra_SingletonPredictionContext_getParent), "$getReturnState", $rt_wrapFunction1(oavra_SingletonPredictionContext_getReturnState), "$equals", $rt_wrapFunction1(oavra_SingletonPredictionContext_equals), "$toString", $rt_wrapFunction0(oavra_SingletonPredictionContext_toString)], -oavra_EmptyPredictionContext, "EmptyPredictionContext", 85, oavra_SingletonPredictionContext, [], 0, 3, 0, oavra_EmptyPredictionContext_$callClinit, ["$isEmpty", $rt_wrapFunction0(oavra_EmptyPredictionContext_isEmpty), "$size", $rt_wrapFunction0(oavra_EmptyPredictionContext_size), "$getParent", $rt_wrapFunction1(oavra_EmptyPredictionContext_getParent), "$getReturnState", $rt_wrapFunction1(oavra_EmptyPredictionContext_getReturnState), "$equals", $rt_wrapFunction1(oavra_EmptyPredictionContext_equals), "$toString", -$rt_wrapFunction0(oavra_EmptyPredictionContext_toString)], -oavra_SemanticContext, "SemanticContext", 85, jl_Object, [], 1, 3, [0,0,0], 0, ["$evalPrecedence", $rt_wrapFunction2(oavra_SemanticContext_evalPrecedence)], -oavra_SemanticContext$Empty, "SemanticContext$Empty", 85, oavra_SemanticContext, [], 0, 3, 0, 0, ["$eval", $rt_wrapFunction2(oavra_SemanticContext$Empty_eval)], -oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_0_apply)], -oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$$org$neo4j$cypher$internal$rewriting$Deprecations$$unionReturnItemsInDifferentOrder$lambda$_2_1_apply)], -oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ListCoercedToBooleanCheck$$org$neo4j$cypher$internal$frontend$phases$ListCoercedToBooleanCheck$$isListCoercedToBoolean$lambda$_2_0_apply)], +onciu_Fby$$anon$2, "Fby$$anon$2", 52, jl_Object, [sc_Iterator], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(onciu_Fby$$anon$2_iterator), "$isEmpty", $rt_wrapFunction0(onciu_Fby$$anon$2_isEmpty), "$toString", $rt_wrapFunction0(onciu_Fby$$anon$2_toString), "$foreach", $rt_wrapFunction1(onciu_Fby$$anon$2_foreach), "$exists", $rt_wrapFunction1(onciu_Fby$$anon$2_exists), "$find2", $rt_wrapFunction1(onciu_Fby$$anon$2_find), "$foldLeft", $rt_wrapFunction2(onciu_Fby$$anon$2_foldLeft), "$nonEmpty", $rt_wrapFunction0(onciu_Fby$$anon$2_nonEmpty), +"$size", $rt_wrapFunction0(onciu_Fby$$anon$2_size), "$copyToArray1", $rt_wrapFunction1(onciu_Fby$$anon$2_copyToArray0), "$copyToArray0", $rt_wrapFunction2(onciu_Fby$$anon$2_copyToArray), "$copyToArray", $rt_wrapFunction3(onciu_Fby$$anon$2_copyToArray1), "$to0", $rt_wrapFunction1(onciu_Fby$$anon$2_to), "$toList", $rt_wrapFunction0(onciu_Fby$$anon$2_toList), "$toSeq", $rt_wrapFunction0(onciu_Fby$$anon$2_toSeq), "$toArray", $rt_wrapFunction1(onciu_Fby$$anon$2_toArray), "$knownSize", $rt_wrapFunction0(onciu_Fby$$anon$2_knownSize), +"$hasNext", $rt_wrapFunction0(onciu_Fby$$anon$2_hasNext), "$next", $rt_wrapFunction0(onciu_Fby$$anon$2_next)], +oavra_OrderedATNConfigSet, "OrderedATNConfigSet", 83, oavra_ATNConfigSet, [], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +oavra_LexerATNConfig, "LexerATNConfig", 83, oavra_ATNConfig, [], 0, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(oavra_LexerATNConfig_hashCode), "$equals10", $rt_wrapFunction1(oavra_LexerATNConfig_equals)], +jnci_BufferedEncoder, 0, jnc_CharsetEncoder, [], 1, 3, 0, 0, 0]); +$rt_metadata([jnci_UTF8Encoder, 0, jnci_BufferedEncoder, [], 0, 3, 0, 0, 0, +oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_0_apply)], +oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ExternalAuth$checkRequiredAttributes$lambda$_65_1_apply)], +oncia_NativeAuth$checkRequiredAttributes$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_NativeAuth$checkRequiredAttributes$lambda$_64_0_apply)], +oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_66_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ExternalAuth$checkNoUnsupportedAttributes$lambda$_66_0_apply)], +oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_NativeAuth$checkNoUnsupportedAttributes$lambda$_65_0_apply)], +oncia_ShowConstraintsClause$clauseSpecificSemanticCheck$lambda$_93_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$clauseSpecificSemanticCheck$lambda$_93_0_apply)], +oncifp_ResolvedCall$argumentCheck$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$argumentCheck$lambda$_28_0_apply)], +oncifp_ResolvedCall$argumentCheck$lambda$_28_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$argumentCheck$lambda$_28_1_apply)], +oncifp_ResolvedCall$argumentCheck$lambda$_28_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_ResolvedCall$argumentCheck$lambda$_28_2_apply)], +oncifp_ResolvedCall$argumentCheck$lambda$_28_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$argumentCheck$lambda$_28_3_apply)], +oncifp_ResolvedCall$argumentCheck$lambda$_28_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$argumentCheck$lambda$_28_4_apply)], +oncifp_ResolvedCall$argumentCheck$lambda$_28_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$argumentCheck$lambda$_28_5_apply)], +oncifp_ResolvedCall$resultCheck$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$resultCheck$lambda$_29_0_apply)], +oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0_apply)], +oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0, "package$$liftSemanticErrorDefsFunc$lambda$_3_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0_apply)], +oncias_SemanticPatternCheck$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$3_applyOrElse)], +oncia_Return$checkVariableScope$lambda$_96_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Return$checkVariableScope$lambda$_96_0_apply)], +oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0_apply)], +oncias_SemanticPatternCheck$$check$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$check$lambda$_49_0_apply)], +oncias_SemanticPatternCheck$$check$lambda$_49_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$check$lambda$_49_1_apply)], +oncias_SemanticPatternCheck$$check$lambda$_49_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_49_2_apply)], +oncias_SemanticPatternCheck$$check$lambda$_49_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_49_3_apply)], +oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0_apply)], +oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1_apply)], +oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_70_0_apply)], +oncia_Remove$$anonfun$15, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Remove$$anonfun$15_applyOrElse)], +oncia_Remove$$anonfun$16, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Remove$$anonfun$16_applyOrElse)], +oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_69_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_69_0_apply)], +oncia_Delete$warnAboutDeletingLabels$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Delete$warnAboutDeletingLabels$lambda$_69_0_apply)], +oncia_Delete$warnAboutDeletingLabels$lambda$_69_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Delete$warnAboutDeletingLabels$lambda$_69_1_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_0_apply)], oncie_NormalForm$, 0, jl_Object, [], 4, 3, 0, 0, 0, onciap_DefaultExpressionStringifier$stringify$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_1_apply)], @@ -364816,1607 +293234,970 @@ oncie_Parameter$, 0, jl_Object, [], 4, 3, 0, 0, 0, onciap_DefaultExpressionStringifier$stringify$lambda$_11_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_3_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$stringify$lambda$_11_4_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_5_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$stringify$lambda$_11_6_apply)]]); -$rt_metadata([onciap_DefaultExpressionStringifier$stringify$lambda$_11_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_7_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$stringify$lambda$_11_6_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_7_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$stringify$lambda$_11_8_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_9_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$stringify$lambda$_11_10_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_11, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_11_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_12, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_12_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_13, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$stringify$lambda$_11_13_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_14, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_14_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_15, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_15_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_14, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_14_apply)]]); +$rt_metadata([onciap_DefaultExpressionStringifier$stringify$lambda$_11_15, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_15_apply)], onciap_DefaultExpressionStringifier$stringify$lambda$_11_16, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$stringify$lambda$_11_16_apply)], -oncie_LabelOrTypeCheckExpression, 0, jl_Object, [oncie_BooleanExpression], 3, 3, 0, 0, 0, oncie_HasLabelsOrTypes, 0, oncie_Expression, [oncie_LabelOrTypeCheckExpression, ji_Serializable], 0, 3, 0, 0, 0, -oncie_LabelCheckExpression, 0, jl_Object, [oncie_BooleanExpression], 3, 3, 0, 0, 0, oncie_HasLabels, 0, oncie_Expression, [oncie_LabelCheckExpression, ji_Serializable], 0, 3, 0, 0, 0, onciap_DefaultExpressionStringifier$stringify$lambda$_11_17, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncie_HasAnyLabel, 0, oncie_Expression, [oncie_LabelCheckExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncie_HasDynamicLabels, 0, oncie_Expression, [oncie_DynamicLabelsExpressions, ji_Serializable], 0, 3, 0, 0, 0, onciap_DefaultExpressionStringifier$stringify$lambda$_11_18, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncie_HasALabel, 0, oncie_Expression, [oncie_LabelCheckExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncie_HasAnyLabel, 0, oncie_Expression, [oncie_LabelCheckExpression, ji_Serializable], 0, 3, 0, 0, 0, onciap_DefaultExpressionStringifier$stringify$lambda$_11_19, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncie_HasALabelOrType, 0, oncie_Expression, [oncie_LabelOrTypeCheckExpression, ji_Serializable], 0, 3, 0, 0, 0, -oncie_HasTypes, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, onciap_DefaultExpressionStringifier$stringify$lambda$_11_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncie_DesugaredMapProjection, 0, oncie_Expression, [ji_Serializable], 0, 3, 0, 0, 0, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_21, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_21_apply)], +oncie_HasAnyDynamicLabel, 0, oncie_Expression, [oncie_DynamicLabelsExpressions, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_21, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncie_HasALabel, 0, oncie_Expression, [oncie_LabelCheckExpression, ji_Serializable], 0, 3, 0, 0, 0, onciap_DefaultExpressionStringifier$stringify$lambda$_11_22, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_23, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_23_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_24, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_24_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_25, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_25_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_26, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_26_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_27, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_27_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_28, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_28_apply)], -oncie_AndsReorderable, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_23, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncie_HasALabelOrType, 0, oncie_Expression, [oncie_LabelOrTypeCheckExpression, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_24, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_25, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncie_HasDynamicLabelsOrTypes, 0, oncie_Expression, [oncie_DynamicLabelsOrTypeExpressions, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_26, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncie_HasAnyDynamicLabelsOrTypes, 0, oncie_Expression, [oncie_DynamicLabelsOrTypeExpressions, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_27, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_28, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, onciap_DefaultExpressionStringifier$stringify$lambda$_11_29, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_29_apply)], -onciap_DefaultExpressionStringifier$stringify$lambda$_11_30, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_30_apply)], -oncie_AndedPropertyInequalities, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, -oncie_Ors, 0, oncie_Expression, [oncie_BooleanExpression, oncie_MultiOperatorExpression, ji_Serializable], 0, 3, 0, 0, 0, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_31, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciap_DefaultExpressionStringifier$stringify$lambda$_11_32, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncie_PathExpression, 0, oncie_Expression, [ji_Serializable], 0, 3, 0, 0, 0, -oncie_CoerceTo, "CoerceTo", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$position", $rt_wrapFunction0(oncie_CoerceTo_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_CoerceTo_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_CoerceTo_productPrefix), "$productArity", $rt_wrapFunction0(oncie_CoerceTo_productArity), "$productElement", $rt_wrapFunction1(oncie_CoerceTo_productElement), "$productIterator", $rt_wrapFunction0(oncie_CoerceTo_productIterator), "$hashCode", $rt_wrapFunction0(oncie_CoerceTo_hashCode), -"$toString", $rt_wrapFunction0(oncie_CoerceTo_toString), "$equals", $rt_wrapFunction1(oncie_CoerceTo_equals)], -oncilp_CoerceToPredicate, 0, oncie_Expression, [oncie_BooleanExpression, oncias_SemanticCheckableExpression, ji_Serializable], 0, 3, 0, 0, 0, -oncie_AssertIsNode, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, -oncie_ElementIdToLongId, 0, oncie_Expression, [ji_Serializable], 0, 3, 0, 0, 0, -oncie_RelationshipUniquenessPredicate, 0, jl_Object, [oncie_BooleanExpression], 3, 3, 0, 0, 0, -oncie_NoneOfRelationships, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, -oncie_EntityType, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_NODE_TYPE$, "NODE_TYPE$", 64, jl_Object, [oncie_EntityType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncie_NODE_TYPE$_productArity), "$productElement", $rt_wrapFunction1(oncie_NODE_TYPE$_productElement), "$productIterator", $rt_wrapFunction0(oncie_NODE_TYPE$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NODE_TYPE$_hashCode), "$toString", $rt_wrapFunction0(oncie_NODE_TYPE$_toString)], -oncie_ElementIdToLongId$Mode, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_ElementIdToLongId$Mode$Single$, 0, jl_Object, [oncie_ElementIdToLongId$Mode, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -oncie_ElementIdToLongId$Mode$Many$, 0, jl_Object, [oncie_ElementIdToLongId$Mode, s_Product, ji_Serializable], 0, 3, 0, 0, 0]); -$rt_metadata([oncie_RELATIONSHIP_TYPE$, "RELATIONSHIP_TYPE$", 64, jl_Object, [oncie_EntityType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncie_RELATIONSHIP_TYPE$_productArity), "$productElement", $rt_wrapFunction1(oncie_RELATIONSHIP_TYPE$_productElement), "$productIterator", $rt_wrapFunction0(oncie_RELATIONSHIP_TYPE$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_RELATIONSHIP_TYPE$_hashCode), "$toString", $rt_wrapFunction0(oncie_RELATIONSHIP_TYPE$_toString)], -oncie_DifferentRelationships, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, -oncie_Disjoint, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, -oncie_Unique, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, -oncie_VarLengthBound, 0, oncie_Expression, [oncie_BooleanExpression], 1, 3, 0, 0, 0, -oncie_VarLengthLowerBound, 0, oncie_VarLengthBound, [ji_Serializable], 0, 3, 0, 0, 0, -oncie_VarLengthUpperBound, 0, oncie_VarLengthBound, [ji_Serializable], 0, 3, 0, 0, 0, -oncie_IsRepeatTrailUnique, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticAnalysisTooling$declareVariable$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$declareVariable$lambda$_57_0_apply)], -sc_Iterator$$anon$16, "Iterator$$anon$16", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_Iterator$$anon$16_knownSize), "$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$16_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$16_next)], -oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Scope$$anonfun$dumpTree$1$lambda$_48_0_apply)], -sc_SeqOps$occCounts$lambda$_124_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_SeqOps$occCounts$lambda$_124_0_apply)], -sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StrictOptimizedSeqOps$$anonfun$intersect$1$lambda$_19_0_apply)], -oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, -onciafnc_CodeCompletionCore, 0, jl_Object, [], 0, 3, 0, 0, 0, -scm_Builder$$anon$1, "Builder$$anon$1", 23, jl_Object, [scm_Builder], 4, 3, 0, 0, ["$sizeHint0", $rt_wrapFunction2(scm_Builder$$anon$1_sizeHint0), "$sizeHint", $rt_wrapFunction1(scm_Builder$$anon$1_sizeHint), "$result", $rt_wrapFunction0(scm_Builder$$anon$1_result), "$addAll0", $rt_wrapFunction1(scm_Builder$$anon$1_addAll), "$addOne", $rt_wrapFunction1(scm_Builder$$anon$1_addOne)], -sc_View$, 0, jl_Object, [sc_IterableFactory], 4, 3, 0, 0, ["$newBuilder", $rt_wrapFunction0(sc_View$_newBuilder), "$from0", $rt_wrapFunction1(sc_View$_from0)], -oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_154_0, "SingleQuery$$anonfun$checkClauses$2$lambda$_154_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkClauses$2$lambda$_154_0_apply)], -oncie_ImplicitProcedureArgument, "ImplicitProcedureArgument", 64, oncie_Expression, [ji_Serializable], 0, 3, [0,0,0], 0, ["$asCanonicalStringVal", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_asCanonicalStringVal), "$position", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_position), "$isConstantForQuery", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_isConstantForQuery), "$productPrefix", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_productPrefix), "$productArity", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_productArity), -"$productElement", $rt_wrapFunction1(oncie_ImplicitProcedureArgument_productElement), "$productIterator", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_productIterator), "$hashCode", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_hashCode), "$toString", $rt_wrapFunction0(oncie_ImplicitProcedureArgument_toString), "$equals", $rt_wrapFunction1(oncie_ImplicitProcedureArgument_equals)], -oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$9$lambda$_36_0_apply)], -oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncias_package$$$anonfun$liftSemanticEitherFunc$1$lambda$_14_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_0_apply)], -oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_1_apply)], -oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_2_apply)], -oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$1$lambda$_65_3_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_1_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_2_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_3_apply)], -oncia_CypherTypeName, 0, jl_Object, [oncias_SemanticCheckable, oncias_SemanticAnalysisTooling, s_Product, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_4_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_5_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_6_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_7_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_8_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_9_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_10_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_11_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_12_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_13_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_14_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_15_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_16_apply)], -oncie_PartialPredicate, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_17_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_18_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_19_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_20_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_21_apply)]]); -$rt_metadata([oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_22, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_23, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_24_apply)], -oncie_ASTCachedProperty, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_CachedProperty, 0, oncie_LogicalProperty, [oncie_ASTCachedProperty, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_25_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_26_apply)], -oncie_CachedHasProperty, 0, oncie_LogicalProperty, [oncie_ASTCachedProperty, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_27_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_28_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29, "SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_29_apply)], -oncie_GetDegree, 0, oncie_Expression, [ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticFunctionCheck$, 0, jl_Object, [oncias_SemanticAnalysisTooling], 4, 3, 0, oncias_SemanticFunctionCheck$_$callClinit, ["$specifyType0", $rt_wrapFunction2(oncias_SemanticFunctionCheck$_specifyType), "$expectType4", $rt_wrapFunction4(oncias_SemanticFunctionCheck$_expectType), "$expectType$default$4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$_expectType$default$4), "$types0", $rt_wrapFunction1(oncias_SemanticFunctionCheck$_types)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_30_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_31_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_32_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_33_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_34_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_35_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_36_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_37_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_38_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_39_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_40_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_41_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_42_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_43_apply)], -oncias_SemanticExpressionCheck$FilteringExpressions$, 0, jl_Object, [], 0, 3, 0, oncias_SemanticExpressionCheck$FilteringExpressions$_$callClinit, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_44_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_45_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_46_apply)], -oncie_PathStep, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_NodePathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 4, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_47_apply)], -oncie_SingleRelationshipPathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 4, 3, 0, 0, 0, -oncie_MultiRelationshipPathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 4, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_48_apply)], -oncie_RepeatPathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 4, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_49_apply)], -oncie_NilPathStep, 0, oncie_Expression, [oncie_PathStep, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_50, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticPatternCheck$, 0, jl_Object, [oncias_SemanticAnalysisTooling], 4, 3, 0, oncias_SemanticPatternCheck$_$callClinit, ["$expectType", $rt_wrapFunction2(oncias_SemanticPatternCheck$_expectType0), "$expectType4", $rt_wrapFunction4(oncias_SemanticPatternCheck$_expectType), "$expectType$default$4", $rt_wrapFunction0(oncias_SemanticPatternCheck$_expectType$default$4)], -oncie_Pattern$SemanticContext, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncie_Pattern$SemanticContext$Expression$, "Pattern$SemanticContext$Expression$", 64, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, oncie_Pattern$SemanticContext$Expression$_$callClinit, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Expression$_productElement), -"$productIterator", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Expression$_toString)], -oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1_applyOrElse)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_51_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_52_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_53_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_54_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_55_apply)]]); -$rt_metadata([oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_56_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_57_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_58, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_59_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_60_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_61_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_62_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_63_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_64_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_65_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_66_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_67_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_68_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_69_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_70_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_71_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_72_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_73_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_74_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_75_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_76_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_77_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_78_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_79_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_80_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_81_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_82_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_83_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_84_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_85_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_86_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_87_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_88_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_89_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_90_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$1$lambda$_188_91_apply)], -oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_AmbiguousAggregationAnalysis$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply)], -onciu_NonEmptyList$reverse$lambda$_66_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_NonEmptyList$reverse$lambda$_66_0_apply)], -juca_AtomicInteger, 0, jl_Number, [ji_Serializable], 0, 3, 0, 0, 0, -oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0, "SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0", 67, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$1$lambda$_29_0_apply)], -oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0, "SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0", 67, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SyntaxDeprecationWarningsAndReplacements$$anonfun$process$4$lambda$_32_0_apply)], -oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0, "CreateConstraint$checkPropertyTypes$lambda$_33_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$checkPropertyTypes$lambda$_33_0_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$State, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$, "IsolateSubqueriesInMutatingPatterns$NothingFound$", 67, jl_Object, [oncifp_IsolateSubqueriesInMutatingPatterns$State, s_Product, ji_Serializable], 0, 3, 0, oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_$callClinit, ["$foundSubquery", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_foundSubquery), "$foundCrossReference", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_foundCrossReference), -"$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productArity), "$productElement", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_toString)], -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1_applyOrElse)], -oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$, "IsolateSubqueriesInMutatingPatterns$SubqueryFound$", 67, jl_Object, [oncifp_IsolateSubqueriesInMutatingPatterns$State, s_Product, ji_Serializable], 0, 3, 0, oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_$callClinit, ["$foundSubquery", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_foundSubquery), "$foundCrossReference", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_foundCrossReference), -"$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productArity), "$productElement", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_toString)], -oncia_SchemaCommand$checkOptionsMap$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_CreateIndex$semanticCheck$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateIndex$semanticCheck$lambda$_31_0_apply)], -oncia_SchemaCommand$checkSingleProperty$lambda$_8_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SchemaCommand$checkSingleProperty$lambda$_8_0_apply)], -oncia_AuthImpl$checkDuplicates$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AuthImpl$checkDuplicates$lambda$_5_0_apply)]]); -$rt_metadata([oncia_AuthImpl$$anonfun$checkDuplicates$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_AuthImpl$$anonfun$checkDuplicates$2_applyOrElse)], -oncia_AuthImpl$checkDuplicates$lambda$_5_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_AuthImpl$checkDuplicates$lambda$_5_1_apply)], -oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0, "UnmappedUnion$checkColumnNamesAgree$lambda$_8_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnmappedUnion$checkColumnNamesAgree$lambda$_8_0_apply)], -onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0_apply)], -onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1_apply)], -onciap_DefaultExpressionStringifier$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_DefaultExpressionStringifier$$anonfun$1_applyOrElse)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1_applyOrElse)], -oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Symbol$positionsAndUniqueIdString$lambda$_13_0_apply)], -sm_Ordering$Tuple2Ordering, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$on", $rt_wrapFunction1(sm_Ordering$Tuple2Ordering_on), "$compare2", $rt_wrapFunction2(sm_Ordering$Tuple2Ordering_compare)], -onciafnc_CodeCompletionCore$CandidatesCollection, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncip_CypherErrorVocabulary$expected$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$expected$lambda$_0_0_apply)], -oncip_CypherErrorVocabulary$expected$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$expected$lambda$_0_1_apply)], -oncip_CypherErrorVocabulary$expected$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$expected$lambda$_0_2_apply)], -sm_Ordering$ExtraImplicits, 0, jl_Object, [], 3, 3, 0, 0, 0, -sm_Ordering$Implicits$, 0, jl_Object, [sm_Ordering$ExtraImplicits], 0, 3, 0, 0, 0, -oncip_CypherErrorVocabulary$expected$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$expected$lambda$_0_3_apply)], -oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$tokenDisplayNames$lambda$_9_0_apply)], -oncia_SingleQuery$checkHorizon$lambda$_82_0, "SingleQuery$checkHorizon$lambda$_82_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkHorizon$lambda$_82_0_apply)], -oncias_SemanticCheck$$setState$lambda$_7_0, "SemanticCheck$$setState$lambda$_7_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$setState$lambda$_7_0_apply)], -oncias_package$$liftSemanticErrorDef$lambda$_6_0, "package$$liftSemanticErrorDef$lambda$_6_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticErrorDef$lambda$_6_0_apply)], -oncias_SemanticExpressionCheck$$infixAddRhsTypes$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_61_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$infixAddOutputTypes$lambda$_61_0_apply)], -onciuh_Try$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_56_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkAddBoundary$lambda$_56_0_apply$mcJ$sp)], -oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_57_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkSubtractBoundary$lambda$_57_0_apply$mcJ$sp)], -oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_58_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkUnarySubtractBoundary$lambda$_58_0_apply$mcJ$sp)], -oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_59_0, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkMultiplyBoundary$lambda$_59_0_apply$mcJ$sp)], -oncias_SemanticExpressionCheck$$check$lambda$_55_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$check$lambda$_55_0_apply)], -oncius_TypeSpec, "TypeSpec", 59, jl_Object, [s_Equals], 0, 3, [0,0,0], 0, ["$hashCode", $rt_wrapFunction0(oncius_TypeSpec_hashCode), "$equals", $rt_wrapFunction1(oncius_TypeSpec_equals), "$toString", $rt_wrapFunction0(oncius_TypeSpec_toString)], -oncias_SemanticFunctionCheck$$check$lambda$_44_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$check$lambda$_44_0_apply)], -oncias_SemanticFunctionCheck$$check$lambda$_44_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$check$lambda$_44_1_apply)], -oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_50_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$checkLabelExpressionForLegacyRelationshipTypeDisjunction$lambda$_50_0_apply)], -oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_0_apply)], -oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_1_apply)], -oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkInnerListComprehension$lambda$_62_2_apply)], -oncie_Pattern$SemanticContext$Match$, "Pattern$SemanticContext$Match$", 64, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Match$_productElement), "$productIterator", -$rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Match$_toString)], -oncias_SemanticPatternCheck$$declareVariables$lambda$_46_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_46_0_apply)], -oncias_SemanticPatternCheck$$check$lambda$_47_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_47_0_apply)], -oncias_SemanticPatternCheck$$check$lambda$_53_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$check$lambda$_53_0_apply)], -oncias_SemanticPatternCheck$$check$lambda$_53_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticPatternCheck$$check$lambda$_53_1_apply)], -oncias_SemanticPatternCheck$$check$lambda$_53_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_53_2_apply)], -oncias_SemanticPatternCheck$$check$lambda$_53_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_53_3_apply)], -oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_135_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$possibleTypes$1$lambda$_135_0_apply)], -oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_0_apply)], -oncia_ReturnItems$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ReturnItems$$anonfun$1_applyOrElse)], -oncia_ReturnItems$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ReturnItems$$anonfun$2_applyOrElse)], -oncia_ReturnItems$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ReturnItems$$anonfun$3_applyOrElse)], -oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_1_apply)], -oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$checkAmbiguousGrouping$lambda$_3_2_apply)], -jlr_AccessibleObject, 0, jl_Object, [jlr_AnnotatedElement], 0, 3, 0, 0, 0]); -$rt_metadata([jlr_Member, 0, jl_Object, [], 3, 3, 0, 0, 0, -jlr_Method, "Method", 15, jlr_AccessibleObject, [jlr_Member], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(jlr_Method_toString)], -oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_0_apply)], -oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ExpectedBooleanTypeCheck$isExpectedTypeBoolean$lambda$_1_1_apply)], -oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$allowedTypesCheck$1$lambda$_46_0_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, -onciap_DefaultExpressionStringifier$Binding, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciap_DefaultExpressionStringifier$Precedence, "DefaultExpressionStringifier$Precedence", 40, jl_Object, [onciap_DefaultExpressionStringifier$Binding, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_productPrefix), "$productArity", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_productArity), "$productElement", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$Precedence_productElement), "$productIterator", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_productIterator), -"$hashCode", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_hashCode), "$toString", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_toString), "$equals", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$Precedence_equals)], -onciap_DefaultExpressionStringifier$formsChain$1$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$formsChain$1$lambda$_62_0_apply)], -scc_AsScalaExtensions$IterableHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciuh_Try, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciuh_Success, 0, jl_Object, [onciuh_Try, s_Product, ji_Serializable], 0, 3, 0, 0, ["$isFailure", $rt_wrapFunction0(onciuh_Success_isFailure)], -onciuh_Failure, 0, jl_Object, [onciuh_Try], 0, 3, 0, 0, ["$isFailure", $rt_wrapFunction0(onciuh_Failure_isFailure)], -oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticFunctionCheck$$anonfun$checkNoNestedAggregateFunctions$1_applyOrElse)], -oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_45_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkNoNestedAggregateFunctions$lambda$_45_0_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_0_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_1_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_2_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_3_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_4_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_5_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_6_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_7_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_8_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_9_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_10_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_11_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_12_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_13_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_14_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_15_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_16_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_17_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_18_apply)], -oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$semanticCheck$lambda$_46_19_apply)], -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_62_0_apply)], -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_62_1_apply)], -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticPatternCheck$$declareVariables$lambda$_62_2_apply)], -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$declareVariables$lambda$_62_3_apply)], -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_62_4_apply)], -oncias_SemanticPatternCheck$$declareVariables$lambda$_62_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$declareVariables$lambda$_62_5_apply)], -oncie_Pattern$SemanticContext$Merge$, "Pattern$SemanticContext$Merge$", 64, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Merge$_productElement), "$productIterator", -$rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Merge$_toString)], -oncie_Pattern$SemanticContext$Create$, "Pattern$SemanticContext$Create$", 64, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Create$_productElement), "$productIterator", -$rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Create$_toString)], -oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1_applyOrElse), "$isDefinedAt", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkNoQuantifiedPatterns$1$1_isDefinedAt)], -oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_95_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkContainsSingle$1$lambda$_95_0_apply)], -oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_100_0, "SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_100_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkRelVariablesUnknown$1$lambda$_100_0_apply)], -oncias_checkNoParamMapsWhenMatching$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncias_checkValidPropertyKeyNamesInPattern$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_77_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkDynamicLabels$lambda$_77_0_apply)], -oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkLabelExpressions$lambda$_76_0_apply)]]); -$rt_metadata([oncias_SemanticPatternCheck$$checkPredicate$lambda$_75_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkPredicate$lambda$_75_0_apply)], -oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_0_apply)], -oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticPatternCheck$$checkValidJuxtaposition$lambda$_55_1_apply)], -oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1_applyOrElse)], -oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_107_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$checkRelCount$1$lambda$_107_0_apply)], -oncias_SemanticPatternCheck$$checkQuantifier$lambda$_56_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$checkQuantifier$lambda$_56_0_apply)], -jlr_Field, "Field", 15, jlr_AccessibleObject, [jlr_Member], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(jlr_Field_toString)], -oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_0_apply)], -oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$anyPropertyValueType$1$lambda$_38_1_apply)], -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_0_apply)], -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_1_apply)], -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_2_apply)], -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_3_apply)], -oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_CreateConstraint$additionalErrorInfo$1$lambda$_45_4_apply)], -oncias_SemanticAnalysisTooling$expectType$lambda$_23_0, "SemanticAnalysisTooling$expectType$lambda$_23_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_23_0_apply)], -oncias_SemanticAnalysisTooling$expectType$lambda$_13_0, "SemanticAnalysisTooling$expectType$lambda$_13_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_13_0_apply)], -oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$specifyType$lambda$_9_0_apply)], -oncias_SemanticAnalysisTooling$checkTypes$lambda$_31_0, "SemanticAnalysisTooling$checkTypes$lambda$_31_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$checkTypes$lambda$_31_0_apply)], -oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$specifyType$lambda$_11_0_apply)], -oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_39_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$unionOfTypes$lambda$_39_0_apply)], -oncias_SemanticAnalysisTooling$expectType$lambda$_19_0, "SemanticAnalysisTooling$expectType$lambda$_19_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_19_0_apply)], -oncias_SemanticAnalysisTooling$typeSwitch$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$typeSwitch$lambda$_49_0_apply)], -oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$declareVariables$lambda$_65_0_apply)], -oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_118_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$checkNoVarLengthWhenUpdating$1$lambda$_118_0_apply)], -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_0_apply)], -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_1_apply)], -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_2_apply)], -oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkForLegacyTypeSeparator$1$lambda$_125_3_apply)], -oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_checkValidPropertyKeyNamesInPattern$$apply$lambda$_1_0_apply)], -oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_131_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkLabelExpressions$1$lambda$_131_0_apply)], -oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_137_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkPredicate$1$lambda$_137_0_apply)], -oncie_Pattern$SemanticContext$Insert$, "Pattern$SemanticContext$Insert$", 64, jl_Object, [oncie_Pattern$SemanticContext, s_Product, ji_Serializable], 0, 3, 0, 0, ["$name", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_name), "$description", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_description), "$productArity", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_productArity), "$productElement", $rt_wrapFunction1(oncie_Pattern$SemanticContext$Insert$_productElement), "$productIterator", -$rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_hashCode), "$toString", $rt_wrapFunction0(oncie_Pattern$SemanticContext$Insert$_toString)], -oncie_Pattern$SemanticContext$, 0, jl_Object, [], 0, 3, 0, oncie_Pattern$SemanticContext$_$callClinit, 0, -oncias_SemanticAnalysisTooling$expectType$lambda$_17_0, "SemanticAnalysisTooling$expectType$lambda$_17_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_17_0_apply)], -oncias_SemanticAnalysisTooling$expectType$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_15_0_apply)], -oncias_SemanticAnalysisTooling$types$lambda$_85_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$types$lambda$_85_0_apply)], -oncias_SemanticAnalysisTooling$ensureDefined$lambda$_55_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$ensureDefined$lambda$_55_0_apply)], -oncias_SemanticPatternCheck$$anonfun$4, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$4_applyOrElse)], -oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_73_0, "SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_73_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$importValuesFromRecordedScope$lambda$_73_0_apply)], -sc_StringOps$$anon$1, "StringOps$$anon$1", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_StringOps$$anon$1_hasNext), "$next", $rt_wrapFunction0(sc_StringOps$$anon$1_next)], -sc_StringOps$$stripMargin$extension$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_StringOps$$stripMargin$extension$lambda$_68_0_apply)], -oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0, "SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$org$neo4j$cypher$internal$ast$semantics$SemanticAnalysisTooling$$pushStateScopeWithVariablesFromRecordedScope$lambda$_2_0_apply)], -oncias_SemanticCheck$$warn$lambda$_4_0, "SemanticCheck$$warn$lambda$_4_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$warn$lambda$_4_0_apply)], -onciu_RewritableJavascript$PROXY$9_262, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_263, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_264, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_265, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_266, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_267, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_268, 0, jl_Object, [], 0, 3, 0, 0, 0]); -$rt_metadata([onciu_RewritableJavascript$PROXY$9_269, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_270, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_271, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_272, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_262, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_263, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_264, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_265, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_266, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_267, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_268, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_269, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_270, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_271, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_272, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_673, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_674, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_273, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_274, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_273, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_274, 0, jl_Object, [], 0, 3, 0, 0, 0, -s_Enumeration$ValueOrdering$, "Enumeration$ValueOrdering$", 17, jl_Object, [sm_Ordering], 0, 3, 0, 0, 0, -sc_SpecificIterableFactory, 0, jl_Object, [sc_Factory], 3, 3, 0, 0, 0, -s_Enumeration$ValueSet$, "Enumeration$ValueSet$", 17, jl_Object, [sc_SpecificIterableFactory, ji_Serializable], 0, 3, 0, 0, 0, -s_Enumeration$ValueSet, "Enumeration$ValueSet", 17, sci_AbstractSet, [sci_SortedSet, sc_StrictOptimizedIterableOps, ji_Serializable], 0, 3, 0, 0, 0, -oncipv_Cypher5Parser$EndOfFileContext, 0, oncip_AstRuleCtx, [], 0, 3, 0, 0, 0, -oncipau_Util$, 0, jl_Object, [], 4, 3, 0, oncipau_Util$_$callClinit, 0, -oavr_Parser$TraceListener, 0, jl_Object, [oavrt_ParseTreeListener], 0, 3, 0, 0, 0, -oncipv_Cypher25Parser$EndOfFileContext, 0, oncip_AstRuleCtx, [], 0, 3, 0, 0, 0, -oavr_ProxyErrorListener, 0, jl_Object, [oavr_ANTLRErrorListener], 0, 3, 0, 0, 0, -oncias_ExpressionTypeInfo, "ExpressionTypeInfo", 41, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncias_ExpressionTypeInfo_productPrefix), "$productArity", $rt_wrapFunction0(oncias_ExpressionTypeInfo_productArity), "$productElement", $rt_wrapFunction1(oncias_ExpressionTypeInfo_productElement), "$productIterator", $rt_wrapFunction0(oncias_ExpressionTypeInfo_productIterator), "$hashCode", $rt_wrapFunction0(oncias_ExpressionTypeInfo_hashCode), "$toString", $rt_wrapFunction0(oncias_ExpressionTypeInfo_toString), -"$equals", $rt_wrapFunction1(oncias_ExpressionTypeInfo_equals)], -oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$FilteringExpressions$$semanticCheck$lambda$_1_0_apply)], -oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_2_0_apply)], -oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$FilteringExpressions$$checkPredicateDefined$lambda$_4_0_apply)], -oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$FilteringExpressions$$failIfAggregating$lambda$_3_0_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2_apply)], -ju_AbstractList$SubAbstractList$SubAbstractListIterator, 0, jl_Object, [ju_ListIterator], 4, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_AbstractList$SubAbstractList$SubAbstractListIterator_hasNext), "$next", $rt_wrapFunction0(ju_AbstractList$SubAbstractList$SubAbstractListIterator_next)], -oavrd_DFAState$PredPrediction, "DFAState$PredPrediction", 86, jl_Object, [], 0, 3, [oavrd_DFAState,0,"PredPrediction"], 0, ["$toString", $rt_wrapFunction0(oavrd_DFAState$PredPrediction_toString)], -oavr_WritableToken, 0, jl_Object, [oavr_Token], 3, 3, 0, 0, 0, -oncir_Deprecations$syntacticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$syntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$syntacticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$syntacticallyDeprecatedFeatures$$hasOldTextIndexProvider$lambda$_6_0_apply)], -onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0, "Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0", 54, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$Folder$org$neo4j$cypher$internal$util$Foldable$Folder$$innerTreeFold$lambda$_4_0_apply)], -onciap_DefaultExpressionStringifier$apply$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$apply$lambda$_8_0_apply)], -onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_0_apply)], -onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringifyLabelExpression$lambda$_18_1_apply)], -oncie_Expression$$anonfun$replaceAllOccurrencesBy$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$replaceAllOccurrencesBy$1_applyOrElse)], -oncia_Union$Mapping$1, "Union$Mapping$1", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Union$Mapping$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Union$Mapping$1_productArity), "$productElement", $rt_wrapFunction1(oncia_Union$Mapping$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_Union$Mapping$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Union$Mapping$1_hashCode), "$toString", $rt_wrapFunction0(oncia_Union$Mapping$1_toString), -"$equals", $rt_wrapFunction1(oncia_Union$Mapping$1_equals)], -oncie_Expression$$anonfun$arguments$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$arguments$1_applyOrElse)]]); -$rt_metadata([oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_0_apply)], -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_1_apply)], -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_2_apply)], -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_3_apply)], -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_4_apply)], -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_5_apply)], -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6, "ResolvedFunctionInvocation$semanticCheck$lambda$_9_6", 67, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_6_apply)], -oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedFunctionInvocation$semanticCheck$lambda$_9_7_apply)], -sr_IntRef, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_0_apply)], -oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_1_apply)], -oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$checkAlterDatabase$lambda$_31_2_apply)], -oncipvaf_Cypher5SyntaxChecker$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncius_TypeSpec$, 0, jl_Object, [], 4, 3, 0, oncius_TypeSpec$_$callClinit, 0, -oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_0_apply)], -oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_1_apply)], -oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$checkAlterDatabase$lambda$_25_2_apply)], -oncipvaf_Cypher25SyntaxChecker$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0_apply)], -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2_apply)], -oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1_apply)], -oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0_apply)], -onciuh_Math$, 0, jl_Object, [], 4, 3, 0, 0, 0, -sc_View$$from$lambda$_18_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, -sc_View$$anon$1, "View$$anon$1", 21, sc_AbstractView, [], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$$anon$1_iterator)], -oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1_apply)], -oavrm_FlexibleHashMap, 0, jl_Object, [ju_Map], 0, 3, 0, 0, 0, -oavra_PredictionMode$AltAndContextMap, 0, oavrm_FlexibleHashMap, [], 0, 0, 0, 0, 0, -oavra_ArrayPredictionContext, "ArrayPredictionContext", 85, oavra_PredictionContext, [], 0, 3, 0, 0, ["$isEmpty", $rt_wrapFunction0(oavra_ArrayPredictionContext_isEmpty), "$size", $rt_wrapFunction0(oavra_ArrayPredictionContext_size), "$getParent", $rt_wrapFunction1(oavra_ArrayPredictionContext_getParent), "$getReturnState", $rt_wrapFunction1(oavra_ArrayPredictionContext_getReturnState), "$equals", $rt_wrapFunction1(oavra_ArrayPredictionContext_equals), "$toString", $rt_wrapFunction0(oavra_ArrayPredictionContext_toString)], -onciu_UnicodeHelper$, 0, jl_Object, [], 4, 3, 0, onciu_UnicodeHelper$_$callClinit, 0, -ju_TemplateCollections$TwoElementsSet, 0, ju_TemplateCollections$AbstractImmutableSet, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$contains", $rt_wrapFunction1(ju_TemplateCollections$TwoElementsSet_contains)], -onciafnc_CodeCompletionCore$FollowSetsHolder, "CodeCompletionCore$FollowSetsHolder", 39, jl_Object, [], 0, 3, 0, 0, 0, -onciafnc_CodeCompletionCore$RuleWithStartToken, "CodeCompletionCore$RuleWithStartToken", 39, jl_Record, [], 32772, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciafnc_CodeCompletionCore$RuleWithStartToken_toString), "$hashCode", $rt_wrapFunction0(onciafnc_CodeCompletionCore$RuleWithStartToken_hashCode), "$equals", $rt_wrapFunction1(onciafnc_CodeCompletionCore$RuleWithStartToken_equals)], -onciafnc_CodeCompletionCore$FollowSetWithPath, "CodeCompletionCore$FollowSetWithPath", 39, jl_Object, [], 0, 3, 0, 0, 0, -onciafnc_CodeCompletionCore$processRule$lambda$_9_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafnc_CodeCompletionCore$processRule$lambda$_9_0_apply)], -onciafnc_CodeCompletionCore$PipelineEntry, "CodeCompletionCore$PipelineEntry", 39, jl_Object, [], 0, 3, 0, 0, 0, -oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_0_apply)], -oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_1_apply)], -oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_50_2_apply)], -oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_10_0_apply)], -oncie_LogicalProperty$, 0, jl_Object, [], 4, 3, 0, oncie_LogicalProperty$_$callClinit, 0, -oncie_LogicalVariable$, 0, jl_Object, [], 4, 3, 0, 0, 0, -jlr_Modifier, 0, jl_Object, [], 0, 3, 0, 0, 0, -jl_Class$MethodSignature, "Class$MethodSignature", 14, jl_Object, [], 4, 0, 0, 0, ["$equals", $rt_wrapFunction1(jl_Class$MethodSignature_equals), "$hashCode", $rt_wrapFunction0(jl_Class$MethodSignature_hashCode)], -onciap_DefaultExpressionStringifier$Syntactic$, "DefaultExpressionStringifier$Syntactic$", 40, jl_Object, [onciap_DefaultExpressionStringifier$Binding, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Syntactic$_productArity), "$productElement", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$Syntactic$_productElement), "$productIterator", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Syntactic$_productIterator), "$hashCode", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Syntactic$_hashCode), -"$toString", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Syntactic$_toString)], -oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0_apply)], -ju_TemplateCollections$TwoElementsList, 0, ju_TemplateCollections$AbstractImmutableList, [ju_RandomAccess], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_TemplateCollections$TwoElementsList_size), "$get0", $rt_wrapFunction1(ju_TemplateCollections$TwoElementsList_get)], -oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0_apply)]]); -$rt_metadata([oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1_apply)], -oncius_TypeSpec$$exact$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$exact$lambda$_4_0_apply)], -oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_0_apply)], -oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$errorOnAliasNameContainingTooManyComponents$lambda$_13_1_apply)], -oncia_Union$$anonfun$checkRecursively$2$lambda$_43_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Union$$anonfun$checkRecursively$2$lambda$_43_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_1_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$21$lambda$_87_2_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_190_0, "SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_190_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_190_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$67$lambda$_131_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$67$lambda$_131_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$62$lambda$_126_0, "SemanticExpressionCheck$$$anonfun$check$62$lambda$_126_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$62$lambda$_126_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$120$lambda$_186_1_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$116$lambda$_182_1_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$112$lambda$_178_1_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$51$lambda$_116_1_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_112_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_112_0_apply)], -oncias_SemanticCheck$ifOkChain$lambda$_17_0, "SemanticCheck$ifOkChain$lambda$_17_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$ifOkChain$lambda$_17_0_apply)], -sci_LazyList$$from$lambda$_25_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$from$lambda$_25_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_139_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_139_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_146_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_146_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_99_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_99_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_1_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_2_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_3_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_178_4_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_168_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_168_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_166_1_apply)], -sm_Ordering$IterableOrdering, 0, jl_Object, [sm_Ordering], 4, 3, 0, 0, ["$on", $rt_wrapFunction1(sm_Ordering$IterableOrdering_on), "$compare2", $rt_wrapFunction2(sm_Ordering$IterableOrdering_compare)], -oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_95_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_95_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_1_apply)], -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_2_apply)], -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_113_3_apply)], -oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_102_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_102_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_149_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_149_0_apply)], -oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath, "SemanticPatternCheck$ScopeBeforeParenthesizedPath", 41, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [oncias_SemanticPatternCheck,0,"ScopeBeforeParenthesizedPath"], 0, ["$position", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_position), "$productPrefix", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productArity), -"$productElement", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_toString), "$equals", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_equals), -"$dup", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_dup)], -oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath, "SemanticPatternCheck$ScopeAfterParenthesizedPath", 41, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [oncias_SemanticPatternCheck,0,"ScopeAfterParenthesizedPath"], 0, ["$position", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_position), "$productPrefix", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productArity), -"$productElement", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_toString), "$equals", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_equals), "$dup", -$rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_dup)], -oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_144_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_144_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_130_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_130_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_1_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_136_2_apply)], -oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_97_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_97_0_apply)], -scc_JavaCollectionWrappers$IterableWrapper, 0, ju_AbstractCollection, [scc_JavaCollectionWrappers$IterableWrapperTrait, ji_Serializable], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)]]); -$rt_metadata([scc_JavaCollectionWrappers$JIterableWrapper, 0, sc_AbstractIterable, [sc_StrictOptimizedIterableOps, ji_Serializable], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(scc_JavaCollectionWrappers$JIterableWrapper_iterator), "$iterableFactory", $rt_wrapFunction0(scc_JavaCollectionWrappers$JIterableWrapper_iterableFactory)], -oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_92_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_92_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_99_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_99_0_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0_apply)], -oavra_PredictionMode$AltAndContextConfigEqualityComparator, 0, oavrm_AbstractEqualityComparator, [], 4, 0, 0, 0, ["$equals0", $rt_wrapFunction2(oavra_PredictionMode$AltAndContextConfigEqualityComparator_equals), "$hashCode2", $rt_wrapFunction1(oavra_PredictionMode$AltAndContextConfigEqualityComparator_hashCode)], -oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$containsGpmSpecificRelTypeExpression$lambda$_7_0_apply)], -oncil_LabelExpression$replaceColonSyntax$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$replaceColonSyntax$lambda$_13_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$1_applyOrElse)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$$nestedInanonfun$find$1$2_applyOrElse)], -jusi_ArrayIntStreamImpl, 0, jusi_SimpleIntStreamImpl, [], 0, 3, 0, 0, 0, -onciap_DefaultExpressionStringifier$$anonfun$stringify$27$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$stringify$27$lambda$_54_0_apply)], -onciap_DefaultExpressionStringifier$$anonfun$stringify$32$lambda$_59_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$stringify$32$lambda$_59_0_apply)], -sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_SeqOps$$anonfun$occCounts$1$lambda$_141_0_apply)], -oncip_CypherErrorStrategy$CypherRuleGroup, "CypherErrorStrategy$CypherRuleGroup", 42, jl_Object, [], 3, 3, [oncip_CypherErrorStrategy,0,"CypherRuleGroup"], 0, 0, -oncip_CypherErrorStrategy$ExpressionRule$, "CypherErrorStrategy$ExpressionRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$ExpressionRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$ExpressionRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$ExpressionRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$ExpressionRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$ExpressionRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$ExpressionRule$_toString)], -oncip_CypherErrorStrategy$StringLiteralRule$, "CypherErrorStrategy$StringLiteralRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$StringLiteralRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$StringLiteralRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$StringLiteralRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$StringLiteralRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$StringLiteralRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$StringLiteralRule$_toString)], -oncip_CypherErrorStrategy$NumberLiteralRule$, "CypherErrorStrategy$NumberLiteralRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$NumberLiteralRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$NumberLiteralRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$NumberLiteralRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$NumberLiteralRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$NumberLiteralRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$NumberLiteralRule$_toString)], -oncip_CypherErrorStrategy$ParameterRule$, "CypherErrorStrategy$ParameterRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$ParameterRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$ParameterRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$ParameterRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$ParameterRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$ParameterRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$ParameterRule$_toString)], -oncip_CypherErrorStrategy$VariableRule$, "CypherErrorStrategy$VariableRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$VariableRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$VariableRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$VariableRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$VariableRule$_productIterator), "$hashCode", -$rt_wrapFunction0(oncip_CypherErrorStrategy$VariableRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$VariableRule$_toString)], -oncip_CypherErrorStrategy$IdentifierRule$, "CypherErrorStrategy$IdentifierRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$IdentifierRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$IdentifierRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$IdentifierRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$IdentifierRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$IdentifierRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$IdentifierRule$_toString)], -oncip_CypherErrorStrategy$DatabaseNameRule$, "CypherErrorStrategy$DatabaseNameRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$DatabaseNameRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$DatabaseNameRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$DatabaseNameRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$DatabaseNameRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$DatabaseNameRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$DatabaseNameRule$_toString)], -oncip_CypherErrorStrategy$GraphPatternRule$, "CypherErrorStrategy$GraphPatternRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$GraphPatternRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$GraphPatternRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$GraphPatternRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$GraphPatternRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$GraphPatternRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$GraphPatternRule$_toString)], -oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncip_CypherErrorStrategy$Conf$$anonfun$preferredRules$1_applyOrElse)], -onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_0_apply)], -onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get1", $rt_wrapFunction0(onciafnc_CodeCompletionCore$translateToRuleIndex$lambda$_5_1_get)], -onciafnc_CodeCompletionCore$CandidateRule, "CodeCompletionCore$CandidateRule", 39, jl_Record, [], 32772, 3, 0, 0, ["$toString", $rt_wrapFunction0(onciafnc_CodeCompletionCore$CandidateRule_toString), "$hashCode", $rt_wrapFunction0(onciafnc_CodeCompletionCore$CandidateRule_hashCode), "$equals", $rt_wrapFunction1(onciafnc_CodeCompletionCore$CandidateRule_equals)], -oncia_Clause$semanticCheck$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$semanticCheck$lambda$_6_0_apply)], -oncia_Clause$semanticCheck$lambda$_6_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Clause$semanticCheck$lambda$_6_1_apply)], -oncia_Union$$anonfun$defineUnionVariables$5$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$5$lambda$_64_0_apply)], -oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0_apply)], -sc_MapView$FilterKeys, 0, sc_AbstractMapView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_MapView$FilterKeys_iterator), "$knownSize", $rt_wrapFunction0(sc_MapView$FilterKeys_knownSize), "$isEmpty", $rt_wrapFunction0(sc_MapView$FilterKeys_isEmpty)], -onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_70_0_apply)], -oncia_AmbiguousAggregation$, 0, jl_Object, [], 4, 3, 0, oncia_AmbiguousAggregation$_$callClinit, 0, -otcit_DoubleSynthesizer, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_109_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_109_0_apply)], -oncius_TypeRange, "TypeRange", 59, jl_Object, [s_Product, ji_Serializable], 0, 3, [0,0,0], 0, ["$productPrefix", $rt_wrapFunction0(oncius_TypeRange_productPrefix), "$productArity", $rt_wrapFunction0(oncius_TypeRange_productArity), "$productElement", $rt_wrapFunction1(oncius_TypeRange_productElement), "$productIterator", $rt_wrapFunction0(oncius_TypeRange_productIterator), "$hashCode", $rt_wrapFunction0(oncius_TypeRange_hashCode), "$toString", $rt_wrapFunction0(oncius_TypeRange_toString), "$equals", $rt_wrapFunction1(oncius_TypeRange_equals)], -oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Union$$anonfun$checkNoInputDataStreamInsideUnionElement$1_applyOrElse)], -oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$checkNoInputDataStreamInsideUnionElement$lambda$_36_0_apply)], -oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$checkNoCallInTransactionInsideUnionElement$lambda$_38_0_apply)], -oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0, "ReadAdministrationCommand$checkProjection$1$lambda$_32_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$checkProjection$1$lambda$_32_0_apply)], -oncia_Union$Mapping$2$, 0, sr_AbstractFunction3, [ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_63_0, "SemanticExpressionCheck$$checkForShadowedVariables$lambda$_63_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_63_0_apply)], -oncie_TypeSignatures$signatureLengths$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_TypeSignatures$signatureLengths$lambda$_3_0_apply)], -oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_0_apply)], -oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_81_1_apply)], -oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_0_apply)], -oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_1_apply)], -oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_51_2_apply)], -oncil_SolvableLabelExpression$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncil_SolvableLabelExpression$_$callClinit, 0, -oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_128_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_128_0_apply)]]); -$rt_metadata([oavrm_DoubleKeyMap, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncias_SemanticTable$TypeGetter, 0, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticTable$typeFor$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticTable$typeFor$lambda$_25_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$includesExisting$1$lambda$_22_1_apply)], -onciu_UnicodeHelper$$isAllowedUnicode$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_UnicodeHelper$$isAllowedUnicode$lambda$_5_0_apply)], -oavra_SemanticContext$Predicate, "SemanticContext$Predicate", 85, oavra_SemanticContext, [], 0, 3, 0, 0, ["$eval", $rt_wrapFunction2(oavra_SemanticContext$Predicate_eval), "$hashCode", $rt_wrapFunction0(oavra_SemanticContext$Predicate_hashCode), "$equals", $rt_wrapFunction1(oavra_SemanticContext$Predicate_equals), "$toString", $rt_wrapFunction0(oavra_SemanticContext$Predicate_toString)], -oncie_Expression$TreeAcc, "Expression$TreeAcc", 64, jl_Object, [s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncie_Expression$TreeAcc_productPrefix), "$productArity", $rt_wrapFunction0(oncie_Expression$TreeAcc_productArity), "$productElement", $rt_wrapFunction1(oncie_Expression$TreeAcc_productElement), "$productIterator", $rt_wrapFunction0(oncie_Expression$TreeAcc_productIterator), "$hashCode", $rt_wrapFunction0(oncie_Expression$TreeAcc_hashCode), "$toString", $rt_wrapFunction0(oncie_Expression$TreeAcc_toString), -"$equals", $rt_wrapFunction1(oncie_Expression$TreeAcc_equals)], -oncie_Expression$TreeAcc$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1_applyOrElse)], -oncius_TypeRange$_init_$lambda$_43_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, -oncius_TypeSpec$$minimalRanges$lambda$_12_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncius_TypeSpec$$minimalRanges$lambda$_12_0_apply)], -oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SubqueryCall$$anonfun$findTransactionalSubquery$1_applyOrElse)], -oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_70_0_apply)], -oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_71_0_apply)], -oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_0_apply)], -oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidLabels$lambda$_80_1_apply)], -oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_0_apply)], -oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_ExpressionTypeInfo$actual$lzycompute$lambda$_6_1_apply)], -suc_TailCalls$TailRec, 0, jl_Object, [], 1, 3, 0, 0, 0, -oncil_SolvableLabelExpression, "SolvableLabelExpression", 63, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncil_SolvableLabelExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncil_SolvableLabelExpression_productArity), "$productElement", $rt_wrapFunction1(oncil_SolvableLabelExpression_productElement), "$productIterator", $rt_wrapFunction0(oncil_SolvableLabelExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncil_SolvableLabelExpression_hashCode), -"$toString", $rt_wrapFunction0(oncil_SolvableLabelExpression_toString), "$equals", $rt_wrapFunction1(oncil_SolvableLabelExpression_equals)], -oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0_apply)], -oncias_SemanticPatternCheck$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$2_applyOrElse)], -oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_0_apply)], -oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_73_1_apply)], -oncias_SemanticAnalysisTooling$implicitVariable$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$implicitVariable$lambda$_67_0_apply)], -oncias_SemanticAnalysisTooling$whenState$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$whenState$lambda$_33_0_apply)], -onciuh_NameDeduplicator$, 0, jl_Object, [], 4, 3, 0, onciuh_NameDeduplicator$_$callClinit, 0, -suc_TailCalls$, 0, jl_Object, [], 4, 3, 0, suc_TailCalls$_$callClinit, 0, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0, "SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0", 63, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0_apply)], -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1_apply)], -onciut_TailCallsUtil$, 0, jl_Object, [], 4, 3, 0, onciut_TailCallsUtil$_$callClinit, 0, -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2_apply)], -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3_apply)], -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4_apply)], -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5_apply)], -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6_apply)], -oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7_apply)], -suc_TailCalls$Done, "TailCalls$Done", 19, suc_TailCalls$TailRec, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(suc_TailCalls$Done_productPrefix), "$productArity", $rt_wrapFunction0(suc_TailCalls$Done_productArity), "$productElement", $rt_wrapFunction1(suc_TailCalls$Done_productElement), "$productIterator", $rt_wrapFunction0(suc_TailCalls$Done_productIterator), "$toString", $rt_wrapFunction0(suc_TailCalls$Done_toString)], -suc_TailCalls$Call, "TailCalls$Call", 19, suc_TailCalls$TailRec, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(suc_TailCalls$Call_productPrefix), "$productArity", $rt_wrapFunction0(suc_TailCalls$Call_productArity), "$productElement", $rt_wrapFunction1(suc_TailCalls$Call_productElement), "$productIterator", $rt_wrapFunction0(suc_TailCalls$Call_productIterator), "$hashCode", $rt_wrapFunction0(suc_TailCalls$Call_hashCode), "$toString", $rt_wrapFunction0(suc_TailCalls$Call_toString), -"$equals", $rt_wrapFunction1(suc_TailCalls$Call_equals)], -suc_TailCalls$Cont, "TailCalls$Cont", 19, suc_TailCalls$TailRec, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(suc_TailCalls$Cont_productPrefix), "$productArity", $rt_wrapFunction0(suc_TailCalls$Cont_productArity), "$productElement", $rt_wrapFunction1(suc_TailCalls$Cont_productElement), "$productIterator", $rt_wrapFunction0(suc_TailCalls$Cont_productIterator), "$hashCode", $rt_wrapFunction0(suc_TailCalls$Cont_hashCode), "$toString", $rt_wrapFunction0(suc_TailCalls$Cont_toString), -"$equals", $rt_wrapFunction1(suc_TailCalls$Cont_equals)], -suc_TailCalls$TailRec$result$lambda$_3_0, "TailCalls$TailRec$result$lambda$_3_0", 19, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$result$lambda$_3_0_apply)], -suc_TailCalls$TailRec$result$lambda$_3_1, "TailCalls$TailRec$result$lambda$_3_1", 19, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$result$lambda$_3_1_apply)], -suc_TailCalls$TailRec$result$lambda$_3_2, "TailCalls$TailRec$result$lambda$_3_2", 19, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$result$lambda$_3_2_apply)], -oncil_SolvableLabelExpression$$wildcard$lambda$_4_0, "SolvableLabelExpression$$wildcard$lambda$_4_0", 63, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$wildcard$lambda$_4_0_apply)], -oncil_SolvableLabelExpression$$dynamic$lambda$_5_0, "SolvableLabelExpression$$dynamic$lambda$_5_0", 63, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$dynamic$lambda$_5_0_apply)], -oncil_SolvableLabelExpression$$label$lambda$_6_0, "SolvableLabelExpression$$label$lambda$_6_0", 63, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$label$lambda$_6_0_apply)], -suc_TailCalls$TailRec$map$lambda$_0_0, "TailCalls$TailRec$map$lambda$_0_0", 19, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$map$lambda$_0_0_apply)], -suc_TailCalls$TailRec$map$lambda$_0_1, "TailCalls$TailRec$map$lambda$_0_1", 19, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$map$lambda$_0_1_apply)], -suc_TailCalls$TailRec$map$lambda$_0_2, "TailCalls$TailRec$map$lambda$_0_2", 19, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$map$lambda$_0_2_apply)]]); -$rt_metadata([onciut_TailCallsUtil$$map2$lambda$_2_0, "TailCallsUtil$$map2$lambda$_2_0", 56, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciut_TailCallsUtil$$map2$lambda$_2_0_apply)], -onciut_TailCallsUtil$$traverse$lambda$_1_0, "TailCallsUtil$$traverse$lambda$_1_0", 56, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciut_TailCallsUtil$$traverse$lambda$_1_0_apply)], -onciut_TailCallsUtil$$traverse$lambda$_1_1, "TailCallsUtil$$traverse$lambda$_1_1", 56, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciut_TailCallsUtil$$traverse$lambda$_1_1_apply)], -sc_Seq$, 0, sc_SeqFactory$Delegate, [], 4, 3, 0, sc_Seq$_$callClinit, 0, -suc_TailCalls$TailRec$flatMap$lambda$_1_0, "TailCalls$TailRec$flatMap$lambda$_1_0", 19, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$flatMap$lambda$_1_0_apply)], -suc_TailCalls$TailRec$flatMap$lambda$_1_1, "TailCalls$TailRec$flatMap$lambda$_1_1", 19, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$flatMap$lambda$_1_1_apply)], -onciuh_fixedPoint$, 0, jl_Object, [], 4, 3, 0, 0, 0, -onciuh_NameDeduplicator$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciuh_fixedPoint$$apply$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_692, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_693, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncias_SemanticPatternCheck, 0, jl_Object, [], 4, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_695, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_275, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_275, 0, jl_Object, [], 0, 3, 0, 0, 0, -jli_SerializedLambda, "SerializedLambda", 16, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oti_Structure, 0, jl_Object, [], 0, 3, 0, 0, 0, -otr_RuntimeObject, "RuntimeObject", 80, oti_Structure, [], 0, 3, 0, 0, 0, -oncip_CypherErrorStrategy$LabelExpressionRule$, "CypherErrorStrategy$LabelExpressionRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$LabelExpressionRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpressionRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$LabelExpressionRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpressionRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpressionRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpressionRule$_toString)], -oncip_CypherErrorStrategy$RelationshipPatternRule$, "CypherErrorStrategy$RelationshipPatternRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$RelationshipPatternRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$RelationshipPatternRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$RelationshipPatternRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$RelationshipPatternRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$RelationshipPatternRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$RelationshipPatternRule$_toString)], -oncip_CypherErrorStrategy$NodePatternRule$, "CypherErrorStrategy$NodePatternRule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$NodePatternRule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$NodePatternRule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$NodePatternRule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$NodePatternRule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$NodePatternRule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$NodePatternRule$_toString)], -oncip_CypherErrorStrategy$LabelExpression1Rule$, "CypherErrorStrategy$LabelExpression1Rule$", 42, jl_Object, [oncip_CypherErrorStrategy$CypherRuleGroup, s_Product, ji_Serializable], 0, 3, 0, oncip_CypherErrorStrategy$LabelExpression1Rule$_$callClinit, ["$productArity", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpression1Rule$_productArity), "$productElement", $rt_wrapFunction1(oncip_CypherErrorStrategy$LabelExpression1Rule$_productElement), "$productIterator", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpression1Rule$_productIterator), -"$hashCode", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpression1Rule$_hashCode), "$toString", $rt_wrapFunction0(oncip_CypherErrorStrategy$LabelExpression1Rule$_toString)], -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_0_apply)], -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_1_apply)], -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_2_apply)], -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_3_apply)], -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_4_apply)], -oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$clauseSpecificSemanticCheck$lambda$_18_5_apply)], -oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_0_apply)], -oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_1_apply)], -oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UseGraph$clauseSpecificSemanticCheck$lambda$_60_2_apply)], -oncias_SemanticCheckableIterableOnce$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_SetClause$clauseSpecificSemanticCheck$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$clauseSpecificSemanticCheck$lambda$_62_0_apply)], -oncia_Match$clauseSpecificSemanticCheck$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$clauseSpecificSemanticCheck$lambda$_64_0_apply)], -oncias_SemanticCheckableOption$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_Merge$clauseSpecificSemanticCheck$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Merge$clauseSpecificSemanticCheck$lambda$_70_0_apply)], -oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_0_apply)], -oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_1_apply)], -oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Unwind$clauseSpecificSemanticCheck$lambda$_61_2_apply)], -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_0_apply)], -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_1_apply)], -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_2_apply)], -oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Foreach$clauseSpecificSemanticCheck$lambda$_65_3_apply)], -oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_0_apply)], -oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_73_1_apply)], -oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_65_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_LoadCSV$clauseSpecificSemanticCheck$lambda$_65_0_apply)], -onciu_Foldable$Folder$$anonfun$treeCollect$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciu_Foldable$Folder$$anonfun$treeCollect$1_applyOrElse)], -oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0_apply)], -oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0_apply)], -oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1_apply)]]); -$rt_metadata([oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2_apply)], -oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_0_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_1_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_2_apply)], -oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ValidSymbolicNamesInLabelExpressions$$anonfun$org$neo4j$cypher$internal$frontend$phases$ValidSymbolicNamesInLabelExpressions$$restrictSymbolicNames$1$applyOrElse$lambda$_0_3_apply)], -onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1_apply)], -sci_LazyList$LazyIterator, "LazyList$LazyIterator", 22, sc_AbstractIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_LazyList$LazyIterator_hasNext), "$next", $rt_wrapFunction0(sci_LazyList$LazyIterator_next)], -jusi_SimpleIntStreamIterator, 0, jl_Object, [ju_PrimitiveIterator$OfInt], 0, 3, 0, 0, 0, -onciap_DefaultPatternStringifier$apply$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_7_0_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_7_1_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_7_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_7_2_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_7_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_7_3_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_7_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_7_4_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_7_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_7_5_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_7_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_7_6_apply)], -ju_HashMap$2, 0, ju_AbstractCollection, [], 0, 0, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach), "$size", $rt_wrapFunction0(ju_HashMap$2_size), "$iterator", $rt_wrapFunction0(ju_HashMap$2_iterator)], -oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticTable$TypeGetter$isAnyOf$lambda$_3_0_apply)], -oncius_TypeSpec$constrain$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$constrain$lambda$_21_0_apply)], -oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0_apply)], -oncie_Expression$$anonfun$occurrences$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$occurrences$2_applyOrElse)], -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_0_apply)], -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_1_apply)], -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_2_apply)], -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_3_apply)], -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$applyOrElse$lambda$_0_4_apply)], -oncie_Expression$$anonfun$findAggregate$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$findAggregate$1_applyOrElse)], -oncia_CreateSingleLabelPropertyIndex$, 0, jl_Object, [], 4, 3, 0, oncia_CreateSingleLabelPropertyIndex$_$callClinit, 0, -s_Product7, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, -s_Tuple7, "Tuple7", 17, jl_Object, [s_Product7, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_Tuple7_productArity), "$productElement", $rt_wrapFunction1(s_Tuple7_productElement), "$toString", $rt_wrapFunction0(s_Tuple7_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple7_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple7_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple7_hashCode), "$equals", $rt_wrapFunction1(s_Tuple7_equals)], -onciap_Prettifier$asString$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_CreateLookupIndex$, 0, jl_Object, [], 4, 3, 0, oncia_CreateLookupIndex$_$callClinit, 0, -onciap_Prettifier$asString$lambda$_38_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_CreateFulltextIndex$, 0, jl_Object, [], 4, 3, 0, oncia_CreateFulltextIndex$_$callClinit, 0, -onciap_Prettifier$asString$lambda$_38_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_38_2_apply)], -onciap_Prettifier$asString$lambda$_38_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_38_3_apply)], -onciap_Prettifier$asString$lambda$_38_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_38_4_apply)], -onciap_Prettifier$asString$lambda$_38_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_CreateUser$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_CreateUser$_$callClinit, 0, -s_Product5, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, -s_Tuple5, "Tuple5", 17, jl_Object, [s_Product5, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_Tuple5_productArity), "$productElement", $rt_wrapFunction1(s_Tuple5_productElement), "$toString", $rt_wrapFunction0(s_Tuple5_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple5_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple5_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple5_hashCode), "$equals", $rt_wrapFunction1(s_Tuple5_equals)], -onciap_Prettifier$asString$lambda$_39_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_0_apply)], -onciap_Prettifier$asString$lambda$_39_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_1_apply)], -onciap_Prettifier$asString$lambda$_39_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_2_apply)], -onciap_Prettifier$asString$lambda$_39_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_3_apply)], -onciap_Prettifier$asString$lambda$_39_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_4_apply)], -onciap_Prettifier$asString$lambda$_39_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_5_apply)], -oncia_AlterUser$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_AlterUser$_$callClinit, 0, -onciap_Prettifier$asString$lambda$_39_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_6_apply)]]); -$rt_metadata([onciap_Prettifier$asString$lambda$_39_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_7_apply)], -onciap_Prettifier$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$1_applyOrElse)], -onciap_Prettifier$asString$lambda$_39_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_8_apply)], -onciap_Prettifier$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$2_applyOrElse)], -onciap_Prettifier$asString$lambda$_39_9, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_9_apply)], -onciap_Prettifier$asString$lambda$_39_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_10_apply)], -onciap_Prettifier$asString$lambda$_39_11, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_11_apply)], -onciap_Prettifier$asString$lambda$_39_12, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_12_apply)], -onciap_Prettifier$asString$lambda$_39_13, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_13_apply)], -onciap_Prettifier$asString$lambda$_39_14, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_14_apply)], -onciap_Prettifier$asString$lambda$_39_15, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_15_apply)], -onciap_Prettifier$asString$lambda$_39_16, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_16_apply)], -onciap_Prettifier$asString$lambda$_39_17, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_17_apply)], -onciap_Prettifier$asString$lambda$_39_18, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_18_apply)], -onciap_Prettifier$asString$lambda$_39_19, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_19_apply)], -onciap_Prettifier$asString$lambda$_39_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_20_apply)], -onciap_Prettifier$asString$lambda$_39_21, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_21_apply)], -onciap_Prettifier$asString$lambda$_39_22, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_22_apply)], -onciap_Prettifier$asString$lambda$_39_23, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_39_23_apply)], -onciap_Prettifier$asString$lambda$_39_24, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_24_apply)], -ju_AbstractList$TListIteratorImpl, 0, jl_Object, [ju_ListIterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_AbstractList$TListIteratorImpl_next), "$nextIndex", $rt_wrapFunction0(ju_AbstractList$TListIteratorImpl_nextIndex)], -ju_IdentityHashMap, 0, ju_AbstractMap, [jl_Cloneable, ji_Serializable], 0, 3, 0, 0, 0, -oavrd_DFA$1, 0, jl_Object, [ju_Comparator], 0, 0, 0, 0, ["$compare2", $rt_wrapFunction2(oavrd_DFA$1_compare)], -oavr_LexerNoViableAltException, "LexerNoViableAltException", 83, oavr_RecognitionException, [], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(oavr_LexerNoViableAltException_toString)], -oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_3_0_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_3_1_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_3_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_3_2_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_3_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_3_3_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_3_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_3_4_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_6_0_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_8_0_apply)], -oavrm_FlexibleHashMap$Entry, "FlexibleHashMap$Entry", 87, jl_Object, [], 0, 3, 0, 0, ["$toString", $rt_wrapFunction0(oavrm_FlexibleHashMap$Entry_toString)], -oncias_SymbolUse$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_70_0_apply)], -oncia_SingleQuery$containsUpdates$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$containsUpdates$lambda$_57_0_apply)], -oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0_apply)], -oncias_SemanticState$expressionType$lambda$_48_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticState$expressionType$lambda$_48_0_apply)], -oncias_ExpressionTypeInfo$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -oncia_SingleQuery$isCorrelated$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$isCorrelated$lambda$_60_0_apply)], -oncia_SingleQuery$importColumns$lambda$_63_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$importColumns$lambda$_63_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2_applyOrElse)], -oncia_OrderBy$checkIllegalOrdering$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_OrderBy$checkIllegalOrdering$lambda$_11_0_apply)], -oncia_OrderBy$checkIllegalOrdering$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_OrderBy$checkIllegalOrdering$lambda$_11_1_apply)], -oncia_OrderBy$checkIllegalOrdering$lambda$_11_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_OrderBy$checkIllegalOrdering$lambda$_11_2_apply)], -oncia_Order$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_OrderBy$checkIllegalOrdering$lambda$_11_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_OrderBy$checkIllegalOrdering$lambda$_11_3_apply)], -oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_FunctionInvocation$asCanonicalStringVal$lambda$_20_0_apply)], -oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListLiteral$asCanonicalStringVal$lambda$_5_0_apply)], -oncie_MapExpression$asCanonicalStringVal$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MapExpression$asCanonicalStringVal$lambda$_5_0_apply)]]); -$rt_metadata([onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0_apply)], -onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1_apply)], -onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncifp_ResolvedCall$argumentCheck$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$argumentCheck$lambda$_28_0_apply)], -oncifp_ResolvedCall$argumentCheck$lambda$_28_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$argumentCheck$lambda$_28_1_apply)], -oncifp_ResolvedCall$argumentCheck$lambda$_28_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncifp_ResolvedCall$argumentCheck$lambda$_28_2_apply)], -oncifp_ResolvedCall$argumentCheck$lambda$_28_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$argumentCheck$lambda$_28_3_apply)], -oncifp_ResolvedCall$argumentCheck$lambda$_28_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$argumentCheck$lambda$_28_4_apply)], -oncifp_ResolvedCall$argumentCheck$lambda$_28_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$argumentCheck$lambda$_28_5_apply)], -oncifp_ResolvedCall$resultCheck$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ResolvedCall$resultCheck$lambda$_29_0_apply)], -oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$checkAliasedReturnItems$lambda$_2_0_apply)], -oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0, "package$$liftSemanticErrorDefsFunc$lambda$_3_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_package$$liftSemanticErrorDefsFunc$lambda$_3_0_apply)], -oncias_SemanticPatternCheck$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$3_applyOrElse)], -oncia_Return$checkVariableScope$lambda$_88_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Return$checkVariableScope$lambda$_88_0_apply)], -oncias_SemanticPatternCheck$$check$lambda$_44_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$check$lambda$_44_0_apply)], -oncias_SemanticPatternCheck$$check$lambda$_44_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$check$lambda$_44_1_apply)], -oncias_SemanticPatternCheck$$check$lambda$_44_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_44_2_apply)], -oncias_SemanticPatternCheck$$check$lambda$_44_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$check$lambda$_44_3_apply)], -oncia_Delete$warnAboutDeletingLabels$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Delete$warnAboutDeletingLabels$lambda$_64_0_apply)], -oncia_Delete$warnAboutDeletingLabels$lambda$_64_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Delete$warnAboutDeletingLabels$lambda$_64_1_apply)], -oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheckableIterableOnce$$semanticCheck$extension$lambda$_1_0_apply)], -oncia_Remove$$anonfun$15, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Remove$$anonfun$15_applyOrElse)], -oncia_Remove$$anonfun$16, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Remove$$anonfun$16_applyOrElse)], -oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Remove$checkIfMixingIsWithMultipleLabels$lambda$_64_0_apply)], -oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$noImplicitJoinsInQuantifiedPathPatterns$lambda$_65_0_apply)], -oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_0_apply)], -oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheckableOption$$semanticCheck$extension$lambda$_1_1_apply)], -onciap_Prettifier$asString$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_0_apply)], -onciap_Prettifier$asString$lambda$_40_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_1_apply)], -onciap_Prettifier$asString$lambda$_40_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_2_apply)], -onciap_Prettifier$getStartOfCommand$1$lambda$_72_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$getStartOfCommand$1$lambda$_72_0_apply)], -onciap_Prettifier$getStartOfCommand$1$lambda$_72_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$getStartOfCommand$1$lambda$_72_1_apply)], -onciap_Prettifier$propertiesToString$1$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciap_Prettifier$showClausesAsString$1$lambda$_82_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$showClausesAsString$1$lambda$_82_0_apply)], -onciap_Prettifier$showClausesAsString$1$lambda$_82_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$showClausesAsString$1$lambda$_82_1_apply)], -onciap_Prettifier$showClausesAsString$1$lambda$_82_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$showClausesAsString$1$lambda$_82_2_apply)], -oncia_PropertyResource, 0, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0_apply)], -oncia_LabelResource, 0, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_1_apply)], -onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1_applyOrElse0)], -onciap_Prettifier$asIndividualOptions$lambda$_43_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asIndividualOptions$lambda$_43_0_apply)], -onciap_DefaultPatternStringifier$concatenate$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$concatenate$lambda$_9_0_apply)], -onciap_DefaultPatternStringifier$concatenate$lambda$_9_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$concatenate$lambda$_9_1_apply)], -oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0_apply)], -onciap_DefaultExpressionStringifier$$anonfun$stringify$30$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$stringify$30$lambda$_57_0_apply)], -onciap_DefaultExpressionStringifier$$anonfun$stringify$25$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$stringify$25$lambda$_52_0_apply)], -oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0_apply)]]); -$rt_metadata([oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_30, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_31, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_31_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_32, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_32_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_33, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_33_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_34, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_34_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_35, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_35_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_36, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_36_apply)], +oncie_AndsReorderable, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_37, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_37_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_38, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$stringify$lambda$_11_38_apply)], +onciap_DefaultExpressionStringifier$stringify$lambda$_11_39, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$stringify$lambda$_11_40, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncilp_CoerceToPredicate, 0, oncie_Expression, [oncie_BooleanExpression, oncias_SemanticCheckableExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncie_AssertIsNode, 0, oncie_Expression, [oncie_BooleanExpression, ji_Serializable], 0, 3, 0, 0, 0, +oncie_ElementIdToLongId, 0, oncie_Expression, [ji_Serializable], 0, 3, 0, 0, 0, +oncie_EntityType, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_NODE_TYPE$, "NODE_TYPE$", 62, jl_Object, [oncie_EntityType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncie_NODE_TYPE$_productArity), "$productElement", $rt_wrapFunction1(oncie_NODE_TYPE$_productElement), "$productIterator", $rt_wrapFunction0(oncie_NODE_TYPE$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_NODE_TYPE$_hashCode), "$toString", $rt_wrapFunction0(oncie_NODE_TYPE$_toString)], +oncie_ElementIdToLongId$Mode, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncie_ElementIdToLongId$Mode$Single$, 0, jl_Object, [oncie_ElementIdToLongId$Mode, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncie_ElementIdToLongId$Mode$Many$, 0, jl_Object, [oncie_ElementIdToLongId$Mode, s_Product, ji_Serializable], 0, 3, 0, 0, 0, +oncie_RELATIONSHIP_TYPE$, "RELATIONSHIP_TYPE$", 62, jl_Object, [oncie_EntityType, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncie_RELATIONSHIP_TYPE$_productArity), "$productElement", $rt_wrapFunction1(oncie_RELATIONSHIP_TYPE$_productElement), "$productIterator", $rt_wrapFunction0(oncie_RELATIONSHIP_TYPE$_productIterator), "$hashCode", $rt_wrapFunction0(oncie_RELATIONSHIP_TYPE$_hashCode), "$toString", $rt_wrapFunction0(oncie_RELATIONSHIP_TYPE$_toString)], +oncie_VarLengthLowerBound, 0, oncie_VarLengthBound, [ji_Serializable], 0, 3, 0, 0, 0, +oncie_VarLengthUpperBound, 0, oncie_VarLengthBound, [ji_Serializable], 0, 3, 0, 0, 0, +oncie_IsRepeatTrailUnique, 0, oncie_Expression, [oncie_RelationshipUniquenessPredicate, ji_Serializable], 0, 3, 0, 0, 0, +oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$possibleExpressions$lzycompute$lambda$_7_0_apply)], +oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_DecimalIntegerLiteral$value$lzycompute$lambda$_4_0_apply)]]); +$rt_metadata([onciuh_Math$, 0, jl_Object, [], 4, 3, 0, onciuh_Math$_$callClinit, 0, +oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$FilteringExpressions$$checkInnerPredicate$lambda$_5_0_apply)], +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_0_apply)], +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_2_apply)], +oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_OctalIntegerLiteral$value$lzycompute$lambda$_4_1_apply)], +oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_HexIntegerLiteral$value$lzycompute$lambda$_4_0_apply)], +oavra_SemanticContext$AND, "SemanticContext$AND", 83, oavra_SemanticContext$Operator, [], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oavra_SemanticContext$AND_equals), "$hashCode", $rt_wrapFunction0(oavra_SemanticContext$AND_hashCode), "$eval", $rt_wrapFunction2(oavra_SemanticContext$AND_eval), "$evalPrecedence", $rt_wrapFunction2(oavra_SemanticContext$AND_evalPrecedence), "$toString", $rt_wrapFunction0(oavra_SemanticContext$AND_toString)], +oavra_OrderedATNConfigSet$LexerConfigHashSet, 0, oavra_ATNConfigSet$AbstractConfigHashSet, [], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], +onih_Strings$CodePointsIterator, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, 0, +oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_0_apply)], +oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_1_apply)], +oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CypherTypeName$cypherTypeSemanticCheck$lambda$_55_2_apply)], +oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_CreateConstraint$$anonfun$semanticCheck$3$lambda$_35_0_apply)], +oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_0_apply)], oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$clauseSpecificSemanticCheck$lambda$_9_1_apply)], -oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0, 0, jl_Object, [srj_JFunction1$mcZI$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcZI$sp_apply), "$apply$mcZI$sp", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_0_apply$mcZI$sp)], -oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$tokenDisplayNames$1$lambda$_25_1_apply)], -oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$7$lambda$_177_0, "SemanticPatternCheck$$$anonfun$checkDynamicLabels$7$lambda$_177_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$7$lambda$_177_0_apply)], -oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$expected$3$lambda$_13_0_apply)], -oncia_Union$$anonfun$defineUnionVariables$6$lambda$_63_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$$anonfun$defineUnionVariables$6$lambda$_63_0_apply)], -oncie_Expression$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0, "SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_1_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_4, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_5_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_6_apply)], -oncias_SemanticExpressionCheck$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$anonfun$2_applyOrElse)], -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_227_7_apply)], -oncias_SemanticExpressionCheck$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$anonfun$1_applyOrElse)], -oncia_Where$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -onciu_Foldable$FoldingBehavior, 0, jl_Object, [], 3, 3, 0, 0, 0, -onciu_Foldable$SkipChildren, "Foldable$SkipChildren", 54, jl_Object, [onciu_Foldable$FoldingBehavior, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_Foldable$SkipChildren_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Foldable$SkipChildren_productArity), "$productElement", $rt_wrapFunction1(onciu_Foldable$SkipChildren_productElement), "$productIterator", $rt_wrapFunction0(onciu_Foldable$SkipChildren_productIterator), "$toString", $rt_wrapFunction0(onciu_Foldable$SkipChildren_toString)], -onciu_Foldable$TraverseChildren, "Foldable$TraverseChildren", 54, jl_Object, [onciu_Foldable$FoldingBehavior, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_Foldable$TraverseChildren_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Foldable$TraverseChildren_productArity), "$productElement", $rt_wrapFunction1(onciu_Foldable$TraverseChildren_productElement), "$productIterator", $rt_wrapFunction0(onciu_Foldable$TraverseChildren_productIterator), "$toString", $rt_wrapFunction0(onciu_Foldable$TraverseChildren_toString)], -onciu_Foldable$TraverseChildrenNewAccForSiblings, "Foldable$TraverseChildrenNewAccForSiblings", 54, jl_Object, [onciu_Foldable$FoldingBehavior, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciu_Foldable$TraverseChildrenNewAccForSiblings_productPrefix), "$productArity", $rt_wrapFunction0(onciu_Foldable$TraverseChildrenNewAccForSiblings_productArity), "$productElement", $rt_wrapFunction1(onciu_Foldable$TraverseChildrenNewAccForSiblings_productElement), "$productIterator", $rt_wrapFunction0(onciu_Foldable$TraverseChildrenNewAccForSiblings_productIterator), -"$toString", $rt_wrapFunction0(onciu_Foldable$TraverseChildrenNewAccForSiblings_toString)], -onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0, "Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0", 54, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$Folder$$anonfun$innerTreeFold$1$lambda$_13_0_apply)], -oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0_apply0)], -oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0_apply0)], -oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1_apply)], -oncipvaf_StatementBuilder$exitCallClause$lambda$_68_00, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0_apply)], -oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0_apply0)], -oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0_apply0)], -oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1_apply)], -oncil_LabelExpression$ColonDisjunction$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, -oncil_LabelExpression$ColonConjunction$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, -oncil_LabelExpression$Negation$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, -oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_00, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0_apply0)], -oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_00, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0_apply0)], -oncil_LabelExpression$Wildcard$, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, -oncil_LabelExpression$Leaf$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, -oncil_LabelExpression$DynamicLeaf$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, -oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_00, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0_apply0)], -oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0_apply0)], -oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0_apply0)], -oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0_apply0)], -oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0_apply0)]]); -$rt_metadata([oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_148_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_148_0_apply)], -oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0_apply0)], -oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0_apply)], -oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0_accept0)], -oncipvaf_DdlShowBuilder$ShowWrapper, "DdlShowBuilder$ShowWrapper", 53, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productPrefix), "$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_hashCode0), -"$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_toString), "$equals", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper_equals0)], -s_Function7, 0, jl_Object, [], 3, 3, 0, 0, 0, -sr_AbstractFunction7, 0, jl_Object, [s_Function7], 1, 3, 0, 0, 0, -oncipvaf_DdlShowBuilder$ShowWrapper$, 0, sr_AbstractFunction7, [ji_Serializable], 0, 3, 0, 0, 0, -oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowIndexesAllowBrief$lambda$_30_0_apply)], -oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowConstraintCommand$lambda$_34_0_apply)], -oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowConstraintsAllowBriefAndYield$lambda$_42_0_apply)], -oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_50_0_apply)], -oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_62_0_apply)], -oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_64_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_11_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_13_0_apply)], -oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_15_0_apply)], -oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_17_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_23_0_apply)], -oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0_apply0)], -oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_1_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_2_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_3_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_4_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_5_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_6_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_27_7_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0_apply0)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_10, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2_apply0)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_30, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_40, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_50, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_60, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_70, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7_apply0)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_80, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8_apply0)], -oncipvaf_DdlBuilder$$anon$1, "DdlBuilder$$anon$1", 53, oncie_ExplicitParameter, [oncie_SensitiveParameter], 4, 3, [oncipvaf_DdlBuilder0,0,0], 0, 0, -oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_78_0_apply)], -oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_80_0_apply)], -oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_82_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0_apply)]]); -$rt_metadata([oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$GraphToken0, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1_apply)], -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2_apply)], -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4_apply0)], -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_29_1_apply)], -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_1_apply)], -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_2_apply)], -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_31_3_apply)], -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0_apply)], -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1_apply0)], -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0_apply0)], -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1_apply)], -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_20, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2_apply0)], -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_30, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3_apply)], -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0_apply)], -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1_apply0)], -oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0_apply0)], -oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0_apply0)], -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0_apply)], -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1_apply0)], -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_20, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2_apply0)], -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_30, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3_apply)], -oncipvaf_LiteralBuilder$0, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0_apply0)], -oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitCreateClause$lambda$_38_0_apply)], -oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_0_apply)], -oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_StatementBuilder$exitMatchClause$lambda$_52_1_apply0)], -oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitCallClause$lambda$_68_0_apply0)], -oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_LabelExpressionBuilder$exitNodeLabelsIs$lambda$_7_0_apply)], -oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_0_apply)], -oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$exitPathLength$lambda$_17_1_apply0)], -oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_LabelExpressionBuilder$exitLabelExpression2$lambda$_31_0_apply)], -oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_LabelExpressionBuilder$exitLabelExpression2Is$lambda$_33_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression$lambda$_19_0_apply0)], -oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression11$lambda$_21_0_apply0)], -oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression10$lambda$_23_0_apply0)], -oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_ExpressionBuilder$exitExpression9$lambda$_25_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitExpression8$lambda$_27_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression6$lambda$_40_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression5$lambda$_43_0_apply)], -oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_00, 0, jl_Object, [s_Function3, ji_Serializable], 0, 3, 0, 0, ["$apply39", $rt_wrapFunction3(oncipvaf_ExpressionBuilder$exitExpression4$lambda$_46_0_apply0)]]); -$rt_metadata([oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_00, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_ExpressionBuilder$exitExpression2$lambda$_50_0_apply)], -oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$exitNormalizeFunction$lambda$_147_0_apply)], -oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_00, 0, jl_Object, [juf_Function], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitFunctionInvocation$lambda$_112_0_apply)], -oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$exitNonEmptyNameList$lambda$_58_0_apply0)], -oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_00, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$exitTypePart$lambda$_124_0_accept)], -oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowIndexCommand$lambda$_26_0_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper0, "DdlShowBuilder$ShowWrapper", 48, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productPrefix0), "$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_hashCode), -"$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper_toString0), "$equals", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper_equals)], -oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowFunctions$lambda$_43_0_apply)], -oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitNamesAndClauses$lambda$_55_0_apply)], -oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$exitStringsOrExpression$lambda$_57_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateConstraint$lambda$_3_0_apply0)], -oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateIndex_$lambda$_9_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateFulltextIndex$lambda$_11_0_apply)], -oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitFulltextNodePattern$lambda$_13_0_apply)], -oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitFulltextRelPattern$lambda$_15_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateLookupIndex$lambda$_21_0_apply)], -oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitEnclosedPropertyList$lambda$_19_0_apply)], -oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitEnableServerCommand$lambda$_25_0_apply0)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_1_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_2_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_3_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_4_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_5_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_6_apply)], -oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateUser$lambda$_25_7_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_0_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_1_apply0)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_2_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_3_apply0)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_4_apply0)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_5_apply0)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_6_apply0)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_7_apply)], -oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitAlterUser$lambda$_49_8_apply)], -oncipvaf_DdlBuilder$$anon$10, "DdlBuilder$$anon$1", 48, oncie_ExplicitParameter, [oncie_SensitiveParameter], 4, 3, [oncipvaf_DdlBuilder,0,0], 0, 0, -oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowPrivileges$lambda$_71_0_apply)], -oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowRolePrivileges$lambda$_73_0_apply)], -oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$exitShowUserPrivileges$lambda$_75_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitShowPrivilege$lambda$_42_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDatabasePrivilege$lambda$_28_1_apply)], -oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitDbmsPrivilege$lambda$_30_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitUserQualifier$lambda$_74_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitExecuteFunctionQualifier$lambda$_56_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitExecuteProcedureQualifier$lambda$_58_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitSettingQualifier$lambda$_72_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_0_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlob$lambda$_62_1_apply)], -oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlobRecursive$lambda$_64_0_apply0)]]); -$rt_metadata([oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGlobPart$lambda$_66_0_apply)], -oncipvaf_DdlPrivilegeBuilder$GraphToken, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_0_apply)], -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_1_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_2_apply0)], -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_30, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_3_apply)], -oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_40, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$exitGraphQualifier$lambda$_68_4_apply)], -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateCompositeDatabase$lambda$_27_1_apply)], -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_0_apply)], -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_1_apply)], -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_2_apply)], -oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlCreateBuilder$exitCreateDatabase$lambda$_29_3_apply)], -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_0_apply0)], -oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitDropDatabase$lambda$_69_1_apply)], -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_0_apply)], -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_1_apply0)], -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_2_apply)], -oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_DdlBuilder$exitAlterDatabase$lambda$_73_3_apply0)], -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_0_apply0)], -oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterDatabaseTopology$lambda$_77_1_apply)], -oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitStartDatabase$lambda$_85_0_apply)], -oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitStopDatabase$lambda$_87_0_apply)], -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_0_apply0)], -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_1_apply)], -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_2_apply)], -oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlBuilder$exitAlterAlias$lambda$_93_3_apply0)], -oncipvaf_LiteralBuilder$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlBuilder$exitMapOrParameter$lambda$_3_0_apply)], -onciap_Prettifier$optionsToString$lambda$_42_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$optionsToString$lambda$_42_0_apply)], -oncia_ProcedureAllQualifier, 0, jl_Object, [oncia_ProcedurePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncia_FunctionAllQualifier, 0, jl_Object, [oncia_FunctionPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncia_SettingAllQualifier, 0, jl_Object, [oncia_SettingPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncia_SingleNamedGraphScope, 0, jl_Object, [oncia_GraphScope, s_Product, ji_Serializable], 4, 3, 0, 0, 0, -oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0_apply)], -oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1_apply)], -oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0_apply)], -oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0_apply)], -oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1_applyOrElse)], -oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_1_apply)], -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_2_apply)], -oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_110_3_apply)], -oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_101_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_101_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_1_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$31$lambda$_96_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$74$lambda$_149_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$74$lambda$_149_0_apply)], -oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_0_apply)], -oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_IterablePredicateExpression$asCanonicalStringVal$lambda$_7_1_apply)]]); -$rt_metadata([oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MultiOperatorExpression$asCanonicalStringVal$lambda$_2_0_apply)], -sc_IterableOnceOps$max$lambda$_81_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$max$lambda$_81_0_apply)], -oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0_apply)], -oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0_apply)], -oncius_TypeRange$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncius_TypeRange$_$callClinit, 0, -oncia_SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0, "SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0_apply)], +sc_MapView$FilterKeys, 0, sc_AbstractMapView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_MapView$FilterKeys_iterator)], +oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$clauseSpecificSemanticCheck$lambda$_8_0_apply)], +onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_0_apply)], +onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$prettyScope$lambda$_13_1_apply)], +onciap_DefaultExpressionStringifier$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_DefaultExpressionStringifier$$anonfun$1_applyOrElse)], +oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$containsDynamicLabelOrTypeExpression$lambda$_11_0_apply)], +otcit_DoubleSynthesizer, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_0_apply0)], +oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_197_0, "SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_197_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpressionForLegacyRelationshipTypeDisjunction$1$lambda$_197_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$53$lambda$_123_1_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$69$lambda$_138_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$69$lambda$_138_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$122$lambda$_193_1_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$118$lambda$_189_1_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$114$lambda$_185_1_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$64$lambda$_133_0, "SemanticExpressionCheck$$$anonfun$check$64$lambda$_133_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$64$lambda$_133_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_115_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$18$lambda$_115_0_apply)], +oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$6$lambda$_11_0_apply)], +oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$9$lambda$_13_0_apply)], +oncias_SemanticAnalysisTooling$expectType$lambda$_21_0, "SemanticAnalysisTooling$expectType$lambda$_21_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_21_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_142_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$declareVariables$2$lambda$_142_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_149_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$declareVariables$9$lambda$_149_0_apply)], +oncias_SemanticCheck$ifOkChain$lambda$_17_0, "SemanticCheck$ifOkChain$lambda$_17_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$ifOkChain$lambda$_17_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_102_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$11$lambda$_102_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$1$lambda$_177_1_apply)], +oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_171_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkLabelExpressions$1$lambda$_171_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkPredicate$1$lambda$_169_1_apply)], +oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_105_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$1$lambda$_105_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_1_apply)]]); +$rt_metadata([oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_2_apply)], +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_3, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$1$lambda$_124_3_apply)], +oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_152_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$declareVariables$12$lambda$_152_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_147_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$declareVariables$6$lambda$_147_0_apply)], +oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath, "SemanticPatternCheck$ScopeBeforeParenthesizedPath", 40, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [oncias_SemanticPatternCheck,0,"ScopeBeforeParenthesizedPath"], 0, ["$position", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_position), "$productPrefix", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productArity), +"$productElement", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_toString), "$equals", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_equals), +"$dup", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeBeforeParenthesizedPath_dup)], +oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath, "SemanticPatternCheck$ScopeAfterParenthesizedPath", 40, jl_Object, [onciu_ASTNode, ji_Serializable], 0, 3, [oncias_SemanticPatternCheck,0,"ScopeAfterParenthesizedPath"], 0, ["$position", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_position), "$productPrefix", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productPrefix), "$productArity", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productArity), +"$productElement", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productElement), "$productIterator", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_productIterator), "$hashCode", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_hashCode), "$toString", $rt_wrapFunction0(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_toString), "$equals", $rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_equals), "$dup", +$rt_wrapFunction1(oncias_SemanticPatternCheck$ScopeAfterParenthesizedPath_dup)], +oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_109_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$5$lambda$_109_0_apply)], +oncius_TypeSpec$$minimalRanges$lambda$_12_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncius_TypeSpec$$minimalRanges$lambda$_12_0_apply)], +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0, "AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0_apply)], +oncius_TypeSpec$$exact$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$exact$lambda$_4_0_apply)], +onciu_NonEmptyList$reverse$lambda$_66_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_NonEmptyList$reverse$lambda$_66_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_102_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$specifyType$1$lambda$_102_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_133_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$26$lambda$_133_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_107_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$3$lambda$_107_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_1_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$28$lambda$_139_2_apply)], +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0_apply)], +oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$State, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$, "IsolateSubqueriesInMutatingPatterns$NothingFound$", 65, jl_Object, [oncifp_IsolateSubqueriesInMutatingPatterns$State, s_Product, ji_Serializable], 0, 3, 0, 0, ["$foundSubquery", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_foundSubquery), "$foundCrossReference", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_foundCrossReference), "$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productArity), +"$productElement", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$NothingFound$_toString)], +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1_applyOrElse)], +oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$, "IsolateSubqueriesInMutatingPatterns$SubqueryFound$", 65, jl_Object, [oncifp_IsolateSubqueriesInMutatingPatterns$State, s_Product, ji_Serializable], 0, 3, 0, 0, ["$foundSubquery", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_foundSubquery), "$foundCrossReference", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_foundCrossReference), "$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productArity), +"$productElement", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$SubqueryFound$_toString)], +oncia_AuthImpl$checkDuplicates$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AuthImpl$checkDuplicates$lambda$_5_0_apply)], +oncia_AuthImpl$$anonfun$checkDuplicates$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_AuthImpl$$anonfun$checkDuplicates$2_applyOrElse)], +oncia_AuthImpl$checkDuplicates$lambda$_5_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_AuthImpl$checkDuplicates$lambda$_5_1_apply)], +oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0_apply)], +oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0_apply)], +oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1_apply)], +oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0, "RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0", 65, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply)], +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0_apply)], +oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_112_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$16$lambda$_112_0_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0_apply0)], +oncia_SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0, "SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$wrappedCallProcedureCheck$lambda$_15_0_apply)], oncia_SubqueryCall$checkNoCallInTransactionsInsideRegularCall$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$checkNoCallInTransactionsInsideRegularCall$lambda$_22_0_apply)], +oncias_SemanticAnalysisTooling$whenState$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$whenState$lambda$_35_0_apply)], +onciap_DefaultExpressionStringifier$Binding, 0, jl_Object, [], 3, 3, 0, 0, 0, +onciap_DefaultExpressionStringifier$Precedence, "DefaultExpressionStringifier$Precedence", 39, jl_Object, [onciap_DefaultExpressionStringifier$Binding, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_productPrefix), "$productArity", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_productArity), "$productElement", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$Precedence_productElement), "$productIterator", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_productIterator), +"$hashCode", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_hashCode), "$toString", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Precedence_toString), "$equals", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$Precedence_equals)], +onciap_DefaultExpressionStringifier$formsChain$1$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$formsChain$1$lambda$_70_0_apply)], sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIterator$lambda$_28_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIterator$lambda$_28_0_apply)], sci_LazyList$State$Cons, 0, jl_Object, [sci_LazyList$State], 4, 3, 0, 0, ["$head", $rt_wrapFunction0(sci_LazyList$State$Cons_head), "$tail1", $rt_wrapFunction0(sci_LazyList$State$Cons_tail)], -oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$3_applyOrElse0)], -oncia_Clause$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Clause$$anonfun$1_applyOrElse)], -oncia_Clause$Acc$1, "Clause$Acc$1", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Clause$Acc$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Clause$Acc$1_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$Acc$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$Acc$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$Acc$1_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$Acc$1_toString), "$equals", +oncie_TypeSignatures$signatureLengths$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_TypeSignatures$signatureLengths$lambda$_3_0_apply)]]); +$rt_metadata([oncia_Clause$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Clause$$anonfun$1_applyOrElse)], +oncia_Clause$Acc$1, "Clause$Acc$1", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Clause$Acc$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Clause$Acc$1_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$Acc$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$Acc$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$Acc$1_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$Acc$1_toString), "$equals", $rt_wrapFunction1(oncia_Clause$Acc$1_equals)], -oncia_Clause$LabelExpressionsPartitions$1, "Clause$LabelExpressionsPartitions$1", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$LabelExpressionsPartitions$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1_productIterator), +oncia_Clause$LabelExpressionsPartitions$1, "Clause$LabelExpressionsPartitions$1", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$LabelExpressionsPartitions$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1_toString), "$equals", $rt_wrapFunction1(oncia_Clause$LabelExpressionsPartitions$1_equals)], oncia_Clause$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Clause$$anonfun$2_applyOrElse)], oncia_Clause$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Clause$$anonfun$3_applyOrElse)], oncia_Clause$checkIfMixingLegacyVarLengthWithQPPs$lambda$_11_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Clause$checkIfMixingLegacyVarLengthWithQPPs$lambda$_11_0_apply)], oncia_Clause$$anonfun$4, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Clause$$anonfun$4_applyOrElse)], oncia_Clause$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$lambda$_12_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Clause$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$lambda$_12_0_apply)], -oncias_Scope$allSymbols$lambda$_16_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_Scope$allSymbols$lambda$_16_0_apply)], -oncip_CypherErrorVocabulary$displayName$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$displayName$lambda$_5_0_apply)], -oncip_CypherErrorVocabulary$displayName$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$displayName$lambda$_5_1_apply)], -oncia_Where$$checkExpression$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Where$$checkExpression$lambda$_5_0_apply)], -oncia_Where$$checkExpression$lambda$_5_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Where$$checkExpression$lambda$_5_1_apply)], -oncipvaf_Cypher5AstUtil$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1_applyOrElse0)], -scc_AsScalaExtensions$CollectionHasAsScala, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncipau_Util$$astBinaryFold$lambda$_16_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipau_Util$$astBinaryFold$lambda$_16_0_apply)], -oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0_apply0)], -oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0_apply0)], -oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1_apply0)], -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0_apply0)], -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1_apply0)], -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_20, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2_apply0)], -oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_138_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$reportDeprecatedChars$lambda$_138_0_apply)], -oncipvaf_Cypher25AstUtil$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$10, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncipvaf_StatementBuilder$$anonfun$nonEmptyVariables$1_applyOrElse)], -oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$normalFormComparisonExpression$lambda$_34_0_apply)], -oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_0_apply)], -oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_ExpressionBuilder$subqueryBuilder$lambda$_102_1_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$0, 0, sr_AbstractFunction7, [ji_Serializable], 0, 3, 0, 0, 0, -oncia_NodeExistsConstraintsCypher25$, "NodeExistsConstraintsCypher25$", 36, jl_Object, [oncia_NodeExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_NodeExistsConstraintsCypher25$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher25$_prettyPrint0), "$org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_NodeExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$output_$eq), "$org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$prettyPrint_$eq", -$rt_wrapFunction1(oncia_NodeExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$NodeExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeExistsConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodeExistsConstraintsCypher25$_toString)], -oncia_RelExistsConstraintsCypher25$, "RelExistsConstraintsCypher25$", 36, jl_Object, [oncia_RelExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_RelExistsConstraintsCypher25$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher25$_prettyPrint0), "$org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_RelExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$output_$eq), "$org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$prettyPrint_$eq", -$rt_wrapFunction1(oncia_RelExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$RelExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelExistsConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelExistsConstraintsCypher25$_toString)], -oncia_ExistsConstraintsCypher25$, "ExistsConstraintsCypher25$", 36, jl_Object, [oncia_ExistsConstraints, s_Product, ji_Serializable], 4, 3, 0, oncia_ExistsConstraintsCypher25$_$callClinit, ["$prettyPrint", $rt_wrapFunction0(oncia_ExistsConstraintsCypher25$_prettyPrint0), "$org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$output_$eq", $rt_wrapFunction1(oncia_ExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$output_$eq), "$org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$prettyPrint_$eq", -$rt_wrapFunction1(oncia_ExistsConstraintsCypher25$_org$neo4j$cypher$internal$ast$ExistsConstraints$_setter_$prettyPrint_$eq), "$productArity", $rt_wrapFunction0(oncia_ExistsConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_ExistsConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_ExistsConstraintsCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_ExistsConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_ExistsConstraintsCypher25$_toString)], -oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$pickShowConstraintType$lambda$_33_0_apply)], -oncipvaf_DdlShowBuilder$ConstraintEntity, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_NodeUniqueConstraintsCypher25$, "NodeUniqueConstraintsCypher25$", 36, jl_Object, [oncia_NodeUniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_NodeUniqueConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_productIterator), -"$hashCode", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_NodeUniqueConstraintsCypher25$_toString)], -oncia_RelUniqueConstraintsCypher25$, "RelUniqueConstraintsCypher25$", 36, jl_Object, [oncia_RelUniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_RelUniqueConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_productIterator), "$hashCode", -$rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_hashCode), "$toString", $rt_wrapFunction0(oncia_RelUniqueConstraintsCypher25$_toString)], -oncia_UniqueConstraintsCypher25$, "UniqueConstraintsCypher25$", 36, jl_Object, [oncia_UniqueConstraints, s_Product, ji_Serializable], 4, 3, 0, 0, ["$prettyPrint", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_prettyPrint0), "$productArity", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_productArity), "$productElement", $rt_wrapFunction1(oncia_UniqueConstraintsCypher25$_productElement), "$productIterator", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_hashCode), -"$toString", $rt_wrapFunction0(oncia_UniqueConstraintsCypher25$_toString)], -onciap_Prettifier$$anonfun$stringify$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$stringify$1$1_applyOrElse)], -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_0_apply)]]); -$rt_metadata([onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_2_apply)], -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_3_apply)], -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_4_apply)], -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_6_apply)], -onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_44_5_apply)], -onciap_Prettifier$$escapeNames$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$escapeNames$lambda$_18_0_apply)], -jur_Matcher$1, "Matcher$1", 6, jl_Object, [], 0, 0, 0, 0, ["$toString", $rt_wrapFunction0(jur_Matcher$1_toString)], -oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_0_apply)], -oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher5SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_46_1_apply)], -oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_0_apply)], -oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_Cypher25SyntaxChecker$$anonfun$errorOnAliasNameContainingTooManyComponents$2$lambda$_35_1_apply)], -oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_0_apply)], -oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_65_1_apply)], +oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_68_0, "SemanticExpressionCheck$$checkForShadowedVariables$lambda$_68_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$checkForShadowedVariables$lambda$_68_0_apply)], +oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_0_apply)], +oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidDynamicLabels$lambda$_84_1_apply)], +oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_0_apply)], +oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_1_apply)], +oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$checkLabelExpression$lambda$_56_2_apply)], +oncil_SolvableLabelExpression$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_131_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$unsatisfiableRelTypeExpression$1$lambda$_131_0_apply)], +oncie_Expression$TreeAcc$inScope$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$TreeAcc$inScope$lambda$_4_0_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$RewrittenExpression$2$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, +oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1_applyOrElse)], +oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_0_apply)], +oncia_allAuthAttr$, 0, jl_Object, [], 4, 3, 0, oncia_allAuthAttr$_$callClinit, 0, +oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_1_apply)], +oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AuthImpl$noUnsupportedAttributes$lambda$_11_2_apply)], +oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0_apply)], +oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1_apply)], +oncifp_SelfReferenceCheckWithinPatternPart$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_3_0_apply)], +oncifp_SelfReferenceCheckAcrossPatternParts$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckAcrossPatternParts$$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_3_0_apply)], +oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_0_apply)], +oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$ensureProjectedToUniqueIds$lambda$_69_1_apply)], oncia_Clause$Acc$2$, 0, sr_AbstractFunction3, [ji_Serializable], 0, 3, 0, 0, 0, -oncie_Expression$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncie_Expression$$_clinit_$lambda$_0_0_apply)], -oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_0_apply)], -oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncip_CypherErrorVocabulary$getDisplayName$lambda$_6_1_apply)], -oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncipvaf_Cypher5AstUtil$$anonfun$nonEmptyPropertyKeyName$1_applyOrElse)], -oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncipvaf_Cypher25AstUtil$$anonfun$nonEmptyPropertyKeyName$1_applyOrElse)], -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_0_apply)], -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_1_apply)], -oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$getYieldAllAndYieldItems$lambda$_8_2_apply)], -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_0_apply)], -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_1_apply)], -onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_41_2_apply)], -onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_0_apply)], -onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_37_1_apply)], -onciu_NonEmptyList$$from$lambda$_3_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciu_NonEmptyList$$from$lambda$_3_0_apply)], -onciu_RewritableJavascript$PROXY$7_703, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_705, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$7_706, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_276, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_277, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_276, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_277, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_68_0, "ImportingWithSubqueryCall$checkSubquery$lambda$_68_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_68_0_apply)], -ju_HashMap$ValueIterator, 0, ju_HashMap$AbstractMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_HashMap$ValueIterator_next)], -oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0_apply)], -oncil_NodeLabels, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncil_NodeLabels$SomeUnknownLabels$, "NodeLabels$SomeUnknownLabels$", 63, jl_Object, [oncil_NodeLabels, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncil_NodeLabels$SomeUnknownLabels$_productArity), "$productElement", $rt_wrapFunction1(oncil_NodeLabels$SomeUnknownLabels$_productElement), "$productIterator", $rt_wrapFunction0(oncil_NodeLabels$SomeUnknownLabels$_productIterator), "$hashCode", $rt_wrapFunction0(oncil_NodeLabels$SomeUnknownLabels$_hashCode), "$toString", $rt_wrapFunction0(oncil_NodeLabels$SomeUnknownLabels$_toString)], -otcir_Flags, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0, "SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0_apply)], -oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1, "SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1_apply)], -oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2, "SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0_apply0)], -oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0_apply)], -oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1_apply)], -oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0_apply)], -oncius_TypeSpec$equals$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$equals$lambda$_38_0_apply)]]); -$rt_metadata([oncius_TypeSpec$equals$lambda$_38_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$equals$lambda$_38_1_apply)], -oncius_TypeSpec$equals$lambda$_38_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeSpec$equals$lambda$_38_2_apply)], -oncius_TypeSpec$equals$lambda$_38_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeSpec$equals$lambda$_38_3_apply)], -jl_IllegalAccessException, "IllegalAccessException", 14, jl_ReflectiveOperationException, [], 0, 3, 0, 0, 0, -otcir_Converter, 0, jl_Object, [], 4, 3, 0, 0, 0, -onciap_DefaultPatternStringifier$apply$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_0_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_1_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_5_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_2_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_5_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_3_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_5_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_5_4_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_5_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_5_apply)], -onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0, "Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0", 54, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0_apply)], -sc_MapView$FilterKeys$iterator$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_MapView$FilterKeys$iterator$lambda$_0_0_apply)], -onciap_Prettifier$propertiesMapToString$lambda$_32_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$propertiesMapToString$lambda$_32_0_apply)], -oncie_NodePattern$mapExpressions$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_NodePattern$mapExpressions$lambda$_12_0_apply)], -oncie_QuantifiedPath$mapExpressions$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_QuantifiedPath$mapExpressions$lambda$_14_0_apply)], -oncie_PathConcatenation$mapExpressions$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_PathConcatenation$mapExpressions$lambda$_9_0_apply)], -oncifp_ProcedureSignature$outputFields$lambda$_29_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ProcedureSignature$outputFields$lambda$_29_0_apply)], -oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_70_0, "ScopeClauseSubqueryCall$checkSubquery$lambda$_70_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_70_0_apply)], -oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_0_apply)], +oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_73_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoRepeatedRelationships$lambda$_73_0_apply)], +oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoRepeatedVarLengthRelationships$lambda$_74_0_apply)], +oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_0_apply)], +oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$checkValidLabels$lambda$_83_1_apply)], +suc_TailCalls$TailRec, 0, jl_Object, [], 1, 3, 0, 0, 0, +oncil_SolvableLabelExpression, "SolvableLabelExpression", 61, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncil_SolvableLabelExpression_productPrefix), "$productArity", $rt_wrapFunction0(oncil_SolvableLabelExpression_productArity), "$productElement", $rt_wrapFunction1(oncil_SolvableLabelExpression_productElement), "$productIterator", $rt_wrapFunction0(oncil_SolvableLabelExpression_productIterator), "$hashCode", $rt_wrapFunction0(oncil_SolvableLabelExpression_hashCode), +"$toString", $rt_wrapFunction0(oncil_SolvableLabelExpression_toString), "$equals", $rt_wrapFunction1(oncil_SolvableLabelExpression_equals)], +oncifp_SelfReferenceCheckWithinPatternPart$$findSelfReferenceVariablesWithinPatternParts$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$$findSelfReferenceVariablesWithinPatternParts$lambda$_4_0_apply)], +oncias_SemanticAnalysisTooling$declareVariable$lambda$_63_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$declareVariable$lambda$_63_0_apply)], +oncias_SemanticPatternCheck$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$2_applyOrElse)], +oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_0_apply)], +oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$findRepeatedRelationships$lambda$_76_1_apply)], +oncias_SemanticAnalysisTooling$implicitVariable$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$implicitVariable$lambda$_69_0_apply)], +suc_TailCalls$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0, "SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0", 61, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_0_apply)], +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_1_apply)], +onciut_TailCallsUtil$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_2_apply)], +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_3_apply)], +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_4_apply)], +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_5_apply)]]); +$rt_metadata([oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_6_apply)], +oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$extractLabelExpressionRec$lambda$_2_7_apply)], +suc_TailCalls$Done, "TailCalls$Done", 17, suc_TailCalls$TailRec, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(suc_TailCalls$Done_productPrefix), "$productArity", $rt_wrapFunction0(suc_TailCalls$Done_productArity), "$productElement", $rt_wrapFunction1(suc_TailCalls$Done_productElement), "$productIterator", $rt_wrapFunction0(suc_TailCalls$Done_productIterator), "$toString", $rt_wrapFunction0(suc_TailCalls$Done_toString)], +suc_TailCalls$Call, "TailCalls$Call", 17, suc_TailCalls$TailRec, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(suc_TailCalls$Call_productPrefix), "$productArity", $rt_wrapFunction0(suc_TailCalls$Call_productArity), "$productElement", $rt_wrapFunction1(suc_TailCalls$Call_productElement), "$productIterator", $rt_wrapFunction0(suc_TailCalls$Call_productIterator), "$hashCode", $rt_wrapFunction0(suc_TailCalls$Call_hashCode), "$toString", $rt_wrapFunction0(suc_TailCalls$Call_toString), +"$equals", $rt_wrapFunction1(suc_TailCalls$Call_equals)], +suc_TailCalls$Cont, "TailCalls$Cont", 17, suc_TailCalls$TailRec, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(suc_TailCalls$Cont_productPrefix), "$productArity", $rt_wrapFunction0(suc_TailCalls$Cont_productArity), "$productElement", $rt_wrapFunction1(suc_TailCalls$Cont_productElement), "$productIterator", $rt_wrapFunction0(suc_TailCalls$Cont_productIterator), "$hashCode", $rt_wrapFunction0(suc_TailCalls$Cont_hashCode), "$toString", $rt_wrapFunction0(suc_TailCalls$Cont_toString), +"$equals", $rt_wrapFunction1(suc_TailCalls$Cont_equals)], +suc_TailCalls$TailRec$result$lambda$_3_0, "TailCalls$TailRec$result$lambda$_3_0", 17, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$result$lambda$_3_0_apply)], +suc_TailCalls$TailRec$result$lambda$_3_1, "TailCalls$TailRec$result$lambda$_3_1", 17, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$result$lambda$_3_1_apply)], +suc_TailCalls$TailRec$result$lambda$_3_2, "TailCalls$TailRec$result$lambda$_3_2", 17, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$result$lambda$_3_2_apply)], +oncil_SolvableLabelExpression$$wildcard$lambda$_4_0, "SolvableLabelExpression$$wildcard$lambda$_4_0", 61, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$wildcard$lambda$_4_0_apply)], +oncil_SolvableLabelExpression$$dynamic$lambda$_5_0, "SolvableLabelExpression$$dynamic$lambda$_5_0", 61, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$dynamic$lambda$_5_0_apply)], +oncil_SolvableLabelExpression$$label$lambda$_6_0, "SolvableLabelExpression$$label$lambda$_6_0", 61, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$$label$lambda$_6_0_apply)], +suc_TailCalls$TailRec$map$lambda$_0_0, "TailCalls$TailRec$map$lambda$_0_0", 17, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$map$lambda$_0_0_apply)], +suc_TailCalls$TailRec$map$lambda$_0_1, "TailCalls$TailRec$map$lambda$_0_1", 17, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$map$lambda$_0_1_apply)], +suc_TailCalls$TailRec$map$lambda$_0_2, "TailCalls$TailRec$map$lambda$_0_2", 17, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$map$lambda$_0_2_apply)], +onciut_TailCallsUtil$$map2$lambda$_2_0, "TailCallsUtil$$map2$lambda$_2_0", 54, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciut_TailCallsUtil$$map2$lambda$_2_0_apply)], +onciut_TailCallsUtil$$traverse$lambda$_1_0, "TailCallsUtil$$traverse$lambda$_1_0", 54, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciut_TailCallsUtil$$traverse$lambda$_1_0_apply)], +onciut_TailCallsUtil$$traverse$lambda$_1_1, "TailCallsUtil$$traverse$lambda$_1_1", 54, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciut_TailCallsUtil$$traverse$lambda$_1_1_apply)], +sc_Seq$, 0, sc_SeqFactory$Delegate, [], 4, 3, 0, sc_Seq$_$callClinit, 0, +suc_TailCalls$TailRec$flatMap$lambda$_1_0, "TailCalls$TailRec$flatMap$lambda$_1_0", 17, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$flatMap$lambda$_1_0_apply)], +suc_TailCalls$TailRec$flatMap$lambda$_1_1, "TailCalls$TailRec$flatMap$lambda$_1_1", 17, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$flatMap$lambda$_1_1_apply)], +oncifp_VariableReferenceCheck$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_VariableReferenceCheck$$anonfun$1_applyOrElse)], +onciu_RewritableJavascript$PROXY$9_260, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_261, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_262, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_263, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_264, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_265, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_266, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_267, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_268, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_260, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_261, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_262, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_263, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_264, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_265, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_266, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_267, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_268, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_716, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncias_SemanticPatternCheck, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_732, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$7_733, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_73_0, "ImportingWithSubqueryCall$checkSubquery$lambda$_73_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$checkSubquery$lambda$_73_0_apply)], +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_0_apply)], +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_1_apply)], +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_2_apply)], +oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkContainedPatterns$1$1$applyOrElse$lambda$_0_3_apply)], +onciu_Foldable$Folder$$anonfun$treeCollect$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciu_Foldable$Folder$$anonfun$treeCollect$1_applyOrElse)], +oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$anonfun$$nestedInanonfun$check$1$1$applyOrElse$lambda$_0_0_apply)]]); +$rt_metadata([oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_0_apply)], oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_1_apply)], oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_2_apply)], oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_3_apply)], oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_4_apply)], oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$applyOrElse$lambda$_0_5_apply)], -onciap_DefaultPatternStringifier$apply$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_0_0_apply)], -jnci_Iso8859Decoder, 0, jnci_BufferedDecoder, [], 0, 3, 0, 0, ["$arrayDecode", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return jnci_Iso8859Decoder_arrayDecode(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }], -ju_IdentityHashMap$HashEntry, 0, ju_MapEntry, [], 0, 0, 0, 0, 0, -jnci_BufferedDecoder$Controller, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncias_Symbol$toString$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Symbol$toString$lambda$_14_0_apply)], oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_0_apply)], oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$2$applyOrElse$lambda$_0_1_apply)], -sci_LazyList$SlidingIterator, "LazyList$SlidingIterator", 22, sc_AbstractIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_LazyList$SlidingIterator_hasNext), "$next", $rt_wrapFunction0(sci_LazyList$SlidingIterator_next)], +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_0_apply)], +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_2_apply)], +oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_1_apply)], oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_0_apply)], oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_1_apply)], oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_3_apply)], oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$4$applyOrElse$lambda$_0_2_apply)], -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_0_apply)], -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_2_apply)], -oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$3$applyOrElse$lambda$_0_1_apply)], -oncipl_ThinCypherToken, "ThinCypherToken", 49, jl_Object, [oncipl_CypherToken, oavrt_TerminalNode], 4, 3, 0, 0, ["$position", $rt_wrapFunction0(oncipl_ThinCypherToken_position), "$inputOffset", $rt_wrapFunction1(oncipl_ThinCypherToken_inputOffset), "$getType0", $rt_wrapFunction0(oncipl_ThinCypherToken_getType), "$getChannel", $rt_wrapFunction0(oncipl_ThinCypherToken_getChannel), "$getStartIndex", $rt_wrapFunction0(oncipl_ThinCypherToken_getStartIndex), "$getStopIndex", $rt_wrapFunction0(oncipl_ThinCypherToken_getStopIndex), -"$getLine0", $rt_wrapFunction0(oncipl_ThinCypherToken_getLine), "$getCharPositionInLine", $rt_wrapFunction0(oncipl_ThinCypherToken_getCharPositionInLine), "$getText", $rt_wrapFunction0(oncipl_ThinCypherToken_getText), "$getTokenSource", $rt_wrapFunction0(oncipl_ThinCypherToken_getTokenSource), "$getInputStream0", $rt_wrapFunction0(oncipl_ThinCypherToken_getInputStream), "$getTokenIndex", $rt_wrapFunction0(oncipl_ThinCypherToken_getTokenIndex), "$getSymbol", $rt_wrapFunction0(oncipl_ThinCypherToken_getSymbol), -"$setParent", $rt_wrapFunction1(oncipl_ThinCypherToken_setParent)], -oavr_CommonToken, "CommonToken", 83, jl_Object, [oavr_WritableToken, ji_Serializable], 0, 3, 0, 0, ["$getType0", $rt_wrapFunction0(oavr_CommonToken_getType), "$getText", $rt_wrapFunction0(oavr_CommonToken_getText), "$getLine0", $rt_wrapFunction0(oavr_CommonToken_getLine), "$getCharPositionInLine", $rt_wrapFunction0(oavr_CommonToken_getCharPositionInLine), "$getChannel", $rt_wrapFunction0(oavr_CommonToken_getChannel), "$getStartIndex", $rt_wrapFunction0(oavr_CommonToken_getStartIndex), "$getStopIndex", $rt_wrapFunction0(oavr_CommonToken_getStopIndex), -"$getTokenIndex", $rt_wrapFunction0(oavr_CommonToken_getTokenIndex), "$getTokenSource", $rt_wrapFunction0(oavr_CommonToken_getTokenSource), "$getInputStream0", $rt_wrapFunction0(oavr_CommonToken_getInputStream), "$toString", $rt_wrapFunction0(oavr_CommonToken_toString0)], -oncipl_FullCypherToken, "FullCypherToken", 49, oavr_CommonToken, [oncipl_CypherToken], 0, 3, 0, 0, ["$position", $rt_wrapFunction0(oncipl_FullCypherToken_position), "$inputOffset", $rt_wrapFunction1(oncipl_FullCypherToken_inputOffset)], -jusi_SimpleIntStreamIterator$fetchIfNeeded$lambda$_3_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_SimpleIntStreamIterator$fetchIfNeeded$lambda$_3_0_test)], -oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_10, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_1_apply)], -oncius_TypeSpec$contains$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$contains$lambda$_9_0_apply)], +oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_79_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_TerminateTransactionsClause$clauseSpecificSemanticCheck$lambda$_79_0_apply)], +jnci_BufferedEncoder$Controller, 0, jl_Object, [], 0, 3, 0, 0, 0, +otcir_Flags, 0, jl_Object, [], 4, 3, 0, 0, 0, +onciap_DefaultPatternStringifier$apply$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_7_0_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_7_1_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_7_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_7_2_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_7_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_7_3_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_7_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_7_4_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_7_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_7_5_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_7_6, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_7_6_apply)], +jl_IllegalAccessException, "IllegalAccessException", 12, jl_ReflectiveOperationException, [], 0, 3, 0, 0, 0, +otcir_Converter, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_1_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$applyOrElse$lambda$_0_2_apply)], +oncius_TypeSpec$equals$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$equals$lambda$_38_0_apply)], +oncius_TypeSpec$equals$lambda$_38_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$equals$lambda$_38_1_apply)], +oncius_TypeSpec$equals$lambda$_38_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeSpec$equals$lambda$_38_2_apply)], +oncius_TypeSpec$equals$lambda$_38_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeSpec$equals$lambda$_38_3_apply)], +jusi_LimitingIntStreamImpl$next$lambda$_1_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_LimitingIntStreamImpl$next$lambda$_1_0_test)], +jusi_SkippingIntStreamImpl$next$lambda$_1_0, 0, jl_Object, [juf_IntPredicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_SkippingIntStreamImpl$next$lambda$_1_0_test)], +sci_LazyList$LazyIterator, "LazyList$LazyIterator", 20, sc_AbstractIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_LazyList$LazyIterator_hasNext), "$next", $rt_wrapFunction0(sci_LazyList$LazyIterator_next)], +onciap_DefaultPatternStringifier$apply$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_3_0_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_3_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_3_1_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_3_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_3_2_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_3_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_3_3_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_3_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_3_4_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_6_0_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_8_0_apply)], +oncifp_ProcedureSignature$outputFields$lambda$_29_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ProcedureSignature$outputFields$lambda$_29_0_apply)], +onciap_DefaultExpressionStringifier$apply$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$apply$lambda$_8_0_apply)], +oncie_Expression$$anonfun$findAggregate$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$findAggregate$1_applyOrElse)], +sci_WrappedString, 0, sci_AbstractSeq, [sci_IndexedSeq, ji_Serializable], 4, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sci_WrappedString_iterator), "$knownSize", $rt_wrapFunction0(sci_WrappedString_knownSize), "$length", $rt_wrapFunction0(sci_WrappedString_length), "$view0", $rt_wrapFunction0(sci_WrappedString_view)], +oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_75_0, "ScopeClauseSubqueryCall$checkSubquery$lambda$_75_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$checkSubquery$lambda$_75_0_apply)], +oncias_SymbolUse$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0]); +$rt_metadata([oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$FilteringExpressions$$possibleInnerTypes$lambda$_6_0_apply)], +oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_77_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheckInSubqueryExpressionContext$lambda$_77_0_apply)], +oncia_SingleQuery$containsUpdates$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$containsUpdates$lambda$_64_0_apply)], +oncias_SemanticState$expressionType$lambda$_48_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticState$expressionType$lambda$_48_0_apply)], +oncias_ExpressionTypeInfo$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncias_ExpressionTypeInfo$_$callClinit, 0, +oncie_ExpressionTypeSignature$getSignatureAsString$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ExpressionTypeSignature$getSignatureAsString$lambda$_11_0_apply)], +oncie_FunctionTypeSignature$getSignatureAsString$lambda$_32_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_FunctionTypeSignature$getSignatureAsString$lambda$_32_0_apply)], +oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0_apply)], +oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_0_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_1_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_3_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$anonfun$1$applyOrElse$lambda$_0_2_apply)], +oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0_apply)], +oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1_apply)], +oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2_apply)], +oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$arguments$1$applyOrElse$lambda$_0_0_apply)], +sci_LazyList$SlidingIterator, "LazyList$SlidingIterator", 20, sc_AbstractIterator, [], 0, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sci_LazyList$SlidingIterator_hasNext), "$next", $rt_wrapFunction0(sci_LazyList$SlidingIterator_next)], oncius_TypeSpec$toStream$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStream$lambda$_35_0_apply)], oncius_TypeSpec$toStream$lambda$_35_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeSpec$toStream$lambda$_35_1_apply)], sci_Stream, 0, sci_AbstractSeq, [sci_LinearSeq, ji_Serializable], 129, 3, 0, 0, ["$stringPrefix", $rt_wrapFunction0(sci_Stream_stringPrefix), "$scala$collection$LinearSeqOps$$super$sameElements", $rt_wrapFunction1(sci_Stream_scala$collection$LinearSeqOps$$super$sameElements), "$headOption", $rt_wrapFunction0(sci_Stream_headOption), "$iterator0", $rt_wrapFunction0(sci_Stream_iterator), "$length", $rt_wrapFunction0(sci_Stream_length), "$last", $rt_wrapFunction0(sci_Stream_last), "$lengthCompare", $rt_wrapFunction1(sci_Stream_lengthCompare), -"$apply1", $rt_wrapFunction1(sci_Stream_apply), "$forall", $rt_wrapFunction1(sci_Stream_forall), "$exists", $rt_wrapFunction1(sci_Stream_exists), "$contains", $rt_wrapFunction1(sci_Stream_contains), "$sameElements", $rt_wrapFunction1(sci_Stream_sameElements), "$indexWhere", $rt_wrapFunction2(sci_Stream_indexWhere), "$className", $rt_wrapFunction0(sci_Stream_className), "$foreach", $rt_wrapFunction1(sci_Stream_foreach), "$find3", $rt_wrapFunction1(sci_Stream_find), "$foldLeft", $rt_wrapFunction2(sci_Stream_foldLeft), +"$apply1", $rt_wrapFunction1(sci_Stream_apply), "$forall", $rt_wrapFunction1(sci_Stream_forall), "$exists", $rt_wrapFunction1(sci_Stream_exists), "$contains", $rt_wrapFunction1(sci_Stream_contains), "$sameElements", $rt_wrapFunction1(sci_Stream_sameElements), "$indexWhere", $rt_wrapFunction2(sci_Stream_indexWhere), "$className", $rt_wrapFunction0(sci_Stream_className), "$foreach", $rt_wrapFunction1(sci_Stream_foreach), "$find2", $rt_wrapFunction1(sci_Stream_find), "$foldLeft", $rt_wrapFunction2(sci_Stream_foldLeft), "$reduceLeft", $rt_wrapFunction1(sci_Stream_reduceLeft), "$partition", $rt_wrapFunction1(sci_Stream_partition), "$collectFirst", $rt_wrapFunction1(sci_Stream_collectFirst), "$addString", $rt_wrapFunction4(sci_Stream_addString), "$toString", $rt_wrapFunction0(sci_Stream_toString), "$apply2", $rt_wrapFunction1(sci_Stream_apply0), "$zipWithIndex", $rt_wrapFunction0(sci_Stream_zipWithIndex), "$zip1", $rt_wrapFunction1(sci_Stream_zip0), "$flatMap", $rt_wrapFunction1(sci_Stream_flatMap), "$collect", $rt_wrapFunction1(sci_Stream_collect0), -"$map", $rt_wrapFunction1(sci_Stream_map0), "$prepended", $rt_wrapFunction1(sci_Stream_prepended), "$filterNot0", $rt_wrapFunction1(sci_Stream_filterNot0), "$filter1", $rt_wrapFunction1(sci_Stream_filter), "$iterableFactory", $rt_wrapFunction0(sci_Stream_iterableFactory)]]); -$rt_metadata([oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0_apply)], -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_0_apply)], -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_1_apply)], -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_2_apply)], -onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_3_apply)], -oavra_SemanticContext$Operator, 0, oavra_SemanticContext, [], 1, 3, 0, 0, 0, -oavra_SemanticContext$OR, "SemanticContext$OR", 85, oavra_SemanticContext$Operator, [], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oavra_SemanticContext$OR_equals), "$hashCode", $rt_wrapFunction0(oavra_SemanticContext$OR_hashCode), "$eval", $rt_wrapFunction2(oavra_SemanticContext$OR_eval), "$evalPrecedence", $rt_wrapFunction2(oavra_SemanticContext$OR_evalPrecedence), "$toString", $rt_wrapFunction0(oavra_SemanticContext$OR_toString)], -oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0_apply)], +"$map", $rt_wrapFunction1(sci_Stream_map0), "$prepended", $rt_wrapFunction1(sci_Stream_prepended), "$filterNot0", $rt_wrapFunction1(sci_Stream_filterNot0), "$filter1", $rt_wrapFunction1(sci_Stream_filter), "$iterableFactory", $rt_wrapFunction0(sci_Stream_iterableFactory)], +oavra_LexerActionExecutor, 0, jl_Object, [], 0, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(oavra_LexerActionExecutor_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerActionExecutor_equals)], +onciap_DefaultPatternStringifier$concatenate$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$concatenate$lambda$_9_0_apply)], +onciap_DefaultPatternStringifier$concatenate$lambda$_9_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$concatenate$lambda$_9_1_apply)], oncias_SemanticPatternCheck$$anonfun$3$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$3$applyOrElse$lambda$_0_0_apply)], -oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0_apply)], -oncipvaf_DdlShowBuilder$ConstraintEntity0, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncipvaf_DdlShowBuilder$Rel$, "DdlShowBuilder$Rel$", 53, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity0, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$Rel$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_hashCode), "$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_toString)], -oncipvaf_DdlShowBuilder$Node$0, "DdlShowBuilder$Node$", 53, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity0, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$Node$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_hashCode), "$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_toString0)], -oncipvaf_DdlShowBuilder$NoEntity$0, "DdlShowBuilder$NoEntity$", 53, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity0, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$NoEntity$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_hashCode0), "$toString", -$rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_toString0)], -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$0, "DdlPrivilegeBuilder$RelGraphToken$", 53, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken0, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_hashCode), -"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_toString0)], -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$0, "DdlPrivilegeBuilder$NodeGraphToken$", 53, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken0, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_hashCode0), -"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_toString)], -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$0, "DdlPrivilegeBuilder$ElementGraphToken$", 53, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken0, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_hashCode0), -"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_toString)], -oncipvaf_DdlShowBuilder$Node$, "DdlShowBuilder$Node$", 48, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$Node$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_hashCode0), "$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Node$_toString)], -oncipvaf_DdlShowBuilder$Rel$0, "DdlShowBuilder$Rel$", 48, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$Rel$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_hashCode0), "$toString", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$Rel$_toString0)], -oncipvaf_DdlShowBuilder$NoEntity$, "DdlShowBuilder$NoEntity$", 48, jl_Object, [oncipvaf_DdlShowBuilder$ConstraintEntity, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$NoEntity$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_productIterator0), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_hashCode), "$toString", -$rt_wrapFunction0(oncipvaf_DdlShowBuilder$NoEntity$_toString)], -oncipvaf_DdlPrivilegeBuilder$RelGraphToken$, "DdlPrivilegeBuilder$RelGraphToken$", 48, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productElement), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_hashCode0), -"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$RelGraphToken$_toString)], -oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$, "DdlPrivilegeBuilder$NodeGraphToken$", 48, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productArity0), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_hashCode), -"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$NodeGraphToken$_toString0)], -oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$, "DdlPrivilegeBuilder$ElementGraphToken$", 48, jl_Object, [oncipvaf_DdlPrivilegeBuilder$GraphToken, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productArity), "$productElement", $rt_wrapFunction1(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productElement0), "$productIterator", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_productIterator), "$hashCode", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_hashCode), -"$toString", $rt_wrapFunction0(oncipvaf_DdlPrivilegeBuilder$ElementGraphToken$_toString0)], -oncia_Clause$LabelExpressionsPartitions$2$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, sci_LazyList$dropRight$lambda$_87_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$dropRight$lambda$_87_0_apply)], +onciap_DefaultExpressionStringifier$Syntactic$, "DefaultExpressionStringifier$Syntactic$", 39, jl_Object, [onciap_DefaultExpressionStringifier$Binding, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Syntactic$_productArity), "$productElement", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$Syntactic$_productElement), "$productIterator", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Syntactic$_productIterator), "$hashCode", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Syntactic$_hashCode), +"$toString", $rt_wrapFunction0(onciap_DefaultExpressionStringifier$Syntactic$_toString)], +oncia_Clause$LabelExpressionsPartitions$2$, 0, sr_AbstractFunction2, [ji_Serializable], 0, 3, 0, 0, 0, sci_LazyList$map$lambda$_69_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$map$lambda$_69_0_apply)], -sci_LazyList$appended$lambda$_58_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appended$lambda$_58_0_apply)], -sci_LazyList$appended$lambda$_58_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appended$lambda$_58_1_apply)], -sci_LazyList$appended$lambda$_58_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appended$lambda$_58_2_apply)], -sci_LazyList$appendedAll$lambda$_57_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appendedAll$lambda$_57_0_apply)], -sci_LazyList$appendedAll$lambda$_57_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appendedAll$lambda$_57_1_apply)], -sci_LazyList$filter$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$filter$lambda$_64_0_apply)], -sci_LazyList$flatMap$lambda$_75_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$flatMap$lambda$_75_0_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_0_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$$org$neo4j$cypher$internal$frontend$phases$IsolateSubqueriesInMutatingPatterns$$doesSubqueryExpressionDependOnUpdateClause$lambda$_15_1_apply)], sci_LazyList$filterNot$lambda$_65_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$filterNot$lambda$_65_0_apply)], -sci_LazyList$prepended$lambda$_67_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$prepended$lambda$_67_0_apply)], -sci_LazyList$flatten$lambda$_76_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$flatten$lambda$_76_0_apply)], sci_LazyList$zipAll$lambda$_80_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAll$lambda$_80_0_apply)], sci_LazyList$zipAll$lambda$_80_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAll$lambda$_80_1_apply)], sci_LazyList$zipAll$lambda$_80_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAll$lambda$_80_2_apply)], sci_LazyList$zipAll$lambda$_80_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAll$lambda$_80_3_apply)], sci_LazyList$zipAll$lambda$_80_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAll$lambda$_80_4_apply)], +sci_LazyList$appendedAll$lambda$_57_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appendedAll$lambda$_57_0_apply)], +sci_LazyList$appendedAll$lambda$_57_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appendedAll$lambda$_57_1_apply)], +sci_LazyList$prepended$lambda$_67_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$prepended$lambda$_67_0_apply)], +sci_LazyList$appended$lambda$_58_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appended$lambda$_58_0_apply)], +sci_LazyList$appended$lambda$_58_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appended$lambda$_58_1_apply)], +sci_LazyList$appended$lambda$_58_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$appended$lambda$_58_2_apply)], +sci_LazyList$flatMap$lambda$_75_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$flatMap$lambda$_75_0_apply)], +sci_LazyList$filter$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$filter$lambda$_64_0_apply)], sci_LazyList$zip$lambda$_77_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zip$lambda$_77_0_apply)], oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_0_apply)], oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UnresolvedCall$$anonfun$clauseSpecificSemanticCheck$25$lambda$_46_1_apply)], -oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_157_0, "SingleQuery$$anonfun$checkHorizon$1$lambda$_157_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_157_0_apply)], -oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0, "ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0_apply)], -sci_LazyList$$scala$collection$immutable$LazyList$$dropImpl$lambda$_21_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$scala$collection$immutable$LazyList$$dropImpl$lambda$_21_0_apply)], -suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0, "TailCalls$TailRec$$anonfun$result$1$lambda$_10_0", 19, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0_apply)], -suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1, "TailCalls$TailRec$$anonfun$result$1$lambda$_10_1", 19, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1_apply)], -suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0, "TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0", 19, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0_apply)]]); -$rt_metadata([suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1, "TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1", 19, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1_apply)], -onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0, "TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0", 56, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0_apply)], -onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1_apply)], -suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0, "TailCalls$TailRec$$anonfun$map$1$lambda$_5_0", 19, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0_apply)], -onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0_apply)], -srj_JFunction0$mcZ$sp, 0, jl_Object, [s_Function0, ji_Serializable], 3, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply)], -onciap_Prettifier$$anonfun$asString$13$lambda$_85_0, 0, jl_Object, [srj_JFunction0$mcZ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply), "$apply$mcZ$sp", $rt_wrapFunction0(onciap_Prettifier$$anonfun$asString$13$lambda$_85_0_apply$mcZ$sp)], -onciap_Prettifier$$anonfun$asString$21$lambda$_94_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$anonfun$asString$21$lambda$_94_0_apply)], -onciap_Prettifier$$anonfun$asString$21$lambda$_94_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$anonfun$asString$21$lambda$_94_1_apply)], -oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_0_apply)], -oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_1_apply)], -oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_87_2_apply)], -oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_84_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_84_0_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_0_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_1_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_4_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_113_5_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$100$lambda$_165_0, "SemanticExpressionCheck$$$anonfun$check$100$lambda$_165_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$100$lambda$_165_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_81_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_81_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_74_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_143_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_143_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_200_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_200_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_64_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_93_1_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_61_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_61_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_89_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_89_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_87_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_87_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_87_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_87_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_79_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_79_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_72_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_72_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_165_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_165_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_84_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_84_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_135_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_135_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_70_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_70_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$96$lambda$_161_0, "SemanticExpressionCheck$$$anonfun$check$96$lambda$_161_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$96$lambda$_161_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_91_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_91_0_apply)], -oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_59_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_59_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$104$lambda$_169_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$104$lambda$_169_0_apply)], -oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_38_0_apply)], -oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_40_0_apply)], -oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_105_0_apply)], -oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextNodePattern$1$lambda$_36_0_apply)], -oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlCreateBuilder$$anonfun$exitFulltextRelPattern$1$lambda$_38_0_apply)], -oncius_StorableType$, 0, jl_Object, [], 4, 3, 0, oncius_StorableType$_$callClinit, 0, -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_1_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_2_apply)]]); -$rt_metadata([oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_3_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_4, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_4_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_5_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_6, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_6_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_7_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_8_apply)], -oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_9, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$75$lambda$_148_9_apply)], -oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$org$neo4j$cypher$internal$parser$CypherErrorVocabulary$$inStack$1$lambda$_17_0_apply)], +oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_CreateIndex$$anonfun$semanticCheck$1$lambda$_33_0_apply)], +sci_LazyList$$scala$collection$immutable$LazyList$$dropImpl$lambda$_21_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$scala$collection$immutable$LazyList$$dropImpl$lambda$_21_0_apply)]]); +$rt_metadata([oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0, "SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$anonfun$ifOkChain$1$lambda$_31_0_apply)], +oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_0_apply)], +oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_1_apply)], +oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_2_apply)], +oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ShowConstraintsClause$$anonfun$clauseSpecificSemanticCheck$32$lambda$_120_3_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_0_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_1_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_4_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$1$lambda$_118_5_apply)], +oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_89_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$6$lambda$_89_0_apply)], +oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$FilteringExpressions$$$anonfun$checkInnerPredicate$1$lambda$_12_0_apply)], +sc_MapView$Keys, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_MapView$Keys_iterator), "$knownSize", $rt_wrapFunction0(sc_MapView$Keys_knownSize)], +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$3$lambda$_176_0, "SemanticPatternCheck$$$anonfun$checkDynamicLabels$3$lambda$_176_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$3$lambda$_176_0_apply)], +oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_44_0_apply)], oncia_Clause$$anonfun$checkIfMixingLegacyVarLengthWithQPPs$1$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$checkIfMixingLegacyVarLengthWithQPPs$1$lambda$_34_0_apply)], oncia_Clause$$anonfun$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$1$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$checkIfMixingLegacyShortestWithPathSelectorOrMatchMode$1$lambda$_36_0_apply)], -oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_92_0_apply)], -oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0, "SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0_apply)], -oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$getDisplayName$1$lambda$_21_0_apply)], -oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$2$lambda$_85_0_apply)], -scc_JavaCollectionWrappers$JCollectionWrapper, 0, sc_AbstractIterable, [sc_StrictOptimizedIterableOps, ji_Serializable], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(scc_JavaCollectionWrappers$JCollectionWrapper_iterator)], -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0, "AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$1$lambda$_3_0_apply)], -sc_MapOps$$anon$3, "MapOps$$anon$3", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_MapOps$$anon$3_hasNext), "$next", $rt_wrapFunction0(sc_MapOps$$anon$3_next)], -oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_162_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_162_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$8$lambda$_176_1_apply)], +oncie_Expression$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0, "SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$$anonfun$wrappedCallProcedureCheck$1$lambda$_27_0_apply)], +oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0, "ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReadAdministrationCommand$$anonfun$semanticCheck$5$lambda$_31_0_apply)], +oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_162_0, "SingleQuery$$anonfun$checkHorizon$1$lambda$_162_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkHorizon$1$lambda$_162_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_1_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_4, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_5_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_6_apply)], +oncias_SemanticExpressionCheck$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$anonfun$2_applyOrElse)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$1$lambda$_234_7_apply)], +oncias_SemanticExpressionCheck$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$anonfun$1_applyOrElse)], +oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_113_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$expectType$7$lambda$_113_0_apply)], +oncia_Where$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_Where$_$callClinit, 0, sci_Stream$append$lambda$_49_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$append$lambda$_49_0_apply)], -sci_Stream$Cons, "Stream$Cons", 22, sci_Stream, [], 4, 3, 0, 0, ["$head", $rt_wrapFunction0(sci_Stream$Cons_head), "$isEmpty", $rt_wrapFunction0(sci_Stream$Cons_isEmpty), "$tailDefined", $rt_wrapFunction0(sci_Stream$Cons_tailDefined), "$force0", $rt_wrapFunction0(sci_Stream$Cons_force), "$tail", $rt_wrapFunction0(sci_Stream$Cons_tail0)], -onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_28_0_apply)], -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$4$lambda$_6_0_apply)], -oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$ambiguousExpressions$1$$anonfun$applyOrElse$7$lambda$_9_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_89_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_89_0_apply)], -sc_MapOps$$anon$2, "MapOps$$anon$2", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_MapOps$$anon$2_hasNext), "$next", $rt_wrapFunction0(sc_MapOps$$anon$2_next)], +sci_Stream$Cons, "Stream$Cons", 20, sci_Stream, [], 4, 3, 0, 0, ["$head", $rt_wrapFunction0(sci_Stream$Cons_head), "$isEmpty", $rt_wrapFunction0(sci_Stream$Cons_isEmpty), "$tailDefined", $rt_wrapFunction0(sci_Stream$Cons_tailDefined), "$force0", $rt_wrapFunction0(sci_Stream$Cons_force), "$tail", $rt_wrapFunction0(sci_Stream$Cons_tail0)], oncia_SingleRelTypeCheck$checkRelTypes$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleRelTypeCheck$checkRelTypes$lambda$_3_0_apply)], -oavra_SemanticContext$PrecedencePredicate, "SemanticContext$PrecedencePredicate", 85, oavra_SemanticContext, [jl_Comparable], 0, 3, 0, 0, ["$eval", $rt_wrapFunction2(oavra_SemanticContext$PrecedencePredicate_eval), "$evalPrecedence", $rt_wrapFunction2(oavra_SemanticContext$PrecedencePredicate_evalPrecedence), "$hashCode", $rt_wrapFunction0(oavra_SemanticContext$PrecedencePredicate_hashCode), "$equals", $rt_wrapFunction1(oavra_SemanticContext$PrecedencePredicate_equals), "$toString", $rt_wrapFunction0(oavra_SemanticContext$PrecedencePredicate_toString), -"$compareTo1", $rt_wrapFunction1(oavra_SemanticContext$PrecedencePredicate_compareTo)], -oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_172_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_172_0_apply)], -sc_IterableOps$groupMapReduce$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOps$groupMapReduce$lambda$_76_0_apply)], -sc_MapFactory$ToFactory, 0, jl_Object, [sc_Factory, ji_Serializable], 0, 3, 0, 0, ["$fromSpecific", $rt_wrapFunction1(sc_MapFactory$ToFactory_fromSpecific)], -oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_225_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_225_0_apply)], -oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_0_apply)], -oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ObfuscationMetadataCollection$$anonfun$1$$anonfun$applyOrElse$2$lambda$_5_1_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_0_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$1$lambda$_4_1_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_0_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$5$lambda$_8_1_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_0_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$8$lambda$_11_1_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_0_apply)], -oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureAndFunctionDeprecationWarnings$$anonfun$findDeprecations$1$$anonfun$applyOrElse$12$lambda$_15_1_apply)], -oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0, "RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0", 67, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_RemoveDuplicateUseClauses$UseClauseRewriter$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply)], -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_0_apply)], -oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncirr_mergeInPredicates$$anonfun$$nestedInanonfun$collectInPredicates$1$1$$anonfun$applyOrElse$9$lambda$_4_1_apply)], -sc_IterableOnceOps$foldRight$lambda$_36_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$foldRight$lambda$_36_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_116_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_116_0_apply)], -oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_0_apply)]]); -$rt_metadata([oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_223_1_apply)], -sc_View$Drop, "View$Drop", 21, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Drop_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Drop_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Drop_isEmpty)], -oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_StatementBuilder$$anonfun$exitNonEmptyNameList$1$lambda$_107_0_apply)], -onih_NameUtil, 0, jl_Object, [], 0, 3, 0, onih_NameUtil_$callClinit, 0, -oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_88_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_88_0_apply)], +onciap_DefaultExpressionStringifier$$anonfun$stringify$35$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$stringify$35$lambda$_62_0_apply)], +onciap_DefaultExpressionStringifier$$anonfun$stringify$40$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$stringify$40$lambda$_67_0_apply)], +oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_0_apply)], +oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$$anonfun$minimalRanges$1$lambda$_23_1_apply)], +onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_78_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$prettyScope$2$lambda$_78_0_apply)], +oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$semanticCheckInSubqueryExpressionContext$lambda$_17_0_apply)], +oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$checkValidDynamicLabels$1$1_applyOrElse)], +oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$containsMatchSpecificLabelExpression$lambda$_9_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_1_apply)], +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_2_apply)], +oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$checkTypes$3$lambda$_121_3_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_1_apply)]]); +$rt_metadata([oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$27$lambda$_97_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$76$lambda$_156_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$76$lambda$_156_0_apply)], +oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0_apply)], +sc_IterableOnceOps$max$lambda$_81_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$max$lambda$_81_0_apply)], +oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_MultiOperatorLabelExpression$flatten$lambda$_2_0_apply)], +oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$7$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedFunctionInvocation$$anonfun$semanticCheck$2$lambda$_32_0_apply)], oncifp_ResolvedCall$$anonfun$argumentCheck$2$lambda$_62_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_ResolvedCall$$anonfun$argumentCheck$2$lambda$_62_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_0_apply)], -oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_216_1_apply)], +oncius_TypeRange$, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, sci_LazyList$$scala$collection$immutable$LazyList$$collectImpl$lambda$_19_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$scala$collection$immutable$LazyList$$collectImpl$lambda$_19_0_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$$getDefinedSymbols$1$lambda$_34_0_apply)], +sc_View$DistinctBy, "View$DistinctBy", 19, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$DistinctBy_iterator), "$knownSize", $rt_wrapFunction0(sc_View$DistinctBy_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$DistinctBy_isEmpty)], sci_LazyList$reverseOnto$lambda$_96_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$reverseOnto$lambda$_96_0_apply)], sci_LazyList$$from$lambda$_32_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$from$lambda$_32_0_apply)], -sc_View$DistinctBy, "View$DistinctBy", 21, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$DistinctBy_iterator), "$knownSize", $rt_wrapFunction0(sc_View$DistinctBy_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$DistinctBy_isEmpty)], oncia_SetClause$$anonfun$13, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SetClause$$anonfun$13_applyOrElse)], oncia_SetClause$$anonfun$14, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SetClause$$anonfun$14_applyOrElse)], -oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_64_0_apply)], +oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_69_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetClause$checkIfMixingIsWithMultipleLabels$lambda$_69_0_apply)], oncia_Merge$$anonfun$12, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Merge$$anonfun$12_applyOrElse), "$isDefinedAt", $rt_wrapFunction1(oncia_Merge$$anonfun$12_isDefinedAt)], -oncia_NativeAuth$$anonfun$password$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_NativeAuth$$anonfun$password$1_applyOrElse)], -oncia_NativeAuth$$anonfun$changeRequired$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_NativeAuth$$anonfun$changeRequired$1_applyOrElse)], -oncias_SemanticCheck$$error$lambda$_3_0, "SemanticCheck$$error$lambda$_3_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$error$lambda$_3_0_apply)], -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_0_apply)], -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_1_apply)], -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_2_apply)], -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_3_apply)], -oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_52_4_apply)], -oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_54_0, "SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_54_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_54_0_apply)], -oncia_Match$$anonfun$5, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$5_applyOrElse)], -oncia_Match$uniqueHints$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$uniqueHints$lambda$_69_0_apply)], -oncia_Match$$anonfun$6, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$6_applyOrElse)], -oncia_Match$uniqueHints$lambda$_69_1, "Match$uniqueHints$lambda$_69_1", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$uniqueHints$lambda$_69_1_apply)], -oncia_Match$checkMatchMode$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$checkMatchMode$lambda$_71_0_apply)], -oncia_Match$checkMatchMode$lambda$_71_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$checkMatchMode$lambda$_71_1_apply)], -oncia_Match$checkMatchMode$lambda$_71_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$checkMatchMode$lambda$_71_2_apply)], -oncia_Match$checkMatchMode$lambda$_71_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$checkMatchMode$lambda$_71_3_apply)], -oncia_Match$checkHints$lambda$_74_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_Match$checkHints$lambda$_74_0_apply)], -oncia_Match$checkForCartesianProducts$lambda$_70_0, "Match$checkForCartesianProducts$lambda$_70_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$checkForCartesianProducts$lambda$_70_0_apply)], -oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_68_0_apply)], -oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_168_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_ExpressionBuilder$$anonfun$reportDeprecatedChars$1$lambda$_168_0_apply)], +oncias_SemanticCheck$$error$lambda$_3_0, "SemanticCheck$$error$lambda$_3_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$error$lambda$_3_0_apply)], +oncias_Scope$allSymbols$lambda$_16_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_Scope$allSymbols$lambda$_16_0_apply)], +oncia_Where$$checkExpression$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Where$$checkExpression$lambda$_5_0_apply)], +oncia_Where$$checkExpression$lambda$_5_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Where$$checkExpression$lambda$_5_1_apply)], oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_0_apply)], oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_1_apply)], oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$InTransactionsParameters$semanticCheck$lambda$_11_2_apply)], oncia_SubqueryCall$checkNoNestedCallInTransactions$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$checkNoNestedCallInTransactions$lambda$_21_0_apply)], -oncie_Expression$TreeAcc$inScope$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$TreeAcc$inScope$lambda$_4_0_apply)], -oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_0_apply)], -oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$org$neo4j$cypher$internal$frontend$phases$ProcedureWarnings$$usedDeprecatedFields$lambda$_13_1_apply)], -oncius_TypeSpec$$union$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$union$lambda$_7_0_apply)], -oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1_applyOrElse)], +oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0_apply)], +oncifp_SelfReferenceCheckWithinPatternPart$$createError$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$$createError$lambda$_5_0_apply)], sc_SeqOps$intersect$lambda$_118_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_SeqOps$intersect$lambda$_118_0_apply)], -oncia_UseGraph$checkWorkingGraph$lambda$_64_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UseGraph$checkWorkingGraph$lambda$_64_0_apply)], -oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0, "SemanticCheck$$fromFunctionWithContext$lambda$_10_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0_apply)], -sci_Stream$Empty$, "Stream$Empty$", 22, sci_Stream, [], 0, 3, 0, 0, ["$isEmpty", $rt_wrapFunction0(sci_Stream$Empty$_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Stream$Empty$_knownSize), "$tailDefined", $rt_wrapFunction0(sci_Stream$Empty$_tailDefined), "$force0", $rt_wrapFunction0(sci_Stream$Empty$_force), "$tail", $rt_wrapFunction0(sci_Stream$Empty$_tail), "$head", $rt_wrapFunction0(sci_Stream$Empty$_head)]]); -$rt_metadata([sci_Stream$$fromIterator$lambda$_21_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$fromIterator$lambda$_21_0_apply)], -oncia_UseGraph$checkExpressions$lambda$_66_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UseGraph$checkExpressions$lambda$_66_0_apply)], -oncias_SemanticAnalysisTooling$possibleTypes$lambda$_83_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$possibleTypes$lambda$_83_0_apply)], -oncias_SemanticAnalysisTooling$expectType$lambda$_25_0, "SemanticAnalysisTooling$expectType$lambda$_25_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_25_0_apply)], -oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_0_apply)], -oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_41_1_apply)], -onciu_RewritableJavascript$PROXY$9_278, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$9_279, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_278, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_279, 0, jl_Object, [], 0, 3, 0, 0, 0, -sci_LazyList$LazyBuilder, "LazyList$LazyBuilder", 22, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_LazyList$LazyBuilder_sizeHint), "$sizeHint0", $rt_wrapFunction2(sci_LazyList$LazyBuilder_sizeHint0), "$addAll0", $rt_wrapFunction1(sci_LazyList$LazyBuilder_addAll), "$addOne", $rt_wrapFunction1(sci_LazyList$LazyBuilder_addOne), "$result", $rt_wrapFunction0(sci_LazyList$LazyBuilder_result)], -oncius_TypeSpec$containsAny$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$containsAny$lambda$_11_0_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildTerminateTransaction$lambda$_14_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_1_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$applyOrElse$lambda$_0_2_apply)], -oncia_SingleQuery$checkImportingWith$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkImportingWith$lambda$_71_0_apply)], +oncie_Expression$$_clinit_$lambda$_0_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncie_Expression$$_clinit_$lambda$_0_0_apply)], +sci_Stream$Empty$, "Stream$Empty$", 20, sci_Stream, [], 0, 3, 0, 0, ["$isEmpty", $rt_wrapFunction0(sci_Stream$Empty$_isEmpty), "$knownSize", $rt_wrapFunction0(sci_Stream$Empty$_knownSize), "$tailDefined", $rt_wrapFunction0(sci_Stream$Empty$_tailDefined), "$force0", $rt_wrapFunction0(sci_Stream$Empty$_force), "$tail", $rt_wrapFunction0(sci_Stream$Empty$_tail), "$head", $rt_wrapFunction0(sci_Stream$Empty$_head)], +sci_Stream$$fromIterator$lambda$_21_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$fromIterator$lambda$_21_0_apply)], +onciu_RewritableJavascript$PROXY$9_269, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_270, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_271, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_272, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_273, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_274, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_275, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_269, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_270, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_271, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_272, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_273, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_274, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_275, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$containsSolutionsForRelationship$lambda$_13_0_apply)], +oncil_NodeLabels, 0, jl_Object, [], 3, 3, 0, 0, 0, +oncil_NodeLabels$SomeUnknownLabels$, "NodeLabels$SomeUnknownLabels$", 61, jl_Object, [oncil_NodeLabels, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncil_NodeLabels$SomeUnknownLabels$_productArity), "$productElement", $rt_wrapFunction1(oncil_NodeLabels$SomeUnknownLabels$_productElement), "$productIterator", $rt_wrapFunction0(oncil_NodeLabels$SomeUnknownLabels$_productIterator), "$hashCode", $rt_wrapFunction0(oncil_NodeLabels$SomeUnknownLabels$_hashCode), "$toString", $rt_wrapFunction0(oncil_NodeLabels$SomeUnknownLabels$_toString)], +oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0, "SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_0_apply)]]); +$rt_metadata([oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1, "SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_1_apply)], +oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2, "SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$2$applyOrElse$lambda$_0_2_apply)], +onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_1_apply)], +onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_2_apply)], +onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$query$lambda$_6_3_apply)], +sci_LazyList$LazyBuilder, "LazyList$LazyBuilder", 20, jl_Object, [scm_ReusableBuilder], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(sci_LazyList$LazyBuilder_sizeHint), "$sizeHint0", $rt_wrapFunction2(sci_LazyList$LazyBuilder_sizeHint0), "$addAll0", $rt_wrapFunction1(sci_LazyList$LazyBuilder_addAll), "$addOne", $rt_wrapFunction1(sci_LazyList$LazyBuilder_addOne), "$result", $rt_wrapFunction0(sci_LazyList$LazyBuilder_result)], +oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$isAssignableFrom$lambda$_33_0_apply)], +oncia_SingleQuery$checkImportingWith$lambda$_78_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkImportingWith$lambda$_78_0_apply)], +onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0, "Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0", 52, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$Folder$$anonfun$treeCollect$1$applyOrElse$lambda$_0_0_apply)], oncius_TypeSpec$intersect$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$intersect$lambda$_15_0_apply)], -juc_CopyOnWriteArrayList$ListIteratorImpl, 0, jl_Object, [ju_ListIterator], 0, 0, 0, 0, 0, -oncius_TypeSpec$coercions$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$coercions$lambda$_29_0_apply)], +sc_MapView$FilterKeys$iterator$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_MapView$FilterKeys$iterator$lambda$_0_0_apply)], +oncia_CreateSingleLabelPropertyIndex$, 0, jl_Object, [], 4, 3, 0, oncia_CreateSingleLabelPropertyIndex$_$callClinit, 0, +s_Product7, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, +s_Tuple7, "Tuple7", 15, jl_Object, [s_Product7, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_Tuple7_productArity), "$productElement", $rt_wrapFunction1(s_Tuple7_productElement), "$toString", $rt_wrapFunction0(s_Tuple7_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple7_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple7_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple7_hashCode), "$equals", $rt_wrapFunction1(s_Tuple7_equals)], +onciap_Prettifier$asString$lambda$_39_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_CreateLookupIndex$, 0, jl_Object, [], 4, 3, 0, oncia_CreateLookupIndex$_$callClinit, 0, +onciap_Prettifier$asString$lambda$_39_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_CreateFulltextIndex$, 0, jl_Object, [], 4, 3, 0, oncia_CreateFulltextIndex$_$callClinit, 0, +onciap_Prettifier$asString$lambda$_39_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_2_apply)], +onciap_Prettifier$asString$lambda$_39_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_3_apply)], +onciap_Prettifier$asString$lambda$_39_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_39_4_apply)], +onciap_Prettifier$asString$lambda$_39_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_CreateUser$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_CreateUser$_$callClinit, 0, +s_Product5, 0, jl_Object, [s_Product], 3, 3, 0, 0, 0, +s_Tuple5, "Tuple5", 15, jl_Object, [s_Product5, ji_Serializable], 4, 3, 0, 0, ["$productArity", $rt_wrapFunction0(s_Tuple5_productArity), "$productElement", $rt_wrapFunction1(s_Tuple5_productElement), "$toString", $rt_wrapFunction0(s_Tuple5_toString), "$productPrefix", $rt_wrapFunction0(s_Tuple5_productPrefix), "$productIterator", $rt_wrapFunction0(s_Tuple5_productIterator), "$hashCode", $rt_wrapFunction0(s_Tuple5_hashCode), "$equals", $rt_wrapFunction1(s_Tuple5_equals)], +onciap_Prettifier$asString$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_0_apply)], +onciap_Prettifier$asString$lambda$_40_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_1_apply)], +onciap_Prettifier$asString$lambda$_40_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_2_apply)], +onciap_Prettifier$asString$lambda$_40_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_3_apply)], +onciap_Prettifier$asString$lambda$_40_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_4_apply)], +onciap_Prettifier$asString$lambda$_40_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_5_apply)], +oncia_AlterUser$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_AlterUser$_$callClinit, 0, +onciap_Prettifier$asString$lambda$_40_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_6_apply)], +onciap_Prettifier$asString$lambda$_40_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_7_apply)], +onciap_Prettifier$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$1_applyOrElse)], +onciap_Prettifier$asString$lambda$_40_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_8_apply)], +onciap_Prettifier$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$2_applyOrElse)], +onciap_Prettifier$asString$lambda$_40_9, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_9_apply)], +onciap_Prettifier$asString$lambda$_40_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_10_apply)], +onciap_Prettifier$asString$lambda$_40_11, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_11_apply)], +onciap_Prettifier$asString$lambda$_40_12, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_12_apply)], +onciap_Prettifier$asString$lambda$_40_13, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_13_apply)], +onciap_Prettifier$asString$lambda$_40_14, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_14_apply)], +onciap_Prettifier$asString$lambda$_40_15, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_15_apply)], +onciap_Prettifier$asString$lambda$_40_16, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_16_apply)], +onciap_Prettifier$asString$lambda$_40_17, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_17_apply)], +onciap_Prettifier$asString$lambda$_40_18, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_18_apply)], +onciap_Prettifier$asString$lambda$_40_19, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_19_apply)], +onciap_Prettifier$asString$lambda$_40_20, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_20_apply)]]); +$rt_metadata([onciap_Prettifier$asString$lambda$_40_21, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_21_apply)], +onciap_Prettifier$asString$lambda$_40_22, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_22_apply)], +onciap_Prettifier$asString$lambda$_40_23, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_40_23_apply)], +onciap_Prettifier$asString$lambda$_40_24, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_40_24_apply)], sci_List$partition$lambda$_92_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_List$partition$lambda$_92_0_apply)], -oncie_RelationshipPattern$mapExpressions$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_RelationshipPattern$mapExpressions$lambda$_20_0_apply)], -oncie_RelationshipPattern$mapExpressions$lambda$_20_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_RelationshipPattern$mapExpressions$lambda$_20_1_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_0_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_1_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_5_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_2_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_5_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_3_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_5_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$apply$lambda$_5_4_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_5_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_5_5_apply)], +oncie_Expression$$anonfun$dependencies$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$dependencies$1_applyOrElse)], oncia_Clause$UsageContext$1, 0, jl_Object, [], 3, 3, 0, 0, 0, -oncia_Clause$Read$1$, "Clause$Read$1$", 36, jl_Object, [oncia_Clause$UsageContext$1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_Clause$Read$1$_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$Read$1$_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$Read$1$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$Read$1$_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$Read$1$_toString)], +oncia_Clause$Read$1$, "Clause$Read$1$", 35, jl_Object, [oncia_Clause$UsageContext$1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_Clause$Read$1$_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$Read$1$_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$Read$1$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$Read$1$_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$Read$1$_toString)], oncia_ProcedureResult$semanticCheck$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProcedureResult$semanticCheck$lambda$_14_0_apply)], oncia_ProcedureResult$semanticCheck$lambda$_14_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProcedureResult$semanticCheck$lambda$_14_1_apply)], -oncius_TypeSpec$unwrapLists$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$unwrapLists$lambda$_27_0_apply)], -oncia_ProcedureResultItem$semanticCheck$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProcedureResultItem$semanticCheck$lambda$_58_0_apply)], -oncia_ProcedureResultItem$semanticCheck$lambda$_58_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ProcedureResultItem$semanticCheck$lambda$_58_1_apply)], -oncia_ASTSlicingPhrase$, 0, jl_Object, [oncias_SemanticAnalysisTooling], 4, 3, 0, oncia_ASTSlicingPhrase$_$callClinit, ["$expectType4", $rt_wrapFunction4(oncia_ASTSlicingPhrase$_expectType), "$expectType$default$4", $rt_wrapFunction0(oncia_ASTSlicingPhrase$_expectType$default$4)], -oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_51_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_51_0_apply)], +oncia_ProcedureResultItem$semanticCheck$lambda$_63_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProcedureResultItem$semanticCheck$lambda$_63_0_apply)], +oncia_ProcedureResultItem$semanticCheck$lambda$_63_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ProcedureResultItem$semanticCheck$lambda$_63_1_apply)], +oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_56_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SubqueryCall$InTransactionsReportParameters$semanticCheck$lambda$_56_0_apply)], +oncia_SetPropertyItem$semanticCheck$lambda$_60_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetPropertyItem$semanticCheck$lambda$_60_0_apply)], +oncia_SetDynamicPropertyItem$semanticCheck$lambda$_60_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetDynamicPropertyItem$semanticCheck$lambda$_60_0_apply)], +oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_0_apply)], +oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_1_apply)], +oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_63_2_apply)], +oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_0_apply)], +oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_1_apply)], +oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_63_2_apply)], +oncia_SetLabelItem$semanticCheck$lambda$_14_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetLabelItem$semanticCheck$lambda$_14_0_apply)], oncia_RemoveDynamicPropertyItem$semanticCheck$lambda$_13_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_RemoveDynamicPropertyItem$semanticCheck$lambda$_13_0_apply)], -oncia_SetPropertyItem$semanticCheck$lambda$_55_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetPropertyItem$semanticCheck$lambda$_55_0_apply)], -oncia_SetDynamicPropertyItem$semanticCheck$lambda$_55_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetDynamicPropertyItem$semanticCheck$lambda$_55_0_apply)], -oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_0_apply)], -oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem$semanticCheck$lambda$_55_1_apply)], -oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_0_apply)], -oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem$semanticCheck$lambda$_55_1_apply)], oncia_RemoveLabelItem$semanticCheck$lambda$_14_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_RemoveLabelItem$semanticCheck$lambda$_14_0_apply)], -oncia_SetLabelItem$semanticCheck$lambda$_14_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetLabelItem$semanticCheck$lambda$_14_0_apply)], -oncia_UsingJoinHint$semanticCheck$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UsingJoinHint$semanticCheck$lambda$_54_0_apply)], -onciap_Prettifier$prettifyRemoveItems$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$prettifyRemoveItems$lambda$_34_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_CommandResultItem$semanticCheck$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandResultItem$semanticCheck$lambda$_54_0_apply)], -oncia_CommandResultItem$semanticCheck$lambda$_54_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_CommandResultItem$semanticCheck$lambda$_54_1_apply)], +oncia_UsingJoinHint$semanticCheck$lambda$_59_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UsingJoinHint$semanticCheck$lambda$_59_0_apply)], +oncia_ASTSlicingPhrase$, 0, jl_Object, [oncias_SemanticAnalysisTooling], 4, 3, 0, 0, ["$expectType0", function(var_1, var_2, var_3, var_4, var_5) { return oncia_ASTSlicingPhrase$_expectType(this, var_1, var_2, var_3, var_4, var_5); }, "$expectType$default$5", $rt_wrapFunction0(oncia_ASTSlicingPhrase$_expectType$default$5)], +onciap_Prettifier$prettifyRemoveItems$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$prettifyRemoveItems$lambda$_35_0_apply)], +oncia_CommandResultItem$semanticCheck$lambda$_59_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandResultItem$semanticCheck$lambda$_59_0_apply)], +oncia_CommandResultItem$semanticCheck$lambda$_59_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_CommandResultItem$semanticCheck$lambda$_59_1_apply)], oncia_UnresolvedCall$wrappedOptional$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$wrappedOptional$lambda$_20_0_apply)], oncia_UnresolvedCall$wrappedOptional$lambda$_20_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UnresolvedCall$wrappedOptional$lambda$_20_1_apply)], oncia_UnresolvedCall$wrappedOptional$lambda$_20_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$wrappedOptional$lambda$_20_2_apply)], -oncius_TypeSpec$wrapInList$lambda$_24_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$wrapInList$lambda$_24_0_apply)]]); -$rt_metadata([oncifp_SelfReferenceCheckWithinPatternPart$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckWithinPatternPart$$checkPattern$lambda$_8_0_apply)], -oncifp_SelfReferenceCheckAcrossPatternParts$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckAcrossPatternParts$org$neo4j$cypher$internal$frontend$phases$SelfReferenceCheckAcrossPatternParts$$checkPattern$lambda$_8_0_apply)], -oncius_TypeSpec$leastUpperBounds$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$leastUpperBounds$lambda$_23_0_apply)], -oncius_TypeSpec$without$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$without$lambda$_20_0_apply)], -sc_View$$newBuilder$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_View$$newBuilder$lambda$_20_0_apply)], -sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0_apply)], -oncius_TypeRange$contains$lambda$_7_0, 0, jl_Object, [srj_JFunction0$mcZ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply), "$apply$mcZ$sp", $rt_wrapFunction0(oncius_TypeRange$contains$lambda$_7_0_apply$mcZ$sp)], -oncius_TypeRange$contains$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$contains$lambda$_7_1_apply)], -oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_0_apply)], -oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$applyOrElse$lambda$_0_1_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_0_apply0)], -oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper$buildClauses$lambda$_15_1_apply0)], -oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_0_apply)], -oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_44_1_apply)], -oncifp_SelfReferenceCheckWithinPatternPart$findSelfReferenceVariablesWithinPatternParts$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$findSelfReferenceVariablesWithinPatternParts$lambda$_9_0_apply)], -oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0_apply)], +onciap_DefaultPatternStringifier$apply$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$apply$lambda$_0_0_apply)], +onm_MessageUtil, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncias_Symbol$toString$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_Symbol$toString$lambda$_14_0_apply)], +onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_0_apply)], +onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPathStepStringifier$relationshipPathStep$lambda$_1_1_apply)], +onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_DefaultPathStepStringifier$repeatPathStep$lambda$_2_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +sci_LazyList$flatten$lambda$_76_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$flatten$lambda$_76_0_apply)], +onciap_Prettifier$asString$lambda$_41_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_41_0_apply)], +onciap_Prettifier$asString$lambda$_41_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asString$lambda$_41_1_apply)], +onciap_Prettifier$asString$lambda$_41_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$asString$lambda$_41_2_apply)]]); +$rt_metadata([onciap_Prettifier$getStartOfCommand$1$lambda$_73_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$getStartOfCommand$1$lambda$_73_0_apply)], +onciap_Prettifier$getStartOfCommand$1$lambda$_73_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$getStartOfCommand$1$lambda$_73_1_apply)], +onciap_Prettifier$propertiesToString$1$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_Prettifier$showClausesAsString$1$lambda$_83_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$showClausesAsString$1$lambda$_83_0_apply)], +onciap_Prettifier$showClausesAsString$1$lambda$_83_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$showClausesAsString$1$lambda$_83_1_apply)], +onciap_Prettifier$showClausesAsString$1$lambda$_83_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$showClausesAsString$1$lambda$_83_2_apply)], +oncia_PropertyResource, 0, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_0_apply)], +oncia_LabelResource, 0, jl_Object, [oncia_ActionResource, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$prettifyGraphPrivilege$lambda$_7_1_apply)], +onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$prettifyLoadPrivilegeQualifier$1_applyOrElse0)], +onciap_Prettifier$asIndividualOptions$lambda$_44_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$asIndividualOptions$lambda$_44_0_apply)], +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_0_apply)], +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_1_apply)], +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_2_apply)], +onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultPatternStringifier$stringifyRange$lambda$_10_3_apply)], +oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticState$ScopeLocation$$symbol$extension$lambda$_10_0_apply)], +oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_0_apply)], +oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ASTSlicingPhrase$$checkExpressionIsStaticInt$lambda$_49_1_apply)], +oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$anonfun$2$applyOrElse$lambda$_0_0_apply)], +oncius_TypeSpec$contains$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$contains$lambda$_9_0_apply)], +oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncius_ClosedDynamicUnionType$covariant$lzycompute$lambda$_35_0_apply)], +suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0, "TailCalls$TailRec$$anonfun$result$1$lambda$_10_0", 17, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_0_apply)], +suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1, "TailCalls$TailRec$$anonfun$result$1$lambda$_10_1", 17, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$$anonfun$result$1$lambda$_10_1_apply)], +suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0, "TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0", 17, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_0_apply)], +suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1, "TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1", 17, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(suc_TailCalls$TailRec$$anonfun$flatMap$2$lambda$_7_1_apply)], +onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0, "TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0", 54, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_0_apply)], +onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciut_TailCallsUtil$$$anonfun$traverse$2$lambda$_6_1_apply)], +onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciut_TailCallsUtil$$$anonfun$map2$1$lambda$_8_0_apply)], +suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0, "TailCalls$TailRec$$anonfun$map$1$lambda$_5_0", 17, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(suc_TailCalls$TailRec$$anonfun$map$1$lambda$_5_0_apply)], +onciap_DefaultExpressionStringifier$$anonfun$stringify$33$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$stringify$33$lambda$_60_0_apply)], +onciap_DefaultExpressionStringifier$$anonfun$stringify$38$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_DefaultExpressionStringifier$$anonfun$stringify$38$lambda$_65_0_apply)], +oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_0_apply)], +oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_FunctionTypeSignature$$anonfun$getSignatureAsString$1$lambda$_61_2_apply)], sci_LazyList$LazyBuilder$DeferredState, 0, jl_Object, [], 4, 3, 0, 0, 0, sci_LazyList$LazyBuilder$clear$lambda$_9_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$clear$lambda$_9_0_apply)], sci_LazyList$$anonfun$mapImpl$1$lambda$_161_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$anonfun$mapImpl$1$lambda$_161_0_apply)], -sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0_apply)], sci_LazyList$$$anonfun$filterImpl$1$lambda$_48_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$filterImpl$1$lambda$_48_0_apply)], -sci_LazyList$$$anonfun$flatMapImpl$1$lambda$_52_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$1$lambda$_52_0_apply)], sci_LazyList$$$anonfun$continually$1$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$continually$1$lambda$_64_0_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_104_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_104_0_apply)], -sc_LinearSeqIterator, "LinearSeqIterator", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_LinearSeqIterator_hasNext), "$next", $rt_wrapFunction0(sc_LinearSeqIterator_next)], -oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_85_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_85_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_120_1_apply)], -oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0, "SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0_apply)], -oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0_apply)], -oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1, "Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1", 64, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1_apply)], -oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_98_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_98_0_apply)], -oncia_connectedComponents$, 0, jl_Object, [], 4, 3, 0, oncia_connectedComponents$_$callClinit, 0, -oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_121_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_121_0_apply)], -oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0, "Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0_apply)], -oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1, "Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1_apply)], +sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$anonfun$lazyAppendedAll$1$lambda$_147_0_apply)], +sci_LazyList$$$anonfun$flatMapImpl$1$lambda$_52_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$1$lambda$_52_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$7$lambda$_96_1_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_207_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$checkLabelExpression$3$lambda$_207_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$98$lambda$_168_0, "SemanticExpressionCheck$$$anonfun$check$98$lambda$_168_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$98$lambda$_168_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_85_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$20$lambda$_85_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_97_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$32$lambda$_97_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$1$lambda$_65_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_76_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$11$lambda$_76_0_apply)]]); +$rt_metadata([oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_87_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$22$lambda$_87_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_95_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$30$lambda$_95_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_78_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$13$lambda$_78_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_146_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$declareVariables$7$lambda$_146_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_80_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$15$lambda$_80_0_apply)], +oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_93_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$15$lambda$_93_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_67_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$3$lambda$_67_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_70_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$6$lambda$_70_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_90_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$check$3$lambda$_90_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_138_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$31$lambda$_138_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_90_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$25$lambda$_90_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_168_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$checkPredicate$3$lambda$_168_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$102$lambda$_172_0, "SemanticExpressionCheck$$$anonfun$check$102$lambda$_172_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$check$102$lambda$_172_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_92_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$$anonfun$check$5$lambda$_92_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_93_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticFunctionCheck$$$anonfun$semanticCheck$28$lambda$_93_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$106$lambda$_176_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$106$lambda$_176_0_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_109_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$3$lambda$_109_0_apply)], +sc_LinearSeqIterator, "LinearSeqIterator", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_LinearSeqIterator_hasNext), "$next", $rt_wrapFunction0(sc_LinearSeqIterator_next)], +oncius_StorableType$, 0, jl_Object, [], 4, 3, 0, oncius_StorableType$_$callClinit, 0, +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_1_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_2_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_3_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_4, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_4_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_5_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_6, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_6_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_7, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_7_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_8_apply)], +oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_9, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$check$77$lambda$_155_9_apply)], +oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_90_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$1$lambda$_90_0_apply)], +oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$1$lambda$_3_0_apply)], +sc_MapOps$$anon$3, "MapOps$$anon$3", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_MapOps$$anon$3_hasNext), "$next", $rt_wrapFunction0(sc_MapOps$$anon$3_next)], +oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_165_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$findRepeatedRelationships$2$lambda$_165_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$checkDynamicLabels$4$lambda$_175_1_apply)], +oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$3$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$1$$anonfun$applyOrElse$3$lambda$_5_0_apply)], +oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0, "Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_0_apply)], +oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1, "Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$$anonfun$1$$anonfun$applyOrElse$5$lambda$_8_1_apply)], +oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0_apply)], +sc_MapOps$$anon$2, "MapOps$$anon$2", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_MapOps$$anon$2_hasNext), "$next", $rt_wrapFunction0(sc_MapOps$$anon$2_next)], oncia_Union$checkImportingWith$lambda$_19_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Union$checkImportingWith$lambda$_19_0_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_97_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_97_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_97_0_apply)], -oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0_apply)], -oncia_SubqueryCall$semanticCheckContinuation$lambda$_18_0, "SubqueryCall$semanticCheckContinuation$lambda$_18_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$semanticCheckContinuation$lambda$_18_0_apply)], -oncia_ASTSlicingPhrase$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ASTSlicingPhrase$$anonfun$1_applyOrElse)], -oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_46_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_46_0_apply)], +onciap_Prettifier$optionsToString$lambda$_43_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$optionsToString$lambda$_43_0_apply)], +oncia_ProcedureAllQualifier, 0, jl_Object, [oncia_ProcedurePrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +oncia_FunctionAllQualifier, 0, jl_Object, [oncia_FunctionPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +oncia_SettingAllQualifier, 0, jl_Object, [oncia_SettingPrivilegeQualifier, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +oncia_SingleNamedGraphScope, 0, jl_Object, [oncia_GraphScope, s_Product, ji_Serializable], 4, 3, 0, 0, 0, +oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_102_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_102_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$6$lambda$_102_0_apply)], +oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_ExpressionWithComputedDependencies$scopeDependencies$lambda$_8_0_apply)]]); +$rt_metadata([oncia_SortItem$semanticCheck$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SortItem$semanticCheck$lambda$_2_0_apply)], oncia_LeafPlanHint$semanticCheck$lambda$_4_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_LeafPlanHint$semanticCheck$lambda$_4_0_apply)], -oncia_SortItem$semanticCheck$lambda$_2_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SortItem$semanticCheck$lambda$_2_0_apply)], +oncia_ASTSlicingPhrase$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ASTSlicingPhrase$$anonfun$1_applyOrElse)], +oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_51_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ASTSlicingPhrase$$doesNotTouchTheGraph$lambda$_51_0_apply)], sc_IterableOps$groupMap$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOps$groupMap$lambda$_74_0_apply)], sc_IterableOps$Result$1, 0, sr_AbstractFunction1, [], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOps$Result$1_apply)], -oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_ExpressionWithComputedDependencies$introducedVariables$lambda$_6_0_apply)], +oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_0_apply)], +oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_1_apply)], +oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UseGraph$$anonfun$clauseSpecificSemanticCheck$5$lambda$_92_2_apply)], +oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$semanticCheckContinuation$lambda$_31_0_apply)], +oncia_SubqueryCall$semanticCheckContinuation$lambda$_18_0, "SubqueryCall$semanticCheckContinuation$lambda$_18_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$semanticCheckContinuation$lambda$_18_0_apply)], +sc_IterableOps$groupMapReduce$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOps$groupMapReduce$lambda$_76_0_apply)], +sc_MapFactory$ToFactory, 0, jl_Object, [sc_Factory, ji_Serializable], 0, 3, 0, 0, ["$fromSpecific", $rt_wrapFunction1(sc_MapFactory$ToFactory_fromSpecific)], +oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_232_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$org$neo4j$cypher$internal$ast$semantics$SemanticExpressionCheck$$isShadowed$1$lambda$_232_0_apply)], oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_0_apply)], oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$$anonfun$checkAliasedReturnItems$1$lambda$_5_1_apply)], -oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_0_apply)]]); -$rt_metadata([oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_1_apply)], -oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$, "IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$", 67, jl_Object, [oncifp_IsolateSubqueriesInMutatingPatterns$State, s_Product, ji_Serializable], 0, 3, 0, 0, ["$foundCrossReference", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_foundCrossReference), "$foundSubquery", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_foundSubquery), "$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productArity), -"$productElement", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_toString)], -sc_IterableOps$grouped$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_IterableOps$grouped$lambda$_60_0_apply)], -oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_91_0_apply)], -oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$$anonfun$getYieldAllAndYieldItems$3$lambda$_84_0_apply)], -oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_0_apply)], -oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_1_apply)], -oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_83_2_apply)], -oncia_CommandClause$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$org$neo4j$cypher$internal$ast$CommandClause$$columnsAsMap$lambda$_7_0_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_1_apply)], +oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticAnalysisTooling$$anonfun$expectType$8$lambda$_112_0_apply)], +oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_0_apply)], +oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$toStream$3$lambda$_74_1_apply)], +oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_127_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$unionOfTypes$1$lambda$_127_0_apply)], +oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_Scope$$anonfun$allSymbols$1$lambda$_40_0_apply)], +oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_0_apply)], +oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_1_apply)], +oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Remove$$anonfun$checkIfMixingIsWithMultipleLabels$7$lambda$_88_2_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$3$lambda$_223_1_apply)], +oncia_CommandClause$columnsAsMap$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$columnsAsMap$lambda$_7_0_apply)], sci_LazyList$dropRightState$lambda$_88_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$dropRightState$lambda$_88_0_apply)], sci_LazyList$zipAllState$lambda$_81_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAllState$lambda$_81_0_apply)], sci_LazyList$zipAllState$lambda$_81_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAllState$lambda$_81_1_apply)], sci_LazyList$zipAllState$lambda$_81_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAllState$lambda$_81_2_apply)], sci_LazyList$zipAllState$lambda$_81_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipAllState$lambda$_81_3_apply)], sci_LazyList$zipState$lambda$_78_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$zipState$lambda$_78_0_apply)], -oncia_UseGraph$checkSingleGraphSelector$lambda$_67_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UseGraph$checkSingleGraphSelector$lambda$_67_0_apply)], -oncia_UseGraph$unsupported$lambda$_61_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UseGraph$unsupported$lambda$_61_0_apply)], -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1_applyOrElse)], -oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_50_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_50_0_apply)], +oncia_Match$$anonfun$5, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$5_applyOrElse)], +oncia_Match$uniqueHints$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$uniqueHints$lambda$_74_0_apply)], +oncia_Match$$anonfun$6, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$6_applyOrElse)], +oncia_Match$uniqueHints$lambda$_74_1, "Match$uniqueHints$lambda$_74_1", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$uniqueHints$lambda$_74_1_apply)], +oncia_Match$checkMatchMode$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$checkMatchMode$lambda$_76_0_apply)], +oncia_Match$checkMatchMode$lambda$_76_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$checkMatchMode$lambda$_76_1_apply)], +oncia_Match$checkMatchMode$lambda$_76_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$checkMatchMode$lambda$_76_2_apply)], +oncia_Match$checkMatchMode$lambda$_76_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$checkMatchMode$lambda$_76_3_apply)], +oncia_Match$checkHints$lambda$_79_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_Match$checkHints$lambda$_79_0_apply)], +oncia_Match$checkForCartesianProducts$lambda$_75_0, "Match$checkForCartesianProducts$lambda$_75_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$checkForCartesianProducts$lambda$_75_0_apply)], +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_0_apply)], +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_1_apply)], +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_2_apply)], +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_3_apply)], +oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkPointMap$lambda$_57_4_apply)], +oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$possibleTypes$1$lambda$_74_0_apply)]]); +$rt_metadata([oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_59_0, "SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_59_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticFunctionCheck$$checkToSpecifiedTypeOfArgument$lambda$_59_0_apply)], sc_LinearSeqIterator$LazyCell, 0, jl_Object, [], 4, 3, 0, 0, 0, sc_LinearSeqIterator$_init_$lambda$_4_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_LinearSeqIterator$_init_$lambda$_4_0_apply)], -oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_0_apply)], -oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_66_1_apply)], -oncia_connectedComponents$$apply$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$$apply$lambda$_3_0_apply)], +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0_apply)], +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1_apply)], +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findDynamicVariables$1$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findDynamicVariables$1$lambda$_8_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_15_1_apply)], s_Function$$chain$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_27_0_apply)], +onciap_Prettifier$$anonfun$stringify$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(onciap_Prettifier$$anonfun$stringify$1$1_applyOrElse)], +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_0_apply)], +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_2_apply)], +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_3_apply)], +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_4_apply)], +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_6_apply)], +onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$extractPropertyRuleExpression$1$lambda$_45_5_apply)], +onciap_Prettifier$$escapeNames$lambda$_18_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$escapeNames$lambda$_18_0_apply)], +oncia_CommandClause$$updateExpression$1$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateExpression$1$lambda$_8_0_apply)], +oncia_CommandClause$$updateExpression$1$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CommandClause$$updateExpression$1$lambda$_8_1_apply)], +oncia_CommandClause$$updateExpression$1$lambda$_8_2, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_CommandClause$$updateExpression$1$lambda$_8_2_apply)], sci_Stream$map$lambda$_62_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$map$lambda$_62_0_apply)], -oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncip_CypherErrorVocabulary$$anonfun$ruleDisplayName$1$lambda$_16_0_apply)], -oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_ProcedureWarnings$$$anonfun$usedDeprecatedFields$1$lambda$_26_0_apply)], -oncia_UseGraph$checkSingleTargetGraph$lambda$_68_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UseGraph$checkSingleTargetGraph$lambda$_68_0_apply)], -oncia_connectedComponents$$loop$1$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$$loop$1$lambda$_10_0_apply)], -oncia_connectedComponents$$loop$1$lambda$_10_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_connectedComponents$$loop$1$lambda$_10_1_apply)], -oncia_connectedComponents$$loop$1$lambda$_10_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$$loop$1$lambda$_10_2_apply)], -onciu_RewritableJavascript$PROXY$9_280, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciu_RewritableJavascript$PROXY$11_280, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncius_TypeSpec$$union$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$union$lambda$_7_0_apply)], +oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0, "SemanticCheck$$fromFunctionWithContext$lambda$_10_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$fromFunctionWithContext$lambda$_10_0_apply)], +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_0_apply)], +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_1_apply)], +onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$propertyInNodePrettifier$1$lambda$_42_2_apply)], +onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_0_apply)], +onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$propertyAndWherePrettifier$1$lambda$_38_1_apply)], +oncia_UseGraph$checkWorkingGraph$lambda$_69_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UseGraph$checkWorkingGraph$lambda$_69_0_apply)], +oncias_SemanticAnalysisTooling$possibleTypes$lambda$_93_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$possibleTypes$lambda$_93_0_apply)], +oncias_SemanticAnalysisTooling$expectType$lambda$_27_0, "SemanticAnalysisTooling$expectType$lambda$_27_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$expectType$lambda$_27_0_apply)], +oncia_UseGraph$checkExpressions$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UseGraph$checkExpressions$lambda$_71_0_apply)], +oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_0_apply)], +oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$leastUpperBoundsOfTypes$lambda$_43_1_apply)], +onciu_RewritableJavascript$PROXY$9_276, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_277, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$9_278, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_276, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_277, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciu_RewritableJavascript$PROXY$11_278, 0, jl_Object, [], 0, 3, 0, 0, 0, sci_Stream$partition$lambda$_56_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Stream$partition$lambda$_56_0_apply)], sci_Stream$partition$lambda$_56_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$partition$lambda$_56_1_apply)], sci_Stream$partition$lambda$_56_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Stream$partition$lambda$_56_2_apply)], sci_Stream$partition$lambda$_56_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$partition$lambda$_56_3_apply)], +oncius_TypeSpec$toStrings$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_40_0_apply)], +oavra_LexerIndexedCustomAction, "LexerIndexedCustomAction", 83, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerIndexedCustomAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerIndexedCustomAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerIndexedCustomAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerIndexedCustomAction_equals)], +sc_LinearSeqIterator$next$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_LinearSeqIterator$next$lambda$_1_0_apply)], +oncius_TypeSpec$containsAny$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$containsAny$lambda$_11_0_apply)], +sci_Stream$collectFirst$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Stream$collectFirst$lambda$_64_0_apply)]]); +$rt_metadata([oncius_TypeSpec$coercions$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$coercions$lambda$_29_0_apply)], +onciap_Prettifier$propertiesMapToString$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$propertiesMapToString$lambda$_33_0_apply)], +oncie_NodePattern$mapExpressions$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_NodePattern$mapExpressions$lambda$_12_0_apply)], +oncie_NodePattern$mapExpressions$lambda$_12_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_NodePattern$mapExpressions$lambda$_12_1_apply)], +oncie_QuantifiedPath$mapExpressions$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_QuantifiedPath$mapExpressions$lambda$_14_0_apply)], +oncie_PathConcatenation$mapExpressions$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_PathConcatenation$mapExpressions$lambda$_9_0_apply)], +oncius_TypeSpec$unwrapLists$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$unwrapLists$lambda$_27_0_apply)], +onciap_Prettifier$prettifySetItems$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$prettifySetItems$lambda$_34_0_apply)], +oncius_TypeSpec$wrapInList$lambda$_24_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$wrapInList$lambda$_24_0_apply)], +oncius_TypeSpec$leastUpperBounds$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$leastUpperBounds$lambda$_23_0_apply)], +oncius_TypeSpec$without$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$without$lambda$_20_0_apply)], +sc_View$$newBuilder$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_View$$newBuilder$lambda$_20_0_apply)], +sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Map$WithDefault$newSpecificBuilder$lambda$_13_0_apply)], +srj_JFunction0$mcZ$sp, 0, jl_Object, [s_Function0, ji_Serializable], 3, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply)], +oncius_TypeRange$contains$lambda$_7_0, 0, jl_Object, [srj_JFunction0$mcZ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply), "$apply$mcZ$sp", $rt_wrapFunction0(oncius_TypeRange$contains$lambda$_7_0_apply$mcZ$sp)], +oncius_TypeRange$contains$lambda$_7_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$contains$lambda$_7_1_apply)], +oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0_apply)], +oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1_apply)], +sci_LazyList$LazyBuilder$addOne$lambda$_11_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$addOne$lambda$_11_0_apply)], +sci_LazyList$LazyBuilder$result$lambda$_10_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$result$lambda$_10_0_apply)], +sci_LazyList$LazyBuilder$addAll$lambda$_12_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$addAll$lambda$_12_0_apply)], +sci_Stream$collect$lambda$_63_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Stream$collect$lambda$_63_0_apply)], +sci_Stream$flatMap$lambda$_65_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$flatMap$lambda$_65_0_apply)], +sci_Stream$flatMap$lambda$_65_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$flatMap$lambda$_65_1_apply)], +sci_Stream$flatMap$lambda$_65_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$flatMap$lambda$_65_2_apply)], +sci_Stream$flatMap$lambda$_65_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$flatMap$lambda$_65_3_apply)], +oncius_TypeSpec$toStrings$lambda$_41_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_41_0_apply)], +oncius_TypeSpec$toStrings$lambda$_41_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_41_1_apply)], +oncius_TypeSpec$toStrings$lambda$_41_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_41_2_apply)], +oncius_TypeSpec$toStrings$lambda$_41_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_41_3_apply)], +sc_StringView, 0, sc_AbstractIndexedSeqView, [s_Product], 4, 3, 0, 0, ["$length", $rt_wrapFunction0(sc_StringView_length), "$apply1", $rt_wrapFunction1(sc_StringView_apply)], +s_Function$$$anonfun$chain$1$lambda$_17_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(s_Function$$$anonfun$chain$1$lambda$_17_0_apply)], +sci_Stream$prepended$lambda$_61_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$prepended$lambda$_61_0_apply)], +sc_IterableOnceExtensionMethods$, 0, jl_Object, [], 4, 3, 0, sc_IterableOnceExtensionMethods$_$callClinit, 0, +sci_Stream$zip$lambda$_66_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$zip$lambda$_66_0_apply)], +sci_LazyList$take$lambda$_89_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$take$lambda$_89_0_apply)], +onu_CypherVersion, "CypherVersion", 27, jl_Enum, [], 12, 3, [0,0,0], 0, 0, +onu_UnicodeHelper, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0_apply)], +sc_View$DropRight, "View$DropRight", 19, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$DropRight_iterator), "$knownSize", $rt_wrapFunction0(sc_View$DropRight_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$DropRight_isEmpty)], +sci_Stream$$collectedTail$lambda$_30_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$collectedTail$lambda$_30_0_apply)], +sci_Stream$$anonfun$flatMap$1$lambda$_98_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$anonfun$flatMap$1$lambda$_98_0_apply)], +sci_Stream$$anonfun$flatMap$1$lambda$_98_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$anonfun$flatMap$1$lambda$_98_1_apply)], +oncius_TypeSpec$innerTypeRanges$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$innerTypeRanges$lambda$_49_0_apply)], +oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_94_0, "ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_94_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_94_0_apply)], +onciap_Prettifier$$anonfun$asString$13$lambda$_86_0, 0, jl_Object, [srj_JFunction0$mcZ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply), "$apply$mcZ$sp", $rt_wrapFunction0(onciap_Prettifier$$anonfun$asString$13$lambda$_86_0_apply$mcZ$sp)], +onciap_Prettifier$$anonfun$asString$21$lambda$_95_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$anonfun$asString$21$lambda$_95_0_apply)], +onciap_Prettifier$$anonfun$asString$21$lambda$_95_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$$anonfun$asString$21$lambda$_95_1_apply)], +oncia_SetExactPropertiesFromMapItem$$anonfun$semanticCheck$10$lambda$_83_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetExactPropertiesFromMapItem$$anonfun$semanticCheck$10$lambda$_83_0_apply)], +oncia_SetIncludingPropertiesFromMapItem$$anonfun$semanticCheck$14$lambda$_83_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SetIncludingPropertiesFromMapItem$$anonfun$semanticCheck$14$lambda$_83_0_apply)]]); +$rt_metadata([oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_73_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_73_0_apply)], +oncia_UnresolvedCall$$anonfun$wrappedOptional$1$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$$anonfun$wrappedOptional$1$lambda$_49_0_apply)], +oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$ScopeLocation$$$anonfun$symbol$extension$1$lambda$_22_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0, "ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1, "ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2, "ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3, "ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3_apply)], +sci_Stream$$anonfun$map$1$lambda$_95_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$anonfun$map$1$lambda$_95_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_0_apply)], +oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticAnalysisTooling$$anonfun$leastUpperBoundsOfTypes$2$lambda$_131_1_apply)], +oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0, "SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticCheck$$$anonfun$fromFunctionWithContext$1$lambda$_21_0_apply)], +sc_Iterator$$anon$8, "Iterator$$anon$8", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$8_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$8_next)], +sc_View$Appended, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Appended_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Appended_knownSize)], +sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0_apply)], +sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1_apply)], +sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0_apply)], +sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1_apply)], +sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2_apply)], +oncia_connectedComponents$, 0, jl_Object, [], 4, 3, 0, oncia_connectedComponents$_$callClinit, 0, +oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_126_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_Match$$anonfun$checkForCartesianProducts$1$lambda$_126_0_apply)], +oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_106_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncias_SemanticFunctionCheck$$$anonfun$checkToSpecifiedTypeOfArgument$1$lambda$_106_0_apply)], +onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$$org$neo4j$cypher$internal$ast$prettifier$Prettifier$$stringifyQualifiedName$1$lambda$_29_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_0_apply)], +oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticExpressionCheck$$$anonfun$checkForShadowedVariables$10$lambda$_230_1_apply)], +sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0_apply)], +sc_IterableOnceOps$Maximized, "IterableOnceOps$Maximized", 19, sr_AbstractFunction2, [], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$Maximized_apply0)], +sc_IterableOnceOps$minBy$lambda$_89_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, 0, +sc_IterableOnceOps$minBy$lambda$_89_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(sc_IterableOnceOps$minBy$lambda$_89_1_apply)], +oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$, "IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$", 65, jl_Object, [oncifp_IsolateSubqueriesInMutatingPatterns$State, s_Product, ji_Serializable], 0, 3, 0, 0, ["$foundCrossReference", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_foundCrossReference), "$foundSubquery", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_foundSubquery), "$productArity", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productArity), +"$productElement", $rt_wrapFunction1(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productElement), "$productIterator", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_productIterator), "$hashCode", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_hashCode), "$toString", $rt_wrapFunction0(oncifp_IsolateSubqueriesInMutatingPatterns$CrossReferenceFound$_toString)], +oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_101_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_101_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_101_0_apply)], +sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0_apply)], +sr_BooleanRef, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, +sc_SeqOps$$anonfun$intersect$1$lambda$_139_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_SeqOps$$anonfun$intersect$1$lambda$_139_0_apply)], +oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_0_apply)], +oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_1_apply)], +oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_89_2_apply)], +oncia_CommandClause$$$anonfun$updateAliasedVariablesFromYieldInOrderByAndWhere$4$lambda$_7_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, 0, +oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0_apply)], +oncia_NativeAuth$$anonfun$password$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_NativeAuth$$anonfun$password$1_applyOrElse)], +oncia_NativeAuth$$anonfun$changeRequired$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_NativeAuth$$anonfun$changeRequired$1_applyOrElse)], +scc_AsJavaExtensions$IterableHasAsJava, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1_applyOrElse)], +oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_55_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticPatternCheck$$checkMinimumNodeCount$lambda$_55_0_apply)], +oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_0_apply)], +oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoIllegalReferencesOut$lambda$_69_1_apply)], +oncia_UseGraph$checkSingleGraphSelector$lambda$_72_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UseGraph$checkSingleGraphSelector$lambda$_72_0_apply)], +one_SyntaxException, 0, one_Neo4jException, [], 0, 3, 0, 0, ["$cause0", $rt_wrapFunction0(ong_ErrorGqlStatusObject_cause)], +oncia_UseGraph$unsupported$lambda$_66_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UseGraph$unsupported$lambda$_66_0_apply)], +oncia_connectedComponents$$apply$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$$apply$lambda$_3_0_apply)], +oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_50_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_50_0_apply)]]); +$rt_metadata([onu_UnicodeHelper$isAllowedUnicode$lambda$_5_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, 0, +onciap_Prettifier$labelsString$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$labelsString$lambda$_36_0_apply)], +onciap_Prettifier$isLabelsString$lambda$_37_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$isLabelsString$lambda$_37_0_apply)], +oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0_apply)], +oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_17_0_apply)], +oncia_UseGraph$checkSingleTargetGraph$lambda$_73_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_UseGraph$checkSingleTargetGraph$lambda$_73_0_apply)], +oncia_GraphFunctionReference$isConstantForQuery$lambda$_56_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GraphFunctionReference$isConstantForQuery$lambda$_56_0_apply)], +jusi_GenericConcatStream, 0, jusi_SimpleStreamImpl, [], 0, 3, 0, 0, ["$next2", $rt_wrapFunction1(jusi_GenericConcatStream_next)], +jusi_SpecializedConcatStream, 0, jusi_SimpleStreamImpl, [], 0, 3, 0, 0, ["$next2", $rt_wrapFunction1(jusi_SpecializedConcatStream_next), "$estimateSize", $rt_wrapFunction0(jusi_SpecializedConcatStream_estimateSize)], +onciap_Prettifier$labelsOrderedSeq$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$labelsOrderedSeq$lambda$_38_0_apply)], +onciap_Prettifier$labelsOrderedSeq$lambda$_38_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$labelsOrderedSeq$lambda$_38_1_apply)], +onciap_Prettifier$labelsOrderedSeq$lambda$_38_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$labelsOrderedSeq$lambda$_38_2_apply)], +oncia_connectedComponents$$loop$1$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$$loop$1$lambda$_10_0_apply)], +oncia_connectedComponents$$loop$1$lambda$_10_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_connectedComponents$$loop$1$lambda$_10_1_apply)], +oncia_connectedComponents$$loop$1$lambda$_10_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$$loop$1$lambda$_10_2_apply)], +ong_ErrorMessageHolder, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0_apply)], +oncius_TypeSpec$covariant$lambda$_26_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$covariant$lambda$_26_0_apply)], +jusi_AnyMatchConsumer, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_AnyMatchConsumer_test)], +oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0_apply)], +sci_Stream$filter$lambda$_57_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$filter$lambda$_57_0_apply)], +sci_Stream$filterNot$lambda$_58_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$filterNot$lambda$_58_0_apply)], +oncie_RelationshipPattern$mapExpressions$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_RelationshipPattern$mapExpressions$lambda$_20_0_apply)], +oncie_RelationshipPattern$mapExpressions$lambda$_20_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_RelationshipPattern$mapExpressions$lambda$_20_1_apply)], +oncie_RelationshipPattern$mapExpressions$lambda$_20_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_RelationshipPattern$mapExpressions$lambda$_20_2_apply)], +oncia_Clause$ReadWrite$1$, "Clause$ReadWrite$1$", 35, jl_Object, [oncia_Clause$UsageContext$1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_Clause$ReadWrite$1$_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$ReadWrite$1$_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$ReadWrite$1$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$ReadWrite$1$_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$ReadWrite$1$_toString)], +oncia_Clause$Write$1$, "Clause$Write$1$", 35, jl_Object, [oncia_Clause$UsageContext$1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_Clause$Write$1$_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$Write$1$_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$Write$1$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$Write$1$_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$Write$1$_toString)], +onciap_Prettifier$IndentingQueryPrettifier$dispatch$lambda$_8_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncius_TypeSpec$wrapInCovariantList$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$wrapInCovariantList$lambda$_25_0_apply)], +sc_View$Single, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Single_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Single_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Single_isEmpty)], +oncie_Expression$$anonfun$replaceAllOccurrencesBy$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$replaceAllOccurrencesBy$1_applyOrElse)], +oncius_TypeRange$contains$lambda$_6_0, 0, jl_Object, [srj_JFunction0$mcZ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply), "$apply$mcZ$sp", $rt_wrapFunction0(oncius_TypeRange$contains$lambda$_6_0_apply$mcZ$sp)], +oncius_TypeRange$contains$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$contains$lambda$_6_1_apply)], +oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0_apply)], +oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1_apply)], +sc_View$DropRightIterator, "View$DropRightIterator", 19, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_View$DropRightIterator_knownSize), "$hasNext", $rt_wrapFunction0(sc_View$DropRightIterator_hasNext), "$next", $rt_wrapFunction0(sc_View$DropRightIterator_next)], +oncia_Clause$LegacyLabelExpression$2$, 0, sr_AbstractFunction1, [ji_Serializable], 0, 3, 0, 0, 0, +sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0_apply)], +oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_92_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_92_0_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_0_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_1_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_2_apply)], +oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_117_3_apply)], +oncia_Match$$anonfun$checkMatchMode$2$lambda$_129_0, "Match$$anonfun$checkMatchMode$2$lambda$_129_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$checkMatchMode$2$lambda$_129_0_apply)], +sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0_apply)], +sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1_apply)], +oncias_SemanticPatternCheck$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$1_applyOrElse)], +oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0_apply)], +oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1_apply)], +oncia_SetPropertyItems, 0, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, 0, 0, 0]); +$rt_metadata([onciap_Prettifier$$anonfun$prettifySetItems$1$lambda$_61_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncil_NodeLabels$KnownLabels, "NodeLabels$KnownLabels", 61, jl_Object, [oncil_NodeLabels, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_productPrefix), "$productArity", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_productArity), "$productElement", $rt_wrapFunction1(oncil_NodeLabels$KnownLabels_productElement), "$productIterator", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_productIterator), "$hashCode", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_hashCode), +"$toString", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_toString), "$equals", $rt_wrapFunction1(oncil_NodeLabels$KnownLabels_equals)], +oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_0, "Match$$anonfun$checkMatchMode$5$lambda$_133_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_0_apply)], +oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_1, "Match$$anonfun$checkMatchMode$5$lambda$_133_1", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$checkMatchMode$5$lambda$_133_1_apply)], +oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0_apply)], +s_PartialFunction$runWith$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_93_0, "ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_93_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_93_0_apply)], +oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$5$lambda$_16_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$5$lambda$_16_0_apply)], +oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$9$lambda$_20_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$9$lambda$_20_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0, "ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0, "ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0, "ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_100_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_100_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_100_0_apply)], +s_Product2$mcII$sp, 0, jl_Object, [s_Product2], 3, 3, 0, 0, 0, +s_Tuple2$mcII$sp, 0, s_Tuple2, [s_Product2$mcII$sp], 4, 3, 0, 0, ["$_2", $rt_wrapFunction0(s_Tuple2$mcII$sp__2), "$_1", $rt_wrapFunction0(s_Tuple2$mcII$sp__1)], +oncius_TypeRange$checkForAny$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0_apply)], +oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_125_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_125_0_apply)], +oncius_TypeSpec$$anonfun$unwrapLists$1$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$unwrapLists$1$lambda$_65_0_apply)], +oncius_TypeSpec$$anonfun$wrapInList$1$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$wrapInList$1$lambda$_60_0_apply)], +oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0_apply)], +oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1_applyOrElse), "$isDefinedAt", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1_isDefinedAt)], +oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1_applyOrElse)], +oncius_TypeRange$$anonfun$contains$4$lambda$_36_0, 0, jl_Object, [srj_JFunction0$mcZ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply), "$apply$mcZ$sp", $rt_wrapFunction0(oncius_TypeRange$$anonfun$contains$4$lambda$_36_0_apply$mcZ$sp)], +oncius_TypeRange$$anonfun$contains$4$lambda$_36_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$$anonfun$contains$4$lambda$_36_1_apply)], +sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0_apply)], +sci_LazyList$takeImpl$lambda$_90_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$takeImpl$lambda$_90_0_apply)], +oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_70_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_70_0_apply)], +oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_71_0_apply)], +oncia_connectedComponents$RichConnectedComponent, 0, jl_Object, [], 0, 3, 0, 0, 0, +oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0_apply)], +oncia_ReturnItems$declareVariables$lambda$_68_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ReturnItems$declareVariables$lambda$_68_0_apply)], +oncia_ReturnItems$declareVariables$lambda$_68_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$declareVariables$lambda$_68_1_apply)], +jl_StackOverflowError, 0, jl_VirtualMachineError, [], 0, 3, 0, 0, 0, +sci_Stream$$newBuilder$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Stream$$newBuilder$lambda$_23_0_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_0_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_1_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_2_apply)], @@ -366426,11 +294207,11 @@ onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_5, 0, jl_Object, onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_6_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_7_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_8, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_24_8_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0_apply)]]); -$rt_metadata([onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_1_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_2_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_3_apply)]]); +$rt_metadata([onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_4_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_5, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_5_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_6_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_7_apply)], @@ -366438,13 +294219,18 @@ onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_8, 0, jl_Object, onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_9_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_10_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_11, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_27_11_apply)], -scm_ArrayDeque$$anon$1, "ArrayDeque$$anon$1", 23, scm_GrowableBuilder, [], 4, 3, 0, 0, ["$sizeHint", $rt_wrapFunction1(scm_ArrayDeque$$anon$1_sizeHint)], -oncius_TypeSpec$covariant$lambda$_26_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$covariant$lambda$_26_0_apply)], -sc_LinearSeqIterator$next$lambda$_1_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_LinearSeqIterator$next$lambda$_1_0_apply)], -oncius_TypeSpec$wrapInCovariantList$lambda$_25_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$wrapInCovariantList$lambda$_25_0_apply)], -sci_Stream$collectFirst$lambda$_64_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Stream$collectFirst$lambda$_64_0_apply)], -oavra_OrderedATNConfigSet, "OrderedATNConfigSet", 85, oavra_ATNConfigSet, [], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -oavra_LexerATNConfig, "LexerATNConfig", 85, oavra_ATNConfig, [], 0, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(oavra_LexerATNConfig_hashCode), "$equals10", $rt_wrapFunction1(oavra_LexerATNConfig_equals)], +oncie_ExtractScope$scopeDependencies$lambda$_9_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_ExtractScope$scopeDependencies$lambda$_9_0_apply)], +oncie_ExtractScope$scopeDependencies$lambda$_9_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ExtractScope$scopeDependencies$lambda$_9_1_apply)], +oncie_ExtractScope$scopeDependencies$lambda$_9_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_ExtractScope$scopeDependencies$lambda$_9_2_apply)], +oncie_ExtractScope$scopeDependencies$lambda$_9_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ExtractScope$scopeDependencies$lambda$_9_3_apply)], +oncie_FilterScope$scopeDependencies$lambda$_8_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_FilterScope$scopeDependencies$lambda$_8_0_apply)], +oncie_FilterScope$scopeDependencies$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_FilterScope$scopeDependencies$lambda$_8_1_apply)], +oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0_apply)], +oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$replaceAllOccurrencesBy$1$applyOrElse$lambda$_0_0_apply)], +jusi_SimpleStreamIterator, 0, jl_Object, [ju_Iterator], 0, 3, 0, 0, 0, +ju_EmptyStackException, "EmptyStackException", 5, jl_RuntimeException, [], 0, 3, 0, 0, 0, +oncius_TypeRange$intersect$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$intersect$lambda$_12_0_apply)], +oncia_CatalogName$asCanonicalNameString$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CatalogName$asCanonicalNameString$lambda$_11_0_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_0_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_1_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_11_2_apply)], @@ -366474,10 +294260,10 @@ onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_33_2, 0, jl_Object, onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_0_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_1_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_34_2_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2_apply)]]); -$rt_metadata([onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_0_apply)]]); +$rt_metadata([onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_1_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_35_2_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_0_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_1_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_36_2_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_38_0_apply)], @@ -366492,291 +294278,182 @@ onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_18_1, 0, jl_Object, onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_0_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_45_1_apply)], onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_47_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_47_0_apply)], -oncie_Expression$$anonfun$dependencies$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$dependencies$1_applyOrElse)], -oncie_MapExpression$mapExpressions$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MapExpression$mapExpressions$lambda$_7_0_apply)], -onciap_Prettifier$prettifySetItems$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$prettifySetItems$lambda$_33_0_apply)], -oncius_TypeRange$contains$lambda$_6_0, 0, jl_Object, [srj_JFunction0$mcZ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply), "$apply$mcZ$sp", $rt_wrapFunction0(oncius_TypeRange$contains$lambda$_6_0_apply$mcZ$sp)], -oncius_TypeRange$contains$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$contains$lambda$_6_1_apply)], -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_0_apply)], -oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$checkMinimumNodeCount$1$applyOrElse$lambda$_0_1_apply)], -sci_LazyList$LazyBuilder$addOne$lambda$_11_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$addOne$lambda$_11_0_apply)], -sci_LazyList$LazyBuilder$result$lambda$_10_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$result$lambda$_10_0_apply)], -sci_LazyList$LazyBuilder$addAll$lambda$_12_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$addAll$lambda$_12_0_apply)], -sci_Stream$flatMap$lambda$_65_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$flatMap$lambda$_65_0_apply)], -sci_Stream$flatMap$lambda$_65_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$flatMap$lambda$_65_1_apply)], -sci_Stream$flatMap$lambda$_65_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$flatMap$lambda$_65_2_apply)], -sci_Stream$flatMap$lambda$_65_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$flatMap$lambda$_65_3_apply)], -s_Function$$$anonfun$chain$1$lambda$_17_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(s_Function$$$anonfun$chain$1$lambda$_17_0_apply)], -sci_Stream$collect$lambda$_63_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Stream$collect$lambda$_63_0_apply)], -sci_Stream$prepended$lambda$_61_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$prepended$lambda$_61_0_apply)], -sc_IterableOnceExtensionMethods$, 0, jl_Object, [], 4, 3, 0, 0, 0, -sci_Stream$zip$lambda$_66_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$zip$lambda$_66_0_apply)], -sci_LazyList$take$lambda$_89_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$take$lambda$_89_0_apply)], -oavra_SemanticContext$AND, "SemanticContext$AND", 85, oavra_SemanticContext$Operator, [], 0, 3, 0, 0, ["$equals", $rt_wrapFunction1(oavra_SemanticContext$AND_equals), "$hashCode", $rt_wrapFunction0(oavra_SemanticContext$AND_hashCode), "$eval", $rt_wrapFunction2(oavra_SemanticContext$AND_eval), "$evalPrecedence", $rt_wrapFunction2(oavra_SemanticContext$AND_evalPrecedence), "$toString", $rt_wrapFunction0(oavra_SemanticContext$AND_toString)], -oavra_OrderedATNConfigSet$LexerConfigHashSet, 0, oavra_ATNConfigSet$AbstractConfigHashSet, [], 0, 3, 0, 0, ["$forEach", $rt_wrapFunction1(jl_Iterable_forEach)], -onciap_Prettifier$IndentingQueryPrettifier$partialYieldAsString$lambda$_42_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$partialYieldAsString$lambda$_42_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0_apply)], -oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$Acc$1$sortLabelExpressionIntoPartitionIgnoringIs$lambda$_10_0_apply)], -sc_View$DropRight, "View$DropRight", 21, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$DropRight_iterator), "$knownSize", $rt_wrapFunction0(sc_View$DropRight_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$DropRight_isEmpty)], -sci_Stream$$anonfun$flatMap$1$lambda$_98_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$anonfun$flatMap$1$lambda$_98_0_apply)], -sci_Stream$$anonfun$flatMap$1$lambda$_98_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$anonfun$flatMap$1$lambda$_98_1_apply)], -oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_89_0, "ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_89_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$1$lambda$_89_0_apply)], -oncie_RelationshipPattern$$anonfun$mapExpressions$6$lambda$_42_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_RelationshipPattern$$anonfun$mapExpressions$6$lambda$_42_0_apply)], -oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_68_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_UsingJoinHint$$anonfun$semanticCheck$2$lambda$_68_0_apply)], -oncia_UnresolvedCall$$anonfun$wrappedOptional$1$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_UnresolvedCall$$anonfun$wrappedOptional$1$lambda$_49_0_apply)], -oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_87_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Foreach$$anonfun$clauseSpecificSemanticCheck$16$lambda$_87_0_apply)], -oncia_Match$$anonfun$checkMatchMode$2$lambda$_124_0, "Match$$anonfun$checkMatchMode$2$lambda$_124_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$checkMatchMode$2$lambda$_124_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0, "ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_0_apply)]]); -$rt_metadata([oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1, "ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_1_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2, "ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_2_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3, "ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$1$lambda$_55_3_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_0_apply0)], -oncias_SemanticPatternCheck$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$1_applyOrElse)], -sci_Stream$$anonfun$map$1$lambda$_95_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$anonfun$map$1$lambda$_95_0_apply)], -sci_Stream$$collectedTail$lambda$_30_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$collectedTail$lambda$_30_0_apply)], -sc_View$Appended, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Appended_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Appended_knownSize)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$2$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$2$lambda$_3_0_apply)], -sr_BooleanRef, 0, jl_Object, [ji_Serializable], 4, 3, 0, 0, 0, -sc_SeqOps$$anonfun$intersect$1$lambda$_139_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sc_SeqOps$$anonfun$intersect$1$lambda$_139_0_apply)], -sc_Iterator$$anon$8, "Iterator$$anon$8", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$hasNext", $rt_wrapFunction0(sc_Iterator$$anon$8_hasNext), "$next", $rt_wrapFunction0(sc_Iterator$$anon$8_next)], -sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_0_apply)], -sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_1_apply)], -sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$2$lambda$_51_2_apply)], -sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$anonfun$zipAllState$1$lambda$_168_0_apply)], -sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$anonfun$zipAllState$1$lambda$_168_1_apply)], -oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_0, "Match$$anonfun$checkMatchMode$5$lambda$_128_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_0_apply)], -oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_1, "Match$$anonfun$checkMatchMode$5$lambda$_128_1", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$checkMatchMode$5$lambda$_128_1_apply)], -oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_AmbiguousAggregation$$anonfun$notProjectedAggregationExpression$1$$anonfun$applyOrElse$10$lambda$_4_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$4$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$$anonfun$2$$anonfun$applyOrElse$4$lambda$_5_0_apply)], -oncil_NodeLabels$KnownLabels, "NodeLabels$KnownLabels", 63, jl_Object, [oncil_NodeLabels, s_Product, ji_Serializable], 4, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_productPrefix), "$productArity", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_productArity), "$productElement", $rt_wrapFunction1(oncil_NodeLabels$KnownLabels_productElement), "$productIterator", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_productIterator), "$hashCode", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_hashCode), -"$toString", $rt_wrapFunction0(oncil_NodeLabels$KnownLabels_toString), "$equals", $rt_wrapFunction1(oncil_NodeLabels$KnownLabels_equals)], -oncifp_VariableReferenceCheck$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncifp_VariableReferenceCheck$$anonfun$1_applyOrElse)], -sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$anonfun$lazyAppendedAll$1$lambda$_90_0_apply)], -oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$5$lambda$_16_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$5$lambda$_16_0_apply)], -oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$9$lambda$_20_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$$$anonfun$extractLabelExpressionRec$9$lambda$_20_0_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_96_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_96_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$7$lambda$_96_0_apply)], -sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_IterableOps$$anonfun$groupMap$1$lambda$_126_0_apply)], -oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_120_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$checkForCartesianProducts$2$lambda$_120_0_apply)], -oncius_TypeSpec$$anonfun$unwrapLists$1$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$unwrapLists$1$lambda$_65_0_apply)], -oncius_TypeSpec$$anonfun$wrapInList$1$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$wrapInList$1$lambda$_60_0_apply)], -oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_0_apply)], -oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_1_apply)], -oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SetClause$$anonfun$checkIfMixingIsWithMultipleLabels$2$lambda$_84_2_apply)], -oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1_applyOrElse), "$isDefinedAt", $rt_wrapFunction1(oncias_SemanticPatternCheck$$anonfun$$nestedInanonfun$ensureNoIllegalReferencesOut$1$1_isDefinedAt)], -oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1_applyOrElse)], -oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$leastUpperBounds$1$lambda$_58_0_apply)], -oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$intersect$1$lambda$_54_0_apply)], -oncius_TypeRange$$anonfun$contains$4$lambda$_36_0, 0, jl_Object, [srj_JFunction0$mcZ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcZ$sp_apply), "$apply$mcZ$sp", $rt_wrapFunction0(oncius_TypeRange$$anonfun$contains$4$lambda$_36_0_apply$mcZ$sp)], -oncius_TypeRange$$anonfun$contains$4$lambda$_36_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$$anonfun$contains$4$lambda$_36_1_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_00, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncipvaf_DdlShowBuilder$ShowWrapper$turnYieldToWith$lambda$_16_0_apply0)], -oncius_TypeSpec$innerTypeRanges$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$innerTypeRanges$lambda$_49_0_apply)], -oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoReferencesOutFromQuantifiedPath$lambda$_67_0_apply)], -oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_68_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoReferencesOutFromParenthesizedPath$lambda$_68_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_0_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$findRefVariables$1$lambda$_17_1_apply)], -oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_45_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ASTSlicingPhrase$$containsNoVariables$lambda$_45_0_apply)], -oncia_connectedComponents$RichConnectedComponent, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$containsAny$1$lambda$_52_0_apply)], -onciap_Prettifier$labelsString$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$labelsString$lambda$_35_0_apply)]]); -$rt_metadata([onciap_Prettifier$isLabelsString$lambda$_36_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$isLabelsString$lambda$_36_0_apply)], -oncifp_SelfReferenceCheckWithinPatternPart$createError$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_SelfReferenceCheckWithinPatternPart$createError$lambda$_10_0_apply)], -onciap_Prettifier$labelsOrderedSeq$lambda$_37_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$labelsOrderedSeq$lambda$_37_0_apply)], -onciap_Prettifier$labelsOrderedSeq$lambda$_37_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$labelsOrderedSeq$lambda$_37_1_apply)], -onciap_Prettifier$labelsOrderedSeq$lambda$_37_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$labelsOrderedSeq$lambda$_37_2_apply)], -jl_StackOverflowError, 0, jl_VirtualMachineError, [], 0, 3, 0, 0, 0, -oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$unwrapPotentialLists$lambda$_28_0_apply)], -sc_View$Single, 0, sc_AbstractView, [], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_View$Single_iterator), "$knownSize", $rt_wrapFunction0(sc_View$Single_knownSize), "$isEmpty", $rt_wrapFunction0(sc_View$Single_isEmpty)], -oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$RichConnectedComponent$connectedTo$lambda$_0_0_apply)], -oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Clause$LabelExpressionsPartitions$1$semanticCheck$lambda$_5_0_apply)], -sci_Stream$filter$lambda$_57_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$filter$lambda$_57_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0_apply)], -sci_Stream$filterNot$lambda$_58_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$filterNot$lambda$_58_0_apply)], -oncius_TypeSpec$toStrings$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_40_0_apply)], -oncia_CatalogName$asCanonicalNameString$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_CatalogName$asCanonicalNameString$lambda$_12_0_apply)], -oncia_Clause$ReadWrite$1$, "Clause$ReadWrite$1$", 36, jl_Object, [oncia_Clause$UsageContext$1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_Clause$ReadWrite$1$_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$ReadWrite$1$_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$ReadWrite$1$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$ReadWrite$1$_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$ReadWrite$1$_toString)], -oncia_Clause$Write$1$, "Clause$Write$1$", 36, jl_Object, [oncia_Clause$UsageContext$1, s_Product, ji_Serializable], 0, 3, 0, 0, ["$productArity", $rt_wrapFunction0(oncia_Clause$Write$1$_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$Write$1$_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$Write$1$_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$Write$1$_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$Write$1$_toString)], +oncie_Expression$$anonfun$occurrences$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Expression$$anonfun$occurrences$2_applyOrElse)], oncie_IntervalQuantifier$canBeEmpty$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_IntervalQuantifier$canBeEmpty$lambda$_12_0_apply)], oncie_IntervalQuantifier$canBeEmpty$lambda$_12_1, 0, jl_Object, [srj_JFunction0$mcJ$sp, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(srj_JFunction0$mcJ$sp_apply), "$apply$mcJ$sp", $rt_wrapFunction0(oncie_IntervalQuantifier$canBeEmpty$lambda$_12_1_apply$mcJ$sp)], -oncil_SolvableLabelExpression$not$lambda$_14_0, "SolvableLabelExpression$not$lambda$_14_0", 63, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$not$lambda$_14_0_apply)], -onm_MessageUtil, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0, "connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0_apply)], -oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_0_apply)], -oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$applyOrElse$lambda$_0_1_apply)], -oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_0_apply)], -oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_1_apply)], -oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$applyOrElse$lambda$_0_2_apply)], -oncius_TypeSpec$toStrings$lambda$_41_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_41_0_apply)], -oncius_TypeSpec$toStrings$lambda$_41_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_41_1_apply)], -oncius_TypeSpec$toStrings$lambda$_41_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_41_2_apply)], -oncius_TypeSpec$toStrings$lambda$_41_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$toStrings$lambda$_41_3_apply)], -oavra_LexerActionExecutor, 0, jl_Object, [], 0, 3, 0, 0, ["$hashCode", $rt_wrapFunction0(oavra_LexerActionExecutor_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerActionExecutor_equals)], -oncia_Clause$LegacyLabelExpression$2$, 0, sr_AbstractFunction1, [ji_Serializable], 0, 3, 0, 0, 0, -sc_View$DropRightIterator, "View$DropRightIterator", 21, sc_AbstractIterator, [], 4, 3, 0, 0, ["$knownSize", $rt_wrapFunction0(sc_View$DropRightIterator_knownSize), "$hasNext", $rt_wrapFunction0(sc_View$DropRightIterator_hasNext), "$next", $rt_wrapFunction0(sc_View$DropRightIterator_next)], -sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_Stream$$$anonfun$filteredTail$1$lambda$_39_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_115_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_115_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_117_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_117_0_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_0_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_1_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_2_apply)], -oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$noImplicitJoinsInQuantifiedPathPatterns$8$lambda$_112_3_apply)], -sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_0_apply)], -sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$$anonfun$addAll$1$lambda$_21_1_apply)], -oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_00, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncipvaf_DdlShowBuilder$ShowWrapper$$anonfun$turnYieldToWith$1$lambda$_38_0_apply)], -oncia_SetPropertyItems, 0, jl_Object, [oncia_SetProperty, ji_Serializable], 0, 3, 0, 0, 0, -onciap_Prettifier$$anonfun$prettifySetItems$1$lambda$_60_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -s_PartialFunction$runWith$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_88_0, "ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_88_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$2$lambda$_88_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0, "ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$2$lambda$_42_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_0_apply)]]); -$rt_metadata([oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$14$lambda$_54_1_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0, "ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$11$lambda$_50_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0, "ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$6$lambda$_47_0_apply)], -oncia_Match$$anonfun$8, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$8_applyOrElse)], -oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_95_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_95_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$8$lambda$_95_0_apply)], -s_Product2$mcII$sp, 0, jl_Object, [s_Product2], 3, 3, 0, 0, 0, -s_Tuple2$mcII$sp, 0, s_Tuple2, [s_Product2$mcII$sp], 4, 3, 0, 0, ["$_2", $rt_wrapFunction0(s_Tuple2$mcII$sp__2), "$_1", $rt_wrapFunction0(s_Tuple2$mcII$sp__1)], -oncius_TypeRange$checkForAny$lambda$_10_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$LazyBuilder$$anonfun$addOne$1$lambda$_19_0_apply)], -oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0_apply)], -oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_69_0, "SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_69_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_69_0_apply)], -sci_LazyList$takeImpl$lambda$_90_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$takeImpl$lambda$_90_0_apply)], -sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$scala$collection$immutable$LazyList$$stateFromIteratorConcatSuffix$lambda$_27_0_apply)], -oncia_Match$$anonfun$7, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$7_applyOrElse)], -oncia_Match$checkDifferentRelationships$lambda$_73_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$checkDifferentRelationships$lambda$_73_0_apply)], -oncia_Match$checkDifferentRelationships$lambda$_73_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$checkDifferentRelationships$lambda$_73_1_apply)], -oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_19_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncir_Deprecations$SemanticallyDeprecatedFeatures$org$neo4j$cypher$internal$rewriting$Deprecations$SemanticallyDeprecatedFeatures$$isDefinition$1$lambda$_19_0_apply)], -oncia_ReturnItems$declareVariables$lambda$_64_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ReturnItems$declareVariables$lambda$_64_0_apply)], -oncia_ReturnItems$declareVariables$lambda$_64_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$declareVariables$lambda$_64_1_apply)], -sci_Stream$$newBuilder$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(sci_Stream$$newBuilder$lambda$_23_0_apply)], -oncie_ExtractScope$scopeDependencies$lambda$_9_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_ExtractScope$scopeDependencies$lambda$_9_0_apply)], -oncie_ExtractScope$scopeDependencies$lambda$_9_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ExtractScope$scopeDependencies$lambda$_9_1_apply)], -oncie_ExtractScope$scopeDependencies$lambda$_9_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_ExtractScope$scopeDependencies$lambda$_9_2_apply)], -oncie_ExtractScope$scopeDependencies$lambda$_9_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ExtractScope$scopeDependencies$lambda$_9_3_apply)], -oncie_FilterScope$scopeDependencies$lambda$_8_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_FilterScope$scopeDependencies$lambda$_8_0_apply)], -oncie_FilterScope$scopeDependencies$lambda$_8_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_FilterScope$scopeDependencies$lambda$_8_1_apply)], -oncius_TypeRange$intersect$lambda$_12_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$intersect$lambda$_12_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3_apply)], -oncil_SolvableLabelExpression$and$lambda$_16_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$and$lambda$_16_0_apply)], -oncil_SolvableLabelExpression$or$lambda$_17_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$or$lambda$_17_0_apply)], -oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_0_apply)], -oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_72_1_apply)], -oncia_GraphFunctionReference$print$lambda$_48_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GraphFunctionReference$print$lambda$_48_0_apply)], -oncia_ScopeClauseSubqueryCall$importVariables$lambda$_73_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$importVariables$lambda$_73_0_apply)], -oncie_CaseExpression$scopeDependencies$lambda$_13_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_CaseExpression$scopeDependencies$lambda$_13_0_apply)], -oncie_CaseExpression$scopeDependencies$lambda$_13_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$scopeDependencies$lambda$_13_1_apply)], -oncie_CaseExpression$scopeDependencies$lambda$_13_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$scopeDependencies$lambda$_13_2_apply)], -oncie_CaseExpression$scopeDependencies$lambda$_13_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncie_CaseExpression$scopeDependencies$lambda$_13_3_apply)], -oncie_CaseExpression$scopeDependencies$lambda$_13_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$scopeDependencies$lambda$_13_4_apply)], -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0_apply)], -oncia_UsingStatefulShortestPathHint, 0, jl_Object, [oncia_Hint], 3, 3, 0, 0, 0, -oncia_UsingStatefulShortestPathAll, 0, jl_Object, [oncia_UsingStatefulShortestPathHint, ji_Serializable], 0, 3, 0, 0, 0, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1_apply)]]); -$rt_metadata([oncia_UsingStatefulShortestPathInto, 0, jl_Object, [oncia_UsingStatefulShortestPathHint, ji_Serializable], 0, 3, 0, 0, 0, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_0_apply)], -oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GraphFunctionReference$semanticallyEqual$lambda$_52_1_apply)], -oncil_SolvableLabelExpression$binary$lambda$_15_0, "SolvableLabelExpression$binary$lambda$_15_0", 63, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$binary$lambda$_15_0_apply)], -oncia_SingleQuery$checkIllegalImportWith$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkIllegalImportWith$lambda$_76_0_apply)], -oncia_SingleQuery$checkInitialGraphSelection$lambda$_75_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkInitialGraphSelection$lambda$_75_0_apply)], -oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_86_0, "SingleQuery$warnOnPotentiallyShadowVariables$lambda$_86_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_86_0_apply)], +oncie_MapExpression$mapExpressions$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MapExpression$mapExpressions$lambda$_7_0_apply)], +oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_0_apply)], +oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheckImportingWithSubQueryContext$lambda$_79_1_apply)], +oncil_SolvableLabelExpression$not$lambda$_14_0, "SolvableLabelExpression$not$lambda$_14_0", 61, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$not$lambda$_14_0_apply)], +oncia_ScopeClauseSubqueryCall$importVariables$lambda$_78_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$importVariables$lambda$_78_0_apply)], +oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0_apply)], +oncie_CaseExpression$isConstantForQuery$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$isConstantForQuery$lambda$_9_0_apply)], +oncie_CaseExpression$isConstantForQuery$lambda$_9_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$isConstantForQuery$lambda$_9_1_apply)], +oncie_CaseExpression$isConstantForQuery$lambda$_9_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$isConstantForQuery$lambda$_9_2_apply)], +oncie_ListLiteral$isConstantForQuery$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListLiteral$isConstantForQuery$lambda$_6_0_apply)], +oncie_MapProjection$isConstantForQuery$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MapProjection$isConstantForQuery$lambda$_5_0_apply)], +oncie_MapExpression$isConstantForQuery$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MapExpression$isConstantForQuery$lambda$_6_0_apply)], +oncie_ListComprehension$isConstantForQuery$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListComprehension$isConstantForQuery$lambda$_11_0_apply)], +oncie_ListComprehension$isConstantForQuery$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListComprehension$isConstantForQuery$lambda$_11_1_apply)], +oncie_ListSlice$isConstantForQuery$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListSlice$isConstantForQuery$lambda$_6_0_apply)], +oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0, "connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_connectedComponents$$anonfun$$nestedInanonfun$apply$1$1$applyOrElse$lambda$_0_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_1_apply)], +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_2_apply)], +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_3_apply)], +onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_4, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$yieldAsString$lambda$_42_4_apply)], +onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$namesAsString$lambda$_41_0_apply)], +oncil_LabelExpression$Disjunctions$mapExpressions$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Disjunctions$mapExpressions$lambda$_17_0_apply)], +oncia_SingleQuery$checkIllegalImportWith$lambda$_82_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkIllegalImportWith$lambda$_82_0_apply)], +oncia_SingleQuery$checkInitialGraphSelection$lambda$_81_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkInitialGraphSelection$lambda$_81_0_apply)], +oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_92_0, "SingleQuery$warnOnPotentiallyShadowVariables$lambda$_92_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$warnOnPotentiallyShadowVariables$lambda$_92_0_apply)], oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_0_apply)], oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Clause$LabelExpressionsPartitions$1$$anonfun$semanticCheck$3$lambda$_20_1_apply)], -oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_85_0, "ReturnItems$$anonfun$declareVariables$1$lambda$_85_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_85_0_apply)], -oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_87_0, "ReturnItems$$anonfun$declareVariables$3$lambda$_87_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_87_0_apply)], -oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$4$lambda$_3_0_apply)], -oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_0_apply)], -oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$3$lambda$_4_1_apply)], -oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$$anonfun$1$$anonfun$applyOrElse$6$lambda$_5_0_apply)], -oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$dependencies$1$$anonfun$applyOrElse$6$lambda$_6_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_0_apply)], -oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_1_apply)], -oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_157_2_apply)], -sc_SeqView$Map, "SeqView$Map", 21, sc_View$Map, [sc_SeqView], 0, 3, 0, 0, ["$map8", $rt_wrapFunction1(sc_SeqView$Map_map), "$appended2", $rt_wrapFunction1(sc_SeqView$Map_appended), "$prepended3", $rt_wrapFunction1(sc_SeqView$Map_prepended), "$drop4", $rt_wrapFunction1(sc_SeqView$Map_drop), "$stringPrefix", $rt_wrapFunction0(sc_SeqView$Map_stringPrefix), "$scala$collection$SeqOps$$super$concat", $rt_wrapFunction1(sc_SeqView$Map_scala$collection$SeqOps$$super$concat), "$scala$collection$SeqOps$$super$sizeCompare", -$rt_wrapFunction1(sc_SeqView$Map_scala$collection$SeqOps$$super$sizeCompare), "$$plus$colon", $rt_wrapFunction1(sc_SeqView$Map_$plus$colon), "$$colon$plus", $rt_wrapFunction1(sc_SeqView$Map_$colon$plus), "$appendedAll", $rt_wrapFunction1(sc_SeqView$Map_appendedAll), "$concat", $rt_wrapFunction1(sc_SeqView$Map_concat), "$size", $rt_wrapFunction0(sc_SeqView$Map_size), "$distinct0", $rt_wrapFunction0(sc_SeqView$Map_distinct), "$distinctBy", $rt_wrapFunction1(sc_SeqView$Map_distinctBy), "$sortBy", $rt_wrapFunction2(sc_SeqView$Map_sortBy), -"$lengthCompare", $rt_wrapFunction1(sc_SeqView$Map_lengthCompare), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Map_isEmpty), "$apply1", $rt_wrapFunction1(sc_SeqView$Map_apply), "$length", $rt_wrapFunction0(sc_SeqView$Map_length), "$sorted", $rt_wrapFunction1(sc_SeqView$Map_sorted), "$drop", $rt_wrapFunction1(sc_SeqView$Map_drop0), "$prepended", $rt_wrapFunction1(sc_SeqView$Map_prepended0), "$appended", $rt_wrapFunction1(sc_SeqView$Map_appended0), "$map", $rt_wrapFunction1(sc_SeqView$Map_map0)], -sc_SeqView$Sorted, 0, jl_Object, [sc_SeqView], 0, 3, 0, 0, ["$copyToArray", $rt_wrapFunction3(sc_SeqView$Sorted_copyToArray), "$apply1", $rt_wrapFunction1(sc_SeqView$Sorted_apply), "$length", $rt_wrapFunction0(sc_SeqView$Sorted_length), "$iterator0", $rt_wrapFunction0(sc_SeqView$Sorted_iterator), "$knownSize", $rt_wrapFunction0(sc_SeqView$Sorted_knownSize), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Sorted_isEmpty), "$map", $rt_wrapFunction1(sc_SeqView$Sorted_map)], -sc_IndexedSeqView$Map, "IndexedSeqView$Map", 21, sc_SeqView$Map, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Map_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Map_reverseIterator), "$stringPrefix", $rt_wrapFunction0(sc_IndexedSeqView$Map_stringPrefix), "$head", $rt_wrapFunction0(sc_IndexedSeqView$Map_head), "$headOption", $rt_wrapFunction0(sc_IndexedSeqView$Map_headOption), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Map_lengthCompare), "$knownSize", -$rt_wrapFunction0(sc_IndexedSeqView$Map_knownSize), "$map8", $rt_wrapFunction1(sc_IndexedSeqView$Map_map), "$map", $rt_wrapFunction1(sc_IndexedSeqView$Map_map0), "$drop4", $rt_wrapFunction1(sc_IndexedSeqView$Map_drop), "$drop", $rt_wrapFunction1(sc_IndexedSeqView$Map_drop0), "$prepended3", $rt_wrapFunction1(sc_IndexedSeqView$Map_prepended0), "$prepended", $rt_wrapFunction1(sc_IndexedSeqView$Map_prepended), "$appended", $rt_wrapFunction1(sc_IndexedSeqView$Map_appended0), "$appended2", $rt_wrapFunction1(sc_IndexedSeqView$Map_appended)], +oncie_RelationshipPattern$$anonfun$mapExpressions$7$lambda$_42_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_RelationshipPattern$$anonfun$mapExpressions$7$lambda$_42_0_apply)], sc_SeqView$Drop, 0, sc_View$Drop, [sc_SeqView], 0, 3, 0, 0, ["$scala$collection$SeqOps$$super$concat", $rt_wrapFunction1(sc_SeqView$Drop_scala$collection$SeqOps$$super$concat), "$scala$collection$SeqOps$$super$sizeCompare", $rt_wrapFunction1(sc_SeqView$Drop_scala$collection$SeqOps$$super$sizeCompare), "$$plus$colon", $rt_wrapFunction1(sc_SeqView$Drop_$plus$colon), "$$colon$plus", $rt_wrapFunction1(sc_SeqView$Drop_$colon$plus), "$appendedAll", $rt_wrapFunction1(sc_SeqView$Drop_appendedAll), "$concat", $rt_wrapFunction1(sc_SeqView$Drop_concat), "$size", $rt_wrapFunction0(sc_SeqView$Drop_size), "$distinct0", $rt_wrapFunction0(sc_SeqView$Drop_distinct), "$distinctBy", $rt_wrapFunction1(sc_SeqView$Drop_distinctBy), "$sortBy", $rt_wrapFunction2(sc_SeqView$Drop_sortBy), "$lengthCompare", $rt_wrapFunction1(sc_SeqView$Drop_lengthCompare), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Drop_isEmpty), "$length", $rt_wrapFunction0(sc_SeqView$Drop_length), "$apply1", $rt_wrapFunction1(sc_SeqView$Drop_apply), "$drop4", $rt_wrapFunction1(sc_SeqView$Drop_drop), "$sorted", -$rt_wrapFunction1(sc_SeqView$Drop_sorted), "$drop", $rt_wrapFunction1(sc_SeqView$Drop_drop0)], -sc_IndexedSeqView$Drop, "IndexedSeqView$Drop", 21, sc_SeqView$Drop, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Drop_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Drop_reverseIterator), "$stringPrefix", $rt_wrapFunction0(sc_IndexedSeqView$Drop_stringPrefix), "$head", $rt_wrapFunction0(sc_IndexedSeqView$Drop_head), "$headOption", $rt_wrapFunction0(sc_IndexedSeqView$Drop_headOption), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Drop_lengthCompare), +$rt_wrapFunction1(sc_SeqView$Drop_sorted), "$drop", $rt_wrapFunction1(sc_SeqView$Drop_drop0)]]); +$rt_metadata([sc_IndexedSeqView$Drop, "IndexedSeqView$Drop", 19, sc_SeqView$Drop, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Drop_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Drop_reverseIterator), "$stringPrefix", $rt_wrapFunction0(sc_IndexedSeqView$Drop_stringPrefix), "$head", $rt_wrapFunction0(sc_IndexedSeqView$Drop_head), "$headOption", $rt_wrapFunction0(sc_IndexedSeqView$Drop_headOption), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Drop_lengthCompare), "$knownSize", $rt_wrapFunction0(sc_IndexedSeqView$Drop_knownSize), "$map", $rt_wrapFunction1(sc_IndexedSeqView$Drop_map), "$drop4", $rt_wrapFunction1(sc_IndexedSeqView$Drop_drop0), "$drop", $rt_wrapFunction1(sc_IndexedSeqView$Drop_drop), "$prepended", $rt_wrapFunction1(sc_IndexedSeqView$Drop_prepended), "$appended", $rt_wrapFunction1(sc_IndexedSeqView$Drop_appended)], -oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_31_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_31_0_apply)], -onciuh_StringHelper$RichString$, 0, jl_Object, [], 0, 3, 0, 0, 0, -onciuh_StringHelper$, 0, jl_Object, [], 4, 3, 0, onciuh_StringHelper$_$callClinit, 0, -oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_134_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_134_0_apply)], +oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_89_0, "ReturnItems$$anonfun$declareVariables$1$lambda$_89_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$anonfun$declareVariables$1$lambda$_89_0_apply)], +oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_91_0, "ReturnItems$$anonfun$declareVariables$3$lambda$_91_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ReturnItems$$anonfun$declareVariables$3$lambda$_91_0_apply)], +oncia_Match$$anonfun$8, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$8_applyOrElse)], +oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_29_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$semanticCheckImportingWithSubQueryContext$lambda$_29_0_apply)], sci_LazyList$$$anonfun$flatMapImpl$3$lambda$_50_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sci_LazyList$$$anonfun$flatMapImpl$3$lambda$_50_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0, "ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0_apply)], +oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0_apply)], +oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0, "ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$3$lambda$_41_0_apply)], oncia_ProjectionClause$$anonfun$semanticCheckContinuation$12$lambda$_49_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$12$lambda$_49_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0, "ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0, "ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$7$lambda$_46_0_apply)], oncius_TypeSpec$$anonfun$unwrapPotentialLists$1$lambda$_67_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$unwrapPotentialLists$1$lambda$_67_0_apply)], +oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeSpec$$anonfun$wrapInCovariantList$1$lambda$_62_0_apply)], oncia_ProjectionClause$$anonfun$semanticCheckContinuation$16$lambda$_53_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$16$lambda$_53_0_apply)], oncia_Clause$SetExtractor$, 0, jl_Object, [], 0, 3, 0, 0, 0, -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_0_apply)], -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$findRefVariables$1$lambda$_6_1_apply)], -oncia_Match$$anonfun$9, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$9_applyOrElse)], -oncia_Match$$anonfun$10, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$10_applyOrElse)], -oncia_Match$$anonfun$11, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$11_applyOrElse)], -onciuh_StringHelper$RichString$$stripLinesAndMargins$extension$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_Match$getPropertyPredicates$lambda$_76_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$getPropertyPredicates$lambda$_76_0_apply)], -oncia_Match$getPropertyPredicates$lambda$_76_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$getPropertyPredicates$lambda$_76_1_apply)], -oncia_Match$$anonfun$getPropertyPredicates$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$getPropertyPredicates$3_applyOrElse)], -oncia_Match$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_Match$_$callClinit, 0, -oncie_Pattern$$anonfun$length$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Pattern$$anonfun$length$1_applyOrElse)], -oavra_LexerIndexedCustomAction, "LexerIndexedCustomAction", 85, jl_Object, [oavra_LexerAction], 4, 3, 0, 0, ["$isPositionDependent", $rt_wrapFunction0(oavra_LexerIndexedCustomAction_isPositionDependent), "$execute", $rt_wrapFunction1(oavra_LexerIndexedCustomAction_execute), "$hashCode", $rt_wrapFunction0(oavra_LexerIndexedCustomAction_hashCode), "$equals", $rt_wrapFunction1(oavra_LexerIndexedCustomAction_equals)], -sc_SeqView$Sorted$iterator$lambda$_183_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_SeqView$Sorted$iterator$lambda$_183_0_apply)]]); -$rt_metadata([oncius_ListType$greatestLowerBound$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ListType$greatestLowerBound$lambda$_38_0_apply)], +oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_72_0, "SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_72_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$ensureNoReferencesOutFromPatternElement$lambda$_72_0_apply)], +oncia_Match$checkDifferentRelationships$lambda$_78_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$checkDifferentRelationships$lambda$_78_0_apply)], +oncia_Match$checkDifferentRelationships$lambda$_78_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$checkDifferentRelationships$lambda$_78_1_apply)], +oncia_Match$$anonfun$7, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$7_applyOrElse)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_23_0_apply)], +oncius_ListType$greatestLowerBound$lambda$_38_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ListType$greatestLowerBound$lambda$_38_0_apply)], oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_4_apply)], oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_0_apply)], oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_1_apply)], oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_2_apply)], oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$greatestLowerBound$lambda$_40_3_apply)], -oncius_ClosedDynamicUnionType$leastUpperBound$lambda$_39_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncius_ClosedDynamicUnionType$leastUpperBound$lambda$_39_0_apply)], -oncia_Match$containsPropertyPredicates$lambda$_75_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$containsPropertyPredicates$lambda$_75_0_apply)], -oncia_Clause$LegacyLabelExpression$1, "Clause$LegacyLabelExpression$1", 36, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$LegacyLabelExpression$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_hashCode), +oncil_LabelExpression$Conjunctions$mapExpressions$lambda$_17_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_LabelExpression$Conjunctions$mapExpressions$lambda$_17_0_apply)], +oncie_Expression$isDeterministic$lambda$_23_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_Clause$LegacyLabelExpression$1, "Clause$LegacyLabelExpression$1", 35, jl_Object, [s_Product, ji_Serializable], 0, 3, 0, 0, ["$productPrefix", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_productPrefix), "$productArity", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_productArity), "$productElement", $rt_wrapFunction1(oncia_Clause$LegacyLabelExpression$1_productElement), "$productIterator", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_productIterator), "$hashCode", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_hashCode), "$toString", $rt_wrapFunction0(oncia_Clause$LegacyLabelExpression$1_toString), "$equals", $rt_wrapFunction1(oncia_Clause$LegacyLabelExpression$1_equals)], -srj_JFunction1$mcII$sp, 0, jl_Object, [s_Function1, ji_Serializable], 3, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcII$sp_apply)], -oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_1, "Pattern$$anonfun$length$1$applyOrElse$lambda$_0_1", 64, jl_Object, [srj_JFunction1$mcII$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcII$sp_apply), "$apply$mcII$sp", $rt_wrapFunction1(oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_1_apply$mcII$sp)], -oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0, "Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0", 64, jl_Object, [srj_JFunction1$mcII$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcII$sp_apply), "$apply$mcII$sp", $rt_wrapFunction1(oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0_apply$mcII$sp)], -oncia_Match$$anonfun$10$applyOrElse$lambda$_0_0, "Match$$anonfun$10$applyOrElse$lambda$_0_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$10$applyOrElse$lambda$_0_0_apply)], -oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0, "Match$$anonfun$9$applyOrElse$lambda$_0_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0_apply)], -oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_0_apply)], -oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_1_apply)], +oncil_SolvableLabelExpression$and$lambda$_16_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$and$lambda$_16_0_apply)], +oncil_SolvableLabelExpression$or$lambda$_17_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncil_SolvableLabelExpression$or$lambda$_17_0_apply)], +oncia_GraphFunctionReference$print$lambda$_53_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GraphFunctionReference$print$lambda$_53_0_apply)], +oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_0_apply)], +oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_GraphFunctionReference$semanticallyEqual$lambda$_57_1_apply)], +oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_0_apply)], +oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$occurrences$2$applyOrElse$lambda$_0_1_apply)], +jusi_SimpleStreamIterator$fetchIfNeeded$lambda$_4_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test0", $rt_wrapFunction1(jusi_SimpleStreamIterator$fetchIfNeeded$lambda$_4_0_test)], +oncil_SolvableLabelExpression$binary$lambda$_15_0, "SolvableLabelExpression$binary$lambda$_15_0", 61, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncil_SolvableLabelExpression$binary$lambda$_15_0_apply)], +oncia_Match$, 0, jl_Object, [ji_Serializable], 4, 3, 0, oncia_Match$_$callClinit, 0, oncius_TypeRange$$anonfun$intersect$1$lambda$_42_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeRange$$anonfun$intersect$1$lambda$_42_0_apply)], oncius_TypeRange$$anonfun$intersect$1$lambda$_42_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$$anonfun$intersect$1$lambda$_42_1_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_108_0, "ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_108_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_108_0_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_94_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_94_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_94_0_apply)], -oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_87_0, "ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_87_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_87_0_apply)], -oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_135_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_135_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_117_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$92$lambda$_117_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_119_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$$anonfun$asString$94$lambda$_119_0_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_113_0, "ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_113_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$importVariables$1$lambda$_113_0_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_99_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_99_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$9$lambda$_99_0_apply)], +oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_92_0, "ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_92_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$3$lambda$_92_0_apply)], +oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_140_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkIllegalImportWith$1$lambda$_140_0_apply)], oncia_SingleQuery$$anonfun$2, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$2_applyOrElse)], -oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_164_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_164_0_apply)], -sc_SeqView$Appended, "SeqView$Appended", 21, sc_View$Appended, [sc_SeqView], 0, 3, 0, 0, ["$map8", $rt_wrapFunction1(sc_SeqView$Appended_map), "$appended2", $rt_wrapFunction1(sc_SeqView$Appended_appended), "$prepended3", $rt_wrapFunction1(sc_SeqView$Appended_prepended), "$drop4", $rt_wrapFunction1(sc_SeqView$Appended_drop), "$stringPrefix", $rt_wrapFunction0(sc_SeqView$Appended_stringPrefix), "$scala$collection$SeqOps$$super$concat", $rt_wrapFunction1(sc_SeqView$Appended_scala$collection$SeqOps$$super$concat), +oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_169_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$warnOnPotentiallyShadowVariables$1$lambda$_169_0_apply)], +oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_0_apply)]]); +$rt_metadata([oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_1_apply)], +oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticPatternCheck$$$anonfun$ensureNoReferencesOutFromPatternElement$1$lambda$_160_2_apply)], +sc_SeqView$Sorted, 0, jl_Object, [sc_SeqView], 0, 3, 0, 0, ["$copyToArray", $rt_wrapFunction3(sc_SeqView$Sorted_copyToArray), "$apply1", $rt_wrapFunction1(sc_SeqView$Sorted_apply), "$length", $rt_wrapFunction0(sc_SeqView$Sorted_length), "$iterator0", $rt_wrapFunction0(sc_SeqView$Sorted_iterator), "$knownSize", $rt_wrapFunction0(sc_SeqView$Sorted_knownSize), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Sorted_isEmpty), "$map", $rt_wrapFunction1(sc_SeqView$Sorted_map)], +sc_SeqView$Map, "SeqView$Map", 19, sc_View$Map, [sc_SeqView], 0, 3, 0, 0, ["$map8", $rt_wrapFunction1(sc_SeqView$Map_map), "$appended2", $rt_wrapFunction1(sc_SeqView$Map_appended), "$prepended3", $rt_wrapFunction1(sc_SeqView$Map_prepended), "$drop4", $rt_wrapFunction1(sc_SeqView$Map_drop), "$stringPrefix", $rt_wrapFunction0(sc_SeqView$Map_stringPrefix), "$scala$collection$SeqOps$$super$concat", $rt_wrapFunction1(sc_SeqView$Map_scala$collection$SeqOps$$super$concat), "$scala$collection$SeqOps$$super$sizeCompare", +$rt_wrapFunction1(sc_SeqView$Map_scala$collection$SeqOps$$super$sizeCompare), "$$plus$colon", $rt_wrapFunction1(sc_SeqView$Map_$plus$colon), "$$colon$plus", $rt_wrapFunction1(sc_SeqView$Map_$colon$plus), "$appendedAll", $rt_wrapFunction1(sc_SeqView$Map_appendedAll), "$concat", $rt_wrapFunction1(sc_SeqView$Map_concat), "$size", $rt_wrapFunction0(sc_SeqView$Map_size), "$distinct0", $rt_wrapFunction0(sc_SeqView$Map_distinct), "$distinctBy", $rt_wrapFunction1(sc_SeqView$Map_distinctBy), "$sortBy", $rt_wrapFunction2(sc_SeqView$Map_sortBy), +"$lengthCompare", $rt_wrapFunction1(sc_SeqView$Map_lengthCompare), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Map_isEmpty), "$apply1", $rt_wrapFunction1(sc_SeqView$Map_apply), "$length", $rt_wrapFunction0(sc_SeqView$Map_length), "$sorted", $rt_wrapFunction1(sc_SeqView$Map_sorted), "$drop", $rt_wrapFunction1(sc_SeqView$Map_drop0), "$prepended", $rt_wrapFunction1(sc_SeqView$Map_prepended0), "$appended", $rt_wrapFunction1(sc_SeqView$Map_appended0), "$map", $rt_wrapFunction1(sc_SeqView$Map_map0)], +sc_IndexedSeqView$Map, "IndexedSeqView$Map", 19, sc_SeqView$Map, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Map_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Map_reverseIterator), "$stringPrefix", $rt_wrapFunction0(sc_IndexedSeqView$Map_stringPrefix), "$head", $rt_wrapFunction0(sc_IndexedSeqView$Map_head), "$headOption", $rt_wrapFunction0(sc_IndexedSeqView$Map_headOption), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Map_lengthCompare), "$knownSize", +$rt_wrapFunction0(sc_IndexedSeqView$Map_knownSize), "$map8", $rt_wrapFunction1(sc_IndexedSeqView$Map_map), "$map", $rt_wrapFunction1(sc_IndexedSeqView$Map_map0), "$drop4", $rt_wrapFunction1(sc_IndexedSeqView$Map_drop), "$drop", $rt_wrapFunction1(sc_IndexedSeqView$Map_drop0), "$prepended3", $rt_wrapFunction1(sc_IndexedSeqView$Map_prepended0), "$prepended", $rt_wrapFunction1(sc_IndexedSeqView$Map_prepended), "$appended", $rt_wrapFunction1(sc_IndexedSeqView$Map_appended0), "$appended2", $rt_wrapFunction1(sc_IndexedSeqView$Map_appended)], +oncius_CypherType$greatestLowerBound$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$greatestLowerBound$lambda$_35_0_apply)], +onciuh_StringHelper$RichString$, 0, jl_Object, [], 0, 3, 0, 0, 0, +onciuh_StringHelper$, 0, jl_Object, [], 4, 3, 0, onciuh_StringHelper$_$callClinit, 0, +oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_138_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$org$neo4j$cypher$internal$ast$Match$$getMissingPropertyError$1$lambda$_138_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0, "ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0, "ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0_apply)], +oncia_SingleQuery$importVariables$1$lambda$_116_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$importVariables$1$lambda$_116_0_apply)], +oncia_Match$$anonfun$9, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$9_applyOrElse)], +oncia_Match$$anonfun$10, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$10_applyOrElse)], +oncia_Match$$anonfun$11, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$11_applyOrElse)], +onciuh_StringHelper$RichString$$stripLinesAndMargins$extension$lambda$_1_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_Match$getPropertyPredicates$lambda$_81_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$getPropertyPredicates$lambda$_81_0_apply)], +oncia_Match$getPropertyPredicates$lambda$_81_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$getPropertyPredicates$lambda$_81_1_apply)], +oncia_Match$$anonfun$getPropertyPredicates$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$getPropertyPredicates$3_applyOrElse)], +oncia_SubqueryCall$returnToOuterScope$lambda$_14_0, "SubqueryCall$returnToOuterScope$lambda$_14_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$returnToOuterScope$lambda$_14_0_apply)], +oncie_Pattern$$anonfun$length$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncie_Pattern$$anonfun$length$1_applyOrElse)], +sc_SeqView$Sorted$iterator$lambda$_183_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(sc_SeqView$Sorted$iterator$lambda$_183_0_apply)], +onciu_Foldable$Folder$treeForall$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$Folder$treeForall$lambda$_6_0_apply)], +oncius_ClosedDynamicUnionType$leastUpperBound$lambda$_39_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncius_ClosedDynamicUnionType$leastUpperBound$lambda$_39_0_apply)], +oncia_Match$containsPropertyPredicates$lambda$_80_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$containsPropertyPredicates$lambda$_80_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_21_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_1_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_14_2_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_1_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_2_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_32_3_apply)], +oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_0_apply)], +oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_1, "ScopeClauseSubqueryCall$declareVariables$lambda$_77_1", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_77_1_apply)], +oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_80_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_80_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_80_1_apply)], +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_0_apply)], +oncia_UsingStatefulShortestPathHint, 0, jl_Object, [oncia_Hint], 3, 3, 0, 0, 0, +oncia_UsingStatefulShortestPathAll, 0, jl_Object, [oncia_UsingStatefulShortestPathHint, ji_Serializable], 0, 3, 0, 0, 0, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_1_apply)], +oncia_UsingStatefulShortestPathInto, 0, jl_Object, [oncia_UsingStatefulShortestPathHint, ji_Serializable], 0, 3, 0, 0, 0, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +onciap_Prettifier$IndentingQueryPrettifier$asString$lambda$_16_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, +oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0, "Match$$anonfun$9$applyOrElse$lambda$_0_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$9$applyOrElse$lambda$_0_0_apply)], +srj_JFunction1$mcII$sp, 0, jl_Object, [s_Function1, ji_Serializable], 3, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcII$sp_apply)], +oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_1, "Pattern$$anonfun$length$1$applyOrElse$lambda$_0_1", 62, jl_Object, [srj_JFunction1$mcII$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcII$sp_apply), "$apply$mcII$sp", $rt_wrapFunction1(oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_1_apply$mcII$sp)], +oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0, "Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0", 62, jl_Object, [srj_JFunction1$mcII$sp, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(srj_JFunction1$mcII$sp_apply), "$apply$mcII$sp", $rt_wrapFunction1(oncie_Pattern$$anonfun$length$1$applyOrElse$lambda$_0_0_apply$mcII$sp)], +oncia_Match$$anonfun$10$applyOrElse$lambda$_0_0, "Match$$anonfun$10$applyOrElse$lambda$_0_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$10$applyOrElse$lambda$_0_0_apply)], +oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_0_apply)]]); +$rt_metadata([oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$getPropertyPredicates$3$applyOrElse$lambda$_0_1_apply)], +oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_72_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_72_0_apply)], +oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_93_0, "SingleQuery$errorOnShadowedImportVariables$lambda$_93_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_93_0_apply)], +oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0_apply)], +oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0_apply)], +oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1_apply)], +oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_0_apply)], +oncias_SemanticCheckContext$, 0, jl_Object, [], 4, 3, 0, 0, 0, +oncia_SingleQuery$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$1_applyOrElse)], +oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_1_apply)], +oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_139_2_apply)], +oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_91_0, "ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_91_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_91_0_apply)], +oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_0_apply)], +oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1, "Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1", 62, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$$anonfun$occurrences$2$$anonfun$applyOrElse$8$lambda$_4_1_apply)], +sc_SeqView$Appended, "SeqView$Appended", 19, sc_View$Appended, [sc_SeqView], 0, 3, 0, 0, ["$map8", $rt_wrapFunction1(sc_SeqView$Appended_map), "$appended2", $rt_wrapFunction1(sc_SeqView$Appended_appended), "$prepended3", $rt_wrapFunction1(sc_SeqView$Appended_prepended), "$drop4", $rt_wrapFunction1(sc_SeqView$Appended_drop), "$stringPrefix", $rt_wrapFunction0(sc_SeqView$Appended_stringPrefix), "$scala$collection$SeqOps$$super$concat", $rt_wrapFunction1(sc_SeqView$Appended_scala$collection$SeqOps$$super$concat), "$scala$collection$SeqOps$$super$sizeCompare", $rt_wrapFunction1(sc_SeqView$Appended_scala$collection$SeqOps$$super$sizeCompare), "$$plus$colon", $rt_wrapFunction1(sc_SeqView$Appended_$plus$colon), "$$colon$plus", $rt_wrapFunction1(sc_SeqView$Appended_$colon$plus), "$appendedAll", $rt_wrapFunction1(sc_SeqView$Appended_appendedAll), "$concat", $rt_wrapFunction1(sc_SeqView$Appended_concat), "$size", $rt_wrapFunction0(sc_SeqView$Appended_size), "$distinct0", $rt_wrapFunction0(sc_SeqView$Appended_distinct), "$distinctBy", $rt_wrapFunction1(sc_SeqView$Appended_distinctBy), "$sortBy", $rt_wrapFunction2(sc_SeqView$Appended_sortBy), "$lengthCompare", $rt_wrapFunction1(sc_SeqView$Appended_lengthCompare), "$isEmpty", $rt_wrapFunction0(sc_SeqView$Appended_isEmpty), "$apply1", $rt_wrapFunction1(sc_SeqView$Appended_apply), "$length", $rt_wrapFunction0(sc_SeqView$Appended_length), "$sorted", $rt_wrapFunction1(sc_SeqView$Appended_sorted), "$drop", $rt_wrapFunction1(sc_SeqView$Appended_drop0), "$prepended", $rt_wrapFunction1(sc_SeqView$Appended_prepended0), "$appended", $rt_wrapFunction1(sc_SeqView$Appended_appended0), "$map", $rt_wrapFunction1(sc_SeqView$Appended_map0)], -sc_IndexedSeqView$Appended, "IndexedSeqView$Appended", 21, sc_SeqView$Appended, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Appended_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Appended_reverseIterator), "$stringPrefix", $rt_wrapFunction0(sc_IndexedSeqView$Appended_stringPrefix), "$head", $rt_wrapFunction0(sc_IndexedSeqView$Appended_head), "$headOption", $rt_wrapFunction0(sc_IndexedSeqView$Appended_headOption), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Appended_lengthCompare), +sc_IndexedSeqView$Appended, "IndexedSeqView$Appended", 19, sc_SeqView$Appended, [sc_IndexedSeqView], 0, 3, 0, 0, ["$iterator0", $rt_wrapFunction0(sc_IndexedSeqView$Appended_iterator), "$reverseIterator", $rt_wrapFunction0(sc_IndexedSeqView$Appended_reverseIterator), "$stringPrefix", $rt_wrapFunction0(sc_IndexedSeqView$Appended_stringPrefix), "$head", $rt_wrapFunction0(sc_IndexedSeqView$Appended_head), "$headOption", $rt_wrapFunction0(sc_IndexedSeqView$Appended_headOption), "$lengthCompare", $rt_wrapFunction1(sc_IndexedSeqView$Appended_lengthCompare), "$knownSize", $rt_wrapFunction0(sc_IndexedSeqView$Appended_knownSize), "$map8", $rt_wrapFunction1(sc_IndexedSeqView$Appended_map), "$map", $rt_wrapFunction1(sc_IndexedSeqView$Appended_map0), "$drop4", $rt_wrapFunction1(sc_IndexedSeqView$Appended_drop), "$drop", $rt_wrapFunction1(sc_IndexedSeqView$Appended_drop0), "$prepended3", $rt_wrapFunction1(sc_IndexedSeqView$Appended_prepended), "$prepended", $rt_wrapFunction1(sc_IndexedSeqView$Appended_prepended0), "$appended", $rt_wrapFunction1(sc_IndexedSeqView$Appended_appended), "$appended2", $rt_wrapFunction1(sc_IndexedSeqView$Appended_appended0)], sc_View$Prepended, 0, sc_AbstractView, [], 0, 3, 0, 0, 0, sc_SeqView$Prepended, 0, sc_View$Prepended, [sc_SeqView], 0, 3, 0, 0, 0, sc_IndexedSeqView$Prepended, 0, sc_SeqView$Prepended, [sc_IndexedSeqView], 0, 3, 0, 0, 0, -oncius_CypherType$greatestLowerBound$lambda$_35_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_CypherType$greatestLowerBound$lambda$_35_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0, "ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$4$lambda$_40_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0, "ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$8$lambda$_45_0_apply)], -oncia_SingleQuery$importVariables$1$lambda$_110_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$importVariables$1$lambda$_110_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_0_apply)], -onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_125_1_apply)], -oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncifp_VariableReferenceCheck$org$neo4j$cypher$internal$frontend$phases$VariableReferenceCheck$$isDefinition$1$lambda$_3_0_apply)], -oncia_SubqueryCall$returnToOuterScope$lambda$_14_0, "SubqueryCall$returnToOuterScope$lambda$_14_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SubqueryCall$returnToOuterScope$lambda$_14_0_apply)], +oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1_applyOrElse)], +oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_90_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_90_0_apply)], +oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0_apply)], +oncias_SemanticAnalysisTooling$withState$lambda$_5_0, "SemanticAnalysisTooling$withState$lambda$_5_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$withState$lambda$_5_0_apply)], +oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_167_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_167_0_apply)], +oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0_apply)], +oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1_applyOrElse)], +oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0_apply)], +oncias_SemanticCheckContext$$anon$2, 0, jl_Object, [oncias_SemanticCheckContext], 4, 3, 0, 0, ["$errorMessageProvider", $rt_wrapFunction0(oncias_SemanticCheckContext$$anon$2_errorMessageProvider), "$sessionDatabaseReference", $rt_wrapFunction0(oncias_SemanticCheckContext$$anon$2_sessionDatabaseReference)], +oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_28_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_Expression$org$neo4j$cypher$internal$expressions$Expression$$visitOccurrence$1$lambda$_28_0_apply)], +oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0_apply)], +oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0_apply)], oncia_Match$$anonfun$11$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$11$applyOrElse$lambda$_0_0_apply)], oncia_Match$$anonfun$11$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$11$applyOrElse$lambda$_0_1_apply)], oncia_Match$$anonfun$11$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$11$applyOrElse$lambda$_0_2_apply)], @@ -366784,102 +294461,65 @@ oncia_Match$$anonfun$11$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_ oncia_Match$$anonfun$11$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$11$applyOrElse$lambda$_0_3_apply)], oncias_SemanticState$symbolTypes$lambda$_33_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticState$symbolTypes$lambda$_33_0_apply)], oncias_SemanticState$symbolTypes$lambda$_33_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncias_SemanticState$symbolTypes$lambda$_33_1_apply)], -oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_0_apply)], -oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_1, "ScopeClauseSubqueryCall$declareVariables$lambda$_72_1", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$declareVariables$lambda$_72_1_apply)], -oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_74_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_74_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$semanticCheckInSubqueryContext$lambda$_74_1_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1_applyOrElse)], -oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_FunctionInvocation$isConstantForQuery$lambda$_21_0_apply)]]); -$rt_metadata([oncie_CaseExpression$isConstantForQuery$lambda$_14_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$isConstantForQuery$lambda$_14_0_apply)], -oncie_CaseExpression$isConstantForQuery$lambda$_14_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$isConstantForQuery$lambda$_14_1_apply)], -oncie_CaseExpression$isConstantForQuery$lambda$_14_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_CaseExpression$isConstantForQuery$lambda$_14_2_apply)], -oncie_ListLiteral$isConstantForQuery$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListLiteral$isConstantForQuery$lambda$_6_0_apply)], -oncie_MapExpression$isConstantForQuery$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MapExpression$isConstantForQuery$lambda$_6_0_apply)], -oncie_MapProjection$isConstantForQuery$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MapProjection$isConstantForQuery$lambda$_5_0_apply)], -oncie_ListSlice$isConstantForQuery$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListSlice$isConstantForQuery$lambda$_6_0_apply)], -oncie_ListComprehension$isConstantForQuery$lambda$_11_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListComprehension$isConstantForQuery$lambda$_11_0_apply)], -oncie_ListComprehension$isConstantForQuery$lambda$_11_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_ListComprehension$isConstantForQuery$lambda$_11_1_apply)], -oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_65_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$semanticCheckAbstractInScopeSubquery$lambda$_65_0_apply)], -oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_87_0, "SingleQuery$errorOnShadowedImportVariables$lambda$_87_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$errorOnShadowedImportVariables$lambda$_87_0_apply)], -oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$2$applyOrElse$lambda$_0_0_apply)], -oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncius_TypeRange$$anonfun$intersect$3$lambda$_41_0_apply)], -oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_TypeRange$$anonfun$intersect$3$lambda$_41_1_apply)], -oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_0_apply)], -oncias_SemanticCheckContext$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_SingleQuery$$anonfun$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$1_applyOrElse)], -oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_1_apply)], -oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_2, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$$anonfun$checkIllegalImportWith$9$lambda$_134_2_apply)], -oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_86_0, "ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_86_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ImportingWithSubqueryCall$$anonfun$checkSubquery$4$lambda$_86_0_apply)], +oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_74_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_74_0_apply)], +onciu_EmptyErrorMessageProvider$, 0, jl_Object, [onciu_ErrorMessageProvider], 4, 3, 0, 0, ["$createMultipleGraphReferencesError$default$2", $rt_wrapFunction0(onciu_EmptyErrorMessageProvider$_createMultipleGraphReferencesError$default$2), "$createMissingPropertyLabelHintError", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return onciu_EmptyErrorMessageProvider$_createMissingPropertyLabelHintError(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }, "$createUseClauseUnsupportedError", $rt_wrapFunction0(onciu_EmptyErrorMessageProvider$_createUseClauseUnsupportedError), +"$createDynamicGraphReferenceUnsupportedError", $rt_wrapFunction1(onciu_EmptyErrorMessageProvider$_createDynamicGraphReferenceUnsupportedError), "$createMultipleGraphReferencesError", $rt_wrapFunction2(onciu_EmptyErrorMessageProvider$_createMultipleGraphReferencesError)], +oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_98_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_98_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_98_0_apply)], oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_0_apply)], oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$18$lambda$_4_1_apply)], +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_0_apply)], +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_1_apply)], +oncia_SingleQuery$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$3_applyOrElse)], +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_177_2_apply)], oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_0_apply)], -oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_1_apply)], -oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$checkUsePositionInScopeSubquery$1_applyOrElse)], -oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_84_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkUsePositionInScopeSubquery$lambda$_84_0_apply)], -oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Union$semanticCheckInSubqueryContext$lambda$_27_0_apply)], -oncias_SemanticAnalysisTooling$withState$lambda$_5_0, "SemanticAnalysisTooling$withState$lambda$_5_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$withState$lambda$_5_0_apply)], -oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_162_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$1$lambda$_162_0_apply)], -oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ProjectionClause$$anonfun$semanticCheckContinuation$9$lambda$_44_0_apply)], -oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_ProjectionClause$$anonfun$warnOnAccessToRestrictedVariableInOrderByOrWhere$1_applyOrElse)], -oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ProjectionClause$warnOnAccessToRestrictedVariableInOrderByOrWhere$lambda$_35_0_apply)], -oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_IterablePredicateExpression$isConstantForQuery$lambda$_9_0_apply)], -oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_MultiOperatorExpression$isConstantForQuery$lambda$_4_0_apply)], -oncias_SemanticCheckContext$$anon$2, 0, jl_Object, [oncias_SemanticCheckContext], 4, 3, 0, 0, ["$errorMessageProvider", $rt_wrapFunction0(oncias_SemanticCheckContext$$anon$2_errorMessageProvider), "$sessionDatabaseReference", $rt_wrapFunction0(oncias_SemanticCheckContext$$anon$2_sessionDatabaseReference)], -oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncius_ClosedDynamicUnionType$$anonfun$greatestLowerBound$1$lambda$_65_0_apply)], -oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$1$applyOrElse$lambda$_0_0_apply)], +oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_Match$$anonfun$getPropertyPredicates$3$$anonfun$applyOrElse$21$lambda$_7_1_apply)]]); +$rt_metadata([oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_100_0, "SemanticAnalysisTooling$$anonfun$withState$1$lambda$_100_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_100_0_apply)], +oncia_SingleQuery$checkReturnItems$1$lambda$_125_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkReturnItems$1$lambda$_125_0_apply)], +oncia_SingleQuery$checkReturnItems$1$lambda$_125_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$checkReturnItems$1$lambda$_125_1_apply)], +oncia_SingleQuery$checkDistinct$1$lambda$_127_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$checkDistinct$1$lambda$_127_0_apply)], +oncia_SingleQuery$checkWhere$1$lambda$_131_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkWhere$1$lambda$_131_0_apply)], +oncia_SingleQuery$checkOrderBy$1$lambda$_129_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkOrderBy$1$lambda$_129_0_apply)], +oncia_SingleQuery$checkSkip$1$lambda$_133_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkSkip$1$lambda$_133_0_apply)], +oncia_SingleQuery$checkLimit$1$lambda$_135_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkLimit$1$lambda$_135_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_0_apply)], +onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(onciap_Prettifier$IndentingQueryPrettifier$item$1$lambda$_127_1_apply)], oncie_PathConcatenation$isBounded$lambda$_7_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncie_PathConcatenation$isBounded$lambda$_7_0_apply)], -oncie_Expression$isDeterministic$lambda$_22_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_69_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ImportingWithSubqueryCall$declareOutputVariablesInOuterScope$lambda$_69_0_apply)], -oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_81_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_81_0_apply)], -oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_77_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_77_0_apply)], -onciu_EmptyErrorMessageProvider$, 0, jl_Object, [onciu_ErrorMessageProvider], 4, 3, 0, 0, ["$createMultipleGraphReferencesError$default$2", $rt_wrapFunction0(onciu_EmptyErrorMessageProvider$_createMultipleGraphReferencesError$default$2), "$createMissingPropertyLabelHintError", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return onciu_EmptyErrorMessageProvider$_createMissingPropertyLabelHintError(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }, "$createUseClauseUnsupportedError", $rt_wrapFunction0(onciu_EmptyErrorMessageProvider$_createUseClauseUnsupportedError), -"$createDynamicGraphReferenceUnsupportedError", $rt_wrapFunction1(onciu_EmptyErrorMessageProvider$_createDynamicGraphReferenceUnsupportedError), "$createMultipleGraphReferencesError", $rt_wrapFunction2(onciu_EmptyErrorMessageProvider$_createMultipleGraphReferencesError)], +oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_82_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPropertyMap$lambda$_82_0_apply)], +oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_86_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$org$neo4j$cypher$internal$ast$Match$$getLabelsFromLabelExpression$lambda$_86_0_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_0_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_2_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_1_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_3, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_3_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_4, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_4_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_5, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_5_apply)], -oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6_apply)]]); -$rt_metadata([oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7_apply)], +oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_6_apply)], +oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_7_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_8, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_8_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_9, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_9_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_10, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_10_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_11, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_11_apply)], oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_12, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$applyOrElse$lambda$_0_12_apply)], +oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0_apply)], oncia_Match$$anonfun$11$$anonfun$applyOrElse$40$lambda$_3_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, oncia_Match$$anonfun$11$$anonfun$applyOrElse$42$lambda$_5_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, 0, -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_0_apply)], -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_1, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_1_apply)], -oncia_SingleQuery$$anonfun$3, 0, sr_AbstractPartialFunction, [ji_Serializable], 4, 3, 0, 0, ["$applyOrElse", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$3_applyOrElse)], -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_2, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$1$lambda$_172_2_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_93_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_93_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$10$lambda$_93_0_apply)], -oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_90_0, "SemanticAnalysisTooling$$anonfun$withState$1$lambda$_90_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$withState$1$lambda$_90_0_apply)], -oncia_SingleQuery$checkReturnItems$1$lambda$_120_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkReturnItems$1$lambda$_120_0_apply)], -oncia_SingleQuery$checkReturnItems$1$lambda$_120_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$checkReturnItems$1$lambda$_120_1_apply)], -oncia_SingleQuery$checkDistinct$1$lambda$_122_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_SingleQuery$checkDistinct$1$lambda$_122_0_apply)], -oncia_SingleQuery$checkWhere$1$lambda$_126_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkWhere$1$lambda$_126_0_apply)], -oncia_SingleQuery$checkOrderBy$1$lambda$_124_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkOrderBy$1$lambda$_124_0_apply)], -oncia_SingleQuery$checkSkip$1$lambda$_128_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkSkip$1$lambda$_128_0_apply)], -oncia_SingleQuery$checkLimit$1$lambda$_130_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$checkLimit$1$lambda$_130_0_apply)], -onciu_Foldable$Folder$treeForall$lambda$_6_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(onciu_Foldable$Folder$treeForall$lambda$_6_0_apply)], -oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$$anonfun$3$applyOrElse$lambda$_0_0_apply)], -oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_92_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_92_0", 36, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_92_0_apply)], -oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$declareVariable$lambda$_59_0_apply)], -oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_167_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_167_0_apply)], -oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_0_apply)], -oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_170_1_apply)], -oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_89_0, "SemanticAnalysisTooling$$anonfun$withState$2$lambda$_89_0", 41, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_89_0_apply)], -oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_0_apply)], -oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_71_1_apply)], -oncias_SemanticAnalysisTooling$declareVariables$lambda$_69_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$declareVariables$lambda$_69_0_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_0_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_102_1_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_97_0, "ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_97_0", 35, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$checkSubquery$11$lambda$_97_0_apply)], oncief_DeterministicFunction$, 0, jl_Object, [], 4, 3, 0, 0, 0, -oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_104_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_104_0_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_101_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_101_0_apply)], -oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_99_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_99_0_apply)]]); +oncias_SemanticAnalysisTooling$importValuesFromScope$lambda$_77_0, "SemanticAnalysisTooling$importValuesFromScope$lambda$_77_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$importValuesFromScope$lambda$_77_0_apply)], +oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$declareVariable$lambda$_61_0_apply)], +oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_172_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_SingleQuery$$anonfun$errorOnShadowedImportVariables$3$lambda$_172_0_apply)], +oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_0_apply)], +oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_SingleQuery$org$neo4j$cypher$internal$ast$SingleQuery$$isShadowed$2$lambda$_175_1_apply)], +oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_99_0, "SemanticAnalysisTooling$$anonfun$withState$2$lambda$_99_0", 40, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$$anonfun$withState$2$lambda$_99_0_apply)], +oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_0_apply)], +oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_1, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall$declareOutputVariablesInOuterScope$lambda$_76_1_apply)], +oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0, 0, jl_Object, [s_Function2, ji_Serializable], 0, 3, 0, 0, ["$apply3", $rt_wrapFunction2(oncia_Match$$anonfun$org$neo4j$cypher$internal$ast$Match$$collectPropertiesInPredicates$1$$anonfun$applyOrElse$34$lambda$_13_0_apply)], +oncias_SemanticAnalysisTooling$declareVariables$lambda$_71_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncias_SemanticAnalysisTooling$declareVariables$lambda$_71_0_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_0_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_1, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$2$lambda$_107_1_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_109_0, 0, jl_Object, [s_Function0, ji_Serializable], 0, 3, 0, 0, ["$apply4", $rt_wrapFunction0(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$7$lambda$_109_0_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_106_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$5$lambda$_106_0_apply)], +oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_104_0, 0, jl_Object, [s_Function1, ji_Serializable], 0, 3, 0, 0, ["$apply2", $rt_wrapFunction1(oncia_ScopeClauseSubqueryCall$$anonfun$declareOutputVariablesInOuterScope$3$lambda$_104_0_apply)]]); let $rt_booleanArrayCls = $rt_arraycls($rt_booleancls), $rt_charArrayCls = $rt_arraycls($rt_charcls), $rt_byteArrayCls = $rt_arraycls($rt_bytecls), @@ -366889,116 +294529,118 @@ $rt_longArrayCls = $rt_arraycls($rt_longcls), $rt_floatArrayCls = $rt_arraycls($rt_floatcls), $rt_doubleArrayCls = $rt_arraycls($rt_doublecls); $rt_stringPool(["Can\'t enter monitor from another thread synchronously", "DefaultParameterValue\\{value=(.*), type=.*\\}", "interface ", "class ", "", "[]", "", "", " is not subtype of ", ": ", "null", "Should never been thrown", "String is null", "String is empty", "String contains invalid digits: ", "String contains digits out of radix ", "The value is too big for integer type", "The value is too big for int type: ", "Illegal radix: ", "false", "true", "0", "object", "function", "string", "number", -"undefined", "symbol", "bigint", "boolean", "SCHEMA", "DBMS", "READ", "WRITE", "\\", "assertion failed", "requirement failed", "", "scala.reflect.classtag.cache.disable", " is out of bounds (min 0, max 1)", "(", ",", ")", "Tuple2", "empty.reduceLeft", ", ", "empty.min", "empty.max", "minBy", "empty.", "empty.minBy", "LinearSeq.last", "LinearSeq", "List.last", "List", "init of empty list", "last of empty list", "tail of empty list", "head of empty list", "The value is too big for long type", "The value is too big for long type: ", -"Can\'t parse empty string", "The string does not represent a number", "The string represents a too big number", "of class ", " (", "an instance ", "Can\'t compare ", " to ", "Cypher5", "5", "Cypher25", "25", "Patter is null", "USE single graph selector", " not yet initialised", "InitialState", "IDP", "COST", "5.0", "IDPPlannerName", "UNNAMED", " ", "Either src or dest is null", "java.version", "1.8", "os.name", "TeaVM", "file.separator", "/", "path.separator", ":", "line.separator", "\n", "java.io.tmpdir", -"/tmp", "java.vm.version", "user.home", "Some", "None", "None.get", "Set", "HashSet", "Cannot use %1$s hint `%2$s` in this context: %3$s", "Must use %1$s, that the hint is referring to, on %3$s either in the pattern or in supported predicates in `WHERE` (either directly or as part of a top-level `AND` or `OR`), but %2$s found. %5$s Note that %1$s must be specified on a non-optional %4$s.", "The USE clause is not available in embedded sessions. Try running the query using a Neo4j driver or the HTTP API.", "Dynamic graph lookup not allowed here. This feature is only available on composite databases.\n |Attempted to access graph ", -" (transaction default)", "Multiple graphs in the same query not allowed here. This feature is only available on composite databases.\n |Attempted to access graph ", "Conditions started failing after running these phases: ", "ExpandStarRewriter", "if() ", "", "ObfuscationMetadataCollection", "AmbiguousAggregationAnalysis", "ProcedureAndFunctionDeprecationWarnings", "ProcedureWarnings", "SemanticAnalysis", "Semantic features ", " and ", " are incompatible and cannot be enabled at the same time", -"Byte", "Short", "Char", "Int", "Long", "Float", "Double", "Boolean", "Unit", "Any", "Object", "AnyVal", "Null", "Nothing", "fSet", "Is", "In", "multiple databases", "Node(", ") -> ", "main", "(this Collection)", "NonCapFSet", "AheadFSet", "BehindFSet", "AtomicFSet", "FinalSet", "", "JointSet", "NonCapJointSet", "PosLookaheadJointSet", "NegLookaheadJointSet", "PosBehindJointSet", "NegBehindJointSet", "Parse", "internal.cypher.parser.antlr_enabled=false is not allowed in Cypher 25", "Failed to parse query `", -"`.", "Expected exactly one statement per query but got: ", "CollectSyntaxUsageMetrics", "SyntaxDeprecationWarningsAndReplacements", "syntacticallyDeprecatedFeatures", "PreparatoryRewriting", "RemoveDuplicateUseClauses", "SemanticTypeCheck", "SemanticallyDeprecatedFeatures", "SET ", " = ", " = properties(", " += ", " += properties(", "*", "IsolateSubqueriesInMutatingPatterns", "", "", "PARSING", "DEPRECATION_WARNINGS", "ADDITION_ERRORS", "SEMANTIC_CHECK", "SEMANTIC_TYPE_CHECK", "AST_REWRITE", -"LOGICAL_PLANNING", "CODE_GENERATION", "PIPE_BUILDING", "METADATA_COLLECTION", "A pattern expression should only be used in order to test the existence of a pattern. It should therefore only be used in contexts that evaluate to a boolean, e.g. inside the function exists() or in a WHERE-clause. No other uses are allowed, instead they should be replaced by a pattern comprehension.", "A pattern expression should only be used in order to test the existence of a pattern. It can no longer be used inside the function size(), an alternative is to replace size() with COUNT {}.", -"Coercion of list to boolean is not allowed. Please use `NOT isEmpty(...)` instead.", "Lower", "Upper", "ASCII", "Alpha", "Digit", "Alnum", "Punct", "Graph", "Print", "Blank", "Cntrl", "XDigit", "javaLowerCase", "javaUpperCase", "javaWhitespace", "javaMirrored", "javaDefined", "javaDigit", "javaIdentifierIgnorable", "javaISOControl", "javaJavaIdentifierPart", "javaJavaIdentifierStart", "javaLetter", "javaLetterOrDigit", "javaSpaceChar", "javaTitleCase", "javaUnicodeIdentifierPart", "javaUnicodeIdentifierStart", -"Space", "w", "W", "s", "S", "d", "D", "BasicLatin", "Latin-1Supplement", "LatinExtended-A", "LatinExtended-B", "IPAExtensions", "SpacingModifierLetters", "CombiningDiacriticalMarks", "Greek", "Cyrillic", "CyrillicSupplement", "Armenian", "Hebrew", "Arabic", "Syriac", "ArabicSupplement", "Thaana", "Devanagari", "Bengali", "Gurmukhi", "Gujarati", "Oriya", "Tamil", "Telugu", "Kannada", "Malayalam", "Sinhala", "Thai", "Lao", "Tibetan", "Myanmar", "Georgian", "HangulJamo", "Ethiopic", "EthiopicSupplement", "Cherokee", -"UnifiedCanadianAboriginalSyllabics", "Ogham", "Runic", "Tagalog", "Hanunoo", "Buhid", "Tagbanwa", "Khmer", "Mongolian", "Limbu", "TaiLe", "NewTaiLue", "KhmerSymbols", "Buginese", "PhoneticExtensions", "PhoneticExtensionsSupplement", "CombiningDiacriticalMarksSupplement", "LatinExtendedAdditional", "GreekExtended", "GeneralPunctuation", "SuperscriptsandSubscripts", "CurrencySymbols", "CombiningMarksforSymbols", "LetterlikeSymbols", "NumberForms", "Arrows", "MathematicalOperators", "MiscellaneousTechnical", "ControlPictures", -"OpticalCharacterRecognition", "EnclosedAlphanumerics", "BoxDrawing", "BlockElements", "GeometricShapes", "MiscellaneousSymbols", "Dingbats", "MiscellaneousMathematicalSymbols-A", "SupplementalArrows-A", "BraillePatterns", "SupplementalArrows-B", "MiscellaneousMathematicalSymbols-B", "SupplementalMathematicalOperators", "MiscellaneousSymbolsandArrows", "Glagolitic", "Coptic", "GeorgianSupplement", "Tifinagh", "EthiopicExtended", "SupplementalPunctuation", "CJKRadicalsSupplement", "KangxiRadicals", "IdeographicDescriptionCharacters", -"CJKSymbolsandPunctuation", "Hiragana", "Katakana", "Bopomofo", "HangulCompatibilityJamo", "Kanbun", "BopomofoExtended", "CJKStrokes", "KatakanaPhoneticExtensions", "EnclosedCJKLettersandMonths", "CJKCompatibility", "CJKUnifiedIdeographsExtensionA", "YijingHexagramSymbols", "CJKUnifiedIdeographs", "YiSyllables", "YiRadicals", "ModifierToneLetters", "SylotiNagri", "HangulSyllables", "HighSurrogates", "HighPrivateUseSurrogates", "LowSurrogates", "PrivateUseArea", "CJKCompatibilityIdeographs", "AlphabeticPresentationForms", -"ArabicPresentationForms-A", "VariationSelectors", "VerticalForms", "CombiningHalfMarks", "CJKCompatibilityForms", "SmallFormVariants", "ArabicPresentationForms-B", "HalfwidthandFullwidthForms", "all", "Specials", "Cn", "IsL", "Lu", "Ll", "Lt", "Lm", "Lo", "IsM", "Mn", "Me", "Mc", "N", "Nd", "Nl", "No", "IsZ", "Zs", "Zl", "Zp", "IsC", "Cc", "Cf", "Co", "Cs", "IsP", "Pd", "Ps", "Pe", "Pc", "Po", "IsS", "Sm", "Sc", "Sk", "So", "Pi", "Pf", "posFSet", " ", "^ ", "range:", "CompositeRangeSet: ", " ", -"UCI range:", "decomposed Hangul syllable:", "UCI ", "CI ", "decomposed char:", "", "", "", "WordBoundary", "PreviousMatch", "", "EOI", "^", "DotAll", ".", "", "", "CI back reference: ", "back reference: ", "UCI back reference: ", "sequence: ", "UCI sequence: ", "CI sequence: ", "`", "``", "1", "normalizeWithAndReturnClauses", "insertWithBetweenOptionalMatchAndMatch", "wrapOptionalCallProcedure", "expandCallWhere", "expandShowWhere", "rewriteShowQuery", -"mergeInPredicates", "timestampRewriter", "rewriteShortestPathWithFixedLengthRelationship", "nullIfFunctionRewriter", "", "[", "]", "normalize", "DISTINCT ", " ASC", " DESC", "{", "}", "count(*)", " IS NULL", "IS NULL", " IS NOT NULL", "IS NOT NULL", "IS TYPED ", "IS NOT TYPED ", " IS ", " NORMALIZED", "IS ", " IS NOT ", "IS NOT ", "..", "any", "NOT ", " IN ", " | ", "|", ":%", "none", "single", ".*", "CASE", "END", "CASE ", " AND ", " OR ", "reduce(", "EXISTS { ", " }", "COLLECT { ", "COUNT { ", -"CoerceToPredicate(", "assertIsNode(", "disjoint(", "unique(", "size(", ") >= ", ") <= ", "isRepeatTrailUnique(", "elementIdToNodeId", "elementIdListToNodeIdList", "elementIdToRelationshipId", "elementIdListToRelationshipIdList", "IN", "\\\\", "\\\\\\\\", "\"", "\\\\\"", "\'******\'", "illegal password expression", "|:", "&", "$all(", "$any(", "%", "IndexedSeq", "tail of empty array", "ArraySeq", "AccumulatedSteps", "failed to pretty print ", "Unknown statement: ", " {}", "()-[", "]-()", "$(", "))", ")]-()", -"FOR ", " ON ", " ON EACH ", " IF EXISTS", "DROP INDEX ", "CONSTRAINT", " REQUIRE ", "Unknown command: ", "DROP CONSTRAINT ", " WITH AUTH", " IF NOT EXISTS", "ACTIVE", "SUSPENDED", " SET STATUS ", " REMOVE ALL AUTH PROVIDERS", " REMOVE AUTH PROVIDERS ", " FROM ", " TO ", " WITH USERS", " AS COPY OF ", " IF NOT EXISTS AS COPY OF ", " ON DBMS TO ", " ON DBMS FROM ", "TO", "FROM", "SHOW SUPPORTED PRIVILEGES", "SHOW ", " PRIVILEGES", " AS COMMANDS", " AS REVOKE COMMANDS", "PROPERTIES", " FOR DATABASE ", " IF NOT EXISTS FOR DATABASE ", -"DRIVER", " AT ", " USER ", " PASSWORD ", " FOR DATABASE", " IF EXISTS FOR DATABASE", " SET DATABASE ", " IF EXISTS SET DATABASE ", " SET", "Unexpected command ", "DRYRUN ", " TARGET ", " SET DATABASE", " IF EXISTS SET DATABASE", " OPTIONS ", " OPTIONS {}", "Expected NoOptions or OptionsMap but was OptionsParam", "CREATE ", "IF NOT EXISTS ", "CREATE OR REPLACE ", " SET PASSWORD", "SET PASSWORD", "ENCRYPTED ", "PASSWORD", "USER", "USER ", "USERS ", "", "ALL", "ROLES ", "ROLE ", " DATABASE", "DATABASE ", -"DATABASES ", " {", " {*}", " *", "Unknown resource: ", "GRAPH ", "GRAPH *", "HOME GRAPH", "GRAPHS ", "SET LABEL", "REMOVE LABEL", "NODE ", "NODES ", "NODES *", "RELATIONSHIP ", "RELATIONSHIPS ", "RELATIONSHIPS *", "ELEMENTS ", "ELEMENTS *", "(*)", "DEFAULT", "HOME", " TOPOLOGY", "last of empty String", ") WHERE ", "Unknown expression: ", "timestamp", "datetime", "epochMillis", "nullIf", "->", "<-", "+", "WHERE ", "())* (", "<", ">", "-[", "]-", "UNION ALL", "UNION", "USE ", "FINISH", "OPTIONAL ", "MATCH ", -"CALL {\n |", "\n |", "CALL (", ") {\n |", " OF ", " ROWS", " CONCURRENT", " ON ERROR BREAK", " ON ERROR CONTINUE", " ON ERROR FAIL", " REPORT STATUS AS ", " IN", " TRANSACTIONS", "USING SCAN ", "USING JOIN ON ", "USING SSP_ALL ON ", "USING SSP_INTO ON ", "USING ", "INDEX ", "TEXT INDEX ", "RANGE INDEX ", "POINT INDEX ", "SEEK ", "MERGE ", "SKIP ", "LIMIT ", "ORDER BY ", " DISTINCT", "RETURN", "WITH", "YIELD ", "INSERT ", "UNWIND ", " AS ", "YIELD *", "CALL ", " INDEXES", " CONSTRAINTS", -"SHOW PROCEDURES", " FUNCTIONS", " EXECUTABLE BY CURRENT USER", " EXECUTABLE BY ", "SHOW TRANSACTIONS", "TERMINATE TRANSACTIONS", "SHOW SETTINGS", "REMOVE ", " WITH HEADERS", "LOAD CSV", "DETACH ", "DELETE ", "FOREACH ( ", " |", "SET ID ", "SET AUTH PROVIDER ", "Empty job", "No jobs", "ALWAYS", "NEVER", "IF_NO_PARAMETER", "Step ", " has no post-conditions. That is not allowed.", "Found same post-condition ", " in these steps: ", "digraph G {\n", "\n}", "The step sequence ", " did not include all steps from ", -" did not lead to a state where all conditions ", " are met. Only meeting ", "There was a cycle in the graph: ", "Map", "key not found: ", " is out of bounds (min 0, max ", "ArrayBuffer", "QualifiedName", " :: ", "FieldSignature", "LIST\\s*<\\s*([^|\\s]+)\\s*>", "LIST\\s*<\\s*INTEGER\\s*\\|\\s*FLOAT\\s*>", "LIST\\s*<\\s*FLOAT\\s*\\|\\s*INTEGER\\s*>", ") :: ", "UserFunctionSignature", "until", "to", "%d %s %d by %s", ": seqs cannot contain more than Int.MaxValue elements.", "ProcedureReadOnlyAccess", "ProcedureSignature", -"ProcedureReadWriteAccess", "ProcedureDbmsAccess", "ProcedureSchemaWriteAccess", "Replacement preconditions do not hold", "UTF-8", " NOT NULL", "AnyType", "ANY", "BooleanType", "BOOLEAN", "StringType", "String!", "String", "STRING", "NumberType", "Number", "NUMBER", "FloatType", "FLOAT", "IntegerType", "Integer", "INTEGER", "MapType", "MAP", "NodeType", "Node", "NODE", "RelationshipType", "Relationship", "RELATIONSHIP", "PointType", "Point!", "Point", "POINT", "ZonedDateTimeType", "DateTime", "ZONED DATETIME", -"LocalDateTimeType", "LocalDateTime", "LOCAL DATETIME", "DateType", "Date", "DATE", "ZonedTimeType", "Time", "ZONED TIME", "LocalTimeType", "LocalTime", "LOCAL TIME", "DurationType", "Duration", "DURATION", "GeometryType", "Geometry", "GEOMETRY", "PathType", "Path", "PATH", "Graph is not a supported CypherType and therefore, cannot be ordered", "GraphRefType", "GRAPH", "ListType", "List<", "LIST<", "BitmapIndexedSetNode diff HashCollisionSetNode", "Trie nodes do not support hashing.", "Cannot concatenate a HashCollisionSetNode with a BitmapIndexedSetNode", -"No sub-nodes present in hash-collision leaf node.", "IGNORE", "REPLACE", "REPORT", "newAction must be non-null", "()", "scala.collection.immutable.Vector.defaultApplyPreferredMaxLength", "250", "A non-empty VectorBuilder cannot be aligned retrospectively. Please call .reset() or use a new VectorBuilder.", "Vector", "empty.head", "empty.tail", "New position ", " is outside of range [0;", "Capacity is negative: ", "The last byte in dst ", " is outside of array of size ", "Length ", " must be non-negative", "Offset ", -"The last byte in src ", "The last char in dst ", "The last char in src ", "Start ", " is outside of string of size ", " must be before end ", "line ", ", column ", " (offset: ", "Simple", "Collections cannot have more than ", " elements", "Size of array-backed collection exceeds VM array size limit of ", "Copied ", " of ", "empty.init", " is out of bounds (empty vector)", "exceeding 2^31 elements", "advance1(", "): a1=", ", a2=", ", a3=", ", a4=", ", a5=", ", a6=", ", depth=", "Vector cannot have negative size ", -"VectorBuilder(len1=", ", lenRest=", ", offset=", "", "BIG_ENDIAN", "LITTLE_ENDIAN", "next on empty iterator", "self-referential LazyList or a derivation thereof has no more elements", "LazyList", "requirement failed: ", "size must be positive, but was ", "size=", " and step=", ", but both must be positive", "", "", "Digits < 0", "null RoundingMode", "Negative bit address", "Negative exponent", "BigInteger divide by zero", "tail of empty lazy list", "head of empty lazy list", "UP", -"DOWN", "CEILING", "FLOOR", "HALF_UP", "HALF_DOWN", "HALF_EVEN", "UNNECESSARY", "�", "averageCharsPerByte must be positive. Actual value is ", "maxCharsPerByte must be positive. Actual value is ", "AdjacencyList", "step cannot be 0.", "SemanticError", "ListBuffer", "()", "View", "HashMap", "new HashMap table size ", " exceeds maximum", "Cannot concatenate a HashCollisionMapNode with a BitmapIndexedMapNode", " \"", "\";", "(this Map)", "Seq", "Unknown state: ", "Statement missing", "Semantic state missing", -"Semantic table missing", "BaseContains", "Valid symbolic names in label expressions", "containsNoReturnAll", "Variable `", "` already declared", " or ", "Type mismatch: ", " defined with conflicting type ", " (expected ", "` not defined", "SemanticState", "SemanticTable", "HOME DATABASE: ", "Name: ", "Missing mapping for notification detail.", "{ %s }", "InputPosition{offset=", ", line=", ", column=", "PatternExpressionsHaveSemanticInfo", "ProjectionClausesHaveSemanticInfo", "ReturnItems(includeExisting = true, ...)", -"CartesianProductNotification", ": `", ". (\'", "\' has been replaced by \'", "\')", "RANGE INDEX", "POINT INDEX", "INDEX", "TEXT INDEX", "TEXT ", "RANGE ", "POINT ", "BTREE ", "%sINDEX FOR (%s:%s) ON (%s)", "%sINDEX FOR ()-[%s:%s]-() ON (%s)", "index", "the missing label name", "the missing relationship type", "Missing parameters: ", "the missing property name", "the shadowing variable", "the repeated variable-length relationship", "hinted join key identifiers", "hinted join key identifier", "identifier", "identifiers", -"indexed label", "indexed labels", "indexed relationship type", "indexed relationship types", "\' returned by \'", "\' is deprecated.", "\' used by \'", "are:", "is:", "Please use \'", "\' instead", "` can never be satisfied by any relationship. Relationships must have exactly one relationship type.", "Relationship `", "` was repeated", "%s", "`%s` used by the procedure `%s` is deprecated.", "`%s` used by the function `%s` is deprecated.", "Creating an entity (%s) and referencing that entity in a property definition in the same CREATE is deprecated.", -"Merging an entity (%s) and referencing that entity in a property definition in the same MERGE is deprecated.", "\\u%04x", "The Unicode character `%s` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier `%s`.", "The character with the Unicode representation `%s` is deprecated for unescaped identifiers and will not be supported in the future. To continue using it, escape the identifier by adding backticks around the identifier `%s`.", -"operatorEngine=compiled", "operatorEngine=interpreted", "expressionEngine=compiled", "expressionEngine=interpreted", "operator and expression", "operator", "expression", "CALL subquery without a variable scope clause is now deprecated. Use CALL (%s) { ... }", "All subqueries in a UNION [ALL] should have the same ordering for the return columns. Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version.", "Databases and aliases with unescaped `.` are deprecated unless they belong to a composite database. Names containing `.` should be escaped. (%s)", -"connectComponentsPlanner", "Converting a list or a path to a boolean", "CARTESIAN_PRODUCT", "If a part of a query contains multiple disconnected patterns, this will build a cartesian product between all those parts. This may produce a large amount of data and slow down query processing. While occasionally intended, it may often be possible to reformulate the query that avoids the use of this cross product, perhaps by adding a relationship between the different parts or by using OPTIONAL MATCH (%s)", "RUNTIME_UNSUPPORTED", -"Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default. (%s)", "INDEX_HINT_UNFULFILLABLE", "The hinted index does not exist, please check the schema (%s)", "JOIN_HINT_UNFULFILLABLE", "The hinted join was not planned. This could happen because no generated plan contained the join key, please try using a different join key or restructure your query. (%s)", "INDEX_LOOKUP_FOR_DYNAMIC_PROPERTY", "Using a dynamic property makes it impossible to use an index lookup for this query (%s)", +"undefined", "symbol", "bigint", "boolean", "SCHEMA", "DBMS", "READ", "WRITE", "\\", "assertion failed", "requirement failed", "", "scala.reflect.classtag.cache.disable", " is out of bounds (min 0, max 1)", "(", ",", ")", "Tuple2", "empty.reduceLeft", ", ", "empty.min", "empty.max", "minBy", "empty.", "empty.minBy", "LinearSeq.last", "LinearSeq", "List.last", "List", "last of empty list", "tail of empty list", "head of empty list", "The value is too big for long type", "The value is too big for long type: ", +"Can\'t parse empty string", "The string does not represent a number", "The string represents a too big number", "of class ", " (", "an instance ", "Can\'t compare ", " to ", "Cypher5", "5", "CYPHER 5", "Cypher25", "25", "CYPHER 25", "Patter is null", "USE single graph selector", " not yet initialised", "InitialState", "IDP", "COST", "5.0", "IDPPlannerName", "UNNAMED", " ", "Either src or dest is null", "java.version", "1.8", "os.name", "TeaVM", "file.separator", "/", "path.separator", ":", "line.separator", +"\n", "java.io.tmpdir", "/tmp", "java.vm.version", "user.home", "Some", "None", "None.get", "Set", "HashSet", "Cannot use %1$s hint `%2$s` in this context: %3$s", "Must use %1$s, that the hint is referring to, on %3$s either in the pattern or in supported predicates in `WHERE` (either directly or as part of a top-level `AND` or `OR`), but %2$s found. %5$s Note that %1$s must be specified on a non-optional %4$s.", "The USE clause is not available in embedded sessions. Try running the query using a Neo4j driver or the HTTP API.", +"Dynamic graph lookup not allowed here. This feature is only available on composite databases.\n |Attempted to access graph ", " (transaction default)", "Multiple graphs in the same query not allowed here. This feature is only available on composite databases.\n |Attempted to access graph ", "Conditions started failing after running these phases: ", "ExpandStarRewriter", "if() ", "", "ObfuscationMetadataCollection", "AmbiguousAggregationAnalysis", "ProcedureAndFunctionDeprecationWarnings", +"ProcedureWarnings", "SemanticAnalysis", "Semantic features ", " and ", " are incompatible and cannot be enabled at the same time", "Byte", "Short", "Char", "Int", "Long", "Float", "Double", "Boolean", "Unit", "Any", "Object", "AnyVal", "Null", "Nothing", "fSet", "Is", "In", "multiple databases", "Node(", ") -> ", "main", "(this Collection)", "NonCapFSet", "AheadFSet", "BehindFSet", "AtomicFSet", "FinalSet", "", "JointSet", "NonCapJointSet", "PosLookaheadJointSet", "NegLookaheadJointSet", "PosBehindJointSet", +"NegBehindJointSet", "Parse", "CollectSyntaxUsageMetrics", "SyntaxDeprecationWarningsAndReplacements", "SyntacticallyDeprecatedFeatures", "where", "1", "PreparatoryRewriting", "RemoveDuplicateUseClauses", "SemanticTypeCheck", "SemanticallyDeprecatedFeatures", "SET ", " = ", " = properties(", " += ", " += properties(", "*", "IsolateSubqueriesInMutatingPatterns", "", "", "Lower", "Upper", "ASCII", "Alpha", "Digit", "Alnum", "Punct", "Graph", "Print", "Blank", "Cntrl", "XDigit", "javaLowerCase", +"javaUpperCase", "javaWhitespace", "javaMirrored", "javaDefined", "javaDigit", "javaIdentifierIgnorable", "javaISOControl", "javaJavaIdentifierPart", "javaJavaIdentifierStart", "javaLetter", "javaLetterOrDigit", "javaSpaceChar", "javaTitleCase", "javaUnicodeIdentifierPart", "javaUnicodeIdentifierStart", "Space", "w", "W", "s", "S", "d", "D", "BasicLatin", "Latin-1Supplement", "LatinExtended-A", "LatinExtended-B", "IPAExtensions", "SpacingModifierLetters", "CombiningDiacriticalMarks", "Greek", "Cyrillic", "CyrillicSupplement", +"Armenian", "Hebrew", "Arabic", "Syriac", "ArabicSupplement", "Thaana", "Devanagari", "Bengali", "Gurmukhi", "Gujarati", "Oriya", "Tamil", "Telugu", "Kannada", "Malayalam", "Sinhala", "Thai", "Lao", "Tibetan", "Myanmar", "Georgian", "HangulJamo", "Ethiopic", "EthiopicSupplement", "Cherokee", "UnifiedCanadianAboriginalSyllabics", "Ogham", "Runic", "Tagalog", "Hanunoo", "Buhid", "Tagbanwa", "Khmer", "Mongolian", "Limbu", "TaiLe", "NewTaiLue", "KhmerSymbols", "Buginese", "PhoneticExtensions", "PhoneticExtensionsSupplement", +"CombiningDiacriticalMarksSupplement", "LatinExtendedAdditional", "GreekExtended", "GeneralPunctuation", "SuperscriptsandSubscripts", "CurrencySymbols", "CombiningMarksforSymbols", "LetterlikeSymbols", "NumberForms", "Arrows", "MathematicalOperators", "MiscellaneousTechnical", "ControlPictures", "OpticalCharacterRecognition", "EnclosedAlphanumerics", "BoxDrawing", "BlockElements", "GeometricShapes", "MiscellaneousSymbols", "Dingbats", "MiscellaneousMathematicalSymbols-A", "SupplementalArrows-A", "BraillePatterns", +"SupplementalArrows-B", "MiscellaneousMathematicalSymbols-B", "SupplementalMathematicalOperators", "MiscellaneousSymbolsandArrows", "Glagolitic", "Coptic", "GeorgianSupplement", "Tifinagh", "EthiopicExtended", "SupplementalPunctuation", "CJKRadicalsSupplement", "KangxiRadicals", "IdeographicDescriptionCharacters", "CJKSymbolsandPunctuation", "Hiragana", "Katakana", "Bopomofo", "HangulCompatibilityJamo", "Kanbun", "BopomofoExtended", "CJKStrokes", "KatakanaPhoneticExtensions", "EnclosedCJKLettersandMonths", "CJKCompatibility", +"CJKUnifiedIdeographsExtensionA", "YijingHexagramSymbols", "CJKUnifiedIdeographs", "YiSyllables", "YiRadicals", "ModifierToneLetters", "SylotiNagri", "HangulSyllables", "HighSurrogates", "HighPrivateUseSurrogates", "LowSurrogates", "PrivateUseArea", "CJKCompatibilityIdeographs", "AlphabeticPresentationForms", "ArabicPresentationForms-A", "VariationSelectors", "VerticalForms", "CombiningHalfMarks", "CJKCompatibilityForms", "SmallFormVariants", "ArabicPresentationForms-B", "HalfwidthandFullwidthForms", "all", +"Specials", "Cn", "IsL", "Lu", "Ll", "Lt", "Lm", "Lo", "IsM", "Mn", "Me", "Mc", "N", "Nd", "Nl", "No", "IsZ", "Zs", "Zl", "Zp", "IsC", "Cc", "Cf", "Co", "Cs", "IsP", "Pd", "Ps", "Pe", "Pc", "Po", "IsS", "Sm", "Sc", "Sk", "So", "Pi", "Pf", "posFSet", " ", "^ ", "range:", "CompositeRangeSet: ", " ", "UCI range:", "decomposed Hangul syllable:", "UCI ", "CI ", "decomposed char:", "", "", "", "WordBoundary", "PreviousMatch", "", "EOI", "^", "DotAll", ".", +"", "", "CI back reference: ", "back reference: ", "UCI back reference: ", "sequence: ", "UCI sequence: ", "CI sequence: ", "PARSING", "DEPRECATION_WARNINGS", "ADDITION_ERRORS", "SEMANTIC_CHECK", "SEMANTIC_TYPE_CHECK", "AST_REWRITE", "LOGICAL_PLANNING", "CODE_GENERATION", "PIPE_BUILDING", "METADATA_COLLECTION", "removeSyntaxTracking", "normalizeWithAndReturnClauses", "insertWithBetweenOptionalMatchAndMatch", "wrapOptionalCallProcedure", "expandCallWhere", "expandShowWhere", "rewriteShowQuery", +"mergeInPredicates", "timestampRewriter", "rewriteShortestPathWithFixedLengthRelationship", "nullIfFunctionRewriter", "Didn\'t expect ProjectingUnion, only SingleQuery, TopLevelBraces, UnionAll, or UnionDistinct.", "unwrapTopLevelBraces", "A pattern expression should only be used in order to test the existence of a pattern. It should therefore only be used in contexts that evaluate to a boolean, e.g. inside the function exists() or in a WHERE-clause. No other uses are allowed, instead they should be replaced by a pattern comprehension.", +"A pattern expression should only be used in order to test the existence of a pattern. It can no longer be used inside the function size(), an alternative is to replace size() with COUNT {}.", "Coercion of list to boolean is not allowed. Please use `NOT isEmpty(...)` instead.", "[", "]", "normalize", "DISTINCT ", " ASC", " DESC", "{", "}", "count(*)", " IS NULL", "IS NULL", " IS NOT NULL", "IS NOT NULL", "IS TYPED ", "IS NOT TYPED ", " IS ", " NORMALIZED", "IS ", " IS NOT ", "IS NOT ", "..", "any", "NOT ", " IN ", +" | ", "|", ":%", "&", "none", "single", ".*", "CASE", "END", "CASE ", " AND ", " OR ", "reduce(", "EXISTS { ", " }", "COLLECT { ", "COUNT { ", "CoerceToPredicate(", "assertIsNode(", "disjoint(", "unique(", "size(", ") >= ", ") <= ", "isRepeatTrailUnique(", "elementIdToNodeId", "elementIdListToNodeIdList", "elementIdToRelationshipId", "elementIdListToRelationshipIdList", "IN", "\\\\", "\\\\\\\\", "\"", "\\\\\"", "\'******\'", "illegal password expression", "|:", "$all(", "$any(", "%", "IndexedSeq", "tail of empty array", +"ArraySeq", "AccumulatedSteps", "", "failed to pretty print ", "Unknown statement: ", " {}", "()-[", "]-()", "$(", "))", ")]-()", "FOR ", " ON ", " ON EACH ", " IF EXISTS", "DROP INDEX ", "CONSTRAINT", " REQUIRE ", "Unknown command: ", "DROP CONSTRAINT ", " WITH AUTH", " IF NOT EXISTS", "ACTIVE", "SUSPENDED", " SET STATUS ", " REMOVE ALL AUTH PROVIDERS", " REMOVE AUTH PROVIDERS ", " FROM ", " TO ", " WITH USERS", " AS COPY OF ", " IF NOT EXISTS AS COPY OF ", " ON DBMS TO ", " ON DBMS FROM ", "TO", +"FROM", "SHOW SUPPORTED PRIVILEGES", "SHOW ", " PRIVILEGES", " AS COMMANDS", " AS REVOKE COMMANDS", "PROPERTIES", " FOR DATABASE ", " IF NOT EXISTS FOR DATABASE ", "DRIVER", " AT ", " USER ", " PASSWORD ", " FOR DATABASE", " IF EXISTS FOR DATABASE", " SET DATABASE ", " IF EXISTS SET DATABASE ", " SET", "Unexpected command ", "DRYRUN ", " TARGET ", " SET DATABASE", " IF EXISTS SET DATABASE", " OPTIONS ", " OPTIONS {}", "Expected NoOptions or OptionsMap but was OptionsParam", "CREATE ", "IF NOT EXISTS ", "CREATE OR REPLACE ", +" SET PASSWORD", "SET PASSWORD", "ENCRYPTED ", "PASSWORD", "USER", "USER ", "USERS ", "", "ALL", "ROLES ", "ROLE ", " DATABASE", "DATABASE ", "DATABASES ", " {", " {*}", " *", "Unknown resource: ", "GRAPH ", "GRAPH *", "HOME GRAPH", "GRAPHS ", "SET LABEL", "REMOVE LABEL", "NODE ", "NODES ", "NODES *", "RELATIONSHIP ", "RELATIONSHIPS ", "RELATIONSHIPS *", "ELEMENTS ", "ELEMENTS *", "(*)", "DEFAULT", "HOME", " TOPOLOGY", " IMMUTABLE", "last of empty String", ") WHERE ", "Unknown expression: ", "timestamp", +"datetime", "epochMillis", "nullIf", "->", "<-", "+", "WHERE ", "())* (", "<", ">", "-[", "]-", "UNION ALL", "UNION", "FINISH", "OPTIONAL ", "CALL {\n |", "\n |", "MATCH ", "USE ", "CALL (", ") {\n |", " OF ", " ROWS", " CONCURRENT", " ON ERROR BREAK", " ON ERROR CONTINUE", " ON ERROR FAIL", " REPORT STATUS AS ", " IN", " TRANSACTIONS", "USING SCAN ", "USING JOIN ON ", "USING SSP_ALL ON ", "USING SSP_INTO ON ", "USING ", "INDEX ", "TEXT INDEX ", "RANGE INDEX ", "POINT INDEX ", "SEEK ", +"MERGE ", "SKIP ", "LIMIT ", "ORDER BY ", " DISTINCT", "RETURN", "WITH", "YIELD ", "INSERT ", "UNWIND ", " AS ", "YIELD *", "CALL ", " INDEXES", " CONSTRAINTS", "SHOW PROCEDURES", " FUNCTIONS", " EXECUTABLE BY CURRENT USER", " EXECUTABLE BY ", "SHOW TRANSACTIONS", "TERMINATE TRANSACTIONS", "SHOW SETTINGS", "REMOVE ", " WITH HEADERS", "LOAD CSV", "DETACH ", "DELETE ", "FOREACH ( ", " |", "SET ID ", "SET AUTH PROVIDER ", "No jobs", "Empty job", "ALWAYS", "NEVER", "IF_NO_PARAMETER", "Step ", " has no post-conditions. That is not allowed.", +"Found same post-condition ", " in these steps: ", "digraph G {\n", "\n}", "The step sequence ", " did not include all steps from ", " did not lead to a state where all conditions ", " are met. Only meeting ", "There was a cycle in the graph: ", "Map", "key not found: ", " is out of bounds (min 0, max ", "ArrayBuffer", "QualifiedName", " :: ", "FieldSignature", "LIST\\s*<\\s*([^|\\s]+)\\s*>", "LIST\\s*<\\s*INTEGER\\s*\\|\\s*FLOAT\\s*>", "LIST\\s*<\\s*FLOAT\\s*\\|\\s*INTEGER\\s*>", ") :: ", "UserFunctionSignature", +"until", "to", "%d %s %d by %s", ": seqs cannot contain more than Int.MaxValue elements.", "ProcedureReadOnlyAccess", "ProcedureSignature", "ProcedureReadWriteAccess", "ProcedureDbmsAccess", "ProcedureSchemaWriteAccess", "Replacement preconditions do not hold", "UTF-8", " NOT NULL", "AnyType", "ANY", "BooleanType", "BOOLEAN", "StringType", "String!", "String", "STRING", "NumberType", "Number", "NUMBER", "FloatType", "FLOAT", "IntegerType", "Integer", "INTEGER", "MapType", "MAP", "NodeType", "Node", "NODE", "RelationshipType", +"Relationship", "RELATIONSHIP", "PointType", "Point!", "Point", "POINT", "ZonedDateTimeType", "DateTime", "ZONED DATETIME", "LocalDateTimeType", "LocalDateTime", "LOCAL DATETIME", "DateType", "Date", "DATE", "ZonedTimeType", "Time", "ZONED TIME", "LocalTimeType", "LocalTime", "LOCAL TIME", "DurationType", "Duration", "DURATION", "GeometryType", "Geometry", "GEOMETRY", "PathType", "Path", "PATH", "Graph is not a supported CypherType and therefore, cannot be ordered", "GraphRefType", "GRAPH", "ListType", "List<", +"LIST<", "BitmapIndexedSetNode diff HashCollisionSetNode", "Trie nodes do not support hashing.", "Cannot concatenate a HashCollisionSetNode with a BitmapIndexedSetNode", "No sub-nodes present in hash-collision leaf node.", "IGNORE", "REPLACE", "REPORT", "newAction must be non-null", "()", "scala.collection.immutable.Vector.defaultApplyPreferredMaxLength", "250", "A non-empty VectorBuilder cannot be aligned retrospectively. Please call .reset() or use a new VectorBuilder.", "Vector", "empty.head", "empty.tail", +"New position ", " is outside of range [0;", "Capacity is negative: ", "The last byte in dst ", " is outside of array of size ", "Length ", " must be non-negative", "Offset ", "The last byte in src ", "The last char in dst ", "The last char in src ", "Start ", " is outside of string of size ", " must be before end ", "line ", ", column ", " (offset: ", "Simple", "Collections cannot have more than ", " elements", "Size of array-backed collection exceeds VM array size limit of ", "Copied ", " of ", "empty.init", +" is out of bounds (empty vector)", "exceeding 2^31 elements", "advance1(", "): a1=", ", a2=", ", a3=", ", a4=", ", a5=", ", a6=", ", depth=", "Vector cannot have negative size ", "VectorBuilder(len1=", ", lenRest=", ", offset=", "", "BIG_ENDIAN", "LITTLE_ENDIAN", "next on empty iterator", "self-referential LazyList or a derivation thereof has no more elements", "LazyList", "requirement failed: ", "size must be positive, but was ", "size=", " and step=", ", but both must be positive", "", +"", "Digits < 0", "null RoundingMode", "Negative bit address", "Negative exponent", "BigInteger divide by zero", "tail of empty lazy list", "head of empty lazy list", "UP", "DOWN", "CEILING", "FLOOR", "HALF_UP", "HALF_DOWN", "HALF_EVEN", "UNNECESSARY", "�", "averageCharsPerByte must be positive. Actual value is ", "maxCharsPerByte must be positive. Actual value is ", "AdjacencyList", "step cannot be 0.", "SemanticError", "ListBuffer", "()", "View", "HashMap", "new HashMap table size ", " exceeds maximum", +"Cannot concatenate a HashCollisionMapNode with a BitmapIndexedMapNode", "Unknown state: ", "Statement missing", "Semantic state missing", "Semantic table missing", "BaseContains", "Valid symbolic names in label expressions", "containsNoReturnAll", " \"", "\";", "Variable `", "` already declared", " or ", "Type mismatch: ", " defined with conflicting type ", " (expected ", "` not defined", "SemanticState", "SemanticTable", "(this Map)", "PatternExpressionsHaveSemanticInfo", "ProjectionClausesHaveSemanticInfo", +"ReturnItems(includeExisting = true, ...)", "Seq", "StatementCondition", "DeprecatedSyntaxReplaced", "DeprecatedSemanticsReplaced", "SemanticAnalysisPossible", "SubqueriesInMutatingPatternsIsolated", "containsNoNodesOfType", "UnaliasedReturnItem", "ExpressionsHaveComputedDependencies", "HOME DATABASE: ", "Name: ", "Missing mapping for notification detail.", "InputPosition{offset=", ", line=", ", column=", "TryRewriteProcedureCalls", "extractSensitiveLiterals", ".completed", "CartesianProductNotification", ": `", +"`.", ". (\'", "\' has been replaced by \'", "\')", "RANGE INDEX", "POINT INDEX", "INDEX", "TEXT INDEX", "TEXT ", "RANGE ", "POINT ", "BTREE ", "%sINDEX FOR (%s:%s) ON (%s)", "%sINDEX FOR ()-[%s:%s]-() ON (%s)", "index", "the missing label name", "the missing relationship type", "Missing parameters: ", "the missing property name", "the shadowing variable", "the repeated variable-length relationship", "hinted join key identifiers", "hinted join key identifier", "identifier", "identifiers", "indexed label", "indexed labels", +"indexed relationship type", "indexed relationship types", "\' returned by \'", "\' is deprecated.", "\' used by \'", "are:", "is:", "Please use \'", "\' instead", "` can never be satisfied by any relationship. Relationships must have exactly one relationship type.", "Relationship `", "` was repeated", "%s", "`%s` used by the procedure `%s` is deprecated.", "`%s` used by the function `%s` is deprecated.", "Creating an entity (%s) and referencing that entity in a property definition in the same CREATE is deprecated.", +"Merging an entity (%s) and referencing that entity in a property definition in the same MERGE is deprecated.", "The `indexProvider` option is deprecated and will be removed in a future version. Neo4j does not use the given option but instead selects the most performant index provider available.", "\\u%04x", "The Unicode character `%s` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier `%s`.", +"The character with the Unicode representation `%s` is deprecated for unescaped identifiers and will not be supported in the future. To continue using it, escape the identifier by adding backticks around the identifier `%s`.", "operatorEngine=compiled", "operatorEngine=interpreted", "expressionEngine=compiled", "expressionEngine=interpreted", "operator and expression", "operator", "expression", "CALL subquery without a variable scope clause is deprecated. Use CALL (%s) { ... }", "(%s %s)", "(`%s` %s)", "-[%s %s]-", +"-[`%s` %s]-", "... + %s", "... + (%s)", "WHEN %s%s", "WHEN `%s`%s", "Databases and aliases with unescaped `.` are deprecated unless they belong to a composite database. Names containing `.` should be escaped. (%s)", "connectComponentsPlanner", "Converting a list or a path to a boolean", "CARTESIAN_PRODUCT", "If a part of a query contains multiple disconnected patterns, this will build a cartesian product between all those parts. This may produce a large amount of data and slow down query processing. While occasionally intended, it may often be possible to reformulate the query that avoids the use of this cross product, perhaps by adding a relationship between the different parts or by using OPTIONAL MATCH (%s)", +"RUNTIME_UNSUPPORTED", "Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default. (%s)", "INDEX_HINT_UNFULFILLABLE", "The hinted index does not exist, please check the schema (%s)", "JOIN_HINT_UNFULFILLABLE", "The hinted join was not planned. This could happen because no generated plan contained the join key, please try using a different join key or restructure your query. (%s)", "INDEX_LOOKUP_FOR_DYNAMIC_PROPERTY", "Using a dynamic property makes it impossible to use an index lookup for this query (%s)", "DEPRECATED_FUNCTION_WITHOUT_REPLACEMENT", "The query used a deprecated function%s", "DEPRECATED_FUNCTION_WITH_REPLACEMENT", "DEPRECATED_PROCEDURE_WITHOUT_REPLACEMENT", "The query used a deprecated procedure%s", "DEPRECATED_PROCEDURE_WITH_REPLACEMENT", "DEPRECATED_RUNTIME_OPTION", "The query used a deprecated runtime option. (%s)", "PROCEDURE_WARNING", "The query used a procedure that generated a warning. (%s)", "DEPRECATED_PROCEDURE_RETURN_FIELD", "The query used a deprecated field from a procedure. (%s)", "DEPRECATED_PROCEDURE_FIELD", "The procedure has a deprecated field. (%s)", "DEPRECATED_FUNCTION_FIELD", "The function has a deprecated field. (%s)", "DEPRECATED_RELATIONSHIP_TYPE_SEPARATOR", "The semantics of using colon in the separation of alternative relationship types will change in a future version. (%s)", "DEPRECATED_NODE_OR_RELATIONSHIP_ON_RHS_SET_CLAUSE", "The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. Please use properties() instead.", "DEPRECATED_PROPERTY_REFERENCE_IN_CREATE", "DEPRECATED_PROPERTY_REFERENCE_IN_MERGE", "DEPRECATED_SHORTEST_PATH_WITH_FIXED_LENGTH_RELATIONSHIP", "The use of shortestPath and allShortestPaths with fixed length relationships is deprecated and will be removed in a future version. Please use a path with a length of 1 [r*1..1] instead or a Match with a limit.", "The `", "` provider for text indexes is deprecated and will be removed in a future version. Please use `", "` instead.", "DEPRECATED_TEXT_INDEX_PROVIDER", -"DEPRECATED_IDENTIFIER_WHITESPACE_UNICODE", "DEPRECATED_IDENTIFIER_UNICODE", "EAGER_LOAD_CSV", "Using LOAD CSV with a large data set in a query where the execution plan contains the Eager operator could potentially consume a lot of memory and is likely to not perform well. See the Neo4j Manual entry on the Eager operator for more information and hints on how problems could be avoided.", "DEPRECATED_FORMAT", "The requested format has been deprecated. (%s)", "LARGE_LABEL_LOAD_CSV", "Using LOAD CSV followed by a MATCH or MERGE that matches a non-indexed label will most likely not perform well on large data sets. Please consider using a schema index.", -"MISSING_LABEL", "One of the labels in your query is not available in the database, make sure you didn\'t misspell it or that the label is available when you run this statement in your application (%s)", "MISSING_REL_TYPE", "One of the relationship types in your query is not available in the database, make sure you didn\'t misspell it or that the label is available when you run this statement in your application (%s)", "MISSING_PROPERTY_NAME", "One of the property names in your query is not available in the database, make sure you didn\'t misspell it or that the label is available when you run this statement in your application (%s)", -"UNBOUNDED_SHORTEST_PATH", "Using shortest path with an unbounded pattern will likely result in long execution times. It is recommended to use an upper limit to the number of node hops in your pattern.", "EXHAUSTIVE_SHORTEST_PATH", "Using shortest path with an exhaustive search fallback might cause query slow down since shortest path graph algorithms might not work for this use case. It is recommended to introduce a WITH to separate the MATCH containing the shortest path from the existential predicates on that path.", +"DEPRECATED_INDEX_PROVIDER_OPTION", "DEPRECATED_IDENTIFIER_WHITESPACE_UNICODE", "DEPRECATED_IDENTIFIER_UNICODE", "EAGER_LOAD_CSV", "Using LOAD CSV with a large data set in a query where the execution plan contains the Eager operator could potentially consume a lot of memory and is likely to not perform well. See the Neo4j Manual entry on the Eager operator for more information and hints on how problems could be avoided.", "DEPRECATED_FORMAT", "The requested format has been deprecated. (%s)", "LARGE_LABEL_LOAD_CSV", +"Using LOAD CSV followed by a MATCH or MERGE that matches a non-indexed label will most likely not perform well on large data sets. Please consider using a schema index.", "MISSING_LABEL", "One of the labels in your query is not available in the database, make sure you didn\'t misspell it or that the label is available when you run this statement in your application (%s)", "MISSING_REL_TYPE", "One of the relationship types in your query is not available in the database, make sure you didn\'t misspell it or that the label is available when you run this statement in your application (%s)", +"MISSING_PROPERTY_NAME", "One of the property names in your query is not available in the database, make sure you didn\'t misspell it or that the label is available when you run this statement in your application (%s)", "UNBOUNDED_SHORTEST_PATH", "Using shortest path with an unbounded pattern will likely result in long execution times. It is recommended to use an upper limit to the number of node hops in your pattern.", "EXHAUSTIVE_SHORTEST_PATH", "Using shortest path with an exhaustive search fallback might cause query slow down since shortest path graph algorithms might not work for this use case. It is recommended to introduce a WITH to separate the MATCH containing the shortest path from the existential predicates on that path.", "MISSING_PARAMETERS_FOR_EXPLAIN", "Did not supply query with enough parameters. The produced query plan will not be cached and is not executable without EXPLAIN. (%s)", "CODE_GENERATION_FAILED", "The database was unable to generate code for the query. A stacktrace can be found in the debug.log. (%s)", "SUBQUERY_VARIABLE_SHADOWING", "Variable in subquery is shadowing a variable with the same name from the outer scope. If you want to use that variable instead, it must be imported into the subquery using importing WITH clause. (%s)", -"REDUNDANT_OPTIONAL_PROCEDURE", "The use of `OPTIONAL` is redundant as `CALL %s` is a void procedure.", "REDUNDANT_OPTIONAL_SUBQUERY", "The use of `OPTIONAL` is redundant as `CALL` is a unit subquery.", "DEPRECATED_IMPORTING_WITH_IN_SUBQUERY_CALL", "UNION_RETURN_ORDER", "HOME_DATABASE_NOT_PRESENT", "The home database provided does not currently exist in the DBMS. This command will not take effect until this database is created. (%s)", "DEPRECATED_DATABASE_NAME", "Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. Names containing `.` should be escaped. (%s)", -"UNSATISFIABLE_RELATIONSHIP_TYPE_EXPRESSION", "Relationship type expression cannot possibly be satisfied. (%s)", "REPEATED_RELATIONSHIP_REFERENCE", "A relationship is referenced more than once in the query, which leads to no results because relationships must not occur more than once in each result. (%s)", "REPEATED_VAR_LENGTH_RELATIONSHIP_REFERENCE", "A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (%s)", -"DEPRECATED_CONNECT_COMPONENTS_PLANNER_PRE_PARSER_OPTION", "The Cypher query option `connectComponentsPlanner` is deprecated and will be removed without a replacement. The product\'s default behavior of using a cost-based IDP search algorithm when combining sub-plans will be kept. For more information, see Cypher Manual -> Cypher planner.", "COMMAND_HAS_NO_EFFECT_ASSIGN_PRIVILEGE", "The role already has the privilege. See Status Codes documentation for more information.", "COMMAND_HAS_NO_EFFECT_REVOKE_PRIVILEGE", -"The role does not have the privilege. See Status Codes documentation for more information.", "COMMAND_HAS_NO_EFFECT_GRANT_ROLE", "The user already has the role. See Status Codes documentation for more information.", "COMMAND_HAS_NO_EFFECT_REVOKE_ROLE", "The user does not have the role. See Status Codes documentation for more information.", "AUTH_PROVIDER_NOT_DEFINED", "The auth provider `%s` is not defined in the configuration. Verify that the spelling is correct or define `%s` in the configuration.", "IMPOSSIBLE_REVOKE_COMMAND", -"%s Make sure nothing is misspelled. This notification will become an error in a future major version. See Status Codes documentation for more information.", "EXTERNAL_AUTH_NOT_ENABLED", "Use setting `dbms.security.require_local_user` to enable external auth.", "SERVER_ALREADY_ENABLED", "Server `%s` is already enabled. Verify that this is the intended server.", "SERVER_ALREADY_CORDONED", "Server `%s` is already cordoned. Verify that this is the intended server.", "NO_DATABASES_REALLOCATED", "No databases were reallocated. No better allocation is currently possible.", -"CORDONED_SERVERS_EXISTED_DURING_ALLOCATION", "Server(s) `%s` are cordoned. This can impact allocation decisions.", "REQUESTED_TOPOLOGY_MATCHED_CURRENT_TOPOLOGY", "The requested topology matched the current topology. No allocations were changed.", "INDEX_OR_CONSTRAINT_ALREADY_EXISTS", "`%s` already exists.", "INDEX_OR_CONSTRAINT_DOES_NOT_EXIST", "`%s` does not exist.", "AGGREGATION_SKIPPED_NULL", "null value eliminated in set function.", "DEPRECATED_BOOLEAN_COERCION", "The query converted a list or path to a boolean value.", -"DEPRECATED_OPTION_IN_OPTION_MAP", "\'%s\' is deprecated. It is replaced by \'%s\'.", "UsingAnyIndexType", "UsingTextIndexType", "BTREE", "TEXT", "RANGE", "UsingRangeIndexType", "UsingPointIndexType", "UnboundedShortestPathNotification", "DeprecatedFunctionNotification", "DeprecatedProcedureNotification", "DeprecatedProcedureReturnFieldNotification", "DeprecatedProcedureFieldNotification", "DeprecatedFunctionFieldNotification", "DeprecatedRelTypeSeparatorNotification", "DeprecatedNodesOrRelationshipsInSetClauseNotification", -"DeprecatedPropertyReferenceInCreate", "DeprecatedPropertyReferenceInMerge", "ProcedureWarningNotification", "SubqueryVariableShadowing", "RedundantOptionalProcedure", "RedundantOptionalSubquery", "DeprecatedImportingWithInSubqueryCall", "UnionReturnItemsInDifferentOrder", "FixedLengthRelationshipInShortestPath", "DeprecatedTextIndexProvider", "DeprecatedDatabaseNameNotification", "UnsatisfiableRelationshipTypeExpression", "RepeatedRelationshipReference", "RepeatedVarLengthRelationshipReference", "DeprecatedIdentifierWhitespaceUnicode", -"DeprecatedIdentifierUnicode", ". ", "action", "alias", "alias1", "alias2", "alloc", "allocType", "auth", "boltMsgType", "boltServerState", "cause", "cfgSetting", "changeIdent", "characterRange", "clause", "cmd", "component", "constr", "constrDescrOrName", "context", "coordinates", "crs", "db", "db1", "db2", "db3", "edition", "entityId1", "entityId2", "entityType", "expr", "exprType", "feat", "feat1", "feat2", "field", "format", "fun", "graph", "hint", "ident", "idx", "idxDescr", "idxDescrOrName", "idxOrConstr", -"idxOrConstrPat", "idxType", "input", "input1", "input2", "item", "keyword", "label", "labelExpr", "mapKey", "matchMode", "msg", "msgTitle", "namespace", "operation", "option", "option1", "option2", "param", "param1", "param2", "pat", "port", "pred", "preparserInput", "preparserInput1", "preparserInput2", "proc", "procClass", "procExeMode", "procField", "procFieldType", "procFun", "procMethod", "procParam", "procParamFmt", "propKey", "query", "relType", "replacement", "role", "routingPolicy", "runtime", "schemaDescr", -"selector", "selectorType", "selectorType1", "selectorType2", "server", "serverType", "sig", "syntax", "temporal", "timeUnit", "token", "tokenId", "tokenType", "transactionId", "transactionId1", "transactionId2", "url", "user", "value", "valueType", "variable", "Undecided", "token-lookup", "1.0", "point", "range", "fulltext", "text", "2.0", "vector", "SyntaxError", "The statement contains invalid or unsupported syntax.", "The statement is syntactically valid, but expresses something that the database cannot do.", -"ParameterMissing", "The statement refers to a parameter that was not provided in the request.", "ParameterNotProvided", "ConstraintVerificationFailed", "A constraint imposed by the statement is violated by the data in the database.", "EntityNotFound", "The statement refers to a non-existent entity.", "PropertyNotFound", "The statement refers to a non-existent property.", "TypeError", "The statement is attempting to perform operations on values with types that are not supported by the operation.", "ArgumentError", -"The statement is attempting to perform operations using invalid arguments", "ArithmeticError", "Invalid use of arithmetic, such as dividing by zero.", "RuntimeUnsupportedError", "This query is not supported by the chosen runtime.", "NotSystemDatabaseError", "This is an administration command and it should be executed against the system database.", "InvalidTargetDatabaseError", "The specified database is not a valid target for this command.", "AccessMode", "The request could not be completed due to access mode violation", -"UnsupportedOperationError", "This query performed an operation that is not supported in this context.", "ExternalResourceFailed", "Access to an external resource failed", "The query contains a relationship type expression that cannot be satisfied.", "The query returns no results due to repeated references to a relationship.", "RemoteExecutionClientError", "The database was unable to execute a remote part of the statement due to a client error.", "ExecutionFailed", "The database was unable to execute the statement.", -"CodeGenerationFailed", "The database was unable to generate code for the query. A stacktrace can be found in the debug.log.", "RemoteExecutionFailed", "The database was unable to execute a remote part of the statement.", "ExecutionTimeout", "The database was unable to execute the statement in a timely fashion.", "RemoteExecutionTransientError", "The database was unable to execute a remote part of the statement due to a transient failure.", "CartesianProduct", "This query builds a cartesian product between disconnected patterns.", -"DynamicProperty", "Queries using dynamic properties will use neither index seeks nor index scans for those properties", "EagerOperator", "The execution plan for this query contains the Eager operator, which forces all dependent data to be materialized in main memory before proceeding", "JoinHintUnfulfillableWarning", "The database was unable to plan a hinted join.", "NoApplicableIndex", "Adding a schema index may speed up this query.", "SuboptimalIndexForWildcardQuery", "Index cannot execute wildcard query efficiently", -"UnboundedVariableLengthPattern", "The provided pattern is unbounded, consider adding an upper limit to the number of node hops.", "ExhaustiveShortestPath", "Exhaustive shortest path has been planned for your query that means that shortest path graph algorithm might not be used to find the shortest path. Hence an exhaustive enumeration of all paths might be used in order to find the requested shortest path.", "SideEffectVisibility", "Using a subquery expression within a mutating statement has implications for its side-effect visibility", -"RuntimeUnsupportedWarning", "FeatureDeprecationWarning", "This feature is deprecated and will be removed in future versions.", "RuntimeExperimental", "This feature is experimental and should not be used in production systems.", "UnsupportedAdministrationCommand", "This administration command is not supported.", "UnknownLabelWarning", "The provided label is not in the database.", "UnknownRelationshipTypeWarning", "The provided relationship type is not in the database.", "UnknownPropertyKeyWarning", "The provided property key is not in the database", -"Variable in subquery is shadowing a variable with the same name from the outer scope.", "The use of `OPTIONAL` is redundant when `CALL` is a void procedure.", "The use of `OPTIONAL` is redundant when `CALL` is a unit subquery.", "AggregationSkippedNull", "The query contains an aggregation function that skips null values.", "STATUS_00000", "00000", "STATUS_00001", "00001", "omitted result", "00N50", "STATUS_00N50", "The database { %s } does not exist. Verify that the spelling is correct or create the database for the command to take effect.", -"home database does not exist", "00N70", "STATUS_00N70", "The command { %s } has no effect. The role or privilege is already assigned.", "role or privilege already assigned", "00N71", "STATUS_00N71", "The command { %s } has no effect. The role or privilege is not assigned.", "role or privilege not assigned", "00N72", "STATUS_00N72", "The auth provider { %s } is not defined in the configuration. Verify that the spelling is correct or define { %s } in the configuration.", "undefined auth provider", "00N80", "STATUS_00N80", -"The command \'ENABLE SERVER\' has no effect. Server { %s } is already enabled. Verify that this is the intended server.", "server already enabled", "00N81", "STATUS_00N81", "The command \'CORDON SERVER\' has no effect. The server { %s } is already cordoned. Verify that this is the intended server.", "server already cordoned", "STATUS_00N82", "00N82", "The command \'REALLOCATE DATABASES\' has no effect. No databases were reallocated. No better allocation is currently possible.", "no databases reallocated", "00N83", -"STATUS_00N83", "Cordoned servers existed when making an allocation decision. Server(s) { %s } are cordoned. This can impact allocation decisions.", "cordoned servers existed during allocation", "STATUS_00N84", "00N84", "The command \'ALTER DATABASE\' has no effect. The requested topology matched the current topology. No allocations were changed.", "requested topology matched current topology", "00NA0", "STATUS_00NA0", "The command { %s } has no effect. The index or constraint specified by { %s } already exists.", -"index or constraint already exists", "00NA1", "STATUS_00NA1", "The command { %s } has no effect. The specified index or constraint { %s } does not exist.", "index or constraint does not exist", "STATUS_01000", "01000", "STATUS_01004", "01004", "string data, right truncation", "STATUS_01G03", "01G03", "graph does not exist", "STATUS_01G04", "01G04", "graph type does not exist", "STATUS_01G11", "01G11", "null value eliminated in set function", "01N00", "STATUS_01N00", "feature deprecated", "01N01", "STATUS_01N01", -"{ %s } is deprecated. It is replaced by { %s }.", "feature deprecated with replacement", "01N02", "STATUS_01N02", "{ %s } is deprecated and will be removed without a replacement.", "feature deprecated without replacement", "01N03", "STATUS_01N03", "The field { %s } of procedure { %s } is deprecated.", "procedure field deprecated", "01N30", "STATUS_01N30", "Unable to create a plan with \'JOIN ON { %s }\'. Try to change the join key(s) or restructure your query.", "join hint unfulfillable", "01N31", "STATUS_01N31", -"Unable to create a plan with { %s } because the index does not exist.", "hinted index does not exist", "01N40", "STATUS_01N40", "The query cannot be executed with { %s }; instead, { %s } is used. Cause: { %s }.", "unsupported runtime", "STATUS_01N42", "01N42", "Unknown warning.", "unknown warning", "01N50", "STATUS_01N50", "The label { %s } does not exist. Verify that the spelling is correct.", "label does not exist", "01N51", "STATUS_01N51", "The relationship type { %s } does not exist. Verify that the spelling is correct.", -"relationship type does not exist", "01N52", "STATUS_01N52", "The property { %s } does not exist. Verify that the spelling is correct.", "property key does not exist", "01N60", "STATUS_01N60", "The query plan cannot be cached and is not executable without \'EXPLAIN\' due to the undefined parameter(s) { %s }. Provide the parameter(s).", "parameter missing", "01N61", "STATUS_01N61", "The expression { %s } cannot be satisfied because relationships must have exactly one type.", "unsatisfiable relationship type expression", -"01N62", "STATUS_01N62", "Execution of the procedure { %s } generated the warning { %s }", "procedure or function execution warning", "01N63", "STATUS_01N63", "{ %s } is repeated in { %s }, which leads to no results.", "repeated relationship pattern variable", "01N70", "STATUS_01N70", "The command { %s } has no effect. Make sure nothing is misspelled. This notification will become an error in a future major version. Cause: { %s }", "inoperational revoke command", "STATUS_01N71", "01N71", "Use the setting \'dbms.security.require_local_user\' to enable external auth.", -"external auth disabled", "01U00", "STATUS_01U00", "Execution of the procedure { %s } generated the warning { %s }: { %s }.", "custom procedure warning cause", "STATUS_02000", "02000", "STATUS_02N42", "02N42", "Unknown GQLSTATUS from old server.", "unknown subcondition", "STATUS_03000", "03000", "STATUS_03N42", "03N42", "Unknown notification.", "unknown notification", "03N60", "STATUS_03N60", "The variable { %s } in the subquery uses the same name as a variable from the outer query. Use \'WITH { %s }\' in the subquery to import the one from the outer scope unless you want it to be a new variable.", -"subquery variable shadowing", "03N61", "STATUS_03N61", "The use of `OPTIONAL` is redundant as `CALL { %s }` is a void procedure.", "redundant optional procedure", "STATUS_03N62", "03N62", "redundant optional subquery", "03N90", "STATUS_03N90", "The disconnected pattern { %s } builds a cartesian product. A cartesian product may produce a large amount of data and slow down query processing.", "cartesian product", "03N91", "STATUS_03N91", "The provided pattern { %s } is unbounded. Shortest path with an unbounded pattern may result in long execution times. Use an upper limit (e.g. \'[*..5]\') on the number of node hops in your pattern.", -"unbounded variable length pattern", "03N92", "STATUS_03N92", "The query runs with exhaustive shortest path due to the existential predicate(s) { %s }. It may be possible to use \'WITH\' to separate the \'MATCH\' from the existential predicate(s).", "exhaustive shortest path", "03N93", "STATUS_03N93", "\'LOAD CSV\' in combination with \'MATCH\' or \'MERGE\' on a label that does not have an index may result in long execution times. Consider adding an index for label { %s }.", "no applicable index", "STATUS_03N94", -"03N94", "The query execution plan contains the \'Eager\' operator. \'LOAD CSV\' in combination with \'Eager\' can consume a lot of memory.", "eager operator", "03N95", "STATUS_03N95", "An index already exists on the relationship type or the label(s) { %s }. It is not possible to use indexes for dynamic properties. Consider using static properties.", "dynamic property", "03N96", "STATUS_03N96", "Failed to generate code, falling back to interpreted { %s } engine. A stacktrace can be found in the debug.log. Cause: { %s }.", -"code generation failed", "STATUS_08000", "08000", "STATUS_08007", "08007", "transaction resolution unknown", "08N00", "STATUS_08N00", "Unable to connect to database { %s }. Unable to get bolt address of the leader. Check the status of the database. Retrying your request at a later time may succeed.", "unable to connect to database", "08N01", "STATUS_08N01", "Unable to write to database { %s } on this server. Server-side routing is disabled. Either connect to the database leader directly or enable server-side routing by setting \'{ %s }=true\'.", -"unable to write to database", "08N02", "STATUS_08N02", "Unable to connect to database { %s }. Server-side routing is disabled. Either connect to { %s } directly, or enable server-side routing by setting \'{ %s }=true\'.", "unable to route to database", "08N03", "STATUS_08N03", "Failed to write to graph { %s }. Check the defined access mode in both driver and database.", "failed to write to graph", "08N04", "STATUS_08N04", "Routing with { %s } is not supported in embedded sessions. Connect to the database directly or try running the query using a Neo4j driver or the HTTP API.", -"unable to route use clause", "STATUS_08N05", "08N05", "Routing administration commands is not supported in embedded sessions. Connect to the system database directly or try running the query using a Neo4j driver or the HTTP API.", "unable to route administration command", "STATUS_08N06", "08N06", "General network protocol error.", "protocol error", "STATUS_08N07", "08N07", "This member is not the leader.", "not the leader", "STATUS_08N08", "08N08", "This database is read only on this server.", "database is read only", -"08N09", "STATUS_08N09", "The database { %s } is currently unavailable. Check the database status. Retry your request at a later time.", "database unavailable", "08N10", "STATUS_08N10", "The server is not in a state that can process a message of type: { %s }.", "invalid server state", "STATUS_08N11", "08N11", "The request is invalid and could not be processed by the server. See cause for further details.", "request error", "STATUS_08N12", "08N12", "Failed to parse the supplied bookmark. Verify it is correct or check the debug log for more information.", -"failed to parse bookmark", "08N13", "STATUS_08N13", "The database { %s } is not up to the requested bookmark { %s }. The latest transaction ID is { %s }.", "database not up to requested bookmark", "08N14", "STATUS_08N14", "Unable to provide a routing table for the database identifed by the alias { %s } because the request comes from another alias { %s } and alias chains are not permitted.", "alias chains are not permitted", "08N15", "STATUS_08N15", "Policy definition of the routing policy { %s } could not be found. Verify that the spelling is correct.", -"no such routing policy", "STATUS_22000", "22000", "STATUS_22001", "22001", "22003", "STATUS_22003", "The numeric value { %s } is outside the required range.", "numeric value out of range", "STATUS_22004", "22004", "null value not allowed", "STATUS_22007", "22007", "invalid date, time, or datetime format", "STATUS_22008", "22008", "datetime field overflow", "STATUS_22011", "22011", "substring error", "STATUS_22012", "22012", "division by zero", "STATUS_22015", "22015", "interval field overflow", "22018", "STATUS_22018", -"The character value { %s } is an invalid argument for the specified cast.", "invalid character value for cast", "2201E", "STATUS_2201E", "The value { %s } is an invalid argument for the specified natural logarithm.", "invalid argument for natural logarithm", "2201F", "STATUS_2201F", "The value { %s } is an invalid argument for the specified power function.", "invalid argument for power function", "STATUS_22027", "22027", "trim error", "STATUS_2202F", "2202F", "array data, right truncation", "STATUS_22G02", -"22G02", "negative limit value", "STATUS_22G03", "22G03", "invalid value type", "STATUS_22G04", "22G04", "values not comparable", "STATUS_22G05", "22G05", "invalid date, time, or datetime function field name", "STATUS_22G06", "22G06", "invalid datetime function value", "STATUS_22G07", "22G07", "invalid duration function field name", "STATUS_22G0B", "22G0B", "list data, right truncation", "STATUS_22G0C", "22G0C", "list element error", "STATUS_22G0F", "22G0F", "invalid number of paths or groups", "22G0H", "STATUS_22G0H", -"The duration format { %s } is invalid.", "invalid duration format", "STATUS_22G0M", "22G0M", "multiple assignments to a graph element property", "STATUS_22G0N", "22G0N", "number of node labels below supported minimum", "STATUS_22G0P", "22G0P", "number of node labels exceeds supported maximum", "STATUS_22G0Q", "22G0Q", "number of edge labels below supported minimum", "STATUS_22G0R", "22G0R", "number of edge labels exceeds supported maximum", "STATUS_22G0S", "22G0S", "number of node properties exceeds supported maximum", -"STATUS_22G0T", "22G0T", "number of edge properties exceeds supported maximum", "STATUS_22G0U", "22G0U", "record fields do not match", "STATUS_22G0V", "22G0V", "reference value, invalid base type", "STATUS_22G0W", "22G0W", "reference value, invalid constrained type", "STATUS_22G0X", "22G0X", "record data, field unassignable", "STATUS_22G0Y", "22G0Y", "record data, field missing", "STATUS_22G0Z", "22G0Z", "malformed path", "STATUS_22G10", "22G10", "path data, right truncation", "STATUS_22G11", "22G11", "reference value, referent deleted", -"STATUS_22G12", "22G12", "STATUS_22G13", "22G13", "invalid group variable value", "STATUS_22G14", "22G14", "incompatible temporal instant unit groups", "STATUS_22N00", "22N00", "The provided value is unsupported and cannot be processed.", "unsupported value", "22N01", "STATUS_22N01", "Expected the value { %s } to be of type { %s }, but was of type { %s }.", "invalid type", "22N02", "STATUS_22N02", "Expected { %s } to be a positive number but found { %s } instead.", "specified negative numeric value", "22N03", -"STATUS_22N03", "Expected { %s } to be of type { %s } and in the range { %s } to { %s } but found { %s }.", "specified numeric value out of range", "22N04", "STATUS_22N04", "Invalid input { %s } for { %s }. Expected one of { %s }.", "invalid input value", "22N05", "STATUS_22N05", "Invalid input { %s } for { %s }.", "input failed validation", "22N06", "STATUS_22N06", "Invalid input. { %s } needs to be specified.", "empty input string", "22N07", "STATUS_22N07", "Invalid pre-parser option(s): { %s }.", "invalid pre-parser option key", -"22N08", "STATUS_22N08", "Invalid pre-parser option, cannot combine { %s } with { %s }.", "invalid pre-parser combination", "22N09", "STATUS_22N09", "Invalid pre-parser option, cannot specify multiple conflicting values for { %s }.", "conflicting pre-parser combination", "22N10", "STATUS_22N10", "Invalid pre-parser option, specified { %s } is not valid for option { %s }. Valid options are: { %s }.", "invalid pre-parser option value", "22N11", "STATUS_22N11", "Invalid argument: cannot process { %s }.", "invalid argument", -"22N12", "STATUS_22N12", "STATUS_22N13", "22N13", "Specified time zones must include a date component.", "invalid time zone", "22N14", "STATUS_22N14", "Cannot select both { %s } and { %s }.", "invalid temporal value combination", "22N15", "STATUS_22N15", "Cannot read the specified { %s } component from { %s }.", "invalid temporal component", "22N16", "STATUS_22N16", "Importing entity values to a graph with a USE clause is not supported. Attempted to import { %s } to { %s }.", "invalid import value", "22N17", -"STATUS_22N17", "22N18", "STATUS_22N18", "A { %s } POINT must contain { %s }.", "incomplete spatial value", "STATUS_22N19", "22N19", "A POINT must contain either \'x\' and \'y\', or \'latitude\' and \'longitude\'.", "invalid spatial value", "22N20", "STATUS_22N20", "Cannot create POINT with { %s }D coordinate reference system (CRS) and { %s } coordinates. Use the equivalent { %s }D coordinate reference system instead.", "invalid spatial value dimensions", "22N21", "STATUS_22N21", "Unsupported coordinate reference system (CRS): { %s }.", -"unsupported coordinate reference system", "STATUS_22N22", "22N22", "Cannot specify both coordinate reference system (CRS) and spatial reference identifier (SRID).", "invalid spatial value combination", "22N23", "STATUS_22N23", "Cannot create WGS84 POINT with invalid coordinate: { %s }. The valid range for the latitude coordinate is [-90, 90].", "invalid latitude value", "22N24", "STATUS_22N24", "Cannot construct a { %s } from { %s }.", "invalid coordinate arguments", "22N25", "STATUS_22N25", "invalid temporal arguments", -"STATUS_22N26", "22N26", "Unknown rounding mode. Valid values are: CEILING, FLOOR, UP, DOWN, HALF_EVEN, HALF_UP, HALF_DOWN, UNNECESSARY.", "unsupported rounding mode", "22N27", "STATUS_22N27", "Invalid input { %s } for { %s }. Expected to be one of { %s }.", "invalid entity type", "22N28", "STATUS_22N28", "The result of the operation { %s } has caused an overflow.", "overflow error", "STATUS_22N29", "22N29", "Unknown coordinate reference system (CRS).", "unknown coordinate reference system", "STATUS_22N30", -"22N30", "At least one temporal unit must be specified.", "missing temporal unit", "STATUS_22N31", "22N31", "\'MERGE\' cannot be used with graph element property values that are null or NaN.", "invalid properties in merge pattern", "STATUS_22N32", "22N32", "\'ORDER BY\' expressions must be deterministic.", "non-deterministic sort expression", "22N33", "STATUS_22N33", "Shortest path expressions must contain start and end nodes. Cannot find: { %s }.", "invalid shortest path expression", "22N34", "STATUS_22N34", -"Cannot use the { %s } function inside an aggregate function.", "invalid use of aggregate function", "22N35", "STATUS_22N35", "Cannot parse { %s } as a DATE. Calendar dates need to be specified using the format \'YYYY-MM\', while ordinal dates need to be specified using the format \'YYYY-DDD\'.", "invalid date format", "22N36", "STATUS_22N36", "Cannot parse { %s } as a { %s }.", "invalid temporal format", "22N37", "STATUS_22N37", "Cannot coerce { %s } to { %s }.", "invalid coercion", "22N38", "STATUS_22N38", -"Expected argument to the { %s } function to be one of { %s }, but provided argument { %s } is of type { %s }.", "invalid function argument type", "22N39", "STATUS_22N39", "Value { %s } cannot be stored in properties.", "unsupported property value type", "22N40", "STATUS_22N40", "Cannot assign { %s } of a { %s }.", "non-assignable temporal component", "22N41", "STATUS_22N41", "The \'MERGE\' clause did not find a matching node { %s } and cannot create a new node due to conflicts with existing uniqueness constraints.", +"REDUNDANT_OPTIONAL_PROCEDURE", "The use of `OPTIONAL` is redundant as `CALL %s` is a void procedure.", "REDUNDANT_OPTIONAL_SUBQUERY", "The use of `OPTIONAL` is redundant as `CALL` is a unit subquery.", "DEPRECATED_IMPORTING_WITH_IN_SUBQUERY_CALL", "CALL subquery without a variable scope clause is now deprecated. Use CALL (%s) { ... }", "DEPRECATED_WHERE_VARIABLE_IN_NODE_PATTERN", "\'%s\' is deprecated. It is replaced by \'%s\'.", "DEPRECATED_WHERE_VARIABLE_IN_RELATIONSHIP_PATTERN", "DEPRECATED_PRECEDENCE_OF_LABEL_EXPRESSION_PREDICATED", +"DEPRECATED_KEYWORD_VARIABLE_IN_WHEN_OPERAND", "HOME_DATABASE_NOT_PRESENT", "The home database provided does not currently exist in the DBMS. This command will not take effect until this database is created. (%s)", "DEPRECATED_DATABASE_NAME", "Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. Names containing `.` should be escaped. (%s)", "UNSATISFIABLE_RELATIONSHIP_TYPE_EXPRESSION", "Relationship type expression cannot possibly be satisfied. (%s)", +"REPEATED_RELATIONSHIP_REFERENCE", "A relationship is referenced more than once in the query, which leads to no results because relationships must not occur more than once in each result. (%s)", "REPEATED_VAR_LENGTH_RELATIONSHIP_REFERENCE", "A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (%s)", "DEPRECATED_CONNECT_COMPONENTS_PLANNER_PRE_PARSER_OPTION", "The Cypher query option `connectComponentsPlanner` is deprecated and will be removed without a replacement. The product\'s default behavior of using a cost-based IDP search algorithm when combining sub-plans will be kept. For more information, see Cypher Manual -> Cypher planner.", +"COMMAND_HAS_NO_EFFECT_ASSIGN_PRIVILEGE", "The role already has the privilege. See Status Codes documentation for more information.", "COMMAND_HAS_NO_EFFECT_REVOKE_PRIVILEGE", "The role does not have the privilege. See Status Codes documentation for more information.", "COMMAND_HAS_NO_EFFECT_GRANT_ROLE", "The user already has the role. See Status Codes documentation for more information.", "COMMAND_HAS_NO_EFFECT_REVOKE_ROLE", "The user does not have the role. See Status Codes documentation for more information.", +"AUTH_PROVIDER_NOT_DEFINED", "The auth provider `%s` is not defined in the configuration. Verify that the spelling is correct or define `%s` in the configuration.", "IMPOSSIBLE_REVOKE_COMMAND", "%s Make sure nothing is misspelled. This notification will become an error in a future major version. See Status Codes documentation for more information.", "EXTERNAL_AUTH_NOT_ENABLED", "Use setting `dbms.security.require_local_user` to enable external auth.", "SERVER_ALREADY_ENABLED", "Server `%s` is already enabled. Verify that this is the intended server.", +"SERVER_ALREADY_CORDONED", "Server `%s` is already cordoned. Verify that this is the intended server.", "NO_DATABASES_REALLOCATED", "No databases were reallocated. No better allocation is currently possible.", "CORDONED_SERVERS_EXISTED_DURING_ALLOCATION", "Server(s) `%s` are cordoned. This can impact allocation decisions.", "REQUESTED_TOPOLOGY_MATCHED_CURRENT_TOPOLOGY", "The requested topology matched the current topology. No allocations were changed.", "INDEX_OR_CONSTRAINT_ALREADY_EXISTS", "`%s` already exists.", +"INDEX_OR_CONSTRAINT_DOES_NOT_EXIST", "`%s` does not exist.", "AGGREGATION_SKIPPED_NULL", "null value eliminated in set function.", "DEPRECATED_BOOLEAN_COERCION", "The query converted a list or path to a boolean value.", "INSECURE_PROTOCOL", "Query uses an insecure protocol.", "DEPRECATED_OPTION_IN_OPTION_MAP", "`%s` is deprecated. It is replaced by `%s`.", "DEPRECATED_SEEDING_OPTION", "`%s` is deprecated. Credentials are now supplied via the cloud provider mechanisms.", "DEPRECATED_STORE_FORMAT", "UsingAnyIndexType", +"UsingTextIndexType", "BTREE", "TEXT", "RANGE", "UsingRangeIndexType", "UsingPointIndexType", "UnboundedShortestPathNotification", "DeprecatedFunctionNotification", "DeprecatedProcedureNotification", "DeprecatedProcedureReturnFieldNotification", "DeprecatedProcedureFieldNotification", "DeprecatedFunctionFieldNotification", "DeprecatedRelTypeSeparatorNotification", "DeprecatedNodesOrRelationshipsInSetClauseNotification", "DeprecatedPropertyReferenceInCreate", "DeprecatedPropertyReferenceInMerge", "ProcedureWarningNotification", +"SubqueryVariableShadowing", "RedundantOptionalProcedure", "RedundantOptionalSubquery", "DeprecatedImportingWithInSubqueryCall", "DeprecatedWhereVariableInNodePattern", "DeprecatedWhereVariableInRelationshipPattern", "DeprecatedPrecedenceOfLabelExpressionPredicate", "DeprecatedKeywordVariableInWhenOperand", "FixedLengthRelationshipInShortestPath", "DeprecatedTextIndexProvider", "DeprecatedDatabaseNameNotification", "UnsatisfiableRelationshipTypeExpression", "RepeatedRelationshipReference", "RepeatedVarLengthRelationshipReference", +"DeprecatedIdentifierWhitespaceUnicode", "DeprecatedIdentifierUnicode", "note: no data", " - ", "note: successful completion", "info: ", "error: ", "warn: ", "%s. %s", "%s: %s", "`", "``", "action", "alias", "alias1", "alias2", "alloc", "allocType", "auth", "boltMsgType", "boltServerState", "cause", "cfgSetting", "changeIdent", "characterRange", "clause", "cmd", "component", "constr", "constrDescrOrName", "context", "coordinates", "crs", "db", "db1", "db2", "db3", "edition", "entityId1", "entityId2", "entityType", +"expr", "exprType", "feat", "feat1", "feat2", "field", "format", "fun", "graph", "hint", "ident", "idx", "idxDescr", "idxDescrOrName", "idxOrConstr", "idxOrConstrPat", "idxType", "input", "input1", "input2", "item", "keyword", "label", "labelExpr", "mapKey", "matchMode", "msg", "msgTitle", "namespace", "operation", "option", "option1", "option2", "param", "param1", "param2", "pat", "port", "pred", "preparserInput", "preparserInput1", "preparserInput2", "proc", "procClass", "procExeMode", "procField", "procFieldType", +"procFun", "procMethod", "procParam", "procParamFmt", "propKey", "query", "relType", "replacement", "role", "routingPolicy", "runtime", "schemaDescr", "selector", "selectorType", "selectorType1", "selectorType2", "server", "serverType", "sig", "syntax", "temporal", "timeUnit", "token", "tokenId", "tokenType", "transactionId", "transactionId1", "transactionId2", "url", "user", "value", "valueType", "variable", "Undecided", "token-lookup", "1.0", "point", "range", "fulltext", "text", "2.0", "vector", "The targeted store format: ", +" is deprecated. For details on deprecated store formats, see https://neo4j.com/docs/store-format-deprecations.", "SyntaxError", "The statement contains invalid or unsupported syntax.", "The statement is syntactically valid, but expresses something that the database cannot do.", "ParameterMissing", "The statement refers to a parameter that was not provided in the request.", "ParameterNotProvided", "ConstraintVerificationFailed", "A constraint imposed by the statement is violated by the data in the database.", +"EntityNotFound", "The statement refers to a non-existent entity.", "PropertyNotFound", "The statement refers to a non-existent property.", "TypeError", "The statement is attempting to perform operations on values with types that are not supported by the operation.", "ArgumentError", "The statement is attempting to perform operations using invalid arguments", "ArithmeticError", "Invalid use of arithmetic, such as dividing by zero.", "RuntimeUnsupportedError", "This query is not supported by the chosen runtime.", +"NotSystemDatabaseError", "This is an administration command and it should be executed against the system database.", "InvalidTargetDatabaseError", "The specified database is not a valid target for this command.", "AccessMode", "The request could not be completed due to access mode violation", "UnsupportedOperationError", "This query performed an operation that is not supported in this context.", "ExternalResourceFailed", "Access to an external resource failed", "The query contains a relationship type expression that cannot be satisfied.", +"The query returns no results due to repeated references to a relationship.", "RemoteExecutionClientError", "The database was unable to execute a remote part of the statement due to a client error.", "ExecutionFailed", "The database was unable to execute the statement.", "CodeGenerationFailed", "The database was unable to generate code for the query. A stacktrace can be found in the debug.log.", "RemoteExecutionFailed", "The database was unable to execute a remote part of the statement.", "ExecutionTimeout", +"The database was unable to execute the statement in a timely fashion.", "RemoteExecutionTransientError", "The database was unable to execute a remote part of the statement due to a transient failure.", "CartesianProduct", "This query builds a cartesian product between disconnected patterns.", "DynamicProperty", "Queries using dynamic properties will use neither index seeks nor index scans for those properties", "EagerOperator", "The execution plan for this query contains the Eager operator, which forces all dependent data to be materialized in main memory before proceeding", +"JoinHintUnfulfillableWarning", "The database was unable to plan a hinted join.", "NoApplicableIndex", "Adding a schema index may speed up this query.", "SuboptimalIndexForWildcardQuery", "Index cannot execute wildcard query efficiently", "UnboundedVariableLengthPattern", "The provided pattern is unbounded, consider adding an upper limit to the number of node hops.", "ExhaustiveShortestPath", "Exhaustive shortest path has been planned for your query that means that shortest path graph algorithm might not be used to find the shortest path. Hence an exhaustive enumeration of all paths might be used in order to find the requested shortest path.", +"SideEffectVisibility", "Using a subquery expression within a mutating statement has implications for its side-effect visibility", "RuntimeUnsupportedWarning", "FeatureDeprecationWarning", "This feature is deprecated and will be removed in future versions.", "RuntimeExperimental", "This feature is experimental and should not be used in production systems.", "UnsupportedAdministrationCommand", "This administration command is not supported.", "UnknownLabelWarning", "The provided label is not in the database.", +"UnknownRelationshipTypeWarning", "The provided relationship type is not in the database.", "UnknownPropertyKeyWarning", "The provided property key is not in the database", "Variable in subquery is shadowing a variable with the same name from the outer scope.", "The use of `OPTIONAL` is redundant when `CALL` is a void procedure.", "The use of `OPTIONAL` is redundant when `CALL` is a unit subquery.", "AggregationSkippedNull", "The query contains an aggregation function that skips null values.", "InsecureProtocol", +"The query uses an insecure protocol. Please consider using \'https\' instead.", "{ %s }", "STATUS_00000", "00000", "STATUS_00001", "00001", "omitted result", "00N50", "STATUS_00N50", "The database { %s } does not exist. Verify that the spelling is correct or create the database for the command to take effect.", "home database does not exist", "00N70", "STATUS_00N70", "The command { %s } has no effect. The role or privilege is already assigned.", "role or privilege already assigned", "00N71", "STATUS_00N71", +"The command { %s } has no effect. The role or privilege is not assigned.", "role or privilege not assigned", "00N72", "STATUS_00N72", "The auth provider { %s } is not defined in the configuration. Verify that the spelling is correct or define { %s } in the configuration.", "undefined auth provider", "00N80", "STATUS_00N80", "The command \'ENABLE SERVER\' has no effect. Server { %s } is already enabled. Verify that this is the intended server.", "server already enabled", "00N81", "STATUS_00N81", "The command \'CORDON SERVER\' has no effect. The server { %s } is already cordoned. Verify that this is the intended server.", +"server already cordoned", "STATUS_00N82", "00N82", "The command \'REALLOCATE DATABASES\' has no effect. No databases were reallocated. No better allocation is currently possible.", "no databases reallocated", "00N83", "STATUS_00N83", "Cordoned servers existed when making an allocation decision. Server(s) { %s } are cordoned. This can impact allocation decisions.", "cordoned servers existed during allocation", "STATUS_00N84", "00N84", "The command \'ALTER DATABASE\' has no effect. The requested topology matched the current topology. No allocations were changed.", +"requested topology matched current topology", "00NA0", "STATUS_00NA0", "The command { %s } has no effect. The index or constraint specified by { %s } already exists.", "index or constraint already exists", "00NA1", "STATUS_00NA1", "The command { %s } has no effect. The specified index or constraint { %s } does not exist.", "index or constraint does not exist", "STATUS_01000", "01000", "STATUS_01004", "01004", "string data, right truncation", "STATUS_01G03", "01G03", "graph does not exist", "STATUS_01G04", "01G04", +"graph type does not exist", "STATUS_01G11", "01G11", "null value eliminated in set function", "01N00", "STATUS_01N00", "feature deprecated", "01N01", "STATUS_01N01", "{ %s } is deprecated. It is replaced by { %s }.", "feature deprecated with replacement", "01N02", "STATUS_01N02", "{ %s } is deprecated and will be removed without a replacement.", "feature deprecated without replacement", "01N03", "STATUS_01N03", "The field { %s } of procedure { %s } is deprecated.", "procedure field deprecated", "01N30", "STATUS_01N30", +"Unable to create a plan with \'JOIN ON { %s }\'. Try to change the join key(s) or restructure your query.", "join hint unfulfillable", "01N31", "STATUS_01N31", "Unable to create a plan with { %s } because the index does not exist.", "hinted index does not exist", "01N40", "STATUS_01N40", "The query cannot be executed with { %s }; instead, { %s } is used. Cause: { %s }.", "unsupported runtime", "STATUS_01N42", "01N42", "Unknown warning.", "unknown warning", "01N50", "STATUS_01N50", "The label { %s } does not exist. Verify that the spelling is correct.", +"label does not exist", "01N51", "STATUS_01N51", "The relationship type { %s } does not exist. Verify that the spelling is correct.", "relationship type does not exist", "01N52", "STATUS_01N52", "The property { %s } does not exist. Verify that the spelling is correct.", "property key does not exist", "01N60", "STATUS_01N60", "The query plan cannot be cached and is not executable without \'EXPLAIN\' due to the undefined parameter(s) { %s }. Provide the parameter(s).", "parameter missing", "01N61", "STATUS_01N61", +"The expression { %s } cannot be satisfied because relationships must have exactly one type.", "unsatisfiable relationship type expression", "01N62", "STATUS_01N62", "Execution of the procedure { %s } generated the warning { %s }", "procedure or function execution warning", "01N63", "STATUS_01N63", "{ %s } is repeated in { %s }, which leads to no results.", "repeated relationship pattern variable", "01N70", "STATUS_01N70", "The command { %s } has no effect. Make sure nothing is misspelled. This notification will become an error in a future major version. Cause: { %s }", +"inoperational revoke command", "STATUS_01N71", "01N71", "Use the setting \'dbms.security.require_local_user\' to enable external auth.", "external auth disabled", "STATUS_01N72", "01N72", "Query uses an insecure protocol. Consider using \'https\' instead.", "insecure URL protocol", "STATUS_02000", "02000", "STATUS_02N42", "02N42", "Unknown GQLSTATUS from old server.", "unknown subcondition", "STATUS_03000", "03000", "STATUS_03N42", "03N42", "Unknown notification.", "unknown notification", "03N60", "STATUS_03N60", +"The variable { %s } in the subquery uses the same name as a variable from the outer query. Use \'WITH { %s }\' in the subquery to import the one from the outer scope unless you want it to be a new variable.", "subquery variable shadowing", "03N61", "STATUS_03N61", "The use of `OPTIONAL` is redundant as `CALL { %s }` is a void procedure.", "redundant optional procedure", "STATUS_03N62", "03N62", "redundant optional subquery", "03N90", "STATUS_03N90", "The disconnected pattern { %s } builds a cartesian product. A cartesian product may produce a large amount of data and slow down query processing.", +"cartesian product", "03N91", "STATUS_03N91", "The provided pattern { %s } is unbounded. Shortest path with an unbounded pattern may result in long execution times. Use an upper limit (e.g. \'[*..5]\') on the number of node hops in your pattern.", "unbounded variable length pattern", "03N92", "STATUS_03N92", "The query runs with exhaustive shortest path due to the existential predicate(s) { %s }. It may be possible to use \'WITH\' to separate the \'MATCH\' from the existential predicate(s).", "exhaustive shortest path", +"03N93", "STATUS_03N93", "\'LOAD CSV\' in combination with \'MATCH\' or \'MERGE\' on a label that does not have an index may result in long execution times. Consider adding an index for label { %s }.", "no applicable index", "STATUS_03N94", "03N94", "The query execution plan contains the \'Eager\' operator. \'LOAD CSV\' in combination with \'Eager\' can consume a lot of memory.", "eager operator", "03N95", "STATUS_03N95", "An index already exists on the relationship type or the label(s) { %s }. It is not possible to use indexes for dynamic properties. Consider using static properties.", +"dynamic property", "03N96", "STATUS_03N96", "Failed to generate code, falling back to interpreted { %s } engine. A stacktrace can be found in the debug.log. Cause: { %s }.", "code generation failed", "STATUS_08000", "08000", "STATUS_08007", "08007", "transaction resolution unknown", "08N00", "STATUS_08N00", "Unable to connect to database { %s }. Unable to get bolt address of the leader. Check the status of the database. Retrying your request at a later time may succeed.", "unable to connect to database", "08N01", +"STATUS_08N01", "Unable to write to database { %s } on this server. Server-side routing is disabled. Either connect to the database leader directly or enable server-side routing by setting \'{ %s }=true\'.", "unable to write to database", "08N02", "STATUS_08N02", "Unable to connect to database { %s }. Server-side routing is disabled. Either connect to { %s } directly, or enable server-side routing by setting \'{ %s }=true\'.", "unable to route to database", "08N03", "STATUS_08N03", "Failed to write to graph { %s }. Check the defined access mode in both driver and database.", +"failed to write to graph", "08N04", "STATUS_08N04", "Routing with { %s } is not supported in embedded sessions. Connect to the database directly or try running the query using a Neo4j driver or the HTTP API.", "unable to route use clause", "STATUS_08N05", "08N05", "Routing administration commands is not supported in embedded sessions. Connect to the system database directly or try running the query using a Neo4j driver or the HTTP API.", "unable to route administration command", "STATUS_08N06", "08N06", "General network protocol error.", +"protocol error", "STATUS_08N07", "08N07", "This member is not the leader.", "not the leader", "STATUS_08N08", "08N08", "This database is read only on this server.", "database is read only", "08N09", "STATUS_08N09", "The database { %s } is currently unavailable. Check the database status. Retry your request at a later time.", "database unavailable", "08N10", "STATUS_08N10", "Message { %s } cannot be handled by session in the { %s } state.", "invalid server state", "STATUS_08N11", "08N11", "The request is invalid and could not be processed by the server. See cause for further details.", +"request error", "STATUS_08N12", "08N12", "Failed to parse the supplied bookmark. Verify it is correct or check the debug log for more information.", "failed to parse bookmark", "08N13", "STATUS_08N13", "The database { %s } is not up to the requested bookmark { %s }. The latest transaction ID is { %s }.", "database not up to requested bookmark", "08N14", "STATUS_08N14", "Unable to provide a routing table for the database identifed by the alias { %s } because the request comes from another alias { %s } and alias chains are not permitted.", +"alias chains are not permitted", "08N15", "STATUS_08N15", "Policy definition of the routing policy { %s } could not be found. Verify that the spelling is correct.", "no such routing policy", "08N16", "STATUS_08N16", "Remote execution failed with message { %s }.", "general driver client error", "08N17", "STATUS_08N17", "general driver transient error", "08N18", "STATUS_08N18", "general driver database error", "STATUS_22000", "22000", "STATUS_22001", "22001", "22003", "STATUS_22003", "The numeric value { %s } is outside the required range.", +"numeric value out of range", "STATUS_22004", "22004", "null value not allowed", "STATUS_22007", "22007", "invalid date, time, or datetime format", "STATUS_22008", "22008", "datetime field overflow", "STATUS_22011", "22011", "substring error", "STATUS_22012", "22012", "division by zero", "STATUS_22015", "22015", "interval field overflow", "22018", "STATUS_22018", "The character value { %s } is an invalid argument for the specified cast.", "invalid character value for cast", "2201E", "STATUS_2201E", "The value { %s } is an invalid argument for the specified natural logarithm.", +"invalid argument for natural logarithm", "2201F", "STATUS_2201F", "The value { %s } is an invalid argument for the specified power function.", "invalid argument for power function", "STATUS_22027", "22027", "trim error", "STATUS_2202F", "2202F", "array data, right truncation", "STATUS_22G02", "22G02", "negative limit value", "STATUS_22G03", "22G03", "invalid value type", "STATUS_22G04", "22G04", "values not comparable", "STATUS_22G05", "22G05", "invalid date, time, or datetime function field name", "STATUS_22G06", +"22G06", "invalid datetime function value", "STATUS_22G07", "22G07", "invalid duration function field name", "STATUS_22G0B", "22G0B", "list data, right truncation", "STATUS_22G0C", "22G0C", "list element error", "STATUS_22G0F", "22G0F", "invalid number of paths or groups", "22G0H", "STATUS_22G0H", "The duration format { %s } is invalid.", "invalid duration format", "STATUS_22G0M", "22G0M", "multiple assignments to a graph element property", "STATUS_22G0N", "22G0N", "number of node labels below supported minimum", +"STATUS_22G0P", "22G0P", "number of node labels exceeds supported maximum", "STATUS_22G0Q", "22G0Q", "number of edge labels below supported minimum", "STATUS_22G0R", "22G0R", "number of edge labels exceeds supported maximum", "STATUS_22G0S", "22G0S", "number of node properties exceeds supported maximum", "STATUS_22G0T", "22G0T", "number of edge properties exceeds supported maximum", "STATUS_22G0U", "22G0U", "record fields do not match", "STATUS_22G0V", "22G0V", "reference value, invalid base type", "STATUS_22G0W", +"22G0W", "reference value, invalid constrained type", "STATUS_22G0X", "22G0X", "record data, field unassignable", "STATUS_22G0Y", "22G0Y", "record data, field missing", "STATUS_22G0Z", "22G0Z", "malformed path", "STATUS_22G10", "22G10", "path data, right truncation", "STATUS_22G11", "22G11", "reference value, referent deleted", "STATUS_22G13", "22G13", "invalid group variable value", "STATUS_22G14", "22G14", "incompatible temporal instant unit groups", "STATUS_22N00", "22N00", "The provided value is unsupported and cannot be processed.", +"unsupported value", "22N01", "STATUS_22N01", "Expected the value { %s } to be of type { %s }, but was of type { %s }.", "invalid type", "22N02", "STATUS_22N02", "Expected { %s } to be a positive number but found { %s } instead.", "specified negative numeric value", "22N03", "STATUS_22N03", "Expected { %s } to be of type { %s } and in the range { %s } to { %s } but found { %s }.", "specified numeric value out of range", "22N04", "STATUS_22N04", "Invalid input { %s } for { %s }. Expected { %s }.", "invalid input value", +"22N05", "STATUS_22N05", "Invalid input { %s } for { %s }.", "input failed validation", "22N06", "STATUS_22N06", "Invalid input. { %s } needs to be specified.", "empty input string", "22N07", "STATUS_22N07", "Invalid pre-parser option(s): { %s }.", "invalid pre-parser option key", "22N08", "STATUS_22N08", "Invalid pre-parser option, cannot combine { %s } with { %s }.", "invalid pre-parser combination", "22N09", "STATUS_22N09", "Invalid pre-parser option, cannot specify multiple conflicting values for { %s }.", +"conflicting pre-parser combination", "22N10", "STATUS_22N10", "Invalid pre-parser option, specified { %s } is not valid for option { %s }. Valid options are: { %s }.", "invalid pre-parser option value", "22N11", "STATUS_22N11", "Invalid argument: cannot process { %s }.", "invalid argument", "22N12", "STATUS_22N12", "STATUS_22N13", "22N13", "Specified time zones must include a date component.", "invalid time zone", "22N14", "STATUS_22N14", "Cannot select both { %s } and { %s }.", "invalid temporal value combination", +"22N15", "STATUS_22N15", "Cannot read the specified { %s } component from { %s }.", "invalid temporal component", "22N16", "STATUS_22N16", "Importing entity values to a graph with a USE clause is not supported. Attempted to import { %s } to { %s }.", "invalid import value", "22N18", "STATUS_22N18", "A { %s } POINT must contain { %s }.", "incomplete spatial value", "STATUS_22N19", "22N19", "A POINT must contain either \'x\' and \'y\', or \'latitude\' and \'longitude\'.", "invalid spatial value", "22N20", "STATUS_22N20", +"Cannot create POINT with { %s }D coordinate reference system (CRS) and { %s } coordinates. Use the equivalent { %s }D coordinate reference system instead.", "invalid spatial value dimensions", "22N21", "STATUS_22N21", "Unsupported coordinate reference system (CRS): { %s }.", "unsupported coordinate reference system", "STATUS_22N22", "22N22", "Cannot specify both coordinate reference system (CRS) and spatial reference identifier (SRID).", "invalid spatial value combination", "22N23", "STATUS_22N23", "Cannot create WGS84 POINT with invalid coordinate: { %s }. The valid range for the latitude coordinate is [-90, 90].", +"invalid latitude value", "22N24", "STATUS_22N24", "Cannot construct a { %s } from { %s }.", "invalid coordinate arguments", "22N25", "STATUS_22N25", "invalid temporal arguments", "STATUS_22N26", "22N26", "Unknown rounding mode. Valid values are: CEILING, FLOOR, UP, DOWN, HALF_EVEN, HALF_UP, HALF_DOWN, UNNECESSARY.", "unsupported rounding mode", "22N27", "STATUS_22N27", "Invalid input { %s } for { %s }. Expected to be { %s }.", "invalid entity type", "22N28", "STATUS_22N28", "The result of the operation { %s } has caused an overflow.", +"overflow error", "STATUS_22N29", "22N29", "Unknown coordinate reference system (CRS).", "unknown coordinate reference system", "STATUS_22N30", "22N30", "At least one temporal unit must be specified.", "missing temporal unit", "STATUS_22N31", "22N31", "\'MERGE\' cannot be used with graph element property values that are null or NaN.", "invalid properties in merge pattern", "STATUS_22N32", "22N32", "\'ORDER BY\' expressions must be deterministic.", "non-deterministic sort expression", "22N33", "STATUS_22N33", +"Shortest path expressions must contain start and end nodes. Cannot find: { %s }.", "invalid shortest path expression", "22N34", "STATUS_22N34", "Cannot use the { %s } function inside an aggregate function.", "invalid use of aggregate function", "22N35", "STATUS_22N35", "Cannot parse { %s } as a DATE. Calendar dates need to be specified using the format \'YYYY-MM\', while ordinal dates need to be specified using the format \'YYYY-DDD\'.", "invalid date format", "22N36", "STATUS_22N36", "Cannot parse { %s } as a { %s }.", +"invalid temporal format", "22N37", "STATUS_22N37", "Cannot coerce { %s } to { %s }.", "invalid coercion", "22N38", "STATUS_22N38", "Invalid argument to the function { %s }.", "invalid function argument", "22N39", "STATUS_22N39", "Value { %s } cannot be stored in properties.", "unsupported property value type", "22N40", "STATUS_22N40", "Cannot assign { %s } of a { %s }.", "non-assignable temporal component", "22N41", "STATUS_22N41", "The \'MERGE\' clause did not find a matching node { %s } and cannot create a new node due to conflicts with existing uniqueness constraints.", "merge node uniqueness constraint violation", "22N42", "STATUS_22N42", "The \'MERGE\' clause did not find a matching relationship { %s } and cannot create a new relationship due to conflicts with existing uniqueness constraints.", "merge relationship uniqueness constraint violation", "22N43", "STATUS_22N43", "Could not load external resource from { %s }.", "unable to load external resource", "STATUS_22N44", "22N44", "Parallel runtime has been disabled, enable it or upgrade to a bigger Aura instance.", "parallel runtime disabled", -"22N45", "STATUS_22N45", "The { %s } feature is not supported by Neo4j Community Edition.", "feature not supported on Neo4j Community Edition", "STATUS_22N46", "22N46", "Parallel runtime does not support updating queries or a change in the state of transactions. Use another runtime.", "unsupported use of parallel runtime", "STATUS_22N47", "22N47", "No workers are configured for the parallel runtime. Set \'server.cypher.parallel.worker_limit\' to a larger value.", "invalid parallel runtime configuration", "22N48", -"STATUS_22N48", "Cannot use the specified runtime { %s } due to { %s }. Use another runtime.", "unable to use specified runtime", "STATUS_22N49", "22N49", "Cannot read a CSV field larger than the set buffer size. Ensure the field does not have an unterminated quote, or increase the buffer size via \'dbms.import.csv.buffer_size\'.", "CSV buffer size overflow", "22N51", "STATUS_22N51", "A [composite] database or alias with the name { %s } does not exist. Verify that the spelling is correct.", "database or alias does not exist", -"STATUS_22N52", "22N52", "\'PROFILE\' and \'EXPLAIN\' cannot be combined.", "invalid combination of PROFILE and EXPLAIN", "STATUS_22N53", "22N53", "Cannot \'PROFILE\' query before results are materialized.", "invalid use of PROFILE", "22N54", "STATUS_22N54", "Multiple conflicting entries specified for { %s }.", "invalid map", "22N55", "STATUS_22N55", "Map requires key { %s } but was missing from field { %s }.", "required key missing from map", "22N56", "STATUS_22N56", "Protocol message length limit exceeded (limit: { %s }).", -"protocol message length limit overflow", "22N57", "STATUS_22N57", "Protocol type is invalid. Invalid number of struct components (received { %s } but expected { %s }).", "invalid protocol type", "22N58", "STATUS_22N58", "invalid spatial component", "22N59", "STATUS_22N59", "The { %s } token with id { %s } does not exist.", "token does not exist", "22N62", "STATUS_22N62", "The relationship type { %s } does not exist.", "22N63", "STATUS_22N63", "The property key { %s } does not exist.", "22N64", "STATUS_22N64", -"The constraint { %s } does not exist.", "constraint does not exist", "22N65", "STATUS_22N65", "An equivalent constraint already exists: { %s }", "equivalent constraint already exists", "22N66", "STATUS_22N66", "A conflicting constraint already exists: { %s }", "conflicting constraint already exists", "22N67", "STATUS_22N67", "A constraint with the same name already exists: { %s }", "duplicated constraint name", "STATUS_22N68", "22N68", "Dependent constraints cannot be managed individually and must be managed together with its graph type.", -"dependent constraint managed individually", "22N69", "STATUS_22N69", "The index specified by { %s } does not exist.", "index does not exist", "22N70", "STATUS_22N70", "An equivalent index already exists: { %s }", "equivalent index already exists", "22N71", "STATUS_22N71", "An index with the same name already exists: { %s }", "index with the same name already exists", "STATUS_22N72", "22N72", "A requested operation can not be performed on the specified index because the index is part of a constraint.", "index required by existing constraint", -"22N73", "STATUS_22N73", "Constraint conflicts with already existing index { %s }.", "constraint conflicts with existing index", "22N74", "STATUS_22N74", "An index that belongs to the constraint { %s } contains a conflicting index.", "index conflicts with existing constraint", "22N75", "STATUS_22N75", "The constraint specified by { %s } includes a label, relationship type, a property key with name { %s } more than once.", "constraint contains duplicated tokens", "22N76", "STATUS_22N76", "The index specified by { %s } includes a label, relationship type, a property key with name { %s } more than once.", -"index contains duplicated tokens", "22N77", "STATUS_22N77", "{ %s } ({ %s }) with { %s } { %s } must have the following properties: { %s }.", "property presence verification failed", "22N78", "STATUS_22N78", "{ %s } ({ %s }) with { %s } { %s } must have the property { %s } with value type { %s }.", "property type verification failed", "22N79", "STATUS_22N79", "Both { %s } ({ %s }) and { %s } ({ %s }) have the same value for property { %s }.", "property uniqueness verification failed", "22N81", "STATUS_22N81", -"Invalid input: { %s } is not supported in { %s }.", "expression type unsupported here", "22N82", "STATUS_22N82", "Input { %s } contains invalid characters for { %s }. Allowed characters are { %s }. To use these characters, the input needs to be quoted using backticks.", "input contains invalid characters", "22N83", "STATUS_22N83", "Expected name to contain at most { %s } components separated by \'.\'.", "input consists of too many components", "22N84", "STATUS_22N84", "Expected the string to be no more than { %s } characters long.", -"string too long", "22N85", "STATUS_22N85", "Expected the string to be at least { %s } characters long.", "string too short", "STATUS_22N86", "22N86", "Expected a nonzero number.", "numeric range 0 disallowed", "STATUS_22N87", "22N87", "Expected a number that is zero or greater.", "numeric range 0 or greater allowed", "22N88", "STATUS_22N88", "{ %s } is not a valid CIDR IP.", "not a valid CIDR IP", "STATUS_22N89", "22N89", "Expected the new password to be different from the old password.", "new password cannot be the same as the old password", -"22N90", "STATUS_22N90", "{ %s } is not supported in property type constraints.", "property type unsupported in constraint", "22N91", "STATUS_22N91", "Failed to alter the specified database alias { %s }. Altering remote alias to a local alias or vice versa is not supported. Drop and recreate the alias instead.", "cannot convert alias local to remote or remote to local", "STATUS_22N92", "22N92", "This query requires a RETURN clause.", "missing RETURN", "STATUS_22N93", "22N93", "A required YIELD clause is missing.", -"missing YIELD", "STATUS_22N94", "22N94", "\'YIELD *\' is not supported in this context. Explicitly specify which columns to yield.", "invalid YIELD *", "STATUS_22N95", "22N95", "Invalid JSON input. Please check the format.", "parsing JSON exception", "STATUS_22N96", "22N96", "Unable to map the JSON input. Please verify the structure.", "mapping JSON exception", "22N97", "STATUS_22N97", "Unexpected struct tag: { %s }.", "unexpected struct tag", "22N98", "STATUS_22N98", "Unable to deserialize request. Expected first field to be { %s }, but was \'{ %s }\'.", -"wrong first field during deserialization", "22N99", "STATUS_22N99", "Unable to deserialize request. Expected { %s }, found { %s }.", "wrong token during deserialization", "STATUS_22NA0", "22NA0", "Failed to administer property rule.", "invalid property based access control rule", "22NA1", "STATUS_22NA1", "The property { %s } must appear on the left hand side of the { %s } operator.", "invalid property based access control rule involving non-comutative expressions", "22NA2", "STATUS_22NA2", "The expression: { %s } is not supported. Property rules can only contain one property.", -"invalid property based access control rule involving multiple properties", "STATUS_22NA3", "22NA3", "\'NaN\' is not supported for property-based access control.", "invalid property based access control rule involving NaN", "22NA4", "STATUS_22NA4", "The property value access rule pattern { %s } always evaluates to \'NULL\'.", "invalid property based access control rule involving comparison with NULL", "22NA5", "STATUS_22NA5", "The property value access rule pattern { %s } always evaluates to \'NULL\'. Use `IS NULL\' instead.", -"invalid property based access control rule involving IS NULL", "22NA6", "STATUS_22NA6", "The property value access rule pattern { %s } always evaluates to \'NULL\'. Use \'IS NOT NULL\' instead.", "invalid property based access control rule involving IS NOT NULL", "22NA7", "STATUS_22NA7", "The expression: { %s } is not supported. Only single, literal-based predicate expressions are allowed for property-based access control.", "invalid property based access control rule involving nontrivial predicates", "22NA8", -"STATUS_22NA8", "Underlying error: { %s }", "parsing JSON failure", "STATUS_22NFF", "22NFF", "The referent of the specified reference does not exist.", "referent does not exist", "STATUS_25000", "25000", "STATUS_25G01", "25G01", "active GQL-transaction", "STATUS_25G02", "25G02", "catalog and data statement mixing not supported", "STATUS_25G03", "25G03", "read-only GQL-transaction", "STATUS_25G04", "25G04", "accessing multiple graphs not supported", "25N01", "STATUS_25N01", "Failed to execute the query { %s } due to conflicting statement types (read query, write query, schema modification, or administration command). To execute queries in the same transaction, they must be either of the same type, or be a combination of schema modifications and read commands.", +"STATUS_22N46", "22N46", "Parallel runtime does not support updating queries or a change in the state of transactions. Use another runtime.", "unsupported use of parallel runtime", "STATUS_22N47", "22N47", "No workers are configured for the parallel runtime. Set \'server.cypher.parallel.worker_limit\' to a larger value.", "invalid parallel runtime configuration", "22N48", "STATUS_22N48", "Cannot use the specified runtime { %s } due to { %s }. Use another runtime.", "unable to use specified runtime", "STATUS_22N49", +"22N49", "Cannot read a CSV field larger than the set buffer size. Ensure the field does not have an unterminated quote, or increase the buffer size via \'dbms.import.csv.buffer_size\'.", "CSV buffer size overflow", "22N51", "STATUS_22N51", "A [composite] database or alias with the name { %s } does not exist. Verify that the spelling is correct.", "database or alias does not exist", "STATUS_22N52", "22N52", "\'PROFILE\' and \'EXPLAIN\' cannot be combined.", "invalid combination of PROFILE and EXPLAIN", "STATUS_22N53", +"22N53", "Cannot \'PROFILE\' query before results are materialized.", "invalid use of PROFILE", "22N54", "STATUS_22N54", "Multiple conflicting entries specified for { %s }.", "invalid map", "22N55", "STATUS_22N55", "Map requires key { %s } but was missing from field { %s }.", "required key missing from map", "22N56", "STATUS_22N56", "Protocol message length limit exceeded (limit: { %s }).", "protocol message length limit overflow", "22N57", "STATUS_22N57", "Protocol type is invalid. Invalid number of struct components (received { %s } but expected { %s }).", +"invalid protocol type", "22N58", "STATUS_22N58", "invalid spatial component", "22N59", "STATUS_22N59", "The { %s } token with id { %s } does not exist.", "token does not exist", "22N62", "STATUS_22N62", "The relationship type { %s } does not exist.", "22N63", "STATUS_22N63", "The property key { %s } does not exist.", "22N64", "STATUS_22N64", "The constraint { %s } does not exist.", "constraint does not exist", "22N65", "STATUS_22N65", "An equivalent constraint already exists: { %s }", "equivalent constraint already exists", +"22N66", "STATUS_22N66", "A conflicting constraint already exists: { %s }", "conflicting constraint already exists", "22N67", "STATUS_22N67", "A constraint with the same name already exists: { %s }", "duplicated constraint name", "STATUS_22N68", "22N68", "Dependent constraints cannot be managed individually and must be managed together with its graph type.", "dependent constraint managed individually", "22N69", "STATUS_22N69", "The index specified by { %s } does not exist.", "index does not exist", "22N70", +"STATUS_22N70", "An equivalent index already exists: { %s }", "equivalent index already exists", "22N71", "STATUS_22N71", "An index with the same name already exists: { %s }", "index with the same name already exists", "22N73", "STATUS_22N73", "Constraint conflicts with already existing index { %s }.", "constraint conflicts with existing index", "22N74", "STATUS_22N74", "An index that belongs to the constraint { %s } contains a conflicting index.", "index conflicts with existing constraint", "22N75", "STATUS_22N75", +"The constraint specified by { %s } includes a label, relationship type, a property key with name { %s } more than once.", "constraint contains duplicated tokens", "22N76", "STATUS_22N76", "The index specified by { %s } includes a label, relationship type, a property key with name { %s } more than once.", "index contains duplicated tokens", "22N77", "STATUS_22N77", "{ %s } ({ %s }) with { %s } { %s } must have the following properties: { %s }.", "property presence verification failed", "22N78", "STATUS_22N78", +"{ %s } ({ %s }) with { %s } { %s } must have the property { %s } with value type { %s }.", "property type verification failed", "22N79", "STATUS_22N79", "Both { %s } ({ %s }) and { %s } ({ %s }) have the same value for property { %s }.", "property uniqueness verification failed", "22N81", "STATUS_22N81", "Invalid input: { %s } is not supported in { %s }.", "expression type unsupported here", "22N82", "STATUS_22N82", "Input { %s } contains invalid characters for { %s }. Special characters may require that the input is quoted using backticks.", +"input contains invalid characters", "22N83", "STATUS_22N83", "Expected name to contain at most { %s } components separated by \'.\'.", "input consists of too many components", "22N84", "STATUS_22N84", "Expected the string to be no more than { %s } characters long.", "string too long", "22N85", "STATUS_22N85", "Expected the string to be at least { %s } characters long.", "string too short", "STATUS_22N86", "22N86", "Expected a nonzero number.", "numeric range 0 disallowed", "STATUS_22N87", "22N87", "Expected a number that is zero or greater.", +"numeric range 0 or greater allowed", "22N88", "STATUS_22N88", "{ %s } is not a valid CIDR IP.", "not a valid CIDR IP", "STATUS_22N89", "22N89", "Expected the new password to be different from the old password.", "new password cannot be the same as the old password", "22N90", "STATUS_22N90", "{ %s } is not supported in property type constraints.", "property type unsupported in constraint", "22N91", "STATUS_22N91", "Failed to alter the specified database alias { %s }. Altering remote alias to a local alias or vice versa is not supported. Drop and recreate the alias instead.", +"cannot convert alias local to remote or remote to local", "STATUS_22N92", "22N92", "This query requires a RETURN clause.", "missing RETURN", "STATUS_22N93", "22N93", "A required YIELD clause is missing.", "missing YIELD", "STATUS_22N94", "22N94", "\'YIELD *\' is not supported in this context. Explicitly specify which columns to yield.", "invalid YIELD *", "STATUS_22N95", "22N95", "Invalid JSON input. Please check the format.", "parsing JSON exception", "STATUS_22N96", "22N96", "Unable to map the JSON input. Please verify the structure.", +"mapping JSON exception", "22N97", "STATUS_22N97", "Unexpected struct tag: { %s }.", "unexpected struct tag", "22N98", "STATUS_22N98", "Unable to deserialize request. Expected first field to be { %s }, but was \'{ %s }\'.", "wrong first field during deserialization", "22N99", "STATUS_22N99", "Unable to deserialize request. Expected { %s }, found { %s }.", "wrong token during deserialization", "STATUS_22NA0", "22NA0", "Failed to administer property rule.", "invalid property based access control rule", "22NA1", +"STATUS_22NA1", "The property { %s } must appear on the left hand side of the { %s } operator.", "invalid property based access control rule involving non-commutative expressions", "22NA2", "STATUS_22NA2", "The expression: { %s } is not supported. Property rules can only contain one property.", "invalid property based access control rule involving multiple properties", "STATUS_22NA3", "22NA3", "\'NaN\' is not supported for property-based access control.", "invalid property based access control rule involving NaN", +"22NA4", "STATUS_22NA4", "The property value access rule pattern { %s } always evaluates to \'NULL\'.", "invalid property based access control rule involving comparison with NULL", "22NA5", "STATUS_22NA5", "The property value access rule pattern { %s } always evaluates to \'NULL\'. Use `IS NULL\' instead.", "invalid property based access control rule involving IS NULL", "22NA6", "STATUS_22NA6", "The property value access rule pattern { %s } always evaluates to \'NULL\'. Use \'IS NOT NULL\' instead.", "invalid property based access control rule involving IS NOT NULL", +"22NA7", "STATUS_22NA7", "The expression: { %s } is not supported. Only single, literal-based predicate expressions are allowed for property-based access control.", "invalid property based access control rule involving nontrivial predicates", "22NA8", "STATUS_22NA8", "Underlying error: { %s }", "parsing JSON failure", "22NB0", "STATUS_22NB0", "The property value access rule pattern { %s } always evaluates to \'NULL\'. Use `WHERE` syntax in combination with `IS NULL` instead.", "invalid property based access control rule involving WHERE and IS NULL", +"22NB1", "STATUS_22NB1", "Type mismatch: expected to be { %s } but was { %s }.", "type mismatch", "STATUS_25000", "25000", "STATUS_25G01", "25G01", "active GQL-transaction", "STATUS_25G02", "25G02", "catalog and data statement mixing not supported", "STATUS_25G03", "25G03", "read-only GQL-transaction", "STATUS_25G04", "25G04", "accessing multiple graphs not supported", "25N01", "STATUS_25N01", "Failed to execute the query { %s } due to conflicting statement types (read query, write query, schema modification, or administration command). To execute queries in the same transaction, they must be either of the same type, or be a combination of schema modifications and read commands.", "invalid combination of statement types", "STATUS_25N02", "25N02", "Unable to complete transaction. See debug log for details.", "unable to complete transaction", "STATUS_25N03", "25N03", "Transaction is being used concurrently by another request.", "concurrent access violation", "25N04", "STATUS_25N04", "Transaction { %s } does not exist.", "specified transaction does not exist", "STATUS_25N05", "25N05", "Transaction has been terminated or closed.", "transaction terminated or closed", "STATUS_25N06", "25N06", "Failed to start transaction. See debug log for details.", "transaction start failed", "STATUS_25N07", "25N07", "Failed to start constituent transaction. See debug log for details.", "constituent transaction start failed", "STATUS_25N08", "25N08", "The lease for the transaction is no longer valid.", "invalid transaction lease", "STATUS_25N09", "25N09", "The transaction failed due to an internal error.", "internal transaction failure", "STATUS_25N11", "25N11", "There was a conflict detected between the transaction state and applied updates. Please retry the transaction.", "conflicting transaction state", "25N12", "STATUS_25N12", "Index { %s } was dropped in this transaction and cannot be used.", "index was dropped", "25N13", "STATUS_25N13", "A { %s } was accessed after being deleted in this transaction. Verify the transaction statements.", "cannot access entity after removal", "STATUS_2D000", "2D000", "STATUS_2DN01", "2DN01", "Failed to commit transaction. See debug log for details.", "commit failed", "STATUS_2DN02", "2DN02", "Failed to commit constituent transaction. See debug log for details.", @@ -367016,219 +294658,130 @@ $rt_stringPool(["Can\'t enter monitor from another thread synchronously", "Defau "invalid use of MATCH", "42I32", "STATUS_42I32", "Node and relationship pattern predicates cannot be used in a { %s } clause. They can only be used in a `MATCH` clause or inside a pattern comprehension.", "invalid use of node and relationship pattern predicate", "STATUS_42I33", "42I33", "Closed Dynamic Union types cannot be appended with \'NOT NULL\', specify \'NOT NULL\' on inner types instead.", "invalid use of NOT NULL", "STATUS_42I34", "42I34", "A pattern expression can only be used to test the existence of a pattern. Use a pattern comprehension instead.", "invalid use of pattern expression", "STATUS_42I35", "42I35", "Relationship type expressions can only be used in \'MATCH ...\'.", "invalid use of relationship type expression", "STATUS_42I36", "42I36", "\'REPORT STATUS\' can only be used when specifying \'ON ERROR CONTINUE\' or \'ON ERROR BREAK\'.", "invalid use of REPORT STATUS", "STATUS_42I37", "42I37", "\'RETURN *\' is not allowed when there are no variables in scope.", "invalid use of RETURN *", "STATUS_42I38", "42I38", "\'RETURN ...\' can only be used at the end of a query or subquery.", "invalid use of RETURN", "42I39", "STATUS_42I39", "Mixing the { %s } function with path selectors or explicit match modes is not allowed.", "invalid use of shortest path function", "STATUS_42I40", "42I40", "UNION and UNION ALL cannot be combined.", "invalid use of UNION and UNION ALL", "42I41", "STATUS_42I41", "Variable length relationships cannot be used in { %s }.", "invalid use of variable length relationship", "STATUS_42I42", "42I42", "Cannot use YIELD on a call to a void procedure.", "invalid use of YIELD", -"STATUS_42I43", "42I43", "\'YIELD *\' can only be used with a standalone procedure call.", "invalid use of YIELD *", "STATUS_42I44", "42I44", "Cannot use a join hint for a single node pattern.", "invalid joint hint", "42I45", "STATUS_42I45", "Multiple path patterns cannot be used in the same clause in combination with a selective path selector. { %s }", "invalid use of multiple path patterns", "STATUS_42I46", "42I46", "Node pattern pairs are only supported for quantified path patterns.", "invalid use of a node pattern pair", -"42I47", "STATUS_42I47", "Parser Error: { %s }.", "parser error", "STATUS_42I48", "42I48", "Subqueries are not allowed in a MERGE clause.", "invalid use of a subquery in MERGE", "STATUS_42I49", "42I49", "Unknown inequality operator \'!=\'. The operator for inequality in Cypher is \'<>\'.", "invalid inequality operator", "42I50", "STATUS_42I50", "Invalid input { %s }... A { %s } name cannot be longer than { %s }.", "token name too long", "42N00", "STATUS_42N00", "The database { %s } was not found. Verify that the spelling is correct.", -"no such database", "42N01", "STATUS_42N01", "The constituent graph { %s } was not found in the in composite database { %s }. Verify that the spelling is correct.", "no such constituent graph exists in composite database", "STATUS_42N02", "42N02", "Writing in read access mode not allowed.", "writing in read access mode", "STATUS_42N03", "42N03", "Writing to multiple graphs in the same transaction is not allowed. Use CALL IN TRANSACTION or create separate transactions in your application.", "writing to multiple graphs", -"42N04", "STATUS_42N04", "Failed to access database identified by { %s } while connected to session database { %s }. Connect to { %s } directly.", "unsupported access of composite database", "42N05", "STATUS_42N05", "Failed to access database identified by { %s } while connected to composite session database { %s }. Connect to { %s } directly or create an alias in the composite database.", "unsupported access of standard database", "42N06", "STATUS_42N06", "{ %s } is not supported on composite databases.", "unsupported action on composite database", -"42N07", "STATUS_42N07", "The variable { %s } is shadowing a variable with the same name from the outer scope and needs to be renamed.", "variable shadowing", "42N08", "STATUS_42N08", "The procedure or function { %s } was not registered for this database instance. Verify that the spelling is correct.", "no such procedure or function", "42N09", "STATUS_42N09", "A user with the name { %s } was not found. Verify that the spelling is correct.", "no such user", "42N10", "STATUS_42N10", "A role with the name { %s } was not found. Verify that the spelling is correct.", -"no such role", "42N11", "STATUS_42N11", "A [composite] database or alias with the name { %s } already exists.", "database or alias already exists", "42N12", "STATUS_42N12", "A user with the name { %s } already exists.", "user already exists", "42N13", "STATUS_42N13", "A role with the name { %s } already exists.", "role already exists", "42N14", "STATUS_42N14", "{ %s } cannot be used together with { %s }.", "invalid use of command", "42N15", "STATUS_42N15", "{ %s } is a reserved keyword and cannot be used in this place.", -"invalid use of reserved keyword", "42N16", "STATUS_42N16", "Only single property { %s } are supported.", "unsupported index or constraint ", "42N17", "STATUS_42N17", "{ %s } is not allowed on the system database.", "unsupported request", "STATUS_42N18", "42N18", "The database is in read-only mode.", "read-only database", "42N19", "STATUS_42N19", "Duplicate { %s } clause.", "duplicate clause", "STATUS_42N20", "42N20", "The list range operator \'[ ]\' cannot be empty.", "empty list range operator", "42N21", "STATUS_42N21", -"Expression in { %s } must be aliased (use AS).", "unaliased return item", "STATUS_42N22", "42N22", "A COLLECT subquery must end with a single return column.", "single return column required", "42N23", "STATUS_42N23", "The aggregating function must be included in the { %s } clause for use in \'ORDER BY ...\'.", "missing reference to aggregation function", "42N24", "STATUS_42N24", "A WITH clause is required between { %s } and { %s }.", "missing WITH", "STATUS_42N25", "42N25", "Procedure call inside a query does not support naming results implicitly. Use YIELD instead.", -"42N26", "STATUS_42N26", "Multiple join hints for the same variable { %s } are not supported.", "multiple join hints on same variable", "42N28", "STATUS_42N28", "Only statically inferrable patterns and variables are allowed in { %s }.", "patterns or variables not statically inferrable", "42N29", "STATUS_42N29", "Pattern expressions are not allowed to introduce new variables: { %s }.", "unbound variables in pattern expression", "42N31", "STATUS_42N31", "Expected { %s } to be { %s } in the range { %s } to { %s } but found { %s }.", -"specified number out of range", "42N32", "STATUS_42N32", "Parameter maps cannot be used in { %s } patterns. Use a literal map instead.", "invalid use of parameter map", "STATUS_42N34", "42N34", "Path cannot be bound in a quantified path pattern.", "path bound in quantified path pattern", "42N35", "STATUS_42N35", "The path selector { %s } is not supported within quantified or parenthesized path patterns.", "unsupported path selector in path pattern", "STATUS_42N36", "42N36", "Procedure call is missing parentheses.", -"procedure call without parentheses", "STATUS_42N37", "42N37", "Relationship pattern predicates cannot be use in variable length relationships.", "invalid use of relationship pattern predicates in variable length relationships", "STATUS_42N38", "42N38", "Return items must have unique names.", "duplicate return item name", "STATUS_42N39", "42N39", "All subqueries in a UNION clause must have the same return column names.", "incompatible return columns", "42N40", "STATUS_42N40", "The { %s } function must contain one relationship pattern.", -"single relationship pattern required", "STATUS_42N41", "42N41", "The reduce function requires a \'| expression\' after the accumulator.", "missing |-expression", "STATUS_42N42", "42N42", "Sub-path assignment is not supported.", "unsupported sub-path binding", "42N44", "STATUS_42N44", "It is not possible to access the variable { %s } declared before the { %s } clause when using DISTINCT` or an aggregation.", "inaccessible variable", "STATUS_42N45", "42N45", "Unexpected end of input, expected \'CYPHER\', \'EXPLAIN\', \'PROFILE\' or a query.", -"unexpected end of input", "42N46", "STATUS_42N46", "{ %s } is not a recognized Cypher type.", "unexpected type", "STATUS_42N47", "42N47", "\'CALL { ... } IN TRANSACTIONS\' is not supported in \'... UNION ...\'.", "invalid use of UNION and CALL IN TRANSACTIONS", "42N48", "STATUS_42N48", "The function { %s } was not found. Verify that the spelling is correct.", "no such function", "42N49", "STATUS_42N49", "Unknown Normal Form: { %s }.", "unsupported normal form", "42N50", "STATUS_42N50", "The procedure { %s } was not found. Verify that the spelling is correct.", -"no such procedure", "42N52", "STATUS_42N52", "STATUS_42N53", "42N53", "The quantified path pattern may yield an infinite number of rows under match mode \'REPEATABLE ELEMENTS` Use a path selector or add an upper bound to the quantified path pattern.", "unsafe usage of repeatable elements", "42N54", "STATUS_42N54", "The match mode { %s } is not supported.", "unsupported match mode", "42N55", "STATUS_42N55", "The path selector { %s } is not supported.", "unsupported path selector", "42N56", "STATUS_42N56", "Properties are not supported in the { %s } function.", -"unsupported use of properties", "42N57", "STATUS_42N57", "{ %s } cannot contain any updating clauses.", "invalid use of data-modifications in expressions", "STATUS_42N58", "42N58", "Nested \'CALL { ... } IN TRANSACTIONS is not supported.", "unsupported use of nesting", "42N59", "STATUS_42N59", "Variable { %s } already declared.", "variable already defined", "42N62", "STATUS_42N62", "Variable { %s } not defined.", "variable not defined", "STATUS_42N63", "42N63", "All inner types in a Closed Dynamic Union must be nullable, or be appended with \'NOT NULL\'.", -"inner type with different nullability", "STATUS_42N64", "42N64", "A quantified or parenthesized path pattern must have at least one node or relationship pattern.", "at least one node or relationship required", "42N65", "STATUS_42N65", "The { %s } function requires bound node variables when it is not part of a \'MATCH ...\'.", "node variable not bound", "42N66", "STATUS_42N66", "Bound relationships are not allowed in calls to the { %s } function.", "relationship variable already bound", "42N67", "STATUS_42N67", -"Duplicated { %s } parameter.", "duplicate parameter", "42N68", "STATUS_42N68", "Variables cannot be defined more than once in a { %s } clause.", "duplicate variable definition", "42N69", "STATUS_42N69", "The { %s } function is only allowed as a top-level element and not inside an { %s }.", "function not allowed inside expression", "42N70", "STATUS_42N70", "The function { %s } requires a WHERE clause.", "function without required WHERE clause", "STATUS_42N71", "42N71", "A query must conclude with a RETURN clause, a FINISH clause, an update clause, a unit subquery call, or a procedure call without a YIELD clause.", -"incomplete query", "STATUS_42N72", "42N72", "Calling graph functions is only supported on composite databases. Use the name directly or connect to a composite database with the desired constituents.", "graph function only supported on composite databases", "STATUS_42N73", "42N73", "The USE clause must be the first clause of a query or an operand to \'... UNION ...\' . In a CALL sub-query, it can also be the second clause if the first clause is an importing WITH.", "invalid placement of USE clause", "42N74", -"STATUS_42N74", "Failed to access { %s } and { %s }. Child USE clauses must target the same graph as their parent query. Run in separate (sub)queries instead.", "invalid nested USE clause", "42N75", "STATUS_42N75", "A call to the graph function { %s } is only allowed as the top-level argument of a USE clause.", "invalid use of graph function", "42N76", "STATUS_42N76", "The hint { %s } cannot be fulfilled.", "unfulfillable hint", "42N77", "STATUS_42N77", "The hint { %s } cannot be fulfilled. The query does not contain a compatible predicate for { %s } on { %s }.", -"missing hint predicate", "42N78", "STATUS_42N78", "Node { %s } has already been bound and cannot be modified by the { %s } clause.", "variable already bound", "42N81", "STATUS_42N81", "Expected { %s }, but got { %s }.", "missing request parameter ", "42N82", "STATUS_42N82", "The database identified by { %s } has one or more aliases. Drop the aliases { %s } before dropping the database.", "cannot drop database with aliases", "STATUS_42N83", "42N83", "Cannot impersonate a user while password change required.", -"impersonation disallowed while password change required", "STATUS_42N84", "42N84", "WHERE clause without YIELD clause. Use \'TERMINATE TRANSACTION ... YIELD ... WHERE ...\'.", "TERMINATE TRANSACTION misses YIELD clause", "STATUS_42N85", "42N85", "Allowed and denied database options are mutually exclusive.", "cannot specify both allowed and denied databases", "42N86", "STATUS_42N86", "{ %s } failed. Parameterized database and graph names do not support wildcards.", "wildcard in parameter", "42N87", "STATUS_42N87", -"The database or alias name { %s } conflicts with the name { %s } of an existing database or alias.", "database or alias with similar name exists", "STATUS_42N88", "42N88", "Permission cannot be granted for \'REMOVE IMMUTABLE PRIVILEGE\'.", "cannot grant privilege", "42N89", "STATUS_42N89", "Failed evaluating the given driver settings. { %s }", "invalid driver settings map", "42N90", "STATUS_42N90", "Composite databases cannot be altered (database: { %s }).", "cannot alter immutable composite database", "42N91", -"STATUS_42N91", "Cannot index nested properties (property: { %s }).", "cannot index nested property", "STATUS_42N92", "42N92", "Cannot combine old and new auth syntax for the same auth provider.", "cannot combine old and new auth provider syntax", "STATUS_42N93", "42N93", "No auth given for user.", "missing auth clause", "STATUS_42N94", "42N94", "\'ALTER USER\' requires at least one clause.", "incomplete ALTER USER command", "STATUS_42N95", "42N95", "The combination of provider and id is already in use.", "provider-id comination already exists", -"STATUS_42N96", "42N96", "User has no auth provider. Add at least one auth provider for the user or consider suspending them.", "invalid user configuration", "42N97", "STATUS_42N97", "Clause { %s } is mandatory for auth provider { %s }.", "missing mandatory auth clause", "STATUS_42N98", "42N98", "Cannot modify the user record of the current user.", "cannot modify own user", "STATUS_42N99", "42N99", "Cannot delete the user record of the current user.", "cannot delete own user", "STATUS_42NA0", "42NA0", "Query contains operations that must be executed on the constituent.", -"operations must be executed on constituent", "STATUS_42NA1", "42NA1", "Graph access operations are not supported on composite databases.", "graph access operations on composite database", "STATUS_42NA2", "42NA2", "Database operations are not supported on composite databases.", "database operations operations on composite database", "STATUS_42NA3", "42NA3", "Schema operations are not supported on composite databases.", "schema operations operations on composite database", "STATUS_42NA4", "42NA4", "Transaction operations are not supported on composite databases.", -"transaction operations operations on composite database", "STATUS_42NA5", "42NA5", "Accessing multiple graphs in the same query is only supported on composite databases. Connect to a composite database with the desired constituents.", "accessing multiple graphs only supported on composite databases", "STATUS_42NA6", "42NA6", "Composite databases do not support `DUMP DATA`. Create a dump of each constituent database instead.", "dump is not supported on composite databases", "STATUS_42NFC", "42NFC", "Authentication and/or authorization could not be validated. See security logs for details.", +"STATUS_42I43", "42I43", "\'YIELD *\' can only be used with a standalone procedure call.", "invalid use of YIELD *", "STATUS_42I44", "42I44", "Cannot use a join hint for a single node pattern.", "invalid joint hint", "42I45", "STATUS_42I45", "Multiple path patterns cannot be used in the same clause in combination with a selective path selector.{ %s }", "invalid use of multiple path patterns", "STATUS_42I46", "42I46", "Node pattern pairs are only supported for quantified path patterns.", "invalid use of a node pattern pair", +"42I47", "STATUS_42I47", "Parser Error: { %s }.", "parser error", "STATUS_42I48", "42I48", "Subqueries are not allowed in a MERGE clause.", "invalid use of a subquery in MERGE", "STATUS_42I49", "42I49", "Unknown inequality operator \'!=\'. The operator for inequality in Cypher is \'<>\'.", "invalid inequality operator", "42I50", "STATUS_42I50", "Invalid input { %s }... A { %s } name cannot be longer than { %s }.", "token name too long", "42I51", "STATUS_42I51", "The procedure or function { %s } must have the signature: { %s }.", +"invalid call signature", "42N00", "STATUS_42N00", "The database { %s } was not found. Verify that the spelling is correct.", "no such database", "42N01", "STATUS_42N01", "The constituent graph { %s } was not found in the in composite database { %s }. Verify that the spelling is correct.", "no such constituent graph exists in composite database", "STATUS_42N02", "42N02", "Writing in read access mode not allowed.", "writing in read access mode", "STATUS_42N03", "42N03", "Writing to multiple graphs in the same transaction is not allowed. Use CALL IN TRANSACTION or create separate transactions in your application.", +"writing to multiple graphs", "42N04", "STATUS_42N04", "Failed to access database identified by { %s } while connected to session database { %s }. Connect to { %s } directly.", "unsupported access of composite database", "42N05", "STATUS_42N05", "Failed to access database identified by { %s } while connected to composite session database { %s }. Connect to { %s } directly or create an alias in the composite database.", "unsupported access of standard database", "42N06", "STATUS_42N06", "{ %s } is not supported on composite databases.", +"unsupported action on composite database", "42N07", "STATUS_42N07", "The variable { %s } is shadowing a variable with the same name from the outer scope and needs to be renamed.", "variable shadowing", "42N08", "STATUS_42N08", "The procedure or function { %s } was not registered for this database instance. Verify that the spelling is correct.", "no such procedure or function", "42N09", "STATUS_42N09", "A user with the name { %s } was not found. Verify that the spelling is correct.", "no such user", "42N10", +"STATUS_42N10", "A role with the name { %s } was not found. Verify that the spelling is correct.", "no such role", "42N11", "STATUS_42N11", "A [composite] database or alias with the name { %s } already exists.", "database or alias already exists", "42N12", "STATUS_42N12", "A user with the name { %s } already exists.", "user already exists", "42N13", "STATUS_42N13", "A role with the name { %s } already exists.", "role already exists", "42N14", "STATUS_42N14", "{ %s } cannot be used together with { %s }.", "invalid use of command", +"42N15", "STATUS_42N15", "{ %s } is a reserved keyword and cannot be used in this place.", "invalid use of reserved keyword", "42N16", "STATUS_42N16", "Only single property { %s } are supported.", "unsupported index or constraint", "42N17", "STATUS_42N17", "{ %s } is not allowed on the system database.", "unsupported request", "STATUS_42N18", "42N18", "The database is in read-only mode.", "read-only database", "42N19", "STATUS_42N19", "Duplicate { %s } clause.", "duplicate clause", "STATUS_42N20", "42N20", "The list range operator \'[ ]\' cannot be empty.", +"empty list range operator", "42N21", "STATUS_42N21", "Expression in { %s } must be aliased (use AS).", "unaliased return item", "STATUS_42N22", "42N22", "A COLLECT subquery must end with a single return column.", "single return column required", "42N23", "STATUS_42N23", "The aggregating function must be included in the { %s } clause for use in \'ORDER BY ...\'.", "missing reference to aggregation function", "42N24", "STATUS_42N24", "A WITH clause is required between { %s } and { %s }.", "missing WITH", "STATUS_42N25", +"42N25", "Procedure call inside a query does not support naming results implicitly. Use YIELD instead.", "42N26", "STATUS_42N26", "Multiple join hints for the same variable { %s } are not supported.", "multiple join hints on same variable", "42N28", "STATUS_42N28", "Only statically inferrable patterns and variables are allowed in { %s }.", "patterns or variables not statically inferrable", "42N29", "STATUS_42N29", "Pattern expressions are not allowed to introduce new variables: { %s }.", "unbound variables in pattern expression", +"42N31", "STATUS_42N31", "Expected { %s } to be { %s } in the range { %s } to { %s } but found { %s }.", "specified number out of range", "42N32", "STATUS_42N32", "Parameter maps cannot be used in { %s } patterns. Use a literal map instead.", "invalid use of parameter map", "STATUS_42N34", "42N34", "Path cannot be bound in a quantified path pattern.", "path bound in quantified path pattern", "42N35", "STATUS_42N35", "The path selector { %s } is not supported within quantified or parenthesized path patterns.", +"unsupported path selector in path pattern", "STATUS_42N36", "42N36", "Procedure call is missing parentheses.", "procedure call without parentheses", "STATUS_42N37", "42N37", "Relationship pattern predicates cannot be use in variable length relationships.", "invalid use of relationship pattern predicates in variable length relationships", "STATUS_42N38", "42N38", "Return items must have unique names.", "duplicate return item name", "STATUS_42N39", "42N39", "All subqueries in a UNION clause must have the same return column names.", +"incompatible return columns", "42N40", "STATUS_42N40", "The { %s } function must contain one relationship pattern.", "single relationship pattern required", "STATUS_42N41", "42N41", "The reduce function requires a \'| expression\' after the accumulator.", "missing |-expression", "STATUS_42N42", "42N42", "Sub-path assignment is not supported.", "unsupported sub-path binding", "42N44", "STATUS_42N44", "It is not possible to access the variable { %s } declared before the { %s } clause when using DISTINCT` or an aggregation.", +"inaccessible variable", "STATUS_42N45", "42N45", "Unexpected end of input, expected \'CYPHER\', \'EXPLAIN\', \'PROFILE\' or a query.", "unexpected end of input", "42N46", "STATUS_42N46", "{ %s } is not a recognized Cypher type.", "unexpected type", "STATUS_42N47", "42N47", "\'CALL { ... } IN TRANSACTIONS\' is not supported in \'... UNION ...\'.", "invalid use of UNION and CALL IN TRANSACTIONS", "42N48", "STATUS_42N48", "The function { %s } was not found. Verify that the spelling is correct.", "no such function", +"42N49", "STATUS_42N49", "Unknown Normal Form: { %s }.", "unsupported normal form", "42N50", "STATUS_42N50", "The procedure { %s } was not found. Verify that the spelling is correct.", "no such procedure", "42N51", "STATUS_42N51", "Invalid parameter { %s }.", "invalid parameter", "42N52", "STATUS_42N52", "STATUS_42N53", "42N53", "The quantified path pattern may yield an infinite number of rows under match mode \'REPEATABLE ELEMENTS` Use a path selector or add an upper bound to the quantified path pattern.", +"unsafe usage of repeatable elements", "42N54", "STATUS_42N54", "The match mode { %s } is not supported.", "unsupported match mode", "42N55", "STATUS_42N55", "The path selector { %s } is not supported.", "unsupported path selector", "42N56", "STATUS_42N56", "Properties are not supported in the { %s } function.", "unsupported use of properties", "42N57", "STATUS_42N57", "{ %s } cannot contain any updating clauses.", "invalid use of data-modifications in expressions", "STATUS_42N58", "42N58", "Nested \'CALL { ... } IN TRANSACTIONS is not supported.", +"unsupported use of nesting", "42N59", "STATUS_42N59", "Variable { %s } already declared.", "variable already defined", "42N62", "STATUS_42N62", "Variable { %s } not defined.", "variable not defined", "STATUS_42N63", "42N63", "All inner types in a Closed Dynamic Union must be nullable, or be appended with \'NOT NULL\'.", "inner type with different nullability", "STATUS_42N64", "42N64", "A quantified or parenthesized path pattern must have at least one node or relationship pattern.", "at least one node or relationship required", +"42N65", "STATUS_42N65", "The { %s } function requires bound node variables when it is not part of a \'MATCH ...\'.", "node variable not bound", "42N66", "STATUS_42N66", "Bound relationships are not allowed in calls to the { %s } function.", "relationship variable already bound", "42N67", "STATUS_42N67", "Duplicated { %s } parameter.", "duplicate parameter", "42N68", "STATUS_42N68", "Variables cannot be defined more than once in a { %s } clause.", "duplicate variable definition", "42N69", "STATUS_42N69", "The { %s } function is only allowed as a top-level element and not inside an { %s }.", +"function not allowed inside expression", "42N70", "STATUS_42N70", "The function { %s } requires a WHERE clause.", "function without required WHERE clause", "STATUS_42N71", "42N71", "A query must conclude with a RETURN clause, a FINISH clause, an update clause, a unit subquery call, or a procedure call without a YIELD clause.", "incomplete query", "STATUS_42N72", "42N72", "Calling graph functions is only supported on composite databases. Use the name directly or connect to a composite database with the desired constituents.", +"graph function only supported on composite databases", "STATUS_42N73", "42N73", "The USE clause must be the first clause of a query or an operand to \'... UNION ...\' . In a CALL sub-query, it can also be the second clause if the first clause is an importing WITH.", "invalid placement of USE clause", "42N74", "STATUS_42N74", "Failed to access { %s } and { %s }. Child USE clauses must target the same graph as their parent query. Run in separate (sub)queries instead.", "invalid nested USE clause", "42N75", "STATUS_42N75", +"A call to the graph function { %s } is only allowed as the top-level argument of a USE clause.", "invalid use of graph function", "42N76", "STATUS_42N76", "The hint(s) { %s } cannot be fulfilled.", "unfulfillable hints", "42N77", "STATUS_42N77", "The hint { %s } cannot be fulfilled. The query does not contain a compatible predicate for { %s } on { %s }.", "missing hint predicate", "42N78", "STATUS_42N78", "Node { %s } has already been bound and cannot be modified by the { %s } clause.", "variable already bound", +"42N81", "STATUS_42N81", "Expected { %s }, but got { %s }.", "missing request parameter ", "42N82", "STATUS_42N82", "The database identified by { %s } has one or more aliases. Drop the aliases { %s } before dropping the database.", "cannot drop database with aliases", "STATUS_42N83", "42N83", "Cannot impersonate a user while password change required.", "impersonation disallowed while password change required", "STATUS_42N84", "42N84", "WHERE clause without YIELD clause. Use \'TERMINATE TRANSACTION ... YIELD ... WHERE ...\'.", +"TERMINATE TRANSACTION misses YIELD clause", "STATUS_42N85", "42N85", "Allowed and denied database options are mutually exclusive.", "cannot specify both allowed and denied databases", "42N86", "STATUS_42N86", "{ %s } failed. Parameterized database and graph names do not support wildcards.", "wildcard in parameter", "42N87", "STATUS_42N87", "The database or alias name { %s } conflicts with the name { %s } of an existing database or alias.", "database or alias with similar name exists", "42N89", "STATUS_42N89", +"Failed evaluating the given driver settings. { %s }", "invalid driver settings map", "42N90", "STATUS_42N90", "Composite databases cannot be altered (database: { %s }).", "cannot alter immutable composite database", "42N91", "STATUS_42N91", "Cannot index nested properties (property: { %s }).", "cannot index nested property", "STATUS_42N92", "42N92", "Cannot combine old and new auth syntax for the same auth provider.", "cannot combine old and new auth provider syntax", "STATUS_42N93", "42N93", "No auth given for user.", +"missing auth clause", "STATUS_42N94", "42N94", "\'ALTER USER\' requires at least one clause.", "incomplete ALTER USER command", "STATUS_42N95", "42N95", "The combination of provider and id is already in use.", "provider-id comination already exists", "STATUS_42N96", "42N96", "User has no auth provider. Add at least one auth provider for the user or consider suspending them.", "invalid user configuration", "42N97", "STATUS_42N97", "Clause { %s } is mandatory for auth provider { %s }.", "missing mandatory auth clause", +"STATUS_42N98", "42N98", "Cannot modify the user record of the current user.", "cannot modify own user", "STATUS_42N99", "42N99", "Cannot delete the user record of the current user.", "cannot delete own user", "STATUS_42NA0", "42NA0", "Query contains operations that must be executed on the constituent.", "operations must be executed on constituent", "STATUS_42NA1", "42NA1", "Graph access operations are not supported on composite databases.", "graph access operations on composite database", "STATUS_42NA2", "42NA2", +"Database operations are not supported on composite databases.", "database operations operations on composite database", "STATUS_42NA3", "42NA3", "Schema operations are not supported on composite databases.", "schema operations operations on composite database", "STATUS_42NA4", "42NA4", "Transaction operations are not supported on composite databases.", "transaction operations operations on composite database", "STATUS_42NA5", "42NA5", "Accessing multiple graphs in the same query is only supported on composite databases. Connect to a composite database with the desired constituents.", +"accessing multiple graphs only supported on composite databases", "STATUS_42NA6", "42NA6", "Aliases are not allowed to target composite databases.", "invalid alias target", "42NA7", "STATUS_42NA7", "No database is corresponding to { %s }. Verify that the elementId is correct.", "referenced database not found", "42NA8", "STATUS_42NA8", "Invalid reference in command { %s }.", "invalid reference in command", "STATUS_42NFC", "42NFC", "Authentication and/or authorization could not be validated. See security logs for details.", "auth info validation error", "STATUS_42NFD", "42NFD", "Permission denied. The credentials you provided were valid, but must be changed before you can use this instance.", "credentials expired", "STATUS_42NFE", "42NFE", "Authentication and/or authorization info expired.", "auth info expired", "STATUS_42NFF", "42NFF", "Access denied, see the security logs for details.", "permission/access denied", "50N00", "STATUS_50N00", "Internal exception raised { %s }: { %s }", "internal error", "50N01", "STATUS_50N01", "Remote execution by { %s } raised { %s }: { %s }", -"remote execution error", "STATUS_50N05", "50N05", "Deadlock detected while trying to acquire locks. See log for more details.", "deadlock detected", "STATUS_50N07", "50N07", "Execution failed. See cause and debug log for details.", "50N08", "STATUS_50N08", "Unable to create { %s }.", "index creation failed", "50N09", "STATUS_50N09", "The server transitioned into a server state that is not valid in the current context: { %s }.", "invalid server state transition", "50N10", "STATUS_50N10", "Unable to drop { %s }.", -"index drop failed", "50N11", "STATUS_50N11", "constraint creation failed", "50N12", "STATUS_50N12", "constraint drop failed", "50N13", "STATUS_50N13", "Unable to validate constraint { %s }.", "constraint validation error", "STATUS_50N14", "50N14", "A constraint imposed by the database was violated.", "constraint violation", "50N15", "STATUS_50N15", "The system attemped to execute an unsupported operation on index { %s }. See debug.log for more information.", "unsupported index operation", "50N21", "STATUS_50N21", -"The { %s } was not found for { %s }. Verify that the spelling is correct.", "no such schema descriptor", "STATUS_50N42", "50N42", "Unexpected error has occurred. See debug log for details.", "unexpected error", "STATUS_51N00", "51N00", "Failed to register procedure/function.", "procedure registration error", "51N01", "STATUS_51N01", "The field { %s } in the class { %s } is annotated as a \'@Context\' field, but it is declared as static. \'@Context\' fields must be public, non-final and non-static.", "class field annotation should be public, non-final, and non-static", -"51N02", "STATUS_51N02", "Unable to set up injection for procedure { %s }. The field { %s } has type { %s } which is not a supported injectable component.", "unsupported injectable component type", "51N03", "STATUS_51N03", "Unable to set up injection for { %s }, failed to access field { %s }.", "unable to access field", "51N04", "STATUS_51N04", "The field { %s } on { %s } must be annotated as a \'@Context\' field in order to store its state.", "missing class field annotation", "51N05", "STATUS_51N05", "The field { %s } on { %s } must be declared non-final and public.", -"class field should be public and non-final", "51N06", "STATUS_51N06", "The argument at position { %s } in { %s } requires a \'@Name\' annotation and a non-empty name.", "missing argument name", "51N07", "STATUS_51N07", "The { %s } contains a non-default argument before a default argument. Non-default arguments are not allowed to be positioned after default arguments.", "invalid ordering of default arguments", "51N08", "STATUS_51N08", "The class { %s } must contain exactly one \'@UserAggregationResult\' method and exactly one \'@UserAggregationUpdate\' method.", -"exactly one @UserAggregationResult method and one @UserAggregationUpdate method required", "51N09", "STATUS_51N09", "The \'@UserAggregationUpdate\' method { %s } of { %s } must be public and have the return type \'void\'.", "@UserAggregationUpdate method must be public and void", "51N10", "STATUS_51N10", "The method { %s } of { %s } must be public.", "aggregation method not public", "51N11", "STATUS_51N11", "The class { %s } must be public.", "class not public", "51N12", "STATUS_51N12", "The procedure { %s } has zero output fields and must be defined as void.", -"class not void", "51N13", "STATUS_51N13", "Unable to register the procedure or function { %s } because the name is already in use.", "procedure or function name already in use", "51N14", "STATUS_51N14", "The procedure { %s } has a duplicate { %s } field, { %s }.", "duplicate field name", "51N15", "STATUS_51N15", "Type mismatch for map key. Required \'STRING\', but found { %s }.", "invalid map key type", "51N16", "STATUS_51N16", "Type mismatch for the default value. Required { %s }, but found { %s }.", "invalid default value type", -"51N17", "STATUS_51N17", "Procedures and functions cannot be defined in the root namespace, or use a reserved namespace. Use the package name instead (e.g., org.example.com.{ %s }).", "invalid procedure or function name", "51N18", "STATUS_51N18", "The method { %s } has an invalid return type. Procedures must return a stream of records, where each record is of a defined concrete class.", "invalid method return type", "51N20", "STATUS_51N20", "The field { %s } is not injectable. Ensure the field is marked as public and non-final.", -"cannot inject field ", "STATUS_51N21", "51N21", "The procedure registration failed because the procedure registry was busy. Try again.", "procedure registry is busy", "STATUS_51N22", "51N22", "Finding the shortest path for the given pattern requires an exhaustive search. To enable exhaustive searches, set \'cypher.forbid_exhaustive_shortestpath\' to false.", "exhaustive shortest path search disabled", "STATUS_51N23", "51N23", "Cannot find the shortest path when the start and end nodes are the same. To enable this behavior, set \'dbms.cypher.forbid_shortestpath_common_nodes\' to false.", -"cyclic shortest path search disabled", "STATUS_51N24", "51N24", "Could not find a query plan within given time and space limits.", "insufficient resources for plan search", "STATUS_51N25", "51N25", "Cannot compile query due to excessive updates to indexes and constraints.", "database is busy", "51N26", "STATUS_51N26", "{ %s } is not available. This implementation of Cypher does not support { %s }.", "not supported in this version", "51N27", "STATUS_51N27", "{ %s } is not supported in { %s }.", "not supported in this edition", -"51N28", "STATUS_51N28", "This Cypher command must be executed against the database { %s }.", "not supported by this database", "51N29", "STATUS_51N29", "The command { %s } must be executed on the current \'LEADER\' server.", "not supported by this server", "51N30", "STATUS_51N30", "not supported with this configuration", "51N31", "STATUS_51N31", "not supported", "STATUS_51N32", "51N32", "Server is in panic.", "server panic", "STATUS_51N33", "51N33", "This member failed to replicate transaction, try again.", -"replication error", "STATUS_51N34", "51N34", "Failed to write to the database due to a cluster leader change. Retrying your request at a later time may succeed.", "write transaction failed due to leader change", "51N35", "STATUS_51N35", "The location of { %s } has changed while the transaction was running.", "database location changed", "STATUS_51N36", "51N36", "There is not enough memory to perform the current task.", "out of memory", "STATUS_51N37", "51N37", "There is not enough stack size to perform the current task.", -"stack overflow", "STATUS_51N38", "51N38", "There are insufficient threads available for executing the current task.", "failed to acquire execution thread", "STATUS_51N39", "51N39", "Expected set of files not found on disk. Please restore from backup.", "raft log corrupted", "51N40", "STATUS_51N40", "Database { %s } failed to start. Try restarting it.", "unable to start database", "STATUS_51N41", "51N41", "Server or database admin operation not possible.", "admin operation failed ", "51N42", "STATUS_51N42", -"Unable to check if allocator { %s } is available.", "allocator availability check failed", "51N43", "STATUS_51N43", "Cannot deallocate server(s) { %s }.", "cannot deallocate servers", "51N44", "STATUS_51N44", "Cannot drop server { %s }.", "cannot drop server", "51N45", "STATUS_51N45", "Cannot cordon server { %s }.", "cannot cordon server", "51N46", "STATUS_51N46", "Cannot alter server { %s }.", "cannot alter server", "51N47", "STATUS_51N47", "Cannot rename server { %s }.", "cannot rename server", "51N48", "STATUS_51N48", -"Cannot enable server { %s }.", "cannot enable server", "51N49", "STATUS_51N49", "Cannot alter database { %s }.", "cannot alter database", "51N50", "STATUS_51N50", "Cannot recreate database { %s }.", "cannot recreate database", "51N51", "STATUS_51N51", "Cannot create database { %s }.", "cannot create database", "51N52", "STATUS_51N52", "Cannot alter database topology. Number of primaries { %s } needs to be at least 1 and may not exceed { %s }.", "number primaries out of range", "51N53", "STATUS_51N53", "Cannot alter database topology. Number of secondaries { %s } needs to be at least 0 and may not exceed { %s }.", -"number secondaries out of range", "51N54", "STATUS_51N54", "Failed to calculate reallocation for databases. { %s }", "cannot reallocate", "51N55", "STATUS_51N55", "Failed to create the database { %s }. The limit of databases is reached. Either increase the limit using the config setting { %s } or drop a database.", "cannot create additional database", "51N56", "STATUS_51N56", "The number of { %s } seeding servers { %s } is larger than the desired number of { %s } allocations { %s }.", "topology out of range", -"51N57", "STATUS_51N57", "Unexpected error while picking allocations. { %s }", "generic topology modification error", "STATUS_51N59", "51N59", "The DBMS is unable to handle the request, please retry later or contact the system operator. More information is present in the logs.", "internal resource exhaustion", "STATUS_51N60", "51N60", "The DBMS is unable to determine the enterprise license acceptance status.", "unable to check enterprise license acceptance", "51N61", "STATUS_51N61", "Index { %s } population failed.", -"index population failed", "51N62", "STATUS_51N62", "Unable to use index { %s } because it is in a failed state. See logs for more information.", "index is in a failed state", "STATUS_51N63", "51N63", "Index is not ready yet. Wait until it finishes populating and retry the transaction.", "index is still populating", "STATUS_51N64", "51N64", "The index dropped while sampling.", "index dropped while sampling", "51N65", "STATUS_51N65", "Vector index { %s } has a dimensionality of { %s }, but indexed vectors have { %s }.", -"vector index dimensionality mismatch", "STATUS_51N66", "51N66", "Insufficient resources to complete the request.", "resource exhaustion", "51N67", "STATUS_51N67", "Unexpected CDC selector { %s } at { %s }, expected selector to be a { %s } selector.", "invalid CDC selector type", "STATUS_51N68", "51N68", "Change Data Capture is not currently enabled for this database.", "CDC is disabled for this database", "51N69", "STATUS_51N69", "It is not possible to perform { %s } on the system database.", "system database is immutable", -"51N70", "STATUS_51N70", "Cannot get routing table for { %s } because Bolt is not enabled. Please update your configuration such that \'server.bolt.enabled\' is set to true.", "bolt is not enabled", "52N01", "STATUS_52N01", "Execution of the procedure { %s } timed out after { %s } { %s }.", "procedure execution timeout", "52N02", "STATUS_52N02", "Execution of the procedure { %s } failed due to a client error.", "procedure execution client error", "52N03", "STATUS_52N03", "Execution of the procedure { %s } failed due to an invalid specified execution mode { %s }.", -"invalid procedure execution mode", "52N04", "STATUS_52N04", "Temporarily could not execute the procedure { %s }. Please retry.", "transient procedure execution error", "52N05", "STATUS_52N05", "Can\'t invoke procedure on this member because it is not a secondary for database { %s }.", "cannot invoke procedure on a primary", "52N06", "STATUS_52N06", "Unexpected number of arguments (expected 0-2 but received { %s }).", "invalid number of arguments to checkConnectivity", "52N07", "STATUS_52N07", "Unrecognised port name { %s } (valid values are: { %s }.", -"invalid port argument to checkConnectivity", "52N08", "STATUS_52N08", "Unable to parse server id { %s }.", "invalid server id argument to checkConnectivity", "52N09", "STATUS_52N09", "Execution of the procedure { %s } failed due to a database error.", "procedure execution database error", "STATUS_52N10", "52N10", "An address key is included in the query string provided to the GetRoutingTableProcedure, but its value could not be parsed.", "invalid address key", "STATUS_52N11", "52N11", "An unexpected error has occurred. Please refer to the server\'s debug log for more information.", -"generic topology procedure error", "52N12", "STATUS_52N12", "The previous default database { %s } is still running.", "cannot change default database", "52N13", "STATUS_52N13", "New default database { %s } does not exist.", "new default database does not exist", "STATUS_52N14", "52N14", "System database cannot be set as default.", "system cannot be default database", "52N15", "STATUS_52N15", "Provided allocator { %s } is not available or was not initialized. Verify that the spelling is correct.", "no such allocator", -"STATUS_52N16", "52N16", "Invalid arguments to procedure.", "invalid procedure argument list", "STATUS_52N17", "52N17", "Setting/removing the quarantine marker failed.", "quarantine change failed", "52N18", "STATUS_52N18", "The number of seeding servers { %s } is larger than the defined number of allocations { %s }.", "too many seeders", "52N19", "STATUS_52N19", "The specified seeding server with id { %s } was not found. Verify that the spelling is correct.", "no such seeder", "STATUS_52N20", "52N20", "The recreation of a database is not supported when seed updating is not enabled.", -"seed updating not enabled", "STATUS_52N21", "52N21", "Failed to clean the system graph.", "failed to clean the system graph", "52N22", "STATUS_52N22", "Invalid argument { %s } for { %s } on procedure { %s }. The expected format of { %s } is { %s }.", "invalid procedure argument", "52N23", "STATUS_52N23", "The following namespaces are not reloadable: { %s }", "non-reloadable namespace", "STATUS_52N24", "52N24", "Failed to reload procedures. See logs for more information.", "failed to reload procedures", "52N25", -"STATUS_52N25", "JMX error while accessing { %s }. See logs for more information.", "JMX error", "STATUS_52N26", "52N26", "Invalid change identifier.", "invalid change identifier", "STATUS_52N27", "52N27", "The commit timestamp for the provided transaction ID does not match the one in the transaction log.", "invalid commit timestamp", "52N28", "STATUS_52N28", "{ %s } is not a valid change identifier. Transaction ID does not exist.", "invalid change identifier and transaction id", "STATUS_52N29", "52N29", "Given ChangeIdentifier describes a transaction that occurred before any enrichment records exist.", -"outdated change identifier", "STATUS_52N30", "52N30", "Given ChangeIdentifier describes a transaction that hasn\'t yet occurred.", "future change identifier", "52N31", "STATUS_52N31", "Change identifier { %s } does not belong to this database.", "wrong database", "52N32", "STATUS_52N32", "Change identifier { %s } has an invalid sequence number { %s }.", "invalid sequence number", "52N33", "STATUS_52N33", "Failed to invoke procedure/function { %s } caused by: { %s }.", "procedure invocation failed", "52N34", -"STATUS_52N34", "{ %s } is unavailable because it is sandboxed. Sandboxing is controlled by the dbms.security.procedures.unrestricted setting. Only un-restrict procedures you can trust with access to database internals.", "procedure sandboxed", "52N35", "STATUS_52N35", "Failed to compile procedure/function defined in { %s }: { %s }", "procedure compilation failed", "52U00", "STATUS_52U00", "Execution of the procedure { %s } failed due to { %s }: { %s }", "custom procedure execution error cause", "STATUS_G1000", -"G1000", "STATUS_G1001", "G1001", "edges still exist", "STATUS_G1002", "G1002", "endpoint node is deleted", "STATUS_G1003", "G1003", "endpoint node not in current working graph", "STATUS_G2000", "G2000", "RepeatedPropertyInCompositeSchema", "Unable to create index or constraint because schema had a repeated property.", "RepeatedLabelInSchema", "Unable to create index or constraint because schema had a repeated label.", "RepeatedRelationshipTypeInSchema", "Unable to create index or constraint because schema had a repeated relationship type.", -"EquivalentSchemaRuleAlreadyExists", "Unable to perform operation because an equivalent schema rule already exists.", "ConstraintAlreadyExists", "Unable to perform operation because it would clash with a pre-existing constraint.", "ConstraintNotFound", "The request (directly or indirectly) referred to a constraint that does not exist.", "ConstraintValidationFailed", "ConstraintViolation", "Added or changed index entry would violate constraint", "IndexAlreadyExists", "Unable to perform operation because it would clash with a pre-existing index.", -"IndexNotFound", "The request (directly or indirectly) referred to an index that does not exist.", "IndexMultipleFound", "The request referenced an index by its schema, and multiple matching indexes were found.", "IndexNotApplicable", "The request did not contain the properties required by the index.", "IndexWithNameAlreadyExists", "Unable to perform operation because index with given name already exists.", "ConstraintWithNameAlreadyExists", "Unable to perform operation because constraint with given name already exists.", -"ForbiddenOnConstraintIndex", "A requested operation can not be performed on the specified index because the index is part of a constraint. If you want to drop the index, for instance, you must drop the constraint.", "TokenNameError", "A token name, such as a label, relationship type or property key, used is not valid. Tokens cannot be empty strings and cannot be null.", "HintedIndexNotFound", "IndexOrConstraintAlreadyExists", "`%s` has no effect.", "IndexOrConstraintDoesNotExist", "ConstraintCreationFailed", -"Creating a requested constraint failed.", "ConstraintDropFailed", "The database failed to drop a requested constraint.", "IndexCreationFailed", "Failed to create an index.", "IndexDropFailed", "The database failed to drop a requested index.", "LabelAccessFailed", "The request accessed a label that did not exist.", "TokenLimitReached", "The maximum number of tokens of this type has been reached, no more tokens of this type can be created.", "PropertyKeyAccessFailed", "The request accessed a property that does not exist.", -"RelationshipTypeAccessFailed", "The request accessed a relationship type that does not exist.", "SchemaRuleAccessFailed", "The request referred to a schema rule that does not exist.", "SchemaRuleDuplicateFound", "The request referred to a schema rule that is defined multiple times.", "ProcedureRegistrationFailed", "The database failed to register a procedure, refer to the associated error message for details.", "ProcedureNotFound", "A request referred to a procedure that is not registered with this database instance. If you are deploying custom procedures in a cluster setup, ensure all instances in the cluster have the procedure jar file deployed.", +"remote execution error", "STATUS_50N05", "50N05", "Deadlock detected while trying to acquire locks. See log for more details.", "deadlock detected", "STATUS_50N06", "50N06", "Remote execution failed. See cause for more details.", "remote execution client error", "STATUS_50N07", "50N07", "Execution failed. See cause and debug log for details.", "50N09", "STATUS_50N09", "The server transitioned into a server state that is not valid in the current context: { %s }.", "invalid server state transition", "50N10", +"STATUS_50N10", "Unable to drop { %s }.", "index drop failed", "50N11", "STATUS_50N11", "Unable to create { %s }.", "constraint creation failed", "50N12", "STATUS_50N12", "constraint drop failed", "50N13", "STATUS_50N13", "Unable to validate constraint { %s }.", "constraint validation error", "STATUS_50N14", "50N14", "A constraint imposed by the database was violated.", "constraint violation", "50N15", "STATUS_50N15", "The system attemped to execute an unsupported operation on index { %s }. See debug.log for more information.", +"unsupported index operation", "STATUS_50N16", "50N16", "remote execution transient error", "STATUS_50N17", "50N17", "remote execution database error", "50N21", "STATUS_50N21", "The { %s } was not found for { %s }. Verify that the spelling is correct.", "no such schema descriptor", "STATUS_50N42", "50N42", "Unexpected error has occurred. See debug log for details.", "unexpected error", "STATUS_51N00", "51N00", "Failed to register procedure/function.", "procedure registration error", "51N01", "STATUS_51N01", +"The field { %s } in the class { %s } is annotated as a \'@Context\' field, but it is declared as static. \'@Context\' fields must be public, non-final and non-static.", "class field annotation should be public, non-final, and non-static", "51N02", "STATUS_51N02", "Unable to set up injection for procedure { %s }. The field { %s } has type { %s } which is not a supported injectable component.", "unsupported injectable component type", "51N03", "STATUS_51N03", "Unable to set up injection for { %s }, failed to access field { %s }.", +"unable to access field", "51N04", "STATUS_51N04", "The field { %s } on { %s } must be annotated as a \'@Context\' field in order to store its state.", "missing class field annotation", "51N05", "STATUS_51N05", "The field { %s } on { %s } must be declared non-final and public.", "class field should be public and non-final", "51N06", "STATUS_51N06", "The argument at position { %s } in { %s } requires a \'@Name\' annotation and a non-empty name.", "missing argument name", "51N07", "STATUS_51N07", "The { %s } contains a non-default argument after a default argument. Non-default arguments are not allowed to be positioned after default arguments.", +"invalid ordering of default arguments", "51N08", "STATUS_51N08", "The class { %s } must contain exactly one \'@UserAggregationResult\' method and exactly one \'@UserAggregationUpdate\' method.", "exactly one @UserAggregationResult method and one @UserAggregationUpdate method required", "51N09", "STATUS_51N09", "The \'@UserAggregationUpdate\' method { %s } of { %s } must be public and have the return type \'void\'.", "@UserAggregationUpdate method must be public and void", "51N10", "STATUS_51N10", "The method { %s } of { %s } must be public.", +"aggregation method not public", "51N11", "STATUS_51N11", "The class { %s } must be public.", "class not public", "51N12", "STATUS_51N12", "The procedure { %s } has zero output fields and must be defined as void.", "class not void", "51N13", "STATUS_51N13", "Unable to register the procedure or function { %s } because the name is already in use.", "procedure or function name already in use", "51N14", "STATUS_51N14", "The procedure { %s } has a duplicate { %s } field, { %s }.", "duplicate field name", "51N15", +"STATUS_51N15", "Type mismatch for map key. Required \'STRING\', but found { %s }.", "invalid map key type", "51N16", "STATUS_51N16", "Type mismatch for the default value. Required { %s }, but found { %s }.", "invalid default value type", "51N17", "STATUS_51N17", "Procedures and functions cannot be defined in the root namespace, or use a reserved namespace. Use the package name instead (e.g., org.example.com.{ %s }).", "invalid procedure or function name", "51N18", "STATUS_51N18", "The method { %s } has an invalid return type. Procedures must return a stream of records, where each record is of a defined concrete class.", +"invalid method return type", "51N20", "STATUS_51N20", "The field { %s } is not injectable. Ensure the field is marked as public and non-final.", "cannot inject field ", "STATUS_51N21", "51N21", "The procedure registration failed because the procedure registry was busy. Try again.", "procedure registry is busy", "STATUS_51N22", "51N22", "Finding the shortest path for the given pattern requires an exhaustive search. To enable exhaustive searches, set \'cypher.forbid_exhaustive_shortestpath\' to false.", "exhaustive shortest path search disabled", +"STATUS_51N23", "51N23", "Cannot find the shortest path when the start and end nodes are the same. To enable this behavior, set \'dbms.cypher.forbid_shortestpath_common_nodes\' to false.", "cyclic shortest path search disabled", "STATUS_51N24", "51N24", "Could not find a query plan within given time and space limits.", "insufficient resources for plan search", "STATUS_51N25", "51N25", "Cannot compile query due to excessive updates to indexes and constraints.", "database is busy", "51N26", "STATUS_51N26", "{ %s } is not available. This implementation of Cypher does not support { %s }.", +"not supported in this version", "51N27", "STATUS_51N27", "{ %s } is not supported in { %s }.", "not supported in this edition", "51N28", "STATUS_51N28", "This Cypher command must be executed against the database { %s }.", "not supported by this database", "51N29", "STATUS_51N29", "The command { %s } must be executed on the current \'LEADER\' server.", "not supported by this server", "51N30", "STATUS_51N30", "not supported with this configuration", "51N31", "STATUS_51N31", "not supported", "STATUS_51N32", "51N32", +"Server is in panic.", "server panic", "STATUS_51N33", "51N33", "This member failed to replicate transaction, try again.", "replication error", "STATUS_51N34", "51N34", "Failed to write to the database due to a cluster leader change. Retrying your request at a later time may succeed.", "write transaction failed due to leader change", "51N35", "STATUS_51N35", "The location of { %s } has changed while the transaction was running.", "database location changed", "STATUS_51N36", "51N36", "There is not enough memory to perform the current task.", +"out of memory", "STATUS_51N37", "51N37", "There is not enough stack size to perform the current task.", "stack overflow", "STATUS_51N38", "51N38", "There are insufficient threads available for executing the current task.", "failed to acquire execution thread", "STATUS_51N39", "51N39", "Expected set of files not found on disk. Please restore from backup.", "raft log corrupted", "51N40", "STATUS_51N40", "Database { %s } failed to start. Try restarting it.", "unable to start database", "STATUS_51N41", "51N41", +"Server or database admin operation not possible.", "admin operation failed ", "51N42", "STATUS_51N42", "Unable to check if allocator { %s } is available.", "allocator availability check failed", "51N43", "STATUS_51N43", "Cannot deallocate server(s) { %s }.", "cannot deallocate servers", "51N44", "STATUS_51N44", "Cannot drop server { %s }.", "cannot drop server", "51N45", "STATUS_51N45", "Cannot cordon server { %s }.", "cannot cordon server", "51N46", "STATUS_51N46", "Cannot alter server { %s }.", "cannot alter server", +"51N47", "STATUS_51N47", "Cannot rename server { %s }.", "cannot rename server", "51N48", "STATUS_51N48", "Cannot enable server { %s }.", "cannot enable server", "51N49", "STATUS_51N49", "Cannot alter database { %s }.", "cannot alter database", "51N50", "STATUS_51N50", "Cannot recreate database { %s }.", "cannot recreate database", "51N51", "STATUS_51N51", "Cannot create database { %s }.", "cannot create database", "51N52", "STATUS_51N52", "Cannot alter database topology. Number of primaries { %s } needs to be at least 1 and may not exceed { %s }.", +"number primaries out of range", "51N53", "STATUS_51N53", "Cannot alter database topology. Number of secondaries { %s } needs to be at least 0 and may not exceed { %s }.", "number secondaries out of range", "51N54", "STATUS_51N54", "Failed to calculate reallocation for databases. { %s }", "cannot reallocate", "51N55", "STATUS_51N55", "Failed to create the database { %s }. The limit of databases is reached. Either increase the limit using the config setting { %s } or drop a database.", "cannot create additional database", +"51N56", "STATUS_51N56", "The number of { %s } seeding servers { %s } is larger than the desired number of { %s } allocations { %s }.", "topology out of range", "51N57", "STATUS_51N57", "Unexpected error while picking allocations. { %s }", "generic topology modification error", "STATUS_51N59", "51N59", "The DBMS is unable to handle the request, please retry later or contact the system operator. More information is present in the logs.", "internal resource exhaustion", "STATUS_51N60", "51N60", "The DBMS is unable to determine the enterprise license acceptance status.", +"unable to check enterprise license acceptance", "51N61", "STATUS_51N61", "Index { %s } population failed.", "index population failed", "51N62", "STATUS_51N62", "Unable to use index { %s } because it is in a failed state. See logs for more information.", "index is in a failed state", "STATUS_51N63", "51N63", "Index is not ready yet. Wait until it finishes populating and retry the transaction.", "index is still populating", "STATUS_51N64", "51N64", "The index dropped while sampling.", "index dropped while sampling", +"51N65", "STATUS_51N65", "Vector index { %s } has a dimensionality of { %s }, but indexed vectors have { %s }.", "vector index dimensionality mismatch", "STATUS_51N66", "51N66", "Insufficient resources to complete the request.", "resource exhaustion", "51N67", "STATUS_51N67", "Unexpected CDC selector { %s } at { %s }, expected selector to be a { %s } selector.", "invalid CDC selector type", "STATUS_51N68", "51N68", "Change Data Capture is not currently enabled for this database.", "CDC is disabled for this database", +"51N69", "STATUS_51N69", "It is not possible to perform { %s } on the system database.", "system database is immutable", "51N70", "STATUS_51N70", "Cannot get routing table for { %s } because Bolt is not enabled. Please update your configuration such that \'server.bolt.enabled\' is set to true.", "bolt is not enabled", "51N71", "STATUS_51N71", "Feature: { %s } is not available in a sharded database.", "unsupported operation on a sharded database", "52N01", "STATUS_52N01", "Execution of the procedure { %s } timed out after { %s } { %s }.", +"procedure execution timeout", "52N02", "STATUS_52N02", "Execution of the procedure { %s } failed due to a client error.", "procedure execution client error", "52N03", "STATUS_52N03", "Execution of the procedure { %s } failed due to an invalid specified execution mode { %s }.", "invalid procedure execution mode", "52N05", "STATUS_52N05", "Cannot invoke procedure on this member because it is not a secondary for the database { %s }.", "must invoke procedure on secondary", "52N06", "STATUS_52N06", "Unexpected number of arguments (expected 0-2 but received { %s }).", +"invalid number of arguments to checkConnectivity", "52N07", "STATUS_52N07", "Unrecognised port name { %s } (valid values are: { %s }.", "invalid port argument to checkConnectivity", "52N08", "STATUS_52N08", "Unable to parse server id { %s }.", "invalid server id argument to checkConnectivity", "52N09", "STATUS_52N09", "Execution of the procedure { %s } failed due to a database error.", "procedure execution database error", "STATUS_52N10", "52N10", "An address key is included in the query string provided to the GetRoutingTableProcedure, but its value could not be parsed.", +"invalid address key", "STATUS_52N11", "52N11", "An unexpected error has occurred. Please refer to the server\'s debug log for more information.", "generic topology procedure error", "52N12", "STATUS_52N12", "The previous default database { %s } is still running.", "cannot change default database", "52N13", "STATUS_52N13", "New default database { %s } does not exist.", "new default database does not exist", "STATUS_52N14", "52N14", "System database cannot be set as default.", "system cannot be default database", +"52N15", "STATUS_52N15", "Provided allocator { %s } is not available or was not initialized. Verify that the spelling is correct.", "no such allocator", "STATUS_52N16", "52N16", "Invalid arguments to procedure.", "invalid procedure argument list", "STATUS_52N17", "52N17", "Setting/removing the quarantine marker failed.", "quarantine change failed", "52N18", "STATUS_52N18", "The number of seeding servers { %s } is larger than the defined number of allocations { %s }.", "too many seeders", "52N19", "STATUS_52N19", +"The specified seeding server with id { %s } was not found. Verify that the spelling is correct.", "no such seeder", "STATUS_52N20", "52N20", "The recreation of a database is not supported when seed updating is not enabled.", "seed updating not enabled", "STATUS_52N21", "52N21", "Failed to clean the system graph.", "failed to clean the system graph", "52N22", "STATUS_52N22", "Invalid argument { %s } for { %s } on procedure { %s }. The expected format of { %s } is { %s }.", "invalid procedure argument", "52N23", +"STATUS_52N23", "The following namespaces are not reloadable: { %s }", "non-reloadable namespace", "STATUS_52N24", "52N24", "Failed to reload procedures. See logs for more information.", "failed to reload procedures", "52N25", "STATUS_52N25", "JMX error while accessing { %s }. See logs for more information.", "JMX error", "STATUS_52N26", "52N26", "Invalid change identifier.", "invalid change identifier", "STATUS_52N27", "52N27", "The commit timestamp for the provided transaction ID does not match the one in the transaction log.", +"invalid commit timestamp", "52N28", "STATUS_52N28", "{ %s } is not a valid change identifier. Transaction ID does not exist.", "invalid change identifier and transaction id", "STATUS_52N29", "52N29", "Given ChangeIdentifier describes a transaction that occurred before any enrichment records exist.", "outdated change identifier", "STATUS_52N30", "52N30", "Given ChangeIdentifier describes a transaction that hasn\'t yet occurred.", "future change identifier", "52N31", "STATUS_52N31", "Change identifier { %s } does not belong to this database.", +"wrong database", "52N32", "STATUS_52N32", "Change identifier { %s } has an invalid sequence number { %s }.", "invalid sequence number", "52N33", "STATUS_52N33", "Failed to invoke procedure/function { %s } caused by: { %s }.", "procedure invocation failed", "52N34", "STATUS_52N34", "{ %s } is unavailable because it is sandboxed. Sandboxing is controlled by the dbms.security.procedures.unrestricted setting. Only un-restrict procedures you can trust with access to database internals.", "procedure sandboxed", "52N35", +"STATUS_52N35", "Failed to compile procedure/function defined in { %s }: { %s }", "procedure compilation failed", "52N36", "STATUS_52N36", "Invalid argument { %s } for { %s } on procedure { %s }. The expected format of { %s } is outlined in the { %s } API documentation.", "invalid procedure argument with API documentation hint", "STATUS_G1000", "G1000", "STATUS_G1001", "G1001", "edges still exist", "STATUS_G1002", "G1002", "endpoint node is deleted", "STATUS_G1003", "G1003", "endpoint node not in current working graph", +"STATUS_G2000", "G2000", "RepeatedPropertyInCompositeSchema", "Unable to create index or constraint because schema had a repeated property.", "RepeatedLabelInSchema", "Unable to create index or constraint because schema had a repeated label.", "RepeatedRelationshipTypeInSchema", "Unable to create index or constraint because schema had a repeated relationship type.", "EquivalentSchemaRuleAlreadyExists", "Unable to perform operation because an equivalent schema rule already exists.", "ConstraintAlreadyExists", +"Unable to perform operation because it would clash with a pre-existing constraint.", "ConstraintNotFound", "The request (directly or indirectly) referred to a constraint that does not exist.", "ConstraintValidationFailed", "ConstraintViolation", "Added or changed index entry would violate constraint", "IndexAlreadyExists", "Unable to perform operation because it would clash with a pre-existing index.", "IndexNotFound", "The request (directly or indirectly) referred to an index that does not exist.", "IndexMultipleFound", +"The request referenced an index by its schema, and multiple matching indexes were found.", "IndexNotApplicable", "The request did not contain the properties required by the index.", "IndexWithNameAlreadyExists", "Unable to perform operation because index with given name already exists.", "ConstraintWithNameAlreadyExists", "Unable to perform operation because constraint with given name already exists.", "ForbiddenOnConstraintIndex", "A requested operation can not be performed on the specified index because the index is part of a constraint. If you want to drop the index, for instance, you must drop the constraint.", +"TokenNameError", "A token name, such as a label, relationship type or property key, used is not valid. Tokens cannot be empty strings and cannot be null.", "TokenLengthError", "A token name, such as a label, relationship type or property key is too long", "HintedIndexNotFound", "IndexOrConstraintAlreadyExists", "`%s` has no effect.", "IndexOrConstraintDoesNotExist", "ConstraintCreationFailed", "Creating a requested constraint failed.", "ConstraintDropFailed", "The database failed to drop a requested constraint.", +"IndexCreationFailed", "Failed to create an index.", "IndexDropFailed", "The database failed to drop a requested index.", "LabelAccessFailed", "The request accessed a label that did not exist.", "TokenLimitReached", "The maximum number of tokens of this type has been reached, no more tokens of this type can be created.", "PropertyKeyAccessFailed", "The request accessed a property that does not exist.", "RelationshipTypeAccessFailed", "The request accessed a relationship type that does not exist.", "SchemaRuleAccessFailed", +"The request referred to a schema rule that does not exist.", "SchemaRuleDuplicateFound", "The request referred to a schema rule that is defined multiple times.", "ProcedureRegistrationFailed", "The database failed to register a procedure, refer to the associated error message for details.", "ProcedureNotFound", "A request referred to a procedure that is not registered with this database instance. If you are deploying custom procedures in a cluster setup, ensure all instances in the cluster have the procedure jar file deployed.", "ProcedureCallFailed", "Failed to invoke a procedure. See the detailed error description for exact cause.", "A procedure is using or receiving a value of an invalid type.", "ProcedureTimedOut", "The procedure has not completed within the specified timeout. You may want to retry with a longer timeout.", "ProcedureWarning", "The query used a procedure that generated a warning.", "Invalid", "The client provided an invalid request.", "InvalidFormat", "The client provided a request that was missing required fields, or had values that are not allowed.", "InvalidUsage", "The client made a request but did not consume outgoing buffers in a timely fashion.", "DeprecatedFormat", "The client made a request for a format which has been deprecated.", "NoThreadsAvailable", "There are no available threads to serve this request at the moment. You can retry at a later time or consider increasing max thread pool size for bolt connector(s).", "ResourceExhaustion", "The server has rejected this request as a resource is exhausted at the moment. You can retry at a later time. For further details see server logs.", "DatabaseNotFound", "The request referred to a database that does not exist.", "HomeDatabaseNotFound", "The request referred to a home database that does not exist.", "ExistingAliasFound", "The request referred to a database with an alias.", "ExistingDatabaseFound", "The request referred to a database that already exists.", "IllegalAliasChain", "An illegal chain of aliases has been detected. This request cannot be executed.", "DatabaseLimitReached", "The limit to number of databases has been reached.", "UnableToStartDatabase", "Unable to start database.", "Unknown", "Unknown database management error", "CredentialsExpired", "The credentials have expired and need to be updated.", "Unauthorized", "The client is unauthorized due to authentication failure.", "AuthenticationRateLimit", "The client has provided incorrect authentication details too many times in a row.", "ModifiedConcurrently", "The user was modified concurrently to this request.", "Forbidden", "An attempt was made to perform an unauthorized action.", "AuthorizationExpired", "The stored authorization info has expired. Please reconnect.", "AuthProviderTimeout", "An auth provider request timed out.", "AuthProviderFailed", "An auth provider request failed.", "TokenExpired", "The auth provider token has expired", "AuthProviderNotDefined", "The auth provider is not defined.", "ExternalAuthNotEnabled", "External auth for user is not enabled.", "CommandHasNoEffect", "ImpossibleRevokeCommand", "ReplicationFailure", "Replication failure.", "NotALeader", "The request cannot be processed by this server. Write requests can only be processed by the leader.", "Routing", "Unable to route the request to the appropriate server", "ServerAlreadyEnabled", "`ENABLE SERVER` has no effect.", "ServerAlreadyCordoned", "`CORDON SERVER` has no effect.", "NoDatabasesReallocated", "`REALLOCATE DATABASES` has no effect.", "CordonedServersExistedDuringAllocation", "Cordoned servers existed when making an allocation decision.", "RequestedTopologyMatchedCurrentTopology", "`ALTER DATABASE` has no effect.", "\' is not a notification code.", "Class does not represent enum", "CURRENT_SCHEMA", -"OPERATION", "OPERATION_CODE", "_severity", "_classification", "_position", "offset", "line", "column", "Expected parameterKeys: %s and parameterValues: %s to have the same length.", "Enum ", " does not have the ", " constant", "null provider key prohibited", "empty provider key prohibited", "null provider version prohibited", "{key=", ", version=", "Neo.%s.%s.%s", "Status.Code[", "CONCURRENT", "UNORDERED", "IDENTITY_FINISH", "und", "en", "CA", "fr", "zh", "CN", "FR", "de", "DE", "it", "IT", "ja", "JP", "ko", -"KR", "TW", "GB", "US", "$`", "FULLTEXT", "LOOKUP", "VECTOR", "ClientError", "The Client sent a bad request - changing the request might yield a successful outcome.", "ClientNotification", "There are notifications about the request sent by the client.", "TransientError", "The database cannot service the request right now, retrying later might yield a successful outcome. ", "DatabaseError", "The database failed to service the request. ", "WARNING", "INFORMATION", "DEPRECATION", "HINT", "PERFORMANCE", "GENERIC", -"UNRECOGNIZED", "UNKNOWN", "UNSUPPORTED", "SECURITY", "TOPOLOGY", "GQLSTATUS must be 5 characters and alphanumeric, got an empty string.", "[A-Za-z0-9]{5}", "GQLSTATUS must be 5 characters and alphanumeric, got: %s.", "info: ", "note: successful completion", " - ", "note: no data", "error: ", "warn: ", "NO_DATA", "SUCCESSFUL_COMPLETION", "INFORMATIONAL", "CONNECTION_EXCEPTION", "DATA_EXCEPTION", "SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION", "GENERAL_PROCESSING_EXCEPTION", "SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION", -"PROCEDURE_EXCEPTION", "DEPENDENT_OBJECT_ERROR", "GRAPH_TYPE_VIOLATION", "INVALID_TRANSACTION_STATE", "INVALID_TRANSACTION_TERMINATION", "TRANSACTION_ROLLBACK", "characterRangeList", "inputList", "labelList", "mapKeyList", "namespaceList", "optionList", "paramList", "portList", "predList", "propKeyList", "serverList", "valueList", "valueTypeList", "variableList", "ANDED", "ORED", "COMMAD", "boltMsgLenLimit", "count", "count1", "count2", "countAllocs", "countSeeders", "dim1", "dim2", "entityId", "lower", "pos", -"timeAmount", "upper", "+ ", "0-", "Can\'t convert code point ", " to char", "0x", "--#+ 0,(<", "Illegal format flags ", " for conversion ", "Duplicate format flags: ", "ROLLBACK", "NONE", "mutation occurred during iteration", "StatementCondition", "DeprecatedSyntaxReplaced", "DeprecatedSemanticsReplaced", "SemanticAnalysisPossible", "SubqueriesInMutatingPatternsIsolated", "OptionalCallProcedureWrapped", "LiteralsExtracted", "SensitiveLiteralsExtracted", "FunctionInvocationsResolved", "containsNoNodesOfType", -"UnaliasedReturnItem", "ExpressionsHaveComputedDependencies", "Unknown format conversion: ", " has a negated post-condition: ", ". That is not allowed.", "TryRewriteProcedureCalls", "extractSensitiveLiterals", " has an negated invalidated condition: ", "Illegal precision: ", "Can\'t format argument of ", " using ", " conversion", "This exception should not been thrown", "Currency not found: ", "-", "Positive number pattern not found in ", "Expected \';\' at ", " in ", "Can\'t avoid rounding", "Overflow", "Underflow", -"Illegal format flags: ", "Missing format with for specifier ", "power of ten too big", "SeqView", "ReturnItemsAreAliased", "ExpressionsInOrderByAndWhereUseAliases", "Prefix contains special character at ", "Quote opened at ", " was not closed in ", "Group separator found at fractional part at ", "Unexpected second decimal separator at ", "Unexpected \'0\' at optional digit part at ", "Unexpected char at exponent at ", "Pattern does not specify exponent digits at ", "Unexpected \'#\' at non-optional digit part at ", -"Two group separators at ", "Pattern does not specify integer digits at ", "Group separator at the end of number at ", " = ", ".completed", "\" -> \"", "NegatedCondition", "There is no step introducing ", "Left", " has ", " as a pre-condition, but ", " is an initial condition. That is currently not allowed.", "ByInitialCondition", "Right", "assertion failed: ", "Array.length must be power of 2", "empty collection", "ArrayDeque", "Queue", "Non-negative array size required", "ArrayDeque too big - cannot allocate ArrayDeque of length ", -" is out of bounds (min 0, max 2)", "Tuple3", "Failed rewriting ", "\nTried using children: ", "ClosedDynamicUnionType", "PropertyValueType", "Property Value", "PROPERTY VALUE", "ObfuscationMetadata", "SemanticCheckResult", "Got semantic deprecations ", " but no SemanticTable", "Stack", "Expected parameter to be String, Boolean, Integer, Long or List but was ", "Expected procedures to have been resolved already", "Scope", "USE multiple graph selector", "Statement", "Semantics", "ListSet", "Error during rewriting after ", -". The following conditions where violated: \n", "ValidatingRewriter", "multiple graphs", "show setting", "Match modes", "composable commands", "Allow MATCH/MERGE/CREATE of dynamic labels and types", "org.neo4j.cypher.internal.expressions.UnsignedDecimalIntegerLiteral", "org.neo4j.cypher.internal.expressions.NaN$$anon$9", "org.neo4j.cypher.internal.ast.GraphFunctionReference", "org.neo4j.cypher.internal.ast.AlterDatabase", "org.neo4j.cypher.internal.expressions.PlusQuantifier", "org.neo4j.cypher.internal.util.symbols.LocalDateTimeType", -"org.neo4j.cypher.internal.expressions.In", "org.neo4j.cypher.internal.util.symbols.DurationType", "org.neo4j.cypher.internal.util.symbols.ZonedDateTimeType", "org.neo4j.cypher.internal.expressions.Divide", "org.neo4j.cypher.internal.label_expressions.LabelExpression$ColonDisjunction", "org.neo4j.cypher.internal.ast.ShowSettingsClause", "org.neo4j.cypher.internal.ast.ShowPrivileges", "org.neo4j.cypher.internal.ast.SetPropertyItem", "org.neo4j.cypher.internal.expressions.PropertySelector", "org.neo4j.cypher.internal.ast.AscSortItem", -"org.neo4j.cypher.internal.expressions.SignedOctalIntegerLiteral$$anon$3", "org.neo4j.cypher.internal.expressions.DecimalDoubleLiteral$$anon$5", "org.neo4j.cypher.internal.ast.CreateFulltextIndexCommand", "org.neo4j.cypher.internal.expressions.Equals", "org.neo4j.cypher.internal.expressions.PathPatternPart", "org.neo4j.cypher.internal.label_expressions.LabelExpression$DynamicLeaf", "org.neo4j.cypher.internal.ast.ShowConstraintsClause", "org.neo4j.cypher.internal.expressions.PatternPart$AnyShortestPath", "org.neo4j.cypher.internal.expressions.Infinity$$anon$8", -"org.neo4j.cypher.internal.expressions.ImplicitProcedureArgument", "org.neo4j.cypher.internal.expressions.False", "org.neo4j.cypher.internal.expressions.UnarySubtract", "org.neo4j.cypher.internal.util.symbols.IntegerType", "org.neo4j.cypher.internal.ast.ShowProceduresClause", "org.neo4j.cypher.internal.ast.CreateCompositeDatabase", "org.neo4j.cypher.internal.expressions.PatternPart$ShortestGroups", "org.neo4j.cypher.internal.expressions.Concatenate", "org.neo4j.cypher.internal.expressions.UnaryAdd", "org.neo4j.cypher.internal.ast.DropConstraintOnName", -"org.neo4j.cypher.internal.ast.CreateConstraintCommand", "org.neo4j.cypher.internal.expressions.SensitiveStringLiteral", "org.neo4j.cypher.internal.ast.SetLabelItem", "org.neo4j.cypher.internal.ast.StopDatabase", "org.neo4j.cypher.internal.ast.CreatePropertyTypeConstraint", "org.neo4j.cypher.internal.expressions.Or", "org.neo4j.cypher.internal.expressions.Add", "org.neo4j.cypher.internal.util.symbols.NodeType", "org.neo4j.cypher.internal.ast.AuthId", "org.neo4j.cypher.internal.expressions.Ands", "org.neo4j.cypher.internal.ast.ShowTransactionsClause", -"org.neo4j.cypher.internal.util.symbols.GeometryType", "org.neo4j.cypher.internal.expressions.Null", "org.neo4j.cypher.internal.ast.ShowDatabase", "org.neo4j.cypher.internal.ast.UnionAll", "org.neo4j.cypher.internal.ast.Yield", "org.neo4j.cypher.internal.ast.UseGraph", "org.neo4j.cypher.internal.ast.IsNotNormalized", "org.neo4j.cypher.internal.expressions.AutoExtractedParameter", "org.neo4j.cypher.internal.expressions.EndsWith", "org.neo4j.cypher.internal.ast.SetOwnPassword", "org.neo4j.cypher.internal.expressions.ContainerIndex", -"org.neo4j.cypher.internal.expressions.Contains", "org.neo4j.cypher.internal.expressions.IntervalQuantifier", "org.neo4j.cypher.internal.ast.With", "org.neo4j.cypher.internal.expressions.MapExpression", "org.neo4j.cypher.internal.expressions.UnsignedDecimalIntegerLiteral$$anon$2", "org.neo4j.cypher.internal.ast.IsNotTyped", "org.neo4j.cypher.internal.ast.UsingIndexHint", "org.neo4j.cypher.internal.expressions.StartsWith", "org.neo4j.cypher.internal.expressions.PatternPart$AllPaths", "org.neo4j.cypher.internal.expressions.FunctionName", -"org.neo4j.cypher.internal.util.symbols.ClosedDynamicUnionType", "org.neo4j.cypher.internal.expressions.DynamicRelTypeExpression", "org.neo4j.cypher.internal.ast.Auth", "org.neo4j.cypher.internal.ast.Password", "org.neo4j.cypher.internal.ast.ReallocateDatabases", "org.neo4j.cypher.internal.expressions.LessThanOrEqual", "org.neo4j.cypher.internal.frontend.phases.ResolvedCall", "org.neo4j.cypher.internal.ast.Skip", "org.neo4j.cypher.internal.expressions.RelationshipPattern", "org.neo4j.cypher.internal.expressions.Infinity", -"org.neo4j.cypher.internal.ast.RenameServer", "org.neo4j.cypher.internal.util.symbols.PropertyValueType", "org.neo4j.cypher.internal.expressions.SignedHexIntegerLiteral$$anon$4", "org.neo4j.cypher.internal.ast.RevokePrivilege", "org.neo4j.cypher.internal.expressions.ProcedureOutput", "org.neo4j.cypher.internal.ast.ParameterName", "org.neo4j.cypher.internal.expressions.NamedPatternPart", "org.neo4j.cypher.internal.expressions.Subtract", "org.neo4j.cypher.internal.util.symbols.NumberType", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Wildcard", -"org.neo4j.cypher.internal.ast.AlterRemoteDatabaseAlias", "org.neo4j.cypher.internal.util.symbols.LocalTimeType", "org.neo4j.cypher.internal.label_expressions.LabelExpression$ColonConjunction", "org.neo4j.cypher.internal.ast.EnableServer", "org.neo4j.cypher.internal.ast.LoadCSV", "org.neo4j.cypher.internal.ast.SetExactPropertiesFromMapItem", "org.neo4j.cypher.internal.expressions.Null$$anon$7", "org.neo4j.cypher.internal.ast.SetClause", "org.neo4j.cypher.internal.expressions.InvalidNotEquals", "org.neo4j.cypher.internal.util.symbols.ListType", -"org.neo4j.cypher.internal.ast.CreateRole", "org.neo4j.cypher.internal.expressions.RelationshipsPattern", "org.neo4j.cypher.internal.ast.CreateDatabase", "org.neo4j.cypher.internal.expressions.Variable", "org.neo4j.cypher.internal.ast.DropRole", "org.neo4j.cypher.internal.ast.OrderBy", "org.neo4j.cypher.internal.util.symbols.NullType", "org.neo4j.cypher.internal.ast.ShowPrivilegeCommands", "org.neo4j.cypher.internal.expressions.GreaterThanOrEqual", "org.neo4j.cypher.internal.ast.RenameUser", "org.neo4j.cypher.internal.expressions.ExplicitParameter", -"org.neo4j.cypher.internal.expressions.ShortestPathsPatternPart", "org.neo4j.cypher.internal.ast.CreateLookupIndexCommand", "org.neo4j.cypher.internal.expressions.DecimalDoubleLiteral", "org.neo4j.cypher.internal.ast.DeallocateServers", "org.neo4j.cypher.internal.expressions.SingleIterablePredicate", "org.neo4j.cypher.internal.ast.CreateRemoteDatabaseAlias", "org.neo4j.cypher.internal.ast.semantics.SemanticPatternCheck$ScopeBeforeParenthesizedPath", "org.neo4j.cypher.internal.ast.RemoveDynamicPropertyItem", -"org.neo4j.cypher.internal.ast.ShowServers", "org.neo4j.cypher.internal.ast.AlterUser", "org.neo4j.cypher.internal.expressions.PatternComprehension", "org.neo4j.cypher.internal.ast.Finish", "org.neo4j.cypher.internal.ast.DropIndexOnName", "org.neo4j.cypher.internal.frontend.phases.SensitiveParameterRewriter$$anonfun$1$$anon$1", "org.neo4j.cypher.internal.expressions.PatternPartWithSelector", "org.neo4j.cypher.internal.expressions.ProcedureName", "org.neo4j.cypher.internal.expressions.AllPropertiesSelector", -"org.neo4j.cypher.internal.ast.DenyPrivilege", "org.neo4j.cypher.internal.ast.SetDynamicPropertyItem", "org.neo4j.cypher.internal.expressions.QuantifiedPath", "scala.Some", "org.neo4j.cypher.internal.ast.Create", "org.neo4j.cypher.internal.ast.CreateLocalDatabaseAlias", "org.neo4j.cypher.internal.ast.Limit", "org.neo4j.cypher.internal.expressions.VariableSelector", "org.neo4j.cypher.internal.expressions.CaseExpression$Placeholder", "org.neo4j.cypher.internal.expressions.VariableGrouping", "org.neo4j.cypher.internal.expressions.ListSlice", -"org.neo4j.cypher.internal.expressions.ShortestPathExpression", "org.neo4j.cypher.internal.expressions.ReduceExpression", "org.neo4j.cypher.internal.expressions.GreaterThan", "org.neo4j.cypher.internal.util.symbols.MapType", "org.neo4j.cypher.internal.ast.TerminateTransactionsClause", "org.neo4j.cypher.internal.expressions.RegexMatch", "org.neo4j.cypher.internal.ast.RevokeRolesFromUsers", "org.neo4j.cypher.internal.ast.ReturnItems", "org.neo4j.cypher.internal.expressions.DynamicLabelExpression", "org.neo4j.cypher.internal.util.symbols.FloatType", -"org.neo4j.cypher.internal.util.symbols.PointType", "org.neo4j.cypher.internal.ast.ShowUsers", "org.neo4j.cypher.internal.ast.DescSortItem", "org.neo4j.cypher.internal.expressions.PatternPart$AllShortestPaths", "org.neo4j.cypher.internal.expressions.SignedDecimalIntegerLiteral$$anon$1", "org.neo4j.cypher.internal.ast.RenameRole", "org.neo4j.cypher.internal.util.symbols.DateType", "org.neo4j.cypher.internal.expressions.Namespace", "org.neo4j.cypher.internal.expressions.StringLiteral$$anon$6", "org.neo4j.cypher.internal.expressions.RelationshipChain", -"org.neo4j.cypher.internal.expressions.Pattern$ForUpdate", "org.neo4j.cypher.internal.util.symbols.AnyType", "org.neo4j.cypher.internal.expressions.FilterScope", "org.neo4j.cypher.internal.ast.CreateUser", "org.neo4j.cypher.internal.ast.UnresolvedCall", "org.neo4j.cypher.internal.ast.PasswordChange", "org.neo4j.cypher.internal.expressions.AllIterablePredicate", "org.neo4j.cypher.internal.ast.Match", "org.neo4j.cypher.internal.expressions.SignedHexIntegerLiteral", "org.neo4j.cypher.internal.expressions.CaseExpression", -"org.neo4j.cypher.internal.ast.ExistsExpression", "org.neo4j.cypher.internal.ast.semantics.SemanticPatternCheck$ScopeAfterParenthesizedPath", "org.neo4j.cypher.internal.ast.AlterLocalDatabaseAlias", "org.neo4j.cypher.internal.ast.DropDatabase", "org.neo4j.cypher.internal.ast.UnaliasedReturnItem", "org.neo4j.cypher.internal.ast.GrantPrivilege", "org.neo4j.cypher.internal.expressions.LabelOrRelTypeName", "org.neo4j.cypher.internal.expressions.SignedOctalIntegerLiteral", "org.neo4j.cypher.internal.expressions.PatternExpression", -"org.neo4j.cypher.internal.expressions.NodePattern", "org.neo4j.cypher.internal.parser.v25.ast.factory.DdlBuilder$$anon$1", "org.neo4j.cypher.internal.expressions.FixedQuantifier", "org.neo4j.cypher.internal.ast.CommandResultItem", "org.neo4j.cypher.internal.expressions.Modulo", "org.neo4j.cypher.internal.ast.ShowAliases", "org.neo4j.cypher.internal.expressions.NoneIterablePredicate", "org.neo4j.cypher.internal.ast.GrantRolesToUsers", "org.neo4j.cypher.internal.ast.ProcedureResultItem", "org.neo4j.cypher.internal.ast.Merge", -"org.neo4j.cypher.internal.expressions.NotEquals", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Disjunctions", "org.neo4j.cypher.internal.expressions.IsNull", "org.neo4j.cypher.internal.expressions.True$$anon$10", "org.neo4j.cypher.internal.ast.factory.neo4j.Neo4jASTFactory$$anon$3", "org.neo4j.cypher.internal.ast.UnionDistinct", "org.neo4j.cypher.internal.expressions.ListComprehension", "org.neo4j.cypher.internal.ast.Foreach", "org.neo4j.cypher.internal.expressions.ExtractScope", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Negation", -"org.neo4j.cypher.internal.expressions.DynamicLabelOrRelTypeExpression", "org.neo4j.cypher.internal.expressions.NaN", "org.neo4j.cypher.internal.expressions.ListLiteral", "org.neo4j.cypher.internal.expressions.StringLiteral", "org.neo4j.cypher.internal.ast.RemovePropertyItem", "org.neo4j.cypher.internal.expressions.Range", "org.neo4j.cypher.internal.expressions.Property", "org.neo4j.cypher.internal.expressions.LiteralEntry", "org.neo4j.cypher.internal.ast.OnMatch", "org.neo4j.cypher.internal.expressions.False$$anon$11", -"org.neo4j.cypher.internal.expressions.PathConcatenation", "org.neo4j.cypher.internal.ast.DropServer", "org.neo4j.cypher.internal.expressions.Not", "org.neo4j.cypher.internal.util.symbols.StringType", "org.neo4j.cypher.internal.ast.UsingScanHint", "org.neo4j.cypher.internal.ast.RemoveLabelItem", "org.neo4j.cypher.internal.ast.CollectExpression", "org.neo4j.cypher.internal.expressions.MatchMode$RepeatableElements", "org.neo4j.cypher.internal.expressions.LessThan", "org.neo4j.cypher.internal.util.symbols.BooleanType", -"org.neo4j.cypher.internal.ast.Delete", "org.neo4j.cypher.internal.expressions.RelTypeName", "org.neo4j.cypher.internal.util.symbols.ZonedTimeType", "org.neo4j.cypher.internal.util.symbols.NothingType", "org.neo4j.cypher.internal.expressions.LabelName", "org.neo4j.cypher.internal.expressions.Multiply", "org.neo4j.cypher.internal.ast.Remove", "org.neo4j.cypher.internal.ast.CreateSingleLabelPropertyIndexCommand", "org.neo4j.cypher.internal.ast.UsingJoinHint", "org.neo4j.cypher.internal.expressions.CoerceTo", "org.neo4j.cypher.internal.expressions.FunctionInvocation", -"org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsConcurrencyParameters", "org.neo4j.cypher.internal.ast.ExternalAuth", "org.neo4j.cypher.internal.ast.ShowCurrentUser", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsErrorParameters", "org.neo4j.cypher.internal.ast.SingleQuery", "org.neo4j.cypher.internal.expressions.SignedDecimalIntegerLiteral", "org.neo4j.cypher.internal.expressions.IsNotNull", "org.neo4j.cypher.internal.expressions.Xor", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsReportParameters", -"org.neo4j.cypher.internal.expressions.PropertyKeyName", "org.neo4j.cypher.internal.ast.Statements", "org.neo4j.cypher.internal.expressions.ParenthesizedPath", "org.neo4j.cypher.internal.frontend.phases.SensitiveParameterRewriter$$anonfun$1$$anon$2", "scala.util.Right", "org.neo4j.cypher.internal.util.symbols.PathType", "org.neo4j.cypher.internal.ast.CountExpression", "org.neo4j.cypher.internal.ast.StartDatabase", "org.neo4j.cypher.internal.ast.ProcedureResult", "org.neo4j.cypher.internal.expressions.Pow", "org.neo4j.cypher.internal.ast.ShowIndexesClause", -"org.neo4j.cypher.internal.util.symbols.GraphRefType", "org.neo4j.cypher.internal.ast.GraphDirectReference", "org.neo4j.cypher.internal.ast.Insert", "org.neo4j.cypher.internal.ast.Unwind", "org.neo4j.cypher.internal.ast.SetIncludingPropertiesFromMapItem", "org.neo4j.cypher.internal.ast.DropUser", "org.neo4j.cypher.internal.expressions.CaseExpression$Placeholder$", "org.neo4j.cypher.internal.expressions.ReduceScope", "org.neo4j.cypher.internal.ast.ScopeClauseSubqueryCall", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsBatchParameters", -"org.neo4j.cypher.internal.label_expressions.LabelExpression$Conjunctions", "org.neo4j.cypher.internal.ast.AlterServer", "org.neo4j.cypher.internal.ast.IsNormalized", "org.neo4j.cypher.internal.ast.NamespacedName", "org.neo4j.cypher.internal.ast.OnCreate", "org.neo4j.cypher.internal.ast.DropDatabaseAlias", "org.neo4j.cypher.internal.util.symbols.RelationshipType", "org.neo4j.cypher.internal.ast.ShowSupportedPrivilegeCommand", "org.neo4j.cypher.internal.expressions.CountStar", "org.neo4j.cypher.internal.expressions.MapProjection", -"org.neo4j.cypher.internal.expressions.PatternPart$AnyPath", "org.neo4j.cypher.internal.expressions.MatchMode$DifferentRelationships", "org.neo4j.cypher.internal.ast.Where", "org.neo4j.cypher.internal.ast.NativeAuth", "org.neo4j.cypher.internal.ast.Return", "org.neo4j.cypher.internal.frontend.phases.ResolvedFunctionInvocation", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Leaf", "org.neo4j.cypher.internal.ast.ShowFunctionsClause", "org.neo4j.cypher.internal.ast.ShowRoles", "org.neo4j.cypher.internal.label_expressions.LabelExpressionPredicate", -"org.neo4j.cypher.internal.ast.ImportingWithSubqueryCall", "org.neo4j.cypher.internal.expressions.True", "org.neo4j.cypher.internal.expressions.AnyIterablePredicate", "org.neo4j.cypher.internal.ast.AliasedReturnItem", "org.neo4j.cypher.internal.expressions.StarQuantifier", "scala.util.Left", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsParameters", "org.neo4j.cypher.internal.expressions.Pattern$ForMatch", "org.neo4j.cypher.internal.parser.v5.ast.factory.DdlBuilder$$anon$1", "org.neo4j.cypher.internal.ast.IsTyped", -"org.neo4j.cypher.internal.expressions.And", "Location", "Failed to parse comment. A comment starting on `/*` must have a closing `*/`.", "OpenCypherExceptionFactory", "Didn\'t expect ProjectingUnion, only SingleQuery, UnionAll, or UnionDistinct.", "State", "Expected exactly one statement per query but got: %s", "Invalid input \'", "\': expected four hexadecimal digits specifying a unicode character", "End of input", "\'%s\' does not allow relationship patterns", "\'%s\' does not allow node patterns", "Constraint type \'%s\' does not allow multiple properties", -"Filter type %s is not defined for show %s command.", "`%s` no longer allows the `BRIEF` and `VERBOSE` keywords,\nplease omit `BRIEF` and use `YIELD *` instead of `VERBOSE`.", "Invalid constraint syntax, ON should not be used in combination with REQUIRE. Replace ON with FOR.", "Invalid constraint syntax, FOR should not be used in combination with ASSERT. Replace ASSERT with REQUIRE.", "Invalid constraint syntax, ON and ASSERT should not be used. Replace ON with FOR and ASSERT with REQUIRE.", "Invalid constraint syntax, FOR should not be used in combination with ASSERT EXISTS. Replace ASSERT EXISTS with REQUIRE ... IS NOT NULL.", -"Invalid constraint syntax, ON and ASSERT EXISTS should not be used. Replace ON with FOR and ASSERT EXISTS with REQUIRE ... IS NOT NULL.", "Uniqueness", "%s constraints cannot be dropped by schema, please drop by name instead: DROP CONSTRAINT constraint_name. The constraint name can be found using SHOW CONSTRAINTS.", "Node key", "Node property existence", "Relationship property existence", "Unsupported drop constraint command: Please delete the constraint by name instead", "`ON DEFAULT %s` is not supported. Use `ON HOME %s` instead.", -"Index type %s is not defined for USING index hint. Use %s instead.", "Index type %s is no longer supported for USING index hint. Use %s instead.", "\':", " expected", "Abbreviated patterns are not supported yet", "quantified", "parenthesized", "Path selectors such as `", "` are not supported within ", " path patterns.", "` cannot be used in a ", " clause, but only in a MATCH clause.", "unknown parameter type: ", "constraints", "Unknown Cypher type: ", "Unknown Normal Form: ", "Index type %s is not defined for create index command.", -"functions", "indexes", "Case expressions have the same number of whens and thens, but got whens `", "` and thens `", "trim", "A valid Cypher query has to contain at least 1 clause", "message converted to empty list", "", "\"\\t\"", "\"\\n\"", "\"\\u000b\"", "\"\\f\"", "\"\\r\"", "\"\\u001c\"", "\"\\u001d\"", "\"\\u001e\"", "\"\\u001f\"", "\" \"", "\"\\u00a0\"", "\"\\u1680\"", "\"\\u2000\"", "\"\\u2001\"", "\"\\u2002\"", "\"\\u2003\"", "\"\\u2004\"", "\"\\u2005\"", "\"\\u2006\"", "\"\\u2007\"", "\"\\u2008\"", -"\"\\u2009\"", "\"\\u200a\"", "\"\\u2028\"", "\"\\u2029\"", "\"\\u202f\"", "\"\\u205f\"", "\"\\u3000\"", "", "", "\"/*\"", "\"*/\"", "", "", "", "", "", "", "", "\"\\\'\"", "\"\\\\\\\\\"", "\"\\\\\\\'\"", "\"\\\\\\\"\"", "\"\\\\b\"", "\"\\\\f\"", "\"\\\\n\"", "\"\\\\r\"", "\"\\\\t\"", "\"\\\\u[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]\"", -"", "\"\\\"\"", "", "\"`\"", "", "\"``\"", "\"ACCESS\"", "\"ACTIVE\"", "\"ADMIN\"", "\"ADMINISTRATOR\"", "\"ALIAS\"", "\"ALIASES\"", "\"allShortestPaths\"", "\"ALL\"", "\"ALTER\"", "\"AND\"", "\"ANY\"", "\"ARRAY\"", "\"AS\"", "\"ASC\"", "\"ASCENDING\"", "\"ASSERT\"", "\"ASSIGN\"", "\"AT\"", "\"AUTH\"", "\"|\"", "\"BINDINGS\"", "\"BOOL\"", "\"BOOLEAN\"", "\"BOOSTED\"", "\"BOTH\"", "\"BREAK\"", "\"BRIEF\"", "\"BTREE\"", "\"BUILT\"", "\"BY\"", "\"CALL\"", "\"CASCADE\"", -"\"CASE\"", "\"CHANGE\"", "\"CIDR\"", "\"COLLECT\"", "\":\"", "\"::\"", "\",\"", "\"COMMAND\"", "\"COMMANDS\"", "\"COMMIT\"", "\"COMPOSITE\"", "\"CONCURRENT\"", "\"CONSTRAINT\"", "\"CONSTRAINTS\"", "\"CONTAINS\"", "\"COPY\"", "\"CONTINUE\"", "\"COUNT\"", "\"CREATE\"", "\"CSV\"", "\"CURRENT\"", "\"DATA\"", "\"DATABASE\"", "\"DATABASES\"", "\"DATE\"", "\"DATETIME\"", "\"DBMS\"", "\"DEALLOCATE\"", "\"DEFAULT\"", "\"DEFINED\"", "\"DELETE\"", "\"DENY\"", "\"DESC\"", "\"DESCENDING\"", "\"DESTROY\"", "\"DETACH\"", -"\"$\"", "\"||\"", "\"DIFFERENT\"", "\"DISTINCT\"", "\"/\"", "\".\"", "\"..\"", "\"DRIVER\"", "\"DROP\"", "\"DRYRUN\"", "\"DUMP\"", "\"DURATION\"", "\"EACH\"", "\"EDGE\"", "\"ENABLE\"", "\"ELEMENT\"", "\"ELEMENTS\"", "\"ELSE\"", "\"ENCRYPTED\"", "\"END\"", "\"ENDS\"", "\"=\"", "\"EXECUTABLE\"", "\"EXECUTE\"", "\"EXIST\"", "\"EXISTENCE\"", "\"EXISTS\"", "\"ERROR\"", "\"FAIL\"", "\"false\"", "\"FIELDTERMINATOR\"", "\"FINISH\"", "\"FLOAT\"", "\"FOR\"", "\"FOREACH\"", "\"FROM\"", "\"FULLTEXT\"", "\"FUNCTION\"", -"\"FUNCTIONS\"", "\">=\"", "\"GRANT\"", "\"GRAPH\"", "\"GRAPHS\"", "\"GROUP\"", "\"GROUPS\"", "\">\"", "\"HEADERS\"", "\"HOME\"", "\"ID\"", "\"IF\"", "\"IMPERSONATE\"", "\"IMMUTABLE\"", "\"IN\"", "\"INDEX\"", "\"INDEXES\"", "\"INF\"", "\"INFINITY\"", "\"INSERT\"", "\"INT\"", "\"INTEGER\"", "\"IS\"", "\"JOIN\"", "\"KEY\"", "\"LABEL\"", "\"LABELS\"", "\"&\"", "\"!\"", "\"[\"", "\"{\"", "\"<=\"", "\"LEADING\"", "\"LIMIT\"", "\"LIST\"", "\"LOAD\"", "\"LOCAL\"", "\"LOOKUP\"", "\"(\"", "\"<\"", "\"MANAGEMENT\"", "\"MAP\"", -"\"MATCH\"", "\"MERGE\"", "\"-\"", "\"%\"", "\"!=\"", "\"<>\"", "\"NAME\"", "\"NAMES\"", "\"NAN\"", "\"NFC\"", "\"NFD\"", "\"NFKC\"", "\"NFKD\"", "\"NEW\"", "\"NODE\"", "\"NODETACH\"", "\"NODES\"", "\"NONE\"", "\"NORMALIZE\"", "\"NORMALIZED\"", "\"NOT\"", "\"NOTHING\"", "\"NOWAIT\"", "\"null\"", "\"OF\"", "\"OFFSET\"", "\"ON\"", "\"ONLY\"", "\"OPTIONAL\"", "\"OPTIONS\"", "\"OPTION\"", "\"OR\"", "\"ORDER\"", "\"OUTPUT\"", "\"PASSWORD\"", "\"PASSWORDS\"", "\"PATH\"", "\"PATHS\"", "\"PERIODIC\"", "\"PLAINTEXT\"", -"\"+\"", "\"+=\"", "\"POINT\"", "\"POPULATED\"", "\"^\"", "\"REPEATABLE\"", "\"PRIMARY\"", "\"PRIMARIES\"", "\"PRIVILEGE\"", "\"PRIVILEGES\"", "\"PROCEDURE\"", "\"PROCEDURES\"", "\"PROPERTIES\"", "\"PROPERTY\"", "\"PROVIDER\"", "\"PROVIDERS\"", "\"?\"", "\"RANGE\"", "\"]\"", "\"}\"", "\"READ\"", "\"REALLOCATE\"", "\"REDUCE\"", "\"RENAME\"", "\"=~\"", "\"REL\"", "\"RELATIONSHIP\"", "\"RELATIONSHIPS\"", "\"REMOVE\"", "\"REPLACE\"", "\"REPORT\"", "\"REQUIRE\"", "\"REQUIRED\"", "\"RESTRICT\"", "\"RETURN\"", "\"REVOKE\"", -"\"ROLE\"", "\"ROLES\"", "\"ROW\"", "\"ROWS\"", "\")\"", "\"SCAN\"", "\"SEC\"", "\"SECOND\"", "\"SECONDARY\"", "\"SECONDARIES\"", "\"SECONDS\"", "\"SEEK\"", "\";\"", "\"SERVER\"", "\"SERVERS\"", "\"SET\"", "\"SETTING\"", "\"SETTINGS\"", "\"shortestPath\"", "\"SHORTEST\"", "\"SHOW\"", "\"SIGNED\"", "\"SINGLE\"", "\"SKIP\"", "\"START\"", "\"STARTS\"", "\"STATUS\"", "\"STOP\"", "\"STRING\"", "\"SUPPORTED\"", "\"SUSPENDED\"", "\"TARGET\"", "\"TERMINATE\"", "\"TEXT\"", "\"THEN\"", "\"TIME\"", "\"*\"", "\"TIMESTAMP\"", -"\"TIMEZONE\"", "\"TO\"", "\"TOPOLOGY\"", "\"TRAILING\"", "\"TRANSACTION\"", "\"TRANSACTIONS\"", "\"TRAVERSE\"", "\"TRIM\"", "\"true\"", "\"TYPE\"", "\"TYPED\"", "\"TYPES\"", "\"UNION\"", "\"UNIQUE\"", "\"UNIQUENESS\"", "\"UNWIND\"", "\"URL\"", "\"USE\"", "\"USER\"", "\"USERS\"", "\"USING\"", "\"VALUE\"", "\"VARCHAR\"", "\"VECTOR\"", "\"VERBOSE\"", "\"VERTEX\"", "\"WAIT\"", "\"WHEN\"", "\"WHERE\"", "\"WITH\"", "\"WITHOUT\"", "\"WRITE\"", "\"XOR\"", "\"YIELD\"", "\"ZONE\"", "\"ZONED\"", "", "", -"", "", "", "", "", "Invalid input \'%s\': expected \"%s\"", "Encountered \"\"", "The PERIODIC COMMIT query hint is no longer supported. Please use CALL { ... } IN TRANSACTIONS instead.", "The Neo4j AST encodes Unions as a left-deep tree, so the rhs query must always be a SingleQuery. Got `", "invalid graph reference", "Expected a container index, got: [", "MERGE", "Failed to parse the file expression. Please remember to use quotes for string literals.", -"Duplicated OF ROWS parameter", "Duplicated REPORT STATUS parameter", "Duplicated ON ERROR parameter", "Expected a pattern without a selector, got: [", "]: ", "Named patterns are not allowed in `INSERT`. Use `CREATE` instead or remove the name.", "Colon `:` conjunction is not allowed in INSERT. Use `CREATE` or conjunction with ampersand `&` instead.", "Map have the same number of keys and values, but got keys `", "` and values `", "Invalid create index syntax, use `CREATE INDEX FOR ...` instead.", "\'REPLACE\' is not allowed for this index syntax", -"Indexes cannot be dropped by schema, please drop by name instead: DROP INDEX index_name. The index name can be found using SHOW INDEXES.", "REL", "Invalid index type b-tree, please omit the `BTREE` filter.", "SHOW INDEXES", "SHOW CONSTRAINTS", "`SHOW CONSTRAINTS` no longer allows the `EXISTS` keyword, please use `EXIST` or `PROPERTY EXISTENCE` instead.", "Invalid index type b-tree, use range, point or text index instead.", "Duplicate SET STATUS {SUSPENDED|ACTIVE} clause", "Duplicate SET HOME DATABASE clause", -"DATABASE", "Duplicate PRIMARY clause", "Duplicate SECONDARY clause", "Invalid input `%s` for database name. Expected name to contain at most one component.", "Duplicate \'REMOVE OPTION ", "\' clause", "Duplicate SET ACCESS clause", "Duplicate SET TOPOLOGY clause", "Duplicate \'SET OPTION ", "Duplicate SET DATABASE %s clause", "?", "Statements", "\\t", "\\n", "\\f", "\\r", "\\\"", "\\\'", "0000", "\\u", "\\b", " ", "\" (", "), ", "Lexical error at line ", ". Encountered: ", "after : \"", "\' points to symbol with different name \'", -"\' in scope #", ". Scope tree:", "...", " ", "Encountered \"", " \"", "\" at line ", "Was expecting", " one of:", "an identifier", "an expression", "Internal Error", "Internal Error : Please send a bug report.", "\'", "\u0008", "\u000c", "\r", "\t", "::", "$", "||", "=", ">=", "!", "<=", "!=", "<>", "+=", "=~", ";", "IN_FORMAL_COMMENT", "IN_MULTI_LINE_COMMENT", "IN_SINGLE_LINE_COMMENT", "STRING1", "STRING2", "ESC_SYMB_NAME", "a parameter", "INVALID", "CONSTRAINT_VERSION_0", "CONSTRAINT_VERSION_1", "CONSTRAINT_VERSION_2", -"NODE_UNIQUE", "IS NODE UNIQUE", "REL_UNIQUE", "IS RELATIONSHIP UNIQUE", "NODE_KEY", "IS NODE KEY", "REL_KEY", "IS RELATIONSHIP KEY", "NODE_EXISTS", "EXISTS", "NODE_IS_NOT_NULL", "REL_EXISTS", "REL_IS_NOT_NULL", "NODE_IS_TYPED", "IS TYPED", "REL_IS_TYPED", "UNIQUE", "UNIQUE[NESS]", "NODE UNIQUE[NESS]", "RELATIONSHIP_UNIQUE", "REL[ATIONSHIP] UNIQUE[NESS]", "KEY", "NODE KEY", "RELATIONSHIP_KEY", "REL[ATIONSHIP] KEY", "OLD_EXIST", "EXIST", "[PROPERTY] EXIST[ENCE]", "NODE_OLD_EXIST", "NODE EXIST", "NODE_EXIST", -"NODE [PROPERTY] EXIST[ENCE]", "RELATIONSHIP_OLD_EXIST", "RELATIONSHIP EXIST", "RELATIONSHIP_EXIST", "REL[ATIONSHIP] [PROPERTY] EXIST[ENCE]", "PROP_TYPE", "PROPERTY TYPE", "NODE_PROP_TYPE", "NODE PROPERTY TYPE", "RELATIONSHIP_PROP_TYPE", "REL[ATIONSHIP] PROPERTY TYPE", "BUILT_IN", "BUILT IN", "USER_DEFINED", "USER DEFINED", "\'.\' is not a valid character in the remote alias name \'%s\'. Remote alias names using \'.\' must be quoted with backticks e.g. `remote.alias`.", "Invalid input `%s` for name. Expected name to contain at most two components separated by `.`.", -"Closed Dynamic Union Types can not be appended with `NOT NULL`, specify `NOT NULL` on all inner types instead.", "Unexpected type: %s", "NOTHING", "NULL", "BOOLEAN NOT NULL", "STRING NOT NULL", "INTEGER NOT NULL", "FLOAT NOT NULL", "DATE NOT NULL", "LOCAL TIME NOT NULL", "ZONED TIME NOT NULL", "LOCAL DATETIME NOT NULL", "ZONED DATETIME NOT NULL", "DURATION NOT NULL", "POINT NOT NULL", "NODE NOT NULL", "RELATIONSHIP NOT NULL", "MAP NOT NULL", "PATH NOT NULL", "ANY NOT NULL", "PROPERTY VALUE NOT NULL", "OnCreate", -"OnMatch", "no value set for Either", "READ_ONLY", "READ_WRITE", "DATABASE_ALL", "DATABASE_START", "DATABASE_STOP", "ACCESS", "CREATE_TOKEN", "CREATE_PROPERTYKEY", "CREATE_LABEL", "CREATE_RELTYPE", "INDEX_ALL", "INDEX_CREATE", "INDEX_DROP", "INDEX_SHOW", "CONSTRAINT_ALL", "CONSTRAINT_CREATE", "CONSTRAINT_DROP", "CONSTRAINT_SHOW", "TRANSACTION_ALL", "TRANSACTION_SHOW", "TRANSACTION_TERMINATE", "DBMS_ALL", "USER_ALL", "USER_SHOW", "USER_CREATE", "USER_RENAME", "USER_ALTER", "USER_STATUS", "USER_PASSWORD", "USER_AUTH", -"USER_HOME", "USER_DROP", "USER_IMPERSONATE", "ROLE_ALL", "ROLE_SHOW", "ROLE_CREATE", "ROLE_RENAME", "ROLE_DROP", "ROLE_ASSIGN", "ROLE_REMOVE", "DATABASE_MANAGEMENT", "DATABASE_CREATE", "DATABASE_DROP", "DATABASE_COMPOSITE_MANAGEMENT", "DATABASE_COMPOSITE_CREATE", "DATABASE_COMPOSITE_DROP", "DATABASE_ALTER", "SET_DATABASE_ACCESS", "ALIAS_MANAGEMENT", "ALIAS_CREATE", "ALIAS_DROP", "ALIAS_ALTER", "ALIAS_SHOW", "PRIVILEGE_ALL", "PRIVILEGE_SHOW", "PRIVILEGE_ASSIGN", "PRIVILEGE_REMOVE", "EXECUTE_FUNCTION", "EXECUTE_BOOSTED_FUNCTION", -"EXECUTE_PROCEDURE", "EXECUTE_BOOSTED_PROCEDURE", "EXECUTE_ADMIN_PROCEDURE", "SERVER_SHOW", "SERVER_MANAGEMENT", "SETTING_SHOW", "GRAPH_ALL", "GRAPH_WRITE", "GRAPH_CREATE", "GRAPH_MERGE", "GRAPH_DELETE", "GRAPH_LABEL_SET", "GRAPH_LABEL_REMOVE", "GRAPH_PROPERTY_SET", "GRAPH_MATCH", "GRAPH_READ", "GRAPH_TRAVERSE", "NAMED", "ON_ERROR_BREAK", "ON_ERROR_CONTINUE", "ON_ERROR_FAIL", "safeFrom/safeTo is incorrect", "LIST<%s>%s", "EXPECT_BAR", "DO_NOT_EXPECT_BAR", "NFC", "NFD", "NFKC", "NFKD", "BOTH", "LEADING", "TRAILING", -"AutoExtractedParameter", "\\s\\sAUTO(INT|STRING|DOUBLE|LIST)\\d+", "Type mismatch for parameter \'", "\': ", "USE clause must be either the first clause in a (sub-)query or preceded by an importing WITH clause in a sub-query.", "USE clause must be the first clause in a (sub-)query.", "Cannot use standalone call with WHERE (instead use: `CALL ... WITH * WHERE ... RETURN *`)", "Composing commands other than `SHOW TRANSACTIONS` and `TERMINATE TRANSACTIONS`", "There can be only one INPUT DATA STREAM in a query", -"INPUT DATA STREAM must be the first clause in a query", "SingleQuery", "Importing WITH should consist only of simple references to outside variables. ", " cannot follow OPTIONAL ", " (perhaps use a WITH clause between them)", " can only be used at the end of the query.", "WITH is required between ", "When combining `", "` with other show and/or terminate commands, `YIELD *` isn\'t permitted.", "` with other show and/or terminate commands, `YIELD` is mandatory.", "When combining show and/or terminate commands, `RETURN` isn\'t optional.", -"Query must conclude with ", "a RETURN clause, a FINISH clause, an update clause, a unit subquery call, or a procedure call with no YIELD", "Query cannot conclude with ", "CALL", " together with YIELD", " (must be ", ").", "Expected none but found ", " at position ", "Cannot use aggregation in ORDER BY if there are no aggregate expressions in the preceding ", " is out of bounds (min 0, max 5)", "Tuple6", "ReturnItems", "ShortestPathsPatternPart", "allShortestPaths", "shortestPath", "RelationshipChain", "NodePattern", -"-?\\d+((_\\d+)?)*", "UnsignedDecimalIntegerLiteral", "Range", "` clause", "SHOW PRIVILEGE", "ShowPrivileges", "YIELD", "Yield", "SHOW PRIVILEGE COMMANDS", "ShowPrivilegeCommands", "ShowSupportedPrivilegeCommand", "SHOW DATABASE", "SHOW DATABASES", "SHOW DEFAULT DATABASE", "SHOW HOME DATABASE", "ShowDatabase", "SHOW ALIASES", "SHOW ALIAS", "ShowAliases", "SHOW CURRENT USER", "ShowCurrentUser", "SHOW USERS", "ShowUsers", "SHOW POPULATED ROLES", "SHOW ALL ROLES", "ShowRoles", "SHOW SERVERS", "ShowServers", "UnresolvedCall", -"ScopeClauseSubqueryCall", "Where", "And", "Or", "FunctionInvocation", "Returns the difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC", "Timestamp", "Property", "PropertyKeyName", "v1", "v2", "A first value to be returned if the second value is not equivalent.", "A second value against which the first value is compared.", "Returns null if the two given parameters are equivalent, otherwise returns the value of the first parameter.", "NullIf", "Equals", "CaseExpression", -"Cannot yield value from void procedure.", "Procedure call inside a query does not support naming results implicitly (name explicitly using `YIELD` instead)", "Procedure call inside a query does not support passing arguments implicitly. Please pass arguments explicitly in parentheses after procedure name for ", "Procedure call is missing parentheses: ", "at least 1 argument of type ", "at least ", " arguments of types ", "no arguments", "Procedure ", " has signature: ", "\n |meaning that it expects ", -"Procedure call does not provide the required number of arguments: got ", " expected at least ", " (total: ", " of which have default values).\n |\n |", "\n |", "no more than ", "Procedure call provides too many arguments: got ", " expected ", ".\n |\n |", "ResolvedCall", "With", "CALL { RETURN ... }", "Return", "Attempt to instantiate Ref(null)", "ImportingWithSubqueryCall", "USE GRAPH", "UseGraph", "Variable", "REPORT STATUS can only be used when specifying ON ERROR CONTINUE or ON ERROR BREAK", -"InTransactionsParameters", "AllQualifier", "OF ... ROWS", "InTransactionsBatchParameters", "IN ... CONCURRENT", "InTransactionsConcurrencyParameters", "InTransactionsErrorParameters", "InTransactionsReportParameters", "AllDatabasesQualifier", "UserAllQualifier", "RelationshipPattern", "NODE_OR_RELATIONSHIP", "FunctionName", "Namespace", "ExpressionTypeSignature", "Ref@", "DeclarationsAndDependencies", "Top", "SortedSet", "TreeSet", "ordering must not be null", " -> ", "AddedInRewrite", "FunctionTypeSignature", -"Duplicate id: ", "Numeric", "Trigonometric", "Predicate", "Aggregating", "Scalar", "Temporal", "Logarithmic", "Spatial", "GraphDirectReference", "DefaultOrAllShowColumns", "CatalogName", "OrderBy", "ShowColumn", "ListLiteral", "False", "PositionedNode(", "UnionAll", "UnionDistinct", "Expected no unresolved call with WHERE but got: ", "not", "Unknown function \'", "\'. If you intended to use the negation expression, surround it with parentheses.", "arguments", "arguments of type ", "argument of type ", "ResolvedFunctionInvocation", -" should note its Scope in the SemanticState", "SymbolUse(", "SymbolUse", "GraphFunctionReference", "NamespacedName", "ParameterName", "CREATE ALIAS", "CREATE OR REPLACE ALIAS", "Failed to create the specified alias \'", "\': cannot have both `OR REPLACE` and `IF NOT EXISTS`.", "username", "CreateRemoteDatabaseAlias", "\'.\' is not a valid character in the local alias name \'", "\'. Local alias names using \'.\' must be quoted with backticks when adding a local alias to a composite database e.g. `local.alias`.", -"CreateLocalDatabaseAlias", "NoWait", " WAIT", "IndefiniteWait", "TimeoutAfter", " WAIT ", " SECONDS", "address", "state", "message", "success", "CREATE COMPOSITE DATABASE", "CREATE OR REPLACE COMPOSITE DATABASE", "Failed to create the specified composite database \'", "\': COMPOSITE DATABASE names cannot contain \".\". COMPOSITE DATABASE names using \'.\' must be quoted with backticks e.g. `composite.database`.", "CreateCompositeDatabase", "LabelName", "RelTypeName", "CREATE DATABASE", "CREATE OR REPLACE DATABASE", -"Failed to create the specified database \'", "CreateDatabase", "Topology", "CREATE ROLE", "CREATE OR REPLACE ROLE", "Failed to create the specified role \'", "rolename", "CreateRole", "SetHomeDatabaseAction", "UserOptions", "Auth", "native", " must be a String, or a String parameter.", "CREATE USER", "CREATE OR REPLACE USER", "Failed to create the specified user \'", "CreateUser", "ExplicitParameter", "SensitiveStringLiteral", "US-ASCII", "ISO-8859-1", "UTF-16", "UTF-16BE", "UTF-16LE", "AuthId", "SET ID", "Password", -"PasswordChange", "SET PASSWORD CHANGE [NOT] REQUIRED", " IMMUTABLE", " `NaN` is not supported for property-based access control.", " The property value access rule pattern `", "` always evaluates to `NULL`.", " The property `", "` must appear on the left hand side of the `", "` operator.", " = NULL", " Use `IS NULL` instead.", " <> NULL", " Use `IS NOT NULL` instead.", " > NULL", " >= NULL", " < NULL", " <= NULL", "NULL = ", "NULL <> ", "NULL > ", "NULL >= ", "NULL < ", "NULL <= ", " The expression: `", "` is not supported. Property rules can only contain one property.", -":NULL}", " Use `WHERE` syntax in combination with `IS NULL` instead.", "` is not supported. Only single, literal-based predicate expressions are allowed for property-based access control.", "`GRANT`, `DENY` and `REVOKE` are not supported for `", "LOAD privileges with a URL pattern are not currently supported", "` is not supported. All elements in a list must be literals of the same type for property-based access control.", "DENY", "`DENY MERGE` is not supported. Use `DENY SET PROPERTY` and `DENY CREATE` instead.", -"DenyPrivilege", "ENABLE SERVER", "EnableServer", "START DATABASE", "StartDatabase", "STOP DATABASE", "StopDatabase", "name", "composite", "database", "location", "driver", "properties", "allIndexes", "AllIndexes", "id", "populationPercent", "type", "labelsOrTypes", "indexProvider", "owningConstraint", "lastRead", "readCount", "trackedSince", "options", "failureMessage", "createStatement", "rangeIndexes", "RangeIndexes", "fulltextIndexes", "FulltextIndexes", "textIndexes", "TextIndexes", "pointIndexes", "PointIndexes", -"vectorIndexes", "VectorIndexes", "lookupIndexes", "LookupIndexes", "ParsedAsYield", "allFunctions", "AllFunctions", "User", "category", "description", "signature", "isBuiltIn", "argumentDescription", "returnDescription", "aggregating", "rolesExecution", "rolesBoostedExecution", "isDeprecated", "deprecatedBy", "CurrentUser", "builtInFunctions", "BuiltInFunctions", "userDefinedFunctions", "UserDefinedFunctions", "allConstraints", "AllConstraints", "ownedIndex", "propertyType", "keyConstraints", "KeyConstraints", -"nodeKeyConstraints", "NodeKeyConstraints", "RELATIONSHIP KEY", "relationshipKeyConstraints", "RelKeyConstraints", "PROPERTY_TYPE", "propertyTypeConstraints", "PropTypeConstraints", "NODE_PROPERTY_TYPE", "nodePropertyTypeConstraints", "NodePropTypeConstraints", "RELATIONSHIP_PROPERTY_TYPE", "RELATIONSHIP PROPERTY TYPE", "relationshipPropertyTypeConstraints", "RelPropTypeConstraints", "roles", "passwordChangeRequired", "suspended", "home", "SingleNamedDatabaseScope", "DefaultDatabaseScope", "ShowDefaultDatabase", -"AllDatabasesScope", "ShowDatabases", "HomeDatabaseScope", "ShowHomeDatabase", "aliases", "requestedStatus", "default", "requestedPrimariesCount", "requestedSecondariesCount", "creationTime", "lastStartTime", "lastStopTime", "constituents", "currentPrimariesCount", "currentSecondariesCount", "databaseID", "store", "access", "writer", "currentStatus", "statusMessage", "lastCommittedTxn", "replicationLag", "serverID", "resource", "segment", "immutable", "ShowAllPrivileges", "command", "mode", "worksOnSystem", -"admin", "serverId", "httpAddress", "httpsAddress", "health", "hosting", "requestedHosting", "tags", "allowedDatabases", "deniedDatabases", "modeConstraint", "version", "isDynamic", "defaultValue", "startupValue", "isExplicitlySet", "validValues", "qualifier", "target", "scope", "currentQueryId", "outerTransactionId", "connectionId", "clientAddress", "metaData", "currentQuery", "parameters", "planner", "startTime", "currentQueryStartTime", "protocol", "requestUri", "status", "currentQueryStatus", "statusDetails", -"resourceInformation", "activeLockCount", "currentQueryActiveLockCount", "elapsedTime", "cpuTime", "waitTime", "idleTime", "currentQueryElapsedTime", "currentQueryCpuTime", "currentQueryWaitTime", "currentQueryIdleTime", "currentQueryAllocatedBytes", "allocatedDirectBytes", "estimatedUsedHeapMemory", "pageHits", "pageFaults", "currentQueryPageHits", "currentQueryPageFaults", "initializationStackTrace", "provider", "ShowRolesPrivileges", "member", "CREATE", "It is not supported to use the `IS` keyword together with multiple labels in `", -"`. Rewrite the expression as `", "Exactly one relationship type must be specified for ", ". Did you forget to prefix your relationship type with a \':\'?", "A single ", "relationship type ", "must be specified for ", "like `:", "` ", "plain ", "Create", "ForUpdate", "DELETE", "Delete", "Finish", "INSERT", "Insert", "REMOVE", "Remove", "SET", "SetClause", "MATCH", "Match", "", "relationship type", "labels", "join", " scan", "no ", " was", "only the ", " `", "` was", "`, `", "s `", "` were", -"Predicates must include the ", " literal `", "`.\n | That is, the function `", "()` is not compatible with indexes.", "none was", "only `", "property", "the ", "Supported predicates are:\n | equality comparison, inequality (range) comparison, `STARTS WITH`,\n | `IN` condition or checking property existence.\n | The comparison cannot be performed between two property values.", "relationship", "node", "ForMatch", "PatternPartWithSelector", "Merge", "UNWIND", "Unwind", "ProcedureName", -"FOREACH", "Foreach", "[\\w]+://.+:.+@.+", "StringLiteral", "ALTER ALIAS", "AlterLocalDatabaseAlias", "Failed to alter the specified database alias \'", "\': url needs to be defined to alter a remote alias target.", "AlterRemoteDatabaseAlias", "ALTER CURRENT USER SET PASSWORD", "SetOwnPassword", "NoOptions", "OptionsMap", "ALTER DATABASE", "AlterDatabase", "ALTER SERVER", "AlterServer", "ALTER USER", "`ALTER USER` requires at least one clause.", "AlterUser", "RemoveAuth", "RemoveHomeDatabaseAction", "DEALLOCATE DATABASES FROM SERVER", -"fromServerName", "fromServerId", "toServerName", "toServerId", "DeallocateServers", "REALLOCATE DATABASES", "ReallocateDatabases", "ALL DATABASE PRIVILEGES", "AllDatabaseAction", "AccessDatabaseAction", "START", "StartDatabaseAction", "STOP", "StopDatabaseAction", "INDEX MANAGEMENT", "AllIndexActions", "CREATE INDEX", "CreateIndexAction", "DROP INDEX", "DropIndexAction", "SHOW INDEX", "ShowIndexAction", "CONSTRAINT MANAGEMENT", "AllConstraintActions", "CREATE CONSTRAINT", "CreateConstraintAction", "DROP CONSTRAINT", -"DropConstraintAction", "SHOW CONSTRAINT", "ShowConstraintAction", "NAME MANAGEMENT", "AllTokenActions", "CREATE NEW PROPERTY NAME", "CreatePropertyKeyAction", "CREATE NEW NODE LABEL", "CreateNodeLabelAction", "CREATE NEW RELATIONSHIP TYPE", "CreateRelationshipTypeAction", "TRANSACTION MANAGEMENT", "AllTransactionActions", "SHOW TRANSACTION", "ShowTransactionAction", "TERMINATE TRANSACTION", "TerminateTransactionAction", "ALL DBMS PRIVILEGES", "AllDbmsAction", "USER MANAGEMENT", "AllUserActions", "SHOW USER", -"ShowUserAction", "AlterUserAction", "CreateUserAction", "DROP USER", "DropUserAction", "RENAME USER", "RenameUserAction", "SET PASSWORDS", "SetPasswordsAction", "SET AUTH", "SetAuthAction", "SET USER STATUS", "SetUserStatusAction", "SET USER HOME DATABASE", "SetUserHomeDatabaseAction", "IMPERSONATE", "ImpersonateUserAction", "ROLE MANAGEMENT", "AllRoleActions", "SHOW ROLE", "ShowRoleAction", "CreateRoleAction", "DROP ROLE", "DropRoleAction", "RENAME ROLE", "RenameRoleAction", "ASSIGN ROLE", "AssignRoleAction", -"REMOVE ROLE", "RemoveRoleAction", "DATABASE MANAGEMENT", "AllDatabaseManagementActions", "CreateDatabaseAction", "DROP DATABASE", "DropDatabaseAction", "COMPOSITE DATABASE MANAGEMENT", "CompositeDatabaseManagementActions", "CreateCompositeDatabaseAction", "DROP COMPOSITE DATABASE", "DropCompositeDatabaseAction", "AlterDatabaseAction", "SET DATABASE ACCESS", "SetDatabaseAccessAction", "ALIAS MANAGEMENT", "AllAliasManagementActions", "CreateAliasAction", "DROP ALIAS", "DropAliasAction", "AlterAliasAction", "ShowAliasAction", -"PRIVILEGE MANAGEMENT", "AllPrivilegeActions", "ASSIGN PRIVILEGE", "AssignPrivilegeAction", "REMOVE PRIVILEGE", "RemovePrivilegeAction", "ShowPrivilegeAction", "EXECUTE USER DEFINED FUNCTION", "ExecuteFunctionAction", "EXECUTE BOOSTED USER DEFINED FUNCTION", "ExecuteBoostedFunctionAction", "EXECUTE PROCEDURE", "ExecuteProcedureAction", "EXECUTE BOOSTED PROCEDURE", "ExecuteBoostedProcedureAction", "EXECUTE ADMIN PROCEDURES", "ExecuteAdminProcedureAction", "ShowServerAction", "SERVER MANAGEMENT", "ServerManagementAction", -"SHOW SETTING", "ShowSettingAction", "ALL GRAPH PRIVILEGES", "AllGraphPrivileges", "AllGraphAction", "Write", "WriteAction", "CreateElement", "CreateElementAction", "MergeAdminAction", "DeleteElement", "DeleteElementAction", "SetLabel", "SetLabelAction", "RemoveLabel", "RemoveLabelAction", "SET PROPERTY", "SetProperty", "SetPropertyAction", "MatchAction", "Read", "ReadAction", "TRAVERSE", "Traverse", "TraverseAction", "DbmsPrivilege", "DropDatabaseAlias", "DESTROY DATA", "DestroyData", "DUMP DATA", "DumpData", -"RESTRICT", "Restrict", "CASCADE ALIASES", "CascadeAliases", "DropDatabase", "Failed to create ", ": Invalid option provided, valid options are `indexProvider` and `indexConfig`.", "DropConstraintOnName", "DropIndexOnName", "DropRole", "DROP SERVER", "DropServer", "DropUser", "GRANT", "GrantPrivilege", "GRANT ROLE", "GrantRolesToUsers", "from rolename", "to rolename", "RenameRole", "RENAME SERVER", "RenameServer", "from username", "to username", "RenameUser", "REVOKE", "RevokePrivilege", "RevokeGrantType", "GRANTED", -"RevokeDenyType", "DENIED", "RevokeBothType", "REVOKE ROLE", "RevokeRolesFromUsers", "RemovePropertyItem", "We don\'t expect this to be called on any other logical properties. Got: ", "ContainerIndex", "RemoveDynamicPropertyItem", "SetPropertyItem", "SetDynamicPropertyItem", "SetExactPropertiesFromMapItem", "SetIncludingPropertiesFromMapItem", "UsingScanHint", "LabelOrRelTypeName", "REPEATABLE ELEMENTS", "RepeatableElements", "DIFFERENT RELATIONSHIPS", "DifferentRelationships", "NamedPatternPart", "ProcedureOutput", -"AscSortItem", "DescSortItem", "DatabasePrivilege", "NamedDatabasesScope", "AllGraphsScope", "HomeGraphScope", "NamedGraphsScope", "GraphPrivilege", "LoadPrivilege", "LOAD", "LoadUrlAction", "FileResource", "LoadUrlQualifier", "LoadAllDataAction", "LoadAllQualifier", "LoadCidrAction", "LoadCidrQualifier", "LabelAllQualifier", "ElementsAllQualifier", "AliasedReturnItem", "SignedDecimalIntegerLiteral", "PathPatternPart", "RemoveLabelItem", "SetLabelItem", "UsingIndexHint", "SeekOrScan", "SeekOnly", "SHORTEST ", -" PATHS", "AnyShortestPath", "ALL SHORTEST PATHS", "AllShortestPaths", "ANY ", "AnyPath", "ALL PATHS", "AllPaths", " PATH GROUPS", "ShortestGroups", "OnErrorContinue", "OnErrorBreak", "OnErrorFail", "Xor", "RelationshipQualifier", "RelationshipAllQualifier", "LabelQualifier", "PatternQualifier", "ElementQualifier", "PropertiesResource", "AllPropertyResource", "LabelsResource", "AllLabelResource", "NaN", "True", "CountStar", "Infinity", "MapExpression", "INCOMING", "OUTGOING", "-?0o(_?[0-7]+)+", "SignedOctalIntegerLiteral", -"-?0x(_?[0-9a-fA-F]+)+", "SignedHexIntegerLiteral", "-?(\\d+((_\\d+)?)*)?(\\.\\d+((_\\d+)?)*)?([eE]([+-])?\\d+((_\\d+)?)*)?", "_", "DecimalDoubleLiteral", "ExistsExpression", "CountExpression", "CollectExpression", "MapProjection", "PatternComprehension", "RelationshipsPattern", "Returns true if the predicate holds for all elements in the given `LIST`.", "A variable that can be used within the `WHERE` clause.", "list", "A predicate must hold for all elements in this list for the function to return `true`.", -"predicate", "A predicate that is tested against all items in the given list.", "Returns true if the predicate holds for at least one element in the given `LIST`.", "A list for the predicate to check against.", "Returns true if the predicate holds for no element in the given `LIST`.", "Returns true if the predicate holds for exactly one of the elements in the given `LIST`.", "A value to be normalized.", "Normalize a `STRING`. The `STRING` will be normalized using the normal form \'NFC\'.", "normalForm", -"(input :: STRING, normalForm = NFC :: [NFC, NFD, NFKC, NFKD]) :: STRING", "[NFC, NFD, NFKC, NFKD]", "A keyword specifying any of the normal forms; NFC, NFD, NFKC or NFKD.", "Normalize a `STRING`. The `STRING` will be normalized according to the specified normalization form.", "Normalize", "trimSpecification", "(input :: STRING) :: STRING", "[LEADING, TRAILING, BOTH]", "The parts of the string to trim; LEADING, TRAILING, BOTH", "A value from which all leading and trailing whitespace will be removed.", "Returns the given `STRING` with leading and trailing whitespace removed.", -"trimCharacterString", "([[LEADING | TRAILING | BOTH] [trimCharacterString :: STRING] FROM] input :: STRING) :: STRING", "The characters to be removed from the start and/or end of the given string.", "A value from which all leading and/or trailing trim characters will be removed.", "Returns the given `STRING` with leading and/or trailing `trimCharacterString` removed.", "Trim", "ShortestPathExpression", "PatternExpression", "Not", "LiteralEntry", "PropertySelector", "VariableSelector", "AllPropertiesSelector", -"ParenthesizedPath", "GreaterThanOrEqual", "GreaterThan", "LessThanOrEqual", "LessThan", "InvalidNotEquals", "NotEquals", "Leaf", "FixedQuantifier", "PlusQuantifier", "StarQuantifier", "IntervalQuantifier", "Placeholder", "ENDS WITH", "EndsWith", "RegexMatch", "STARTS WITH", "StartsWith", "IsNull", "IsNotNull", "IS NORMALIZED", "IsNormalized", "IS NOT NORMALIZED", "IsNotNormalized", "IS ::", "IsTyped", "IS NOT ::", "IsNotTyped", "Concatenate", "Subtract", "Add", "Contains", "ColonDisjunction", "Divide", "Modulo", -"Multiply", "ColonConjunction", "Pow", "Negation", "UnarySubtract", "UnaryAdd", "Wildcard", "DynamicLeaf", "DynamicLabelExpression", "DynamicLabelOrRelTypeExpression", "DynamicRelTypeExpression", "ListSlice", "LabelExpressionPredicate", "): ", "Symbol", "IfExistsInvalidSyntax", "IfExistsReplace", "IfExistsDoNothing", "IfExistsThrowError", "OptionsParam", " constraint", " constraint: `OR REPLACE` cannot be used together with this command.", " Lists cannot have lists as an inner type.", " Lists cannot have a union of types as an inner type.", -" Lists cannot have nullable inner types.", "CreateConstraintCommand", "Did not expect Dynamic Labels here", "Did not expect Dynamic Relationships here", "uniqueness", "IS UNIQUE", "NodePropertyUniqueness", "relationship uniqueness", "RelationshipPropertyUniqueness", "node property existence", "NodePropertyExistence", "relationship property existence", "RelationshipPropertyExistence", "NOTHING type is not supported for use in this context", "NothingType", "NULL type is not supported for use in this context", -"NullType", " constraint: Invalid property type `", "CreatePropertyTypeConstraint", "ArgumentUnordered", "Failed to create index: `OR REPLACE` cannot be used together with this command.", "CreateSingleLabelPropertyIndexCommand", "RangeCreateIndex", "range node property index", "range relationship property index", "range indexes", "text node index", "text relationship index", "text indexes", "TextCreateIndex", "point node index", "point relationship index", "point indexes", "PointCreateIndex", "VECTOR INDEX", -"vector node index", "vector relationship index", "vector indexes", "VectorCreateIndex", "CreateFulltextIndexCommand", ": Function \'", "\' is not allowed, valid function is \'", "\'.", "CreateLookupIndexCommand", "ShowAndTerminateColumn", "ShowIndexesClause", "SHOW FUNCTIONS", "ShowFunctionsClause", "ShowConstraintsClause", "UNIQUENESS", "uniquenessConstraints", "UniqueConstraintsCypher5", "NODE UNIQUENESS", "nodeUniquenessConstraints", "NodeUniqueConstraintsCypher5", "RELATIONSHIP_UNIQUENESS", "RELATIONSHIP UNIQUENESS", -"relationshipUniquenessConstraints", "RelUniqueConstraintsCypher5", "PROPERTY_EXISTENCE", "PROPERTY EXISTENCE", "existenceConstraints", "ExistsConstraintsCypher5", "NODE_PROPERTY_EXISTENCE", "NODE PROPERTY EXISTENCE", "nodeExistenceConstraints", "NodeExistsConstraintsCypher5", "RELATIONSHIP_PROPERTY_EXISTENCE", "RELATIONSHIP PROPERTY EXISTENCE", "relationshipExistenceConstraints", "RelExistsConstraintsCypher5", "ShowUserPrivileges", "ShowUsersPrivileges", "ShowProceduresClause", "ShowSettingsClause", "ShowTransactionsClause", -"TerminateTransactionsClause", "DefaultWith", "CSV field terminator can only be one character wide", "LoadCSV", "UnknownSize", "UsingJoinHint", "ProcedureResultItem", "QuantifiedPath", "PathConcatenation", "ListComprehension", "[...]", "ExtractScope", "ReduceExpression", "ReduceScope", ") in ", "AllIterablePredicate", "FilterScope", "AnyIterablePredicate", "NoneIterablePredicate", "SingleIterablePredicate", "AND", "( ", "Ands", "Cannot use `YIELD *` outside standalone call", "CALL { ... } IN TRANSACTIONS after a write clause is not supported", -"Acc", "node key", "IS KEY", "NodeKeyCypher25", "NodeKeyCypher5", "relationship key", "RelationshipKeyCypher25", "RelationshipKeyCypher5", "NodePropertyType", "node property type", "IS :: ", "RelationshipPropertyType", "relationship property type", "accumulator is ", " but expression has type ", "IndexedSeqView", "PartitionedClauses", "A numeric value from which the absolute number will be returned.", "Returns the absolute value of an `INTEGER` or `FLOAT`.", "abs", "Abs", "An angle in radians.", "Returns the arccosine of a `FLOAT` in radians.", -"acos", "Acos", "Returns the arcsine of a `FLOAT` in radians.", "asin", "Asin", "Returns the arctangent of a `FLOAT` in radians.", "atan", "Atan", "y", "x", "A y angle in radians.", "An x angle in radians.", "Returns the arctangent2 of a set of coordinates in radians.", "atan2", "Atan2", "A value aggregated to form an average.", "Returns the average of a set of `INTEGER`, `FLOAT` or `DURATION` values.", "avg", "Avg", "A value from which the leading and trailing trim character will be removed.", "A character to be removed from the start and end of the given string.", -"Returns the given `STRING` with leading and trailing `trimCharacterString` characters removed.", "btrim", "BTrim", "A value to be rounded to the nearest higher integer.", "Returns the smallest `FLOAT` that is greater than or equal to a number and equal to an `INTEGER`.", "ceil", "Ceil", "A string value whose length in characters is to be calculated.", "Returns the number of Unicode characters in a `STRING`.", "char_length", "CharLength", "character_length", "CharacterLength", "If this is the first non-`NULL` value, it will be returned.", -"Returns the first non-null value in a list of expressions.", "coalesce", "Coalesce", "A value aggregated into a list.", "Returns a list containing the values returned by an expression.", "collect", "Collect", "Returns the cosine of a `FLOAT`.", "cos", "Cos", "Returns the cotangent of a `FLOAT`.", "cot", "Cot", "A value to be aggregated.", "Returns the number of values or rows.", "Count", "Converts radians to degrees.", "degrees", "Degrees", "point.distance", "from", "A start point.", "An end point in the same CRS as the start point.", -"Returns a `FLOAT` representing the geodesic distance between any two points in the same CRS.", "Distance", "Returns the base of the natural logarithm, e.", "e", "E", "An element id of a node or a relationship.", "Returns the element id of a `NODE` or `RELATIONSHIP`.", "elementId", "ElementId", "A relationship.", "Returns the end `NODE` of a `RELATIONSHIP`.", "endNode", "EndNode", "A pattern to verify the existence of.", "Returns true if a match for the pattern exists in the graph.", "exists", "Exists", "A value to which the base of the natural logarithm, e, will be raised.", -"Returns e^n, where e is the base of the natural logarithm, and n is the value of the argument expression.", "exp", "Exp", "Returns the absolute path of the file that LOAD CSV is using.", "file", "File", "A value to be rounded to the nearest lower integer.", "Returns the largest `FLOAT` that is less than or equal to a number and equal to an `INTEGER`.", "floor", "Floor", "The name of the graph to be resolved.", "Returns the graph reference of the given name. It is only supported in the `USE` clause, on composite databases.", -"graph.byName", "An element id of a node or relationship.", "Returns the graph reference with the given element id. It is only supported in the `USE` clause, on composite databases.", "graph.byElementId", "Returns half the versine of a number.", "haversin", "Haversin", "head", "A list from which the first element will be returned.", "Returns the first element in a `LIST`.", "Head", "A node or a relationship.", "Returns the id of a `NODE` or `RELATIONSHIP`.", "Id", "isEmpty", "A value to be checked for emptiness.", -"Checks whether a `STRING`, `MAP` or `LIST` is empty.", "IsEmpty", "A numeric value to be compared against `NaN`.", "Returns whether the given `INTEGER` or `FLOAT` is NaN.", "isNaN", "IsNaN", "A node whose labels will be returned.", "Returns a `LIST` containing the `STRING` representations for all the labels of a `NODE`.", "Labels", "A list from which the last element will be returned.", "Returns the last element in a `LIST`.", "last", "Last", "original", "length", "A string value whose rightmost characters will be trimmed.", -"The length of the leftmost characters to be returned.", "Returns a `STRING` containing the specified number (`INTEGER`) of leftmost characters in the given `STRING`.", "left", "A path whose relationships will be counted.", "Returns the length of a `PATH`.", "Length", "Returns the line number that LOAD CSV is currently using.", "linenumber", "Linenumber", "A value for which the natural logarithm will be returned.", "Returns the natural logarithm of a `FLOAT`.", "log", "Log", "A value for which the common logarithm (base 10) will be returned.", -"Returns the common logarithm (base 10) of a `FLOAT`.", "log10", "Log10", "A string to be converted into lowercase.", "Returns the given `STRING` in lowercase.", "A value in which all leading whitespace will be removed.", "Returns the given `STRING` with leading whitespace removed.", "A value from which the leading trim character will be removed.", "A character to be removed from the start of the given string.", "Returns the given `STRING` with leading `trimCharacterString` characters removed.", "ltrim", "LTrim", -"Returns the maximum value in a set of values.", "max", "Max", "Returns the minimum value in a set of values.", "min", "Min", "A path whose nodes will be returned.", "Returns a `LIST` containing all the `NODE` values in a `PATH`.", "nodes", "Nodes", "Returns the mathematical constant pi.", "pi", "percentile", "A percentile between 0.0 and 1.0.", "Returns the percentile of a value over a group using linear interpolation.", "percentileCont", "PercentileCont", "Returns the nearest `INTEGER` or `FLOAT` value to the given percentile over a group using a rounding method.", -"percentileDisc", "PercentileDisc", "percentiles", "propertyKeys", "isDiscrete", "Returns the nearest `INTEGER` or `FLOAT` value for each of the given percentiles.", "Percentiles", "Cartesian 2D: {x :: FLOAT, y :: FLOAT, crs = \"cartesian\" :: STRING, srid = 7203 :: INTEGER}\n\nCartesian 3D: {x :: FLOAT, y :: FLOAT, z :: FLOAT, crs = \"cartesian-3D\" :: STRING, srid = 9157 :: INTEGER} \n\nWGS 84 2D: {longitude | x :: FLOAT, latitude | y :: FLOAT, crs = \"WGS-84-2D\" :: STRING, srid = 4326 :: INTEGER}\n\nWGS 84 3D: {longitude | x :: FLOAT, latitude | y :: FLOAT, height | z :: FLOAT, crs = \"WGS-84-3D\" :: STRING, srid = 4979 :: INTEGER}", -"Returns a 2D or 3D point object, given two or respectively three coordinate values in the Cartesian coordinate system or WGS 84 geographic coordinate system.", "A node or relationship from which the names of all properties will be returned.", "Returns a `LIST` containing the `STRING` representations for all the property names of a `NODE`, `RELATIONSHIP` or `MAP`.", "keys", "Keys", "An angle in degrees.", "Converts degrees to radians.", "radians", "Radians", "rand", "Returns a random `FLOAT` in the range from 0 (inclusive) to 1 (exclusive).", -"Rand", "Generates a random UUID.", "randomUUID", "start", "end", "The start value of the range.", "The end value of the range.", "Returns a `LIST` comprising all `INTEGER` values within a specified range.", "step", "The size of the increment (default value: 1).", "Returns a `LIST` comprising all `INTEGER` values within a specified range created with step length.", "accumulator", "reduce", "(accumulator :: VARIABLE = initial :: ANY, variable :: VARIABLE IN list :: LIST | expression :: ANY) :: ANY", -"A variable that holds the result as the list is iterated.", "A variable that can be used within the reducing expression.", "Runs an expression against individual elements of a `LIST`, storing the result of the expression in an accumulator.", "Reduce", "The path from which all relationships will be returned.", "Returns a `LIST` containing all the `RELATIONSHIP` values in a `PATH`.", "relationships", "Relationships", "search", "replace", "The string to be modified.", "The value to replace in the original string.", -"The value to be inserted in the original string.", "Returns a `STRING` in which all occurrences of a specified search `STRING` in the given `STRING` have been replaced by another (specified) replacement `STRING`.", "Replace", "The string or list to be reversed.", "Returns a `STRING` or `LIST` in which the order of all characters or elements in the given `STRING` or `LIST` have been reversed.", "reverse", "Reverse", "A string value whose leftmost characters will be trimmed.", "The length of the rightmost characters to be returned.", -"Returns a `STRING` containing the specified number of rightmost characters in the given `STRING`.", "right", "A value to be rounded.", "Returns the value of a number rounded to the nearest `INTEGER`.", "precision", "The rounding precision.", "Returns the value of a number rounded to the specified precision using rounding mode HALF_UP.", "A precision rounding mode (`UP`, `DOWN`, `CEILING`, `FLOOR`, `HALF_UP`, `HALF_DOWN`, `HALF_EVEN`).", "Returns the value of a number rounded to the specified precision with the specified rounding mode.", -"round", "Round", "Returns the given `STRING` with trailing whitespace removed.", "Returns the given `STRING` with trailing `trimCharacterString` characters removed.", "rtrim", "RTrim", "A positive or negative number.", "Returns the signum of an `INTEGER` or `FLOAT`: 0 if the number is 0, -1 for any negative number, and 1 for any positive number.", "sign", "Sign", "Returns the sine of a `FLOAT`.", "sin", "Sin", "A value whose length is to be calculated.", "Returns the number of items in a `LIST` or the number of Unicode characters in a `STRING`.", -"size", "Size", "The value to calculate the square root of.", "Returns the square root of a `FLOAT`.", "sqrt", "Sqrt", "splitDelimiters", "The string to be split.", "The string with which to split the original string.", "Returns a `LIST` resulting from the splitting of the given `STRING` around matches of the given delimiter(s).", "split", "Split", "Returns the start `NODE` of a `RELATIONSHIP`.", "startNode", "StartNode", "The value to calculate the standard deviation of.", "Returns the standard deviation for the given value over a group for a sample of a population.", -"stdev", "StdDev", "The value to calculate the population standard deviation of.", "Returns the standard deviation for the given value over a group for an entire population.", "stdevp", "StdDevP", "The string to be shortened.", "The start position of the new string.", "Returns a substring of the given `STRING`, beginning with a 0-based index start.", "The length of the new string.", "Returns a substring of a given `length` from the given `STRING`, beginning with a 0-based index start.", "substring", "Substring", -"Returns the sum of a set of `INTEGER`, `FLOAT` or `DURATION` values", "sum", "Sum", "A list from which all but the first element will be returned.", "Returns all but the first element in a `LIST`.", "tail", "Tail", "Returns the tangent of a `FLOAT`.", "tan", "Tan", "A value to be converted into a boolean.", "Converts a `BOOLEAN`, `STRING` or `INTEGER` value to a `BOOLEAN` value. For `INTEGER` values, 0 is defined to be false and any other `INTEGER` is defined to be true.", "toBoolean", "ToBoolean", "A list of values to be converted into a list of booleans.", -"Converts a `LIST` of values to a `LIST` values. If any values are not convertible to `BOOLEAN` they will be null in the `LIST` returned.", "toBooleanList", "ToBooleanList", "A value to be converted into a boolean or null.", "Converts a value to a `BOOLEAN` value, or null if the value cannot be converted.", "toBooleanOrNull", "ToBooleanOrNull", "A value to be converted into a float.", "Converts a `STRING`, `INTEGER` or `FLOAT` value to a `FLOAT` value.", "toFloat", "ToFloat", "A list of values to be converted into a list of floats.", -"Converts a `LIST` to a `LIST` values. If any values are not convertible to `FLOAT` they will be null in the `LIST` returned.", "toFloatList", "ToFloatList", "A value to be converted into a float or null.", "Converts a value to a `FLOAT` value, or null if the value cannot be converted.", "toFloatOrNull", "ToFloatOrNull", "A value to be converted into an integer.", "Converts a `BOOLEAN`, `STRING`, `INTEGER` or `FLOAT` value to an `INTEGER` value. For `BOOLEAN` values, true is defined to be 1 and false is defined to be 0.", -"toInteger", "ToInteger", "A list of values to be converted into a list of integers.", "Converts a `LIST` to a `LIST` values. If any values are not convertible to `INTEGER` they will be null in the `LIST` returned.", "toIntegerList", "ToIntegerList", "A value to be converted into an integer or null.", "Converts a value to an `INTEGER` value, or null if the value cannot be converted.", "toIntegerOrNull", "ToIntegerOrNull", "toLower", "ToLower", "A value to be converted into a string.", -"Converts an `INTEGER`, `FLOAT`, `BOOLEAN`, `POINT` or temporal type (i.e. `DATE`, `ZONED TIME`, `LOCAL TIME`, `ZONED DATETIME`, `LOCAL DATETIME` or `DURATION`) value to a `STRING`.", "toString", "ToString", "A list of values to be converted into a list of strings.", "Converts a `LIST` to a `LIST` values. If any values are not convertible to `STRING` they will be null in the `LIST` returned.", "toStringList", "ToStringList", "A value to be converted into a string or null.", "Converts an `INTEGER`, `FLOAT`, `BOOLEAN`, `POINT` or temporal type (i.e. `DATE`, `ZONED TIME`, `LOCAL TIME`, `ZONED DATETIME`, `LOCAL DATETIME` or `DURATION`) value to a `STRING`, or null if the value cannot be converted.", -"toStringOrNull", "ToStringOrNull", "A string to be converted into uppercase.", "Returns the given `STRING` in uppercase.", "toUpper", "ToUpper", "An entity to return the properties from.", "Returns a `MAP` containing all the properties of a `NODE`, `RELATIONSHIP` or `MAP`.", "Properties", "Returns a `STRING` representation of the `RELATIONSHIP` type.", "Type", "A value to return the type of.", "Returns a `STRING` representation of the most precise value type that the given expression evaluates to.", "ValueType", -"point.withinBBox", "lowerLeft", "upperRight", "A point to be confirmed in the bounding box.", "The lower left side point of the bounding box.", "The upper right side point of the bounding box.", "Returns true if the provided point is within the bounding box defined by the two provided points.", "WithinBBox", "a", "b", "A list representing the first vector.", "A list representing the second vector.", "Returns a `FLOAT` representing the similarity between the argument vectors based on their Euclidean distance.", -"vector.similarity.euclidean", "VectorSimilarityEuclidean", "Returns a `FLOAT` representing the similarity between the argument vectors based on their cosine.", "vector.similarity.cosine", "VectorSimilarityCosine", "FULLTEXT INDEX", "fulltext node index", "fulltext relationship index", "fulltext indexes", "LOOKUP INDEX", "node lookup index", "relationship lookup index", "token lookup index", "` is only allowed at the first position of a USE clause.", "=_p, ctx dependent=true", "EOF", "token index ", " out of range 0..", "EDGE ", " upon ", "DFA=\n", "addDFAState ", " exists", "addDFAState new ", "reportAttemptingFullContext decision=", "reportAmbiguity ", "TURN_OFF_LR_LOOP_ENTRY_BRANCH_OPT", "SLL", "LL", "LL_EXACT_AMBIG_DETECTION", "unknown recognition error type: ", "", -"no viable alternative at input ", "mismatched input ", " expecting ", "rule ", "extraneous input ", "missing ", "", "", "n/a", ": expected ", "cannot consume EOF", "tokenSource cannot be null", "nextToken requires a non-null input stream.", "SPACE", "SINGLE_LINE_COMMENT", "MULTI_LINE_COMMENT", "DECIMAL_DOUBLE", "UNSIGNED_DECIMAL_INTEGER", "DECIMAL_EXPONENT", "INTEGER_PART", "UNSIGNED_HEX_INTEGER", "UNSIGNED_OCTAL_INTEGER", "STRING_LITERAL1", "STRING_LITERAL2", "EscapeSequence", -"ESCAPED_SYMBOLIC_NAME", "ADMIN", "ADMINISTRATOR", "ALIAS", "ALIASES", "ALL_SHORTEST_PATHS", "ALTER", "ARRAY", "AS", "ASC", "ASCENDING", "ASSIGN", "AT", "AUTH", "BAR", "BINDINGS", "BOOL", "BOOSTED", "BREAK", "BUILT", "BY", "CASCADE", "CHANGE", "CIDR", "COLLECT", "COLON", "COLONCOLON", "COMMA", "COMMAND", "COMMANDS", "COMPOSITE", "CONSTRAINTS", "CONTAINS", "COPY", "CONTINUE", "COUNT", "CSV", "CURRENT", "DATA", "DATABASES", "DATETIME", "DEALLOCATE", "DEFINED", "DESC", "DESCENDING", "DESTROY", "DETACH", "DIFFERENT", -"DOLLAR", "DISTINCT", "DIVIDE", "DOT", "DOTDOT", "DOUBLEBAR", "DROP", "DRYRUN", "DUMP", "EACH", "EDGE", "ENABLE", "ELEMENT", "ELEMENTS", "ELSE", "ENCRYPTED", "ENDS", "EQ", "EXECUTABLE", "EXECUTE", "EXISTENCE", "ERROR", "FAIL", "FALSE", "FIELDTERMINATOR", "FOR", "FUNCTION", "FUNCTIONS", "GE", "GRAPHS", "GROUP", "GROUPS", "GT", "HEADERS", "ID", "IF", "IMMUTABLE", "INDEXES", "INF", "INFINITY", "INT", "IS", "JOIN", "LABEL", "LABELS", "AMPERSAND", "EXCLAMATION_MARK", "LBRACKET", "LCURLY", "LE", "LIMITROWS", "LIST", -"LOCAL", "LPAREN", "LT", "MANAGEMENT", "MINUS", "PERCENT", "INVALID_NEQ", "NEQ", "NAME", "NAMES", "NAN", "NEW", "NODETACH", "NODES", "NORMALIZE", "NORMALIZED", "NOT", "NOWAIT", "OF", "OFFSET", "ON", "ONLY", "OPTIONAL", "OPTIONS", "OPTION", "OR", "ORDER", "PASSWORDS", "PATHS", "PLAINTEXT", "PLUS", "PLUSEQUAL", "POPULATED", "POW", "PRIMARY", "PRIMARIES", "PRIVILEGE", "PRIVILEGES", "PROCEDURE", "PROCEDURES", "PROPERTY", "PROVIDER", "PROVIDERS", "QUESTION", "RBRACKET", "RCURLY", "REALLOCATE", "REDUCE", "RENAME", -"REGEQ", "RELATIONSHIPS", "REPEATABLE", "REQUIRE", "REQUIRED", "ROLE", "ROLES", "ROW", "ROWS", "RPAREN", "SCAN", "SEC", "SECOND", "SECONDARY", "SECONDARIES", "SECONDS", "SEEK", "SEMICOLON", "SERVER", "SERVERS", "SETTING", "SETTINGS", "SHORTEST_PATH", "SHORTEST", "SHOW", "SIGNED", "SINGLE", "SKIPROWS", "STARTS", "STATUS", "SUPPORTED", "TARGET", "TERMINATE", "THEN", "TIME", "TIMES", "TIMESTAMP", "TIMEZONE", "TRANSACTION", "TRANSACTIONS", "TRIM", "TRUE", "TYPE", "TYPED", "TYPES", "URL", "USE", "USERS", "USING", -"VALUE", "VARCHAR", "VERTEX", "WAIT", "WHEN", "WHERE", "WITHOUT", "XOR", "ZONE", "ZONED", "IDENTIFIER", "EXTENDED_IDENTIFIER", "ARROW_LINE", "ARROW_LEFT_HEAD", "ARROW_RIGHT_HEAD", "LETTER", "PART_LETTER", "A", "B", "C", "F", "G", "H", "I", "J", "K", "L", "M", "O", "P", "Q", "R", "T", "U", "V", "X", "Y", "Z", "ErrorChar", "\'|\'", "\':\'", "\'::\'", "\',\'", "\'$\'", "\'/\'", "\'.\'", "\'..\'", "\'||\'", "\'=\'", "\'>=\'", "\'>\'", "\'&\'", "\'!\'", "\'[\'", "\'{\'", "\'<=\'", "\'(\'", "\'<\'", "\'-\'", "\'%\'", -"\'!=\'", "\'<>\'", "\'+\'", "\'+=\'", "\'^\'", "\'?\'", "\']\'", "\'}\'", "\'=~\'", "\')\'", "\';\'", "\'*\'", "4.13.2", "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "DEFAULT_MODE", "", "\u0004\u0000ijૻ\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002\u0008\u0007\u0008\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002\u000c\u0007\u000c\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002" +"OPERATION", "OPERATION_CODE", "_severity", "_position", "offset", "line", "column", "Expected parameterKeys: %s and parameterValues: %s to have the same length.", "Enum ", " does not have the ", " constant", "null provider key prohibited", "empty provider key prohibited", "null provider version prohibited", "{key=", ", version=", "Neo.%s.%s.%s", "Status.Code[", "CONCURRENT", "UNORDERED", "IDENTITY_FINISH", "und", "en", "CA", "fr", "zh", "CN", "FR", "de", "DE", "it", "IT", "ja", "JP", "ko", "KR", "TW", "GB", +"US", "$`", "FULLTEXT", "LOOKUP", "VECTOR", "ClientError", "The Client sent a bad request - changing the request might yield a successful outcome.", "ClientNotification", "There are notifications about the request sent by the client.", "TransientError", "The database cannot service the request right now, retrying later might yield a successful outcome. ", "DatabaseError", "The database failed to service the request. ", "WARNING", "INFORMATION", "DEPRECATION", "HINT", "PERFORMANCE", "GENERIC", "UNRECOGNIZED", +"UNKNOWN", "UNSUPPORTED", "SECURITY", "TOPOLOGY", "GQLSTATUS must be 5 characters and alphanumeric, got an empty string.", "[A-Za-z0-9]{5}", "GQLSTATUS must be 5 characters and alphanumeric, got: %s.", "NO_DATA", "SUCCESSFUL_COMPLETION", "INFORMATIONAL", "CONNECTION_EXCEPTION", "DATA_EXCEPTION", "SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION", "GENERAL_PROCESSING_EXCEPTION", "SYSTEM_CONFIGURATION_OR_OPERATION_EXCEPTION", "PROCEDURE_EXCEPTION", "DEPENDENT_OBJECT_ERROR", "GRAPH_TYPE_VIOLATION", "INVALID_TRANSACTION_STATE", +"INVALID_TRANSACTION_TERMINATION", "TRANSACTION_ROLLBACK", "characterRangeList", "hintList", "inputList", "labelList", "mapKeyList", "namespaceList", "optionList", "paramList", "portList", "predList", "propKeyList", "serverList", "valueList", "valueTypeList", "variableList", "ANDED", "ORED", "COMMAD", "CLIENT_ERROR", "DATABASE_ERROR", "TRANSIENT_ERROR", "boltMsgLenLimit", "count", "count1", "count2", "countAllocs", "countSeeders", "dim1", "dim2", "entityId", "lower", "pos", "timeAmount", "upper", "+ ", "0-", +"Can\'t convert code point ", " to char", "0x", "--#+ 0,(<", "Illegal format flags ", " for conversion ", "Duplicate format flags: ", "ROLLBACK", "NONE", "mutation occurred during iteration", "TopLevelBracesUnwrapped", "OptionalCallProcedureWrapped", "LiteralsExtracted", "SensitiveLiteralsExtracted", "FunctionInvocationsResolved", "Unknown format conversion: ", " has a negated post-condition: ", ". That is not allowed.", " has an negated invalidated condition: ", "Illegal precision: ", "Can\'t format argument of ", +" using ", " conversion", "This exception should not been thrown", "Currency not found: ", "-", "Positive number pattern not found in ", "Expected \';\' at ", " in ", "Can\'t avoid rounding", "Overflow", "Underflow", "assertion failed: ", "Array.length must be power of 2", "empty collection", "ArrayDeque", "Queue", "Illegal format flags: ", "Missing format with for specifier ", "Non-negative array size required", "ArrayDeque too big - cannot allocate ArrayDeque of length ", "power of ten too big", "SeqView", +"ReturnItemsAreAliased", "ExpressionsInOrderByAndWhereUseAliases", "Prefix contains special character at ", "Quote opened at ", " was not closed in ", "Group separator found at fractional part at ", "Unexpected second decimal separator at ", "Unexpected \'0\' at optional digit part at ", "Unexpected char at exponent at ", "Pattern does not specify exponent digits at ", "Unexpected \'#\' at non-optional digit part at ", "Two group separators at ", "Pattern does not specify integer digits at ", "Group separator at the end of number at ", +" = ", "Failed rewriting ", "\nTried using children: ", "ObfuscationMetadata", "\" -> \"", "NegatedCondition", "There is no step introducing ", "Left", " has ", " as a pre-condition, but ", " is an initial condition. That is currently not allowed.", "ByInitialCondition", "Right", "Expected exactly one statement per query but got: %s", " is out of bounds (min 0, max 2)", "Tuple3", "Invalid input \'", "SemanticCheckResult", "Got semantic deprecations ", " but no SemanticTable", "OpenCypherExceptionFactory", +"Stack", "ClosedDynamicUnionType", "PropertyValueType", "Property Value", "PROPERTY VALUE", "Expected procedures to have been resolved already", "Scope", "USE multiple graph selector", "Statement", "Semantics", "ListSet", "Error during rewriting after ", ". The following conditions where violated: \n", "ValidatingRewriter", "multiple graphs", "show setting", "Match modes", "composable commands", "`GRAPH TYPE` schema management", "org.neo4j.cypher.internal.expressions.UnsignedDecimalIntegerLiteral", "org.neo4j.cypher.internal.expressions.NaN$$anon$9", +"org.neo4j.cypher.internal.ast.GraphFunctionReference", "org.neo4j.cypher.internal.expressions.PlusQuantifier", "org.neo4j.cypher.internal.ast.AlterDatabase", "org.neo4j.cypher.internal.util.symbols.LocalDateTimeType", "org.neo4j.cypher.internal.expressions.In", "org.neo4j.cypher.internal.util.symbols.DurationType", "org.neo4j.cypher.internal.util.symbols.ZonedDateTimeType", "org.neo4j.cypher.internal.expressions.Divide", "org.neo4j.cypher.internal.label_expressions.LabelExpression$ColonDisjunction", "org.neo4j.cypher.internal.ast.ShowSettingsClause", +"org.neo4j.cypher.internal.ast.ShowPrivileges", "org.neo4j.cypher.internal.ast.AscSortItem", "org.neo4j.cypher.internal.ast.SetPropertyItem", "org.neo4j.cypher.internal.expressions.PropertySelector", "org.neo4j.cypher.internal.expressions.SignedOctalIntegerLiteral$$anon$3", "org.neo4j.cypher.internal.expressions.DecimalDoubleLiteral$$anon$5", "org.neo4j.cypher.internal.ast.CreateFulltextIndexCommand", "org.neo4j.cypher.internal.expressions.Equals", "org.neo4j.cypher.internal.expressions.PathPatternPart", "org.neo4j.cypher.internal.label_expressions.LabelExpression$DynamicLeaf", +"org.neo4j.cypher.internal.ast.ShowConstraintsClause", "org.neo4j.cypher.internal.expressions.PatternPart$AnyShortestPath", "org.neo4j.cypher.internal.expressions.ImplicitProcedureArgument", "org.neo4j.cypher.internal.expressions.Infinity$$anon$8", "org.neo4j.cypher.internal.expressions.False", "org.neo4j.cypher.internal.expressions.UnarySubtract", "org.neo4j.cypher.internal.util.symbols.IntegerType", "org.neo4j.cypher.internal.expressions.PatternPart$ShortestGroups", "org.neo4j.cypher.internal.ast.CreateCompositeDatabase", +"org.neo4j.cypher.internal.ast.ShowProceduresClause", "org.neo4j.cypher.internal.expressions.Concatenate", "org.neo4j.cypher.internal.expressions.UnaryAdd", "org.neo4j.cypher.internal.ast.DropConstraintOnName", "org.neo4j.cypher.internal.ast.CreateConstraintCommand", "org.neo4j.cypher.internal.ast.SetLabelItem", "org.neo4j.cypher.internal.expressions.SensitiveStringLiteral", "org.neo4j.cypher.internal.ast.StopDatabase", "org.neo4j.cypher.internal.ast.CreatePropertyTypeConstraint", "org.neo4j.cypher.internal.expressions.Add", +"org.neo4j.cypher.internal.expressions.Or", "org.neo4j.cypher.internal.util.symbols.NodeType", "org.neo4j.cypher.internal.ast.AuthId", "org.neo4j.cypher.internal.expressions.Ands", "org.neo4j.cypher.internal.ast.ShowTransactionsClause", "org.neo4j.cypher.internal.util.symbols.GeometryType", "org.neo4j.cypher.internal.expressions.Null", "org.neo4j.cypher.internal.ast.ShowDatabase", "org.neo4j.cypher.internal.ast.UnionAll", "org.neo4j.cypher.internal.ast.Yield", "org.neo4j.cypher.internal.ast.UseGraph", "org.neo4j.cypher.internal.ast.IsNotNormalized", +"org.neo4j.cypher.internal.expressions.AutoExtractedParameter", "org.neo4j.cypher.internal.ast.SetOwnPassword", "org.neo4j.cypher.internal.expressions.EndsWith", "org.neo4j.cypher.internal.expressions.ContainerIndex", "org.neo4j.cypher.internal.expressions.Contains", "org.neo4j.cypher.internal.expressions.IntervalQuantifier", "org.neo4j.cypher.internal.ast.With", "org.neo4j.cypher.internal.expressions.MapExpression", "org.neo4j.cypher.internal.expressions.UnsignedDecimalIntegerLiteral$$anon$2", "org.neo4j.cypher.internal.ast.UsingIndexHint", +"org.neo4j.cypher.internal.ast.IsNotTyped", "org.neo4j.cypher.internal.expressions.PatternPart$AllPaths", "org.neo4j.cypher.internal.expressions.StartsWith", "org.neo4j.cypher.internal.expressions.FunctionName", "org.neo4j.cypher.internal.util.symbols.ClosedDynamicUnionType", "org.neo4j.cypher.internal.expressions.DynamicRelTypeExpression", "org.neo4j.cypher.internal.ast.Auth", "org.neo4j.cypher.internal.ast.Password", "org.neo4j.cypher.internal.ast.ReallocateDatabases", "org.neo4j.cypher.internal.frontend.phases.ResolvedCall", +"org.neo4j.cypher.internal.expressions.LessThanOrEqual", "org.neo4j.cypher.internal.ast.Skip", "org.neo4j.cypher.internal.expressions.RelationshipPattern", "org.neo4j.cypher.internal.ast.RenameServer", "org.neo4j.cypher.internal.expressions.Infinity", "org.neo4j.cypher.internal.util.symbols.PropertyValueType", "org.neo4j.cypher.internal.expressions.SignedHexIntegerLiteral$$anon$4", "org.neo4j.cypher.internal.ast.RevokePrivilege", "org.neo4j.cypher.internal.expressions.ProcedureOutput", "org.neo4j.cypher.internal.ast.ParameterName", +"org.neo4j.cypher.internal.expressions.NamedPatternPart", "org.neo4j.cypher.internal.expressions.Subtract", "org.neo4j.cypher.internal.util.symbols.NumberType", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Wildcard", "org.neo4j.cypher.internal.ast.AlterRemoteDatabaseAlias", "org.neo4j.cypher.internal.util.symbols.LocalTimeType", "org.neo4j.cypher.internal.label_expressions.LabelExpression$ColonConjunction", "org.neo4j.cypher.internal.ast.EnableServer", "org.neo4j.cypher.internal.ast.LoadCSV", +"org.neo4j.cypher.internal.ast.SetExactPropertiesFromMapItem", "org.neo4j.cypher.internal.expressions.Null$$anon$7", "org.neo4j.cypher.internal.ast.SetClause", "org.neo4j.cypher.internal.expressions.InvalidNotEquals", "org.neo4j.cypher.internal.util.symbols.ListType", "org.neo4j.cypher.internal.ast.CreateRole", "org.neo4j.cypher.internal.expressions.RelationshipsPattern", "org.neo4j.cypher.internal.ast.CreateDatabase", "org.neo4j.cypher.internal.expressions.Variable", "org.neo4j.cypher.internal.ast.DropRole", +"org.neo4j.cypher.internal.ast.OrderBy", "org.neo4j.cypher.internal.util.symbols.NullType", "org.neo4j.cypher.internal.ast.ShowPrivilegeCommands", "org.neo4j.cypher.internal.expressions.GreaterThanOrEqual", "org.neo4j.cypher.internal.ast.RenameUser", "org.neo4j.cypher.internal.expressions.ExplicitParameter", "org.neo4j.cypher.internal.expressions.ShortestPathsPatternPart", "org.neo4j.cypher.internal.ast.CreateLookupIndexCommand", "org.neo4j.cypher.internal.expressions.DecimalDoubleLiteral", "org.neo4j.cypher.internal.ast.DeallocateServers", +"org.neo4j.cypher.internal.expressions.SingleIterablePredicate", "org.neo4j.cypher.internal.ast.CreateRemoteDatabaseAlias", "org.neo4j.cypher.internal.ast.semantics.SemanticPatternCheck$ScopeBeforeParenthesizedPath", "org.neo4j.cypher.internal.ast.RemoveDynamicPropertyItem", "org.neo4j.cypher.internal.ast.ShowServers", "org.neo4j.cypher.internal.ast.AlterUser", "org.neo4j.cypher.internal.ast.Finish", "org.neo4j.cypher.internal.expressions.PatternComprehension", "org.neo4j.cypher.internal.frontend.phases.SensitiveParameterRewriter$$anonfun$1$$anon$1", +"org.neo4j.cypher.internal.ast.DropIndexOnName", "org.neo4j.cypher.internal.expressions.ProcedureName", "org.neo4j.cypher.internal.expressions.PatternPartWithSelector", "org.neo4j.cypher.internal.expressions.AllPropertiesSelector", "org.neo4j.cypher.internal.ast.DenyPrivilege", "org.neo4j.cypher.internal.ast.SetDynamicPropertyItem", "org.neo4j.cypher.internal.expressions.QuantifiedPath", "scala.Some", "org.neo4j.cypher.internal.ast.Create", "org.neo4j.cypher.internal.ast.CreateLocalDatabaseAlias", "org.neo4j.cypher.internal.ast.Limit", +"org.neo4j.cypher.internal.expressions.VariableSelector", "org.neo4j.cypher.internal.expressions.VariableGrouping", "org.neo4j.cypher.internal.expressions.ListSlice", "org.neo4j.cypher.internal.expressions.ShortestPathExpression", "org.neo4j.cypher.internal.expressions.ReduceExpression", "org.neo4j.cypher.internal.expressions.GreaterThan", "org.neo4j.cypher.internal.util.symbols.MapType", "org.neo4j.cypher.internal.expressions.RegexMatch", "org.neo4j.cypher.internal.ast.TerminateTransactionsClause", "org.neo4j.cypher.internal.ast.RevokeRolesFromUsers", +"org.neo4j.cypher.internal.ast.ReturnItems", "org.neo4j.cypher.internal.expressions.DynamicLabelExpression", "org.neo4j.cypher.internal.util.symbols.FloatType", "org.neo4j.cypher.internal.util.symbols.PointType", "org.neo4j.cypher.internal.ast.ShowUsers", "org.neo4j.cypher.internal.ast.DescSortItem", "org.neo4j.cypher.internal.expressions.PatternPart$AllShortestPaths", "org.neo4j.cypher.internal.expressions.SignedDecimalIntegerLiteral$$anon$1", "org.neo4j.cypher.internal.ast.RenameRole", "org.neo4j.cypher.internal.util.symbols.DateType", +"org.neo4j.cypher.internal.expressions.Namespace", "org.neo4j.cypher.internal.expressions.StringLiteral$$anon$6", "org.neo4j.cypher.internal.expressions.RelationshipChain", "org.neo4j.cypher.internal.expressions.Pattern$ForUpdate", "org.neo4j.cypher.internal.util.symbols.AnyType", "org.neo4j.cypher.internal.expressions.FilterScope", "org.neo4j.cypher.internal.ast.CreateUser", "org.neo4j.cypher.internal.ast.UnresolvedCall", "org.neo4j.cypher.internal.ast.PasswordChange", "org.neo4j.cypher.internal.expressions.AllIterablePredicate", +"org.neo4j.cypher.internal.ast.Match", "org.neo4j.cypher.internal.expressions.SignedHexIntegerLiteral", "org.neo4j.cypher.internal.expressions.CaseExpression", "org.neo4j.cypher.internal.ast.ExistsExpression", "org.neo4j.cypher.internal.ast.semantics.SemanticPatternCheck$ScopeAfterParenthesizedPath", "org.neo4j.cypher.internal.ast.DropDatabase", "org.neo4j.cypher.internal.ast.AlterLocalDatabaseAlias", "org.neo4j.cypher.internal.ast.UnaliasedReturnItem", "org.neo4j.cypher.internal.expressions.LabelOrRelTypeName", +"org.neo4j.cypher.internal.ast.GrantPrivilege", "org.neo4j.cypher.internal.expressions.SignedOctalIntegerLiteral", "org.neo4j.cypher.internal.expressions.PatternExpression", "org.neo4j.cypher.internal.parser.v25.ast.factory.DdlBuilder$$anon$1", "org.neo4j.cypher.internal.expressions.NodePattern", "org.neo4j.cypher.internal.expressions.FixedQuantifier", "org.neo4j.cypher.internal.ast.CommandResultItem", "org.neo4j.cypher.internal.expressions.Modulo", "org.neo4j.cypher.internal.ast.ShowAliases", "org.neo4j.cypher.internal.ast.GrantRolesToUsers", +"org.neo4j.cypher.internal.expressions.NoneIterablePredicate", "org.neo4j.cypher.internal.ast.ProcedureResultItem", "org.neo4j.cypher.internal.ast.Merge", "org.neo4j.cypher.internal.expressions.NotEquals", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Disjunctions", "org.neo4j.cypher.internal.expressions.IsNull", "org.neo4j.cypher.internal.expressions.True$$anon$10", "org.neo4j.cypher.internal.ast.UnionDistinct", "org.neo4j.cypher.internal.expressions.ListComprehension", "org.neo4j.cypher.internal.ast.Foreach", +"org.neo4j.cypher.internal.expressions.ExtractScope", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Negation", "org.neo4j.cypher.internal.expressions.DynamicLabelOrRelTypeExpression", "org.neo4j.cypher.internal.expressions.NaN", "org.neo4j.cypher.internal.expressions.ListLiteral", "org.neo4j.cypher.internal.expressions.StringLiteral", "org.neo4j.cypher.internal.ast.RemovePropertyItem", "org.neo4j.cypher.internal.expressions.Range", "org.neo4j.cypher.internal.expressions.Property", "org.neo4j.cypher.internal.expressions.LiteralEntry", +"org.neo4j.cypher.internal.expressions.False$$anon$11", "org.neo4j.cypher.internal.ast.OnMatch", "org.neo4j.cypher.internal.expressions.PathConcatenation", "org.neo4j.cypher.internal.ast.DropServer", "org.neo4j.cypher.internal.expressions.Not", "org.neo4j.cypher.internal.util.symbols.StringType", "org.neo4j.cypher.internal.ast.UsingScanHint", "org.neo4j.cypher.internal.ast.RemoveLabelItem", "org.neo4j.cypher.internal.ast.TopLevelBraces", "org.neo4j.cypher.internal.ast.CollectExpression", "org.neo4j.cypher.internal.expressions.MatchMode$RepeatableElements", +"org.neo4j.cypher.internal.expressions.LessThan", "org.neo4j.cypher.internal.util.symbols.BooleanType", "org.neo4j.cypher.internal.ast.Delete", "org.neo4j.cypher.internal.expressions.RelTypeName", "org.neo4j.cypher.internal.util.symbols.ZonedTimeType", "org.neo4j.cypher.internal.util.symbols.NothingType", "org.neo4j.cypher.internal.expressions.LabelName", "org.neo4j.cypher.internal.ast.Remove", "org.neo4j.cypher.internal.expressions.Multiply", "org.neo4j.cypher.internal.ast.CreateSingleLabelPropertyIndexCommand", +"org.neo4j.cypher.internal.expressions.CoerceTo", "org.neo4j.cypher.internal.ast.UsingJoinHint", "org.neo4j.cypher.internal.expressions.FunctionInvocation", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsConcurrencyParameters", "org.neo4j.cypher.internal.ast.ExternalAuth", "org.neo4j.cypher.internal.ast.ShowCurrentUser", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsErrorParameters", "org.neo4j.cypher.internal.ast.SingleQuery", "org.neo4j.cypher.internal.expressions.SignedDecimalIntegerLiteral", +"org.neo4j.cypher.internal.expressions.IsNotNull", "org.neo4j.cypher.internal.expressions.Xor", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsReportParameters", "org.neo4j.cypher.internal.expressions.PropertyKeyName", "org.neo4j.cypher.internal.ast.Statements", "org.neo4j.cypher.internal.frontend.phases.SensitiveParameterRewriter$$anonfun$1$$anon$2", "org.neo4j.cypher.internal.expressions.ParenthesizedPath", "scala.util.Right", "org.neo4j.cypher.internal.util.symbols.PathType", "org.neo4j.cypher.internal.ast.CountExpression", +"org.neo4j.cypher.internal.ast.StartDatabase", "org.neo4j.cypher.internal.ast.ProcedureResult", "org.neo4j.cypher.internal.expressions.Pow", "org.neo4j.cypher.internal.ast.ShowIndexesClause", "org.neo4j.cypher.internal.util.symbols.GraphRefType", "org.neo4j.cypher.internal.ast.GraphDirectReference", "org.neo4j.cypher.internal.ast.Insert", "org.neo4j.cypher.internal.ast.Unwind", "org.neo4j.cypher.internal.ast.SetIncludingPropertiesFromMapItem", "org.neo4j.cypher.internal.ast.DropUser", "org.neo4j.cypher.internal.expressions.ReduceScope", +"org.neo4j.cypher.internal.ast.ScopeClauseSubqueryCall", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsBatchParameters", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Conjunctions", "org.neo4j.cypher.internal.ast.AlterServer", "org.neo4j.cypher.internal.ast.IsNormalized", "org.neo4j.cypher.internal.ast.NamespacedName", "org.neo4j.cypher.internal.ast.OnCreate", "org.neo4j.cypher.internal.ast.DropDatabaseAlias", "org.neo4j.cypher.internal.util.symbols.RelationshipType", "org.neo4j.cypher.internal.ast.ShowSupportedPrivilegeCommand", +"org.neo4j.cypher.internal.expressions.PatternPart$AnyPath", "org.neo4j.cypher.internal.expressions.MapProjection", "org.neo4j.cypher.internal.expressions.CountStar", "org.neo4j.cypher.internal.expressions.MatchMode$DifferentRelationships", "org.neo4j.cypher.internal.ast.Where", "org.neo4j.cypher.internal.ast.NativeAuth", "org.neo4j.cypher.internal.ast.Return", "org.neo4j.cypher.internal.frontend.phases.ResolvedFunctionInvocation", "org.neo4j.cypher.internal.label_expressions.LabelExpression$Leaf", "org.neo4j.cypher.internal.ast.ShowFunctionsClause", +"org.neo4j.cypher.internal.ast.ShowRoles", "org.neo4j.cypher.internal.label_expressions.LabelExpressionPredicate", "org.neo4j.cypher.internal.ast.ImportingWithSubqueryCall", "org.neo4j.cypher.internal.expressions.True", "org.neo4j.cypher.internal.expressions.AnyIterablePredicate", "org.neo4j.cypher.internal.ast.AliasedReturnItem", "org.neo4j.cypher.internal.expressions.StarQuantifier", "scala.util.Left", "org.neo4j.cypher.internal.ast.SubqueryCall$InTransactionsParameters", "org.neo4j.cypher.internal.parser.v5.ast.factory.DdlBuilder$$anon$1", +"org.neo4j.cypher.internal.expressions.Pattern$ForMatch", "org.neo4j.cypher.internal.ast.IsTyped", "org.neo4j.cypher.internal.expressions.And", "_classification", "Location", "Didn\'t expect TopLevelBraces, only SingleQuery, UnionAll, or UnionDistinct.", "Didn\'t expect ProjectingUnion, only SingleQuery, UnionAll, or UnionDistinct.", "Statements", "State", "\' points to symbol with different name \'", "\' in scope #", ". Scope tree:", "AutoExtractedParameter", "\\s\\sAUTO(INT|STRING|DOUBLE|LIST)\\d+", " parameter: ", +"Type mismatch for parameter \'", "\': ", "argument at index ", " of function ", "USE clause must be either the first clause in a (sub-)query or preceded by an importing WITH clause in a sub-query.", "CALL", "WHERE", "Cannot use standalone call with WHERE (instead use: `CALL ... WITH * WHERE ... RETURN *`)", "Composing commands other than `SHOW TRANSACTIONS` and `TERMINATE TRANSACTIONS`", "There can be only one INPUT DATA STREAM in a query", "INPUT DATA STREAM must be the first clause in a query", "SingleQuery", +"Importing WITH should consist only of simple references to outside variables. ", " can only be used at the end of the query.", "When combining `", "` with other show and/or terminate commands, `YIELD *` isn\'t permitted.", "` with other show and/or terminate commands, `YIELD` is mandatory.", "Query must conclude with ", "Query cannot conclude with ", " together with YIELD", "Expected none but found ", " at position ", "Cannot use aggregation in ORDER BY if there are no aggregate expressions in the preceding ", +" is out of bounds (min 0, max 5)", "Tuple6", "ReturnItems", "` clause", "SHOW PRIVILEGE", "ShowPrivileges", "YIELD", "Yield", "SHOW PRIVILEGE COMMANDS", "ShowPrivilegeCommands", "ShowSupportedPrivilegeCommand", "SHOW DATABASE", "SHOW DATABASES", "SHOW DEFAULT DATABASE", "SHOW HOME DATABASE", "ShowDatabase", "SHOW ALIASES", "SHOW ALIAS", "ShowAliases", "SHOW CURRENT USER", "ShowCurrentUser", "SHOW USERS", "ShowUsers", "SHOW POPULATED ROLES", "SHOW ALL ROLES", "ShowRoles", "SHOW SERVERS", "ShowServers", "ShortestPathsPatternPart", +"allShortestPaths", "shortestPath", "RelationshipChain", "NodePattern", "-?\\d+((_\\d+)?)*", "UnsignedDecimalIntegerLiteral", "Range", "Variable has at least 1 and at most 3 children.", "Variable", "IS ::", "IsTyped has at least 2 and at most 4 children.", "IsTyped", "LabelExpressionPredicate has at least 2 and at most 4 children.", "LabelExpressionPredicate", "UnresolvedCall", "ScopeClauseSubqueryCall", "Where", "And", "Or", "FunctionInvocation", "Returns the difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC", +"Timestamp", "Property", "PropertyKeyName", "v1", "v2", "A first value to be returned if the second value is not equivalent.", "A second value against which the first value is compared.", "Returns null if the two given parameters are equivalent, otherwise returns the value of the first parameter.", "NullIf", "=", "Equals", "NULL", "CaseExpression", "TopLevelBraces", "UnionDistinct", "UnionAll", "Cannot yield value from void procedure.", "Procedure call inside a query does not support naming results implicitly (name explicitly using `YIELD` instead)", +"Procedure call inside a query does not support passing arguments implicitly. Please pass arguments explicitly in parentheses after procedure name for ", "Procedure call is missing parentheses: ", "at least 1 argument of type ", "at least ", " arguments of types ", "no arguments", "Procedure ", " has signature: ", "\n |meaning that it expects ", "Procedure call does not provide the required number of arguments: got ", " expected at least ", " (total: ", " of which have default values).\n |\n |", +"\n |", "no more than ", "Procedure call provides too many arguments: got ", " expected ", ".\n |\n |", "ResolvedCall", "With", "CALL { RETURN ... }", "{ RETURN ... }", "Return", "Attempt to instantiate Ref(null)", "ImportingWithSubqueryCall", "RelationshipPattern", "FunctionName", "Namespace", "ExpressionTypeSignature", "Ref@", "DeclarationsAndDependencies", "Top", " -> ", "AddedInRewrite", "FunctionTypeSignature", "Duplicate id: ", "Numeric", "Trigonometric", "Predicate", +"Aggregating", "Scalar", "Temporal", "Logarithmic", "Spatial", "GraphDirectReference", "exists", "\\.", "last of empty array", "size", "DefaultOrAllShowColumns", "listener cannot be null.", "delegates", "adaptivePredict decision ", " exec LA(1)==", " line ", "DFA after predictATN: ", "execATN decision ", ", DFA state ", ", LA(1)==", "SLL altSubSets=", ", configs=", ", predict=", ", allSubsetsConflict=", ", conflictingAlts=", "DFA state has preds in DFA sim LL failover", "Full LL avoided", "ctx sensitive state ", +"getPredsForAmbigAlts result ", "execATNWithFullContext ", "LL altSubSets=", ", resolvesToJustOneViableAlt=", "reportContextSensitivity decision=", ", input=", "in computeReachSet, starting closure: ", "computeReachSet ", "testing ", " at ", "computeStartState from ATN state ", " initialContext=", "eval pred ", "PREDICT ", "closure(", "FALLING off rule ", "CALL rule ", ", ctx=", "PRED (collectPredicates=", ") ", ", ctx dependent=", "context surrounding pred is ", "config from pred transition=", "ACTION edge ", +"dips into outer ctx: ", "=_p, ctx dependent=true", "EOF", "token index ", " out of range 0..", "EDGE ", " upon ", "DFA=\n", "addDFAState ", " exists", "addDFAState new ", "reportAttemptingFullContext decision=", "reportAmbiguity ", "TURN_OFF_LR_LOOP_ENTRY_BRANCH_OPT", "SLL", "LL", "LL_EXACT_AMBIG_DETECTION", "unknown recognition error type: ", "", "", "no viable alternative at input ", "mismatched input ", " expecting ", "rule ", "extraneous input ", "missing ", "", +"", "\\n", "\r", "\\r", "\t", "\\t", "\'", "n/a", ": expected ", "PartitionedClauses", "cannot consume EOF", "tokenSource cannot be null", "CatalogName", "OrderBy", "nextToken requires a non-null input stream.", "SPACE", "SINGLE_LINE_COMMENT", "MULTI_LINE_COMMENT", "DECIMAL_DOUBLE", "UNSIGNED_DECIMAL_INTEGER", "DECIMAL_EXPONENT", "INTEGER_PART", "UNSIGNED_HEX_INTEGER", "UNSIGNED_OCTAL_INTEGER", "STRING_LITERAL1", "STRING_LITERAL2", "EscapeSequence", "ESCAPED_SYMBOLIC_NAME", "ACCESS", "ADMIN", +"ADMINISTRATOR", "ALIAS", "ALIASES", "ALL_SHORTEST_PATHS", "ALTER", "AND", "ARRAY", "AS", "ASC", "ASCENDING", "ASSIGN", "AT", "AUTH", "BAR", "BINDINGS", "BOOL", "BOOSTED", "BOTH", "BREAK", "BUILT", "BY", "CASCADE", "CHANGE", "CIDR", "COLLECT", "COLON", "COLONCOLON", "COMMA", "COMMAND", "COMMANDS", "COMPOSITE", "CONSTRAINTS", "CONTAINS", "COPY", "CONTINUE", "COUNT", "CREATE", "CSV", "CURRENT", "DATA", "DATABASE", "DATABASES", "DATETIME", "DEALLOCATE", "DEFINED", "DELETE", "DENY", "DESC", "DESCENDING", "DESTROY", +"DETACH", "DIFFERENT", "DOLLAR", "DISTINCT", "DIVIDE", "DOT", "DOTDOT", "DOUBLEBAR", "DROP", "DRYRUN", "DUMP", "EACH", "EDGE", "ENABLE", "ELEMENT", "ELEMENTS", "ELSE", "ENCRYPTED", "ENDS", "EQ", "EXECUTABLE", "EXECUTE", "EXIST", "EXISTENCE", "EXISTS", "ERROR", "FAIL", "FALSE", "FIELDTERMINATOR", "FOR", "FOREACH", "FUNCTION", "FUNCTIONS", "GE", "GRANT", "GRAPHS", "GROUP", "GROUPS", "GT", "HEADERS", "ID", "IF", "IMPERSONATE", "IMMUTABLE", "INDEXES", "INF", "INFINITY", "INSERT", "INT", "IS", "JOIN", "KEY", "LABEL", +"LABELS", "AMPERSAND", "EXCLAMATION_MARK", "LBRACKET", "LCURLY", "LE", "LEADING", "LIMITROWS", "LIST", "LOAD", "LOCAL", "LPAREN", "LT", "MANAGEMENT", "MATCH", "MERGE", "MINUS", "PERCENT", "INVALID_NEQ", "NEQ", "NAME", "NAMES", "NAN", "NFC", "NFD", "NFKC", "NFKD", "NEW", "NODETACH", "NODES", "NORMALIZE", "NORMALIZED", "NOT", "NOTHING", "NOWAIT", "OF", "OFFSET", "ON", "ONLY", "OPTIONAL", "OPTIONS", "OPTION", "OR", "ORDER", "PASSWORDS", "PATHS", "PLAINTEXT", "PLUS", "PLUSEQUAL", "POPULATED", "POW", "PRIMARY", "PRIMARIES", +"PRIVILEGE", "PRIVILEGES", "PROCEDURE", "PROCEDURES", "PROPERTY", "PROVIDER", "PROVIDERS", "QUESTION", "RBRACKET", "RCURLY", "REALLOCATE", "REDUCE", "RENAME", "REGEQ", "REL", "RELATIONSHIPS", "REMOVE", "REPEATABLE", "REQUIRE", "REQUIRED", "RESTRICT", "REVOKE", "ROLE", "ROLES", "ROW", "ROWS", "RPAREN", "SCAN", "SEC", "SECOND", "SECONDARY", "SECONDARIES", "SECONDS", "SEEK", "SEMICOLON", "SERVER", "SERVERS", "SET", "SETTING", "SETTINGS", "SHORTEST_PATH", "SHORTEST", "SHOW", "SIGNED", "SINGLE", "SKIPROWS", "START", +"STARTS", "STATUS", "STOP", "SUPPORTED", "TARGET", "TERMINATE", "THEN", "TIME", "TIMES", "TIMESTAMP", "TIMEZONE", "TRAILING", "TRANSACTION", "TRANSACTIONS", "TRAVERSE", "TRIM", "TRUE", "TYPE", "TYPED", "TYPES", "UNIQUE", "UNIQUENESS", "UNWIND", "URL", "USE", "USERS", "USING", "VALUE", "VARCHAR", "VERTEX", "WAIT", "WHEN", "WITHOUT", "XOR", "ZONE", "ZONED", "IDENTIFIER", "EXTENDED_IDENTIFIER", "ARROW_LINE", "ARROW_LEFT_HEAD", "ARROW_RIGHT_HEAD", "LETTER", "PART_LETTER", "A", "B", "C", "E", "F", "G", "H", "I", +"J", "K", "L", "M", "O", "P", "Q", "R", "T", "U", "V", "X", "Y", "Z", "ErrorChar", "\'|\'", "\':\'", "\'::\'", "\',\'", "\'$\'", "\'/\'", "\'.\'", "\'..\'", "\'||\'", "\'=\'", "\'>=\'", "\'>\'", "\'&\'", "\'!\'", "\'[\'", "\'{\'", "\'<=\'", "\'(\'", "\'<\'", "\'-\'", "\'%\'", "\'!=\'", "\'<>\'", "\'+\'", "\'+=\'", "\'^\'", "\'?\'", "\']\'", "\'}\'", "\'=~\'", "\')\'", "\';\'", "\'*\'", "4.13.2", "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "DEFAULT_MODE", "", "\u0004\u0000ijૻ\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002\u0008\u0007\u0008\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002\u000c\u0007\u000c\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002" + "~\u0007~\u0002\u0007\u0002€\u0007€\u0002\u0007\u0002‚\u0007‚\u0002ƒ\u0007ƒ\u0002„\u0007„\u0002…\u0007…\u0002†\u0007†\u0002‡\u0007‡\u0002ˆ\u0007ˆ\u0002‰\u0007‰\u0002Š\u0007Š\u0002‹\u0007‹\u0002Œ\u0007Œ\u0002\u0007\u0002Ž\u0007Ž\u0002\u0007\u0002\u0007\u0002‘\u0007‘\u0002’\u0007’\u0002“\u0007“\u0002”\u0007”\u0002•\u0007•\u0002–\u0007–\u0002—\u0007—\u0002˜\u0007˜\u0002™\u0007™\u0002š\u0007š\u0002›\u0007›\u0002œ\u0007œ\u0002\u0007\u0002ž\u0007ž\u0002Ÿ\u0007Ÿ\u0002 \u0007 \u0002¡\u0007¡\u0002¢\u0007¢\u0002£\u0007£\u0002¤\u0007¤\u0002¥\u0007¥\u0002¦\u0007¦\u0002§\u0007§\u0002¨\u0007¨\u0002©\u0007©\u0002ª\u0007ª\u0002«\u0007«\u0002¬\u0007¬\u0002­\u0007­\u0002®\u0007®\u0002¯\u0007¯\u0002°\u0007°\u0002±\u0007±\u0002²\u0007²\u0002³\u0007³\u0002´\u0007´\u0002µ\u0007µ\u0002¶\u0007¶\u0002·\u0007·\u0002¸\u0007¸\u0002¹\u0007¹\u0002º\u0007º\u0002»\u0007»\u0002¼\u0007¼\u0002½\u0007½\u0002¾\u0007¾\u0002¿\u0007¿\u0002À\u0007À\u0002Á\u0007Á\u0002Â\u0007Â\u0002Ã\u0007Ã\u0002Ä\u0007Ä\u0002Å\u0007Å\u0002Æ\u0007Æ\u0002Ç\u0007Ç\u0002È\u0007È\u0002É\u0007É\u0002Ê\u0007Ê\u0002Ë\u0007Ë\u0002Ì\u0007Ì\u0002Í\u0007Í\u0002Î\u0007Î\u0002Ï\u0007Ï\u0002Ð\u0007Ð\u0002Ñ\u0007Ñ\u0002Ò\u0007Ò\u0002Ó\u0007Ó\u0002Ô\u0007Ô\u0002Õ\u0007Õ\u0002Ö\u0007Ö\u0002×\u0007×\u0002Ø\u0007Ø\u0002Ù\u0007Ù\u0002Ú\u0007Ú\u0002Û\u0007Û\u0002Ü\u0007Ü\u0002Ý\u0007Ý\u0002Þ\u0007Þ\u0002ß\u0007ß\u0002à\u0007à\u0002á\u0007á\u0002â\u0007â\u0002ã\u0007ã\u0002ä\u0007ä\u0002å\u0007å\u0002æ\u0007æ\u0002ç\u0007ç\u0002è\u0007è\u0002é\u0007é\u0002ê\u0007ê\u0002ë\u0007ë\u0002ì\u0007ì\u0002í\u0007í\u0002î\u0007î\u0002ï\u0007ï\u0002ð\u0007ð\u0002ñ\u0007ñ\u0002ò\u0007ò\u0002ó\u0007ó\u0002ô\u0007ô\u0002õ\u0007õ\u0002ö\u0007ö\u0002÷\u0007÷\u0002ø\u0007ø\u0002ù\u0007ù\u0002ú\u0007ú\u0002û\u0007û\u0002ü\u0007ü\u0002ý\u0007ý\u0002" + "þ\u0007þ\u0002ÿ\u0007ÿ\u0002Ā\u0007Ā\u0002ā\u0007ā\u0002Ă\u0007Ă\u0002ă\u0007ă\u0002Ą\u0007Ą\u0002ą\u0007ą\u0002Ć\u0007Ć\u0002ć\u0007ć\u0002Ĉ\u0007Ĉ\u0002ĉ\u0007ĉ\u0002Ċ\u0007Ċ\u0002ċ\u0007ċ\u0002Č\u0007Č\u0002č\u0007č\u0002Ď\u0007Ď\u0002ď\u0007ď\u0002Đ\u0007Đ\u0002đ\u0007đ\u0002Ē\u0007Ē\u0002ē\u0007ē\u0002Ĕ\u0007Ĕ\u0002ĕ\u0007ĕ\u0002Ė\u0007Ė\u0002ė\u0007ė\u0002Ę\u0007Ę\u0002ę\u0007ę\u0002Ě\u0007Ě\u0002ě\u0007ě\u0002Ĝ\u0007Ĝ\u0002ĝ\u0007ĝ\u0002Ğ\u0007Ğ\u0002ğ\u0007ğ\u0002Ġ\u0007Ġ\u0002ġ\u0007ġ\u0002Ģ\u0007Ģ\u0002ģ\u0007ģ\u0002Ĥ\u0007Ĥ\u0002ĥ\u0007ĥ\u0002Ħ\u0007Ħ\u0002ħ\u0007ħ\u0002Ĩ\u0007Ĩ\u0002ĩ\u0007ĩ\u0002Ī\u0007Ī\u0002ī\u0007ī\u0002Ĭ\u0007Ĭ\u0002ĭ\u0007ĭ\u0002Į\u0007Į\u0002į\u0007į\u0002İ\u0007İ\u0002ı\u0007ı\u0002IJ\u0007IJ\u0002ij\u0007ij\u0002Ĵ\u0007Ĵ\u0002ĵ\u0007ĵ\u0002Ķ\u0007Ķ\u0002ķ\u0007ķ\u0002ĸ\u0007ĸ\u0002Ĺ\u0007Ĺ\u0002ĺ\u0007ĺ\u0002Ļ\u0007Ļ\u0002ļ\u0007ļ\u0002Ľ\u0007Ľ\u0002ľ\u0007ľ\u0002Ŀ\u0007Ŀ\u0002ŀ\u0007ŀ\u0002Ł\u0007Ł\u0002ł\u0007ł\u0002Ń\u0007Ń\u0002ń\u0007ń\u0002Ņ\u0007Ņ\u0002ņ\u0007ņ\u0002Ň\u0007Ň\u0002ň\u0007ň\u0002ʼn\u0007ʼn\u0002Ŋ\u0007Ŋ\u0002ŋ\u0007ŋ\u0002Ō\u0007Ō\u0002ō\u0007ō\u0002Ŏ\u0007Ŏ\u0002ŏ\u0007ŏ\u0002Ő\u0007Ő\u0002ő\u0007ő\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001ʮ\u0008\u0001\n\u0001\u000c\u0001ʱ\t\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0005\u0002ʹ\u0008\u0002\n\u0002\u000c\u0002ʼ\t\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003\u0005\u0003˅\u0008\u0003\n\u0003\u000c\u0003ˈ\t\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0005\u0003ˍ\u0008\u0003\n\u0003\u000c\u0003ː\t\u0003\u0001\u0003\u0003\u0003˓\u0008\u0003\u0001\u0003\u0003\u0003˖\u0008\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0005\u0003˛\u0008\u0003\n\u0003\u000c\u0003˞\t\u0003\u0001\u0003\u0003\u0003ˡ\u0008\u0003\u0001\u0003\u0003\u0003ˤ\u0008\u0003\u0001\u0003\u0001\u0003\u0005\u0003˨\u0008\u0003\n\u0003\u000c\u0003˫\t\u0003\u0001\u0003\u0001\u0003\u0003\u0003˯\u0008\u0003\u0003\u0003˱\u0008\u0003\u0001\u0004\u0001\u0004\u0005" + "\u0004˵\u0008\u0004\n\u0004\u000c\u0004˸\t\u0004\u0001\u0004\u0005\u0004˻\u0008\u0004\n\u0004\u000c\u0004˾\t\u0004\u0001\u0004\u0003\u0004́\u0008\u0004\u0001\u0005\u0001\u0005\u0003\u0005̅\u0008\u0005\u0001\u0005\u0004\u0005̈\u0008\u0005\u000b\u0005\u000c\u0005̉\u0001\u0005\u0005\u0005̍\u0008\u0005\n\u0005\u000c\u0005̐\t\u0005\u0001\u0006\u0003\u0006̓\u0008\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0005\u0007̛\u0008\u0007\n\u0007\u000c\u0007̞\t\u0007\u0001\u0008\u0001\u0008\u0001\u0008\u0001\u0008\u0005\u0008̤\u0008\u0008\n\u0008\u000c\u0008̧\t\u0008\u0001\t\u0001\t\u0001\t\u0005\t̬\u0008\t\n\t\u000c\t̯\t\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0005\n̶\u0008\n\n\n\u000c\n̹\t\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000c\u0001\u000c\u0001\u000c\u0001\u000c\u0005\u000c̈́\u0008\u000c\n\u000c\u000c\u000c͇\t\u000c\u0001\u000c\u0001\u000c\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001%\u0001%" @@ -367250,7 +294803,7 @@ $rt_stringPool(["Can\'t enter monitor from another thread synchronously", "Defau + "\u0001\u0000\u0000\u0000\u0000ȟ\u0001\u0000\u0000\u0000\u0000ȡ\u0001\u0000\u0000\u0000\u0000ȣ\u0001\u0000\u0000\u0000\u0000ȥ\u0001\u0000\u0000\u0000\u0000ȧ\u0001\u0000\u0000\u0000\u0000ȩ\u0001\u0000\u0000\u0000\u0000ȫ\u0001\u0000\u0000\u0000\u0000ȭ\u0001\u0000\u0000\u0000\u0000ȯ\u0001\u0000\u0000\u0000\u0000ȱ\u0001\u0000\u0000\u0000\u0000ȳ\u0001\u0000\u0000\u0000\u0000ȵ\u0001\u0000\u0000\u0000\u0000ȷ\u0001\u0000\u0000\u0000\u0000ȹ\u0001\u0000\u0000\u0000\u0000Ȼ\u0001\u0000\u0000\u0000\u0000Ƚ\u0001\u0000\u0000\u0000\u0000ȿ\u0001\u0000\u0000\u0000\u0000Ɂ\u0001\u0000\u0000\u0000\u0000Ƀ\u0001\u0000\u0000\u0000\u0000Ʌ\u0001\u0000\u0000\u0000\u0000ɇ\u0001\u0000\u0000\u0000\u0000ɉ\u0001\u0000\u0000\u0000\u0000ɋ\u0001\u0000\u0000\u0000\u0000ɍ\u0001\u0000\u0000\u0000\u0000ɏ\u0001\u0000\u0000\u0000\u0000ɑ\u0001\u0000\u0000\u0000\u0000ɓ\u0001\u0000\u0000\u0000\u0000ɕ\u0001\u0000\u0000\u0000\u0000ɗ\u0001\u0000\u0000\u0000\u0000ə\u0001\u0000\u0000\u0000\u0000ɛ\u0001\u0000\u0000\u0000\u0000ɝ\u0001\u0000\u0000\u0000\u0000ɟ\u0001\u0000\u0000\u0000\u0000ɡ\u0001\u0000\u0000\u0000\u0000ɣ\u0001\u0000\u0000\u0000\u0000ɥ\u0001\u0000\u0000\u0000\u0000ɧ\u0001\u0000\u0000\u0000\u0000ɩ\u0001\u0000\u0000\u0000\u0000ʣ\u0001\u0000\u0000\u0000\u0001ʥ\u0001\u0000\u0000\u0000\u0003ʩ\u0001\u0000\u0000\u0000\u0005ʴ\u0001\u0000\u0000\u0000\u0007˰\u0001\u0000\u0000\u0000\t̀\u0001\u0000\u0000\u0000\u000b̂\u0001\u0000\u0000\u0000\r̒\u0001\u0000\u0000\u0000\u000f̖\u0001\u0000\u0000\u0000\u0011̟\u0001\u0000\u0000\u0000\u0013̨\u0001\u0000\u0000\u0000\u0015̲\u0001\u0000\u0000\u0000\u0017̼\u0001\u0000\u0000\u0000\u0019̿\u0001\u0000\u0000\u0000\u001b͊\u0001\u0000\u0000\u0000\u001d͑\u0001\u0000\u0000\u0000\u001f͘\u0001\u0000\u0000\u0000!͞\u0001\u0000\u0000\u0000#ͬ\u0001\u0000\u0000\u0000%Ͳ\u0001\u0000\u0000\u0000\'ͺ\u0001\u0000\u0000\u0000)\u038b\u0001\u0000\u0000\u0000+Ώ\u0001\u0000\u0000\u0000-Ε\u0001\u0000\u0000\u0000/Ι\u0001\u0000\u0000\u00001Ν\u0001\u0000\u0000\u00003Σ\u0001\u0000\u0000\u00005Φ\u0001\u0000\u0000\u00007Ϊ\u0001\u0000\u0000\u00009δ\u0001\u0000\u0000\u0000;λ\u0001\u0000\u0000\u0000=ξ\u0001\u0000\u0000\u0000?σ\u0001\u0000\u0000\u0000Aυ\u0001\u0000\u0000\u0000Cώ\u0001\u0000\u0000\u0000Eϓ\u0001\u0000\u0000\u0000Gϛ\u0001\u0000\u0000\u0000Iϣ\u0001\u0000\u0000\u0000KϨ\u0001\u0000\u0000\u0000MϮ\u0001\u0000\u0000\u0000Oϴ\u0001\u0000\u0000\u0000QϷ\u0001\u0000\u0000\u0000Sϼ\u0001\u0000\u0000\u0000UЄ\u0001\u0000\u0000\u0000WЉ\u0001\u0000\u0000\u0000YА\u0001\u0000\u0000\u0000[Е\u0001\u0000" + "\u0000\u0000]Н\u0001\u0000\u0000\u0000_П\u0001\u0000\u0000\u0000aТ\u0001\u0000\u0000\u0000cФ\u0001\u0000\u0000\u0000eЬ\u0001\u0000\u0000\u0000gе\u0001\u0000\u0000\u0000iп\u0001\u0000\u0000\u0000kъ\u0001\u0000\u0000\u0000mѕ\u0001\u0000\u0000\u0000oѡ\u0001\u0000\u0000\u0000qѪ\u0001\u0000\u0000\u0000sѯ\u0001\u0000\u0000\u0000uѸ\u0001\u0000\u0000\u0000wѾ\u0001\u0000\u0000\u0000y҅\u0001\u0000\u0000\u0000{҉\u0001\u0000\u0000\u0000}ґ\u0001\u0000\u0000\u0000Җ\u0001\u0000\u0000\u0000ҟ\u0001\u0000\u0000\u0000ƒҩ\u0001\u0000\u0000\u0000…Ү\u0001\u0000\u0000\u0000‡ҷ\u0001\u0000\u0000\u0000‰Ҽ\u0001\u0000\u0000\u0000‹Ӈ\u0001\u0000\u0000\u0000ӏ\u0001\u0000\u0000\u0000ӗ\u0001\u0000\u0000\u0000‘Ӟ\u0001\u0000\u0000\u0000“ӣ\u0001\u0000\u0000\u0000•Ө\u0001\u0000\u0000\u0000—ӳ\u0001\u0000\u0000\u0000™ӻ\u0001\u0000\u0000\u0000›Ԃ\u0001\u0000\u0000\u0000Ԍ\u0001\u0000\u0000\u0000ŸԎ\u0001\u0000\u0000\u0000¡ԗ\u0001\u0000\u0000\u0000£ԙ\u0001\u0000\u0000\u0000¥ԛ\u0001\u0000\u0000\u0000§Ԟ\u0001\u0000\u0000\u0000©ԡ\u0001\u0000\u0000\u0000«Ԩ\u0001\u0000\u0000\u0000­ԭ\u0001\u0000\u0000\u0000¯Դ\u0001\u0000\u0000\u0000±Թ\u0001\u0000\u0000\u0000³Ղ\u0001\u0000\u0000\u0000µՇ\u0001\u0000\u0000\u0000·Ռ\u0001\u0000\u0000\u0000¹Փ\u0001\u0000\u0000\u0000»՛\u0001\u0000\u0000\u0000½դ\u0001\u0000\u0000\u0000¿թ\u0001\u0000\u0000\u0000Áճ\u0001\u0000\u0000\u0000Ãշ\u0001\u0000\u0000\u0000Åռ\u0001\u0000\u0000\u0000Çվ\u0001\u0000\u0000\u0000É։\u0001\u0000\u0000\u0000Ë֑\u0001\u0000\u0000\u0000Í֗\u0001\u0000\u0000\u0000Ï֡\u0001\u0000\u0000\u0000Ñ֨\u0001\u0000\u0000\u0000Ó֮\u0001\u0000\u0000\u0000Õֳ\u0001\u0000\u0000\u0000×ֹ\u0001\u0000\u0000\u0000Ù\u05c9\u0001\u0000\u0000\u0000Ûא\u0001\u0000\u0000\u0000Ýז\u0001\u0000\u0000\u0000ßך\u0001\u0000\u0000\u0000áע\u0001\u0000\u0000\u0000ãק\u0001\u0000\u0000\u0000åװ\u0001\u0000\u0000\u0000ç\u05f9\u0001\u0000\u0000\u0000é؃\u0001\u0000\u0000\u0000ë؆\u0001\u0000\u0000\u0000í،\u0001\u0000\u0000\u0000ïؒ\u0001\u0000\u0000\u0000ñؙ\u0001\u0000\u0000\u0000ó؟\u0001\u0000\u0000\u0000õئ\u0001\u0000\u0000\u0000÷ب\u0001\u0000\u0000\u0000ùذ\u0001\u0000\u0000\u0000ûص\u0001\u0000\u0000\u0000ýظ\u0001\u0000\u0000\u0000ÿػ\u0001\u0000\u0000\u0000āه\u0001\u0000\u0000\u0000ăّ\u0001\u0000\u0000\u0000ąٔ\u0001\u0000\u0000\u0000" + "ćٚ\u0001\u0000\u0000\u0000ĉ٢\u0001\u0000\u0000\u0000ċ٦\u0001\u0000\u0000\u0000čٯ\u0001\u0000\u0000\u0000ďٶ\u0001\u0000\u0000\u0000đٺ\u0001\u0000\u0000\u0000ēڂ\u0001\u0000\u0000\u0000ĕڅ\u0001\u0000\u0000\u0000ėڊ\u0001\u0000\u0000\u0000ęڎ\u0001\u0000\u0000\u0000ěڔ\u0001\u0000\u0000\u0000ĝڛ\u0001\u0000\u0000\u0000ğڝ\u0001\u0000\u0000\u0000ġڟ\u0001\u0000\u0000\u0000ģڡ\u0001\u0000\u0000\u0000ĥڣ\u0001\u0000\u0000\u0000ħڦ\u0001\u0000\u0000\u0000ĩڮ\u0001\u0000\u0000\u0000īڴ\u0001\u0000\u0000\u0000ĭڹ\u0001\u0000\u0000\u0000įھ\u0001\u0000\u0000\u0000ıۄ\u0001\u0000\u0000\u0000ijۋ\u0001\u0000\u0000\u0000ĵۍ\u0001\u0000\u0000\u0000ķۏ\u0001\u0000\u0000\u0000Ĺۚ\u0001\u0000\u0000\u0000Ļ۞\u0001\u0000\u0000\u0000Ľۤ\u0001\u0000\u0000\u0000Ŀ۪\u0001\u0000\u0000\u0000Ł۬\u0001\u0000\u0000\u0000Ńۮ\u0001\u0000\u0000\u0000Ņ۱\u0001\u0000\u0000\u0000Ň۴\u0001\u0000\u0000\u0000ʼn۹\u0001\u0000\u0000\u0000ŋۿ\u0001\u0000\u0000\u0000ō܃\u0001\u0000\u0000\u0000ŏ܇\u0001\u0000\u0000\u0000ő܋\u0001\u0000\u0000\u0000œܐ\u0001\u0000\u0000\u0000ŕܕ\u0001\u0000\u0000\u0000ŗܙ\u0001\u0000\u0000\u0000řܞ\u0001\u0000\u0000\u0000śܧ\u0001\u0000\u0000\u0000ŝܭ\u0001\u0000\u0000\u0000şܲ\u0001\u0000\u0000\u0000šܼ\u0001\u0000\u0000\u0000ţ݇\u0001\u0000\u0000\u0000ť\u074b\u0001\u0000\u0000\u0000ŧݓ\u0001\u0000\u0000\u0000ũݚ\u0001\u0000\u0000\u0000ūݟ\u0001\u0000\u0000\u0000ŭݢ\u0001\u0000\u0000\u0000ůݩ\u0001\u0000\u0000\u0000űݬ\u0001\u0000\u0000\u0000ųݱ\u0001\u0000\u0000\u0000ŵݺ\u0001\u0000\u0000\u0000ŷނ\u0001\u0000\u0000\u0000Źމ\u0001\u0000\u0000\u0000Żތ\u0001\u0000\u0000\u0000Žޒ\u0001\u0000\u0000\u0000ſޛ\u0001\u0000\u0000\u0000Ɓޥ\u0001\u0000\u0000\u0000ƃު\u0001\u0000\u0000\u0000ƅް\u0001\u0000\u0000\u0000Ƈ\u07ba\u0001\u0000\u0000\u0000Ɖ\u07bc\u0001\u0000\u0000\u0000Ƌ\u07bf\u0001\u0000\u0000\u0000ƍ߅\u0001\u0000\u0000\u0000Əߏ\u0001\u0000\u0000\u0000Ƒߑ\u0001\u0000\u0000\u0000Ɠߙ\u0001\u0000\u0000\u0000ƕߣ\u0001\u0000\u0000\u0000Ɨ߭\u0001\u0000\u0000\u0000ƙ߸\u0001\u0000\u0000\u0000ƛࠂ\u0001\u0000\u0000\u0000Ɲࠍ\u0001\u0000\u0000\u0000Ɵ࠘\u0001\u0000\u0000\u0000ơࠡ\u0001\u0000\u0000\u0000ƣࠪ\u0001\u0000\u0000\u0000ƥ࠴\u0001\u0000\u0000\u0000Ƨ࠶\u0001\u0000\u0000\u0000Ʃ࠼\u0001\u0000\u0000\u0000ƫ࠾\u0001\u0000\u0000\u0000ƭࡀ\u0001\u0000\u0000\u0000Ưࡅ\u0001\u0000\u0000\u0000Ʊࡐ" -+ "\u0001\u0000\u0000\u0000Ƴࡗ\u0001\u0000\u0000\u0000Ƶ࡞\u0001\u0000\u0000\u0000Ʒࡡ\u0001\u0000\u0000\u0000ƹࡥ\u0001\u0000\u0000\u0000ƻ\u0872\u0001\u0000\u0000\u0000ƽ\u0880\u0001\u0000\u0000\u0000ƿ\u0887\u0001\u0000\u0000\u0000ǁ\u0892\u0001\u0000\u0000\u0000ǃ\u089a\u0001\u0000\u0000\u0000Džࢡ\u0001\u0000\u0000\u0000LJࢩ\u0001\u0000\u0000\u0000ljࢲ\u0001\u0000\u0000\u0000Njࢻ\u0001\u0000\u0000\u0000Ǎࣂ\u0001\u0000\u0000\u0000Ǐ\u08c9\u0001\u0000\u0000\u0000Ǒ\u08ce\u0001\u0000\u0000\u0000Ǔࣔ\u0001\u0000\u0000\u0000Ǖࣘ\u0001\u0000\u0000\u0000Ǘࣝ\u0001\u0000\u0000\u0000Ǚࣟ\u0001\u0000\u0000\u0000Ǜࣤ\u0001\u0000\u0000\u0000ǝࣨ\u0001\u0000\u0000\u0000ǟ࣯\u0001\u0000\u0000\u0000ǡࣹ\u0001\u0000\u0000\u0000ǣअ\u0001\u0000\u0000\u0000ǥऍ\u0001\u0000\u0000\u0000ǧऒ\u0001\u0000\u0000\u0000ǩऔ\u0001\u0000\u0000\u0000ǫछ\u0001\u0000\u0000\u0000ǭण\u0001\u0000\u0000\u0000ǯध\u0001\u0000\u0000\u0000DZय\u0001\u0000\u0000\u0000dzस\u0001\u0000\u0000\u0000ǵॅ\u0001\u0000\u0000\u0000Ƿॎ\u0001\u0000\u0000\u0000ǹ॓\u0001\u0000\u0000\u0000ǻग़\u0001\u0000\u0000\u0000ǽॡ\u0001\u0000\u0000\u0000ǿ०\u0001\u0000\u0000\u0000ȁ६\u0001\u0000\u0000\u0000ȃॳ\u0001\u0000\u0000\u0000ȅॺ\u0001\u0000\u0000\u0000ȇॿ\u0001\u0000\u0000\u0000ȉআ\u0001\u0000\u0000\u0000ȋঐ\u0001\u0000\u0000\u0000ȍচ\u0001\u0000\u0000\u0000ȏড\u0001\u0000\u0000\u0000ȑফ\u0001\u0000\u0000\u0000ȓর\u0001\u0000\u0000\u0000ȕ\u09b5\u0001\u0000\u0000\u0000ȗ\u09ba\u0001\u0000\u0000\u0000ș়\u0001\u0000\u0000\u0000ț\u09c6\u0001\u0000\u0000\u0000ȝ\u09cf\u0001\u0000\u0000\u0000ȟ\u09d2\u0001\u0000\u0000\u0000ȡ\u09db\u0001\u0000\u0000\u0000ȣ\u09e4\u0001\u0000\u0000\u0000ȥৰ\u0001\u0000\u0000\u0000ȧ৽\u0001\u0000\u0000\u0000ȩਆ\u0001\u0000\u0000\u0000ȫ\u0a0b\u0001\u0000\u0000\u0000ȭਐ\u0001\u0000\u0000\u0000ȯਕ\u0001\u0000\u0000\u0000ȱਛ\u0001\u0000\u0000\u0000ȳਡ\u0001\u0000\u0000\u0000ȵਧ\u0001\u0000\u0000\u0000ȷਮ\u0001\u0000\u0000\u0000ȹਹ\u0001\u0000\u0000\u0000Ȼੀ\u0001\u0000\u0000\u0000Ƚ\u0a44\u0001\u0000\u0000\u0000ȿੈ\u0001\u0000\u0000\u0000Ɂ੍\u0001\u0000\u0000\u0000Ƀ\u0a53\u0001\u0000\u0000\u0000Ʌਖ਼\u0001\u0000\u0000\u0000ɇ\u0a5f\u0001\u0000\u0000\u0000ɉ੧\u0001\u0000\u0000\u0000ɋ੮\u0001\u0000\u0000\u0000ɍੵ\u0001\u0000\u0000\u0000ɏ\u0a7a\u0001\u0000\u0000\u0000ɑ\u0a7f\u0001\u0000\u0000\u0000ɓઅ\u0001\u0000\u0000\u0000ɕઊ\u0001\u0000\u0000\u0000ɗ\u0a92\u0001\u0000\u0000\u0000əઘ\u0001\u0000\u0000\u0000ɛજ\u0001\u0000" ++ "\u0001\u0000\u0000\u0000Ƴࡗ\u0001\u0000\u0000\u0000Ƶ࡞\u0001\u0000\u0000\u0000Ʒࡡ\u0001\u0000\u0000\u0000ƹࡥ\u0001\u0000\u0000\u0000ƻࡲ\u0001\u0000\u0000\u0000ƽࢀ\u0001\u0000\u0000\u0000ƿࢇ\u0001\u0000\u0000\u0000ǁ\u0892\u0001\u0000\u0000\u0000ǃ࢚\u0001\u0000\u0000\u0000Džࢡ\u0001\u0000\u0000\u0000LJࢩ\u0001\u0000\u0000\u0000ljࢲ\u0001\u0000\u0000\u0000Njࢻ\u0001\u0000\u0000\u0000Ǎࣂ\u0001\u0000\u0000\u0000Ǐࣉ\u0001\u0000\u0000\u0000Ǒ࣎\u0001\u0000\u0000\u0000Ǔࣔ\u0001\u0000\u0000\u0000Ǖࣘ\u0001\u0000\u0000\u0000Ǘࣝ\u0001\u0000\u0000\u0000Ǚࣟ\u0001\u0000\u0000\u0000Ǜࣤ\u0001\u0000\u0000\u0000ǝࣨ\u0001\u0000\u0000\u0000ǟ࣯\u0001\u0000\u0000\u0000ǡࣹ\u0001\u0000\u0000\u0000ǣअ\u0001\u0000\u0000\u0000ǥऍ\u0001\u0000\u0000\u0000ǧऒ\u0001\u0000\u0000\u0000ǩऔ\u0001\u0000\u0000\u0000ǫछ\u0001\u0000\u0000\u0000ǭण\u0001\u0000\u0000\u0000ǯध\u0001\u0000\u0000\u0000DZय\u0001\u0000\u0000\u0000dzस\u0001\u0000\u0000\u0000ǵॅ\u0001\u0000\u0000\u0000Ƿॎ\u0001\u0000\u0000\u0000ǹ॓\u0001\u0000\u0000\u0000ǻग़\u0001\u0000\u0000\u0000ǽॡ\u0001\u0000\u0000\u0000ǿ०\u0001\u0000\u0000\u0000ȁ६\u0001\u0000\u0000\u0000ȃॳ\u0001\u0000\u0000\u0000ȅॺ\u0001\u0000\u0000\u0000ȇॿ\u0001\u0000\u0000\u0000ȉআ\u0001\u0000\u0000\u0000ȋঐ\u0001\u0000\u0000\u0000ȍচ\u0001\u0000\u0000\u0000ȏড\u0001\u0000\u0000\u0000ȑফ\u0001\u0000\u0000\u0000ȓর\u0001\u0000\u0000\u0000ȕ\u09b5\u0001\u0000\u0000\u0000ȗ\u09ba\u0001\u0000\u0000\u0000ș়\u0001\u0000\u0000\u0000ț\u09c6\u0001\u0000\u0000\u0000ȝ\u09cf\u0001\u0000\u0000\u0000ȟ\u09d2\u0001\u0000\u0000\u0000ȡ\u09db\u0001\u0000\u0000\u0000ȣ\u09e4\u0001\u0000\u0000\u0000ȥৰ\u0001\u0000\u0000\u0000ȧ৽\u0001\u0000\u0000\u0000ȩਆ\u0001\u0000\u0000\u0000ȫ\u0a0b\u0001\u0000\u0000\u0000ȭਐ\u0001\u0000\u0000\u0000ȯਕ\u0001\u0000\u0000\u0000ȱਛ\u0001\u0000\u0000\u0000ȳਡ\u0001\u0000\u0000\u0000ȵਧ\u0001\u0000\u0000\u0000ȷਮ\u0001\u0000\u0000\u0000ȹਹ\u0001\u0000\u0000\u0000Ȼੀ\u0001\u0000\u0000\u0000Ƚ\u0a44\u0001\u0000\u0000\u0000ȿੈ\u0001\u0000\u0000\u0000Ɂ੍\u0001\u0000\u0000\u0000Ƀ\u0a53\u0001\u0000\u0000\u0000Ʌਖ਼\u0001\u0000\u0000\u0000ɇ\u0a5f\u0001\u0000\u0000\u0000ɉ੧\u0001\u0000\u0000\u0000ɋ੮\u0001\u0000\u0000\u0000ɍੵ\u0001\u0000\u0000\u0000ɏ\u0a7a\u0001\u0000\u0000\u0000ɑ\u0a7f\u0001\u0000\u0000\u0000ɓઅ\u0001\u0000\u0000\u0000ɕઊ\u0001\u0000\u0000\u0000ɗ\u0a92\u0001\u0000\u0000\u0000əઘ\u0001\u0000\u0000\u0000ɛજ\u0001\u0000" + "\u0000\u0000ɝઢ\u0001\u0000\u0000\u0000ɟધ\u0001\u0000\u0000\u0000ɡભ\u0001\u0000\u0000\u0000ɣવ\u0001\u0000\u0000\u0000ɥહ\u0001\u0000\u0000\u0000ɧ\u0abb\u0001\u0000\u0000\u0000ɩઽ\u0001\u0000\u0000\u0000ɫિ\u0001\u0000\u0000\u0000ɭૃ\u0001\u0000\u0000\u0000ɯૅ\u0001\u0000\u0000\u0000ɱે\u0001\u0000\u0000\u0000ɳૉ\u0001\u0000\u0000\u0000ɵો\u0001\u0000\u0000\u0000ɷ્\u0001\u0000\u0000\u0000ɹ\u0acf\u0001\u0000\u0000\u0000ɻ\u0ad1\u0001\u0000\u0000\u0000ɽ\u0ad3\u0001\u0000\u0000\u0000ɿ\u0ad5\u0001\u0000\u0000\u0000ʁ\u0ad7\u0001\u0000\u0000\u0000ʃ\u0ad9\u0001\u0000\u0000\u0000ʅ\u0adb\u0001\u0000\u0000\u0000ʇ\u0add\u0001\u0000\u0000\u0000ʉ\u0adf\u0001\u0000\u0000\u0000ʋૡ\u0001\u0000\u0000\u0000ʍૣ\u0001\u0000\u0000\u0000ʏ\u0ae5\u0001\u0000\u0000\u0000ʑ૧\u0001\u0000\u0000\u0000ʓ૩\u0001\u0000\u0000\u0000ʕ૫\u0001\u0000\u0000\u0000ʗ૭\u0001\u0000\u0000\u0000ʙ૯\u0001\u0000\u0000\u0000ʛ૱\u0001\u0000\u0000\u0000ʝ\u0af3\u0001\u0000\u0000\u0000ʟ\u0af5\u0001\u0000\u0000\u0000ʡ\u0af7\u0001\u0000\u0000\u0000ʣૹ\u0001\u0000\u0000\u0000ʥʦ\u0007\u0000\u0000\u0000ʦʧ\u0001\u0000\u0000\u0000ʧʨ\u0006\u0000\u0000\u0000ʨ\u0002\u0001\u0000\u0000\u0000ʩʪ\u0005/\u0000\u0000ʪʫ\u0005/\u0000\u0000ʫʯ\u0001\u0000\u0000\u0000ʬʮ\u0008\u0001\u0000\u0000ʭʬ\u0001\u0000\u0000\u0000ʮʱ\u0001\u0000\u0000\u0000ʯʭ\u0001\u0000\u0000\u0000ʯʰ\u0001\u0000\u0000\u0000ʰʲ\u0001\u0000\u0000\u0000ʱʯ\u0001\u0000\u0000\u0000ʲʳ\u0006\u0001\u0000\u0000ʳ\u0004\u0001\u0000\u0000\u0000ʴʵ\u0005/\u0000\u0000ʵʶ\u0005*\u0000\u0000ʶʺ\u0001\u0000\u0000\u0000ʷʹ\t\u0000\u0000\u0000ʸʷ\u0001\u0000\u0000\u0000ʹʼ\u0001\u0000\u0000\u0000ʺʻ\u0001\u0000\u0000\u0000ʺʸ\u0001\u0000\u0000\u0000ʻʽ\u0001\u0000\u0000\u0000ʼʺ\u0001\u0000\u0000\u0000ʽʾ\u0005*\u0000\u0000ʾʿ\u0005/\u0000\u0000ʿˀ\u0001\u0000\u0000\u0000ˀˁ\u0006\u0002\u0000\u0000ˁ\u0006\u0001\u0000\u0000\u0000˂ˆ\u0007\u0002\u0000\u0000˃˅\u0003\r\u0006\u0000˄˃\u0001\u0000\u0000\u0000˅ˈ\u0001\u0000\u0000\u0000ˆ˄\u0001\u0000\u0000\u0000ˆˇ\u0001\u0000\u0000\u0000ˇˉ\u0001\u0000\u0000\u0000ˈˆ\u0001\u0000\u0000\u0000ˉˊ\u0005.\u0000\u0000ˊˎ\u0007\u0002\u0000\u0000ˋˍ\u0003\r\u0006\u0000ˌˋ\u0001\u0000\u0000\u0000ˍː\u0001\u0000\u0000\u0000ˎˌ\u0001\u0000\u0000\u0000ˎˏ\u0001\u0000\u0000\u0000ˏ˒\u0001\u0000\u0000\u0000ːˎ\u0001\u0000\u0000\u0000ˑ˓\u0003\u000b\u0005\u0000" + "˒ˑ\u0001\u0000\u0000\u0000˒˓\u0001\u0000\u0000\u0000˓˕\u0001\u0000\u0000\u0000˔˖\u0003ɡİ\u0000˕˔\u0001\u0000\u0000\u0000˕˖\u0001\u0000\u0000\u0000˖˱\u0001\u0000\u0000\u0000˗˘\u0005.\u0000\u0000˘˜\u0007\u0002\u0000\u0000˙˛\u0003\r\u0006\u0000˚˙\u0001\u0000\u0000\u0000˛˞\u0001\u0000\u0000\u0000˜˚\u0001\u0000\u0000\u0000˜˝\u0001\u0000\u0000\u0000˝ˠ\u0001\u0000\u0000\u0000˞˜\u0001\u0000\u0000\u0000˟ˡ\u0003\u000b\u0005\u0000ˠ˟\u0001\u0000\u0000\u0000ˠˡ\u0001\u0000\u0000\u0000ˡˣ\u0001\u0000\u0000\u0000ˢˤ\u0003ɡİ\u0000ˣˢ\u0001\u0000\u0000\u0000ˣˤ\u0001\u0000\u0000\u0000ˤ˱\u0001\u0000\u0000\u0000˥˩\u0007\u0002\u0000\u0000˦˨\u0003\r\u0006\u0000˧˦\u0001\u0000\u0000\u0000˨˫\u0001\u0000\u0000\u0000˩˧\u0001\u0000\u0000\u0000˩˪\u0001\u0000\u0000\u0000˪ˬ\u0001\u0000\u0000\u0000˫˩\u0001\u0000\u0000\u0000ˬˮ\u0003\u000b\u0005\u0000˭˯\u0003ɡİ\u0000ˮ˭\u0001\u0000\u0000\u0000ˮ˯\u0001\u0000\u0000\u0000˯˱\u0001\u0000\u0000\u0000˰˂\u0001\u0000\u0000\u0000˰˗\u0001\u0000\u0000\u0000˰˥\u0001\u0000\u0000\u0000˱\u0008\u0001\u0000\u0000\u0000˲˶\u0007\u0003\u0000\u0000˳˵\u0003\r\u0006\u0000˴˳\u0001\u0000\u0000\u0000˵˸\u0001\u0000\u0000\u0000˶˴\u0001\u0000\u0000\u0000˶˷\u0001\u0000\u0000\u0000˷˼\u0001\u0000\u0000\u0000˸˶\u0001\u0000\u0000\u0000˹˻\u0003ɭĶ\u0000˺˹\u0001\u0000\u0000\u0000˻˾\u0001\u0000\u0000\u0000˼˺\u0001\u0000\u0000\u0000˼˽\u0001\u0000\u0000\u0000˽́\u0001\u0000\u0000\u0000˾˼\u0001\u0000\u0000\u0000˿́\u00050\u0000\u0000̀˲\u0001\u0000\u0000\u0000̀˿\u0001\u0000\u0000\u0000́\n\u0001\u0000\u0000\u0000̂̄\u0007\u0004\u0000\u0000̃̅\u0007\u0005\u0000\u0000̄̃\u0001\u0000\u0000\u0000̄̅\u0001\u0000\u0000\u0000̅̇\u0001\u0000\u0000\u0000̆̈\u0003\r\u0006\u0000̇̆\u0001\u0000\u0000\u0000̈̉\u0001\u0000\u0000\u0000̉̇\u0001\u0000\u0000\u0000̉̊\u0001\u0000\u0000\u0000̊̎\u0001\u0000\u0000\u0000̋̍\u0003ɭĶ\u0000̌̋\u0001\u0000\u0000\u0000̍̐\u0001\u0000\u0000\u0000̎̌\u0001\u0000\u0000\u0000̎̏\u0001\u0000\u0000\u0000̏\u000c\u0001\u0000\u0000\u0000̐̎\u0001\u0000\u0000\u0000̑̓\u0005_\u0000\u0000̒̑\u0001\u0000\u0000\u0000̒̓\u0001\u0000\u0000\u0000̓̔\u0001\u0000\u0000\u0000̔̕\u0007\u0002\u0000\u0000̕\u000e\u0001\u0000\u0000\u0000̖̗\u00050\u0000\u0000̗̘" + "\u0005x\u0000\u0000̘̜\u0001\u0000\u0000\u0000̛̙\u0003ɭĶ\u0000̙̚\u0001\u0000\u0000\u0000̛̞\u0001\u0000\u0000\u0000̜̚\u0001\u0000\u0000\u0000̜̝\u0001\u0000\u0000\u0000̝\u0010\u0001\u0000\u0000\u0000̞̜\u0001\u0000\u0000\u0000̟̠\u00050\u0000\u0000̡̠\u0005o\u0000\u0000̡̥\u0001\u0000\u0000\u0000̢̤\u0003ɭĶ\u0000̢̣\u0001\u0000\u0000\u0000̧̤\u0001\u0000\u0000\u0000̥̣\u0001\u0000\u0000\u0000̥̦\u0001\u0000\u0000\u0000̦\u0012\u0001\u0000\u0000\u0000̧̥\u0001\u0000\u0000\u0000̨̭\u0005\'\u0000\u0000̩̬\u0008\u0006\u0000\u0000̪̬\u0003\u0017\u000b\u0000̫̩\u0001\u0000\u0000\u0000̫̪\u0001\u0000\u0000\u0000̬̯\u0001\u0000\u0000\u0000̭̫\u0001\u0000\u0000\u0000̭̮\u0001\u0000\u0000\u0000̮̰\u0001\u0000\u0000\u0000̯̭\u0001\u0000\u0000\u0000̰̱\u0005\'\u0000\u0000̱\u0014\u0001\u0000\u0000\u0000̷̲\u0005\"\u0000\u0000̶̳\u0008\u0007\u0000\u0000̴̶\u0003\u0017\u000b\u0000̵̳\u0001\u0000\u0000\u0000̵̴\u0001\u0000\u0000\u0000̶̹\u0001\u0000\u0000\u0000̷̵\u0001\u0000\u0000\u0000̷̸\u0001\u0000\u0000\u0000̸̺\u0001\u0000\u0000\u0000̷̹\u0001\u0000\u0000\u0000̺̻\u0005\"\u0000\u0000̻\u0016\u0001\u0000\u0000\u0000̼̽\u0005\\\u0000\u0000̽̾\t\u0000\u0000\u0000̾\u0018\u0001\u0000\u0000\u0000̿ͅ\u0005`\u0000\u0000̀̈́\u0008\u0008\u0000\u0000́͂\u0005`\u0000\u0000͂̈́\u0005`\u0000\u0000̓̀\u0001\u0000\u0000\u0000̓́\u0001\u0000\u0000\u0000͇̈́\u0001\u0000\u0000\u0000̓ͅ\u0001\u0000\u0000\u0000͆ͅ\u0001\u0000\u0000\u0000͈͆\u0001\u0000\u0000\u0000͇ͅ\u0001\u0000\u0000\u0000͈͉\u0005`\u0000\u0000͉\u001a\u0001\u0000\u0000\u0000͊͋\u0003ɯķ\u0000͋͌\u0003ɳĹ\u0000͍͌\u0003ɳĹ\u0000͍͎\u0003ɷĻ\u0000͎͏\u0003ʓʼn\u0000͏͐\u0003ʓʼn\u0000͐\u001c\u0001\u0000\u0000\u0000͑͒\u0003ɯķ\u0000͓͒\u0003ɳĹ\u0000͓͔\u0003ʕŊ\u0000͔͕\u0003ɿĿ\u0000͕͖\u0003ʙŌ\u0000͖͗\u0003ɷĻ\u0000͗\u001e\u0001\u0000\u0000\u0000͙͘\u0003ɯķ\u0000͙͚\u0003ɵĺ\u0000͚͛\u0003ʇŃ\u0000͛͜\u0003ɿĿ\u0000͜͝\u0003ʉń\u0000͝ \u0001\u0000\u0000\u0000͟͞\u0003ɯķ\u0000͟͠\u0003ɵĺ\u0000͠͡\u0003ʇŃ\u0000͢͡\u0003ɿĿ\u0000ͣ͢\u0003ʉń\u0000ͣͤ\u0003ɿĿ\u0000ͤͥ\u0003ʓ" @@ -367262,15 +294815,15 @@ $rt_stringPool(["Can\'t enter monitor from another thread synchronously", "Defau + "\u0003ɿĿ\u0000Ԑԑ\u0003ʓʼn\u0000ԑԒ\u0003ʕŊ\u0000Ԓԓ\u0003ɿĿ\u0000ԓԔ\u0003ʉń\u0000Ԕԕ\u0003ɳĹ\u0000ԕԖ\u0003ʕŊ\u0000Ԗ \u0001\u0000\u0000\u0000ԗԘ\u0005/\u0000\u0000Ԙ¢\u0001\u0000\u0000\u0000ԙԚ\u0005.\u0000\u0000Ԛ¤\u0001\u0000\u0000\u0000ԛԜ\u0005.\u0000\u0000Ԝԝ\u0005.\u0000\u0000ԝ¦\u0001\u0000\u0000\u0000Ԟԟ\u0005|\u0000\u0000ԟԠ\u0005|\u0000\u0000Ԡ¨\u0001\u0000\u0000\u0000ԡԢ\u0003ɵĺ\u0000Ԣԣ\u0003ʑň\u0000ԣԤ\u0003ɿĿ\u0000Ԥԥ\u0003ʙŌ\u0000ԥԦ\u0003ɷĻ\u0000Ԧԧ\u0003ʑň\u0000ԧª\u0001\u0000\u0000\u0000Ԩԩ\u0003ɵĺ\u0000ԩԪ\u0003ʑň\u0000Ԫԫ\u0003ʋŅ\u0000ԫԬ\u0003ʍņ\u0000Ԭ¬\u0001\u0000\u0000\u0000ԭԮ\u0003ɵĺ\u0000Ԯԯ\u0003ʑň\u0000ԯ\u0530\u0003ʟŏ\u0000\u0530Ա\u0003ʑň\u0000ԱԲ\u0003ʗŋ\u0000ԲԳ\u0003ʉń\u0000Գ®\u0001\u0000\u0000\u0000ԴԵ\u0003ɵĺ\u0000ԵԶ\u0003ʗŋ\u0000ԶԷ\u0003ʇŃ\u0000ԷԸ\u0003ʍņ\u0000Ը°\u0001\u0000\u0000\u0000ԹԺ\u0003ɵĺ\u0000ԺԻ\u0003ʗŋ\u0000ԻԼ\u0003ʑň\u0000ԼԽ\u0003ɯķ\u0000ԽԾ\u0003ʕŊ\u0000ԾԿ\u0003ɿĿ\u0000ԿՀ\u0003ʋŅ\u0000ՀՁ\u0003ʉń\u0000Ձ²\u0001\u0000\u0000\u0000ՂՃ\u0003ɷĻ\u0000ՃՄ\u0003ɯķ\u0000ՄՅ\u0003ɳĹ\u0000ՅՆ\u0003ɽľ\u0000Ն´\u0001\u0000\u0000\u0000ՇՈ\u0003ɷĻ\u0000ՈՉ\u0003ɵĺ\u0000ՉՊ\u0003ɻĽ\u0000ՊՋ\u0003ɷĻ\u0000Ջ¶\u0001\u0000\u0000\u0000ՌՍ\u0003ɷĻ\u0000ՍՎ\u0003ʉń\u0000ՎՏ\u0003ɯķ\u0000ՏՐ\u0003ɱĸ\u0000ՐՑ\u0003ʅł\u0000ՑՒ\u0003ɷĻ\u0000Ւ¸\u0001\u0000\u0000\u0000ՓՔ\u0003ɷĻ\u0000ՔՕ\u0003ʅł\u0000ՕՖ\u0003ɷĻ\u0000Ֆ\u0557\u0003ʇŃ\u0000\u0557\u0558\u0003ɷĻ\u0000\u0558ՙ\u0003ʉń\u0000ՙ՚\u0003ʕŊ\u0000՚º\u0001\u0000\u0000\u0000՛՜\u0003ɷĻ\u0000՜՝\u0003ʅł\u0000՝՞\u0003ɷĻ\u0000՞՟\u0003ʇŃ\u0000՟ՠ\u0003ɷĻ\u0000ՠա\u0003ʉń\u0000աբ\u0003ʕŊ\u0000բգ\u0003ʓʼn\u0000գ¼\u0001\u0000\u0000\u0000դե\u0003ɷ" + "Ļ\u0000եզ\u0003ʅł\u0000զէ\u0003ʓʼn\u0000էը\u0003ɷĻ\u0000ը¾\u0001\u0000\u0000\u0000թժ\u0003ɷĻ\u0000ժի\u0003ʉń\u0000իլ\u0003ɳĹ\u0000լխ\u0003ʑň\u0000խծ\u0003ʟŏ\u0000ծկ\u0003ʍņ\u0000կհ\u0003ʕŊ\u0000հձ\u0003ɷĻ\u0000ձղ\u0003ɵĺ\u0000ղÀ\u0001\u0000\u0000\u0000ճմ\u0003ɷĻ\u0000մյ\u0003ʉń\u0000յն\u0003ɵĺ\u0000նÂ\u0001\u0000\u0000\u0000շո\u0003ɷĻ\u0000ոչ\u0003ʉń\u0000չպ\u0003ɵĺ\u0000պջ\u0003ʓʼn\u0000ջÄ\u0001\u0000\u0000\u0000ռս\u0005=\u0000\u0000սÆ\u0001\u0000\u0000\u0000վտ\u0003ɷĻ\u0000տր\u0003ʝŎ\u0000րց\u0003ɷĻ\u0000ցւ\u0003ɳĹ\u0000ւփ\u0003ʗŋ\u0000փք\u0003ʕŊ\u0000քօ\u0003ɯķ\u0000օֆ\u0003ɱĸ\u0000ֆև\u0003ʅł\u0000ևֈ\u0003ɷĻ\u0000ֈÈ\u0001\u0000\u0000\u0000։֊\u0003ɷĻ\u0000֊\u058b\u0003ʝŎ\u0000\u058b\u058c\u0003ɷĻ\u0000\u058c֍\u0003ɳĹ\u0000֍֎\u0003ʗŋ\u0000֎֏\u0003ʕŊ\u0000֏\u0590\u0003ɷĻ\u0000\u0590Ê\u0001\u0000\u0000\u0000֑֒\u0003ɷĻ\u0000֒֓\u0003ʝŎ\u0000֓֔\u0003ɿĿ\u0000֔֕\u0003ʓʼn\u0000֖֕\u0003ʕŊ\u0000֖Ì\u0001\u0000\u0000\u0000֗֘\u0003ɷĻ\u0000֘֙\u0003ʝŎ\u0000֚֙\u0003ɿĿ\u0000֛֚\u0003ʓʼn\u0000֛֜\u0003ʕŊ\u0000֜֝\u0003ɷĻ\u0000֝֞\u0003ʉń\u0000֞֟\u0003ɳĹ\u0000֟֠\u0003ɷĻ\u0000֠Î\u0001\u0000\u0000\u0000֢֡\u0003ɷĻ\u0000֢֣\u0003ʝŎ\u0000֣֤\u0003ɿĿ\u0000֤֥\u0003ʓʼn\u0000֥֦\u0003ʕŊ\u0000֦֧\u0003ʓʼn\u0000֧Ð\u0001\u0000\u0000\u0000֨֩\u0003ɷĻ\u0000֪֩\u0003ʑň\u0000֪֫\u0003ʑň\u0000֫֬\u0003ʋŅ\u0000֭֬\u0003ʑň\u0000֭Ò\u0001\u0000\u0000\u0000֮֯\u0003ɹļ\u0000ְ֯\u0003ɯķ\u0000ְֱ\u0003ɿĿ\u0000ֱֲ\u0003ʅł\u0000ֲÔ\u0001\u0000\u0000\u0000ֳִ\u0003ɹļ\u0000ִֵ\u0003ɯķ\u0000ֵֶ\u0003ʅł\u0000ֶַ\u0003ʓʼn\u0000ַָ\u0003ɷĻ\u0000ָÖ\u0001\u0000\u0000\u0000ֹֺ\u0003ɹļ\u0000" + "ֺֻ\u0003ɿĿ\u0000ֻּ\u0003ɷĻ\u0000ּֽ\u0003ʅł\u0000ֽ־\u0003ɵĺ\u0000־ֿ\u0003ʕŊ\u0000ֿ׀\u0003ɷĻ\u0000׀ׁ\u0003ʑň\u0000ׁׂ\u0003ʇŃ\u0000ׂ׃\u0003ɿĿ\u0000׃ׄ\u0003ʉń\u0000ׅׄ\u0003ɯķ\u0000ׅ׆\u0003ʕŊ\u0000׆ׇ\u0003ʋŅ\u0000ׇ\u05c8\u0003ʑň\u0000\u05c8Ø\u0001\u0000\u0000\u0000\u05c9\u05ca\u0003ɹļ\u0000\u05ca\u05cb\u0003ɿĿ\u0000\u05cb\u05cc\u0003ʉń\u0000\u05cc\u05cd\u0003ɿĿ\u0000\u05cd\u05ce\u0003ʓʼn\u0000\u05ce\u05cf\u0003ɽľ\u0000\u05cfÚ\u0001\u0000\u0000\u0000אב\u0003ɹļ\u0000בג\u0003ʅł\u0000גד\u0003ʋŅ\u0000דה\u0003ɯķ\u0000הו\u0003ʕŊ\u0000וÜ\u0001\u0000\u0000\u0000זח\u0003ɹļ\u0000חט\u0003ʋŅ\u0000טי\u0003ʑň\u0000יÞ\u0001\u0000\u0000\u0000ךכ\u0003ɹļ\u0000כל\u0003ʋŅ\u0000לם\u0003ʑň\u0000םמ\u0003ɷĻ\u0000מן\u0003ɯķ\u0000ןנ\u0003ɳĹ\u0000נס\u0003ɽľ\u0000סà\u0001\u0000\u0000\u0000עף\u0003ɹļ\u0000ףפ\u0003ʑň\u0000פץ\u0003ʋŅ\u0000ץצ\u0003ʇŃ\u0000צâ\u0001\u0000\u0000\u0000קר\u0003ɹļ\u0000רש\u0003ʗŋ\u0000שת\u0003ʅł\u0000ת\u05eb\u0003ʅł\u0000\u05eb\u05ec\u0003ʕŊ\u0000\u05ec\u05ed\u0003ɷĻ\u0000\u05ed\u05ee\u0003ʝŎ\u0000\u05eeׯ\u0003ʕŊ\u0000ׯä\u0001\u0000\u0000\u0000װױ\u0003ɹļ\u0000ױײ\u0003ʗŋ\u0000ײ׳\u0003ʉń\u0000׳״\u0003ɳĹ\u0000״\u05f5\u0003ʕŊ\u0000\u05f5\u05f6\u0003ɿĿ\u0000\u05f6\u05f7\u0003ʋŅ\u0000\u05f7\u05f8\u0003ʉń\u0000\u05f8æ\u0001\u0000\u0000\u0000\u05f9\u05fa\u0003ɹļ\u0000\u05fa\u05fb\u0003ʗŋ\u0000\u05fb\u05fc\u0003ʉń\u0000\u05fc\u05fd\u0003ɳĹ\u0000\u05fd\u05fe\u0003ʕŊ\u0000\u05fe\u05ff\u0003ɿĿ\u0000\u05ff؀\u0003ʋŅ\u0000؀؁\u0003ʉń\u0000؁؂\u0003ʓʼn\u0000؂è\u0001\u0000\u0000\u0000؃؄\u0005>\u0000\u0000؄؅\u0005=\u0000\u0000؅ê\u0001\u0000\u0000\u0000؆؇\u0003ɻĽ\u0000؇؈\u0003ʑň\u0000؈؉\u0003ɯķ\u0000؉؊\u0003ʉń\u0000؊؋\u0003ʕŊ\u0000؋ì\u0001\u0000\u0000\u0000،؍\u0003ɻĽ\u0000؍؎\u0003ʑň\u0000؎؏\u0003ɯķ\u0000؏ؐ" -+ "\u0003ʍņ\u0000ؐؑ\u0003ɽľ\u0000ؑî\u0001\u0000\u0000\u0000ؒؓ\u0003ɻĽ\u0000ؓؔ\u0003ʑň\u0000ؔؕ\u0003ɯķ\u0000ؕؖ\u0003ʍņ\u0000ؖؗ\u0003ɽľ\u0000ؘؗ\u0003ʓʼn\u0000ؘð\u0001\u0000\u0000\u0000ؙؚ\u0003ɻĽ\u0000ؚ؛\u0003ʑň\u0000؛؜\u0003ʋŅ\u0000؜\u061d\u0003ʗŋ\u0000\u061d؞\u0003ʍņ\u0000؞ò\u0001\u0000\u0000\u0000؟ؠ\u0003ɻĽ\u0000ؠء\u0003ʑň\u0000ءآ\u0003ʋŅ\u0000آأ\u0003ʗŋ\u0000أؤ\u0003ʍņ\u0000ؤإ\u0003ʓʼn\u0000إô\u0001\u0000\u0000\u0000ئا\u0005>\u0000\u0000اö\u0001\u0000\u0000\u0000بة\u0003ɽľ\u0000ةت\u0003ɷĻ\u0000تث\u0003ɯķ\u0000ثج\u0003ɵĺ\u0000جح\u0003ɷĻ\u0000حخ\u0003ʑň\u0000خد\u0003ʓʼn\u0000دø\u0001\u0000\u0000\u0000ذر\u0003ɽľ\u0000رز\u0003ʋŅ\u0000زس\u0003ʇŃ\u0000سش\u0003ɷĻ\u0000شú\u0001\u0000\u0000\u0000صض\u0003ɿĿ\u0000ضط\u0003ɵĺ\u0000طü\u0001\u0000\u0000\u0000ظع\u0003ɿĿ\u0000عغ\u0003ɹļ\u0000غþ\u0001\u0000\u0000\u0000ػؼ\u0003ɿĿ\u0000ؼؽ\u0003ʇŃ\u0000ؽؾ\u0003ʍņ\u0000ؾؿ\u0003ɷĻ\u0000ؿـ\u0003ʑň\u0000ـف\u0003ʓʼn\u0000فق\u0003ʋŅ\u0000قك\u0003ʉń\u0000كل\u0003ɯķ\u0000لم\u0003ʕŊ\u0000من\u0003ɷĻ\u0000نĀ\u0001\u0000\u0000\u0000هو\u0003ɿĿ\u0000وى\u0003ʇŃ\u0000ىي\u0003ʇŃ\u0000يً\u0003ʗŋ\u0000ًٌ\u0003ʕŊ\u0000ٌٍ\u0003ɯķ\u0000ٍَ\u0003ɱĸ\u0000َُ\u0003ʅł\u0000ُِ\u0003ɷĻ\u0000ِĂ\u0001\u0000\u0000\u0000ّْ\u0003ɿĿ\u0000ْٓ\u0003ʉń\u0000ٓĄ\u0001\u0000\u0000\u0000ٕٔ\u0003ɿĿ\u0000ٕٖ\u0003ʉń\u0000ٖٗ\u0003ɵĺ\u0000ٗ٘\u0003ɷĻ\u0000٘ٙ\u0003ʝŎ\u0000ٙĆ\u0001\u0000\u0000\u0000ٚٛ\u0003ɿĿ\u0000ٜٛ\u0003ʉń\u0000ٜٝ\u0003ɵĺ\u0000ٝٞ\u0003ɷĻ\u0000ٟٞ\u0003ʝŎ\u0000ٟ٠\u0003ɷĻ\u0000٠١\u0003ʓʼn\u0000١Ĉ\u0001\u0000\u0000\u0000٢٣\u0003ɿĿ\u0000٣٤\u0003ʉń\u0000٤٥\u0003ɹ" ++ "\u0003ʍņ\u0000ؐؑ\u0003ɽľ\u0000ؑî\u0001\u0000\u0000\u0000ؒؓ\u0003ɻĽ\u0000ؓؔ\u0003ʑň\u0000ؔؕ\u0003ɯķ\u0000ؕؖ\u0003ʍņ\u0000ؖؗ\u0003ɽľ\u0000ؘؗ\u0003ʓʼn\u0000ؘð\u0001\u0000\u0000\u0000ؙؚ\u0003ɻĽ\u0000ؚ؛\u0003ʑň\u0000؛؜\u0003ʋŅ\u0000؜؝\u0003ʗŋ\u0000؝؞\u0003ʍņ\u0000؞ò\u0001\u0000\u0000\u0000؟ؠ\u0003ɻĽ\u0000ؠء\u0003ʑň\u0000ءآ\u0003ʋŅ\u0000آأ\u0003ʗŋ\u0000أؤ\u0003ʍņ\u0000ؤإ\u0003ʓʼn\u0000إô\u0001\u0000\u0000\u0000ئا\u0005>\u0000\u0000اö\u0001\u0000\u0000\u0000بة\u0003ɽľ\u0000ةت\u0003ɷĻ\u0000تث\u0003ɯķ\u0000ثج\u0003ɵĺ\u0000جح\u0003ɷĻ\u0000حخ\u0003ʑň\u0000خد\u0003ʓʼn\u0000دø\u0001\u0000\u0000\u0000ذر\u0003ɽľ\u0000رز\u0003ʋŅ\u0000زس\u0003ʇŃ\u0000سش\u0003ɷĻ\u0000شú\u0001\u0000\u0000\u0000صض\u0003ɿĿ\u0000ضط\u0003ɵĺ\u0000طü\u0001\u0000\u0000\u0000ظع\u0003ɿĿ\u0000عغ\u0003ɹļ\u0000غþ\u0001\u0000\u0000\u0000ػؼ\u0003ɿĿ\u0000ؼؽ\u0003ʇŃ\u0000ؽؾ\u0003ʍņ\u0000ؾؿ\u0003ɷĻ\u0000ؿـ\u0003ʑň\u0000ـف\u0003ʓʼn\u0000فق\u0003ʋŅ\u0000قك\u0003ʉń\u0000كل\u0003ɯķ\u0000لم\u0003ʕŊ\u0000من\u0003ɷĻ\u0000نĀ\u0001\u0000\u0000\u0000هو\u0003ɿĿ\u0000وى\u0003ʇŃ\u0000ىي\u0003ʇŃ\u0000يً\u0003ʗŋ\u0000ًٌ\u0003ʕŊ\u0000ٌٍ\u0003ɯķ\u0000ٍَ\u0003ɱĸ\u0000َُ\u0003ʅł\u0000ُِ\u0003ɷĻ\u0000ِĂ\u0001\u0000\u0000\u0000ّْ\u0003ɿĿ\u0000ْٓ\u0003ʉń\u0000ٓĄ\u0001\u0000\u0000\u0000ٕٔ\u0003ɿĿ\u0000ٕٖ\u0003ʉń\u0000ٖٗ\u0003ɵĺ\u0000ٗ٘\u0003ɷĻ\u0000٘ٙ\u0003ʝŎ\u0000ٙĆ\u0001\u0000\u0000\u0000ٚٛ\u0003ɿĿ\u0000ٜٛ\u0003ʉń\u0000ٜٝ\u0003ɵĺ\u0000ٝٞ\u0003ɷĻ\u0000ٟٞ\u0003ʝŎ\u0000ٟ٠\u0003ɷĻ\u0000٠١\u0003ʓʼn\u0000١Ĉ\u0001\u0000\u0000\u0000٢٣\u0003ɿĿ\u0000٣٤\u0003ʉń\u0000٤٥\u0003ɹ" + "ļ\u0000٥Ċ\u0001\u0000\u0000\u0000٦٧\u0003ɿĿ\u0000٧٨\u0003ʉń\u0000٨٩\u0003ɹļ\u0000٩٪\u0003ɿĿ\u0000٪٫\u0003ʉń\u0000٫٬\u0003ɿĿ\u0000٬٭\u0003ʕŊ\u0000٭ٮ\u0003ʟŏ\u0000ٮČ\u0001\u0000\u0000\u0000ٯٰ\u0003ɿĿ\u0000ٰٱ\u0003ʉń\u0000ٱٲ\u0003ʓʼn\u0000ٲٳ\u0003ɷĻ\u0000ٳٴ\u0003ʑň\u0000ٴٵ\u0003ʕŊ\u0000ٵĎ\u0001\u0000\u0000\u0000ٶٷ\u0003ɿĿ\u0000ٷٸ\u0003ʉń\u0000ٸٹ\u0003ʕŊ\u0000ٹĐ\u0001\u0000\u0000\u0000ٺٻ\u0003ɿĿ\u0000ٻټ\u0003ʉń\u0000ټٽ\u0003ʕŊ\u0000ٽپ\u0003ɷĻ\u0000پٿ\u0003ɻĽ\u0000ٿڀ\u0003ɷĻ\u0000ڀځ\u0003ʑň\u0000ځĒ\u0001\u0000\u0000\u0000ڂڃ\u0003ɿĿ\u0000ڃڄ\u0003ʓʼn\u0000ڄĔ\u0001\u0000\u0000\u0000څچ\u0003ʁŀ\u0000چڇ\u0003ʋŅ\u0000ڇڈ\u0003ɿĿ\u0000ڈډ\u0003ʉń\u0000ډĖ\u0001\u0000\u0000\u0000ڊڋ\u0003ʃŁ\u0000ڋڌ\u0003ɷĻ\u0000ڌڍ\u0003ʟŏ\u0000ڍĘ\u0001\u0000\u0000\u0000ڎڏ\u0003ʅł\u0000ڏڐ\u0003ɯķ\u0000ڐڑ\u0003ɱĸ\u0000ڑڒ\u0003ɷĻ\u0000ڒړ\u0003ʅł\u0000ړĚ\u0001\u0000\u0000\u0000ڔڕ\u0003ʅł\u0000ڕږ\u0003ɯķ\u0000ږڗ\u0003ɱĸ\u0000ڗژ\u0003ɷĻ\u0000ژڙ\u0003ʅł\u0000ڙښ\u0003ʓʼn\u0000ښĜ\u0001\u0000\u0000\u0000ڛڜ\u0005&\u0000\u0000ڜĞ\u0001\u0000\u0000\u0000ڝڞ\u0005!\u0000\u0000ڞĠ\u0001\u0000\u0000\u0000ڟڠ\u0005[\u0000\u0000ڠĢ\u0001\u0000\u0000\u0000ڡڢ\u0005{\u0000\u0000ڢĤ\u0001\u0000\u0000\u0000ڣڤ\u0005<\u0000\u0000ڤڥ\u0005=\u0000\u0000ڥĦ\u0001\u0000\u0000\u0000ڦڧ\u0003ʅł\u0000ڧڨ\u0003ɷĻ\u0000ڨک\u0003ɯķ\u0000کڪ\u0003ɵĺ\u0000ڪګ\u0003ɿĿ\u0000ګڬ\u0003ʉń\u0000ڬڭ\u0003ɻĽ\u0000ڭĨ\u0001\u0000\u0000\u0000ڮگ\u0003ʅł\u0000گڰ\u0003ɿĿ\u0000ڰڱ\u0003ʇŃ\u0000ڱڲ\u0003ɿĿ\u0000ڲڳ\u0003ʕŊ\u0000ڳĪ\u0001\u0000\u0000\u0000ڴڵ\u0003ʅł\u0000ڵڶ\u0003ɿĿ\u0000ڶڷ\u0003ʓʼn\u0000ڷڸ\u0003ʕŊ\u0000ڸĬ\u0001\u0000\u0000\u0000ڹں\u0003ʅł\u0000" + "ںڻ\u0003ʋŅ\u0000ڻڼ\u0003ɯķ\u0000ڼڽ\u0003ɵĺ\u0000ڽĮ\u0001\u0000\u0000\u0000ھڿ\u0003ʅł\u0000ڿۀ\u0003ʋŅ\u0000ۀہ\u0003ɳĹ\u0000ہۂ\u0003ɯķ\u0000ۂۃ\u0003ʅł\u0000ۃİ\u0001\u0000\u0000\u0000ۄۅ\u0003ʅł\u0000ۅۆ\u0003ʋŅ\u0000ۆۇ\u0003ʋŅ\u0000ۇۈ\u0003ʃŁ\u0000ۈۉ\u0003ʗŋ\u0000ۉۊ\u0003ʍņ\u0000ۊIJ\u0001\u0000\u0000\u0000ۋی\u0005(\u0000\u0000یĴ\u0001\u0000\u0000\u0000ۍێ\u0005<\u0000\u0000ێĶ\u0001\u0000\u0000\u0000ۏې\u0003ʇŃ\u0000ېۑ\u0003ɯķ\u0000ۑے\u0003ʉń\u0000ےۓ\u0003ɯķ\u0000ۓ۔\u0003ɻĽ\u0000۔ە\u0003ɷĻ\u0000ەۖ\u0003ʇŃ\u0000ۖۗ\u0003ɷĻ\u0000ۗۘ\u0003ʉń\u0000ۘۙ\u0003ʕŊ\u0000ۙĸ\u0001\u0000\u0000\u0000ۚۛ\u0003ʇŃ\u0000ۛۜ\u0003ɯķ\u0000ۜ۝\u0003ʍņ\u0000۝ĺ\u0001\u0000\u0000\u0000۞۟\u0003ʇŃ\u0000۟۠\u0003ɯķ\u0000۠ۡ\u0003ʕŊ\u0000ۡۢ\u0003ɳĹ\u0000ۣۢ\u0003ɽľ\u0000ۣļ\u0001\u0000\u0000\u0000ۤۥ\u0003ʇŃ\u0000ۥۦ\u0003ɷĻ\u0000ۦۧ\u0003ʑň\u0000ۧۨ\u0003ɻĽ\u0000ۨ۩\u0003ɷĻ\u0000۩ľ\u0001\u0000\u0000\u0000۪۫\u0005-\u0000\u0000۫ŀ\u0001\u0000\u0000\u0000ۭ۬\u0005%\u0000\u0000ۭł\u0001\u0000\u0000\u0000ۮۯ\u0005!\u0000\u0000ۯ۰\u0005=\u0000\u0000۰ń\u0001\u0000\u0000\u0000۱۲\u0005<\u0000\u0000۲۳\u0005>\u0000\u0000۳ņ\u0001\u0000\u0000\u0000۴۵\u0003ʉń\u0000۵۶\u0003ɯķ\u0000۶۷\u0003ʇŃ\u0000۷۸\u0003ɷĻ\u0000۸ň\u0001\u0000\u0000\u0000۹ۺ\u0003ʉń\u0000ۺۻ\u0003ɯķ\u0000ۻۼ\u0003ʇŃ\u0000ۼ۽\u0003ɷĻ\u0000۽۾\u0003ʓʼn\u0000۾Ŋ\u0001\u0000\u0000\u0000ۿ܀\u0003ʉń\u0000܀܁\u0003ɯķ\u0000܁܂\u0003ʉń\u0000܂Ō\u0001\u0000\u0000\u0000܃܄\u0003ʉń\u0000܄܅\u0003ɹļ\u0000܅܆\u0003ɳĹ\u0000܆Ŏ\u0001\u0000\u0000\u0000܇܈\u0003ʉń\u0000܈܉\u0003ɹļ\u0000܉܊\u0003ɵĺ\u0000܊Ő\u0001\u0000\u0000\u0000܋܌\u0003ʉń\u0000܌܍\u0003ɹļ\u0000܍\u070e\u0003ʃŁ\u0000\u070e܏\u0003ɳĹ\u0000܏Œ" + "\u0001\u0000\u0000\u0000ܐܑ\u0003ʉń\u0000ܑܒ\u0003ɹļ\u0000ܒܓ\u0003ʃŁ\u0000ܓܔ\u0003ɵĺ\u0000ܔŔ\u0001\u0000\u0000\u0000ܕܖ\u0003ʉń\u0000ܖܗ\u0003ɷĻ\u0000ܗܘ\u0003ʛō\u0000ܘŖ\u0001\u0000\u0000\u0000ܙܚ\u0003ʉń\u0000ܚܛ\u0003ʋŅ\u0000ܛܜ\u0003ɵĺ\u0000ܜܝ\u0003ɷĻ\u0000ܝŘ\u0001\u0000\u0000\u0000ܞܟ\u0003ʉń\u0000ܟܠ\u0003ʋŅ\u0000ܠܡ\u0003ɵĺ\u0000ܡܢ\u0003ɷĻ\u0000ܢܣ\u0003ʕŊ\u0000ܣܤ\u0003ɯķ\u0000ܤܥ\u0003ɳĹ\u0000ܥܦ\u0003ɽľ\u0000ܦŚ\u0001\u0000\u0000\u0000ܧܨ\u0003ʉń\u0000ܨܩ\u0003ʋŅ\u0000ܩܪ\u0003ɵĺ\u0000ܪܫ\u0003ɷĻ\u0000ܫܬ\u0003ʓʼn\u0000ܬŜ\u0001\u0000\u0000\u0000ܭܮ\u0003ʉń\u0000ܮܯ\u0003ʋŅ\u0000ܯܰ\u0003ʉń\u0000ܱܰ\u0003ɷĻ\u0000ܱŞ\u0001\u0000\u0000\u0000ܲܳ\u0003ʉń\u0000ܴܳ\u0003ʋŅ\u0000ܴܵ\u0003ʑň\u0000ܵܶ\u0003ʇŃ\u0000ܷܶ\u0003ɯķ\u0000ܷܸ\u0003ʅł\u0000ܸܹ\u0003ɿĿ\u0000ܹܺ\u0003ʡŐ\u0000ܻܺ\u0003ɷĻ\u0000ܻŠ\u0001\u0000\u0000\u0000ܼܽ\u0003ʉń\u0000ܾܽ\u0003ʋŅ\u0000ܾܿ\u0003ʑň\u0000ܿ݀\u0003ʇŃ\u0000݀݁\u0003ɯķ\u0000݂݁\u0003ʅł\u0000݂݃\u0003ɿĿ\u0000݄݃\u0003ʡŐ\u0000݄݅\u0003ɷĻ\u0000݆݅\u0003ɵĺ\u0000݆Ţ\u0001\u0000\u0000\u0000݈݇\u0003ʉń\u0000݈݉\u0003ʋŅ\u0000݉݊\u0003ʕŊ\u0000݊Ť\u0001\u0000\u0000\u0000\u074b\u074c\u0003ʉń\u0000\u074cݍ\u0003ʋŅ\u0000ݍݎ\u0003ʕŊ\u0000ݎݏ\u0003ɽľ\u0000ݏݐ\u0003ɿĿ\u0000ݐݑ\u0003ʉń\u0000ݑݒ\u0003ɻĽ\u0000ݒŦ\u0001\u0000\u0000\u0000ݓݔ\u0003ʉń\u0000ݔݕ\u0003ʋŅ\u0000ݕݖ\u0003ʛō\u0000ݖݗ\u0003ɯķ\u0000ݗݘ\u0003ɿĿ\u0000ݘݙ\u0003ʕŊ\u0000ݙŨ\u0001\u0000\u0000\u0000ݚݛ\u0003ʉń\u0000ݛݜ\u0003ʗŋ\u0000ݜݝ\u0003ʅł\u0000ݝݞ\u0003ʅł\u0000ݞŪ\u0001\u0000\u0000\u0000ݟݠ\u0003ʋŅ\u0000ݠݡ\u0003ɹļ\u0000ݡŬ\u0001\u0000\u0000\u0000ݢݣ\u0003ʋŅ\u0000ݣݤ\u0003ɹļ\u0000ݤݥ\u0003ɹ" + "ļ\u0000ݥݦ\u0003ʓʼn\u0000ݦݧ\u0003ɷĻ\u0000ݧݨ\u0003ʕŊ\u0000ݨŮ\u0001\u0000\u0000\u0000ݩݪ\u0003ʋŅ\u0000ݪݫ\u0003ʉń\u0000ݫŰ\u0001\u0000\u0000\u0000ݬݭ\u0003ʋŅ\u0000ݭݮ\u0003ʉń\u0000ݮݯ\u0003ʅł\u0000ݯݰ\u0003ʟŏ\u0000ݰŲ\u0001\u0000\u0000\u0000ݱݲ\u0003ʋŅ\u0000ݲݳ\u0003ʍņ\u0000ݳݴ\u0003ʕŊ\u0000ݴݵ\u0003ɿĿ\u0000ݵݶ\u0003ʋŅ\u0000ݶݷ\u0003ʉń\u0000ݷݸ\u0003ɯķ\u0000ݸݹ\u0003ʅł\u0000ݹŴ\u0001\u0000\u0000\u0000ݺݻ\u0003ʋŅ\u0000ݻݼ\u0003ʍņ\u0000ݼݽ\u0003ʕŊ\u0000ݽݾ\u0003ɿĿ\u0000ݾݿ\u0003ʋŅ\u0000ݿހ\u0003ʉń\u0000ހށ\u0003ʓʼn\u0000ށŶ\u0001\u0000\u0000\u0000ނރ\u0003ʋŅ\u0000ރބ\u0003ʍņ\u0000ބޅ\u0003ʕŊ\u0000ޅކ\u0003ɿĿ\u0000ކއ\u0003ʋŅ\u0000އވ\u0003ʉń\u0000ވŸ\u0001\u0000\u0000\u0000މފ\u0003ʋŅ\u0000ފދ\u0003ʑň\u0000ދź\u0001\u0000\u0000\u0000ތލ\u0003ʋŅ\u0000ލގ\u0003ʑň\u0000ގޏ\u0003ɵĺ\u0000ޏސ\u0003ɷĻ\u0000ސޑ\u0003ʑň\u0000ޑż\u0001\u0000\u0000\u0000ޒޓ\u0003ʍņ\u0000ޓޔ\u0003ɯķ\u0000ޔޕ\u0003ʓʼn\u0000ޕޖ\u0003ʓʼn\u0000ޖޗ\u0003ʛō\u0000ޗޘ\u0003ʋŅ\u0000ޘޙ\u0003ʑň\u0000ޙޚ\u0003ɵĺ\u0000ޚž\u0001\u0000\u0000\u0000ޛޜ\u0003ʍņ\u0000ޜޝ\u0003ɯķ\u0000ޝޞ\u0003ʓʼn\u0000ޞޟ\u0003ʓʼn\u0000ޟޠ\u0003ʛō\u0000ޠޡ\u0003ʋŅ\u0000ޡޢ\u0003ʑň\u0000ޢޣ\u0003ɵĺ\u0000ޣޤ\u0003ʓʼn\u0000ޤƀ\u0001\u0000\u0000\u0000ޥަ\u0003ʍņ\u0000ަާ\u0003ɯķ\u0000ާި\u0003ʕŊ\u0000ިީ\u0003ɽľ\u0000ީƂ\u0001\u0000\u0000\u0000ުޫ\u0003ʍņ\u0000ޫެ\u0003ɯķ\u0000ެޭ\u0003ʕŊ\u0000ޭޮ\u0003ɽľ\u0000ޮޯ\u0003ʓʼn\u0000ޯƄ\u0001\u0000\u0000\u0000ްޱ\u0003ʍņ\u0000ޱ\u07b2\u0003ʅł\u0000\u07b2\u07b3\u0003ɯķ\u0000\u07b3\u07b4\u0003ɿĿ\u0000\u07b4\u07b5\u0003ʉń\u0000\u07b5\u07b6\u0003ʕŊ\u0000\u07b6\u07b7\u0003ɷĻ\u0000\u07b7\u07b8\u0003ʝŎ\u0000\u07b8\u07b9\u0003ʕŊ\u0000\u07b9Ɔ\u0001\u0000\u0000\u0000" + "\u07ba\u07bb\u0005+\u0000\u0000\u07bbƈ\u0001\u0000\u0000\u0000\u07bc\u07bd\u0005+\u0000\u0000\u07bd\u07be\u0005=\u0000\u0000\u07beƊ\u0001\u0000\u0000\u0000\u07bf߀\u0003ʍņ\u0000߀߁\u0003ʋŅ\u0000߁߂\u0003ɿĿ\u0000߂߃\u0003ʉń\u0000߃߄\u0003ʕŊ\u0000߄ƌ\u0001\u0000\u0000\u0000߅߆\u0003ʍņ\u0000߆߇\u0003ʋŅ\u0000߇߈\u0003ʍņ\u0000߈߉\u0003ʗŋ\u0000߉ߊ\u0003ʅł\u0000ߊߋ\u0003ɯķ\u0000ߋߌ\u0003ʕŊ\u0000ߌߍ\u0003ɷĻ\u0000ߍߎ\u0003ɵĺ\u0000ߎƎ\u0001\u0000\u0000\u0000ߏߐ\u0005^\u0000\u0000ߐƐ\u0001\u0000\u0000\u0000ߑߒ\u0003ʍņ\u0000ߒߓ\u0003ʑň\u0000ߓߔ\u0003ɿĿ\u0000ߔߕ\u0003ʇŃ\u0000ߕߖ\u0003ɯķ\u0000ߖߗ\u0003ʑň\u0000ߗߘ\u0003ʟŏ\u0000ߘƒ\u0001\u0000\u0000\u0000ߙߚ\u0003ʍņ\u0000ߚߛ\u0003ʑň\u0000ߛߜ\u0003ɿĿ\u0000ߜߝ\u0003ʇŃ\u0000ߝߞ\u0003ɯķ\u0000ߞߟ\u0003ʑň\u0000ߟߠ\u0003ɿĿ\u0000ߠߡ\u0003ɷĻ\u0000ߡߢ\u0003ʓʼn\u0000ߢƔ\u0001\u0000\u0000\u0000ߣߤ\u0003ʍņ\u0000ߤߥ\u0003ʑň\u0000ߥߦ\u0003ɿĿ\u0000ߦߧ\u0003ʙŌ\u0000ߧߨ\u0003ɿĿ\u0000ߨߩ\u0003ʅł\u0000ߩߪ\u0003ɷĻ\u0000ߪ߫\u0003ɻĽ\u0000߫߬\u0003ɷĻ\u0000߬Ɩ\u0001\u0000\u0000\u0000߭߮\u0003ʍņ\u0000߮߯\u0003ʑň\u0000߯߰\u0003ɿĿ\u0000߰߱\u0003ʙŌ\u0000߲߱\u0003ɿĿ\u0000߲߳\u0003ʅł\u0000߳ߴ\u0003ɷĻ\u0000ߴߵ\u0003ɻĽ\u0000ߵ߶\u0003ɷĻ\u0000߶߷\u0003ʓʼn\u0000߷Ƙ\u0001\u0000\u0000\u0000߸߹\u0003ʍņ\u0000߹ߺ\u0003ʑň\u0000ߺ\u07fb\u0003ʋŅ\u0000\u07fb\u07fc\u0003ɳĹ\u0000\u07fc߽\u0003ɷĻ\u0000߽߾\u0003ɵĺ\u0000߾߿\u0003ʗŋ\u0000߿ࠀ\u0003ʑň\u0000ࠀࠁ\u0003ɷĻ\u0000ࠁƚ\u0001\u0000\u0000\u0000ࠂࠃ\u0003ʍņ\u0000ࠃࠄ\u0003ʑň\u0000ࠄࠅ\u0003ʋŅ\u0000ࠅࠆ\u0003ɳĹ\u0000ࠆࠇ\u0003ɷĻ\u0000ࠇࠈ\u0003ɵĺ\u0000ࠈࠉ\u0003ʗŋ\u0000ࠉࠊ\u0003ʑň\u0000ࠊࠋ\u0003ɷĻ\u0000ࠋࠌ\u0003ʓʼn\u0000ࠌƜ\u0001\u0000\u0000\u0000ࠍࠎ\u0003ʍņ\u0000ࠎࠏ\u0003ʑň\u0000ࠏࠐ" + "\u0003ʋŅ\u0000ࠐࠑ\u0003ʍņ\u0000ࠑࠒ\u0003ɷĻ\u0000ࠒࠓ\u0003ʑň\u0000ࠓࠔ\u0003ʕŊ\u0000ࠔࠕ\u0003ɿĿ\u0000ࠕࠖ\u0003ɷĻ\u0000ࠖࠗ\u0003ʓʼn\u0000ࠗƞ\u0001\u0000\u0000\u0000࠘࠙\u0003ʍņ\u0000࠙ࠚ\u0003ʑň\u0000ࠚࠛ\u0003ʋŅ\u0000ࠛࠜ\u0003ʍņ\u0000ࠜࠝ\u0003ɷĻ\u0000ࠝࠞ\u0003ʑň\u0000ࠞࠟ\u0003ʕŊ\u0000ࠟࠠ\u0003ʟŏ\u0000ࠠƠ\u0001\u0000\u0000\u0000ࠡࠢ\u0003ʍņ\u0000ࠢࠣ\u0003ʑň\u0000ࠣࠤ\u0003ʋŅ\u0000ࠤࠥ\u0003ʙŌ\u0000ࠥࠦ\u0003ɿĿ\u0000ࠦࠧ\u0003ɵĺ\u0000ࠧࠨ\u0003ɷĻ\u0000ࠨࠩ\u0003ʑň\u0000ࠩƢ\u0001\u0000\u0000\u0000ࠪࠫ\u0003ʍņ\u0000ࠫࠬ\u0003ʑň\u0000ࠬ࠭\u0003ʋŅ\u0000࠭\u082e\u0003ʙŌ\u0000\u082e\u082f\u0003ɿĿ\u0000\u082f࠰\u0003ɵĺ\u0000࠰࠱\u0003ɷĻ\u0000࠱࠲\u0003ʑň\u0000࠲࠳\u0003ʓʼn\u0000࠳Ƥ\u0001\u0000\u0000\u0000࠴࠵\u0005?\u0000\u0000࠵Ʀ\u0001\u0000\u0000\u0000࠶࠷\u0003ʑň\u0000࠷࠸\u0003ɯķ\u0000࠸࠹\u0003ʉń\u0000࠹࠺\u0003ɻĽ\u0000࠺࠻\u0003ɷĻ\u0000࠻ƨ\u0001\u0000\u0000\u0000࠼࠽\u0005]\u0000\u0000࠽ƪ\u0001\u0000\u0000\u0000࠾\u083f\u0005}\u0000\u0000\u083fƬ\u0001\u0000\u0000\u0000ࡀࡁ\u0003ʑň\u0000ࡁࡂ\u0003ɷĻ\u0000ࡂࡃ\u0003ɯķ\u0000ࡃࡄ\u0003ɵĺ\u0000ࡄƮ\u0001\u0000\u0000\u0000ࡅࡆ\u0003ʑň\u0000ࡆࡇ\u0003ɷĻ\u0000ࡇࡈ\u0003ɯķ\u0000ࡈࡉ\u0003ʅł\u0000ࡉࡊ\u0003ʅł\u0000ࡊࡋ\u0003ʋŅ\u0000ࡋࡌ\u0003ɳĹ\u0000ࡌࡍ\u0003ɯķ\u0000ࡍࡎ\u0003ʕŊ\u0000ࡎࡏ\u0003ɷĻ\u0000ࡏư\u0001\u0000\u0000\u0000ࡐࡑ\u0003ʑň\u0000ࡑࡒ\u0003ɷĻ\u0000ࡒࡓ\u0003ɵĺ\u0000ࡓࡔ\u0003ʗŋ\u0000ࡔࡕ\u0003ɳĹ\u0000ࡕࡖ\u0003ɷĻ\u0000ࡖƲ\u0001\u0000\u0000\u0000ࡗࡘ\u0003ʑň\u0000ࡘ࡙\u0003ɷĻ\u0000࡙࡚\u0003ʉń\u0000࡚࡛\u0003ɯķ\u0000࡛\u085c\u0003ʇŃ\u0000\u085c\u085d\u0003ɷĻ\u0000\u085dƴ\u0001\u0000\u0000\u0000࡞\u085f\u0005=\u0000\u0000\u085fࡠ\u0005~\u0000\u0000ࡠƶ\u0001\u0000\u0000\u0000ࡡࡢ\u0003ʑň\u0000ࡢࡣ\u0003ɷĻ\u0000ࡣࡤ\u0003ʅł\u0000ࡤƸ\u0001\u0000" -+ "\u0000\u0000ࡥࡦ\u0003ʑň\u0000ࡦࡧ\u0003ɷĻ\u0000ࡧࡨ\u0003ʅł\u0000ࡨࡩ\u0003ɯķ\u0000ࡩࡪ\u0003ʕŊ\u0000ࡪ\u086b\u0003ɿĿ\u0000\u086b\u086c\u0003ʋŅ\u0000\u086c\u086d\u0003ʉń\u0000\u086d\u086e\u0003ʓʼn\u0000\u086e\u086f\u0003ɽľ\u0000\u086f\u0870\u0003ɿĿ\u0000\u0870\u0871\u0003ʍņ\u0000\u0871ƺ\u0001\u0000\u0000\u0000\u0872\u0873\u0003ʑň\u0000\u0873\u0874\u0003ɷĻ\u0000\u0874\u0875\u0003ʅł\u0000\u0875\u0876\u0003ɯķ\u0000\u0876\u0877\u0003ʕŊ\u0000\u0877\u0878\u0003ɿĿ\u0000\u0878\u0879\u0003ʋŅ\u0000\u0879\u087a\u0003ʉń\u0000\u087a\u087b\u0003ʓʼn\u0000\u087b\u087c\u0003ɽľ\u0000\u087c\u087d\u0003ɿĿ\u0000\u087d\u087e\u0003ʍņ\u0000\u087e\u087f\u0003ʓʼn\u0000\u087fƼ\u0001\u0000\u0000\u0000\u0880\u0881\u0003ʑň\u0000\u0881\u0882\u0003ɷĻ\u0000\u0882\u0883\u0003ʇŃ\u0000\u0883\u0884\u0003ʋŅ\u0000\u0884\u0885\u0003ʙŌ\u0000\u0885\u0886\u0003ɷĻ\u0000\u0886ƾ\u0001\u0000\u0000\u0000\u0887\u0888\u0003ʑň\u0000\u0888\u0889\u0003ɷĻ\u0000\u0889\u088a\u0003ʍņ\u0000\u088a\u088b\u0003ɷĻ\u0000\u088b\u088c\u0003ɯķ\u0000\u088c\u088d\u0003ʕŊ\u0000\u088d\u088e\u0003ɯķ\u0000\u088e\u088f\u0003ɱĸ\u0000\u088f\u0890\u0003ʅł\u0000\u0890\u0891\u0003ɷĻ\u0000\u0891ǀ\u0001\u0000\u0000\u0000\u0892\u0893\u0003ʑň\u0000\u0893\u0894\u0003ɷĻ\u0000\u0894\u0895\u0003ʍņ\u0000\u0895\u0896\u0003ʅł\u0000\u0896\u0897\u0003ɯķ\u0000\u0897\u0898\u0003ɳĹ\u0000\u0898\u0899\u0003ɷĻ\u0000\u0899ǂ\u0001\u0000\u0000\u0000\u089a\u089b\u0003ʑň\u0000\u089b\u089c\u0003ɷĻ\u0000\u089c\u089d\u0003ʍņ\u0000\u089d\u089e\u0003ʋŅ\u0000\u089e\u089f\u0003ʑň\u0000\u089fࢠ\u0003ʕŊ\u0000ࢠDŽ\u0001\u0000\u0000\u0000ࢡࢢ\u0003ʑň\u0000ࢢࢣ\u0003ɷĻ\u0000ࢣࢤ\u0003ʏŇ\u0000ࢤࢥ\u0003ʗŋ\u0000ࢥࢦ\u0003ɿĿ\u0000ࢦࢧ\u0003ʑň\u0000ࢧࢨ\u0003ɷĻ\u0000ࢨdž\u0001\u0000\u0000\u0000ࢩࢪ\u0003ʑň\u0000ࢪࢫ\u0003ɷĻ\u0000ࢫࢬ\u0003ʏŇ\u0000ࢬࢭ\u0003ʗŋ\u0000ࢭࢮ\u0003ɿĿ\u0000ࢮࢯ\u0003ʑň\u0000ࢯࢰ\u0003ɷĻ\u0000ࢰࢱ\u0003ɵĺ\u0000ࢱLj\u0001\u0000\u0000\u0000ࢲࢳ\u0003ʑň\u0000ࢳࢴ\u0003ɷĻ\u0000ࢴ\u08b5\u0003ʓʼn\u0000\u08b5ࢶ\u0003ʕŊ\u0000ࢶࢷ\u0003ʑň\u0000ࢷࢸ\u0003ɿĿ\u0000ࢸࢹ\u0003ɳĹ\u0000ࢹࢺ\u0003ʕŊ\u0000" -+ "ࢺNJ\u0001\u0000\u0000\u0000ࢻࢼ\u0003ʑň\u0000ࢼࢽ\u0003ɷĻ\u0000ࢽࢾ\u0003ʕŊ\u0000ࢾࢿ\u0003ʗŋ\u0000ࢿࣀ\u0003ʑň\u0000ࣀࣁ\u0003ʉń\u0000ࣁnj\u0001\u0000\u0000\u0000ࣂࣃ\u0003ʑň\u0000ࣃࣄ\u0003ɷĻ\u0000ࣄࣅ\u0003ʙŌ\u0000ࣅࣆ\u0003ʋŅ\u0000ࣆࣇ\u0003ʃŁ\u0000ࣇ\u08c8\u0003ɷĻ\u0000\u08c8ǎ\u0001\u0000\u0000\u0000\u08c9\u08ca\u0003ʑň\u0000\u08ca\u08cb\u0003ʋŅ\u0000\u08cb\u08cc\u0003ʅł\u0000\u08cc\u08cd\u0003ɷĻ\u0000\u08cdǐ\u0001\u0000\u0000\u0000\u08ce\u08cf\u0003ʑň\u0000\u08cf\u08d0\u0003ʋŅ\u0000\u08d0\u08d1\u0003ʅł\u0000\u08d1\u08d2\u0003ɷĻ\u0000\u08d2࣓\u0003ʓʼn\u0000࣓ǒ\u0001\u0000\u0000\u0000ࣔࣕ\u0003ʑň\u0000ࣕࣖ\u0003ʋŅ\u0000ࣖࣗ\u0003ʛō\u0000ࣗǔ\u0001\u0000\u0000\u0000ࣘࣙ\u0003ʑň\u0000ࣙࣚ\u0003ʋŅ\u0000ࣚࣛ\u0003ʛō\u0000ࣛࣜ\u0003ʓʼn\u0000ࣜǖ\u0001\u0000\u0000\u0000ࣝࣞ\u0005)\u0000\u0000ࣞǘ\u0001\u0000\u0000\u0000ࣟ࣠\u0003ʓʼn\u0000࣠࣡\u0003ɳĹ\u0000࣡࣢\u0003ɯķ\u0000࣢ࣣ\u0003ʉń\u0000ࣣǚ\u0001\u0000\u0000\u0000ࣤࣥ\u0003ʓʼn\u0000ࣦࣥ\u0003ɷĻ\u0000ࣦࣧ\u0003ɳĹ\u0000ࣧǜ\u0001\u0000\u0000\u0000ࣩࣨ\u0003ʓʼn\u0000ࣩ࣪\u0003ɷĻ\u0000࣪࣫\u0003ɳĹ\u0000࣫࣬\u0003ʋŅ\u0000࣭࣬\u0003ʉń\u0000࣭࣮\u0003ɵĺ\u0000࣮Ǟ\u0001\u0000\u0000\u0000ࣰ࣯\u0003ʓʼn\u0000ࣰࣱ\u0003ɷĻ\u0000ࣱࣲ\u0003ɳĹ\u0000ࣲࣳ\u0003ʋŅ", ++ "\u0000\u0000ࡥࡦ\u0003ʑň\u0000ࡦࡧ\u0003ɷĻ\u0000ࡧࡨ\u0003ʅł\u0000ࡨࡩ\u0003ɯķ\u0000ࡩࡪ\u0003ʕŊ\u0000ࡪ\u086b\u0003ɿĿ\u0000\u086b\u086c\u0003ʋŅ\u0000\u086c\u086d\u0003ʉń\u0000\u086d\u086e\u0003ʓʼn\u0000\u086e\u086f\u0003ɽľ\u0000\u086fࡰ\u0003ɿĿ\u0000ࡰࡱ\u0003ʍņ\u0000ࡱƺ\u0001\u0000\u0000\u0000ࡲࡳ\u0003ʑň\u0000ࡳࡴ\u0003ɷĻ\u0000ࡴࡵ\u0003ʅł\u0000ࡵࡶ\u0003ɯķ\u0000ࡶࡷ\u0003ʕŊ\u0000ࡷࡸ\u0003ɿĿ\u0000ࡸࡹ\u0003ʋŅ\u0000ࡹࡺ\u0003ʉń\u0000ࡺࡻ\u0003ʓʼn\u0000ࡻࡼ\u0003ɽľ\u0000ࡼࡽ\u0003ɿĿ\u0000ࡽࡾ\u0003ʍņ\u0000ࡾࡿ\u0003ʓʼn\u0000ࡿƼ\u0001\u0000\u0000\u0000ࢀࢁ\u0003ʑň\u0000ࢁࢂ\u0003ɷĻ\u0000ࢂࢃ\u0003ʇŃ\u0000ࢃࢄ\u0003ʋŅ\u0000ࢄࢅ\u0003ʙŌ\u0000ࢅࢆ\u0003ɷĻ\u0000ࢆƾ\u0001\u0000\u0000\u0000ࢇ࢈\u0003ʑň\u0000࢈ࢉ\u0003ɷĻ\u0000ࢉࢊ\u0003ʍņ\u0000ࢊࢋ\u0003ɷĻ\u0000ࢋࢌ\u0003ɯķ\u0000ࢌࢍ\u0003ʕŊ\u0000ࢍࢎ\u0003ɯķ\u0000ࢎ\u088f\u0003ɱĸ\u0000\u088f࢐\u0003ʅł\u0000࢐࢑\u0003ɷĻ\u0000࢑ǀ\u0001\u0000\u0000\u0000\u0892\u0893\u0003ʑň\u0000\u0893\u0894\u0003ɷĻ\u0000\u0894\u0895\u0003ʍņ\u0000\u0895\u0896\u0003ʅł\u0000\u0896\u0897\u0003ɯķ\u0000\u0897࢘\u0003ɳĹ\u0000࢙࢘\u0003ɷĻ\u0000࢙ǂ\u0001\u0000\u0000\u0000࢚࢛\u0003ʑň\u0000࢛࢜\u0003ɷĻ\u0000࢜࢝\u0003ʍņ\u0000࢝࢞\u0003ʋŅ\u0000࢞࢟\u0003ʑň\u0000࢟ࢠ\u0003ʕŊ\u0000ࢠDŽ\u0001\u0000\u0000\u0000ࢡࢢ\u0003ʑň\u0000ࢢࢣ\u0003ɷĻ\u0000ࢣࢤ\u0003ʏŇ\u0000ࢤࢥ\u0003ʗŋ\u0000ࢥࢦ\u0003ɿĿ\u0000ࢦࢧ\u0003ʑň\u0000ࢧࢨ\u0003ɷĻ\u0000ࢨdž\u0001\u0000\u0000\u0000ࢩࢪ\u0003ʑň\u0000ࢪࢫ\u0003ɷĻ\u0000ࢫࢬ\u0003ʏŇ\u0000ࢬࢭ\u0003ʗŋ\u0000ࢭࢮ\u0003ɿĿ\u0000ࢮࢯ\u0003ʑň\u0000ࢯࢰ\u0003ɷĻ\u0000ࢰࢱ\u0003ɵĺ\u0000ࢱLj\u0001\u0000\u0000\u0000ࢲࢳ\u0003ʑň\u0000ࢳࢴ\u0003ɷĻ\u0000ࢴࢵ\u0003ʓʼn\u0000ࢵࢶ\u0003ʕŊ\u0000ࢶࢷ\u0003ʑň\u0000ࢷࢸ\u0003ɿĿ\u0000ࢸࢹ\u0003ɳĹ\u0000ࢹࢺ\u0003ʕŊ\u0000" ++ "ࢺNJ\u0001\u0000\u0000\u0000ࢻࢼ\u0003ʑň\u0000ࢼࢽ\u0003ɷĻ\u0000ࢽࢾ\u0003ʕŊ\u0000ࢾࢿ\u0003ʗŋ\u0000ࢿࣀ\u0003ʑň\u0000ࣀࣁ\u0003ʉń\u0000ࣁnj\u0001\u0000\u0000\u0000ࣂࣃ\u0003ʑň\u0000ࣃࣄ\u0003ɷĻ\u0000ࣄࣅ\u0003ʙŌ\u0000ࣅࣆ\u0003ʋŅ\u0000ࣆࣇ\u0003ʃŁ\u0000ࣇࣈ\u0003ɷĻ\u0000ࣈǎ\u0001\u0000\u0000\u0000ࣉ࣊\u0003ʑň\u0000࣊࣋\u0003ʋŅ\u0000࣋࣌\u0003ʅł\u0000࣌࣍\u0003ɷĻ\u0000࣍ǐ\u0001\u0000\u0000\u0000࣏࣎\u0003ʑň\u0000࣏࣐\u0003ʋŅ\u0000࣐࣑\u0003ʅł\u0000࣑࣒\u0003ɷĻ\u0000࣒࣓\u0003ʓʼn\u0000࣓ǒ\u0001\u0000\u0000\u0000ࣔࣕ\u0003ʑň\u0000ࣕࣖ\u0003ʋŅ\u0000ࣖࣗ\u0003ʛō\u0000ࣗǔ\u0001\u0000\u0000\u0000ࣘࣙ\u0003ʑň\u0000ࣙࣚ\u0003ʋŅ\u0000ࣚࣛ\u0003ʛō\u0000ࣛࣜ\u0003ʓʼn\u0000ࣜǖ\u0001\u0000\u0000\u0000ࣝࣞ\u0005)\u0000\u0000ࣞǘ\u0001\u0000\u0000\u0000ࣟ࣠\u0003ʓʼn\u0000࣠࣡\u0003ɳĹ\u0000࣡࣢\u0003ɯķ\u0000࣢ࣣ\u0003ʉń\u0000ࣣǚ\u0001\u0000\u0000\u0000ࣤࣥ\u0003ʓʼn\u0000ࣦࣥ\u0003ɷĻ\u0000ࣦࣧ\u0003ɳĹ\u0000ࣧǜ\u0001\u0000\u0000\u0000ࣩࣨ\u0003ʓʼn\u0000ࣩ࣪\u0003ɷĻ\u0000࣪࣫\u0003ɳĹ\u0000࣫࣬\u0003ʋŅ\u0000࣭࣬\u0003ʉń\u0000࣭࣮\u0003ɵĺ\u0000࣮Ǟ\u0001\u0000\u0000\u0000ࣰ࣯\u0003ʓʼn\u0000ࣰࣱ\u0003ɷĻ\u0000ࣱࣲ\u0003ɳĹ\u0000ࣲࣳ\u0003ʋŅ", "\u0000ࣳࣴ\u0003ʉń\u0000ࣴࣵ\u0003ɵĺ\u0000ࣶࣵ\u0003ɯķ\u0000ࣶࣷ\u0003ʑň\u0000ࣷࣸ\u0003ʟŏ\u0000ࣸǠ\u0001\u0000\u0000\u0000ࣹࣺ\u0003ʓʼn\u0000ࣺࣻ\u0003ɷĻ\u0000ࣻࣼ\u0003ɳĹ\u0000ࣼࣽ\u0003ʋŅ\u0000ࣽࣾ\u0003ʉń\u0000ࣾࣿ\u0003ɵĺ\u0000ࣿऀ\u0003ɯķ\u0000ऀँ\u0003ʑň\u0000ँं\u0003ɿĿ\u0000ंः\u0003ɷĻ\u0000ःऄ\u0003ʓʼn\u0000ऄǢ\u0001\u0000\u0000\u0000अआ\u0003ʓʼn\u0000आइ\u0003ɷĻ\u0000इई\u0003ɳĹ\u0000ईउ\u0003ʋŅ\u0000उऊ\u0003ʉń\u0000ऊऋ\u0003ɵĺ\u0000ऋऌ\u0003ʓʼn\u0000ऌǤ\u0001\u0000\u0000\u0000ऍऎ\u0003ʓʼn\u0000ऎए\u0003ɷĻ\u0000एऐ\u0003ɷĻ\u0000ऐऑ\u0003ʃŁ\u0000ऑǦ\u0001\u0000\u0000\u0000ऒओ\u0005;\u0000\u0000ओǨ\u0001\u0000\u0000\u0000औक\u0003ʓʼn\u0000कख\u0003ɷĻ\u0000खग\u0003ʑň\u0000गघ\u0003ʙŌ\u0000घङ\u0003ɷĻ\u0000ङच\u0003ʑň\u0000चǪ\u0001\u0000\u0000\u0000छज\u0003ʓʼn\u0000जझ\u0003ɷĻ\u0000झञ\u0003ʑň\u0000ञट\u0003ʙŌ\u0000टठ\u0003ɷĻ\u0000ठड\u0003ʑň\u0000डढ\u0003ʓʼn\u0000ढǬ\u0001\u0000\u0000\u0000णत\u0003ʓʼn\u0000तथ\u0003ɷĻ\u0000थद\u0003ʕŊ\u0000दǮ\u0001\u0000\u0000\u0000धन\u0003ʓʼn\u0000नऩ\u0003ɷĻ\u0000ऩप\u0003ʕŊ\u0000पफ\u0003ʕŊ\u0000फब\u0003ɿĿ\u0000बभ\u0003ʉń\u0000भम\u0003ɻĽ\u0000मǰ\u0001\u0000\u0000\u0000यर\u0003ʓʼn\u0000रऱ\u0003ɷĻ\u0000ऱल\u0003ʕŊ\u0000लळ\u0003ʕŊ\u0000ळऴ\u0003ɿĿ\u0000ऴव\u0003ʉń\u0000वश\u0003ɻĽ\u0000शष\u0003ʓʼn\u0000षDz\u0001\u0000\u0000\u0000सह\u0003ʓʼn\u0000हऺ\u0003ɽľ\u0000ऺऻ\u0003ʋŅ\u0000ऻ़\u0003ʑň\u0000़ऽ\u0003ʕŊ\u0000ऽा\u0003ɷĻ\u0000ाि\u0003ʓʼn\u0000िी\u0003ʕŊ\u0000ीु\u0003ʍņ\u0000ुू\u0003ɯķ\u0000ूृ\u0003ʕŊ\u0000ृॄ\u0003ɽľ\u0000ॄǴ\u0001\u0000\u0000\u0000ॅॆ\u0003ʓʼn\u0000ॆे\u0003ɽľ\u0000ेै\u0003ʋŅ\u0000ै" + "ॉ\u0003ʑň\u0000ॉॊ\u0003ʕŊ\u0000ॊो\u0003ɷĻ\u0000ोौ\u0003ʓʼn\u0000ौ्\u0003ʕŊ\u0000्Ƕ\u0001\u0000\u0000\u0000ॎॏ\u0003ʓʼn\u0000ॏॐ\u0003ɽľ\u0000ॐ॑\u0003ʋŅ\u0000॒॑\u0003ʛō\u0000॒Ǹ\u0001\u0000\u0000\u0000॓॔\u0003ʓʼn\u0000॔ॕ\u0003ɿĿ\u0000ॕॖ\u0003ɻĽ\u0000ॖॗ\u0003ʉń\u0000ॗक़\u0003ɷĻ\u0000क़ख़\u0003ɵĺ\u0000ख़Ǻ\u0001\u0000\u0000\u0000ग़ज़\u0003ʓʼn\u0000ज़ड़\u0003ɿĿ\u0000ड़ढ़\u0003ʉń\u0000ढ़फ़\u0003ɻĽ\u0000फ़य़\u0003ʅł\u0000य़ॠ\u0003ɷĻ\u0000ॠǼ\u0001\u0000\u0000\u0000ॡॢ\u0003ʓʼn\u0000ॢॣ\u0003ʃŁ\u0000ॣ।\u0003ɿĿ\u0000।॥\u0003ʍņ\u0000॥Ǿ\u0001\u0000\u0000\u0000०१\u0003ʓʼn\u0000१२\u0003ʕŊ\u0000२३\u0003ɯķ\u0000३४\u0003ʑň\u0000४५\u0003ʕŊ\u0000५Ȁ\u0001\u0000\u0000\u0000६७\u0003ʓʼn\u0000७८\u0003ʕŊ\u0000८९\u0003ɯķ\u0000९॰\u0003ʑň\u0000॰ॱ\u0003ʕŊ\u0000ॱॲ\u0003ʓʼn\u0000ॲȂ\u0001\u0000\u0000\u0000ॳॴ\u0003ʓʼn\u0000ॴॵ\u0003ʕŊ\u0000ॵॶ\u0003ɯķ\u0000ॶॷ\u0003ʕŊ\u0000ॷॸ\u0003ʗŋ\u0000ॸॹ\u0003ʓʼn\u0000ॹȄ\u0001\u0000\u0000\u0000ॺॻ\u0003ʓʼn\u0000ॻॼ\u0003ʕŊ\u0000ॼॽ\u0003ʋŅ\u0000ॽॾ\u0003ʍņ\u0000ॾȆ\u0001\u0000\u0000\u0000ॿঀ\u0003ʓʼn\u0000ঀঁ\u0003ʕŊ\u0000ঁং\u0003ʑň\u0000ংঃ\u0003ɿĿ\u0000ঃ\u0984\u0003ʉń\u0000\u0984অ\u0003ɻĽ\u0000অȈ\u0001\u0000\u0000\u0000আই\u0003ʓʼn\u0000ইঈ\u0003ʗŋ\u0000ঈউ\u0003ʍņ\u0000উঊ\u0003ʍņ\u0000ঊঋ\u0003ʋŅ\u0000ঋঌ\u0003ʑň\u0000ঌ\u098d\u0003ʕŊ\u0000\u098d\u098e\u0003ɷĻ\u0000\u098eএ\u0003ɵĺ\u0000এȊ\u0001\u0000\u0000\u0000ঐ\u0991\u0003ʓʼn\u0000\u0991\u0992\u0003ʗŋ\u0000\u0992ও\u0003ʓʼn\u0000ওঔ\u0003ʍņ\u0000ঔক\u0003ɷĻ\u0000কখ\u0003ʉń\u0000খগ\u0003ɵĺ\u0000গঘ\u0003ɷĻ\u0000ঘঙ\u0003ɵĺ\u0000ঙȌ\u0001\u0000\u0000\u0000চছ\u0003ʕŊ\u0000ছজ\u0003ɯķ\u0000জঝ\u0003ʑň\u0000ঝঞ\u0003" + "ɻĽ\u0000ঞট\u0003ɷĻ\u0000টঠ\u0003ʕŊ\u0000ঠȎ\u0001\u0000\u0000\u0000ডঢ\u0003ʕŊ\u0000ঢণ\u0003ɷĻ\u0000ণত\u0003ʑň\u0000তথ\u0003ʇŃ\u0000থদ\u0003ɿĿ\u0000দধ\u0003ʉń\u0000ধন\u0003ɯķ\u0000ন\u09a9\u0003ʕŊ\u0000\u09a9প\u0003ɷĻ\u0000পȐ\u0001\u0000\u0000\u0000ফব\u0003ʕŊ\u0000বভ\u0003ɷĻ\u0000ভম\u0003ʝŎ\u0000ময\u0003ʕŊ\u0000যȒ\u0001\u0000\u0000\u0000র\u09b1\u0003ʕŊ\u0000\u09b1ল\u0003ɽľ\u0000ল\u09b3\u0003ɷĻ\u0000\u09b3\u09b4\u0003ʉń\u0000\u09b4Ȕ\u0001\u0000\u0000\u0000\u09b5শ\u0003ʕŊ\u0000শষ\u0003ɿĿ\u0000ষস\u0003ʇŃ\u0000সহ\u0003ɷĻ\u0000হȖ\u0001\u0000\u0000\u0000\u09ba\u09bb\u0005*\u0000\u0000\u09bbȘ\u0001\u0000\u0000\u0000়ঽ\u0003ʕŊ\u0000ঽা\u0003ɿĿ\u0000াি\u0003ʇŃ\u0000িী\u0003ɷĻ\u0000ীু\u0003ʓʼn\u0000ুূ\u0003ʕŊ\u0000ূৃ\u0003ɯķ\u0000ৃৄ\u0003ʇŃ\u0000ৄ\u09c5\u0003ʍņ\u0000\u09c5Ț\u0001\u0000\u0000\u0000\u09c6ে\u0003ʕŊ\u0000েৈ\u0003ɿĿ\u0000ৈ\u09c9\u0003ʇŃ\u0000\u09c9\u09ca\u0003ɷĻ\u0000\u09caো\u0003ʡŐ\u0000োৌ\u0003ʋŅ\u0000ৌ্\u0003ʉń\u0000্ৎ\u0003ɷĻ\u0000ৎȜ\u0001\u0000\u0000\u0000\u09cf\u09d0\u0003ʕŊ\u0000\u09d0\u09d1\u0003ʋŅ\u0000\u09d1Ȟ\u0001\u0000\u0000\u0000\u09d2\u09d3\u0003ʕŊ\u0000\u09d3\u09d4\u0003ʋŅ\u0000\u09d4\u09d5\u0003ʍņ\u0000\u09d5\u09d6\u0003ʋŅ\u0000\u09d6ৗ\u0003ʅł\u0000ৗ\u09d8\u0003ʋŅ\u0000\u09d8\u09d9\u0003ɻĽ\u0000\u09d9\u09da\u0003ʟŏ\u0000\u09daȠ\u0001\u0000\u0000\u0000\u09dbড়\u0003ʕŊ\u0000ড়ঢ়\u0003ʑň\u0000ঢ়\u09de\u0003ɯķ\u0000\u09deয়\u0003ɿĿ\u0000য়ৠ\u0003ʅł\u0000ৠৡ\u0003ɿĿ\u0000ৡৢ\u0003ʉń\u0000ৢৣ\u0003ɻĽ\u0000ৣȢ\u0001\u0000\u0000\u0000\u09e4\u09e5\u0003ʕŊ\u0000\u09e5০\u0003ʑň\u0000০১\u0003ɯķ\u0000১২\u0003ʉń\u0000২৩\u0003ʓʼn\u0000৩৪\u0003ɯķ\u0000৪৫\u0003ɳĹ\u0000৫৬\u0003ʕŊ\u0000৬৭\u0003ɿĿ\u0000৭৮\u0003ʋŅ\u0000৮৯\u0003ʉń\u0000৯Ȥ\u0001\u0000\u0000\u0000ৰৱ\u0003ʕŊ\u0000ৱ৲\u0003ʑň\u0000৲৳\u0003ɯķ" @@ -367278,83 +294831,84 @@ $rt_stringPool(["Can\'t enter monitor from another thread synchronously", "Defau + "\u0a49\u0003ʗŋ\u0000\u0a49\u0a4a\u0003ʓʼn\u0000\u0a4aੋ\u0003ɷĻ\u0000ੋੌ\u0003ʑň\u0000ੌɀ\u0001\u0000\u0000\u0000੍\u0a4e\u0003ʗŋ\u0000\u0a4e\u0a4f\u0003ʓʼn\u0000\u0a4f\u0a50\u0003ɷĻ\u0000\u0a50ੑ\u0003ʑň\u0000ੑ\u0a52\u0003ʓʼn\u0000\u0a52ɂ\u0001\u0000\u0000\u0000\u0a53\u0a54\u0003ʗŋ\u0000\u0a54\u0a55\u0003ʓʼn\u0000\u0a55\u0a56\u0003ɿĿ\u0000\u0a56\u0a57\u0003ʉń\u0000\u0a57\u0a58\u0003ɻĽ\u0000\u0a58Ʉ\u0001\u0000\u0000\u0000ਖ਼ਗ਼\u0003ʙŌ\u0000ਗ਼ਜ਼\u0003ɯķ\u0000ਜ਼ੜ\u0003ʅł\u0000ੜ\u0a5d\u0003ʗŋ\u0000\u0a5dਫ਼\u0003ɷĻ\u0000ਫ਼Ɇ\u0001\u0000\u0000\u0000\u0a5f\u0a60\u0003ʙŌ\u0000\u0a60\u0a61\u0003ɯķ\u0000\u0a61\u0a62\u0003ʑň\u0000\u0a62\u0a63\u0003ɳĹ\u0000\u0a63\u0a64\u0003ɽľ\u0000\u0a64\u0a65\u0003ɯķ\u0000\u0a65੦\u0003ʑň\u0000੦Ɉ\u0001\u0000\u0000\u0000੧੨\u0003ʙŌ\u0000੨੩\u0003ɷĻ\u0000੩੪\u0003ɳĹ\u0000੪੫\u0003ʕŊ\u0000੫੬\u0003ʋŅ\u0000੬੭\u0003ʑň\u0000੭Ɋ\u0001\u0000\u0000\u0000੮੯\u0003ʙŌ\u0000੯ੰ\u0003ɷĻ\u0000ੰੱ\u0003ʑň\u0000ੱੲ\u0003ʕŊ\u0000ੲੳ\u0003ɷĻ\u0000ੳੴ\u0003ʝŎ\u0000ੴɌ\u0001\u0000\u0000\u0000ੵ੶\u0003ʛō\u0000੶\u0a77\u0003ɯķ\u0000\u0a77\u0a78\u0003ɿĿ\u0000\u0a78\u0a79\u0003ʕŊ\u0000\u0a79Ɏ\u0001\u0000\u0000\u0000\u0a7a\u0a7b\u0003ʛō\u0000\u0a7b\u0a7c\u0003ɽľ\u0000\u0a7c\u0a7d\u0003ɷĻ\u0000\u0a7d\u0a7e\u0003ʉń\u0000\u0a7eɐ\u0001\u0000\u0000\u0000\u0a7f\u0a80\u0003ʛō\u0000\u0a80ઁ\u0003ɽľ\u0000ઁં\u0003ɷĻ\u0000ંઃ\u0003ʑň\u0000ઃ\u0a84\u0003ɷĻ\u0000\u0a84ɒ\u0001\u0000\u0000\u0000અઆ\u0003ʛō\u0000આઇ\u0003ɿĿ\u0000ઇઈ\u0003ʕŊ\u0000ઈઉ\u0003ɽľ\u0000ઉɔ\u0001\u0000\u0000\u0000ઊઋ\u0003ʛō\u0000ઋઌ\u0003ɿĿ\u0000ઌઍ\u0003ʕŊ\u0000ઍ\u0a8e\u0003ɽľ\u0000\u0a8eએ\u0003ʋŅ\u0000એઐ\u0003ʗŋ\u0000ઐઑ\u0003ʕŊ\u0000ઑɖ\u0001\u0000\u0000\u0000\u0a92ઓ\u0003ʛō\u0000ઓઔ\u0003ʑň\u0000ઔક\u0003ɿĿ\u0000કખ\u0003ʕŊ\u0000ખગ\u0003ɷĻ\u0000ગɘ\u0001\u0000\u0000\u0000ઘઙ\u0003ʝŎ\u0000ઙચ\u0003ʋŅ\u0000ચછ\u0003ʑň\u0000છɚ\u0001\u0000\u0000\u0000જઝ\u0003ʟŏ\u0000ઝઞ\u0003" + "ɿĿ\u0000ઞટ\u0003ɷĻ\u0000ટઠ\u0003ʅł\u0000ઠડ\u0003ɵĺ\u0000ડɜ\u0001\u0000\u0000\u0000ઢણ\u0003ʡŐ\u0000ણત\u0003ʋŅ\u0000તથ\u0003ʉń\u0000થદ\u0003ɷĻ\u0000દɞ\u0001\u0000\u0000\u0000ધન\u0003ʡŐ\u0000ન\u0aa9\u0003ʋŅ\u0000\u0aa9પ\u0003ʉń\u0000પફ\u0003ɷĻ\u0000ફબ\u0003ɵĺ\u0000બɠ\u0001\u0000\u0000\u0000ભ\u0ab1\u0003ɫĵ\u0000મર\u0003ɭĶ\u0000યમ\u0001\u0000\u0000\u0000રળ\u0001\u0000\u0000\u0000\u0ab1ય\u0001\u0000\u0000\u0000\u0ab1લ\u0001\u0000\u0000\u0000લɢ\u0001\u0000\u0000\u0000ળ\u0ab1\u0001\u0000\u0000\u0000\u0ab4શ\u0003ɭĶ\u0000વ\u0ab4\u0001\u0000\u0000\u0000શષ\u0001\u0000\u0000\u0000ષવ\u0001\u0000\u0000\u0000ષસ\u0001\u0000\u0000\u0000સɤ\u0001\u0000\u0000\u0000હ\u0aba\u0007\t\u0000\u0000\u0abaɦ\u0001\u0000\u0000\u0000\u0abb઼\u0007\n\u0000\u0000઼ɨ\u0001\u0000\u0000\u0000ઽા\u0007\u000b\u0000\u0000ાɪ\u0001\u0000\u0000\u0000િી\u0007\u000c\u0000\u0000ીɬ\u0001\u0000\u0000\u0000ુૄ\u0003ɫĵ\u0000ૂૄ\u0007\r\u0000\u0000ૃુ\u0001\u0000\u0000\u0000ૃૂ\u0001\u0000\u0000\u0000ૄɮ\u0001\u0000\u0000\u0000ૅ\u0ac6\u0007\u000e\u0000\u0000\u0ac6ɰ\u0001\u0000\u0000\u0000ેૈ\u0007\u000f\u0000\u0000ૈɲ\u0001\u0000\u0000\u0000ૉ\u0aca\u0007\u0010\u0000\u0000\u0acaɴ\u0001\u0000\u0000\u0000ોૌ\u0007\u0011\u0000\u0000ૌɶ\u0001\u0000\u0000\u0000્\u0ace\u0007\u0004\u0000\u0000\u0aceɸ\u0001\u0000\u0000\u0000\u0acfૐ\u0007\u0012\u0000\u0000ૐɺ\u0001\u0000\u0000\u0000\u0ad1\u0ad2\u0007\u0013\u0000\u0000\u0ad2ɼ\u0001\u0000\u0000\u0000\u0ad3\u0ad4\u0007\u0014\u0000\u0000\u0ad4ɾ\u0001\u0000\u0000\u0000\u0ad5\u0ad6\u0007\u0015\u0000\u0000\u0ad6ʀ\u0001\u0000\u0000\u0000\u0ad7\u0ad8\u0007\u0016\u0000\u0000\u0ad8ʂ\u0001\u0000\u0000\u0000\u0ad9\u0ada\u0007\u0017\u0000\u0000\u0adaʄ\u0001\u0000\u0000\u0000\u0adb\u0adc\u0007\u0018\u0000\u0000\u0adcʆ\u0001\u0000\u0000\u0000\u0add\u0ade\u0007\u0019\u0000\u0000\u0adeʈ\u0001\u0000\u0000\u0000\u0adfૠ\u0007\u001a\u0000\u0000ૠʊ\u0001\u0000\u0000\u0000ૡૢ\u0007\u001b\u0000\u0000ૢʌ\u0001\u0000\u0000\u0000ૣ\u0ae4\u0007\u001c\u0000\u0000\u0ae4ʎ\u0001\u0000\u0000\u0000\u0ae5૦\u0007\u001d\u0000\u0000૦ʐ\u0001\u0000\u0000\u0000૧૨\u0007\u001e\u0000\u0000૨ʒ\u0001\u0000\u0000\u0000૩૪\u0007\u001f\u0000\u0000૪ʔ\u0001\u0000\u0000\u0000૫૬\u0007 \u0000\u0000૬ʖ\u0001\u0000\u0000\u0000૭૮\u0007!\u0000\u0000૮ʘ\u0001\u0000\u0000\u0000૯૰\u0007\"\u0000" + "\u0000૰ʚ\u0001\u0000\u0000\u0000૱\u0af2\u0007#\u0000\u0000\u0af2ʜ\u0001\u0000\u0000\u0000\u0af3\u0af4\u0007$\u0000\u0000\u0af4ʞ\u0001\u0000\u0000\u0000\u0af5\u0af6\u0007%\u0000\u0000\u0af6ʠ\u0001\u0000\u0000\u0000\u0af7\u0af8\u0007&\u0000\u0000\u0af8ʢ\u0001\u0000\u0000\u0000ૹૺ\t\u0000\u0000\u0000ૺʤ\u0001\u0000\u0000\u0000\u001f\u0000ʯʺˆˎ˒˕˜ˠˣ˩ˮ˰˶˼̵̷̜̥̫̭̀̄̉̎̒̓ͅ\u0ab1ષૃ\u0001\u0000\u0001\u0000", "Unexpected query part: \'", "\' \'", "\'//\'", "a float value", "an integer value", "a hexadecimal integer value", -"an octal integer value", "\'/*\'", "a string value", "\'allShortestPaths\'", "\'shortestPath\'", "\'LIMIT\'", "\'SKIP\'", "statements", "statement", "regularQuery", "singleQuery", "useClause", "graphReference", "finishClause", "returnClause", "returnBody", "returnItem", "returnItems", "orderItem", "ascToken", "descToken", "orderBy", "skip", "limit", "whereClause", "withClause", "createClause", "insertClause", "setClause", "setItem", "removeClause", "removeItem", "deleteClause", "matchClause", "mergeClause", -"mergeAction", "unwindClause", "callClause", "procedureName", "procedureArgument", "procedureResultItem", "loadCSVClause", "foreachClause", "subqueryClause", "subqueryScope", "subqueryInTransactionsParameters", "subqueryInTransactionsBatchParameters", "subqueryInTransactionsErrorParameters", "subqueryInTransactionsReportParameters", "orderBySkipLimitClause", "patternList", "insertPatternList", "pattern", "insertPattern", "quantifier", "anonymousPattern", "shortestPathPattern", "patternElement", "groupToken", -"pathToken", "pathPatternNonEmpty", "nodePattern", "insertNodePattern", "parenthesizedPath", "nodeLabels", "nodeLabelsIs", "dynamicExpression", "dynamicAnyAllExpression", "dynamicLabelType", "labelType", "labelOrRelType", "relationshipPattern", "insertRelationshipPattern", "leftArrow", "arrowLine", "rightArrow", "pathLength", "labelExpression", "labelExpression4", "labelExpression4Is", "labelExpression3", "labelExpression3Is", "labelExpression2", "labelExpression2Is", "labelExpression1", "labelExpression1Is", -"insertNodeLabelExpression", "insertRelationshipLabelExpression", "expression11", "expression10", "expression9", "expression8", "expression7", "comparisonExpression6", "expression6", "expression5", "expression4", "expression3", "expression2", "postFix", "dynamicProperty", "propertyExpression", "dynamicPropertyExpression", "expression1", "literal", "caseExpression", "caseAlternative", "extendedCaseExpression", "extendedCaseAlternative", "extendedWhen", "listComprehension", "patternComprehension", "reduceExpression", -"listItemsPredicate", "normalizeFunction", "trimFunction", "patternExpression", "shortestPathExpression", "parenthesizedExpression", "mapProjection", "mapProjectionElement", "countStar", "existsExpression", "countExpression", "collectExpression", "numberLiteral", "signedIntegerLiteral", "listLiteral", "propertyKeyName", "parameter", "parameterName", "functionInvocation", "functionArgument", "functionName", "nonEmptyNameList", "typePart", "typeName", "typeNullability", "typeListSuffix", "createCommand", "dropCommand", -"showCommand", "showCommandYield", "yieldItem", "yieldSkip", "yieldLimit", "yieldClause", "commandOptions", "terminateCommand", "composableCommandClauses", "composableShowCommandClauses", "showIndexCommand", "showIndexType", "showIndexesEnd", "showConstraintCommand", "showConstraintEntity", "constraintExistType", "showConstraintsEnd", "showProcedures", "showFunctions", "functionToken", "executableBy", "showFunctionsType", "showTransactions", "terminateTransactions", "showSettings", "settingToken", "namesAndClauses", -"stringsOrExpression", "commandNodePattern", "commandRelPattern", "createConstraint", "constraintType", "dropConstraint", "createIndex", "createIndex_", "createFulltextIndex", "fulltextNodePattern", "fulltextRelPattern", "createLookupIndex", "lookupIndexNodePattern", "lookupIndexRelPattern", "dropIndex", "propertyList", "enclosedPropertyList", "alterCommand", "renameCommand", "grantCommand", "denyCommand", "revokeCommand", "userNames", "roleNames", "roleToken", "enableServerCommand", "alterServer", "renameServer", -"dropServer", "showServers", "allocationCommand", "deallocateDatabaseFromServers", "reallocateDatabases", "createRole", "dropRole", "renameRole", "showRoles", "grantRole", "revokeRole", "createUser", "dropUser", "renameUser", "alterCurrentUser", "alterUser", "removeNamedProvider", "password", "passwordOnly", "passwordExpression", "userStatus", "homeDatabase", "setAuthClause", "userAuthAttribute", "showUsers", "showCurrentUser", "showSupportedPrivileges", "showPrivileges", "showRolePrivileges", "showUserPrivileges", -"privilegeAsCommand", "privilegeToken", "privilege", "allPrivilege", "allPrivilegeType", "allPrivilegeTarget", "createPrivilege", "createPrivilegeForDatabase", "createNodePrivilegeToken", "createRelPrivilegeToken", "createPropertyPrivilegeToken", "actionForDBMS", "dropPrivilege", "loadPrivilege", "showPrivilege", "setPrivilege", "passwordToken", "removePrivilege", "writePrivilege", "databasePrivilege", "dbmsPrivilege", "dbmsPrivilegeExecute", "adminToken", "procedureToken", "indexToken", "constraintToken", "transactionToken", -"userQualifier", "executeFunctionQualifier", "executeProcedureQualifier", "settingQualifier", "globs", "glob", "globRecursive", "globPart", "qualifiedGraphPrivilegesWithProperty", "qualifiedGraphPrivileges", "labelsResource", "propertiesResource", "nonEmptyStringList", "graphQualifier", "graphQualifierToken", "relToken", "elementToken", "nodeToken", "databaseScope", "graphScope", "createCompositeDatabase", "createDatabase", "primaryTopology", "primaryToken", "secondaryTopology", "secondaryToken", "dropDatabase", -"aliasAction", "alterDatabase", "alterDatabaseAccess", "alterDatabaseTopology", "alterDatabaseOption", "startDatabase", "stopDatabase", "waitClause", "secondsToken", "showDatabase", "aliasName", "databaseName", "createAlias", "dropAlias", "alterAlias", "alterAliasTarget", "alterAliasUser", "alterAliasPassword", "alterAliasDriver", "alterAliasProperties", "showAliases", "symbolicNameOrStringParameter", "commandNameExpression", "symbolicNameOrStringParameterList", "symbolicAliasNameList", "symbolicAliasNameOrParameter", -"symbolicAliasName", "stringListLiteral", "stringList", "stringLiteral", "stringOrParameterExpression", "stringOrParameter", "mapOrParameter", "map", "symbolicNameString", "escapedSymbolicNameString", "unescapedSymbolicNameString", "symbolicLabelNameString", "unescapedLabelSymbolicNameString", "unescapedLabelSymbolicNameString_", "endOfFile", "\u0004\u0001ij\u0e3e\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002\u0008\u0007\u0008\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002\u000c\u0007\u000c\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~" +"an octal integer value", "an identifier", "\'/*\'", "a string value", "\'allShortestPaths\'", "\'shortestPath\'", "\'LIMIT\'", "\'SKIP\'", "statements", "statement", "regularQuery", "singleQuery", "useClause", "graphReference", "finishClause", "returnClause", "returnBody", "returnItem", "returnItems", "orderItem", "ascToken", "descToken", "orderBy", "skip", "limit", "whereClause", "withClause", "createClause", "insertClause", "setClause", "setItem", "removeClause", "removeItem", "deleteClause", "matchClause", +"mergeClause", "mergeAction", "unwindClause", "callClause", "procedureName", "procedureArgument", "procedureResultItem", "loadCSVClause", "foreachClause", "subqueryClause", "subqueryScope", "subqueryInTransactionsParameters", "subqueryInTransactionsBatchParameters", "subqueryInTransactionsErrorParameters", "subqueryInTransactionsReportParameters", "orderBySkipLimitClause", "patternList", "insertPatternList", "pattern", "insertPattern", "quantifier", "anonymousPattern", "shortestPathPattern", "patternElement", +"groupToken", "pathToken", "pathPatternNonEmpty", "nodePattern", "insertNodePattern", "parenthesizedPath", "nodeLabels", "nodeLabelsIs", "dynamicExpression", "dynamicAnyAllExpression", "dynamicLabelType", "labelType", "labelOrRelType", "properties", "relationshipPattern", "insertRelationshipPattern", "leftArrow", "arrowLine", "rightArrow", "pathLength", "labelExpression", "labelExpression4", "labelExpression4Is", "labelExpression3", "labelExpression3Is", "labelExpression2", "labelExpression2Is", "labelExpression1", +"labelExpression1Is", "insertNodeLabelExpression", "insertRelationshipLabelExpression", "expression11", "expression10", "expression9", "expression8", "expression7", "comparisonExpression6", "normalForm", "expression6", "expression5", "expression4", "expression3", "expression2", "postFix", "property", "dynamicProperty", "propertyExpression", "dynamicPropertyExpression", "expression1", "literal", "caseExpression", "caseAlternative", "extendedCaseExpression", "extendedCaseAlternative", "extendedWhen", "listComprehension", +"patternComprehension", "reduceExpression", "listItemsPredicate", "normalizeFunction", "trimFunction", "patternExpression", "shortestPathExpression", "parenthesizedExpression", "mapProjection", "mapProjectionElement", "countStar", "existsExpression", "countExpression", "collectExpression", "numberLiteral", "signedIntegerLiteral", "listLiteral", "propertyKeyName", "parameter", "parameterName", "functionInvocation", "functionArgument", "functionName", "nonEmptyNameList", "type", "typePart", "typeName", "typeNullability", +"typeListSuffix", "command", "createCommand", "dropCommand", "showCommand", "showCommandYield", "yieldItem", "yieldSkip", "yieldLimit", "yieldClause", "commandOptions", "terminateCommand", "composableCommandClauses", "composableShowCommandClauses", "showIndexCommand", "showIndexType", "showIndexesEnd", "showConstraintCommand", "showConstraintEntity", "constraintExistType", "showConstraintsEnd", "showProcedures", "showFunctions", "functionToken", "executableBy", "showFunctionsType", "showTransactions", "terminateTransactions", +"showSettings", "settingToken", "namesAndClauses", "stringsOrExpression", "commandNodePattern", "commandRelPattern", "createConstraint", "constraintType", "dropConstraint", "createIndex", "createIndex_", "createFulltextIndex", "fulltextNodePattern", "fulltextRelPattern", "createLookupIndex", "lookupIndexNodePattern", "lookupIndexRelPattern", "dropIndex", "propertyList", "enclosedPropertyList", "alterCommand", "renameCommand", "grantCommand", "denyCommand", "revokeCommand", "userNames", "roleNames", "roleToken", +"enableServerCommand", "alterServer", "renameServer", "dropServer", "showServers", "allocationCommand", "deallocateDatabaseFromServers", "reallocateDatabases", "createRole", "dropRole", "renameRole", "showRoles", "grantRole", "revokeRole", "createUser", "dropUser", "renameUser", "alterCurrentUser", "alterUser", "removeNamedProvider", "password", "passwordOnly", "passwordExpression", "passwordChangeRequired", "userStatus", "homeDatabase", "setAuthClause", "userAuthAttribute", "showUsers", "showCurrentUser", "showSupportedPrivileges", +"showPrivileges", "showRolePrivileges", "showUserPrivileges", "privilegeAsCommand", "privilegeToken", "privilege", "allPrivilege", "allPrivilegeType", "allPrivilegeTarget", "createPrivilege", "createPrivilegeForDatabase", "createNodePrivilegeToken", "createRelPrivilegeToken", "createPropertyPrivilegeToken", "actionForDBMS", "dropPrivilege", "loadPrivilege", "showPrivilege", "setPrivilege", "passwordToken", "removePrivilege", "writePrivilege", "databasePrivilege", "dbmsPrivilege", "dbmsPrivilegeExecute", "adminToken", +"procedureToken", "indexToken", "constraintToken", "transactionToken", "userQualifier", "executeFunctionQualifier", "executeProcedureQualifier", "settingQualifier", "globs", "glob", "globRecursive", "globPart", "qualifiedGraphPrivilegesWithProperty", "qualifiedGraphPrivileges", "labelsResource", "propertiesResource", "nonEmptyStringList", "graphQualifier", "graphQualifierToken", "relToken", "elementToken", "nodeToken", "databaseScope", "graphScope", "createCompositeDatabase", "createDatabase", "primaryTopology", +"primaryToken", "secondaryTopology", "secondaryToken", "dropDatabase", "aliasAction", "alterDatabase", "alterDatabaseAccess", "alterDatabaseTopology", "alterDatabaseOption", "startDatabase", "stopDatabase", "waitClause", "secondsToken", "showDatabase", "aliasName", "aliasTargetName", "databaseName", "createAlias", "dropAlias", "alterAlias", "alterAliasTarget", "alterAliasUser", "alterAliasPassword", "alterAliasDriver", "alterAliasProperties", "showAliases", "symbolicNameOrStringParameter", "commandNameExpression", +"symbolicNameOrStringParameterList", "symbolicAliasNameList", "symbolicAliasNameOrParameter", "symbolicAliasName", "stringListLiteral", "stringList", "stringLiteral", "stringOrParameterExpression", "stringOrParameter", "uIntOrIntParameter", "mapOrParameter", "map", "symbolicNameString", "escapedSymbolicNameString", "unescapedSymbolicNameString", "symbolicLabelNameString", "unescapedLabelSymbolicNameString", "unescapedLabelSymbolicNameString_", "endOfFile", "\u0004\u0001ij๙\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002\u0008\u0007\u0008\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002\u000c\u0007\u000c\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~" + "\u0002\u0007\u0002€\u0007€\u0002\u0007\u0002‚\u0007‚\u0002ƒ\u0007ƒ\u0002„\u0007„\u0002…\u0007…\u0002†\u0007†\u0002‡\u0007‡\u0002ˆ\u0007ˆ\u0002‰\u0007‰\u0002Š\u0007Š\u0002‹\u0007‹\u0002Œ\u0007Œ\u0002\u0007\u0002Ž\u0007Ž\u0002\u0007\u0002\u0007\u0002‘\u0007‘\u0002’\u0007’\u0002“\u0007“\u0002”\u0007”\u0002•\u0007•\u0002–\u0007–\u0002—\u0007—\u0002˜\u0007˜\u0002™\u0007™\u0002š\u0007š\u0002›\u0007›\u0002œ\u0007œ\u0002\u0007\u0002ž\u0007ž\u0002Ÿ\u0007Ÿ\u0002 \u0007 \u0002¡\u0007¡\u0002¢\u0007¢\u0002£\u0007£\u0002¤\u0007¤\u0002¥\u0007¥\u0002¦\u0007¦\u0002§\u0007§\u0002¨\u0007¨\u0002©\u0007©\u0002ª\u0007ª\u0002«\u0007«\u0002¬\u0007¬\u0002­\u0007­\u0002®\u0007®\u0002¯\u0007¯\u0002°\u0007°\u0002±\u0007±\u0002²\u0007²\u0002³\u0007³\u0002´\u0007´\u0002µ\u0007µ\u0002¶\u0007¶\u0002·\u0007·\u0002¸\u0007¸\u0002¹\u0007¹\u0002º\u0007º\u0002»\u0007»\u0002¼\u0007¼\u0002½\u0007½\u0002¾\u0007¾\u0002¿\u0007¿\u0002À\u0007À\u0002Á\u0007Á\u0002Â\u0007Â\u0002Ã\u0007Ã\u0002Ä\u0007Ä\u0002Å\u0007Å\u0002Æ\u0007Æ\u0002Ç\u0007Ç\u0002È\u0007È\u0002É\u0007É\u0002Ê\u0007Ê\u0002Ë\u0007Ë\u0002Ì\u0007Ì\u0002Í\u0007Í\u0002Î\u0007Î\u0002Ï\u0007Ï\u0002Ð\u0007Ð\u0002Ñ\u0007Ñ\u0002Ò\u0007Ò\u0002Ó\u0007Ó\u0002Ô\u0007Ô\u0002Õ\u0007Õ\u0002Ö\u0007Ö\u0002×\u0007×\u0002Ø\u0007Ø\u0002Ù\u0007Ù\u0002Ú\u0007Ú\u0002Û\u0007Û\u0002Ü\u0007Ü\u0002Ý\u0007Ý\u0002Þ\u0007Þ\u0002ß\u0007ß\u0002à\u0007à\u0002á\u0007á\u0002â\u0007â\u0002ã\u0007ã\u0002ä\u0007ä\u0002å\u0007å\u0002æ\u0007æ\u0002ç\u0007ç\u0002è\u0007è\u0002é\u0007é\u0002ê\u0007ê\u0002ë\u0007ë\u0002ì\u0007ì\u0002í\u0007í\u0002î\u0007î\u0002ï\u0007ï\u0002ð\u0007ð\u0002ñ\u0007ñ\u0002ò\u0007ò\u0002ó\u0007ó\u0002ô\u0007ô\u0002õ\u0007õ\u0002ö\u0007ö\u0002÷\u0007÷\u0002ø\u0007ø\u0002ù\u0007ù\u0002ú\u0007ú\u0002û\u0007û\u0002ü\u0007ü\u0002ý\u0007ý\u0002þ\u0007þ" -+ "\u0002ÿ\u0007ÿ\u0002Ā\u0007Ā\u0002ā\u0007ā\u0002Ă\u0007Ă\u0002ă\u0007ă\u0002Ą\u0007Ą\u0002ą\u0007ą\u0002Ć\u0007Ć\u0002ć\u0007ć\u0002Ĉ\u0007Ĉ\u0002ĉ\u0007ĉ\u0002Ċ\u0007Ċ\u0002ċ\u0007ċ\u0002Č\u0007Č\u0002č\u0007č\u0002Ď\u0007Ď\u0002ď\u0007ď\u0002Đ\u0007Đ\u0002đ\u0007đ\u0002Ē\u0007Ē\u0002ē\u0007ē\u0002Ĕ\u0007Ĕ\u0002ĕ\u0007ĕ\u0002Ė\u0007Ė\u0002ė\u0007ė\u0002Ę\u0007Ę\u0002ę\u0007ę\u0002Ě\u0007Ě\u0002ě\u0007ě\u0002Ĝ\u0007Ĝ\u0002ĝ\u0007ĝ\u0002Ğ\u0007Ğ\u0002ğ\u0007ğ\u0002Ġ\u0007Ġ\u0002ġ\u0007ġ\u0002Ģ\u0007Ģ\u0002ģ\u0007ģ\u0002Ĥ\u0007Ĥ\u0002ĥ\u0007ĥ\u0002Ħ\u0007Ħ\u0002ħ\u0007ħ\u0002Ĩ\u0007Ĩ\u0002ĩ\u0007ĩ\u0002Ī\u0007Ī\u0002ī\u0007ī\u0002Ĭ\u0007Ĭ\u0002ĭ\u0007ĭ\u0002Į\u0007Į\u0002į\u0007į\u0002İ\u0007İ\u0002ı\u0007ı\u0002IJ\u0007IJ\u0002ij\u0007ij\u0002Ĵ\u0007Ĵ\u0002ĵ\u0007ĵ\u0002Ķ\u0007Ķ\u0002ķ\u0007ķ\u0002ĸ\u0007ĸ\u0002Ĺ\u0007Ĺ\u0002ĺ\u0007ĺ\u0002Ļ\u0007Ļ\u0002ļ\u0007ļ\u0002Ľ\u0007Ľ\u0002ľ\u0007ľ\u0002Ŀ\u0007Ŀ\u0002ŀ\u0007ŀ\u0002Ł\u0007Ł\u0002ł\u0007ł\u0002Ń\u0007Ń\u0002ń\u0007ń\u0002Ņ\u0007Ņ\u0002ņ\u0007ņ\u0002Ň\u0007Ň\u0001\u0000\u0001\u0000\u0001\u0000\u0005\u0000ʔ\u0008\u0000\n\u0000\u000c\u0000ʗ\t\u0000\u0001\u0000\u0003\u0000ʚ\u0008\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0003\u0001ʠ\u0008\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002ʥ\u0008\u0002\u0001\u0002\u0005\u0002ʨ\u0008\u0002\n\u0002\u000c\u0002ʫ\t\u0002\u0001\u0003\u0004\u0003ʮ\u0008\u0003\u000b\u0003\u000c\u0003ʯ\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0003\u0004˃\u0008\u0004\u0001\u0005\u0001\u0005\u0003\u0005ˇ\u0008\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006ˑ\u0008\u0006\u0001\u0007\u0001\u0007\u0001\u0008\u0001\u0008\u0001\u0008\u0001\t\u0003\t˙\u0008\t\u0001\t\u0001\t\u0003\t˝\u0008\t\u0001\t\u0003\tˠ\u0008\t\u0001\t\u0003\tˣ\u0008\t\u0001\n\u0001\n\u0001\n\u0003\n˨\u0008\n\u0001\u000b\u0001\u000b\u0003\u000bˬ\u0008\u000b\u0001\u000b\u0001\u000b\u0005\u000b˰\u0008\u000b\n\u000b\u000c\u000b˳\t\u000b" -+ "\u0001\u000c\u0001\u000c\u0001\u000c\u0003\u000c˸\u0008\u000c\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0005\u000f̃\u0008\u000f\n\u000f\u000c\u000f̆\t\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0003\u0013̔\u0008\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016̠\u0008\u0016\n\u0016\u000c\u0016̣\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0003\u0017̻\u0008\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018́\u0008\u0018\n\u0018\u000c\u0018̈́\t\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0003\u0019͎\u0008\u0019\u0001\u001a\u0003\u001a͑\u0008\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0005\u001a͗\u0008\u001a\n\u001a\u000c\u001a͚\t\u001a\u0001\u001b\u0003\u001b͝\u0008\u001b\u0001\u001b\u0001\u001b\u0003\u001b͡\u0008\u001b\u0001\u001b\u0001\u001b\u0005\u001bͥ\u0008\u001b\n\u001b\u000c\u001bͨ\t\u001b\u0001\u001b\u0003\u001bͫ\u0008\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001cͰ\u0008\u001c\u0001\u001c\u0003\u001cͳ\u0008\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u0378\u0008\u001c\u0001\u001c\u0003\u001cͻ\u0008\u001c\u0003\u001cͽ\u0008\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001d·\u0008\u001d\u0001\u001d\u0003\u001dΊ\u0008\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001dΙ\u0008\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001eΞ\u0008\u001e\n\u001e\u000c\u001eΡ\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0001 \u0001 \u0001!\u0003!έ\u0008!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0005!ε\u0008!\n!\u000c!θ\t!\u0003!κ\u0008!\u0001!\u0003!ν\u0008!\u0001!\u0001!\u0001!\u0001!\u0001!\u0005!τ\u0008!\n!\u000c!χ\t!\u0001!\u0003!ϊ\u0008!\u0003!ό\u0008!\u0003!ώ\u0008!\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001$\u0001$\u0001$\u0003$Ϙ\u0008$\u0001%\u0001%\u0001%\u0001%\u0003%Ϟ\u0008%\u0001%" -+ "\u0001%\u0001%\u0001%\u0001%\u0001%\u0003%Ϧ\u0008%\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0004&ϯ\u0008&\u000b&\u000c&ϰ\u0001&\u0001&\u0001\'\u0003\'϶\u0008\'\u0001\'\u0001\'\u0003\'Ϻ\u0008\'\u0001\'\u0001\'\u0001\'\u0001\'\u0003\'Ѐ\u0008\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(Ї\u0008(\n(\u000c(Њ\t(\u0003(Ќ\u0008(\u0001(\u0001(\u0001)\u0001)\u0003)В\u0008)\u0001)\u0003)Е\u0008)\u0001)\u0001)\u0001)\u0001)\u0005)Л\u0008)\n)\u000c)О\t)\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0003-Я\u0008-\u0001-\u0003-в\u0008-\u0001-\u0001-\u0003-ж\u0008-\u0001-\u0003-й\u0008-\u0001.\u0001.\u0001.\u0005.о\u0008.\n.\u000c.с\t.\u0001/\u0001/\u0001/\u0005/ц\u0008/\n/\u000c/щ\t/\u00010\u00010\u00010\u00030ю\u00080\u00010\u00030ё\u00080\u00010\u00010\u00011\u00011\u00011\u00031ј\u00081\u00011\u00011\u00011\u00011\u00051ў\u00081\n1\u000c1ѡ\t1\u00012\u00012\u00012\u00012\u00012\u00032Ѩ\u00082\u00012\u00012\u00032Ѭ\u00082\u00012\u00012\u00012\u00032ѱ\u00082\u00013\u00013\u00033ѵ\u00083\u00014\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u00035ѿ\u00085\u00015\u00015\u00055҃\u00085\n5\u000c5҆\t5\u00015\u00045҉\u00085\u000b5\u000c5Ҋ\u00016\u00016\u00016\u00036Ґ\u00086\u00016\u00016\u00016\u00036ҕ\u00086\u00016\u00016\u00036ҙ\u00086\u00016\u00036Ҝ\u00086\u00016\u00016\u00036Ҡ\u00086\u00016\u00016\u00036Ҥ\u00086\u00016\u00036ҧ\u00086\u00016\u00016\u00016\u00016\u00036ҭ\u00086\u00036ү\u00086\u00017\u00017\u00018\u00018\u00019\u00019\u00019\u00019\u00049ҹ\u00089\u000b9\u000c9Һ\u0001:\u0001:\u0003:ҿ\u0008:\u0001:\u0003:ӂ\u0008:\u0001:\u0003:Ӆ\u0008:\u0001:\u0001" -+ ":\u0003:Ӊ\u0008:\u0001:\u0001:\u0001;\u0001;\u0003;ӏ\u0008;\u0001;\u0003;Ӓ\u0008;\u0001;\u0003;ӕ\u0008;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001<\u0003<ӝ\u0008<\u0001<\u0001<\u0003<ӡ\u0008<\u0001=\u0001=\u0004=ӥ\u0008=\u000b=\u000c=Ӧ\u0001>\u0001>\u0001>\u0003>Ӭ\u0008>\u0001>\u0001>\u0005>Ӱ\u0008>\n>\u000c>ӳ\t>\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0003@Ӽ\u0008@\u0001@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001E\u0001E\u0003EԐ\u0008E\u0001F\u0003Fԓ\u0008F\u0001F\u0001F\u0001F\u0003FԘ\u0008F\u0001F\u0003Fԛ\u0008F\u0001F\u0003FԞ\u0008F\u0001F\u0003Fԡ\u0008F\u0001F\u0001F\u0003Fԥ\u0008F\u0001F\u0003FԨ\u0008F\u0001F\u0001F\u0003FԬ\u0008F\u0001G\u0003Gԯ\u0008G\u0001G\u0001G\u0001G\u0003GԴ\u0008G\u0001G\u0001G\u0003GԸ\u0008G\u0001G\u0001G\u0001G\u0003GԽ\u0008G\u0001H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0003KՇ\u0008K\u0001K\u0001K\u0003KՋ\u0008K\u0001K\u0003KՎ\u0008K\u0001L\u0001L\u0001L\u0001L\u0003LՔ\u0008L\u0001M\u0001M\u0001M\u0003Mՙ\u0008M\u0001M\u0005M՜\u0008M\nM\u000cM՟\tM\u0001N\u0001N\u0001N\u0003Nդ\u0008N\u0001N\u0005Nէ\u0008N\nN\u000cNժ\tN\u0001O\u0001O\u0001O\u0005Oկ\u0008O\nO\u000cOղ\tO\u0001P\u0001P\u0001P\u0005Pշ\u0008P\nP\u000cPպ\tP\u0001Q\u0005Qս\u0008Q\nQ\u000cQր\tQ\u0001Q\u0001Q\u0001R\u0005Rօ\u0008R\nR\u000cRֈ\tR\u0001R\u0001R\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0003S֓\u0008S\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0003T֜\u0008T\u0001U\u0001U\u0001U\u0001U\u0005U֢\u0008U\nU\u000cU֥\tU\u0001V\u0001V\u0001V\u0001W\u0001W\u0001W\u0005W֭\u0008W\nW\u000c" -+ "Wְ\tW\u0001X\u0001X\u0001X\u0005Xֵ\u0008X\nX\u000cXָ\tX\u0001Y\u0001Y\u0001Y\u0005Yֽ\u0008Y\nY\u000cY׀\tY\u0001Z\u0005Z׃\u0008Z\nZ\u000cZ׆\tZ\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0005[\u05cd\u0008[\n[\u000c[א\t[\u0001\\\u0001\\\u0003\\ה\u0008\\\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0003]ם\u0008]\u0001]\u0001]\u0001]\u0003]ע\u0008]\u0001]\u0001]\u0001]\u0003]ק\u0008]\u0001]\u0001]\u0003]\u05eb\u0008]\u0001]\u0001]\u0001]\u0003]װ\u0008]\u0001]\u0003]׳\u0008]\u0001]\u0003]\u05f6\u0008]\u0001^\u0001^\u0001_\u0001_\u0001_\u0005_\u05fd\u0008_\n_\u000c_؀\t_\u0001`\u0001`\u0001`\u0005`؅\u0008`\n`\u000c`؈\t`\u0001a\u0001a\u0001a\u0005a؍\u0008a\na\u000caؐ\ta\u0001b\u0001b\u0001b\u0003bؕ\u0008b\u0001c\u0001c\u0005cؙ\u0008c\nc\u000cc؜\tc\u0001d\u0001d\u0001d\u0001d\u0001d\u0001d\u0001d\u0001d\u0003dئ\u0008d\u0001d\u0001d\u0003dت\u0008d\u0001d\u0003dح\u0008d\u0001e\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0004gظ\u0008g\u000bg\u000cgع\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0003iٔ\u0008i\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0003jٟ\u0008j\u0001k\u0001k\u0004k٣\u0008k\u000bk\u000ck٤\u0001k\u0001k\u0003k٩\u0008k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001l\u0001l\u0001m\u0001m\u0001m\u0004mٵ\u0008m\u000bm\u000cmٶ\u0001m\u0001m\u0003mٻ\u0008m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001n\u0005nڃ\u0008n\nn\u000cnچ\tn\u0001n\u0001n\u0001n\u0001o\u0001o\u0001o\u0001o\u0001o\u0003oڐ\u0008o\u0001o\u0001o\u0001o\u0003oڕ\u0008o\u0001o\u0001o\u0001o\u0003o" -+ "ښ\u0008o\u0001o\u0001o\u0003oڞ\u0008o\u0001o\u0001o\u0001o\u0003oڣ\u0008o\u0001o\u0003oڦ\u0008o\u0001o\u0001o\u0001o\u0001o\u0003oڬ\u0008o\u0001p\u0001p\u0001p\u0001p\u0001p\u0001p\u0003pڴ\u0008p\u0001p\u0001p\u0001p\u0001p\u0003pں\u0008p\u0003pڼ\u0008p\u0001p\u0001p\u0001q\u0001q\u0001q\u0001q\u0003qۄ\u0008q\u0001q\u0001q\u0001q\u0003qۉ\u0008q\u0001q\u0001q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0003sۣ\u0008s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001t\u0001t\u0003t۬\u0008t\u0001t\u0001t\u0001u\u0001u\u0001u\u0003u۳\u0008u\u0001u\u0003u۶\u0008u\u0001u\u0003u۹\u0008u\u0001u\u0001u\u0001u\u0001v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001x\u0001x\u0001y\u0001y\u0001y\u0001y\u0001y\u0005y܋\u0008y\ny\u000cy\u070e\ty\u0003yܐ\u0008y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001z\u0001z\u0001z\u0001z\u0001z\u0003zܜ\u0008z\u0001{\u0001{\u0001{\u0001{\u0001{\u0001|\u0001|\u0001|\u0001|\u0003|ܧ\u0008|\u0001|\u0001|\u0003|ܫ\u0008|\u0003|ܭ\u0008|\u0001|\u0001|\u0001}\u0001}\u0001}\u0001}\u0003}ܵ\u0008}\u0001}\u0001}\u0003}ܹ\u0008}\u0003}ܻ\u0008}\u0001}\u0001}\u0001~\u0001~\u0001~\u0001~\u0001~\u0001\u0003݅\u0008\u0001\u0001\u0001€\u0003€݊\u0008€\u0001€\u0001€\u0001\u0001\u0001\u0001\u0005ݒ\u0008\n\u000cݕ\t\u0003ݗ\u0008\u0001\u0001\u0001‚\u0001‚\u0001ƒ\u0001ƒ\u0001ƒ\u0001„\u0001„\u0001„\u0001„\u0003„ݤ\u0008„\u0001…\u0001…\u0001…\u0003…ݩ\u0008…\u0001…\u0001…\u0001…\u0005…ݮ\u0008…\n…\u000c…ݱ\t…\u0003…ݳ\u0008…\u0001…\u0001…\u0001†\u0001†\u0001‡\u0001‡\u0001‡\u0001ˆ\u0001ˆ\u0001ˆ\u0005ˆݿ\u0008ˆ\nˆ\u000cˆނ\tˆ\u0001‰\u0001‰\u0001Š\u0001Š\u0001" -+ "Š\u0005Šމ\u0008Š\nŠ\u000cŠތ\tŠ\u0001‹\u0001‹\u0001‹\u0005‹ޑ\u0008‹\n‹\u000c‹ޔ\t‹\u0001Œ\u0001Œ\u0003Œޘ\u0008Œ\u0001Œ\u0005Œޛ\u0008Œ\nŒ\u000cŒޞ\tŒ\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003ި\u0008\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003\u07b6\u0008\u0001\u0001\u0001\u0001\u0001\u0003\u07bd\u0008\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003ߘ\u0008\u0001\u0001\u0001\u0001\u0001\u0003ߟ\u0008\u0003ߡ\u0008\u0001Ž\u0001Ž\u0001Ž\u0003Žߦ\u0008Ž\u0001\u0001\u0003ߪ\u0008\u0001\u0003߭\u0008\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003\u07fc\u0008\u0001‘\u0001‘\u0001‘\u0003‘ࠁ\u0008‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0003‘ࠊ\u0008‘\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0003’ࠔ\u0008’\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0003“ࠧ\u0008“\u0001”\u0001”\u0003”ࠫ\u0008”\u0001”\u0003”\u082e\u0008”\u0001•\u0001•\u0001•\u0003•࠳\u0008•\u0001–\u0001–\u0001–\u0001—\u0001—\u0001—\u0001˜\u0001˜\u0001˜\u0001˜\u0001˜\u0005˜ࡀ\u0008˜\n˜\u000c˜ࡃ\t˜\u0003˜ࡅ\u0008˜\u0001˜\u0003˜ࡈ\u0008˜\u0001˜\u0003˜ࡋ\u0008˜\u0001˜\u0003˜ࡎ\u0008˜\u0001˜\u0003˜ࡑ\u0008˜\u0001™\u0001™\u0001™\u0001š\u0001š\u0001š\u0001›\u0001›\u0003›࡛\u0008›\u0001œ\u0001œ\u0001œ\u0001œ\u0001œ\u0001œ\u0001œ\u0003œࡤ\u0008œ\u0001\u0003ࡧ\u0008\u0001\u0001\u0001ž\u0001ž\u0001Ÿ\u0001Ÿ\u0003Ÿ\u086f\u0008Ÿ\u0001Ÿ\u0003Ÿ\u0872\u0008Ÿ\u0001 \u0003 \u0875" -+ "\u0008 \u0001 \u0001 \u0003 \u0879\u0008 \u0001 \u0001 \u0001 \u0001 \u0003 \u087f\u0008 \u0001 \u0001 \u0001 \u0003 \u0884\u0008 \u0001 \u0001 \u0001 \u0001 \u0003 \u088a\u0008 \u0001 \u0003 \u088d\u0008 \u0001 \u0001 \u0003 \u0891\u0008 \u0001¡\u0001¡\u0003¡\u0895\u0008¡\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0003¢\u089d\u0008¢\u0001£\u0001£\u0003£ࢡ\u0008£\u0001£\u0003£ࢤ\u0008£\u0001¤\u0001¤\u0003¤ࢨ\u0008¤\u0001¤\u0003¤ࢫ\u0008¤\u0001¤\u0003¤ࢮ\u0008¤\u0001¥\u0003¥ࢱ\u0008¥\u0001¥\u0001¥\u0003¥\u08b5\u0008¥\u0001¥\u0003¥ࢸ\u0008¥\u0001¥\u0003¥ࢻ\u0008¥\u0001¦\u0001¦\u0001§\u0001§\u0001§\u0001§\u0001§\u0003§ࣄ\u0008§\u0003§ࣆ\u0008§\u0001¨\u0001¨\u0001¨\u0001¨\u0001¨\u0003¨\u08cd\u0008¨\u0001©\u0001©\u0001©\u0001ª\u0001ª\u0001ª\u0001«\u0001«\u0001«\u0001¬\u0001¬\u0001­\u0003­ࣛ\u0008­\u0001­\u0001­\u0003­ࣟ\u0008­\u0003­࣡\u0008­\u0001­\u0003­ࣤ\u0008­\u0001®\u0001®\u0003®ࣨ\u0008®\u0001¯\u0001¯\u0001¯\u0001¯\u0001¯\u0001°\u0001°\u0001°\u0003°ࣲ\u0008°\u0001°\u0001°\u0001°\u0001°\u0001°\u0001°\u0001°\u0003°ࣻ\u0008°\u0001°\u0001°\u0001°\u0001±\u0001±\u0003±ं\u0008±\u0001±\u0001±\u0001±\u0003±इ\u0008±\u0001±\u0001±\u0001±\u0003±ऌ\u0008±\u0001±\u0001±\u0003±ऐ\u0008±\u0001²\u0001²\u0001²\u0001²\u0001²\u0003²ग\u0008²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0003²ट\u0008²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0003²ध\u0008²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0003²ऱ\u0008²\u0001³\u0001³\u0001³\u0001³\u0003³ष\u0008³\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0003´्\u0008´\u0001µ\u0003µॐ\u0008µ\u0001µ\u0001µ\u0001µ\u0003µॕ\u0008µ\u0001µ\u0001µ\u0001µ\u0003µग़\u0008µ\u0001µ\u0001µ\u0001µ\u0003µय़\u0008µ\u0001" -+ "¶\u0003¶ॢ\u0008¶\u0001¶\u0001¶\u0001¶\u0003¶१\u0008¶\u0001¶\u0001¶\u0001¶\u0003¶६\u0008¶\u0001¶\u0001¶\u0001¶\u0001¶\u0001¶\u0001¶\u0003¶ॴ\u0008¶\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0005·ॼ\u0008·\n·\u000c·ॿ\t·\u0001·\u0001·\u0001¸\u0001¸\u0001¸\u0003¸আ\u0008¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0005¸এ\u0008¸\n¸\u000c¸\u0992\t¸\u0001¸\u0001¸\u0001¸\u0003¸গ\u0008¸\u0001¸\u0001¸\u0001¸\u0001¹\u0003¹ঝ\u0008¹\u0001¹\u0001¹\u0001¹\u0003¹ঢ\u0008¹\u0001¹\u0001¹\u0001¹\u0003¹ধ\u0008¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0003¹ম\u0008¹\u0001º\u0001º\u0001º\u0001º\u0001º\u0001º\u0001»\u0001»\u0001»\u0003»হ\u0008»\u0001»\u0001»\u0001»\u0001»\u0001»\u0001»\u0003»ু\u0008»\u0001»\u0001»\u0001»\u0001»\u0003»ে\u0008»\u0001¼\u0001¼\u0001¼\u0001¼\u0003¼্\u0008¼\u0001½\u0001½\u0001½\u0001½\u0001½\u0001½\u0001½\u0003½\u09d6\u0008½\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0005¾\u09de\u0008¾\n¾\u000c¾ৡ\t¾\u0001¿\u0001¿\u0001¿\u0001¿\u0001¿\u0001¿\u0003¿৩\u0008¿\u0001À\u0001À\u0001À\u0001À\u0003À৯\u0008À\u0001Á\u0001Á\u0003Á৳\u0008Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0003Áৼ\u0008Á\u0001Â\u0001Â\u0003Â\u0a00\u0008Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Ã\u0001Ã\u0003Ãਈ\u0008Ã\u0001Ã\u0003Ã\u0a0b\u0008Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0003Ãਔ\u0008Ã\u0001Ä\u0001Ä\u0001Å\u0001Å\u0001Æ\u0001Æ\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0003Çਠ\u0008Ç\u0001È\u0001È\u0001È\u0001È\u0001È\u0001É\u0001É\u0001É\u0001É\u0001É\u0001Ê\u0001Ê\u0001Ê\u0001Ë\u0001Ë\u0003Ë\u0a31\u0008Ë\u0001Ì\u0003Ì\u0a34\u0008Ì\u0001Ì\u0001Ì\u0003Ìਸ\u0008Ì\u0001Í\u0001Í\u0001Í\u0001Í\u0001Í\u0001Í\u0001Í\u0005Íੁ\u0008Í\nÍ\u000cÍ\u0a44\tÍ\u0001Î\u0001Î\u0001Î\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0003Ï\u0a4e\u0008" -+ "Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0003Ï\u0a54\u0008Ï\u0001Ð\u0001Ð\u0001Ð\u0001Ð\u0003Ðਗ਼\u0008Ð\u0001Ñ\u0001Ñ\u0001Ñ\u0001Ñ\u0003Ñ\u0a60\u0008Ñ\u0001Ñ\u0001Ñ\u0001Ñ\u0001Ò\u0003Ò੦\u0008Ò\u0001Ò\u0001Ò\u0001Ò\u0003Ò੫\u0008Ò\u0001Ò\u0003Ò੮\u0008Ò\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0001Ô\u0001Ô\u0001Ô\u0001Ô\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0003Õ\u0a7d\u0008Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0003Õઆ\u0008Õ\u0004Õઈ\u0008Õ\u000bÕ\u000cÕઉ\u0001Ö\u0001Ö\u0001Ö\u0001Ö\u0003Öઐ\u0008Ö\u0001×\u0001×\u0001×\u0001×\u0003×ખ\u0008×\u0001×\u0001×\u0001×\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0003Ùન\u0008Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0003Ùર\u0008Ù\u0001Ù\u0003Ùળ\u0008Ù\u0005Ùવ\u0008Ù\nÙ\u000cÙસ\tÙ\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0003Ùુ\u0008Ù\u0005Ùૃ\u0008Ù\nÙ\u000cÙ\u0ac6\tÙ\u0001Ú\u0001Ú\u0003Ú\u0aca\u0008Ú\u0001Ú\u0001Ú\u0001Ú\u0003Ú\u0acf\u0008Ú\u0001Û\u0003Û\u0ad2\u0008Û\u0001Û\u0001Û\u0001Û\u0003Û\u0ad7\u0008Û\u0001Ü\u0003Ü\u0ada\u0008Ü\u0001Ü\u0001Ü\u0001Ü\u0001Ý\u0001Ý\u0003Ýૡ\u0008Ý\u0001Þ\u0001Þ\u0003Þ\u0ae5\u0008Þ\u0001Þ\u0001Þ\u0001ß\u0001ß\u0001ß\u0001à\u0001à\u0001à\u0001à\u0001á\u0001á\u0003á\u0af2\u0008á\u0001á\u0001á\u0001á\u0001á\u0004á\u0af8\u0008á\u000bá\u000cáૹ\u0001á\u0001á\u0001â\u0001â\u0001â\u0001â\u0001â\u0003âଃ\u0008â\u0001ã\u0001ã\u0001ã\u0003ãଈ\u0008ã\u0001ã\u0003ãଋ\u0008ã\u0001ä\u0001ä\u0001ä\u0003äଐ\u0008ä\u0001å\u0001å\u0001å\u0003åକ\u0008å\u0001æ\u0003æଘ\u0008æ\u0001æ\u0001æ\u0003æଜ\u0008æ\u0001æ\u0003æଟ\u0008æ\u0001ç\u0001ç\u0001ç\u0001ç\u0003çଥ\u0008ç\u0001ç\u0003çନ\u0008ç\u0001è\u0001è\u0003èବ\u0008è\u0001è\u0001è\u0003èର\u0008è\u0001è\u0003èଳ\u0008è\u0001é\u0001é\u0003éଷ\u0008é\u0001" -+ "é\u0001é\u0001ê\u0001ê\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0003ë\u0b49\u0008ë\u0001ì\u0001ì\u0003ì୍\u0008ì\u0001ì\u0001ì\u0001ì\u0001í\u0003í\u0b53\u0008í\u0001í\u0001í\u0001î\u0001î\u0001î\u0001î\u0001î\u0003îଡ଼\u0008î\u0001î\u0001î\u0001î\u0003îୡ\u0008î\u0001î\u0003î\u0b64\u0008î\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0003ï୳\u0008ï\u0001ð\u0001ð\u0001ð\u0001ð\u0001ð\u0003ð\u0b7a\u0008ð\u0001ñ\u0001ñ\u0003ñ\u0b7e\u0008ñ\u0001ñ\u0001ñ\u0001ò\u0001ò\u0003ò\u0b84\u0008ò\u0001ò\u0001ò\u0001ó\u0001ó\u0003óஊ\u0008ó\u0001ó\u0001ó\u0001ô\u0001ô\u0003ôஐ\u0008ô\u0001ô\u0001ô\u0001ô\u0003ôக\u0008ô\u0001õ\u0001õ\u0001õ\u0003õச\u0008õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0003õண\u0008õ\u0001ö\u0001ö\u0001ö\u0001ö\u0001ö\u0001ö\u0003ö\u0bab\u0008ö\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0003÷ல\u0008÷\u0003÷ழ\u0008÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0003÷ூ\u0008÷\u0001÷\u0001÷\u0003÷ெ\u0008÷\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0003ø\u0bce\u0008ø\u0001ø\u0001ø\u0003ø\u0bd2\u0008ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0003ø\u0be4\u0008ø\u0001ù\u0001ù\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0003ú௱\u0008ú\u0001û\u0001û\u0001û\u0001û\u0001ü\u0001ü\u0001ü\u0001ü\u0001ü\u0001ü\u0003ü\u0bfd\u0008ü\u0001ü\u0003üఀ\u0008ü\u0001ü\u0001ü\u0003üఄ\u0008ü\u0001ü\u0001ü\u0003üఈ\u0008ü\u0001ü\u0003üఋ\u0008ü\u0003ü\u0c0d\u0008ü\u0001ü\u0001ü\u0001ü\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýఘ\u0008ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýట\u0008ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýధ\u0008ý" -+ "\u0003ý\u0c29\u0008ý\u0001ý\u0001ý\u0001ý\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0003þళ\u0008þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0003þ\u0c3a\u0008þ\u0003þ\u0c3c\u0008þ\u0001þ\u0001þ\u0001þ\u0003þు\u0008þ\u0003þృ\u0008þ\u0001ÿ\u0001ÿ\u0001Ā\u0001Ā\u0001ā\u0001ā\u0001Ă\u0001Ă\u0001ă\u0001ă\u0001Ą\u0001Ą\u0001Ą\u0003Ą\u0c52\u0008Ą\u0001Ą\u0001Ą\u0001ą\u0001ą\u0001Ć\u0001Ć\u0001ć\u0001ć\u0001Ĉ\u0001Ĉ\u0001Ĉ\u0005Ĉ\u0c5f\u0008Ĉ\nĈ\u000cĈౢ\tĈ\u0001ĉ\u0001ĉ\u0003ĉ౦\u0008ĉ\u0001ĉ\u0003ĉ౩\u0008ĉ\u0001Ċ\u0001Ċ\u0003Ċ౭\u0008Ċ\u0001ċ\u0001ċ\u0003ċ\u0c71\u0008ċ\u0001ċ\u0001ċ\u0001ċ\u0003ċ\u0c76\u0008ċ\u0001Č\u0001Č\u0001Č\u0003Č౻\u0008Č\u0001Č\u0001Č\u0001Č\u0001Č\u0001Č\u0001Č\u0003Čಃ\u0008Č\u0001č\u0001č\u0001č\u0003čಈ\u0008č\u0001č\u0001č\u0001č\u0001č\u0001Ď\u0001Ď\u0003Ďಐ\u0008Ď\u0001ď\u0001ď\u0001ď\u0003ďಕ\u0008ď\u0001ď\u0001ď\u0001Đ\u0001Đ\u0001Đ\u0005Đಜ\u0008Đ\nĐ\u000cĐಟ\tĐ\u0001đ\u0001đ\u0001đ\u0003đತ\u0008đ\u0001đ\u0001đ\u0001đ\u0003đ\u0ca9\u0008đ\u0001đ\u0001đ\u0001đ\u0001đ\u0005đಯ\u0008đ\nđ\u000cđಲ\tđ\u0003đ\u0cb4\u0008đ\u0001đ\u0001đ\u0001đ\u0001đ\u0001đ\u0001đ\u0003đ಼\u0008đ\u0001đ\u0001đ\u0003đೀ\u0008đ\u0003đೂ\u0008đ\u0001Ē\u0001Ē\u0001Ē\u0003Ēೇ\u0008Ē\u0001ē\u0001ē\u0001Ĕ\u0001Ĕ\u0001ĕ\u0001ĕ\u0001Ė\u0001Ė\u0001Ė\u0001Ė\u0001Ė\u0003Ė\u0cd4\u0008Ė\u0003Ėೖ\u0008Ė\u0001ė\u0001ė\u0001ė\u0001ė\u0001ė\u0003ė\u0cdd\u0008ė\u0003ė\u0cdf\u0008ė\u0001Ę\u0001Ę\u0001Ę\u0001Ę\u0001Ę\u0001Ę\u0003Ę೧\u0008Ę\u0001Ę\u0003Ę೪\u0008Ę\u0001Ę\u0003Ę೭\u0008Ę\u0001ę\u0001ę\u0001ę\u0001ę\u0001ę\u0003ę\u0cf4\u0008ę\u0001ę\u0001ę\u0001ę\u0004ę\u0cf9\u0008ę\u000bę\u000cę\u0cfa\u0003ę\u0cfd\u0008ę\u0001ę\u0003ęഀ\u0008ę\u0001ę\u0003ęഃ\u0008ę\u0001Ě\u0001Ě\u0001Ě\u0001ě\u0001ě\u0001Ĝ\u0001Ĝ\u0001Ĝ\u0001ĝ\u0001ĝ\u0001Ğ\u0003Ğഐ\u0008Ğ\u0001Ğ" -+ "\u0001Ğ\u0001Ğ\u0001Ğ\u0003Ğഖ\u0008Ğ\u0001Ğ\u0003Ğങ\u0008Ğ\u0001Ğ\u0001Ğ\u0003Ğഝ\u0008Ğ\u0001Ğ\u0003Ğഠ\u0008Ğ\u0001ğ\u0001ğ\u0001ğ\u0003ğഥ\u0008ğ\u0001Ġ\u0001Ġ\u0001Ġ\u0001Ġ\u0003Ġഫ\u0008Ġ\u0001Ġ\u0001Ġ\u0001Ġ\u0001Ġ\u0003Ġറ\u0008Ġ\u0004Ġള\u0008Ġ\u000bĠ\u000cĠഴ\u0001Ġ\u0001Ġ\u0001Ġ\u0004Ġഺ\u0008Ġ\u000bĠ\u000cĠ഻\u0003Ġാ\u0008Ġ\u0001Ġ\u0003Ġു\u0008Ġ\u0001ġ\u0001ġ\u0001ġ\u0001ġ\u0001Ģ\u0001Ģ\u0001Ģ\u0004Ģൊ\u0008Ģ\u000bĢ\u000cĢോ\u0001ģ\u0001ģ\u0001ģ\u0001ģ\u0001Ĥ\u0001Ĥ\u0001Ĥ\u0001Ĥ\u0003Ĥൖ\u0008Ĥ\u0001ĥ\u0001ĥ\u0001ĥ\u0001ĥ\u0003ĥ൜\u0008ĥ\u0001Ħ\u0001Ħ\u0001Ħ\u0003Ħൡ\u0008Ħ\u0003Ħൣ\u0008Ħ\u0001Ħ\u0003Ħ൦\u0008Ħ\u0001ħ\u0001ħ\u0001Ĩ\u0001Ĩ\u0001Ĩ\u0003Ĩ൭\u0008Ĩ\u0001Ĩ\u0001Ĩ\u0003Ĩ൱\u0008Ĩ\u0001Ĩ\u0003Ĩ൴\u0008Ĩ\u0003Ĩ൶\u0008Ĩ\u0001ĩ\u0001ĩ\u0001Ī\u0001Ī\u0001ī\u0001ī\u0001ī\u0001ī\u0001ī\u0003īඁ\u0008ī\u0001ī\u0001ī\u0001ī\u0001ī\u0001ī\u0001ī\u0001ī\u0001ī\u0001ī\u0001ī\u0001ī\u0003īඎ\u0008ī\u0003īඐ\u0008ī\u0001ī\u0001ī\u0003īඔ\u0008ī\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0003Ĭක\u0008Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0003ĭඣ\u0008ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0004ĭඬ\u0008ĭ\u000bĭ\u000cĭත\u0001Į\u0001Į\u0001Į\u0001Į\u0003Įප\u0008Į\u0001į\u0001į\u0001į\u0001İ\u0001İ\u0001İ\u0001ı\u0001ı\u0001ı\u0001IJ\u0001IJ\u0001IJ\u0001ij\u0001ij\u0003ijහ\u0008ij\u0001ij\u0001ij\u0001ij\u0003ij\u0dc9\u0008ij\u0001Ĵ\u0001Ĵ\u0003Ĵ\u0dcd\u0008Ĵ\u0001ĵ\u0001ĵ\u0003ĵෑ\u0008ĵ\u0001Ķ\u0001Ķ\u0001Ķ\u0005Ķූ\u0008Ķ\nĶ\u000cĶෙ\tĶ\u0001ķ\u0001ķ\u0001ķ\u0005ķෞ\u0008ķ\nķ\u000cķ\u0de1\tķ\u0001ĸ\u0001ĸ\u0003ĸ\u0de5\u0008ĸ\u0001Ĺ\u0001Ĺ\u0001Ĺ\u0005Ĺ෪\u0008Ĺ\nĹ\u000cĹ෭\tĹ\u0001ĺ\u0001ĺ\u0001ĺ\u0001ĺ\u0005ĺෳ\u0008ĺ\nĺ\u000cĺ\u0df6\tĺ\u0003ĺ\u0df8\u0008ĺ\u0001ĺ\u0001" -+ "ĺ\u0001Ļ\u0001Ļ\u0001Ļ\u0004Ļ\u0dff\u0008Ļ\u000bĻ\u000cĻ\u0e00\u0001ļ\u0001ļ\u0001Ľ\u0001Ľ\u0003Ľง\u0008Ľ\u0001ľ\u0001ľ\u0003ľซ\u0008ľ\u0001Ŀ\u0001Ŀ\u0003Ŀฏ\u0008Ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0005ŀบ\u0008ŀ\nŀ\u000cŀฝ\tŀ\u0003ŀฟ\u0008ŀ\u0001ŀ\u0001ŀ\u0001Ł\u0001Ł\u0003Łล\u0008Ł\u0001ł\u0001ł\u0001Ń\u0001Ń\u0001Ń\u0001Ń\u0001Ń\u0001Ń\u0001Ń\u0001Ń\u0001Ń\u0003Ńา\u0008Ń\u0001ń\u0001ń\u0003ńึ\u0008ń\u0001Ņ\u0001Ņ\u0001ņ\u0001ņ\u0001Ň\u0001Ň\u0001Ň\u0000\u0000ň\u0000\u0002\u0004\u0006\u0008\n\u000c\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~€‚„†ˆŠŒŽ’”–˜šœž ¢¤¦¨ª¬®°²´¶¸º¼¾ÀÂÄÆÈÊÌÎÐÒÔÖØÚÜÞàâäæèêìîðòôöøúüþĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĸĺļľŀłńņňŊŌŎŐŒŔŖŘŚŜŞŠŢŤŦŨŪŬŮŰŲŴŶŸźżžƀƂƄƆƈƊƌƎƐƒƔƖƘƚƜƞƠƢƤƦƨƪƬƮưƲƴƶƸƺƼƾǀǂDŽdžLjNJnjǎǐǒǔǖǘǚǜǞǠǢǤǦǨǪǬǮǰDzǴǶǸǺǼǾȀȂȄȆȈȊȌȎȐȒȔȖȘȚȜȞȠȢȤȦȨȪȬȮȰȲȴȶȸȺȼȾɀɂɄɆɈɊɌɎɐɒɔɖɘɚɜɞɠɢɤɦɨɪɬɮɰɲɴɶɸɺɼɾʀʂʄʆʈʊʌʎ\u0000K\u0002\u0000\u0012\u0012MM\u0001\u0000\u0018\u0019\u0001\u0000GH\u0002\u0000´´üü\u0002\u0000JJªª\u0002\u000099››\u0001" -+ "\u0000çè\u0003\u0000##77gg\u0002\u0000\u0011\u0011÷÷\u0001\u0000vw\u0001\u0000¾¿\u0002\u0000\u0012\u0012\u0015\u0015\u0002\u0000˜˜ıı\u0002\u0000İİ\u0002\u0000xxIJIJ\u0002\u0000,,ŒŒ\u0002\u0000,,‡‡\u0006\u0000``rrxx˜˜Ÿ \u0002\u0000--ĕĕ\u0001\u0000¤§\u0003\u0000QQÁÁ\u0003\u0000NNžžĉĉ\u0002\u0000ÁÁ\u0004\u0000\u0012\u0012\u0015\u0015¬¬ûû\u0003\u0000\"\"‘‘ĎĎ\u0001\u0000\u0004\u0007\u0002\u0000@@ĈĈ\u0001\u0000ħĨ\u0002\u0000\u0016\u0016““\u0007\u0000\u0012\u0012oo––ÃÃÑÑĆĆĢĢ\u0001\u0000Ęę\u0001\u0000ÙÚ\u0001\u0000ÊË\u0001\u0000pq\u0001\u0000õö\u0002\u0000©©ÙÚ\u0002\u0000FFss\u0001\u0000åæ\u0001\u0000òó\u0001\u0000=>\u0002\u0000\u0012\u0012ÄÄ\u0001\u0000ĝĞ\u0001\u0000ÎÏ\u0002\u0000]]ÀÀ\u0002\u0000\u000c\u000căă\u0001\u0000/0\u0001\u0000ÈÉ\u0003\u0000==AAtt\u0002\u0000==tt\u0001\u0000tu\u0001\u0000Š‹\u0002\u0000ĔĔĖĖ\u0001\u0000¡¢\u0002\u0000**ěě\u0001\u0000¼½\u0002\u0000ÈÈåå\u0003\u0000\u000f\u000f==ĝĝ\u0002\u0000ååĝĝ\u0001\u0000\r\u000e\u0001\u0000€\u0001\u000034\u0001\u0000ďĐ\u0002\u0000››ÔÔ\u0001\u0000ÚÛ\u0001\u0000Z[\u0002\u0000©©««\u0001\u0000ÆÇ\u0001\u0000íî\u0002\u0000IIUU\u0001\u0000\u000f\u0010\u0002\u0000¶¶ĩĩ\u0002\u0000ëìïï\u0002\u0000CCzz\u0001\u0000\u0008\t\u0017\u0000\u000b\u001c\u001e+/KMMR_aqswy‹‘–™œ¡£¨­°±³ÀÃÄÆÏÑÑÔ×ÙèêðòĈĊĔĖĮྭ\u0000ʐ\u0001\u0000\u0000\u0000\u0002ʟ\u0001\u0000\u0000\u0000\u0004ʡ\u0001\u0000\u0000\u0000\u0006ʭ\u0001\u0000\u0000\u0000\u0008˂\u0001\u0000\u0000\u0000\n˄\u0001\u0000\u0000\u0000\u000cː\u0001\u0000\u0000\u0000\u000e˒\u0001\u0000\u0000\u0000\u0010˔\u0001\u0000\u0000\u0000\u0012˘\u0001\u0000\u0000\u0000\u0014ˤ\u0001\u0000\u0000\u0000\u0016˫\u0001\u0000\u0000\u0000\u0018˴\u0001\u0000\u0000\u0000\u001a˹\u0001\u0000\u0000\u0000\u001c˻" -+ "\u0001\u0000\u0000\u0000\u001e˽\u0001\u0000\u0000\u0000 ̇\u0001\u0000\u0000\u0000\"̊\u0001\u0000\u0000\u0000$̍\u0001\u0000\u0000\u0000&̐\u0001\u0000\u0000\u0000(̕\u0001\u0000\u0000\u0000*̘\u0001\u0000\u0000\u0000,̛\u0001\u0000\u0000\u0000.̺\u0001\u0000\u0000\u00000̼\u0001\u0000\u0000\u00002͍\u0001\u0000\u0000\u00004͐\u0001\u0000\u0000\u00006͜\u0001\u0000\u0000\u00008ͼ\u0001\u0000\u0000\u0000:;\u0001\u0000\u0000\u0000<Κ\u0001\u0000\u0000\u0000>\u03a2\u0001\u0000\u0000\u0000@Φ\u0001\u0000\u0000\u0000Bά\u0001\u0000\u0000\u0000DϏ\u0001\u0000\u0000\u0000Fϒ\u0001\u0000\u0000\u0000Hϔ\u0001\u0000\u0000\u0000Jϙ\u0001\u0000\u0000\u0000Lϧ\u0001\u0000\u0000\u0000Nϵ\u0001\u0000\u0000\u0000PЁ\u0001\u0000\u0000\u0000RЏ\u0001\u0000\u0000\u0000TП\u0001\u0000\u0000\u0000VУ\u0001\u0000\u0000\u0000XЧ\u0001\u0000\u0000\u0000Zи\u0001\u0000\u0000\u0000\\к\u0001\u0000\u0000\u0000^т\u0001\u0000\u0000\u0000`э\u0001\u0000\u0000\u0000bї\u0001\u0000\u0000\u0000dѰ\u0001\u0000\u0000\u0000fѴ\u0001\u0000\u0000\u0000hѶ\u0001\u0000\u0000\u0000j҈\u0001\u0000\u0000\u0000lҮ\u0001\u0000\u0000\u0000nҰ\u0001\u0000\u0000\u0000pҲ\u0001\u0000\u0000\u0000rҴ\u0001\u0000\u0000\u0000tҼ\u0001\u0000\u0000\u0000vӌ\u0001\u0000\u0000\u0000xӘ\u0001\u0000\u0000\u0000zӤ\u0001\u0000\u0000\u0000|Ө\u0001\u0000\u0000\u0000~Ӵ\u0001\u0000\u0000\u0000€ӹ\u0001\u0000\u0000\u0000‚ԁ\u0001\u0000\u0000\u0000„Ԅ\u0001\u0000\u0000\u0000†ԇ\u0001\u0000\u0000\u0000ˆԊ\u0001\u0000\u0000\u0000Šԏ\u0001\u0000\u0000\u0000ŒԒ\u0001\u0000\u0000\u0000ŽԮ\u0001\u0000\u0000\u0000Ծ\u0001\u0000\u0000\u0000’Հ\u0001\u0000\u0000\u0000”Ղ\u0001\u0000\u0000\u0000–Մ\u0001\u0000\u0000\u0000˜Փ\u0001\u0000\u0000\u0000šՕ\u0001\u0000\u0000\u0000œՠ\u0001\u0000\u0000\u0000žի\u0001\u0000\u0000\u0000 ճ\u0001\u0000\u0000\u0000¢վ\u0001\u0000\u0000\u0000¤ֆ\u0001\u0000\u0000\u0000¦֒\u0001\u0000\u0000\u0000¨֛\u0001\u0000\u0000\u0000ª֝\u0001\u0000\u0000\u0000¬֦\u0001\u0000\u0000\u0000®֩\u0001\u0000\u0000\u0000°ֱ\u0001\u0000\u0000\u0000²ֹ\u0001\u0000\u0000\u0000´ׄ\u0001\u0000\u0000\u0000¶\u05c9\u0001\u0000\u0000\u0000¸ב\u0001\u0000\u0000\u0000º\u05f5\u0001\u0000\u0000\u0000¼\u05f7\u0001\u0000\u0000\u0000¾\u05f9\u0001\u0000\u0000\u0000À؁\u0001\u0000\u0000\u0000Â؉\u0001\u0000\u0000\u0000Äؔ\u0001\u0000\u0000\u0000Æؖ\u0001\u0000" -+ "\u0000\u0000Èج\u0001\u0000\u0000\u0000Êخ\u0001\u0000\u0000\u0000Ìر\u0001\u0000\u0000\u0000Îص\u0001\u0000\u0000\u0000Ðػ\u0001\u0000\u0000\u0000Òٓ\u0001\u0000\u0000\u0000Ôٞ\u0001\u0000\u0000\u0000Ö٠\u0001\u0000\u0000\u0000Ø٬\u0001\u0000\u0000\u0000Úٱ\u0001\u0000\u0000\u0000Üپ\u0001\u0000\u0000\u0000Þګ\u0001\u0000\u0000\u0000àڭ\u0001\u0000\u0000\u0000âڿ\u0001\u0000\u0000\u0000äێ\u0001\u0000\u0000\u0000æۛ\u0001\u0000\u0000\u0000èۦ\u0001\u0000\u0000\u0000êۯ\u0001\u0000\u0000\u0000ì۽\u0001\u0000\u0000\u0000îۿ\u0001\u0000\u0000\u0000ð܁\u0001\u0000\u0000\u0000ò܅\u0001\u0000\u0000\u0000ôܛ\u0001\u0000\u0000\u0000öܝ\u0001\u0000\u0000\u0000øܢ\u0001\u0000\u0000\u0000úܰ\u0001\u0000\u0000\u0000üܾ\u0001\u0000\u0000\u0000þ݄\u0001\u0000\u0000\u0000Ā݉\u0001\u0000\u0000\u0000Ăݍ\u0001\u0000\u0000\u0000Ąݚ\u0001\u0000\u0000\u0000Ćݜ\u0001\u0000\u0000\u0000Ĉݣ\u0001\u0000\u0000\u0000Ċݥ\u0001\u0000\u0000\u0000Čݶ\u0001\u0000\u0000\u0000Ďݸ\u0001\u0000\u0000\u0000Đހ\u0001\u0000\u0000\u0000Ēރ\u0001\u0000\u0000\u0000Ĕޅ\u0001\u0000\u0000\u0000Ėލ\u0001\u0000\u0000\u0000Ęޕ\u0001\u0000\u0000\u0000Ěߠ\u0001\u0000\u0000\u0000Ĝߥ\u0001\u0000\u0000\u0000Ğߧ\u0001\u0000\u0000\u0000Ġ߬\u0001\u0000\u0000\u0000Ģ߽\u0001\u0000\u0000\u0000Ĥࠋ\u0001\u0000\u0000\u0000Ħࠕ\u0001\u0000\u0000\u0000Ĩ࠭\u0001\u0000\u0000\u0000Ī\u082f\u0001\u0000\u0000\u0000Ĭ࠴\u0001\u0000\u0000\u0000Į࠷\u0001\u0000\u0000\u0000İ࠺\u0001\u0000\u0000\u0000IJࡒ\u0001\u0000\u0000\u0000Ĵࡕ\u0001\u0000\u0000\u0000Ķ࡚\u0001\u0000\u0000\u0000ĸ\u085c\u0001\u0000\u0000\u0000ĺࡦ\u0001\u0000\u0000\u0000ļࡪ\u0001\u0000\u0000\u0000ľ\u086c\u0001\u0000\u0000\u0000ŀ\u0890\u0001\u0000\u0000\u0000ł\u0894\u0001\u0000\u0000\u0000ń\u089c\u0001\u0000\u0000\u0000ņ\u089e\u0001\u0000\u0000\u0000ňࢥ\u0001\u0000\u0000\u0000Ŋࢰ\u0001\u0000\u0000\u0000Ōࢼ\u0001\u0000\u0000\u0000Ŏࢾ\u0001\u0000\u0000\u0000Ő\u08cc\u0001\u0000\u0000\u0000Œ\u08ce\u0001\u0000\u0000\u0000Ŕ\u08d1\u0001\u0000\u0000\u0000Ŗࣔ\u0001\u0000\u0000\u0000Řࣗ\u0001\u0000\u0000\u0000Ś࣠\u0001\u0000\u0000\u0000Ŝࣧ\u0001\u0000\u0000\u0000Şࣩ\u0001\u0000\u0000\u0000Š࣮\u0001\u0000\u0000\u0000Ţࣿ\u0001\u0000\u0000\u0000Ťर\u0001\u0000\u0000\u0000Ŧल\u0001\u0000\u0000\u0000Ũौ\u0001\u0000\u0000\u0000Ūॏ\u0001\u0000\u0000\u0000Ŭॡ\u0001\u0000\u0000\u0000Ůॵ\u0001\u0000\u0000\u0000Űং\u0001\u0000\u0000\u0000" -+ "Ųজ\u0001\u0000\u0000\u0000Ŵয\u0001\u0000\u0000\u0000Ŷ\u09b5\u0001\u0000\u0000\u0000Ÿৈ\u0001\u0000\u0000\u0000ź\u09d5\u0001\u0000\u0000\u0000żৗ\u0001\u0000\u0000\u0000žৢ\u0001\u0000\u0000\u0000ƀ৪\u0001\u0000\u0000\u0000Ƃৰ\u0001\u0000\u0000\u0000Ƅ৽\u0001\u0000\u0000\u0000Ɔਅ\u0001\u0000\u0000\u0000ƈਕ\u0001\u0000\u0000\u0000Ɗਗ\u0001\u0000\u0000\u0000ƌਙ\u0001\u0000\u0000\u0000Ǝਛ\u0001\u0000\u0000\u0000Ɛਡ\u0001\u0000\u0000\u0000ƒਦ\u0001\u0000\u0000\u0000Ɣਫ\u0001\u0000\u0000\u0000Ɩਮ\u0001\u0000\u0000\u0000Ƙਲ਼\u0001\u0000\u0000\u0000ƚਹ\u0001\u0000\u0000\u0000Ɯ\u0a45\u0001\u0000\u0000\u0000ƞੈ\u0001\u0000\u0000\u0000Ơ\u0a55\u0001\u0000\u0000\u0000Ƣਜ਼\u0001\u0000\u0000\u0000Ƥ\u0a65\u0001\u0000\u0000\u0000Ʀ੯\u0001\u0000\u0000\u0000ƨੳ\u0001\u0000\u0000\u0000ƪ\u0a77\u0001\u0000\u0000\u0000Ƭઋ\u0001\u0000\u0000\u0000Ʈઑ\u0001\u0000\u0000\u0000ưચ\u0001\u0000\u0000\u0000Ʋણ\u0001\u0000\u0000\u0000ƴે\u0001\u0000\u0000\u0000ƶ\u0ad1\u0001\u0000\u0000\u0000Ƹ\u0ad9\u0001\u0000\u0000\u0000ƺૠ\u0001\u0000\u0000\u0000Ƽૢ\u0001\u0000\u0000\u0000ƾ૨\u0001\u0000\u0000\u0000ǀ૫\u0001\u0000\u0000\u0000ǂ૯\u0001\u0000\u0000\u0000DŽଂ\u0001\u0000\u0000\u0000dž\u0b04\u0001\u0000\u0000\u0000Ljଌ\u0001\u0000\u0000\u0000NJ\u0b11\u0001\u0000\u0000\u0000njଗ\u0001\u0000\u0000\u0000ǎଠ\u0001\u0000\u0000\u0000ǐ\u0b29\u0001\u0000\u0000\u0000ǒ\u0b34\u0001\u0000\u0000\u0000ǔ\u0b3a\u0001\u0000\u0000\u0000ǖୈ\u0001\u0000\u0000\u0000ǘ\u0b4a\u0001\u0000\u0000\u0000ǚ\u0b52\u0001\u0000\u0000\u0000ǜୣ\u0001\u0000\u0000\u0000Ǟ\u0b65\u0001\u0000\u0000\u0000Ǡ\u0b79\u0001\u0000\u0000\u0000Ǣ\u0b7b\u0001\u0000\u0000\u0000Ǥ\u0b81\u0001\u0000\u0000\u0000Ǧஇ\u0001\u0000\u0000\u0000Ǩஔ\u0001\u0000\u0000\u0000Ǫ\u0b96\u0001\u0000\u0000\u0000Ǭத\u0001\u0000\u0000\u0000Ǯ\u0bac\u0001\u0000\u0000\u0000ǰே\u0001\u0000\u0000\u0000Dz\u0be5\u0001\u0000\u0000\u0000Ǵ௧\u0001\u0000\u0000\u0000Ƕ௲\u0001\u0000\u0000\u0000Ǹఌ\u0001\u0000\u0000\u0000Ǻన\u0001\u0000\u0000\u0000Ǽభ\u0001\u0000\u0000\u0000Ǿౄ\u0001\u0000\u0000\u0000Ȁె\u0001\u0000\u0000\u0000Ȃై\u0001\u0000\u0000\u0000Ȅొ\u0001\u0000\u0000\u0000Ȇౌ\u0001\u0000\u0000\u0000Ȉ\u0c4e\u0001\u0000\u0000\u0000Ȋౕ\u0001\u0000\u0000\u0000Ȍ\u0c57\u0001\u0000\u0000\u0000Ȏౙ\u0001\u0000\u0000\u0000Ȑ\u0c5b\u0001\u0000\u0000\u0000Ȓ౨\u0001\u0000\u0000\u0000Ȕ౪\u0001\u0000\u0000\u0000Ȗ\u0c75\u0001\u0000\u0000\u0000Ș౺\u0001\u0000\u0000\u0000Țಇ\u0001\u0000\u0000\u0000Ȝಏ" -+ "\u0001\u0000\u0000\u0000Ȟ\u0c91\u0001\u0000\u0000\u0000Ƞಘ\u0001\u0000\u0000\u0000Ȣು\u0001\u0000\u0000\u0000Ȥೆ\u0001\u0000\u0000\u0000Ȧೈ\u0001\u0000\u0000\u0000Ȩೊ\u0001\u0000\u0000\u0000Ȫೌ\u0001\u0000\u0000\u0000Ȭೕ\u0001\u0000\u0000\u0000Ȯೞ\u0001\u0000\u0000\u0000Ȱೠ\u0001\u0000\u0000\u0000Ȳ೮\u0001\u0000\u0000\u0000ȴഄ\u0001\u0000\u0000\u0000ȶഇ\u0001\u0000\u0000\u0000ȸഉ\u0001\u0000\u0000\u0000Ⱥഌ\u0001\u0000\u0000\u0000ȼഏ\u0001\u0000\u0000\u0000Ⱦത\u0001\u0000\u0000\u0000ɀദ\u0001\u0000\u0000\u0000ɂൂ\u0001\u0000\u0000\u0000Ʉെ\u0001\u0000\u0000\u0000Ɇ്\u0001\u0000\u0000\u0000Ɉ\u0d51\u0001\u0000\u0000\u0000Ɋൗ\u0001\u0000\u0000\u0000Ɍ\u0d65\u0001\u0000\u0000\u0000Ɏ൧\u0001\u0000\u0000\u0000ɐ൵\u0001\u0000\u0000\u0000ɒ൷\u0001\u0000\u0000\u0000ɔ൹\u0001\u0000\u0000\u0000ɖൻ\u0001\u0000\u0000\u0000ɘඕ\u0001\u0000\u0000\u0000ɚඞ\u0001\u0000\u0000\u0000ɜද\u0001\u0000\u0000\u0000ɞඵ\u0001\u0000\u0000\u0000ɠම\u0001\u0000\u0000\u0000ɢර\u0001\u0000\u0000\u0000ɤ\u0dbe\u0001\u0000\u0000\u0000ɦශ\u0001\u0000\u0000\u0000ɨ\u0dcc\u0001\u0000\u0000\u0000ɪැ\u0001\u0000\u0000\u0000ɬි\u0001\u0000\u0000\u0000ɮේ\u0001\u0000\u0000\u0000ɰ\u0de4\u0001\u0000\u0000\u0000ɲ෦\u0001\u0000\u0000\u0000ɴ෮\u0001\u0000\u0000\u0000ɶ\u0dfb\u0001\u0000\u0000\u0000ɸข\u0001\u0000\u0000\u0000ɺฆ\u0001\u0000\u0000\u0000ɼช\u0001\u0000\u0000\u0000ɾฎ\u0001\u0000\u0000\u0000ʀฐ\u0001\u0000\u0000\u0000ʂฤ\u0001\u0000\u0000\u0000ʄฦ\u0001\u0000\u0000\u0000ʆั\u0001\u0000\u0000\u0000ʈี\u0001\u0000\u0000\u0000ʊื\u0001\u0000\u0000\u0000ʌู\u0001\u0000\u0000\u0000ʎ\u0e3b\u0001\u0000\u0000\u0000ʐʕ\u0003\u0002\u0001\u0000ʑʒ\u0005ñ\u0000\u0000ʒʔ\u0003\u0002\u0001\u0000ʓʑ\u0001\u0000\u0000\u0000ʔʗ\u0001\u0000\u0000\u0000ʕʓ\u0001\u0000\u0000\u0000ʕʖ\u0001\u0000\u0000\u0000ʖʙ\u0001\u0000\u0000\u0000ʗʕ\u0001\u0000\u0000\u0000ʘʚ\u0005ñ\u0000\u0000ʙʘ\u0001\u0000\u0000\u0000ʙʚ\u0001\u0000\u0000\u0000ʚʛ\u0001\u0000\u0000\u0000ʛʜ\u0005\u0000\u0000\u0001ʜ\u0001\u0001\u0000\u0000\u0000ʝʠ\u0003Ġ\u0000ʞʠ\u0003\u0004\u0002\u0000ʟʝ\u0001\u0000\u0000\u0000ʟʞ\u0001\u0000\u0000\u0000ʠ\u0003\u0001\u0000\u0000\u0000ʡʩ\u0003\u0006\u0003\u0000ʢʤ\u0005ė\u0000\u0000ʣʥ\u0007\u0000\u0000\u0000ʤʣ\u0001\u0000\u0000\u0000ʤʥ\u0001\u0000\u0000\u0000ʥʦ\u0001\u0000\u0000\u0000ʦʨ\u0003\u0006\u0003\u0000ʧʢ\u0001\u0000" -+ "\u0000\u0000ʨʫ\u0001\u0000\u0000\u0000ʩʧ\u0001\u0000\u0000\u0000ʩʪ\u0001\u0000\u0000\u0000ʪ\u0005\u0001\u0000\u0000\u0000ʫʩ\u0001\u0000\u0000\u0000ʬʮ\u0003\u0008\u0004\u0000ʭʬ\u0001\u0000\u0000\u0000ʮʯ\u0001\u0000\u0000\u0000ʯʭ\u0001\u0000\u0000\u0000ʯʰ\u0001\u0000\u0000\u0000ʰ\u0007\u0001\u0000\u0000\u0000ʱ˃\u0003\n\u0005\u0000ʲ˃\u0003\u000e\u0007\u0000ʳ˃\u0003\u0010\u0008\u0000ʴ˃\u0003(\u0014\u0000ʵ˃\u0003*\u0015\u0000ʶ˃\u00034\u001a\u0000ʷ˃\u0003,\u0016\u0000ʸ˃\u00030\u0018\u0000ʹ˃\u00036\u001b\u0000ʺ˃\u0003<\u001e\u0000ʻ˃\u0003&\u0013\u0000ʼ˃\u0003@ \u0000ʽ˃\u0003B!\u0000ʾ˃\u0003N\'\u0000ʿ˃\u0003J%\u0000ˀ˃\u0003L&\u0000ˁ˃\u0003Z-\u0000˂ʱ\u0001\u0000\u0000\u0000˂ʲ\u0001\u0000\u0000\u0000˂ʳ\u0001\u0000\u0000\u0000˂ʴ\u0001\u0000\u0000\u0000˂ʵ\u0001\u0000\u0000\u0000˂ʶ\u0001\u0000\u0000\u0000˂ʷ\u0001\u0000\u0000\u0000˂ʸ\u0001\u0000\u0000\u0000˂ʹ\u0001\u0000\u0000\u0000˂ʺ\u0001\u0000\u0000\u0000˂ʻ\u0001\u0000\u0000\u0000˂ʼ\u0001\u0000\u0000\u0000˂ʽ\u0001\u0000\u0000\u0000˂ʾ\u0001\u0000\u0000\u0000˂ʿ\u0001\u0000\u0000\u0000˂ˀ\u0001\u0000\u0000\u0000˂ˁ\u0001\u0000\u0000\u0000˃\t\u0001\u0000\u0000\u0000˄ˆ\u0005Ĝ\u0000\u0000˅ˇ\u0005t\u0000\u0000ˆ˅\u0001\u0000\u0000\u0000ˆˇ\u0001\u0000\u0000\u0000ˇˈ\u0001\u0000\u0000\u0000ˈˉ\u0003\u000c\u0006\u0000ˉ\u000b\u0001\u0000\u0000\u0000ˊˋ\u0005—\u0000\u0000ˋˌ\u0003\u000c\u0006\u0000ˌˍ\u0005é\u0000\u0000ˍˑ\u0001\u0000\u0000\u0000ˎˑ\u0003Ċ…\u0000ˏˑ\u0003ɲĹ\u0000ːˊ\u0001\u0000\u0000\u0000ːˎ\u0001\u0000\u0000\u0000ːˏ\u0001\u0000\u0000\u0000ˑ\r\u0001\u0000\u0000\u0000˒˓\u0005j\u0000\u0000˓\u000f\u0001\u0000\u0000\u0000˔˕\u0005ã\u0000\u0000˕˖\u0003\u0012\t\u0000˖\u0011\u0001\u0000\u0000\u0000˗˙\u0005M\u0000\u0000˘˗\u0001\u0000\u0000\u0000˘˙\u0001\u0000\u0000\u0000˙˚\u0001\u0000\u0000\u0000˚˜\u0003\u0016\u000b\u0000˛˝\u0003\u001e\u000f\u0000˜˛\u0001\u0000\u0000\u0000˜˝\u0001\u0000\u0000\u0000˝˟\u0001\u0000\u0000\u0000˞ˠ\u0003 \u0010\u0000˟˞\u0001\u0000\u0000\u0000˟ˠ\u0001\u0000\u0000\u0000ˠˢ\u0001\u0000\u0000\u0000ˡˣ\u0003\"\u0011\u0000ˢˡ\u0001\u0000\u0000\u0000ˢˣ\u0001\u0000\u0000\u0000ˣ\u0013\u0001\u0000\u0000\u0000" -+ "ˤ˧\u0003®W\u0000˥˦\u0005\u0017\u0000\u0000˦˨\u0003Ē‰\u0000˧˥\u0001\u0000\u0000\u0000˧˨\u0001\u0000\u0000\u0000˨\u0015\u0001\u0000\u0000\u0000˩ˬ\u0005ĉ\u0000\u0000˪ˬ\u0003\u0014\n\u0000˫˩\u0001\u0000\u0000\u0000˫˪\u0001\u0000\u0000\u0000ˬ˱\u0001\u0000\u0000\u0000˭ˮ\u0005.\u0000\u0000ˮ˰\u0003\u0014\n\u0000˯˭\u0001\u0000\u0000\u0000˰˳\u0001\u0000\u0000\u0000˱˯\u0001\u0000\u0000\u0000˱˲\u0001\u0000\u0000\u0000˲\u0017\u0001\u0000\u0000\u0000˳˱\u0001\u0000\u0000\u0000˴˷\u0003®W\u0000˵˸\u0003\u001a\r\u0000˶˸\u0003\u001c\u000e\u0000˷˵\u0001\u0000\u0000\u0000˷˶\u0001\u0000\u0000\u0000˷˸\u0001\u0000\u0000\u0000˸\u0019\u0001\u0000\u0000\u0000˹˺\u0007\u0001\u0000\u0000˺\u001b\u0001\u0000\u0000\u0000˻˼\u0007\u0002\u0000\u0000˼\u001d\u0001\u0000\u0000\u0000˽˾\u0005»\u0000\u0000˾˿\u0005%\u0000\u0000˿̄\u0003\u0018\u000c\u0000̀́\u0005.\u0000\u0000́̃\u0003\u0018\u000c\u0000̂̀\u0001\u0000\u0000\u0000̃̆\u0001\u0000\u0000\u0000̄̂\u0001\u0000\u0000\u0000̄̅\u0001\u0000\u0000\u0000̅\u001f\u0001\u0000\u0000\u0000̆̄\u0001\u0000\u0000\u0000̇̈\u0007\u0003\u0000\u0000̈̉\u0003®W\u0000̉!\u0001\u0000\u0000\u0000̊̋\u0005’\u0000\u0000̋̌\u0003®W\u0000̌#\u0001\u0000\u0000\u0000̍̎\u0005Ħ\u0000\u0000̎̏\u0003®W\u0000̏%\u0001\u0000\u0000\u0000̐̑\u0005ħ\u0000\u0000̑̓\u0003\u0012\t\u0000̒̔\u0003$\u0012\u0000̓̒\u0001\u0000\u0000\u0000̓̔\u0001\u0000\u0000\u0000̔\'\u0001\u0000\u0000\u0000̖̕\u00059\u0000\u0000̖̗\u0003\\.\u0000̗)\u0001\u0000\u0000\u0000̘̙\u0005„\u0000\u0000̙̚\u0003^/\u0000̚+\u0001\u0000\u0000\u0000̛̜\u0005ô\u0000\u0000̡̜\u0003.\u0017\u0000̝̞\u0005.\u0000\u0000̞̠\u0003.\u0017\u0000̟̝\u0001\u0000\u0000\u0000̠̣\u0001\u0000\u0000\u0000̡̟\u0001\u0000\u0000\u0000̡̢\u0001\u0000\u0000\u0000̢-\u0001\u0000\u0000\u0000̡̣\u0001\u0000\u0000\u0000̤̥\u0003Îg\u0000̥̦\u0005`\u0000\u0000̧̦\u0003®W\u0000̧̻\u0001\u0000\u0000\u0000̨̩\u0003Ðh\u0000̩̪\u0005`\u0000\u0000̪̫\u0003®W\u0000̫̻\u0001\u0000\u0000\u0000̬̭\u0003Ē‰\u0000̭̮\u0005`\u0000\u0000̮̯\u0003®W\u0000̯̻\u0001\u0000\u0000\u0000̰̱\u0003Ē‰\u0000̱̲" -+ "\u0005Â\u0000\u0000̲̳\u0003®W\u0000̳̻\u0001\u0000\u0000\u0000̴̵\u0003Ē‰\u0000̵̶\u0003z=\u0000̶̻\u0001\u0000\u0000\u0000̷̸\u0003Ē‰\u0000̸̹\u0003|>\u0000̹̻\u0001\u0000\u0000\u0000̺̤\u0001\u0000\u0000\u0000̨̺\u0001\u0000\u0000\u0000̺̬\u0001\u0000\u0000\u0000̺̰\u0001\u0000\u0000\u0000̴̺\u0001\u0000\u0000\u0000̷̺\u0001\u0000\u0000\u0000̻/\u0001\u0000\u0000\u0000̼̽\u0005Ü\u0000\u0000̽͂\u00032\u0019\u0000̾̿\u0005.\u0000\u0000̿́\u00032\u0019\u0000̀̾\u0001\u0000\u0000\u0000́̈́\u0001\u0000\u0000\u0000͂̀\u0001\u0000\u0000\u0000͂̓\u0001\u0000\u0000\u0000̓1\u0001\u0000\u0000\u0000̈́͂\u0001\u0000\u0000\u0000͎ͅ\u0003Îg\u0000͎͆\u0003Ðh\u0000͇͈\u0003Ē‰\u0000͈͉\u0003z=\u0000͉͎\u0001\u0000\u0000\u0000͊͋\u0003Ē‰\u0000͋͌\u0003|>\u0000͎͌\u0001\u0000\u0000\u0000͍ͅ\u0001\u0000\u0000\u0000͍͆\u0001\u0000\u0000\u0000͍͇\u0001\u0000\u0000\u0000͍͊\u0001\u0000\u0000\u0000͎3\u0001\u0000\u0000\u0000͏͑\u0007\u0004\u0000\u0000͐͏\u0001\u0000\u0000\u0000͐͑\u0001\u0000\u0000\u0000͑͒\u0001\u0000\u0000\u0000͓͒\u0005E\u0000\u0000͓͘\u0003®W\u0000͔͕\u0005.\u0000\u0000͕͗\u0003®W\u0000͖͔\u0001\u0000\u0000\u0000͚͗\u0001\u0000\u0000\u0000͖͘\u0001\u0000\u0000\u0000͙͘\u0001\u0000\u0000\u0000͙5\u0001\u0000\u0000\u0000͚͘\u0001\u0000\u0000\u0000͛͝\u0005·\u0000\u0000͛͜\u0001\u0000\u0000\u0000͜͝\u0001\u0000\u0000\u0000͝͞\u0001\u0000\u0000\u0000͞͠\u0005›\u0000\u0000͟͡\u00038\u001c\u0000͟͠\u0001\u0000\u0000\u0000͠͡\u0001\u0000\u0000\u0000͢͡\u0001\u0000\u0000\u0000ͦ͢\u0003\\.\u0000ͣͥ\u0003:\u001d\u0000ͤͣ\u0001\u0000\u0000\u0000ͥͨ\u0001\u0000\u0000\u0000ͦͤ\u0001\u0000\u0000\u0000ͦͧ\u0001\u0000\u0000\u0000ͧͪ\u0001\u0000\u0000\u0000ͨͦ\u0001\u0000\u0000\u0000ͩͫ\u0003$\u0012\u0000ͪͩ\u0001\u0000\u0000\u0000ͪͫ\u0001\u0000\u0000\u0000ͫ7\u0001\u0000\u0000\u0000ͬͲ\u0005Ý\u0000\u0000ͭͯ\u0005Z\u0000\u0000ͮͰ\u0005\u001e\u0000\u0000ͯͮ\u0001\u0000\u0000\u0000ͯͰ\u0001\u0000\u0000\u0000Ͱͳ\u0001\u0000\u0000\u0000ͱͳ\u0005[\u0000\u0000Ͳͭ\u0001\u0000\u0000\u0000Ͳͱ\u0001\u0000\u0000\u0000ͳͽ\u0001\u0000\u0000\u0000ʹͺ\u0005K\u0000\u0000͵ͷ\u0005Ú" -+ "\u0000\u0000Ͷ\u0378\u0005\u001e\u0000\u0000ͷͶ\u0001\u0000\u0000\u0000ͷ\u0378\u0001\u0000\u0000\u0000\u0378ͻ\u0001\u0000\u0000\u0000\u0379ͻ\u0005Û\u0000\u0000ͺ͵\u0001\u0000\u0000\u0000ͺ\u0379\u0001\u0000\u0000\u0000ͻͽ\u0001\u0000\u0000\u0000ͼͬ\u0001\u0000\u0000\u0000ͼʹ\u0001\u0000\u0000\u0000ͽ9\u0001\u0000\u0000\u0000;Θ\u0005ğ\u0000\u0000Ϳ·\u0005€\u0000\u0000\u0380\u0381\u0005Ć\u0000\u0000\u0381·\u0005€\u0000\u0000\u0382\u0383\u0005Ñ\u0000\u0000\u0383·\u0005€\u0000\u0000΄΅\u0005Ã\u0000\u0000΅·\u0005€\u0000\u0000ΆͿ\u0001\u0000\u0000\u0000Ά\u0380\u0001\u0000\u0000\u0000Ά\u0382\u0001\u0000\u0000\u0000Ά΄\u0001\u0000\u0000\u0000·Ή\u0001\u0000\u0000\u0000ΈΊ\u0005ð\u0000\u0000ΉΈ\u0001\u0000\u0000\u0000ΉΊ\u0001\u0000\u0000\u0000Ί\u038b\u0001\u0000\u0000\u0000\u038bΌ\u0003Ē‰\u0000Ό\u038d\u0003ˆD\u0000\u038dΎ\u0005—\u0000\u0000ΎΏ\u0003ĔŠ\u0000Ώΐ\u0005é\u0000\u0000ΐΙ\u0001\u0000\u0000\u0000ΑΒ\u0005ˆ\u0000\u0000ΒΓ\u0005µ\u0000\u0000ΓΙ\u0003ĔŠ\u0000ΔΕ\u0005ê\u0000\u0000ΕΖ\u0003Ē‰\u0000ΖΗ\u0003ˆD\u0000ΗΙ\u0001\u0000\u0000\u0000ΘΆ\u0001\u0000\u0000\u0000ΘΑ\u0001\u0000\u0000\u0000ΘΔ\u0001\u0000\u0000\u0000Ι;\u0001\u0000\u0000\u0000ΚΛ\u0005œ\u0000\u0000ΛΟ\u0003`0\u0000ΜΞ\u0003>\u001f\u0000ΝΜ\u0001\u0000\u0000\u0000ΞΡ\u0001\u0000\u0000\u0000ΟΝ\u0001\u0000\u0000\u0000ΟΠ\u0001\u0000\u0000\u0000Π=\u0001\u0000\u0000\u0000ΡΟ\u0001\u0000\u0000\u0000\u03a2Σ\u0005µ\u0000\u0000ΣΤ\u0007\u0005\u0000\u0000ΤΥ\u0003,\u0016\u0000Υ?\u0001\u0000\u0000\u0000ΦΧ\u0005Ě\u0000\u0000ΧΨ\u0003®W\u0000ΨΩ\u0005\u0017\u0000\u0000ΩΪ\u0003Ē‰\u0000ΪA\u0001\u0000\u0000\u0000Ϋέ\u0005·\u0000\u0000άΫ\u0001\u0000\u0000\u0000άέ\u0001\u0000\u0000\u0000έή\u0001\u0000\u0000\u0000ήί\u0005&\u0000\u0000ίμ\u0003D\"\u0000ΰι\u0005—\u0000\u0000αζ\u0003F#\u0000βγ\u0005.\u0000\u0000γε\u0003F#\u0000δβ\u0001\u0000\u0000\u0000εθ\u0001\u0000\u0000\u0000ζδ\u0001\u0000\u0000\u0000ζη\u0001\u0000\u0000\u0000ηκ\u0001\u0000\u0000\u0000θζ\u0001\u0000\u0000\u0000ια\u0001\u0000\u0000\u0000ικ\u0001\u0000\u0000\u0000κλ\u0001\u0000\u0000\u0000λν\u0005é\u0000\u0000μΰ\u0001\u0000\u0000\u0000μν\u0001\u0000\u0000\u0000" -+ "νύ\u0001\u0000\u0000\u0000ξϋ\u0005ī\u0000\u0000οό\u0005ĉ\u0000\u0000πυ\u0003H$\u0000ρς\u0005.\u0000\u0000ςτ\u0003H$\u0000σρ\u0001\u0000\u0000\u0000τχ\u0001\u0000\u0000\u0000υσ\u0001\u0000\u0000\u0000υφ\u0001\u0000\u0000\u0000φω\u0001\u0000\u0000\u0000χυ\u0001\u0000\u0000\u0000ψϊ\u0003$\u0012\u0000ωψ\u0001\u0000\u0000\u0000ωϊ\u0001\u0000\u0000\u0000ϊό\u0001\u0000\u0000\u0000ϋο\u0001\u0000\u0000\u0000ϋπ\u0001\u0000\u0000\u0000όώ\u0001\u0000\u0000\u0000ύξ\u0001\u0000\u0000\u0000ύώ\u0001\u0000\u0000\u0000ώC\u0001\u0000\u0000\u0000Ϗϐ\u0003Ј\u0000ϐϑ\u0003ʂŁ\u0000ϑE\u0001\u0000\u0000\u0000ϒϓ\u0003®W\u0000ϓG\u0001\u0000\u0000\u0000ϔϗ\u0003ʂŁ\u0000ϕϖ\u0005\u0017\u0000\u0000ϖϘ\u0003Ē‰\u0000ϗϕ\u0001\u0000\u0000\u0000ϗϘ\u0001\u0000\u0000\u0000ϘI\u0001\u0000\u0000\u0000ϙϚ\u0005”\u0000\u0000Ϛϝ\u0005:\u0000\u0000ϛϜ\u0005ħ\u0000\u0000ϜϞ\u0005y\u0000\u0000ϝϛ\u0001\u0000\u0000\u0000ϝϞ\u0001\u0000\u0000\u0000Ϟϟ\u0001\u0000\u0000\u0000ϟϠ\u0005n\u0000\u0000Ϡϡ\u0003®W\u0000ϡϢ\u0005\u0017\u0000\u0000Ϣϥ\u0003Ē‰\u0000ϣϤ\u0005i\u0000\u0000ϤϦ\u0003ɸļ\u0000ϥϣ\u0001\u0000\u0000\u0000ϥϦ\u0001\u0000\u0000\u0000ϦK\u0001\u0000\u0000\u0000ϧϨ\u0005m\u0000\u0000Ϩϩ\u0005—\u0000\u0000ϩϪ\u0003Ē‰\u0000Ϫϫ\u0005\u0000\u0000ϫϬ\u0003®W\u0000ϬϮ\u0005\u001d\u0000\u0000ϭϯ\u0003\u0008\u0004\u0000Ϯϭ\u0001\u0000\u0000\u0000ϯϰ\u0001\u0000\u0000\u0000ϰϮ\u0001\u0000\u0000\u0000ϰϱ\u0001\u0000\u0000\u0000ϱϲ\u0001\u0000\u0000\u0000ϲϳ\u0005é\u0000\u0000ϳM\u0001\u0000\u0000\u0000ϴ϶\u0005·\u0000\u0000ϵϴ\u0001\u0000\u0000\u0000ϵ϶\u0001\u0000\u0000\u0000϶Ϸ\u0001\u0000\u0000\u0000ϷϹ\u0005&\u0000\u0000ϸϺ\u0003P(\u0000Ϲϸ\u0001\u0000\u0000\u0000ϹϺ\u0001\u0000\u0000\u0000Ϻϻ\u0001\u0000\u0000\u0000ϻϼ\u0005\u0000\u0000ϼϽ\u0003\u0004\u0002\u0000ϽϿ\u0005Ó\u0000\u0000ϾЀ\u0003R)\u0000ϿϾ\u0001\u0000\u0000\u0000ϿЀ\u0001\u0000\u0000\u0000ЀO\u0001\u0000\u0000\u0000ЁЋ\u0005—\u0000\u0000ЂЌ\u0005ĉ\u0000\u0000ЃЈ\u0003Ē‰\u0000ЄЅ\u0005.\u0000\u0000ЅЇ\u0003Ē‰\u0000ІЄ\u0001\u0000\u0000\u0000ЇЊ" -+ "\u0001\u0000\u0000\u0000ЈІ\u0001\u0000\u0000\u0000ЈЉ\u0001\u0000\u0000\u0000ЉЌ\u0001\u0000\u0000\u0000ЊЈ\u0001\u0000\u0000\u0000ЋЂ\u0001\u0000\u0000\u0000ЋЃ\u0001\u0000\u0000\u0000ЋЌ\u0001\u0000\u0000\u0000ЌЍ\u0001\u0000\u0000\u0000ЍЎ\u0005é\u0000\u0000ЎQ\u0001\u0000\u0000\u0000ЏД\u0005\u0000\u0000АВ\u0003®W\u0000БА\u0001\u0000\u0000\u0000БВ\u0001\u0000\u0000\u0000ВГ\u0001\u0000\u0000\u0000ГЕ\u00052\u0000\u0000ДБ\u0001\u0000\u0000\u0000ДЕ\u0001\u0000\u0000\u0000ЕЖ\u0001\u0000\u0000\u0000ЖМ\u0005Đ\u0000\u0000ЗЛ\u0003T*\u0000ИЛ\u0003V+\u0000ЙЛ\u0003X,\u0000КЗ\u0001\u0000\u0000\u0000КИ\u0001\u0000\u0000\u0000КЙ\u0001\u0000\u0000\u0000ЛО\u0001\u0000\u0000\u0000МК\u0001\u0000\u0000\u0000МН\u0001\u0000\u0000\u0000НS\u0001\u0000\u0000\u0000ОМ\u0001\u0000\u0000\u0000ПР\u0005³\u0000\u0000РС\u0003®W\u0000СТ\u0007\u0006\u0000\u0000ТU\u0001\u0000\u0000\u0000УФ\u0005µ\u0000\u0000ФХ\u0005f\u0000\u0000ХЦ\u0007\u0007\u0000\u0000ЦW\u0001\u0000\u0000\u0000ЧШ\u0005ß\u0000\u0000ШЩ\u0005ÿ\u0000\u0000ЩЪ\u0005\u0017\u0000\u0000ЪЫ\u0003Ē‰\u0000ЫY\u0001\u0000\u0000\u0000ЬЮ\u0003\u001e\u000f\u0000ЭЯ\u0003 \u0010\u0000ЮЭ\u0001\u0000\u0000\u0000ЮЯ\u0001\u0000\u0000\u0000Яб\u0001\u0000\u0000\u0000ав\u0003\"\u0011\u0000ба\u0001\u0000\u0000\u0000бв\u0001\u0000\u0000\u0000вй\u0001\u0000\u0000\u0000ге\u0003 \u0010\u0000дж\u0003\"\u0011\u0000ед\u0001\u0000\u0000\u0000еж\u0001\u0000\u0000\u0000жй\u0001\u0000\u0000\u0000зй\u0003\"\u0011\u0000иЬ\u0001\u0000\u0000\u0000иг\u0001\u0000\u0000\u0000из\u0001\u0000\u0000\u0000й[\u0001\u0000\u0000\u0000кп\u0003`0\u0000лм\u0005.\u0000\u0000мо\u0003`0\u0000нл\u0001\u0000\u0000\u0000ос\u0001\u0000\u0000\u0000пн\u0001\u0000\u0000\u0000пр\u0001\u0000\u0000\u0000р]\u0001\u0000\u0000\u0000сп\u0001\u0000\u0000\u0000тч\u0003b1\u0000уф\u0005.\u0000\u0000фц\u0003b1\u0000ху\u0001\u0000\u0000\u0000цщ\u0001\u0000\u0000\u0000чх\u0001\u0000\u0000\u0000чш\u0001\u0000\u0000\u0000ш_\u0001\u0000\u0000\u0000щч\u0001\u0000\u0000\u0000ъы\u0003Ē‰\u0000ыь\u0005`\u0000\u0000ью\u0001\u0000\u0000\u0000эъ\u0001\u0000" -+ "\u0000\u0000эю\u0001\u0000\u0000\u0000юѐ\u0001\u0000\u0000\u0000яё\u0003l6\u0000ѐя\u0001\u0000\u0000\u0000ѐё\u0001\u0000\u0000\u0000ёђ\u0001\u0000\u0000\u0000ђѓ\u0003f3\u0000ѓa\u0001\u0000\u0000\u0000єѕ\u0003ʂŁ\u0000ѕі\u0005`\u0000\u0000іј\u0001\u0000\u0000\u0000їє\u0001\u0000\u0000\u0000їј\u0001\u0000\u0000\u0000јљ\u0001\u0000\u0000\u0000љџ\u0003v;\u0000њћ\u0003ŽG\u0000ћќ\u0003v;\u0000ќў\u0001\u0000\u0000\u0000ѝњ\u0001\u0000\u0000\u0000ўѡ\u0001\u0000\u0000\u0000џѝ\u0001\u0000\u0000\u0000џѠ\u0001\u0000\u0000\u0000Ѡc\u0001\u0000\u0000\u0000ѡџ\u0001\u0000\u0000\u0000Ѣѣ\u0005\u0000\u0000ѣѤ\u0005\u0005\u0000\u0000Ѥѱ\u0005Ó\u0000\u0000ѥѧ\u0005\u0000\u0000ѦѨ\u0005\u0005\u0000\u0000ѧѦ\u0001\u0000\u0000\u0000ѧѨ\u0001\u0000\u0000\u0000Ѩѩ\u0001\u0000\u0000\u0000ѩѫ\u0005.\u0000\u0000ѪѬ\u0005\u0005\u0000\u0000ѫѪ\u0001\u0000\u0000\u0000ѫѬ\u0001\u0000\u0000\u0000Ѭѭ\u0001\u0000\u0000\u0000ѭѱ\u0005Ó\u0000\u0000Ѯѱ\u0005Á\u0000\u0000ѯѱ\u0005ĉ\u0000\u0000ѰѢ\u0001\u0000\u0000\u0000Ѱѥ\u0001\u0000\u0000\u0000ѰѮ\u0001\u0000\u0000\u0000Ѱѯ\u0001\u0000\u0000\u0000ѱe\u0001\u0000\u0000\u0000Ѳѵ\u0003h4\u0000ѳѵ\u0003j5\u0000ѴѲ\u0001\u0000\u0000\u0000Ѵѳ\u0001\u0000\u0000\u0000ѵg\u0001\u0000\u0000\u0000Ѷѷ\u0007\u0008\u0000\u0000ѷѸ\u0005—\u0000\u0000Ѹѹ\u0003j5\u0000ѹѺ\u0005é\u0000\u0000Ѻi\u0001\u0000\u0000\u0000ѻ҄\u0003t:\u0000ѼѾ\u0003ŒF\u0000ѽѿ\u0003d2\u0000Ѿѽ\u0001\u0000\u0000\u0000Ѿѿ\u0001\u0000\u0000\u0000ѿҀ\u0001\u0000\u0000\u0000Ҁҁ\u0003t:\u0000ҁ҃\u0001\u0000\u0000\u0000҂Ѽ\u0001\u0000\u0000\u0000҃҆\u0001\u0000\u0000\u0000҄҂\u0001\u0000\u0000\u0000҄҅\u0001\u0000\u0000\u0000҅҉\u0001\u0000\u0000\u0000҆҄\u0001\u0000\u0000\u0000҇҉\u0003x<\u0000҈ѻ\u0001\u0000\u0000\u0000҈҇\u0001\u0000\u0000\u0000҉Ҋ\u0001\u0000\u0000\u0000Ҋ҈\u0001\u0000\u0000\u0000Ҋҋ\u0001\u0000\u0000\u0000ҋk\u0001\u0000\u0000\u0000Ҍҍ\u0005\u0015\u0000\u0000ҍҏ\u0005ø\u0000\u0000ҎҐ\u0003p8\u0000ҏҎ\u0001\u0000\u0000\u0000ҏҐ\u0001\u0000\u0000\u0000Ґү\u0001\u0000\u0000\u0000ґҒ\u0005\u0012\u0000\u0000ҒҔ\u0005ø\u0000\u0000ғҕ\u0003p8\u0000" -+ "Ҕғ\u0001\u0000\u0000\u0000Ҕҕ\u0001\u0000\u0000\u0000ҕү\u0001\u0000\u0000\u0000ҖҘ\u0005\u0015\u0000\u0000җҙ\u0005\u0005\u0000\u0000Ҙҗ\u0001\u0000\u0000\u0000Ҙҙ\u0001\u0000\u0000\u0000ҙқ\u0001\u0000\u0000\u0000ҚҜ\u0003p8\u0000қҚ\u0001\u0000\u0000\u0000қҜ\u0001\u0000\u0000\u0000Ҝү\u0001\u0000\u0000\u0000ҝҟ\u0005\u0012\u0000\u0000ҞҠ\u0003p8\u0000ҟҞ\u0001\u0000\u0000\u0000ҟҠ\u0001\u0000\u0000\u0000Ҡү\u0001\u0000\u0000\u0000ҡң\u0005ø\u0000\u0000ҢҤ\u0005\u0005\u0000\u0000ңҢ\u0001\u0000\u0000\u0000ңҤ\u0001\u0000\u0000\u0000ҤҦ\u0001\u0000\u0000\u0000ҥҧ\u0003p8\u0000Ҧҥ\u0001\u0000\u0000\u0000Ҧҧ\u0001\u0000\u0000\u0000ҧҨ\u0001\u0000\u0000\u0000Ҩү\u0003n7\u0000ҩҪ\u0005ø\u0000\u0000ҪҬ\u0005\u0005\u0000\u0000ҫҭ\u0003p8\u0000Ҭҫ\u0001\u0000\u0000\u0000Ҭҭ\u0001\u0000\u0000\u0000ҭү\u0001\u0000\u0000\u0000ҮҌ\u0001\u0000\u0000\u0000Үґ\u0001\u0000\u0000\u0000ҮҖ\u0001\u0000\u0000\u0000Үҝ\u0001\u0000\u0000\u0000Үҡ\u0001\u0000\u0000\u0000Үҩ\u0001\u0000\u0000\u0000үm\u0001\u0000\u0000\u0000Ұұ\u0007\t\u0000\u0000ұo\u0001\u0000\u0000\u0000Ҳҳ\u0007\n\u0000\u0000ҳq\u0001\u0000\u0000\u0000ҴҸ\u0003t:\u0000ҵҶ\u0003ŒF\u0000Ҷҷ\u0003t:\u0000ҷҹ\u0001\u0000\u0000\u0000Ҹҵ\u0001\u0000\u0000\u0000ҹҺ\u0001\u0000\u0000\u0000ҺҸ\u0001\u0000\u0000\u0000Һһ\u0001\u0000\u0000\u0000һs\u0001\u0000\u0000\u0000ҼҾ\u0005—\u0000\u0000ҽҿ\u0003Ē‰\u0000Ҿҽ\u0001\u0000\u0000\u0000Ҿҿ\u0001\u0000\u0000\u0000ҿӁ\u0001\u0000\u0000\u0000Ӏӂ\u0003˜L\u0000ӁӀ\u0001\u0000\u0000\u0000Ӂӂ\u0001\u0000\u0000\u0000ӂӄ\u0001\u0000\u0000\u0000ӃӅ\u0003ŠE\u0000ӄӃ\u0001\u0000\u0000\u0000ӄӅ\u0001\u0000\u0000\u0000Ӆӈ\u0001\u0000\u0000\u0000ӆӇ\u0005Ħ\u0000\u0000ӇӉ\u0003®W\u0000ӈӆ\u0001\u0000\u0000\u0000ӈӉ\u0001\u0000\u0000\u0000Ӊӊ\u0001\u0000\u0000\u0000ӊӋ\u0005é\u0000\u0000Ӌu\u0001\u0000\u0000\u0000ӌӎ\u0005—\u0000\u0000Ӎӏ\u0003Ē‰\u0000ӎӍ\u0001\u0000\u0000\u0000ӎӏ\u0001\u0000\u0000\u0000ӏӑ\u0001\u0000\u0000\u0000ӐӒ\u0003ªU\u0000ӑӐ\u0001\u0000\u0000\u0000ӑӒ\u0001\u0000\u0000\u0000ӒӔ\u0001\u0000\u0000\u0000ӓӕ\u0003ʀŀ\u0000Ӕӓ\u0001\u0000\u0000\u0000Ӕӕ\u0001\u0000\u0000\u0000ӕӖ" -+ "\u0001\u0000\u0000\u0000Ӗӗ\u0005é\u0000\u0000ӗw\u0001\u0000\u0000\u0000Әә\u0005—\u0000\u0000әӜ\u0003`0\u0000Ӛӛ\u0005Ħ\u0000\u0000ӛӝ\u0003®W\u0000ӜӚ\u0001\u0000\u0000\u0000Ӝӝ\u0001\u0000\u0000\u0000ӝӞ\u0001\u0000\u0000\u0000ӞӠ\u0005é\u0000\u0000ӟӡ\u0003d2\u0000Ӡӟ\u0001\u0000\u0000\u0000Ӡӡ\u0001\u0000\u0000\u0000ӡy\u0001\u0000\u0000\u0000Ӣӥ\u0003„B\u0000ӣӥ\u0003‚A\u0000ӤӢ\u0001\u0000\u0000\u0000Ӥӣ\u0001\u0000\u0000\u0000ӥӦ\u0001\u0000\u0000\u0000ӦӤ\u0001\u0000\u0000\u0000Ӧӧ\u0001\u0000\u0000\u0000ӧ{\u0001\u0000\u0000\u0000Өӫ\u0005‡\u0000\u0000өӬ\u0003ʂŁ\u0000ӪӬ\u0003~?\u0000ӫө\u0001\u0000\u0000\u0000ӫӪ\u0001\u0000\u0000\u0000Ӭӱ\u0001\u0000\u0000\u0000ӭӰ\u0003„B\u0000ӮӰ\u0003‚A\u0000ӯӭ\u0001\u0000\u0000\u0000ӯӮ\u0001\u0000\u0000\u0000Ӱӳ\u0001\u0000\u0000\u0000ӱӯ\u0001\u0000\u0000\u0000ӱӲ\u0001\u0000\u0000\u0000Ӳ}\u0001\u0000\u0000\u0000ӳӱ\u0001\u0000\u0000\u0000Ӵӵ\u0005L\u0000\u0000ӵӶ\u0005—\u0000\u0000Ӷӷ\u0003®W\u0000ӷӸ\u0005é\u0000\u0000Ӹ\u0001\u0000\u0000\u0000ӹӻ\u0005L\u0000\u0000ӺӼ\u0007\u000b\u0000\u0000ӻӺ\u0001\u0000\u0000\u0000ӻӼ\u0001\u0000\u0000\u0000Ӽӽ\u0001\u0000\u0000\u0000ӽӾ\u0005—\u0000\u0000Ӿӿ\u0003®W\u0000ӿԀ\u0005é\u0000\u0000Ԁ\u0001\u0000\u0000\u0000ԁԂ\u0005,\u0000\u0000Ԃԃ\u0003~?\u0000ԃƒ\u0001\u0000\u0000\u0000Ԅԅ\u0005,\u0000\u0000ԅԆ\u0003ʂŁ\u0000Ԇ…\u0001\u0000\u0000\u0000ԇԈ\u0005,\u0000\u0000Ԉԉ\u0003ʂŁ\u0000ԉ‡\u0001\u0000\u0000\u0000Ԋԋ\u0005,\u0000\u0000ԋԌ\u0003ʂŁ\u0000Ԍ‰\u0001\u0000\u0000\u0000ԍԐ\u0003ʀŀ\u0000ԎԐ\u0003ƃ\u0000ԏԍ\u0001\u0000\u0000\u0000ԏԎ\u0001\u0000\u0000\u0000Ԑ‹\u0001\u0000\u0000\u0000ԑԓ\u0003H\u0000Ԓԑ\u0001\u0000\u0000\u0000Ԓԓ\u0001\u0000\u0000\u0000ԓԔ\u0001\u0000\u0000\u0000Ԕԧ\u0003’I\u0000ԕԗ\u0005Ž\u0000\u0000ԖԘ\u0003Ē‰\u0000ԗԖ\u0001\u0000\u0000\u0000ԗԘ\u0001\u0000\u0000\u0000ԘԚ\u0001\u0000\u0000\u0000ԙԛ\u0003˜L\u0000Ԛԙ\u0001\u0000\u0000\u0000Ԛԛ\u0001\u0000\u0000\u0000ԛԝ\u0001\u0000\u0000\u0000ԜԞ\u0003–K\u0000ԝԜ\u0001\u0000\u0000\u0000ԝԞ\u0001\u0000" -+ "\u0000\u0000ԞԠ\u0001\u0000\u0000\u0000ԟԡ\u0003ŠE\u0000Ԡԟ\u0001\u0000\u0000\u0000Ԡԡ\u0001\u0000\u0000\u0000ԡԤ\u0001\u0000\u0000\u0000Ԣԣ\u0005Ħ\u0000\u0000ԣԥ\u0003®W\u0000ԤԢ\u0001\u0000\u0000\u0000Ԥԥ\u0001\u0000\u0000\u0000ԥԦ\u0001\u0000\u0000\u0000ԦԨ\u0005Ò\u0000\u0000ԧԕ\u0001\u0000\u0000\u0000ԧԨ\u0001\u0000\u0000\u0000Ԩԩ\u0001\u0000\u0000\u0000ԩԫ\u0003’I\u0000ԪԬ\u0003”J\u0000ԫԪ\u0001\u0000\u0000\u0000ԫԬ\u0001\u0000\u0000\u0000Ԭ\u0001\u0000\u0000\u0000ԭԯ\u0003H\u0000Ԯԭ\u0001\u0000\u0000\u0000Ԯԯ\u0001\u0000\u0000\u0000ԯ\u0530\u0001\u0000\u0000\u0000\u0530Ա\u0003’I\u0000ԱԳ\u0005Ž\u0000\u0000ԲԴ\u0003Ē‰\u0000ԳԲ\u0001\u0000\u0000\u0000ԳԴ\u0001\u0000\u0000\u0000ԴԵ\u0001\u0000\u0000\u0000ԵԷ\u0003¬V\u0000ԶԸ\u0003ʀŀ\u0000ԷԶ\u0001\u0000\u0000\u0000ԷԸ\u0001\u0000\u0000\u0000ԸԹ\u0001\u0000\u0000\u0000ԹԺ\u0005Ò\u0000\u0000ԺԼ\u0003’I\u0000ԻԽ\u0003”J\u0000ԼԻ\u0001\u0000\u0000\u0000ԼԽ\u0001\u0000\u0000\u0000Խ\u0001\u0000\u0000\u0000ԾԿ\u0007\u000c\u0000\u0000Կ‘\u0001\u0000\u0000\u0000ՀՁ\u0007\r\u0000\u0000Ձ“\u0001\u0000\u0000\u0000ՂՃ\u0007\u000e\u0000\u0000Ճ•\u0001\u0000\u0000\u0000ՄՍ\u0005ĉ\u0000\u0000ՅՇ\u0005\u0005\u0000\u0000ՆՅ\u0001\u0000\u0000\u0000ՆՇ\u0001\u0000\u0000\u0000ՇՈ\u0001\u0000\u0000\u0000ՈՊ\u0005P\u0000\u0000ՉՋ\u0005\u0005\u0000\u0000ՊՉ\u0001\u0000\u0000\u0000ՊՋ\u0001\u0000\u0000\u0000ՋՎ\u0001\u0000\u0000\u0000ՌՎ\u0005\u0005\u0000\u0000ՍՆ\u0001\u0000\u0000\u0000ՍՌ\u0001\u0000\u0000\u0000ՍՎ\u0001\u0000\u0000\u0000Վ—\u0001\u0000\u0000\u0000ՏՐ\u0005,\u0000\u0000ՐՔ\u0003šM\u0000ՑՒ\u0005‡\u0000\u0000ՒՔ\u0003œN\u0000ՓՏ\u0001\u0000\u0000\u0000ՓՑ\u0001\u0000\u0000\u0000Ք™\u0001\u0000\u0000\u0000Օ՝\u0003žO\u0000Ֆ\u0558\u0005\u001d\u0000\u0000\u0557ՙ\u0005,\u0000\u0000\u0558\u0557\u0001\u0000\u0000\u0000\u0558ՙ\u0001\u0000\u0000\u0000ՙ՚\u0001\u0000\u0000\u0000՚՜\u0003žO\u0000՛Ֆ\u0001\u0000\u0000\u0000՜՟\u0001\u0000\u0000\u0000՝՛\u0001\u0000\u0000\u0000՝՞\u0001\u0000\u0000\u0000՞›\u0001\u0000\u0000\u0000՟՝\u0001\u0000\u0000\u0000ՠը\u0003 P\u0000ագ\u0005\u001d\u0000\u0000բդ\u0005,\u0000\u0000գբ\u0001\u0000\u0000\u0000" -+ "գդ\u0001\u0000\u0000\u0000դե\u0001\u0000\u0000\u0000եէ\u0003 P\u0000զա\u0001\u0000\u0000\u0000էժ\u0001\u0000\u0000\u0000ըզ\u0001\u0000\u0000\u0000ըթ\u0001\u0000\u0000\u0000թ\u0001\u0000\u0000\u0000ժը\u0001\u0000\u0000\u0000իհ\u0003¢Q\u0000լխ\u0007\u000f\u0000\u0000խկ\u0003¢Q\u0000ծլ\u0001\u0000\u0000\u0000կղ\u0001\u0000\u0000\u0000հծ\u0001\u0000\u0000\u0000հձ\u0001\u0000\u0000\u0000ձŸ\u0001\u0000\u0000\u0000ղհ\u0001\u0000\u0000\u0000ճո\u0003¤R\u0000մյ\u0007\u000f\u0000\u0000յշ\u0003¤R\u0000նմ\u0001\u0000\u0000\u0000շպ\u0001\u0000\u0000\u0000ոն\u0001\u0000\u0000\u0000ոչ\u0001\u0000\u0000\u0000չ¡\u0001\u0000\u0000\u0000պո\u0001\u0000\u0000\u0000ջս\u0005\u0000\u0000ռջ\u0001\u0000\u0000\u0000սր\u0001\u0000\u0000\u0000վռ\u0001\u0000\u0000\u0000վտ\u0001\u0000\u0000\u0000տց\u0001\u0000\u0000\u0000րվ\u0001\u0000\u0000\u0000ցւ\u0003¦S\u0000ւ£\u0001\u0000\u0000\u0000փօ\u0005\u0000\u0000քփ\u0001\u0000\u0000\u0000օֈ\u0001\u0000\u0000\u0000ֆք\u0001\u0000\u0000\u0000ֆև\u0001\u0000\u0000\u0000և։\u0001\u0000\u0000\u0000ֈֆ\u0001\u0000\u0000\u0000։֊\u0003¨T\u0000֊¥\u0001\u0000\u0000\u0000\u058b\u058c\u0005—\u0000\u0000\u058c֍\u0003šM\u0000֍֎\u0005é\u0000\u0000֎֓\u0001\u0000\u0000\u0000֏֓\u0005ž\u0000\u0000\u0590֓\u0003€@\u0000֑֓\u0003ʂŁ\u0000֒\u058b\u0001\u0000\u0000\u0000֒֏\u0001\u0000\u0000\u0000֒\u0590\u0001\u0000\u0000\u0000֑֒\u0001\u0000\u0000\u0000֓§\u0001\u0000\u0000\u0000֔֕\u0005—\u0000\u0000֖֕\u0003œN\u0000֖֗\u0005é\u0000\u0000֗֜\u0001\u0000\u0000\u0000֘֜\u0005ž\u0000\u0000֙֜\u0003€@\u0000֚֜\u0003ʈń\u0000֛֔\u0001\u0000\u0000\u0000֛֘\u0001\u0000\u0000\u0000֛֙\u0001\u0000\u0000\u0000֛֚\u0001\u0000\u0000\u0000֜©\u0001\u0000\u0000\u0000֝֞\u0007\u0010\u0000\u0000֣֞\u0003ʂŁ\u0000֟֠\u0007\u000f\u0000\u0000֢֠\u0003ʂŁ\u0000֡֟\u0001\u0000\u0000\u0000֢֥\u0001\u0000\u0000\u0000֣֡\u0001\u0000\u0000\u0000֣֤\u0001\u0000\u0000\u0000֤«\u0001\u0000\u0000\u0000֥֣\u0001\u0000\u0000\u0000֦֧\u0007\u0010\u0000\u0000֧֨\u0003ʂŁ\u0000֨­\u0001\u0000\u0000\u0000֮֩\u0003°X\u0000֪֫\u0005º\u0000\u0000֭֫\u0003°X\u0000֪֬" -+ "\u0001\u0000\u0000\u0000ְ֭\u0001\u0000\u0000\u0000֮֬\u0001\u0000\u0000\u0000֮֯\u0001\u0000\u0000\u0000֯¯\u0001\u0000\u0000\u0000ְ֮\u0001\u0000\u0000\u0000ֱֶ\u0003²Y\u0000ֲֳ\u0005Ī\u0000\u0000ֳֵ\u0003²Y\u0000ֲִ\u0001\u0000\u0000\u0000ֵָ\u0001\u0000\u0000\u0000ִֶ\u0001\u0000\u0000\u0000ֶַ\u0001\u0000\u0000\u0000ַ±\u0001\u0000\u0000\u0000ֶָ\u0001\u0000\u0000\u0000ֹ־\u0003´Z\u0000ֺֻ\u0005\u0014\u0000\u0000ֻֽ\u0003´Z\u0000ֺּ\u0001\u0000\u0000\u0000ֽ׀\u0001\u0000\u0000\u0000־ּ\u0001\u0000\u0000\u0000־ֿ\u0001\u0000\u0000\u0000ֿ³\u0001\u0000\u0000\u0000׀־\u0001\u0000\u0000\u0000ׁ׃\u0005¯\u0000\u0000ׁׂ\u0001\u0000\u0000\u0000׃׆\u0001\u0000\u0000\u0000ׂׄ\u0001\u0000\u0000\u0000ׅׄ\u0001\u0000\u0000\u0000ׇׅ\u0001\u0000\u0000\u0000׆ׄ\u0001\u0000\u0000\u0000ׇ\u05c8\u0003¶[\u0000\u05c8µ\u0001\u0000\u0000\u0000\u05c9\u05ce\u0003¸\\\u0000\u05ca\u05cb\u0007\u0011\u0000\u0000\u05cb\u05cd\u0003¸\\\u0000\u05cc\u05ca\u0001\u0000\u0000\u0000\u05cdא\u0001\u0000\u0000\u0000\u05ce\u05cc\u0001\u0000\u0000\u0000\u05ce\u05cf\u0001\u0000\u0000\u0000\u05cf·\u0001\u0000\u0000\u0000א\u05ce\u0001\u0000\u0000\u0000בד\u0003¾_\u0000גה\u0003º]\u0000דג\u0001\u0000\u0000\u0000דה\u0001\u0000\u0000\u0000ה¹\u0001\u0000\u0000\u0000ום\u0005Ø\u0000\u0000זח\u0005þ\u0000\u0000חם\u0005ħ\u0000\u0000טי\u0005_\u0000\u0000ים\u0005ħ\u0000\u0000ךם\u00055\u0000\u0000כם\u0005\u0000\u0000לו\u0001\u0000\u0000\u0000לז\u0001\u0000\u0000\u0000לט\u0001\u0000\u0000\u0000לך\u0001\u0000\u0000\u0000לכ\u0001\u0000\u0000\u0000םמ\u0001\u0000\u0000\u0000מ\u05f6\u0003¾_\u0000ןס\u0005‡\u0000\u0000נע\u0005¯\u0000\u0000סנ\u0001\u0000\u0000\u0000סע\u0001\u0000\u0000\u0000עף\u0001\u0000\u0000\u0000ף\u05f6\u0005²\u0000\u0000פצ\u0005‡\u0000\u0000ץק\u0005¯\u0000\u0000צץ\u0001\u0000\u0000\u0000צק\u0001\u0000\u0000\u0000קר\u0001\u0000\u0000\u0000ר\u05eb\u0007\u0012\u0000\u0000ש\u05eb\u0005-\u0000\u0000תפ\u0001\u0000\u0000\u0000תש\u0001\u0000\u0000\u0000\u05eb\u05ec\u0001\u0000\u0000\u0000\u05ec\u05f6\u0003Ė‹\u0000\u05edׯ\u0005‡\u0000\u0000\u05eeװ\u0005¯\u0000\u0000ׯ\u05ee\u0001\u0000\u0000\u0000ׯװ\u0001\u0000\u0000\u0000װײ\u0001\u0000\u0000\u0000ױ׳\u0003¼^\u0000ײױ\u0001\u0000\u0000\u0000ײ׳\u0001\u0000" -+ "\u0000\u0000׳״\u0001\u0000\u0000\u0000״\u05f6\u0005®\u0000\u0000\u05f5ל\u0001\u0000\u0000\u0000\u05f5ן\u0001\u0000\u0000\u0000\u05f5ת\u0001\u0000\u0000\u0000\u05f5\u05ed\u0001\u0000\u0000\u0000\u05f6»\u0001\u0000\u0000\u0000\u05f7\u05f8\u0007\u0013\u0000\u0000\u05f8½\u0001\u0000\u0000\u0000\u05f9\u05fe\u0003À`\u0000\u05fa\u05fb\u0007\u0014\u0000\u0000\u05fb\u05fd\u0003À`\u0000\u05fc\u05fa\u0001\u0000\u0000\u0000\u05fd؀\u0001\u0000\u0000\u0000\u05fe\u05fc\u0001\u0000\u0000\u0000\u05fe\u05ff\u0001\u0000\u0000\u0000\u05ff¿\u0001\u0000\u0000\u0000؀\u05fe\u0001\u0000\u0000\u0000؁؆\u0003Âa\u0000؂؃\u0007\u0015\u0000\u0000؃؅\u0003Âa\u0000؄؂\u0001\u0000\u0000\u0000؅؈\u0001\u0000\u0000\u0000؆؄\u0001\u0000\u0000\u0000؆؇\u0001\u0000\u0000\u0000؇Á\u0001\u0000\u0000\u0000؈؆\u0001\u0000\u0000\u0000؉؎\u0003Äb\u0000؊؋\u0005Å\u0000\u0000؋؍\u0003Äb\u0000،؊\u0001\u0000\u0000\u0000؍ؐ\u0001\u0000\u0000\u0000؎،\u0001\u0000\u0000\u0000؎؏\u0001\u0000\u0000\u0000؏Ã\u0001\u0000\u0000\u0000ؐ؎\u0001\u0000\u0000\u0000ؑؕ\u0003Æc\u0000ؒؓ\u0007\u0016\u0000\u0000ؓؕ\u0003Æc\u0000ؔؑ\u0001\u0000\u0000\u0000ؔؒ\u0001\u0000\u0000\u0000ؕÅ\u0001\u0000\u0000\u0000ؚؖ\u0003Òi\u0000ؙؗ\u0003Èd\u0000ؘؗ\u0001\u0000\u0000\u0000ؙ؜\u0001\u0000\u0000\u0000ؘؚ\u0001\u0000\u0000\u0000ؚ؛\u0001\u0000\u0000\u0000؛Ç\u0001\u0000\u0000\u0000؜ؚ\u0001\u0000\u0000\u0000\u061dح\u0003Êe\u0000؞ح\u0003˜L\u0000؟ؠ\u0005Ž\u0000\u0000ؠء\u0003®W\u0000ءآ\u0005Ò\u0000\u0000آح\u0001\u0000\u0000\u0000أإ\u0005Ž\u0000\u0000ؤئ\u0003®W\u0000إؤ\u0001\u0000\u0000\u0000إئ\u0001\u0000\u0000\u0000ئا\u0001\u0000\u0000\u0000اة\u0005P\u0000\u0000بت\u0003®W\u0000ةب\u0001\u0000\u0000\u0000ةت\u0001\u0000\u0000\u0000تث\u0001\u0000\u0000\u0000ثح\u0005Ò\u0000\u0000ج\u061d\u0001\u0000\u0000\u0000ج؞\u0001\u0000\u0000\u0000ج؟\u0001\u0000\u0000\u0000جأ\u0001\u0000\u0000\u0000حÉ\u0001\u0000\u0000\u0000خد\u0005O\u0000\u0000دذ\u0003Ą‚\u0000ذË\u0001\u0000\u0000\u0000رز\u0005Ž\u0000\u0000زس\u0003®W\u0000سش\u0005Ò\u0000\u0000شÍ\u0001\u0000\u0000\u0000صط\u0003Òi\u0000ضظ\u0003Êe\u0000طض\u0001\u0000\u0000\u0000ظع\u0001\u0000\u0000\u0000عط\u0001\u0000\u0000\u0000عغ\u0001\u0000\u0000\u0000" -+ "غÏ\u0001\u0000\u0000\u0000ػؼ\u0003Òi\u0000ؼؽ\u0003Ìf\u0000ؽÑ\u0001\u0000\u0000\u0000ؾٔ\u0003Ôj\u0000ؿٔ\u0003ƃ\u0000ـٔ\u0003Ök\u0000فٔ\u0003Úm\u0000قٔ\u0003ö{\u0000كٔ\u0003ø|\u0000لٔ\u0003ú}\u0000مٔ\u0003ü~\u0000نٔ\u0003òy\u0000هٔ\u0003àp\u0000ؤ\u0003Á\u0000ىٔ\u0003âq\u0000ئ\u0003är\u0000ًٔ\u0003æs\u0000ٌٔ\u0003èt\u0000ٍٔ\u0003êu\u0000َٔ\u0003ìv\u0000ُٔ\u0003îw\u0000ِٔ\u0003ðx\u0000ّٔ\u0003Ċ…\u0000ْٔ\u0003Ē‰\u0000ٓؾ\u0001\u0000\u0000\u0000ٓؿ\u0001\u0000\u0000\u0000ٓـ\u0001\u0000\u0000\u0000ٓف\u0001\u0000\u0000\u0000ٓق\u0001\u0000\u0000\u0000ٓك\u0001\u0000\u0000\u0000ٓل\u0001\u0000\u0000\u0000ٓم\u0001\u0000\u0000\u0000ٓن\u0001\u0000\u0000\u0000ٓه\u0001\u0000\u0000\u0000ٓو\u0001\u0000\u0000\u0000ٓى\u0001\u0000\u0000\u0000ٓي\u0001\u0000\u0000\u0000ًٓ\u0001\u0000\u0000\u0000ٌٓ\u0001\u0000\u0000\u0000ٍٓ\u0001\u0000\u0000\u0000َٓ\u0001\u0000\u0000\u0000ُٓ\u0001\u0000\u0000\u0000ِٓ\u0001\u0000\u0000\u0000ّٓ\u0001\u0000\u0000\u0000ْٓ\u0001\u0000\u0000\u0000ٔÓ\u0001\u0000\u0000\u0000ٕٟ\u0003þ\u0000ٖٟ\u0003ɸļ\u0000ٟٗ\u0003ʀŀ\u0000ٟ٘\u0005ē\u0000\u0000ٟٙ\u0005h\u0000\u0000ٟٚ\u0005‚\u0000\u0000ٟٛ\u0005ƒ\u0000\u0000ٜٟ\u0005£\u0000\u0000ٟٝ\u0005²\u0000\u0000ٕٞ\u0001\u0000\u0000\u0000ٖٞ\u0001\u0000\u0000\u0000ٞٗ\u0001\u0000\u0000\u0000ٞ٘\u0001\u0000\u0000\u0000ٞٙ\u0001\u0000\u0000\u0000ٞٚ\u0001\u0000\u0000\u0000ٞٛ\u0001\u0000\u0000\u0000ٜٞ\u0001\u0000\u0000\u0000ٞٝ\u0001\u0000\u0000\u0000ٟÕ\u0001\u0000\u0000\u0000٠٢\u0005(\u0000\u0000١٣\u0003Øl\u0000٢١\u0001\u0000\u0000\u0000٣٤\u0001\u0000\u0000\u0000٤٢\u0001\u0000\u0000\u0000٤٥\u0001\u0000\u0000\u0000٥٨\u0001\u0000\u0000\u0000٦٧\u0005\\\u0000\u0000٧٩\u0003®W\u0000٨٦\u0001\u0000\u0000\u0000٨٩\u0001\u0000\u0000\u0000٩٪\u0001\u0000\u0000\u0000٪٫\u0005^\u0000\u0000٫×\u0001\u0000\u0000\u0000٬٭\u0005ĥ\u0000\u0000٭ٮ\u0003®W\u0000ٮٯ\u0005ć\u0000\u0000ٯٰ\u0003®W\u0000ٰÙ\u0001\u0000\u0000\u0000ٱٲ" -+ "\u0005(\u0000\u0000ٲٴ\u0003®W\u0000ٳٵ\u0003Ün\u0000ٴٳ\u0001\u0000\u0000\u0000ٵٶ\u0001\u0000\u0000\u0000ٶٴ\u0001\u0000\u0000\u0000ٶٷ\u0001\u0000\u0000\u0000ٷٺ\u0001\u0000\u0000\u0000ٸٹ\u0005\\\u0000\u0000ٹٻ\u0003®W\u0000ٺٸ\u0001\u0000\u0000\u0000ٺٻ\u0001\u0000\u0000\u0000ٻټ\u0001\u0000\u0000\u0000ټٽ\u0005^\u0000\u0000ٽÛ\u0001\u0000\u0000\u0000پٿ\u0005ĥ\u0000\u0000ٿڄ\u0003Þo\u0000ڀځ\u0005.\u0000\u0000ځڃ\u0003Þo\u0000ڂڀ\u0001\u0000\u0000\u0000ڃچ\u0001\u0000\u0000\u0000ڄڂ\u0001\u0000\u0000\u0000ڄڅ\u0001\u0000\u0000\u0000څڇ\u0001\u0000\u0000\u0000چڄ\u0001\u0000\u0000\u0000ڇڈ\u0005ć\u0000\u0000ڈډ\u0003®W\u0000ډÝ\u0001\u0000\u0000\u0000ڊڐ\u0005Ø\u0000\u0000ڋڌ\u0005þ\u0000\u0000ڌڐ\u0005ħ\u0000\u0000ڍڎ\u0005_\u0000\u0000ڎڐ\u0005ħ\u0000\u0000ڏڊ\u0001\u0000\u0000\u0000ڏڋ\u0001\u0000\u0000\u0000ڏڍ\u0001\u0000\u0000\u0000ڐڑ\u0001\u0000\u0000\u0000ڑڬ\u0003¾_\u0000ڒڔ\u0005‡\u0000\u0000ړڕ\u0005¯\u0000\u0000ڔړ\u0001\u0000\u0000\u0000ڔڕ\u0001\u0000\u0000\u0000ڕږ\u0001\u0000\u0000\u0000ږڬ\u0005²\u0000\u0000ڗڙ\u0005‡\u0000\u0000ژښ\u0005¯\u0000\u0000ڙژ\u0001\u0000\u0000\u0000ڙښ\u0001\u0000\u0000\u0000ښڛ\u0001\u0000\u0000\u0000ڛڞ\u0005ĕ\u0000\u0000ڜڞ\u0005-\u0000\u0000ڝڗ\u0001\u0000\u0000\u0000ڝڜ\u0001\u0000\u0000\u0000ڞڟ\u0001\u0000\u0000\u0000ڟڬ\u0003Ė‹\u0000ڠڢ\u0005‡\u0000\u0000ڡڣ\u0005¯\u0000\u0000ڢڡ\u0001\u0000\u0000\u0000ڢڣ\u0001\u0000\u0000\u0000ڣڥ\u0001\u0000\u0000\u0000ڤڦ\u0003¼^\u0000ڥڤ\u0001\u0000\u0000\u0000ڥڦ\u0001\u0000\u0000\u0000ڦڧ\u0001\u0000\u0000\u0000ڧڬ\u0005®\u0000\u0000ڨک\u0007\u0011\u0000\u0000کڬ\u0003¸\\\u0000ڪڬ\u0003®W\u0000ګڏ\u0001\u0000\u0000\u0000ګڒ\u0001\u0000\u0000\u0000ګڝ\u0001\u0000\u0000\u0000ګڠ\u0001\u0000\u0000\u0000ګڨ\u0001\u0000\u0000\u0000ګڪ\u0001\u0000\u0000\u0000ڬß\u0001\u0000\u0000\u0000ڭڮ\u0005Ž\u0000\u0000ڮگ\u0003Ē‰\u0000گڰ\u0005\u0000\u0000ڰڻ\u0003®W\u0000ڱڲ\u0005Ħ\u0000\u0000ڲڴ\u0003®W\u0000ڳڱ\u0001\u0000\u0000\u0000ڳڴ\u0001\u0000\u0000\u0000ڴڵ\u0001\u0000\u0000\u0000ڵڶ\u0005\u001d\u0000\u0000ڶڼ\u0003®" -+ "W\u0000ڷڸ\u0005Ħ\u0000\u0000ڸں\u0003®W\u0000ڹڷ\u0001\u0000\u0000\u0000ڹں\u0001\u0000\u0000\u0000ںڼ\u0001\u0000\u0000\u0000ڻڳ\u0001\u0000\u0000\u0000ڻڹ\u0001\u0000\u0000\u0000ڼڽ\u0001\u0000\u0000\u0000ڽھ\u0005Ò\u0000\u0000ھá\u0001\u0000\u0000\u0000ڿۃ\u0005Ž\u0000\u0000ۀہ\u0003Ē‰\u0000ہۂ\u0005`\u0000\u0000ۂۄ\u0001\u0000\u0000\u0000ۃۀ\u0001\u0000\u0000\u0000ۃۄ\u0001\u0000\u0000\u0000ۄۅ\u0001\u0000\u0000\u0000ۅۈ\u0003r9\u0000ۆۇ\u0005Ħ\u0000\u0000ۇۉ\u0003®W\u0000ۈۆ\u0001\u0000\u0000\u0000ۈۉ\u0001\u0000\u0000\u0000ۉۊ\u0001\u0000\u0000\u0000ۊۋ\u0005\u001d\u0000\u0000ۋی\u0003®W\u0000یۍ\u0005Ò\u0000\u0000ۍã\u0001\u0000\u0000\u0000ێۏ\u0005Ö\u0000\u0000ۏې\u0005—\u0000\u0000ېۑ\u0003Ē‰\u0000ۑے\u0005`\u0000\u0000ےۓ\u0003®W\u0000ۓ۔\u0005.\u0000\u0000۔ە\u0003Ē‰\u0000ەۖ\u0005\u0000\u0000ۖۗ\u0003®W\u0000ۗۘ\u0005\u001d\u0000\u0000ۘۙ\u0003®W\u0000ۙۚ\u0005é\u0000\u0000ۚå\u0001\u0000\u0000\u0000ۛۜ\u0007\u0017\u0000\u0000ۜ۝\u0005—\u0000\u0000۝۞\u0003Ē‰\u0000۞۟\u0005\u0000\u0000۟ۢ\u0003®W\u0000۠ۡ\u0005Ħ\u0000\u0000ۣۡ\u0003®W\u0000ۢ۠\u0001\u0000\u0000\u0000ۣۢ\u0001\u0000\u0000\u0000ۣۤ\u0001\u0000\u0000\u0000ۤۥ\u0005é\u0000\u0000ۥç\u0001\u0000\u0000\u0000ۦۧ\u0005­\u0000\u0000ۧۨ\u0005—\u0000\u0000ۨ۫\u0003®W\u0000۩۪\u0005.\u0000\u0000۪۬\u0003¼^\u0000۫۩\u0001\u0000\u0000\u0000۫۬\u0001\u0000\u0000\u0000ۭ۬\u0001\u0000\u0000\u0000ۭۮ\u0005é\u0000\u0000ۮé\u0001\u0000\u0000\u0000ۯ۰\u0005Ē\u0000\u0000۰۸\u0005—\u0000\u0000۱۳\u0007\u0018\u0000\u0000۲۱\u0001\u0000\u0000\u0000۲۳\u0001\u0000\u0000\u0000۳۵\u0001\u0000\u0000\u0000۴۶\u0003®W\u0000۵۴\u0001\u0000\u0000\u0000۵۶\u0001\u0000\u0000\u0000۶۷\u0001\u0000\u0000\u0000۷۹\u0005n\u0000\u0000۸۲\u0001\u0000\u0000\u0000۸۹\u0001\u0000\u0000\u0000۹ۺ\u0001\u0000\u0000\u0000ۺۻ\u0003®W\u0000ۻۼ\u0005é\u0000\u0000ۼë\u0001\u0000\u0000\u0000۽۾\u0003r9\u0000۾í\u0001\u0000\u0000\u0000ۿ܀\u0003h4\u0000܀ï\u0001\u0000\u0000\u0000܁܂\u0005—\u0000\u0000܂܃\u0003®W\u0000" -+ "܃܄\u0005é\u0000\u0000܄ñ\u0001\u0000\u0000\u0000܅܆\u0003Ē‰\u0000܆܏\u0005\u0000\u0000܇܌\u0003ôz\u0000܈܉\u0005.\u0000\u0000܉܋\u0003ôz\u0000܊܈\u0001\u0000\u0000\u0000܋\u070e\u0001\u0000\u0000\u0000܌܊\u0001\u0000\u0000\u0000܌܍\u0001\u0000\u0000\u0000܍ܐ\u0001\u0000\u0000\u0000\u070e܌\u0001\u0000\u0000\u0000܏܇\u0001\u0000\u0000\u0000܏ܐ\u0001\u0000\u0000\u0000ܐܑ\u0001\u0000\u0000\u0000ܑܒ\u0005Ó\u0000\u0000ܒó\u0001\u0000\u0000\u0000ܓܔ\u0003Ą‚\u0000ܔܕ\u0005,\u0000\u0000ܕܖ\u0003®W\u0000ܖܜ\u0001\u0000\u0000\u0000ܗܜ\u0003Êe\u0000ܘܜ\u0003Ē‰\u0000ܙܚ\u0005O\u0000\u0000ܚܜ\u0005ĉ\u0000\u0000ܛܓ\u0001\u0000\u0000\u0000ܛܗ\u0001\u0000\u0000\u0000ܛܘ\u0001\u0000\u0000\u0000ܛܙ\u0001\u0000\u0000\u0000ܜõ\u0001\u0000\u0000\u0000ܝܞ\u00058\u0000\u0000ܞܟ\u0005—\u0000\u0000ܟܠ\u0005ĉ\u0000\u0000ܠܡ\u0005é\u0000\u0000ܡ÷\u0001\u0000\u0000\u0000ܢܣ\u0005e\u0000\u0000ܣܬ\u0005\u0000\u0000ܤܭ\u0003\u0004\u0002\u0000ܥܧ\u00038\u001c\u0000ܦܥ\u0001\u0000\u0000\u0000ܦܧ\u0001\u0000\u0000\u0000ܧܨ\u0001\u0000\u0000\u0000ܨܪ\u0003\\.\u0000ܩܫ\u0003$\u0012\u0000ܪܩ\u0001\u0000\u0000\u0000ܪܫ\u0001\u0000\u0000\u0000ܫܭ\u0001\u0000\u0000\u0000ܬܤ\u0001\u0000\u0000\u0000ܬܦ\u0001\u0000\u0000\u0000ܭܮ\u0001\u0000\u0000\u0000ܮܯ\u0005Ó\u0000\u0000ܯù\u0001\u0000\u0000\u0000ܱܰ\u00058\u0000\u0000ܱܺ\u0005\u0000\u0000ܻܲ\u0003\u0004\u0002\u0000ܳܵ\u00038\u001c\u0000ܴܳ\u0001\u0000\u0000\u0000ܴܵ\u0001\u0000\u0000\u0000ܵܶ\u0001\u0000\u0000\u0000ܸܶ\u0003\\.\u0000ܷܹ\u0003$\u0012\u0000ܸܷ\u0001\u0000\u0000\u0000ܸܹ\u0001\u0000\u0000\u0000ܹܻ\u0001\u0000\u0000\u0000ܺܲ\u0001\u0000\u0000\u0000ܴܺ\u0001\u0000\u0000\u0000ܻܼ\u0001\u0000\u0000\u0000ܼܽ\u0005Ó\u0000\u0000ܽû\u0001\u0000\u0000\u0000ܾܿ\u0005+\u0000\u0000ܿ݀\u0005\u0000\u0000݀݁\u0003\u0004\u0002\u0000݂݁\u0005Ó\u0000\u0000݂ý\u0001\u0000\u0000\u0000݃݅\u0005\u0000\u0000݄݃\u0001\u0000\u0000\u0000݄݅\u0001\u0000\u0000\u0000݆݅\u0001\u0000\u0000\u0000݆݇\u0007\u0019\u0000\u0000݇ÿ\u0001\u0000\u0000\u0000݈݊\u0005\u0000\u0000݈݉\u0001\u0000\u0000\u0000݉݊\u0001\u0000\u0000\u0000݊\u074b\u0001\u0000\u0000\u0000\u074b\u074c" -+ "\u0005\u0005\u0000\u0000\u074cā\u0001\u0000\u0000\u0000ݍݖ\u0005Ž\u0000\u0000ݎݓ\u0003®W\u0000ݏݐ\u0005.\u0000\u0000ݐݒ\u0003®W\u0000ݑݏ\u0001\u0000\u0000\u0000ݒݕ\u0001\u0000\u0000\u0000ݓݑ\u0001\u0000\u0000\u0000ݓݔ\u0001\u0000\u0000\u0000ݔݗ\u0001\u0000\u0000\u0000ݕݓ\u0001\u0000\u0000\u0000ݖݎ\u0001\u0000\u0000\u0000ݖݗ\u0001\u0000\u0000\u0000ݗݘ\u0001\u0000\u0000\u0000ݘݙ\u0005Ò\u0000\u0000ݙă\u0001\u0000\u0000\u0000ݚݛ\u0003ʂŁ\u0000ݛą\u0001\u0000\u0000\u0000ݜݝ\u0005L\u0000\u0000ݝݞ\u0003Ĉ„\u0000ݞć\u0001\u0000\u0000\u0000ݟݤ\u0003ʂŁ\u0000ݠݤ\u0005\u0005\u0000\u0000ݡݤ\u0005\u0007\u0000\u0000ݢݤ\u0005į\u0000\u0000ݣݟ\u0001\u0000\u0000\u0000ݣݠ\u0001\u0000\u0000\u0000ݣݡ\u0001\u0000\u0000\u0000ݣݢ\u0001\u0000\u0000\u0000ݤĉ\u0001\u0000\u0000\u0000ݥݦ\u0003χ\u0000ݦݨ\u0005—\u0000\u0000ݧݩ\u0007\u0000\u0000\u0000ݨݧ\u0001\u0000\u0000\u0000ݨݩ\u0001\u0000\u0000\u0000ݩݲ\u0001\u0000\u0000\u0000ݪݯ\u0003Ȇ\u0000ݫݬ\u0005.\u0000\u0000ݬݮ\u0003Ȇ\u0000ݭݫ\u0001\u0000\u0000\u0000ݮݱ\u0001\u0000\u0000\u0000ݯݭ\u0001\u0000\u0000\u0000ݯݰ\u0001\u0000\u0000\u0000ݰݳ\u0001\u0000\u0000\u0000ݱݯ\u0001\u0000\u0000\u0000ݲݪ\u0001\u0000\u0000\u0000ݲݳ\u0001\u0000\u0000\u0000ݳݴ\u0001\u0000\u0000\u0000ݴݵ\u0005é\u0000\u0000ݵċ\u0001\u0000\u0000\u0000ݶݷ\u0003®W\u0000ݷč\u0001\u0000\u0000\u0000ݸݹ\u0003Ј\u0000ݹݺ\u0003ʂŁ\u0000ݺď\u0001\u0000\u0000\u0000ݻݼ\u0003ʂŁ\u0000ݼݽ\u0005O\u0000\u0000ݽݿ\u0001\u0000\u0000\u0000ݾݻ\u0001\u0000\u0000\u0000ݿނ\u0001\u0000\u0000\u0000ހݾ\u0001\u0000\u0000\u0000ހށ\u0001\u0000\u0000\u0000ށđ\u0001\u0000\u0000\u0000ނހ\u0001\u0000\u0000\u0000ރބ\u0003ʂŁ\u0000ބē\u0001\u0000\u0000\u0000ޅފ\u0003ʂŁ\u0000ކއ\u0005.\u0000\u0000އމ\u0003ʂŁ\u0000ވކ\u0001\u0000\u0000\u0000މތ\u0001\u0000\u0000\u0000ފވ\u0001\u0000\u0000\u0000ފދ\u0001\u0000\u0000\u0000ދĕ\u0001\u0000\u0000\u0000ތފ\u0001\u0000\u0000\u0000ލޒ\u0003ʌ\u0000ގޏ\u0005\u001d\u0000\u0000ޏޑ\u0003ʌ\u0000ސގ\u0001\u0000\u0000\u0000ޑޔ\u0001\u0000\u0000\u0000ޒސ\u0001\u0000\u0000\u0000ޒޓ\u0001\u0000\u0000\u0000ޓė\u0001\u0000\u0000\u0000ޔޒ\u0001\u0000\u0000\u0000ޕޗ\u0003Ě" -+ "\u0000ޖޘ\u0003ĜŽ\u0000ޗޖ\u0001\u0000\u0000\u0000ޗޘ\u0001\u0000\u0000\u0000ޘޜ\u0001\u0000\u0000\u0000ޙޛ\u0003Џ\u0000ޚޙ\u0001\u0000\u0000\u0000ޛޞ\u0001\u0000\u0000\u0000ޜޚ\u0001\u0000\u0000\u0000ޜޝ\u0001\u0000\u0000\u0000ޝę\u0001\u0000\u0000\u0000ޞޜ\u0001\u0000\u0000\u0000ޟߡ\u0005°\u0000\u0000ޠߡ\u0005²\u0000\u0000ޡߡ\u0005\u001f\u0000\u0000ޢߡ\u0005 \u0000\u0000ޣߡ\u0005ġ\u0000\u0000ޤߡ\u0005ā\u0000\u0000ޥߡ\u0005…\u0000\u0000ަި\u0005ú\u0000\u0000ާަ\u0001\u0000\u0000\u0000ާި\u0001\u0000\u0000\u0000ިީ\u0001\u0000\u0000\u0000ީߡ\u0005†\u0000\u0000ުߡ\u0005k\u0000\u0000ޫߡ\u0005?\u0000\u0000ެޭ\u0005•\u0000\u0000ޭߡ\u0007\u001a\u0000\u0000ޮޯ\u0005ĭ\u0000\u0000ޯߡ\u0007\u001a\u0000\u0000ްޱ\u0005Ĉ\u0000\u0000ޱ\u07b5\u0007\u001b\u0000\u0000\u07b2\u07b6\u0005ċ\u0000\u0000\u07b3\u07b4\u0005Ĉ\u0000\u0000\u07b4\u07b6\u0005Ĭ\u0000\u0000\u07b5\u07b2\u0001\u0000\u0000\u0000\u07b5\u07b3\u0001\u0000\u0000\u0000\u07b6ߡ\u0001\u0000\u0000\u0000\u07b7\u07b8\u0005Ċ\u0000\u0000\u07b8\u07bc\u0007\u001b\u0000\u0000\u07b9\u07bd\u0005ċ\u0000\u0000\u07ba\u07bb\u0005Ĉ\u0000\u0000\u07bb\u07bd\u0005Ĭ\u0000\u0000\u07bc\u07b9\u0001\u0000\u0000\u0000\u07bc\u07ba\u0001\u0000\u0000\u0000\u07bdߡ\u0001\u0000\u0000\u0000\u07beߡ\u0005V\u0000\u0000\u07bfߡ\u0005Ã\u0000\u0000߀ߡ\u0005©\u0000\u0000߁ߡ\u0005ģ\u0000\u0000߂ߡ\u0005Ú\u0000\u0000߃ߡ\u0005X\u0000\u0000߄ߡ\u0005š\u0000\u0000߅߆\u0007\u001c\u0000\u0000߆߇\u0005˜\u0000\u0000߇߈\u0003Ė‹\u0000߈߉\u0005x\u0000\u0000߉ߡ\u0001\u0000\u0000\u0000ߊߡ\u0005¾\u0000\u0000ߋߡ\u0005¿\u0000\u0000ߌߍ\u0005Í\u0000\u0000ߍߡ\u0005Ġ\u0000\u0000ߎߞ\u0005\u0015\u0000\u0000ߏߟ\u0005©\u0000\u0000ߐߟ\u0005ģ\u0000\u0000ߑߟ\u0005Ú\u0000\u0000ߒߟ\u0005X\u0000\u0000ߓߟ\u0005š\u0000\u0000ߔߕ\u0005Í\u0000\u0000ߕߟ\u0005Ġ\u0000\u0000ߖߘ\u0005Ġ\u0000\u0000ߗߖ\u0001\u0000\u0000\u0000ߗߘ\u0001\u0000\u0000\u0000ߘߙ\u0001\u0000\u0000\u0000ߙߚ\u0005˜\u0000\u0000ߚߛ\u0003Ė‹\u0000ߛߜ\u0005x\u0000\u0000ߜߟ\u0001\u0000\u0000\u0000ߝߟ\u0005Ġ\u0000\u0000ߞߏ\u0001\u0000\u0000\u0000ߞߐ\u0001\u0000\u0000\u0000ߞߑ\u0001\u0000\u0000\u0000ߞߒ\u0001\u0000\u0000\u0000ߞߓ\u0001\u0000\u0000\u0000ߞߔ\u0001\u0000\u0000\u0000ߞߗ\u0001\u0000\u0000\u0000" -+ "ߞߝ\u0001\u0000\u0000\u0000ߞߟ\u0001\u0000\u0000\u0000ߟߡ\u0001\u0000\u0000\u0000ߠޟ\u0001\u0000\u0000\u0000ߠޠ\u0001\u0000\u0000\u0000ߠޡ\u0001\u0000\u0000\u0000ߠޢ\u0001\u0000\u0000\u0000ߠޣ\u0001\u0000\u0000\u0000ߠޤ\u0001\u0000\u0000\u0000ߠޥ\u0001\u0000\u0000\u0000ߠާ\u0001\u0000\u0000\u0000ߠު\u0001\u0000\u0000\u0000ߠޫ\u0001\u0000\u0000\u0000ߠެ\u0001\u0000\u0000\u0000ߠޮ\u0001\u0000\u0000\u0000ߠް\u0001\u0000\u0000\u0000ߠ\u07b7\u0001\u0000\u0000\u0000ߠ\u07be\u0001\u0000\u0000\u0000ߠ\u07bf\u0001\u0000\u0000\u0000ߠ߀\u0001\u0000\u0000\u0000ߠ߁\u0001\u0000\u0000\u0000ߠ߂\u0001\u0000\u0000\u0000ߠ߃\u0001\u0000\u0000\u0000ߠ߄\u0001\u0000\u0000\u0000ߠ߅\u0001\u0000\u0000\u0000ߠߊ\u0001\u0000\u0000\u0000ߠߋ\u0001\u0000\u0000\u0000ߠߌ\u0001\u0000\u0000\u0000ߠߎ\u0001\u0000\u0000\u0000ߡě\u0001\u0000\u0000\u0000ߢߣ\u0005¯\u0000\u0000ߣߦ\u0005²\u0000\u0000ߤߦ\u0005\u0000\u0000ߥߢ\u0001\u0000\u0000\u0000ߥߤ\u0001\u0000\u0000\u0000ߦĝ\u0001\u0000\u0000\u0000ߧߩ\u0007\u001c\u0000\u0000ߨߪ\u0003ĜŽ\u0000ߩߨ\u0001\u0000\u0000\u0000ߩߪ\u0001\u0000\u0000\u0000ߪğ\u0001\u0000\u0000\u0000߫߭\u0003\n\u0005\u0000߬߫\u0001\u0000\u0000\u0000߬߭\u0001\u0000\u0000\u0000߭\u07fb\u0001\u0000\u0000\u0000߮\u07fc\u0003Ģ‘\u0000߯\u07fc\u0003Ĥ’\u0000߰\u07fc\u0003ž¿\u0000߱\u07fc\u0003ƀÀ\u0000߲\u07fc\u0003ƄÂ\u0000߳\u07fc\u0003ƆÃ\u0000ߴ\u07fc\u0003ƂÁ\u0000ߵ\u07fc\u0003ɈĤ\u0000߶\u07fc\u0003Ɋĥ\u0000߷\u07fc\u0003ƎÇ\u0000߸\u07fc\u0003ƘÌ\u0000߹\u07fc\u0003Ħ“\u0000ߺ\u07fc\u0003Ĵš\u0000\u07fb߮\u0001\u0000\u0000\u0000\u07fb߯\u0001\u0000\u0000\u0000\u07fb߰\u0001\u0000\u0000\u0000\u07fb߱\u0001\u0000\u0000\u0000\u07fb߲\u0001\u0000\u0000\u0000\u07fb߳\u0001\u0000\u0000\u0000\u07fbߴ\u0001\u0000\u0000\u0000\u07fbߵ\u0001\u0000\u0000\u0000\u07fb߶\u0001\u0000\u0000\u0000\u07fb߷\u0001\u0000\u0000\u0000\u07fb߸\u0001\u0000\u0000\u0000\u07fb߹\u0001\u0000\u0000\u0000\u07fbߺ\u0001\u0000\u0000\u0000\u07fcġ\u0001\u0000\u0000\u0000߽ࠀ\u00059\u0000\u0000߾߿\u0005º\u0000\u0000߿ࠁ\u0005Þ\u0000\u0000ࠀ߾\u0001\u0000\u0000\u0000ࠀࠁ\u0001\u0000\u0000\u0000ࠁࠉ\u0001\u0000\u0000\u0000ࠂࠊ\u0003ɖī\u0000ࠃࠊ\u0003ȰĘ\u0000ࠄࠊ\u0003ޱ\u0000ࠅࠊ\u0003Ȳę\u0000ࠆࠊ\u0003Ũ´\u0000ࠇࠊ\u0003ƞÏ\u0000ࠈࠊ\u0003ƪÕ\u0000ࠉࠂ" -+ "\u0001\u0000\u0000\u0000ࠉࠃ\u0001\u0000\u0000\u0000ࠉࠄ\u0001\u0000\u0000\u0000ࠉࠅ\u0001\u0000\u0000\u0000ࠉࠆ\u0001\u0000\u0000\u0000ࠉࠇ\u0001\u0000\u0000\u0000ࠉࠈ\u0001\u0000\u0000\u0000ࠊģ\u0001\u0000\u0000\u0000ࠋࠓ\u0005S\u0000\u0000ࠌࠔ\u0003ɘĬ\u0000ࠍࠔ\u0003Ŧ³\u0000ࠎࠔ\u0003ȼĞ\u0000ࠏࠔ\u0003Ÿ¼\u0000ࠐࠔ\u0003ƠÐ\u0000ࠑࠔ\u0003ƔÊ\u0000ࠒࠔ\u0003ƬÖ\u0000ࠓࠌ\u0001\u0000\u0000\u0000ࠓࠍ\u0001\u0000\u0000\u0000ࠓࠎ\u0001\u0000\u0000\u0000ࠓࠏ\u0001\u0000\u0000\u0000ࠓࠐ\u0001\u0000\u0000\u0000ࠓࠑ\u0001\u0000\u0000\u0000ࠓࠒ\u0001\u0000\u0000\u0000ࠔĥ\u0001\u0000\u0000\u0000ࠕࠦ\u0005ù\u0000\u0000ࠖࠧ\u0003ɦij\u0000ࠗࠧ\u0003ŀ \u0000࠘ࠧ\u0003Ljä\u0000࠙ࠧ\u0003ɐĨ\u0000ࠚࠧ\u0003Ŋ¥\u0000ࠛࠧ\u0003ĺ\u0000ࠜࠧ\u0003njæ\u0000ࠝࠧ\u0003ň¤\u0000ࠞࠧ\u0003ǎç\u0000ࠟࠧ\u0003ƤÒ\u0000ࠠࠧ\u0003ƖË\u0000ࠡࠧ\u0003Ŗ«\u0000ࠢࠧ\u0003NJå\u0000ࠣࠧ\u0003Œ©\u0000ࠤࠧ\u0003ǐè\u0000ࠥࠧ\u0003džã\u0000ࠦࠖ\u0001\u0000\u0000\u0000ࠦࠗ\u0001\u0000\u0000\u0000ࠦ࠘\u0001\u0000\u0000\u0000ࠦ࠙\u0001\u0000\u0000\u0000ࠦࠚ\u0001\u0000\u0000\u0000ࠦࠛ\u0001\u0000\u0000\u0000ࠦࠜ\u0001\u0000\u0000\u0000ࠦࠝ\u0001\u0000\u0000\u0000ࠦࠞ\u0001\u0000\u0000\u0000ࠦࠟ\u0001\u0000\u0000\u0000ࠦࠠ\u0001\u0000\u0000\u0000ࠦࠡ\u0001\u0000\u0000\u0000ࠦࠢ\u0001\u0000\u0000\u0000ࠦࠣ\u0001\u0000\u0000\u0000ࠦࠤ\u0001\u0000\u0000\u0000ࠦࠥ\u0001\u0000\u0000\u0000ࠧħ\u0001\u0000\u0000\u0000ࠨࠪ\u0003ݘ\u0000ࠩࠫ\u0003\u0010\u0008\u0000ࠪࠩ\u0001\u0000\u0000\u0000ࠪࠫ\u0001\u0000\u0000\u0000ࠫ\u082e\u0001\u0000\u0000\u0000ࠬ\u082e\u0003$\u0012\u0000࠭ࠨ\u0001\u0000\u0000\u0000࠭ࠬ\u0001\u0000\u0000\u0000\u082eĩ\u0001\u0000\u0000\u0000\u082f࠲\u0003Ē‰\u0000࠰࠱\u0005\u0017\u0000\u0000࠱࠳\u0003Ē‰\u0000࠲࠰\u0001\u0000\u0000\u0000࠲࠳\u0001\u0000\u0000\u0000࠳ī\u0001\u0000\u0000\u0000࠴࠵\u0007\u0003\u0000\u0000࠵࠶\u0003Ā€\u0000࠶ĭ\u0001\u0000\u0000\u0000࠷࠸\u0005’\u0000\u0000࠸࠹\u0003Ā€\u0000࠹į\u0001\u0000\u0000\u0000࠺ࡄ\u0005ī\u0000\u0000࠻ࡅ\u0005ĉ\u0000\u0000࠼ࡁ\u0003Ī•\u0000࠽࠾\u0005.\u0000\u0000࠾ࡀ\u0003Ī•\u0000\u083f࠽\u0001\u0000\u0000\u0000ࡀࡃ\u0001\u0000" -+ "\u0000\u0000ࡁ\u083f\u0001\u0000\u0000\u0000ࡁࡂ\u0001\u0000\u0000\u0000ࡂࡅ\u0001\u0000\u0000\u0000ࡃࡁ\u0001\u0000\u0000\u0000ࡄ࠻\u0001\u0000\u0000\u0000ࡄ࠼\u0001\u0000\u0000\u0000ࡅࡇ\u0001\u0000\u0000\u0000ࡆࡈ\u0003\u001e\u000f\u0000ࡇࡆ\u0001\u0000\u0000\u0000ࡇࡈ\u0001\u0000\u0000\u0000ࡈࡊ\u0001\u0000\u0000\u0000ࡉࡋ\u0003Ĭ–\u0000ࡊࡉ\u0001\u0000\u0000\u0000ࡊࡋ\u0001\u0000\u0000\u0000ࡋࡍ\u0001\u0000\u0000\u0000ࡌࡎ\u0003Į—\u0000ࡍࡌ\u0001\u0000\u0000\u0000ࡍࡎ\u0001\u0000\u0000\u0000ࡎࡐ\u0001\u0000\u0000\u0000ࡏࡑ\u0003$\u0012\u0000ࡐࡏ\u0001\u0000\u0000\u0000ࡐࡑ\u0001\u0000\u0000\u0000ࡑı\u0001\u0000\u0000\u0000ࡒࡓ\u0005¸\u0000\u0000ࡓࡔ\u0003ɾĿ\u0000ࡔij\u0001\u0000\u0000\u0000ࡕࡖ\u0005ą\u0000\u0000ࡖࡗ\u0003Ŕª\u0000ࡗĵ\u0001\u0000\u0000\u0000ࡘ࡛\u0003Ĵš\u0000࡙࡛\u0003ĸœ\u0000࡚ࡘ\u0001\u0000\u0000\u0000࡚࡙\u0001\u0000\u0000\u0000࡛ķ\u0001\u0000\u0000\u0000\u085cࡣ\u0005ù\u0000\u0000\u085dࡤ\u0003ĺ\u0000࡞ࡤ\u0003ŀ \u0000\u085fࡤ\u0003Ŋ¥\u0000ࡠࡤ\u0003ň¤\u0000ࡡࡤ\u0003Ŗ«\u0000ࡢࡤ\u0003Œ©\u0000ࡣ\u085d\u0001\u0000\u0000\u0000ࡣ࡞\u0001\u0000\u0000\u0000ࡣ\u085f\u0001\u0000\u0000\u0000ࡣࡠ\u0001\u0000\u0000\u0000ࡣࡡ\u0001\u0000\u0000\u0000ࡣࡢ\u0001\u0000\u0000\u0000ࡤĹ\u0001\u0000\u0000\u0000ࡥࡧ\u0003ļž\u0000ࡦࡥ\u0001\u0000\u0000\u0000ࡦࡧ\u0001\u0000\u0000\u0000ࡧࡨ\u0001\u0000\u0000\u0000ࡨࡩ\u0003ľŸ\u0000ࡩĻ\u0001\u0000\u0000\u0000ࡪ\u086b\u0007\u001d\u0000\u0000\u086bĽ\u0001\u0000\u0000\u0000\u086c\u086e\u0003", -"Ȃā\u0000\u086d\u086f\u0003Ĩ”\u0000\u086e\u086d\u0001\u0000\u0000\u0000\u086e\u086f\u0001\u0000\u0000\u0000\u086f\u0871\u0001\u0000\u0000\u0000\u0870\u0872\u0003Ķ›\u0000\u0871\u0870\u0001\u0000\u0000\u0000\u0871\u0872\u0001\u0000\u0000\u0000\u0872Ŀ\u0001\u0000\u0000\u0000\u0873\u0875\u0005\u0012\u0000\u0000\u0874\u0873\u0001\u0000\u0000\u0000\u0874\u0875\u0001\u0000\u0000\u0000\u0875\u0876\u0001\u0000\u0000\u0000\u0876\u0891\u0003ņ£\u0000\u0877\u0879\u0003ł¡\u0000\u0878\u0877\u0001\u0000\u0000\u0000\u0878\u0879\u0001\u0000\u0000\u0000\u0879\u087a\u0001\u0000\u0000\u0000\u087a\u087b\u0003ń¢\u0000\u087b\u087c\u0003ņ£\u0000\u087c\u0891\u0001\u0000\u0000\u0000\u087d\u087f\u0003ł¡\u0000\u087e\u087d\u0001\u0000\u0000\u0000\u087e\u087f\u0001\u0000\u0000\u0000\u087f\u0880\u0001\u0000\u0000\u0000\u0880\u0881\u0005‰\u0000\u0000\u0881\u0891\u0003ņ£\u0000\u0882\u0884\u0003ł¡\u0000\u0883\u0882\u0001\u0000\u0000\u0000\u0883\u0884\u0001\u0000\u0000\u0000\u0884\u0885\u0001\u0000\u0000\u0000\u0885\u0886\u0005Í\u0000\u0000\u0886\u0887\u0005Ĕ\u0000\u0000\u0887\u0891\u0003ņ£\u0000\u0888\u088a\u0003ł¡\u0000\u0889\u0888\u0001\u0000\u0000\u0000\u0889\u088a\u0001\u0000\u0000\u0000\u088a\u088c\u0001\u0000\u0000\u0000\u088b\u088d\u0005Í\u0000\u0000\u088c\u088b\u0001\u0000\u0000\u0000\u088c\u088d\u0001\u0000\u0000\u0000\u088d\u088e\u0001\u0000\u0000\u0000\u088e\u088f\u0007\u001e\u0000\u0000\u088f\u0891\u0003ņ£\u0000\u0890\u0874\u0001\u0000\u0000\u0000\u0890\u0878\u0001\u0000\u0000\u0000\u0890\u087e\u0001\u0000\u0000\u0000\u0890\u0883\u0001\u0000\u0000\u0000\u0890\u0889\u0001\u0000\u0000\u0000\u0891Ł\u0001\u0000\u0000\u0000\u0892\u0895\u0005©\u0000\u0000\u0893\u0895\u0007\u001f\u0000\u0000\u0894\u0892\u0001\u0000\u0000\u0000\u0894\u0893\u0001\u0000\u0000\u0000\u0895Ń\u0001\u0000\u0000\u0000\u0896\u089d\u0005d\u0000\u0000\u0897\u089d\u0005c\u0000\u0000\u0898\u0899\u0005Í\u0000\u0000\u0899\u089d\u0005d\u0000\u0000\u089a\u089b\u0005Í\u0000\u0000\u089b\u089d\u0005c\u0000\u0000\u089c\u0896\u0001\u0000\u0000\u0000\u089c\u0897\u0001\u0000\u0000\u0000\u089c\u0898\u0001\u0000\u0000\u0000\u089c\u089a\u0001\u0000\u0000\u0000\u089dŅ\u0001\u0000\u0000\u0000\u089eࢠ\u0003ȄĂ\u0000\u089fࢡ\u0003Ĩ”\u0000ࢠ\u089f\u0001\u0000\u0000\u0000ࢠࢡ\u0001\u0000\u0000\u0000ࢡࢣ\u0001\u0000\u0000\u0000ࢢࢤ\u0003Ķ›\u0000ࢣࢢ\u0001\u0000\u0000\u0000ࢣࢤ\u0001\u0000\u0000\u0000ࢤŇ\u0001\u0000\u0000\u0000ࢥࢧ\u0007 \u0000\u0000ࢦࢨ\u0003Ŏ§\u0000ࢧࢦ\u0001\u0000\u0000\u0000ࢧࢨ\u0001\u0000\u0000\u0000ࢨࢪ\u0001\u0000\u0000\u0000ࢩࢫ\u0003Ĩ”\u0000ࢪࢩ\u0001\u0000\u0000\u0000ࢪࢫ\u0001\u0000\u0000\u0000ࢫࢭ\u0001\u0000\u0000\u0000ࢬࢮ\u0003Ķ›\u0000ࢭࢬ\u0001\u0000\u0000" -+ "\u0000ࢭࢮ\u0001\u0000\u0000\u0000ࢮʼn\u0001\u0000\u0000\u0000ࢯࢱ\u0003Ő¨\u0000ࢰࢯ\u0001\u0000\u0000\u0000ࢰࢱ\u0001\u0000\u0000\u0000ࢱࢲ\u0001\u0000\u0000\u0000ࢲࢴ\u0003Ō¦\u0000ࢳ\u08b5\u0003Ŏ§\u0000ࢴࢳ\u0001\u0000\u0000\u0000ࢴ\u08b5\u0001\u0000\u0000\u0000\u08b5ࢷ\u0001\u0000\u0000\u0000ࢶࢸ\u0003Ĩ”\u0000ࢷࢶ\u0001\u0000\u0000\u0000ࢷࢸ\u0001\u0000\u0000\u0000ࢸࢺ\u0001\u0000\u0000\u0000ࢹࢻ\u0003Ķ›\u0000ࢺࢹ\u0001\u0000\u0000\u0000ࢺࢻ\u0001\u0000\u0000\u0000ࢻŋ\u0001\u0000\u0000\u0000ࢼࢽ\u0007!\u0000\u0000ࢽō\u0001\u0000\u0000\u0000ࢾࣅ\u0005a\u0000\u0000ࢿࣃ\u0005%\u0000\u0000ࣀࣁ\u0005;\u0000\u0000ࣁࣄ\u0005ĝ\u0000\u0000ࣂࣄ\u0003ʂŁ\u0000ࣃࣀ\u0001\u0000\u0000\u0000ࣃࣂ\u0001\u0000\u0000\u0000ࣄࣆ\u0001\u0000\u0000\u0000ࣅࢿ\u0001\u0000\u0000\u0000ࣅࣆ\u0001\u0000\u0000\u0000ࣆŏ\u0001\u0000\u0000\u0000ࣇ\u08cd\u0005\u0012\u0000\u0000\u08c8\u08c9\u0005$\u0000\u0000\u08c9\u08cd\u0005\u0000\u0000\u08ca\u08cb\u0005ĝ\u0000\u0000\u08cb\u08cd\u0005D\u0000\u0000\u08ccࣇ\u0001\u0000\u0000\u0000\u08cc\u08c8\u0001\u0000\u0000\u0000\u08cc\u08ca\u0001\u0000\u0000\u0000\u08cdő\u0001\u0000\u0000\u0000\u08ce\u08cf\u0003Ȇă\u0000\u08cf\u08d0\u0003Ś­\u0000\u08d0œ\u0001\u0000\u0000\u0000\u08d1\u08d2\u0003Ȇă\u0000\u08d2࣓\u0003Ś­\u0000࣓ŕ\u0001\u0000\u0000\u0000ࣔࣕ\u0003ج\u0000ࣕࣖ\u0003Ś­\u0000ࣖŗ\u0001\u0000\u0000\u0000ࣗࣘ\u0007\"\u0000\u0000ࣘř\u0001\u0000\u0000\u0000ࣙࣛ\u0003Ĩ”\u0000ࣚࣙ\u0001\u0000\u0000\u0000ࣚࣛ\u0001\u0000\u0000\u0000ࣛ࣡\u0001\u0000\u0000\u0000ࣜࣞ\u0003Ŝ®\u0000ࣝࣟ\u0003Ĩ”\u0000ࣞࣝ\u0001\u0000\u0000\u0000ࣞࣟ\u0001\u0000\u0000\u0000ࣟ࣡\u0001\u0000\u0000\u0000࣠ࣚ\u0001\u0000\u0000\u0000࣠ࣜ\u0001\u0000\u0000\u0000ࣣ࣡\u0001\u0000\u0000\u0000࣢ࣤ\u0003Ķ›\u0000ࣣ࣢\u0001\u0000\u0000\u0000ࣣࣤ\u0001\u0000\u0000\u0000ࣤś\u0001\u0000\u0000\u0000ࣥࣨ\u0003ɶĻ\u0000ࣦࣨ\u0003®W\u0000ࣧࣥ\u0001\u0000\u0000\u0000ࣦࣧ\u0001\u0000\u0000\u0000ࣨŝ\u0001\u0000\u0000\u0000ࣩ࣪\u0005—\u0000\u0000࣪࣫\u0003Ē‰\u0000࣫࣬\u0003„B\u0000࣭࣬\u0005é\u0000\u0000࣭ş\u0001\u0000\u0000\u0000࣮࣯\u0005—\u0000\u0000ࣱ࣯\u0005é\u0000\u0000ࣰࣲ\u0003H\u0000ࣰࣱ\u0001\u0000\u0000\u0000ࣱࣲ\u0001\u0000\u0000\u0000ࣲࣳ\u0001\u0000\u0000\u0000ࣳࣴ\u0003’I\u0000ࣴ" -+ "ࣵ\u0005Ž\u0000\u0000ࣶࣵ\u0003Ē‰\u0000ࣶࣷ\u0003†C\u0000ࣷࣸ\u0005Ò\u0000\u0000ࣺࣸ\u0003’I\u0000ࣹࣻ\u0003”J\u0000ࣺࣹ\u0001\u0000\u0000\u0000ࣺࣻ\u0001\u0000\u0000\u0000ࣻࣼ\u0001\u0000\u0000\u0000ࣼࣽ\u0005—\u0000\u0000ࣽࣾ\u0005é\u0000\u0000ࣾš\u0001\u0000\u0000\u0000ࣿँ\u00053\u0000\u0000ऀं\u0003ɨĴ\u0000ँऀ\u0001\u0000\u0000\u0000ँं\u0001\u0000\u0000\u0000ंआ\u0001\u0000\u0000\u0000ःऄ\u0005|\u0000\u0000ऄअ\u0005¯\u0000\u0000अइ\u0005e\u0000\u0000आः\u0001\u0000\u0000\u0000आइ\u0001\u0000\u0000\u0000इई\u0001\u0000\u0000\u0000ईऋ\u0005l\u0000\u0000उऌ\u0003ޯ\u0000ऊऌ\u0003Š°\u0000ऋउ\u0001\u0000\u0000\u0000ऋऊ\u0001\u0000\u0000\u0000ऌऍ\u0001\u0000\u0000\u0000ऍए\u0003Ť²\u0000ऎऐ\u0003IJ™\u0000एऎ\u0001\u0000\u0000\u0000एऐ\u0001\u0000\u0000\u0000ऐţ\u0001\u0000\u0000\u0000ऑऒ\u0005à\u0000\u0000ऒख\u0003ź½\u0000ओग\u0005-\u0000\u0000औक\u0005‡\u0000\u0000कग\u0007\u0012\u0000\u0000खओ\u0001\u0000\u0000\u0000खऔ\u0001\u0000\u0000\u0000गघ\u0001\u0000\u0000\u0000घङ\u0003Ė‹\u0000ङऱ\u0001\u0000\u0000\u0000चछ\u0005à\u0000\u0000छज\u0003ź½\u0000जञ\u0005‡\u0000\u0000झट\u0007#\u0000\u0000ञझ\u0001\u0000\u0000\u0000ञट\u0001\u0000\u0000\u0000टठ\u0001\u0000\u0000\u0000ठड\u0005Ę\u0000\u0000डऱ\u0001\u0000\u0000\u0000ढण\u0005à\u0000\u0000णत\u0003ź½\u0000तद\u0005‡\u0000\u0000थध\u0007#\u0000\u0000दथ\u0001\u0000\u0000\u0000दध\u0001\u0000\u0000\u0000धन\u0001\u0000\u0000\u0000नऩ\u0005‰\u0000\u0000ऩऱ\u0001\u0000\u0000\u0000पफ\u0005à\u0000\u0000फब\u0003ź½\u0000बभ\u0005‡\u0000\u0000भम\u0005¯\u0000\u0000मय\u0005²\u0000\u0000यऱ\u0001\u0000\u0000\u0000रऑ\u0001\u0000\u0000\u0000रच\u0001\u0000\u0000\u0000रढ\u0001\u0000\u0000\u0000रप\u0001\u0000\u0000\u0000ऱť\u0001\u0000\u0000\u0000लळ\u00053\u0000\u0000ळश\u0003ɨĴ\u0000ऴव\u0005|\u0000\u0000वष\u0005e\u0000\u0000शऴ\u0001\u0000\u0000\u0000शष\u0001\u0000\u0000\u0000षŧ\u0001\u0000\u0000\u0000सह\u0005Ñ\u0000\u0000हऺ\u0005€\u0000\u0000ऺ्\u0003Ūµ\u0000ऻ़\u0005Ć\u0000\u0000़ऽ\u0005€\u0000\u0000ऽ्\u0003" -+ "Ūµ\u0000ाि\u0005Ã\u0000\u0000िी\u0005€\u0000\u0000ी्\u0003Ūµ\u0000ुू\u0005Ģ\u0000\u0000ूृ\u0005€\u0000\u0000ृ्\u0003Ūµ\u0000ॄॅ\u0005–\u0000\u0000ॅॆ\u0005€\u0000\u0000ॆ्\u0003Ų¹\u0000ेै\u0005o\u0000\u0000ैॉ\u0005€\u0000\u0000ॉ्\u0003Ŭ¶\u0000ॊो\u0005€\u0000\u0000ो्\u0003Ūµ\u0000ौस\u0001\u0000\u0000\u0000ौऻ\u0001\u0000\u0000\u0000ौा\u0001\u0000\u0000\u0000ौु\u0001\u0000\u0000\u0000ौॄ\u0001\u0000\u0000\u0000ौे\u0001\u0000\u0000\u0000ौॊ\u0001\u0000\u0000\u0000्ũ\u0001\u0000\u0000\u0000ॎॐ\u0003ɨĴ\u0000ॏॎ\u0001\u0000\u0000\u0000ॏॐ\u0001\u0000\u0000\u0000ॐ॔\u0001\u0000\u0000\u0000॒॑\u0005|\u0000\u0000॒॓\u0005¯\u0000\u0000॓ॕ\u0005e\u0000\u0000॔॑\u0001\u0000\u0000\u0000॔ॕ\u0001\u0000\u0000\u0000ॕॖ\u0001\u0000\u0000\u0000ॖख़\u0005l\u0000\u0000ॗग़\u0003ޯ\u0000क़ग़\u0003Š°\u0000ख़ॗ\u0001\u0000\u0000\u0000ख़क़\u0001\u0000\u0000\u0000ग़ज़\u0001\u0000\u0000\u0000ज़ड़\u0005µ\u0000\u0000ड़फ़\u0003ź½\u0000ढ़य़\u0003IJ™\u0000फ़ढ़\u0001\u0000\u0000\u0000फ़य़\u0001\u0000\u0000\u0000य़ū\u0001\u0000\u0000\u0000ॠॢ\u0003ɨĴ\u0000ॡॠ\u0001\u0000\u0000\u0000ॡॢ\u0001\u0000\u0000\u0000ॢ०\u0001\u0000\u0000\u0000ॣ।\u0005|\u0000\u0000।॥\u0005¯\u0000\u0000॥१\u0005e\u0000\u0000०ॣ\u0001\u0000\u0000\u0000०१\u0001\u0000\u0000\u0000१२\u0001\u0000\u0000\u0000२५\u0005l\u0000\u0000३६\u0003Ů·\u0000४६\u0003۸\u0000५३\u0001\u0000\u0000\u0000५४\u0001\u0000\u0000\u0000६७\u0001\u0000\u0000\u0000७८\u0005µ\u0000\u0000८९\u0005W\u0000\u0000९॰\u0005Ž\u0000\u0000॰ॱ\u0003ż¾\u0000ॱॳ\u0005Ò\u0000\u0000ॲॴ\u0003IJ™\u0000ॳॲ\u0001\u0000\u0000\u0000ॳॴ\u0001\u0000\u0000\u0000ॴŭ\u0001\u0000\u0000\u0000ॵॶ\u0005—\u0000\u0000ॶॷ\u0003Ē‰\u0000ॷॸ\u0005,\u0000\u0000ॸॽ\u0003ʂŁ\u0000ॹॺ\u0005\u001d\u0000\u0000ॺॼ\u0003ʂŁ\u0000ॻॹ\u0001\u0000\u0000\u0000ॼॿ\u0001\u0000\u0000\u0000ॽॻ\u0001\u0000\u0000\u0000ॽॾ\u0001\u0000\u0000\u0000ॾঀ\u0001\u0000\u0000\u0000ॿॽ\u0001\u0000\u0000\u0000ঀঁ\u0005é\u0000\u0000ঁů\u0001\u0000\u0000\u0000ংঃ\u0005—\u0000\u0000ঃঅ\u0005é\u0000" -+ "\u0000\u0984আ\u0003H\u0000অ\u0984\u0001\u0000\u0000\u0000অআ\u0001\u0000\u0000\u0000আই\u0001\u0000\u0000\u0000ইঈ\u0003’I\u0000ঈউ\u0005Ž\u0000\u0000উঊ\u0003Ē‰\u0000ঊঋ\u0005,\u0000\u0000ঋঐ\u0003ʂŁ\u0000ঌ\u098d\u0005\u001d\u0000\u0000\u098dএ\u0003ʂŁ\u0000\u098eঌ\u0001\u0000\u0000\u0000এ\u0992\u0001\u0000\u0000\u0000ঐ\u098e\u0001\u0000\u0000\u0000ঐ\u0991\u0001\u0000\u0000\u0000\u0991ও\u0001\u0000\u0000\u0000\u0992ঐ\u0001\u0000\u0000\u0000ওঔ\u0005Ò\u0000\u0000ঔখ\u0003’I\u0000কগ\u0003”J\u0000খক\u0001\u0000\u0000\u0000খগ\u0001\u0000\u0000\u0000গঘ\u0001\u0000\u0000\u0000ঘঙ\u0005—\u0000\u0000ঙচ\u0005é\u0000\u0000চű\u0001\u0000\u0000\u0000ছঝ\u0003ɨĴ\u0000জছ\u0001\u0000\u0000\u0000জঝ\u0001\u0000\u0000\u0000ঝড\u0001\u0000\u0000\u0000ঞট\u0005|\u0000\u0000টঠ\u0005¯\u0000\u0000ঠঢ\u0005e\u0000\u0000ডঞ\u0001\u0000\u0000\u0000ডঢ\u0001\u0000\u0000\u0000ঢণ\u0001\u0000\u0000\u0000ণদ\u0005l\u0000\u0000তধ\u0003Ŵº\u0000থধ\u0003Ŷ»\u0000দত\u0001\u0000\u0000\u0000দথ\u0001\u0000\u0000\u0000ধন\u0001\u0000\u0000\u0000ন\u09a9\u0003ʂŁ\u0000\u09a9প\u0005—\u0000\u0000পফ\u0003Ē‰\u0000ফভ\u0005é\u0000\u0000বম\u0003IJ™\u0000ভব\u0001\u0000\u0000\u0000ভম\u0001\u0000\u0000\u0000মų\u0001\u0000\u0000\u0000যর\u0005—\u0000\u0000র\u09b1\u0003Ē‰\u0000\u09b1ল\u0005é\u0000\u0000ল\u09b3\u0005µ\u0000\u0000\u09b3\u09b4\u0005W\u0000\u0000\u09b4ŵ\u0001\u0000\u0000\u0000\u09b5শ\u0005—\u0000\u0000শস\u0005é\u0000\u0000ষহ\u0003H\u0000সষ\u0001\u0000\u0000\u0000সহ\u0001\u0000\u0000\u0000হ\u09ba\u0001\u0000\u0000\u0000\u09ba\u09bb\u0003’I\u0000\u09bb়\u0005Ž\u0000\u0000়ঽ\u0003Ē‰\u0000ঽা\u0005Ò\u0000\u0000াী\u0003’I\u0000িু\u0003”J\u0000ীি\u0001\u0000\u0000\u0000ীু\u0001\u0000\u0000\u0000ুূ\u0001\u0000\u0000\u0000ূৃ\u0005—\u0000\u0000ৃৄ\u0005é\u0000\u0000ৄ\u09c6\u0005µ\u0000\u0000\u09c5ে\u0005W\u0000\u0000\u09c6\u09c5\u0001\u0000\u0000\u0000\u09c6ে\u0001\u0000\u0000\u0000েŷ\u0001\u0000\u0000\u0000ৈ\u09c9\u0005€\u0000\u0000\u09c9ৌ\u0003ɨĴ\u0000\u09caো\u0005|\u0000\u0000ো্\u0005e\u0000\u0000ৌ\u09ca\u0001\u0000\u0000\u0000ৌ্\u0001\u0000\u0000\u0000্Ź\u0001\u0000\u0000\u0000ৎ" -+ "\u09cf\u0003Ē‰\u0000\u09cf\u09d0\u0003Êe\u0000\u09d0\u09d6\u0001\u0000\u0000\u0000\u09d1\u09d2\u0005—\u0000\u0000\u09d2\u09d3\u0003ż¾\u0000\u09d3\u09d4\u0005é\u0000\u0000\u09d4\u09d6\u0001\u0000\u0000\u0000\u09d5ৎ\u0001\u0000\u0000\u0000\u09d5\u09d1\u0001\u0000\u0000\u0000\u09d6Ż\u0001\u0000\u0000\u0000ৗ\u09d8\u0003Ē‰\u0000\u09d8য়\u0003Êe\u0000\u09d9\u09da\u0005.\u0000\u0000\u09da\u09db\u0003Ē‰\u0000\u09dbড়\u0003Êe\u0000ড়\u09de\u0001\u0000\u0000\u0000ঢ়\u09d9\u0001\u0000\u0000\u0000\u09deৡ\u0001\u0000\u0000\u0000য়ঢ়\u0001\u0000\u0000\u0000য়ৠ\u0001\u0000\u0000\u0000ৠŽ\u0001\u0000\u0000\u0000ৡয়\u0001\u0000\u0000\u0000ৢ২\u0005\u0013\u0000\u0000ৣ৩\u0003ɚĭ\u0000\u09e4৩\u0003ưØ\u0000\u09e5৩\u0003ɀĠ\u0000০৩\u0003ƲÙ\u0000১৩\u0003ƐÈ\u0000২ৣ\u0001\u0000\u0000\u0000২\u09e4\u0001\u0000\u0000\u0000২\u09e5\u0001\u0000\u0000\u0000২০\u0001\u0000\u0000\u0000২১\u0001\u0000\u0000\u0000৩ſ\u0001\u0000\u0000\u0000৪৮\u0005×\u0000\u0000৫৯\u0003ƢÑ\u0000৬৯\u0003ƒÉ\u0000৭৯\u0003Ʈ×\u0000৮৫\u0001\u0000\u0000\u0000৮৬\u0001\u0000\u0000\u0000৮৭\u0001\u0000\u0000\u0000৯Ɓ\u0001\u0000\u0000\u0000ৰ৻\u0005s\u0000\u0000ৱ৳\u0005~\u0000\u0000৲ৱ\u0001\u0000\u0000\u0000৲৳\u0001\u0000\u0000\u0000৳৴\u0001\u0000\u0000\u0000৴৵\u0003ǖë\u0000৵৶\u0005Č\u0000\u0000৶৷\u0003ƊÅ\u0000৷ৼ\u0001\u0000\u0000\u0000৸৹\u0003ƌÆ\u0000৹৺\u0003ƦÓ\u0000৺ৼ\u0001\u0000\u0000\u0000৻৲\u0001\u0000\u0000\u0000৻৸\u0001\u0000\u0000\u0000ৼƃ\u0001\u0000\u0000\u0000৽\u09ff\u0005F\u0000\u0000৾\u0a00\u0005~\u0000\u0000\u09ff৾\u0001\u0000\u0000\u0000\u09ff\u0a00\u0001\u0000\u0000\u0000\u0a00ਁ\u0001\u0000\u0000\u0000ਁਂ\u0003ǖë\u0000ਂਃ\u0005Č\u0000\u0000ਃ\u0a04\u0003ƊÅ\u0000\u0a04ƅ\u0001\u0000\u0000\u0000ਅਓ\u0005ä\u0000\u0000ਆਈ\u0007$\u0000\u0000ਇਆ\u0001\u0000\u0000\u0000ਇਈ\u0001\u0000\u0000\u0000ਈਊ\u0001\u0000\u0000\u0000ਉ\u0a0b\u0005~\u0000\u0000ਊਉ\u0001\u0000\u0000\u0000ਊ\u0a0b\u0001\u0000\u0000\u0000\u0a0b\u0a0c\u0001\u0000\u0000\u0000\u0a0c\u0a0d\u0003ǖë\u0000\u0a0d\u0a0e\u0005n\u0000\u0000\u0a0eਏ\u0003ƊÅ\u0000ਏਔ\u0001\u0000\u0000\u0000ਐ\u0a11\u0003ƌÆ\u0000\u0a11\u0a12\u0003ƨÔ\u0000\u0a12ਔ\u0001\u0000\u0000\u0000ਓਇ\u0001\u0000\u0000\u0000ਓਐ\u0001\u0000\u0000\u0000ਔƇ\u0001\u0000\u0000\u0000ਕਖ\u0003" -+ "ɬĶ\u0000ਖƉ\u0001\u0000\u0000\u0000ਗਘ\u0003ɬĶ\u0000ਘƋ\u0001\u0000\u0000\u0000ਙਚ\u0007%\u0000\u0000ਚƍ\u0001\u0000\u0000\u0000ਛਜ\u0005Y\u0000\u0000ਜਝ\u0005ò\u0000\u0000ਝਟ\u0003ɼľ\u0000ਞਠ\u0003IJ™\u0000ਟਞ\u0001\u0000\u0000\u0000ਟਠ\u0001\u0000\u0000\u0000ਠƏ\u0001\u0000\u0000\u0000ਡਢ\u0005ò\u0000\u0000ਢਣ\u0003ɼľ\u0000ਣਤ\u0005ô\u0000\u0000ਤਥ\u0003IJ™\u0000ਥƑ\u0001\u0000\u0000\u0000ਦਧ\u0005ò\u0000\u0000ਧਨ\u0003ɼľ\u0000ਨ\u0a29\u0005Č\u0000\u0000\u0a29ਪ\u0003ɼľ\u0000ਪƓ\u0001\u0000\u0000\u0000ਫਬ\u0005ò\u0000\u0000ਬਭ\u0003ɼľ\u0000ਭƕ\u0001\u0000\u0000\u0000ਮਰ\u0007&\u0000\u0000ਯ\u0a31\u0003Ĩ”\u0000ਰਯ\u0001\u0000\u0000\u0000ਰ\u0a31\u0001\u0000\u0000\u0000\u0a31Ɨ\u0001\u0000\u0000\u0000ਲ\u0a34\u0005T\u0000\u0000ਲ਼ਲ\u0001\u0000\u0000\u0000ਲ਼\u0a34\u0001\u0000\u0000\u0000\u0a34\u0a37\u0001\u0000\u0000\u0000ਵਸ\u0003ƚÍ\u0000ਸ਼ਸ\u0003ƜÎ\u0000\u0a37ਵ\u0001\u0000\u0000\u0000\u0a37ਸ਼\u0001\u0000\u0000\u0000ਸƙ\u0001\u0000\u0000\u0000ਹ\u0a3a\u0005B\u0000\u0000\u0a3a\u0a3b\u0007\'\u0000\u0000\u0a3b਼\u0005n\u0000\u0000਼\u0a3d\u0007&\u0000\u0000\u0a3dੂ\u0003ɼľ\u0000ਾਿ\u0005.\u0000\u0000ਿੁ\u0003ɼľ\u0000ੀਾ\u0001\u0000\u0000\u0000ੁ\u0a44\u0001\u0000\u0000\u0000ੂੀ\u0001\u0000\u0000\u0000ੂ\u0a43\u0001\u0000\u0000\u0000\u0a43ƛ\u0001\u0000\u0000\u0000\u0a44ੂ\u0001\u0000\u0000\u0000\u0a45\u0a46\u0005Õ\u0000\u0000\u0a46ੇ\u0007\'\u0000\u0000ੇƝ\u0001\u0000\u0000\u0000ੈ\u0a49\u0005å\u0000\u0000\u0a49੍\u0003ɪĵ\u0000\u0a4aੋ\u0005|\u0000\u0000ੋੌ\u0005¯\u0000\u0000ੌ\u0a4e\u0005e\u0000\u0000੍\u0a4a\u0001\u0000\u0000\u0000੍\u0a4e\u0001\u0000\u0000\u0000\u0a4e\u0a53\u0001\u0000\u0000\u0000\u0a4f\u0a50\u0005\u0017\u0000\u0000\u0a50ੑ\u00056\u0000\u0000ੑ\u0a52\u0005³\u0000\u0000\u0a52\u0a54\u0003ɪĵ\u0000\u0a53\u0a4f\u0001\u0000\u0000\u0000\u0a53\u0a54\u0001\u0000\u0000\u0000\u0a54Ɵ\u0001\u0000\u0000\u0000\u0a55\u0a56\u0005å\u0000\u0000\u0a56ਖ਼\u0003ɪĵ\u0000\u0a57\u0a58\u0005|\u0000\u0000\u0a58ਗ਼\u0005e\u0000\u0000ਖ਼\u0a57\u0001\u0000\u0000\u0000ਖ਼ਗ਼\u0001\u0000\u0000\u0000ਗ਼ơ\u0001\u0000\u0000\u0000ਜ਼ੜ\u0005å\u0000\u0000ੜ\u0a5f\u0003ɪĵ\u0000\u0a5dਫ਼\u0005|\u0000\u0000ਫ਼\u0a60\u0005e\u0000\u0000\u0a5f\u0a5d\u0001\u0000\u0000\u0000\u0a5f\u0a60\u0001\u0000\u0000\u0000\u0a60\u0a61\u0001\u0000\u0000\u0000\u0a61\u0a62\u0005Č\u0000" -+ "\u0000\u0a62\u0a63\u0003ɪĵ\u0000\u0a63ƣ\u0001\u0000\u0000\u0000\u0a64੦\u0007(\u0000\u0000\u0a65\u0a64\u0001\u0000\u0000\u0000\u0a65੦\u0001\u0000\u0000\u0000੦੧\u0001\u0000\u0000\u0000੧੪\u0003ƌÆ\u0000੨੩\u0005ħ\u0000\u0000੩੫\u0007)\u0000\u0000੪੨\u0001\u0000\u0000\u0000੪੫\u0001\u0000\u0000\u0000੫੭\u0001\u0000\u0000\u0000੬੮\u0003Ĩ”\u0000੭੬\u0001\u0000\u0000\u0000੭੮\u0001\u0000\u0000\u0000੮ƥ\u0001\u0000\u0000\u0000੯ੰ\u0003ƊÅ\u0000ੰੱ\u0005Č\u0000\u0000ੱੲ\u0003ƈÄ\u0000ੲƧ\u0001\u0000\u0000\u0000ੳੴ\u0003ƊÅ\u0000ੴੵ\u0005n\u0000\u0000ੵ੶\u0003ƈÄ\u0000੶Ʃ\u0001\u0000\u0000\u0000\u0a77\u0a78\u0005ĝ\u0000\u0000\u0a78\u0a7c\u0003ɪĵ\u0000\u0a79\u0a7a\u0005|\u0000\u0000\u0a7a\u0a7b\u0005¯\u0000\u0000\u0a7b\u0a7d\u0005e\u0000\u0000\u0a7c\u0a79\u0001\u0000\u0000\u0000\u0a7c\u0a7d\u0001\u0000\u0000\u0000\u0a7dઇ\u0001\u0000\u0000\u0000\u0a7eઅ\u0005ô\u0000\u0000\u0a7fઆ\u0003ƶÛ\u0000\u0a80ઁ\u0005¼\u0000\u0000ઁઆ\u0003ƼÞ\u0000ંઆ\u0003ƾß\u0000ઃઆ\u0003ǀà\u0000\u0a84આ\u0003ǂá\u0000અ\u0a7f\u0001\u0000\u0000\u0000અ\u0a80\u0001\u0000\u0000\u0000અં\u0001\u0000\u0000\u0000અઃ\u0001\u0000\u0000\u0000અ\u0a84\u0001\u0000\u0000\u0000આઈ\u0001\u0000\u0000\u0000ઇ\u0a7e\u0001\u0000\u0000\u0000ઈઉ\u0001\u0000\u0000\u0000ઉઇ\u0001\u0000\u0000\u0000ઉઊ\u0001\u0000\u0000\u0000ઊƫ\u0001\u0000\u0000\u0000ઋઌ\u0005ĝ\u0000\u0000ઌએ\u0003ɪĵ\u0000ઍ\u0a8e\u0005|\u0000\u0000\u0a8eઐ\u0005e\u0000\u0000એઍ\u0001\u0000\u0000\u0000એઐ\u0001\u0000\u0000\u0000ઐƭ\u0001\u0000\u0000\u0000ઑ\u0a92\u0005ĝ\u0000\u0000\u0a92ક\u0003ɪĵ\u0000ઓઔ\u0005|\u0000\u0000ઔખ\u0005e\u0000\u0000કઓ\u0001\u0000\u0000\u0000કખ\u0001\u0000\u0000\u0000ખગ\u0001\u0000\u0000\u0000ગઘ\u0005Č\u0000\u0000ઘઙ\u0003ɪĵ\u0000ઙƯ\u0001\u0000\u0000\u0000ચછ\u0005;\u0000\u0000છજ\u0005ĝ\u0000\u0000જઝ\u0005ô\u0000\u0000ઝઞ\u0005¼\u0000\u0000ઞટ\u0005n\u0000\u0000ટઠ\u0003ƺÝ\u0000ઠડ\u0005Č\u0000\u0000ડઢ\u0003ƺÝ\u0000ઢƱ\u0001\u0000\u0000\u0000ણત\u0005ĝ\u0000\u0000તધ\u0003ɪĵ\u0000થદ\u0005|\u0000\u0000દન\u0005e\u0000\u0000ધથ\u0001\u0000\u0000\u0000ધન\u0001\u0000\u0000\u0000નશ\u0001\u0000\u0000\u0000\u0aa9લ\u0005Ü\u0000\u0000પફ\u0005z\u0000\u0000ફ" -+ "ળ\u0005=\u0000\u0000બભ\u0005\u0012\u0000\u0000ભય\u0005\u001c\u0000\u0000મર\u0007*\u0000\u0000યમ\u0001\u0000\u0000\u0000યર\u0001\u0000\u0000\u0000રળ\u0001\u0000\u0000\u0000\u0ab1ળ\u0003ƴÚ\u0000લપ\u0001\u0000\u0000\u0000લબ\u0001\u0000\u0000\u0000લ\u0ab1\u0001\u0000\u0000\u0000ળવ\u0001\u0000\u0000\u0000\u0ab4\u0aa9\u0001\u0000\u0000\u0000વસ\u0001\u0000\u0000\u0000શ\u0ab4\u0001\u0000\u0000\u0000શષ\u0001\u0000\u0000\u0000ષૄ\u0001\u0000\u0000\u0000સશ\u0001\u0000\u0000\u0000હી\u0005ô\u0000\u0000\u0abaુ\u0003ƶÛ\u0000\u0abb઼\u0005¼\u0000\u0000઼ુ\u0003ƼÞ\u0000ઽુ\u0003ƾß\u0000ાુ\u0003ǀà\u0000િુ\u0003ǂá\u0000ી\u0aba\u0001\u0000\u0000\u0000ી\u0abb\u0001\u0000\u0000\u0000ીઽ\u0001\u0000\u0000\u0000ીા\u0001\u0000\u0000\u0000ીિ\u0001\u0000\u0000\u0000ુૃ\u0001\u0000\u0000\u0000ૂહ\u0001\u0000\u0000\u0000ૃ\u0ac6\u0001\u0000\u0000\u0000ૄૂ\u0001\u0000\u0000\u0000ૄૅ\u0001\u0000\u0000\u0000ૅƳ\u0001\u0000\u0000\u0000\u0ac6ૄ\u0001\u0000\u0000\u0000ેૉ\u0005\u001c\u0000\u0000ૈ\u0aca\u0007*\u0000\u0000ૉૈ\u0001\u0000\u0000\u0000ૉ\u0aca\u0001\u0000\u0000\u0000\u0aca\u0ace\u0001\u0000\u0000\u0000ો\u0acf\u0003ɸļ\u0000ૌ\u0acf\u0003ɴĺ\u0000્\u0acf\u0003ƃ\u0000\u0aceો\u0001\u0000\u0000\u0000\u0aceૌ\u0001\u0000\u0000\u0000\u0ace્\u0001\u0000\u0000\u0000\u0acfƵ\u0001\u0000\u0000\u0000ૐ\u0ad2\u0007+\u0000\u0000\u0ad1ૐ\u0001\u0000\u0000\u0000\u0ad1\u0ad2\u0001\u0000\u0000\u0000\u0ad2\u0ad3\u0001\u0000\u0000\u0000\u0ad3\u0ad4\u0005¼\u0000\u0000\u0ad4\u0ad6\u0003ƺÝ\u0000\u0ad5\u0ad7\u0003ƼÞ\u0000\u0ad6\u0ad5\u0001\u0000\u0000\u0000\u0ad6\u0ad7\u0001\u0000\u0000\u0000\u0ad7Ʒ\u0001\u0000\u0000\u0000\u0ad8\u0ada\u0007+\u0000\u0000\u0ad9\u0ad8\u0001\u0000\u0000\u0000\u0ad9\u0ada\u0001\u0000\u0000\u0000\u0ada\u0adb\u0001\u0000\u0000\u0000\u0adb\u0adc\u0005¼\u0000\u0000\u0adc\u0add\u0003ƺÝ\u0000\u0addƹ\u0001\u0000\u0000\u0000\u0adeૡ\u0003ɸļ\u0000\u0adfૡ\u0003ƃ\u0000ૠ\u0ade\u0001\u0000\u0000\u0000ૠ\u0adf\u0001\u0000\u0000\u0000ૡƻ\u0001\u0000\u0000\u0000ૢ\u0ae4\u0005)\u0000\u0000ૣ\u0ae5\u0005¯\u0000\u0000\u0ae4ૣ\u0001\u0000\u0000\u0000\u0ae4\u0ae5\u0001\u0000\u0000\u0000\u0ae5૦\u0001\u0000\u0000\u0000૦૧\u0005á\u0000\u0000૧ƽ\u0001\u0000\u0000\u0000૨૩\u0005ÿ\u0000\u0000૩૪\u0007,\u0000\u0000૪ƿ\u0001\u0000\u0000\u0000૫૬\u0005z\u0000\u0000૬૭\u0005=\u0000\u0000૭૮\u0003ɰĸ\u0000૮ǁ\u0001\u0000\u0000\u0000૯૱\u0005" -+ "\u001c\u0000\u0000૰\u0af2\u0005Î\u0000\u0000૱૰\u0001\u0000\u0000\u0000૱\u0af2\u0001\u0000\u0000\u0000\u0af2\u0af3\u0001\u0000\u0000\u0000\u0af3\u0af4\u0003ɸļ\u0000\u0af4\u0af7\u0005\u0000\u0000\u0af5\u0af6\u0005ô\u0000\u0000\u0af6\u0af8\u0003DŽâ\u0000\u0af7\u0af5\u0001\u0000\u0000\u0000\u0af8ૹ\u0001\u0000\u0000\u0000ૹ\u0af7\u0001\u0000\u0000\u0000ૹૺ\u0001\u0000\u0000\u0000ૺૻ\u0001\u0000\u0000\u0000ૻૼ\u0005Ó\u0000\u0000ૼǃ\u0001\u0000\u0000\u0000૽૾\u0005{\u0000\u0000૾ଃ\u0003ɺĽ\u0000૿ଃ\u0003ƸÜ\u0000\u0b00ଁ\u0005¼\u0000\u0000ଁଃ\u0003ƼÞ\u0000ଂ૽\u0001\u0000\u0000\u0000ଂ૿\u0001\u0000\u0000\u0000ଂ\u0b00\u0001\u0000\u0000\u0000ଃDž\u0001\u0000\u0000\u0000\u0b04ଇ\u0007)\u0000\u0000ଅଆ\u0005ħ\u0000\u0000ଆଈ\u0005\u001c\u0000\u0000ଇଅ\u0001\u0000\u0000\u0000ଇଈ\u0001\u0000\u0000\u0000ଈଊ\u0001\u0000\u0000\u0000ଉଋ\u0003Ĩ”\u0000ଊଉ\u0001\u0000\u0000\u0000ଊଋ\u0001\u0000\u0000\u0000ଋLJ\u0001\u0000\u0000\u0000ଌ\u0b0d\u0005;\u0000\u0000\u0b0dଏ\u0005ĝ\u0000\u0000\u0b0eଐ\u0003Ĩ”\u0000ଏ\u0b0e\u0001\u0000\u0000\u0000ଏଐ\u0001\u0000\u0000\u0000ଐlj\u0001\u0000\u0000\u0000\u0b11\u0b12\u0005Ă\u0000\u0000\u0b12ଔ\u0003ǔê\u0000ଓକ\u0003Ĩ”\u0000ଔଓ\u0001\u0000\u0000\u0000ଔକ\u0001\u0000\u0000\u0000କNj\u0001\u0000\u0000\u0000ଖଘ\u0005\u0012\u0000\u0000ଗଖ\u0001\u0000\u0000\u0000ଗଘ\u0001\u0000\u0000\u0000ଘଙ\u0001\u0000\u0000\u0000ଙଛ\u0003ǔê\u0000ଚଜ\u0003ǒé\u0000ଛଚ\u0001\u0000\u0000\u0000ଛଜ\u0001\u0000\u0000\u0000ଜଞ\u0001\u0000\u0000\u0000ଝଟ\u0003Ĩ”\u0000ଞଝ\u0001\u0000\u0000\u0000ଞଟ\u0001\u0000\u0000\u0000ଟǍ\u0001\u0000\u0000\u0000ଠଡ\u0007%\u0000\u0000ଡଢ\u0003ƊÅ\u0000ଢତ\u0003ǔê\u0000ଣଥ\u0003ǒé\u0000ତଣ\u0001\u0000\u0000\u0000ତଥ\u0001\u0000\u0000\u0000ଥଧ\u0001\u0000\u0000\u0000ଦନ\u0003Ĩ”\u0000ଧଦ\u0001\u0000\u0000\u0000ଧନ\u0001\u0000\u0000\u0000ନǏ\u0001\u0000\u0000\u0000\u0b29ଫ\u0007)\u0000\u0000ପବ\u0003ƈÄ\u0000ଫପ\u0001\u0000\u0000\u0000ଫବ\u0001\u0000\u0000\u0000ବଭ\u0001\u0000\u0000\u0000ଭଯ\u0003ǔê\u0000ମର\u0003ǒé\u0000ଯମ\u0001\u0000\u0000\u0000ଯର\u0001\u0000\u0000\u0000ରଲ\u0001\u0000\u0000\u0000\u0b31ଳ\u0003Ĩ”\u0000ଲ\u0b31\u0001\u0000\u0000\u0000ଲଳ\u0001\u0000\u0000\u0000ଳǑ\u0001\u0000\u0000\u0000\u0b34ଶ\u0005\u0017\u0000" -+ "\u0000ଵଷ\u0005ä\u0000\u0000ଶଵ\u0001\u0000\u0000\u0000ଶଷ\u0001\u0000\u0000\u0000ଷସ\u0001\u0000\u0000\u0000ସହ\u0007-\u0000\u0000ହǓ\u0001\u0000\u0000\u0000\u0b3a\u0b3b\u0007.\u0000\u0000\u0b3bǕ\u0001\u0000\u0000\u0000଼\u0b49\u0003ǘì\u0000ଽ\u0b49\u0003Ǟï\u0000ା\u0b49\u0003Ǹü\u0000ି\u0b49\u0003Ǻý\u0000ୀ\u0b49\u0003Ǫõ\u0000ୁ\u0b49\u0003Ǭö\u0000ୂ\u0b49\u0003Țč\u0000ୃ\u0b49\u0003ȘČ\u0000ୄ\u0b49\u0003Ǵú\u0000\u0b45\u0b49\u0003ǰø\u0000\u0b46\u0b49\u0003Ǯ÷\u0000େ\u0b49\u0003Ƕû\u0000ୈ଼\u0001\u0000\u0000\u0000ୈଽ\u0001\u0000\u0000\u0000ୈା\u0001\u0000\u0000\u0000ୈି\u0001\u0000\u0000\u0000ୈୀ\u0001\u0000\u0000\u0000ୈୁ\u0001\u0000\u0000\u0000ୈୂ\u0001\u0000\u0000\u0000ୈୃ\u0001\u0000\u0000\u0000ୈୄ\u0001\u0000\u0000\u0000ୈ\u0b45\u0001\u0000\u0000\u0000ୈ\u0b46\u0001\u0000\u0000\u0000ୈେ\u0001\u0000\u0000\u0000\u0b49Ǘ\u0001\u0000\u0000\u0000\u0b4aୌ\u0005\u0012\u0000\u0000ୋ୍\u0003ǚí\u0000ୌୋ\u0001\u0000\u0000\u0000ୌ୍\u0001\u0000\u0000\u0000୍\u0b4e\u0001\u0000\u0000\u0000\u0b4e\u0b4f\u0005µ\u0000\u0000\u0b4f\u0b50\u0003ǜî\u0000\u0b50Ǚ\u0001\u0000\u0000\u0000\u0b51\u0b53\u0007/\u0000\u0000\u0b52\u0b51\u0001\u0000\u0000\u0000\u0b52\u0b53\u0001\u0000\u0000\u0000\u0b53\u0b54\u0001\u0000\u0000\u0000\u0b54୕\u0005É\u0000\u0000୕Ǜ\u0001\u0000\u0000\u0000ୖୗ\u0005z\u0000\u0000ୗ\u0b64\u00070\u0000\u0000\u0b58\u0b5b\u0007\'\u0000\u0000\u0b59ଡ଼\u0005ĉ\u0000\u0000\u0b5aଡ଼\u0003ɮķ\u0000\u0b5b\u0b59\u0001\u0000\u0000\u0000\u0b5b\u0b5a\u0001\u0000\u0000\u0000ଡ଼\u0b64\u0001\u0000\u0000\u0000ଢ଼ୠ\u00071\u0000\u0000\u0b5eୡ\u0005ĉ\u0000\u0000ୟୡ\u0003ɮķ\u0000ୠ\u0b5e\u0001\u0000\u0000\u0000ୠୟ\u0001\u0000\u0000\u0000ୡ\u0b64\u0001\u0000\u0000\u0000ୢ\u0b64\u0005A\u0000\u0000ୣୖ\u0001\u0000\u0000\u0000ୣ\u0b58\u0001\u0000\u0000\u0000ୣଢ଼\u0001\u0000\u0000\u0000ୣୢ\u0001\u0000\u0000\u0000\u0b64ǝ\u0001\u0000\u0000\u0000\u0b65୲\u00059\u0000\u0000୦୧\u0003Ǡð\u0000୧୨\u0005µ\u0000\u0000୨୩\u0003ȬĖ\u0000୩୳\u0001\u0000\u0000\u0000୪୫\u0003Ǩô\u0000୫୬\u0005µ\u0000\u0000୬୭\u0005A\u0000\u0000୭୳\u0001\u0000\u0000\u0000୮୯\u0005µ\u0000\u0000୯୰\u0003Ȯė\u0000୰ୱ\u0003Ȣđ\u0000ୱ୳\u0001\u0000\u0000\u0000୲୦\u0001\u0000\u0000\u0000୲୪\u0001\u0000\u0000\u0000୲୮\u0001\u0000\u0000\u0000୳ǟ\u0001\u0000\u0000\u0000୴\u0b7a\u0003Ȃā\u0000୵" -+ "\u0b7a\u0003ȄĂ\u0000୶\u0b7a\u0003Ǣñ\u0000୷\u0b7a\u0003Ǥò\u0000\u0b78\u0b7a\u0003Ǧó\u0000\u0b79୴\u0001\u0000\u0000\u0000\u0b79୵\u0001\u0000\u0000\u0000\u0b79୶\u0001\u0000\u0000\u0000\u0b79୷\u0001\u0000\u0000\u0000\u0b79\u0b78\u0001\u0000\u0000\u0000\u0b7aǡ\u0001\u0000\u0000\u0000\u0b7b\u0b7d\u0005¨\u0000\u0000\u0b7c\u0b7e\u0005©\u0000\u0000\u0b7d\u0b7c\u0001\u0000\u0000\u0000\u0b7d\u0b7e\u0001\u0000\u0000\u0000\u0b7e\u0b7f\u0001\u0000\u0000\u0000\u0b7f\u0b80\u00072\u0000\u0000\u0b80ǣ\u0001\u0000\u0000\u0000\u0b81ஃ\u0005¨\u0000\u0000ஂ\u0b84\u0005Ú\u0000\u0000ஃஂ\u0001\u0000\u0000\u0000ஃ\u0b84\u0001\u0000\u0000\u0000\u0b84அ\u0001\u0000\u0000\u0000அஆ\u00073\u0000\u0000ஆǥ\u0001\u0000\u0000\u0000இஉ\u0005¨\u0000\u0000ஈஊ\u0005Í\u0000\u0000உஈ\u0001\u0000\u0000\u0000உஊ\u0001\u0000\u0000\u0000ஊ\u0b8b\u0001\u0000\u0000\u0000\u0b8b\u0b8c\u00074\u0000\u0000\u0b8cǧ\u0001\u0000\u0000\u0000\u0b8dக\u0005\u000f\u0000\u0000எஐ\u00051\u0000\u0000ஏஎ\u0001\u0000\u0000\u0000ஏஐ\u0001\u0000\u0000\u0000ஐ\u0b91\u0001\u0000\u0000\u0000\u0b91க\u0005=\u0000\u0000ஒக\u0005å\u0000\u0000ஓக\u0005ĝ\u0000\u0000ஔ\u0b8d\u0001\u0000\u0000\u0000ஔஏ\u0001\u0000\u0000\u0000ஔஒ\u0001\u0000\u0000\u0000ஔஓ\u0001\u0000\u0000\u0000கǩ\u0001\u0000\u0000\u0000\u0b96\u0ba2\u0005S\u0000\u0000\u0b97ச\u0003Ȃā\u0000\u0b98ச\u0003ȄĂ\u0000ங\u0b97\u0001\u0000\u0000\u0000ங\u0b98\u0001\u0000\u0000\u0000ச\u0b9b\u0001\u0000\u0000\u0000\u0b9bஜ\u0005µ\u0000\u0000ஜ\u0b9d\u0003ȬĖ\u0000\u0b9dண\u0001\u0000\u0000\u0000ஞட\u0003Ǩô\u0000ட\u0ba0\u0005µ\u0000\u0000\u0ba0\u0ba1\u0005A\u0000\u0000\u0ba1ண\u0001\u0000\u0000\u0000\u0ba2ங\u0001\u0000\u0000\u0000\u0ba2ஞ\u0001\u0000\u0000\u0000ணǫ\u0001\u0000\u0000\u0000த\u0ba5\u0005”\u0000\u0000\u0ba5ப\u0005µ\u0000\u0000\u0ba6\u0ba7\u00075\u0000\u0000\u0ba7\u0bab\u0003ɼľ\u0000நன\u0005\u0012\u0000\u0000ன\u0bab\u0005<\u0000\u0000ப\u0ba6\u0001\u0000\u0000\u0000பந\u0001\u0000\u0000\u0000\u0babǭ\u0001\u0000\u0000\u0000\u0bac\u0bc5\u0005ù\u0000\u0000\u0badழ\u0003Ȃā\u0000மழ\u0003ȄĂ\u0000யற\u0003Ȇă\u0000ரல\u0003ȈĄ\u0000றர\u0001\u0000\u0000\u0000றல\u0001\u0000\u0000\u0000லழ\u0001\u0000\u0000\u0000ள\u0bad\u0001\u0000\u0000\u0000ளம\u0001\u0000\u0000\u0000ளய\u0001\u0000\u0000\u0000ழவ\u0001\u0000\u0000\u0000வஶ\u0005µ\u0000\u0000ஶஷ\u0003ȬĖ\u0000ஷெ\u0001\u0000\u0000\u0000ஸூ\u0005\u000f\u0000\u0000ஹூ\u0005" -+ "È\u0000\u0000\u0bbaூ\u0005å\u0000\u0000\u0bbbூ\u0005ò\u0000\u0000\u0bbcூ\u0005ó\u0000\u0000\u0bbdா\u0003ج\u0000ாி\u0003Ȏć\u0000ிூ\u0001\u0000\u0000\u0000ீூ\u0005ĝ\u0000\u0000ுஸ\u0001\u0000\u0000\u0000ுஹ\u0001\u0000\u0000\u0000ு\u0bba\u0001\u0000\u0000\u0000ு\u0bbb\u0001\u0000\u0000\u0000ு\u0bbc\u0001\u0000\u0000\u0000ு\u0bbd\u0001\u0000\u0000\u0000ுீ\u0001\u0000\u0000\u0000ூ\u0bc3\u0001\u0000\u0000\u0000\u0bc3\u0bc4\u0005µ\u0000\u0000\u0bc4ெ\u0005A\u0000\u0000\u0bc5ள\u0001\u0000\u0000\u0000\u0bc5ு\u0001\u0000\u0000\u0000ெǯ\u0001\u0000\u0000\u0000ே\u0be3\u0005ô\u0000\u0000ை\u0bd2\u0003Dzù\u0000\u0bc9்\u0005ĝ\u0000\u0000ொ\u0bce\u0005ÿ\u0000\u0000ோௌ\u0005z\u0000\u0000ௌ\u0bce\u0005=\u0000\u0000்ொ\u0001\u0000\u0000\u0000்ோ\u0001\u0000\u0000\u0000\u0bce\u0bd2\u0001\u0000\u0000\u0000\u0bcfௐ\u0005=\u0000\u0000ௐ\u0bd2\u0005\u000b\u0000\u0000\u0bd1ை\u0001\u0000\u0000\u0000\u0bd1\u0bc9\u0001\u0000\u0000\u0000\u0bd1\u0bcf\u0001\u0000\u0000\u0000\u0bd2\u0bd3\u0001\u0000\u0000\u0000\u0bd3\u0bd4\u0005µ\u0000\u0000\u0bd4\u0be4\u0005A\u0000\u0000\u0bd5\u0bd6\u0005Š\u0000\u0000\u0bd6ௗ\u0003ȜĎ\u0000ௗ\u0bd8\u0005µ\u0000\u0000\u0bd8\u0bd9\u0003Ȯė\u0000\u0bd9\u0be4\u0001\u0000\u0000\u0000\u0bda\u0bdb\u0005Í\u0000\u0000\u0bdb\u0bdc\u0003Ȟď\u0000\u0bdc\u0bdd\u0005µ\u0000\u0000\u0bdd\u0bde\u0003Ȯė\u0000\u0bde\u0bdf\u0003Ȣđ\u0000\u0bdf\u0be4\u0001\u0000\u0000\u0000\u0be0\u0be1\u0005\u001c\u0000\u0000\u0be1\u0be2\u0005µ\u0000\u0000\u0be2\u0be4\u0005A\u0000\u0000\u0be3\u0bd1\u0001\u0000\u0000\u0000\u0be3\u0bd5\u0001\u0000\u0000\u0000\u0be3\u0bda\u0001\u0000\u0000\u0000\u0be3\u0be0\u0001\u0000\u0000\u0000\u0be4DZ\u0001\u0000\u0000\u0000\u0be5௦\u00076\u0000\u0000௦dz\u0001\u0000\u0000\u0000௧௰\u0005Ü\u0000\u0000௨௩\u00077\u0000\u0000௩௪\u0005µ\u0000\u0000௪௱\u0005A\u0000\u0000௫௬\u0005Š\u0000\u0000௬௭\u0003ȜĎ\u0000௭௮\u0005µ\u0000\u0000௮௯\u0003Ȯė\u0000௯௱\u0001\u0000\u0000\u0000௰௨\u0001\u0000\u0000\u0000௰௫\u0001\u0000\u0000\u0000௱ǵ\u0001\u0000\u0000\u0000௲௳\u0005ĩ\u0000\u0000௳௴\u0005µ\u0000\u0000௴௵\u0003Ȯė\u0000௵Ƿ\u0001\u0000\u0000\u0000௶\u0c0d\u0005\u000b\u0000\u0000௷\u0c0d\u0005ý\u0000\u0000௸\u0c0d\u0005Ā\u0000\u0000௹\u0bfd\u0003Ȃā\u0000௺\u0bfd\u0003ȄĂ\u0000\u0bfb\u0bfd\u0005¡\u0000\u0000\u0bfc௹\u0001\u0000\u0000\u0000\u0bfc௺\u0001\u0000\u0000\u0000\u0bfc\u0bfb\u0001\u0000\u0000\u0000\u0bfd\u0bff\u0001\u0000\u0000\u0000\u0bfeఀ\u0005™\u0000" -+ "\u0000\u0bff\u0bfe\u0001\u0000\u0000\u0000\u0bffఀ\u0001\u0000\u0000\u0000ఀ\u0c0d\u0001\u0000\u0000\u0000ఁః\u0005ď\u0000\u0000ంఄ\u0005™\u0000\u0000ఃం\u0001\u0000\u0000\u0000ఃఄ\u0001\u0000\u0000\u0000ఄఈ\u0001\u0000\u0000\u0000అఆ\u0005ą\u0000\u0000ఆఈ\u0003Ȇă\u0000ఇఁ\u0001\u0000\u0000\u0000ఇఅ\u0001\u0000\u0000\u0000ఈఊ\u0001\u0000\u0000\u0000ఉఋ\u0003ȈĄ\u0000ఊఉ\u0001\u0000\u0000\u0000ఊఋ\u0001\u0000\u0000\u0000ఋ\u0c0d\u0001\u0000\u0000\u0000ఌ௶\u0001\u0000\u0000\u0000ఌ௷\u0001\u0000\u0000\u0000ఌ௸\u0001\u0000\u0000\u0000ఌ\u0bfc\u0001\u0000\u0000\u0000ఌఇ\u0001\u0000\u0000\u0000\u0c0dఎ\u0001\u0000\u0000\u0000ఎఏ\u0005µ\u0000\u0000ఏఐ\u0003ȬĖ\u0000ఐǹ\u0001\u0000\u0000\u0000\u0c11ఒ\u0005\u0013\u0000\u0000ఒ\u0c29\u00078\u0000\u0000ఓఔ\u0005\u001a\u0000\u0000ఔ\u0c29\u00077\u0000\u0000కట\u0005\u000f\u0000\u0000ఖఘ\u00051\u0000\u0000గఖ\u0001\u0000\u0000\u0000గఘ\u0001\u0000\u0000\u0000ఘఙ\u0001\u0000\u0000\u0000ఙట\u0005=\u0000\u0000చట\u0005È\u0000\u0000ఛట\u0005å\u0000\u0000జట\u0005ò\u0000\u0000ఝట\u0005ĝ\u0000\u0000ఞక\u0001\u0000\u0000\u0000ఞగ\u0001\u0000\u0000\u0000ఞచ\u0001\u0000\u0000\u0000ఞఛ\u0001\u0000\u0000\u0000ఞజ\u0001\u0000\u0000\u0000ఞఝ\u0001\u0000\u0000\u0000టఠ\u0001\u0000\u0000\u0000ఠ\u0c29\u0005™\u0000\u0000డ\u0c29\u0003Ǽþ\u0000ఢణ\u0005×\u0000\u0000ణ\u0c29\u00079\u0000\u0000తద\u0005}\u0000\u0000థధ\u0003ȈĄ\u0000దథ\u0001\u0000\u0000\u0000దధ\u0001\u0000\u0000\u0000ధ\u0c29\u0001\u0000\u0000\u0000న\u0c11\u0001\u0000\u0000\u0000నఓ\u0001\u0000\u0000\u0000నఞ\u0001\u0000\u0000\u0000నడ\u0001\u0000\u0000\u0000నఢ\u0001\u0000\u0000\u0000నత\u0001\u0000\u0000\u0000\u0c29ప\u0001\u0000\u0000\u0000పఫ\u0005µ\u0000\u0000ఫబ\u0005A\u0000\u0000బǻ\u0001\u0000\u0000\u0000భూ\u0005b\u0000\u0000మయ\u0003Ǿÿ\u0000యర\u0005Ë\u0000\u0000రృ\u0001\u0000\u0000\u0000ఱళ\u0005!\u0000\u0000లఱ\u0001\u0000\u0000\u0000లళ\u0001\u0000\u0000\u0000ళీ\u0001\u0000\u0000\u0000ఴవ\u0003ȀĀ\u0000వశ\u0003ȌĆ\u0000శు\u0001\u0000\u0000\u0000షహ\u0005ĝ\u0000\u0000స\u0c3a\u0005D\u0000\u0000హస\u0001\u0000\u0000\u0000హ\u0c3a\u0001\u0000\u0000\u0000\u0c3a\u0c3c\u0001\u0000\u0000\u0000\u0c3bష\u0001\u0000\u0000\u0000\u0c3b\u0c3c\u0001\u0000\u0000\u0000\u0c3cఽ\u0001\u0000\u0000\u0000ఽ" -+ "ా\u0003Ō¦\u0000ాి\u0003Ȋą\u0000ిు\u0001\u0000\u0000\u0000ీఴ\u0001\u0000\u0000\u0000ీ\u0c3b\u0001\u0000\u0000\u0000ుృ\u0001\u0000\u0000\u0000ూమ\u0001\u0000\u0000\u0000ూల\u0001\u0000\u0000\u0000ృǽ\u0001\u0000\u0000\u0000ౄ\u0c45\u0007:\u0000\u0000\u0c45ǿ\u0001\u0000\u0000\u0000ెే\u0007 \u0000\u0000ేȁ\u0001\u0000\u0000\u0000ై\u0c49\u0007;\u0000\u0000\u0c49ȃ\u0001\u0000\u0000\u0000ొో\u0007<\u0000\u0000ోȅ\u0001\u0000\u0000\u0000ౌ్\u0007=\u0000\u0000్ȇ\u0001\u0000\u0000\u0000\u0c4e\u0c51\u0005—\u0000\u0000\u0c4f\u0c52\u0005ĉ\u0000\u0000\u0c50\u0c52\u0003ƈÄ\u0000\u0c51\u0c4f\u0001\u0000\u0000\u0000\u0c51\u0c50\u0001\u0000\u0000\u0000\u0c52\u0c53\u0001\u0000\u0000\u0000\u0c53\u0c54\u0005é\u0000\u0000\u0c54ȉ\u0001\u0000\u0000\u0000ౕౖ\u0003ȐĈ\u0000ౖȋ\u0001\u0000\u0000\u0000\u0c57ౘ\u0003ȐĈ\u0000ౘȍ\u0001\u0000\u0000\u0000ౙౚ\u0003ȐĈ\u0000ౚȏ\u0001\u0000\u0000\u0000\u0c5bౠ\u0003Ȓĉ\u0000\u0c5c\u0c5d\u0005.\u0000\u0000\u0c5d\u0c5f\u0003Ȓĉ\u0000\u0c5e\u0c5c\u0001\u0000\u0000\u0000\u0c5fౢ\u0001\u0000\u0000\u0000ౠ\u0c5e\u0001\u0000\u0000\u0000ౠౡ\u0001\u0000\u0000\u0000ౡȑ\u0001\u0000\u0000\u0000ౢౠ\u0001\u0000\u0000\u0000ౣ\u0c65\u0003ʄł\u0000\u0c64౦\u0003ȔĊ\u0000\u0c65\u0c64\u0001\u0000\u0000\u0000\u0c65౦\u0001\u0000\u0000\u0000౦౩\u0001\u0000\u0000\u0000౧౩\u0003ȔĊ\u0000౨ౣ\u0001\u0000\u0000\u0000౨౧\u0001\u0000\u0000\u0000౩ȓ\u0001\u0000\u0000\u0000౪౬\u0003Ȗċ\u0000౫౭\u0003ȔĊ\u0000౬౫\u0001\u0000\u0000\u0000౬౭\u0001\u0000\u0000\u0000౭ȕ\u0001\u0000\u0000\u0000౮\u0c70\u0005O\u0000\u0000౯\u0c71\u0003ʄł\u0000\u0c70౯\u0001\u0000\u0000\u0000\u0c70\u0c71\u0001\u0000\u0000\u0000\u0c71\u0c76\u0001\u0000\u0000\u0000\u0c72\u0c76\u0005Ð\u0000\u0000\u0c73\u0c76\u0005ĉ\u0000\u0000\u0c74\u0c76\u0003ʆŃ\u0000\u0c75౮\u0001\u0000\u0000\u0000\u0c75\u0c72\u0001\u0000\u0000\u0000\u0c75\u0c73\u0001\u0000\u0000\u0000\u0c75\u0c74\u0001\u0000\u0000\u0000\u0c76ȗ\u0001\u0000\u0000\u0000౷౻\u0005đ\u0000\u0000౸౹\u0007>\u0000\u0000౹౻\u0003Ȟď\u0000౺౷\u0001\u0000\u0000\u0000౺౸\u0001\u0000\u0000\u0000౻౼\u0001\u0000\u0000\u0000౼౽\u0005µ\u0000\u0000౽౾\u0003Ȯė\u0000౾ಂ\u0003Ȣđ\u0000౿ಀ\u0005—\u0000\u0000ಀಁ\u0005ĉ\u0000\u0000ಁಃ\u0005é\u0000\u0000ಂ౿\u0001\u0000\u0000\u0000ಂಃ\u0001\u0000\u0000\u0000ಃș\u0001\u0000\u0000\u0000಄ಈ\u0005E\u0000\u0000ಅಆ\u0005" -+ "œ\u0000\u0000ಆಈ\u0003Ȟď\u0000ಇ಄\u0001\u0000\u0000\u0000ಇಅ\u0001\u0000\u0000\u0000ಈಉ\u0001\u0000\u0000\u0000ಉಊ\u0005µ\u0000\u0000ಊಋ\u0003Ȯė\u0000ಋಌ\u0003Ȣđ\u0000ಌț\u0001\u0000\u0000\u0000\u0c8dಐ\u0005ĉ\u0000\u0000ಎಐ\u0003ȠĐ\u0000ಏ\u0c8d\u0001\u0000\u0000\u0000ಏಎ\u0001\u0000\u0000\u0000ಐȝ\u0001\u0000\u0000\u0000\u0c91ಔ\u0005\u0000\u0000ಒಕ\u0005ĉ\u0000\u0000ಓಕ\u0003ȠĐ\u0000ಔಒ\u0001\u0000\u0000\u0000ಔಓ\u0001\u0000\u0000\u0000ಕಖ\u0001\u0000\u0000\u0000ಖಗ\u0005Ó\u0000\u0000ಗȟ\u0001\u0000\u0000\u0000ಘಝ\u0003ʂŁ\u0000ಙಚ\u0005.\u0000\u0000ಚಜ\u0003ʂŁ\u0000ಛಙ\u0001\u0000\u0000\u0000ಜಟ\u0001\u0000\u0000\u0000ಝಛ\u0001\u0000\u0000\u0000ಝಞ\u0001\u0000\u0000\u0000ಞȡ\u0001\u0000\u0000\u0000ಟಝ\u0001\u0000\u0000\u0000ಠಣ\u0003ȤĒ\u0000ಡತ\u0005ĉ\u0000\u0000ಢತ\u0003ȠĐ\u0000ಣಡ\u0001\u0000\u0000\u0000ಣಢ\u0001\u0000\u0000\u0000ತೂ\u0001\u0000\u0000\u0000ಥದ\u0005l\u0000\u0000ದನ\u0005—\u0000\u0000ಧ\u0ca9\u0003Ē‰\u0000ನಧ\u0001\u0000\u0000\u0000ನ\u0ca9\u0001\u0000\u0000\u0000\u0ca9ಳ\u0001\u0000\u0000\u0000ಪಫ\u0005,\u0000\u0000ಫರ\u0003ʂŁ\u0000ಬಭ\u0005\u001d\u0000\u0000ಭಯ\u0003ʂŁ\u0000ಮಬ\u0001\u0000\u0000\u0000ಯಲ\u0001\u0000\u0000\u0000ರಮ\u0001\u0000\u0000\u0000ರಱ\u0001\u0000\u0000\u0000ಱ\u0cb4\u0001\u0000\u0000\u0000ಲರ\u0001\u0000\u0000\u0000ಳಪ\u0001\u0000\u0000\u0000ಳ\u0cb4\u0001\u0000\u0000\u0000\u0cb4ಿ\u0001\u0000\u0000\u0000ವಶ\u0005é\u0000\u0000ಶಷ\u0005Ħ\u0000\u0000ಷೀ\u0003®W\u0000ಸಹ\u0005Ħ\u0000\u0000ಹ಼\u0003®W\u0000\u0cba಼\u0003ʀŀ\u0000\u0cbbಸ\u0001\u0000\u0000\u0000\u0cbb\u0cba\u0001\u0000\u0000\u0000಼ಽ\u0001\u0000\u0000\u0000ಽಾ\u0005é\u0000\u0000ಾೀ\u0001\u0000\u0000\u0000ಿವ\u0001\u0000\u0000\u0000ಿ\u0cbb\u0001\u0000\u0000\u0000ೀೂ\u0001\u0000\u0000\u0000ುಠ\u0001\u0000\u0000\u0000ುಥ\u0001\u0000\u0000\u0000ುೂ\u0001\u0000\u0000\u0000ೂȣ\u0001\u0000\u0000\u0000ೃೇ\u0003Ȧē\u0000ೄೇ\u0003Ȫĕ\u0000\u0cc5ೇ\u0003ȨĔ\u0000ೆೃ\u0001\u0000\u0000\u0000ೆೄ\u0001\u0000\u0000\u0000ೆ\u0cc5\u0001\u0000\u0000\u0000ೇȥ\u0001\u0000\u0000\u0000ೈ\u0cc9\u0007?\u0000\u0000\u0cc9ȧ\u0001\u0000\u0000\u0000ೊೋ\u0007@\u0000\u0000ೋȩ\u0001\u0000\u0000\u0000ೌ್\u0007A\u0000" -+ "\u0000್ȫ\u0001\u0000\u0000\u0000\u0cce\u0ccf\u0005z\u0000\u0000\u0ccfೖ\u0005=\u0000\u0000\u0cd0\u0cd3\u0007\'\u0000\u0000\u0cd1\u0cd4\u0005ĉ\u0000\u0000\u0cd2\u0cd4\u0003ɮķ\u0000\u0cd3\u0cd1\u0001\u0000\u0000\u0000\u0cd3\u0cd2\u0001\u0000\u0000\u0000\u0cd4ೖ\u0001\u0000\u0000\u0000ೕ\u0cce\u0001\u0000\u0000\u0000ೕ\u0cd0\u0001\u0000\u0000\u0000ೖȭ\u0001\u0000\u0000\u0000\u0cd7\u0cd8\u0005z\u0000\u0000\u0cd8\u0cdf\u0005t\u0000\u0000\u0cd9\u0cdc\u00071\u0000\u0000\u0cda\u0cdd\u0005ĉ\u0000\u0000\u0cdb\u0cdd\u0003ɮķ\u0000\u0cdc\u0cda\u0001\u0000\u0000\u0000\u0cdc\u0cdb\u0001\u0000\u0000\u0000\u0cdd\u0cdf\u0001\u0000\u0000\u0000ೞ\u0cd7\u0001\u0000\u0000\u0000ೞ\u0cd9\u0001\u0000\u0000\u0000\u0cdfȯ\u0001\u0000\u0000\u0000ೠೡ\u00051\u0000\u0000ೡೢ\u0005=\u0000\u0000ೢ೦\u0003ɰĸ\u0000ೣ\u0ce4\u0005|\u0000\u0000\u0ce4\u0ce5\u0005¯\u0000\u0000\u0ce5೧\u0005e\u0000\u0000೦ೣ\u0001\u0000\u0000\u0000೦೧\u0001\u0000\u0000\u0000೧೩\u0001\u0000\u0000\u0000೨೪\u0003IJ™\u0000೩೨\u0001\u0000\u0000\u0000೩೪\u0001\u0000\u0000\u0000೪೬\u0001\u0000\u0000\u0000೫೭\u0003ɌĦ\u0000೬೫\u0001\u0000\u0000\u0000೬೭\u0001\u0000\u0000\u0000೭ȱ\u0001\u0000\u0000\u0000೮೯\u0005=\u0000\u0000೯\u0cf3\u0003ɰĸ\u0000\u0cf0ೱ\u0005|\u0000\u0000ೱೲ\u0005¯\u0000\u0000ೲ\u0cf4\u0005e\u0000\u0000\u0cf3\u0cf0\u0001\u0000\u0000\u0000\u0cf3\u0cf4\u0001\u0000\u0000\u0000\u0cf4\u0cfc\u0001\u0000\u0000\u0000\u0cf5\u0cf8\u0005č\u0000\u0000\u0cf6\u0cf9\u0003ȴĚ\u0000\u0cf7\u0cf9\u0003ȸĜ\u0000\u0cf8\u0cf6\u0001\u0000\u0000\u0000\u0cf8\u0cf7\u0001\u0000\u0000\u0000\u0cf9\u0cfa\u0001\u0000\u0000\u0000\u0cfa\u0cf8\u0001\u0000\u0000\u0000\u0cfa\u0cfb\u0001\u0000\u0000\u0000\u0cfb\u0cfd\u0001\u0000\u0000\u0000\u0cfc\u0cf5\u0001\u0000\u0000\u0000\u0cfc\u0cfd\u0001\u0000\u0000\u0000\u0cfd\u0cff\u0001\u0000\u0000\u0000\u0cfeഀ\u0003IJ™\u0000\u0cff\u0cfe\u0001\u0000\u0000\u0000\u0cffഀ\u0001\u0000\u0000\u0000ഀം\u0001\u0000\u0000\u0000ഁഃ\u0003ɌĦ\u0000ംഁ\u0001\u0000\u0000\u0000ംഃ\u0001\u0000\u0000\u0000ഃȳ\u0001\u0000\u0000\u0000ഄഅ\u0005\u0005\u0000\u0000അആ\u0003ȶě\u0000ആȵ\u0001\u0000\u0000\u0000ഇഈ\u0007B\u0000\u0000ഈȷ\u0001\u0000\u0000\u0000ഉഊ\u0005\u0005\u0000\u0000ഊഋ\u0003Ⱥĝ\u0000ഋȹ\u0001\u0000\u0000\u0000ഌ\u0d0d\u0007C\u0000\u0000\u0d0dȻ\u0001\u0000\u0000\u0000എഐ\u00051\u0000\u0000ഏഎ\u0001\u0000\u0000\u0000ഏഐ\u0001\u0000\u0000\u0000ഐ\u0d11\u0001\u0000\u0000\u0000\u0d11ഒ\u0005=\u0000\u0000ഒക\u0003ɰĸ\u0000ഓഔ\u0005|\u0000\u0000ഔ" -+ "ഖ\u0005e\u0000\u0000കഓ\u0001\u0000\u0000\u0000കഖ\u0001\u0000\u0000\u0000ഖഘ\u0001\u0000\u0000\u0000ഗങ\u0003Ⱦğ\u0000ഘഗ\u0001\u0000\u0000\u0000ഘങ\u0001\u0000\u0000\u0000ങജ\u0001\u0000\u0000\u0000ചഛ\u0007D\u0000\u0000ഛഝ\u0005<\u0000\u0000ജച\u0001\u0000\u0000\u0000ജഝ\u0001\u0000\u0000\u0000ഝട\u0001\u0000\u0000\u0000ഞഠ\u0003ɌĦ\u0000ടഞ\u0001\u0000\u0000\u0000ടഠ\u0001\u0000\u0000\u0000ഠȽ\u0001\u0000\u0000\u0000ഡഥ\u0005â\u0000\u0000ഢണ\u0005\'\u0000\u0000ണഥ\u0007E\u0000\u0000തഡ\u0001\u0000\u0000\u0000തഢ\u0001\u0000\u0000\u0000ഥȿ\u0001\u0000\u0000\u0000ദധ\u0005=\u0000\u0000ധപ\u0003ɰĸ\u0000നഩ\u0005|\u0000\u0000ഩഫ\u0005e\u0000\u0000പന\u0001\u0000\u0000\u0000പഫ\u0001\u0000\u0000\u0000ഫഽ\u0001\u0000\u0000\u0000ബര\u0005ô\u0000\u0000ഭറ\u0003ɂġ\u0000മറ\u0003ɄĢ\u0000യറ\u0003Ɇģ\u0000രഭ\u0001\u0000\u0000\u0000രമ\u0001\u0000\u0000\u0000രയ\u0001\u0000\u0000\u0000റള\u0001\u0000\u0000\u0000ലബ\u0001\u0000\u0000\u0000ളഴ\u0001\u0000\u0000\u0000ഴല\u0001\u0000\u0000\u0000ഴവ\u0001\u0000\u0000\u0000വാ\u0001\u0000\u0000\u0000ശഷ\u0005Ü\u0000\u0000ഷസ\u0005¹\u0000\u0000സഺ\u0003ʂŁ\u0000ഹശ\u0001\u0000\u0000\u0000ഺ഻\u0001\u0000\u0000\u0000഻ഹ\u0001\u0000\u0000\u0000഻഼\u0001\u0000\u0000\u0000഼ാ\u0001\u0000\u0000\u0000ഽല\u0001\u0000\u0000\u0000ഽഹ\u0001\u0000\u0000\u0000ാീ\u0001\u0000\u0000\u0000ിു\u0003ɌĦ\u0000ീി\u0001\u0000\u0000\u0000ീു\u0001\u0000\u0000\u0000ുɁ\u0001\u0000\u0000\u0000ൂൃ\u0005\u000b\u0000\u0000ൃൄ\u0005Ô\u0000\u0000ൄ\u0d45\u0007F\u0000\u0000\u0d45Ƀ\u0001\u0000\u0000\u0000െ\u0d49\u0005č\u0000\u0000േൊ\u0003ȴĚ\u0000ൈൊ\u0003ȸĜ\u0000\u0d49േ\u0001\u0000\u0000\u0000\u0d49ൈ\u0001\u0000\u0000\u0000ൊോ\u0001\u0000\u0000\u0000ോ\u0d49\u0001\u0000\u0000\u0000ോൌ\u0001\u0000\u0000\u0000ൌɅ\u0001\u0000\u0000\u0000്ൎ\u0005¹\u0000\u0000ൎ൏\u0003ʂŁ\u0000൏\u0d50\u0003®W\u0000\u0d50ɇ\u0001\u0000\u0000\u0000\u0d51\u0d52\u0005ý\u0000\u0000\u0d52\u0d53\u0005=\u0000\u0000\u0d53ൕ\u0003ɰĸ\u0000ൔൖ\u0003ɌĦ\u0000ൕൔ\u0001\u0000\u0000\u0000ൕൖ\u0001\u0000\u0000\u0000ൖɉ\u0001\u0000\u0000\u0000ൗ൘\u0005Ā\u0000\u0000൘൙\u0005=\u0000\u0000൙൛\u0003ɰĸ\u0000൚൜\u0003" -+ "ɌĦ\u0000൛൚\u0001\u0000\u0000\u0000൛൜\u0001\u0000\u0000\u0000൜ɋ\u0001\u0000\u0000\u0000൝ൢ\u0005Ĥ\u0000\u0000൞ൠ\u0005\u0005\u0000\u0000ൟൡ\u0003Ɏħ\u0000ൠൟ\u0001\u0000\u0000\u0000ൠൡ\u0001\u0000\u0000\u0000ൡൣ\u0001\u0000\u0000\u0000ൢ൞\u0001\u0000\u0000\u0000ൢൣ\u0001\u0000\u0000\u0000ൣ൦\u0001\u0000\u0000\u0000\u0d64൦\u0005±\u0000\u0000\u0d65൝\u0001\u0000\u0000\u0000\u0d65\u0d64\u0001\u0000\u0000\u0000൦ɍ\u0001\u0000\u0000\u0000൧൨\u0007G\u0000\u0000൨ɏ\u0001\u0000\u0000\u0000൩൪\u0007H\u0000\u0000൪൬\u0005=\u0000\u0000൫൭\u0003Ĩ”\u0000൬൫\u0001\u0000\u0000\u0000൬൭\u0001\u0000\u0000\u0000൭൶\u0001\u0000\u0000\u0000൮൰\u0007\'\u0000\u0000൯൱\u0003ɰĸ\u0000൰൯\u0001\u0000\u0000\u0000൰൱\u0001\u0000\u0000\u0000൱൳\u0001\u0000\u0000\u0000൲൴\u0003Ĩ”\u0000൳൲\u0001\u0000\u0000\u0000൳൴\u0001\u0000\u0000\u0000൴൶\u0001\u0000\u0000\u0000൵൩\u0001\u0000\u0000\u0000൵൮\u0001\u0000\u0000\u0000൶ɑ\u0001\u0000\u0000\u0000൷൸\u0003ɰĸ\u0000൸ɓ\u0001\u0000\u0000\u0000൹ൺ\u0003ɰĸ\u0000ൺɕ\u0001\u0000\u0000\u0000ൻർ\u0005\u000f\u0000\u0000ർ\u0d80\u0003ɒĩ\u0000ൽൾ\u0005|\u0000\u0000ൾൿ\u0005¯\u0000\u0000ൿඁ\u0005e\u0000\u0000\u0d80ൽ\u0001\u0000\u0000\u0000\u0d80ඁ\u0001\u0000\u0000\u0000ඁං\u0001\u0000\u0000\u0000ංඃ\u0005l\u0000\u0000ඃ\u0d84\u0005=\u0000\u0000\u0d84ඏ\u0003ɔĪ\u0000අආ\u0005\u001b\u0000\u0000ආඇ\u0003ɼľ\u0000ඇඈ\u0005ĝ\u0000\u0000ඈඉ\u0003ɪĵ\u0000ඉඊ\u0005¼\u0000\u0000ඊඍ\u0003ƺÝ\u0000උඌ\u0005R\u0000\u0000ඌඎ\u0003ɾĿ\u0000ඍඋ\u0001\u0000\u0000\u0000ඍඎ\u0001\u0000\u0000\u0000ඎඐ\u0001\u0000\u0000\u0000ඏඅ\u0001\u0000\u0000\u0000ඏඐ\u0001\u0000\u0000\u0000ඐඓ\u0001\u0000\u0000\u0000එඒ\u0005Ì\u0000\u0000ඒඔ\u0003ɾĿ\u0000ඓඑ\u0001\u0000\u0000\u0000ඓඔ\u0001\u0000\u0000\u0000ඔɗ\u0001\u0000\u0000\u0000ඕඖ\u0005\u000f\u0000\u0000ඖ\u0d99\u0003ɒĩ\u0000\u0d97\u0d98\u0005|\u0000\u0000\u0d98ක\u0005e\u0000\u0000\u0d99\u0d97\u0001\u0000\u0000\u0000\u0d99ක\u0001\u0000\u0000\u0000කඛ\u0001\u0000\u0000\u0000ඛග\u0005l\u0000\u0000ගඝ\u0005=\u0000\u0000ඝə\u0001\u0000\u0000\u0000ඞඟ\u0005\u000f\u0000\u0000ඟජ\u0003ɒĩ\u0000චඡ\u0005|\u0000\u0000ඡඣ\u0005e\u0000\u0000ජච\u0001\u0000\u0000" -+ "\u0000ජඣ\u0001\u0000\u0000\u0000ඣඤ\u0001\u0000\u0000\u0000ඤඥ\u0005ô\u0000\u0000ඥණ\u0005=\u0000\u0000ඦඬ\u0003ɜĮ\u0000ටඬ\u0003ɞį\u0000ඨඬ\u0003ɠİ\u0000ඩඬ\u0003ɢı\u0000ඪඬ\u0003ɤIJ\u0000ණඦ\u0001\u0000\u0000\u0000ණට\u0001\u0000\u0000\u0000ණඨ\u0001\u0000\u0000\u0000ණඩ\u0001\u0000\u0000\u0000ණඪ\u0001\u0000\u0000\u0000ඬත\u0001\u0000\u0000\u0000තණ\u0001\u0000\u0000\u0000තථ\u0001\u0000\u0000\u0000ථɛ\u0001\u0000\u0000\u0000දධ\u0005Ą\u0000\u0000ධඳ\u0003ɔĪ\u0000න\u0db2\u0005\u001b\u0000\u0000\u0db2ප\u0003ɼľ\u0000ඳන\u0001\u0000\u0000\u0000ඳප\u0001\u0000\u0000\u0000පɝ\u0001\u0000\u0000\u0000ඵබ\u0005ĝ\u0000\u0000බභ\u0003ɪĵ\u0000භɟ\u0001\u0000\u0000\u0000මඹ\u0005¼\u0000\u0000ඹය\u0003ƺÝ\u0000යɡ\u0001\u0000\u0000\u0000ර\u0dbc\u0005R\u0000\u0000\u0dbcල\u0003ɾĿ\u0000ලɣ\u0001\u0000\u0000\u0000\u0dbe\u0dbf\u0005Ì\u0000\u0000\u0dbfව\u0003ɾĿ\u0000වɥ\u0001\u0000\u0000\u0000ශස\u0007E\u0000\u0000ෂහ\u0003ɒĩ\u0000සෂ\u0001\u0000\u0000\u0000සහ\u0001\u0000\u0000\u0000හළ\u0001\u0000\u0000\u0000ළෆ\u0005l\u0000\u0000ෆ\u0dc8\u0007\'\u0000\u0000\u0dc7\u0dc9\u0003Ĩ”\u0000\u0dc8\u0dc7\u0001\u0000\u0000\u0000\u0dc8\u0dc9\u0001\u0000\u0000\u0000\u0dc9ɧ\u0001\u0000\u0000\u0000්\u0dcd\u0003ʂŁ\u0000\u0dcb\u0dcd\u0003ƃ\u0000\u0dcc්\u0001\u0000\u0000\u0000\u0dcc\u0dcb\u0001\u0000\u0000\u0000\u0dcdɩ\u0001\u0000\u0000\u0000\u0dceෑ\u0003ʂŁ\u0000ාෑ\u0003ƃ\u0000ැ\u0dce\u0001\u0000\u0000\u0000ැා\u0001\u0000\u0000\u0000ෑɫ\u0001\u0000\u0000\u0000ි\u0dd7\u0003ɪĵ\u0000ීු\u0005.\u0000\u0000ුූ\u0003ɪĵ\u0000\u0dd5ී\u0001\u0000\u0000\u0000ූෙ\u0001\u0000\u0000\u0000\u0dd7\u0dd5\u0001\u0000\u0000\u0000\u0dd7ෘ\u0001\u0000\u0000\u0000ෘɭ\u0001\u0000\u0000\u0000ෙ\u0dd7\u0001\u0000\u0000\u0000ේෟ\u0003ɰĸ\u0000ෛො\u0005.\u0000\u0000ොෞ\u0003ɰĸ\u0000ෝෛ\u0001\u0000\u0000\u0000ෞ\u0de1\u0001\u0000\u0000\u0000ෟෝ\u0001\u0000\u0000\u0000ෟ\u0de0\u0001\u0000\u0000\u0000\u0de0ɯ\u0001\u0000\u0000\u0000\u0de1ෟ\u0001\u0000\u0000\u0000\u0de2\u0de5\u0003ɲĹ\u0000\u0de3\u0de5\u0003ƃ\u0000\u0de4\u0de2\u0001\u0000\u0000\u0000\u0de4\u0de3\u0001\u0000\u0000\u0000\u0de5ɱ\u0001\u0000\u0000\u0000෦෫\u0003ʂŁ\u0000෧෨\u0005O\u0000\u0000෨෪\u0003ʂŁ\u0000෩෧\u0001\u0000\u0000\u0000෪" -+ "෭\u0001\u0000\u0000\u0000෫෩\u0001\u0000\u0000\u0000෫෬\u0001\u0000\u0000\u0000෬ɳ\u0001\u0000\u0000\u0000෭෫\u0001\u0000\u0000\u0000෮\u0df7\u0005Ž\u0000\u0000෯෴\u0003ɸļ\u0000\u0df0\u0df1\u0005.\u0000\u0000\u0df1ෳ\u0003ɸļ\u0000ෲ\u0df0\u0001\u0000\u0000\u0000ෳ\u0df6\u0001\u0000\u0000\u0000෴ෲ\u0001\u0000\u0000\u0000෴\u0df5\u0001\u0000\u0000\u0000\u0df5\u0df8\u0001\u0000\u0000\u0000\u0df6෴\u0001\u0000\u0000\u0000\u0df7෯\u0001\u0000\u0000\u0000\u0df7\u0df8\u0001\u0000\u0000\u0000\u0df8\u0df9\u0001\u0000\u0000\u0000\u0df9\u0dfa\u0005Ò\u0000\u0000\u0dfaɵ\u0001\u0000\u0000\u0000\u0dfb\u0dfe\u0003ɸļ\u0000\u0dfc\u0dfd\u0005.\u0000\u0000\u0dfd\u0dff\u0003ɸļ\u0000\u0dfe\u0dfc\u0001\u0000\u0000\u0000\u0dff\u0e00\u0001\u0000\u0000\u0000\u0e00\u0dfe\u0001\u0000\u0000\u0000\u0e00ก\u0001\u0000\u0000\u0000กɷ\u0001\u0000\u0000\u0000ขฃ\u0007I\u0000\u0000ฃɹ\u0001\u0000\u0000\u0000คง\u0003ɸļ\u0000ฅง\u0003ƃ\u0000ฆค\u0001\u0000\u0000\u0000ฆฅ\u0001\u0000\u0000\u0000งɻ\u0001\u0000\u0000\u0000จซ\u0003ɸļ\u0000ฉซ\u0003ƃ\u0000ชจ\u0001\u0000\u0000\u0000ชฉ\u0001\u0000\u0000\u0000ซɽ\u0001\u0000\u0000\u0000ฌฏ\u0003ʀŀ\u0000ญฏ\u0003ƃ\u0000ฎฌ\u0001\u0000\u0000\u0000ฎญ\u0001\u0000\u0000\u0000ฏɿ\u0001\u0000\u0000\u0000ฐพ\u0005\u0000\u0000ฑฒ\u0003Ą‚\u0000ฒณ\u0005,\u0000\u0000ณป\u0003®W\u0000ดต\u0005.\u0000\u0000ตถ\u0003Ą‚\u0000ถท\u0005,\u0000\u0000ทธ\u0003®W\u0000ธบ\u0001\u0000\u0000\u0000นด\u0001\u0000\u0000\u0000บฝ\u0001\u0000\u0000\u0000ปน\u0001\u0000\u0000\u0000ปผ\u0001\u0000\u0000\u0000ผฟ\u0001\u0000\u0000\u0000ฝป\u0001\u0000\u0000\u0000พฑ\u0001\u0000\u0000\u0000พฟ\u0001\u0000\u0000\u0000ฟภ\u0001\u0000\u0000\u0000ภม\u0005Ó\u0000\u0000มʁ\u0001\u0000\u0000\u0000ยล\u0003ʄł\u0000รล\u0003ʆŃ\u0000ฤย\u0001\u0000\u0000\u0000ฤร\u0001\u0000\u0000\u0000ลʃ\u0001\u0000\u0000\u0000ฦว\u0005\n\u0000\u0000วʅ\u0001\u0000\u0000\u0000ศา\u0003ʊŅ\u0000ษา\u0005¯\u0000\u0000สา\u0005²\u0000\u0000หา\u0005ĕ\u0000\u0000ฬา\u0005®\u0000\u0000อา\u0005¤\u0000\u0000ฮา\u0005¥\u0000\u0000ฯา\u0005¦\u0000\u0000ะา\u0005§\u0000\u0000ัศ\u0001\u0000\u0000\u0000ัษ\u0001\u0000\u0000\u0000ัส\u0001\u0000\u0000\u0000ัห\u0001\u0000\u0000\u0000ัฬ\u0001" -+ "\u0000\u0000\u0000ัอ\u0001\u0000\u0000\u0000ัฮ\u0001\u0000\u0000\u0000ัฯ\u0001\u0000\u0000\u0000ัะ\u0001\u0000\u0000\u0000าʇ\u0001\u0000\u0000\u0000ำึ\u0003ʄł\u0000ิึ\u0003ʊŅ\u0000ีำ\u0001\u0000\u0000\u0000ีิ\u0001\u0000\u0000\u0000ึʉ\u0001\u0000\u0000\u0000ืุ\u0003ʌņ\u0000ุʋ\u0001\u0000\u0000\u0000ฺู\u0007J\u0000\u0000ฺʍ\u0001\u0000\u0000\u0000\u0e3b\u0e3c\u0005\u0000\u0000\u0001\u0e3cʏ\u0001\u0000\u0000\u0000ǐʕʙʟʤʩʯ˂ˆː˘˜˟ˢ˧˫˱˷̡̺͍̄̓͂͐ͦͪͯ͘͜͠ͲͷͺͼΆΉΘΟάζιμυωϋύϗϝϥϰϵϹϿЈЋБДКМЮбеипчэѐїџѧѫѰѴѾ҄҈ҊҏҔҘқҟңҦҬҮҺҾӁӄӈӎӑӔӜӠӤӦӫӯӱӻԏԒԗԚԝԠԤԧԫԮԳԷԼՆՊՍՓ\u0558՝գըհովֆֶ֛֣֮֒־ׄ\u05ceדלסצתׯײ\u05f5\u05fe؆؎ؚؔإةجعٓٞ٤٨ٶٺڄڏڔڙڝڢڥګڳڹڻۃۈۢ۫۲۵۸܌܏ܛܦܪܬܴܸ݄ܺ݉ݓݖݣݨݯݲހފޒޗޜާ\u07b5\u07bcߗߞߠߥߩ߬\u07fbࠀࠉࠓࠦࠪ࠭࠲ࡁࡄࡇࡊࡍࡐ࡚ࡣࡦ\u086e\u0871\u0874\u0878\u087e\u0883\u0889\u088c\u0890\u0894\u089cࢠࢣࢧࢪࢭࢰࢴࢷࢺࣃࣅ\u08ccࣱࣣࣺࣚࣞ࣠ࣧँआऋएखञदरशौॏ॔ख़फ़ॡ०५ॳॽঅঐখজডদভসী\u09c6ৌ\u09d5য়২৮৲৻\u09ffਇਊਓਟਰਲ਼\u0a37ੂ੍\u0a53ਖ਼\u0a5f\u0a65੪੭\u0a7cઅઉએકધયલશીૄૉ\u0ace\u0ad1\u0ad6\u0ad9ૠ\u0ae4૱ૹଂଇଊଏଔଗଛଞତଧଫଯଲଶୈୌ\u0b52\u0b5bୠୣ୲\u0b79\u0b7dஃஉஏஔங\u0ba2பறளு\u0bc5்\u0bd1\u0be3௰\u0bfc\u0bffఃఇఊఌగఞదనలహ\u0c3bీూ\u0c51ౠ\u0c65౨౬\u0c70\u0c75౺ಂಇಏಔಝಣನರಳ\u0cbbಿುೆ\u0cd3ೕ\u0cdcೞ೦೩೬\u0cf3\u0cf8\u0cfa\u0cfc\u0cff" -+ "ംഏകഘജടതപരഴ഻ഽീ\u0d49ോൕ൛ൠൢ\u0d65൬൰൳൵\u0d80ඍඏඓ\u0d99ජණතඳස\u0dc8\u0dccැ\u0dd7ෟ\u0de4෫෴\u0df7\u0e00ฆชฎปพฤัี", "UnionMapping", "Malformed input of length ", "Unmappable characters of length ", "The EXISTS expression is not valid in driver settings.", "The COUNT expression is not valid in driver settings.", "The COLLECT expression is not valid in driver settings.", "This expression is not valid in driver settings.", "ASSERT", "BRIEF", "COMMIT", "OUTPUT", "PERIODIC", "VERBOSE", "\u0004\u0000Ĺ\u0b34\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002\u0008\u0007\u0008\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002\u000c\u0007\u000c\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002" ++ "\u0002ÿ\u0007ÿ\u0002Ā\u0007Ā\u0002ā\u0007ā\u0002Ă\u0007Ă\u0002ă\u0007ă\u0002Ą\u0007Ą\u0002ą\u0007ą\u0002Ć\u0007Ć\u0002ć\u0007ć\u0002Ĉ\u0007Ĉ\u0002ĉ\u0007ĉ\u0002Ċ\u0007Ċ\u0002ċ\u0007ċ\u0002Č\u0007Č\u0002č\u0007č\u0002Ď\u0007Ď\u0002ď\u0007ď\u0002Đ\u0007Đ\u0002đ\u0007đ\u0002Ē\u0007Ē\u0002ē\u0007ē\u0002Ĕ\u0007Ĕ\u0002ĕ\u0007ĕ\u0002Ė\u0007Ė\u0002ė\u0007ė\u0002Ę\u0007Ę\u0002ę\u0007ę\u0002Ě\u0007Ě\u0002ě\u0007ě\u0002Ĝ\u0007Ĝ\u0002ĝ\u0007ĝ\u0002Ğ\u0007Ğ\u0002ğ\u0007ğ\u0002Ġ\u0007Ġ\u0002ġ\u0007ġ\u0002Ģ\u0007Ģ\u0002ģ\u0007ģ\u0002Ĥ\u0007Ĥ\u0002ĥ\u0007ĥ\u0002Ħ\u0007Ħ\u0002ħ\u0007ħ\u0002Ĩ\u0007Ĩ\u0002ĩ\u0007ĩ\u0002Ī\u0007Ī\u0002ī\u0007ī\u0002Ĭ\u0007Ĭ\u0002ĭ\u0007ĭ\u0002Į\u0007Į\u0002į\u0007į\u0002İ\u0007İ\u0002ı\u0007ı\u0002IJ\u0007IJ\u0002ij\u0007ij\u0002Ĵ\u0007Ĵ\u0002ĵ\u0007ĵ\u0002Ķ\u0007Ķ\u0002ķ\u0007ķ\u0002ĸ\u0007ĸ\u0002Ĺ\u0007Ĺ\u0002ĺ\u0007ĺ\u0002Ļ\u0007Ļ\u0002ļ\u0007ļ\u0002Ľ\u0007Ľ\u0002ľ\u0007ľ\u0002Ŀ\u0007Ŀ\u0002ŀ\u0007ŀ\u0002Ł\u0007Ł\u0002ł\u0007ł\u0002Ń\u0007Ń\u0002ń\u0007ń\u0002Ņ\u0007Ņ\u0002ņ\u0007ņ\u0002Ň\u0007Ň\u0002ň\u0007ň\u0002ʼn\u0007ʼn\u0001\u0000\u0001\u0000\u0001\u0000\u0005\u0000ʘ\u0008\u0000\n\u0000\u000c\u0000ʛ\t\u0000\u0001\u0000\u0003\u0000ʞ\u0008\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0003\u0001ʤ\u0008\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002ʩ\u0008\u0002\u0001\u0002\u0005\u0002ʬ\u0008\u0002\n\u0002\u000c\u0002ʯ\t\u0002\u0001\u0003\u0004\u0003ʲ\u0008\u0003\u000b\u0003\u000c\u0003ʳ\u0001\u0003\u0003\u0003ʷ\u0008\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003ʽ\u0008\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0003\u0004ː\u0008\u0004\u0001\u0005\u0001\u0005\u0003\u0005˔\u0008\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006˞\u0008\u0006\u0001\u0007\u0001\u0007\u0001\u0008\u0001\u0008\u0001\u0008\u0001\t\u0003\t˦\u0008\t\u0001\t\u0001\t\u0003\t˪\u0008\t\u0001\t\u0003\t˭\u0008\t\u0001\t\u0003\t˰\u0008\t\u0001\n\u0001\n\u0001\n\u0003\n" ++ "˵\u0008\n\u0001\u000b\u0001\u000b\u0003\u000b˹\u0008\u000b\u0001\u000b\u0001\u000b\u0005\u000b˽\u0008\u000b\n\u000b\u000c\u000b̀\t\u000b\u0001\u000c\u0001\u000c\u0001\u000c\u0003\u000c̅\u0008\u000c\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0005\u000f̐\u0008\u000f\n\u000f\u000c\u000f̓\t\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0003\u0013̡\u0008\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016̭\u0008\u0016\n\u0016\u000c\u0016̰\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0003\u0017͈\u0008\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018͎\u0008\u0018\n\u0018\u000c\u0018͑\t\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0003\u0019͛\u0008\u0019\u0001\u001a\u0003\u001a͞\u0008\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0005\u001aͤ\u0008\u001a\n\u001a\u000c\u001aͧ\t\u001a\u0001\u001b\u0003\u001bͪ\u0008\u001b\u0001\u001b\u0001\u001b\u0003\u001bͮ\u0008\u001b\u0001\u001b\u0001\u001b\u0005\u001bͲ\u0008\u001b\n\u001b\u000c\u001b͵\t\u001b\u0001\u001b\u0003\u001b\u0378\u0008\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001cͽ\u0008\u001c\u0001\u001c\u0003\u001c\u0380\u0008\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c΅\u0008\u001c\u0001\u001c\u0003\u001cΈ\u0008\u001c\u0003\u001cΊ\u0008\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001dΔ\u0008\u001d\u0001\u001d\u0003\u001dΗ\u0008\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001dΦ\u0008\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001eΫ\u0008\u001e\n\u001e\u000c\u001eή\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0001 \u0001 \u0001!\u0003!κ\u0008!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0005!ς\u0008!\n!\u000c!υ\t!\u0003!χ\u0008!\u0001!\u0003!ϊ\u0008!\u0001!\u0001!\u0001!\u0001!\u0001!\u0005!ϑ\u0008!\n!\u000c!ϔ\t!\u0001!\u0003!ϗ\u0008!\u0003!ϙ\u0008!\u0003!ϛ\u0008!\u0001\"\u0001\"\u0001\"\u0001#" ++ "\u0001#\u0001$\u0001$\u0001$\u0003$ϥ\u0008$\u0001%\u0001%\u0001%\u0001%\u0003%ϫ\u0008%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0003%ϳ\u0008%\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0004&ϼ\u0008&\u000b&\u000c&Ͻ\u0001&\u0001&\u0001\'\u0003\'Ѓ\u0008\'\u0001\'\u0001\'\u0003\'Ї\u0008\'\u0001\'\u0001\'\u0001\'\u0001\'\u0003\'Ѝ\u0008\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(Д\u0008(\n(\u000c(З\t(\u0003(Й\u0008(\u0001(\u0001(\u0001)\u0001)\u0003)П\u0008)\u0001)\u0003)Т\u0008)\u0001)\u0001)\u0001)\u0001)\u0005)Ш\u0008)\n)\u000c)Ы\t)\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0003-м\u0008-\u0001-\u0003-п\u0008-\u0001-\u0001-\u0003-у\u0008-\u0001-\u0003-ц\u0008-\u0001.\u0001.\u0001.\u0005.ы\u0008.\n.\u000c.ю\t.\u0001/\u0001/\u0001/\u0005/ѓ\u0008/\n/\u000c/і\t/\u00010\u00010\u00010\u00030ћ\u00080\u00010\u00030ў\u00080\u00010\u00010\u00011\u00011\u00011\u00031ѥ\u00081\u00011\u00011\u00011\u00011\u00051ѫ\u00081\n1\u000c1Ѯ\t1\u00012\u00012\u00012\u00012\u00012\u00032ѵ\u00082\u00012\u00012\u00032ѹ\u00082\u00012\u00012\u00012\u00032Ѿ\u00082\u00013\u00013\u00033҂\u00083\u00014\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u00035Ҍ\u00085\u00015\u00015\u00055Ґ\u00085\n5\u000c5ғ\t5\u00015\u00045Җ\u00085\u000b5\u000c5җ\u00016\u00016\u00016\u00036ҝ\u00086\u00016\u00016\u00016\u00036Ң\u00086\u00016\u00016\u00036Ҧ\u00086\u00016\u00036ҩ\u00086\u00016\u00016\u00036ҭ\u00086\u00016\u00016\u00036ұ\u00086\u00016\u00036Ҵ\u00086\u00016\u00016\u00016\u00016\u00036Һ\u00086\u00036Ҽ\u00086\u00017\u00017\u00018\u00018\u00019\u00019\u00019\u00019\u00049ӆ\u00089\u000b9\u000c" ++ "9Ӈ\u0001:\u0001:\u0003:ӌ\u0008:\u0001:\u0003:ӏ\u0008:\u0001:\u0003:Ӓ\u0008:\u0001:\u0001:\u0003:Ӗ\u0008:\u0001:\u0001:\u0001;\u0001;\u0003;Ӝ\u0008;\u0001;\u0003;ӟ\u0008;\u0001;\u0003;Ӣ\u0008;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001<\u0003<Ӫ\u0008<\u0001<\u0001<\u0003<Ӯ\u0008<\u0001=\u0001=\u0004=Ӳ\u0008=\u000b=\u000c=ӳ\u0001>\u0001>\u0001>\u0003>ӹ\u0008>\u0001>\u0001>\u0005>ӽ\u0008>\n>\u000c>Ԁ\t>\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0003@ԉ\u0008@\u0001@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001E\u0001E\u0003Eԝ\u0008E\u0001F\u0003FԠ\u0008F\u0001F\u0001F\u0001F\u0003Fԥ\u0008F\u0001F\u0003FԨ\u0008F\u0001F\u0003Fԫ\u0008F\u0001F\u0003FԮ\u0008F\u0001F\u0001F\u0003FԲ\u0008F\u0001F\u0003FԵ\u0008F\u0001F\u0001F\u0003FԹ\u0008F\u0001G\u0003GԼ\u0008G\u0001G\u0001G\u0001G\u0003GՁ\u0008G\u0001G\u0001G\u0003GՅ\u0008G\u0001G\u0001G\u0001G\u0003GՊ\u0008G\u0001H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0003KՔ\u0008K\u0001K\u0001K\u0003K\u0558\u0008K\u0001K\u0003K՛\u0008K\u0001L\u0001L\u0001L\u0001L\u0003Lա\u0008L\u0001M\u0001M\u0001M\u0003Mզ\u0008M\u0001M\u0005Mթ\u0008M\nM\u000cMլ\tM\u0001N\u0001N\u0001N\u0003Nձ\u0008N\u0001N\u0005Nմ\u0008N\nN\u000cNշ\tN\u0001O\u0001O\u0001O\u0005Oռ\u0008O\nO\u000cOտ\tO\u0001P\u0001P\u0001P\u0005Pք\u0008P\nP\u000cPև\tP\u0001Q\u0005Q֊\u0008Q\nQ\u000cQ֍\tQ\u0001Q\u0001Q\u0001R\u0005R֒\u0008R\nR\u000cR֕\tR\u0001R\u0001R\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0003S֠\u0008S\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0003T֩\u0008T\u0001U\u0001U\u0001U\u0001U\u0005U֯\u0008" ++ "U\nU\u000cUֲ\tU\u0001V\u0001V\u0001V\u0001W\u0001W\u0001W\u0005Wֺ\u0008W\nW\u000cWֽ\tW\u0001X\u0001X\u0001X\u0005Xׂ\u0008X\nX\u000cXׅ\tX\u0001Y\u0001Y\u0001Y\u0005Y\u05ca\u0008Y\nY\u000cY\u05cd\tY\u0001Z\u0005Zא\u0008Z\nZ\u000cZד\tZ\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0005[ך\u0008[\n[\u000c[ם\t[\u0001\\\u0001\\\u0003\\ס\u0008\\\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0003]ת\u0008]\u0001]\u0001]\u0001]\u0003]ׯ\u0008]\u0001]\u0001]\u0001]\u0003]״\u0008]\u0001]\u0001]\u0003]\u05f8\u0008]\u0001]\u0001]\u0001]\u0003]\u05fd\u0008]\u0001]\u0003]؀\u0008]\u0001]\u0003]؃\u0008]\u0001^\u0001^\u0001_\u0001_\u0001_\u0005_؊\u0008_\n_\u000c_؍\t_\u0001`\u0001`\u0001`\u0005`ؒ\u0008`\n`\u000c`ؕ\t`\u0001a\u0001a\u0001a\u0005aؚ\u0008a\na\u000ca؝\ta\u0001b\u0001b\u0001b\u0003bآ\u0008b\u0001c\u0001c\u0005cئ\u0008c\nc\u000ccة\tc\u0001d\u0001d\u0001d\u0001d\u0001d\u0001d\u0001d\u0001d\u0003dس\u0008d\u0001d\u0001d\u0003dط\u0008d\u0001d\u0003dغ\u0008d\u0001e\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0004gم\u0008g\u000bg\u000cgن\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0003i١\u0008i\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0003j٬\u0008j\u0001k\u0001k\u0004kٰ\u0008k\u000bk\u000ckٱ\u0001k\u0001k\u0003kٶ\u0008k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001l\u0001l\u0001m\u0001m\u0001m\u0004mڂ\u0008m\u000bm\u000cmڃ\u0001m\u0001m\u0003mڈ\u0008m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001n\u0005nڐ\u0008n\nn\u000cnړ\tn\u0001n\u0001n\u0001n\u0001o\u0001o\u0001o" ++ "\u0001o\u0001o\u0003oڝ\u0008o\u0001o\u0001o\u0001o\u0003oڢ\u0008o\u0001o\u0001o\u0001o\u0003oڧ\u0008o\u0001o\u0001o\u0003oګ\u0008o\u0001o\u0001o\u0001o\u0003oڰ\u0008o\u0001o\u0003oڳ\u0008o\u0001o\u0001o\u0001o\u0001o\u0003oڹ\u0008o\u0001p\u0001p\u0001p\u0001p\u0001p\u0001p\u0003pہ\u0008p\u0001p\u0001p\u0001p\u0001p\u0003pۇ\u0008p\u0003pۉ\u0008p\u0001p\u0001p\u0001q\u0001q\u0001q\u0001q\u0003qۑ\u0008q\u0001q\u0001q\u0001q\u0003qۖ\u0008q\u0001q\u0001q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0003s۰\u0008s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001t\u0001t\u0003t۹\u0008t\u0001t\u0001t\u0001u\u0001u\u0001u\u0003u܀\u0008u\u0001u\u0003u܃\u0008u\u0001u\u0003u܆\u0008u\u0001u\u0001u\u0001u\u0001v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001x\u0001x\u0001y\u0001y\u0001y\u0001y\u0001y\u0005yܘ\u0008y\ny\u000cyܛ\ty\u0003yܝ\u0008y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001z\u0001z\u0001z\u0001z\u0001z\u0003zܩ\u0008z\u0001{\u0001{\u0001{\u0001{\u0001{\u0001|\u0001|\u0001|\u0001|\u0003|ܴ\u0008|\u0001|\u0001|\u0003|ܸ\u0008|\u0003|ܺ\u0008|\u0001|\u0001|\u0001}\u0001}\u0001}\u0001}\u0003}݂\u0008}\u0001}\u0001}\u0003}݆\u0008}\u0003}݈\u0008}\u0001}\u0001}\u0001~\u0001~\u0001~\u0001~\u0001~\u0001\u0003ݒ\u0008\u0001\u0001\u0001€\u0003€ݗ\u0008€\u0001€\u0001€\u0001\u0001\u0001\u0001\u0005ݟ\u0008\n\u000cݢ\t\u0003ݤ\u0008\u0001\u0001\u0001‚\u0001‚\u0001ƒ\u0001ƒ\u0001ƒ\u0001„\u0001„\u0001„\u0001„\u0003„ݱ\u0008„\u0001…\u0001…\u0001…\u0003…ݶ\u0008…\u0001…\u0001…\u0001…\u0005…ݻ\u0008…\n…\u000c…ݾ\t…\u0003…ހ\u0008…\u0001…\u0001…\u0001†\u0001†\u0001‡\u0001‡\u0001" ++ "‡\u0001ˆ\u0001ˆ\u0001ˆ\u0005ˆތ\u0008ˆ\nˆ\u000cˆޏ\tˆ\u0001‰\u0001‰\u0001Š\u0001Š\u0001Š\u0005Šޖ\u0008Š\nŠ\u000cŠޙ\tŠ\u0001‹\u0001‹\u0001‹\u0005‹ޞ\u0008‹\n‹\u000c‹ޡ\t‹\u0001Œ\u0001Œ\u0003Œޥ\u0008Œ\u0001Œ\u0005Œި\u0008Œ\nŒ\u000cŒޫ\tŒ\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003\u07b5\u0008\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003߃\u0008\u0001\u0001\u0001\u0001\u0001\u0003ߊ\u0008\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003ߥ\u0008\u0001\u0001\u0001\u0001\u0001\u0003߬\u0008\u0003߮\u0008\u0001Ž\u0001Ž\u0001Ž\u0003Ž߳\u0008Ž\u0001\u0001\u0003߷\u0008\u0001\u0003ߺ\u0008\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003ࠉ\u0008\u0001‘\u0001‘\u0001‘\u0003‘ࠎ\u0008‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0003‘ࠗ\u0008‘\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0003’ࠡ\u0008’\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0003“࠴\u0008“\u0001”\u0001”\u0003”࠸\u0008”\u0001”\u0003”࠻\u0008”\u0001•\u0001•\u0001•\u0003•ࡀ\u0008•\u0001–\u0001–\u0001–\u0001—\u0001—\u0001—\u0001˜\u0001˜\u0001˜\u0001˜\u0001˜\u0005˜ࡍ\u0008˜\n˜\u000c˜ࡐ\t˜\u0003˜ࡒ\u0008˜\u0001˜\u0003˜ࡕ\u0008˜\u0001˜\u0003˜ࡘ\u0008˜\u0001˜\u0003˜࡛\u0008˜\u0001˜\u0003˜࡞\u0008˜\u0001™\u0001™\u0001™\u0001š\u0001š\u0001š\u0001›\u0001›\u0003›ࡨ\u0008›\u0001œ\u0001œ\u0001œ\u0001œ\u0001œ\u0001œ\u0001œ\u0003œࡱ\u0008œ\u0001\u0003ࡴ\u0008\u0001" ++ "\u0001\u0001ž\u0001ž\u0001Ÿ\u0001Ÿ\u0003Ÿࡼ\u0008Ÿ\u0001Ÿ\u0003Ÿࡿ\u0008Ÿ\u0001 \u0003 ࢂ\u0008 \u0001 \u0001 \u0003 ࢆ\u0008 \u0001 \u0001 \u0001 \u0001 \u0003 ࢌ\u0008 \u0001 \u0001 \u0001 \u0003 ࢑\u0008 \u0001 \u0001 \u0001 \u0001 \u0003 \u0897\u0008 \u0001 \u0003 ࢚\u0008 \u0001 \u0001 \u0003 ࢞\u0008 \u0001¡\u0001¡\u0003¡ࢢ\u0008¡\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0003¢ࢪ\u0008¢\u0001£\u0001£\u0003£ࢮ\u0008£\u0001£\u0003£ࢱ\u0008£\u0001¤\u0001¤\u0003¤ࢵ\u0008¤\u0001¤\u0003¤ࢸ\u0008¤\u0001¤\u0003¤ࢻ\u0008¤\u0001¥\u0003¥ࢾ\u0008¥\u0001¥\u0001¥\u0003¥ࣂ\u0008¥\u0001¥\u0003¥ࣅ\u0008¥\u0001¥\u0003¥ࣈ\u0008¥\u0001¦\u0001¦\u0001§\u0001§\u0001§\u0001§\u0001§\u0003§࣑\u0008§\u0003§࣓\u0008§\u0001¨\u0001¨\u0001¨\u0001¨\u0001¨\u0003¨ࣚ\u0008¨\u0001©\u0001©\u0001©\u0001ª\u0001ª\u0001ª\u0003ª࣢\u0008ª\u0001ª\u0003ªࣥ\u0008ª\u0001«\u0001«\u0001«\u0001¬\u0001¬\u0001­\u0003­࣭\u0008­\u0001­\u0001­\u0003­ࣱ\u0008­\u0003­ࣳ\u0008­\u0001­\u0003­ࣶ\u0008­\u0001®\u0001®\u0003®ࣺ\u0008®\u0001¯\u0001¯\u0001¯\u0001¯\u0001¯\u0001°\u0001°\u0001°\u0003°ऄ\u0008°\u0001°\u0001°\u0001°\u0001°\u0001°\u0001°\u0001°\u0003°ऍ\u0008°\u0001°\u0001°\u0001°\u0001±\u0001±\u0003±औ\u0008±\u0001±\u0001±\u0001±\u0003±ङ\u0008±\u0001±\u0001±\u0001±\u0003±ञ\u0008±\u0001±\u0001±\u0003±ढ\u0008±\u0001²\u0001²\u0001²\u0001²\u0001²\u0003²ऩ\u0008²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0003²ऱ\u0008²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0003²ह\u0008²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0001²\u0003²ृ\u0008²\u0001³\u0001³\u0001³\u0001³\u0003³ॉ\u0008³\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0001´\u0003´य़\u0008´\u0001" ++ "µ\u0003µॢ\u0008µ\u0001µ\u0001µ\u0001µ\u0003µ१\u0008µ\u0001µ\u0001µ\u0001µ\u0003µ६\u0008µ\u0001µ\u0001µ\u0001µ\u0003µॱ\u0008µ\u0001¶\u0003¶ॴ\u0008¶\u0001¶\u0001¶\u0001¶\u0003¶ॹ\u0008¶\u0001¶\u0001¶\u0001¶\u0003¶ॾ\u0008¶\u0001¶\u0001¶\u0001¶\u0001¶\u0001¶\u0001¶\u0003¶আ\u0008¶\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0005·\u098e\u0008·\n·\u000c·\u0991\t·\u0001·\u0001·\u0001¸\u0001¸\u0001¸\u0003¸ঘ\u0008¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0005¸ড\u0008¸\n¸\u000c¸ত\t¸\u0001¸\u0001¸\u0001¸\u0003¸\u09a9\u0008¸\u0001¸\u0001¸\u0001¸\u0001¹\u0003¹য\u0008¹\u0001¹\u0001¹\u0001¹\u0003¹\u09b4\u0008¹\u0001¹\u0001¹\u0001¹\u0003¹হ\u0008¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0003¹ী\u0008¹\u0001º\u0001º\u0001º\u0001º\u0001º\u0001º\u0001»\u0001»\u0001»\u0003»ো\u0008»\u0001»\u0001»\u0001»\u0001»\u0001»\u0001»\u0003»\u09d3\u0008»\u0001»\u0001»\u0001»\u0001»\u0003»\u09d9\u0008»\u0001¼\u0001¼\u0001¼\u0001¼\u0003¼য়\u0008¼\u0001½\u0001½\u0001½\u0001½\u0001½\u0001½\u0001½\u0003½২\u0008½\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0005¾ৰ\u0008¾\n¾\u000c¾৳\t¾\u0001¿\u0001¿\u0001¿\u0001¿\u0001¿\u0001¿\u0003¿৻\u0008¿\u0001À\u0001À\u0001À\u0001À\u0003Àਁ\u0008À\u0001Á\u0001Á\u0003Áਅ\u0008Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0003Á\u0a0e\u0008Á\u0001Â\u0001Â\u0003Â\u0a12\u0008Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Ã\u0001Ã\u0003Ãਚ\u0008Ã\u0001Ã\u0003Ãਝ\u0008Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0003Ãਦ\u0008Ã\u0001Ä\u0001Ä\u0001Å\u0001Å\u0001Æ\u0001Æ\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0003Çਲ\u0008Ç\u0001È\u0001È\u0001È\u0001È\u0001È\u0001É\u0001É\u0001É\u0001É\u0001É\u0001Ê\u0001Ê\u0001Ê\u0001Ë\u0001Ë\u0003Ë\u0a43\u0008Ë\u0001Ì\u0003Ì\u0a46\u0008Ì\u0001Ì\u0001Ì\u0003Ì\u0a4a\u0008Ì\u0001Í\u0001Í\u0001Í" ++ "\u0001Í\u0001Í\u0001Í\u0001Í\u0005Í\u0a53\u0008Í\nÍ\u000cÍ\u0a56\tÍ\u0001Î\u0001Î\u0001Î\u0001Ï\u0003Ïੜ\u0008Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0003Ï\u0a63\u0008Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0003Ï੩\u0008Ï\u0001Ð\u0001Ð\u0001Ð\u0001Ð\u0003Ð੯\u0008Ð\u0001Ñ\u0001Ñ\u0001Ñ\u0001Ñ\u0003Ñੵ\u0008Ñ\u0001Ñ\u0001Ñ\u0001Ñ\u0001Ò\u0003Ò\u0a7b\u0008Ò\u0001Ò\u0001Ò\u0001Ò\u0003Ò\u0a80\u0008Ò\u0001Ò\u0003Òઃ\u0008Ò\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0001Ô\u0001Ô\u0001Ô\u0001Ô\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0003Õ\u0a92\u0008Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0003Õછ\u0008Õ\u0004Õઝ\u0008Õ\u000bÕ\u000cÕઞ\u0001Ö\u0001Ö\u0001Ö\u0001Ö\u0003Öથ\u0008Ö\u0001×\u0001×\u0001×\u0001×\u0003×ફ\u0008×\u0001×\u0001×\u0001×\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ø\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0003Ùઽ\u0008Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0003Ùૅ\u0008Ù\u0001Ù\u0003Ùૈ\u0008Ù\u0005Ù\u0aca\u0008Ù\nÙ\u000cÙ્\tÙ\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0003Ù\u0ad6\u0008Ù\u0005Ù\u0ad8\u0008Ù\nÙ\u000cÙ\u0adb\tÙ\u0001Ú\u0001Ú\u0003Ú\u0adf\u0008Ú\u0001Ú\u0001Ú\u0001Ú\u0003Ú\u0ae4\u0008Ú\u0001Û\u0003Û૧\u0008Û\u0001Û\u0001Û\u0001Û\u0003Û૬\u0008Û\u0001Ü\u0003Ü૯\u0008Ü\u0001Ü\u0001Ü\u0001Ü\u0001Ý\u0001Ý\u0003Ý\u0af6\u0008Ý\u0001Þ\u0001Þ\u0003Þૺ\u0008Þ\u0001Þ\u0001Þ\u0001ß\u0001ß\u0001ß\u0001à\u0001à\u0001à\u0001à\u0001á\u0001á\u0003áଇ\u0008á\u0001á\u0001á\u0001á\u0001á\u0004á\u0b0d\u0008á\u000bá\u000cá\u0b0e\u0001á\u0001á\u0001â\u0001â\u0001â\u0001â\u0001â\u0003âଘ\u0008â\u0001ã\u0001ã\u0001ã\u0003ãଝ\u0008ã\u0001ã\u0003ãଠ\u0008ã\u0001ä\u0001ä\u0001ä\u0003äଥ\u0008ä\u0001å\u0001å\u0001å\u0003åପ\u0008å\u0001æ\u0003æଭ\u0008æ\u0001æ\u0001æ\u0003æ\u0b31\u0008æ\u0001æ\u0003æ\u0b34\u0008æ\u0001ç\u0001ç\u0001ç\u0001ç" ++ "\u0003ç\u0b3a\u0008ç\u0001ç\u0003çଽ\u0008ç\u0001è\u0001è\u0003èୁ\u0008è\u0001è\u0001è\u0003è\u0b45\u0008è\u0001è\u0003èୈ\u0008è\u0001é\u0001é\u0003éୌ\u0008é\u0001é\u0001é\u0001ê\u0001ê\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0001ë\u0003ë\u0b5e\u0008ë\u0001ì\u0001ì\u0003ìୢ\u0008ì\u0001ì\u0001ì\u0001ì\u0001í\u0003í୨\u0008í\u0001í\u0001í\u0001î\u0001î\u0001î\u0001î\u0001î\u0003îୱ\u0008î\u0001î\u0001î\u0001î\u0003î୶\u0008î\u0001î\u0003î\u0b79\u0008î\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0001ï\u0003ïஈ\u0008ï\u0001ð\u0001ð\u0001ð\u0001ð\u0001ð\u0003ðஏ\u0008ð\u0001ñ\u0001ñ\u0003ñஓ\u0008ñ\u0001ñ\u0001ñ\u0001ò\u0001ò\u0003òங\u0008ò\u0001ò\u0001ò\u0001ó\u0001ó\u0003óட\u0008ó\u0001ó\u0001ó\u0001ô\u0001ô\u0003ô\u0ba5\u0008ô\u0001ô\u0001ô\u0001ô\u0003ôப\u0008ô\u0001õ\u0001õ\u0001õ\u0003õய\u0008õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0003õஸ\u0008õ\u0001ö\u0001ö\u0001ö\u0001ö\u0001ö\u0001ö\u0003öீ\u0008ö\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0003÷ே\u0008÷\u0003÷\u0bc9\u0008÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0001÷\u0003÷ௗ\u0008÷\u0001÷\u0001÷\u0003÷\u0bdb\u0008÷\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0003ø\u0be3\u0008ø\u0001ø\u0001ø\u0003ø௧\u0008ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0001ø\u0003ø௹\u0008ø\u0001ù\u0001ù\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0001ú\u0003úఆ\u0008ú\u0001û\u0001û\u0001û\u0001û\u0001ü\u0001ü\u0001ü\u0001ü\u0001ü\u0001ü\u0003üఒ\u0008ü\u0001ü\u0003üక\u0008ü\u0001ü\u0001ü\u0003üఙ\u0008ü\u0001ü\u0001ü\u0003üఝ\u0008ü\u0001ü\u0003üఠ\u0008ü\u0003üఢ\u0008ü\u0001ü\u0001ü\u0001ü\u0001ý" ++ "\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýభ\u0008ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýఴ\u0008ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ý఼\u0008ý\u0003ýా\u0008ý\u0001ý\u0001ý\u0001ý\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0003þై\u0008þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0003þ\u0c4f\u0008þ\u0003þ\u0c51\u0008þ\u0001þ\u0001þ\u0001þ\u0003þౖ\u0008þ\u0003þౘ\u0008þ\u0001ÿ\u0001ÿ\u0001Ā\u0001Ā\u0001ā\u0001ā\u0001Ă\u0001Ă\u0001ă\u0001ă\u0001Ą\u0001Ą\u0001Ą\u0003Ą౧\u0008Ą\u0001Ą\u0001Ą\u0001ą\u0001ą\u0001Ć\u0001Ć\u0001ć\u0001ć\u0001Ĉ\u0001Ĉ\u0001Ĉ\u0005Ĉ\u0c74\u0008Ĉ\nĈ\u000cĈ౷\tĈ\u0001ĉ\u0001ĉ\u0003ĉ౻\u0008ĉ\u0001ĉ\u0003ĉ౾\u0008ĉ\u0001Ċ\u0001Ċ\u0003Ċಂ\u0008Ċ\u0001ċ\u0001ċ\u0003ċಆ\u0008ċ\u0001ċ\u0001ċ\u0001ċ\u0003ċಋ\u0008ċ\u0001Č\u0001Č\u0001Č\u0003Čಐ\u0008Č\u0001Č\u0001Č\u0001Č\u0001Č\u0001Č\u0001Č\u0003Čಘ\u0008Č\u0001č\u0001č\u0001č\u0003čಝ\u0008č\u0001č\u0001č\u0001č\u0001č\u0001Ď\u0001Ď\u0003Ďಥ\u0008Ď\u0001ď\u0001ď\u0001ď\u0003ďಪ\u0008ď\u0001ď\u0001ď\u0001Đ\u0001Đ\u0001Đ\u0005Đಱ\u0008Đ\nĐ\u000cĐ\u0cb4\tĐ\u0001đ\u0001đ\u0001đ\u0003đಹ\u0008đ\u0001đ\u0001đ\u0001đ\u0003đಾ\u0008đ\u0001đ\u0001đ\u0001đ\u0001đ\u0005đೄ\u0008đ\nđ\u000cđೇ\tđ\u0003đ\u0cc9\u0008đ\u0001đ\u0001đ\u0001đ\u0001đ\u0001đ\u0001đ\u0003đ\u0cd1\u0008đ\u0001đ\u0001đ\u0003đೕ\u0008đ\u0003đ\u0cd7\u0008đ\u0001Ē\u0001Ē\u0001Ē\u0003Ē\u0cdc\u0008Ē\u0001ē\u0001ē\u0001Ĕ\u0001Ĕ\u0001ĕ\u0001ĕ\u0001Ė\u0001Ė\u0001Ė\u0001Ė\u0001Ė\u0003Ė೩\u0008Ė\u0003Ė೫\u0008Ė\u0001ė\u0001ė\u0001ė\u0001ė\u0001ė\u0003ėೲ\u0008ė\u0003ė\u0cf4\u0008ė\u0001Ę\u0001Ę\u0001Ę\u0001Ę\u0001Ę\u0001Ę\u0003Ę\u0cfc\u0008Ę\u0001Ę\u0003Ę\u0cff\u0008Ę\u0001Ę\u0003Ęം\u0008Ę\u0001ę\u0001ę\u0001ę\u0001ę\u0001ę\u0003ęഉ\u0008ę\u0001ę\u0001ę\u0001ę\u0004ęഎ\u0008ę\u000bę\u000cęഏ\u0003" ++ "ęഒ\u0008ę\u0001ę\u0003ęക\u0008ę\u0001ę\u0003ęഘ\u0008ę\u0001Ě\u0001Ě\u0001Ě\u0001ě\u0001ě\u0001Ĝ\u0001Ĝ\u0001Ĝ\u0001ĝ\u0001ĝ\u0001Ğ\u0003Ğഥ\u0008Ğ\u0001Ğ\u0001Ğ\u0001Ğ\u0001Ğ\u0003Ğഫ\u0008Ğ\u0001Ğ\u0003Ğമ\u0008Ğ\u0001Ğ\u0001Ğ\u0003Ğല\u0008Ğ\u0001Ğ\u0003Ğവ\u0008Ğ\u0001ğ\u0001ğ\u0001ğ\u0003ğഺ\u0008ğ\u0001Ġ\u0001Ġ\u0001Ġ\u0001Ġ\u0003Ġീ\u0008Ġ\u0001Ġ\u0001Ġ\u0001Ġ\u0001Ġ\u0003Ġെ\u0008Ġ\u0004Ġൈ\u0008Ġ\u000bĠ\u000cĠ\u0d49\u0001Ġ\u0001Ġ\u0001Ġ\u0004Ġ൏\u0008Ġ\u000bĠ\u000cĠ\u0d50\u0003Ġ\u0d53\u0008Ġ\u0001Ġ\u0003Ġൖ\u0008Ġ\u0001ġ\u0001ġ\u0001ġ\u0001ġ\u0001Ģ\u0001Ģ\u0001Ģ\u0004Ģൟ\u0008Ģ\u000bĢ\u000cĢൠ\u0001ģ\u0001ģ\u0001ģ\u0001ģ\u0001Ĥ\u0001Ĥ\u0001Ĥ\u0001Ĥ\u0003Ĥ൫\u0008Ĥ\u0001ĥ\u0001ĥ\u0001ĥ\u0001ĥ\u0003ĥ൱\u0008ĥ\u0001Ħ\u0001Ħ\u0001Ħ\u0003Ħ൶\u0008Ħ\u0003Ħ൸\u0008Ħ\u0001Ħ\u0003Ħൻ\u0008Ħ\u0001ħ\u0001ħ\u0001Ĩ\u0001Ĩ\u0001Ĩ\u0003Ĩං\u0008Ĩ\u0001Ĩ\u0001Ĩ\u0003Ĩආ\u0008Ĩ\u0001Ĩ\u0003Ĩඉ\u0008Ĩ\u0003Ĩඋ\u0008Ĩ\u0001ĩ\u0001ĩ\u0001Ī\u0001Ī\u0001ī\u0001ī\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0003Ĭ\u0d98\u0008Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0003Ĭඥ\u0008Ĭ\u0003Ĭට\u0008Ĭ\u0001Ĭ\u0001Ĭ\u0003Ĭණ\u0008Ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0003ĭන\u0008ĭ\u0001ĭ\u0001ĭ\u0001ĭ\u0001Į\u0001Į\u0001Į\u0001Į\u0003Įය\u0008Į\u0001Į\u0001Į\u0001Į\u0001Į\u0001Į\u0001Į\u0001Į\u0004Įස\u0008Į\u000bĮ\u000cĮහ\u0001į\u0001į\u0001į\u0001į\u0003į\u0dcb\u0008į\u0001İ\u0001İ\u0001İ\u0001ı\u0001ı\u0001ı\u0001IJ\u0001IJ\u0001IJ\u0001ij\u0001ij\u0001ij\u0001Ĵ\u0001Ĵ\u0003Ĵෛ\u0008Ĵ\u0001Ĵ\u0001Ĵ\u0001Ĵ\u0003Ĵ\u0de0\u0008Ĵ\u0001ĵ\u0001ĵ\u0003ĵ\u0de4\u0008ĵ\u0001Ķ\u0001Ķ\u0003Ķ෨\u0008Ķ\u0001ķ\u0001ķ\u0001ķ\u0005ķ෭\u0008ķ\nķ\u000cķ\u0df0\tķ\u0001ĸ\u0001ĸ\u0001ĸ\u0005ĸ\u0df5\u0008ĸ\nĸ\u000cĸ\u0df8\tĸ\u0001Ĺ\u0001Ĺ" ++ "\u0003Ĺ\u0dfc\u0008Ĺ\u0001ĺ\u0001ĺ\u0001ĺ\u0005ĺก\u0008ĺ\nĺ\u000cĺค\tĺ\u0001Ļ\u0001Ļ\u0001Ļ\u0001Ļ\u0005Ļช\u0008Ļ\nĻ\u000cĻญ\tĻ\u0003Ļฏ\u0008Ļ\u0001Ļ\u0001Ļ\u0001ļ\u0001ļ\u0001ļ\u0004ļถ\u0008ļ\u000bļ\u000cļท\u0001Ľ\u0001Ľ\u0001ľ\u0001ľ\u0003ľพ\u0008ľ\u0001Ŀ\u0001Ŀ\u0003Ŀย\u0008Ŀ\u0001ŀ\u0001ŀ\u0003ŀฦ\u0008ŀ\u0001Ł\u0001Ł\u0003Łส\u0008Ł\u0001ł\u0001ł\u0001ł\u0001ł\u0001ł\u0001ł\u0001ł\u0001ł\u0001ł\u0005łี\u0008ł\nł\u000cłุ\tł\u0003łฺ\u0008ł\u0001ł\u0001ł\u0001Ń\u0001Ń\u0003Ńเ\u0008Ń\u0001ń\u0001ń\u0001Ņ\u0001Ņ\u0001Ņ\u0001Ņ\u0001Ņ\u0001Ņ\u0001Ņ\u0001Ņ\u0001Ņ\u0003Ņํ\u0008Ņ\u0001ņ\u0001ņ\u0003ņ๑\u0008ņ\u0001Ň\u0001Ň\u0001ň\u0001ň\u0001ʼn\u0001ʼn\u0001ʼn\u0000\u0000Ŋ\u0000\u0002\u0004\u0006\u0008\n\u000c\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~€‚„†ˆŠŒŽ’”–˜šœž ¢¤¦¨ª¬®°²´¶¸º¼¾ÀÂÄÆÈÊÌÎÐÒÔÖØÚÜÞàâäæèêìîðòôöøúüþĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĸĺļľŀłńņňŊŌŎŐŒŔŖŘŚŜŞŠŢŤŦŨŪŬŮŰŲŴŶŸźżžƀƂƄƆƈƊƌƎƐƒƔƖƘƚƜƞƠƢƤƦƨƪƬƮưƲƴƶƸƺƼƾǀǂDŽdžLjNJnjǎǐǒǔǖǘǚǜǞǠǢǤǦǨǪǬǮǰDzǴǶǸǺǼǾȀȂȄȆȈȊȌȎȐȒȔȖȘȚȜȞȠȢȤȦȨȪȬȮȰȲȴȶȸȺȼȾɀɂɄɆɈɊɌɎɐɒɔɖɘɚɜ" ++ "ɞɠɢɤɦɨɪɬɮɰɲɴɶɸɺɼɾʀʂʄʆʈʊʌʎʐʒ\u0000K\u0002\u0000\u0012\u0012MM\u0001\u0000\u0018\u0019\u0001\u0000GH\u0002\u0000´´üü\u0002\u0000JJªª\u0002\u000099››\u0001\u0000çè\u0003\u0000##77gg\u0002\u0000\u0011\u0011÷÷\u0001\u0000vw\u0001\u0000¾¿\u0002\u0000\u0012\u0012\u0015\u0015\u0002\u0000˜˜ıı\u0002\u0000İİ\u0002\u0000xxIJIJ\u0002\u0000,,ŒŒ\u0002\u0000,,‡‡\u0006\u0000``rrxx˜˜Ÿ \u0002\u0000--ĕĕ\u0001\u0000¤§\u0003\u0000QQÁÁ\u0003\u0000NNžžĉĉ\u0002\u0000ÁÁ\u0004\u0000\u0012\u0012\u0015\u0015¬¬ûû\u0003\u0000\"\"‘‘ĎĎ\u0001\u0000\u0004\u0007\u0002\u0000@@ĈĈ\u0001\u0000ħĨ\u0002\u0000\u0016\u0016““\u0007\u0000\u0012\u0012oo––ÃÃÑÑĆĆĢĢ\u0001\u0000Ęę\u0001\u0000ÙÚ\u0001\u0000ÊË\u0001\u0000pq\u0001\u0000õö\u0002\u0000©©ÙÚ\u0002\u0000FFss\u0001\u0000åæ\u0001\u0000òó\u0001\u0000=>\u0002\u0000\u0012\u0012ÄÄ\u0001\u0000ĝĞ\u0001\u0000ÎÏ\u0002\u0000]]ÀÀ\u0002\u0000\u000c\u000căă\u0001\u0000/0\u0001\u0000ÈÉ\u0003\u0000==AAtt\u0002\u0000==tt\u0001\u0000tu\u0001\u0000Š‹\u0002\u0000ĔĔĖĖ\u0001\u0000¡¢\u0002\u0000**ěě\u0001\u0000¼½\u0002\u0000ÈÈåå\u0003\u0000\u000f\u000f==ĝĝ\u0002\u0000ååĝĝ\u0001\u0000\r\u000e\u0001\u0000€\u0001\u000034\u0001\u0000ďĐ\u0002\u0000››ÔÔ\u0001\u0000ÚÛ\u0001\u0000Z[\u0002\u0000©©««\u0001\u0000ÆÇ\u0001\u0000íî\u0002\u0000IIUU\u0001\u0000\u000f\u0010\u0002\u0000¶¶ĩĩ\u0002\u0000ëìïï\u0002\u0000CCzz\u0001\u0000\u0008\t\u0017\u0000\u000b\u001c\u001e+/KMMR_aqswy‹‘–™œ¡£¨­°±³ÀÃÄÆÏÑÑÔ×ÙèêðòĈĊĔĖĮ࿌\u0000ʔ\u0001\u0000\u0000\u0000\u0002ʣ\u0001\u0000\u0000\u0000\u0004ʥ\u0001\u0000\u0000\u0000\u0006ʼ\u0001\u0000\u0000\u0000" ++ "\u0008ˏ\u0001\u0000\u0000\u0000\nˑ\u0001\u0000\u0000\u0000\u000c˝\u0001\u0000\u0000\u0000\u000e˟\u0001\u0000\u0000\u0000\u0010ˡ\u0001\u0000\u0000\u0000\u0012˥\u0001\u0000\u0000\u0000\u0014˱\u0001\u0000\u0000\u0000\u0016˸\u0001\u0000\u0000\u0000\u0018́\u0001\u0000\u0000\u0000\u001ă\u0001\u0000\u0000\u0000\u001c̈\u0001\u0000\u0000\u0000\u001e̊\u0001\u0000\u0000\u0000 ̔\u0001\u0000\u0000\u0000\"̗\u0001\u0000\u0000\u0000$̚\u0001\u0000\u0000\u0000&̝\u0001\u0000\u0000\u0000(̢\u0001\u0000\u0000\u0000*̥\u0001\u0000\u0000\u0000,̨\u0001\u0000\u0000\u0000.͇\u0001\u0000\u0000\u00000͉\u0001\u0000\u0000\u00002͚\u0001\u0000\u0000\u00004͝\u0001\u0000\u0000\u00006ͩ\u0001\u0000\u0000\u00008Ή\u0001\u0000\u0000\u0000:\u038b\u0001\u0000\u0000\u0000<Χ\u0001\u0000\u0000\u0000>ί\u0001\u0000\u0000\u0000@γ\u0001\u0000\u0000\u0000Bι\u0001\u0000\u0000\u0000DϜ\u0001\u0000\u0000\u0000Fϟ\u0001\u0000\u0000\u0000Hϡ\u0001\u0000\u0000\u0000JϦ\u0001\u0000\u0000\u0000Lϴ\u0001\u0000\u0000\u0000NЂ\u0001\u0000\u0000\u0000PЎ\u0001\u0000\u0000\u0000RМ\u0001\u0000\u0000\u0000TЬ\u0001\u0000\u0000\u0000Vа\u0001\u0000\u0000\u0000Xд\u0001\u0000\u0000\u0000Zх\u0001\u0000\u0000\u0000\\ч\u0001\u0000\u0000\u0000^я\u0001\u0000\u0000\u0000`њ\u0001\u0000\u0000\u0000bѤ\u0001\u0000\u0000\u0000dѽ\u0001\u0000\u0000\u0000fҁ\u0001\u0000\u0000\u0000h҃\u0001\u0000\u0000\u0000jҕ\u0001\u0000\u0000\u0000lһ\u0001\u0000\u0000\u0000nҽ\u0001\u0000\u0000\u0000pҿ\u0001\u0000\u0000\u0000rӁ\u0001\u0000\u0000\u0000tӉ\u0001\u0000\u0000\u0000vә\u0001\u0000\u0000\u0000xӥ\u0001\u0000\u0000\u0000zӱ\u0001\u0000\u0000\u0000|ӵ\u0001\u0000\u0000\u0000~ԁ\u0001\u0000\u0000\u0000€Ԇ\u0001\u0000\u0000\u0000‚Ԏ\u0001\u0000\u0000\u0000„ԑ\u0001\u0000\u0000\u0000†Ԕ\u0001\u0000\u0000\u0000ˆԗ\u0001\u0000\u0000\u0000ŠԜ\u0001\u0000\u0000\u0000Œԟ\u0001\u0000\u0000\u0000ŽԻ\u0001\u0000\u0000\u0000Ջ\u0001\u0000\u0000\u0000’Ս\u0001\u0000\u0000\u0000”Տ\u0001\u0000\u0000\u0000–Ց\u0001\u0000\u0000\u0000˜ՠ\u0001\u0000\u0000\u0000šբ\u0001\u0000\u0000\u0000œխ\u0001\u0000\u0000\u0000žո\u0001\u0000\u0000\u0000 ր\u0001\u0000\u0000\u0000¢\u058b\u0001\u0000\u0000\u0000¤֓\u0001\u0000\u0000\u0000¦֟\u0001\u0000\u0000\u0000¨֨\u0001\u0000\u0000\u0000ª֪\u0001\u0000\u0000\u0000¬ֳ\u0001\u0000\u0000\u0000®ֶ\u0001\u0000\u0000\u0000°־\u0001\u0000\u0000\u0000²׆" ++ "\u0001\u0000\u0000\u0000´ב\u0001\u0000\u0000\u0000¶ז\u0001\u0000\u0000\u0000¸מ\u0001\u0000\u0000\u0000º؂\u0001\u0000\u0000\u0000¼؄\u0001\u0000\u0000\u0000¾؆\u0001\u0000\u0000\u0000À؎\u0001\u0000\u0000\u0000Âؖ\u0001\u0000\u0000\u0000Äء\u0001\u0000\u0000\u0000Æأ\u0001\u0000\u0000\u0000Èع\u0001\u0000\u0000\u0000Êػ\u0001\u0000\u0000\u0000Ìؾ\u0001\u0000\u0000\u0000Îق\u0001\u0000\u0000\u0000Ðو\u0001\u0000\u0000\u0000Ò٠\u0001\u0000\u0000\u0000Ô٫\u0001\u0000\u0000\u0000Ö٭\u0001\u0000\u0000\u0000Øٹ\u0001\u0000\u0000\u0000Úپ\u0001\u0000\u0000\u0000Üڋ\u0001\u0000\u0000\u0000Þڸ\u0001\u0000\u0000\u0000àں\u0001\u0000\u0000\u0000âی\u0001\u0000\u0000\u0000äۛ\u0001\u0000\u0000\u0000æۨ\u0001\u0000\u0000\u0000è۳\u0001\u0000\u0000\u0000êۼ\u0001\u0000\u0000\u0000ì܊\u0001\u0000\u0000\u0000î܌\u0001\u0000\u0000\u0000ð\u070e\u0001\u0000\u0000\u0000òܒ\u0001\u0000\u0000\u0000ôܨ\u0001\u0000\u0000\u0000öܪ\u0001\u0000\u0000\u0000øܯ\u0001\u0000\u0000\u0000úܽ\u0001\u0000\u0000\u0000ü\u074b\u0001\u0000\u0000\u0000þݑ\u0001\u0000\u0000\u0000Āݖ\u0001\u0000\u0000\u0000Ăݚ\u0001\u0000\u0000\u0000Ąݧ\u0001\u0000\u0000\u0000Ćݩ\u0001\u0000\u0000\u0000Ĉݰ\u0001\u0000\u0000\u0000Ċݲ\u0001\u0000\u0000\u0000Čރ\u0001\u0000\u0000\u0000Ďޅ\u0001\u0000\u0000\u0000Đލ\u0001\u0000\u0000\u0000Ēސ\u0001\u0000\u0000\u0000Ĕޒ\u0001\u0000\u0000\u0000Ėޚ\u0001\u0000\u0000\u0000Ęޢ\u0001\u0000\u0000\u0000Ě߭\u0001\u0000\u0000\u0000Ĝ߲\u0001\u0000\u0000\u0000Ğߴ\u0001\u0000\u0000\u0000Ġ߹\u0001\u0000\u0000\u0000Ģࠊ\u0001\u0000\u0000\u0000Ĥ࠘\u0001\u0000\u0000\u0000Ħࠢ\u0001\u0000\u0000\u0000Ĩ࠺\u0001\u0000\u0000\u0000Ī࠼\u0001\u0000\u0000\u0000Ĭࡁ\u0001\u0000\u0000\u0000Įࡄ\u0001\u0000\u0000\u0000İࡇ\u0001\u0000\u0000\u0000IJ\u085f\u0001\u0000\u0000\u0000Ĵࡢ\u0001\u0000\u0000\u0000Ķࡧ\u0001\u0000\u0000\u0000ĸࡩ\u0001\u0000\u0000\u0000ĺࡳ\u0001\u0000\u0000\u0000ļࡷ\u0001\u0000\u0000\u0000ľࡹ\u0001\u0000\u0000\u0000ŀ࢝\u0001\u0000\u0000\u0000łࢡ\u0001\u0000\u0000\u0000ńࢩ\u0001\u0000\u0000\u0000ņࢫ\u0001\u0000\u0000\u0000ňࢲ\u0001\u0000\u0000\u0000Ŋࢽ\u0001\u0000\u0000\u0000Ōࣉ\u0001\u0000\u0000\u0000Ŏ࣋\u0001\u0000\u0000\u0000Őࣙ\u0001\u0000\u0000\u0000Œࣛ\u0001\u0000\u0000\u0000Ŕࣞ\u0001\u0000\u0000\u0000Ŗࣦ\u0001\u0000\u0000\u0000Řࣩ\u0001\u0000\u0000\u0000Śࣲ\u0001\u0000\u0000\u0000Ŝࣹ\u0001\u0000" ++ "\u0000\u0000Şࣻ\u0001\u0000\u0000\u0000Šऀ\u0001\u0000\u0000\u0000Ţऑ\u0001\u0000\u0000\u0000Ťू\u0001\u0000\u0000\u0000Ŧॄ\u0001\u0000\u0000\u0000Ũफ़\u0001\u0000\u0000\u0000Ūॡ\u0001\u0000\u0000\u0000Ŭॳ\u0001\u0000\u0000\u0000Ůই\u0001\u0000\u0000\u0000Űঔ\u0001\u0000\u0000\u0000Ųম\u0001\u0000\u0000\u0000Ŵু\u0001\u0000\u0000\u0000Ŷে\u0001\u0000\u0000\u0000Ÿ\u09da\u0001\u0000\u0000\u0000ź১\u0001\u0000\u0000\u0000ż৩\u0001\u0000\u0000\u0000ž৴\u0001\u0000\u0000\u0000ƀৼ\u0001\u0000\u0000\u0000Ƃਂ\u0001\u0000\u0000\u0000Ƅਏ\u0001\u0000\u0000\u0000Ɔਗ\u0001\u0000\u0000\u0000ƈਧ\u0001\u0000\u0000\u0000Ɗ\u0a29\u0001\u0000\u0000\u0000ƌਫ\u0001\u0000\u0000\u0000Ǝਭ\u0001\u0000\u0000\u0000Ɛਲ਼\u0001\u0000\u0000\u0000ƒਸ\u0001\u0000\u0000\u0000Ɣ\u0a3d\u0001\u0000\u0000\u0000Ɩੀ\u0001\u0000\u0000\u0000Ƙ\u0a45\u0001\u0000\u0000\u0000ƚੋ\u0001\u0000\u0000\u0000Ɯ\u0a57\u0001\u0000\u0000\u0000ƞਜ਼\u0001\u0000\u0000\u0000Ơ੪\u0001\u0000\u0000\u0000Ƣੰ\u0001\u0000\u0000\u0000Ƥ\u0a7a\u0001\u0000\u0000\u0000Ʀ\u0a84\u0001\u0000\u0000\u0000ƨઈ\u0001\u0000\u0000\u0000ƪઌ\u0001\u0000\u0000\u0000Ƭઠ\u0001\u0000\u0000\u0000Ʈદ\u0001\u0000\u0000\u0000ưય\u0001\u0000\u0000\u0000Ʋસ\u0001\u0000\u0000\u0000ƴ\u0adc\u0001\u0000\u0000\u0000ƶ૦\u0001\u0000\u0000\u0000Ƹ૮\u0001\u0000\u0000\u0000ƺ\u0af5\u0001\u0000\u0000\u0000Ƽ\u0af7\u0001\u0000\u0000\u0000ƾ૽\u0001\u0000\u0000\u0000ǀ\u0b00\u0001\u0000\u0000\u0000ǂ\u0b04\u0001\u0000\u0000\u0000DŽଗ\u0001\u0000\u0000\u0000džଙ\u0001\u0000\u0000\u0000Ljଡ\u0001\u0000\u0000\u0000NJଦ\u0001\u0000\u0000\u0000njବ\u0001\u0000\u0000\u0000ǎଵ\u0001\u0000\u0000\u0000ǐା\u0001\u0000\u0000\u0000ǒ\u0b49\u0001\u0000\u0000\u0000ǔ\u0b4f\u0001\u0000\u0000\u0000ǖଢ଼\u0001\u0000\u0000\u0000ǘୟ\u0001\u0000\u0000\u0000ǚ୧\u0001\u0000\u0000\u0000ǜ\u0b78\u0001\u0000\u0000\u0000Ǟ\u0b7a\u0001\u0000\u0000\u0000Ǡஎ\u0001\u0000\u0000\u0000Ǣஐ\u0001\u0000\u0000\u0000Ǥ\u0b96\u0001\u0000\u0000\u0000Ǧஜ\u0001\u0000\u0000\u0000Ǩன\u0001\u0000\u0000\u0000Ǫ\u0bab\u0001\u0000\u0000\u0000Ǭஹ\u0001\u0000\u0000\u0000Ǯு\u0001\u0000\u0000\u0000ǰ\u0bdc\u0001\u0000\u0000\u0000Dz௺\u0001\u0000\u0000\u0000Ǵ\u0bfc\u0001\u0000\u0000\u0000Ƕఇ\u0001\u0000\u0000\u0000Ǹడ\u0001\u0000\u0000\u0000Ǻఽ\u0001\u0000\u0000\u0000Ǽూ\u0001\u0000\u0000\u0000Ǿౙ\u0001\u0000\u0000\u0000Ȁ\u0c5b\u0001\u0000\u0000\u0000Ȃౝ\u0001\u0000\u0000\u0000Ȅ\u0c5f\u0001\u0000\u0000\u0000Ȇౡ\u0001\u0000\u0000\u0000" ++ "Ȉౣ\u0001\u0000\u0000\u0000Ȋ౪\u0001\u0000\u0000\u0000Ȍ౬\u0001\u0000\u0000\u0000Ȏ౮\u0001\u0000\u0000\u0000Ȑ\u0c70\u0001\u0000\u0000\u0000Ȓ౽\u0001\u0000\u0000\u0000Ȕ౿\u0001\u0000\u0000\u0000Ȗಊ\u0001\u0000\u0000\u0000Șಏ\u0001\u0000\u0000\u0000Țಜ\u0001\u0000\u0000\u0000Ȝತ\u0001\u0000\u0000\u0000Ȟದ\u0001\u0000\u0000\u0000Ƞಭ\u0001\u0000\u0000\u0000Ȣೖ\u0001\u0000\u0000\u0000Ȥ\u0cdb\u0001\u0000\u0000\u0000Ȧೝ\u0001\u0000\u0000\u0000Ȩ\u0cdf\u0001\u0000\u0000\u0000Ȫೡ\u0001\u0000\u0000\u0000Ȭ೪\u0001\u0000\u0000\u0000Ȯೳ\u0001\u0000\u0000\u0000Ȱ\u0cf5\u0001\u0000\u0000\u0000Ȳഃ\u0001\u0000\u0000\u0000ȴങ\u0001\u0000\u0000\u0000ȶജ\u0001\u0000\u0000\u0000ȸഞ\u0001\u0000\u0000\u0000Ⱥഡ\u0001\u0000\u0000\u0000ȼത\u0001\u0000\u0000\u0000Ⱦഹ\u0001\u0000\u0000\u0000ɀ഻\u0001\u0000\u0000\u0000ɂൗ\u0001\u0000\u0000\u0000Ʉ൛\u0001\u0000\u0000\u0000Ɇൢ\u0001\u0000\u0000\u0000Ɉ൦\u0001\u0000\u0000\u0000Ɋ൬\u0001\u0000\u0000\u0000Ɍൺ\u0001\u0000\u0000\u0000Ɏർ\u0001\u0000\u0000\u0000ɐඊ\u0001\u0000\u0000\u0000ɒඌ\u0001\u0000\u0000\u0000ɔඎ\u0001\u0000\u0000\u0000ɖඐ\u0001\u0000\u0000\u0000ɘඒ\u0001\u0000\u0000\u0000ɚඬ\u0001\u0000\u0000\u0000ɜඵ\u0001\u0000\u0000\u0000ɞෆ\u0001\u0000\u0000\u0000ɠ\u0dcc\u0001\u0000\u0000\u0000ɢා\u0001\u0000\u0000\u0000ɤි\u0001\u0000\u0000\u0000ɦ\u0dd5\u0001\u0000\u0000\u0000ɨෘ\u0001\u0000\u0000\u0000ɪ\u0de3\u0001\u0000\u0000\u0000ɬ෧\u0001\u0000\u0000\u0000ɮ෩\u0001\u0000\u0000\u0000ɰ\u0df1\u0001\u0000\u0000\u0000ɲ\u0dfb\u0001\u0000\u0000\u0000ɴ\u0dfd\u0001\u0000\u0000\u0000ɶฅ\u0001\u0000\u0000\u0000ɸฒ\u0001\u0000\u0000\u0000ɺน\u0001\u0000\u0000\u0000ɼฝ\u0001\u0000\u0000\u0000ɾม\u0001\u0000\u0000\u0000ʀล\u0001\u0000\u0000\u0000ʂษ\u0001\u0000\u0000\u0000ʄห\u0001\u0000\u0000\u0000ʆ฿\u0001\u0000\u0000\u0000ʈแ\u0001\u0000\u0000\u0000ʊ์\u0001\u0000\u0000\u0000ʌ๐\u0001\u0000\u0000\u0000ʎ๒\u0001\u0000\u0000\u0000ʐ๔\u0001\u0000\u0000\u0000ʒ๖\u0001\u0000\u0000\u0000ʔʙ\u0003\u0002\u0001\u0000ʕʖ\u0005ñ\u0000\u0000ʖʘ\u0003\u0002\u0001\u0000ʗʕ\u0001\u0000\u0000\u0000ʘʛ\u0001\u0000\u0000\u0000ʙʗ\u0001\u0000\u0000\u0000ʙʚ\u0001\u0000\u0000\u0000ʚʝ\u0001\u0000\u0000\u0000ʛʙ\u0001\u0000\u0000\u0000ʜʞ\u0005ñ\u0000\u0000ʝʜ\u0001\u0000\u0000\u0000ʝʞ\u0001\u0000\u0000\u0000ʞʟ\u0001\u0000\u0000\u0000ʟʠ\u0005\u0000\u0000\u0001ʠ\u0001\u0001\u0000\u0000\u0000ʡʤ" ++ "\u0003Ġ\u0000ʢʤ\u0003\u0004\u0002\u0000ʣʡ\u0001\u0000\u0000\u0000ʣʢ\u0001\u0000\u0000\u0000ʤ\u0003\u0001\u0000\u0000\u0000ʥʭ\u0003\u0006\u0003\u0000ʦʨ\u0005ė\u0000\u0000ʧʩ\u0007\u0000\u0000\u0000ʨʧ\u0001\u0000\u0000\u0000ʨʩ\u0001\u0000\u0000\u0000ʩʪ\u0001\u0000\u0000\u0000ʪʬ\u0003\u0006\u0003\u0000ʫʦ\u0001\u0000\u0000\u0000ʬʯ\u0001\u0000\u0000\u0000ʭʫ\u0001\u0000\u0000\u0000ʭʮ\u0001\u0000\u0000\u0000ʮ\u0005\u0001\u0000\u0000\u0000ʯʭ\u0001\u0000\u0000\u0000ʰʲ\u0003\u0008\u0004\u0000ʱʰ\u0001\u0000\u0000\u0000ʲʳ\u0001\u0000\u0000\u0000ʳʱ\u0001\u0000\u0000\u0000ʳʴ\u0001\u0000\u0000\u0000ʴʽ\u0001\u0000\u0000\u0000ʵʷ\u0003\n\u0005\u0000ʶʵ\u0001\u0000\u0000\u0000ʶʷ\u0001\u0000\u0000\u0000ʷʸ\u0001\u0000\u0000\u0000ʸʹ\u0005\u0000\u0000ʹʺ\u0003\u0004\u0002\u0000ʺʻ\u0005Ó\u0000\u0000ʻʽ\u0001\u0000\u0000\u0000ʼʱ\u0001\u0000\u0000\u0000ʼʶ\u0001\u0000\u0000\u0000ʽ\u0007\u0001\u0000\u0000\u0000ʾː\u0003\n\u0005\u0000ʿː\u0003\u000e\u0007\u0000ˀː\u0003\u0010\u0008\u0000ˁː\u0003(\u0014\u0000˂ː\u0003*\u0015\u0000˃ː\u00034\u001a\u0000˄ː\u0003,\u0016\u0000˅ː\u00030\u0018\u0000ˆː\u00036\u001b\u0000ˇː\u0003<\u001e\u0000ˈː\u0003&\u0013\u0000ˉː\u0003@ \u0000ˊː\u0003B!\u0000ˋː\u0003N\'\u0000ˌː\u0003J%\u0000ˍː\u0003L&\u0000ˎː\u0003Z-\u0000ˏʾ\u0001\u0000\u0000\u0000ˏʿ\u0001\u0000\u0000\u0000ˏˀ\u0001\u0000\u0000\u0000ˏˁ\u0001\u0000\u0000\u0000ˏ˂\u0001\u0000\u0000\u0000ˏ˃\u0001\u0000\u0000\u0000ˏ˄\u0001\u0000\u0000\u0000ˏ˅\u0001\u0000\u0000\u0000ˏˆ\u0001\u0000\u0000\u0000ˏˇ\u0001\u0000\u0000\u0000ˏˈ\u0001\u0000\u0000\u0000ˏˉ\u0001\u0000\u0000\u0000ˏˊ\u0001\u0000\u0000\u0000ˏˋ\u0001\u0000\u0000\u0000ˏˌ\u0001\u0000\u0000\u0000ˏˍ\u0001\u0000\u0000\u0000ˏˎ\u0001\u0000\u0000\u0000ː\t\u0001\u0000\u0000\u0000ˑ˓\u0005Ĝ\u0000\u0000˒˔\u0005t\u0000\u0000˓˒\u0001\u0000\u0000\u0000˓˔\u0001\u0000\u0000\u0000˔˕\u0001\u0000\u0000\u0000˕˖\u0003\u000c\u0006\u0000˖\u000b\u0001\u0000\u0000\u0000˗˘\u0005—\u0000\u0000˘˙\u0003\u000c\u0006\u0000˙˚\u0005é\u0000\u0000˚˞\u0001\u0000\u0000\u0000˛˞\u0003Ċ…\u0000˜˞\u0003ɴĺ\u0000˝˗\u0001\u0000\u0000\u0000˝˛\u0001\u0000\u0000\u0000˝˜\u0001\u0000" ++ "\u0000\u0000˞\r\u0001\u0000\u0000\u0000˟ˠ\u0005j\u0000\u0000ˠ\u000f\u0001\u0000\u0000\u0000ˡˢ\u0005ã\u0000\u0000ˢˣ\u0003\u0012\t\u0000ˣ\u0011\u0001\u0000\u0000\u0000ˤ˦\u0005M\u0000\u0000˥ˤ\u0001\u0000\u0000\u0000˥˦\u0001\u0000\u0000\u0000˦˧\u0001\u0000\u0000\u0000˧˩\u0003\u0016\u000b\u0000˨˪\u0003\u001e\u000f\u0000˩˨\u0001\u0000\u0000\u0000˩˪\u0001\u0000\u0000\u0000˪ˬ\u0001\u0000\u0000\u0000˫˭\u0003 \u0010\u0000ˬ˫\u0001\u0000\u0000\u0000ˬ˭\u0001\u0000\u0000\u0000˭˯\u0001\u0000\u0000\u0000ˮ˰\u0003\"\u0011\u0000˯ˮ\u0001\u0000\u0000\u0000˯˰\u0001\u0000\u0000\u0000˰\u0013\u0001\u0000\u0000\u0000˱˴\u0003®W\u0000˲˳\u0005\u0017\u0000\u0000˳˵\u0003Ē‰\u0000˴˲\u0001\u0000\u0000\u0000˴˵\u0001\u0000\u0000\u0000˵\u0015\u0001\u0000\u0000\u0000˶˹\u0005ĉ\u0000\u0000˷˹\u0003\u0014\n\u0000˸˶\u0001\u0000\u0000\u0000˸˷\u0001\u0000\u0000\u0000˹˾\u0001\u0000\u0000\u0000˺˻\u0005.\u0000\u0000˻˽\u0003\u0014\n\u0000˼˺\u0001\u0000\u0000\u0000˽̀\u0001\u0000\u0000\u0000˾˼\u0001\u0000\u0000\u0000˾˿\u0001\u0000\u0000\u0000˿\u0017\u0001\u0000\u0000\u0000̀˾\u0001\u0000\u0000\u0000́̄\u0003®W\u0000̂̅\u0003\u001a\r\u0000̃̅\u0003\u001c\u000e\u0000̄̂\u0001\u0000\u0000\u0000̄̃\u0001\u0000\u0000\u0000̄̅\u0001\u0000\u0000\u0000̅\u0019\u0001\u0000\u0000\u0000̆̇\u0007\u0001\u0000\u0000̇\u001b\u0001\u0000\u0000\u0000̈̉\u0007\u0002\u0000\u0000̉\u001d\u0001\u0000\u0000\u0000̊̋\u0005»\u0000\u0000̋̌\u0005%\u0000\u0000̌̑\u0003\u0018\u000c\u0000̍̎\u0005.\u0000\u0000̎̐\u0003\u0018\u000c\u0000̏̍\u0001\u0000\u0000\u0000̐̓\u0001\u0000\u0000\u0000̑̏\u0001\u0000\u0000\u0000̑̒\u0001\u0000\u0000\u0000̒\u001f\u0001\u0000\u0000\u0000̓̑\u0001\u0000\u0000\u0000̔̕\u0007\u0003\u0000\u0000̖̕\u0003®W\u0000̖!\u0001\u0000\u0000\u0000̗̘\u0005’\u0000\u0000̘̙\u0003®W\u0000̙#\u0001\u0000\u0000\u0000̛̚\u0005Ħ\u0000\u0000̛̜\u0003®W\u0000̜%\u0001\u0000\u0000\u0000̝̞\u0005ħ\u0000\u0000̞̠\u0003\u0012\t\u0000̡̟\u0003$\u0012\u0000̠̟\u0001\u0000\u0000\u0000̡̠\u0001\u0000\u0000\u0000̡\'\u0001\u0000\u0000\u0000̢̣\u00059\u0000\u0000̣̤\u0003\\.\u0000̤)\u0001\u0000\u0000\u0000̥̦\u0005„\u0000\u0000̧̦\u0003^/\u0000̧+\u0001\u0000\u0000\u0000" ++ "̨̩\u0005ô\u0000\u0000̩̮\u0003.\u0017\u0000̪̫\u0005.\u0000\u0000̫̭\u0003.\u0017\u0000̬̪\u0001\u0000\u0000\u0000̭̰\u0001\u0000\u0000\u0000̮̬\u0001\u0000\u0000\u0000̮̯\u0001\u0000\u0000\u0000̯-\u0001\u0000\u0000\u0000̰̮\u0001\u0000\u0000\u0000̱̲\u0003Îg\u0000̲̳\u0005`\u0000\u0000̴̳\u0003®W\u0000̴͈\u0001\u0000\u0000\u0000̵̶\u0003Ðh\u0000̶̷\u0005`\u0000\u0000̷̸\u0003®W\u0000̸͈\u0001\u0000\u0000\u0000̹̺\u0003Ē‰\u0000̺̻\u0005`\u0000\u0000̻̼\u0003®W\u0000̼͈\u0001\u0000\u0000\u0000̽̾\u0003Ē‰\u0000̾̿\u0005Â\u0000\u0000̿̀\u0003®W\u0000͈̀\u0001\u0000\u0000\u0000́͂\u0003Ē‰\u0000͂̓\u0003z=\u0000͈̓\u0001\u0000\u0000\u0000̈́ͅ\u0003Ē‰\u0000͆ͅ\u0003|>\u0000͈͆\u0001\u0000\u0000\u0000͇̱\u0001\u0000\u0000\u0000̵͇\u0001\u0000\u0000\u0000͇̹\u0001\u0000\u0000\u0000͇̽\u0001\u0000\u0000\u0000͇́\u0001\u0000\u0000\u0000͇̈́\u0001\u0000\u0000\u0000͈/\u0001\u0000\u0000\u0000͉͊\u0005Ü\u0000\u0000͊͏\u00032\u0019\u0000͋͌\u0005.\u0000\u0000͎͌\u00032\u0019\u0000͍͋\u0001\u0000\u0000\u0000͎͑\u0001\u0000\u0000\u0000͏͍\u0001\u0000\u0000\u0000͏͐\u0001\u0000\u0000\u0000͐1\u0001\u0000\u0000\u0000͑͏\u0001\u0000\u0000\u0000͒͛\u0003Îg\u0000͓͛\u0003Ðh\u0000͔͕\u0003Ē‰\u0000͕͖\u0003z=\u0000͖͛\u0001\u0000\u0000\u0000͗͘\u0003Ē‰\u0000͙͘\u0003|>\u0000͙͛\u0001\u0000\u0000\u0000͚͒\u0001\u0000\u0000\u0000͚͓\u0001\u0000\u0000\u0000͚͔\u0001\u0000\u0000\u0000͚͗\u0001\u0000\u0000\u0000͛3\u0001\u0000\u0000\u0000͜͞\u0007\u0004\u0000\u0000͜͝\u0001\u0000\u0000\u0000͝͞\u0001\u0000\u0000\u0000͟͞\u0001\u0000\u0000\u0000͟͠\u0005E\u0000\u0000ͥ͠\u0003®W\u0000͢͡\u0005.\u0000\u0000ͤ͢\u0003®W\u0000ͣ͡\u0001\u0000\u0000\u0000ͤͧ\u0001\u0000\u0000\u0000ͥͣ\u0001\u0000\u0000\u0000ͥͦ\u0001\u0000\u0000\u0000ͦ5\u0001\u0000\u0000\u0000ͧͥ\u0001\u0000\u0000\u0000ͨͪ\u0005·\u0000\u0000ͩͨ\u0001\u0000\u0000\u0000ͩͪ\u0001\u0000\u0000\u0000ͪͫ\u0001\u0000\u0000\u0000ͫͭ\u0005›\u0000\u0000ͬͮ\u00038\u001c\u0000ͭͬ\u0001\u0000\u0000\u0000ͭͮ\u0001\u0000\u0000\u0000ͮͯ\u0001\u0000\u0000\u0000ͯͳ" ++ "\u0003\\.\u0000ͰͲ\u0003:\u001d\u0000ͱͰ\u0001\u0000\u0000\u0000Ͳ͵\u0001\u0000\u0000\u0000ͳͱ\u0001\u0000\u0000\u0000ͳʹ\u0001\u0000\u0000\u0000ʹͷ\u0001\u0000\u0000\u0000͵ͳ\u0001\u0000\u0000\u0000Ͷ\u0378\u0003$\u0012\u0000ͷͶ\u0001\u0000\u0000\u0000ͷ\u0378\u0001\u0000\u0000\u0000\u03787\u0001\u0000\u0000\u0000\u0379Ϳ\u0005Ý\u0000\u0000ͺͼ\u0005Z\u0000\u0000ͻͽ\u0005\u001e\u0000\u0000ͼͻ\u0001\u0000\u0000\u0000ͼͽ\u0001\u0000\u0000\u0000ͽ\u0380\u0001\u0000\u0000\u0000;\u0380\u0005[\u0000\u0000Ϳͺ\u0001\u0000\u0000\u0000Ϳ;\u0001\u0000\u0000\u0000\u0380Ί\u0001\u0000\u0000\u0000\u0381·\u0005K\u0000\u0000\u0382΄\u0005Ú\u0000\u0000\u0383΅\u0005\u001e\u0000\u0000΄\u0383\u0001\u0000\u0000\u0000΄΅\u0001\u0000\u0000\u0000΅Έ\u0001\u0000\u0000\u0000ΆΈ\u0005Û\u0000\u0000·\u0382\u0001\u0000\u0000\u0000·Ά\u0001\u0000\u0000\u0000ΈΊ\u0001\u0000\u0000\u0000Ή\u0379\u0001\u0000\u0000\u0000Ή\u0381\u0001\u0000\u0000\u0000Ί9\u0001\u0000\u0000\u0000\u038bΥ\u0005ğ\u0000\u0000ΌΔ\u0005€\u0000\u0000\u038dΎ\u0005Ć\u0000\u0000ΎΔ\u0005€\u0000\u0000Ώΐ\u0005Ñ\u0000\u0000ΐΔ\u0005€\u0000\u0000ΑΒ\u0005Ã\u0000\u0000ΒΔ\u0005€\u0000\u0000ΓΌ\u0001\u0000\u0000\u0000Γ\u038d\u0001\u0000\u0000\u0000ΓΏ\u0001\u0000\u0000\u0000ΓΑ\u0001\u0000\u0000\u0000ΔΖ\u0001\u0000\u0000\u0000ΕΗ\u0005ð\u0000\u0000ΖΕ\u0001\u0000\u0000\u0000ΖΗ\u0001\u0000\u0000\u0000ΗΘ\u0001\u0000\u0000\u0000ΘΙ\u0003Ē‰\u0000ΙΚ\u0003ˆD\u0000ΚΛ\u0005—\u0000\u0000ΛΜ\u0003ĔŠ\u0000ΜΝ\u0005é\u0000\u0000ΝΦ\u0001\u0000\u0000\u0000ΞΟ\u0005ˆ\u0000\u0000ΟΠ\u0005µ\u0000\u0000ΠΦ\u0003ĔŠ\u0000Ρ\u03a2\u0005ê\u0000\u0000\u03a2Σ\u0003Ē‰\u0000ΣΤ\u0003ˆD\u0000ΤΦ\u0001\u0000\u0000\u0000ΥΓ\u0001\u0000\u0000\u0000ΥΞ\u0001\u0000\u0000\u0000ΥΡ\u0001\u0000\u0000\u0000Φ;\u0001\u0000\u0000\u0000ΧΨ\u0005œ\u0000\u0000Ψά\u0003`0\u0000ΩΫ\u0003>\u001f\u0000ΪΩ\u0001\u0000\u0000\u0000Ϋή\u0001\u0000\u0000\u0000άΪ\u0001\u0000\u0000\u0000άέ\u0001\u0000\u0000\u0000έ=\u0001\u0000\u0000\u0000ήά\u0001\u0000\u0000\u0000ίΰ\u0005µ\u0000\u0000ΰα\u0007\u0005\u0000\u0000αβ\u0003,\u0016\u0000β?\u0001\u0000\u0000\u0000γδ\u0005Ě\u0000\u0000δε\u0003®W\u0000εζ\u0005\u0017\u0000\u0000ζη\u0003Ē" ++ "‰\u0000ηA\u0001\u0000\u0000\u0000θκ\u0005·\u0000\u0000ιθ\u0001\u0000\u0000\u0000ικ\u0001\u0000\u0000\u0000κλ\u0001\u0000\u0000\u0000λμ\u0005&\u0000\u0000μω\u0003D\"\u0000νφ\u0005—\u0000\u0000ξσ\u0003F#\u0000οπ\u0005.\u0000\u0000πς\u0003F#\u0000ρο\u0001\u0000\u0000\u0000ςυ\u0001\u0000\u0000\u0000σρ\u0001\u0000\u0000\u0000στ\u0001\u0000\u0000\u0000τχ\u0001\u0000\u0000\u0000υσ\u0001\u0000\u0000\u0000φξ\u0001\u0000\u0000\u0000φχ\u0001\u0000\u0000\u0000χψ\u0001\u0000\u0000\u0000ψϊ\u0005é\u0000\u0000ων\u0001\u0000\u0000\u0000ωϊ\u0001\u0000\u0000\u0000ϊϚ\u0001\u0000\u0000\u0000ϋϘ\u0005ī\u0000\u0000όϙ\u0005ĉ\u0000\u0000ύϒ\u0003H$\u0000ώϏ\u0005.\u0000\u0000Ϗϑ\u0003H$\u0000ϐώ\u0001\u0000\u0000\u0000ϑϔ\u0001\u0000\u0000\u0000ϒϐ\u0001\u0000\u0000\u0000ϒϓ\u0001\u0000\u0000\u0000ϓϖ\u0001\u0000\u0000\u0000ϔϒ\u0001\u0000\u0000\u0000ϕϗ\u0003$\u0012\u0000ϖϕ\u0001\u0000\u0000\u0000ϖϗ\u0001\u0000\u0000\u0000ϗϙ\u0001\u0000\u0000\u0000Ϙό\u0001\u0000\u0000\u0000Ϙύ\u0001\u0000\u0000\u0000ϙϛ\u0001\u0000\u0000\u0000Ϛϋ\u0001\u0000\u0000\u0000Ϛϛ\u0001\u0000\u0000\u0000ϛC\u0001\u0000\u0000\u0000Ϝϝ\u0003Ј\u0000ϝϞ\u0003ʆŃ\u0000ϞE\u0001\u0000\u0000\u0000ϟϠ\u0003®W\u0000ϠG\u0001\u0000\u0000\u0000ϡϤ\u0003ʆŃ\u0000Ϣϣ\u0005\u0017\u0000\u0000ϣϥ\u0003Ē‰\u0000ϤϢ\u0001\u0000\u0000\u0000Ϥϥ\u0001\u0000\u0000\u0000ϥI\u0001\u0000\u0000\u0000Ϧϧ\u0005”\u0000\u0000ϧϪ\u0005:\u0000\u0000Ϩϩ\u0005ħ\u0000\u0000ϩϫ\u0005y\u0000\u0000ϪϨ\u0001\u0000\u0000\u0000Ϫϫ\u0001\u0000\u0000\u0000ϫϬ\u0001\u0000\u0000\u0000Ϭϭ\u0005n\u0000\u0000ϭϮ\u0003®W\u0000Ϯϯ\u0005\u0017\u0000\u0000ϯϲ\u0003Ē‰\u0000ϰϱ\u0005i\u0000\u0000ϱϳ\u0003ɺĽ\u0000ϲϰ\u0001\u0000\u0000\u0000ϲϳ\u0001\u0000\u0000\u0000ϳK\u0001\u0000\u0000\u0000ϴϵ\u0005m\u0000\u0000ϵ϶\u0005—\u0000\u0000϶Ϸ\u0003Ē‰\u0000Ϸϸ\u0005\u0000\u0000ϸϹ\u0003®W\u0000Ϲϻ\u0005\u001d\u0000\u0000Ϻϼ\u0003\u0008\u0004\u0000ϻϺ\u0001\u0000\u0000\u0000ϼϽ\u0001\u0000\u0000\u0000Ͻϻ\u0001\u0000\u0000\u0000ϽϾ\u0001\u0000\u0000\u0000ϾϿ\u0001\u0000\u0000\u0000ϿЀ\u0005é\u0000\u0000" ++ "ЀM\u0001\u0000\u0000\u0000ЁЃ\u0005·\u0000\u0000ЂЁ\u0001\u0000\u0000\u0000ЂЃ\u0001\u0000\u0000\u0000ЃЄ\u0001\u0000\u0000\u0000ЄІ\u0005&\u0000\u0000ЅЇ\u0003P(\u0000ІЅ\u0001\u0000\u0000\u0000ІЇ\u0001\u0000\u0000\u0000ЇЈ\u0001\u0000\u0000\u0000ЈЉ\u0005\u0000\u0000ЉЊ\u0003\u0004\u0002\u0000ЊЌ\u0005Ó\u0000\u0000ЋЍ\u0003R)\u0000ЌЋ\u0001\u0000\u0000\u0000ЌЍ\u0001\u0000\u0000\u0000ЍO\u0001\u0000\u0000\u0000ЎИ\u0005—\u0000\u0000ЏЙ\u0005ĉ\u0000\u0000АЕ\u0003Ē‰\u0000БВ\u0005.\u0000\u0000ВД\u0003Ē‰\u0000ГБ\u0001\u0000\u0000\u0000ДЗ\u0001\u0000\u0000\u0000ЕГ\u0001\u0000\u0000\u0000ЕЖ\u0001\u0000\u0000\u0000ЖЙ\u0001\u0000\u0000\u0000ЗЕ\u0001\u0000\u0000\u0000ИЏ\u0001\u0000\u0000\u0000ИА\u0001\u0000\u0000\u0000ИЙ\u0001\u0000\u0000\u0000ЙК\u0001\u0000\u0000\u0000КЛ\u0005é\u0000\u0000ЛQ\u0001\u0000\u0000\u0000МС\u0005\u0000\u0000НП\u0003®W\u0000ОН\u0001\u0000\u0000\u0000ОП\u0001\u0000\u0000\u0000ПР\u0001\u0000\u0000\u0000РТ\u00052\u0000\u0000СО\u0001\u0000\u0000\u0000СТ\u0001\u0000\u0000\u0000ТУ\u0001\u0000\u0000\u0000УЩ\u0005Đ\u0000\u0000ФШ\u0003T*\u0000ХШ\u0003V+\u0000ЦШ\u0003X,\u0000ЧФ\u0001\u0000\u0000\u0000ЧХ\u0001\u0000\u0000\u0000ЧЦ\u0001\u0000\u0000\u0000ШЫ\u0001\u0000\u0000\u0000ЩЧ\u0001\u0000\u0000\u0000ЩЪ\u0001\u0000\u0000\u0000ЪS\u0001\u0000\u0000\u0000ЫЩ\u0001\u0000\u0000\u0000ЬЭ\u0005³\u0000\u0000ЭЮ\u0003®W\u0000ЮЯ\u0007\u0006\u0000\u0000ЯU\u0001\u0000\u0000\u0000аб\u0005µ\u0000\u0000бв\u0005f\u0000\u0000вг\u0007\u0007\u0000\u0000гW\u0001\u0000\u0000\u0000де\u0005ß\u0000\u0000еж\u0005ÿ\u0000\u0000жз\u0005\u0017\u0000\u0000зи\u0003Ē‰\u0000иY\u0001\u0000\u0000\u0000йл\u0003\u001e\u000f\u0000км\u0003 \u0010\u0000лк\u0001\u0000\u0000\u0000лм\u0001\u0000\u0000\u0000мо\u0001\u0000\u0000\u0000нп\u0003\"\u0011\u0000он\u0001\u0000\u0000\u0000оп\u0001\u0000\u0000\u0000пц\u0001\u0000\u0000\u0000рт\u0003 \u0010\u0000су\u0003\"\u0011\u0000тс\u0001\u0000\u0000\u0000ту\u0001\u0000\u0000\u0000уц\u0001\u0000\u0000\u0000фц\u0003\"\u0011\u0000хй\u0001\u0000\u0000\u0000хр\u0001\u0000\u0000\u0000хф" ++ "\u0001\u0000\u0000\u0000ц[\u0001\u0000\u0000\u0000чь\u0003`0\u0000шщ\u0005.\u0000\u0000щы\u0003`0\u0000ъш\u0001\u0000\u0000\u0000ыю\u0001\u0000\u0000\u0000ьъ\u0001\u0000\u0000\u0000ьэ\u0001\u0000\u0000\u0000э]\u0001\u0000\u0000\u0000юь\u0001\u0000\u0000\u0000яє\u0003b1\u0000ѐё\u0005.\u0000\u0000ёѓ\u0003b1\u0000ђѐ\u0001\u0000\u0000\u0000ѓі\u0001\u0000\u0000\u0000єђ\u0001\u0000\u0000\u0000єѕ\u0001\u0000\u0000\u0000ѕ_\u0001\u0000\u0000\u0000іє\u0001\u0000\u0000\u0000їј\u0003Ē‰\u0000јљ\u0005`\u0000\u0000љћ\u0001\u0000\u0000\u0000њї\u0001\u0000\u0000\u0000њћ\u0001\u0000\u0000\u0000ћѝ\u0001\u0000\u0000\u0000ќў\u0003l6\u0000ѝќ\u0001\u0000\u0000\u0000ѝў\u0001\u0000\u0000\u0000ўџ\u0001\u0000\u0000\u0000џѠ\u0003f3\u0000Ѡa\u0001\u0000\u0000\u0000ѡѢ\u0003ʆŃ\u0000Ѣѣ\u0005`\u0000\u0000ѣѥ\u0001\u0000\u0000\u0000Ѥѡ\u0001\u0000\u0000\u0000Ѥѥ\u0001\u0000\u0000\u0000ѥѦ\u0001\u0000\u0000\u0000ѦѬ\u0003v;\u0000ѧѨ\u0003ŽG\u0000Ѩѩ\u0003v;\u0000ѩѫ\u0001\u0000\u0000\u0000Ѫѧ\u0001\u0000\u0000\u0000ѫѮ\u0001\u0000\u0000\u0000ѬѪ\u0001\u0000\u0000\u0000Ѭѭ\u0001\u0000\u0000\u0000ѭc\u0001\u0000\u0000\u0000ѮѬ\u0001\u0000\u0000\u0000ѯѰ\u0005\u0000\u0000Ѱѱ\u0005\u0005\u0000\u0000ѱѾ\u0005Ó\u0000\u0000ѲѴ\u0005\u0000\u0000ѳѵ\u0005\u0005\u0000\u0000Ѵѳ\u0001\u0000\u0000\u0000Ѵѵ\u0001\u0000\u0000\u0000ѵѶ\u0001\u0000\u0000\u0000ѶѸ\u0005.\u0000\u0000ѷѹ\u0005\u0005\u0000\u0000Ѹѷ\u0001\u0000\u0000\u0000Ѹѹ\u0001\u0000\u0000\u0000ѹѺ\u0001\u0000\u0000\u0000ѺѾ\u0005Ó\u0000\u0000ѻѾ\u0005Á\u0000\u0000ѼѾ\u0005ĉ\u0000\u0000ѽѯ\u0001\u0000\u0000\u0000ѽѲ\u0001\u0000\u0000\u0000ѽѻ\u0001\u0000\u0000\u0000ѽѼ\u0001\u0000\u0000\u0000Ѿe\u0001\u0000\u0000\u0000ѿ҂\u0003h4\u0000Ҁ҂\u0003j5\u0000ҁѿ\u0001\u0000\u0000\u0000ҁҀ\u0001\u0000\u0000\u0000҂g\u0001\u0000\u0000\u0000҃҄\u0007\u0008\u0000\u0000҄҅\u0005—\u0000\u0000҅҆\u0003j5\u0000҆҇\u0005é\u0000\u0000҇i\u0001\u0000\u0000\u0000҈ґ\u0003t:\u0000҉ҋ\u0003ŒF\u0000ҊҌ\u0003d2\u0000ҋҊ\u0001\u0000\u0000\u0000ҋҌ\u0001\u0000\u0000\u0000Ҍҍ\u0001\u0000\u0000\u0000ҍҎ\u0003t" ++ ":\u0000ҎҐ\u0001\u0000\u0000\u0000ҏ҉\u0001\u0000\u0000\u0000Ґғ\u0001\u0000\u0000\u0000ґҏ\u0001\u0000\u0000\u0000ґҒ\u0001\u0000\u0000\u0000ҒҖ\u0001\u0000\u0000\u0000ғґ\u0001\u0000\u0000\u0000ҔҖ\u0003x<\u0000ҕ҈\u0001\u0000\u0000\u0000ҕҔ\u0001\u0000\u0000\u0000Җҗ\u0001\u0000\u0000\u0000җҕ\u0001\u0000\u0000\u0000җҘ\u0001\u0000\u0000\u0000Ҙk\u0001\u0000\u0000\u0000ҙҚ\u0005\u0015\u0000\u0000ҚҜ\u0005ø\u0000\u0000қҝ\u0003p8\u0000Ҝқ\u0001\u0000\u0000\u0000Ҝҝ\u0001\u0000\u0000\u0000ҝҼ\u0001\u0000\u0000\u0000Ҟҟ\u0005\u0012\u0000\u0000ҟҡ\u0005ø\u0000\u0000ҠҢ\u0003p8\u0000ҡҠ\u0001\u0000\u0000\u0000ҡҢ\u0001\u0000\u0000\u0000ҢҼ\u0001\u0000\u0000\u0000ңҥ\u0005\u0015\u0000\u0000ҤҦ\u0005\u0005\u0000\u0000ҥҤ\u0001\u0000\u0000\u0000ҥҦ\u0001\u0000\u0000\u0000ҦҨ\u0001\u0000\u0000\u0000ҧҩ\u0003p8\u0000Ҩҧ\u0001\u0000\u0000\u0000Ҩҩ\u0001\u0000\u0000\u0000ҩҼ\u0001\u0000\u0000\u0000ҪҬ\u0005\u0012\u0000\u0000ҫҭ\u0003p8\u0000Ҭҫ\u0001\u0000\u0000\u0000Ҭҭ\u0001\u0000\u0000\u0000ҭҼ\u0001\u0000\u0000\u0000ҮҰ\u0005ø\u0000\u0000үұ\u0005\u0005\u0000\u0000Ұү\u0001\u0000\u0000\u0000Ұұ\u0001\u0000\u0000\u0000ұҳ\u0001\u0000\u0000\u0000ҲҴ\u0003p8\u0000ҳҲ\u0001\u0000\u0000\u0000ҳҴ\u0001\u0000\u0000\u0000Ҵҵ\u0001\u0000\u0000\u0000ҵҼ\u0003n7\u0000Ҷҷ\u0005ø\u0000\u0000ҷҹ\u0005\u0005\u0000\u0000ҸҺ\u0003p8\u0000ҹҸ\u0001\u0000\u0000\u0000ҹҺ\u0001\u0000\u0000\u0000ҺҼ\u0001\u0000\u0000\u0000һҙ\u0001\u0000\u0000\u0000һҞ\u0001\u0000\u0000\u0000һң\u0001\u0000\u0000\u0000һҪ\u0001\u0000\u0000\u0000һҮ\u0001\u0000\u0000\u0000һҶ\u0001\u0000\u0000\u0000Ҽm\u0001\u0000\u0000\u0000ҽҾ\u0007\t\u0000\u0000Ҿo\u0001\u0000\u0000\u0000ҿӀ\u0007\n\u0000\u0000Ӏq\u0001\u0000\u0000\u0000ӁӅ\u0003t:\u0000ӂӃ\u0003ŒF\u0000Ӄӄ\u0003t:\u0000ӄӆ\u0001\u0000\u0000\u0000Ӆӂ\u0001\u0000\u0000\u0000ӆӇ\u0001\u0000\u0000\u0000ӇӅ\u0001\u0000\u0000\u0000Ӈӈ\u0001\u0000\u0000\u0000ӈs\u0001\u0000\u0000\u0000ӉӋ\u0005—\u0000\u0000ӊӌ\u0003Ē‰\u0000Ӌӊ\u0001\u0000\u0000\u0000Ӌӌ\u0001\u0000\u0000\u0000ӌӎ\u0001\u0000\u0000\u0000Ӎӏ\u0003˜L\u0000ӎӍ\u0001\u0000\u0000\u0000ӎӏ\u0001\u0000\u0000\u0000ӏӑ\u0001\u0000\u0000\u0000" ++ "ӐӒ\u0003ŠE\u0000ӑӐ\u0001\u0000\u0000\u0000ӑӒ\u0001\u0000\u0000\u0000Ӓӕ\u0001\u0000\u0000\u0000ӓӔ\u0005Ħ\u0000\u0000ӔӖ\u0003®W\u0000ӕӓ\u0001\u0000\u0000\u0000ӕӖ\u0001\u0000\u0000\u0000Ӗӗ\u0001\u0000\u0000\u0000ӗӘ\u0005é\u0000\u0000Әu\u0001\u0000\u0000\u0000әӛ\u0005—\u0000\u0000ӚӜ\u0003Ē‰\u0000ӛӚ\u0001\u0000\u0000\u0000ӛӜ\u0001\u0000\u0000\u0000ӜӞ\u0001\u0000\u0000\u0000ӝӟ\u0003ªU\u0000Ӟӝ\u0001\u0000\u0000\u0000Ӟӟ\u0001\u0000\u0000\u0000ӟӡ\u0001\u0000\u0000\u0000ӠӢ\u0003ʄł\u0000ӡӠ\u0001\u0000\u0000\u0000ӡӢ\u0001\u0000\u0000\u0000Ӣӣ\u0001\u0000\u0000\u0000ӣӤ\u0005é\u0000\u0000Ӥw\u0001\u0000\u0000\u0000ӥӦ\u0005—\u0000\u0000Ӧө\u0003`0\u0000ӧӨ\u0005Ħ\u0000\u0000ӨӪ\u0003®W\u0000өӧ\u0001\u0000\u0000\u0000өӪ\u0001\u0000\u0000\u0000Ӫӫ\u0001\u0000\u0000\u0000ӫӭ\u0005é\u0000\u0000ӬӮ\u0003d2\u0000ӭӬ\u0001\u0000\u0000\u0000ӭӮ\u0001\u0000\u0000\u0000Ӯy\u0001\u0000\u0000\u0000ӯӲ\u0003„B\u0000ӰӲ\u0003‚A\u0000ӱӯ\u0001\u0000\u0000\u0000ӱӰ\u0001\u0000\u0000\u0000Ӳӳ\u0001\u0000\u0000\u0000ӳӱ\u0001\u0000\u0000\u0000ӳӴ\u0001\u0000\u0000\u0000Ӵ{\u0001\u0000\u0000\u0000ӵӸ\u0005‡\u0000\u0000Ӷӹ\u0003ʆŃ\u0000ӷӹ\u0003~?\u0000ӸӶ\u0001\u0000\u0000\u0000Ӹӷ\u0001\u0000\u0000\u0000ӹӾ\u0001\u0000\u0000\u0000Ӻӽ\u0003„B\u0000ӻӽ\u0003‚A\u0000ӼӺ\u0001\u0000\u0000\u0000Ӽӻ\u0001\u0000\u0000\u0000ӽԀ\u0001\u0000\u0000\u0000ӾӼ\u0001\u0000\u0000\u0000Ӿӿ\u0001\u0000\u0000\u0000ӿ}\u0001\u0000\u0000\u0000ԀӾ\u0001\u0000\u0000\u0000ԁԂ\u0005L\u0000\u0000Ԃԃ\u0005—\u0000\u0000ԃԄ\u0003®W\u0000Ԅԅ\u0005é\u0000\u0000ԅ\u0001\u0000\u0000\u0000ԆԈ\u0005L\u0000\u0000ԇԉ\u0007\u000b\u0000\u0000Ԉԇ\u0001\u0000\u0000\u0000Ԉԉ\u0001\u0000\u0000\u0000ԉԊ\u0001\u0000\u0000\u0000Ԋԋ\u0005—\u0000\u0000ԋԌ\u0003®W\u0000Ԍԍ\u0005é\u0000\u0000ԍ\u0001\u0000\u0000\u0000Ԏԏ\u0005,\u0000\u0000ԏԐ\u0003~?\u0000Ԑƒ\u0001\u0000\u0000\u0000ԑԒ\u0005,\u0000\u0000Ԓԓ\u0003ʆŃ\u0000ԓ…\u0001\u0000\u0000\u0000Ԕԕ\u0005,\u0000\u0000ԕԖ\u0003ʆŃ\u0000Ԗ‡\u0001\u0000\u0000\u0000ԗԘ\u0005,\u0000\u0000Ԙԙ" ++ "\u0003ʆŃ\u0000ԙ‰\u0001\u0000\u0000\u0000Ԛԝ\u0003ʄł\u0000ԛԝ\u0003ƃ\u0000ԜԚ\u0001\u0000\u0000\u0000Ԝԛ\u0001\u0000\u0000\u0000ԝ‹\u0001\u0000\u0000\u0000ԞԠ\u0003H\u0000ԟԞ\u0001\u0000\u0000\u0000ԟԠ\u0001\u0000\u0000\u0000Ԡԡ\u0001\u0000\u0000\u0000ԡԴ\u0003’I\u0000ԢԤ\u0005Ž\u0000\u0000ԣԥ\u0003Ē‰\u0000Ԥԣ\u0001\u0000\u0000\u0000Ԥԥ\u0001\u0000\u0000\u0000ԥԧ\u0001\u0000\u0000\u0000ԦԨ\u0003˜L\u0000ԧԦ\u0001\u0000\u0000\u0000ԧԨ\u0001\u0000\u0000\u0000ԨԪ\u0001\u0000\u0000\u0000ԩԫ\u0003–K\u0000Ԫԩ\u0001\u0000\u0000\u0000Ԫԫ\u0001\u0000\u0000\u0000ԫԭ\u0001\u0000\u0000\u0000ԬԮ\u0003ŠE\u0000ԭԬ\u0001\u0000\u0000\u0000ԭԮ\u0001\u0000\u0000\u0000ԮԱ\u0001\u0000\u0000\u0000ԯ\u0530\u0005Ħ\u0000\u0000\u0530Բ\u0003®W\u0000Աԯ\u0001\u0000\u0000\u0000ԱԲ\u0001\u0000\u0000\u0000ԲԳ\u0001\u0000\u0000\u0000ԳԵ\u0005Ò\u0000\u0000ԴԢ\u0001\u0000\u0000\u0000ԴԵ\u0001\u0000\u0000\u0000ԵԶ\u0001\u0000\u0000\u0000ԶԸ\u0003’I\u0000ԷԹ\u0003”J\u0000ԸԷ\u0001\u0000\u0000\u0000ԸԹ\u0001\u0000\u0000\u0000Թ\u0001\u0000\u0000\u0000ԺԼ\u0003H\u0000ԻԺ\u0001\u0000\u0000\u0000ԻԼ\u0001\u0000\u0000\u0000ԼԽ\u0001\u0000\u0000\u0000ԽԾ\u0003’I\u0000ԾՀ\u0005Ž\u0000\u0000ԿՁ\u0003Ē‰\u0000ՀԿ\u0001\u0000\u0000\u0000ՀՁ\u0001\u0000\u0000\u0000ՁՂ\u0001\u0000\u0000\u0000ՂՄ\u0003¬V\u0000ՃՅ\u0003ʄł\u0000ՄՃ\u0001\u0000\u0000\u0000ՄՅ\u0001\u0000\u0000\u0000ՅՆ\u0001\u0000\u0000\u0000ՆՇ\u0005Ò\u0000\u0000ՇՉ\u0003’I\u0000ՈՊ\u0003”J\u0000ՉՈ\u0001\u0000\u0000\u0000ՉՊ\u0001\u0000\u0000\u0000Պ\u0001\u0000\u0000\u0000ՋՌ\u0007\u000c\u0000\u0000Ռ‘\u0001\u0000\u0000\u0000ՍՎ\u0007\r\u0000\u0000Վ“\u0001\u0000\u0000\u0000ՏՐ\u0007\u000e\u0000\u0000Ր•\u0001\u0000\u0000\u0000Ց՚\u0005ĉ\u0000\u0000ՒՔ\u0005\u0005\u0000\u0000ՓՒ\u0001\u0000\u0000\u0000ՓՔ\u0001\u0000\u0000\u0000ՔՕ\u0001\u0000\u0000\u0000Օ\u0557\u0005P\u0000\u0000Ֆ\u0558\u0005\u0005\u0000\u0000\u0557Ֆ\u0001\u0000\u0000\u0000\u0557\u0558\u0001\u0000\u0000\u0000\u0558՛\u0001\u0000\u0000\u0000ՙ՛\u0005\u0005\u0000\u0000՚Փ\u0001\u0000\u0000\u0000՚ՙ\u0001\u0000\u0000\u0000՚՛\u0001\u0000\u0000\u0000՛—\u0001\u0000\u0000\u0000՜՝\u0005," ++ "\u0000\u0000՝ա\u0003šM\u0000՞՟\u0005‡\u0000\u0000՟ա\u0003œN\u0000ՠ՜\u0001\u0000\u0000\u0000ՠ՞\u0001\u0000\u0000\u0000ա™\u0001\u0000\u0000\u0000բժ\u0003žO\u0000գե\u0005\u001d\u0000\u0000դզ\u0005,\u0000\u0000եդ\u0001\u0000\u0000\u0000եզ\u0001\u0000\u0000\u0000զէ\u0001\u0000\u0000\u0000էթ\u0003žO\u0000ըգ\u0001\u0000\u0000\u0000թլ\u0001\u0000\u0000\u0000ժը\u0001\u0000\u0000\u0000ժի\u0001\u0000\u0000\u0000ի›\u0001\u0000\u0000\u0000լժ\u0001\u0000\u0000\u0000խյ\u0003 P\u0000ծհ\u0005\u001d\u0000\u0000կձ\u0005,\u0000\u0000հկ\u0001\u0000\u0000\u0000հձ\u0001\u0000\u0000\u0000ձղ\u0001\u0000\u0000\u0000ղմ\u0003 P\u0000ճծ\u0001\u0000\u0000\u0000մշ\u0001\u0000\u0000\u0000յճ\u0001\u0000\u0000\u0000յն\u0001\u0000\u0000\u0000ն\u0001\u0000\u0000\u0000շյ\u0001\u0000\u0000\u0000ոս\u0003¢Q\u0000չպ\u0007\u000f\u0000\u0000պռ\u0003¢Q\u0000ջչ\u0001\u0000\u0000\u0000ռտ\u0001\u0000\u0000\u0000սջ\u0001\u0000\u0000\u0000սվ\u0001\u0000\u0000\u0000վŸ\u0001\u0000\u0000\u0000տս\u0001\u0000\u0000\u0000րօ\u0003¤R\u0000ցւ\u0007\u000f\u0000\u0000ւք\u0003¤R\u0000փց\u0001\u0000\u0000\u0000քև\u0001\u0000\u0000\u0000օփ\u0001\u0000\u0000\u0000օֆ\u0001\u0000\u0000\u0000ֆ¡\u0001\u0000\u0000\u0000ևօ\u0001\u0000\u0000\u0000ֈ֊\u0005\u0000\u0000։ֈ\u0001\u0000\u0000\u0000֊֍\u0001\u0000\u0000\u0000\u058b։\u0001\u0000\u0000\u0000\u058b\u058c\u0001\u0000\u0000\u0000\u058c֎\u0001\u0000\u0000\u0000֍\u058b\u0001\u0000\u0000\u0000֎֏\u0003¦S\u0000֏£\u0001\u0000\u0000\u0000\u0590֒\u0005\u0000\u0000֑\u0590\u0001\u0000\u0000\u0000֒֕\u0001\u0000\u0000\u0000֑֓\u0001\u0000\u0000\u0000֓֔\u0001\u0000\u0000\u0000֖֔\u0001\u0000\u0000\u0000֕֓\u0001\u0000\u0000\u0000֖֗\u0003¨T\u0000֗¥\u0001\u0000\u0000\u0000֘֙\u0005—\u0000\u0000֚֙\u0003šM\u0000֛֚\u0005é\u0000\u0000֛֠\u0001\u0000\u0000\u0000֜֠\u0005ž\u0000\u0000֝֠\u0003€@\u0000֞֠\u0003ʆŃ\u0000֟֘\u0001\u0000\u0000\u0000֟֜\u0001\u0000\u0000\u0000֟֝\u0001\u0000\u0000\u0000֟֞\u0001\u0000\u0000\u0000֠§\u0001\u0000\u0000\u0000֢֡\u0005—\u0000\u0000֢֣\u0003œN\u0000֣֤\u0005é\u0000\u0000֤֩\u0001\u0000\u0000\u0000֥֩\u0005ž\u0000\u0000" ++ "֦֩\u0003€@\u0000֧֩\u0003ʌņ\u0000֨֡\u0001\u0000\u0000\u0000֥֨\u0001\u0000\u0000\u0000֦֨\u0001\u0000\u0000\u0000֧֨\u0001\u0000\u0000\u0000֩©\u0001\u0000\u0000\u0000֪֫\u0007\u0010\u0000\u0000ְ֫\u0003ʆŃ\u0000֭֬\u0007\u000f\u0000\u0000֭֯\u0003ʆŃ\u0000֮֬\u0001\u0000\u0000\u0000ֲ֯\u0001\u0000\u0000\u0000ְ֮\u0001\u0000\u0000\u0000ְֱ\u0001\u0000\u0000\u0000ֱ«\u0001\u0000\u0000\u0000ְֲ\u0001\u0000\u0000\u0000ֳִ\u0007\u0010\u0000\u0000ִֵ\u0003ʆŃ\u0000ֵ­\u0001\u0000\u0000\u0000ֶֻ\u0003°X\u0000ַָ\u0005º\u0000\u0000ָֺ\u0003°X\u0000ַֹ\u0001\u0000\u0000\u0000ֺֽ\u0001\u0000\u0000\u0000ֹֻ\u0001\u0000\u0000\u0000ֻּ\u0001\u0000\u0000\u0000ּ¯\u0001\u0000\u0000\u0000ֻֽ\u0001\u0000\u0000\u0000־׃\u0003²Y\u0000ֿ׀\u0005Ī\u0000\u0000׀ׂ\u0003²Y\u0000ֿׁ\u0001\u0000\u0000\u0000ׂׅ\u0001\u0000\u0000\u0000׃ׁ\u0001\u0000\u0000\u0000׃ׄ\u0001\u0000\u0000\u0000ׄ±\u0001\u0000\u0000\u0000ׅ׃\u0001\u0000\u0000\u0000׆\u05cb\u0003´Z\u0000ׇ\u05c8\u0005\u0014\u0000\u0000\u05c8\u05ca\u0003´Z\u0000\u05c9ׇ\u0001\u0000\u0000\u0000\u05ca\u05cd\u0001\u0000\u0000\u0000\u05cb\u05c9\u0001\u0000\u0000\u0000\u05cb\u05cc\u0001\u0000\u0000\u0000\u05cc³\u0001\u0000\u0000\u0000\u05cd\u05cb\u0001\u0000\u0000\u0000\u05ceא\u0005¯\u0000\u0000\u05cf\u05ce\u0001\u0000\u0000\u0000אד\u0001\u0000\u0000\u0000ב\u05cf\u0001\u0000\u0000\u0000בג\u0001\u0000\u0000\u0000גה\u0001\u0000\u0000\u0000דב\u0001\u0000\u0000\u0000הו\u0003¶[\u0000וµ\u0001\u0000\u0000\u0000זכ\u0003¸\\\u0000חט\u0007\u0011\u0000\u0000טך\u0003¸\\\u0000יח\u0001\u0000\u0000\u0000ךם\u0001\u0000\u0000\u0000כי\u0001\u0000\u0000\u0000כל\u0001\u0000\u0000\u0000ל·\u0001\u0000\u0000\u0000םכ\u0001\u0000\u0000\u0000מנ\u0003¾_\u0000ןס\u0003º]\u0000נן\u0001\u0000\u0000\u0000נס\u0001\u0000\u0000\u0000ס¹\u0001\u0000\u0000\u0000עת\u0005Ø\u0000\u0000ףפ\u0005þ\u0000\u0000פת\u0005ħ\u0000\u0000ץצ\u0005_\u0000\u0000צת\u0005ħ\u0000\u0000קת\u00055\u0000\u0000רת\u0005\u0000\u0000שע\u0001\u0000\u0000\u0000שף\u0001\u0000\u0000\u0000שץ\u0001\u0000\u0000\u0000שק\u0001\u0000\u0000\u0000שר\u0001\u0000\u0000\u0000ת\u05eb\u0001\u0000\u0000\u0000\u05eb؃\u0003¾_\u0000\u05ec\u05ee\u0005‡\u0000\u0000\u05edׯ" ++ "\u0005¯\u0000\u0000\u05ee\u05ed\u0001\u0000\u0000\u0000\u05eeׯ\u0001\u0000\u0000\u0000ׯװ\u0001\u0000\u0000\u0000װ؃\u0005²\u0000\u0000ױ׳\u0005‡\u0000\u0000ײ״\u0005¯\u0000\u0000׳ײ\u0001\u0000\u0000\u0000׳״\u0001\u0000\u0000\u0000״\u05f5\u0001\u0000\u0000\u0000\u05f5\u05f8\u0007\u0012\u0000\u0000\u05f6\u05f8\u0005-\u0000\u0000\u05f7ױ\u0001\u0000\u0000\u0000\u05f7\u05f6\u0001\u0000\u0000\u0000\u05f8\u05f9\u0001\u0000\u0000\u0000\u05f9؃\u0003Ė‹\u0000\u05fa\u05fc\u0005‡\u0000\u0000\u05fb\u05fd\u0005¯\u0000\u0000\u05fc\u05fb\u0001\u0000\u0000\u0000\u05fc\u05fd\u0001\u0000\u0000\u0000\u05fd\u05ff\u0001\u0000\u0000\u0000\u05fe؀\u0003¼^\u0000\u05ff\u05fe\u0001\u0000\u0000\u0000\u05ff؀\u0001\u0000\u0000\u0000؀؁\u0001\u0000\u0000\u0000؁؃\u0005®\u0000\u0000؂ש\u0001\u0000\u0000\u0000؂\u05ec\u0001\u0000\u0000\u0000؂\u05f7\u0001\u0000\u0000\u0000؂\u05fa\u0001\u0000\u0000\u0000؃»\u0001\u0000\u0000\u0000؄؅\u0007\u0013\u0000\u0000؅½\u0001\u0000\u0000\u0000؆؋\u0003À`\u0000؇؈\u0007\u0014\u0000\u0000؈؊\u0003À`\u0000؉؇\u0001\u0000\u0000\u0000؊؍\u0001\u0000\u0000\u0000؋؉\u0001\u0000\u0000\u0000؋،\u0001\u0000\u0000\u0000،¿\u0001\u0000\u0000\u0000؍؋\u0001\u0000\u0000\u0000؎ؓ\u0003Âa\u0000؏ؐ\u0007\u0015\u0000\u0000ؐؒ\u0003Âa\u0000ؑ؏\u0001\u0000\u0000\u0000ؒؕ\u0001\u0000\u0000\u0000ؓؑ\u0001\u0000\u0000\u0000ؓؔ\u0001\u0000\u0000\u0000ؔÁ\u0001\u0000\u0000\u0000ؕؓ\u0001\u0000\u0000\u0000ؖ؛\u0003Äb\u0000ؘؗ\u0005Å\u0000\u0000ؘؚ\u0003Äb\u0000ؙؗ\u0001\u0000\u0000\u0000ؚ؝\u0001\u0000\u0000\u0000؛ؙ\u0001\u0000\u0000\u0000؛؜\u0001\u0000\u0000\u0000؜Ã\u0001\u0000\u0000\u0000؝؛\u0001\u0000\u0000\u0000؞آ\u0003Æc\u0000؟ؠ\u0007\u0016\u0000\u0000ؠآ\u0003Æc\u0000ء؞\u0001\u0000\u0000\u0000ء؟\u0001\u0000\u0000\u0000آÅ\u0001\u0000\u0000\u0000أا\u0003Òi\u0000ؤئ\u0003Èd\u0000إؤ\u0001\u0000\u0000\u0000ئة\u0001\u0000\u0000\u0000اإ\u0001\u0000\u0000\u0000اب\u0001\u0000\u0000\u0000بÇ\u0001\u0000\u0000\u0000ةا\u0001\u0000\u0000\u0000تغ\u0003Êe\u0000ثغ\u0003˜L\u0000جح\u0005Ž\u0000\u0000حخ\u0003®W\u0000خد\u0005Ò\u0000\u0000دغ\u0001\u0000\u0000\u0000ذز\u0005Ž\u0000\u0000رس\u0003®W\u0000زر\u0001\u0000\u0000\u0000زس\u0001\u0000\u0000\u0000سش\u0001\u0000\u0000\u0000شض\u0005P" ++ "\u0000\u0000صط\u0003®W\u0000ضص\u0001\u0000\u0000\u0000ضط\u0001\u0000\u0000\u0000طظ\u0001\u0000\u0000\u0000ظغ\u0005Ò\u0000\u0000عت\u0001\u0000\u0000\u0000عث\u0001\u0000\u0000\u0000عج\u0001\u0000\u0000\u0000عذ\u0001\u0000\u0000\u0000غÉ\u0001\u0000\u0000\u0000ػؼ\u0005O\u0000\u0000ؼؽ\u0003Ą‚\u0000ؽË\u0001\u0000\u0000\u0000ؾؿ\u0005Ž\u0000\u0000ؿـ\u0003®W\u0000ـف\u0005Ò\u0000\u0000فÍ\u0001\u0000\u0000\u0000قل\u0003Òi\u0000كم\u0003Êe\u0000لك\u0001\u0000\u0000\u0000من\u0001\u0000\u0000\u0000نل\u0001\u0000\u0000\u0000نه\u0001\u0000\u0000\u0000هÏ\u0001\u0000\u0000\u0000وى\u0003Òi\u0000ىي\u0003Ìf\u0000يÑ\u0001\u0000\u0000\u0000ً١\u0003Ôj\u0000ٌ١\u0003ƃ\u0000ٍ١\u0003Ök\u0000َ١\u0003Úm\u0000ُ١\u0003ö{\u0000ِ١\u0003ø|\u0000ّ١\u0003ú}\u0000ْ١\u0003ü~\u0000ٓ١\u0003òy\u0000ٔ١\u0003àp\u0000ٕ١\u0003Á\u0000ٖ١\u0003âq\u0000ٗ١\u0003är\u0000٘١\u0003æs\u0000ٙ١\u0003èt\u0000ٚ١\u0003êu\u0000ٛ١\u0003ìv\u0000ٜ١\u0003îw\u0000ٝ١\u0003ðx\u0000ٞ١\u0003Ċ…\u0000ٟ١\u0003Ē‰\u0000٠ً\u0001\u0000\u0000\u0000٠ٌ\u0001\u0000\u0000\u0000٠ٍ\u0001\u0000\u0000\u0000٠َ\u0001\u0000\u0000\u0000٠ُ\u0001\u0000\u0000\u0000٠ِ\u0001\u0000\u0000\u0000٠ّ\u0001\u0000\u0000\u0000٠ْ\u0001\u0000\u0000\u0000٠ٓ\u0001\u0000\u0000\u0000٠ٔ\u0001\u0000\u0000\u0000٠ٕ\u0001\u0000\u0000\u0000٠ٖ\u0001\u0000\u0000\u0000٠ٗ\u0001\u0000\u0000\u0000٠٘\u0001\u0000\u0000\u0000٠ٙ\u0001\u0000\u0000\u0000٠ٚ\u0001\u0000\u0000\u0000٠ٛ\u0001\u0000\u0000\u0000٠ٜ\u0001\u0000\u0000\u0000٠ٝ\u0001\u0000\u0000\u0000٠ٞ\u0001\u0000\u0000\u0000٠ٟ\u0001\u0000\u0000\u0000١Ó\u0001\u0000\u0000\u0000٢٬\u0003þ\u0000٣٬\u0003ɺĽ\u0000٤٬\u0003ʄł\u0000٥٬\u0005ē\u0000\u0000٦٬\u0005h\u0000\u0000٧٬\u0005‚\u0000\u0000٨٬\u0005ƒ\u0000\u0000٩٬\u0005£\u0000\u0000٪٬\u0005²\u0000\u0000٫٢\u0001\u0000\u0000\u0000٫٣\u0001\u0000\u0000\u0000٫٤\u0001\u0000\u0000\u0000٫٥\u0001\u0000\u0000\u0000٫٦\u0001\u0000\u0000\u0000٫٧\u0001\u0000\u0000\u0000" ++ "٫٨\u0001\u0000\u0000\u0000٫٩\u0001\u0000\u0000\u0000٫٪\u0001\u0000\u0000\u0000٬Õ\u0001\u0000\u0000\u0000٭ٯ\u0005(\u0000\u0000ٮٰ\u0003Øl\u0000ٯٮ\u0001\u0000\u0000\u0000ٰٱ\u0001\u0000\u0000\u0000ٱٯ\u0001\u0000\u0000\u0000ٱٲ\u0001\u0000\u0000\u0000ٲٵ\u0001\u0000\u0000\u0000ٳٴ\u0005\\\u0000\u0000ٴٶ\u0003®W\u0000ٵٳ\u0001\u0000\u0000\u0000ٵٶ\u0001\u0000\u0000\u0000ٶٷ\u0001\u0000\u0000\u0000ٷٸ\u0005^\u0000\u0000ٸ×\u0001\u0000\u0000\u0000ٹٺ\u0005ĥ\u0000\u0000ٺٻ\u0003®W\u0000ٻټ\u0005ć\u0000\u0000ټٽ\u0003®W\u0000ٽÙ\u0001\u0000\u0000\u0000پٿ\u0005(\u0000\u0000ٿځ\u0003®W\u0000ڀڂ\u0003Ün\u0000ځڀ\u0001\u0000\u0000\u0000ڂڃ\u0001\u0000\u0000\u0000ڃځ\u0001\u0000\u0000\u0000ڃڄ\u0001\u0000\u0000\u0000ڄڇ\u0001\u0000\u0000\u0000څچ\u0005\\\u0000\u0000چڈ\u0003®W\u0000ڇڅ\u0001\u0000\u0000\u0000ڇڈ\u0001\u0000\u0000\u0000ڈډ\u0001\u0000\u0000\u0000ډڊ\u0005^\u0000\u0000ڊÛ\u0001\u0000\u0000\u0000ڋڌ\u0005ĥ\u0000\u0000ڌڑ\u0003Þo\u0000ڍڎ\u0005.\u0000\u0000ڎڐ\u0003Þo\u0000ڏڍ\u0001\u0000\u0000\u0000ڐړ\u0001\u0000\u0000\u0000ڑڏ\u0001\u0000\u0000\u0000ڑڒ\u0001\u0000\u0000\u0000ڒڔ\u0001\u0000\u0000\u0000ړڑ\u0001\u0000\u0000\u0000ڔڕ\u0005ć\u0000\u0000ڕږ\u0003®W\u0000ږÝ\u0001\u0000\u0000\u0000ڗڝ\u0005Ø\u0000\u0000ژڙ\u0005þ\u0000\u0000ڙڝ\u0005ħ\u0000\u0000ښڛ\u0005_\u0000\u0000ڛڝ\u0005ħ\u0000\u0000ڜڗ\u0001\u0000\u0000\u0000ڜژ\u0001\u0000\u0000\u0000ڜښ\u0001\u0000\u0000\u0000ڝڞ\u0001\u0000\u0000\u0000ڞڹ\u0003¾_\u0000ڟڡ\u0005‡\u0000\u0000ڠڢ\u0005¯\u0000\u0000ڡڠ\u0001\u0000\u0000\u0000ڡڢ\u0001\u0000\u0000\u0000ڢڣ\u0001\u0000\u0000\u0000ڣڹ\u0005²\u0000\u0000ڤڦ\u0005‡\u0000\u0000ڥڧ\u0005¯\u0000\u0000ڦڥ\u0001\u0000\u0000\u0000ڦڧ\u0001\u0000\u0000\u0000ڧڨ\u0001\u0000\u0000\u0000ڨګ\u0005ĕ\u0000\u0000کګ\u0005-\u0000\u0000ڪڤ\u0001\u0000\u0000\u0000ڪک\u0001\u0000\u0000\u0000ګڬ\u0001\u0000\u0000\u0000ڬڹ\u0003Ė‹\u0000ڭگ\u0005‡\u0000\u0000ڮڰ\u0005¯\u0000\u0000گڮ\u0001\u0000\u0000\u0000گڰ\u0001\u0000\u0000\u0000ڰڲ\u0001\u0000\u0000\u0000ڱڳ\u0003¼^\u0000ڲڱ\u0001\u0000\u0000\u0000ڲڳ" ++ "\u0001\u0000\u0000\u0000ڳڴ\u0001\u0000\u0000\u0000ڴڹ\u0005®\u0000\u0000ڵڶ\u0007\u0011\u0000\u0000ڶڹ\u0003¸\\\u0000ڷڹ\u0003®W\u0000ڸڜ\u0001\u0000\u0000\u0000ڸڟ\u0001\u0000\u0000\u0000ڸڪ\u0001\u0000\u0000\u0000ڸڭ\u0001\u0000\u0000\u0000ڸڵ\u0001\u0000\u0000\u0000ڸڷ\u0001\u0000\u0000\u0000ڹß\u0001\u0000\u0000\u0000ںڻ\u0005Ž\u0000\u0000ڻڼ\u0003Ē‰\u0000ڼڽ\u0005\u0000\u0000ڽۈ\u0003®W\u0000ھڿ\u0005Ħ\u0000\u0000ڿہ\u0003®W\u0000ۀھ\u0001\u0000\u0000\u0000ۀہ\u0001\u0000\u0000\u0000ہۂ\u0001\u0000\u0000\u0000ۂۃ\u0005\u001d\u0000\u0000ۃۉ\u0003®W\u0000ۄۅ\u0005Ħ\u0000\u0000ۅۇ\u0003®W\u0000ۆۄ\u0001\u0000\u0000\u0000ۆۇ\u0001\u0000\u0000\u0000ۇۉ\u0001\u0000\u0000\u0000ۈۀ\u0001\u0000\u0000\u0000ۈۆ\u0001\u0000\u0000\u0000ۉۊ\u0001\u0000\u0000\u0000ۊۋ\u0005Ò\u0000\u0000ۋá\u0001\u0000\u0000\u0000یې\u0005Ž\u0000\u0000ۍێ\u0003Ē‰\u0000ێۏ\u0005`\u0000\u0000ۏۑ\u0001\u0000\u0000\u0000ېۍ\u0001\u0000\u0000\u0000ېۑ\u0001\u0000\u0000\u0000ۑے\u0001\u0000\u0000\u0000ےە\u0003r9\u0000ۓ۔\u0005Ħ\u0000\u0000۔ۖ\u0003®W\u0000ەۓ\u0001\u0000\u0000\u0000ەۖ\u0001\u0000\u0000\u0000ۖۗ\u0001\u0000\u0000\u0000ۗۘ\u0005\u001d\u0000\u0000ۘۙ\u0003®W\u0000ۙۚ\u0005Ò\u0000\u0000ۚã\u0001\u0000\u0000\u0000ۛۜ\u0005Ö\u0000\u0000ۜ۝\u0005—\u0000\u0000۝۞\u0003Ē‰\u0000۞۟\u0005`\u0000\u0000۟۠\u0003®W\u0000۠ۡ\u0005.\u0000\u0000ۡۢ\u0003Ē‰\u0000ۣۢ\u0005\u0000\u0000ۣۤ\u0003®W\u0000ۤۥ\u0005\u001d\u0000\u0000ۥۦ\u0003®W\u0000ۦۧ\u0005é\u0000\u0000ۧå\u0001\u0000\u0000\u0000ۨ۩\u0007\u0017\u0000\u0000۩۪\u0005—\u0000\u0000۪۫\u0003Ē‰\u0000۫۬\u0005\u0000\u0000۬ۯ\u0003®W\u0000ۭۮ\u0005Ħ\u0000\u0000ۮ۰\u0003®W\u0000ۯۭ\u0001\u0000\u0000\u0000ۯ۰\u0001\u0000\u0000\u0000۰۱\u0001\u0000\u0000\u0000۱۲\u0005é\u0000\u0000۲ç\u0001\u0000\u0000\u0000۳۴\u0005­\u0000\u0000۴۵\u0005—\u0000\u0000۵۸\u0003®W\u0000۶۷\u0005.\u0000\u0000۷۹\u0003¼^\u0000۸۶\u0001\u0000\u0000\u0000۸۹\u0001\u0000\u0000\u0000۹ۺ\u0001\u0000\u0000\u0000ۺۻ\u0005é\u0000\u0000ۻé\u0001\u0000" ++ "\u0000\u0000ۼ۽\u0005Ē\u0000\u0000۽܅\u0005—\u0000\u0000۾܀\u0007\u0018\u0000\u0000ۿ۾\u0001\u0000\u0000\u0000ۿ܀\u0001\u0000\u0000\u0000܀܂\u0001\u0000\u0000\u0000܁܃\u0003®W\u0000܂܁\u0001\u0000\u0000\u0000܂܃\u0001\u0000\u0000\u0000܃܄\u0001\u0000\u0000\u0000܄܆\u0005n\u0000\u0000܅ۿ\u0001\u0000\u0000\u0000܅܆\u0001\u0000\u0000\u0000܆܇\u0001\u0000\u0000\u0000܇܈\u0003®W\u0000܈܉\u0005é\u0000\u0000܉ë\u0001\u0000\u0000\u0000܊܋\u0003r9\u0000܋í\u0001\u0000\u0000\u0000܌܍\u0003h4\u0000܍ï\u0001\u0000\u0000\u0000\u070e܏\u0005—\u0000\u0000܏ܐ\u0003®W\u0000ܐܑ\u0005é\u0000\u0000ܑñ\u0001\u0000\u0000\u0000ܒܓ\u0003Ē‰\u0000ܓܜ\u0005\u0000\u0000ܔܙ\u0003ôz\u0000ܕܖ\u0005.\u0000\u0000ܖܘ\u0003ôz\u0000ܗܕ\u0001\u0000\u0000\u0000ܘܛ\u0001\u0000\u0000\u0000ܙܗ\u0001\u0000\u0000\u0000ܙܚ\u0001\u0000\u0000\u0000ܚܝ\u0001\u0000\u0000\u0000ܛܙ\u0001\u0000\u0000\u0000ܜܔ\u0001\u0000\u0000\u0000ܜܝ\u0001\u0000\u0000\u0000ܝܞ\u0001\u0000\u0000\u0000ܞܟ\u0005Ó\u0000\u0000ܟó\u0001\u0000\u0000\u0000ܠܡ\u0003Ą‚\u0000ܡܢ\u0005,\u0000\u0000ܢܣ\u0003®W\u0000ܣܩ\u0001\u0000\u0000\u0000ܤܩ\u0003Êe\u0000ܥܩ\u0003Ē‰\u0000ܦܧ\u0005O\u0000\u0000ܧܩ\u0005ĉ\u0000\u0000ܨܠ\u0001\u0000\u0000\u0000ܨܤ\u0001\u0000\u0000\u0000ܨܥ\u0001\u0000\u0000\u0000ܨܦ\u0001\u0000\u0000\u0000ܩõ\u0001\u0000\u0000\u0000ܪܫ\u00058\u0000\u0000ܫܬ\u0005—\u0000\u0000ܬܭ\u0005ĉ\u0000\u0000ܭܮ\u0005é\u0000\u0000ܮ÷\u0001\u0000\u0000\u0000ܯܰ\u0005e\u0000\u0000ܹܰ\u0005\u0000\u0000ܱܺ\u0003\u0004\u0002\u0000ܴܲ\u00038\u001c\u0000ܳܲ\u0001\u0000\u0000\u0000ܴܳ\u0001\u0000\u0000\u0000ܴܵ\u0001\u0000\u0000\u0000ܷܵ\u0003\\.\u0000ܸܶ\u0003$\u0012\u0000ܷܶ\u0001\u0000\u0000\u0000ܷܸ\u0001\u0000\u0000\u0000ܸܺ\u0001\u0000\u0000\u0000ܹܱ\u0001\u0000\u0000\u0000ܹܳ\u0001\u0000\u0000\u0000ܻܺ\u0001\u0000\u0000\u0000ܻܼ\u0005Ó\u0000\u0000ܼù\u0001\u0000\u0000\u0000ܾܽ\u00058\u0000\u0000ܾ݇\u0005\u0000\u0000݈ܿ\u0003\u0004\u0002\u0000݂݀\u00038\u001c\u0000݁݀\u0001\u0000\u0000\u0000݂݁\u0001\u0000\u0000\u0000݂݃\u0001\u0000\u0000\u0000݃݅\u0003\\.\u0000݄݆\u0003$\u0012\u0000" ++ "݄݅\u0001\u0000\u0000\u0000݆݅\u0001\u0000\u0000\u0000݆݈\u0001\u0000\u0000\u0000݇ܿ\u0001\u0000\u0000\u0000݇݁\u0001\u0000\u0000\u0000݈݉\u0001\u0000\u0000\u0000݉݊\u0005Ó\u0000\u0000݊û\u0001\u0000\u0000\u0000\u074b\u074c\u0005+\u0000\u0000\u074cݍ\u0005\u0000\u0000ݍݎ\u0003\u0004\u0002\u0000ݎݏ\u0005Ó\u0000\u0000ݏý\u0001\u0000\u0000\u0000ݐݒ\u0005\u0000\u0000ݑݐ\u0001\u0000\u0000\u0000ݑݒ\u0001\u0000\u0000\u0000ݒݓ\u0001\u0000\u0000\u0000ݓݔ\u0007\u0019\u0000\u0000ݔÿ\u0001\u0000\u0000\u0000ݕݗ\u0005\u0000\u0000ݖݕ\u0001\u0000\u0000\u0000ݖݗ\u0001\u0000\u0000\u0000ݗݘ\u0001\u0000\u0000\u0000ݘݙ\u0005\u0005\u0000\u0000ݙā\u0001\u0000\u0000\u0000ݚݣ\u0005Ž\u0000\u0000ݛݠ\u0003®W\u0000ݜݝ\u0005.\u0000\u0000ݝݟ\u0003®W\u0000ݞݜ\u0001\u0000\u0000\u0000ݟݢ\u0001\u0000\u0000\u0000ݠݞ\u0001\u0000\u0000\u0000ݠݡ\u0001\u0000\u0000\u0000ݡݤ\u0001\u0000\u0000\u0000ݢݠ\u0001\u0000\u0000\u0000ݣݛ\u0001\u0000\u0000\u0000ݣݤ\u0001\u0000\u0000\u0000ݤݥ\u0001\u0000\u0000\u0000ݥݦ\u0005Ò\u0000\u0000ݦă\u0001\u0000\u0000\u0000ݧݨ\u0003ʆŃ\u0000ݨą\u0001\u0000\u0000\u0000ݩݪ\u0005L\u0000\u0000ݪݫ\u0003Ĉ„\u0000ݫć\u0001\u0000\u0000\u0000ݬݱ\u0003ʆŃ\u0000ݭݱ\u0005\u0005\u0000\u0000ݮݱ\u0005\u0007\u0000\u0000ݯݱ\u0005į\u0000\u0000ݰݬ\u0001\u0000\u0000\u0000ݰݭ\u0001\u0000\u0000\u0000ݰݮ\u0001\u0000\u0000\u0000ݰݯ\u0001\u0000\u0000\u0000ݱĉ\u0001\u0000\u0000\u0000ݲݳ\u0003χ\u0000ݳݵ\u0005—\u0000\u0000ݴݶ\u0007\u0000\u0000\u0000ݵݴ\u0001\u0000\u0000\u0000ݵݶ\u0001\u0000\u0000\u0000ݶݿ\u0001\u0000\u0000\u0000ݷݼ\u0003Ȇ\u0000ݸݹ\u0005.\u0000\u0000ݹݻ\u0003Ȇ\u0000ݺݸ\u0001\u0000\u0000\u0000ݻݾ\u0001\u0000\u0000\u0000ݼݺ\u0001\u0000\u0000\u0000ݼݽ\u0001\u0000\u0000\u0000ݽހ\u0001\u0000\u0000\u0000ݾݼ\u0001\u0000\u0000\u0000ݿݷ\u0001\u0000\u0000\u0000ݿހ\u0001\u0000\u0000\u0000ހށ\u0001\u0000\u0000\u0000ށނ\u0005é\u0000\u0000ނċ\u0001\u0000\u0000\u0000ރބ\u0003®W\u0000ބč\u0001\u0000\u0000\u0000ޅކ\u0003Ј\u0000ކއ\u0003ʆŃ\u0000އď\u0001\u0000\u0000\u0000ވމ\u0003ʆŃ\u0000މފ\u0005O\u0000\u0000ފތ\u0001\u0000\u0000\u0000ދވ\u0001\u0000\u0000\u0000ތޏ\u0001\u0000\u0000\u0000ލދ\u0001\u0000\u0000\u0000ލގ" ++ "\u0001\u0000\u0000\u0000ގđ\u0001\u0000\u0000\u0000ޏލ\u0001\u0000\u0000\u0000ސޑ\u0003ʆŃ\u0000ޑē\u0001\u0000\u0000\u0000ޒޗ\u0003ʆŃ\u0000ޓޔ\u0005.\u0000\u0000ޔޖ\u0003ʆŃ\u0000ޕޓ\u0001\u0000\u0000\u0000ޖޙ\u0001\u0000\u0000\u0000ޗޕ\u0001\u0000\u0000\u0000ޗޘ\u0001\u0000\u0000\u0000ޘĕ\u0001\u0000\u0000\u0000ޙޗ\u0001\u0000\u0000\u0000ޚޟ\u0003ʌ\u0000ޛޜ\u0005\u001d\u0000\u0000ޜޞ\u0003ʌ\u0000ޝޛ\u0001\u0000\u0000\u0000ޞޡ\u0001\u0000\u0000\u0000ޟޝ\u0001\u0000\u0000\u0000ޟޠ\u0001\u0000\u0000\u0000ޠė\u0001\u0000\u0000\u0000ޡޟ\u0001\u0000\u0000\u0000ޢޤ\u0003̍\u0000ޣޥ\u0003ĜŽ\u0000ޤޣ\u0001\u0000\u0000\u0000ޤޥ\u0001\u0000\u0000\u0000ޥީ\u0001\u0000\u0000\u0000ަި\u0003Џ\u0000ާަ\u0001\u0000\u0000\u0000ިޫ\u0001\u0000\u0000\u0000ީާ\u0001\u0000\u0000\u0000ީު\u0001\u0000\u0000\u0000ުę\u0001\u0000\u0000\u0000ޫީ\u0001\u0000\u0000\u0000ެ߮\u0005°\u0000\u0000ޭ߮\u0005²\u0000\u0000ޮ߮\u0005\u001f\u0000\u0000ޯ߮\u0005 \u0000\u0000ް߮\u0005ġ\u0000\u0000ޱ߮\u0005ā\u0000\u0000\u07b2߮\u0005…\u0000\u0000\u07b3\u07b5\u0005ú\u0000\u0000\u07b4\u07b3\u0001\u0000\u0000\u0000\u07b4\u07b5\u0001\u0000\u0000\u0000\u07b5\u07b6\u0001\u0000\u0000\u0000\u07b6߮\u0005†\u0000\u0000\u07b7߮\u0005k\u0000\u0000\u07b8߮\u0005?\u0000\u0000\u07b9\u07ba\u0005•\u0000\u0000\u07ba߮\u0007\u001a\u0000\u0000\u07bb\u07bc\u0005ĭ\u0000\u0000\u07bc߮\u0007\u001a\u0000\u0000\u07bd\u07be\u0005Ĉ\u0000\u0000\u07be߂\u0007\u001b\u0000\u0000\u07bf߃\u0005ċ\u0000\u0000߀߁\u0005Ĉ\u0000\u0000߁߃\u0005Ĭ\u0000\u0000߂\u07bf\u0001\u0000\u0000\u0000߂߀\u0001\u0000\u0000\u0000߃߮\u0001\u0000\u0000\u0000߄߅\u0005Ċ\u0000\u0000߅߉\u0007\u001b\u0000\u0000߆ߊ\u0005ċ\u0000\u0000߇߈\u0005Ĉ\u0000\u0000߈ߊ\u0005Ĭ\u0000\u0000߉߆\u0001\u0000\u0000\u0000߉߇\u0001\u0000\u0000\u0000ߊ߮\u0001\u0000\u0000\u0000ߋ߮\u0005V\u0000\u0000ߌ߮\u0005Ã\u0000\u0000ߍ߮\u0005©\u0000\u0000ߎ߮\u0005ģ\u0000\u0000ߏ߮\u0005Ú\u0000\u0000ߐ߮\u0005X\u0000\u0000ߑ߮\u0005š\u0000\u0000ߒߓ\u0007\u001c\u0000\u0000ߓߔ\u0005˜\u0000\u0000ߔߕ\u0003Ė‹\u0000ߕߖ\u0005x\u0000\u0000ߖ߮\u0001\u0000\u0000\u0000ߗ߮\u0005¾\u0000\u0000ߘ߮\u0005¿\u0000\u0000ߙߚ\u0005Í\u0000\u0000ߚ߮\u0005Ġ\u0000\u0000ߛ߫\u0005\u0015" ++ "\u0000\u0000ߜ߬\u0005©\u0000\u0000ߝ߬\u0005ģ\u0000\u0000ߞ߬\u0005Ú\u0000\u0000ߟ߬\u0005X\u0000\u0000ߠ߬\u0005š\u0000\u0000ߡߢ\u0005Í\u0000\u0000ߢ߬\u0005Ġ\u0000\u0000ߣߥ\u0005Ġ\u0000\u0000ߤߣ\u0001\u0000\u0000\u0000ߤߥ\u0001\u0000\u0000\u0000ߥߦ\u0001\u0000\u0000\u0000ߦߧ\u0005˜\u0000\u0000ߧߨ\u0003Ė‹\u0000ߨߩ\u0005x\u0000\u0000ߩ߬\u0001\u0000\u0000\u0000ߪ߬\u0005Ġ\u0000\u0000߫ߜ\u0001\u0000\u0000\u0000߫ߝ\u0001\u0000\u0000\u0000߫ߞ\u0001\u0000\u0000\u0000߫ߟ\u0001\u0000\u0000\u0000߫ߠ\u0001\u0000\u0000\u0000߫ߡ\u0001\u0000\u0000\u0000߫ߤ\u0001\u0000\u0000\u0000߫ߪ\u0001\u0000\u0000\u0000߫߬\u0001\u0000\u0000\u0000߬߮\u0001\u0000\u0000\u0000߭ެ\u0001\u0000\u0000\u0000߭ޭ\u0001\u0000\u0000\u0000߭ޮ\u0001\u0000\u0000\u0000߭ޯ\u0001\u0000\u0000\u0000߭ް\u0001\u0000\u0000\u0000߭ޱ\u0001\u0000\u0000\u0000߭\u07b2\u0001\u0000\u0000\u0000߭\u07b4\u0001\u0000\u0000\u0000߭\u07b7\u0001\u0000\u0000\u0000߭\u07b8\u0001\u0000\u0000\u0000߭\u07b9\u0001\u0000\u0000\u0000߭\u07bb\u0001\u0000\u0000\u0000߭\u07bd\u0001\u0000\u0000\u0000߭߄\u0001\u0000\u0000\u0000߭ߋ\u0001\u0000\u0000\u0000߭ߌ\u0001\u0000\u0000\u0000߭ߍ\u0001\u0000\u0000\u0000߭ߎ\u0001\u0000\u0000\u0000߭ߏ\u0001\u0000\u0000\u0000߭ߐ\u0001\u0000\u0000\u0000߭ߑ\u0001\u0000\u0000\u0000߭ߒ\u0001\u0000\u0000\u0000߭ߗ\u0001\u0000\u0000\u0000߭ߘ\u0001\u0000\u0000\u0000߭ߙ\u0001\u0000\u0000\u0000߭ߛ\u0001\u0000\u0000\u0000߮ě\u0001\u0000\u0000\u0000߯߰\u0005¯\u0000\u0000߰߳\u0005²\u0000\u0000߱߳\u0005\u0000\u0000߲߯\u0001\u0000\u0000\u0000߲߱\u0001\u0000\u0000\u0000߳ĝ\u0001\u0000\u0000\u0000ߴ߶\u0007\u001c\u0000\u0000ߵ߷\u0003ĜŽ\u0000߶ߵ\u0001\u0000\u0000\u0000߶߷\u0001\u0000\u0000\u0000߷ğ\u0001\u0000\u0000\u0000߸ߺ\u0003\n\u0005\u0000߹߸\u0001\u0000\u0000\u0000߹ߺ\u0001\u0000\u0000\u0000ߺࠈ\u0001\u0000\u0000\u0000\u07fbࠉ\u0003Ģ‘\u0000\u07fcࠉ\u0003Ĥ’\u0000߽ࠉ\u0003ž¿\u0000߾ࠉ\u0003ƀÀ\u0000߿ࠉ\u0003ƄÂ\u0000ࠀࠉ\u0003ƆÃ\u0000ࠁࠉ\u0003ƂÁ\u0000ࠂࠉ\u0003ɈĤ\u0000ࠃࠉ\u0003Ɋĥ\u0000ࠄࠉ\u0003ƎÇ\u0000ࠅࠉ\u0003ƘÌ\u0000ࠆࠉ\u0003Ħ“\u0000ࠇࠉ\u0003Ĵš\u0000ࠈ\u07fb\u0001\u0000\u0000\u0000ࠈ\u07fc\u0001\u0000\u0000\u0000ࠈ߽\u0001\u0000\u0000\u0000ࠈ߾\u0001\u0000\u0000\u0000" ++ "ࠈ߿\u0001\u0000\u0000\u0000ࠈࠀ\u0001\u0000\u0000\u0000ࠈࠁ\u0001\u0000\u0000\u0000ࠈࠂ\u0001\u0000\u0000\u0000ࠈࠃ\u0001\u0000\u0000\u0000ࠈࠄ\u0001\u0000\u0000\u0000ࠈࠅ\u0001\u0000\u0000\u0000ࠈࠆ\u0001\u0000\u0000\u0000ࠈࠇ\u0001\u0000\u0000\u0000ࠉġ\u0001\u0000\u0000\u0000ࠊࠍ\u00059\u0000\u0000ࠋࠌ\u0005º\u0000\u0000ࠌࠎ\u0005Þ\u0000\u0000ࠍࠋ\u0001\u0000\u0000\u0000ࠍࠎ\u0001\u0000\u0000\u0000ࠎࠖ\u0001\u0000\u0000\u0000ࠏࠗ\u0003ɘĬ\u0000ࠐࠗ\u0003ȰĘ\u0000ࠑࠗ\u0003ޱ\u0000ࠒࠗ\u0003Ȳę\u0000ࠓࠗ\u0003Ũ´\u0000ࠔࠗ\u0003ƞÏ\u0000ࠕࠗ\u0003ƪÕ\u0000ࠖࠏ\u0001\u0000\u0000\u0000ࠖࠐ\u0001\u0000\u0000\u0000ࠖࠑ\u0001\u0000\u0000\u0000ࠖࠒ\u0001\u0000\u0000\u0000ࠖࠓ\u0001\u0000\u0000\u0000ࠖࠔ\u0001\u0000\u0000\u0000ࠖࠕ\u0001\u0000\u0000\u0000ࠗģ\u0001\u0000\u0000\u0000࠘ࠠ\u0005S\u0000\u0000࠙ࠡ\u0003ɚĭ\u0000ࠚࠡ\u0003Ŧ³\u0000ࠛࠡ\u0003ȼĞ\u0000ࠜࠡ\u0003Ÿ¼\u0000ࠝࠡ\u0003ƠÐ\u0000ࠞࠡ\u0003ƔÊ\u0000ࠟࠡ\u0003ƬÖ\u0000ࠠ࠙\u0001\u0000\u0000\u0000ࠠࠚ\u0001\u0000\u0000\u0000ࠠࠛ\u0001\u0000\u0000\u0000ࠠࠜ\u0001\u0000\u0000\u0000ࠠࠝ\u0001\u0000\u0000\u0000ࠠࠞ\u0001\u0000\u0000\u0000ࠠࠟ\u0001\u0000\u0000\u0000ࠡĥ\u0001\u0000\u0000\u0000ࠢ࠳\u0005ù\u0000\u0000ࠣ࠴\u0003ɨĴ\u0000ࠤ࠴\u0003ŀ \u0000ࠥ࠴\u0003Ljä\u0000ࠦ࠴\u0003ɐĨ\u0000ࠧ࠴\u0003Ŋ¥\u0000ࠨ࠴\u0003ĺ\u0000ࠩ࠴\u0003njæ\u0000ࠪ࠴\u0003ň¤\u0000ࠫ࠴\u0003ǎç\u0000ࠬ࠴\u0003ƤÒ\u0000࠭࠴\u0003ƖË\u0000\u082e࠴\u0003Ŗ«\u0000\u082f࠴\u0003NJå\u0000࠰࠴\u0003Œ©\u0000࠱࠴\u0003ǐè\u0000࠲࠴\u0003džã\u0000࠳ࠣ\u0001\u0000\u0000\u0000࠳ࠤ\u0001\u0000\u0000\u0000࠳ࠥ\u0001\u0000\u0000\u0000࠳ࠦ\u0001\u0000\u0000\u0000࠳ࠧ\u0001\u0000\u0000\u0000࠳ࠨ\u0001\u0000\u0000\u0000࠳ࠩ\u0001\u0000\u0000\u0000࠳ࠪ\u0001\u0000\u0000\u0000࠳ࠫ\u0001\u0000\u0000\u0000࠳ࠬ\u0001\u0000\u0000\u0000࠳࠭\u0001\u0000\u0000\u0000࠳\u082e\u0001\u0000\u0000\u0000࠳\u082f\u0001\u0000\u0000\u0000࠳࠰\u0001\u0000\u0000\u0000࠳࠱\u0001\u0000\u0000\u0000࠳࠲\u0001\u0000\u0000\u0000࠴ħ\u0001\u0000\u0000\u0000࠵࠷\u0003ݘ\u0000࠶࠸\u0003\u0010\u0008\u0000࠷࠶\u0001\u0000\u0000\u0000࠷࠸\u0001\u0000\u0000\u0000࠸࠻" ++ "\u0001\u0000\u0000\u0000࠹࠻\u0003$\u0012\u0000࠺࠵\u0001\u0000\u0000\u0000࠺࠹\u0001\u0000\u0000\u0000࠻ĩ\u0001\u0000\u0000\u0000࠼\u083f\u0003Ē‰\u0000࠽࠾\u0005\u0017\u0000\u0000࠾ࡀ\u0003Ē‰\u0000\u083f࠽\u0001\u0000\u0000\u0000\u083fࡀ\u0001\u0000\u0000\u0000ࡀī\u0001\u0000\u0000\u0000ࡁࡂ\u0007\u0003\u0000\u0000ࡂࡃ\u0003Ā€\u0000ࡃĭ\u0001\u0000\u0000\u0000ࡄࡅ\u0005’\u0000\u0000ࡅࡆ\u0003Ā€\u0000ࡆį\u0001\u0000\u0000\u0000ࡇࡑ\u0005ī\u0000\u0000ࡈࡒ\u0005ĉ\u0000\u0000ࡉࡎ\u0003Ī•\u0000ࡊࡋ\u0005.\u0000\u0000ࡋࡍ\u0003Ī•\u0000ࡌࡊ\u0001\u0000\u0000\u0000ࡍࡐ\u0001\u0000\u0000\u0000ࡎࡌ\u0001\u0000\u0000\u0000ࡎࡏ\u0001\u0000\u0000\u0000ࡏࡒ\u0001\u0000\u0000\u0000ࡐࡎ\u0001\u0000\u0000\u0000ࡑࡈ\u0001\u0000\u0000\u0000ࡑࡉ\u0001\u0000\u0000\u0000ࡒࡔ\u0001\u0000\u0000\u0000ࡓࡕ\u0003\u001e\u000f\u0000ࡔࡓ\u0001\u0000\u0000\u0000ࡔࡕ\u0001\u0000\u0000\u0000ࡕࡗ\u0001\u0000\u0000\u0000ࡖࡘ\u0003Ĭ–\u0000ࡗࡖ\u0001\u0000\u0000\u0000ࡗࡘ\u0001\u0000\u0000\u0000ࡘ࡚\u0001\u0000\u0000\u0000࡙࡛\u0003Į—\u0000࡚࡙\u0001\u0000\u0000\u0000࡚࡛\u0001\u0000\u0000\u0000࡛\u085d\u0001\u0000\u0000\u0000\u085c࡞\u0003$\u0012\u0000\u085d\u085c\u0001\u0000\u0000\u0000\u085d࡞\u0001\u0000\u0000\u0000࡞ı\u0001\u0000\u0000\u0000\u085fࡠ\u0005¸\u0000\u0000ࡠࡡ\u0003ʂŁ\u0000ࡡij\u0001\u0000\u0000\u0000ࡢࡣ\u0005ą\u0000\u0000ࡣࡤ\u0003Ŕª\u0000ࡤĵ\u0001\u0000\u0000\u0000ࡥࡨ\u0003Ĵš\u0000ࡦࡨ\u0003ĸœ\u0000ࡧࡥ\u0001\u0000\u0000\u0000ࡧࡦ\u0001\u0000\u0000\u0000ࡨ", +"ķ\u0001\u0000\u0000\u0000ࡩࡰ\u0005ù\u0000\u0000ࡪࡱ\u0003ĺ\u0000\u086bࡱ\u0003ŀ \u0000\u086cࡱ\u0003Ŋ¥\u0000\u086dࡱ\u0003ň¤\u0000\u086eࡱ\u0003Ŗ«\u0000\u086fࡱ\u0003Œ©\u0000ࡰࡪ\u0001\u0000\u0000\u0000ࡰ\u086b\u0001\u0000\u0000\u0000ࡰ\u086c\u0001\u0000\u0000\u0000ࡰ\u086d\u0001\u0000\u0000\u0000ࡰ\u086e\u0001\u0000\u0000\u0000ࡰ\u086f\u0001\u0000\u0000\u0000ࡱĹ\u0001\u0000\u0000\u0000ࡲࡴ\u0003ļž\u0000ࡳࡲ\u0001\u0000\u0000\u0000ࡳࡴ\u0001\u0000\u0000\u0000ࡴࡵ\u0001\u0000\u0000\u0000ࡵࡶ\u0003ľŸ\u0000ࡶĻ\u0001\u0000\u0000\u0000ࡷࡸ\u0007\u001d\u0000\u0000ࡸĽ\u0001\u0000\u0000\u0000ࡹࡻ\u0003Ȃā\u0000ࡺࡼ\u0003Ĩ”\u0000ࡻࡺ\u0001\u0000\u0000\u0000ࡻࡼ\u0001\u0000\u0000\u0000ࡼࡾ\u0001\u0000\u0000\u0000ࡽࡿ\u0003Ķ›\u0000ࡾࡽ\u0001\u0000\u0000\u0000ࡾࡿ\u0001\u0000\u0000\u0000ࡿĿ\u0001\u0000\u0000\u0000ࢀࢂ\u0005\u0012\u0000\u0000ࢁࢀ\u0001\u0000\u0000\u0000ࢁࢂ\u0001\u0000\u0000\u0000ࢂࢃ\u0001\u0000\u0000\u0000ࢃ࢞\u0003ņ£\u0000ࢄࢆ\u0003ł¡\u0000ࢅࢄ\u0001\u0000\u0000\u0000ࢅࢆ\u0001\u0000\u0000\u0000ࢆࢇ\u0001\u0000\u0000\u0000ࢇ࢈\u0003ń¢\u0000࢈ࢉ\u0003ņ£\u0000ࢉ࢞\u0001\u0000\u0000\u0000ࢊࢌ\u0003ł¡\u0000ࢋࢊ\u0001\u0000\u0000\u0000ࢋࢌ\u0001\u0000\u0000\u0000ࢌࢍ\u0001\u0000\u0000\u0000ࢍࢎ\u0005‰\u0000\u0000ࢎ࢞\u0003ņ£\u0000\u088f࢑\u0003ł¡\u0000࢐\u088f\u0001\u0000\u0000\u0000࢐࢑\u0001\u0000\u0000\u0000࢑\u0892\u0001\u0000\u0000\u0000\u0892\u0893\u0005Í\u0000\u0000\u0893\u0894\u0005Ĕ\u0000\u0000\u0894࢞\u0003ņ£\u0000\u0895\u0897\u0003ł¡\u0000\u0896\u0895\u0001\u0000\u0000\u0000\u0896\u0897\u0001\u0000\u0000\u0000\u0897࢙\u0001\u0000\u0000\u0000࢚࢘\u0005Í\u0000\u0000࢙࢘\u0001\u0000\u0000\u0000࢙࢚\u0001\u0000\u0000\u0000࢚࢛\u0001\u0000\u0000\u0000࢛࢜\u0007\u001e\u0000\u0000࢜࢞\u0003ņ£\u0000࢝ࢁ\u0001\u0000\u0000\u0000࢝ࢅ\u0001\u0000\u0000\u0000࢝ࢋ\u0001\u0000\u0000\u0000࢝࢐\u0001\u0000\u0000\u0000࢝\u0896\u0001\u0000\u0000\u0000࢞Ł\u0001\u0000\u0000\u0000࢟ࢢ\u0005©\u0000\u0000ࢠࢢ\u0007\u001f\u0000\u0000ࢡ࢟\u0001\u0000\u0000\u0000ࢡࢠ\u0001\u0000\u0000\u0000ࢢŃ\u0001\u0000\u0000\u0000ࢣࢪ\u0005d\u0000\u0000ࢤࢪ\u0005c\u0000\u0000ࢥࢦ\u0005Í\u0000\u0000ࢦࢪ\u0005d\u0000\u0000ࢧࢨ\u0005Í\u0000\u0000ࢨࢪ\u0005c\u0000\u0000ࢩࢣ\u0001\u0000\u0000\u0000ࢩࢤ\u0001" ++ "\u0000\u0000\u0000ࢩࢥ\u0001\u0000\u0000\u0000ࢩࢧ\u0001\u0000\u0000\u0000ࢪŅ\u0001\u0000\u0000\u0000ࢫࢭ\u0003ȄĂ\u0000ࢬࢮ\u0003Ĩ”\u0000ࢭࢬ\u0001\u0000\u0000\u0000ࢭࢮ\u0001\u0000\u0000\u0000ࢮࢰ\u0001\u0000\u0000\u0000ࢯࢱ\u0003Ķ›\u0000ࢰࢯ\u0001\u0000\u0000\u0000ࢰࢱ\u0001\u0000\u0000\u0000ࢱŇ\u0001\u0000\u0000\u0000ࢲࢴ\u0007 \u0000\u0000ࢳࢵ\u0003Ŏ§\u0000ࢴࢳ\u0001\u0000\u0000\u0000ࢴࢵ\u0001\u0000\u0000\u0000ࢵࢷ\u0001\u0000\u0000\u0000ࢶࢸ\u0003Ĩ”\u0000ࢷࢶ\u0001\u0000\u0000\u0000ࢷࢸ\u0001\u0000\u0000\u0000ࢸࢺ\u0001\u0000\u0000\u0000ࢹࢻ\u0003Ķ›\u0000ࢺࢹ\u0001\u0000\u0000\u0000ࢺࢻ\u0001\u0000\u0000\u0000ࢻʼn\u0001\u0000\u0000\u0000ࢼࢾ\u0003Ő¨\u0000ࢽࢼ\u0001\u0000\u0000\u0000ࢽࢾ\u0001\u0000\u0000\u0000ࢾࢿ\u0001\u0000\u0000\u0000ࢿࣁ\u0003Ō¦\u0000ࣀࣂ\u0003Ŏ§\u0000ࣁࣀ\u0001\u0000\u0000\u0000ࣁࣂ\u0001\u0000\u0000\u0000ࣂࣄ\u0001\u0000\u0000\u0000ࣃࣅ\u0003Ĩ”\u0000ࣄࣃ\u0001\u0000\u0000\u0000ࣄࣅ\u0001\u0000\u0000\u0000ࣅࣇ\u0001\u0000\u0000\u0000ࣆࣈ\u0003Ķ›\u0000ࣇࣆ\u0001\u0000\u0000\u0000ࣇࣈ\u0001\u0000\u0000\u0000ࣈŋ\u0001\u0000\u0000\u0000ࣉ࣊\u0007!\u0000\u0000࣊ō\u0001\u0000\u0000\u0000࣒࣋\u0005a\u0000\u0000࣐࣌\u0005%\u0000\u0000࣍࣎\u0005;\u0000\u0000࣑࣎\u0005ĝ\u0000\u0000࣏࣑\u0003ʆŃ\u0000࣐࣍\u0001\u0000\u0000\u0000࣐࣏\u0001\u0000\u0000\u0000࣑࣓\u0001\u0000\u0000\u0000࣒࣌\u0001\u0000\u0000\u0000࣒࣓\u0001\u0000\u0000\u0000࣓ŏ\u0001\u0000\u0000\u0000ࣔࣚ\u0005\u0012\u0000\u0000ࣕࣖ\u0005$\u0000\u0000ࣖࣚ\u0005\u0000\u0000ࣗࣘ\u0005ĝ\u0000\u0000ࣘࣚ\u0005D\u0000\u0000ࣙࣔ\u0001\u0000\u0000\u0000ࣙࣕ\u0001\u0000\u0000\u0000ࣙࣗ\u0001\u0000\u0000\u0000ࣚő\u0001\u0000\u0000\u0000ࣛࣜ\u0003Ȇă\u0000ࣜࣝ\u0003Ś­\u0000ࣝœ\u0001\u0000\u0000\u0000ࣞࣟ\u0003Ȇă\u0000ࣟ࣡\u0003Ŝ®\u0000࣠࣢\u0003Ĩ”\u0000࣡࣠\u0001\u0000\u0000\u0000࣡࣢\u0001\u0000\u0000\u0000࣢ࣤ\u0001\u0000\u0000\u0000ࣣࣥ\u0003Ķ›\u0000ࣣࣤ\u0001\u0000\u0000\u0000ࣤࣥ\u0001\u0000\u0000\u0000ࣥŕ\u0001\u0000\u0000\u0000ࣦࣧ\u0003ج\u0000ࣧࣨ\u0003Ś­\u0000ࣨŗ\u0001\u0000\u0000\u0000ࣩ࣪\u0007\"\u0000\u0000࣪ř\u0001\u0000\u0000\u0000࣭࣫\u0003Ĩ”\u0000࣬࣫\u0001\u0000\u0000\u0000࣭࣬\u0001\u0000\u0000" ++ "\u0000࣭ࣳ\u0001\u0000\u0000\u0000ࣰ࣮\u0003Ŝ®\u0000ࣱ࣯\u0003Ĩ”\u0000ࣰ࣯\u0001\u0000\u0000\u0000ࣰࣱ\u0001\u0000\u0000\u0000ࣱࣳ\u0001\u0000\u0000\u0000ࣲ࣬\u0001\u0000\u0000\u0000ࣲ࣮\u0001\u0000\u0000\u0000ࣳࣵ\u0001\u0000\u0000\u0000ࣶࣴ\u0003Ķ›\u0000ࣵࣴ\u0001\u0000\u0000\u0000ࣶࣵ\u0001\u0000\u0000\u0000ࣶś\u0001\u0000\u0000\u0000ࣺࣷ\u0003ɸļ\u0000ࣺࣸ\u0003®W\u0000ࣹࣷ\u0001\u0000\u0000\u0000ࣹࣸ\u0001\u0000\u0000\u0000ࣺŝ\u0001\u0000\u0000\u0000ࣻࣼ\u0005—\u0000\u0000ࣼࣽ\u0003Ē‰\u0000ࣽࣾ\u0003„B\u0000ࣾࣿ\u0005é\u0000\u0000ࣿş\u0001\u0000\u0000\u0000ऀँ\u0005—\u0000\u0000ँः\u0005é\u0000\u0000ंऄ\u0003H\u0000ःं\u0001\u0000\u0000\u0000ःऄ\u0001\u0000\u0000\u0000ऄअ\u0001\u0000\u0000\u0000अआ\u0003’I\u0000आइ\u0005Ž\u0000\u0000इई\u0003Ē‰\u0000ईउ\u0003†C\u0000उऊ\u0005Ò\u0000\u0000ऊऌ\u0003’I\u0000ऋऍ\u0003”J\u0000ऌऋ\u0001\u0000\u0000\u0000ऌऍ\u0001\u0000\u0000\u0000ऍऎ\u0001\u0000\u0000\u0000ऎए\u0005—\u0000\u0000एऐ\u0005é\u0000\u0000ऐš\u0001\u0000\u0000\u0000ऑओ\u00053\u0000\u0000ऒऔ\u0003ɪĵ\u0000ओऒ\u0001\u0000\u0000\u0000ओऔ\u0001\u0000\u0000\u0000औघ\u0001\u0000\u0000\u0000कख\u0005|\u0000\u0000खग\u0005¯\u0000\u0000गङ\u0005e\u0000\u0000घक\u0001\u0000\u0000\u0000घङ\u0001\u0000\u0000\u0000ङच\u0001\u0000\u0000\u0000चझ\u0005l\u0000\u0000छञ\u0003ޯ\u0000जञ\u0003Š°\u0000झछ\u0001\u0000\u0000\u0000झज\u0001\u0000\u0000\u0000ञट\u0001\u0000\u0000\u0000टड\u0003Ť²\u0000ठढ\u0003IJ™\u0000डठ\u0001\u0000\u0000\u0000डढ\u0001\u0000\u0000\u0000ढţ\u0001\u0000\u0000\u0000णत\u0005à\u0000\u0000तन\u0003ź½\u0000थऩ\u0005-\u0000\u0000दध\u0005‡\u0000\u0000धऩ\u0007\u0012\u0000\u0000नथ\u0001\u0000\u0000\u0000नद\u0001\u0000\u0000\u0000ऩप\u0001\u0000\u0000\u0000पफ\u0003Ė‹\u0000फृ\u0001\u0000\u0000\u0000बभ\u0005à\u0000\u0000भम\u0003ź½\u0000मर\u0005‡\u0000\u0000यऱ\u0007#\u0000\u0000रय\u0001\u0000\u0000\u0000रऱ\u0001\u0000\u0000\u0000ऱल\u0001\u0000\u0000\u0000लळ\u0005Ę\u0000\u0000ळृ\u0001\u0000\u0000\u0000ऴव\u0005à\u0000\u0000वश\u0003ź½\u0000श" ++ "स\u0005‡\u0000\u0000षह\u0007#\u0000\u0000सष\u0001\u0000\u0000\u0000सह\u0001\u0000\u0000\u0000हऺ\u0001\u0000\u0000\u0000ऺऻ\u0005‰\u0000\u0000ऻृ\u0001\u0000\u0000\u0000़ऽ\u0005à\u0000\u0000ऽा\u0003ź½\u0000ाि\u0005‡\u0000\u0000िी\u0005¯\u0000\u0000ीु\u0005²\u0000\u0000ुृ\u0001\u0000\u0000\u0000ूण\u0001\u0000\u0000\u0000ूब\u0001\u0000\u0000\u0000ूऴ\u0001\u0000\u0000\u0000ू़\u0001\u0000\u0000\u0000ृť\u0001\u0000\u0000\u0000ॄॅ\u00053\u0000\u0000ॅै\u0003ɪĵ\u0000ॆे\u0005|\u0000\u0000ेॉ\u0005e\u0000\u0000ैॆ\u0001\u0000\u0000\u0000ैॉ\u0001\u0000\u0000\u0000ॉŧ\u0001\u0000\u0000\u0000ॊो\u0005Ñ\u0000\u0000ोौ\u0005€\u0000\u0000ौय़\u0003Ūµ\u0000्ॎ\u0005Ć\u0000\u0000ॎॏ\u0005€\u0000\u0000ॏय़\u0003Ūµ\u0000ॐ॑\u0005Ã\u0000\u0000॒॑\u0005€\u0000\u0000॒य़\u0003Ūµ\u0000॓॔\u0005Ģ\u0000\u0000॔ॕ\u0005€\u0000\u0000ॕय़\u0003Ūµ\u0000ॖॗ\u0005–\u0000\u0000ॗक़\u0005€\u0000\u0000क़य़\u0003Ų¹\u0000ख़ग़\u0005o\u0000\u0000ग़ज़\u0005€\u0000\u0000ज़य़\u0003Ŭ¶\u0000ड़ढ़\u0005€\u0000\u0000ढ़य़\u0003Ūµ\u0000फ़ॊ\u0001\u0000\u0000\u0000फ़्\u0001\u0000\u0000\u0000फ़ॐ\u0001\u0000\u0000\u0000फ़॓\u0001\u0000\u0000\u0000फ़ॖ\u0001\u0000\u0000\u0000फ़ख़\u0001\u0000\u0000\u0000फ़ड़\u0001\u0000\u0000\u0000य़ũ\u0001\u0000\u0000\u0000ॠॢ\u0003ɪĵ\u0000ॡॠ\u0001\u0000\u0000\u0000ॡॢ\u0001\u0000\u0000\u0000ॢ०\u0001\u0000\u0000\u0000ॣ।\u0005|\u0000\u0000।॥\u0005¯\u0000\u0000॥१\u0005e\u0000\u0000०ॣ\u0001\u0000\u0000\u0000०१\u0001\u0000\u0000\u0000१२\u0001\u0000\u0000\u0000२५\u0005l\u0000\u0000३६\u0003ޯ\u0000४६\u0003Š°\u0000५३\u0001\u0000\u0000\u0000५४\u0001\u0000\u0000\u0000६७\u0001\u0000\u0000\u0000७८\u0005µ\u0000\u0000८॰\u0003ź½\u0000९ॱ\u0003IJ™\u0000॰९\u0001\u0000\u0000\u0000॰ॱ\u0001\u0000\u0000\u0000ॱū\u0001\u0000\u0000\u0000ॲॴ\u0003ɪĵ\u0000ॳॲ\u0001\u0000\u0000\u0000ॳॴ\u0001\u0000\u0000\u0000ॴॸ\u0001\u0000\u0000\u0000ॵॶ\u0005|\u0000\u0000ॶॷ\u0005¯\u0000\u0000ॷॹ\u0005e\u0000\u0000ॸॵ\u0001\u0000\u0000\u0000ॸॹ\u0001\u0000\u0000\u0000ॹॺ\u0001\u0000\u0000\u0000ॺॽ\u0005" ++ "l\u0000\u0000ॻॾ\u0003Ů·\u0000ॼॾ\u0003۸\u0000ॽॻ\u0001\u0000\u0000\u0000ॽॼ\u0001\u0000\u0000\u0000ॾॿ\u0001\u0000\u0000\u0000ॿঀ\u0005µ\u0000\u0000ঀঁ\u0005W\u0000\u0000ঁং\u0005Ž\u0000\u0000ংঃ\u0003ż¾\u0000ঃঅ\u0005Ò\u0000\u0000\u0984আ\u0003IJ™\u0000অ\u0984\u0001\u0000\u0000\u0000অআ\u0001\u0000\u0000\u0000আŭ\u0001\u0000\u0000\u0000ইঈ\u0005—\u0000\u0000ঈউ\u0003Ē‰\u0000উঊ\u0005,\u0000\u0000ঊএ\u0003ʆŃ\u0000ঋঌ\u0005\u001d\u0000\u0000ঌ\u098e\u0003ʆŃ\u0000\u098dঋ\u0001\u0000\u0000\u0000\u098e\u0991\u0001\u0000\u0000\u0000এ\u098d\u0001\u0000\u0000\u0000এঐ\u0001\u0000\u0000\u0000ঐ\u0992\u0001\u0000\u0000\u0000\u0991এ\u0001\u0000\u0000\u0000\u0992ও\u0005é\u0000\u0000ওů\u0001\u0000\u0000\u0000ঔক\u0005—\u0000\u0000কগ\u0005é\u0000\u0000খঘ\u0003H\u0000গখ\u0001\u0000\u0000\u0000গঘ\u0001\u0000\u0000\u0000ঘঙ\u0001\u0000\u0000\u0000ঙচ\u0003’I\u0000চছ\u0005Ž\u0000\u0000ছজ\u0003Ē‰\u0000জঝ\u0005,\u0000\u0000ঝঢ\u0003ʆŃ\u0000ঞট\u0005\u001d\u0000\u0000টড\u0003ʆŃ\u0000ঠঞ\u0001\u0000\u0000\u0000ডত\u0001\u0000\u0000\u0000ঢঠ\u0001\u0000\u0000\u0000ঢণ\u0001\u0000\u0000\u0000ণথ\u0001\u0000\u0000\u0000তঢ\u0001\u0000\u0000\u0000থদ\u0005Ò\u0000\u0000দন\u0003’I\u0000ধ\u09a9\u0003”J\u0000নধ\u0001\u0000\u0000\u0000ন\u09a9\u0001\u0000\u0000\u0000\u09a9প\u0001\u0000\u0000\u0000পফ\u0005—\u0000\u0000ফব\u0005é\u0000\u0000বű\u0001\u0000\u0000\u0000ভয\u0003ɪĵ\u0000মভ\u0001\u0000\u0000\u0000ময\u0001\u0000\u0000\u0000য\u09b3\u0001\u0000\u0000\u0000র\u09b1\u0005|\u0000\u0000\u09b1ল\u0005¯\u0000\u0000ল\u09b4\u0005e\u0000\u0000\u09b3র\u0001\u0000\u0000\u0000\u09b3\u09b4\u0001\u0000\u0000\u0000\u09b4\u09b5\u0001\u0000\u0000\u0000\u09b5স\u0005l\u0000\u0000শহ\u0003Ŵº\u0000ষহ\u0003Ŷ»\u0000সশ\u0001\u0000\u0000\u0000সষ\u0001\u0000\u0000\u0000হ\u09ba\u0001\u0000\u0000\u0000\u09ba\u09bb\u0003ʆŃ\u0000\u09bb়\u0005—\u0000\u0000়ঽ\u0003Ē‰\u0000ঽি\u0005é\u0000\u0000াী\u0003IJ™\u0000িা\u0001\u0000\u0000\u0000িী\u0001\u0000\u0000\u0000ীų\u0001\u0000\u0000\u0000ুূ\u0005—\u0000\u0000ূৃ\u0003Ē‰\u0000ৃৄ\u0005é\u0000\u0000ৄ\u09c5\u0005µ\u0000\u0000\u09c5\u09c6\u0005W\u0000" ++ "\u0000\u09c6ŵ\u0001\u0000\u0000\u0000েৈ\u0005—\u0000\u0000ৈ\u09ca\u0005é\u0000\u0000\u09c9ো\u0003H\u0000\u09ca\u09c9\u0001\u0000\u0000\u0000\u09caো\u0001\u0000\u0000\u0000োৌ\u0001\u0000\u0000\u0000ৌ্\u0003’I\u0000্ৎ\u0005Ž\u0000\u0000ৎ\u09cf\u0003Ē‰\u0000\u09cf\u09d0\u0005Ò\u0000\u0000\u09d0\u09d2\u0003’I\u0000\u09d1\u09d3\u0003”J\u0000\u09d2\u09d1\u0001\u0000\u0000\u0000\u09d2\u09d3\u0001\u0000\u0000\u0000\u09d3\u09d4\u0001\u0000\u0000\u0000\u09d4\u09d5\u0005—\u0000\u0000\u09d5\u09d6\u0005é\u0000\u0000\u09d6\u09d8\u0005µ\u0000\u0000ৗ\u09d9\u0005W\u0000\u0000\u09d8ৗ\u0001\u0000\u0000\u0000\u09d8\u09d9\u0001\u0000\u0000\u0000\u09d9ŷ\u0001\u0000\u0000\u0000\u09da\u09db\u0005€\u0000\u0000\u09db\u09de\u0003ɪĵ\u0000ড়ঢ়\u0005|\u0000\u0000ঢ়য়\u0005e\u0000\u0000\u09deড়\u0001\u0000\u0000\u0000\u09deয়\u0001\u0000\u0000\u0000য়Ź\u0001\u0000\u0000\u0000ৠৡ\u0003Ē‰\u0000ৡৢ\u0003Êe\u0000ৢ২\u0001\u0000\u0000\u0000ৣ\u09e4\u0005—\u0000\u0000\u09e4\u09e5\u0003ż¾\u0000\u09e5০\u0005é\u0000\u0000০২\u0001\u0000\u0000\u0000১ৠ\u0001\u0000\u0000\u0000১ৣ\u0001\u0000\u0000\u0000২Ż\u0001\u0000\u0000\u0000৩৪\u0003Ē‰\u0000৪ৱ\u0003Êe\u0000৫৬\u0005.\u0000\u0000৬৭\u0003Ē‰\u0000৭৮\u0003Êe\u0000৮ৰ\u0001\u0000\u0000\u0000৯৫\u0001\u0000\u0000\u0000ৰ৳\u0001\u0000\u0000\u0000ৱ৯\u0001\u0000\u0000\u0000ৱ৲\u0001\u0000\u0000\u0000৲Ž\u0001\u0000\u0000\u0000৳ৱ\u0001\u0000\u0000\u0000৴৺\u0005\u0013\u0000\u0000৵৻\u0003ɜĮ\u0000৶৻\u0003ưØ\u0000৷৻\u0003ɀĠ\u0000৸৻\u0003ƲÙ\u0000৹৻\u0003ƐÈ\u0000৺৵\u0001\u0000\u0000\u0000৺৶\u0001\u0000\u0000\u0000৺৷\u0001\u0000\u0000\u0000৺৸\u0001\u0000\u0000\u0000৺৹\u0001\u0000\u0000\u0000৻ſ\u0001\u0000\u0000\u0000ৼ\u0a00\u0005×\u0000\u0000৽ਁ\u0003ƢÑ\u0000৾ਁ\u0003ƒÉ\u0000\u09ffਁ\u0003Ʈ×\u0000\u0a00৽\u0001\u0000\u0000\u0000\u0a00৾\u0001\u0000\u0000\u0000\u0a00\u09ff\u0001\u0000\u0000\u0000ਁƁ\u0001\u0000\u0000\u0000ਂ\u0a0d\u0005s\u0000\u0000ਃਅ\u0005~\u0000\u0000\u0a04ਃ\u0001\u0000\u0000\u0000\u0a04ਅ\u0001\u0000\u0000\u0000ਅਆ\u0001\u0000\u0000\u0000ਆਇ\u0003ǖë\u0000ਇਈ\u0005Č\u0000\u0000ਈਉ\u0003ƊÅ\u0000ਉ\u0a0e\u0001\u0000\u0000\u0000ਊ\u0a0b\u0003ƌÆ\u0000\u0a0b\u0a0c\u0003ƦÓ\u0000\u0a0c\u0a0e\u0001\u0000\u0000\u0000\u0a0d\u0a04\u0001\u0000\u0000\u0000\u0a0d" ++ "ਊ\u0001\u0000\u0000\u0000\u0a0eƃ\u0001\u0000\u0000\u0000ਏ\u0a11\u0005F\u0000\u0000ਐ\u0a12\u0005~\u0000\u0000\u0a11ਐ\u0001\u0000\u0000\u0000\u0a11\u0a12\u0001\u0000\u0000\u0000\u0a12ਓ\u0001\u0000\u0000\u0000ਓਔ\u0003ǖë\u0000ਔਕ\u0005Č\u0000\u0000ਕਖ\u0003ƊÅ\u0000ਖƅ\u0001\u0000\u0000\u0000ਗਥ\u0005ä\u0000\u0000ਘਚ\u0007$\u0000\u0000ਙਘ\u0001\u0000\u0000\u0000ਙਚ\u0001\u0000\u0000\u0000ਚਜ\u0001\u0000\u0000\u0000ਛਝ\u0005~\u0000\u0000ਜਛ\u0001\u0000\u0000\u0000ਜਝ\u0001\u0000\u0000\u0000ਝਞ\u0001\u0000\u0000\u0000ਞਟ\u0003ǖë\u0000ਟਠ\u0005n\u0000\u0000ਠਡ\u0003ƊÅ\u0000ਡਦ\u0001\u0000\u0000\u0000ਢਣ\u0003ƌÆ\u0000ਣਤ\u0003ƨÔ\u0000ਤਦ\u0001\u0000\u0000\u0000ਥਙ\u0001\u0000\u0000\u0000ਥਢ\u0001\u0000\u0000\u0000ਦƇ\u0001\u0000\u0000\u0000ਧਨ\u0003ɮķ\u0000ਨƉ\u0001\u0000\u0000\u0000\u0a29ਪ\u0003ɮķ\u0000ਪƋ\u0001\u0000\u0000\u0000ਫਬ\u0007%\u0000\u0000ਬƍ\u0001\u0000\u0000\u0000ਭਮ\u0005Y\u0000\u0000ਮਯ\u0005ò\u0000\u0000ਯ\u0a31\u0003ɾĿ\u0000ਰਲ\u0003IJ™\u0000\u0a31ਰ\u0001\u0000\u0000\u0000\u0a31ਲ\u0001\u0000\u0000\u0000ਲƏ\u0001\u0000\u0000\u0000ਲ਼\u0a34\u0005ò\u0000\u0000\u0a34ਵ\u0003ɾĿ\u0000ਵਸ਼\u0005ô\u0000\u0000ਸ਼\u0a37\u0003IJ™\u0000\u0a37Ƒ\u0001\u0000\u0000\u0000ਸਹ\u0005ò\u0000\u0000ਹ\u0a3a\u0003ɾĿ\u0000\u0a3a\u0a3b\u0005Č\u0000\u0000\u0a3b਼\u0003ɾĿ\u0000਼Ɠ\u0001\u0000\u0000\u0000\u0a3dਾ\u0005ò\u0000\u0000ਾਿ\u0003ɾĿ\u0000ਿƕ\u0001\u0000\u0000\u0000ੀੂ\u0007&\u0000\u0000ੁ\u0a43\u0003Ĩ”\u0000ੂੁ\u0001\u0000\u0000\u0000ੂ\u0a43\u0001\u0000\u0000\u0000\u0a43Ɨ\u0001\u0000\u0000\u0000\u0a44\u0a46\u0005T\u0000\u0000\u0a45\u0a44\u0001\u0000\u0000\u0000\u0a45\u0a46\u0001\u0000\u0000\u0000\u0a46\u0a49\u0001\u0000\u0000\u0000ੇ\u0a4a\u0003ƚÍ\u0000ੈ\u0a4a\u0003ƜÎ\u0000\u0a49ੇ\u0001\u0000\u0000\u0000\u0a49ੈ\u0001\u0000\u0000\u0000\u0a4aƙ\u0001\u0000\u0000\u0000ੋੌ\u0005B\u0000\u0000ੌ੍\u0007\'\u0000\u0000੍\u0a4e\u0005n\u0000\u0000\u0a4e\u0a4f\u0007&\u0000\u0000\u0a4f\u0a54\u0003ɾĿ\u0000\u0a50ੑ\u0005.\u0000\u0000ੑ\u0a53\u0003ɾĿ\u0000\u0a52\u0a50\u0001\u0000\u0000\u0000\u0a53\u0a56\u0001\u0000\u0000\u0000\u0a54\u0a52\u0001\u0000\u0000\u0000\u0a54\u0a55\u0001\u0000\u0000\u0000\u0a55ƛ\u0001\u0000\u0000\u0000\u0a56\u0a54\u0001\u0000\u0000\u0000\u0a57\u0a58\u0005Õ\u0000\u0000\u0a58ਖ਼\u0007\'\u0000\u0000ਖ਼Ɲ\u0001" ++ "\u0000\u0000\u0000ਗ਼ੜ\u0005~\u0000\u0000ਜ਼ਗ਼\u0001\u0000\u0000\u0000ਜ਼ੜ\u0001\u0000\u0000\u0000ੜ\u0a5d\u0001\u0000\u0000\u0000\u0a5dਫ਼\u0005å\u0000\u0000ਫ਼\u0a62\u0003ɬĶ\u0000\u0a5f\u0a60\u0005|\u0000\u0000\u0a60\u0a61\u0005¯\u0000\u0000\u0a61\u0a63\u0005e\u0000\u0000\u0a62\u0a5f\u0001\u0000\u0000\u0000\u0a62\u0a63\u0001\u0000\u0000\u0000\u0a63੨\u0001\u0000\u0000\u0000\u0a64\u0a65\u0005\u0017\u0000\u0000\u0a65੦\u00056\u0000\u0000੦੧\u0005³\u0000\u0000੧੩\u0003ɬĶ\u0000੨\u0a64\u0001\u0000\u0000\u0000੨੩\u0001\u0000\u0000\u0000੩Ɵ\u0001\u0000\u0000\u0000੪੫\u0005å\u0000\u0000੫੮\u0003ɬĶ\u0000੬੭\u0005|\u0000\u0000੭੯\u0005e\u0000\u0000੮੬\u0001\u0000\u0000\u0000੮੯\u0001\u0000\u0000\u0000੯ơ\u0001\u0000\u0000\u0000ੰੱ\u0005å\u0000\u0000ੱੴ\u0003ɬĶ\u0000ੲੳ\u0005|\u0000\u0000ੳੵ\u0005e\u0000\u0000ੴੲ\u0001\u0000\u0000\u0000ੴੵ\u0001\u0000\u0000\u0000ੵ੶\u0001\u0000\u0000\u0000੶\u0a77\u0005Č\u0000\u0000\u0a77\u0a78\u0003ɬĶ\u0000\u0a78ƣ\u0001\u0000\u0000\u0000\u0a79\u0a7b\u0007(\u0000\u0000\u0a7a\u0a79\u0001\u0000\u0000\u0000\u0a7a\u0a7b\u0001\u0000\u0000\u0000\u0a7b\u0a7c\u0001\u0000\u0000\u0000\u0a7c\u0a7f\u0003ƌÆ\u0000\u0a7d\u0a7e\u0005ħ\u0000\u0000\u0a7e\u0a80\u0007)\u0000\u0000\u0a7f\u0a7d\u0001\u0000\u0000\u0000\u0a7f\u0a80\u0001\u0000\u0000\u0000\u0a80ં\u0001\u0000\u0000\u0000ઁઃ\u0003Ĩ”\u0000ંઁ\u0001\u0000\u0000\u0000ંઃ\u0001\u0000\u0000\u0000ઃƥ\u0001\u0000\u0000\u0000\u0a84અ\u0003ƊÅ\u0000અઆ\u0005Č\u0000\u0000આઇ\u0003ƈÄ\u0000ઇƧ\u0001\u0000\u0000\u0000ઈઉ\u0003ƊÅ\u0000ઉઊ\u0005n\u0000\u0000ઊઋ\u0003ƈÄ\u0000ઋƩ\u0001\u0000\u0000\u0000ઌઍ\u0005ĝ\u0000\u0000ઍઑ\u0003ɬĶ\u0000\u0a8eએ\u0005|\u0000\u0000એઐ\u0005¯\u0000\u0000ઐ\u0a92\u0005e\u0000\u0000ઑ\u0a8e\u0001\u0000\u0000\u0000ઑ\u0a92\u0001\u0000\u0000\u0000\u0a92જ\u0001\u0000\u0000\u0000ઓચ\u0005ô\u0000\u0000ઔછ\u0003ƶÛ\u0000કખ\u0005¼\u0000\u0000ખછ\u0003ƼÞ\u0000ગછ\u0003ƾß\u0000ઘછ\u0003ǀà\u0000ઙછ\u0003ǂá\u0000ચઔ\u0001\u0000\u0000\u0000ચક\u0001\u0000\u0000\u0000ચગ\u0001\u0000\u0000\u0000ચઘ\u0001\u0000\u0000\u0000ચઙ\u0001\u0000\u0000\u0000છઝ\u0001\u0000\u0000\u0000જઓ\u0001\u0000\u0000\u0000ઝઞ\u0001\u0000\u0000\u0000ઞજ\u0001\u0000\u0000\u0000ઞટ\u0001\u0000\u0000\u0000ટƫ\u0001\u0000\u0000\u0000ઠડ\u0005ĝ\u0000" ++ "\u0000ડત\u0003ɬĶ\u0000ઢણ\u0005|\u0000\u0000ણથ\u0005e\u0000\u0000તઢ\u0001\u0000\u0000\u0000તથ\u0001\u0000\u0000\u0000થƭ\u0001\u0000\u0000\u0000દધ\u0005ĝ\u0000\u0000ધપ\u0003ɬĶ\u0000ન\u0aa9\u0005|\u0000\u0000\u0aa9ફ\u0005e\u0000\u0000પન\u0001\u0000\u0000\u0000પફ\u0001\u0000\u0000\u0000ફબ\u0001\u0000\u0000\u0000બભ\u0005Č\u0000\u0000ભમ\u0003ɬĶ\u0000મƯ\u0001\u0000\u0000\u0000યર\u0005;\u0000\u0000ર\u0ab1\u0005ĝ\u0000\u0000\u0ab1લ\u0005ô\u0000\u0000લળ\u0005¼\u0000\u0000ળ\u0ab4\u0005n\u0000\u0000\u0ab4વ\u0003ƺÝ\u0000વશ\u0005Č\u0000\u0000શષ\u0003ƺÝ\u0000ષƱ\u0001\u0000\u0000\u0000સહ\u0005ĝ\u0000\u0000હ઼\u0003ɬĶ\u0000\u0aba\u0abb\u0005|\u0000\u0000\u0abbઽ\u0005e\u0000\u0000઼\u0aba\u0001\u0000\u0000\u0000઼ઽ\u0001\u0000\u0000\u0000ઽો\u0001\u0000\u0000\u0000ાે\u0005Ü\u0000\u0000િી\u0005z\u0000\u0000ીૈ\u0005=\u0000\u0000ુૂ\u0005\u0012\u0000\u0000ૂૄ\u0005\u001c\u0000\u0000ૃૅ\u0007*\u0000\u0000ૄૃ\u0001\u0000\u0000\u0000ૄૅ\u0001\u0000\u0000\u0000ૅૈ\u0001\u0000\u0000\u0000\u0ac6ૈ\u0003ƴÚ\u0000ેિ\u0001\u0000\u0000\u0000ેુ\u0001\u0000\u0000\u0000ે\u0ac6\u0001\u0000\u0000\u0000ૈ\u0aca\u0001\u0000\u0000\u0000ૉા\u0001\u0000\u0000\u0000\u0aca્\u0001\u0000\u0000\u0000ોૉ\u0001\u0000\u0000\u0000ોૌ\u0001\u0000\u0000\u0000ૌ\u0ad9\u0001\u0000\u0000\u0000્ો\u0001\u0000\u0000\u0000\u0ace\u0ad5\u0005ô\u0000\u0000\u0acf\u0ad6\u0003ƶÛ\u0000ૐ\u0ad1\u0005¼\u0000\u0000\u0ad1\u0ad6\u0003ƼÞ\u0000\u0ad2\u0ad6\u0003ƾß\u0000\u0ad3\u0ad6\u0003ǀà\u0000\u0ad4\u0ad6\u0003ǂá\u0000\u0ad5\u0acf\u0001\u0000\u0000\u0000\u0ad5ૐ\u0001\u0000\u0000\u0000\u0ad5\u0ad2\u0001\u0000\u0000\u0000\u0ad5\u0ad3\u0001\u0000\u0000\u0000\u0ad5\u0ad4\u0001\u0000\u0000\u0000\u0ad6\u0ad8\u0001\u0000\u0000\u0000\u0ad7\u0ace\u0001\u0000\u0000\u0000\u0ad8\u0adb\u0001\u0000\u0000\u0000\u0ad9\u0ad7\u0001\u0000\u0000\u0000\u0ad9\u0ada\u0001\u0000\u0000\u0000\u0adaƳ\u0001\u0000\u0000\u0000\u0adb\u0ad9\u0001\u0000\u0000\u0000\u0adc\u0ade\u0005\u001c\u0000\u0000\u0add\u0adf\u0007*\u0000\u0000\u0ade\u0add\u0001\u0000\u0000\u0000\u0ade\u0adf\u0001\u0000\u0000\u0000\u0adfૣ\u0001\u0000\u0000\u0000ૠ\u0ae4\u0003ɺĽ\u0000ૡ\u0ae4\u0003ɶĻ\u0000ૢ\u0ae4\u0003ƃ\u0000ૣૠ\u0001\u0000\u0000\u0000ૣૡ\u0001\u0000\u0000\u0000ૣૢ\u0001\u0000\u0000\u0000\u0ae4Ƶ\u0001\u0000\u0000\u0000\u0ae5૧\u0007+\u0000\u0000૦\u0ae5\u0001\u0000\u0000\u0000૦" ++ "૧\u0001\u0000\u0000\u0000૧૨\u0001\u0000\u0000\u0000૨૩\u0005¼\u0000\u0000૩૫\u0003ƺÝ\u0000૪૬\u0003ƼÞ\u0000૫૪\u0001\u0000\u0000\u0000૫૬\u0001\u0000\u0000\u0000૬Ʒ\u0001\u0000\u0000\u0000૭૯\u0007+\u0000\u0000૮૭\u0001\u0000\u0000\u0000૮૯\u0001\u0000\u0000\u0000૯૰\u0001\u0000\u0000\u0000૰૱\u0005¼\u0000\u0000૱\u0af2\u0003ƺÝ\u0000\u0af2ƹ\u0001\u0000\u0000\u0000\u0af3\u0af6\u0003ɺĽ\u0000\u0af4\u0af6\u0003ƃ\u0000\u0af5\u0af3\u0001\u0000\u0000\u0000\u0af5\u0af4\u0001\u0000\u0000\u0000\u0af6ƻ\u0001\u0000\u0000\u0000\u0af7ૹ\u0005)\u0000\u0000\u0af8ૺ\u0005¯\u0000\u0000ૹ\u0af8\u0001\u0000\u0000\u0000ૹૺ\u0001\u0000\u0000\u0000ૺૻ\u0001\u0000\u0000\u0000ૻૼ\u0005á\u0000\u0000ૼƽ\u0001\u0000\u0000\u0000૽૾\u0005ÿ\u0000\u0000૾૿\u0007,\u0000\u0000૿ƿ\u0001\u0000\u0000\u0000\u0b00ଁ\u0005z\u0000\u0000ଁଂ\u0005=\u0000\u0000ଂଃ\u0003ɲĹ\u0000ଃǁ\u0001\u0000\u0000\u0000\u0b04ଆ\u0005\u001c\u0000\u0000ଅଇ\u0005Î\u0000\u0000ଆଅ\u0001\u0000\u0000\u0000ଆଇ\u0001\u0000\u0000\u0000ଇଈ\u0001\u0000\u0000\u0000ଈଉ\u0003ɺĽ\u0000ଉଌ\u0005\u0000\u0000ଊଋ\u0005ô\u0000\u0000ଋ\u0b0d\u0003DŽâ\u0000ଌଊ\u0001\u0000\u0000\u0000\u0b0d\u0b0e\u0001\u0000\u0000\u0000\u0b0eଌ\u0001\u0000\u0000\u0000\u0b0eଏ\u0001\u0000\u0000\u0000ଏଐ\u0001\u0000\u0000\u0000ଐ\u0b11\u0005Ó\u0000\u0000\u0b11ǃ\u0001\u0000\u0000\u0000\u0b12ଓ\u0005{\u0000\u0000ଓଘ\u0003ɼľ\u0000ଔଘ\u0003ƸÜ\u0000କଖ\u0005¼\u0000\u0000ଖଘ\u0003ƼÞ\u0000ଗ\u0b12\u0001\u0000\u0000\u0000ଗଔ\u0001\u0000\u0000\u0000ଗକ\u0001\u0000\u0000\u0000ଘDž\u0001\u0000\u0000\u0000ଙଜ\u0007)\u0000\u0000ଚଛ\u0005ħ\u0000\u0000ଛଝ\u0005\u001c\u0000\u0000ଜଚ\u0001\u0000\u0000\u0000ଜଝ\u0001\u0000\u0000\u0000ଝଟ\u0001\u0000\u0000\u0000ଞଠ\u0003Ĩ”\u0000ଟଞ\u0001\u0000\u0000\u0000ଟଠ\u0001\u0000\u0000\u0000ଠLJ\u0001\u0000\u0000\u0000ଡଢ\u0005;\u0000\u0000ଢତ\u0005ĝ\u0000\u0000ଣଥ\u0003Ĩ”\u0000ତଣ\u0001\u0000\u0000\u0000ତଥ\u0001\u0000\u0000\u0000ଥlj\u0001\u0000\u0000\u0000ଦଧ\u0005Ă\u0000\u0000ଧ\u0b29\u0003ǔê\u0000ନପ\u0003Ĩ”\u0000\u0b29ନ\u0001\u0000\u0000\u0000\u0b29ପ\u0001\u0000\u0000\u0000ପNj\u0001\u0000\u0000\u0000ଫଭ\u0005\u0012\u0000\u0000ବଫ\u0001\u0000\u0000\u0000ବଭ\u0001\u0000\u0000\u0000ଭମ\u0001\u0000\u0000\u0000ମର\u0003" ++ "ǔê\u0000ଯ\u0b31\u0003ǒé\u0000ରଯ\u0001\u0000\u0000\u0000ର\u0b31\u0001\u0000\u0000\u0000\u0b31ଳ\u0001\u0000\u0000\u0000ଲ\u0b34\u0003Ĩ”\u0000ଳଲ\u0001\u0000\u0000\u0000ଳ\u0b34\u0001\u0000\u0000\u0000\u0b34Ǎ\u0001\u0000\u0000\u0000ଵଶ\u0007%\u0000\u0000ଶଷ\u0003ƊÅ\u0000ଷହ\u0003ǔê\u0000ସ\u0b3a\u0003ǒé\u0000ହସ\u0001\u0000\u0000\u0000ହ\u0b3a\u0001\u0000\u0000\u0000\u0b3a଼\u0001\u0000\u0000\u0000\u0b3bଽ\u0003Ĩ”\u0000଼\u0b3b\u0001\u0000\u0000\u0000଼ଽ\u0001\u0000\u0000\u0000ଽǏ\u0001\u0000\u0000\u0000ାୀ\u0007)\u0000\u0000ିୁ\u0003ƈÄ\u0000ୀି\u0001\u0000\u0000\u0000ୀୁ\u0001\u0000\u0000\u0000ୁୂ\u0001\u0000\u0000\u0000ୂୄ\u0003ǔê\u0000ୃ\u0b45\u0003ǒé\u0000ୄୃ\u0001\u0000\u0000\u0000ୄ\u0b45\u0001\u0000\u0000\u0000\u0b45େ\u0001\u0000\u0000\u0000\u0b46ୈ\u0003Ĩ”\u0000େ\u0b46\u0001\u0000\u0000\u0000େୈ\u0001\u0000\u0000\u0000ୈǑ\u0001\u0000\u0000\u0000\u0b49ୋ\u0005\u0017\u0000\u0000\u0b4aୌ\u0005ä\u0000\u0000ୋ\u0b4a\u0001\u0000\u0000\u0000ୋୌ\u0001\u0000\u0000\u0000ୌ୍\u0001\u0000\u0000\u0000୍\u0b4e\u0007-\u0000\u0000\u0b4eǓ\u0001\u0000\u0000\u0000\u0b4f\u0b50\u0007.\u0000\u0000\u0b50Ǖ\u0001\u0000\u0000\u0000\u0b51\u0b5e\u0003ǘì\u0000\u0b52\u0b5e\u0003Ǟï\u0000\u0b53\u0b5e\u0003Ǹü\u0000\u0b54\u0b5e\u0003Ǻý\u0000୕\u0b5e\u0003Ǫõ\u0000ୖ\u0b5e\u0003Ǭö\u0000ୗ\u0b5e\u0003Țč\u0000\u0b58\u0b5e\u0003ȘČ\u0000\u0b59\u0b5e\u0003Ǵú\u0000\u0b5a\u0b5e\u0003ǰø\u0000\u0b5b\u0b5e\u0003Ǯ÷\u0000ଡ଼\u0b5e\u0003Ƕû\u0000ଢ଼\u0b51\u0001\u0000\u0000\u0000ଢ଼\u0b52\u0001\u0000\u0000\u0000ଢ଼\u0b53\u0001\u0000\u0000\u0000ଢ଼\u0b54\u0001\u0000\u0000\u0000ଢ଼୕\u0001\u0000\u0000\u0000ଢ଼ୖ\u0001\u0000\u0000\u0000ଢ଼ୗ\u0001\u0000\u0000\u0000ଢ଼\u0b58\u0001\u0000\u0000\u0000ଢ଼\u0b59\u0001\u0000\u0000\u0000ଢ଼\u0b5a\u0001\u0000\u0000\u0000ଢ଼\u0b5b\u0001\u0000\u0000\u0000ଢ଼ଡ଼\u0001\u0000\u0000\u0000\u0b5eǗ\u0001\u0000\u0000\u0000ୟୡ\u0005\u0012\u0000\u0000ୠୢ\u0003ǚí\u0000ୡୠ\u0001\u0000\u0000\u0000ୡୢ\u0001\u0000\u0000\u0000ୢୣ\u0001\u0000\u0000\u0000ୣ\u0b64\u0005µ\u0000\u0000\u0b64\u0b65\u0003ǜî\u0000\u0b65Ǚ\u0001\u0000\u0000\u0000୦୨\u0007/\u0000\u0000୧୦\u0001\u0000\u0000\u0000୧୨\u0001\u0000\u0000\u0000୨୩\u0001\u0000\u0000\u0000୩୪\u0005É\u0000\u0000୪Ǜ\u0001\u0000\u0000\u0000୫୬\u0005z\u0000\u0000୬\u0b79\u00070\u0000\u0000୭୰\u0007\'\u0000\u0000୮ୱ\u0005ĉ\u0000" ++ "\u0000୯ୱ\u0003ɰĸ\u0000୰୮\u0001\u0000\u0000\u0000୰୯\u0001\u0000\u0000\u0000ୱ\u0b79\u0001\u0000\u0000\u0000୲୵\u00071\u0000\u0000୳୶\u0005ĉ\u0000\u0000୴୶\u0003ɰĸ\u0000୵୳\u0001\u0000\u0000\u0000୵୴\u0001\u0000\u0000\u0000୶\u0b79\u0001\u0000\u0000\u0000୷\u0b79\u0005A\u0000\u0000\u0b78୫\u0001\u0000\u0000\u0000\u0b78୭\u0001\u0000\u0000\u0000\u0b78୲\u0001\u0000\u0000\u0000\u0b78୷\u0001\u0000\u0000\u0000\u0b79ǝ\u0001\u0000\u0000\u0000\u0b7aஇ\u00059\u0000\u0000\u0b7b\u0b7c\u0003Ǡð\u0000\u0b7c\u0b7d\u0005µ\u0000\u0000\u0b7d\u0b7e\u0003ȬĖ\u0000\u0b7eஈ\u0001\u0000\u0000\u0000\u0b7f\u0b80\u0003Ǩô\u0000\u0b80\u0b81\u0005µ\u0000\u0000\u0b81ஂ\u0005A\u0000\u0000ஂஈ\u0001\u0000\u0000\u0000ஃ\u0b84\u0005µ\u0000\u0000\u0b84அ\u0003Ȯė\u0000அஆ\u0003Ȣđ\u0000ஆஈ\u0001\u0000\u0000\u0000இ\u0b7b\u0001\u0000\u0000\u0000இ\u0b7f\u0001\u0000\u0000\u0000இஃ\u0001\u0000\u0000\u0000ஈǟ\u0001\u0000\u0000\u0000உஏ\u0003Ȃā\u0000ஊஏ\u0003ȄĂ\u0000\u0b8bஏ\u0003Ǣñ\u0000\u0b8cஏ\u0003Ǥò\u0000\u0b8dஏ\u0003Ǧó\u0000எஉ\u0001\u0000\u0000\u0000எஊ\u0001\u0000\u0000\u0000எ\u0b8b\u0001\u0000\u0000\u0000எ\u0b8c\u0001\u0000\u0000\u0000எ\u0b8d\u0001\u0000\u0000\u0000ஏǡ\u0001\u0000\u0000\u0000ஐஒ\u0005¨\u0000\u0000\u0b91ஓ\u0005©\u0000\u0000ஒ\u0b91\u0001\u0000\u0000\u0000ஒஓ\u0001\u0000\u0000\u0000ஓஔ\u0001\u0000\u0000\u0000ஔக\u00072\u0000\u0000கǣ\u0001\u0000\u0000\u0000\u0b96\u0b98\u0005¨\u0000\u0000\u0b97ங\u0005Ú\u0000\u0000\u0b98\u0b97\u0001\u0000\u0000\u0000\u0b98ங\u0001\u0000\u0000\u0000ஙச\u0001\u0000\u0000\u0000ச\u0b9b\u00073\u0000\u0000\u0b9bǥ\u0001\u0000\u0000\u0000ஜஞ\u0005¨\u0000\u0000\u0b9dட\u0005Í\u0000\u0000ஞ\u0b9d\u0001\u0000\u0000\u0000ஞட\u0001\u0000\u0000\u0000ட\u0ba0\u0001\u0000\u0000\u0000\u0ba0\u0ba1\u00074\u0000\u0000\u0ba1ǧ\u0001\u0000\u0000\u0000\u0ba2ப\u0005\u000f\u0000\u0000ண\u0ba5\u00051\u0000\u0000தண\u0001\u0000\u0000\u0000த\u0ba5\u0001\u0000\u0000\u0000\u0ba5\u0ba6\u0001\u0000\u0000\u0000\u0ba6ப\u0005=\u0000\u0000\u0ba7ப\u0005å\u0000\u0000நப\u0005ĝ\u0000\u0000ன\u0ba2\u0001\u0000\u0000\u0000னத\u0001\u0000\u0000\u0000ன\u0ba7\u0001\u0000\u0000\u0000னந\u0001\u0000\u0000\u0000பǩ\u0001\u0000\u0000\u0000\u0babஷ\u0005S\u0000\u0000\u0bacய\u0003Ȃā\u0000\u0badய\u0003ȄĂ\u0000ம\u0bac\u0001\u0000\u0000\u0000ம\u0bad\u0001\u0000\u0000\u0000யர\u0001\u0000\u0000\u0000ரற\u0005µ\u0000\u0000ற" ++ "ல\u0003ȬĖ\u0000லஸ\u0001\u0000\u0000\u0000ளழ\u0003Ǩô\u0000ழவ\u0005µ\u0000\u0000வஶ\u0005A\u0000\u0000ஶஸ\u0001\u0000\u0000\u0000ஷம\u0001\u0000\u0000\u0000ஷள\u0001\u0000\u0000\u0000ஸǫ\u0001\u0000\u0000\u0000ஹ\u0bba\u0005”\u0000\u0000\u0bbaி\u0005µ\u0000\u0000\u0bbb\u0bbc\u00075\u0000\u0000\u0bbcீ\u0003ɾĿ\u0000\u0bbdா\u0005\u0012\u0000\u0000ாீ\u0005<\u0000\u0000ி\u0bbb\u0001\u0000\u0000\u0000ி\u0bbd\u0001\u0000\u0000\u0000ீǭ\u0001\u0000\u0000\u0000ு\u0bda\u0005ù\u0000\u0000ூ\u0bc9\u0003Ȃā\u0000\u0bc3\u0bc9\u0003ȄĂ\u0000\u0bc4ெ\u0003Ȇă\u0000\u0bc5ே\u0003ȈĄ\u0000ெ\u0bc5\u0001\u0000\u0000\u0000ெே\u0001\u0000\u0000\u0000ே\u0bc9\u0001\u0000\u0000\u0000ைூ\u0001\u0000\u0000\u0000ை\u0bc3\u0001\u0000\u0000\u0000ை\u0bc4\u0001\u0000\u0000\u0000\u0bc9ொ\u0001\u0000\u0000\u0000ொோ\u0005µ\u0000\u0000ோௌ\u0003ȬĖ\u0000ௌ\u0bdb\u0001\u0000\u0000\u0000்ௗ\u0005\u000f\u0000\u0000\u0bceௗ\u0005È\u0000\u0000\u0bcfௗ\u0005å\u0000\u0000ௐௗ\u0005ò\u0000\u0000\u0bd1ௗ\u0005ó\u0000\u0000\u0bd2\u0bd3\u0003ج\u0000\u0bd3\u0bd4\u0003Ȏć\u0000\u0bd4ௗ\u0001\u0000\u0000\u0000\u0bd5ௗ\u0005ĝ\u0000\u0000\u0bd6்\u0001\u0000\u0000\u0000\u0bd6\u0bce\u0001\u0000\u0000\u0000\u0bd6\u0bcf\u0001\u0000\u0000\u0000\u0bd6ௐ\u0001\u0000\u0000\u0000\u0bd6\u0bd1\u0001\u0000\u0000\u0000\u0bd6\u0bd2\u0001\u0000\u0000\u0000\u0bd6\u0bd5\u0001\u0000\u0000\u0000ௗ\u0bd8\u0001\u0000\u0000\u0000\u0bd8\u0bd9\u0005µ\u0000\u0000\u0bd9\u0bdb\u0005A\u0000\u0000\u0bdaை\u0001\u0000\u0000\u0000\u0bda\u0bd6\u0001\u0000\u0000\u0000\u0bdbǯ\u0001\u0000\u0000\u0000\u0bdc௸\u0005ô\u0000\u0000\u0bdd௧\u0003Dzù\u0000\u0bde\u0be2\u0005ĝ\u0000\u0000\u0bdf\u0be3\u0005ÿ\u0000\u0000\u0be0\u0be1\u0005z\u0000\u0000\u0be1\u0be3\u0005=\u0000\u0000\u0be2\u0bdf\u0001\u0000\u0000\u0000\u0be2\u0be0\u0001\u0000\u0000\u0000\u0be3௧\u0001\u0000\u0000\u0000\u0be4\u0be5\u0005=\u0000\u0000\u0be5௧\u0005\u000b\u0000\u0000௦\u0bdd\u0001\u0000\u0000\u0000௦\u0bde\u0001\u0000\u0000\u0000௦\u0be4\u0001\u0000\u0000\u0000௧௨\u0001\u0000\u0000\u0000௨௩\u0005µ\u0000\u0000௩௹\u0005A\u0000\u0000௪௫\u0005Š\u0000\u0000௫௬\u0003ȜĎ\u0000௬௭\u0005µ\u0000\u0000௭௮\u0003Ȯė\u0000௮௹\u0001\u0000\u0000\u0000௯௰\u0005Í\u0000\u0000௰௱\u0003Ȟď\u0000௱௲\u0005µ\u0000\u0000௲௳\u0003Ȯė\u0000௳௴\u0003Ȣđ\u0000௴௹\u0001\u0000\u0000\u0000௵௶\u0005\u001c\u0000\u0000௶௷\u0005µ\u0000\u0000௷௹\u0005" ++ "A\u0000\u0000௸௦\u0001\u0000\u0000\u0000௸௪\u0001\u0000\u0000\u0000௸௯\u0001\u0000\u0000\u0000௸௵\u0001\u0000\u0000\u0000௹DZ\u0001\u0000\u0000\u0000௺\u0bfb\u00076\u0000\u0000\u0bfbdz\u0001\u0000\u0000\u0000\u0bfcఅ\u0005Ü\u0000\u0000\u0bfd\u0bfe\u00077\u0000\u0000\u0bfe\u0bff\u0005µ\u0000\u0000\u0bffఆ\u0005A\u0000\u0000ఀఁ\u0005Š\u0000\u0000ఁం\u0003ȜĎ\u0000ంః\u0005µ\u0000\u0000ఃఄ\u0003Ȯė\u0000ఄఆ\u0001\u0000\u0000\u0000అ\u0bfd\u0001\u0000\u0000\u0000అఀ\u0001\u0000\u0000\u0000ఆǵ\u0001\u0000\u0000\u0000ఇఈ\u0005ĩ\u0000\u0000ఈఉ\u0005µ\u0000\u0000ఉఊ\u0003Ȯė\u0000ఊǷ\u0001\u0000\u0000\u0000ఋఢ\u0005\u000b\u0000\u0000ఌఢ\u0005ý\u0000\u0000\u0c0dఢ\u0005Ā\u0000\u0000ఎఒ\u0003Ȃā\u0000ఏఒ\u0003ȄĂ\u0000ఐఒ\u0005¡\u0000\u0000\u0c11ఎ\u0001\u0000\u0000\u0000\u0c11ఏ\u0001\u0000\u0000\u0000\u0c11ఐ\u0001\u0000\u0000\u0000ఒఔ\u0001\u0000\u0000\u0000ఓక\u0005™\u0000\u0000ఔఓ\u0001\u0000\u0000\u0000ఔక\u0001\u0000\u0000\u0000కఢ\u0001\u0000\u0000\u0000ఖఘ\u0005ď\u0000\u0000గఙ\u0005™\u0000\u0000ఘగ\u0001\u0000\u0000\u0000ఘఙ\u0001\u0000\u0000\u0000ఙఝ\u0001\u0000\u0000\u0000చఛ\u0005ą\u0000\u0000ఛఝ\u0003Ȇă\u0000జఖ\u0001\u0000\u0000\u0000జచ\u0001\u0000\u0000\u0000ఝట\u0001\u0000\u0000\u0000ఞఠ\u0003ȈĄ\u0000టఞ\u0001\u0000\u0000\u0000టఠ\u0001\u0000\u0000\u0000ఠఢ\u0001\u0000\u0000\u0000డఋ\u0001\u0000\u0000\u0000డఌ\u0001\u0000\u0000\u0000డ\u0c0d\u0001\u0000\u0000\u0000డ\u0c11\u0001\u0000\u0000\u0000డజ\u0001\u0000\u0000\u0000ఢణ\u0001\u0000\u0000\u0000ణత\u0005µ\u0000\u0000తథ\u0003ȬĖ\u0000థǹ\u0001\u0000\u0000\u0000దధ\u0005\u0013\u0000\u0000ధా\u00078\u0000\u0000న\u0c29\u0005\u001a\u0000\u0000\u0c29ా\u00077\u0000\u0000పఴ\u0005\u000f\u0000\u0000ఫభ\u00051\u0000\u0000బఫ\u0001\u0000\u0000\u0000బభ\u0001\u0000\u0000\u0000భమ\u0001\u0000\u0000\u0000మఴ\u0005=\u0000\u0000యఴ\u0005È\u0000\u0000రఴ\u0005å\u0000\u0000ఱఴ\u0005ò\u0000\u0000లఴ\u0005ĝ\u0000\u0000ళప\u0001\u0000\u0000\u0000ళబ\u0001\u0000\u0000\u0000ళయ\u0001\u0000\u0000\u0000ళర\u0001\u0000\u0000\u0000ళఱ\u0001\u0000\u0000\u0000ళల\u0001\u0000\u0000\u0000ఴవ\u0001\u0000\u0000\u0000వా\u0005™\u0000\u0000శా\u0003Ǽþ\u0000షస\u0005×\u0000\u0000సా\u00079\u0000" ++ "\u0000హ\u0c3b\u0005}\u0000\u0000\u0c3a఼\u0003ȈĄ\u0000\u0c3b\u0c3a\u0001\u0000\u0000\u0000\u0c3b఼\u0001\u0000\u0000\u0000఼ా\u0001\u0000\u0000\u0000ఽద\u0001\u0000\u0000\u0000ఽన\u0001\u0000\u0000\u0000ఽళ\u0001\u0000\u0000\u0000ఽశ\u0001\u0000\u0000\u0000ఽష\u0001\u0000\u0000\u0000ఽహ\u0001\u0000\u0000\u0000ాి\u0001\u0000\u0000\u0000ిీ\u0005µ\u0000\u0000ీు\u0005A\u0000\u0000ుǻ\u0001\u0000\u0000\u0000ూ\u0c57\u0005b\u0000\u0000ృౄ\u0003Ǿÿ\u0000ౄ\u0c45\u0005Ë\u0000\u0000\u0c45ౘ\u0001\u0000\u0000\u0000ెై\u0005!\u0000\u0000ేె\u0001\u0000\u0000\u0000ేై\u0001\u0000\u0000\u0000ైౕ\u0001\u0000\u0000\u0000\u0c49ొ\u0003ȀĀ\u0000ొో\u0003ȌĆ\u0000ోౖ\u0001\u0000\u0000\u0000ౌ\u0c4e\u0005ĝ\u0000\u0000్\u0c4f\u0005D\u0000\u0000\u0c4e్\u0001\u0000\u0000\u0000\u0c4e\u0c4f\u0001\u0000\u0000\u0000\u0c4f\u0c51\u0001\u0000\u0000\u0000\u0c50ౌ\u0001\u0000\u0000\u0000\u0c50\u0c51\u0001\u0000\u0000\u0000\u0c51\u0c52\u0001\u0000\u0000\u0000\u0c52\u0c53\u0003Ō¦\u0000\u0c53\u0c54\u0003Ȋą\u0000\u0c54ౖ\u0001\u0000\u0000\u0000ౕ\u0c49\u0001\u0000\u0000\u0000ౕ\u0c50\u0001\u0000\u0000\u0000ౖౘ\u0001\u0000\u0000\u0000\u0c57ృ\u0001\u0000\u0000\u0000\u0c57ే\u0001\u0000\u0000\u0000ౘǽ\u0001\u0000\u0000\u0000ౙౚ\u0007:\u0000\u0000ౚǿ\u0001\u0000\u0000\u0000\u0c5b\u0c5c\u0007 \u0000\u0000\u0c5cȁ\u0001\u0000\u0000\u0000ౝ\u0c5e\u0007;\u0000\u0000\u0c5eȃ\u0001\u0000\u0000\u0000\u0c5fౠ\u0007<\u0000\u0000ౠȅ\u0001\u0000\u0000\u0000ౡౢ\u0007=\u0000\u0000ౢȇ\u0001\u0000\u0000\u0000ౣ౦\u0005—\u0000\u0000\u0c64౧\u0005ĉ\u0000\u0000\u0c65౧\u0003ƈÄ\u0000౦\u0c64\u0001\u0000\u0000\u0000౦\u0c65\u0001\u0000\u0000\u0000౧౨\u0001\u0000\u0000\u0000౨౩\u0005é\u0000\u0000౩ȉ\u0001\u0000\u0000\u0000౪౫\u0003ȐĈ\u0000౫ȋ\u0001\u0000\u0000\u0000౬౭\u0003ȐĈ\u0000౭ȍ\u0001\u0000\u0000\u0000౮౯\u0003ȐĈ\u0000౯ȏ\u0001\u0000\u0000\u0000\u0c70\u0c75\u0003Ȓĉ\u0000\u0c71\u0c72\u0005.\u0000\u0000\u0c72\u0c74\u0003Ȓĉ\u0000\u0c73\u0c71\u0001\u0000\u0000\u0000\u0c74౷\u0001\u0000\u0000\u0000\u0c75\u0c73\u0001\u0000\u0000\u0000\u0c75\u0c76\u0001\u0000\u0000\u0000\u0c76ȑ\u0001\u0000\u0000\u0000౷\u0c75\u0001\u0000\u0000\u0000౸౺\u0003ʈń\u0000౹౻\u0003ȔĊ\u0000౺౹\u0001\u0000\u0000\u0000౺౻\u0001\u0000\u0000\u0000౻౾\u0001\u0000\u0000\u0000౼౾\u0003ȔĊ\u0000౽౸\u0001\u0000\u0000\u0000౽౼\u0001\u0000\u0000\u0000౾ȓ\u0001\u0000\u0000\u0000౿" ++ "ಁ\u0003Ȗċ\u0000ಀಂ\u0003ȔĊ\u0000ಁಀ\u0001\u0000\u0000\u0000ಁಂ\u0001\u0000\u0000\u0000ಂȕ\u0001\u0000\u0000\u0000ಃಅ\u0005O\u0000\u0000಄ಆ\u0003ʈń\u0000ಅ಄\u0001\u0000\u0000\u0000ಅಆ\u0001\u0000\u0000\u0000ಆಋ\u0001\u0000\u0000\u0000ಇಋ\u0005Ð\u0000\u0000ಈಋ\u0005ĉ\u0000\u0000ಉಋ\u0003ʊŅ\u0000ಊಃ\u0001\u0000\u0000\u0000ಊಇ\u0001\u0000\u0000\u0000ಊಈ\u0001\u0000\u0000\u0000ಊಉ\u0001\u0000\u0000\u0000ಋȗ\u0001\u0000\u0000\u0000ಌಐ\u0005đ\u0000\u0000\u0c8dಎ\u0007>\u0000\u0000ಎಐ\u0003Ȟď\u0000ಏಌ\u0001\u0000\u0000\u0000ಏ\u0c8d\u0001\u0000\u0000\u0000ಐ\u0c91\u0001\u0000\u0000\u0000\u0c91ಒ\u0005µ\u0000\u0000ಒಓ\u0003Ȯė\u0000ಓಗ\u0003Ȣđ\u0000ಔಕ\u0005—\u0000\u0000ಕಖ\u0005ĉ\u0000\u0000ಖಘ\u0005é\u0000\u0000ಗಔ\u0001\u0000\u0000\u0000ಗಘ\u0001\u0000\u0000\u0000ಘș\u0001\u0000\u0000\u0000ಙಝ\u0005E\u0000\u0000ಚಛ\u0005œ\u0000\u0000ಛಝ\u0003Ȟď\u0000ಜಙ\u0001\u0000\u0000\u0000ಜಚ\u0001\u0000\u0000\u0000ಝಞ\u0001\u0000\u0000\u0000ಞಟ\u0005µ\u0000\u0000ಟಠ\u0003Ȯė\u0000ಠಡ\u0003Ȣđ\u0000ಡț\u0001\u0000\u0000\u0000ಢಥ\u0005ĉ\u0000\u0000ಣಥ\u0003ȠĐ\u0000ತಢ\u0001\u0000\u0000\u0000ತಣ\u0001\u0000\u0000\u0000ಥȝ\u0001\u0000\u0000\u0000ದ\u0ca9\u0005\u0000\u0000ಧಪ\u0005ĉ\u0000\u0000ನಪ\u0003ȠĐ\u0000\u0ca9ಧ\u0001\u0000\u0000\u0000\u0ca9ನ\u0001\u0000\u0000\u0000ಪಫ\u0001\u0000\u0000\u0000ಫಬ\u0005Ó\u0000\u0000ಬȟ\u0001\u0000\u0000\u0000ಭಲ\u0003ʆŃ\u0000ಮಯ\u0005.\u0000\u0000ಯಱ\u0003ʆŃ\u0000ರಮ\u0001\u0000\u0000\u0000ಱ\u0cb4\u0001\u0000\u0000\u0000ಲರ\u0001\u0000\u0000\u0000ಲಳ\u0001\u0000\u0000\u0000ಳȡ\u0001\u0000\u0000\u0000\u0cb4ಲ\u0001\u0000\u0000\u0000ವಸ\u0003ȤĒ\u0000ಶಹ\u0005ĉ\u0000\u0000ಷಹ\u0003ȠĐ\u0000ಸಶ\u0001\u0000\u0000\u0000ಸಷ\u0001\u0000\u0000\u0000ಹ\u0cd7\u0001\u0000\u0000\u0000\u0cba\u0cbb\u0005l\u0000\u0000\u0cbbಽ\u0005—\u0000\u0000಼ಾ\u0003Ē‰\u0000ಽ಼\u0001\u0000\u0000\u0000ಽಾ\u0001\u0000\u0000\u0000ಾೈ\u0001\u0000\u0000\u0000ಿೀ\u0005,\u0000\u0000ೀ\u0cc5\u0003ʆŃ\u0000ುೂ\u0005\u001d\u0000\u0000ೂೄ\u0003ʆŃ\u0000ೃು\u0001\u0000\u0000\u0000ೄೇ\u0001\u0000\u0000\u0000\u0cc5ೃ\u0001\u0000\u0000\u0000\u0cc5ೆ\u0001\u0000\u0000\u0000ೆ\u0cc9\u0001" ++ "\u0000\u0000\u0000ೇ\u0cc5\u0001\u0000\u0000\u0000ೈಿ\u0001\u0000\u0000\u0000ೈ\u0cc9\u0001\u0000\u0000\u0000\u0cc9\u0cd4\u0001\u0000\u0000\u0000ೊೋ\u0005é\u0000\u0000ೋೌ\u0005Ħ\u0000\u0000ೌೕ\u0003®W\u0000್\u0cce\u0005Ħ\u0000\u0000\u0cce\u0cd1\u0003®W\u0000\u0ccf\u0cd1\u0003ʄł\u0000\u0cd0್\u0001\u0000\u0000\u0000\u0cd0\u0ccf\u0001\u0000\u0000\u0000\u0cd1\u0cd2\u0001\u0000\u0000\u0000\u0cd2\u0cd3\u0005é\u0000\u0000\u0cd3ೕ\u0001\u0000\u0000\u0000\u0cd4ೊ\u0001\u0000\u0000\u0000\u0cd4\u0cd0\u0001\u0000\u0000\u0000ೕ\u0cd7\u0001\u0000\u0000\u0000ೖವ\u0001\u0000\u0000\u0000ೖ\u0cba\u0001\u0000\u0000\u0000ೖ\u0cd7\u0001\u0000\u0000\u0000\u0cd7ȣ\u0001\u0000\u0000\u0000\u0cd8\u0cdc\u0003Ȧē\u0000\u0cd9\u0cdc\u0003Ȫĕ\u0000\u0cda\u0cdc\u0003ȨĔ\u0000\u0cdb\u0cd8\u0001\u0000\u0000\u0000\u0cdb\u0cd9\u0001\u0000\u0000\u0000\u0cdb\u0cda\u0001\u0000\u0000\u0000\u0cdcȥ\u0001\u0000\u0000\u0000ೝೞ\u0007?\u0000\u0000ೞȧ\u0001\u0000\u0000\u0000\u0cdfೠ\u0007@\u0000\u0000ೠȩ\u0001\u0000\u0000\u0000ೡೢ\u0007A\u0000\u0000ೢȫ\u0001\u0000\u0000\u0000ೣ\u0ce4\u0005z\u0000\u0000\u0ce4೫\u0005=\u0000\u0000\u0ce5೨\u0007\'\u0000\u0000೦೩\u0005ĉ\u0000\u0000೧೩\u0003ɰĸ\u0000೨೦\u0001\u0000\u0000\u0000೨೧\u0001\u0000\u0000\u0000೩೫\u0001\u0000\u0000\u0000೪ೣ\u0001\u0000\u0000\u0000೪\u0ce5\u0001\u0000\u0000\u0000೫ȭ\u0001\u0000\u0000\u0000೬೭\u0005z\u0000\u0000೭\u0cf4\u0005t\u0000\u0000೮ೱ\u00071\u0000\u0000೯ೲ\u0005ĉ\u0000\u0000\u0cf0ೲ\u0003ɰĸ\u0000ೱ೯\u0001\u0000\u0000\u0000ೱ\u0cf0\u0001\u0000\u0000\u0000ೲ\u0cf4\u0001\u0000\u0000\u0000ೳ೬\u0001\u0000\u0000\u0000ೳ೮\u0001\u0000\u0000\u0000\u0cf4ȯ\u0001\u0000\u0000\u0000\u0cf5\u0cf6\u00051\u0000\u0000\u0cf6\u0cf7\u0005=\u0000\u0000\u0cf7\u0cfb\u0003ɖī\u0000\u0cf8\u0cf9\u0005|\u0000\u0000\u0cf9\u0cfa\u0005¯\u0000\u0000\u0cfa\u0cfc\u0005e\u0000\u0000\u0cfb\u0cf8\u0001\u0000\u0000\u0000\u0cfb\u0cfc\u0001\u0000\u0000\u0000\u0cfc\u0cfe\u0001\u0000\u0000\u0000\u0cfd\u0cff\u0003IJ™\u0000\u0cfe\u0cfd\u0001\u0000\u0000\u0000\u0cfe\u0cff\u0001\u0000\u0000\u0000\u0cffഁ\u0001\u0000\u0000\u0000ഀം\u0003ɌĦ\u0000ഁഀ\u0001\u0000\u0000\u0000ഁം\u0001\u0000\u0000\u0000ംȱ\u0001\u0000\u0000\u0000ഃഄ\u0005=\u0000\u0000ഄഈ\u0003ɖī\u0000അആ\u0005|\u0000\u0000ആഇ\u0005¯\u0000\u0000ഇഉ\u0005e\u0000\u0000ഈഅ\u0001\u0000\u0000\u0000ഈഉ\u0001\u0000\u0000\u0000ഉ\u0d11\u0001\u0000\u0000\u0000ഊ\u0d0d\u0005č\u0000\u0000ഋഎ\u0003ȴĚ\u0000ഌഎ\u0003ȸĜ" ++ "\u0000\u0d0dഋ\u0001\u0000\u0000\u0000\u0d0dഌ\u0001\u0000\u0000\u0000എഏ\u0001\u0000\u0000\u0000ഏ\u0d0d\u0001\u0000\u0000\u0000ഏഐ\u0001\u0000\u0000\u0000ഐഒ\u0001\u0000\u0000\u0000\u0d11ഊ\u0001\u0000\u0000\u0000\u0d11ഒ\u0001\u0000\u0000\u0000ഒഔ\u0001\u0000\u0000\u0000ഓക\u0003IJ™\u0000ഔഓ\u0001\u0000\u0000\u0000ഔക\u0001\u0000\u0000\u0000കഗ\u0001\u0000\u0000\u0000ഖഘ\u0003ɌĦ\u0000ഗഖ\u0001\u0000\u0000\u0000ഗഘ\u0001\u0000\u0000\u0000ഘȳ\u0001\u0000\u0000\u0000ങച\u0003ʀŀ\u0000ചഛ\u0003ȶě\u0000ഛȵ\u0001\u0000\u0000\u0000ജഝ\u0007B\u0000\u0000ഝȷ\u0001\u0000\u0000\u0000ഞട\u0003ʀŀ\u0000ടഠ\u0003Ⱥĝ\u0000ഠȹ\u0001\u0000\u0000\u0000ഡഢ\u0007C\u0000\u0000ഢȻ\u0001\u0000\u0000\u0000ണഥ\u00051\u0000\u0000തണ\u0001\u0000\u0000\u0000തഥ\u0001\u0000\u0000\u0000ഥദ\u0001\u0000\u0000\u0000ദധ\u0005=\u0000\u0000ധപ\u0003ɲĹ\u0000നഩ\u0005|\u0000\u0000ഩഫ\u0005e\u0000\u0000പന\u0001\u0000\u0000\u0000പഫ\u0001\u0000\u0000\u0000ഫഭ\u0001\u0000\u0000\u0000ബമ\u0003Ⱦğ\u0000ഭബ\u0001\u0000\u0000\u0000ഭമ\u0001\u0000\u0000\u0000മറ\u0001\u0000\u0000\u0000യര\u0007D\u0000\u0000രല\u0005<\u0000\u0000റയ\u0001\u0000\u0000\u0000റല\u0001\u0000\u0000\u0000ലഴ\u0001\u0000\u0000\u0000ളവ\u0003ɌĦ\u0000ഴള\u0001\u0000\u0000\u0000ഴവ\u0001\u0000\u0000\u0000വȽ\u0001\u0000\u0000\u0000ശഺ\u0005â\u0000\u0000ഷസ\u0005\'\u0000\u0000സഺ\u0007E\u0000\u0000ഹശ\u0001\u0000\u0000\u0000ഹഷ\u0001\u0000\u0000\u0000ഺȿ\u0001\u0000\u0000\u0000഻഼\u0005=\u0000\u0000഼ി\u0003ɲĹ\u0000ഽാ\u0005|\u0000\u0000ാീ\u0005e\u0000\u0000ിഽ\u0001\u0000\u0000\u0000ിീ\u0001\u0000\u0000\u0000ീ\u0d52\u0001\u0000\u0000\u0000ു\u0d45\u0005ô\u0000\u0000ൂെ\u0003ɂġ\u0000ൃെ\u0003ɄĢ\u0000ൄെ\u0003Ɇģ\u0000\u0d45ൂ\u0001\u0000\u0000\u0000\u0d45ൃ\u0001\u0000\u0000\u0000\u0d45ൄ\u0001\u0000\u0000\u0000െൈ\u0001\u0000\u0000\u0000േു\u0001\u0000\u0000\u0000ൈ\u0d49\u0001\u0000\u0000\u0000\u0d49േ\u0001\u0000\u0000\u0000\u0d49ൊ\u0001\u0000\u0000\u0000ൊ\u0d53\u0001\u0000\u0000\u0000ോൌ\u0005Ü\u0000\u0000ൌ്\u0005¹\u0000\u0000്൏\u0003ʆŃ\u0000ൎോ\u0001\u0000\u0000\u0000൏\u0d50\u0001\u0000\u0000\u0000\u0d50ൎ\u0001\u0000\u0000\u0000\u0d50\u0d51\u0001\u0000\u0000\u0000\u0d51\u0d53\u0001\u0000\u0000\u0000\u0d52" ++ "േ\u0001\u0000\u0000\u0000\u0d52ൎ\u0001\u0000\u0000\u0000\u0d53ൕ\u0001\u0000\u0000\u0000ൔൖ\u0003ɌĦ\u0000ൕൔ\u0001\u0000\u0000\u0000ൕൖ\u0001\u0000\u0000\u0000ൖɁ\u0001\u0000\u0000\u0000ൗ൘\u0005\u000b\u0000\u0000൘൙\u0005Ô\u0000\u0000൙൚\u0007F\u0000\u0000൚Ƀ\u0001\u0000\u0000\u0000൛൞\u0005č\u0000\u0000൜ൟ\u0003ȴĚ\u0000൝ൟ\u0003ȸĜ\u0000൞൜\u0001\u0000\u0000\u0000൞൝\u0001\u0000\u0000\u0000ൟൠ\u0001\u0000\u0000\u0000ൠ൞\u0001\u0000\u0000\u0000ൠൡ\u0001\u0000\u0000\u0000ൡɅ\u0001\u0000\u0000\u0000ൢൣ\u0005¹\u0000\u0000ൣ\u0d64\u0003ʆŃ\u0000\u0d64\u0d65\u0003®W\u0000\u0d65ɇ\u0001\u0000\u0000\u0000൦൧\u0005ý\u0000\u0000൧൨\u0005=\u0000\u0000൨൪\u0003ɲĹ\u0000൩൫\u0003ɌĦ\u0000൪൩\u0001\u0000\u0000\u0000൪൫\u0001\u0000\u0000\u0000൫ɉ\u0001\u0000\u0000\u0000൬൭\u0005Ā\u0000\u0000൭൮\u0005=\u0000\u0000൮൰\u0003ɲĹ\u0000൯൱\u0003ɌĦ\u0000൰൯\u0001\u0000\u0000\u0000൰൱\u0001\u0000\u0000\u0000൱ɋ\u0001\u0000\u0000\u0000൲൷\u0005Ĥ\u0000\u0000൳൵\u0005\u0005\u0000\u0000൴൶\u0003Ɏħ\u0000൵൴\u0001\u0000\u0000\u0000൵൶\u0001\u0000\u0000\u0000൶൸\u0001\u0000\u0000\u0000൷൳\u0001\u0000\u0000\u0000൷൸\u0001\u0000\u0000\u0000൸ൻ\u0001\u0000\u0000\u0000൹ൻ\u0005±\u0000\u0000ൺ൲\u0001\u0000\u0000\u0000ൺ൹\u0001\u0000\u0000\u0000ൻɍ\u0001\u0000\u0000\u0000ർൽ\u0007G\u0000\u0000ൽɏ\u0001\u0000\u0000\u0000ൾൿ\u0007H\u0000\u0000ൿඁ\u0005=\u0000\u0000\u0d80ං\u0003Ĩ”\u0000ඁ\u0d80\u0001\u0000\u0000\u0000ඁං\u0001\u0000\u0000\u0000ංඋ\u0001\u0000\u0000\u0000ඃඅ\u0007\'\u0000\u0000\u0d84ආ\u0003ɲĹ\u0000අ\u0d84\u0001\u0000\u0000\u0000අආ\u0001\u0000\u0000\u0000ආඈ\u0001\u0000\u0000\u0000ඇඉ\u0003Ĩ”\u0000ඈඇ\u0001\u0000\u0000\u0000ඈඉ\u0001\u0000\u0000\u0000ඉඋ\u0001\u0000\u0000\u0000ඊൾ\u0001\u0000\u0000\u0000ඊඃ\u0001\u0000\u0000\u0000උɑ\u0001\u0000\u0000\u0000ඌඍ\u0003ɲĹ\u0000ඍɓ\u0001\u0000\u0000\u0000ඎඏ\u0003ɲĹ\u0000ඏɕ\u0001\u0000\u0000\u0000ඐඑ\u0003ɪĵ\u0000එɗ\u0001\u0000\u0000\u0000ඒඓ\u0005\u000f\u0000\u0000ඓ\u0d97\u0003ɒĩ\u0000ඔඕ\u0005|\u0000\u0000ඕඖ\u0005¯\u0000\u0000ඖ\u0d98\u0005e\u0000\u0000\u0d97ඔ\u0001\u0000\u0000\u0000\u0d97\u0d98\u0001\u0000\u0000\u0000\u0d98\u0d99\u0001\u0000\u0000\u0000\u0d99ක\u0005" ++ "l\u0000\u0000කඛ\u0005=\u0000\u0000ඛඦ\u0003ɔĪ\u0000ගඝ\u0005\u001b\u0000\u0000ඝඞ\u0003ɾĿ\u0000ඞඟ\u0005ĝ\u0000\u0000ඟච\u0003ɬĶ\u0000චඡ\u0005¼\u0000\u0000ඡඤ\u0003ƺÝ\u0000ජඣ\u0005R\u0000\u0000ඣඥ\u0003ʂŁ\u0000ඤජ\u0001\u0000\u0000\u0000ඤඥ\u0001\u0000\u0000\u0000ඥට\u0001\u0000\u0000\u0000ඦග\u0001\u0000\u0000\u0000ඦට\u0001\u0000\u0000\u0000ටඪ\u0001\u0000\u0000\u0000ඨඩ\u0005Ì\u0000\u0000ඩණ\u0003ʂŁ\u0000ඪඨ\u0001\u0000\u0000\u0000ඪණ\u0001\u0000\u0000\u0000ණə\u0001\u0000\u0000\u0000ඬත\u0005\u000f\u0000\u0000තධ\u0003ɒĩ\u0000ථද\u0005|\u0000\u0000දන\u0005e\u0000\u0000ධථ\u0001\u0000\u0000\u0000ධන\u0001\u0000\u0000\u0000න\u0db2\u0001\u0000\u0000\u0000\u0db2ඳ\u0005l\u0000\u0000ඳප\u0005=\u0000\u0000පɛ\u0001\u0000\u0000\u0000ඵබ\u0005\u000f\u0000\u0000බඹ\u0003ɒĩ\u0000භම\u0005|\u0000\u0000මය\u0005e\u0000\u0000ඹභ\u0001\u0000\u0000\u0000ඹය\u0001\u0000\u0000\u0000යර\u0001\u0000\u0000\u0000ර\u0dbc\u0005ô\u0000\u0000\u0dbcෂ\u0005=\u0000\u0000ලස\u0003ɞį\u0000\u0dbeස\u0003ɠİ\u0000\u0dbfස\u0003ɢı\u0000වස\u0003ɤIJ\u0000ශස\u0003ɦij\u0000ෂල\u0001\u0000\u0000\u0000ෂ\u0dbe\u0001\u0000\u0000\u0000ෂ\u0dbf\u0001\u0000\u0000\u0000ෂව\u0001\u0000\u0000\u0000ෂශ\u0001\u0000\u0000\u0000සහ\u0001\u0000\u0000\u0000හෂ\u0001\u0000\u0000\u0000හළ\u0001\u0000\u0000\u0000ළɝ\u0001\u0000\u0000\u0000ෆ\u0dc7\u0005Ą\u0000\u0000\u0dc7්\u0003ɔĪ\u0000\u0dc8\u0dc9\u0005\u001b\u0000\u0000\u0dc9\u0dcb\u0003ɾĿ\u0000්\u0dc8\u0001\u0000\u0000\u0000්\u0dcb\u0001\u0000\u0000\u0000\u0dcbɟ\u0001\u0000\u0000\u0000\u0dcc\u0dcd\u0005ĝ\u0000\u0000\u0dcd\u0dce\u0003ɬĶ\u0000\u0dceɡ\u0001\u0000\u0000\u0000ාැ\u0005¼\u0000\u0000ැෑ\u0003ƺÝ\u0000ෑɣ\u0001\u0000\u0000\u0000ිී\u0005R\u0000\u0000ීු\u0003ʂŁ\u0000ුɥ\u0001\u0000\u0000\u0000\u0dd5ූ\u0005Ì\u0000\u0000ූ\u0dd7\u0003ʂŁ\u0000\u0dd7ɧ\u0001\u0000\u0000\u0000ෘේ\u0007E\u0000\u0000ෙෛ\u0003ɒĩ\u0000ේෙ\u0001\u0000\u0000\u0000ේෛ\u0001\u0000\u0000\u0000ෛො\u0001\u0000\u0000\u0000ොෝ\u0005l\u0000\u0000ෝෟ\u0007\'\u0000\u0000ෞ\u0de0\u0003Ĩ”\u0000ෟෞ\u0001\u0000\u0000\u0000ෟ\u0de0\u0001\u0000\u0000\u0000\u0de0ɩ\u0001\u0000\u0000\u0000\u0de1\u0de4\u0003ʆŃ" ++ "\u0000\u0de2\u0de4\u0003ƃ\u0000\u0de3\u0de1\u0001\u0000\u0000\u0000\u0de3\u0de2\u0001\u0000\u0000\u0000\u0de4ɫ\u0001\u0000\u0000\u0000\u0de5෨\u0003ʆŃ\u0000෦෨\u0003ƃ\u0000෧\u0de5\u0001\u0000\u0000\u0000෧෦\u0001\u0000\u0000\u0000෨ɭ\u0001\u0000\u0000\u0000෩෮\u0003ɬĶ\u0000෪෫\u0005.\u0000\u0000෫෭\u0003ɬĶ\u0000෬෪\u0001\u0000\u0000\u0000෭\u0df0\u0001\u0000\u0000\u0000෮෬\u0001\u0000\u0000\u0000෮෯\u0001\u0000\u0000\u0000෯ɯ\u0001\u0000\u0000\u0000\u0df0෮\u0001\u0000\u0000\u0000\u0df1\u0df6\u0003ɲĹ\u0000ෲෳ\u0005.\u0000\u0000ෳ\u0df5\u0003ɲĹ\u0000෴ෲ\u0001\u0000\u0000\u0000\u0df5\u0df8\u0001\u0000\u0000\u0000\u0df6෴\u0001\u0000\u0000\u0000\u0df6\u0df7\u0001\u0000\u0000\u0000\u0df7ɱ\u0001\u0000\u0000\u0000\u0df8\u0df6\u0001\u0000\u0000\u0000\u0df9\u0dfc\u0003ɴĺ\u0000\u0dfa\u0dfc\u0003ƃ\u0000\u0dfb\u0df9\u0001\u0000\u0000\u0000\u0dfb\u0dfa\u0001\u0000\u0000\u0000\u0dfcɳ\u0001\u0000\u0000\u0000\u0dfdข\u0003ʆŃ\u0000\u0dfe\u0dff\u0005O\u0000\u0000\u0dffก\u0003ʆŃ\u0000\u0e00\u0dfe\u0001\u0000\u0000\u0000กค\u0001\u0000\u0000\u0000ข\u0e00\u0001\u0000\u0000\u0000ขฃ\u0001\u0000\u0000\u0000ฃɵ\u0001\u0000\u0000\u0000คข\u0001\u0000\u0000\u0000ฅฎ\u0005Ž\u0000\u0000ฆซ\u0003ɺĽ\u0000งจ\u0005.\u0000\u0000จช\u0003ɺĽ\u0000ฉง\u0001\u0000\u0000\u0000ชญ\u0001\u0000\u0000\u0000ซฉ\u0001\u0000\u0000\u0000ซฌ\u0001\u0000\u0000\u0000ฌฏ\u0001\u0000\u0000\u0000ญซ\u0001\u0000\u0000\u0000ฎฆ\u0001\u0000\u0000\u0000ฎฏ\u0001\u0000\u0000\u0000ฏฐ\u0001\u0000\u0000\u0000ฐฑ\u0005Ò\u0000\u0000ฑɷ\u0001\u0000\u0000\u0000ฒต\u0003ɺĽ\u0000ณด\u0005.\u0000\u0000ดถ\u0003ɺĽ\u0000ตณ\u0001\u0000\u0000\u0000ถท\u0001\u0000\u0000\u0000ทต\u0001\u0000\u0000\u0000ทธ\u0001\u0000\u0000\u0000ธɹ\u0001\u0000\u0000\u0000นบ\u0007I\u0000\u0000บɻ\u0001\u0000\u0000\u0000ปพ\u0003ɺĽ\u0000ผพ\u0003ƃ\u0000ฝป\u0001\u0000\u0000\u0000ฝผ\u0001\u0000\u0000\u0000พɽ\u0001\u0000\u0000\u0000ฟย\u0003ɺĽ\u0000ภย\u0003ƃ\u0000มฟ\u0001\u0000\u0000\u0000มภ\u0001\u0000\u0000\u0000ยɿ\u0001\u0000\u0000\u0000รฦ\u0005\u0005\u0000\u0000ฤฦ\u0003ƃ\u0000ลร\u0001\u0000\u0000\u0000ลฤ\u0001\u0000\u0000\u0000ฦʁ\u0001\u0000\u0000\u0000วส\u0003ʄł\u0000ศส\u0003ƃ\u0000ษว\u0001\u0000\u0000\u0000ษศ\u0001\u0000\u0000\u0000ส" ++ "ʃ\u0001\u0000\u0000\u0000หู\u0005\u0000\u0000ฬอ\u0003Ą‚\u0000อฮ\u0005,\u0000\u0000ฮึ\u0003®W\u0000ฯะ\u0005.\u0000\u0000ะั\u0003Ą‚\u0000ัา\u0005,\u0000\u0000าำ\u0003®W\u0000ำี\u0001\u0000\u0000\u0000ิฯ\u0001\u0000\u0000\u0000ีุ\u0001\u0000\u0000\u0000ึิ\u0001\u0000\u0000\u0000ึื\u0001\u0000\u0000\u0000ืฺ\u0001\u0000\u0000\u0000ุึ\u0001\u0000\u0000\u0000ูฬ\u0001\u0000\u0000\u0000ฺู\u0001\u0000\u0000\u0000ฺ\u0e3b\u0001\u0000\u0000\u0000\u0e3b\u0e3c\u0005Ó\u0000\u0000\u0e3cʅ\u0001\u0000\u0000\u0000\u0e3dเ\u0003ʈń\u0000\u0e3eเ\u0003ʊŅ\u0000฿\u0e3d\u0001\u0000\u0000\u0000฿\u0e3e\u0001\u0000\u0000\u0000เʇ\u0001\u0000\u0000\u0000แโ\u0005\n\u0000\u0000โʉ\u0001\u0000\u0000\u0000ใํ\u0003ʎŇ\u0000ไํ\u0005¯\u0000\u0000ๅํ\u0005²\u0000\u0000ๆํ\u0005ĕ\u0000\u0000็ํ\u0005®\u0000\u0000่ํ\u0005¤\u0000\u0000้ํ\u0005¥\u0000\u0000๊ํ\u0005¦\u0000\u0000๋ํ\u0005§\u0000\u0000์ใ\u0001\u0000\u0000\u0000์ไ\u0001\u0000\u0000\u0000์ๅ\u0001\u0000\u0000\u0000์ๆ\u0001\u0000\u0000\u0000์็\u0001\u0000\u0000\u0000์่\u0001\u0000\u0000\u0000์้\u0001\u0000\u0000\u0000์๊\u0001\u0000\u0000\u0000์๋\u0001\u0000\u0000\u0000ํʋ\u0001\u0000\u0000\u0000๎๑\u0003ʈń\u0000๏๑\u0003ʎŇ\u0000๐๎\u0001\u0000\u0000\u0000๐๏\u0001\u0000\u0000\u0000๑ʍ\u0001\u0000\u0000\u0000๒๓\u0003ʐň\u0000๓ʏ\u0001\u0000\u0000\u0000๔๕\u0007J\u0000\u0000๕ʑ\u0001\u0000\u0000\u0000๖๗\u0005\u0000\u0000\u0001๗ʓ\u0001\u0000\u0000\u0000ǖʙʝʣʨʭʳʶʼˏ˓˝˥˩ˬ˯˴˸˾̠̮͇̄̑͏͚ͥͩͭ͝ͳͷͼͿ΄·ΉΓΖΥάισφωϒϖϘϚϤϪϲϽЂІЌЕИОСЧЩлотхьєњѝѤѬѴѸѽҁҋґҕҗҜҡҥҨҬҰҳҹһӇӋӎӑӕӛӞӡөӭӱӳӸӼӾԈԜԟԤԧԪԭԱԴԸԻՀՄՉՓ\u0557՚ՠեժհյսօ\u058bְֻ֓֟֨׃\u05cbבכנש\u05ee׳\u05f7\u05fc\u05ff؂؋ؓ؛ءازضعن٠٫ٱٵڃڇڑڜڡڦ" ++ "ڪگڲڸۀۆۈېەۯ۸ۿ܂܅ܙܜܨܷܹܳ݁݅݇ݑݖݠݣݰݵݼݿލޗޟޤީ\u07b4߂߉ߤ߲߫߭߶߹ࠈࠍࠖࠠ࠳࠷࠺\u083fࡎࡑࡔࡗ࡚\u085dࡧࡰࡳࡻࡾࢁࢅࢋ࢐\u0896࢙࢝ࢡࢩࢭࢰࢴࢷࢺࢽࣁࣄࣇࣰࣲ࣐࣒ࣹࣙ࣡ࣤ࣬ࣵःऌओघझडनरसूैफ़ॡ०५॰ॳॸॽঅএগঢনম\u09b3সি\u09ca\u09d2\u09d8\u09de১ৱ৺\u0a00\u0a04\u0a0d\u0a11ਙਜਥ\u0a31ੂ\u0a45\u0a49\u0a54ਜ਼\u0a62੨੮ੴ\u0a7a\u0a7fંઑચઞતપ઼ૄેો\u0ad5\u0ad9\u0adeૣ૦૫૮\u0af5ૹଆ\u0b0eଗଜଟତ\u0b29ବରଳହ଼ୀୄେୋଢ଼ୡ୧୰୵\u0b78இஎஒ\u0b98ஞதனமஷிெை\u0bd6\u0bda\u0be2௦௸అ\u0c11ఔఘజటడబళ\u0c3bఽే\u0c4e\u0c50ౕ\u0c57౦\u0c75౺౽ಁಅಊಏಗಜತ\u0ca9ಲಸಽ\u0cc5ೈ\u0cd0\u0cd4ೖ\u0cdb೨೪ೱೳ\u0cfb\u0cfeഁഈ\u0d0dഏ\u0d11ഔഗതപഭറഴഹി\u0d45\u0d49\u0d50\u0d52ൕ൞ൠ൪൰൵൷ൺඁඅඈඊ\u0d97ඤඦඪධඹෂහ්ේෟ\u0de3෧෮\u0df6\u0dfbขซฎทฝมลษึู฿์๐", +"ShowColumn", "PositionedNode(", "ListLiteral", "False", "Expected no unresolved call with WHERE but got: ", "not", "Unknown function \'", "\'. If you intended to use the negation expression, surround it with parentheses.", "arguments", "arguments of type ", "argument of type ", "ResolvedFunctionInvocation", " should note its Scope in the SemanticState", "SymbolUse(", "SymbolUse", "ASSERT", "BRIEF", "COMMIT", "OUTPUT", "PERIODIC", "VERBOSE", "\u0004\u0000Ĺ\u0b34\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002\u0008\u0007\u0008\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002\u000c\u0007\u000c\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002" + "~\u0007~\u0002\u0007\u0002€\u0007€\u0002\u0007\u0002‚\u0007‚\u0002ƒ\u0007ƒ\u0002„\u0007„\u0002…\u0007…\u0002†\u0007†\u0002‡\u0007‡\u0002ˆ\u0007ˆ\u0002‰\u0007‰\u0002Š\u0007Š\u0002‹\u0007‹\u0002Œ\u0007Œ\u0002\u0007\u0002Ž\u0007Ž\u0002\u0007\u0002\u0007\u0002‘\u0007‘\u0002’\u0007’\u0002“\u0007“\u0002”\u0007”\u0002•\u0007•\u0002–\u0007–\u0002—\u0007—\u0002˜\u0007˜\u0002™\u0007™\u0002š\u0007š\u0002›\u0007›\u0002œ\u0007œ\u0002\u0007\u0002ž\u0007ž\u0002Ÿ\u0007Ÿ\u0002 \u0007 \u0002¡\u0007¡\u0002¢\u0007¢\u0002£\u0007£\u0002¤\u0007¤\u0002¥\u0007¥\u0002¦\u0007¦\u0002§\u0007§\u0002¨\u0007¨\u0002©\u0007©\u0002ª\u0007ª\u0002«\u0007«\u0002¬\u0007¬\u0002­\u0007­\u0002®\u0007®\u0002¯\u0007¯\u0002°\u0007°\u0002±\u0007±\u0002²\u0007²\u0002³\u0007³\u0002´\u0007´\u0002µ\u0007µ\u0002¶\u0007¶\u0002·\u0007·\u0002¸\u0007¸\u0002¹\u0007¹\u0002º\u0007º\u0002»\u0007»\u0002¼\u0007¼\u0002½\u0007½\u0002¾\u0007¾\u0002¿\u0007¿\u0002À\u0007À\u0002Á\u0007Á\u0002Â\u0007Â\u0002Ã\u0007Ã\u0002Ä\u0007Ä\u0002Å\u0007Å\u0002Æ\u0007Æ\u0002Ç\u0007Ç\u0002È\u0007È\u0002É\u0007É\u0002Ê\u0007Ê\u0002Ë\u0007Ë\u0002Ì\u0007Ì\u0002Í\u0007Í\u0002Î\u0007Î\u0002Ï\u0007Ï\u0002Ð\u0007Ð\u0002Ñ\u0007Ñ\u0002Ò\u0007Ò\u0002Ó\u0007Ó\u0002Ô\u0007Ô\u0002Õ\u0007Õ\u0002Ö\u0007Ö\u0002×\u0007×\u0002Ø\u0007Ø\u0002Ù\u0007Ù\u0002Ú\u0007Ú\u0002Û\u0007Û\u0002Ü\u0007Ü\u0002Ý\u0007Ý\u0002Þ\u0007Þ\u0002ß\u0007ß\u0002à\u0007à\u0002á\u0007á\u0002â\u0007â\u0002ã\u0007ã\u0002ä\u0007ä\u0002å\u0007å\u0002æ\u0007æ\u0002ç\u0007ç\u0002è\u0007è\u0002é\u0007é\u0002ê\u0007ê\u0002ë\u0007ë\u0002ì\u0007ì\u0002í\u0007í\u0002î\u0007î\u0002ï\u0007ï\u0002ð\u0007ð\u0002ñ\u0007ñ\u0002ò\u0007ò\u0002ó\u0007ó\u0002ô\u0007ô\u0002õ\u0007õ\u0002ö\u0007ö\u0002÷\u0007÷\u0002ø\u0007ø\u0002ù\u0007ù\u0002ú\u0007ú\u0002û\u0007û\u0002ü\u0007ü\u0002ý\u0007ý\u0002" + "þ\u0007þ\u0002ÿ\u0007ÿ\u0002Ā\u0007Ā\u0002ā\u0007ā\u0002Ă\u0007Ă\u0002ă\u0007ă\u0002Ą\u0007Ą\u0002ą\u0007ą\u0002Ć\u0007Ć\u0002ć\u0007ć\u0002Ĉ\u0007Ĉ\u0002ĉ\u0007ĉ\u0002Ċ\u0007Ċ\u0002ċ\u0007ċ\u0002Č\u0007Č\u0002č\u0007č\u0002Ď\u0007Ď\u0002ď\u0007ď\u0002Đ\u0007Đ\u0002đ\u0007đ\u0002Ē\u0007Ē\u0002ē\u0007ē\u0002Ĕ\u0007Ĕ\u0002ĕ\u0007ĕ\u0002Ė\u0007Ė\u0002ė\u0007ė\u0002Ę\u0007Ę\u0002ę\u0007ę\u0002Ě\u0007Ě\u0002ě\u0007ě\u0002Ĝ\u0007Ĝ\u0002ĝ\u0007ĝ\u0002Ğ\u0007Ğ\u0002ğ\u0007ğ\u0002Ġ\u0007Ġ\u0002ġ\u0007ġ\u0002Ģ\u0007Ģ\u0002ģ\u0007ģ\u0002Ĥ\u0007Ĥ\u0002ĥ\u0007ĥ\u0002Ħ\u0007Ħ\u0002ħ\u0007ħ\u0002Ĩ\u0007Ĩ\u0002ĩ\u0007ĩ\u0002Ī\u0007Ī\u0002ī\u0007ī\u0002Ĭ\u0007Ĭ\u0002ĭ\u0007ĭ\u0002Į\u0007Į\u0002į\u0007į\u0002İ\u0007İ\u0002ı\u0007ı\u0002IJ\u0007IJ\u0002ij\u0007ij\u0002Ĵ\u0007Ĵ\u0002ĵ\u0007ĵ\u0002Ķ\u0007Ķ\u0002ķ\u0007ķ\u0002ĸ\u0007ĸ\u0002Ĺ\u0007Ĺ\u0002ĺ\u0007ĺ\u0002Ļ\u0007Ļ\u0002ļ\u0007ļ\u0002Ľ\u0007Ľ\u0002ľ\u0007ľ\u0002Ŀ\u0007Ŀ\u0002ŀ\u0007ŀ\u0002Ł\u0007Ł\u0002ł\u0007ł\u0002Ń\u0007Ń\u0002ń\u0007ń\u0002Ņ\u0007Ņ\u0002ņ\u0007ņ\u0002Ň\u0007Ň\u0002ň\u0007ň\u0002ʼn\u0007ʼn\u0002Ŋ\u0007Ŋ\u0002ŋ\u0007ŋ\u0002Ō\u0007Ō\u0002ō\u0007ō\u0002Ŏ\u0007Ŏ\u0002ŏ\u0007ŏ\u0002Ő\u0007Ő\u0002ő\u0007ő\u0002Œ\u0007Œ\u0002œ\u0007œ\u0002Ŕ\u0007Ŕ\u0002ŕ\u0007ŕ\u0002Ŗ\u0007Ŗ\u0002ŗ\u0007ŗ\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001ʺ\u0008\u0001\n\u0001\u000c\u0001ʽ\t\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0005\u0002˅\u0008\u0002\n\u0002\u000c\u0002ˈ\t\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003\u0005\u0003ˑ\u0008\u0003\n\u0003\u000c\u0003˔\t\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0005\u0003˙\u0008\u0003\n\u0003\u000c\u0003˜\t\u0003\u0001\u0003\u0003\u0003˟\u0008\u0003\u0001\u0003\u0003\u0003ˢ\u0008\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0005\u0003˧\u0008\u0003\n\u0003\u000c\u0003˪\t\u0003\u0001\u0003\u0003\u0003˭\u0008\u0003\u0001\u0003\u0003\u0003˰\u0008\u0003\u0001\u0003\u0001\u0003\u0005\u0003˴\u0008\u0003\n\u0003" + "\u000c\u0003˷\t\u0003\u0001\u0003\u0001\u0003\u0003\u0003˻\u0008\u0003\u0003\u0003˽\u0008\u0003\u0001\u0004\u0001\u0004\u0005\u0004́\u0008\u0004\n\u0004\u000c\u0004̄\t\u0004\u0001\u0004\u0005\u0004̇\u0008\u0004\n\u0004\u000c\u0004̊\t\u0004\u0001\u0004\u0003\u0004̍\u0008\u0004\u0001\u0005\u0001\u0005\u0003\u0005̑\u0008\u0005\u0001\u0005\u0004\u0005̔\u0008\u0005\u000b\u0005\u000c\u0005̕\u0001\u0005\u0005\u0005̙\u0008\u0005\n\u0005\u000c\u0005̜\t\u0005\u0001\u0006\u0003\u0006̟\u0008\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0005\u0007̦\u0008\u0007\n\u0007\u000c\u0007̩\t\u0007\u0001\u0008\u0001\u0008\u0003\u0008̭\u0008\u0008\u0001\u0008\u0005\u0008̰\u0008\u0008\n\u0008\u000c\u0008̳\t\u0008\u0001\t\u0001\t\u0001\t\u0005\t̸\u0008\t\n\t\u000c\t̻\t\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0005\n͂\u0008\n\n\n\u000c\nͅ\t\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000c\u0001\u000c\u0001\u000c\u0001\u000c\u0005\u000c͐\u0008\u000c\n\u000c\u000c\u000c͓\t\u000c\u0001\u000c\u0001\u000c\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001" @@ -367376,7 +294930,7 @@ $rt_stringPool(["Can\'t enter monitor from another thread synchronously", "Defau + "ǩ\u0001\u0000\u0000\u0000\u0000ǫ\u0001\u0000\u0000\u0000\u0000ǭ\u0001\u0000\u0000\u0000\u0000ǯ\u0001\u0000\u0000\u0000\u0000DZ\u0001\u0000\u0000\u0000\u0000dz\u0001\u0000\u0000\u0000\u0000ǵ\u0001\u0000\u0000\u0000\u0000Ƿ\u0001\u0000\u0000\u0000\u0000ǹ\u0001\u0000\u0000\u0000\u0000ǻ\u0001\u0000\u0000\u0000\u0000ǽ\u0001\u0000\u0000\u0000\u0000ǿ\u0001\u0000\u0000\u0000\u0000ȁ\u0001\u0000\u0000\u0000\u0000ȃ\u0001\u0000\u0000\u0000\u0000ȅ\u0001\u0000\u0000\u0000\u0000ȇ\u0001\u0000\u0000\u0000\u0000ȉ\u0001\u0000\u0000\u0000\u0000ȋ\u0001\u0000\u0000\u0000\u0000ȍ\u0001\u0000\u0000\u0000\u0000ȏ\u0001\u0000\u0000\u0000\u0000ȑ\u0001\u0000\u0000\u0000\u0000ȓ\u0001\u0000\u0000\u0000\u0000ȕ\u0001\u0000\u0000\u0000\u0000ȗ\u0001\u0000\u0000\u0000\u0000ș\u0001\u0000\u0000\u0000\u0000ț\u0001\u0000\u0000\u0000\u0000ȝ\u0001\u0000\u0000\u0000\u0000ȟ\u0001\u0000\u0000\u0000\u0000ȡ\u0001\u0000\u0000\u0000\u0000ȣ\u0001\u0000\u0000\u0000\u0000ȥ\u0001\u0000\u0000\u0000\u0000ȧ\u0001\u0000\u0000\u0000\u0000ȩ\u0001\u0000\u0000\u0000\u0000ȫ\u0001\u0000\u0000\u0000\u0000ȭ\u0001\u0000\u0000\u0000\u0000ȯ\u0001\u0000\u0000\u0000\u0000ȱ\u0001\u0000\u0000\u0000\u0000ȳ\u0001\u0000\u0000\u0000\u0000ȵ\u0001\u0000\u0000\u0000\u0000ȷ\u0001\u0000\u0000\u0000\u0000ȹ\u0001\u0000\u0000\u0000\u0000Ȼ\u0001\u0000\u0000\u0000\u0000Ƚ\u0001\u0000\u0000\u0000\u0000ȿ\u0001\u0000\u0000\u0000\u0000Ɂ\u0001\u0000\u0000\u0000\u0000Ƀ\u0001\u0000\u0000\u0000\u0000Ʌ\u0001\u0000\u0000\u0000\u0000ɇ\u0001\u0000\u0000\u0000\u0000ɉ\u0001\u0000\u0000\u0000\u0000ɋ\u0001\u0000\u0000\u0000\u0000ɍ\u0001\u0000\u0000\u0000\u0000ɏ\u0001\u0000\u0000\u0000\u0000ɑ\u0001\u0000\u0000\u0000\u0000ɓ\u0001\u0000\u0000\u0000\u0000ɕ\u0001\u0000\u0000\u0000\u0000ɗ\u0001\u0000\u0000\u0000\u0000ə\u0001\u0000\u0000\u0000\u0000ɛ\u0001\u0000\u0000\u0000\u0000ɝ\u0001\u0000\u0000\u0000\u0000ɟ\u0001\u0000\u0000\u0000\u0000ɡ\u0001\u0000\u0000\u0000\u0000ɣ\u0001\u0000\u0000\u0000\u0000ɥ\u0001\u0000\u0000\u0000\u0000ɧ\u0001\u0000\u0000\u0000\u0000ɩ\u0001\u0000\u0000\u0000\u0000ɫ\u0001\u0000\u0000\u0000\u0000ɭ\u0001\u0000\u0000\u0000\u0000ɯ\u0001\u0000\u0000\u0000\u0000ɱ\u0001\u0000\u0000\u0000\u0000ɳ\u0001\u0000\u0000\u0000\u0000ɵ\u0001\u0000\u0000\u0000\u0000ʯ\u0001\u0000\u0000\u0000\u0001ʱ\u0001\u0000\u0000\u0000\u0003ʵ\u0001\u0000\u0000\u0000\u0005ˀ\u0001\u0000\u0000\u0000\u0007˼\u0001\u0000\u0000\u0000\ť\u0001\u0000\u0000\u0000\u000b̎\u0001\u0000\u0000\u0000\r̞\u0001\u0000\u0000\u0000\u000f̢\u0001\u0000\u0000\u0000\u0011̪\u0001\u0000\u0000\u0000\u0013̴\u0001\u0000\u0000\u0000\u0015̾\u0001\u0000\u0000\u0000\u0017͈\u0001\u0000\u0000\u0000\u0019͋\u0001\u0000\u0000\u0000\u001b͖\u0001" + "\u0000\u0000\u0000\u001d͝\u0001\u0000\u0000\u0000\u001fͤ\u0001\u0000\u0000\u0000!ͪ\u0001\u0000\u0000\u0000#\u0378\u0001\u0000\u0000\u0000%;\u0001\u0000\u0000\u0000\'Ά\u0001\u0000\u0000\u0000)Η\u0001\u0000\u0000\u0000+Λ\u0001\u0000\u0000\u0000-Ρ\u0001\u0000\u0000\u0000/Υ\u0001\u0000\u0000\u00001Ω\u0001\u0000\u0000\u00003ί\u0001\u0000\u0000\u00005β\u0001\u0000\u0000\u00007ζ\u0001\u0000\u0000\u00009π\u0001\u0000\u0000\u0000;χ\u0001\u0000\u0000\u0000=ώ\u0001\u0000\u0000\u0000?ϑ\u0001\u0000\u0000\u0000Aϖ\u0001\u0000\u0000\u0000CϘ\u0001\u0000\u0000\u0000Eϡ\u0001\u0000\u0000\u0000GϦ\u0001\u0000\u0000\u0000IϮ\u0001\u0000\u0000\u0000K϶\u0001\u0000\u0000\u0000Mϻ\u0001\u0000\u0000\u0000OЁ\u0001\u0000\u0000\u0000QЇ\u0001\u0000\u0000\u0000SЍ\u0001\u0000\u0000\u0000UГ\u0001\u0000\u0000\u0000WЖ\u0001\u0000\u0000\u0000YЛ\u0001\u0000\u0000\u0000[У\u0001\u0000\u0000\u0000]Ш\u0001\u0000\u0000\u0000_Я\u0001\u0000\u0000\u0000aд\u0001\u0000\u0000\u0000cм\u0001\u0000\u0000\u0000eо\u0001\u0000\u0000\u0000gс\u0001\u0000\u0000\u0000iу\u0001\u0000\u0000\u0000kы\u0001\u0000\u0000\u0000mє\u0001\u0000\u0000\u0000oћ\u0001\u0000\u0000\u0000qѥ\u0001\u0000\u0000\u0000sѰ\u0001\u0000\u0000\u0000uѻ\u0001\u0000\u0000\u0000w҇\u0001\u0000\u0000\u0000yҐ\u0001\u0000\u0000\u0000{ҕ\u0001\u0000\u0000\u0000}Ҟ\u0001\u0000\u0000\u0000Ҥ\u0001\u0000\u0000\u0000ҫ\u0001\u0000\u0000\u0000ƒү\u0001\u0000\u0000\u0000…ҷ\u0001\u0000\u0000\u0000‡Ҽ\u0001\u0000\u0000\u0000‰Ӆ\u0001\u0000\u0000\u0000‹ӏ\u0001\u0000\u0000\u0000Ӕ\u0001\u0000\u0000\u0000ӝ\u0001\u0000\u0000\u0000‘Ӣ\u0001\u0000\u0000\u0000“ӭ\u0001\u0000\u0000\u0000•ӵ\u0001\u0000\u0000\u0000—ӽ\u0001\u0000\u0000\u0000™Ԅ\u0001\u0000\u0000\u0000›ԉ\u0001\u0000\u0000\u0000Ԏ\u0001\u0000\u0000\u0000Ÿԙ\u0001\u0000\u0000\u0000¡ԡ\u0001\u0000\u0000\u0000£Ԩ\u0001\u0000\u0000\u0000¥Բ\u0001\u0000\u0000\u0000§Դ\u0001\u0000\u0000\u0000©Խ\u0001\u0000\u0000\u0000«Կ\u0001\u0000\u0000\u0000­Ձ\u0001\u0000\u0000\u0000¯Մ\u0001\u0000\u0000\u0000±Շ\u0001\u0000\u0000\u0000³Վ\u0001\u0000\u0000\u0000µՓ\u0001\u0000\u0000\u0000·՚\u0001\u0000\u0000\u0000¹՟\u0001\u0000\u0000\u0000»ը\u0001\u0000\u0000\u0000½խ\u0001\u0000\u0000\u0000¿ղ\u0001\u0000\u0000\u0000Áչ\u0001\u0000\u0000\u0000Ãց\u0001\u0000\u0000\u0000Å֊\u0001\u0000\u0000" + "\u0000Ç֏\u0001\u0000\u0000\u0000É֙\u0001\u0000\u0000\u0000Ë֝\u0001\u0000\u0000\u0000Í֢\u0001\u0000\u0000\u0000Ï֤\u0001\u0000\u0000\u0000Ñ֯\u0001\u0000\u0000\u0000Óַ\u0001\u0000\u0000\u0000Õֽ\u0001\u0000\u0000\u0000×ׇ\u0001\u0000\u0000\u0000Ù\u05ce\u0001\u0000\u0000\u0000Ûה\u0001\u0000\u0000\u0000Ýי\u0001\u0000\u0000\u0000ßן\u0001\u0000\u0000\u0000áׯ\u0001\u0000\u0000\u0000ã\u05f6\u0001\u0000\u0000\u0000å\u05fc\u0001\u0000\u0000\u0000ç؀\u0001\u0000\u0000\u0000é؈\u0001\u0000\u0000\u0000ë؍\u0001\u0000\u0000\u0000íؖ\u0001\u0000\u0000\u0000ï؟\u0001\u0000\u0000\u0000ñة\u0001\u0000\u0000\u0000óج\u0001\u0000\u0000\u0000õز\u0001\u0000\u0000\u0000÷ظ\u0001\u0000\u0000\u0000ùؿ\u0001\u0000\u0000\u0000ûم\u0001\u0000\u0000\u0000ýٌ\u0001\u0000\u0000\u0000ÿَ\u0001\u0000\u0000\u0000āٖ\u0001\u0000\u0000\u0000ăٛ\u0001\u0000\u0000\u0000ąٞ\u0001\u0000\u0000\u0000ć١\u0001\u0000\u0000\u0000ĉ٭\u0001\u0000\u0000\u0000ċٷ\u0001\u0000\u0000\u0000čٺ\u0001\u0000\u0000\u0000ďڀ\u0001\u0000\u0000\u0000đڈ\u0001\u0000\u0000\u0000ēڌ\u0001\u0000\u0000\u0000ĕڕ\u0001\u0000\u0000\u0000ėڜ\u0001\u0000\u0000\u0000ęڠ\u0001\u0000\u0000\u0000ěڨ\u0001\u0000\u0000\u0000ĝګ\u0001\u0000\u0000\u0000ğڰ\u0001\u0000\u0000\u0000ġڴ\u0001\u0000\u0000\u0000ģں\u0001\u0000\u0000\u0000ĥہ\u0001\u0000\u0000\u0000ħۃ\u0001\u0000\u0000\u0000ĩۅ\u0001\u0000\u0000\u0000īۇ\u0001\u0000\u0000\u0000ĭۉ\u0001\u0000\u0000\u0000įی\u0001\u0000\u0000\u0000ı۔\u0001\u0000\u0000\u0000ijۚ\u0001\u0000\u0000\u0000ĵ۟\u0001\u0000\u0000\u0000ķۤ\u0001\u0000\u0000\u0000Ĺ۪\u0001\u0000\u0000\u0000Ļ۱\u0001\u0000\u0000\u0000Ľ۳\u0001\u0000\u0000\u0000Ŀ۵\u0001\u0000\u0000\u0000Ł܀\u0001\u0000\u0000\u0000Ń܄\u0001\u0000\u0000\u0000Ņ܊\u0001\u0000\u0000\u0000Ňܐ\u0001\u0000\u0000\u0000ʼnܒ\u0001\u0000\u0000\u0000ŋܔ\u0001\u0000\u0000\u0000ōܗ\u0001\u0000\u0000\u0000ŏܚ\u0001\u0000\u0000\u0000őܟ\u0001\u0000\u0000\u0000œܥ\u0001\u0000\u0000\u0000ŕܩ\u0001\u0000\u0000\u0000ŗܭ\u0001\u0000\u0000\u0000řܱ\u0001\u0000\u0000\u0000śܶ\u0001\u0000\u0000\u0000ŝܻ\u0001\u0000\u0000\u0000şܿ\u0001\u0000\u0000\u0000š݄\u0001\u0000\u0000\u0000ţݍ\u0001\u0000\u0000\u0000ťݓ\u0001\u0000\u0000\u0000ŧݘ\u0001\u0000\u0000\u0000ũݢ\u0001\u0000\u0000\u0000ūݭ\u0001\u0000\u0000\u0000ŭݱ\u0001\u0000\u0000\u0000ůݹ\u0001\u0000\u0000\u0000ű" -+ "ހ\u0001\u0000\u0000\u0000ųޅ\u0001\u0000\u0000\u0000ŵވ\u0001\u0000\u0000\u0000ŷޏ\u0001\u0000\u0000\u0000Źޒ\u0001\u0000\u0000\u0000Żޗ\u0001\u0000\u0000\u0000Žޠ\u0001\u0000\u0000\u0000ſި\u0001\u0000\u0000\u0000Ɓޯ\u0001\u0000\u0000\u0000ƃ\u07b2\u0001\u0000\u0000\u0000ƅ\u07b8\u0001\u0000\u0000\u0000Ƈ\u07bf\u0001\u0000\u0000\u0000Ɖ߈\u0001\u0000\u0000\u0000Ƌߒ\u0001\u0000\u0000\u0000ƍߗ\u0001\u0000\u0000\u0000Əߝ\u0001\u0000\u0000\u0000Ƒߦ\u0001\u0000\u0000\u0000Ɠ߰\u0001\u0000\u0000\u0000ƕ߲\u0001\u0000\u0000\u0000Ɨߵ\u0001\u0000\u0000\u0000ƙ\u07fb\u0001\u0000\u0000\u0000ƛࠅ\u0001\u0000\u0000\u0000Ɲࠇ\u0001\u0000\u0000\u0000Ɵࠏ\u0001\u0000\u0000\u0000ơ࠙\u0001\u0000\u0000\u0000ƣࠣ\u0001\u0000\u0000\u0000ƥ\u082e\u0001\u0000\u0000\u0000Ƨ࠸\u0001\u0000\u0000\u0000Ʃࡃ\u0001\u0000\u0000\u0000ƫࡎ\u0001\u0000\u0000\u0000ƭࡗ\u0001\u0000\u0000\u0000Ưࡠ\u0001\u0000\u0000\u0000Ʊࡪ\u0001\u0000\u0000\u0000Ƴ\u086c\u0001\u0000\u0000\u0000Ƶ\u0872\u0001\u0000\u0000\u0000Ʒ\u0874\u0001\u0000\u0000\u0000ƹ\u0876\u0001\u0000\u0000\u0000ƻ\u087b\u0001\u0000\u0000\u0000ƽ\u0886\u0001\u0000\u0000\u0000ƿ\u088d\u0001\u0000\u0000\u0000ǁ\u0894\u0001\u0000\u0000\u0000ǃ\u0897\u0001\u0000\u0000\u0000Dž\u089b\u0001\u0000\u0000\u0000LJࢨ\u0001\u0000\u0000\u0000ljࢶ\u0001\u0000\u0000\u0000Njࢽ\u0001\u0000\u0000\u0000Ǎ\u08c8\u0001\u0000\u0000\u0000Ǐ\u08d0\u0001\u0000\u0000\u0000Ǒࣗ\u0001\u0000\u0000\u0000Ǔࣟ\u0001\u0000\u0000\u0000Ǖࣨ\u0001\u0000\u0000\u0000Ǘࣱ\u0001\u0000\u0000\u0000Ǚࣸ\u0001\u0000\u0000\u0000Ǜࣿ\u0001\u0000\u0000\u0000ǝऄ\u0001\u0000\u0000\u0000ǟऊ\u0001\u0000\u0000\u0000ǡऎ\u0001\u0000\u0000\u0000ǣओ\u0001\u0000\u0000\u0000ǥक\u0001\u0000\u0000\u0000ǧच\u0001\u0000\u0000\u0000ǩञ\u0001\u0000\u0000\u0000ǫथ\u0001\u0000\u0000\u0000ǭय\u0001\u0000\u0000\u0000ǯऻ\u0001\u0000\u0000\u0000DZृ\u0001\u0000\u0000\u0000dzै\u0001\u0000\u0000\u0000ǵॊ\u0001\u0000\u0000\u0000Ƿ॑\u0001\u0000\u0000\u0000ǹख़\u0001\u0000\u0000\u0000ǻढ़\u0001\u0000\u0000\u0000ǽ॥\u0001\u0000\u0000\u0000ǿ८\u0001\u0000\u0000\u0000ȁॻ\u0001\u0000\u0000\u0000ȃ\u0984\u0001\u0000\u0000\u0000ȅউ\u0001\u0000\u0000\u0000ȇঐ\u0001\u0000\u0000\u0000ȉগ\u0001\u0000\u0000\u0000ȋজ\u0001\u0000\u0000\u0000ȍঢ\u0001\u0000\u0000\u0000ȏ\u09a9\u0001\u0000\u0000\u0000ȑর\u0001\u0000\u0000\u0000ȓ\u09b5\u0001\u0000\u0000\u0000ȕ়\u0001\u0000\u0000\u0000ȗ\u09c6\u0001\u0000\u0000\u0000ș\u09d0\u0001\u0000\u0000\u0000țৗ\u0001" ++ "ހ\u0001\u0000\u0000\u0000ųޅ\u0001\u0000\u0000\u0000ŵވ\u0001\u0000\u0000\u0000ŷޏ\u0001\u0000\u0000\u0000Źޒ\u0001\u0000\u0000\u0000Żޗ\u0001\u0000\u0000\u0000Žޠ\u0001\u0000\u0000\u0000ſި\u0001\u0000\u0000\u0000Ɓޯ\u0001\u0000\u0000\u0000ƃ\u07b2\u0001\u0000\u0000\u0000ƅ\u07b8\u0001\u0000\u0000\u0000Ƈ\u07bf\u0001\u0000\u0000\u0000Ɖ߈\u0001\u0000\u0000\u0000Ƌߒ\u0001\u0000\u0000\u0000ƍߗ\u0001\u0000\u0000\u0000Əߝ\u0001\u0000\u0000\u0000Ƒߦ\u0001\u0000\u0000\u0000Ɠ߰\u0001\u0000\u0000\u0000ƕ߲\u0001\u0000\u0000\u0000Ɨߵ\u0001\u0000\u0000\u0000ƙ\u07fb\u0001\u0000\u0000\u0000ƛࠅ\u0001\u0000\u0000\u0000Ɲࠇ\u0001\u0000\u0000\u0000Ɵࠏ\u0001\u0000\u0000\u0000ơ࠙\u0001\u0000\u0000\u0000ƣࠣ\u0001\u0000\u0000\u0000ƥ\u082e\u0001\u0000\u0000\u0000Ƨ࠸\u0001\u0000\u0000\u0000Ʃࡃ\u0001\u0000\u0000\u0000ƫࡎ\u0001\u0000\u0000\u0000ƭࡗ\u0001\u0000\u0000\u0000Ưࡠ\u0001\u0000\u0000\u0000Ʊࡪ\u0001\u0000\u0000\u0000Ƴ\u086c\u0001\u0000\u0000\u0000Ƶࡲ\u0001\u0000\u0000\u0000Ʒࡴ\u0001\u0000\u0000\u0000ƹࡶ\u0001\u0000\u0000\u0000ƻࡻ\u0001\u0000\u0000\u0000ƽࢆ\u0001\u0000\u0000\u0000ƿࢍ\u0001\u0000\u0000\u0000ǁ\u0894\u0001\u0000\u0000\u0000ǃ\u0897\u0001\u0000\u0000\u0000Dž࢛\u0001\u0000\u0000\u0000LJࢨ\u0001\u0000\u0000\u0000ljࢶ\u0001\u0000\u0000\u0000Njࢽ\u0001\u0000\u0000\u0000Ǎࣈ\u0001\u0000\u0000\u0000Ǐ࣐\u0001\u0000\u0000\u0000Ǒࣗ\u0001\u0000\u0000\u0000Ǔࣟ\u0001\u0000\u0000\u0000Ǖࣨ\u0001\u0000\u0000\u0000Ǘࣱ\u0001\u0000\u0000\u0000Ǚࣸ\u0001\u0000\u0000\u0000Ǜࣿ\u0001\u0000\u0000\u0000ǝऄ\u0001\u0000\u0000\u0000ǟऊ\u0001\u0000\u0000\u0000ǡऎ\u0001\u0000\u0000\u0000ǣओ\u0001\u0000\u0000\u0000ǥक\u0001\u0000\u0000\u0000ǧच\u0001\u0000\u0000\u0000ǩञ\u0001\u0000\u0000\u0000ǫथ\u0001\u0000\u0000\u0000ǭय\u0001\u0000\u0000\u0000ǯऻ\u0001\u0000\u0000\u0000DZृ\u0001\u0000\u0000\u0000dzै\u0001\u0000\u0000\u0000ǵॊ\u0001\u0000\u0000\u0000Ƿ॑\u0001\u0000\u0000\u0000ǹख़\u0001\u0000\u0000\u0000ǻढ़\u0001\u0000\u0000\u0000ǽ॥\u0001\u0000\u0000\u0000ǿ८\u0001\u0000\u0000\u0000ȁॻ\u0001\u0000\u0000\u0000ȃ\u0984\u0001\u0000\u0000\u0000ȅউ\u0001\u0000\u0000\u0000ȇঐ\u0001\u0000\u0000\u0000ȉগ\u0001\u0000\u0000\u0000ȋজ\u0001\u0000\u0000\u0000ȍঢ\u0001\u0000\u0000\u0000ȏ\u09a9\u0001\u0000\u0000\u0000ȑর\u0001\u0000\u0000\u0000ȓ\u09b5\u0001\u0000\u0000\u0000ȕ়\u0001\u0000\u0000\u0000ȗ\u09c6\u0001\u0000\u0000\u0000ș\u09d0\u0001\u0000\u0000\u0000țৗ\u0001" + "\u0000\u0000\u0000ȝৡ\u0001\u0000\u0000\u0000ȟ০\u0001\u0000\u0000\u0000ȡ৫\u0001\u0000\u0000\u0000ȣৰ\u0001\u0000\u0000\u0000ȥ৲\u0001\u0000\u0000\u0000ȧৼ\u0001\u0000\u0000\u0000ȩਅ\u0001\u0000\u0000\u0000ȫਈ\u0001\u0000\u0000\u0000ȭ\u0a11\u0001\u0000\u0000\u0000ȯਚ\u0001\u0000\u0000\u0000ȱਦ\u0001\u0000\u0000\u0000ȳਲ਼\u0001\u0000\u0000\u0000ȵ਼\u0001\u0000\u0000\u0000ȷੁ\u0001\u0000\u0000\u0000ȹ\u0a46\u0001\u0000\u0000\u0000Ȼੋ\u0001\u0000\u0000\u0000Ƚੑ\u0001\u0000\u0000\u0000ȿ\u0a57\u0001\u0000\u0000\u0000Ɂ\u0a5d\u0001\u0000\u0000\u0000Ƀ\u0a64\u0001\u0000\u0000\u0000Ʌ੯\u0001\u0000\u0000\u0000ɇ੶\u0001\u0000\u0000\u0000ɉ\u0a7a\u0001\u0000\u0000\u0000ɋ\u0a7e\u0001\u0000\u0000\u0000ɍઃ\u0001\u0000\u0000\u0000ɏઉ\u0001\u0000\u0000\u0000ɑએ\u0001\u0000\u0000\u0000ɓક\u0001\u0000\u0000\u0000ɕઝ\u0001\u0000\u0000\u0000ɗત\u0001\u0000\u0000\u0000əબ\u0001\u0000\u0000\u0000ɛળ\u0001\u0000\u0000\u0000ɝસ\u0001\u0000\u0000\u0000ɟઽ\u0001\u0000\u0000\u0000ɡૃ\u0001\u0000\u0000\u0000ɣૈ\u0001\u0000\u0000\u0000ɥૐ\u0001\u0000\u0000\u0000ɧ\u0ad6\u0001\u0000\u0000\u0000ɩ\u0ada\u0001\u0000\u0000\u0000ɫૠ\u0001\u0000\u0000\u0000ɭ\u0ae5\u0001\u0000\u0000\u0000ɯ૫\u0001\u0000\u0000\u0000ɱ\u0af2\u0001\u0000\u0000\u0000ɳ\u0af4\u0001\u0000\u0000\u0000ɵ\u0af6\u0001\u0000\u0000\u0000ɷ\u0af8\u0001\u0000\u0000\u0000ɹૼ\u0001\u0000\u0000\u0000ɻ૾\u0001\u0000\u0000\u0000ɽ\u0b00\u0001\u0000\u0000\u0000ɿଂ\u0001\u0000\u0000\u0000ʁ\u0b04\u0001\u0000\u0000\u0000ʃଆ\u0001\u0000\u0000\u0000ʅଈ\u0001\u0000\u0000\u0000ʇଊ\u0001\u0000\u0000\u0000ʉଌ\u0001\u0000\u0000\u0000ʋ\u0b0e\u0001\u0000\u0000\u0000ʍଐ\u0001\u0000\u0000\u0000ʏ\u0b12\u0001\u0000\u0000\u0000ʑଔ\u0001\u0000\u0000\u0000ʓଖ\u0001\u0000\u0000\u0000ʕଘ\u0001\u0000\u0000\u0000ʗଚ\u0001\u0000\u0000\u0000ʙଜ\u0001\u0000\u0000\u0000ʛଞ\u0001\u0000\u0000\u0000ʝଠ\u0001\u0000\u0000\u0000ʟଢ\u0001\u0000\u0000\u0000ʡତ\u0001\u0000\u0000\u0000ʣଦ\u0001\u0000\u0000\u0000ʥନ\u0001\u0000\u0000\u0000ʧପ\u0001\u0000\u0000\u0000ʩବ\u0001\u0000\u0000\u0000ʫମ\u0001\u0000\u0000\u0000ʭର\u0001\u0000\u0000\u0000ʯଲ\u0001\u0000\u0000\u0000ʱʲ\u0007\u0000\u0000\u0000ʲʳ\u0001\u0000\u0000\u0000ʳʴ\u0006\u0000\u0000\u0000ʴ\u0002\u0001\u0000\u0000\u0000ʵʶ\u0005/\u0000\u0000ʶʷ\u0005/\u0000\u0000ʷʻ\u0001\u0000\u0000\u0000ʸʺ\u0008\u0001\u0000\u0000ʹʸ\u0001\u0000\u0000\u0000ʺʽ\u0001\u0000\u0000\u0000ʻʹ\u0001\u0000\u0000" + "\u0000ʻʼ\u0001\u0000\u0000\u0000ʼʾ\u0001\u0000\u0000\u0000ʽʻ\u0001\u0000\u0000\u0000ʾʿ\u0006\u0001\u0000\u0000ʿ\u0004\u0001\u0000\u0000\u0000ˀˁ\u0005/\u0000\u0000ˁ˂\u0005*\u0000\u0000˂ˆ\u0001\u0000\u0000\u0000˃˅\t\u0000\u0000\u0000˄˃\u0001\u0000\u0000\u0000˅ˈ\u0001\u0000\u0000\u0000ˆˇ\u0001\u0000\u0000\u0000ˆ˄\u0001\u0000\u0000\u0000ˇˉ\u0001\u0000\u0000\u0000ˈˆ\u0001\u0000\u0000\u0000ˉˊ\u0005*\u0000\u0000ˊˋ\u0005/\u0000\u0000ˋˌ\u0001\u0000\u0000\u0000ˌˍ\u0006\u0002\u0000\u0000ˍ\u0006\u0001\u0000\u0000\u0000ˎ˒\u0007\u0002\u0000\u0000ˏˑ\u0003\r\u0006\u0000ːˏ\u0001\u0000\u0000\u0000ˑ˔\u0001\u0000\u0000\u0000˒ː\u0001\u0000\u0000\u0000˒˓\u0001\u0000\u0000\u0000˓˕\u0001\u0000\u0000\u0000˔˒\u0001\u0000\u0000\u0000˕˖\u0005.\u0000\u0000˖˚\u0007\u0002\u0000\u0000˗˙\u0003\r\u0006\u0000˘˗\u0001\u0000\u0000\u0000˙˜\u0001\u0000\u0000\u0000˚˘\u0001\u0000\u0000\u0000˚˛\u0001\u0000\u0000\u0000˛˞\u0001\u0000\u0000\u0000˜˚\u0001\u0000\u0000\u0000˝˟\u0003\u000b\u0005\u0000˞˝\u0001\u0000\u0000\u0000˞˟\u0001\u0000\u0000\u0000˟ˡ\u0001\u0000\u0000\u0000ˠˢ\u0003ɯķ\u0000ˡˠ\u0001\u0000\u0000\u0000ˡˢ\u0001\u0000\u0000\u0000ˢ˽\u0001\u0000\u0000\u0000ˣˤ\u0005.\u0000\u0000ˤ˨\u0007\u0002\u0000\u0000˥˧\u0003\r\u0006\u0000˦˥\u0001\u0000\u0000\u0000˧˪\u0001\u0000\u0000\u0000˨˦\u0001\u0000\u0000\u0000˨˩\u0001\u0000\u0000\u0000˩ˬ\u0001\u0000\u0000\u0000˪˨\u0001\u0000\u0000\u0000˫˭\u0003\u000b\u0005\u0000ˬ˫\u0001\u0000\u0000\u0000ˬ˭\u0001\u0000\u0000\u0000˭˯\u0001\u0000\u0000\u0000ˮ˰\u0003ɯķ\u0000˯ˮ\u0001\u0000\u0000\u0000˯˰\u0001\u0000\u0000\u0000˰˽\u0001\u0000\u0000\u0000˱˵\u0007\u0002\u0000\u0000˲˴\u0003\r\u0006\u0000˳˲\u0001\u0000\u0000\u0000˴˷\u0001\u0000\u0000\u0000˵˳\u0001\u0000\u0000\u0000˵˶\u0001\u0000\u0000\u0000˶˸\u0001\u0000\u0000\u0000˷˵\u0001\u0000\u0000\u0000˸˺\u0003\u000b\u0005\u0000˹˻\u0003ɯķ\u0000˺˹\u0001\u0000\u0000\u0000˺˻\u0001\u0000\u0000\u0000˻˽\u0001\u0000\u0000\u0000˼ˎ\u0001\u0000\u0000\u0000˼ˣ\u0001\u0000\u0000\u0000˼˱\u0001\u0000\u0000\u0000˽\u0008\u0001\u0000\u0000\u0000˾̂\u0007\u0003\u0000\u0000˿́\u0003\r\u0006\u0000̀˿\u0001\u0000\u0000\u0000́̄\u0001\u0000\u0000\u0000̂̀\u0001\u0000\u0000\u0000̂̃\u0001\u0000\u0000\u0000̃" + "̈\u0001\u0000\u0000\u0000̄̂\u0001\u0000\u0000\u0000̅̇\u0003ɹļ\u0000̆̅\u0001\u0000\u0000\u0000̇̊\u0001\u0000\u0000\u0000̈̆\u0001\u0000\u0000\u0000̈̉\u0001\u0000\u0000\u0000̉̍\u0001\u0000\u0000\u0000̊̈\u0001\u0000\u0000\u0000̋̍\u00050\u0000\u0000̌˾\u0001\u0000\u0000\u0000̌̋\u0001\u0000\u0000\u0000̍\n\u0001\u0000\u0000\u0000̎̐\u0007\u0004\u0000\u0000̏̑\u0007\u0005\u0000\u0000̐̏\u0001\u0000\u0000\u0000̐̑\u0001\u0000\u0000\u0000̑̓\u0001\u0000\u0000\u0000̒̔\u0003\r\u0006\u0000̓̒\u0001\u0000\u0000\u0000̔̕\u0001\u0000\u0000\u0000̓̕\u0001\u0000\u0000\u0000̖̕\u0001\u0000\u0000\u0000̖̚\u0001\u0000\u0000\u0000̗̙\u0003ɹļ\u0000̘̗\u0001\u0000\u0000\u0000̙̜\u0001\u0000\u0000\u0000̘̚\u0001\u0000\u0000\u0000̛̚\u0001\u0000\u0000\u0000̛\u000c\u0001\u0000\u0000\u0000̜̚\u0001\u0000\u0000\u0000̝̟\u0005_\u0000\u0000̞̝\u0001\u0000\u0000\u0000̞̟\u0001\u0000\u0000\u0000̟̠\u0001\u0000\u0000\u0000̡̠\u0007\u0002\u0000\u0000̡\u000e\u0001\u0000\u0000\u0000̢̣\u00050\u0000\u0000̧̣\u0007\u0006\u0000\u0000̤̦\u0003ɹļ\u0000̥̤\u0001\u0000\u0000\u0000̦̩\u0001\u0000\u0000\u0000̧̥\u0001\u0000\u0000\u0000̧̨\u0001\u0000\u0000\u0000̨\u0010\u0001\u0000\u0000\u0000̧̩\u0001\u0000\u0000\u0000̪̬\u00050\u0000\u0000̫̭\u0005o\u0000\u0000̬̫\u0001\u0000\u0000\u0000̬̭\u0001\u0000\u0000\u0000̭̱\u0001\u0000\u0000\u0000̮̰\u0003ɹļ\u0000̯̮\u0001\u0000\u0000\u0000̰̳\u0001\u0000\u0000\u0000̱̯\u0001\u0000\u0000\u0000̱̲\u0001\u0000\u0000\u0000̲\u0012\u0001\u0000\u0000\u0000̳̱\u0001\u0000\u0000\u0000̴̹\u0005\'\u0000\u0000̵̸\u0008\u0007\u0000\u0000̶̸\u0003\u0017\u000b\u0000̷̵\u0001\u0000\u0000\u0000̷̶\u0001\u0000\u0000\u0000̸̻\u0001\u0000\u0000\u0000̷̹\u0001\u0000\u0000\u0000̹̺\u0001\u0000\u0000\u0000̺̼\u0001\u0000\u0000\u0000̻̹\u0001\u0000\u0000\u0000̼̽\u0005\'\u0000\u0000̽\u0014\u0001\u0000\u0000\u0000̾̓\u0005\"\u0000\u0000̿͂\u0008\u0008\u0000\u0000̀͂\u0003\u0017\u000b\u0000́̿\u0001\u0000\u0000\u0000́̀\u0001\u0000\u0000\u0000͂ͅ\u0001\u0000\u0000\u0000̓́\u0001\u0000\u0000\u0000̓̈́\u0001\u0000\u0000\u0000̈́͆\u0001\u0000\u0000\u0000̓ͅ\u0001\u0000\u0000\u0000͇͆\u0005\"\u0000\u0000͇\u0016\u0001\u0000\u0000\u0000͈͉\u0005\\\u0000\u0000͉͊\t\u0000\u0000\u0000͊\u0018\u0001\u0000\u0000\u0000͋͑\u0005" @@ -367388,15 +294942,15 @@ $rt_stringPool(["Can\'t enter monitor from another thread synchronously", "Defau + "”\u0001\u0000\u0000\u0000ӵӶ\u0003ʁŀ\u0000Ӷӷ\u0003ʃŁ\u0000ӷӸ\u0003ʅł\u0000Ӹӹ\u0003ʋŅ\u0000ӹӺ\u0003ʕŊ\u0000Ӻӻ\u0003ʃŁ\u0000ӻӼ\u0003ʁŀ\u0000Ӽ–\u0001\u0000\u0000\u0000ӽӾ\u0003ʁŀ\u0000Ӿӿ\u0003ʃŁ\u0000ӿԀ\u0003ʑň\u0000Ԁԁ\u0003ʃŁ\u0000ԁԂ\u0003ʡŐ\u0000Ԃԃ\u0003ʃŁ\u0000ԃ˜\u0001\u0000\u0000\u0000Ԅԅ\u0003ʁŀ\u0000ԅԆ\u0003ʃŁ\u0000Ԇԇ\u0003ʕŊ\u0000ԇԈ\u0003ʫŕ\u0000Ԉš\u0001\u0000\u0000\u0000ԉԊ\u0003ʁŀ\u0000Ԋԋ\u0003ʃŁ\u0000ԋԌ\u0003ʟŏ\u0000Ԍԍ\u0003ɿĿ\u0000ԍœ\u0001\u0000\u0000\u0000Ԏԏ\u0003ʁŀ\u0000ԏԐ\u0003ʃŁ\u0000Ԑԑ\u0003ʟŏ\u0000ԑԒ\u0003ɿĿ\u0000Ԓԓ\u0003ʃŁ\u0000ԓԔ\u0003ʕŊ\u0000Ԕԕ\u0003ʁŀ\u0000ԕԖ\u0003ʋŅ\u0000Ԗԗ\u0003ʕŊ\u0000ԗԘ\u0003ʇŃ\u0000Ԙž\u0001\u0000\u0000\u0000ԙԚ\u0003ʁŀ\u0000Ԛԛ\u0003ʃŁ\u0000ԛԜ\u0003ʟŏ\u0000Ԝԝ\u0003ʡŐ\u0000ԝԞ\u0003ʝŎ\u0000Ԟԟ\u0003ʗŋ\u0000ԟԠ\u0003ʫŕ\u0000Ԡ \u0001\u0000\u0000\u0000ԡԢ\u0003ʁŀ\u0000Ԣԣ\u0003ʃŁ\u0000ԣԤ\u0003ʡŐ\u0000Ԥԥ\u0003ɻĽ\u0000ԥԦ\u0003ɿĿ\u0000Ԧԧ\u0003ʉń\u0000ԧ¢\u0001\u0000\u0000\u0000Ԩԩ\u0003ʁŀ\u0000ԩԪ\u0003ʋŅ\u0000Ԫԫ\u0003ʅł\u0000ԫԬ\u0003ʅł\u0000Ԭԭ\u0003ʃŁ\u0000ԭԮ\u0003ʝŎ\u0000Ԯԯ\u0003ʃŁ\u0000ԯ\u0530\u0003ʕŊ\u0000\u0530Ա\u0003ʡŐ\u0000Ա¤\u0001\u0000\u0000\u0000ԲԳ\u0005$\u0000\u0000Գ¦\u0001\u0000\u0000\u0000ԴԵ\u0003ʁŀ\u0000ԵԶ\u0003ʋŅ\u0000ԶԷ\u0003ʟŏ\u0000ԷԸ\u0003ʡŐ\u0000ԸԹ\u0003ʋŅ\u0000ԹԺ\u0003ʕŊ\u0000ԺԻ\u0003ɿĿ\u0000ԻԼ\u0003ʡŐ\u0000Լ¨\u0001\u0000\u0000\u0000ԽԾ\u0005/\u0000\u0000Ծª\u0001\u0000\u0000\u0000ԿՀ\u0005.\u0000\u0000Հ¬\u0001\u0000\u0000\u0000ՁՂ\u0005.\u0000\u0000ՂՃ\u0005.\u0000\u0000Ճ®\u0001\u0000\u0000\u0000ՄՅ\u0005|\u0000\u0000ՅՆ\u0005|\u0000\u0000Ն°\u0001\u0000\u0000\u0000ՇՈ\u0003ʁŀ\u0000ՈՉ\u0003ʝŎ\u0000ՉՊ\u0003" + "ʋŅ\u0000ՊՋ\u0003ʥŒ\u0000ՋՌ\u0003ʃŁ\u0000ՌՍ\u0003ʝŎ\u0000Ս²\u0001\u0000\u0000\u0000ՎՏ\u0003ʁŀ\u0000ՏՐ\u0003ʝŎ\u0000ՐՑ\u0003ʗŋ\u0000ՑՒ\u0003ʙŌ\u0000Ւ´\u0001\u0000\u0000\u0000ՓՔ\u0003ʁŀ\u0000ՔՕ\u0003ʝŎ\u0000ՕՖ\u0003ʫŕ\u0000Ֆ\u0557\u0003ʝŎ\u0000\u0557\u0558\u0003ʣő\u0000\u0558ՙ\u0003ʕŊ\u0000ՙ¶\u0001\u0000\u0000\u0000՚՛\u0003ʁŀ\u0000՛՜\u0003ʣő\u0000՜՝\u0003ʓʼn\u0000՝՞\u0003ʙŌ\u0000՞¸\u0001\u0000\u0000\u0000՟ՠ\u0003ʁŀ\u0000ՠա\u0003ʣő\u0000աբ\u0003ʝŎ\u0000բգ\u0003ɻĽ\u0000գդ\u0003ʡŐ\u0000դե\u0003ʋŅ\u0000եզ\u0003ʗŋ\u0000զէ\u0003ʕŊ\u0000էº\u0001\u0000\u0000\u0000ըթ\u0003ʃŁ\u0000թժ\u0003ɻĽ\u0000ժի\u0003ɿĿ\u0000իլ\u0003ʉń\u0000լ¼\u0001\u0000\u0000\u0000խծ\u0003ʃŁ\u0000ծկ\u0003ʁŀ\u0000կհ\u0003ʇŃ\u0000հձ\u0003ʃŁ\u0000ձ¾\u0001\u0000\u0000\u0000ղճ\u0003ʃŁ\u0000ճմ\u0003ʕŊ\u0000մյ\u0003ɻĽ\u0000յն\u0003ɽľ\u0000նշ\u0003ʑň\u0000շո\u0003ʃŁ\u0000ոÀ\u0001\u0000\u0000\u0000չպ\u0003ʃŁ\u0000պջ\u0003ʑň\u0000ջռ\u0003ʃŁ\u0000ռս\u0003ʓʼn\u0000սվ\u0003ʃŁ\u0000վտ\u0003ʕŊ\u0000տր\u0003ʡŐ\u0000րÂ\u0001\u0000\u0000\u0000ցւ\u0003ʃŁ\u0000ւփ\u0003ʑň\u0000փք\u0003ʃŁ\u0000քօ\u0003ʓʼn\u0000օֆ\u0003ʃŁ\u0000ֆև\u0003ʕŊ\u0000ևֈ\u0003ʡŐ\u0000ֈ։\u0003ʟŏ\u0000։Ä\u0001\u0000\u0000\u0000֊\u058b\u0003ʃŁ\u0000\u058b\u058c\u0003ʑň\u0000\u058c֍\u0003ʟŏ\u0000֍֎\u0003ʃŁ\u0000֎Æ\u0001\u0000\u0000\u0000֏\u0590\u0003ʃŁ\u0000\u0590֑\u0003ʕŊ\u0000֑֒\u0003ɿĿ\u0000֒֓\u0003ʝŎ\u0000֓֔\u0003ʫŕ\u0000֔֕\u0003ʙŌ\u0000֖֕\u0003ʡŐ\u0000֖֗\u0003ʃŁ\u0000֗֘\u0003ʁŀ\u0000֘È\u0001\u0000\u0000\u0000֚֙\u0003ʃŁ\u0000֛֚\u0003ʕŊ\u0000֛֜\u0003ʁŀ\u0000֜Ê\u0001\u0000\u0000\u0000֝֞\u0003ʃŁ\u0000֞֟\u0003ʕŊ" + "\u0000֟֠\u0003ʁŀ\u0000֠֡\u0003ʟŏ\u0000֡Ì\u0001\u0000\u0000\u0000֢֣\u0005=\u0000\u0000֣Î\u0001\u0000\u0000\u0000֤֥\u0003ʃŁ\u0000֥֦\u0003ʩŔ\u0000֦֧\u0003ʃŁ\u0000֧֨\u0003ɿĿ\u0000֨֩\u0003ʣő\u0000֪֩\u0003ʡŐ\u0000֪֫\u0003ɻĽ\u0000֫֬\u0003ɽľ\u0000֭֬\u0003ʑň\u0000֭֮\u0003ʃŁ\u0000֮Ð\u0001\u0000\u0000\u0000ְ֯\u0003ʃŁ\u0000ְֱ\u0003ʩŔ\u0000ֱֲ\u0003ʃŁ\u0000ֲֳ\u0003ɿĿ\u0000ֳִ\u0003ʣő\u0000ִֵ\u0003ʡŐ\u0000ֵֶ\u0003ʃŁ\u0000ֶÒ\u0001\u0000\u0000\u0000ַָ\u0003ʃŁ\u0000ָֹ\u0003ʩŔ\u0000ֹֺ\u0003ʋŅ\u0000ֺֻ\u0003ʟŏ\u0000ֻּ\u0003ʡŐ\u0000ּÔ\u0001\u0000\u0000\u0000ֽ־\u0003ʃŁ\u0000־ֿ\u0003ʩŔ\u0000ֿ׀\u0003ʋŅ\u0000׀ׁ\u0003ʟŏ\u0000ׁׂ\u0003ʡŐ\u0000ׂ׃\u0003ʃŁ\u0000׃ׄ\u0003ʕŊ\u0000ׅׄ\u0003ɿĿ\u0000ׅ׆\u0003ʃŁ\u0000׆Ö\u0001\u0000\u0000\u0000ׇ\u05c8\u0003ʃŁ\u0000\u05c8\u05c9\u0003ʩŔ\u0000\u05c9\u05ca\u0003ʋŅ\u0000\u05ca\u05cb\u0003ʟŏ\u0000\u05cb\u05cc\u0003ʡŐ\u0000\u05cc\u05cd\u0003ʟŏ\u0000\u05cdØ\u0001\u0000\u0000\u0000\u05ce\u05cf\u0003ʃŁ\u0000\u05cfא\u0003ʝŎ\u0000אב\u0003ʝŎ\u0000בג\u0003ʗŋ\u0000גד\u0003ʝŎ\u0000דÚ\u0001\u0000\u0000\u0000הו\u0003ʅł\u0000וז\u0003ɻĽ\u0000זח\u0003ʋŅ\u0000חט\u0003ʑň\u0000טÜ\u0001\u0000\u0000\u0000יך\u0003ʅł\u0000ךכ\u0003ɻĽ\u0000כל\u0003ʑň\u0000לם\u0003ʟŏ\u0000םמ\u0003ʃŁ\u0000מÞ\u0001\u0000\u0000\u0000ןנ\u0003ʅł\u0000נס\u0003ʋŅ\u0000סע\u0003ʃŁ\u0000עף\u0003ʑň\u0000ףפ\u0003ʁŀ\u0000פץ\u0003ʡŐ\u0000ץצ\u0003ʃŁ\u0000צק\u0003ʝŎ\u0000קר\u0003ʓʼn\u0000רש\u0003ʋŅ\u0000שת\u0003ʕŊ\u0000ת\u05eb\u0003ɻĽ\u0000\u05eb\u05ec\u0003ʡŐ\u0000\u05ec\u05ed\u0003ʗŋ\u0000\u05ed\u05ee\u0003ʝŎ\u0000\u05eeà\u0001\u0000\u0000\u0000ׯװ\u0003ʅł\u0000װױ\u0003ʋŅ\u0000ױײ\u0003ʕŊ\u0000ײ׳\u0003ʋŅ\u0000׳״\u0003ʟŏ\u0000״" -+ "\u05f5\u0003ʉń\u0000\u05f5â\u0001\u0000\u0000\u0000\u05f6\u05f7\u0003ʅł\u0000\u05f7\u05f8\u0003ʑň\u0000\u05f8\u05f9\u0003ʗŋ\u0000\u05f9\u05fa\u0003ɻĽ\u0000\u05fa\u05fb\u0003ʡŐ\u0000\u05fbä\u0001\u0000\u0000\u0000\u05fc\u05fd\u0003ʅł\u0000\u05fd\u05fe\u0003ʗŋ\u0000\u05fe\u05ff\u0003ʝŎ\u0000\u05ffæ\u0001\u0000\u0000\u0000؀؁\u0003ʅł\u0000؁؂\u0003ʗŋ\u0000؂؃\u0003ʝŎ\u0000؃؄\u0003ʃŁ\u0000؄؅\u0003ɻĽ\u0000؅؆\u0003ɿĿ\u0000؆؇\u0003ʉń\u0000؇è\u0001\u0000\u0000\u0000؈؉\u0003ʅł\u0000؉؊\u0003ʝŎ\u0000؊؋\u0003ʗŋ\u0000؋،\u0003ʓʼn\u0000،ê\u0001\u0000\u0000\u0000؍؎\u0003ʅł\u0000؎؏\u0003ʣő\u0000؏ؐ\u0003ʑň\u0000ؐؑ\u0003ʑň\u0000ؑؒ\u0003ʡŐ\u0000ؒؓ\u0003ʃŁ\u0000ؓؔ\u0003ʩŔ\u0000ؔؕ\u0003ʡŐ\u0000ؕì\u0001\u0000\u0000\u0000ؖؗ\u0003ʅł\u0000ؘؗ\u0003ʣő\u0000ؘؙ\u0003ʕŊ\u0000ؙؚ\u0003ɿĿ\u0000ؚ؛\u0003ʡŐ\u0000؛؜\u0003ʋŅ\u0000؜\u061d\u0003ʗŋ\u0000\u061d؞\u0003ʕŊ\u0000؞î\u0001\u0000\u0000\u0000؟ؠ\u0003ʅł\u0000ؠء\u0003ʣő\u0000ءآ\u0003ʕŊ\u0000آأ\u0003ɿĿ\u0000أؤ\u0003ʡŐ\u0000ؤإ\u0003ʋŅ\u0000إئ\u0003ʗŋ\u0000ئا\u0003ʕŊ\u0000اب\u0003ʟŏ\u0000بð\u0001\u0000\u0000\u0000ةت\u0005>\u0000\u0000تث\u0005=\u0000\u0000ثò\u0001\u0000\u0000\u0000جح\u0003ʇŃ\u0000حخ\u0003ʝŎ\u0000خد\u0003ɻĽ\u0000دذ\u0003ʕŊ\u0000ذر\u0003ʡŐ\u0000رô\u0001\u0000\u0000\u0000زس\u0003ʇŃ\u0000سش\u0003ʝŎ\u0000شص\u0003ɻĽ\u0000صض\u0003ʙŌ\u0000ضط\u0003ʉń\u0000طö\u0001\u0000\u0000\u0000ظع\u0003ʇŃ\u0000عغ\u0003ʝŎ\u0000غػ\u0003ɻĽ\u0000ػؼ\u0003ʙŌ\u0000ؼؽ\u0003ʉń\u0000ؽؾ\u0003ʟŏ\u0000ؾø\u0001\u0000\u0000\u0000ؿـ\u0003ʇŃ\u0000ـف\u0003ʝŎ\u0000فق\u0003ʗŋ\u0000قك\u0003ʣő\u0000كل\u0003ʙŌ\u0000لú\u0001\u0000\u0000\u0000من\u0003ʇŃ\u0000نه\u0003ʝŎ\u0000هو\u0003ʗŋ\u0000وى\u0003ʣő\u0000ىي\u0003" ++ "\u05f5\u0003ʉń\u0000\u05f5â\u0001\u0000\u0000\u0000\u05f6\u05f7\u0003ʅł\u0000\u05f7\u05f8\u0003ʑň\u0000\u05f8\u05f9\u0003ʗŋ\u0000\u05f9\u05fa\u0003ɻĽ\u0000\u05fa\u05fb\u0003ʡŐ\u0000\u05fbä\u0001\u0000\u0000\u0000\u05fc\u05fd\u0003ʅł\u0000\u05fd\u05fe\u0003ʗŋ\u0000\u05fe\u05ff\u0003ʝŎ\u0000\u05ffæ\u0001\u0000\u0000\u0000؀؁\u0003ʅł\u0000؁؂\u0003ʗŋ\u0000؂؃\u0003ʝŎ\u0000؃؄\u0003ʃŁ\u0000؄؅\u0003ɻĽ\u0000؅؆\u0003ɿĿ\u0000؆؇\u0003ʉń\u0000؇è\u0001\u0000\u0000\u0000؈؉\u0003ʅł\u0000؉؊\u0003ʝŎ\u0000؊؋\u0003ʗŋ\u0000؋،\u0003ʓʼn\u0000،ê\u0001\u0000\u0000\u0000؍؎\u0003ʅł\u0000؎؏\u0003ʣő\u0000؏ؐ\u0003ʑň\u0000ؐؑ\u0003ʑň\u0000ؑؒ\u0003ʡŐ\u0000ؒؓ\u0003ʃŁ\u0000ؓؔ\u0003ʩŔ\u0000ؔؕ\u0003ʡŐ\u0000ؕì\u0001\u0000\u0000\u0000ؖؗ\u0003ʅł\u0000ؘؗ\u0003ʣő\u0000ؘؙ\u0003ʕŊ\u0000ؙؚ\u0003ɿĿ\u0000ؚ؛\u0003ʡŐ\u0000؛؜\u0003ʋŅ\u0000؜؝\u0003ʗŋ\u0000؝؞\u0003ʕŊ\u0000؞î\u0001\u0000\u0000\u0000؟ؠ\u0003ʅł\u0000ؠء\u0003ʣő\u0000ءآ\u0003ʕŊ\u0000آأ\u0003ɿĿ\u0000أؤ\u0003ʡŐ\u0000ؤإ\u0003ʋŅ\u0000إئ\u0003ʗŋ\u0000ئا\u0003ʕŊ\u0000اب\u0003ʟŏ\u0000بð\u0001\u0000\u0000\u0000ةت\u0005>\u0000\u0000تث\u0005=\u0000\u0000ثò\u0001\u0000\u0000\u0000جح\u0003ʇŃ\u0000حخ\u0003ʝŎ\u0000خد\u0003ɻĽ\u0000دذ\u0003ʕŊ\u0000ذر\u0003ʡŐ\u0000رô\u0001\u0000\u0000\u0000زس\u0003ʇŃ\u0000سش\u0003ʝŎ\u0000شص\u0003ɻĽ\u0000صض\u0003ʙŌ\u0000ضط\u0003ʉń\u0000طö\u0001\u0000\u0000\u0000ظع\u0003ʇŃ\u0000عغ\u0003ʝŎ\u0000غػ\u0003ɻĽ\u0000ػؼ\u0003ʙŌ\u0000ؼؽ\u0003ʉń\u0000ؽؾ\u0003ʟŏ\u0000ؾø\u0001\u0000\u0000\u0000ؿـ\u0003ʇŃ\u0000ـف\u0003ʝŎ\u0000فق\u0003ʗŋ\u0000قك\u0003ʣő\u0000كل\u0003ʙŌ\u0000لú\u0001\u0000\u0000\u0000من\u0003ʇŃ\u0000نه\u0003ʝŎ\u0000هو\u0003ʗŋ\u0000وى\u0003ʣő\u0000ىي\u0003" + "ʙŌ\u0000يً\u0003ʟŏ\u0000ًü\u0001\u0000\u0000\u0000ٌٍ\u0005>\u0000\u0000ٍþ\u0001\u0000\u0000\u0000َُ\u0003ʉń\u0000ُِ\u0003ʃŁ\u0000ِّ\u0003ɻĽ\u0000ّْ\u0003ʁŀ\u0000ْٓ\u0003ʃŁ\u0000ٓٔ\u0003ʝŎ\u0000ٕٔ\u0003ʟŏ\u0000ٕĀ\u0001\u0000\u0000\u0000ٖٗ\u0003ʉń\u0000ٗ٘\u0003ʗŋ\u0000٘ٙ\u0003ʓʼn\u0000ٙٚ\u0003ʃŁ\u0000ٚĂ\u0001\u0000\u0000\u0000ٜٛ\u0003ʋŅ\u0000ٜٝ\u0003ʁŀ\u0000ٝĄ\u0001\u0000\u0000\u0000ٟٞ\u0003ʋŅ\u0000ٟ٠\u0003ʅł\u0000٠Ć\u0001\u0000\u0000\u0000١٢\u0003ʋŅ\u0000٢٣\u0003ʓʼn\u0000٣٤\u0003ʙŌ\u0000٤٥\u0003ʃŁ\u0000٥٦\u0003ʝŎ\u0000٦٧\u0003ʟŏ\u0000٧٨\u0003ʗŋ\u0000٨٩\u0003ʕŊ\u0000٩٪\u0003ɻĽ\u0000٪٫\u0003ʡŐ\u0000٫٬\u0003ʃŁ\u0000٬Ĉ\u0001\u0000\u0000\u0000٭ٮ\u0003ʋŅ\u0000ٮٯ\u0003ʓʼn\u0000ٯٰ\u0003ʓʼn\u0000ٰٱ\u0003ʣő\u0000ٱٲ\u0003ʡŐ\u0000ٲٳ\u0003ɻĽ\u0000ٳٴ\u0003ɽľ\u0000ٴٵ\u0003ʑň\u0000ٵٶ\u0003ʃŁ\u0000ٶĊ\u0001\u0000\u0000\u0000ٷٸ\u0003ʋŅ\u0000ٸٹ\u0003ʕŊ\u0000ٹČ\u0001\u0000\u0000\u0000ٺٻ\u0003ʋŅ\u0000ٻټ\u0003ʕŊ\u0000ټٽ\u0003ʁŀ\u0000ٽپ\u0003ʃŁ\u0000پٿ\u0003ʩŔ\u0000ٿĎ\u0001\u0000\u0000\u0000ڀځ\u0003ʋŅ\u0000ځڂ\u0003ʕŊ\u0000ڂڃ\u0003ʁŀ\u0000ڃڄ\u0003ʃŁ\u0000ڄڅ\u0003ʩŔ\u0000څچ\u0003ʃŁ\u0000چڇ\u0003ʟŏ\u0000ڇĐ\u0001\u0000\u0000\u0000ڈډ\u0003ʋŅ\u0000ډڊ\u0003ʕŊ\u0000ڊڋ\u0003ʅł\u0000ڋĒ\u0001\u0000\u0000\u0000ڌڍ\u0003ʋŅ\u0000ڍڎ\u0003ʕŊ\u0000ڎڏ\u0003ʅł\u0000ڏڐ\u0003ʋŅ\u0000ڐڑ\u0003ʕŊ\u0000ڑڒ\u0003ʋŅ\u0000ڒړ\u0003ʡŐ\u0000ړڔ\u0003ʫŕ\u0000ڔĔ\u0001\u0000\u0000\u0000ڕږ\u0003ʋŅ\u0000ږڗ\u0003ʕŊ\u0000ڗژ\u0003ʟŏ\u0000ژڙ\u0003ʃŁ\u0000ڙښ\u0003ʝŎ\u0000ښڛ\u0003ʡŐ\u0000ڛĖ\u0001\u0000\u0000\u0000ڜڝ\u0003ʋŅ\u0000ڝڞ\u0003ʕŊ\u0000ڞڟ\u0003ʡŐ" + "\u0000ڟĘ\u0001\u0000\u0000\u0000ڠڡ\u0003ʋŅ\u0000ڡڢ\u0003ʕŊ\u0000ڢڣ\u0003ʡŐ\u0000ڣڤ\u0003ʃŁ\u0000ڤڥ\u0003ʇŃ\u0000ڥڦ\u0003ʃŁ\u0000ڦڧ\u0003ʝŎ\u0000ڧĚ\u0001\u0000\u0000\u0000ڨک\u0003ʋŅ\u0000کڪ\u0003ʟŏ\u0000ڪĜ\u0001\u0000\u0000\u0000ګڬ\u0003ʍņ\u0000ڬڭ\u0003ʗŋ\u0000ڭڮ\u0003ʋŅ\u0000ڮگ\u0003ʕŊ\u0000گĞ\u0001\u0000\u0000\u0000ڰڱ\u0003ʏŇ\u0000ڱڲ\u0003ʃŁ\u0000ڲڳ\u0003ʫŕ\u0000ڳĠ\u0001\u0000\u0000\u0000ڴڵ\u0003ʑň\u0000ڵڶ\u0003ɻĽ\u0000ڶڷ\u0003ɽľ\u0000ڷڸ\u0003ʃŁ\u0000ڸڹ\u0003ʑň\u0000ڹĢ\u0001\u0000\u0000\u0000ںڻ\u0003ʑň\u0000ڻڼ\u0003ɻĽ\u0000ڼڽ\u0003ɽľ\u0000ڽھ\u0003ʃŁ\u0000ھڿ\u0003ʑň\u0000ڿۀ\u0003ʟŏ\u0000ۀĤ\u0001\u0000\u0000\u0000ہۂ\u0005&\u0000\u0000ۂĦ\u0001\u0000\u0000\u0000ۃۄ\u0005!\u0000\u0000ۄĨ\u0001\u0000\u0000\u0000ۅۆ\u0005[\u0000\u0000ۆĪ\u0001\u0000\u0000\u0000ۇۈ\u0005{\u0000\u0000ۈĬ\u0001\u0000\u0000\u0000ۉۊ\u0005<\u0000\u0000ۊۋ\u0005=\u0000\u0000ۋĮ\u0001\u0000\u0000\u0000یۍ\u0003ʑň\u0000ۍێ\u0003ʃŁ\u0000ێۏ\u0003ɻĽ\u0000ۏې\u0003ʁŀ\u0000ېۑ\u0003ʋŅ\u0000ۑے\u0003ʕŊ\u0000ےۓ\u0003ʇŃ\u0000ۓİ\u0001\u0000\u0000\u0000۔ە\u0003ʑň\u0000ەۖ\u0003ʋŅ\u0000ۖۗ\u0003ʓʼn\u0000ۗۘ\u0003ʋŅ\u0000ۘۙ\u0003ʡŐ\u0000ۙIJ\u0001\u0000\u0000\u0000ۚۛ\u0003ʑň\u0000ۛۜ\u0003ʋŅ\u0000ۜ۝\u0003ʟŏ\u0000۝۞\u0003ʡŐ\u0000۞Ĵ\u0001\u0000\u0000\u0000۟۠\u0003ʑň\u0000۠ۡ\u0003ʗŋ\u0000ۡۢ\u0003ɻĽ\u0000ۣۢ\u0003ʁŀ\u0000ۣĶ\u0001\u0000\u0000\u0000ۤۥ\u0003ʑň\u0000ۥۦ\u0003ʗŋ\u0000ۦۧ\u0003ɿĿ\u0000ۧۨ\u0003ɻĽ\u0000ۨ۩\u0003ʑň\u0000۩ĸ\u0001\u0000\u0000\u0000۪۫\u0003ʑň\u0000۫۬\u0003ʗŋ\u0000ۭ۬\u0003ʗŋ\u0000ۭۮ\u0003ʏŇ\u0000ۮۯ\u0003ʣő\u0000ۯ۰\u0003ʙŌ\u0000۰ĺ\u0001\u0000\u0000\u0000۱۲\u0005(\u0000\u0000۲ļ\u0001\u0000\u0000\u0000۳۴\u0005<\u0000\u0000۴" + "ľ\u0001\u0000\u0000\u0000۵۶\u0003ʓʼn\u0000۶۷\u0003ɻĽ\u0000۷۸\u0003ʕŊ\u0000۸۹\u0003ɻĽ\u0000۹ۺ\u0003ʇŃ\u0000ۺۻ\u0003ʃŁ\u0000ۻۼ\u0003ʓʼn\u0000ۼ۽\u0003ʃŁ\u0000۽۾\u0003ʕŊ\u0000۾ۿ\u0003ʡŐ\u0000ۿŀ\u0001\u0000\u0000\u0000܀܁\u0003ʓʼn\u0000܁܂\u0003ɻĽ\u0000܂܃\u0003ʙŌ\u0000܃ł\u0001\u0000\u0000\u0000܄܅\u0003ʓʼn\u0000܅܆\u0003ɻĽ\u0000܆܇\u0003ʡŐ\u0000܇܈\u0003ɿĿ\u0000܈܉\u0003ʉń\u0000܉ń\u0001\u0000\u0000\u0000܊܋\u0003ʓʼn\u0000܋܌\u0003ʃŁ\u0000܌܍\u0003ʝŎ\u0000܍\u070e\u0003ʇŃ\u0000\u070e܏\u0003ʃŁ\u0000܏ņ\u0001\u0000\u0000\u0000ܐܑ\u0005-\u0000\u0000ܑň\u0001\u0000\u0000\u0000ܒܓ\u0005%\u0000\u0000ܓŊ\u0001\u0000\u0000\u0000ܔܕ\u0005!\u0000\u0000ܕܖ\u0005=\u0000\u0000ܖŌ\u0001\u0000\u0000\u0000ܗܘ\u0005<\u0000\u0000ܘܙ\u0005>\u0000\u0000ܙŎ\u0001\u0000\u0000\u0000ܚܛ\u0003ʕŊ\u0000ܛܜ\u0003ɻĽ\u0000ܜܝ\u0003ʓʼn\u0000ܝܞ\u0003ʃŁ\u0000ܞŐ\u0001\u0000\u0000\u0000ܟܠ\u0003ʕŊ\u0000ܠܡ\u0003ɻĽ\u0000ܡܢ\u0003ʓʼn\u0000ܢܣ\u0003ʃŁ\u0000ܣܤ\u0003ʟŏ\u0000ܤŒ\u0001\u0000\u0000\u0000ܥܦ\u0003ʕŊ\u0000ܦܧ\u0003ɻĽ\u0000ܧܨ\u0003ʕŊ\u0000ܨŔ\u0001\u0000\u0000\u0000ܩܪ\u0003ʕŊ\u0000ܪܫ\u0003ʅł\u0000ܫܬ\u0003ɿĿ\u0000ܬŖ\u0001\u0000\u0000\u0000ܭܮ\u0003ʕŊ\u0000ܮܯ\u0003ʅł\u0000ܯܰ\u0003ʁŀ\u0000ܰŘ\u0001\u0000\u0000\u0000ܱܲ\u0003ʕŊ\u0000ܲܳ\u0003ʅł\u0000ܴܳ\u0003ʏŇ\u0000ܴܵ\u0003ɿĿ\u0000ܵŚ\u0001\u0000\u0000\u0000ܷܶ\u0003ʕŊ\u0000ܷܸ\u0003ʅł\u0000ܸܹ\u0003ʏŇ\u0000ܹܺ\u0003ʁŀ\u0000ܺŜ\u0001\u0000\u0000\u0000ܻܼ\u0003ʕŊ\u0000ܼܽ\u0003ʃŁ\u0000ܾܽ\u0003ʧœ\u0000ܾŞ\u0001\u0000\u0000\u0000ܿ݀\u0003ʕŊ\u0000݀݁\u0003ʗŋ\u0000݂݁\u0003ʁŀ\u0000݂݃\u0003ʃŁ\u0000݃Š\u0001\u0000\u0000\u0000݄݅\u0003ʕŊ\u0000݆݅\u0003ʗŋ\u0000݆݇\u0003ʁŀ\u0000݈݇\u0003ʃŁ\u0000݈݉\u0003ʡŐ\u0000݉݊\u0003" + "ɻĽ\u0000݊\u074b\u0003ɿĿ\u0000\u074b\u074c\u0003ʉń\u0000\u074cŢ\u0001\u0000\u0000\u0000ݍݎ\u0003ʕŊ\u0000ݎݏ\u0003ʗŋ\u0000ݏݐ\u0003ʁŀ\u0000ݐݑ\u0003ʃŁ\u0000ݑݒ\u0003ʟŏ\u0000ݒŤ\u0001\u0000\u0000\u0000ݓݔ\u0003ʕŊ\u0000ݔݕ\u0003ʗŋ\u0000ݕݖ\u0003ʕŊ\u0000ݖݗ\u0003ʃŁ\u0000ݗŦ\u0001\u0000\u0000\u0000ݘݙ\u0003ʕŊ\u0000ݙݚ\u0003ʗŋ\u0000ݚݛ\u0003ʝŎ\u0000ݛݜ\u0003ʓʼn\u0000ݜݝ\u0003ɻĽ\u0000ݝݞ\u0003ʑň\u0000ݞݟ\u0003ʋŅ\u0000ݟݠ\u0003ʭŖ\u0000ݠݡ\u0003ʃŁ\u0000ݡŨ\u0001\u0000\u0000\u0000ݢݣ\u0003ʕŊ\u0000ݣݤ\u0003ʗŋ\u0000ݤݥ\u0003ʝŎ\u0000ݥݦ\u0003ʓʼn\u0000ݦݧ\u0003ɻĽ\u0000ݧݨ\u0003ʑň\u0000ݨݩ\u0003ʋŅ\u0000ݩݪ\u0003ʭŖ\u0000ݪݫ\u0003ʃŁ\u0000ݫݬ\u0003ʁŀ\u0000ݬŪ\u0001\u0000\u0000\u0000ݭݮ\u0003ʕŊ\u0000ݮݯ\u0003ʗŋ\u0000ݯݰ\u0003ʡŐ\u0000ݰŬ\u0001\u0000\u0000\u0000ݱݲ\u0003ʕŊ\u0000ݲݳ\u0003ʗŋ\u0000ݳݴ\u0003ʡŐ\u0000ݴݵ\u0003ʉń\u0000ݵݶ\u0003ʋŅ\u0000ݶݷ\u0003ʕŊ\u0000ݷݸ\u0003ʇŃ\u0000ݸŮ\u0001\u0000\u0000\u0000ݹݺ\u0003ʕŊ\u0000ݺݻ\u0003ʗŋ\u0000ݻݼ\u0003ʧœ\u0000ݼݽ\u0003ɻĽ\u0000ݽݾ\u0003ʋŅ\u0000ݾݿ\u0003ʡŐ\u0000ݿŰ\u0001\u0000\u0000\u0000ހށ\u0003ʕŊ\u0000ށނ\u0003ʣő\u0000ނރ\u0003ʑň\u0000ރބ\u0003ʑň\u0000ބŲ\u0001\u0000\u0000\u0000ޅކ\u0003ʗŋ\u0000ކއ\u0003ʅł\u0000އŴ\u0001\u0000\u0000\u0000ވމ\u0003ʗŋ\u0000މފ\u0003ʅł\u0000ފދ\u0003ʅł\u0000ދތ\u0003ʟŏ\u0000ތލ\u0003ʃŁ\u0000ލގ\u0003ʡŐ\u0000ގŶ\u0001\u0000\u0000\u0000ޏސ\u0003ʗŋ\u0000ސޑ\u0003ʕŊ\u0000ޑŸ\u0001\u0000\u0000\u0000ޒޓ\u0003ʗŋ\u0000ޓޔ\u0003ʕŊ\u0000ޔޕ\u0003ʑň\u0000ޕޖ\u0003ʫŕ\u0000ޖź\u0001\u0000\u0000\u0000ޗޘ\u0003ʗŋ\u0000ޘޙ\u0003ʙŌ\u0000ޙޚ\u0003ʡŐ\u0000ޚޛ\u0003ʋŅ\u0000ޛޜ\u0003ʗŋ\u0000ޜޝ\u0003ʕŊ\u0000ޝޞ\u0003ɻĽ\u0000ޞޟ\u0003ʑň" + "\u0000ޟż\u0001\u0000\u0000\u0000ޠޡ\u0003ʗŋ\u0000ޡޢ\u0003ʙŌ\u0000ޢޣ\u0003ʡŐ\u0000ޣޤ\u0003ʋŅ\u0000ޤޥ\u0003ʗŋ\u0000ޥަ\u0003ʕŊ\u0000ަާ\u0003ʟŏ\u0000ާž\u0001\u0000\u0000\u0000ިީ\u0003ʗŋ\u0000ީު\u0003ʙŌ\u0000ުޫ\u0003ʡŐ\u0000ޫެ\u0003ʋŅ\u0000ެޭ\u0003ʗŋ\u0000ޭޮ\u0003ʕŊ\u0000ޮƀ\u0001\u0000\u0000\u0000ޯް\u0003ʗŋ\u0000ްޱ\u0003ʝŎ\u0000ޱƂ\u0001\u0000\u0000\u0000\u07b2\u07b3\u0003ʗŋ\u0000\u07b3\u07b4\u0003ʝŎ\u0000\u07b4\u07b5\u0003ʁŀ\u0000\u07b5\u07b6\u0003ʃŁ\u0000\u07b6\u07b7\u0003ʝŎ\u0000\u07b7Ƅ\u0001\u0000\u0000\u0000\u07b8\u07b9\u0003ʗŋ\u0000\u07b9\u07ba\u0003ʣő\u0000\u07ba\u07bb\u0003ʡŐ\u0000\u07bb\u07bc\u0003ʙŌ\u0000\u07bc\u07bd\u0003ʣő\u0000\u07bd\u07be\u0003ʡŐ\u0000\u07beƆ\u0001\u0000\u0000\u0000\u07bf߀\u0003ʙŌ\u0000߀߁\u0003ɻĽ\u0000߁߂\u0003ʟŏ\u0000߂߃\u0003ʟŏ\u0000߃߄\u0003ʧœ\u0000߄߅\u0003ʗŋ\u0000߅߆\u0003ʝŎ\u0000߆߇\u0003ʁŀ\u0000߇ƈ\u0001\u0000\u0000\u0000߈߉\u0003ʙŌ\u0000߉ߊ\u0003ɻĽ\u0000ߊߋ\u0003ʟŏ\u0000ߋߌ\u0003ʟŏ\u0000ߌߍ\u0003ʧœ\u0000ߍߎ\u0003ʗŋ\u0000ߎߏ\u0003ʝŎ\u0000ߏߐ\u0003ʁŀ\u0000ߐߑ\u0003ʟŏ\u0000ߑƊ\u0001\u0000\u0000\u0000ߒߓ\u0003ʙŌ\u0000ߓߔ\u0003ɻĽ\u0000ߔߕ\u0003ʡŐ\u0000ߕߖ\u0003ʉń\u0000ߖƌ\u0001\u0000\u0000\u0000ߗߘ\u0003ʙŌ\u0000ߘߙ\u0003ɻĽ\u0000ߙߚ\u0003ʡŐ\u0000ߚߛ\u0003ʉń\u0000ߛߜ\u0003ʟŏ\u0000ߜƎ\u0001\u0000\u0000\u0000ߝߞ\u0003ʙŌ\u0000ߞߟ\u0003ʃŁ\u0000ߟߠ\u0003ʝŎ\u0000ߠߡ\u0003ʋŅ\u0000ߡߢ\u0003ʗŋ\u0000ߢߣ\u0003ʁŀ\u0000ߣߤ\u0003ʋŅ\u0000ߤߥ\u0003ɿĿ\u0000ߥƐ\u0001\u0000\u0000\u0000ߦߧ\u0003ʙŌ\u0000ߧߨ\u0003ʑň\u0000ߨߩ\u0003ɻĽ\u0000ߩߪ\u0003ʋŅ\u0000ߪ߫\u0003ʕŊ\u0000߫߬\u0003ʡŐ\u0000߬߭\u0003ʃŁ\u0000߭߮\u0003ʩŔ\u0000߮߯\u0003ʡŐ\u0000߯ƒ\u0001\u0000\u0000\u0000߰߱\u0005+\u0000\u0000߱Ɣ\u0001\u0000\u0000\u0000߲߳\u0005+\u0000\u0000߳ߴ\u0005=\u0000\u0000ߴ" + "Ɩ\u0001\u0000\u0000\u0000ߵ߶\u0003ʙŌ\u0000߶߷\u0003ʗŋ\u0000߷߸\u0003ʋŅ\u0000߸߹\u0003ʕŊ\u0000߹ߺ\u0003ʡŐ\u0000ߺƘ\u0001\u0000\u0000\u0000\u07fb\u07fc\u0003ʙŌ\u0000\u07fc߽\u0003ʗŋ\u0000߽߾\u0003ʙŌ\u0000߾߿\u0003ʣő\u0000߿ࠀ\u0003ʑň\u0000ࠀࠁ\u0003ɻĽ\u0000ࠁࠂ\u0003ʡŐ\u0000ࠂࠃ\u0003ʃŁ\u0000ࠃࠄ\u0003ʁŀ\u0000ࠄƚ\u0001\u0000\u0000\u0000ࠅࠆ\u0005^\u0000\u0000ࠆƜ\u0001\u0000\u0000\u0000ࠇࠈ\u0003ʙŌ\u0000ࠈࠉ\u0003ʝŎ\u0000ࠉࠊ\u0003ʋŅ\u0000ࠊࠋ\u0003ʓʼn\u0000ࠋࠌ\u0003ɻĽ\u0000ࠌࠍ\u0003ʝŎ\u0000ࠍࠎ\u0003ʫŕ\u0000ࠎƞ\u0001\u0000\u0000\u0000ࠏࠐ\u0003ʙŌ\u0000ࠐࠑ\u0003ʝŎ\u0000ࠑࠒ\u0003ʋŅ\u0000ࠒࠓ\u0003ʓʼn\u0000ࠓࠔ\u0003ɻĽ\u0000ࠔࠕ\u0003ʝŎ\u0000ࠕࠖ\u0003ʋŅ\u0000ࠖࠗ\u0003ʃŁ\u0000ࠗ࠘\u0003ʟŏ\u0000࠘Ơ\u0001\u0000\u0000\u0000࠙ࠚ\u0003ʙŌ\u0000ࠚࠛ\u0003ʝŎ\u0000ࠛࠜ\u0003ʋŅ\u0000ࠜࠝ\u0003ʥŒ\u0000ࠝࠞ\u0003ʋŅ\u0000ࠞࠟ\u0003ʑň\u0000ࠟࠠ\u0003ʃŁ\u0000ࠠࠡ\u0003ʇŃ\u0000ࠡࠢ\u0003ʃŁ\u0000ࠢƢ\u0001\u0000\u0000\u0000ࠣࠤ\u0003ʙŌ\u0000ࠤࠥ\u0003ʝŎ\u0000ࠥࠦ\u0003ʋŅ\u0000ࠦࠧ\u0003ʥŒ\u0000ࠧࠨ\u0003ʋŅ\u0000ࠨࠩ\u0003ʑň\u0000ࠩࠪ\u0003ʃŁ\u0000ࠪࠫ\u0003ʇŃ\u0000ࠫࠬ\u0003ʃŁ\u0000ࠬ࠭\u0003ʟŏ\u0000࠭Ƥ\u0001\u0000\u0000\u0000\u082e\u082f\u0003ʙŌ\u0000\u082f࠰\u0003ʝŎ\u0000࠰࠱\u0003ʗŋ\u0000࠱࠲\u0003ɿĿ\u0000࠲࠳\u0003ʃŁ\u0000࠳࠴\u0003ʁŀ\u0000࠴࠵\u0003ʣő\u0000࠵࠶\u0003ʝŎ\u0000࠶࠷\u0003ʃŁ\u0000࠷Ʀ\u0001\u0000\u0000\u0000࠸࠹\u0003ʙŌ\u0000࠹࠺\u0003ʝŎ\u0000࠺࠻\u0003ʗŋ\u0000࠻࠼\u0003ɿĿ\u0000࠼࠽\u0003ʃŁ\u0000࠽࠾\u0003ʁŀ\u0000࠾\u083f\u0003ʣő\u0000\u083fࡀ\u0003ʝŎ\u0000ࡀࡁ\u0003ʃŁ\u0000ࡁࡂ\u0003ʟŏ\u0000ࡂƨ\u0001\u0000\u0000\u0000ࡃࡄ\u0003ʙŌ\u0000ࡄࡅ\u0003ʝŎ\u0000ࡅࡆ\u0003ʗŋ\u0000ࡆࡇ\u0003ʙŌ\u0000ࡇࡈ\u0003ʃŁ\u0000ࡈࡉ\u0003ʝŎ\u0000ࡉࡊ\u0003" -+ "ʡŐ\u0000ࡊࡋ\u0003ʋŅ\u0000ࡋࡌ\u0003ʃŁ\u0000ࡌࡍ\u0003ʟŏ\u0000ࡍƪ\u0001\u0000\u0000\u0000ࡎࡏ\u0003ʙŌ\u0000ࡏࡐ\u0003ʝŎ\u0000ࡐࡑ\u0003ʗŋ\u0000ࡑࡒ\u0003ʙŌ\u0000ࡒࡓ\u0003ʃŁ\u0000ࡓࡔ\u0003ʝŎ\u0000ࡔࡕ\u0003ʡŐ\u0000ࡕࡖ\u0003ʫŕ\u0000ࡖƬ\u0001\u0000\u0000\u0000ࡗࡘ\u0003ʙŌ\u0000ࡘ࡙\u0003ʝŎ\u0000࡙࡚\u0003ʗŋ\u0000࡚࡛\u0003ʥŒ\u0000࡛\u085c\u0003ʋŅ\u0000\u085c\u085d\u0003ʁŀ\u0000\u085d࡞\u0003ʃŁ\u0000࡞\u085f\u0003ʝŎ\u0000\u085fƮ\u0001\u0000\u0000\u0000ࡠࡡ\u0003ʙŌ\u0000ࡡࡢ\u0003ʝŎ\u0000ࡢࡣ\u0003ʗŋ\u0000ࡣࡤ\u0003ʥŒ\u0000ࡤࡥ\u0003ʋŅ\u0000ࡥࡦ\u0003ʁŀ\u0000ࡦࡧ\u0003ʃŁ\u0000ࡧࡨ\u0003ʝŎ\u0000ࡨࡩ\u0003ʟŏ\u0000ࡩư\u0001\u0000\u0000\u0000ࡪ\u086b\u0005?\u0000\u0000\u086bƲ\u0001\u0000\u0000\u0000\u086c\u086d\u0003ʝŎ\u0000\u086d\u086e\u0003ɻĽ\u0000\u086e\u086f\u0003ʕŊ\u0000\u086f\u0870\u0003ʇŃ\u0000\u0870\u0871\u0003ʃŁ\u0000\u0871ƴ\u0001\u0000\u0000\u0000\u0872\u0873\u0005]\u0000\u0000\u0873ƶ\u0001\u0000\u0000\u0000\u0874\u0875\u0005}\u0000\u0000\u0875Ƹ\u0001\u0000\u0000\u0000\u0876\u0877\u0003ʝŎ\u0000\u0877\u0878\u0003ʃŁ\u0000\u0878\u0879\u0003ɻĽ\u0000\u0879\u087a\u0003ʁŀ\u0000\u087aƺ\u0001\u0000\u0000\u0000\u087b\u087c\u0003ʝŎ\u0000\u087c\u087d\u0003ʃŁ\u0000\u087d\u087e\u0003ɻĽ\u0000\u087e\u087f\u0003ʑň\u0000\u087f\u0880\u0003ʑň\u0000\u0880\u0881\u0003ʗŋ\u0000\u0881\u0882\u0003ɿĿ\u0000\u0882\u0883\u0003ɻĽ\u0000\u0883\u0884\u0003ʡŐ\u0000\u0884\u0885\u0003ʃŁ\u0000\u0885Ƽ\u0001\u0000\u0000\u0000\u0886\u0887\u0003ʝŎ\u0000\u0887\u0888\u0003ʃŁ\u0000\u0888\u0889\u0003ʁŀ\u0000\u0889\u088a\u0003ʣő\u0000\u088a\u088b\u0003ɿĿ\u0000\u088b\u088c\u0003ʃŁ\u0000\u088cƾ\u0001\u0000\u0000\u0000\u088d\u088e\u0003ʝŎ\u0000\u088e\u088f\u0003ʃŁ\u0000\u088f\u0890\u0003ʕŊ\u0000\u0890\u0891\u0003ɻĽ\u0000\u0891\u0892\u0003ʓʼn\u0000\u0892\u0893\u0003ʃŁ\u0000\u0893ǀ\u0001\u0000\u0000\u0000\u0894\u0895\u0005=\u0000\u0000\u0895\u0896\u0005~\u0000\u0000\u0896ǂ\u0001\u0000\u0000\u0000\u0897\u0898\u0003ʝŎ\u0000\u0898\u0899\u0003ʃŁ\u0000\u0899\u089a\u0003ʑň\u0000\u089aDŽ\u0001\u0000\u0000\u0000\u089b\u089c\u0003ʝŎ\u0000\u089c\u089d\u0003ʃŁ\u0000\u089d\u089e\u0003ʑň\u0000\u089e\u089f\u0003ɻĽ" -+ "\u0000\u089fࢠ\u0003ʡŐ\u0000ࢠࢡ\u0003ʋŅ\u0000ࢡࢢ\u0003ʗŋ\u0000ࢢࢣ\u0003ʕŊ\u0000ࢣࢤ\u0003ʟŏ\u0000ࢤࢥ\u0003ʉń\u0000ࢥࢦ\u0003ʋŅ\u0000ࢦࢧ\u0003ʙŌ\u0000ࢧdž\u0001\u0000\u0000\u0000ࢨࢩ\u0003ʝŎ\u0000ࢩࢪ\u0003ʃŁ\u0000ࢪࢫ\u0003ʑň\u0000ࢫࢬ\u0003ɻĽ\u0000ࢬࢭ\u0003ʡŐ\u0000ࢭࢮ\u0003ʋŅ\u0000ࢮࢯ\u0003ʗŋ\u0000ࢯࢰ\u0003ʕŊ\u0000ࢰࢱ\u0003ʟŏ\u0000ࢱࢲ\u0003ʉń\u0000ࢲࢳ\u0003ʋŅ\u0000ࢳࢴ\u0003ʙŌ\u0000ࢴ\u08b5\u0003ʟŏ\u0000\u08b5Lj\u0001\u0000\u0000\u0000ࢶࢷ\u0003ʝŎ\u0000ࢷࢸ\u0003ʃŁ\u0000ࢸࢹ\u0003ʓʼn\u0000ࢹࢺ\u0003ʗŋ\u0000ࢺࢻ\u0003ʥŒ\u0000ࢻࢼ\u0003ʃŁ\u0000ࢼNJ\u0001\u0000\u0000\u0000ࢽࢾ\u0003ʝŎ\u0000ࢾࢿ\u0003ʃŁ\u0000ࢿࣀ\u0003ʙŌ\u0000ࣀࣁ\u0003ʃŁ\u0000ࣁࣂ\u0003ɻĽ\u0000ࣂࣃ\u0003ʡŐ\u0000ࣃࣄ\u0003ɻĽ\u0000ࣄࣅ\u0003ɽľ\u0000ࣅࣆ\u0003ʑň\u0000ࣆࣇ\u0003ʃŁ\u0000ࣇnj\u0001\u0000\u0000\u0000\u08c8\u08c9\u0003ʝŎ\u0000\u08c9\u08ca\u0003ʃŁ\u0000\u08ca\u08cb\u0003ʙŌ\u0000\u08cb\u08cc\u0003ʑň\u0000\u08cc\u08cd\u0003ɻĽ\u0000\u08cd\u08ce\u0003ɿĿ\u0000\u08ce\u08cf\u0003ʃŁ\u0000\u08cfǎ\u0001\u0000\u0000\u0000\u08d0\u08d1\u0003ʝŎ\u0000\u08d1\u08d2\u0003ʃŁ\u0000\u08d2࣓\u0003ʙŌ\u0000࣓ࣔ\u0003ʗŋ\u0000ࣔࣕ\u0003ʝŎ\u0000ࣕࣖ\u0003ʡŐ\u0000ࣖǐ\u0001\u0000\u0000\u0000ࣗࣘ\u0003ʝ", ++ "ʡŐ\u0000ࡊࡋ\u0003ʋŅ\u0000ࡋࡌ\u0003ʃŁ\u0000ࡌࡍ\u0003ʟŏ\u0000ࡍƪ\u0001\u0000\u0000\u0000ࡎࡏ\u0003ʙŌ\u0000ࡏࡐ\u0003ʝŎ\u0000ࡐࡑ\u0003ʗŋ\u0000ࡑࡒ\u0003ʙŌ\u0000ࡒࡓ\u0003ʃŁ\u0000ࡓࡔ\u0003ʝŎ\u0000ࡔࡕ\u0003ʡŐ\u0000ࡕࡖ\u0003ʫŕ\u0000ࡖƬ\u0001\u0000\u0000\u0000ࡗࡘ\u0003ʙŌ\u0000ࡘ࡙\u0003ʝŎ\u0000࡙࡚\u0003ʗŋ\u0000࡚࡛\u0003ʥŒ\u0000࡛\u085c\u0003ʋŅ\u0000\u085c\u085d\u0003ʁŀ\u0000\u085d࡞\u0003ʃŁ\u0000࡞\u085f\u0003ʝŎ\u0000\u085fƮ\u0001\u0000\u0000\u0000ࡠࡡ\u0003ʙŌ\u0000ࡡࡢ\u0003ʝŎ\u0000ࡢࡣ\u0003ʗŋ\u0000ࡣࡤ\u0003ʥŒ\u0000ࡤࡥ\u0003ʋŅ\u0000ࡥࡦ\u0003ʁŀ\u0000ࡦࡧ\u0003ʃŁ\u0000ࡧࡨ\u0003ʝŎ\u0000ࡨࡩ\u0003ʟŏ\u0000ࡩư\u0001\u0000\u0000\u0000ࡪ\u086b\u0005?\u0000\u0000\u086bƲ\u0001\u0000\u0000\u0000\u086c\u086d\u0003ʝŎ\u0000\u086d\u086e\u0003ɻĽ\u0000\u086e\u086f\u0003ʕŊ\u0000\u086fࡰ\u0003ʇŃ\u0000ࡰࡱ\u0003ʃŁ\u0000ࡱƴ\u0001\u0000\u0000\u0000ࡲࡳ\u0005]\u0000\u0000ࡳƶ\u0001\u0000\u0000\u0000ࡴࡵ\u0005}\u0000\u0000ࡵƸ\u0001\u0000\u0000\u0000ࡶࡷ\u0003ʝŎ\u0000ࡷࡸ\u0003ʃŁ\u0000ࡸࡹ\u0003ɻĽ\u0000ࡹࡺ\u0003ʁŀ\u0000ࡺƺ\u0001\u0000\u0000\u0000ࡻࡼ\u0003ʝŎ\u0000ࡼࡽ\u0003ʃŁ\u0000ࡽࡾ\u0003ɻĽ\u0000ࡾࡿ\u0003ʑň\u0000ࡿࢀ\u0003ʑň\u0000ࢀࢁ\u0003ʗŋ\u0000ࢁࢂ\u0003ɿĿ\u0000ࢂࢃ\u0003ɻĽ\u0000ࢃࢄ\u0003ʡŐ\u0000ࢄࢅ\u0003ʃŁ\u0000ࢅƼ\u0001\u0000\u0000\u0000ࢆࢇ\u0003ʝŎ\u0000ࢇ࢈\u0003ʃŁ\u0000࢈ࢉ\u0003ʁŀ\u0000ࢉࢊ\u0003ʣő\u0000ࢊࢋ\u0003ɿĿ\u0000ࢋࢌ\u0003ʃŁ\u0000ࢌƾ\u0001\u0000\u0000\u0000ࢍࢎ\u0003ʝŎ\u0000ࢎ\u088f\u0003ʃŁ\u0000\u088f࢐\u0003ʕŊ\u0000࢐࢑\u0003ɻĽ\u0000࢑\u0892\u0003ʓʼn\u0000\u0892\u0893\u0003ʃŁ\u0000\u0893ǀ\u0001\u0000\u0000\u0000\u0894\u0895\u0005=\u0000\u0000\u0895\u0896\u0005~\u0000\u0000\u0896ǂ\u0001\u0000\u0000\u0000\u0897࢘\u0003ʝŎ\u0000࢙࢘\u0003ʃŁ\u0000࢙࢚\u0003ʑň\u0000࢚DŽ\u0001\u0000\u0000\u0000࢛࢜\u0003ʝŎ\u0000࢜࢝\u0003ʃŁ\u0000࢝࢞\u0003ʑň\u0000࢞࢟\u0003ɻĽ" ++ "\u0000࢟ࢠ\u0003ʡŐ\u0000ࢠࢡ\u0003ʋŅ\u0000ࢡࢢ\u0003ʗŋ\u0000ࢢࢣ\u0003ʕŊ\u0000ࢣࢤ\u0003ʟŏ\u0000ࢤࢥ\u0003ʉń\u0000ࢥࢦ\u0003ʋŅ\u0000ࢦࢧ\u0003ʙŌ\u0000ࢧdž\u0001\u0000\u0000\u0000ࢨࢩ\u0003ʝŎ\u0000ࢩࢪ\u0003ʃŁ\u0000ࢪࢫ\u0003ʑň\u0000ࢫࢬ\u0003ɻĽ\u0000ࢬࢭ\u0003ʡŐ\u0000ࢭࢮ\u0003ʋŅ\u0000ࢮࢯ\u0003ʗŋ\u0000ࢯࢰ\u0003ʕŊ\u0000ࢰࢱ\u0003ʟŏ\u0000ࢱࢲ\u0003ʉń\u0000ࢲࢳ\u0003ʋŅ\u0000ࢳࢴ\u0003ʙŌ\u0000ࢴࢵ\u0003ʟŏ\u0000ࢵLj\u0001\u0000\u0000\u0000ࢶࢷ\u0003ʝŎ\u0000ࢷࢸ\u0003ʃŁ\u0000ࢸࢹ\u0003ʓʼn\u0000ࢹࢺ\u0003ʗŋ\u0000ࢺࢻ\u0003ʥŒ\u0000ࢻࢼ\u0003ʃŁ\u0000ࢼNJ\u0001\u0000\u0000\u0000ࢽࢾ\u0003ʝŎ\u0000ࢾࢿ\u0003ʃŁ\u0000ࢿࣀ\u0003ʙŌ\u0000ࣀࣁ\u0003ʃŁ\u0000ࣁࣂ\u0003ɻĽ\u0000ࣂࣃ\u0003ʡŐ\u0000ࣃࣄ\u0003ɻĽ\u0000ࣄࣅ\u0003ɽľ\u0000ࣅࣆ\u0003ʑň\u0000ࣆࣇ\u0003ʃŁ\u0000ࣇnj\u0001\u0000\u0000\u0000ࣈࣉ\u0003ʝŎ\u0000ࣉ࣊\u0003ʃŁ\u0000࣊࣋\u0003ʙŌ\u0000࣋࣌\u0003ʑň\u0000࣌࣍\u0003ɻĽ\u0000࣍࣎\u0003ɿĿ\u0000࣏࣎\u0003ʃŁ\u0000࣏ǎ\u0001\u0000\u0000\u0000࣐࣑\u0003ʝŎ\u0000࣑࣒\u0003ʃŁ\u0000࣒࣓\u0003ʙŌ\u0000࣓ࣔ\u0003ʗŋ\u0000ࣔࣕ\u0003ʝŎ\u0000ࣕࣖ\u0003ʡŐ\u0000ࣖǐ\u0001\u0000\u0000\u0000ࣗࣘ\u0003ʝ", "Ŏ\u0000ࣘࣙ\u0003ʃŁ\u0000ࣙࣚ\u0003ʛō\u0000ࣚࣛ\u0003ʣő\u0000ࣛࣜ\u0003ʋŅ\u0000ࣜࣝ\u0003ʝŎ\u0000ࣝࣞ\u0003ʃŁ\u0000ࣞǒ\u0001\u0000\u0000\u0000ࣟ࣠\u0003ʝŎ\u0000࣠࣡\u0003ʃŁ\u0000࣡࣢\u0003ʛō\u0000࣢ࣣ\u0003ʣő\u0000ࣣࣤ\u0003ʋŅ\u0000ࣤࣥ\u0003ʝŎ\u0000ࣦࣥ\u0003ʃŁ\u0000ࣦࣧ\u0003ʁŀ\u0000ࣧǔ\u0001\u0000\u0000\u0000ࣩࣨ\u0003ʝŎ\u0000ࣩ࣪\u0003ʃŁ\u0000࣪࣫\u0003ʟŏ\u0000࣫࣬\u0003ʡŐ\u0000࣭࣬\u0003ʝŎ\u0000࣭࣮\u0003ʋŅ\u0000࣮࣯\u0003ɿĿ\u0000ࣰ࣯\u0003ʡŐ\u0000ࣰǖ\u0001\u0000\u0000\u0000ࣱࣲ\u0003ʝŎ\u0000ࣲࣳ\u0003ʃŁ\u0000ࣳࣴ\u0003ʡŐ\u0000ࣴࣵ\u0003ʣő\u0000ࣶࣵ\u0003ʝŎ\u0000ࣶࣷ\u0003ʕŊ\u0000ࣷǘ\u0001\u0000\u0000\u0000ࣹࣸ\u0003ʝŎ\u0000ࣹࣺ\u0003ʃŁ\u0000ࣺࣻ\u0003ʥŒ\u0000ࣻࣼ\u0003ʗŋ\u0000ࣼࣽ\u0003ʏŇ\u0000ࣽࣾ\u0003ʃŁ\u0000ࣾǚ\u0001\u0000\u0000\u0000ࣿऀ\u0003ʝŎ\u0000ऀँ\u0003ʗŋ\u0000ँं\u0003ʑň\u0000ंः\u0003ʃŁ\u0000ःǜ\u0001\u0000\u0000\u0000ऄअ\u0003ʝŎ\u0000अआ\u0003ʗŋ\u0000आइ\u0003ʑň\u0000इई\u0003ʃŁ\u0000ईउ\u0003ʟŏ\u0000उǞ\u0001\u0000\u0000\u0000ऊऋ\u0003ʝŎ\u0000ऋऌ\u0003ʗŋ\u0000ऌऍ\u0003ʧœ\u0000ऍǠ\u0001\u0000\u0000\u0000ऎए\u0003ʝŎ\u0000एऐ\u0003ʗŋ\u0000ऐऑ\u0003ʧœ\u0000ऑऒ\u0003ʟŏ\u0000ऒǢ\u0001\u0000\u0000\u0000ओऔ\u0005)\u0000\u0000औǤ\u0001\u0000\u0000\u0000कख\u0003ʟŏ\u0000खग\u0003ɿĿ\u0000गघ\u0003ɻĽ\u0000घङ\u0003ʕŊ\u0000ङǦ\u0001\u0000\u0000\u0000चछ\u0003ʟŏ\u0000छज\u0003ʃŁ\u0000जझ\u0003ɿĿ\u0000झǨ\u0001\u0000\u0000\u0000ञट\u0003ʟŏ\u0000टठ\u0003ʃŁ\u0000ठड\u0003ɿĿ\u0000डढ\u0003ʗŋ\u0000ढण\u0003ʕŊ\u0000णत\u0003ʁŀ\u0000तǪ\u0001\u0000\u0000\u0000थद\u0003ʟŏ\u0000दध\u0003ʃŁ\u0000धन\u0003ɿĿ\u0000नऩ\u0003ʗŋ\u0000ऩप\u0003ʕŊ\u0000पफ\u0003ʁŀ\u0000फब\u0003ɻĽ\u0000बभ\u0003ʝŎ\u0000" + "भम\u0003ʫŕ\u0000मǬ\u0001\u0000\u0000\u0000यर\u0003ʟŏ\u0000रऱ\u0003ʃŁ\u0000ऱल\u0003ɿĿ\u0000लळ\u0003ʗŋ\u0000ळऴ\u0003ʕŊ\u0000ऴव\u0003ʁŀ\u0000वश\u0003ɻĽ\u0000शष\u0003ʝŎ\u0000षस\u0003ʋŅ\u0000सह\u0003ʃŁ\u0000हऺ\u0003ʟŏ\u0000ऺǮ\u0001\u0000\u0000\u0000ऻ़\u0003ʟŏ\u0000़ऽ\u0003ʃŁ\u0000ऽा\u0003ɿĿ\u0000ाि\u0003ʗŋ\u0000िी\u0003ʕŊ\u0000ीु\u0003ʁŀ\u0000ुू\u0003ʟŏ\u0000ूǰ\u0001\u0000\u0000\u0000ृॄ\u0003ʟŏ\u0000ॄॅ\u0003ʃŁ\u0000ॅॆ\u0003ʃŁ\u0000ॆे\u0003ʏŇ\u0000ेDz\u0001\u0000\u0000\u0000ैॉ\u0005;\u0000\u0000ॉǴ\u0001\u0000\u0000\u0000ॊो\u0003ʟŏ\u0000ोौ\u0003ʃŁ\u0000ौ्\u0003ʝŎ\u0000्ॎ\u0003ʥŒ\u0000ॎॏ\u0003ʃŁ\u0000ॏॐ\u0003ʝŎ\u0000ॐǶ\u0001\u0000\u0000\u0000॒॑\u0003ʟŏ\u0000॒॓\u0003ʃŁ\u0000॓॔\u0003ʝŎ\u0000॔ॕ\u0003ʥŒ\u0000ॕॖ\u0003ʃŁ\u0000ॖॗ\u0003ʝŎ\u0000ॗक़\u0003ʟŏ\u0000क़Ǹ\u0001\u0000\u0000\u0000ख़ग़\u0003ʟŏ\u0000ग़ज़\u0003ʃŁ\u0000ज़ड़\u0003ʡŐ\u0000ड़Ǻ\u0001\u0000\u0000\u0000ढ़फ़\u0003ʟŏ\u0000फ़य़\u0003ʃŁ\u0000य़ॠ\u0003ʡŐ\u0000ॠॡ\u0003ʡŐ\u0000ॡॢ\u0003ʋŅ\u0000ॢॣ\u0003ʕŊ\u0000ॣ।\u0003ʇŃ\u0000।Ǽ\u0001\u0000\u0000\u0000॥०\u0003ʟŏ\u0000०१\u0003ʃŁ\u0000१२\u0003ʡŐ\u0000२३\u0003ʡŐ\u0000३४\u0003ʋŅ\u0000४५\u0003ʕŊ\u0000५६\u0003ʇŃ\u0000६७\u0003ʟŏ\u0000७Ǿ\u0001\u0000\u0000\u0000८९\u0003ʟŏ\u0000९॰\u0003ʉń\u0000॰ॱ\u0003ʗŋ\u0000ॱॲ\u0003ʝŎ\u0000ॲॳ\u0003ʡŐ\u0000ॳॴ\u0003ʃŁ\u0000ॴॵ\u0003ʟŏ\u0000ॵॶ\u0003ʡŐ\u0000ॶॷ\u0003ʙŌ\u0000ॷॸ\u0003ɻĽ\u0000ॸॹ\u0003ʡŐ\u0000ॹॺ\u0003ʉń\u0000ॺȀ\u0001\u0000\u0000\u0000ॻॼ\u0003ʟŏ\u0000ॼॽ\u0003ʉń\u0000ॽॾ\u0003ʗŋ\u0000ॾॿ\u0003ʝŎ\u0000ॿঀ\u0003ʡŐ\u0000ঀঁ\u0003ʃŁ\u0000ঁং\u0003ʟŏ\u0000ংঃ" + "\u0003ʡŐ\u0000ঃȂ\u0001\u0000\u0000\u0000\u0984অ\u0003ʟŏ\u0000অআ\u0003ʉń\u0000আই\u0003ʗŋ\u0000ইঈ\u0003ʧœ\u0000ঈȄ\u0001\u0000\u0000\u0000উঊ\u0003ʟŏ\u0000ঊঋ\u0003ʋŅ\u0000ঋঌ\u0003ʇŃ\u0000ঌ\u098d\u0003ʕŊ\u0000\u098d\u098e\u0003ʃŁ\u0000\u098eএ\u0003ʁŀ\u0000এȆ\u0001\u0000\u0000\u0000ঐ\u0991\u0003ʟŏ\u0000\u0991\u0992\u0003ʋŅ\u0000\u0992ও\u0003ʕŊ\u0000ওঔ\u0003ʇŃ\u0000ঔক\u0003ʑň\u0000কখ\u0003ʃŁ\u0000খȈ\u0001\u0000\u0000\u0000গঘ\u0003ʟŏ\u0000ঘঙ\u0003ʏŇ\u0000ঙচ\u0003ʋŅ\u0000চছ\u0003ʙŌ\u0000ছȊ\u0001\u0000\u0000\u0000জঝ\u0003ʟŏ\u0000ঝঞ\u0003ʡŐ\u0000ঞট\u0003ɻĽ\u0000টঠ\u0003ʝŎ\u0000ঠড\u0003ʡŐ\u0000ডȌ\u0001\u0000\u0000\u0000ঢণ\u0003ʟŏ\u0000ণত\u0003ʡŐ\u0000তথ\u0003ɻĽ\u0000থদ\u0003ʝŎ\u0000দধ\u0003ʡŐ\u0000ধন\u0003ʟŏ\u0000নȎ\u0001\u0000\u0000\u0000\u09a9প\u0003ʟŏ\u0000পফ\u0003ʡŐ\u0000ফব\u0003ɻĽ\u0000বভ\u0003ʡŐ\u0000ভম\u0003ʣő\u0000ময\u0003ʟŏ\u0000যȐ\u0001\u0000\u0000\u0000র\u09b1\u0003ʟŏ\u0000\u09b1ল\u0003ʡŐ\u0000ল\u09b3\u0003ʗŋ\u0000\u09b3\u09b4\u0003ʙŌ\u0000\u09b4Ȓ\u0001\u0000\u0000\u0000\u09b5শ\u0003ʟŏ\u0000শষ\u0003ʡŐ\u0000ষস\u0003ʝŎ\u0000সহ\u0003ʋŅ\u0000হ\u09ba\u0003ʕŊ\u0000\u09ba\u09bb\u0003ʇŃ\u0000\u09bbȔ\u0001\u0000\u0000\u0000়ঽ\u0003ʟŏ\u0000ঽা\u0003ʣő\u0000াি\u0003ʙŌ\u0000িী\u0003ʙŌ\u0000ীু\u0003ʗŋ\u0000ুূ\u0003ʝŎ\u0000ূৃ\u0003ʡŐ\u0000ৃৄ\u0003ʃŁ\u0000ৄ\u09c5\u0003ʁŀ\u0000\u09c5Ȗ\u0001\u0000\u0000\u0000\u09c6ে\u0003ʟŏ\u0000েৈ\u0003ʣő\u0000ৈ\u09c9\u0003ʟŏ\u0000\u09c9\u09ca\u0003ʙŌ\u0000\u09caো\u0003ʃŁ\u0000োৌ\u0003ʕŊ\u0000ৌ্\u0003ʁŀ\u0000্ৎ\u0003ʃŁ\u0000ৎ\u09cf\u0003ʁŀ\u0000\u09cfȘ\u0001\u0000\u0000\u0000\u09d0\u09d1\u0003ʡŐ\u0000\u09d1\u09d2\u0003ɻĽ\u0000\u09d2\u09d3\u0003ʝŎ\u0000\u09d3\u09d4\u0003ʇŃ\u0000\u09d4\u09d5\u0003ʃŁ\u0000\u09d5\u09d6\u0003ʡŐ\u0000\u09d6Ț\u0001\u0000\u0000\u0000ৗ\u09d8\u0003ʡ" @@ -367405,119 +294959,191 @@ $rt_stringPool(["Can\'t enter monitor from another thread synchronously", "Defau + "\u0001\u0000\u0000\u0000ઃ\u0a84\u0003ʣő\u0000\u0a84અ\u0003ʟŏ\u0000અઆ\u0003ʃŁ\u0000આઇ\u0003ʝŎ\u0000ઇઈ\u0003ʟŏ\u0000ઈɎ\u0001\u0000\u0000\u0000ઉઊ\u0003ʣő\u0000ઊઋ\u0003ʟŏ\u0000ઋઌ\u0003ʋŅ\u0000ઌઍ\u0003ʕŊ\u0000ઍ\u0a8e\u0003ʇŃ\u0000\u0a8eɐ\u0001\u0000\u0000\u0000એઐ\u0003ʥŒ\u0000ઐઑ\u0003ɻĽ\u0000ઑ\u0a92\u0003ʑň\u0000\u0a92ઓ\u0003ʣő\u0000ઓઔ\u0003ʃŁ\u0000ઔɒ\u0001\u0000\u0000\u0000કખ\u0003ʥŒ\u0000ખગ\u0003ɻĽ\u0000ગઘ\u0003ʝŎ\u0000ઘઙ\u0003ɿĿ\u0000ઙચ\u0003ʉń\u0000ચછ\u0003ɻĽ\u0000છજ\u0003ʝŎ\u0000જɔ\u0001\u0000\u0000\u0000ઝઞ\u0003ʥŒ\u0000ઞટ\u0003ʃŁ\u0000ટઠ\u0003ɿĿ\u0000ઠડ\u0003ʡŐ\u0000ડઢ\u0003ʗŋ\u0000ઢણ\u0003ʝŎ\u0000ણɖ\u0001\u0000\u0000\u0000તથ\u0003ʥŒ\u0000થદ\u0003ʃŁ\u0000દધ\u0003ʝŎ\u0000ધન\u0003ɽľ\u0000ન\u0aa9\u0003ʗŋ\u0000\u0aa9પ\u0003ʟŏ\u0000પફ\u0003ʃŁ\u0000ફɘ\u0001\u0000\u0000\u0000બભ\u0003ʥŒ\u0000ભમ\u0003ʃŁ\u0000મય\u0003ʝŎ\u0000યર\u0003ʡŐ\u0000ર\u0ab1\u0003ʃŁ\u0000\u0ab1લ\u0003ʩŔ\u0000લɚ\u0001\u0000\u0000\u0000ળ\u0ab4\u0003ʧœ\u0000\u0ab4વ\u0003ɻĽ\u0000વશ\u0003ʋŅ\u0000શષ\u0003ʡŐ\u0000ષɜ\u0001\u0000\u0000\u0000સહ\u0003ʧœ\u0000હ\u0aba\u0003ʉń\u0000\u0aba\u0abb\u0003ʃŁ\u0000\u0abb઼\u0003ʕŊ\u0000઼ɞ\u0001\u0000\u0000\u0000ઽા\u0003ʧœ\u0000ાિ\u0003ʉń\u0000િી\u0003ʃŁ\u0000ીુ\u0003ʝŎ\u0000ુૂ\u0003ʃŁ\u0000ૂɠ\u0001\u0000\u0000\u0000ૃૄ\u0003ʧœ\u0000ૄૅ\u0003ʋŅ\u0000ૅ\u0ac6\u0003ʡŐ\u0000\u0ac6ે\u0003ʉń\u0000ેɢ\u0001\u0000\u0000\u0000ૈૉ\u0003ʧœ\u0000ૉ\u0aca\u0003ʋŅ\u0000\u0acaો\u0003ʡŐ\u0000ોૌ\u0003ʉń\u0000ૌ્\u0003ʗŋ\u0000્\u0ace\u0003ʣő\u0000\u0ace\u0acf\u0003ʡŐ\u0000\u0acfɤ\u0001\u0000\u0000\u0000ૐ\u0ad1\u0003ʧœ\u0000\u0ad1\u0ad2\u0003ʝŎ\u0000\u0ad2\u0ad3\u0003ʋŅ\u0000\u0ad3\u0ad4\u0003ʡŐ\u0000\u0ad4\u0ad5\u0003ʃŁ\u0000\u0ad5ɦ\u0001\u0000\u0000\u0000\u0ad6\u0ad7\u0003ʩŔ\u0000\u0ad7\u0ad8\u0003ʗ" + "ŋ\u0000\u0ad8\u0ad9\u0003ʝŎ\u0000\u0ad9ɨ\u0001\u0000\u0000\u0000\u0ada\u0adb\u0003ʫŕ\u0000\u0adb\u0adc\u0003ʋŅ\u0000\u0adc\u0add\u0003ʃŁ\u0000\u0add\u0ade\u0003ʑň\u0000\u0ade\u0adf\u0003ʁŀ\u0000\u0adfɪ\u0001\u0000\u0000\u0000ૠૡ\u0003ʭŖ\u0000ૡૢ\u0003ʗŋ\u0000ૢૣ\u0003ʕŊ\u0000ૣ\u0ae4\u0003ʃŁ\u0000\u0ae4ɬ\u0001\u0000\u0000\u0000\u0ae5૦\u0003ʭŖ\u0000૦૧\u0003ʗŋ\u0000૧૨\u0003ʕŊ\u0000૨૩\u0003ʃŁ\u0000૩૪\u0003ʁŀ\u0000૪ɮ\u0001\u0000\u0000\u0000૫૯\u0003ɷĻ\u0000૬૮\u0003ɹļ\u0000૭૬\u0001\u0000\u0000\u0000૮૱\u0001\u0000\u0000\u0000૯૭\u0001\u0000\u0000\u0000૯૰\u0001\u0000\u0000\u0000૰ɰ\u0001\u0000\u0000\u0000૱૯\u0001\u0000\u0000\u0000\u0af2\u0af3\u0007\n\u0000\u0000\u0af3ɲ\u0001\u0000\u0000\u0000\u0af4\u0af5\u0007\u000b\u0000\u0000\u0af5ɴ\u0001\u0000\u0000\u0000\u0af6\u0af7\u0007\u000c\u0000\u0000\u0af7ɶ\u0001\u0000\u0000\u0000\u0af8ૹ\u0007\r\u0000\u0000ૹɸ\u0001\u0000\u0000\u0000ૺ૽\u0003ɷĻ\u0000ૻ૽\u0007\u000e\u0000\u0000ૼૺ\u0001\u0000\u0000\u0000ૼૻ\u0001\u0000\u0000\u0000૽ɺ\u0001\u0000\u0000\u0000૾૿\u0007\u000f\u0000\u0000૿ɼ\u0001\u0000\u0000\u0000\u0b00ଁ\u0007\u0010\u0000\u0000ଁɾ\u0001\u0000\u0000\u0000ଂଃ\u0007\u0011\u0000\u0000ଃʀ\u0001\u0000\u0000\u0000\u0b04ଅ\u0007\u0012\u0000\u0000ଅʂ\u0001\u0000\u0000\u0000ଆଇ\u0007\u0004\u0000\u0000ଇʄ\u0001\u0000\u0000\u0000ଈଉ\u0007\u0013\u0000\u0000ଉʆ\u0001\u0000\u0000\u0000ଊଋ\u0007\u0014\u0000\u0000ଋʈ\u0001\u0000\u0000\u0000ଌ\u0b0d\u0007\u0015\u0000\u0000\u0b0dʊ\u0001\u0000\u0000\u0000\u0b0eଏ\u0007\u0016\u0000\u0000ଏʌ\u0001\u0000\u0000\u0000ଐ\u0b11\u0007\u0017\u0000\u0000\u0b11ʎ\u0001\u0000\u0000\u0000\u0b12ଓ\u0007\u0018\u0000\u0000ଓʐ\u0001\u0000\u0000\u0000ଔକ\u0007\u0019\u0000\u0000କʒ\u0001\u0000\u0000\u0000ଖଗ\u0007\u001a\u0000\u0000ଗʔ\u0001\u0000\u0000\u0000ଘଙ\u0007\u001b\u0000\u0000ଙʖ\u0001\u0000\u0000\u0000ଚଛ\u0007\u001c\u0000\u0000ଛʘ\u0001\u0000\u0000\u0000ଜଝ\u0007\u001d\u0000\u0000ଝʚ\u0001\u0000\u0000\u0000ଞଟ\u0007\u001e\u0000\u0000ଟʜ\u0001\u0000\u0000\u0000ଠଡ\u0007\u001f\u0000\u0000ଡʞ\u0001\u0000\u0000\u0000ଢଣ\u0007 \u0000\u0000ଣʠ\u0001\u0000\u0000\u0000ତଥ\u0007!\u0000\u0000ଥʢ\u0001\u0000\u0000\u0000ଦଧ\u0007\"\u0000\u0000ଧʤ\u0001\u0000\u0000\u0000ନ\u0b29\u0007#\u0000\u0000\u0b29ʦ\u0001\u0000\u0000\u0000ପଫ\u0007$\u0000\u0000" + "ଫʨ\u0001\u0000\u0000\u0000ବଭ\u0007\u0006\u0000\u0000ଭʪ\u0001\u0000\u0000\u0000ମଯ\u0007%\u0000\u0000ଯʬ\u0001\u0000\u0000\u0000ର\u0b31\u0007&\u0000\u0000\u0b31ʮ\u0001\u0000\u0000\u0000ଲଳ\t\u0000\u0000\u0000ଳʰ\u0001\u0000\u0000\u0000\u001f\u0000ʻˆ˒˚˞ˡ˨ˬ˯˵˺˼̷̧̞̬̱̹̂̈̌̐́̓̕̚͏͑૯ૼ\u0001\u0000\u0001\u0000", "periodicCommitQueryHintFailure", "showBriefAndYield", "showIndexesAllowBrief", "showIndexesNoBrief", "constraintAllowYieldType", "constraintBriefAndYieldType", "showConstraintsAllowBriefAndYield", "showConstraintsAllowBrief", -"showConstraintsAllowYield", "oldCreateIndex", "\u0004\u0001Ĺຬ\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002\u0008\u0007\u0008\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002\u000c\u0007\u000c\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~" +"showConstraintsAllowYield", "oldCreateIndex", "symbolicVariableNameString", "escapedSymbolicVariableNameString", "unescapedSymbolicVariableNameString", "\u0004\u0001Ĺ່\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002\u0008\u0007\u0008\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002\u000c\u0007\u000c\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~" + "\u0002\u0007\u0002€\u0007€\u0002\u0007\u0002‚\u0007‚\u0002ƒ\u0007ƒ\u0002„\u0007„\u0002…\u0007…\u0002†\u0007†\u0002‡\u0007‡\u0002ˆ\u0007ˆ\u0002‰\u0007‰\u0002Š\u0007Š\u0002‹\u0007‹\u0002Œ\u0007Œ\u0002\u0007\u0002Ž\u0007Ž\u0002\u0007\u0002\u0007\u0002‘\u0007‘\u0002’\u0007’\u0002“\u0007“\u0002”\u0007”\u0002•\u0007•\u0002–\u0007–\u0002—\u0007—\u0002˜\u0007˜\u0002™\u0007™\u0002š\u0007š\u0002›\u0007›\u0002œ\u0007œ\u0002\u0007\u0002ž\u0007ž\u0002Ÿ\u0007Ÿ\u0002 \u0007 \u0002¡\u0007¡\u0002¢\u0007¢\u0002£\u0007£\u0002¤\u0007¤\u0002¥\u0007¥\u0002¦\u0007¦\u0002§\u0007§\u0002¨\u0007¨\u0002©\u0007©\u0002ª\u0007ª\u0002«\u0007«\u0002¬\u0007¬\u0002­\u0007­\u0002®\u0007®\u0002¯\u0007¯\u0002°\u0007°\u0002±\u0007±\u0002²\u0007²\u0002³\u0007³\u0002´\u0007´\u0002µ\u0007µ\u0002¶\u0007¶\u0002·\u0007·\u0002¸\u0007¸\u0002¹\u0007¹\u0002º\u0007º\u0002»\u0007»\u0002¼\u0007¼\u0002½\u0007½\u0002¾\u0007¾\u0002¿\u0007¿\u0002À\u0007À\u0002Á\u0007Á\u0002Â\u0007Â\u0002Ã\u0007Ã\u0002Ä\u0007Ä\u0002Å\u0007Å\u0002Æ\u0007Æ\u0002Ç\u0007Ç\u0002È\u0007È\u0002É\u0007É\u0002Ê\u0007Ê\u0002Ë\u0007Ë\u0002Ì\u0007Ì\u0002Í\u0007Í\u0002Î\u0007Î\u0002Ï\u0007Ï\u0002Ð\u0007Ð\u0002Ñ\u0007Ñ\u0002Ò\u0007Ò\u0002Ó\u0007Ó\u0002Ô\u0007Ô\u0002Õ\u0007Õ\u0002Ö\u0007Ö\u0002×\u0007×\u0002Ø\u0007Ø\u0002Ù\u0007Ù\u0002Ú\u0007Ú\u0002Û\u0007Û\u0002Ü\u0007Ü\u0002Ý\u0007Ý\u0002Þ\u0007Þ\u0002ß\u0007ß\u0002à\u0007à\u0002á\u0007á\u0002â\u0007â\u0002ã\u0007ã\u0002ä\u0007ä\u0002å\u0007å\u0002æ\u0007æ\u0002ç\u0007ç\u0002è\u0007è\u0002é\u0007é\u0002ê\u0007ê\u0002ë\u0007ë\u0002ì\u0007ì\u0002í\u0007í\u0002î\u0007î\u0002ï\u0007ï\u0002ð\u0007ð\u0002ñ\u0007ñ\u0002ò\u0007ò\u0002ó\u0007ó\u0002ô\u0007ô\u0002õ\u0007õ\u0002ö\u0007ö\u0002÷\u0007÷\u0002ø\u0007ø\u0002ù\u0007ù\u0002ú\u0007ú\u0002û\u0007û\u0002ü\u0007ü\u0002ý\u0007ý\u0002þ\u0007þ" -+ "\u0002ÿ\u0007ÿ\u0002Ā\u0007Ā\u0002ā\u0007ā\u0002Ă\u0007Ă\u0002ă\u0007ă\u0002Ą\u0007Ą\u0002ą\u0007ą\u0002Ć\u0007Ć\u0002ć\u0007ć\u0002Ĉ\u0007Ĉ\u0002ĉ\u0007ĉ\u0002Ċ\u0007Ċ\u0002ċ\u0007ċ\u0002Č\u0007Č\u0002č\u0007č\u0002Ď\u0007Ď\u0002ď\u0007ď\u0002Đ\u0007Đ\u0002đ\u0007đ\u0002Ē\u0007Ē\u0002ē\u0007ē\u0002Ĕ\u0007Ĕ\u0002ĕ\u0007ĕ\u0002Ė\u0007Ė\u0002ė\u0007ė\u0002Ę\u0007Ę\u0002ę\u0007ę\u0002Ě\u0007Ě\u0002ě\u0007ě\u0002Ĝ\u0007Ĝ\u0002ĝ\u0007ĝ\u0002Ğ\u0007Ğ\u0002ğ\u0007ğ\u0002Ġ\u0007Ġ\u0002ġ\u0007ġ\u0002Ģ\u0007Ģ\u0002ģ\u0007ģ\u0002Ĥ\u0007Ĥ\u0002ĥ\u0007ĥ\u0002Ħ\u0007Ħ\u0002ħ\u0007ħ\u0002Ĩ\u0007Ĩ\u0002ĩ\u0007ĩ\u0002Ī\u0007Ī\u0002ī\u0007ī\u0002Ĭ\u0007Ĭ\u0002ĭ\u0007ĭ\u0002Į\u0007Į\u0002į\u0007į\u0002İ\u0007İ\u0002ı\u0007ı\u0002IJ\u0007IJ\u0002ij\u0007ij\u0002Ĵ\u0007Ĵ\u0002ĵ\u0007ĵ\u0002Ķ\u0007Ķ\u0002ķ\u0007ķ\u0002ĸ\u0007ĸ\u0002Ĺ\u0007Ĺ\u0002ĺ\u0007ĺ\u0002Ļ\u0007Ļ\u0002ļ\u0007ļ\u0002Ľ\u0007Ľ\u0002ľ\u0007ľ\u0002Ŀ\u0007Ŀ\u0002ŀ\u0007ŀ\u0002Ł\u0007Ł\u0002ł\u0007ł\u0002Ń\u0007Ń\u0002ń\u0007ń\u0002Ņ\u0007Ņ\u0002ņ\u0007ņ\u0002Ň\u0007Ň\u0002ň\u0007ň\u0002ʼn\u0007ʼn\u0002Ŋ\u0007Ŋ\u0002ŋ\u0007ŋ\u0002Ō\u0007Ō\u0002ō\u0007ō\u0001\u0000\u0001\u0000\u0001\u0000\u0005\u0000ʠ\u0008\u0000\n\u0000\u000c\u0000ʣ\t\u0000\u0001\u0000\u0003\u0000ʦ\u0008\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0003\u0001ʫ\u0008\u0001\u0001\u0001\u0001\u0001\u0003\u0001ʯ\u0008\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002ʵ\u0008\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003ʺ\u0008\u0003\u0001\u0003\u0005\u0003ʽ\u0008\u0003\n\u0003\u000c\u0003ˀ\t\u0003\u0001\u0004\u0004\u0004˃\u0008\u0004\u000b\u0004\u000c\u0004˄\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005˘\u0008\u0005\u0001\u0006\u0001\u0006\u0003\u0006˜\u0008\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007˦\u0008\u0007\u0001\u0008\u0001\u0008\u0001\t\u0001\t\u0001\t\u0001\n\u0003\nˮ\u0008\n\u0001\n\u0001\n\u0003\n˲\u0008\n\u0001\n\u0003\n˵\u0008" -+ "\n\u0001\n\u0003\n˸\u0008\n\u0001\u000b\u0001\u000b\u0001\u000b\u0003\u000b˽\u0008\u000b\u0001\u000c\u0001\u000c\u0003\u000ć\u0008\u000c\u0001\u000c\u0001\u000c\u0005\u000c̅\u0008\u000c\n\u000c\u000c\u000c̈\t\u000c\u0001\r\u0001\r\u0001\r\u0003\r̍\u0008\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0005\u0010̘\u0008\u0010\n\u0010\u000c\u0010̛\t\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014̩\u0008\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0005\u0017̵\u0008\u0017\n\u0017\u000c\u0017̸\t\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0003\u0018͐\u0008\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0005\u0019͖\u0008\u0019\n\u0019\u000c\u0019͙\t\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0003\u001aͣ\u0008\u001a\u0001\u001b\u0003\u001bͦ\u0008\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0005\u001bͬ\u0008\u001b\n\u001b\u000c\u001bͯ\t\u001b\u0001\u001c\u0003\u001cͲ\u0008\u001c\u0001\u001c\u0001\u001c\u0003\u001cͶ\u0008\u001c\u0001\u001c\u0001\u001c\u0005\u001cͺ\u0008\u001c\n\u001c\u000c\u001cͽ\t\u001c\u0001\u001c\u0003\u001c\u0380\u0008\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001d΅\u0008\u001d\u0001\u001d\u0003\u001dΈ\u0008\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001d\u038d\u0008\u001d\u0001\u001d\u0003\u001dΐ\u0008\u001d\u0003\u001dΒ\u0008\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0003\u001eΞ\u0008\u001e\u0001\u001e\u0003\u001eΡ\u0008\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0003\u001eΰ\u0008\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0005\u001fε\u0008\u001f\n\u001f\u000c\u001fθ\t\u001f\u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0003\"τ\u0008\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"ό\u0008\"\n\"\u000c\"Ϗ\t\"\u0003\"ϑ\u0008\"\u0001\"\u0003\"ϔ\u0008\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"ϛ\u0008\"\n\"\u000c\"Ϟ\t\"\u0001\"\u0003\"ϡ" -+ "\u0008\"\u0003\"ϣ\u0008\"\u0003\"ϥ\u0008\"\u0001#\u0001#\u0001#\u0001$\u0001$\u0001%\u0001%\u0001%\u0003%ϯ\u0008%\u0001&\u0001&\u0001&\u0001&\u0003&ϵ\u0008&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0003&Ͻ\u0008&\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0004\'І\u0008\'\u000b\'\u000c\'Ї\u0001\'\u0001\'\u0001(\u0003(Ѝ\u0008(\u0001(\u0001(\u0003(Б\u0008(\u0001(\u0001(\u0001(\u0001(\u0003(З\u0008(\u0001)\u0001)\u0001)\u0001)\u0001)\u0005)О\u0008)\n)\u000c)С\t)\u0003)У\u0008)\u0001)\u0001)\u0001*\u0001*\u0003*Щ\u0008*\u0001*\u0003*Ь\u0008*\u0001*\u0001*\u0001*\u0001*\u0005*в\u0008*\n*\u000c*е\t*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0003.ц\u0008.\u0001.\u0003.щ\u0008.\u0001.\u0001.\u0003.э\u0008.\u0001.\u0003.ѐ\u0008.\u0001/\u0001/\u0001/\u0005/ѕ\u0008/\n/\u000c/ј\t/\u00010\u00010\u00010\u00050ѝ\u00080\n0\u000c0Ѡ\t0\u00011\u00011\u00011\u00031ѥ\u00081\u00011\u00031Ѩ\u00081\u00011\u00011\u00012\u00012\u00012\u00032ѯ\u00082\u00012\u00012\u00012\u00012\u00052ѵ\u00082\n2\u000c2Ѹ\t2\u00013\u00013\u00013\u00013\u00013\u00033ѿ\u00083\u00013\u00013\u00033҃\u00083\u00013\u00013\u00013\u00033҈\u00083\u00014\u00014\u00034Ҍ\u00084\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u00016\u00036Җ\u00086\u00016\u00016\u00056Қ\u00086\n6\u000c6ҝ\t6\u00016\u00046Ҡ\u00086\u000b6\u000c6ҡ\u00017\u00017\u00017\u00037ҧ\u00087\u00017\u00017\u00017\u00037Ҭ\u00087\u00017\u00017\u00037Ұ\u00087\u00017\u00037ҳ\u00087\u00017\u00017\u00037ҷ\u00087\u00017\u00017\u00037һ\u00087\u00017\u00037Ҿ\u00087\u00017\u00017\u00017\u00017\u00037ӄ\u00087\u00037ӆ\u00087\u00018\u00018" -+ "\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0004:Ӑ\u0008:\u000b:\u000c:ӑ\u0001;\u0001;\u0003;Ӗ\u0008;\u0001;\u0003;ә\u0008;\u0001;\u0003;Ӝ\u0008;\u0001;\u0001;\u0003;Ӡ\u0008;\u0001;\u0001;\u0001<\u0001<\u0003<Ӧ\u0008<\u0001<\u0003<ө\u0008<\u0001<\u0003<Ӭ\u0008<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001=\u0003=Ӵ\u0008=\u0001=\u0001=\u0003=Ӹ\u0008=\u0001>\u0001>\u0004>Ӽ\u0008>\u000b>\u000c>ӽ\u0001?\u0001?\u0001?\u0003?ԃ\u0008?\u0001?\u0001?\u0005?ԇ\u0008?\n?\u000c?Ԋ\t?\u0001@\u0001@\u0001@\u0001@\u0001@\u0001A\u0001A\u0003Aԓ\u0008A\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001E\u0001E\u0001E\u0001F\u0001F\u0003Fԧ\u0008F\u0001G\u0003GԪ\u0008G\u0001G\u0001G\u0001G\u0003Gԯ\u0008G\u0001G\u0003GԲ\u0008G\u0001G\u0003GԵ\u0008G\u0001G\u0003GԸ\u0008G\u0001G\u0001G\u0003GԼ\u0008G\u0001G\u0003GԿ\u0008G\u0001G\u0001G\u0003GՃ\u0008G\u0001H\u0003HՆ\u0008H\u0001H\u0001H\u0001H\u0003HՋ\u0008H\u0001H\u0001H\u0003HՏ\u0008H\u0001H\u0001H\u0001H\u0003HՔ\u0008H\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001L\u0001L\u0003L՞\u0008L\u0001L\u0001L\u0003Lբ\u0008L\u0001L\u0003Lե\u0008L\u0001M\u0001M\u0001M\u0001M\u0003Mի\u0008M\u0001N\u0001N\u0001N\u0003Nհ\u0008N\u0001N\u0005Nճ\u0008N\nN\u000cNն\tN\u0001O\u0001O\u0001O\u0003Oջ\u0008O\u0001O\u0005Oվ\u0008O\nO\u000cOց\tO\u0001P\u0001P\u0001P\u0005Pֆ\u0008P\nP\u000cP։\tP\u0001Q\u0001Q\u0001Q\u0005Q֎\u0008Q\nQ\u000cQ֑\tQ\u0001R\u0005R֔\u0008R\nR\u000cR֗\tR\u0001R\u0001R\u0001S\u0005S֜\u0008S\nS\u000cS֟\tS\u0001S\u0001S\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0003T֪\u0008T\u0001U\u0001U\u0001U\u0001U\u0001U\u0001" -+ "U\u0001U\u0003Uֳ\u0008U\u0001V\u0001V\u0001V\u0001V\u0005Vֹ\u0008V\nV\u000cVּ\tV\u0001W\u0001W\u0001W\u0001X\u0001X\u0001X\u0005Xׄ\u0008X\nX\u000cXׇ\tX\u0001Y\u0001Y\u0001Y\u0005Y\u05cc\u0008Y\nY\u000cY\u05cf\tY\u0001Z\u0001Z\u0001Z\u0005Zה\u0008Z\nZ\u000cZח\tZ\u0001[\u0005[ך\u0008[\n[\u000c[ם\t[\u0001[\u0001[\u0001\\\u0001\\\u0001\\\u0005\\פ\u0008\\\n\\\u000c\\ק\t\\\u0001]\u0001]\u0003]\u05eb\u0008]\u0001^\u0001^\u0001^\u0001^\u0001^\u0001^\u0001^\u0003^״\u0008^\u0001^\u0001^\u0001^\u0003^\u05f9\u0008^\u0001^\u0001^\u0001^\u0003^\u05fe\u0008^\u0001^\u0001^\u0003^؂\u0008^\u0001^\u0001^\u0001^\u0003^؇\u0008^\u0001^\u0003^؊\u0008^\u0001^\u0003^؍\u0008^\u0001_\u0001_\u0001`\u0001`\u0001`\u0005`ؔ\u0008`\n`\u000c`ؗ\t`\u0001a\u0001a\u0001a\u0005a؜\u0008a\na\u000ca؟\ta\u0001b\u0001b\u0001b\u0005bؤ\u0008b\nb\u000cbا\tb\u0001c\u0001c\u0001c\u0003cج\u0008c\u0001d\u0001d\u0005dذ\u0008d\nd\u000cdس\td\u0001e\u0001e\u0001e\u0001e\u0001e\u0001e\u0001e\u0001e\u0003eؽ\u0008e\u0001e\u0001e\u0003eف\u0008e\u0001e\u0003eل\u0008e\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001h\u0001h\u0004hُ\u0008h\u000bh\u000chِ\u0001i\u0001i\u0001i\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0003j٫\u0008j\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0003kٶ\u0008k\u0001l\u0001l\u0004lٺ\u0008l\u000bl\u000clٻ\u0001l\u0001l\u0003lڀ\u0008l\u0001l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0004nڌ\u0008n\u000bn\u000cnڍ\u0001n\u0001n\u0003nڒ\u0008n\u0001n\u0001n\u0001o\u0001o\u0001o\u0001o\u0005oښ\u0008" -+ "o\no\u000coڝ\to\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001p\u0001p\u0003pڧ\u0008p\u0001p\u0001p\u0001p\u0003pڬ\u0008p\u0001p\u0001p\u0001p\u0003pڱ\u0008p\u0001p\u0001p\u0003pڵ\u0008p\u0001p\u0001p\u0001p\u0003pں\u0008p\u0001p\u0003pڽ\u0008p\u0001p\u0001p\u0001p\u0001p\u0003pۃ\u0008p\u0001q\u0001q\u0001q\u0001q\u0001q\u0001q\u0003qۋ\u0008q\u0001q\u0001q\u0001q\u0001q\u0003qۑ\u0008q\u0003qۓ\u0008q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0003rۛ\u0008r\u0001r\u0001r\u0001r\u0003r۠\u0008r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001t\u0001t\u0001t\u0001t\u0003tۺ\u0008t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001u\u0003u܃\u0008u\u0001u\u0001u\u0001v\u0001v\u0001v\u0003v܊\u0008v\u0001v\u0003v܍\u0008v\u0001v\u0003vܐ\u0008v\u0001v\u0001v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001y\u0001y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001z\u0001z\u0005zܢ\u0008z\nz\u000czܥ\tz\u0003zܧ\u0008z\u0001z\u0001z\u0001{\u0001{\u0001{\u0001{\u0001{\u0001{\u0001{\u0001{\u0003{ܳ\u0008{\u0001|\u0001|\u0001|\u0001|\u0001|\u0001}\u0001}\u0001}\u0001}\u0003}ܾ\u0008}\u0001}\u0001}\u0003}݂\u0008}\u0003}݄\u0008}\u0001}\u0001}\u0001~\u0001~\u0001~\u0001~\u0003~\u074c\u0008~\u0001~\u0001~\u0003~ݐ\u0008~\u0003~ݒ\u0008~\u0001~\u0001~\u0001\u0001\u0001\u0001\u0001\u0001€\u0003€ݜ\u0008€\u0001€\u0001€\u0001\u0003ݡ\u0008\u0001\u0001\u0001‚\u0001‚\u0001‚\u0001‚\u0005‚ݩ\u0008‚\n‚\u000c‚ݬ\t‚\u0003‚ݮ\u0008‚\u0001‚\u0001‚\u0001ƒ\u0001ƒ\u0001„\u0001„\u0001„\u0001…\u0001…\u0003…ݹ\u0008…\u0001†\u0001†\u0001†\u0003†ݾ\u0008†\u0001†\u0001†\u0001†\u0005†ރ\u0008†\n†\u000c†ކ\t†\u0003†" -+ "ވ\u0008†\u0001†\u0001†\u0001‡\u0001‡\u0001ˆ\u0001ˆ\u0001ˆ\u0001‰\u0001‰\u0001‰\u0005‰ޔ\u0008‰\n‰\u000c‰ޗ\t‰\u0001Š\u0001Š\u0001‹\u0001‹\u0001‹\u0005‹ޞ\u0008‹\n‹\u000c‹ޡ\t‹\u0001Œ\u0001Œ\u0001Œ\u0005Œަ\u0008Œ\nŒ\u000cŒީ\tŒ\u0001\u0001\u0003ޭ\u0008\u0001\u0005ް\u0008\n\u000c\u07b3\t\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Ž\u07bd\u0008Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Žߋ\u0008Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Žߒ\u0008Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Ž߭\u0008Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Žߴ\u0008Ž\u0003Ž߶\u0008Ž\u0001\u0001\u0001\u0003\u07fb\u0008\u0001\u0001\u0003߿\u0008\u0001‘\u0003‘ࠂ\u0008‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0003‘ࠑ\u0008‘\u0001’\u0001’\u0001’\u0003’ࠖ\u0008’\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0003’ࠟ\u0008’\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0003“ࠩ\u0008“\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0003”࠼\u0008”\u0001•\u0001•\u0003•ࡀ\u0008•\u0001•\u0003•ࡃ\u0008•\u0001–\u0001–\u0001–\u0003–ࡈ\u0008–\u0001—\u0001—\u0001—\u0001˜\u0001˜\u0001˜\u0001™\u0001™\u0001™\u0001™\u0001™\u0005™ࡕ\u0008™\n™\u000c™ࡘ\t™\u0003™࡚\u0008™\u0001™\u0003™\u085d\u0008™\u0001™\u0003™ࡠ\u0008™\u0001™\u0003™ࡣ\u0008™\u0001™\u0003™ࡦ\u0008™\u0001š\u0001š\u0001š\u0001›\u0001›\u0001›\u0001œ\u0001œ\u0003œ\u0870\u0008œ\u0001\u0001\u0001\u0001\u0001\u0001" -+ "\u0001\u0003\u0879\u0008\u0001ž\u0001ž\u0003ž\u087d\u0008ž\u0001ž\u0001ž\u0003ž\u0881\u0008ž\u0001ž\u0003ž\u0884\u0008ž\u0001Ÿ\u0001Ÿ\u0001Ÿ\u0003Ÿ\u0889\u0008Ÿ\u0001Ÿ\u0003Ÿ\u088c\u0008Ÿ\u0001 \u0001 \u0003 \u0890\u0008 \u0001 \u0003 \u0893\u0008 \u0001¡\u0001¡\u0003¡\u0897\u0008¡\u0001¡\u0003¡\u089a\u0008¡\u0001¢\u0003¢\u089d\u0008¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0003¢ࢦ\u0008¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0003¢ࢮ\u0008¢\u0001¢\u0001¢\u0001¢\u0003¢ࢳ\u0008¢\u0001¢\u0003¢ࢶ\u0008¢\u0001£\u0001£\u0001£\u0001£\u0003£ࢼ\u0008£\u0001¤\u0001¤\u0001¤\u0001¤\u0001¤\u0003¤ࣃ\u0008¤\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0003¥\u08ce\u0008¥\u0001¦\u0001¦\u0003¦\u08d2\u0008¦\u0001¦\u0003¦ࣕ\u0008¦\u0001§\u0001§\u0001§\u0003§ࣚ\u0008§\u0003§ࣜ\u0008§\u0001§\u0003§ࣟ\u0008§\u0001¨\u0001¨\u0003¨ࣣ\u0008¨\u0001¨\u0003¨ࣦ\u0008¨\u0001©\u0001©\u0003©࣪\u0008©\u0001©\u0003©࣭\u0008©\u0001©\u0003©ࣰ\u0008©\u0001ª\u0003ªࣳ\u0008ª\u0001ª\u0001ª\u0003ªࣷ\u0008ª\u0001ª\u0003ªࣺ\u0008ª\u0001ª\u0003ªࣽ\u0008ª\u0001«\u0001«\u0001¬\u0001¬\u0001¬\u0001¬\u0001¬\u0003¬आ\u0008¬\u0003¬ई\u0008¬\u0001­\u0001­\u0001­\u0001­\u0001­\u0003­ए\u0008­\u0001®\u0001®\u0001®\u0001¯\u0001¯\u0001¯\u0001°\u0001°\u0001°\u0001±\u0001±\u0001²\u0003²झ\u0008²\u0001²\u0001²\u0003²ड\u0008²\u0003²ण\u0008²\u0001²\u0003²द\u0008²\u0001³\u0001³\u0003³प\u0008³\u0001´\u0001´\u0001´\u0001´\u0001´\u0001µ\u0001µ\u0001µ\u0003µऴ\u0008µ\u0001µ\u0001µ\u0001µ\u0001µ\u0001µ\u0001µ\u0001µ\u0003µऽ\u0008µ\u0001µ\u0001µ\u0001µ\u0001¶\u0001¶\u0003¶ॄ\u0008¶\u0001¶\u0001¶\u0001¶\u0003¶ॉ\u0008¶\u0001¶\u0001¶\u0001¶\u0003¶ॎ\u0008¶\u0001¶\u0001¶\u0003¶॒\u0008¶\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0003·ड़\u0008·\u0001·\u0001·" -+ "\u0001·\u0001·\u0001·\u0001·\u0003·।\u0008·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0003·६\u0008·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0003·ॶ\u0008·\u0001¸\u0001¸\u0001¸\u0001¸\u0003¸ॼ\u0008¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0003¸ঈ\u0008¸\u0003¸ঊ\u0008¸\u0001¸\u0001¸\u0001¸\u0003¸এ\u0008¸\u0003¸\u0991\u0008¸\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0003¹ব\u0008¹\u0003¹ম\u0008¹\u0001º\u0001º\u0001º\u0001º\u0001º\u0001»\u0003»শ\u0008»\u0001»\u0001»\u0001»\u0003»\u09bb\u0008»\u0001»\u0001»\u0001»\u0003»ী\u0008»\u0001»\u0001»\u0001»\u0003»\u09c5\u0008»\u0001¼\u0003¼ৈ\u0008¼\u0001¼\u0001¼\u0001¼\u0003¼্\u0008¼\u0001¼\u0001¼\u0001¼\u0003¼\u09d2\u0008¼\u0001¼\u0001¼\u0001¼\u0001¼\u0001¼\u0001¼\u0003¼\u09da\u0008¼\u0001½\u0001½\u0001½\u0001½\u0001½\u0001½\u0005½ৢ\u0008½\n½\u000c½\u09e5\t½\u0001½\u0001½\u0001¾\u0001¾\u0001¾\u0003¾৬\u0008¾\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0005¾৵\u0008¾\n¾\u000c¾৸\t¾\u0001¾\u0001¾\u0001¾\u0003¾৽\u0008¾\u0001¾\u0001¾\u0001¾\u0001¿\u0003¿ਃ\u0008¿\u0001¿\u0001¿\u0001¿\u0003¿ਈ\u0008¿\u0001¿\u0001¿\u0001¿\u0003¿\u0a0d\u0008¿\u0001¿\u0001¿\u0001¿\u0001¿\u0001¿\u0003¿ਔ\u0008¿\u0001À\u0001À\u0001À\u0001À\u0001À\u0001À\u0001Á\u0001Á\u0001Á\u0003Áਟ\u0008Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0003Áਧ\u0008Á\u0001Á\u0001Á\u0001Á\u0001Á\u0003Áਭ\u0008Á\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0003Âਹ\u0008Â\u0003Â\u0a3b\u0008Â\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0003Ã\u0a44\u0008Ã\u0001Ä\u0001Ä\u0001Ä\u0001Ä\u0001Ä\u0001Ä\u0005Äੌ\u0008Ä\n" -+ "Ä\u000cÄ\u0a4f\tÄ\u0001Å\u0001Å\u0001Å\u0001Å\u0001Å\u0001Å\u0003Å\u0a57\u0008Å\u0001Æ\u0001Æ\u0001Æ\u0001Æ\u0003Æ\u0a5d\u0008Æ\u0001Ç\u0001Ç\u0003Ç\u0a61\u0008Ç\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0003Ç੪\u0008Ç\u0001È\u0001È\u0003È੮\u0008È\u0001È\u0001È\u0001È\u0001È\u0001É\u0001É\u0003É੶\u0008É\u0001É\u0003É\u0a79\u0008É\u0001É\u0001É\u0001É\u0001É\u0001É\u0001É\u0001É\u0003Éં\u0008É\u0001Ê\u0001Ê\u0001Ë\u0001Ë\u0001Ì\u0001Ì\u0001Í\u0001Í\u0001Í\u0001Í\u0003Í\u0a8e\u0008Í\u0001Î\u0001Î\u0001Î\u0001Î\u0001Î\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ð\u0001Ð\u0001Ð\u0001Ñ\u0001Ñ\u0003Ñટ\u0008Ñ\u0001Ò\u0003Òઢ\u0008Ò\u0001Ò\u0001Ò\u0003Òદ\u0008Ò\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0005Óય\u0008Ó\nÓ\u000cÓલ\tÓ\u0001Ô\u0001Ô\u0001Ô\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0003Õ઼\u0008Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0003Õૂ\u0008Õ\u0001Ö\u0001Ö\u0001Ö\u0001Ö\u0003Öૈ\u0008Ö\u0001×\u0001×\u0001×\u0001×\u0003×\u0ace\u0008×\u0001×\u0001×\u0001×\u0001Ø\u0003Ø\u0ad4\u0008Ø\u0001Ø\u0001Ø\u0001Ø\u0003Ø\u0ad9\u0008Ø\u0001Ø\u0003Ø\u0adc\u0008Ø\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ú\u0001Ú\u0001Ú\u0001Ú\u0001Û\u0001Û\u0001Û\u0001Û\u0001Û\u0003Û૫\u0008Û\u0001Û\u0001Û\u0001Û\u0001Û\u0001Û\u0001Û\u0001Û\u0003Û\u0af4\u0008Û\u0004Û\u0af6\u0008Û\u000bÛ\u000cÛ\u0af7\u0001Ü\u0001Ü\u0001Ü\u0001Ü\u0003Ü૾\u0008Ü\u0001Ý\u0001Ý\u0001Ý\u0001Ý\u0003Ý\u0b04\u0008Ý\u0001Ý\u0001Ý\u0001Ý\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001ß\u0001ß\u0001ß\u0001ß\u0003ßଖ\u0008ß\u0001ß\u0001ß\u0001ß\u0001ß\u0001ß\u0001ß\u0003ßଞ\u0008ß\u0001ß\u0003ßଡ\u0008ß\u0005ßଣ\u0008ß\nß\u000cßଦ\tß\u0001ß\u0001ß\u0001ß\u0001ß\u0001ß\u0001ß\u0001ß\u0003ßଯ\u0008ß\u0005ß\u0b31\u0008ß\nß\u000cß\u0b34\tß\u0001à\u0001à\u0003àସ\u0008à\u0001à\u0001à" -+ "\u0001à\u0003àଽ\u0008à\u0001á\u0003áୀ\u0008á\u0001á\u0001á\u0001á\u0003á\u0b45\u0008á\u0001â\u0003âୈ\u0008â\u0001â\u0001â\u0001â\u0001ã\u0001ã\u0003ã\u0b4f\u0008ã\u0001ä\u0001ä\u0003ä\u0b53\u0008ä\u0001ä\u0001ä\u0001å\u0001å\u0001å\u0001æ\u0001æ\u0001æ\u0001æ\u0001ç\u0001ç\u0003çୠ\u0008ç\u0001ç\u0001ç\u0001ç\u0001ç\u0004ç୦\u0008ç\u000bç\u000cç୧\u0001ç\u0001ç\u0001è\u0001è\u0001è\u0001è\u0001è\u0003èୱ\u0008è\u0001é\u0001é\u0001é\u0003é୶\u0008é\u0001é\u0003é\u0b79\u0008é\u0001ê\u0001ê\u0001ê\u0003ê\u0b7e\u0008ê\u0001ë\u0001ë\u0001ë\u0003ëஃ\u0008ë\u0001ì\u0003ìஆ\u0008ì\u0001ì\u0001ì\u0003ìஊ\u0008ì\u0001ì\u0003ì\u0b8d\u0008ì\u0001í\u0001í\u0001í\u0001í\u0003íஓ\u0008í\u0001í\u0003í\u0b96\u0008í\u0001î\u0001î\u0003îச\u0008î\u0001î\u0001î\u0003îஞ\u0008î\u0001î\u0003î\u0ba1\u0008î\u0001ï\u0001ï\u0003ï\u0ba5\u0008ï\u0001ï\u0001ï\u0001ð\u0001ð\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0003ñஷ\u0008ñ\u0001ò\u0001ò\u0003ò\u0bbb\u0008ò\u0001ò\u0001ò\u0001ò\u0001ó\u0003óு\u0008ó\u0001ó\u0001ó\u0001ô\u0001ô\u0001ô\u0001ô\u0001ô\u0003ôொ\u0008ô\u0001ô\u0001ô\u0001ô\u0003ô\u0bcf\u0008ô\u0001ô\u0003ô\u0bd2\u0008ô\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0003õ\u0be1\u0008õ\u0001ö\u0001ö\u0001ö\u0001ö\u0001ö\u0003ö௨\u0008ö\u0001÷\u0001÷\u0003÷௬\u0008÷\u0001÷\u0001÷\u0001ø\u0001ø\u0003ø௲\u0008ø\u0001ø\u0001ø\u0001ù\u0001ù\u0003ù௸\u0008ù\u0001ù\u0001ù\u0001ú\u0001ú\u0003ú\u0bfe\u0008ú\u0001ú\u0001ú\u0001ú\u0003úః\u0008ú\u0001û\u0001û\u0001û\u0003ûఈ\u0008û\u0001û\u0001û\u0001û\u0001û\u0001û\u0001û\u0001û\u0003û\u0c11\u0008û\u0001ü\u0001ü\u0001ü\u0001ü\u0001ü\u0001ü\u0003üఙ\u0008ü\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýఠ\u0008ý\u0003ýఢ\u0008ý\u0001ý\u0001ý\u0001ý\u0001" -+ "ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýర\u0008ý\u0001ý\u0001ý\u0003ýఴ\u0008ý\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0003þ\u0c3c\u0008þ\u0001þ\u0001þ\u0003þీ\u0008þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0003þ\u0c52\u0008þ\u0001ÿ\u0001ÿ\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0003Ā\u0c5f\u0008Ā\u0001ā\u0001ā\u0001ā\u0001ā\u0001Ă\u0001Ă\u0001Ă\u0001Ă\u0001Ă\u0001Ă\u0003Ă౫\u0008Ă\u0001Ă\u0003Ă౮\u0008Ă\u0001Ă\u0001Ă\u0003Ă\u0c72\u0008Ă\u0001Ă\u0001Ă\u0003Ă\u0c76\u0008Ă\u0001Ă\u0003Ă౹\u0008Ă\u0003Ă౻\u0008Ă\u0001Ă\u0001Ă\u0001Ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0003ăಆ\u0008ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0003ă\u0c8d\u0008ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0003ăಕ\u0008ă\u0003ăಗ\u0008ă\u0001ă\u0001ă\u0001ă\u0001Ą\u0001Ą\u0001Ą\u0001Ą\u0001Ą\u0003Ąಡ\u0008Ą\u0001Ą\u0001Ą\u0001Ą\u0001Ą\u0001Ą\u0003Ąನ\u0008Ą\u0003Ąಪ\u0008Ą\u0001Ą\u0001Ą\u0001Ą\u0003Ąಯ\u0008Ą\u0003Ąಱ\u0008Ą\u0001ą\u0001ą\u0001Ć\u0001Ć\u0001ć\u0001ć\u0001Ĉ\u0001Ĉ\u0001ĉ\u0001ĉ\u0001Ċ\u0001Ċ\u0001Ċ\u0003Ċೀ\u0008Ċ\u0001Ċ\u0001Ċ\u0001ċ\u0001ċ\u0001Č\u0001Č\u0001č\u0001č\u0001Ď\u0001Ď\u0001Ď\u0005Ď್\u0008Ď\nĎ\u000cĎ\u0cd0\tĎ\u0001ď\u0001ď\u0003ď\u0cd4\u0008ď\u0001ď\u0003ď\u0cd7\u0008ď\u0001Đ\u0001Đ\u0003Đ\u0cdb\u0008Đ\u0001đ\u0001đ\u0003đ\u0cdf\u0008đ\u0001đ\u0001đ\u0001đ\u0003đ\u0ce4\u0008đ\u0001Ē\u0001Ē\u0001Ē\u0003Ē೩\u0008Ē\u0001Ē\u0001Ē\u0001Ē\u0001Ē\u0001Ē\u0001Ē\u0003Ēೱ\u0008Ē\u0001ē\u0001ē\u0001ē\u0003ē\u0cf6\u0008ē\u0001ē\u0001ē\u0001ē\u0001ē\u0001Ĕ\u0001Ĕ\u0003Ĕ\u0cfe\u0008Ĕ\u0001ĕ\u0001ĕ\u0001ĕ\u0003ĕഃ\u0008ĕ\u0001ĕ\u0001ĕ\u0001Ė\u0001Ė\u0001Ė\u0005Ėഊ\u0008Ė\nĖ\u000cĖ\u0d0d\tĖ\u0001ė\u0001ė\u0001ė\u0003ėഒ\u0008ė\u0001ė" -+ "\u0001ė\u0001ė\u0003ėഗ\u0008ė\u0001ė\u0001ė\u0001ė\u0001ė\u0005ėഝ\u0008ė\nė\u000cėഠ\tė\u0003ėഢ\u0008ė\u0001ė\u0001ė\u0001ė\u0001ė\u0001ė\u0001ė\u0003ėപ\u0008ė\u0001ė\u0001ė\u0003ėമ\u0008ė\u0003ėര\u0008ė\u0001Ę\u0001Ę\u0001Ę\u0003Ęവ\u0008Ę\u0001ę\u0001ę\u0001Ě\u0001Ě\u0001ě\u0001ě\u0001Ĝ\u0001Ĝ\u0001Ĝ\u0001Ĝ\u0001Ĝ\u0003Ĝൂ\u0008Ĝ\u0003Ĝൄ\u0008Ĝ\u0001ĝ\u0001ĝ\u0001ĝ\u0001ĝ\u0001ĝ\u0003ĝോ\u0008ĝ\u0003ĝ്\u0008ĝ\u0001Ğ\u0001Ğ\u0001Ğ\u0001Ğ\u0001Ğ\u0001Ğ\u0003Ğൕ\u0008Ğ\u0001Ğ\u0003Ğ൘\u0008Ğ\u0001Ğ\u0003Ğ൛\u0008Ğ\u0001ğ\u0001ğ\u0001ğ\u0001ğ\u0001ğ\u0003ğൢ\u0008ğ\u0001ğ\u0001ğ\u0001ğ\u0004ğ൧\u0008ğ\u000bğ\u000cğ൨\u0003ğ൫\u0008ğ\u0001ğ\u0003ğ൮\u0008ğ\u0001ğ\u0003ğ൱\u0008ğ\u0001Ġ\u0001Ġ\u0001Ġ\u0001ġ\u0001ġ\u0001Ģ\u0001Ģ\u0001Ģ\u0001ģ\u0001ģ\u0001Ĥ\u0003Ĥൾ\u0008Ĥ\u0001Ĥ\u0001Ĥ\u0001Ĥ\u0001Ĥ\u0003Ĥ\u0d84\u0008Ĥ\u0001Ĥ\u0003Ĥඇ\u0008Ĥ\u0001Ĥ\u0001Ĥ\u0003Ĥඋ\u0008Ĥ\u0001Ĥ\u0003Ĥඎ\u0008Ĥ\u0001ĥ\u0001ĥ\u0001ĥ\u0003ĥඓ\u0008ĥ\u0001Ħ\u0001Ħ\u0001Ħ\u0001Ħ\u0003Ħ\u0d99\u0008Ħ\u0001Ħ\u0001Ħ\u0001Ħ\u0001Ħ\u0003Ħඟ\u0008Ħ\u0004Ħඡ\u0008Ħ\u000bĦ\u000cĦජ\u0001Ħ\u0001Ħ\u0001Ħ\u0004Ħඨ\u0008Ħ\u000bĦ\u000cĦඩ\u0003Ħඬ\u0008Ħ\u0001Ħ\u0003Ħද\u0008Ħ\u0001ħ\u0001ħ\u0001ħ\u0001ħ\u0001Ĩ\u0001Ĩ\u0001Ĩ\u0004Ĩම\u0008Ĩ\u000bĨ\u000cĨඹ\u0001ĩ\u0001ĩ\u0001ĩ\u0001ĩ\u0001Ī\u0001Ī\u0001Ī\u0001Ī\u0003Īහ\u0008Ī\u0001ī\u0001ī\u0001ī\u0001ī\u0003ī්\u0008ī\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0003Ĭා\u0008Ĭ\u0003Ĭෑ\u0008Ĭ\u0001Ĭ\u0003Ĭු\u0008Ĭ\u0001ĭ\u0001ĭ\u0001Į\u0001Į\u0001Į\u0003Įෛ\u0008Į\u0001Į\u0001Į\u0003Įෟ\u0008Į\u0001Į\u0003Į\u0de2\u0008Į\u0003Į\u0de4\u0008Į\u0001į\u0001į\u0001İ\u0001İ\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0003ı෯\u0008ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0003ı\u0dfc" -+ "\u0008ı\u0003ı\u0dfe\u0008ı\u0001ı\u0001ı\u0003ıข\u0008ı\u0001IJ\u0001IJ\u0001IJ\u0001IJ\u0003IJจ\u0008IJ\u0001IJ\u0001IJ\u0001IJ\u0001ij\u0001ij\u0001ij\u0001ij\u0003ijฑ\u0008ij\u0001ij\u0001ij\u0001ij\u0001ij\u0001ij\u0001ij\u0001ij\u0004ijบ\u0008ij\u000bij\u000cijป\u0001Ĵ\u0001Ĵ\u0001Ĵ\u0001Ĵ\u0003Ĵย\u0008Ĵ\u0001ĵ\u0001ĵ\u0001ĵ\u0001Ķ\u0001Ķ\u0001Ķ\u0001ķ\u0001ķ\u0001ķ\u0001ĸ\u0001ĸ\u0001ĸ\u0001Ĺ\u0001Ĺ\u0003Ĺา\u0008Ĺ\u0001Ĺ\u0001Ĺ\u0001Ĺ\u0003Ĺื\u0008Ĺ\u0001ĺ\u0001ĺ\u0003ĺ\u0e3b\u0008ĺ\u0001Ļ\u0001Ļ\u0003Ļ฿\u0008Ļ\u0001ļ\u0001ļ\u0001ļ\u0005ļไ\u0008ļ\nļ\u000cļ็\tļ\u0001Ľ\u0001Ľ\u0001Ľ\u0005Ľ์\u0008Ľ\nĽ\u000cĽ๏\tĽ\u0001ľ\u0001ľ\u0003ľ๓\u0008ľ\u0001Ŀ\u0001Ŀ\u0001Ŀ\u0005Ŀ๘\u0008Ŀ\nĿ\u000cĿ๛\tĿ\u0001ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0005ŀ\u0e61\u0008ŀ\nŀ\u000cŀ\u0e64\tŀ\u0003ŀ\u0e66\u0008ŀ\u0001ŀ\u0001ŀ\u0001Ł\u0001Ł\u0001Ł\u0004Ł\u0e6d\u0008Ł\u000bŁ\u000cŁ\u0e6e\u0001ł\u0001ł\u0001Ń\u0001Ń\u0003Ń\u0e75\u0008Ń\u0001ń\u0001ń\u0003ń\u0e79\u0008ń\u0001Ņ\u0001Ņ\u0003Ņ\u0e7d\u0008Ņ\u0001ņ\u0001ņ\u0001ņ\u0001ņ\u0001ņ\u0001ņ\u0001ņ\u0001ņ\u0001ņ\u0005ņຈ\u0008ņ\nņ\u000cņ\u0e8b\tņ\u0003ņຍ\u0008ņ\u0001ņ\u0001ņ\u0001Ň\u0001Ň\u0003Ňຓ\u0008Ň\u0001ň\u0001ň\u0001ʼn\u0001ʼn\u0001ʼn\u0001ʼn\u0001ʼn\u0001ʼn\u0001ʼn\u0001ʼn\u0001ʼn\u0003ʼnຠ\u0008ʼn\u0001Ŋ\u0001Ŋ\u0003Ŋ\u0ea4\u0008Ŋ\u0001ŋ\u0001ŋ\u0001Ō\u0001Ō\u0001ō\u0001ō\u0001ō\u0000\u0000Ŏ\u0000\u0002\u0004\u0006\u0008\n\u000c\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~€‚„†ˆŠŒŽ’”–˜šœž ¢¤¦¨ª¬®°²´¶¸º¼¾ÀÂÄÆÈÊÌÎÐÒÔÖØÚÜÞàâäæèêìîðòôöø" -+ "úüþĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĸĺļľŀłńņňŊŌŎŐŒŔŖŘŚŜŞŠŢŤŦŨŪŬŮŰŲŴŶŸźżžƀƂƄƆƈƊƌƎƐƒƔƖƘƚƜƞƠƢƤƦƨƪƬƮưƲƴƶƸƺƼƾǀǂDŽdžLjNJnjǎǐǒǔǖǘǚǜǞǠǢǤǦǨǪǬǮǰDzǴǶǸǺǼǾȀȂȄȆȈȊȌȎȐȒȔȖȘȚȜȞȠȢȤȦȨȪȬȮȰȲȴȶȸȺȼȾɀɂɄɆɈɊɌɎɐɒɔɖɘɚɜɞɠɢɤɦɨɪɬɮɰɲɴɶɸɺɼɾʀʂʄʆʈʊʌʎʐʒʔʖʘʚ\u0000O\u0002\u0000\u0012\u0012QQ\u0001\u0000\u0018\u0019\u0001\u0000KL\u0002\u0000¸¸ĂĂ\u0002\u0000NN®®\u0002\u0000==ŸŸ\u0001\u0000íî\u0003\u0000$$;;kk\u0002\u0000\u0011\u0011ýý\u0001\u0000z{\u0001\u0000ÃÄ\u0002\u0000\u0012\u0012\u0015\u0015\u0002\u0000œœķķ\u0002\u0000¡¡ĶĶ\u0002\u0000||ĸĸ\u0002\u0000//\u0002\u0000//‹‹\u0006\u0000ddvv||””œœ£¤\u0002\u000000ěě\u0001\u0000¨«\u0003\u0000UU¡¡ÇÇ\u0003\u0000RR¢¢ďď\u0002\u0000¡¡ÇÇ\u0004\u0000\u0012\u0012\u0015\u0015°°āā\u0003\u0000##••ĔĔ\u0001\u0000\u0004\u0007\u0002\u0000DDĎĎ\u0001\u0000Įį\u0002\u0000\u0016\u0016——\u0002\u0000%%ĩĩ\u0006\u0000ssššÉÉ××ČČĨĨ\u0002\u0000\u0012\u0012&&\u0002\u0000­­ßà\u0001\u0000ßà\u0002\u0000­­àà\u0001\u0000ÐÑ\u0001\u0000tu\u0001\u0000ûü\u0002\u0000pp¹¹\u0002\u0000\u001a\u001aææ\u0002\u0000JJww\u0001\u0000ëì\u0001\u0000øù\u0001\u0000AB\u0002\u0000\u0012\u0012ÊÊ\u0001\u0000ģĤ\u0001\u0000ÔÕ\u0002\u0000aaÆÆ\u0002\u0000\u000c\u000cĉĉ\u0001\u000023\u0001\u0000ÎÏ\u0003\u0000AAE" -+ "Exx\u0002\u0000GG~~\u0002\u0000AAxx\u0001\u0000xy\u0001\u0000Ž\u0002\u0000ĚĚĜĜ\u0001\u0000¥¦\u0002\u0000--ġġ\u0001\u0000ÁÂ\u0002\u0000ÎÎëë\u0003\u0000\u000f\u000fAAģģ\u0002\u0000ëëģģ\u0001\u0000\r\u000e\u0001\u0000„…\u0001\u000078\u0001\u0000ĕĖ\u0002\u0000ŸŸÚÚ\u0001\u0000àá\u0001\u0000^_\u0002\u0000­­¯¯\u0001\u0000ÌÍ\u0001\u0000óô\u0002\u0000MMYY\u0001\u0000\u000f\u0010\u0002\u0000ººİİ\u0002\u0000ñòõõ\u0001\u0000\u0008\t\u0017\u0000\u000b\u001d\u001f.2OQQVceuw{}•š ¥§¬±´µ·ÆÉÊÌÕ××ÚÝßîðöøĎĐĚĜĵု\u0000ʜ\u0001\u0000\u0000\u0000\u0002ʪ\u0001\u0000\u0000\u0000\u0004ʰ\u0001\u0000\u0000\u0000\u0006ʶ\u0001\u0000\u0000\u0000\u0008˂\u0001\u0000\u0000\u0000\n˗\u0001\u0000\u0000\u0000\u000c˙\u0001\u0000\u0000\u0000\u000e˥\u0001\u0000\u0000\u0000\u0010˧\u0001\u0000\u0000\u0000\u0012˩\u0001\u0000\u0000\u0000\u0014˭\u0001\u0000\u0000\u0000\u0016˹\u0001\u0000\u0000\u0000\u0018̀\u0001\u0000\u0000\u0000\u001ả\u0001\u0000\u0000\u0000\u001c̎\u0001\u0000\u0000\u0000\u001e̐\u0001\u0000\u0000\u0000 ̒\u0001\u0000\u0000\u0000\"̜\u0001\u0000\u0000\u0000$̟\u0001\u0000\u0000\u0000&̢\u0001\u0000\u0000\u0000(̥\u0001\u0000\u0000\u0000*̪\u0001\u0000\u0000\u0000,̭\u0001\u0000\u0000\u0000.̰\u0001\u0000\u0000\u00000͏\u0001\u0000\u0000\u00002͑\u0001\u0000\u0000\u00004͢\u0001\u0000\u0000\u00006ͥ\u0001\u0000\u0000\u00008ͱ\u0001\u0000\u0000\u0000:Α\u0001\u0000\u0000\u0000<Γ\u0001\u0000\u0000\u0000>α\u0001\u0000\u0000\u0000@ι\u0001\u0000\u0000\u0000Bν\u0001\u0000\u0000\u0000Dσ\u0001\u0000\u0000\u0000FϦ\u0001\u0000\u0000\u0000Hϩ\u0001\u0000\u0000\u0000Jϫ\u0001\u0000\u0000\u0000Lϰ\u0001\u0000\u0000\u0000NϾ\u0001\u0000\u0000\u0000PЌ\u0001\u0000\u0000\u0000RИ\u0001\u0000\u0000\u0000TЦ\u0001\u0000\u0000\u0000Vж\u0001\u0000\u0000\u0000Xк\u0001\u0000\u0000\u0000Zо\u0001\u0000\u0000\u0000\\я\u0001\u0000\u0000\u0000^ё\u0001\u0000\u0000\u0000`љ\u0001\u0000\u0000\u0000bѤ\u0001\u0000\u0000\u0000dѮ\u0001\u0000\u0000\u0000f҇\u0001\u0000\u0000\u0000hҋ\u0001\u0000\u0000\u0000jҍ\u0001\u0000\u0000\u0000lҟ\u0001\u0000\u0000\u0000" -+ "nӅ\u0001\u0000\u0000\u0000pӇ\u0001\u0000\u0000\u0000rӉ\u0001\u0000\u0000\u0000tӋ\u0001\u0000\u0000\u0000vӓ\u0001\u0000\u0000\u0000xӣ\u0001\u0000\u0000\u0000zӯ\u0001\u0000\u0000\u0000|ӻ\u0001\u0000\u0000\u0000~ӿ\u0001\u0000\u0000\u0000€ԋ\u0001\u0000\u0000\u0000‚Ԑ\u0001\u0000\u0000\u0000„Ԙ\u0001\u0000\u0000\u0000†ԛ\u0001\u0000\u0000\u0000ˆԞ\u0001\u0000\u0000\u0000Šԡ\u0001\u0000\u0000\u0000ŒԦ\u0001\u0000\u0000\u0000Žԩ\u0001\u0000\u0000\u0000Յ\u0001\u0000\u0000\u0000’Օ\u0001\u0000\u0000\u0000”\u0557\u0001\u0000\u0000\u0000–ՙ\u0001\u0000\u0000\u0000˜՛\u0001\u0000\u0000\u0000šժ\u0001\u0000\u0000\u0000œլ\u0001\u0000\u0000\u0000žշ\u0001\u0000\u0000\u0000 ւ\u0001\u0000\u0000\u0000¢֊\u0001\u0000\u0000\u0000¤֕\u0001\u0000\u0000\u0000¦֝\u0001\u0000\u0000\u0000¨֩\u0001\u0000\u0000\u0000ªֲ\u0001\u0000\u0000\u0000¬ִ\u0001\u0000\u0000\u0000®ֽ\u0001\u0000\u0000\u0000°׀\u0001\u0000\u0000\u0000²\u05c8\u0001\u0000\u0000\u0000´א\u0001\u0000\u0000\u0000¶כ\u0001\u0000\u0000\u0000¸נ\u0001\u0000\u0000\u0000ºר\u0001\u0000\u0000\u0000¼،\u0001\u0000\u0000\u0000¾؎\u0001\u0000\u0000\u0000Àؐ\u0001\u0000\u0000\u0000Âؘ\u0001\u0000\u0000\u0000Äؠ\u0001\u0000\u0000\u0000Æث\u0001\u0000\u0000\u0000Èح\u0001\u0000\u0000\u0000Êك\u0001\u0000\u0000\u0000Ìم\u0001\u0000\u0000\u0000Îو\u0001\u0000\u0000\u0000Ðٌ\u0001\u0000\u0000\u0000Òْ\u0001\u0000\u0000\u0000Ô٪\u0001\u0000\u0000\u0000Öٵ\u0001\u0000\u0000\u0000Øٷ\u0001\u0000\u0000\u0000Úڃ\u0001\u0000\u0000\u0000Üڈ\u0001\u0000\u0000\u0000Þڕ\u0001\u0000\u0000\u0000àۂ\u0001\u0000\u0000\u0000âۄ\u0001\u0000\u0000\u0000äۖ\u0001\u0000\u0000\u0000æۥ\u0001\u0000\u0000\u0000è۲\u0001\u0000\u0000\u0000ê۽\u0001\u0000\u0000\u0000ì܆\u0001\u0000\u0000\u0000îܔ\u0001\u0000\u0000\u0000ðܖ\u0001\u0000\u0000\u0000òܘ\u0001\u0000\u0000\u0000ôܜ\u0001\u0000\u0000\u0000öܲ\u0001\u0000\u0000\u0000øܴ\u0001\u0000\u0000\u0000úܹ\u0001\u0000\u0000\u0000ü݇\u0001\u0000\u0000\u0000þݕ\u0001\u0000\u0000\u0000Āݛ\u0001\u0000\u0000\u0000Ăݠ\u0001\u0000\u0000\u0000Ąݤ\u0001\u0000\u0000\u0000Ćݱ\u0001\u0000\u0000\u0000Ĉݳ\u0001\u0000\u0000\u0000Ċݸ\u0001\u0000\u0000\u0000Čݺ\u0001\u0000\u0000\u0000Ďދ\u0001\u0000\u0000\u0000Đލ\u0001\u0000\u0000\u0000Ēޕ\u0001\u0000\u0000\u0000Ĕޘ\u0001\u0000\u0000\u0000Ėޚ\u0001\u0000\u0000\u0000Ęޢ" -+ "\u0001\u0000\u0000\u0000Ěު\u0001\u0000\u0000\u0000Ĝߵ\u0001\u0000\u0000\u0000Ğߺ\u0001\u0000\u0000\u0000Ġ\u07fc\u0001\u0000\u0000\u0000Ģࠁ\u0001\u0000\u0000\u0000Ĥࠒ\u0001\u0000\u0000\u0000Ħࠠ\u0001\u0000\u0000\u0000Ĩࠪ\u0001\u0000\u0000\u0000Īࡂ\u0001\u0000\u0000\u0000Ĭࡄ\u0001\u0000\u0000\u0000Įࡉ\u0001\u0000\u0000\u0000İࡌ\u0001\u0000\u0000\u0000IJࡏ\u0001\u0000\u0000\u0000Ĵࡧ\u0001\u0000\u0000\u0000Ķࡪ\u0001\u0000\u0000\u0000ĸ\u086f\u0001\u0000\u0000\u0000ĺ\u0871\u0001\u0000\u0000\u0000ļ\u0883\u0001\u0000\u0000\u0000ľ\u088b\u0001\u0000\u0000\u0000ŀ\u088d\u0001\u0000\u0000\u0000ł\u0894\u0001\u0000\u0000\u0000ń\u08b5\u0001\u0000\u0000\u0000ņࢻ\u0001\u0000\u0000\u0000ňࣂ\u0001\u0000\u0000\u0000Ŋ\u08cd\u0001\u0000\u0000\u0000Ō\u08cf\u0001\u0000\u0000\u0000Ŏࣖ\u0001\u0000\u0000\u0000Ő࣠\u0001\u0000\u0000\u0000Œࣧ\u0001\u0000\u0000\u0000Ŕࣲ\u0001\u0000\u0000\u0000Ŗࣾ\u0001\u0000\u0000\u0000Řऀ\u0001\u0000\u0000\u0000Śऎ\u0001\u0000\u0000\u0000Ŝऐ\u0001\u0000\u0000\u0000Şओ\u0001\u0000\u0000\u0000Šख\u0001\u0000\u0000\u0000Ţङ\u0001\u0000\u0000\u0000Ťढ\u0001\u0000\u0000\u0000Ŧऩ\u0001\u0000\u0000\u0000Ũफ\u0001\u0000\u0000\u0000Ūर\u0001\u0000\u0000\u0000Ŭु\u0001\u0000\u0000\u0000Ůॵ\u0001\u0000\u0000\u0000Űॷ\u0001\u0000\u0000\u0000Ųভ\u0001\u0000\u0000\u0000Ŵয\u0001\u0000\u0000\u0000Ŷ\u09b5\u0001\u0000\u0000\u0000Ÿে\u0001\u0000\u0000\u0000ź\u09db\u0001\u0000\u0000\u0000ż২\u0001\u0000\u0000\u0000žਂ\u0001\u0000\u0000\u0000ƀਕ\u0001\u0000\u0000\u0000Ƃਛ\u0001\u0000\u0000\u0000Ƅਮ\u0001\u0000\u0000\u0000Ɔ\u0a43\u0001\u0000\u0000\u0000ƈ\u0a45\u0001\u0000\u0000\u0000Ɗ\u0a50\u0001\u0000\u0000\u0000ƌ\u0a58\u0001\u0000\u0000\u0000Ǝਫ਼\u0001\u0000\u0000\u0000Ɛ੫\u0001\u0000\u0000\u0000ƒੳ\u0001\u0000\u0000\u0000Ɣઃ\u0001\u0000\u0000\u0000Ɩઅ\u0001\u0000\u0000\u0000Ƙઇ\u0001\u0000\u0000\u0000ƚઉ\u0001\u0000\u0000\u0000Ɯએ\u0001\u0000\u0000\u0000ƞઔ\u0001\u0000\u0000\u0000Ơઙ\u0001\u0000\u0000\u0000Ƣજ\u0001\u0000\u0000\u0000Ƥડ\u0001\u0000\u0000\u0000Ʀધ\u0001\u0000\u0000\u0000ƨળ\u0001\u0000\u0000\u0000ƪશ\u0001\u0000\u0000\u0000Ƭૃ\u0001\u0000\u0000\u0000Ʈૉ\u0001\u0000\u0000\u0000ư\u0ad3\u0001\u0000\u0000\u0000Ʋ\u0add\u0001\u0000\u0000\u0000ƴૡ\u0001\u0000\u0000\u0000ƶ\u0ae5\u0001\u0000\u0000\u0000Ƹૹ\u0001\u0000\u0000\u0000ƺ૿\u0001\u0000\u0000\u0000Ƽଈ\u0001\u0000\u0000\u0000ƾ\u0b11\u0001\u0000\u0000\u0000ǀଵ\u0001\u0000\u0000\u0000ǂି\u0001\u0000" -+ "\u0000\u0000DŽେ\u0001\u0000\u0000\u0000dž\u0b4e\u0001\u0000\u0000\u0000Lj\u0b50\u0001\u0000\u0000\u0000NJୖ\u0001\u0000\u0000\u0000nj\u0b59\u0001\u0000\u0000\u0000ǎଢ଼\u0001\u0000\u0000\u0000ǐ୰\u0001\u0000\u0000\u0000ǒ୲\u0001\u0000\u0000\u0000ǔ\u0b7a\u0001\u0000\u0000\u0000ǖ\u0b7f\u0001\u0000\u0000\u0000ǘஅ\u0001\u0000\u0000\u0000ǚஎ\u0001\u0000\u0000\u0000ǜ\u0b97\u0001\u0000\u0000\u0000Ǟ\u0ba2\u0001\u0000\u0000\u0000Ǡந\u0001\u0000\u0000\u0000Ǣஶ\u0001\u0000\u0000\u0000Ǥஸ\u0001\u0000\u0000\u0000Ǧீ\u0001\u0000\u0000\u0000Ǩ\u0bd1\u0001\u0000\u0000\u0000Ǫ\u0bd3\u0001\u0000\u0000\u0000Ǭ௧\u0001\u0000\u0000\u0000Ǯ௩\u0001\u0000\u0000\u0000ǰ௯\u0001\u0000\u0000\u0000Dz௵\u0001\u0000\u0000\u0000Ǵం\u0001\u0000\u0000\u0000Ƕఄ\u0001\u0000\u0000\u0000Ǹఒ\u0001\u0000\u0000\u0000Ǻచ\u0001\u0000\u0000\u0000Ǽవ\u0001\u0000\u0000\u0000Ǿ\u0c53\u0001\u0000\u0000\u0000Ȁౕ\u0001\u0000\u0000\u0000Ȃౠ\u0001\u0000\u0000\u0000Ȅ౺\u0001\u0000\u0000\u0000Ȇಖ\u0001\u0000\u0000\u0000Ȉಛ\u0001\u0000\u0000\u0000Ȋಲ\u0001\u0000\u0000\u0000Ȍ\u0cb4\u0001\u0000\u0000\u0000Ȏಶ\u0001\u0000\u0000\u0000Ȑಸ\u0001\u0000\u0000\u0000Ȓ\u0cba\u0001\u0000\u0000\u0000Ȕ಼\u0001\u0000\u0000\u0000Ȗೃ\u0001\u0000\u0000\u0000Ș\u0cc5\u0001\u0000\u0000\u0000Țೇ\u0001\u0000\u0000\u0000Ȝ\u0cc9\u0001\u0000\u0000\u0000Ȟೖ\u0001\u0000\u0000\u0000Ƞ\u0cd8\u0001\u0000\u0000\u0000Ȣೣ\u0001\u0000\u0000\u0000Ȥ೨\u0001\u0000\u0000\u0000Ȧ\u0cf5\u0001\u0000\u0000\u0000Ȩ\u0cfd\u0001\u0000\u0000\u0000Ȫ\u0cff\u0001\u0000\u0000\u0000Ȭആ\u0001\u0000\u0000\u0000Ȯയ\u0001\u0000\u0000\u0000Ȱഴ\u0001\u0000\u0000\u0000Ȳശ\u0001\u0000\u0000\u0000ȴസ\u0001\u0000\u0000\u0000ȶഺ\u0001\u0000\u0000\u0000ȸൃ\u0001\u0000\u0000\u0000Ⱥൌ\u0001\u0000\u0000\u0000ȼൎ\u0001\u0000\u0000\u0000Ⱦ൜\u0001\u0000\u0000\u0000ɀ൲\u0001\u0000\u0000\u0000ɂ൵\u0001\u0000\u0000\u0000Ʉ൷\u0001\u0000\u0000\u0000Ɇൺ\u0001\u0000\u0000\u0000Ɉൽ\u0001\u0000\u0000\u0000Ɋඒ\u0001\u0000\u0000\u0000Ɍඔ\u0001\u0000\u0000\u0000Ɏධ\u0001\u0000\u0000\u0000ɐප\u0001\u0000\u0000\u0000ɒර\u0001\u0000\u0000\u0000ɔ\u0dbf\u0001\u0000\u0000\u0000ɖළ\u0001\u0000\u0000\u0000ɘී\u0001\u0000\u0000\u0000ɚ\u0dd5\u0001\u0000\u0000\u0000ɜ\u0de3\u0001\u0000\u0000\u0000ɞ\u0de5\u0001\u0000\u0000\u0000ɠ෧\u0001\u0000\u0000\u0000ɢ෩\u0001\u0000\u0000\u0000ɤฃ\u0001\u0000\u0000\u0000ɦฌ\u0001\u0000\u0000\u0000ɨฝ\u0001\u0000\u0000\u0000ɪร\u0001\u0000\u0000\u0000ɬฦ\u0001\u0000\u0000\u0000" -+ "ɮษ\u0001\u0000\u0000\u0000ɰฬ\u0001\u0000\u0000\u0000ɲฯ\u0001\u0000\u0000\u0000ɴฺ\u0001\u0000\u0000\u0000ɶ\u0e3e\u0001\u0000\u0000\u0000ɸเ\u0001\u0000\u0000\u0000ɺ่\u0001\u0000\u0000\u0000ɼ๒\u0001\u0000\u0000\u0000ɾ๔\u0001\u0000\u0000\u0000ʀ\u0e5c\u0001\u0000\u0000\u0000ʂ\u0e69\u0001\u0000\u0000\u0000ʄ\u0e70\u0001\u0000\u0000\u0000ʆ\u0e74\u0001\u0000\u0000\u0000ʈ\u0e78\u0001\u0000\u0000\u0000ʊ\u0e7c\u0001\u0000\u0000\u0000ʌ\u0e7e\u0001\u0000\u0000\u0000ʎຒ\u0001\u0000\u0000\u0000ʐດ\u0001\u0000\u0000\u0000ʒຟ\u0001\u0000\u0000\u0000ʔຣ\u0001\u0000\u0000\u0000ʖລ\u0001\u0000\u0000\u0000ʘວ\u0001\u0000\u0000\u0000ʚຩ\u0001\u0000\u0000\u0000ʜʡ\u0003\u0002\u0001\u0000ʝʞ\u0005÷\u0000\u0000ʞʠ\u0003\u0002\u0001\u0000ʟʝ\u0001\u0000\u0000\u0000ʠʣ\u0001\u0000\u0000\u0000ʡʟ\u0001\u0000\u0000\u0000ʡʢ\u0001\u0000\u0000\u0000ʢʥ\u0001\u0000\u0000\u0000ʣʡ\u0001\u0000\u0000\u0000ʤʦ\u0005÷\u0000\u0000ʥʤ\u0001\u0000\u0000\u0000ʥʦ\u0001\u0000\u0000\u0000ʦʧ\u0001\u0000\u0000\u0000ʧʨ\u0005\u0000\u0000\u0001ʨ\u0001\u0001\u0000\u0000\u0000ʩʫ\u0003\u0004\u0002\u0000ʪʩ\u0001\u0000\u0000\u0000ʪʫ\u0001\u0000\u0000\u0000ʫʮ\u0001\u0000\u0000\u0000ʬʯ\u0003Ģ‘\u0000ʭʯ\u0003\u0006\u0003\u0000ʮʬ\u0001\u0000\u0000\u0000ʮʭ\u0001\u0000\u0000\u0000ʯ\u0003\u0001\u0000\u0000\u0000ʰʱ\u0005ĥ\u0000\u0000ʱʲ\u0005Å\u0000\u0000ʲʴ\u00054\u0000\u0000ʳʵ\u0005\u0005\u0000\u0000ʴʳ\u0001\u0000\u0000\u0000ʴʵ\u0001\u0000\u0000\u0000ʵ\u0005\u0001\u0000\u0000\u0000ʶʾ\u0003\u0008\u0004\u0000ʷʹ\u0005ĝ\u0000\u0000ʸʺ\u0007\u0000\u0000\u0000ʹʸ\u0001\u0000\u0000\u0000ʹʺ\u0001\u0000\u0000\u0000ʺʻ\u0001\u0000\u0000\u0000ʻʽ\u0003\u0008\u0004\u0000ʼʷ\u0001\u0000\u0000\u0000ʽˀ\u0001\u0000\u0000\u0000ʾʼ\u0001\u0000\u0000\u0000ʾʿ\u0001\u0000\u0000\u0000ʿ\u0007\u0001\u0000\u0000\u0000ˀʾ\u0001\u0000\u0000\u0000ˁ˃\u0003\n\u0005\u0000˂ˁ\u0001\u0000\u0000\u0000˃˄\u0001\u0000\u0000\u0000˄˂\u0001\u0000\u0000\u0000˄˅\u0001\u0000\u0000\u0000˅\t\u0001\u0000\u0000\u0000ˆ˘\u0003\u000c\u0006\u0000ˇ˘\u0003\u0010\u0008\u0000ˈ˘\u0003\u0012\t\u0000ˉ˘\u0003*\u0015\u0000ˊ˘\u0003,\u0016\u0000ˋ˘\u00036\u001b\u0000ˌ˘\u0003.\u0017\u0000ˍ˘\u00032\u0019\u0000ˎ˘\u00038\u001c\u0000ˏ˘\u0003>\u001f\u0000ː˘\u0003(\u0014\u0000ˑ˘\u0003B!\u0000˒˘" -+ "\u0003D\"\u0000˓˘\u0003P(\u0000˔˘\u0003L&\u0000˕˘\u0003N\'\u0000˖˘\u0003\\.\u0000˗ˆ\u0001\u0000\u0000\u0000˗ˇ\u0001\u0000\u0000\u0000˗ˈ\u0001\u0000\u0000\u0000˗ˉ\u0001\u0000\u0000\u0000˗ˊ\u0001\u0000\u0000\u0000˗ˋ\u0001\u0000\u0000\u0000˗ˌ\u0001\u0000\u0000\u0000˗ˍ\u0001\u0000\u0000\u0000˗ˎ\u0001\u0000\u0000\u0000˗ˏ\u0001\u0000\u0000\u0000˗ː\u0001\u0000\u0000\u0000˗ˑ\u0001\u0000\u0000\u0000˗˒\u0001\u0000\u0000\u0000˗˓\u0001\u0000\u0000\u0000˗˔\u0001\u0000\u0000\u0000˗˕\u0001\u0000\u0000\u0000˗˖\u0001\u0000\u0000\u0000˘\u000b\u0001\u0000\u0000\u0000˙˛\u0005Ģ\u0000\u0000˚˜\u0005x\u0000\u0000˛˚\u0001\u0000\u0000\u0000˛˜\u0001\u0000\u0000\u0000˜˝\u0001\u0000\u0000\u0000˝˞\u0003\u000e\u0007\u0000˞\r\u0001\u0000\u0000\u0000˟ˠ\u0005›\u0000\u0000ˠˡ\u0003\u000e\u0007\u0000ˡˢ\u0005ï\u0000\u0000ˢ˦\u0001\u0000\u0000\u0000ˣ˦\u0003Ȇ\u0000ˤ˦\u0003ɾĿ\u0000˥˟\u0001\u0000\u0000\u0000˥ˣ\u0001\u0000\u0000\u0000˥ˤ\u0001\u0000\u0000\u0000˦\u000f\u0001\u0000\u0000\u0000˧˨\u0005n\u0000\u0000˨\u0011\u0001\u0000\u0000\u0000˩˪\u0005é\u0000\u0000˪˫\u0003\u0014\n\u0000˫\u0013\u0001\u0000\u0000\u0000ˬˮ\u0005Q\u0000\u0000˭ˬ\u0001\u0000\u0000\u0000˭ˮ\u0001\u0000\u0000\u0000ˮ˯\u0001\u0000\u0000\u0000˯˱\u0003\u0018\u000c\u0000˰˲\u0003 \u0010\u0000˱˰\u0001\u0000\u0000\u0000˱˲\u0001\u0000\u0000\u0000˲˴\u0001\u0000\u0000\u0000˳˵\u0003\"\u0011\u0000˴˳\u0001\u0000\u0000\u0000˴˵\u0001\u0000\u0000\u0000˵˷\u0001\u0000\u0000\u0000˶˸\u0003$\u0012\u0000˷˶\u0001\u0000\u0000\u0000˷˸\u0001\u0000\u0000\u0000˸\u0015\u0001\u0000\u0000\u0000˹˼\u0003°X\u0000˺˻\u0005\u0017\u0000\u0000˻˽\u0003ĔŠ\u0000˼˺\u0001\u0000\u0000\u0000˼˽\u0001\u0000\u0000\u0000˽\u0017\u0001\u0000\u0000\u0000˾́\u0005ď\u0000\u0000˿́\u0003\u0016\u000b\u0000̀˾\u0001\u0000\u0000\u0000̀˿\u0001\u0000\u0000\u0000́̆\u0001\u0000\u0000\u0000̂̃\u00051\u0000\u0000̃̅\u0003\u0016\u000b\u0000̄̂\u0001\u0000\u0000\u0000̅̈\u0001\u0000\u0000\u0000̆̄\u0001\u0000\u0000\u0000̆̇\u0001\u0000\u0000\u0000̇\u0019\u0001\u0000\u0000\u0000̈̆\u0001\u0000\u0000\u0000̉̌\u0003°X\u0000̊̍\u0003\u001c\u000e\u0000̋̍\u0003\u001e\u000f\u0000̌̊\u0001\u0000\u0000\u0000̌̋\u0001\u0000" -+ "\u0000\u0000̌̍\u0001\u0000\u0000\u0000̍\u001b\u0001\u0000\u0000\u0000̎̏\u0007\u0001\u0000\u0000̏\u001d\u0001\u0000\u0000\u0000̐̑\u0007\u0002\u0000\u0000̑\u001f\u0001\u0000\u0000\u0000̒̓\u0005¿\u0000\u0000̓̔\u0005(\u0000\u0000̙̔\u0003\u001a\r\u0000̖̕\u00051\u0000\u0000̖̘\u0003\u001a\r\u0000̗̕\u0001\u0000\u0000\u0000̛̘\u0001\u0000\u0000\u0000̙̗\u0001\u0000\u0000\u0000̙̚\u0001\u0000\u0000\u0000̚!\u0001\u0000\u0000\u0000̛̙\u0001\u0000\u0000\u0000̜̝\u0007\u0003\u0000\u0000̝̞\u0003°X\u0000̞#\u0001\u0000\u0000\u0000̟̠\u0005–\u0000\u0000̡̠\u0003°X\u0000̡%\u0001\u0000\u0000\u0000̢̣\u0005ĭ\u0000\u0000̣̤\u0003°X\u0000̤\'\u0001\u0000\u0000\u0000̥̦\u0005Į\u0000\u0000̨̦\u0003\u0014\n\u0000̧̩\u0003&\u0013\u0000̨̧\u0001\u0000\u0000\u0000̨̩\u0001\u0000\u0000\u0000̩)\u0001\u0000\u0000\u0000̪̫\u0005=\u0000\u0000̫̬\u0003^/\u0000̬+\u0001\u0000\u0000\u0000̭̮\u0005ˆ\u0000\u0000̮̯\u0003`0\u0000̯-\u0001\u0000\u0000\u0000̰̱\u0005ú\u0000\u0000̶̱\u00030\u0018\u0000̲̳\u00051\u0000\u0000̵̳\u00030\u0018\u0000̴̲\u0001\u0000\u0000\u0000̵̸\u0001\u0000\u0000\u0000̶̴\u0001\u0000\u0000\u0000̶̷\u0001\u0000\u0000\u0000̷/\u0001\u0000\u0000\u0000̸̶\u0001\u0000\u0000\u0000̹̺\u0003Ðh\u0000̺̻\u0005d\u0000\u0000̻̼\u0003°X\u0000̼͐\u0001\u0000\u0000\u0000̽̾\u0003Òi\u0000̾̿\u0005d\u0000\u0000̿̀\u0003°X\u0000̀͐\u0001\u0000\u0000\u0000́͂\u0003ĔŠ\u0000͂̓\u0005d\u0000\u0000̓̈́\u0003°X\u0000̈́͐\u0001\u0000\u0000\u0000͆ͅ\u0003ĔŠ\u0000͇͆\u0005È\u0000\u0000͇͈\u0003°X\u0000͈͐\u0001\u0000\u0000\u0000͉͊\u0003ĔŠ\u0000͊͋\u0003|>\u0000͋͐\u0001\u0000\u0000\u0000͍͌\u0003ĔŠ\u0000͍͎\u0003~?\u0000͎͐\u0001\u0000\u0000\u0000͏̹\u0001\u0000\u0000\u0000͏̽\u0001\u0000\u0000\u0000͏́\u0001\u0000\u0000\u0000͏ͅ\u0001\u0000\u0000\u0000͏͉\u0001\u0000\u0000\u0000͏͌\u0001\u0000\u0000\u0000͐1\u0001\u0000\u0000\u0000͑͒\u0005â\u0000\u0000͒͗\u00034\u001a\u0000͓͔\u00051\u0000\u0000͔͖\u00034\u001a\u0000͕͓\u0001\u0000\u0000\u0000͖͙\u0001\u0000\u0000\u0000͕͗\u0001\u0000\u0000\u0000͗͘\u0001\u0000\u0000\u0000" -+ "͘3\u0001\u0000\u0000\u0000͙͗\u0001\u0000\u0000\u0000͚ͣ\u0003Ðh\u0000͛ͣ\u0003Òi\u0000͜͝\u0003ĔŠ\u0000͝͞\u0003|>\u0000ͣ͞\u0001\u0000\u0000\u0000͟͠\u0003ĔŠ\u0000͠͡\u0003~?\u0000ͣ͡\u0001\u0000\u0000\u0000͚͢\u0001\u0000\u0000\u0000͛͢\u0001\u0000\u0000\u0000͢͜\u0001\u0000\u0000\u0000͢͟\u0001\u0000\u0000\u0000ͣ5\u0001\u0000\u0000\u0000ͤͦ\u0007\u0004\u0000\u0000ͥͤ\u0001\u0000\u0000\u0000ͥͦ\u0001\u0000\u0000\u0000ͦͧ\u0001\u0000\u0000\u0000ͧͨ\u0005I\u0000\u0000ͨͭ\u0003°X\u0000ͩͪ\u00051\u0000\u0000ͪͬ\u0003°X\u0000ͫͩ\u0001\u0000\u0000\u0000ͬͯ\u0001\u0000\u0000\u0000ͭͫ\u0001\u0000\u0000\u0000ͭͮ\u0001\u0000\u0000\u0000ͮ7\u0001\u0000\u0000\u0000ͯͭ\u0001\u0000\u0000\u0000ͰͲ\u0005»\u0000\u0000ͱͰ\u0001\u0000\u0000\u0000ͱͲ\u0001\u0000\u0000\u0000Ͳͳ\u0001\u0000\u0000\u0000ͳ͵\u0005Ÿ\u0000\u0000ʹͶ\u0003:\u001d\u0000͵ʹ\u0001\u0000\u0000\u0000͵Ͷ\u0001\u0000\u0000\u0000Ͷͷ\u0001\u0000\u0000\u0000ͷͻ\u0003^/\u0000\u0378ͺ\u0003<\u001e\u0000\u0379\u0378\u0001\u0000\u0000\u0000ͺͽ\u0001\u0000\u0000\u0000ͻ\u0379\u0001\u0000\u0000\u0000ͻͼ\u0001\u0000\u0000\u0000ͼͿ\u0001\u0000\u0000\u0000ͽͻ\u0001\u0000\u0000\u0000;\u0380\u0003&\u0013\u0000Ϳ;\u0001\u0000\u0000\u0000Ϳ\u0380\u0001\u0000\u0000\u0000\u03809\u0001\u0000\u0000\u0000\u0381·\u0005ã\u0000\u0000\u0382΄\u0005^\u0000\u0000\u0383΅\u0005\u001f\u0000\u0000΄\u0383\u0001\u0000\u0000\u0000΄΅\u0001\u0000\u0000\u0000΅Έ\u0001\u0000\u0000\u0000ΆΈ\u0005_\u0000\u0000·\u0382\u0001\u0000\u0000\u0000·Ά\u0001\u0000\u0000\u0000ΈΒ\u0001\u0000\u0000\u0000ΉΏ\u0005O\u0000\u0000ΊΌ\u0005à\u0000\u0000\u038b\u038d\u0005\u001f\u0000\u0000Ό\u038b\u0001\u0000\u0000\u0000Ό\u038d\u0001\u0000\u0000\u0000\u038dΐ\u0001\u0000\u0000\u0000Ύΐ\u0005á\u0000\u0000ΏΊ\u0001\u0000\u0000\u0000ΏΎ\u0001\u0000\u0000\u0000ΐΒ\u0001\u0000\u0000\u0000Α\u0381\u0001\u0000\u0000\u0000ΑΉ\u0001\u0000\u0000\u0000Β;\u0001\u0000\u0000\u0000Γί\u0005ĥ\u0000\u0000ΔΞ\u0005„\u0000\u0000ΕΖ\u0005&\u0000\u0000ΖΞ\u0005„\u0000\u0000ΗΘ\u0005Č\u0000\u0000ΘΞ\u0005„\u0000\u0000ΙΚ\u0005×\u0000\u0000ΚΞ\u0005„\u0000\u0000ΛΜ\u0005É\u0000\u0000ΜΞ\u0005„\u0000\u0000ΝΔ\u0001\u0000\u0000\u0000ΝΕ\u0001\u0000\u0000\u0000ΝΗ" -+ "\u0001\u0000\u0000\u0000ΝΙ\u0001\u0000\u0000\u0000ΝΛ\u0001\u0000\u0000\u0000ΞΠ\u0001\u0000\u0000\u0000ΟΡ\u0005ö\u0000\u0000ΠΟ\u0001\u0000\u0000\u0000ΠΡ\u0001\u0000\u0000\u0000Ρ\u03a2\u0001\u0000\u0000\u0000\u03a2Σ\u0003ĔŠ\u0000ΣΤ\u0003ŠE\u0000ΤΥ\u0005›\u0000\u0000ΥΦ\u0003Ė‹\u0000ΦΧ\u0005ï\u0000\u0000Χΰ\u0001\u0000\u0000\u0000ΨΩ\u0005Œ\u0000\u0000ΩΪ\u0005¹\u0000\u0000Ϊΰ\u0003Ė‹\u0000Ϋά\u0005ð\u0000\u0000άέ\u0003ĔŠ\u0000έή\u0003ŠE\u0000ήΰ\u0001\u0000\u0000\u0000ίΝ\u0001\u0000\u0000\u0000ίΨ\u0001\u0000\u0000\u0000ίΫ\u0001\u0000\u0000\u0000ΰ=\u0001\u0000\u0000\u0000αβ\u0005 \u0000\u0000βζ\u0003b1\u0000γε\u0003@ \u0000δγ\u0001\u0000\u0000\u0000εθ\u0001\u0000\u0000\u0000ζδ\u0001\u0000\u0000\u0000ζη\u0001\u0000\u0000\u0000η?\u0001\u0000\u0000\u0000θζ\u0001\u0000\u0000\u0000ικ\u0005¹\u0000\u0000κλ\u0007\u0005\u0000\u0000λμ\u0003.\u0017\u0000μA\u0001\u0000\u0000\u0000νξ\u0005Ġ\u0000\u0000ξο\u0003°X\u0000οπ\u0005\u0017\u0000\u0000πρ\u0003ĔŠ\u0000ρC\u0001\u0000\u0000\u0000ςτ\u0005»\u0000\u0000σς\u0001\u0000\u0000\u0000στ\u0001\u0000\u0000\u0000τυ\u0001\u0000\u0000\u0000υφ\u0005)\u0000\u0000φϓ\u0003F#\u0000χϐ\u0005›\u0000\u0000ψύ\u0003H$\u0000ωϊ\u00051\u0000\u0000ϊό\u0003H$\u0000ϋω\u0001\u0000\u0000\u0000όϏ\u0001\u0000\u0000\u0000ύϋ\u0001\u0000\u0000\u0000ύώ\u0001\u0000\u0000\u0000ώϑ\u0001\u0000\u0000\u0000Ϗύ\u0001\u0000\u0000\u0000ϐψ\u0001\u0000\u0000\u0000ϐϑ\u0001\u0000\u0000\u0000ϑϒ\u0001\u0000\u0000\u0000ϒϔ\u0005ï\u0000\u0000ϓχ\u0001\u0000\u0000\u0000ϓϔ\u0001\u0000\u0000\u0000ϔϤ\u0001\u0000\u0000\u0000ϕϢ\u0005IJ\u0000\u0000ϖϣ\u0005ď\u0000\u0000ϗϜ\u0003J%\u0000Ϙϙ\u00051\u0000\u0000ϙϛ\u0003J%\u0000ϚϘ\u0001\u0000\u0000\u0000ϛϞ\u0001\u0000\u0000\u0000ϜϚ\u0001\u0000\u0000\u0000Ϝϝ\u0001\u0000\u0000\u0000ϝϠ\u0001\u0000\u0000\u0000ϞϜ\u0001\u0000\u0000\u0000ϟϡ\u0003&\u0013\u0000Ϡϟ\u0001\u0000\u0000\u0000Ϡϡ\u0001\u0000\u0000\u0000ϡϣ\u0001\u0000\u0000\u0000Ϣϖ\u0001\u0000\u0000\u0000Ϣϗ\u0001\u0000\u0000\u0000ϣϥ\u0001\u0000\u0000\u0000Ϥϕ\u0001\u0000\u0000\u0000Ϥϥ\u0001\u0000" -+ "\u0000\u0000ϥE\u0001\u0000\u0000\u0000Ϧϧ\u0003Ē‰\u0000ϧϨ\u0003ʎŇ\u0000ϨG\u0001\u0000\u0000\u0000ϩϪ\u0003°X\u0000ϪI\u0001\u0000\u0000\u0000ϫϮ\u0003ʎŇ\u0000Ϭϭ\u0005\u0017\u0000\u0000ϭϯ\u0003ĔŠ\u0000ϮϬ\u0001\u0000\u0000\u0000Ϯϯ\u0001\u0000\u0000\u0000ϯK\u0001\u0000\u0000\u0000ϰϱ\u0005˜\u0000\u0000ϱϴ\u0005>\u0000\u0000ϲϳ\u0005Į\u0000\u0000ϳϵ\u0005}\u0000\u0000ϴϲ\u0001\u0000\u0000\u0000ϴϵ\u0001\u0000\u0000\u0000ϵ϶\u0001\u0000\u0000\u0000϶Ϸ\u0005r\u0000\u0000Ϸϸ\u0003°X\u0000ϸϹ\u0005\u0017\u0000\u0000Ϲϼ\u0003ĔŠ\u0000Ϻϻ\u0005m\u0000\u0000ϻϽ\u0003ʄł\u0000ϼϺ\u0001\u0000\u0000\u0000ϼϽ\u0001\u0000\u0000\u0000ϽM\u0001\u0000\u0000\u0000ϾϿ\u0005q\u0000\u0000ϿЀ\u0005›\u0000\u0000ЀЁ\u0003ĔŠ\u0000ЁЂ\u0005ƒ\u0000\u0000ЂЃ\u0003°X\u0000ЃЅ\u0005\u001e\u0000\u0000ЄІ\u0003\n\u0005\u0000ЅЄ\u0001\u0000\u0000\u0000ІЇ\u0001\u0000\u0000\u0000ЇЅ\u0001\u0000\u0000\u0000ЇЈ\u0001\u0000\u0000\u0000ЈЉ\u0001\u0000\u0000\u0000ЉЊ\u0005ï\u0000\u0000ЊO\u0001\u0000\u0000\u0000ЋЍ\u0005»\u0000\u0000ЌЋ\u0001\u0000\u0000\u0000ЌЍ\u0001\u0000\u0000\u0000ЍЎ\u0001\u0000\u0000\u0000ЎА\u0005)\u0000\u0000ЏБ\u0003R)\u0000АЏ\u0001\u0000\u0000\u0000АБ\u0001\u0000\u0000\u0000БВ\u0001\u0000\u0000\u0000ВГ\u0005“\u0000\u0000ГД\u0003\u0006\u0003\u0000ДЖ\u0005Ù\u0000\u0000ЕЗ\u0003T*\u0000ЖЕ\u0001\u0000\u0000\u0000ЖЗ\u0001\u0000\u0000\u0000ЗQ\u0001\u0000\u0000\u0000ИТ\u0005›\u0000\u0000ЙУ\u0005ď\u0000\u0000КП\u0003ĔŠ\u0000ЛМ\u00051\u0000\u0000МО\u0003ĔŠ\u0000НЛ\u0001\u0000\u0000\u0000ОС\u0001\u0000\u0000\u0000ПН\u0001\u0000\u0000\u0000ПР\u0001\u0000\u0000\u0000РУ\u0001\u0000\u0000\u0000СП\u0001\u0000\u0000\u0000ТЙ\u0001\u0000\u0000\u0000ТК\u0001\u0000\u0000\u0000ТУ\u0001\u0000\u0000\u0000УФ\u0001\u0000\u0000\u0000ФХ\u0005ï\u0000\u0000ХS\u0001\u0000\u0000\u0000ЦЫ\u0005ƒ\u0000\u0000ЧЩ\u0003°X\u0000ШЧ\u0001\u0000\u0000\u0000ШЩ\u0001\u0000\u0000\u0000ЩЪ\u0001\u0000\u0000\u0000ЪЬ\u00056\u0000\u0000ЫШ\u0001\u0000\u0000\u0000ЫЬ\u0001\u0000\u0000\u0000ЬЭ\u0001\u0000\u0000\u0000Эг\u0005Ė\u0000\u0000" -+ "Юв\u0003V+\u0000Яв\u0003X,\u0000ав\u0003Z-\u0000бЮ\u0001\u0000\u0000\u0000бЯ\u0001\u0000\u0000\u0000ба\u0001\u0000\u0000\u0000ве\u0001\u0000\u0000\u0000гб\u0001\u0000\u0000\u0000гд\u0001\u0000\u0000\u0000дU\u0001\u0000\u0000\u0000ег\u0001\u0000\u0000\u0000жз\u0005·\u0000\u0000зи\u0003°X\u0000ий\u0007\u0006\u0000\u0000йW\u0001\u0000\u0000\u0000кл\u0005¹\u0000\u0000лм\u0005j\u0000\u0000мн\u0007\u0007\u0000\u0000нY\u0001\u0000\u0000\u0000оп\u0005å\u0000\u0000пр\u0005ą\u0000\u0000рс\u0005\u0017\u0000\u0000ст\u0003ĔŠ\u0000т[\u0001\u0000\u0000\u0000ух\u0003 \u0010\u0000фц\u0003\"\u0011\u0000хф\u0001\u0000\u0000\u0000хц\u0001\u0000\u0000\u0000цш\u0001\u0000\u0000\u0000чщ\u0003$\u0012\u0000шч\u0001\u0000\u0000\u0000шщ\u0001\u0000\u0000\u0000щѐ\u0001\u0000\u0000\u0000ъь\u0003\"\u0011\u0000ыэ\u0003$\u0012\u0000ьы\u0001\u0000\u0000\u0000ьэ\u0001\u0000\u0000\u0000эѐ\u0001\u0000\u0000\u0000юѐ\u0003$\u0012\u0000яу\u0001\u0000\u0000\u0000яъ\u0001\u0000\u0000\u0000яю\u0001\u0000\u0000\u0000ѐ]\u0001\u0000\u0000\u0000ёі\u0003b1\u0000ђѓ\u00051\u0000\u0000ѓѕ\u0003b1\u0000єђ\u0001\u0000\u0000\u0000ѕј\u0001\u0000\u0000\u0000іє\u0001\u0000\u0000\u0000ії\u0001\u0000\u0000\u0000ї_\u0001\u0000\u0000\u0000јі\u0001\u0000\u0000\u0000љў\u0003d2\u0000њћ\u00051\u0000\u0000ћѝ\u0003d2\u0000ќњ\u0001\u0000\u0000\u0000ѝѠ\u0001\u0000\u0000\u0000ўќ\u0001\u0000\u0000\u0000ўџ\u0001\u0000\u0000\u0000џa\u0001\u0000\u0000\u0000Ѡў\u0001\u0000\u0000\u0000ѡѢ\u0003ĔŠ\u0000Ѣѣ\u0005d\u0000\u0000ѣѥ\u0001\u0000\u0000\u0000Ѥѡ\u0001\u0000\u0000\u0000Ѥѥ\u0001\u0000\u0000\u0000ѥѧ\u0001\u0000\u0000\u0000ѦѨ\u0003n7\u0000ѧѦ\u0001\u0000\u0000\u0000ѧѨ\u0001\u0000\u0000\u0000Ѩѩ\u0001\u0000\u0000\u0000ѩѪ\u0003h4\u0000Ѫc\u0001\u0000\u0000\u0000ѫѬ\u0003ʎŇ\u0000Ѭѭ\u0005d\u0000\u0000ѭѯ\u0001\u0000\u0000\u0000Ѯѫ\u0001\u0000\u0000\u0000Ѯѯ\u0001\u0000\u0000\u0000ѯѰ\u0001\u0000\u0000\u0000ѰѶ\u0003x<\u0000ѱѲ\u0003H\u0000Ѳѳ\u0003x<\u0000ѳѵ\u0001\u0000\u0000\u0000Ѵѱ\u0001\u0000\u0000\u0000ѵѸ\u0001\u0000\u0000\u0000ѶѴ" -+ "\u0001\u0000\u0000\u0000Ѷѷ\u0001\u0000\u0000\u0000ѷe\u0001\u0000\u0000\u0000ѸѶ\u0001\u0000\u0000\u0000ѹѺ\u0005“\u0000\u0000Ѻѻ\u0005\u0005\u0000\u0000ѻ҈\u0005Ù\u0000\u0000ѼѾ\u0005“\u0000\u0000ѽѿ\u0005\u0005\u0000\u0000Ѿѽ\u0001\u0000\u0000\u0000Ѿѿ\u0001\u0000\u0000\u0000ѿҀ\u0001\u0000\u0000\u0000Ҁ҂\u00051\u0000\u0000ҁ҃\u0005\u0005\u0000\u0000҂ҁ\u0001\u0000\u0000\u0000҂҃\u0001\u0000\u0000\u0000҃҄\u0001\u0000\u0000\u0000҄҈\u0005Ù\u0000\u0000҅҈\u0005Ç\u0000\u0000҆҈\u0005ď\u0000\u0000҇ѹ\u0001\u0000\u0000\u0000҇Ѽ\u0001\u0000\u0000\u0000҇҅\u0001\u0000\u0000\u0000҇҆\u0001\u0000\u0000\u0000҈g\u0001\u0000\u0000\u0000҉Ҍ\u0003j5\u0000ҊҌ\u0003l6\u0000ҋ҉\u0001\u0000\u0000\u0000ҋҊ\u0001\u0000\u0000\u0000Ҍi\u0001\u0000\u0000\u0000ҍҎ\u0007\u0008\u0000\u0000Ҏҏ\u0005›\u0000\u0000ҏҐ\u0003l6\u0000Ґґ\u0005ï\u0000\u0000ґk\u0001\u0000\u0000\u0000Ғқ\u0003v;\u0000ғҕ\u0003ŽG\u0000ҔҖ\u0003f3\u0000ҕҔ\u0001\u0000\u0000\u0000ҕҖ\u0001\u0000\u0000\u0000Җҗ\u0001\u0000\u0000\u0000җҘ\u0003v;\u0000ҘҚ\u0001\u0000\u0000\u0000ҙғ\u0001\u0000\u0000\u0000Қҝ\u0001\u0000\u0000\u0000қҙ\u0001\u0000\u0000\u0000қҜ\u0001\u0000\u0000\u0000ҜҠ\u0001\u0000\u0000\u0000ҝқ\u0001\u0000\u0000\u0000ҞҠ\u0003z=\u0000ҟҒ\u0001\u0000\u0000\u0000ҟҞ\u0001\u0000\u0000\u0000Ҡҡ\u0001\u0000\u0000\u0000ҡҟ\u0001\u0000\u0000\u0000ҡҢ\u0001\u0000\u0000\u0000Ңm\u0001\u0000\u0000\u0000ңҤ\u0005\u0015\u0000\u0000ҤҦ\u0005þ\u0000\u0000ҥҧ\u0003r9\u0000Ҧҥ\u0001\u0000\u0000\u0000Ҧҧ\u0001\u0000\u0000\u0000ҧӆ\u0001\u0000\u0000\u0000Ҩҩ\u0005\u0012\u0000\u0000ҩҫ\u0005þ\u0000\u0000ҪҬ\u0003r9\u0000ҫҪ\u0001\u0000\u0000\u0000ҫҬ\u0001\u0000\u0000\u0000Ҭӆ\u0001\u0000\u0000\u0000ҭү\u0005\u0015\u0000\u0000ҮҰ\u0005\u0005\u0000\u0000үҮ\u0001\u0000\u0000\u0000үҰ\u0001\u0000\u0000\u0000ҰҲ\u0001\u0000\u0000\u0000ұҳ\u0003r9\u0000Ҳұ\u0001\u0000\u0000\u0000Ҳҳ\u0001\u0000\u0000\u0000ҳӆ\u0001\u0000\u0000\u0000ҴҶ\u0005\u0012\u0000\u0000ҵҷ\u0003r9\u0000Ҷҵ\u0001\u0000\u0000\u0000Ҷҷ\u0001\u0000\u0000\u0000ҷӆ\u0001\u0000\u0000\u0000ҸҺ\u0005þ\u0000\u0000ҹһ\u0005\u0005\u0000\u0000Һҹ\u0001\u0000\u0000\u0000Һһ\u0001\u0000" -+ "\u0000\u0000һҽ\u0001\u0000\u0000\u0000ҼҾ\u0003r9\u0000ҽҼ\u0001\u0000\u0000\u0000ҽҾ\u0001\u0000\u0000\u0000Ҿҿ\u0001\u0000\u0000\u0000ҿӆ\u0003p8\u0000ӀӁ\u0005þ\u0000\u0000ӁӃ\u0005\u0005\u0000\u0000ӂӄ\u0003r9\u0000Ӄӂ\u0001\u0000\u0000\u0000Ӄӄ\u0001\u0000\u0000\u0000ӄӆ\u0001\u0000\u0000\u0000Ӆң\u0001\u0000\u0000\u0000ӅҨ\u0001\u0000\u0000\u0000Ӆҭ\u0001\u0000\u0000\u0000ӅҴ\u0001\u0000\u0000\u0000ӅҸ\u0001\u0000\u0000\u0000ӅӀ\u0001\u0000\u0000\u0000ӆo\u0001\u0000\u0000\u0000Ӈӈ\u0007\t\u0000\u0000ӈq\u0001\u0000\u0000\u0000Ӊӊ\u0007\n\u0000\u0000ӊs\u0001\u0000\u0000\u0000Ӌӏ\u0003v;\u0000ӌӍ\u0003ŽG\u0000Ӎӎ\u0003v;\u0000ӎӐ\u0001\u0000\u0000\u0000ӏӌ\u0001\u0000\u0000\u0000Ӑӑ\u0001\u0000\u0000\u0000ӑӏ\u0001\u0000\u0000\u0000ӑӒ\u0001\u0000\u0000\u0000Ӓu\u0001\u0000\u0000\u0000ӓӕ\u0005›\u0000\u0000ӔӖ\u0003ĔŠ\u0000ӕӔ\u0001\u0000\u0000\u0000ӕӖ\u0001\u0000\u0000\u0000ӖӘ\u0001\u0000\u0000\u0000ӗә\u0003šM\u0000Әӗ\u0001\u0000\u0000\u0000Әә\u0001\u0000\u0000\u0000әӛ\u0001\u0000\u0000\u0000ӚӜ\u0003ŒF\u0000ӛӚ\u0001\u0000\u0000\u0000ӛӜ\u0001\u0000\u0000\u0000Ӝӟ\u0001\u0000\u0000\u0000ӝӞ\u0005ĭ\u0000\u0000ӞӠ\u0003°X\u0000ӟӝ\u0001\u0000\u0000\u0000ӟӠ\u0001\u0000\u0000\u0000Ӡӡ\u0001\u0000\u0000\u0000ӡӢ\u0005ï\u0000\u0000Ӣw\u0001\u0000\u0000\u0000ӣӥ\u0005›\u0000\u0000ӤӦ\u0003ĔŠ\u0000ӥӤ\u0001\u0000\u0000\u0000ӥӦ\u0001\u0000\u0000\u0000ӦӨ\u0001\u0000\u0000\u0000ӧө\u0003¬V\u0000Өӧ\u0001\u0000\u0000\u0000Өө\u0001\u0000\u0000\u0000өӫ\u0001\u0000\u0000\u0000ӪӬ\u0003ʌņ\u0000ӫӪ\u0001\u0000\u0000\u0000ӫӬ\u0001\u0000\u0000\u0000Ӭӭ\u0001\u0000\u0000\u0000ӭӮ\u0005ï\u0000\u0000Ӯy\u0001\u0000\u0000\u0000ӯӰ\u0005›\u0000\u0000Ӱӳ\u0003b1\u0000ӱӲ\u0005ĭ\u0000\u0000ӲӴ\u0003°X\u0000ӳӱ\u0001\u0000\u0000\u0000ӳӴ\u0001\u0000\u0000\u0000Ӵӵ\u0001\u0000\u0000\u0000ӵӷ\u0005ï\u0000\u0000ӶӸ\u0003f3\u0000ӷӶ\u0001\u0000\u0000\u0000ӷӸ\u0001\u0000\u0000\u0000Ӹ{\u0001\u0000\u0000\u0000ӹӼ\u0003†C\u0000ӺӼ\u0003„B\u0000ӻӹ\u0001\u0000\u0000\u0000ӻӺ\u0001\u0000\u0000\u0000Ӽӽ\u0001\u0000\u0000\u0000ӽӻ\u0001\u0000\u0000\u0000" -+ "ӽӾ\u0001\u0000\u0000\u0000Ӿ}\u0001\u0000\u0000\u0000ӿԂ\u0005‹\u0000\u0000Ԁԃ\u0003ʎŇ\u0000ԁԃ\u0003€@\u0000ԂԀ\u0001\u0000\u0000\u0000Ԃԁ\u0001\u0000\u0000\u0000ԃԈ\u0001\u0000\u0000\u0000Ԅԇ\u0003†C\u0000ԅԇ\u0003„B\u0000ԆԄ\u0001\u0000\u0000\u0000Ԇԅ\u0001\u0000\u0000\u0000ԇԊ\u0001\u0000\u0000\u0000ԈԆ\u0001\u0000\u0000\u0000Ԉԉ\u0001\u0000\u0000\u0000ԉ\u0001\u0000\u0000\u0000ԊԈ\u0001\u0000\u0000\u0000ԋԌ\u0005P\u0000\u0000Ԍԍ\u0005›\u0000\u0000ԍԎ\u0003°X\u0000Ԏԏ\u0005ï\u0000\u0000ԏ\u0001\u0000\u0000\u0000ԐԒ\u0005P\u0000\u0000ԑԓ\u0007\u000b\u0000\u0000Ԓԑ\u0001\u0000\u0000\u0000Ԓԓ\u0001\u0000\u0000\u0000ԓԔ\u0001\u0000\u0000\u0000Ԕԕ\u0005›\u0000\u0000ԕԖ\u0003°X\u0000Ԗԗ\u0005ï\u0000\u0000ԗƒ\u0001\u0000\u0000\u0000Ԙԙ\u0005/\u0000\u0000ԙԚ\u0003€@\u0000Ԛ…\u0001\u0000\u0000\u0000ԛԜ\u0005/\u0000\u0000Ԝԝ\u0003ʎŇ\u0000ԝ‡\u0001\u0000\u0000\u0000Ԟԟ\u0005/\u0000\u0000ԟԠ\u0003ʎŇ\u0000Ԡ‰\u0001\u0000\u0000\u0000ԡԢ\u0005/\u0000\u0000Ԣԣ\u0003ʎŇ\u0000ԣ‹\u0001\u0000\u0000\u0000Ԥԧ\u0003ʌņ\u0000ԥԧ\u0003Ĉ„\u0000ԦԤ\u0001\u0000\u0000\u0000Ԧԥ\u0001\u0000\u0000\u0000ԧ\u0001\u0000\u0000\u0000ԨԪ\u0003’I\u0000ԩԨ\u0001\u0000\u0000\u0000ԩԪ\u0001\u0000\u0000\u0000Ԫԫ\u0001\u0000\u0000\u0000ԫԾ\u0003”J\u0000ԬԮ\u0005’\u0000\u0000ԭԯ\u0003ĔŠ\u0000Ԯԭ\u0001\u0000\u0000\u0000Ԯԯ\u0001\u0000\u0000\u0000ԯԱ\u0001\u0000\u0000\u0000\u0530Բ\u0003šM\u0000Ա\u0530\u0001\u0000\u0000\u0000ԱԲ\u0001\u0000\u0000\u0000ԲԴ\u0001\u0000\u0000\u0000ԳԵ\u0003˜L\u0000ԴԳ\u0001\u0000\u0000\u0000ԴԵ\u0001\u0000\u0000\u0000ԵԷ\u0001\u0000\u0000\u0000ԶԸ\u0003ŒF\u0000ԷԶ\u0001\u0000\u0000\u0000ԷԸ\u0001\u0000\u0000\u0000ԸԻ\u0001\u0000\u0000\u0000ԹԺ\u0005ĭ\u0000\u0000ԺԼ\u0003°X\u0000ԻԹ\u0001\u0000\u0000\u0000ԻԼ\u0001\u0000\u0000\u0000ԼԽ\u0001\u0000\u0000\u0000ԽԿ\u0005Ø\u0000\u0000ԾԬ\u0001\u0000\u0000\u0000ԾԿ\u0001\u0000\u0000\u0000ԿՀ\u0001\u0000\u0000\u0000ՀՂ\u0003”J\u0000ՁՃ\u0003–K\u0000ՂՁ\u0001\u0000\u0000\u0000ՂՃ\u0001\u0000\u0000\u0000Ճ\u0001\u0000\u0000\u0000ՄՆ\u0003’I\u0000ՅՄ" -+ "\u0001\u0000\u0000\u0000ՅՆ\u0001\u0000\u0000\u0000ՆՇ\u0001\u0000\u0000\u0000ՇՈ\u0003”J\u0000ՈՊ\u0005’\u0000\u0000ՉՋ\u0003ĔŠ\u0000ՊՉ\u0001\u0000\u0000\u0000ՊՋ\u0001\u0000\u0000\u0000ՋՌ\u0001\u0000\u0000\u0000ՌՎ\u0003®W\u0000ՍՏ\u0003ʌņ\u0000ՎՍ\u0001\u0000\u0000\u0000ՎՏ\u0001\u0000\u0000\u0000ՏՐ\u0001\u0000\u0000\u0000ՐՑ\u0005Ø\u0000\u0000ՑՓ\u0003”J\u0000ՒՔ\u0003–K\u0000ՓՒ\u0001\u0000\u0000\u0000ՓՔ\u0001\u0000\u0000\u0000Ք‘\u0001\u0000\u0000\u0000ՕՖ\u0007\u000c\u0000\u0000Ֆ“\u0001\u0000\u0000\u0000\u0557\u0558\u0007\r\u0000\u0000\u0558•\u0001\u0000\u0000\u0000ՙ՚\u0007\u000e\u0000\u0000՚—\u0001\u0000\u0000\u0000՛դ\u0005ď\u0000\u0000՜՞\u0005\u0005\u0000\u0000՝՜\u0001\u0000\u0000\u0000՝՞\u0001\u0000\u0000\u0000՞՟\u0001\u0000\u0000\u0000՟ա\u0005T\u0000\u0000ՠբ\u0005\u0005\u0000\u0000աՠ\u0001\u0000\u0000\u0000աբ\u0001\u0000\u0000\u0000բե\u0001\u0000\u0000\u0000գե\u0005\u0005\u0000\u0000դ՝\u0001\u0000\u0000\u0000դգ\u0001\u0000\u0000\u0000դե\u0001\u0000\u0000\u0000ե™\u0001\u0000\u0000\u0000զէ\u0005/\u0000\u0000էի\u0003œN\u0000ըթ\u0005‹\u0000\u0000թի\u0003žO\u0000ժզ\u0001\u0000\u0000\u0000ժը\u0001\u0000\u0000\u0000ի›\u0001\u0000\u0000\u0000լմ\u0003 P\u0000խկ\u0005\u001e\u0000\u0000ծհ\u0005/\u0000\u0000կծ\u0001\u0000\u0000\u0000կհ\u0001\u0000\u0000\u0000հձ\u0001\u0000\u0000\u0000ձճ\u0003 P\u0000ղխ\u0001\u0000\u0000\u0000ճն\u0001\u0000\u0000\u0000մղ\u0001\u0000\u0000\u0000մյ\u0001\u0000\u0000\u0000յ\u0001\u0000\u0000\u0000նմ\u0001\u0000\u0000\u0000շտ\u0003¢Q\u0000ոպ\u0005\u001e\u0000\u0000չջ\u0005/\u0000\u0000պչ\u0001\u0000\u0000\u0000պջ\u0001\u0000\u0000\u0000ջռ\u0001\u0000\u0000\u0000ռվ\u0003¢Q\u0000սո\u0001\u0000\u0000\u0000վց\u0001\u0000\u0000\u0000տս\u0001\u0000\u0000\u0000տր\u0001\u0000\u0000\u0000րŸ\u0001\u0000\u0000\u0000ցտ\u0001\u0000\u0000\u0000ւև\u0003¤R\u0000փք\u0007\u000f\u0000\u0000քֆ\u0003¤R\u0000օփ\u0001\u0000\u0000\u0000ֆ։\u0001\u0000\u0000\u0000ևօ\u0001\u0000\u0000\u0000ևֈ\u0001\u0000\u0000\u0000ֈ¡\u0001\u0000\u0000\u0000։և\u0001\u0000\u0000\u0000֊֏\u0003¦S\u0000\u058b\u058c\u0007\u000f\u0000\u0000\u058c֎\u0003¦" -+ "S\u0000֍\u058b\u0001\u0000\u0000\u0000֎֑\u0001\u0000\u0000\u0000֏֍\u0001\u0000\u0000\u0000֏\u0590\u0001\u0000\u0000\u0000\u0590£\u0001\u0000\u0000\u0000֑֏\u0001\u0000\u0000\u0000֒֔\u0005‘\u0000\u0000֓֒\u0001\u0000\u0000\u0000֔֗\u0001\u0000\u0000\u0000֕֓\u0001\u0000\u0000\u0000֖֕\u0001\u0000\u0000\u0000֖֘\u0001\u0000\u0000\u0000֗֕\u0001\u0000\u0000\u0000֘֙\u0003¨T\u0000֙¥\u0001\u0000\u0000\u0000֚֜\u0005‘\u0000\u0000֛֚\u0001\u0000\u0000\u0000֜֟\u0001\u0000\u0000\u0000֛֝\u0001\u0000\u0000\u0000֝֞\u0001\u0000\u0000\u0000֞֠\u0001\u0000\u0000\u0000֟֝\u0001\u0000\u0000\u0000֠֡\u0003ªU\u0000֡§\u0001\u0000\u0000\u0000֢֣\u0005›\u0000\u0000֣֤\u0003œN\u0000֤֥\u0005ï\u0000\u0000֥֪\u0001\u0000\u0000\u0000֦֪\u0005¢\u0000\u0000֧֪\u0003‚A\u0000֪֨\u0003ʎŇ\u0000֢֩\u0001\u0000\u0000\u0000֦֩\u0001\u0000\u0000\u0000֧֩\u0001\u0000\u0000\u0000֩֨\u0001\u0000\u0000\u0000֪©\u0001\u0000\u0000\u0000֫֬\u0005›\u0000\u0000֭֬\u0003žO\u0000֭֮\u0005ï\u0000\u0000ֳ֮\u0001\u0000\u0000\u0000ֳ֯\u0005¢\u0000\u0000ְֳ\u0003‚A\u0000ֱֳ\u0003ʔŊ\u0000ֲ֫\u0001\u0000\u0000\u0000ֲ֯\u0001\u0000\u0000\u0000ְֲ\u0001\u0000\u0000\u0000ֱֲ\u0001\u0000\u0000\u0000ֳ«\u0001\u0000\u0000\u0000ִֵ\u0007\u0010\u0000\u0000ֵֺ\u0003ʎŇ\u0000ֶַ\u0007\u000f\u0000\u0000ַֹ\u0003ʎŇ\u0000ֶָ\u0001\u0000\u0000\u0000ֹּ\u0001\u0000\u0000\u0000ָֺ\u0001\u0000\u0000\u0000ֺֻ\u0001\u0000\u0000\u0000ֻ­\u0001\u0000\u0000\u0000ֺּ\u0001\u0000\u0000\u0000ֽ־\u0007\u0010\u0000\u0000־ֿ\u0003ʎŇ\u0000ֿ¯\u0001\u0000\u0000\u0000׀ׅ\u0003²Y\u0000ׁׂ\u0005¾\u0000\u0000ׂׄ\u0003²Y\u0000׃ׁ\u0001\u0000\u0000\u0000ׇׄ\u0001\u0000\u0000\u0000ׅ׃\u0001\u0000\u0000\u0000ׅ׆\u0001\u0000\u0000\u0000׆±\u0001\u0000\u0000\u0000ׇׅ\u0001\u0000\u0000\u0000\u05c8\u05cd\u0003´Z\u0000\u05c9\u05ca\u0005ı\u0000\u0000\u05ca\u05cc\u0003´Z\u0000\u05cb\u05c9\u0001\u0000\u0000\u0000\u05cc\u05cf\u0001\u0000\u0000\u0000\u05cd\u05cb\u0001\u0000\u0000\u0000\u05cd\u05ce\u0001\u0000\u0000\u0000\u05ce³\u0001\u0000\u0000\u0000\u05cf\u05cd\u0001\u0000\u0000\u0000או\u0003¶[\u0000בג\u0005\u0014\u0000\u0000גה\u0003¶[\u0000דב\u0001\u0000\u0000\u0000הח\u0001\u0000\u0000\u0000וד\u0001\u0000\u0000\u0000" -+ "וז\u0001\u0000\u0000\u0000זµ\u0001\u0000\u0000\u0000חו\u0001\u0000\u0000\u0000טך\u0005³\u0000\u0000יט\u0001\u0000\u0000\u0000ךם\u0001\u0000\u0000\u0000כי\u0001\u0000\u0000\u0000כל\u0001\u0000\u0000\u0000למ\u0001\u0000\u0000\u0000םכ\u0001\u0000\u0000\u0000מן\u0003¸\\\u0000ן·\u0001\u0000\u0000\u0000נץ\u0003º]\u0000סע\u0007\u0011\u0000\u0000עפ\u0003º]\u0000ףס\u0001\u0000\u0000\u0000פק\u0001\u0000\u0000\u0000ץף\u0001\u0000\u0000\u0000ץצ\u0001\u0000\u0000\u0000צ¹\u0001\u0000\u0000\u0000קץ\u0001\u0000\u0000\u0000רת\u0003À`\u0000ש\u05eb\u0003¼^\u0000תש\u0001\u0000\u0000\u0000ת\u05eb\u0001\u0000\u0000\u0000\u05eb»\u0001\u0000\u0000\u0000\u05ec״\u0005Þ\u0000\u0000\u05ed\u05ee\u0005Ą\u0000\u0000\u05ee״\u0005Į\u0000\u0000ׯװ\u0005c\u0000\u0000װ״\u0005Į\u0000\u0000ױ״\u00059\u0000\u0000ײ״\u0005ƒ\u0000\u0000׳\u05ec\u0001\u0000\u0000\u0000׳\u05ed\u0001\u0000\u0000\u0000׳ׯ\u0001\u0000\u0000\u0000׳ױ\u0001\u0000\u0000\u0000׳ײ\u0001\u0000\u0000\u0000״\u05f5\u0001\u0000\u0000\u0000\u05f5؍\u0003À`\u0000\u05f6\u05f8\u0005‹\u0000\u0000\u05f7\u05f9\u0005³\u0000\u0000\u05f8\u05f7\u0001\u0000\u0000\u0000\u05f8\u05f9\u0001\u0000\u0000\u0000\u05f9\u05fa\u0001\u0000\u0000\u0000\u05fa؍\u0005¶\u0000\u0000\u05fb\u05fd\u0005‹\u0000\u0000\u05fc\u05fe\u0005³\u0000\u0000\u05fd\u05fc\u0001\u0000\u0000\u0000\u05fd\u05fe\u0001\u0000\u0000\u0000\u05fe\u05ff\u0001\u0000\u0000\u0000\u05ff؂\u0007\u0012\u0000\u0000؀؂\u00050\u0000\u0000؁\u05fb\u0001\u0000\u0000\u0000؁؀\u0001\u0000\u0000\u0000؂؃\u0001\u0000\u0000\u0000؃؍\u0003ʌ\u0000؄؆\u0005‹\u0000\u0000؅؇\u0005³\u0000\u0000؆؅\u0001\u0000\u0000\u0000؆؇\u0001\u0000\u0000\u0000؇؉\u0001\u0000\u0000\u0000؈؊\u0003¾_\u0000؉؈\u0001\u0000\u0000\u0000؉؊\u0001\u0000\u0000\u0000؊؋\u0001\u0000\u0000\u0000؋؍\u0005²\u0000\u0000،׳\u0001\u0000\u0000\u0000،\u05f6\u0001\u0000\u0000\u0000،؁\u0001\u0000\u0000\u0000،؄\u0001\u0000\u0000\u0000؍½\u0001\u0000\u0000\u0000؎؏\u0007\u0013\u0000\u0000؏¿\u0001\u0000\u0000\u0000ؐؕ\u0003Âa\u0000ؑؒ\u0007\u0014\u0000\u0000ؒؔ\u0003Âa\u0000ؓؑ\u0001\u0000\u0000\u0000ؔؗ\u0001\u0000\u0000\u0000ؕؓ\u0001\u0000\u0000\u0000ؕؖ\u0001\u0000\u0000\u0000ؖÁ\u0001\u0000\u0000\u0000ؗؕ\u0001\u0000\u0000\u0000ؘ\u061d\u0003Äb\u0000ؙؚ\u0007\u0015\u0000\u0000ؚ؜" -+ "\u0003Äb\u0000؛ؙ\u0001\u0000\u0000\u0000؜؟\u0001\u0000\u0000\u0000\u061d؛\u0001\u0000\u0000\u0000\u061d؞\u0001\u0000\u0000\u0000؞Ã\u0001\u0000\u0000\u0000؟\u061d\u0001\u0000\u0000\u0000ؠإ\u0003Æc\u0000ءآ\u0005Ë\u0000\u0000آؤ\u0003Æc\u0000أء\u0001\u0000\u0000\u0000ؤا\u0001\u0000\u0000\u0000إأ\u0001\u0000\u0000\u0000إئ\u0001\u0000\u0000\u0000ئÅ\u0001\u0000\u0000\u0000اإ\u0001\u0000\u0000\u0000بج\u0003Èd\u0000ةت\u0007\u0016\u0000\u0000تج\u0003Èd\u0000ثب\u0001\u0000\u0000\u0000ثة\u0001\u0000\u0000\u0000جÇ\u0001\u0000\u0000\u0000حر\u0003Ôj\u0000خذ\u0003Êe\u0000دخ\u0001\u0000\u0000\u0000ذس\u0001\u0000\u0000\u0000رد\u0001\u0000\u0000\u0000رز\u0001\u0000\u0000\u0000زÉ\u0001\u0000\u0000\u0000سر\u0001\u0000\u0000\u0000شل\u0003Ìf\u0000صل\u0003šM\u0000ضط\u0005’\u0000\u0000طظ\u0003°X\u0000ظع\u0005Ø\u0000\u0000عل\u0001\u0000\u0000\u0000غؼ\u0005’\u0000\u0000ػؽ\u0003°X\u0000ؼػ\u0001\u0000\u0000\u0000ؼؽ\u0001\u0000\u0000\u0000ؽؾ\u0001\u0000\u0000\u0000ؾـ\u0005T\u0000\u0000ؿف\u0003°X\u0000ـؿ\u0001\u0000\u0000\u0000ـف\u0001\u0000\u0000\u0000فق\u0001\u0000\u0000\u0000قل\u0005Ø\u0000\u0000كش\u0001\u0000\u0000\u0000كص\u0001\u0000\u0000\u0000كض\u0001\u0000\u0000\u0000كغ\u0001\u0000\u0000\u0000لË\u0001\u0000\u0000\u0000من\u0005S\u0000\u0000نه\u0003ƃ\u0000هÍ\u0001\u0000\u0000\u0000وى\u0005’\u0000\u0000ىي\u0003°X\u0000يً\u0005Ø\u0000\u0000ًÏ\u0001\u0000\u0000\u0000ٌَ\u0003Ôj\u0000ٍُ\u0003Ìf\u0000ٍَ\u0001\u0000\u0000\u0000ُِ\u0001\u0000\u0000\u0000َِ\u0001\u0000\u0000\u0000ِّ\u0001\u0000\u0000\u0000ّÑ\u0001\u0000\u0000\u0000ْٓ\u0003Ôj\u0000ٓٔ\u0003Îg\u0000ٔÓ\u0001\u0000\u0000\u0000ٕ٫\u0003Ök\u0000ٖ٫\u0003Ĉ„\u0000ٗ٫\u0003Øl\u0000٘٫\u0003Ün\u0000ٙ٫\u0003ø|\u0000ٚ٫\u0003ú}\u0000ٛ٫\u0003ü~\u0000ٜ٫\u0003þ\u0000ٝ٫\u0003ôz\u0000ٞ٫\u0003âq\u0000ٟ٫\u0003Ą‚\u0000٠٫\u0003är\u0000١٫\u0003æs\u0000٢٫\u0003èt\u0000٣٫\u0003êu\u0000٤٫\u0003ìv\u0000٥٫\u0003î" -+ "w\u0000٦٫\u0003ðx\u0000٧٫\u0003òy\u0000٨٫\u0003Ȇ\u0000٩٫\u0003ĔŠ\u0000٪ٕ\u0001\u0000\u0000\u0000٪ٖ\u0001\u0000\u0000\u0000٪ٗ\u0001\u0000\u0000\u0000٪٘\u0001\u0000\u0000\u0000٪ٙ\u0001\u0000\u0000\u0000٪ٚ\u0001\u0000\u0000\u0000٪ٛ\u0001\u0000\u0000\u0000٪ٜ\u0001\u0000\u0000\u0000٪ٝ\u0001\u0000\u0000\u0000٪ٞ\u0001\u0000\u0000\u0000٪ٟ\u0001\u0000\u0000\u0000٪٠\u0001\u0000\u0000\u0000٪١\u0001\u0000\u0000\u0000٪٢\u0001\u0000\u0000\u0000٪٣\u0001\u0000\u0000\u0000٪٤\u0001\u0000\u0000\u0000٪٥\u0001\u0000\u0000\u0000٪٦\u0001\u0000\u0000\u0000٪٧\u0001\u0000\u0000\u0000٪٨\u0001\u0000\u0000\u0000٪٩\u0001\u0000\u0000\u0000٫Õ\u0001\u0000\u0000\u0000٬ٶ\u0003Ā€\u0000٭ٶ\u0003ʄł\u0000ٮٶ\u0003ʌņ\u0000ٯٶ\u0005ę\u0000\u0000ٰٶ\u0005l\u0000\u0000ٱٶ\u0005†\u0000\u0000ٲٶ\u0005‡\u0000\u0000ٳٶ\u0005§\u0000\u0000ٴٶ\u0005¶\u0000\u0000ٵ٬\u0001\u0000\u0000\u0000ٵ٭\u0001\u0000\u0000\u0000ٵٮ\u0001\u0000\u0000\u0000ٵٯ\u0001\u0000\u0000\u0000ٵٰ\u0001\u0000\u0000\u0000ٵٱ\u0001\u0000\u0000\u0000ٵٲ\u0001\u0000\u0000\u0000ٵٳ\u0001\u0000\u0000\u0000ٵٴ\u0001\u0000\u0000\u0000ٶ×\u0001\u0000\u0000\u0000ٷٹ\u0005+\u0000\u0000ٸٺ\u0003Úm\u0000ٹٸ\u0001\u0000\u0000\u0000ٺٻ\u0001\u0000\u0000\u0000ٻٹ\u0001\u0000\u0000\u0000ٻټ\u0001\u0000\u0000\u0000ټٿ\u0001\u0000\u0000\u0000ٽپ\u0005`\u0000\u0000پڀ\u0003°X\u0000ٿٽ\u0001\u0000\u0000\u0000ٿڀ\u0001\u0000\u0000\u0000ڀځ\u0001\u0000\u0000\u0000ځڂ\u0005b\u0000\u0000ڂÙ\u0001\u0000\u0000\u0000ڃڄ\u0005Ĭ\u0000\u0000ڄڅ\u0003°X\u0000څچ\u0005č\u0000\u0000چڇ\u0003°X\u0000ڇÛ\u0001\u0000\u0000\u0000ڈډ\u0005+\u0000\u0000ډڋ\u0003°X\u0000ڊڌ\u0003Þo\u0000ڋڊ\u0001\u0000\u0000\u0000ڌڍ\u0001\u0000\u0000\u0000ڍڋ\u0001\u0000\u0000\u0000ڍڎ\u0001\u0000\u0000\u0000ڎڑ\u0001\u0000\u0000\u0000ڏڐ\u0005`\u0000\u0000ڐڒ\u0003°X\u0000ڑڏ\u0001\u0000\u0000\u0000ڑڒ\u0001\u0000\u0000\u0000ڒړ\u0001\u0000\u0000\u0000ړڔ\u0005b\u0000\u0000ڔÝ\u0001\u0000\u0000\u0000ڕږ\u0005Ĭ\u0000\u0000ږڛ\u0003àp\u0000ڗژ\u00051\u0000\u0000ژښ\u0003àp\u0000ڙڗ\u0001\u0000\u0000\u0000ښڝ\u0001\u0000\u0000\u0000" -+ "ڛڙ\u0001\u0000\u0000\u0000ڛڜ\u0001\u0000\u0000\u0000ڜڞ\u0001\u0000\u0000\u0000ڝڛ\u0001\u0000\u0000\u0000ڞڟ\u0005č\u0000\u0000ڟڠ\u0003°X\u0000ڠß\u0001\u0000\u0000\u0000ڡڧ\u0005Þ\u0000\u0000ڢڣ\u0005Ą\u0000\u0000ڣڧ\u0005Į\u0000\u0000ڤڥ\u0005c\u0000\u0000ڥڧ\u0005Į\u0000\u0000ڦڡ\u0001\u0000\u0000\u0000ڦڢ\u0001\u0000\u0000\u0000ڦڤ\u0001\u0000\u0000\u0000ڧڨ\u0001\u0000\u0000\u0000ڨۃ\u0003À`\u0000کګ\u0005‹\u0000\u0000ڪڬ\u0005³\u0000\u0000ګڪ\u0001\u0000\u0000\u0000ګڬ\u0001\u0000\u0000\u0000ڬڭ\u0001\u0000\u0000\u0000ڭۃ\u0005¶\u0000\u0000ڮڰ\u0005‹\u0000\u0000گڱ\u0005³\u0000\u0000ڰگ\u0001\u0000\u0000\u0000ڰڱ\u0001\u0000\u0000\u0000ڱڲ\u0001\u0000\u0000\u0000ڲڵ\u0005ě\u0000\u0000ڳڵ\u00050\u0000\u0000ڴڮ\u0001\u0000\u0000\u0000ڴڳ\u0001\u0000\u0000\u0000ڵڶ\u0001\u0000\u0000\u0000ڶۃ\u0003ʌ\u0000ڷڹ\u0005‹\u0000\u0000ڸں\u0005³\u0000\u0000ڹڸ\u0001\u0000\u0000\u0000ڹں\u0001\u0000\u0000\u0000ںڼ\u0001\u0000\u0000\u0000ڻڽ\u0003¾_\u0000ڼڻ\u0001\u0000\u0000\u0000ڼڽ\u0001\u0000\u0000\u0000ڽھ\u0001\u0000\u0000\u0000ھۃ\u0005²\u0000\u0000ڿۀ\u0007\u0011\u0000\u0000ۀۃ\u0003º]\u0000ہۃ\u0003°X\u0000ۂڦ\u0001\u0000\u0000\u0000ۂک\u0001\u0000\u0000\u0000ۂڴ\u0001\u0000\u0000\u0000ۂڷ\u0001\u0000\u0000\u0000ۂڿ\u0001\u0000\u0000\u0000ۂہ\u0001\u0000\u0000\u0000ۃá\u0001\u0000\u0000\u0000ۄۅ\u0005’\u0000\u0000ۅۆ\u0003ĔŠ\u0000ۆۇ\u0005ƒ\u0000\u0000ۇے\u0003°X\u0000ۈۉ\u0005ĭ\u0000\u0000ۉۋ\u0003°X\u0000ۊۈ\u0001\u0000\u0000\u0000ۊۋ\u0001\u0000\u0000\u0000ۋی\u0001\u0000\u0000\u0000یۍ\u0005\u001e\u0000\u0000ۍۓ\u0003°X\u0000ێۏ\u0005ĭ\u0000\u0000ۏۑ\u0003°X\u0000ېێ\u0001\u0000\u0000\u0000ېۑ\u0001\u0000\u0000\u0000ۑۓ\u0001\u0000\u0000\u0000ےۊ\u0001\u0000\u0000\u0000ےې\u0001\u0000\u0000\u0000ۓ۔\u0001\u0000\u0000\u0000۔ە\u0005Ø\u0000\u0000ەã\u0001\u0000\u0000\u0000ۖۚ\u0005’\u0000\u0000ۗۘ\u0003ĔŠ\u0000ۘۙ\u0005d\u0000\u0000ۙۛ\u0001\u0000\u0000\u0000ۚۗ\u0001\u0000\u0000\u0000ۚۛ\u0001\u0000\u0000\u0000ۛۜ\u0001\u0000\u0000\u0000ۜ۟\u0003t:\u0000۝۞\u0005ĭ\u0000\u0000۞۠\u0003°X\u0000۟۝" -+ "\u0001\u0000\u0000\u0000۟۠\u0001\u0000\u0000\u0000۠ۡ\u0001\u0000\u0000\u0000ۡۢ\u0005\u001e\u0000\u0000ۣۢ\u0003°X\u0000ۣۤ\u0005Ø\u0000\u0000ۤå\u0001\u0000\u0000\u0000ۥۦ\u0005Ü\u0000\u0000ۦۧ\u0005›\u0000\u0000ۧۨ\u0003ĔŠ\u0000ۨ۩\u0005d\u0000\u0000۩۪\u0003°X\u0000۪۫\u00051\u0000\u0000۫۬\u0003ĔŠ\u0000ۭ۬\u0005ƒ\u0000\u0000ۭۮ\u0003°X\u0000ۮۯ\u0005\u001e\u0000\u0000ۯ۰\u0003°X\u0000۰۱\u0005ï\u0000\u0000۱ç\u0001\u0000\u0000\u0000۲۳\u0007\u0017\u0000\u0000۳۴\u0005›\u0000\u0000۴۵\u0003ĔŠ\u0000۵۶\u0005ƒ\u0000\u0000۶۹\u0003°X\u0000۷۸\u0005ĭ\u0000\u0000۸ۺ\u0003°X\u0000۹۷\u0001\u0000\u0000\u0000۹ۺ\u0001\u0000\u0000\u0000ۺۻ\u0001\u0000\u0000\u0000ۻۼ\u0005ï\u0000\u0000ۼé\u0001\u0000\u0000\u0000۽۾\u0005±\u0000\u0000۾ۿ\u0005›\u0000\u0000ۿ܂\u0003°X\u0000܀܁\u00051\u0000\u0000܁܃\u0003¾_\u0000܂܀\u0001\u0000\u0000\u0000܂܃\u0001\u0000\u0000\u0000܃܄\u0001\u0000\u0000\u0000܄܅\u0005ï\u0000\u0000܅ë\u0001\u0000\u0000\u0000܆܇\u0005Ę\u0000\u0000܇܏\u0005›\u0000\u0000܈܊\u0007\u0018\u0000\u0000܉܈\u0001\u0000\u0000\u0000܉܊\u0001\u0000\u0000\u0000܊܌\u0001\u0000\u0000\u0000܋܍\u0003°X\u0000܌܋\u0001\u0000\u0000\u0000܌܍\u0001\u0000\u0000\u0000܍\u070e\u0001\u0000\u0000\u0000\u070eܐ\u0005r\u0000\u0000܏܉\u0001\u0000\u0000\u0000܏ܐ\u0001\u0000\u0000\u0000ܐܑ\u0001\u0000\u0000\u0000ܑܒ\u0003°X\u0000ܒܓ\u0005ï\u0000\u0000ܓí\u0001\u0000\u0000\u0000ܔܕ\u0003t:\u0000ܕï\u0001\u0000\u0000\u0000ܖܗ\u0003j5\u0000ܗñ\u0001\u0000\u0000\u0000ܘܙ\u0005›\u0000\u0000ܙܚ\u0003°X\u0000ܚܛ\u0005ï\u0000\u0000ܛó\u0001\u0000\u0000\u0000ܜܝ\u0003ĔŠ\u0000ܝܦ\u0005“\u0000\u0000ܞܣ\u0003ö{\u0000ܟܠ\u00051\u0000\u0000ܠܢ\u0003ö{\u0000ܡܟ\u0001\u0000\u0000\u0000ܢܥ\u0001\u0000\u0000\u0000ܣܡ\u0001\u0000\u0000\u0000ܣܤ\u0001\u0000\u0000\u0000ܤܧ\u0001\u0000\u0000\u0000ܥܣ\u0001\u0000\u0000\u0000ܦܞ\u0001\u0000\u0000\u0000ܦܧ\u0001\u0000\u0000\u0000ܧܨ\u0001\u0000\u0000\u0000ܨܩ\u0005Ù\u0000\u0000ܩõ\u0001\u0000\u0000\u0000ܪܫ\u0003ƃ\u0000ܫܬ\u0005/\u0000\u0000ܬܭ\u0003°" -+ "X\u0000ܭܳ\u0001\u0000\u0000\u0000ܮܳ\u0003Ìf\u0000ܯܳ\u0003ĔŠ\u0000ܱܰ\u0005S\u0000\u0000ܱܳ\u0005ď\u0000\u0000ܲܪ\u0001\u0000\u0000\u0000ܲܮ\u0001\u0000\u0000\u0000ܲܯ\u0001\u0000\u0000\u0000ܲܰ\u0001\u0000\u0000\u0000ܳ÷\u0001\u0000\u0000\u0000ܴܵ\u0005<\u0000\u0000ܵܶ\u0005›\u0000\u0000ܷܶ\u0005ď\u0000\u0000ܷܸ\u0005ï\u0000\u0000ܸù\u0001\u0000\u0000\u0000ܹܺ\u0005i\u0000\u0000ܺ݃\u0005“\u0000\u0000ܻ݄\u0003\u0006\u0003\u0000ܼܾ\u0003:\u001d\u0000ܼܽ\u0001\u0000\u0000\u0000ܾܽ\u0001\u0000\u0000\u0000ܾܿ\u0001\u0000\u0000\u0000ܿ݁\u0003^/\u0000݂݀\u0003&\u0013\u0000݁݀\u0001\u0000\u0000\u0000݂݁\u0001\u0000\u0000\u0000݂݄\u0001\u0000\u0000\u0000ܻ݃\u0001\u0000\u0000\u0000݃ܽ\u0001\u0000\u0000\u0000݄݅\u0001\u0000\u0000\u0000݆݅\u0005Ù\u0000\u0000݆û\u0001\u0000\u0000\u0000݈݇\u0005<\u0000\u0000݈ݑ\u0005“\u0000\u0000݉ݒ\u0003\u0006\u0003\u0000݊\u074c\u0003:\u001d\u0000\u074b݊\u0001\u0000\u0000\u0000\u074b\u074c\u0001\u0000\u0000\u0000\u074cݍ\u0001\u0000\u0000\u0000ݍݏ\u0003^/\u0000ݎݐ\u0003&\u0013\u0000ݏݎ\u0001\u0000\u0000\u0000ݏݐ\u0001\u0000\u0000\u0000ݐݒ\u0001\u0000\u0000\u0000ݑ݉\u0001\u0000\u0000\u0000ݑ\u074b\u0001\u0000\u0000\u0000ݒݓ\u0001\u0000\u0000\u0000ݓݔ\u0005Ù\u0000\u0000ݔý\u0001\u0000\u0000\u0000ݕݖ\u0005.\u0000\u0000ݖݗ\u0005“\u0000\u0000ݗݘ\u0003\u0006\u0003\u0000ݘݙ\u0005Ù\u0000\u0000ݙÿ\u0001\u0000\u0000\u0000ݚݜ\u0005¡\u0000\u0000ݛݚ\u0001\u0000\u0000\u0000ݛݜ\u0001\u0000\u0000\u0000ݜݝ\u0001\u0000\u0000\u0000ݝݞ\u0007\u0019\u0000\u0000ݞā\u0001\u0000\u0000\u0000ݟݡ\u0005¡\u0000\u0000ݠݟ\u0001\u0000\u0000\u0000ݠݡ\u0001\u0000\u0000\u0000ݡݢ\u0001\u0000\u0000\u0000ݢݣ\u0005\u0005\u0000\u0000ݣă\u0001\u0000\u0000\u0000ݤݭ\u0005’\u0000\u0000ݥݪ\u0003°X\u0000ݦݧ\u00051\u0000\u0000ݧݩ\u0003°X\u0000ݨݦ\u0001\u0000\u0000\u0000ݩݬ\u0001\u0000\u0000\u0000ݪݨ\u0001\u0000\u0000\u0000ݪݫ\u0001\u0000\u0000\u0000ݫݮ\u0001\u0000\u0000\u0000ݬݪ\u0001\u0000\u0000\u0000ݭݥ\u0001\u0000\u0000\u0000ݭݮ\u0001\u0000\u0000\u0000ݮݯ\u0001\u0000\u0000\u0000ݯݰ\u0005Ø\u0000\u0000ݰą\u0001\u0000\u0000\u0000ݱݲ\u0003ʎŇ\u0000ݲć\u0001\u0000\u0000\u0000ݳݴ\u0005P\u0000\u0000ݴݵ\u0003Ċ…\u0000" -+ "ݵĉ\u0001\u0000\u0000\u0000ݶݹ\u0003ʎŇ\u0000ݷݹ\u0005\u0005\u0000\u0000ݸݶ\u0001\u0000\u0000\u0000ݸݷ\u0001\u0000\u0000\u0000ݹċ\u0001\u0000\u0000\u0000ݺݻ\u0003Ј\u0000ݻݽ\u0005›\u0000\u0000ݼݾ\u0007\u0000\u0000\u0000ݽݼ\u0001\u0000\u0000\u0000ݽݾ\u0001\u0000\u0000\u0000ݾއ\u0001\u0000\u0000\u0000ݿބ\u0003χ\u0000ހށ\u00051\u0000\u0000ށރ\u0003χ\u0000ނހ\u0001\u0000\u0000\u0000ރކ\u0001\u0000\u0000\u0000ބނ\u0001\u0000\u0000\u0000ބޅ\u0001\u0000\u0000\u0000ޅވ\u0001\u0000\u0000\u0000ކބ\u0001\u0000\u0000\u0000އݿ\u0001\u0000\u0000\u0000އވ\u0001\u0000\u0000\u0000ވމ\u0001\u0000\u0000\u0000މފ\u0005ï\u0000\u0000ފč\u0001\u0000\u0000\u0000ދތ\u0003°X\u0000ތď\u0001\u0000\u0000\u0000ލގ\u0003Ē‰\u0000ގޏ\u0003ʎŇ\u0000ޏđ\u0001\u0000\u0000\u0000ސޑ\u0003ʎŇ\u0000ޑޒ\u0005S\u0000\u0000ޒޔ\u0001\u0000\u0000\u0000ޓސ\u0001\u0000\u0000\u0000ޔޗ\u0001\u0000\u0000\u0000ޕޓ\u0001\u0000\u0000\u0000ޕޖ\u0001\u0000\u0000\u0000ޖē\u0001\u0000\u0000\u0000ޗޕ\u0001\u0000\u0000\u0000ޘޙ\u0003ʎŇ\u0000ޙĕ\u0001\u0000\u0000\u0000ޚޟ\u0003ʎŇ\u0000ޛޜ\u00051\u0000\u0000ޜޞ\u0003ʎŇ\u0000ޝޛ\u0001\u0000\u0000\u0000ޞޡ\u0001\u0000\u0000\u0000ޟޝ\u0001\u0000\u0000\u0000ޟޠ\u0001\u0000\u0000\u0000ޠė\u0001\u0000\u0000\u0000ޡޟ\u0001\u0000\u0000\u0000ޢާ\u0003̍\u0000ޣޤ\u0005\u001e\u0000\u0000ޤަ\u0003̍\u0000ޥޣ\u0001\u0000\u0000\u0000ަީ\u0001\u0000\u0000\u0000ާޥ\u0001\u0000\u0000\u0000ާި\u0001\u0000\u0000\u0000ިę\u0001\u0000\u0000\u0000ީާ\u0001\u0000\u0000\u0000ުެ\u0003ĜŽ\u0000ޫޭ\u0003Џ\u0000ެޫ\u0001\u0000\u0000\u0000ެޭ\u0001\u0000\u0000\u0000ޭޱ\u0001\u0000\u0000\u0000ޮް\u0003Ġ\u0000ޯޮ\u0001\u0000\u0000\u0000ް\u07b3\u0001\u0000\u0000\u0000ޱޯ\u0001\u0000\u0000\u0000ޱ\u07b2\u0001\u0000\u0000\u0000\u07b2ě\u0001\u0000\u0000\u0000\u07b3ޱ\u0001\u0000\u0000\u0000\u07b4߶\u0005´\u0000\u0000\u07b5߶\u0005¶\u0000\u0000\u07b6߶\u0005 \u0000\u0000\u07b7߶\u0005!\u0000\u0000\u07b8߶\u0005ħ\u0000\u0000\u07b9߶\u0005ć\u0000\u0000\u07ba߶\u0005‰\u0000\u0000\u07bb\u07bd\u0005Ā\u0000\u0000\u07bc\u07bb\u0001\u0000\u0000\u0000\u07bc\u07bd\u0001\u0000\u0000\u0000\u07bd\u07be\u0001\u0000\u0000\u0000\u07be߶\u0005Š\u0000\u0000\u07bf߶\u0005o\u0000\u0000߀߶" -+ "\u0005C\u0000\u0000߁߂\u0005™\u0000\u0000߂߶\u0007\u001a\u0000\u0000߃߄\u0005Ĵ\u0000\u0000߄߶\u0007\u001a\u0000\u0000߅߆\u0005Ď\u0000\u0000߆ߊ\u0007\u001b\u0000\u0000߇ߋ\u0005đ\u0000\u0000߈߉\u0005Ď\u0000\u0000߉ߋ\u0005ij\u0000\u0000ߊ߇\u0001\u0000\u0000\u0000ߊ߈\u0001\u0000\u0000\u0000ߋ߶\u0001\u0000\u0000\u0000ߌߍ\u0005Đ\u0000\u0000ߍߑ\u0007\u001b\u0000\u0000ߎߒ\u0005đ\u0000\u0000ߏߐ\u0005Ď\u0000\u0000ߐߒ\u0005ij\u0000\u0000ߑߎ\u0001\u0000\u0000\u0000ߑߏ\u0001\u0000\u0000\u0000ߒ߶\u0001\u0000\u0000\u0000ߓ߶\u0005Z\u0000\u0000ߔ߶\u0005É\u0000\u0000ߕ߶\u0005­\u0000\u0000ߖ߶\u0005Ī\u0000\u0000ߗ߶\u0005à\u0000\u0000ߘ߶\u0005\\\u0000\u0000ߙ߶\u0005ž\u0000\u0000ߚߛ\u0007\u001c\u0000\u0000ߛߜ\u0005œ\u0000\u0000ߜߝ\u0003ʌ\u0000ߝߞ\u0005|\u0000\u0000ߞ߶\u0001\u0000\u0000\u0000ߟ߶\u0005Ã\u0000\u0000ߠ߶\u0005Ä\u0000\u0000ߡߢ\u0005Ó\u0000\u0000ߢ߶\u0005Ħ\u0000\u0000ߣ߳\u0005\u0015\u0000\u0000ߤߴ\u0005­\u0000\u0000ߥߴ\u0005Ī\u0000\u0000ߦߴ\u0005à\u0000\u0000ߧߴ\u0005\\\u0000\u0000ߨߴ\u0005ž\u0000\u0000ߩߪ\u0005Ó\u0000\u0000ߪߴ\u0005Ħ\u0000\u0000߫߭\u0005Ħ\u0000\u0000߬߫\u0001\u0000\u0000\u0000߬߭\u0001\u0000\u0000\u0000߭߮\u0001\u0000\u0000\u0000߮߯\u0005œ\u0000\u0000߯߰\u0003ʌ\u0000߰߱\u0005|\u0000\u0000߱ߴ\u0001\u0000\u0000\u0000߲ߴ\u0005Ħ\u0000\u0000߳ߤ\u0001\u0000\u0000\u0000߳ߥ\u0001\u0000\u0000\u0000߳ߦ\u0001\u0000\u0000\u0000߳ߧ\u0001\u0000\u0000\u0000߳ߨ\u0001\u0000\u0000\u0000߳ߩ\u0001\u0000\u0000\u0000߳߬\u0001\u0000\u0000\u0000߲߳\u0001\u0000\u0000\u0000߳ߴ\u0001\u0000\u0000\u0000ߴ߶\u0001\u0000\u0000\u0000ߵ\u07b4\u0001\u0000\u0000\u0000ߵ\u07b5\u0001\u0000\u0000\u0000ߵ\u07b6\u0001\u0000\u0000\u0000ߵ\u07b7\u0001\u0000\u0000\u0000ߵ\u07b8\u0001\u0000\u0000\u0000ߵ\u07b9\u0001\u0000\u0000\u0000ߵ\u07ba\u0001\u0000\u0000\u0000ߵ\u07bc\u0001\u0000\u0000\u0000ߵ\u07bf\u0001\u0000\u0000\u0000ߵ߀\u0001\u0000\u0000\u0000ߵ߁\u0001\u0000\u0000\u0000ߵ߃\u0001\u0000\u0000\u0000ߵ߅\u0001\u0000\u0000\u0000ߵߌ\u0001\u0000\u0000\u0000ߵߓ\u0001\u0000\u0000\u0000ߵߔ\u0001\u0000\u0000\u0000ߵߕ\u0001\u0000\u0000\u0000ߵߖ\u0001\u0000\u0000\u0000ߵߗ\u0001\u0000\u0000\u0000ߵߘ\u0001\u0000\u0000\u0000ߵߙ\u0001\u0000\u0000\u0000ߵߚ\u0001\u0000" -+ "\u0000\u0000ߵߟ\u0001\u0000\u0000\u0000ߵߠ\u0001\u0000\u0000\u0000ߵߡ\u0001\u0000\u0000\u0000ߵߣ\u0001\u0000\u0000\u0000߶ĝ\u0001\u0000\u0000\u0000߷߸\u0005³\u0000\u0000߸\u07fb\u0005¶\u0000\u0000߹\u07fb\u0005‘\u0000\u0000ߺ߷\u0001\u0000\u0000\u0000ߺ߹\u0001\u0000\u0000\u0000\u07fbğ\u0001\u0000\u0000\u0000\u07fc߾\u0007\u001c\u0000\u0000߽߿\u0003Џ\u0000߾߽\u0001\u0000\u0000\u0000߾߿\u0001\u0000\u0000\u0000߿ġ\u0001\u0000\u0000\u0000ࠀࠂ\u0003\u000c\u0006\u0000ࠁࠀ\u0001\u0000\u0000\u0000ࠁࠂ\u0001\u0000\u0000\u0000ࠂࠐ\u0001\u0000\u0000\u0000ࠃࠑ\u0003Ĥ’\u0000ࠄࠑ\u0003Ħ“\u0000ࠅࠑ\u0003ƊÅ\u0000ࠆࠑ\u0003ƌÆ\u0000ࠇࠑ\u0003ƐÈ\u0000ࠈࠑ\u0003ƒÉ\u0000ࠉࠑ\u0003ƎÇ\u0000ࠊࠑ\u0003ɔĪ\u0000ࠋࠑ\u0003ɖī\u0000ࠌࠑ\u0003ƚÍ\u0000ࠍࠑ\u0003ƤÒ\u0000ࠎࠑ\u0003Ĩ”\u0000ࠏࠑ\u0003Ķ›\u0000ࠐࠃ\u0001\u0000\u0000\u0000ࠐࠄ\u0001\u0000\u0000\u0000ࠐࠅ\u0001\u0000\u0000\u0000ࠐࠆ\u0001\u0000\u0000\u0000ࠐࠇ\u0001\u0000\u0000\u0000ࠐࠈ\u0001\u0000\u0000\u0000ࠐࠉ\u0001\u0000\u0000\u0000ࠐࠊ\u0001\u0000\u0000\u0000ࠐࠋ\u0001\u0000\u0000\u0000ࠐࠌ\u0001\u0000\u0000\u0000ࠐࠍ\u0001\u0000\u0000\u0000ࠐࠎ\u0001\u0000\u0000\u0000ࠐࠏ\u0001\u0000\u0000\u0000ࠑģ\u0001\u0000\u0000\u0000ࠒࠕ\u0005=\u0000\u0000ࠓࠔ\u0005¾\u0000\u0000ࠔࠖ\u0005ä\u0000\u0000ࠕࠓ\u0001\u0000\u0000\u0000ࠕࠖ\u0001\u0000\u0000\u0000ࠖࠞ\u0001\u0000\u0000\u0000ࠗࠟ\u0003ɢı\u0000࠘ࠟ\u0003ȼĞ\u0000࠙ࠟ\u0003Ŭ¶\u0000ࠚࠟ\u0003Ⱦğ\u0000ࠛࠟ\u0003Ų¹\u0000ࠜࠟ\u0003ƪÕ\u0000ࠝࠟ\u0003ƶÛ\u0000ࠞࠗ\u0001\u0000\u0000\u0000ࠞ࠘\u0001\u0000\u0000\u0000ࠞ࠙\u0001\u0000\u0000\u0000ࠞࠚ\u0001\u0000\u0000\u0000ࠞࠛ\u0001\u0000\u0000\u0000ࠞࠜ\u0001\u0000\u0000\u0000ࠞࠝ\u0001\u0000\u0000\u0000ࠟĥ\u0001\u0000\u0000\u0000ࠠࠨ\u0005W\u0000\u0000ࠡࠩ\u0003ɤIJ\u0000ࠢࠩ\u0003۸\u0000ࠣࠩ\u0003ɈĤ\u0000ࠤࠩ\u0003ƄÂ\u0000ࠥࠩ\u0003ƬÖ\u0000ࠦࠩ\u0003ƠÐ\u0000ࠧࠩ\u0003ƸÜ\u0000ࠨࠡ\u0001\u0000\u0000\u0000ࠨࠢ\u0001\u0000\u0000\u0000ࠨࠣ\u0001\u0000\u0000\u0000ࠨࠤ\u0001\u0000\u0000\u0000ࠨࠥ\u0001\u0000\u0000\u0000ࠨࠦ\u0001\u0000\u0000\u0000ࠨࠧ\u0001\u0000\u0000\u0000ࠩħ\u0001\u0000\u0000\u0000ࠪ࠻\u0005ÿ\u0000\u0000" -+ "ࠫ࠼\u0003ɲĹ\u0000ࠬ࠼\u0003ń¢\u0000࠭࠼\u0003ǔê\u0000\u082e࠼\u0003ɜĮ\u0000\u082f࠼\u0003Ŕª\u0000࠰࠼\u0003ľŸ\u0000࠱࠼\u0003ǘì\u0000࠲࠼\u0003Œ©\u0000࠳࠼\u0003ǚí\u0000࠴࠼\u0003ưØ\u0000࠵࠼\u0003ƢÑ\u0000࠶࠼\u0003Š°\u0000࠷࠼\u0003ǖë\u0000࠸࠼\u0003Ŝ®\u0000࠹࠼\u0003ǜî\u0000࠺࠼\u0003ǒé\u0000࠻ࠫ\u0001\u0000\u0000\u0000࠻ࠬ\u0001\u0000\u0000\u0000࠻࠭\u0001\u0000\u0000\u0000࠻\u082e\u0001\u0000\u0000\u0000࠻\u082f\u0001\u0000\u0000\u0000࠻࠰\u0001\u0000\u0000\u0000࠻࠱\u0001\u0000\u0000\u0000࠻࠲\u0001\u0000\u0000\u0000࠻࠳\u0001\u0000\u0000\u0000࠻࠴\u0001\u0000\u0000\u0000࠻࠵\u0001\u0000\u0000\u0000࠻࠶\u0001\u0000\u0000\u0000࠻࠷\u0001\u0000\u0000\u0000࠻࠸\u0001\u0000\u0000\u0000࠻࠹\u0001\u0000\u0000\u0000࠻࠺\u0001\u0000\u0000\u0000࠼ĩ\u0001\u0000\u0000\u0000࠽\u083f\u0003IJ™\u0000࠾ࡀ\u0003\u0012\t\u0000\u083f࠾\u0001\u0000\u0000\u0000\u083fࡀ\u0001\u0000\u0000\u0000ࡀࡃ\u0001\u0000\u0000\u0000ࡁࡃ\u0003&\u0013\u0000ࡂ࠽\u0001\u0000\u0000\u0000ࡂࡁ\u0001\u0000\u0000\u0000ࡃī\u0001\u0000\u0000\u0000ࡄࡇ\u0003ĔŠ\u0000ࡅࡆ\u0005\u0017\u0000\u0000ࡆࡈ\u0003ĔŠ\u0000ࡇࡅ\u0001\u0000\u0000\u0000ࡇࡈ\u0001\u0000\u0000\u0000ࡈĭ\u0001\u0000\u0000\u0000ࡉࡊ\u0007\u0003\u0000\u0000ࡊࡋ\u0003Á\u0000ࡋį\u0001\u0000\u0000\u0000ࡌࡍ\u0005–\u0000\u0000ࡍࡎ\u0003Á\u0000ࡎı\u0001\u0000\u0000\u0000ࡏ࡙\u0005IJ\u0000\u0000ࡐ࡚\u0005ď\u0000\u0000ࡑࡖ\u0003Ĭ–", -"\u0000ࡒࡓ\u00051\u0000\u0000ࡓࡕ\u0003Ĭ–\u0000ࡔࡒ\u0001\u0000\u0000\u0000ࡕࡘ\u0001\u0000\u0000\u0000ࡖࡔ\u0001\u0000\u0000\u0000ࡖࡗ\u0001\u0000\u0000\u0000ࡗ࡚\u0001\u0000\u0000\u0000ࡘࡖ\u0001\u0000\u0000\u0000࡙ࡐ\u0001\u0000\u0000\u0000࡙ࡑ\u0001\u0000\u0000\u0000࡚\u085c\u0001\u0000\u0000\u0000࡛\u085d\u0003 \u0010\u0000\u085c࡛\u0001\u0000\u0000\u0000\u085c\u085d\u0001\u0000\u0000\u0000\u085d\u085f\u0001\u0000\u0000\u0000࡞ࡠ\u0003Į—\u0000\u085f࡞\u0001\u0000\u0000\u0000\u085fࡠ\u0001\u0000\u0000\u0000ࡠࡢ\u0001\u0000\u0000\u0000ࡡࡣ\u0003ݘ\u0000ࡢࡡ\u0001\u0000\u0000\u0000ࡢࡣ\u0001\u0000\u0000\u0000ࡣࡥ\u0001\u0000\u0000\u0000ࡤࡦ\u0003&\u0013\u0000ࡥࡤ\u0001\u0000\u0000\u0000ࡥࡦ\u0001\u0000\u0000\u0000ࡦij\u0001\u0000\u0000\u0000ࡧࡨ\u0005¼\u0000\u0000ࡨࡩ\u0003ʊŅ\u0000ࡩĵ\u0001\u0000\u0000\u0000ࡪ\u086b\u0005ċ\u0000\u0000\u086b\u086c\u0003ޯ\u0000\u086cķ\u0001\u0000\u0000\u0000\u086d\u0870\u0003Ķ›\u0000\u086e\u0870\u0003ĺ\u0000\u086f\u086d\u0001\u0000\u0000\u0000\u086f\u086e\u0001\u0000\u0000\u0000\u0870Ĺ\u0001\u0000\u0000\u0000\u0871\u0878\u0005ÿ\u0000\u0000\u0872\u0879\u0003ľŸ\u0000\u0873\u0879\u0003ń¢\u0000\u0874\u0879\u0003Ŕª\u0000\u0875\u0879\u0003Œ©\u0000\u0876\u0879\u0003Š°\u0000\u0877\u0879\u0003Ŝ®\u0000\u0878\u0872\u0001\u0000\u0000\u0000\u0878\u0873\u0001\u0000\u0000\u0000\u0878\u0874\u0001\u0000\u0000\u0000\u0878\u0875\u0001\u0000\u0000\u0000\u0878\u0876\u0001\u0000\u0000\u0000\u0878\u0877\u0001\u0000\u0000\u0000\u0879Ļ\u0001\u0000\u0000\u0000\u087a\u087c\u0007\u001d\u0000\u0000\u087b\u087d\u0005À\u0000\u0000\u087c\u087b\u0001\u0000\u0000\u0000\u087c\u087d\u0001\u0000\u0000\u0000\u087d\u0884\u0001\u0000\u0000\u0000\u087e\u0880\u0003IJ™\u0000\u087f\u0881\u0003\u0012\t\u0000\u0880\u087f\u0001\u0000\u0000\u0000\u0880\u0881\u0001\u0000\u0000\u0000\u0881\u0884\u0001\u0000\u0000\u0000\u0882\u0884\u0003&\u0013\u0000\u0883\u087a\u0001\u0000\u0000\u0000\u0883\u087e\u0001\u0000\u0000\u0000\u0883\u0882\u0001\u0000\u0000\u0000\u0884Ľ\u0001\u0000\u0000\u0000\u0885\u0886\u0007\u001e\u0000\u0000\u0886\u088c\u0003ł¡\u0000\u0887\u0889\u0007\u001f\u0000\u0000\u0888\u0887\u0001\u0000\u0000\u0000\u0888\u0889\u0001\u0000\u0000\u0000\u0889\u088a\u0001\u0000\u0000\u0000\u088a\u088c\u0003ŀ \u0000\u088b\u0885\u0001\u0000\u0000\u0000\u088b\u0888\u0001\u0000\u0000\u0000\u088cĿ\u0001\u0000\u0000\u0000\u088d\u088f\u0003Ȏć\u0000\u088e\u0890\u0003ļž\u0000\u088f\u088e\u0001\u0000\u0000\u0000\u088f\u0890\u0001\u0000\u0000\u0000\u0890\u0892\u0001\u0000\u0000\u0000\u0891\u0893\u0003ĸœ\u0000\u0892\u0891\u0001\u0000\u0000\u0000\u0892\u0893\u0001\u0000\u0000\u0000\u0893" -+ "Ł\u0001\u0000\u0000\u0000\u0894\u0896\u0003Ȏć\u0000\u0895\u0897\u0003Ī•\u0000\u0896\u0895\u0001\u0000\u0000\u0000\u0896\u0897\u0001\u0000\u0000\u0000\u0897\u0899\u0001\u0000\u0000\u0000\u0898\u089a\u0003ĸœ\u0000\u0899\u0898\u0001\u0000\u0000\u0000\u0899\u089a\u0001\u0000\u0000\u0000\u089aŃ\u0001\u0000\u0000\u0000\u089b\u089d\u0007 \u0000\u0000\u089c\u089b\u0001\u0000\u0000\u0000\u089c\u089d\u0001\u0000\u0000\u0000\u089d\u089e\u0001\u0000\u0000\u0000\u089e\u089f\u0003ņ£\u0000\u089fࢠ\u0003Ő¨\u0000ࢠࢶ\u0001\u0000\u0000\u0000ࢡࢢ\u0007 \u0000\u0000ࢢࢣ\u0005Ğ\u0000\u0000ࢣࢶ\u0003Ő¨\u0000ࢤࢦ\u0007!\u0000\u0000ࢥࢤ\u0001\u0000\u0000\u0000ࢥࢦ\u0001\u0000\u0000\u0000ࢦࢧ\u0001\u0000\u0000\u0000ࢧࢨ\u0005\u0000\u0000ࢨࢶ\u0003Ő¨\u0000ࢩࢪ\u0005ß\u0000\u0000ࢪࢫ\u0005g\u0000\u0000ࢫࢶ\u0003Ő¨\u0000ࢬࢮ\u0007\"\u0000\u0000ࢭࢬ\u0001\u0000\u0000\u0000ࢭࢮ\u0001\u0000\u0000\u0000ࢮࢯ\u0001\u0000\u0000\u0000ࢯࢰ\u0005i\u0000\u0000ࢰࢶ\u0003Ŏ§\u0000ࢱࢳ\u0003Ŋ¥\u0000ࢲࢱ\u0001\u0000\u0000\u0000ࢲࢳ\u0001\u0000\u0000\u0000ࢳࢴ\u0001\u0000\u0000\u0000ࢴࢶ\u0003Ō¦\u0000\u08b5\u089c\u0001\u0000\u0000\u0000\u08b5ࢡ\u0001\u0000\u0000\u0000\u08b5ࢥ\u0001\u0000\u0000\u0000\u08b5ࢩ\u0001\u0000\u0000\u0000\u08b5ࢭ\u0001\u0000\u0000\u0000\u08b5ࢲ\u0001\u0000\u0000\u0000ࢶŅ\u0001\u0000\u0000\u0000ࢷࢼ\u0005ğ\u0000\u0000ࢸࢼ\u0003ň¤\u0000ࢹࢺ\u0005Ó\u0000\u0000ࢺࢼ\u0005Ě\u0000\u0000ࢻࢷ\u0001\u0000\u0000\u0000ࢻࢸ\u0001\u0000\u0000\u0000ࢻࢹ\u0001\u0000\u0000\u0000ࢼŇ\u0001\u0000\u0000\u0000ࢽࣃ\u0005h\u0000\u0000ࢾࢿ\u0005Ó\u0000\u0000ࢿࣃ\u0005h\u0000\u0000ࣀࣁ\u0005Ó\u0000\u0000ࣁࣃ\u0005g\u0000\u0000ࣂࢽ\u0001\u0000\u0000\u0000ࣂࢾ\u0001\u0000\u0000\u0000ࣂࣀ\u0001\u0000\u0000\u0000ࣃʼn\u0001\u0000\u0000\u0000ࣄ\u08ce\u0005\u0012\u0000\u0000ࣅ\u08ce\u0005Ğ\u0000\u0000ࣆ\u08ce\u0005g\u0000\u0000ࣇ\u08c8\u0005­\u0000\u0000\u08c8\u08ce\u0005\u0000\u0000\u08c9\u08ca\u0005­\u0000\u0000\u08ca\u08ce\u0005g\u0000\u0000\u08cb\u08cc\u0005à\u0000\u0000\u08cc\u08ce\u0005g\u0000\u0000\u08cdࣄ\u0001\u0000\u0000\u0000\u08cdࣅ\u0001\u0000\u0000\u0000\u08cdࣆ\u0001\u0000\u0000\u0000\u08cdࣇ\u0001\u0000\u0000\u0000\u08cd\u08c9\u0001\u0000\u0000\u0000\u08cd\u08cb\u0001\u0000\u0000\u0000\u08ceŋ\u0001\u0000\u0000\u0000\u08cf\u08d1\u0003ȐĈ\u0000\u08d0\u08d2\u0003ļž\u0000\u08d1\u08d0\u0001\u0000\u0000\u0000\u08d1\u08d2\u0001\u0000\u0000\u0000\u08d2ࣔ\u0001\u0000\u0000\u0000࣓ࣕ\u0003" -+ "ĸœ\u0000࣓ࣔ\u0001\u0000\u0000\u0000ࣔࣕ\u0001\u0000\u0000\u0000ࣕō\u0001\u0000\u0000\u0000ࣖࣛ\u0003ȐĈ\u0000ࣗࣙ\u0007\u001d\u0000\u0000ࣘࣚ\u0005À\u0000\u0000ࣙࣘ\u0001\u0000\u0000\u0000ࣙࣚ\u0001\u0000\u0000\u0000ࣚࣜ\u0001\u0000\u0000\u0000ࣛࣗ\u0001\u0000\u0000\u0000ࣛࣜ\u0001\u0000\u0000\u0000ࣜࣞ\u0001\u0000\u0000\u0000ࣝࣟ\u0003ĸœ\u0000ࣞࣝ\u0001\u0000\u0000\u0000ࣞࣟ\u0001\u0000\u0000\u0000ࣟŏ\u0001\u0000\u0000\u0000࣠࣢\u0003ȐĈ\u0000ࣣ࣡\u0003Ī•\u0000࣢࣡\u0001\u0000\u0000\u0000࣢ࣣ\u0001\u0000\u0000\u0000ࣣࣥ\u0001\u0000\u0000\u0000ࣦࣤ\u0003ĸœ\u0000ࣥࣤ\u0001\u0000\u0000\u0000ࣦࣥ\u0001\u0000\u0000\u0000ࣦő\u0001\u0000\u0000\u0000ࣩࣧ\u0007#\u0000\u0000ࣨ࣪\u0003ج\u0000ࣩࣨ\u0001\u0000\u0000\u0000ࣩ࣪\u0001\u0000\u0000\u0000࣪࣬\u0001\u0000\u0000\u0000࣭࣫\u0003Ī•\u0000࣬࣫\u0001\u0000\u0000\u0000࣭࣬\u0001\u0000\u0000\u0000࣭࣯\u0001\u0000\u0000\u0000ࣰ࣮\u0003ĸœ\u0000࣯࣮\u0001\u0000\u0000\u0000ࣰ࣯\u0001\u0000\u0000\u0000ࣰœ\u0001\u0000\u0000\u0000ࣱࣳ\u0003Ś­\u0000ࣱࣲ\u0001\u0000\u0000\u0000ࣲࣳ\u0001\u0000\u0000\u0000ࣳࣴ\u0001\u0000\u0000\u0000ࣶࣴ\u0003Ŗ«\u0000ࣵࣷ\u0003ج\u0000ࣶࣵ\u0001\u0000\u0000\u0000ࣶࣷ\u0001\u0000\u0000\u0000ࣹࣷ\u0001\u0000\u0000\u0000ࣺࣸ\u0003Ī•\u0000ࣹࣸ\u0001\u0000\u0000\u0000ࣹࣺ\u0001\u0000\u0000\u0000ࣺࣼ\u0001\u0000\u0000\u0000ࣻࣽ\u0003ĸœ\u0000ࣼࣻ\u0001\u0000\u0000\u0000ࣼࣽ\u0001\u0000\u0000\u0000ࣽŕ\u0001\u0000\u0000\u0000ࣾࣿ\u0007$\u0000\u0000ࣿŗ\u0001\u0000\u0000\u0000ऀइ\u0005e\u0000\u0000ँअ\u0005(\u0000\u0000ंः\u0005?\u0000\u0000ःआ\u0005ģ\u0000\u0000ऄआ\u0003ʎŇ\u0000अं\u0001\u0000\u0000\u0000अऄ\u0001\u0000\u0000\u0000आई\u0001\u0000\u0000\u0000इँ\u0001\u0000\u0000\u0000इई\u0001\u0000\u0000\u0000ईř\u0001\u0000\u0000\u0000उए\u0005\u0012\u0000\u0000ऊऋ\u0005\'\u0000\u0000ऋए\u0005ƒ\u0000\u0000ऌऍ\u0005ģ\u0000\u0000ऍए\u0005H\u0000\u0000ऎउ\u0001\u0000\u0000\u0000ऎऊ\u0001\u0000\u0000\u0000ऎऌ\u0001\u0000\u0000\u0000एś\u0001\u0000\u0000\u0000ऐऑ\u0003Ȓĉ\u0000ऑऒ\u0003Ť²\u0000ऒŝ\u0001\u0000\u0000\u0000ओऔ\u0003Ȓĉ\u0000औक\u0003Ť²\u0000कş\u0001\u0000\u0000\u0000खग\u0003ޱ\u0000गघ\u0003Ť²" -+ "\u0000घš\u0001\u0000\u0000\u0000ङच\u0007%\u0000\u0000चţ\u0001\u0000\u0000\u0000छझ\u0003Ī•\u0000जछ\u0001\u0000\u0000\u0000जझ\u0001\u0000\u0000\u0000झण\u0001\u0000\u0000\u0000ञठ\u0003Ŧ³\u0000टड\u0003Ī•\u0000ठट\u0001\u0000\u0000\u0000ठड\u0001\u0000\u0000\u0000डण\u0001\u0000\u0000\u0000ढज\u0001\u0000\u0000\u0000ढञ\u0001\u0000\u0000\u0000णथ\u0001\u0000\u0000\u0000तद\u0003ĸœ\u0000थत\u0001\u0000\u0000\u0000थद\u0001\u0000\u0000\u0000दť\u0001\u0000\u0000\u0000धप\u0003ʂŁ\u0000नप\u0003°X\u0000ऩध\u0001\u0000\u0000\u0000ऩन\u0001\u0000\u0000\u0000पŧ\u0001\u0000\u0000\u0000फब\u0005›\u0000\u0000बभ\u0003ĔŠ\u0000भम\u0003†C\u0000मय\u0005ï\u0000\u0000यũ\u0001\u0000\u0000\u0000रऱ\u0005›\u0000\u0000ऱळ\u0005ï\u0000\u0000लऴ\u0003’I\u0000ळल\u0001\u0000\u0000\u0000ळऴ\u0001\u0000\u0000\u0000ऴव\u0001\u0000\u0000\u0000वश\u0003”J\u0000शष\u0005’\u0000\u0000षस\u0003ĔŠ\u0000सह\u0003ˆD\u0000हऺ\u0005Ø\u0000\u0000ऺ़\u0003”J\u0000ऻऽ\u0003–K\u0000़ऻ\u0001\u0000\u0000\u0000़ऽ\u0001\u0000\u0000\u0000ऽा\u0001\u0000\u0000\u0000ाि\u0005›\u0000\u0000िी\u0005ï\u0000\u0000ीū\u0001\u0000\u0000\u0000ुृ\u00057\u0000\u0000ूॄ\u0003ɴĺ\u0000ृू\u0001\u0000\u0000\u0000ृॄ\u0001\u0000\u0000\u0000ॄै\u0001\u0000\u0000\u0000ॅॆ\u0005€\u0000\u0000ॆे\u0005³\u0000\u0000ेॉ\u0005i\u0000\u0000ैॅ\u0001\u0000\u0000\u0000ैॉ\u0001\u0000\u0000\u0000ॉॊ\u0001\u0000\u0000\u0000ॊ्\u0007&\u0000\u0000ोॎ\u0003Ũ´\u0000ौॎ\u0003Ūµ\u0000्ो\u0001\u0000\u0000\u0000्ौ\u0001\u0000\u0000\u0000ॎॏ\u0001\u0000\u0000\u0000ॏ॑\u0003Ů·\u0000ॐ॒\u0003Ĵš\u0000॑ॐ\u0001\u0000\u0000\u0000॒॑\u0001\u0000\u0000\u0000॒ŭ\u0001\u0000\u0000\u0000॓॔\u0005\u001a\u0000\u0000॔ॕ\u0005i\u0000\u0000ॕॶ\u0003ƆÃ\u0000ॖॗ\u0007\'\u0000\u0000ॗज़\u0003ƆÃ\u0000क़ड़\u00050\u0000\u0000ख़ग़\u0005‹\u0000\u0000ग़ड़\u0007\u0012\u0000\u0000ज़क़\u0001\u0000\u0000\u0000ज़ख़\u0001\u0000\u0000\u0000ड़ढ़\u0001\u0000\u0000\u0000ढ़फ़\u0003ʌ\u0000फ़ॶ\u0001\u0000\u0000\u0000य़ॠ\u0007\'\u0000\u0000ॠॡ\u0003ƆÃ\u0000ॡ" -+ "ॣ\u0005‹\u0000\u0000ॢ।\u0007 \u0000\u0000ॣॢ\u0001\u0000\u0000\u0000ॣ।\u0001\u0000\u0000\u0000।॥\u0001\u0000\u0000\u0000॥०\u0005Ğ\u0000\u0000०ॶ\u0001\u0000\u0000\u0000१२\u0007\'\u0000\u0000२३\u0003ƆÃ\u0000३५\u0005‹\u0000\u0000४६\u0007 \u0000\u0000५४\u0001\u0000\u0000\u0000५६\u0001\u0000\u0000\u0000६७\u0001\u0000\u0000\u0000७८\u0005\u0000\u0000८ॶ\u0001\u0000\u0000\u0000९॰\u0007\'\u0000\u0000॰ॱ\u0003ƆÃ\u0000ॱॲ\u0005‹\u0000\u0000ॲॳ\u0005³\u0000\u0000ॳॴ\u0005¶\u0000\u0000ॴॶ\u0001\u0000\u0000\u0000ॵ॓\u0001\u0000\u0000\u0000ॵॖ\u0001\u0000\u0000\u0000ॵय़\u0001\u0000\u0000\u0000ॵ१\u0001\u0000\u0000\u0000ॵ९\u0001\u0000\u0000\u0000ॶů\u0001\u0000\u0000\u0000ॷঐ\u00057\u0000\u0000ॸॻ\u0005¹\u0000\u0000ॹॼ\u0003Ũ´\u0000ॺॼ\u0003Ūµ\u0000ॻॹ\u0001\u0000\u0000\u0000ॻॺ\u0001\u0000\u0000\u0000ॼॽ\u0001\u0000\u0000\u0000ॽউ\u0005\u001a\u0000\u0000ॾॿ\u0005i\u0000\u0000ॿঊ\u0003ƆÃ\u0000ঀঁ\u0003ƆÃ\u0000ঁই\u0005‹\u0000\u0000ংঈ\u0005Ğ\u0000\u0000ঃ\u0984\u0005­\u0000\u0000\u0984ঈ\u0005\u0000\u0000অআ\u0005³\u0000\u0000আঈ\u0005¶\u0000\u0000ইং\u0001\u0000\u0000\u0000ইঃ\u0001\u0000\u0000\u0000ইঅ\u0001\u0000\u0000\u0000ঈঊ\u0001\u0000\u0000\u0000উॾ\u0001\u0000\u0000\u0000উঀ\u0001\u0000\u0000\u0000ঊ\u0991\u0001\u0000\u0000\u0000ঋ\u098e\u0003ɴĺ\u0000ঌ\u098d\u0005€\u0000\u0000\u098dএ\u0005i\u0000\u0000\u098eঌ\u0001\u0000\u0000\u0000\u098eএ\u0001\u0000\u0000\u0000এ\u0991\u0001\u0000\u0000\u0000ঐॸ\u0001\u0000\u0000\u0000ঐঋ\u0001\u0000\u0000\u0000\u0991ű\u0001\u0000\u0000\u0000\u0992ও\u0005&\u0000\u0000ওঔ\u0005„\u0000\u0000ঔম\u0003Ŷ»\u0000কখ\u0005×\u0000\u0000খগ\u0005„\u0000\u0000গম\u0003Ŷ»\u0000ঘঙ\u0005Č\u0000\u0000ঙচ\u0005„\u0000\u0000চম\u0003Ŷ»\u0000ছজ\u0005É\u0000\u0000জঝ\u0005„\u0000\u0000ঝম\u0003Ŷ»\u0000ঞট\u0005Ĩ\u0000\u0000টঠ\u0005„\u0000\u0000ঠম\u0003Ŷ»\u0000ডঢ\u0005š\u0000\u0000ঢণ\u0005„\u0000\u0000ণম\u0003ž¿\u0000তথ\u0005s\u0000\u0000থদ\u0005„\u0000\u0000দম\u0003Ÿ¼\u0000ধফ\u0005„\u0000\u0000ন\u09a9\u0005¹\u0000\u0000\u09a9ব\u0003Ŵº\u0000পব\u0003" -+ "Ŷ»\u0000ফন\u0001\u0000\u0000\u0000ফপ\u0001\u0000\u0000\u0000বম\u0001\u0000\u0000\u0000ভ\u0992\u0001\u0000\u0000\u0000ভক\u0001\u0000\u0000\u0000ভঘ\u0001\u0000\u0000\u0000ভছ\u0001\u0000\u0000\u0000ভঞ\u0001\u0000\u0000\u0000ভড\u0001\u0000\u0000\u0000ভত\u0001\u0000\u0000\u0000ভধ\u0001\u0000\u0000\u0000মų\u0001\u0000\u0000\u0000যর\u0003†C\u0000র\u09b1\u0005›\u0000\u0000\u09b1ল\u0003Ė‹\u0000ল\u09b3\u0005ï\u0000\u0000\u09b3ŵ\u0001\u0000\u0000\u0000\u09b4শ\u0003ɴĺ\u0000\u09b5\u09b4\u0001\u0000\u0000\u0000\u09b5শ\u0001\u0000\u0000\u0000শ\u09ba\u0001\u0000\u0000\u0000ষস\u0005€\u0000\u0000সহ\u0005³\u0000\u0000হ\u09bb\u0005i\u0000\u0000\u09baষ\u0001\u0000\u0000\u0000\u09ba\u09bb\u0001\u0000\u0000\u0000\u09bb়\u0001\u0000\u0000\u0000়ি\u0005p\u0000\u0000ঽী\u0003Ũ´\u0000াী\u0003Ūµ\u0000িঽ\u0001\u0000\u0000\u0000িা\u0001\u0000\u0000\u0000ীু\u0001\u0000\u0000\u0000ুূ\u0005¹\u0000\u0000ূৄ\u0003ƆÃ\u0000ৃ\u09c5\u0003Ĵš\u0000ৄৃ\u0001\u0000\u0000\u0000ৄ\u09c5\u0001\u0000\u0000\u0000\u09c5ŷ\u0001\u0000\u0000\u0000\u09c6ৈ\u0003ɴĺ\u0000ে\u09c6\u0001\u0000\u0000\u0000েৈ\u0001\u0000\u0000\u0000ৈৌ\u0001\u0000\u0000\u0000\u09c9\u09ca\u0005€\u0000\u0000\u09caো\u0005³\u0000\u0000ো্\u0005i\u0000\u0000ৌ\u09c9\u0001\u0000\u0000\u0000ৌ্\u0001\u0000\u0000\u0000্ৎ\u0001\u0000\u0000\u0000ৎ\u09d1\u0005p\u0000\u0000\u09cf\u09d2\u0003ź½\u0000\u09d0\u09d2\u0003ż¾\u0000\u09d1\u09cf\u0001\u0000\u0000\u0000\u09d1\u09d0\u0001\u0000\u0000\u0000\u09d2\u09d3\u0001\u0000\u0000\u0000\u09d3\u09d4\u0005¹\u0000\u0000\u09d4\u09d5\u0005[\u0000\u0000\u09d5\u09d6\u0005’\u0000\u0000\u09d6ৗ\u0003ƈÄ\u0000ৗ\u09d9\u0005Ø\u0000\u0000\u09d8\u09da\u0003Ĵš\u0000\u09d9\u09d8\u0001\u0000\u0000\u0000\u09d9\u09da\u0001\u0000\u0000\u0000\u09daŹ\u0001\u0000\u0000\u0000\u09dbড়\u0005›\u0000\u0000ড়ঢ়\u0003ĔŠ\u0000ঢ়\u09de\u0005/\u0000\u0000\u09deৣ\u0003ʎŇ\u0000য়ৠ\u0005\u001e\u0000\u0000ৠৢ\u0003ʎŇ\u0000ৡয়\u0001\u0000\u0000\u0000ৢ\u09e5\u0001\u0000\u0000\u0000ৣৡ\u0001\u0000\u0000\u0000ৣ\u09e4\u0001\u0000\u0000\u0000\u09e4০\u0001\u0000\u0000\u0000\u09e5ৣ\u0001\u0000\u0000\u0000০১\u0005ï\u0000\u0000১Ż\u0001\u0000\u0000\u0000২৩\u0005›\u0000\u0000৩৫\u0005ï\u0000\u0000৪৬\u0003’I\u0000৫৪\u0001\u0000\u0000\u0000৫৬\u0001\u0000\u0000\u0000৬৭\u0001\u0000\u0000\u0000৭৮\u0003”J" -+ "\u0000৮৯\u0005’\u0000\u0000৯ৰ\u0003ĔŠ\u0000ৰৱ\u0005/\u0000\u0000ৱ৶\u0003ʎŇ\u0000৲৳\u0005\u001e\u0000\u0000৳৵\u0003ʎŇ\u0000৴৲\u0001\u0000\u0000\u0000৵৸\u0001\u0000\u0000\u0000৶৴\u0001\u0000\u0000\u0000৶৷\u0001\u0000\u0000\u0000৷৹\u0001\u0000\u0000\u0000৸৶\u0001\u0000\u0000\u0000৹৺\u0005Ø\u0000\u0000৺ৼ\u0003”J\u0000৻৽\u0003–K\u0000ৼ৻\u0001\u0000\u0000\u0000ৼ৽\u0001\u0000\u0000\u0000৽৾\u0001\u0000\u0000\u0000৾\u09ff\u0005›\u0000\u0000\u09ff\u0a00\u0005ï\u0000\u0000\u0a00Ž\u0001\u0000\u0000\u0000ਁਃ\u0003ɴĺ\u0000ਂਁ\u0001\u0000\u0000\u0000ਂਃ\u0001\u0000\u0000\u0000ਃਇ\u0001\u0000\u0000\u0000\u0a04ਅ\u0005€\u0000\u0000ਅਆ\u0005³\u0000\u0000ਆਈ\u0005i\u0000\u0000ਇ\u0a04\u0001\u0000\u0000\u0000ਇਈ\u0001\u0000\u0000\u0000ਈਉ\u0001\u0000\u0000\u0000ਉ\u0a0c\u0005p\u0000\u0000ਊ\u0a0d\u0003ƀÀ\u0000\u0a0b\u0a0d\u0003ƂÁ\u0000\u0a0cਊ\u0001\u0000\u0000\u0000\u0a0c\u0a0b\u0001\u0000\u0000\u0000\u0a0d\u0a0e\u0001\u0000\u0000\u0000\u0a0eਏ\u0003ʎŇ\u0000ਏਐ\u0005›\u0000\u0000ਐ\u0a11\u0003ĔŠ\u0000\u0a11ਓ\u0005ï\u0000\u0000\u0a12ਔ\u0003Ĵš\u0000ਓ\u0a12\u0001\u0000\u0000\u0000ਓਔ\u0001\u0000\u0000\u0000ਔſ\u0001\u0000\u0000\u0000ਕਖ\u0005›\u0000\u0000ਖਗ\u0003ĔŠ\u0000ਗਘ\u0005ï\u0000\u0000ਘਙ\u0005¹\u0000\u0000ਙਚ\u0005[\u0000\u0000ਚƁ\u0001\u0000\u0000\u0000ਛਜ\u0005›\u0000\u0000ਜਞ\u0005ï\u0000\u0000ਝਟ\u0003’I\u0000ਞਝ\u0001\u0000\u0000\u0000ਞਟ\u0001\u0000\u0000\u0000ਟਠ\u0001\u0000\u0000\u0000ਠਡ\u0003”J\u0000ਡਢ\u0005’\u0000\u0000ਢਣ\u0003ĔŠ\u0000ਣਤ\u0005Ø\u0000\u0000ਤਦ\u0003”J\u0000ਥਧ\u0003–K\u0000ਦਥ\u0001\u0000\u0000\u0000ਦਧ\u0001\u0000\u0000\u0000ਧਨ\u0001\u0000\u0000\u0000ਨ\u0a29\u0005›\u0000\u0000\u0a29ਪ\u0005ï\u0000\u0000ਪਬ\u0005¹\u0000\u0000ਫਭ\u0005[\u0000\u0000ਬਫ\u0001\u0000\u0000\u0000ਬਭ\u0001\u0000\u0000\u0000ਭƃ\u0001\u0000\u0000\u0000ਮ\u0a3a\u0005„\u0000\u0000ਯਰ\u0005¹\u0000\u0000ਰ\u0a31\u0003†C\u0000\u0a31ਲ\u0005›\u0000\u0000ਲਲ਼\u0003Ė‹\u0000ਲ਼\u0a34\u0005ï\u0000\u0000\u0a34\u0a3b\u0001\u0000\u0000\u0000ਵਸ\u0003ɴĺ\u0000ਸ਼\u0a37\u0005€\u0000\u0000\u0a37ਹ\u0005i\u0000\u0000ਸਸ਼\u0001\u0000\u0000\u0000ਸਹ\u0001\u0000\u0000\u0000ਹ" -+ "\u0a3b\u0001\u0000\u0000\u0000\u0a3aਯ\u0001\u0000\u0000\u0000\u0a3aਵ\u0001\u0000\u0000\u0000\u0a3bƅ\u0001\u0000\u0000\u0000਼\u0a3d\u0003ĔŠ\u0000\u0a3dਾ\u0003Ìf\u0000ਾ\u0a44\u0001\u0000\u0000\u0000ਿੀ\u0005›\u0000\u0000ੀੁ\u0003ƈÄ\u0000ੁੂ\u0005ï\u0000\u0000ੂ\u0a44\u0001\u0000\u0000\u0000\u0a43਼\u0001\u0000\u0000\u0000\u0a43ਿ\u0001\u0000\u0000\u0000\u0a44Ƈ\u0001\u0000\u0000\u0000\u0a45\u0a46\u0003ĔŠ\u0000\u0a46੍\u0003Ìf\u0000ੇੈ\u00051\u0000\u0000ੈ\u0a49\u0003ĔŠ\u0000\u0a49\u0a4a\u0003Ìf\u0000\u0a4aੌ\u0001\u0000\u0000\u0000ੋੇ\u0001\u0000\u0000\u0000ੌ\u0a4f\u0001\u0000\u0000\u0000੍ੋ\u0001\u0000\u0000\u0000੍\u0a4e\u0001\u0000\u0000\u0000\u0a4eƉ\u0001\u0000\u0000\u0000\u0a4f੍\u0001\u0000\u0000\u0000\u0a50\u0a56\u0005\u0013\u0000\u0000ੑ\u0a57\u0003ɦij\u0000\u0a52\u0a57\u0003ƼÞ\u0000\u0a53\u0a57\u0003ɌĦ\u0000\u0a54\u0a57\u0003ƾß\u0000\u0a55\u0a57\u0003ƜÎ\u0000\u0a56ੑ\u0001\u0000\u0000\u0000\u0a56\u0a52\u0001\u0000\u0000\u0000\u0a56\u0a53\u0001\u0000\u0000\u0000\u0a56\u0a54\u0001\u0000\u0000\u0000\u0a56\u0a55\u0001\u0000\u0000\u0000\u0a57Ƌ\u0001\u0000\u0000\u0000\u0a58ੜ\u0005Ý\u0000\u0000ਖ਼\u0a5d\u0003Ʈ×\u0000ਗ਼\u0a5d\u0003ƞÏ\u0000ਜ਼\u0a5d\u0003ƺÝ\u0000ੜਖ਼\u0001\u0000\u0000\u0000ੜਗ਼\u0001\u0000\u0000\u0000ੜਜ਼\u0001\u0000\u0000\u0000\u0a5dƍ\u0001\u0000\u0000\u0000ਫ਼੩\u0005w\u0000\u0000\u0a5f\u0a61\u0005‚\u0000\u0000\u0a60\u0a5f\u0001\u0000\u0000\u0000\u0a60\u0a61\u0001\u0000\u0000\u0000\u0a61\u0a62\u0001\u0000\u0000\u0000\u0a62\u0a63\u0003Ǣñ\u0000\u0a63\u0a64\u0005Ē\u0000\u0000\u0a64\u0a65\u0003ƖË\u0000\u0a65੪\u0001\u0000\u0000\u0000੦੧\u0003ƘÌ\u0000੧੨\u0003ƲÙ\u0000੨੪\u0001\u0000\u0000\u0000੩\u0a60\u0001\u0000\u0000\u0000੩੦\u0001\u0000\u0000\u0000੪Ə\u0001\u0000\u0000\u0000੫੭\u0005J\u0000\u0000੬੮\u0005‚\u0000\u0000੭੬\u0001\u0000\u0000\u0000੭੮\u0001\u0000\u0000\u0000੮੯\u0001\u0000\u0000\u0000੯ੰ\u0003Ǣñ\u0000ੰੱ\u0005Ē\u0000\u0000ੱੲ\u0003ƖË\u0000ੲƑ\u0001\u0000\u0000\u0000ੳઁ\u0005ê\u0000\u0000ੴ੶\u0007(\u0000\u0000ੵੴ\u0001\u0000\u0000\u0000ੵ੶\u0001\u0000\u0000\u0000੶\u0a78\u0001\u0000\u0000\u0000\u0a77\u0a79\u0005‚\u0000\u0000\u0a78\u0a77\u0001\u0000\u0000\u0000\u0a78\u0a79\u0001\u0000\u0000\u0000\u0a79\u0a7a\u0001\u0000\u0000\u0000\u0a7a\u0a7b\u0003Ǣñ\u0000\u0a7b\u0a7c\u0005r\u0000\u0000\u0a7c\u0a7d\u0003ƖË\u0000\u0a7dં\u0001\u0000\u0000\u0000\u0a7e\u0a7f\u0003ƘÌ\u0000\u0a7f\u0a80\u0003ƴÚ\u0000\u0a80ં\u0001" -+ "\u0000\u0000\u0000ઁੵ\u0001\u0000\u0000\u0000ઁ\u0a7e\u0001\u0000\u0000\u0000ંƓ\u0001\u0000\u0000\u0000ઃ\u0a84\u0003ɸļ\u0000\u0a84ƕ\u0001\u0000\u0000\u0000અઆ\u0003ɸļ\u0000આƗ\u0001\u0000\u0000\u0000ઇઈ\u0007)\u0000\u0000ઈƙ\u0001\u0000\u0000\u0000ઉઊ\u0005]\u0000\u0000ઊઋ\u0005ø\u0000\u0000ઋઍ\u0003ʈń\u0000ઌ\u0a8e\u0003Ĵš\u0000ઍઌ\u0001\u0000\u0000\u0000ઍ\u0a8e\u0001\u0000\u0000\u0000\u0a8eƛ\u0001\u0000\u0000\u0000એઐ\u0005ø\u0000\u0000ઐઑ\u0003ʈń\u0000ઑ\u0a92\u0005ú\u0000\u0000\u0a92ઓ\u0003Ĵš\u0000ઓƝ\u0001\u0000\u0000\u0000ઔક\u0005ø\u0000\u0000કખ\u0003ʈń\u0000ખગ\u0005Ē\u0000\u0000ગઘ\u0003ʈń\u0000ઘƟ\u0001\u0000\u0000\u0000ઙચ\u0005ø\u0000\u0000ચછ\u0003ʈń\u0000છơ\u0001\u0000\u0000\u0000જઞ\u0007*\u0000\u0000ઝટ\u0003Ī•\u0000ઞઝ\u0001\u0000\u0000\u0000ઞટ\u0001\u0000\u0000\u0000ટƣ\u0001\u0000\u0000\u0000ઠઢ\u0005X\u0000\u0000ડઠ\u0001\u0000\u0000\u0000ડઢ\u0001\u0000\u0000\u0000ઢથ\u0001\u0000\u0000\u0000ણદ\u0003ƦÓ\u0000તદ\u0003ƨÔ\u0000થણ\u0001\u0000\u0000\u0000થત\u0001\u0000\u0000\u0000દƥ\u0001\u0000\u0000\u0000ધન\u0005F\u0000\u0000ન\u0aa9\u0007+\u0000\u0000\u0aa9પ\u0005r\u0000\u0000પફ\u0007*\u0000\u0000ફર\u0003ʈń\u0000બભ\u00051\u0000\u0000ભય\u0003ʈń\u0000મબ\u0001\u0000\u0000\u0000યલ\u0001\u0000\u0000\u0000રમ\u0001\u0000\u0000\u0000ર\u0ab1\u0001\u0000\u0000\u0000\u0ab1Ƨ\u0001\u0000\u0000\u0000લર\u0001\u0000\u0000\u0000ળ\u0ab4\u0005Û\u0000\u0000\u0ab4વ\u0007+\u0000\u0000વƩ\u0001\u0000\u0000\u0000શષ\u0005ë\u0000\u0000ષ\u0abb\u0003ɶĻ\u0000સહ\u0005€\u0000\u0000હ\u0aba\u0005³\u0000\u0000\u0aba઼\u0005i\u0000\u0000\u0abbસ\u0001\u0000\u0000\u0000\u0abb઼\u0001\u0000\u0000\u0000઼ુ\u0001\u0000\u0000\u0000ઽા\u0005\u0017\u0000\u0000ાિ\u0005:\u0000\u0000િી\u0005·\u0000\u0000ીૂ\u0003ɶĻ\u0000ુઽ\u0001\u0000\u0000\u0000ુૂ\u0001\u0000\u0000\u0000ૂƫ\u0001\u0000\u0000\u0000ૃૄ\u0005ë\u0000\u0000ૄે\u0003ɶĻ\u0000ૅ\u0ac6\u0005€\u0000\u0000\u0ac6ૈ\u0005i\u0000\u0000ેૅ\u0001\u0000\u0000\u0000ેૈ\u0001\u0000\u0000\u0000ૈƭ\u0001\u0000\u0000\u0000ૉ\u0aca\u0005ë\u0000\u0000\u0aca્\u0003ɶĻ\u0000ોૌ\u0005€\u0000\u0000ૌ\u0ace\u0005i\u0000" -+ "\u0000્ો\u0001\u0000\u0000\u0000્\u0ace\u0001\u0000\u0000\u0000\u0ace\u0acf\u0001\u0000\u0000\u0000\u0acfૐ\u0005Ē\u0000\u0000ૐ\u0ad1\u0003ɶĻ\u0000\u0ad1Ư\u0001\u0000\u0000\u0000\u0ad2\u0ad4\u0007,\u0000\u0000\u0ad3\u0ad2\u0001\u0000\u0000\u0000\u0ad3\u0ad4\u0001\u0000\u0000\u0000\u0ad4\u0ad5\u0001\u0000\u0000\u0000\u0ad5\u0ad8\u0003ƘÌ\u0000\u0ad6\u0ad7\u0005Į\u0000\u0000\u0ad7\u0ad9\u0007-\u0000\u0000\u0ad8\u0ad6\u0001\u0000\u0000\u0000\u0ad8\u0ad9\u0001\u0000\u0000\u0000\u0ad9\u0adb\u0001\u0000\u0000\u0000\u0ada\u0adc\u0003Ī•\u0000\u0adb\u0ada\u0001\u0000\u0000\u0000\u0adb\u0adc\u0001\u0000\u0000\u0000\u0adcƱ\u0001\u0000\u0000\u0000\u0add\u0ade\u0003ƖË\u0000\u0ade\u0adf\u0005Ē\u0000\u0000\u0adfૠ\u0003ƔÊ\u0000ૠƳ\u0001\u0000\u0000\u0000ૡૢ\u0003ƖË\u0000ૢૣ\u0005r\u0000\u0000ૣ\u0ae4\u0003ƔÊ\u0000\u0ae4Ƶ\u0001\u0000\u0000\u0000\u0ae5૦\u0005ģ\u0000\u0000૦૪\u0003ɶĻ\u0000૧૨\u0005€\u0000\u0000૨૩\u0005³\u0000\u0000૩૫\u0005i\u0000\u0000૪૧\u0001\u0000\u0000\u0000૪૫\u0001\u0000\u0000\u0000૫\u0af5\u0001\u0000\u0000\u0000૬\u0af3\u0005ú\u0000\u0000૭\u0af4\u0003ǂá\u0000૮૯\u0005Á\u0000\u0000૯\u0af4\u0003Ljä\u0000૰\u0af4\u0003NJå\u0000૱\u0af4\u0003njæ\u0000\u0af2\u0af4\u0003ǎç\u0000\u0af3૭\u0001\u0000\u0000\u0000\u0af3૮\u0001\u0000\u0000\u0000\u0af3૰\u0001\u0000\u0000\u0000\u0af3૱\u0001\u0000\u0000\u0000\u0af3\u0af2\u0001\u0000\u0000\u0000\u0af4\u0af6\u0001\u0000\u0000\u0000\u0af5૬\u0001\u0000\u0000\u0000\u0af6\u0af7\u0001\u0000\u0000\u0000\u0af7\u0af5\u0001\u0000\u0000\u0000\u0af7\u0af8\u0001\u0000\u0000\u0000\u0af8Ʒ\u0001\u0000\u0000\u0000ૹૺ\u0005ģ\u0000\u0000ૺ૽\u0003ɶĻ\u0000ૻૼ\u0005€\u0000\u0000ૼ૾\u0005i\u0000\u0000૽ૻ\u0001\u0000\u0000\u0000૽૾\u0001\u0000\u0000\u0000૾ƹ\u0001\u0000\u0000\u0000૿\u0b00\u0005ģ\u0000\u0000\u0b00ଃ\u0003ɶĻ\u0000ଁଂ\u0005€\u0000\u0000ଂ\u0b04\u0005i\u0000\u0000ଃଁ\u0001\u0000\u0000\u0000ଃ\u0b04\u0001\u0000\u0000\u0000\u0b04ଅ\u0001\u0000\u0000\u0000ଅଆ\u0005Ē\u0000\u0000ଆଇ\u0003ɶĻ\u0000ଇƻ\u0001\u0000\u0000\u0000ଈଉ\u0005?\u0000\u0000ଉଊ\u0005ģ\u0000\u0000ଊଋ\u0005ú\u0000\u0000ଋଌ\u0005Á\u0000\u0000ଌ\u0b0d\u0005r\u0000\u0000\u0b0d\u0b0e\u0003džã\u0000\u0b0eଏ\u0005Ē\u0000\u0000ଏଐ\u0003džã\u0000ଐƽ\u0001\u0000\u0000\u0000\u0b11\u0b12\u0005ģ\u0000\u0000\u0b12କ\u0003ɶĻ\u0000ଓଔ\u0005€\u0000\u0000ଔଖ\u0005i\u0000\u0000କଓ\u0001\u0000\u0000\u0000କ" -+ "ଖ\u0001\u0000\u0000\u0000ଖତ\u0001\u0000\u0000\u0000ଗଠ\u0005â\u0000\u0000ଘଙ\u0005~\u0000\u0000ଙଡ\u0005A\u0000\u0000ଚଛ\u0005\u0012\u0000\u0000ଛଝ\u0005\u001d\u0000\u0000ଜଞ\u0007.\u0000\u0000ଝଜ\u0001\u0000\u0000\u0000ଝଞ\u0001\u0000\u0000\u0000ଞଡ\u0001\u0000\u0000\u0000ଟଡ\u0003ǀà\u0000ଠଘ\u0001\u0000\u0000\u0000ଠଚ\u0001\u0000\u0000\u0000ଠଟ\u0001\u0000\u0000\u0000ଡଣ\u0001\u0000\u0000\u0000ଢଗ\u0001\u0000\u0000\u0000ଣଦ\u0001\u0000\u0000\u0000ତଢ\u0001\u0000\u0000\u0000ତଥ\u0001\u0000\u0000\u0000ଥଲ\u0001\u0000\u0000\u0000ଦତ\u0001\u0000\u0000\u0000ଧମ\u0005ú\u0000\u0000ନଯ\u0003ǂá\u0000\u0b29ପ\u0005Á\u0000\u0000ପଯ\u0003Ljä\u0000ଫଯ\u0003NJå\u0000ବଯ\u0003njæ\u0000ଭଯ\u0003ǎç\u0000ମନ\u0001\u0000\u0000\u0000ମ\u0b29\u0001\u0000\u0000\u0000ମଫ\u0001\u0000\u0000\u0000ମବ\u0001\u0000\u0000\u0000ମଭ\u0001\u0000\u0000\u0000ଯ\u0b31\u0001\u0000\u0000\u0000ରଧ\u0001\u0000\u0000\u0000\u0b31\u0b34\u0001\u0000\u0000\u0000ଲର\u0001\u0000\u0000\u0000ଲଳ\u0001\u0000\u0000\u0000ଳƿ\u0001\u0000\u0000\u0000\u0b34ଲ\u0001\u0000\u0000\u0000ଵଷ\u0005\u001d\u0000\u0000ଶସ\u0007.\u0000\u0000ଷଶ\u0001\u0000\u0000\u0000ଷସ\u0001\u0000\u0000\u0000ସ଼\u0001\u0000\u0000\u0000ହଽ\u0003ʄł\u0000\u0b3aଽ\u0003ʀŀ\u0000\u0b3bଽ\u0003Ĉ„\u0000଼ହ\u0001\u0000\u0000\u0000଼\u0b3a\u0001\u0000\u0000\u0000଼\u0b3b\u0001\u0000\u0000\u0000ଽǁ\u0001\u0000\u0000\u0000ାୀ\u0007/\u0000\u0000ିା\u0001\u0000\u0000\u0000ିୀ\u0001\u0000\u0000\u0000ୀୁ\u0001\u0000\u0000\u0000ୁୂ\u0005Á\u0000\u0000ୂୄ\u0003džã\u0000ୃ\u0b45\u0003Ljä\u0000ୄୃ\u0001\u0000\u0000\u0000ୄ\u0b45\u0001\u0000\u0000\u0000\u0b45ǃ\u0001\u0000\u0000\u0000\u0b46ୈ\u0007/\u0000\u0000େ\u0b46\u0001\u0000\u0000\u0000େୈ\u0001\u0000\u0000\u0000ୈ\u0b49\u0001\u0000\u0000\u0000\u0b49\u0b4a\u0005Á\u0000\u0000\u0b4aୋ\u0003džã\u0000ୋDž\u0001\u0000\u0000\u0000ୌ\u0b4f\u0003ʄł\u0000୍\u0b4f\u0003Ĉ„\u0000\u0b4eୌ\u0001\u0000\u0000\u0000\u0b4e୍\u0001\u0000\u0000\u0000\u0b4fLJ\u0001\u0000\u0000\u0000\u0b50\u0b52\u0005,\u0000\u0000\u0b51\u0b53\u0005³\u0000\u0000\u0b52\u0b51\u0001\u0000\u0000\u0000\u0b52\u0b53\u0001\u0000\u0000\u0000\u0b53\u0b54\u0001\u0000\u0000\u0000\u0b54୕\u0005ç\u0000\u0000୕lj\u0001\u0000\u0000\u0000ୖୗ\u0005ą\u0000\u0000ୗ\u0b58\u00070\u0000\u0000\u0b58Nj\u0001\u0000\u0000\u0000\u0b59\u0b5a\u0005" -+ "~\u0000\u0000\u0b5a\u0b5b\u0005A\u0000\u0000\u0b5bଡ଼\u0003ɼľ\u0000ଡ଼Ǎ\u0001\u0000\u0000\u0000ଢ଼ୟ\u0005\u001d\u0000\u0000\u0b5eୠ\u0005Ô\u0000\u0000ୟ\u0b5e\u0001\u0000\u0000\u0000ୟୠ\u0001\u0000\u0000\u0000ୠୡ\u0001\u0000\u0000\u0000ୡୢ\u0003ʄł\u0000ୢ\u0b65\u0005“\u0000\u0000ୣ\u0b64\u0005ú\u0000\u0000\u0b64୦\u0003ǐè\u0000\u0b65ୣ\u0001\u0000\u0000\u0000୦୧\u0001\u0000\u0000\u0000୧\u0b65\u0001\u0000\u0000\u0000୧୨\u0001\u0000\u0000\u0000୨୩\u0001\u0000\u0000\u0000୩୪\u0005Ù\u0000\u0000୪Ǐ\u0001\u0000\u0000\u0000୫୬\u0005\u0000\u0000୬ୱ\u0003ʆŃ\u0000୭ୱ\u0003DŽâ\u0000୮୯\u0005Á\u0000\u0000୯ୱ\u0003Ljä\u0000୰୫\u0001\u0000\u0000\u0000୰୭\u0001\u0000\u0000\u0000୰୮\u0001\u0000\u0000\u0000ୱǑ\u0001\u0000\u0000\u0000୲୵\u0007-\u0000\u0000୳୴\u0005Į\u0000\u0000୴୶\u0005\u001d\u0000\u0000୵୳\u0001\u0000\u0000\u0000୵୶\u0001\u0000\u0000\u0000୶\u0b78\u0001\u0000\u0000\u0000୷\u0b79\u0003Ī•\u0000\u0b78୷\u0001\u0000\u0000\u0000\u0b78\u0b79\u0001\u0000\u0000\u0000\u0b79Ǔ\u0001\u0000\u0000\u0000\u0b7a\u0b7b\u0005?\u0000\u0000\u0b7b\u0b7d\u0005ģ\u0000\u0000\u0b7c\u0b7e\u0003Ī•\u0000\u0b7d\u0b7c\u0001\u0000\u0000\u0000\u0b7d\u0b7e\u0001\u0000\u0000\u0000\u0b7eǕ\u0001\u0000\u0000\u0000\u0b7f\u0b80\u0005Ĉ\u0000\u0000\u0b80ஂ\u0003Ǡð\u0000\u0b81ஃ\u0003Ī•\u0000ஂ\u0b81\u0001\u0000\u0000\u0000ஂஃ\u0001\u0000\u0000\u0000ஃǗ\u0001\u0000\u0000\u0000\u0b84ஆ\u0005\u0012\u0000\u0000அ\u0b84\u0001\u0000\u0000\u0000அஆ\u0001\u0000\u0000\u0000ஆஇ\u0001\u0000\u0000\u0000இஉ\u0003Ǡð\u0000ஈஊ\u0003Ǟï\u0000உஈ\u0001\u0000\u0000\u0000உஊ\u0001\u0000\u0000\u0000ஊ\u0b8c\u0001\u0000\u0000\u0000\u0b8b\u0b8d\u0003Ī•\u0000\u0b8c\u0b8b\u0001\u0000\u0000\u0000\u0b8c\u0b8d\u0001\u0000\u0000\u0000\u0b8dǙ\u0001\u0000\u0000\u0000எஏ\u0007)\u0000\u0000ஏஐ\u0003ƖË\u0000ஐஒ\u0003Ǡð\u0000\u0b91ஓ\u0003Ǟï\u0000ஒ\u0b91\u0001\u0000\u0000\u0000ஒஓ\u0001\u0000\u0000\u0000ஓக\u0001\u0000\u0000\u0000ஔ\u0b96\u0003Ī•\u0000கஔ\u0001\u0000\u0000\u0000க\u0b96\u0001\u0000\u0000\u0000\u0b96Ǜ\u0001\u0000\u0000\u0000\u0b97ங\u0007-\u0000\u0000\u0b98ச\u0003ƔÊ\u0000ங\u0b98\u0001\u0000\u0000\u0000ஙச\u0001\u0000\u0000\u0000ச\u0b9b\u0001\u0000\u0000\u0000\u0b9b\u0b9d\u0003Ǡð\u0000ஜஞ\u0003Ǟï\u0000\u0b9dஜ\u0001\u0000\u0000\u0000\u0b9dஞ\u0001\u0000\u0000\u0000ஞ\u0ba0\u0001\u0000\u0000\u0000ட\u0ba1\u0003Ī•" -+ "\u0000\u0ba0ட\u0001\u0000\u0000\u0000\u0ba0\u0ba1\u0001\u0000\u0000\u0000\u0ba1ǝ\u0001\u0000\u0000\u0000\u0ba2த\u0005\u0017\u0000\u0000ண\u0ba5\u0005ê\u0000\u0000தண\u0001\u0000\u0000\u0000த\u0ba5\u0001\u0000\u0000\u0000\u0ba5\u0ba6\u0001\u0000\u0000\u0000\u0ba6\u0ba7\u00071\u0000\u0000\u0ba7ǟ\u0001\u0000\u0000\u0000நன\u00072\u0000\u0000னǡ\u0001\u0000\u0000\u0000பஷ\u0003Ǥò\u0000\u0babஷ\u0003Ǫõ\u0000\u0bacஷ\u0003ȄĂ\u0000\u0badஷ\u0003Ȇă\u0000மஷ\u0003Ƕû\u0000யஷ\u0003Ǹü\u0000ரஷ\u0003Ȧē\u0000றஷ\u0003ȤĒ\u0000லஷ\u0003ȀĀ\u0000ளஷ\u0003Ǽþ\u0000ழஷ\u0003Ǻý\u0000வஷ\u0003Ȃā\u0000ஶப\u0001\u0000\u0000\u0000ஶ\u0bab\u0001\u0000\u0000\u0000ஶ\u0bac\u0001\u0000\u0000\u0000ஶ\u0bad\u0001\u0000\u0000\u0000ஶம\u0001\u0000\u0000\u0000ஶய\u0001\u0000\u0000\u0000ஶர\u0001\u0000\u0000\u0000ஶற\u0001\u0000\u0000\u0000ஶல\u0001\u0000\u0000\u0000ஶள\u0001\u0000\u0000\u0000ஶழ\u0001\u0000\u0000\u0000ஶவ\u0001\u0000\u0000\u0000ஷǣ\u0001\u0000\u0000\u0000ஸ\u0bba\u0005\u0012\u0000\u0000ஹ\u0bbb\u0003Ǧó\u0000\u0bbaஹ\u0001\u0000\u0000\u0000\u0bba\u0bbb\u0001\u0000\u0000\u0000\u0bbb\u0bbc\u0001\u0000\u0000\u0000\u0bbc\u0bbd\u0005¹\u0000\u0000\u0bbdா\u0003Ǩô\u0000ாǥ\u0001\u0000\u0000\u0000ிு\u00073\u0000\u0000ீி\u0001\u0000\u0000\u0000ீு\u0001\u0000\u0000\u0000ுூ\u0001\u0000\u0000\u0000ூ\u0bc3\u0005Ï\u0000\u0000\u0bc3ǧ\u0001\u0000\u0000\u0000\u0bc4\u0bc5\u00074\u0000\u0000\u0bc5\u0bd2\u00075\u0000\u0000ெ\u0bc9\u0007+\u0000\u0000ேொ\u0005ď\u0000\u0000ைொ\u0003ɺĽ\u0000\u0bc9ே\u0001\u0000\u0000\u0000\u0bc9ை\u0001\u0000\u0000\u0000ொ\u0bd2\u0001\u0000\u0000\u0000ோ\u0bce\u00076\u0000\u0000ௌ\u0bcf\u0005ď\u0000\u0000்\u0bcf\u0003ɺĽ\u0000\u0bceௌ\u0001\u0000\u0000\u0000\u0bce்\u0001\u0000\u0000\u0000\u0bcf\u0bd2\u0001\u0000\u0000\u0000ௐ\u0bd2\u0005E\u0000\u0000\u0bd1\u0bc4\u0001\u0000\u0000\u0000\u0bd1ெ\u0001\u0000\u0000\u0000\u0bd1ோ\u0001\u0000\u0000\u0000\u0bd1ௐ\u0001\u0000\u0000\u0000\u0bd2ǩ\u0001\u0000\u0000\u0000\u0bd3\u0be0\u0005=\u0000\u0000\u0bd4\u0bd5\u0003Ǭö\u0000\u0bd5\u0bd6\u0005¹\u0000\u0000\u0bd6ௗ\u0003ȸĜ\u0000ௗ\u0be1\u0001\u0000\u0000\u0000\u0bd8\u0bd9\u0003Ǵú\u0000\u0bd9\u0bda\u0005¹\u0000\u0000\u0bda\u0bdb\u0005E\u0000\u0000\u0bdb\u0be1\u0001\u0000\u0000\u0000\u0bdc\u0bdd\u0005¹\u0000\u0000\u0bdd\u0bde\u0003Ⱥĝ\u0000\u0bde\u0bdf\u0003Ȯė\u0000\u0bdf\u0be1\u0001\u0000\u0000\u0000\u0be0\u0bd4\u0001\u0000\u0000\u0000\u0be0" -+ "\u0bd8\u0001\u0000\u0000\u0000\u0be0\u0bdc\u0001\u0000\u0000\u0000\u0be1ǫ\u0001\u0000\u0000\u0000\u0be2௨\u0003Ȏć\u0000\u0be3௨\u0003ȐĈ\u0000\u0be4௨\u0003Ǯ÷\u0000\u0be5௨\u0003ǰø\u0000௦௨\u0003Dzù\u0000௧\u0be2\u0001\u0000\u0000\u0000௧\u0be3\u0001\u0000\u0000\u0000௧\u0be4\u0001\u0000\u0000\u0000௧\u0be5\u0001\u0000\u0000\u0000௧௦\u0001\u0000\u0000\u0000௨ǭ\u0001\u0000\u0000\u0000௩௫\u0005¬\u0000\u0000௪௬\u0005­\u0000\u0000௫௪\u0001\u0000\u0000\u0000௫௬\u0001\u0000\u0000\u0000௬௭\u0001\u0000\u0000\u0000௭௮\u00077\u0000\u0000௮ǯ\u0001\u0000\u0000\u0000௯௱\u0005¬\u0000\u0000௰௲\u0005à\u0000\u0000௱௰\u0001\u0000\u0000\u0000௱௲\u0001\u0000\u0000\u0000௲௳\u0001\u0000\u0000\u0000௳௴\u00078\u0000\u0000௴DZ\u0001\u0000\u0000\u0000௵௷\u0005¬\u0000\u0000௶௸\u0005Ó\u0000\u0000௷௶\u0001\u0000\u0000\u0000௷௸\u0001\u0000\u0000\u0000௸௹\u0001\u0000\u0000\u0000௹௺\u00079\u0000\u0000௺dz\u0001\u0000\u0000\u0000\u0bfbః\u0005\u000f\u0000\u0000\u0bfc\u0bfe\u00055\u0000\u0000\u0bfd\u0bfc\u0001\u0000\u0000\u0000\u0bfd\u0bfe\u0001\u0000\u0000\u0000\u0bfe\u0bff\u0001\u0000\u0000\u0000\u0bffః\u0005A\u0000\u0000ఀః\u0005ë\u0000\u0000ఁః\u0005ģ\u0000\u0000ం\u0bfb\u0001\u0000\u0000\u0000ం\u0bfd\u0001\u0000\u0000\u0000ంఀ\u0001\u0000\u0000\u0000ంఁ\u0001\u0000\u0000\u0000ఃǵ\u0001\u0000\u0000\u0000ఄఐ\u0005W\u0000\u0000అఈ\u0003Ȏć\u0000ఆఈ\u0003ȐĈ\u0000ఇఅ\u0001\u0000\u0000\u0000ఇఆ\u0001\u0000\u0000\u0000ఈఉ\u0001\u0000\u0000\u0000ఉఊ\u0005¹\u0000\u0000ఊఋ\u0003ȸĜ\u0000ఋ\u0c11\u0001\u0000\u0000\u0000ఌ\u0c0d\u0003Ǵú\u0000\u0c0dఎ\u0005¹\u0000\u0000ఎఏ\u0005E\u0000\u0000ఏ\u0c11\u0001\u0000\u0000\u0000ఐఇ\u0001\u0000\u0000\u0000ఐఌ\u0001\u0000\u0000\u0000\u0c11Ƿ\u0001\u0000\u0000\u0000ఒఓ\u0005˜\u0000\u0000ఓఘ\u0005¹\u0000\u0000ఔక\u0007:\u0000\u0000కఙ\u0003ʈń\u0000ఖగ\u0005\u0012\u0000\u0000గఙ\u0005@\u0000\u0000ఘఔ\u0001\u0000\u0000\u0000ఘఖ\u0001\u0000\u0000\u0000ఙǹ\u0001\u0000\u0000\u0000చళ\u0005ÿ\u0000\u0000ఛఢ\u0003Ȏć\u0000జఢ\u0003ȐĈ\u0000ఝట\u0003Ȓĉ\u0000ఞఠ\u0003ȔĊ\u0000టఞ\u0001\u0000\u0000\u0000టఠ\u0001\u0000\u0000\u0000ఠఢ\u0001\u0000\u0000\u0000డఛ\u0001\u0000\u0000\u0000డజ\u0001\u0000\u0000\u0000డఝ\u0001\u0000\u0000\u0000ఢణ\u0001\u0000\u0000\u0000ణత\u0005" -+ "¹\u0000\u0000తథ\u0003ȸĜ\u0000థఴ\u0001\u0000\u0000\u0000దర\u0005\u000f\u0000\u0000ధర\u0005Î\u0000\u0000నర\u0005ë\u0000\u0000\u0c29ర\u0005ø\u0000\u0000పర\u0005ù\u0000\u0000ఫబ\u0003ޱ\u0000బభ\u0003Țč\u0000భర\u0001\u0000\u0000\u0000మర\u0005ģ\u0000\u0000యద\u0001\u0000\u0000\u0000యధ\u0001\u0000\u0000\u0000యన\u0001\u0000\u0000\u0000య\u0c29\u0001\u0000\u0000\u0000యప\u0001\u0000\u0000\u0000యఫ\u0001\u0000\u0000\u0000యమ\u0001\u0000\u0000\u0000రఱ\u0001\u0000\u0000\u0000ఱల\u0005¹\u0000\u0000లఴ\u0005E\u0000\u0000ళడ\u0001\u0000\u0000\u0000ళయ\u0001\u0000\u0000\u0000ఴǻ\u0001\u0000\u0000\u0000వ\u0c51\u0005ú\u0000\u0000శీ\u0003Ǿÿ\u0000ష\u0c3b\u0005ģ\u0000\u0000స\u0c3c\u0005ą\u0000\u0000హ\u0c3a\u0005~\u0000\u0000\u0c3a\u0c3c\u0005A\u0000\u0000\u0c3bస\u0001\u0000\u0000\u0000\u0c3bహ\u0001\u0000\u0000\u0000\u0c3cీ\u0001\u0000\u0000\u0000ఽా\u0005A\u0000\u0000ాీ\u0005\u000b\u0000\u0000ిశ\u0001\u0000\u0000\u0000ిష\u0001\u0000\u0000\u0000ిఽ\u0001\u0000\u0000\u0000ీు\u0001\u0000\u0000\u0000ుూ\u0005¹\u0000\u0000ూ\u0c52\u0005E\u0000\u0000ృౄ\u0005Ž\u0000\u0000ౄ\u0c45\u0003ȨĔ\u0000\u0c45ె\u0005¹\u0000\u0000ెే\u0003Ⱥĝ\u0000ే\u0c52\u0001\u0000\u0000\u0000ై\u0c49\u0005Ó\u0000\u0000\u0c49ొ\u0003Ȫĕ\u0000ొో\u0005¹\u0000\u0000ోౌ\u0003Ⱥĝ\u0000ౌ్\u0003Ȯė\u0000్\u0c52\u0001\u0000\u0000\u0000\u0c4e\u0c4f\u0005\u001d\u0000\u0000\u0c4f\u0c50\u0005¹\u0000\u0000\u0c50\u0c52\u0005E\u0000\u0000\u0c51ి\u0001\u0000\u0000\u0000\u0c51ృ\u0001\u0000\u0000\u0000\u0c51ై\u0001\u0000\u0000\u0000\u0c51\u0c4e\u0001\u0000\u0000\u0000\u0c52ǽ\u0001\u0000\u0000\u0000\u0c53\u0c54\u0007;\u0000\u0000\u0c54ǿ\u0001\u0000\u0000\u0000ౕ\u0c5e\u0005â\u0000\u0000ౖ\u0c57\u0007<\u0000\u0000\u0c57ౘ\u0005¹\u0000\u0000ౘ\u0c5f\u0005E\u0000\u0000ౙౚ\u0005Ž\u0000\u0000ౚ\u0c5b\u0003ȨĔ\u0000\u0c5b\u0c5c\u0005¹\u0000\u0000\u0c5c\u0c5d\u0003Ⱥĝ\u0000\u0c5d\u0c5f\u0001\u0000\u0000\u0000\u0c5eౖ\u0001\u0000\u0000\u0000\u0c5eౙ\u0001\u0000\u0000\u0000\u0c5fȁ\u0001\u0000\u0000\u0000ౠౡ\u0005İ\u0000\u0000ౡౢ\u0005¹\u0000\u0000ౢౣ\u0003Ⱥĝ\u0000ౣȃ\u0001\u0000\u0000\u0000\u0c64౻\u0005\u000b\u0000\u0000\u0c65౻\u0005ă\u0000\u0000౦౻\u0005Ć\u0000\u0000౧౫\u0003Ȏć\u0000౨౫\u0003ȐĈ\u0000౩౫\u0005¥\u0000\u0000౪౧\u0001\u0000\u0000" -+ "\u0000౪౨\u0001\u0000\u0000\u0000౪౩\u0001\u0000\u0000\u0000౫౭\u0001\u0000\u0000\u0000౬౮\u0005\u0000\u0000౭౬\u0001\u0000\u0000\u0000౭౮\u0001\u0000\u0000\u0000౮౻\u0001\u0000\u0000\u0000౯\u0c71\u0005ĕ\u0000\u0000\u0c70\u0c72\u0005\u0000\u0000\u0c71\u0c70\u0001\u0000\u0000\u0000\u0c71\u0c72\u0001\u0000\u0000\u0000\u0c72\u0c76\u0001\u0000\u0000\u0000\u0c73\u0c74\u0005ċ\u0000\u0000\u0c74\u0c76\u0003Ȓĉ\u0000\u0c75౯\u0001\u0000\u0000\u0000\u0c75\u0c73\u0001\u0000\u0000\u0000\u0c76౸\u0001\u0000\u0000\u0000౷౹\u0003ȔĊ\u0000౸౷\u0001\u0000\u0000\u0000౸౹\u0001\u0000\u0000\u0000౹౻\u0001\u0000\u0000\u0000౺\u0c64\u0001\u0000\u0000\u0000౺\u0c65\u0001\u0000\u0000\u0000౺౦\u0001\u0000\u0000\u0000౺౪\u0001\u0000\u0000\u0000౺\u0c75\u0001\u0000\u0000\u0000౻౼\u0001\u0000\u0000\u0000౼౽\u0005¹\u0000\u0000౽౾\u0003ȸĜ\u0000౾ȅ\u0001\u0000\u0000\u0000౿ಀ\u0005\u0013\u0000\u0000ಀಗ\u0007=\u0000\u0000ಁಂ\u0005\u001b\u0000\u0000ಂಗ\u0007<\u0000\u0000ಃ\u0c8d\u0005\u000f\u0000\u0000಄ಆ\u00055\u0000\u0000ಅ಄\u0001\u0000\u0000\u0000ಅಆ\u0001\u0000\u0000\u0000ಆಇ\u0001\u0000\u0000\u0000ಇ\u0c8d\u0005A\u0000\u0000ಈ\u0c8d\u0005Î\u0000\u0000ಉ\u0c8d\u0005ë\u0000\u0000ಊ\u0c8d\u0005ø\u0000\u0000ಋ\u0c8d\u0005ģ\u0000\u0000ಌಃ\u0001\u0000\u0000\u0000ಌಅ\u0001\u0000\u0000\u0000ಌಈ\u0001\u0000\u0000\u0000ಌಉ\u0001\u0000\u0000\u0000ಌಊ\u0001\u0000\u0000\u0000ಌಋ\u0001\u0000\u0000\u0000\u0c8dಎ\u0001\u0000\u0000\u0000ಎಗ\u0005\u0000\u0000ಏಗ\u0003ȈĄ\u0000ಐ\u0c91\u0005Ý\u0000\u0000\u0c91ಗ\u0007>\u0000\u0000ಒಔ\u0005\u0000\u0000ಓಕ\u0003ȔĊ\u0000ಔಓ\u0001\u0000\u0000\u0000ಔಕ\u0001\u0000\u0000\u0000ಕಗ\u0001\u0000\u0000\u0000ಖ౿\u0001\u0000\u0000\u0000ಖಁ\u0001\u0000\u0000\u0000ಖಌ\u0001\u0000\u0000\u0000ಖಏ\u0001\u0000\u0000\u0000ಖಐ\u0001\u0000\u0000\u0000ಖಒ\u0001\u0000\u0000\u0000ಗಘ\u0001\u0000\u0000\u0000ಘಙ\u0005¹\u0000\u0000ಙಚ\u0005E\u0000\u0000ಚȇ\u0001\u0000\u0000\u0000ಛರ\u0005f\u0000\u0000ಜಝ\u0003Ȋą\u0000ಝಞ\u0005Ñ\u0000\u0000ಞಱ\u0001\u0000\u0000\u0000ಟಡ\u0005\"\u0000\u0000ಠಟ\u0001\u0000\u0000\u0000ಠಡ\u0001\u0000\u0000\u0000ಡಮ\u0001\u0000\u0000\u0000ಢಣ\u0003ȌĆ\u0000ಣತ\u0003ȘČ\u0000ತಯ\u0001\u0000\u0000\u0000ಥಧ\u0005ģ\u0000\u0000ದನ\u0005H\u0000\u0000ಧದ\u0001\u0000\u0000\u0000ಧನ\u0001\u0000\u0000\u0000ನ" -+ "ಪ\u0001\u0000\u0000\u0000\u0ca9ಥ\u0001\u0000\u0000\u0000\u0ca9ಪ\u0001\u0000\u0000\u0000ಪಫ\u0001\u0000\u0000\u0000ಫಬ\u0003Ŗ«\u0000ಬಭ\u0003Ȗċ\u0000ಭಯ\u0001\u0000\u0000\u0000ಮಢ\u0001\u0000\u0000\u0000ಮ\u0ca9\u0001\u0000\u0000\u0000ಯಱ\u0001\u0000\u0000\u0000ರಜ\u0001\u0000\u0000\u0000ರಠ\u0001\u0000\u0000\u0000ಱȉ\u0001\u0000\u0000\u0000ಲಳ\u0007?\u0000\u0000ಳȋ\u0001\u0000\u0000\u0000\u0cb4ವ\u0007#\u0000\u0000ವȍ\u0001\u0000\u0000\u0000ಶಷ\u0007@\u0000\u0000ಷȏ\u0001\u0000\u0000\u0000ಸಹ\u0007A\u0000\u0000ಹȑ\u0001\u0000\u0000\u0000\u0cba\u0cbb\u0007B\u0000\u0000\u0cbbȓ\u0001\u0000\u0000\u0000಼ಿ\u0005›\u0000\u0000ಽೀ\u0005ď\u0000\u0000ಾೀ\u0003ƔÊ\u0000ಿಽ\u0001\u0000\u0000\u0000ಿಾ\u0001\u0000\u0000\u0000ೀು\u0001\u0000\u0000\u0000ುೂ\u0005ï\u0000\u0000ೂȕ\u0001\u0000\u0000\u0000ೃೄ\u0003ȜĎ\u0000ೄȗ\u0001\u0000\u0000\u0000\u0cc5ೆ\u0003ȜĎ\u0000ೆș\u0001\u0000\u0000\u0000ೇೈ\u0003ȜĎ\u0000ೈț\u0001\u0000\u0000\u0000\u0cc9\u0cce\u0003Ȟď\u0000ೊೋ\u00051\u0000\u0000ೋ್\u0003Ȟď\u0000ೌೊ\u0001\u0000\u0000\u0000್\u0cd0\u0001\u0000\u0000\u0000\u0cceೌ\u0001\u0000\u0000\u0000\u0cce\u0ccf\u0001\u0000\u0000\u0000\u0ccfȝ\u0001\u0000\u0000\u0000\u0cd0\u0cce\u0001\u0000\u0000\u0000\u0cd1\u0cd3\u0003ʐň\u0000\u0cd2\u0cd4\u0003ȠĐ\u0000\u0cd3\u0cd2\u0001\u0000\u0000\u0000\u0cd3\u0cd4\u0001\u0000\u0000\u0000\u0cd4\u0cd7\u0001\u0000\u0000\u0000ೕ\u0cd7\u0003ȠĐ\u0000ೖ\u0cd1\u0001\u0000\u0000\u0000ೖೕ\u0001\u0000\u0000\u0000\u0cd7ȟ\u0001\u0000\u0000\u0000\u0cd8\u0cda\u0003Ȣđ\u0000\u0cd9\u0cdb\u0003ȠĐ\u0000\u0cda\u0cd9\u0001\u0000\u0000\u0000\u0cda\u0cdb\u0001\u0000\u0000\u0000\u0cdbȡ\u0001\u0000\u0000\u0000\u0cdcೞ\u0005S\u0000\u0000\u0cdd\u0cdf\u0003ʐň\u0000ೞ\u0cdd\u0001\u0000\u0000\u0000ೞ\u0cdf\u0001\u0000\u0000\u0000\u0cdf\u0ce4\u0001\u0000\u0000\u0000ೠ\u0ce4\u0005Ö\u0000\u0000ೡ\u0ce4\u0005ď\u0000\u0000ೢ\u0ce4\u0003ʒʼn\u0000ೣ\u0cdc\u0001\u0000\u0000\u0000ೣೠ\u0001\u0000\u0000\u0000ೣೡ\u0001\u0000\u0000\u0000ೣೢ\u0001\u0000\u0000\u0000\u0ce4ȣ\u0001\u0000\u0000\u0000\u0ce5೩\u0005ė\u0000\u0000೦೧\u0007C\u0000\u0000೧೩\u0003Ȫĕ\u0000೨\u0ce5\u0001\u0000\u0000\u0000೨೦\u0001\u0000\u0000\u0000೩೪\u0001\u0000\u0000\u0000೪೫\u0005¹\u0000\u0000೫೬\u0003Ⱥĝ\u0000೬\u0cf0\u0003Ȯė\u0000೭೮\u0005›\u0000\u0000೮೯\u0005ď\u0000\u0000೯ೱ\u0005ï\u0000\u0000\u0cf0೭\u0001" -+ "\u0000\u0000\u0000\u0cf0ೱ\u0001\u0000\u0000\u0000ೱȥ\u0001\u0000\u0000\u0000ೲ\u0cf6\u0005I\u0000\u0000\u0cf3\u0cf4\u0005 \u0000\u0000\u0cf4\u0cf6\u0003Ȫĕ\u0000\u0cf5ೲ\u0001\u0000\u0000\u0000\u0cf5\u0cf3\u0001\u0000\u0000\u0000\u0cf6\u0cf7\u0001\u0000\u0000\u0000\u0cf7\u0cf8\u0005¹\u0000\u0000\u0cf8\u0cf9\u0003Ⱥĝ\u0000\u0cf9\u0cfa\u0003Ȯė\u0000\u0cfaȧ\u0001\u0000\u0000\u0000\u0cfb\u0cfe\u0005ď\u0000\u0000\u0cfc\u0cfe\u0003ȬĖ\u0000\u0cfd\u0cfb\u0001\u0000\u0000\u0000\u0cfd\u0cfc\u0001\u0000\u0000\u0000\u0cfeȩ\u0001\u0000\u0000\u0000\u0cffം\u0005“\u0000\u0000ഀഃ\u0005ď\u0000\u0000ഁഃ\u0003ȬĖ\u0000ംഀ\u0001\u0000\u0000\u0000ംഁ\u0001\u0000\u0000\u0000ഃഄ\u0001\u0000\u0000\u0000ഄഅ\u0005Ù\u0000\u0000അȫ\u0001\u0000\u0000\u0000ആഋ\u0003ʎŇ\u0000ഇഈ\u00051\u0000\u0000ഈഊ\u0003ʎŇ\u0000ഉഇ\u0001\u0000\u0000\u0000ഊ\u0d0d\u0001\u0000\u0000\u0000ഋഉ\u0001\u0000\u0000\u0000ഋഌ\u0001\u0000\u0000\u0000ഌȭ\u0001\u0000\u0000\u0000\u0d0dഋ\u0001\u0000\u0000\u0000എ\u0d11\u0003ȰĘ\u0000ഏഒ\u0005ď\u0000\u0000ഐഒ\u0003ȬĖ\u0000\u0d11ഏ\u0001\u0000\u0000\u0000\u0d11ഐ\u0001\u0000\u0000\u0000ഒര\u0001\u0000\u0000\u0000ഓഔ\u0005p\u0000\u0000ഔഖ\u0005›\u0000\u0000കഗ\u0003ĔŠ\u0000ഖക\u0001\u0000\u0000\u0000ഖഗ\u0001\u0000\u0000\u0000ഗഡ\u0001\u0000\u0000\u0000ഘങ\u0005/\u0000\u0000ങഞ\u0003ʎŇ\u0000ചഛ\u0005\u001e\u0000\u0000ഛഝ\u0003ʎŇ\u0000ജച\u0001\u0000\u0000\u0000ഝഠ\u0001\u0000\u0000\u0000ഞജ\u0001\u0000\u0000\u0000ഞട\u0001\u0000\u0000\u0000ടഢ\u0001\u0000\u0000\u0000ഠഞ\u0001\u0000\u0000\u0000ഡഘ\u0001\u0000\u0000\u0000ഡഢ\u0001\u0000\u0000\u0000ഢഭ\u0001\u0000\u0000\u0000ണത\u0005ï\u0000\u0000തഥ\u0005ĭ\u0000\u0000ഥമ\u0003°X\u0000ദധ\u0005ĭ\u0000\u0000ധപ\u0003°X\u0000നപ\u0003ʌņ\u0000ഩദ\u0001\u0000\u0000\u0000ഩന\u0001\u0000\u0000\u0000പഫ\u0001\u0000\u0000\u0000ഫബ\u0005ï\u0000\u0000ബമ\u0001\u0000\u0000\u0000ഭണ\u0001\u0000\u0000\u0000ഭഩ\u0001\u0000\u0000\u0000മര\u0001\u0000\u0000\u0000യഎ\u0001\u0000\u0000\u0000യഓ\u0001\u0000\u0000\u0000യര\u0001\u0000\u0000\u0000രȯ\u0001\u0000\u0000\u0000റവ\u0003Ȳę\u0000ലവ\u0003ȶě\u0000ളവ\u0003ȴĚ\u0000ഴറ\u0001\u0000\u0000\u0000ഴല\u0001\u0000\u0000\u0000ഴള\u0001\u0000\u0000\u0000വȱ\u0001\u0000\u0000\u0000ശഷ\u0007D\u0000" -+ "\u0000ഷȳ\u0001\u0000\u0000\u0000സഹ\u0007E\u0000\u0000ഹȵ\u0001\u0000\u0000\u0000ഺ഻\u0007F\u0000\u0000഻ȷ\u0001\u0000\u0000\u0000഼ഽ\u00074\u0000\u0000ഽൄ\u0005A\u0000\u0000ാു\u0007+\u0000\u0000ിൂ\u0005ď\u0000\u0000ീൂ\u0003ɺĽ\u0000ുി\u0001\u0000\u0000\u0000ുീ\u0001\u0000\u0000\u0000ൂൄ\u0001\u0000\u0000\u0000ൃ഼\u0001\u0000\u0000\u0000ൃാ\u0001\u0000\u0000\u0000ൄȹ\u0001\u0000\u0000\u0000\u0d45െ\u00074\u0000\u0000െ്\u0005x\u0000\u0000േൊ\u00076\u0000\u0000ൈോ\u0005ď\u0000\u0000\u0d49ോ\u0003ɺĽ\u0000ൊൈ\u0001\u0000\u0000\u0000ൊ\u0d49\u0001\u0000\u0000\u0000ോ്\u0001\u0000\u0000\u0000ൌ\u0d45\u0001\u0000\u0000\u0000ൌേ\u0001\u0000\u0000\u0000്Ȼ\u0001\u0000\u0000\u0000ൎ൏\u00055\u0000\u0000൏\u0d50\u0005A\u0000\u0000\u0d50ൔ\u0003ɼľ\u0000\u0d51\u0d52\u0005€\u0000\u0000\u0d52\u0d53\u0005³\u0000\u0000\u0d53ൕ\u0005i\u0000\u0000ൔ\u0d51\u0001\u0000\u0000\u0000ൔൕ\u0001\u0000\u0000\u0000ൕൗ\u0001\u0000\u0000\u0000ൖ൘\u0003Ĵš\u0000ൗൖ\u0001\u0000\u0000\u0000ൗ൘\u0001\u0000\u0000\u0000൘൚\u0001\u0000\u0000\u0000൙൛\u0003ɘĬ\u0000൚൙\u0001\u0000\u0000\u0000൚൛\u0001\u0000\u0000\u0000൛Ƚ\u0001\u0000\u0000\u0000൜൝\u0005A\u0000\u0000൝ൡ\u0003ɼľ\u0000൞ൟ\u0005€\u0000\u0000ൟൠ\u0005³\u0000\u0000ൠൢ\u0005i\u0000\u0000ൡ൞\u0001\u0000\u0000\u0000ൡൢ\u0001\u0000\u0000\u0000ൢ൪\u0001\u0000\u0000\u0000ൣ൦\u0005ē\u0000\u0000\u0d64൧\u0003ɀĠ\u0000\u0d65൧\u0003ɄĢ\u0000൦\u0d64\u0001\u0000\u0000\u0000൦\u0d65\u0001\u0000\u0000\u0000൧൨\u0001\u0000\u0000\u0000൨൦\u0001\u0000\u0000\u0000൨൩\u0001\u0000\u0000\u0000൩൫\u0001\u0000\u0000\u0000൪ൣ\u0001\u0000\u0000\u0000൪൫\u0001\u0000\u0000\u0000൫൭\u0001\u0000\u0000\u0000൬൮\u0003Ĵš\u0000൭൬\u0001\u0000\u0000\u0000൭൮\u0001\u0000\u0000\u0000൮൰\u0001\u0000\u0000\u0000൯൱\u0003ɘĬ\u0000൰൯\u0001\u0000\u0000\u0000൰൱\u0001\u0000\u0000\u0000൱ȿ\u0001\u0000\u0000\u0000൲൳\u0005\u0005\u0000\u0000൳൴\u0003ɂġ\u0000൴Ɂ\u0001\u0000\u0000\u0000൵൶\u0007G\u0000\u0000൶Ƀ\u0001\u0000\u0000\u0000൷൸\u0005\u0005\u0000\u0000൸൹\u0003Ɇģ\u0000൹Ʌ\u0001\u0000\u0000\u0000ൺൻ\u0007H\u0000\u0000ൻɇ\u0001\u0000\u0000\u0000ർൾ\u00055\u0000\u0000ൽർ\u0001\u0000\u0000\u0000ൽൾ\u0001\u0000\u0000\u0000ൾ" -+ "ൿ\u0001\u0000\u0000\u0000ൿ\u0d80\u0005A\u0000\u0000\u0d80ඃ\u0003ɼľ\u0000ඁං\u0005€\u0000\u0000ං\u0d84\u0005i\u0000\u0000ඃඁ\u0001\u0000\u0000\u0000ඃ\u0d84\u0001\u0000\u0000\u0000\u0d84ආ\u0001\u0000\u0000\u0000අඇ\u0003Ɋĥ\u0000ආඅ\u0001\u0000\u0000\u0000ආඇ\u0001\u0000\u0000\u0000ඇඊ\u0001\u0000\u0000\u0000ඈඉ\u0007I\u0000\u0000ඉඋ\u0005@\u0000\u0000ඊඈ\u0001\u0000\u0000\u0000ඊඋ\u0001\u0000\u0000\u0000උඍ\u0001\u0000\u0000\u0000ඌඎ\u0003ɘĬ\u0000ඍඌ\u0001\u0000\u0000\u0000ඍඎ\u0001\u0000\u0000\u0000ඎɉ\u0001\u0000\u0000\u0000ඏඓ\u0005è\u0000\u0000ඐඑ\u0005*\u0000\u0000එඓ\u0007J\u0000\u0000ඒඏ\u0001\u0000\u0000\u0000ඒඐ\u0001\u0000\u0000\u0000ඓɋ\u0001\u0000\u0000\u0000ඔඕ\u0005A\u0000\u0000ඕ\u0d98\u0003ɼľ\u0000ඖ\u0d97\u0005€\u0000\u0000\u0d97\u0d99\u0005i\u0000\u0000\u0d98ඖ\u0001\u0000\u0000\u0000\u0d98\u0d99\u0001\u0000\u0000\u0000\u0d99ණ\u0001\u0000\u0000\u0000කඞ\u0005ú\u0000\u0000ඛඟ\u0003Ɏħ\u0000ගඟ\u0003ɐĨ\u0000ඝඟ\u0003ɒĩ\u0000ඞඛ\u0001\u0000\u0000\u0000ඞග\u0001\u0000\u0000\u0000ඞඝ\u0001\u0000\u0000\u0000ඟඡ\u0001\u0000\u0000\u0000චක\u0001\u0000\u0000\u0000ඡජ\u0001\u0000\u0000\u0000ජච\u0001\u0000\u0000\u0000ජඣ\u0001\u0000\u0000\u0000ඣඬ\u0001\u0000\u0000\u0000ඤඥ\u0005â\u0000\u0000ඥඦ\u0005½\u0000\u0000ඦඨ\u0003ʎŇ\u0000ටඤ\u0001\u0000\u0000\u0000ඨඩ\u0001\u0000\u0000\u0000ඩට\u0001\u0000\u0000\u0000ඩඪ\u0001\u0000\u0000\u0000ඪඬ\u0001\u0000\u0000\u0000ණච\u0001\u0000\u0000\u0000ණට\u0001\u0000\u0000\u0000ඬථ\u0001\u0000\u0000\u0000තද\u0003ɘĬ\u0000ථත\u0001\u0000\u0000\u0000ථද\u0001\u0000\u0000\u0000දɍ\u0001\u0000\u0000\u0000ධන\u0005\u000b\u0000\u0000න\u0db2\u0005Ú\u0000\u0000\u0db2ඳ\u0007K\u0000\u0000ඳɏ\u0001\u0000\u0000\u0000පභ\u0005ē\u0000\u0000ඵම\u0003ɀĠ\u0000බම\u0003ɄĢ\u0000භඵ\u0001\u0000\u0000\u0000භබ\u0001\u0000\u0000\u0000මඹ\u0001\u0000\u0000\u0000ඹභ\u0001\u0000\u0000\u0000ඹය\u0001\u0000\u0000\u0000යɑ\u0001\u0000\u0000\u0000ර\u0dbc\u0005½\u0000\u0000\u0dbcල\u0003ʎŇ\u0000ල\u0dbe\u0003°X\u0000\u0dbeɓ\u0001\u0000\u0000\u0000\u0dbfව\u0005ă\u0000\u0000වශ\u0005A\u0000\u0000ශස\u0003ɼľ\u0000ෂහ\u0003ɘĬ\u0000සෂ\u0001\u0000\u0000\u0000සහ\u0001\u0000\u0000\u0000හɕ\u0001" -+ "\u0000\u0000\u0000ළෆ\u0005Ć\u0000\u0000ෆ\u0dc7\u0005A\u0000\u0000\u0dc7\u0dc9\u0003ɼľ\u0000\u0dc8්\u0003ɘĬ\u0000\u0dc9\u0dc8\u0001\u0000\u0000\u0000\u0dc9්\u0001\u0000\u0000\u0000්ɗ\u0001\u0000\u0000\u0000\u0dcbැ\u0005ī\u0000\u0000\u0dcc\u0dce\u0005\u0005\u0000\u0000\u0dcdා\u0003ɚĭ\u0000\u0dce\u0dcd\u0001\u0000\u0000\u0000\u0dceා\u0001\u0000\u0000\u0000ාෑ\u0001\u0000\u0000\u0000ැ\u0dcc\u0001\u0000\u0000\u0000ැෑ\u0001\u0000\u0000\u0000ෑු\u0001\u0000\u0000\u0000ිු\u0005µ\u0000\u0000ී\u0dcb\u0001\u0000\u0000\u0000ීි\u0001\u0000\u0000\u0000ුə\u0001\u0000\u0000\u0000\u0dd5ූ\u0007L\u0000\u0000ූɛ\u0001\u0000\u0000\u0000\u0dd7ෘ\u00074\u0000\u0000ෘේ\u0005A\u0000\u0000ෙෛ\u0003Ī•\u0000ේෙ\u0001\u0000\u0000\u0000ේෛ\u0001\u0000\u0000\u0000ෛ\u0de4\u0001\u0000\u0000\u0000ොෞ\u0007+\u0000\u0000ෝෟ\u0003ɼľ\u0000ෞෝ\u0001\u0000\u0000\u0000ෞෟ\u0001\u0000\u0000\u0000ෟ\u0de1\u0001\u0000\u0000\u0000\u0de0\u0de2\u0003Ī•\u0000\u0de1\u0de0\u0001\u0000\u0000\u0000\u0de1\u0de2\u0001\u0000\u0000\u0000\u0de2\u0de4\u0001\u0000\u0000\u0000\u0de3\u0dd7\u0001\u0000\u0000\u0000\u0de3ො\u0001\u0000\u0000\u0000\u0de4ɝ\u0001\u0000\u0000\u0000\u0de5෦\u0003ɼľ\u0000෦ɟ\u0001\u0000\u0000\u0000෧෨\u0003ɼľ\u0000෨ɡ\u0001\u0000\u0000\u0000෩෪\u0005\u000f\u0000\u0000෪෮\u0003ɞį\u0000෫෬\u0005€\u0000\u0000෬෭\u0005³\u0000\u0000෭෯\u0005i\u0000\u0000෮෫\u0001\u0000\u0000\u0000෮෯\u0001\u0000\u0000\u0000෯\u0df0\u0001\u0000\u0000\u0000\u0df0\u0df1\u0005p\u0000\u0000\u0df1ෲ\u0005A\u0000\u0000ෲ\u0dfd\u0003ɠİ\u0000ෳ෴\u0005\u001c\u0000\u0000෴\u0df5\u0003ʈń\u0000\u0df5\u0df6\u0005ģ\u0000\u0000\u0df6\u0df7\u0003ɶĻ\u0000\u0df7\u0df8\u0005Á\u0000\u0000\u0df8\u0dfb\u0003džã\u0000\u0df9\u0dfa\u0005V\u0000\u0000\u0dfa\u0dfc\u0003ʊŅ\u0000\u0dfb\u0df9\u0001\u0000\u0000\u0000\u0dfb\u0dfc\u0001\u0000\u0000\u0000\u0dfc\u0dfe\u0001\u0000\u0000\u0000\u0dfdෳ\u0001\u0000\u0000\u0000\u0dfd\u0dfe\u0001\u0000\u0000\u0000\u0dfeก\u0001\u0000\u0000\u0000\u0dff\u0e00\u0005Ò\u0000\u0000\u0e00ข\u0003ʊŅ\u0000ก\u0dff\u0001\u0000\u0000\u0000กข\u0001\u0000\u0000\u0000ขɣ\u0001\u0000\u0000\u0000ฃค\u0005\u000f\u0000\u0000คง\u0003ɞį\u0000ฅฆ\u0005€\u0000\u0000ฆจ\u0005i\u0000\u0000งฅ\u0001\u0000\u0000\u0000งจ\u0001\u0000\u0000\u0000จฉ\u0001\u0000\u0000\u0000ฉช\u0005p\u0000\u0000ชซ\u0005A\u0000\u0000ซɥ\u0001\u0000\u0000\u0000ฌญ\u0005\u000f\u0000" -+ "\u0000ญฐ\u0003ɞį\u0000ฎฏ\u0005€\u0000\u0000ฏฑ\u0005i\u0000\u0000ฐฎ\u0001\u0000\u0000\u0000ฐฑ\u0001\u0000\u0000\u0000ฑฒ\u0001\u0000\u0000\u0000ฒณ\u0005ú\u0000\u0000ณน\u0005A\u0000\u0000ดบ\u0003ɨĴ\u0000ตบ\u0003ɪĵ\u0000ถบ\u0003ɬĶ\u0000ทบ\u0003ɮķ\u0000ธบ\u0003ɰĸ\u0000นด\u0001\u0000\u0000\u0000นต\u0001\u0000\u0000\u0000นถ\u0001\u0000\u0000\u0000นท\u0001\u0000\u0000\u0000นธ\u0001\u0000\u0000\u0000บป\u0001\u0000\u0000\u0000ปน\u0001\u0000\u0000\u0000ปผ\u0001\u0000\u0000\u0000ผɧ\u0001\u0000\u0000\u0000ฝพ\u0005Ċ\u0000\u0000พม\u0003ɠİ\u0000ฟภ\u0005\u001c\u0000\u0000ภย\u0003ʈń\u0000มฟ\u0001\u0000\u0000\u0000มย\u0001\u0000\u0000\u0000ยɩ\u0001\u0000\u0000\u0000รฤ\u0005ģ\u0000\u0000ฤล\u0003ɶĻ\u0000ลɫ\u0001\u0000\u0000\u0000ฦว\u0005Á\u0000\u0000วศ\u0003džã\u0000ศɭ\u0001\u0000\u0000\u0000ษส\u0005V\u0000\u0000สห\u0003ʊŅ\u0000หɯ\u0001\u0000\u0000\u0000ฬอ\u0005Ò\u0000\u0000อฮ\u0003ʊŅ\u0000ฮɱ\u0001\u0000\u0000\u0000ฯั\u0007J\u0000\u0000ะา\u0003ɞį\u0000ัะ\u0001\u0000\u0000\u0000ัา\u0001\u0000\u0000\u0000าำ\u0001\u0000\u0000\u0000ำิ\u0005p\u0000\u0000ิึ\u0007+\u0000\u0000ีื\u0003Ī•\u0000ึี\u0001\u0000\u0000\u0000ึื\u0001\u0000\u0000\u0000ืɳ\u0001\u0000\u0000\u0000ุ\u0e3b\u0003ʎŇ\u0000ู\u0e3b\u0003Ĉ„\u0000ฺุ\u0001\u0000\u0000\u0000ฺู\u0001\u0000\u0000\u0000\u0e3bɵ\u0001\u0000\u0000\u0000\u0e3c฿\u0003ʎŇ\u0000\u0e3d฿\u0003Ĉ„\u0000\u0e3e\u0e3c\u0001\u0000\u0000\u0000\u0e3e\u0e3d\u0001\u0000\u0000\u0000฿ɷ\u0001\u0000\u0000\u0000เๅ\u0003ɶĻ\u0000แโ\u00051\u0000\u0000โไ\u0003ɶĻ\u0000ใแ\u0001\u0000\u0000\u0000ไ็\u0001\u0000\u0000\u0000ๅใ\u0001\u0000\u0000\u0000ๅๆ\u0001\u0000\u0000\u0000ๆɹ\u0001\u0000\u0000\u0000็ๅ\u0001\u0000\u0000\u0000่ํ\u0003ɼľ\u0000้๊\u00051\u0000\u0000๊์\u0003ɼľ\u0000๋้\u0001\u0000\u0000\u0000์๏\u0001\u0000\u0000\u0000ํ๋\u0001\u0000\u0000\u0000ํ๎\u0001\u0000\u0000\u0000๎ɻ\u0001\u0000\u0000\u0000๏ํ\u0001\u0000\u0000\u0000๐๓\u0003ɾĿ\u0000๑๓\u0003Ĉ„\u0000๒๐\u0001\u0000\u0000\u0000๒๑\u0001\u0000\u0000\u0000๓ɽ\u0001\u0000\u0000\u0000๔" -+ "๙\u0003ʎŇ\u0000๕๖\u0005S\u0000\u0000๖๘\u0003ʎŇ\u0000๗๕\u0001\u0000\u0000\u0000๘๛\u0001\u0000\u0000\u0000๙๗\u0001\u0000\u0000\u0000๙๚\u0001\u0000\u0000\u0000๚ɿ\u0001\u0000\u0000\u0000๛๙\u0001\u0000\u0000\u0000\u0e5c\u0e65\u0005’\u0000\u0000\u0e5d\u0e62\u0003ʄł\u0000\u0e5e\u0e5f\u00051\u0000\u0000\u0e5f\u0e61\u0003ʄł\u0000\u0e60\u0e5e\u0001\u0000\u0000\u0000\u0e61\u0e64\u0001\u0000\u0000\u0000\u0e62\u0e60\u0001\u0000\u0000\u0000\u0e62\u0e63\u0001\u0000\u0000\u0000\u0e63\u0e66\u0001\u0000\u0000\u0000\u0e64\u0e62\u0001\u0000\u0000\u0000\u0e65\u0e5d\u0001\u0000\u0000\u0000\u0e65\u0e66\u0001\u0000\u0000\u0000\u0e66\u0e67\u0001\u0000\u0000\u0000\u0e67\u0e68\u0005Ø\u0000\u0000\u0e68ʁ\u0001\u0000\u0000\u0000\u0e69\u0e6c\u0003ʄł\u0000\u0e6a\u0e6b\u00051\u0000\u0000\u0e6b\u0e6d\u0003ʄł\u0000\u0e6c\u0e6a\u0001\u0000\u0000\u0000\u0e6d\u0e6e\u0001\u0000\u0000\u0000\u0e6e\u0e6c\u0001\u0000\u0000\u0000\u0e6e\u0e6f\u0001\u0000\u0000\u0000\u0e6fʃ\u0001\u0000\u0000\u0000\u0e70\u0e71\u0007M\u0000\u0000\u0e71ʅ\u0001\u0000\u0000\u0000\u0e72\u0e75\u0003ʄł\u0000\u0e73\u0e75\u0003Ĉ„\u0000\u0e74\u0e72\u0001\u0000\u0000\u0000\u0e74\u0e73\u0001\u0000\u0000\u0000\u0e75ʇ\u0001\u0000\u0000\u0000\u0e76\u0e79\u0003ʄł\u0000\u0e77\u0e79\u0003Ĉ„\u0000\u0e78\u0e76\u0001\u0000\u0000\u0000\u0e78\u0e77\u0001\u0000\u0000\u0000\u0e79ʉ\u0001\u0000\u0000\u0000\u0e7a\u0e7d\u0003ʌņ\u0000\u0e7b\u0e7d\u0003Ĉ„\u0000\u0e7c\u0e7a\u0001\u0000\u0000\u0000\u0e7c\u0e7b\u0001\u0000\u0000\u0000\u0e7dʋ\u0001\u0000\u0000\u0000\u0e7eຌ\u0005“\u0000\u0000\u0e7f\u0e80\u0003ƃ\u0000\u0e80ກ\u0005/\u0000\u0000ກຉ\u0003°X\u0000ຂ\u0e83\u00051\u0000\u0000\u0e83ຄ\u0003ƃ\u0000ຄ\u0e85\u0005/\u0000\u0000\u0e85ຆ\u0003°X\u0000ຆຈ\u0001\u0000\u0000\u0000ງຂ\u0001\u0000\u0000\u0000ຈ\u0e8b\u0001\u0000\u0000\u0000ຉງ\u0001\u0000\u0000\u0000ຉຊ\u0001\u0000\u0000\u0000ຊຍ\u0001\u0000\u0000\u0000\u0e8bຉ\u0001\u0000\u0000\u0000ຌ\u0e7f\u0001\u0000\u0000\u0000ຌຍ\u0001\u0000\u0000\u0000ຍຎ\u0001\u0000\u0000\u0000ຎຏ\u0005Ù\u0000\u0000ຏʍ\u0001\u0000\u0000\u0000ຐຓ\u0003ʐň\u0000ຑຓ\u0003ʒʼn\u0000ຒຐ\u0001\u0000\u0000\u0000ຒຑ\u0001\u0000\u0000\u0000ຓʏ\u0001\u0000\u0000\u0000ດຕ\u0005\n\u0000\u0000ຕʑ\u0001\u0000\u0000\u0000ຖຠ\u0003ʖŋ\u0000ທຠ\u0005³\u0000\u0000ຘຠ\u0005¶\u0000\u0000ນຠ\u0005ě\u0000\u0000ບຠ\u0005²\u0000\u0000ປຠ\u0005¨\u0000\u0000ຜຠ\u0005©\u0000\u0000ຝຠ\u0005ª\u0000\u0000ພຠ\u0005«\u0000\u0000ຟຖ\u0001" -+ "\u0000\u0000\u0000ຟທ\u0001\u0000\u0000\u0000ຟຘ\u0001\u0000\u0000\u0000ຟນ\u0001\u0000\u0000\u0000ຟບ\u0001\u0000\u0000\u0000ຟປ\u0001\u0000\u0000\u0000ຟຜ\u0001\u0000\u0000\u0000ຟຝ\u0001\u0000\u0000\u0000ຟພ\u0001\u0000\u0000\u0000ຠʓ\u0001\u0000\u0000\u0000ມ\u0ea4\u0003ʐň\u0000ຢ\u0ea4\u0003ʖŋ\u0000ຣມ\u0001\u0000\u0000\u0000ຣຢ\u0001\u0000\u0000\u0000\u0ea4ʕ\u0001\u0000\u0000\u0000ລ\u0ea6\u0003ʘŌ\u0000\u0ea6ʗ\u0001\u0000\u0000\u0000ວຨ\u0007N\u0000\u0000ຨʙ\u0001\u0000\u0000\u0000ຩສ\u0005\u0000\u0000\u0001ສʛ\u0001\u0000\u0000\u0000Ǣʡʥʪʮʴʹʾ˄˗˛˥˭˱˴˷˼̶̨̙̀̆̌͏͗ͥͭ͢ͱ͵ͻͿ΄·ΌΏΑΝΠίζσύϐϓϜϠϢϤϮϴϼЇЌАЖПТШЫбгхшьяіўѤѧѮѶѾ҂҇ҋҕқҟҡҦҫүҲҶҺҽӃӅӑӕӘӛӟӥӨӫӳӷӻӽԂԆԈԒԦԩԮԱԴԷԻԾՂՅՊՎՓ՝ադժկմպտև֏ֲֺׅ֕֝֩\u05cdוכץת׳\u05f8\u05fd؁؆؉،ؕ\u061dإثرؼـكِ٪ٵٻٿڍڑڛڦګڰڴڹڼۂۊېےۚ۟۹܂܉܌܏ܣܦܲܽ݁݃\u074bݏݑݛݠݪݭݸݽބއޕޟާެޱ\u07bcߊߑ߬߳ߵߺ߾ࠁࠐࠕࠞࠨ࠻\u083fࡂࡇࡖ࡙\u085c\u085fࡢࡥ\u086f\u0878\u087c\u0880\u0883\u0888\u088b\u088f\u0892\u0896\u0899\u089cࢥࢭࢲ\u08b5ࢻࣂ\u08cd\u08d1ࣔࣙࣛࣞ࣢ࣲࣩ࣯ࣶࣹࣥ࣬ࣼअइऎजठढथऩऴृै्॑ज़ॣ५ॵॻইউ\u098eঐফভ\u09b5\u09baিৄেৌ\u09d1\u09d9ৣ৫৶ৼਂਇ\u0a0cਓਞਦਬਸ\u0a3a\u0a43੍\u0a56ੜ\u0a60੩੭ੵ\u0a78ઁઍઞડથર\u0abbુે્\u0ad3\u0ad8\u0adb૪\u0af3\u0af7૽ଃକଝଠତମଲଷ଼ିୄେ\u0b4e\u0b52ୟ୧୰୵\u0b78\u0b7dஂஅஉ\u0b8cஒகங\u0b9d\u0ba0தஶ\u0bbaீ\u0bc9\u0bce\u0bd1\u0be0௧௫௱௷\u0bfdంఇఐఘటడయళ\u0c3bి\u0c51\u0c5e౪౭\u0c71\u0c75౸౺" -+ "ಅಌಔಖಠಧ\u0ca9ಮರಿ\u0cce\u0cd3ೖ\u0cdaೞೣ೨\u0cf0\u0cf5\u0cfdംഋ\u0d11ഖഞഡഩഭയഴുൃൊൌൔൗ൚ൡ൦൨൪൭൰ൽඃආඊඍඒ\u0d98ඞජඩණථභඹස\u0dc9\u0dceැීේෞ\u0de1\u0de3෮\u0dfb\u0dfdกงฐนปมัึฺ\u0e3eๅํ๒๙\u0e62\u0e65\u0e6e\u0e74\u0e78\u0e7cຉຌຒຟຣ", "Invalid input \'%s\': expected four hexadecimal digits specifying a unicode character", "Expected a non-empty String, non-empty List of non-empty Strings, or Parameter.", "Ordering", "Annotations stack:", "The `USE` clause is not required for Administration Commands. Retry your query omitting the `USE` clause and it will be routed automatically.", -"CommandResultItem", "Semantic table", "Not reached", "Duplicate `SET AUTH \'", "\'` clause.", "Failed to ", " with `", "`, PRIMARY must be greater than 0.", "`, SECONDARY must be a positive value.", "Precedence predicates are not supported in lexers.", "ANTLR Tool version %s used for code generation does not match the current runtime version %s%n", "ANTLR Runtime version %s used for parser compilation does not match the current runtime version %s%n", "Could not deserialize ATN with version %d (expected %d).", -"Couldn\'t identify final state of the precedence rule prefix section.", "The specified transition type is not valid.", "The specified state type %d is not valid.", "The specified lexer action type %s is not valid.", "Only precedence DFAs may contain a precedence start state.", "Wrapper", "CheckFromContext", "PopAnnotation", "PrintAnnotations", "(%s, %s)", "Invalid state number.", "ATN state %d has both epsilon and non-epsilon transitions.\n", "BASIC", "RULE_START", "BLOCK_START", "PLUS_BLOCK_START", "STAR_BLOCK_START", -"TOKEN_START", "RULE_STOP", "BLOCK_END", "STAR_LOOP_BACK", "STAR_LOOP_ENTRY", "PLUS_LOOP_BACK", "LOOP_END", "=>", "This set is readonly", ",hasSemanticContext=", ",uniqueAlt=", ",conflictingAlts=", ",dipsIntoOuterContext", "] ", "BYTE", "CHAR", "can\'t alter readonly IntervalSet", "set is empty", "{}", "", "(singletonName=", ", groupName=", "VariableGrouping", "RewrittenExpression", "Index: ", " Size: ", ",[", ",up=", "Not supported.", " is not supported for property value access rules.", "FeatureError", -"CLIENT_ERROR", "DATABASE_ERROR", "TRANSIENT_ERROR", "Condition \'", "\' violated. ", " PRIMARIES", " 1 PRIMARY", " SECONDARIES", " 1 SECONDARY", "node pattern", "relationship pattern", "label expression predicate", "Aggregation column contains implicit grouping expressions. For example, in \'RETURN n.a, n.a + n.b + count(*)\' the aggregation expression \'n.a + n.b + count(*)\' includes the implicit grouping key \'n.b\'. It may be possible to rewrite the query by extracting these grouping/aggregation expressions into a preceding WITH clause. Illegal expression(s): ", -"GPM_SHORTEST", "LEGACY_SHORTEST", "COLLECT_SUBQUERY", "COUNT_SUBQUERY", "EXISTS_SUBQUERY", "QUANTIFIED_PATH_PATTERN", "LiteralOffset", "target cannot be null.", "EPSILON", "RULE", "PREDICATE", "ATOM", "ACTION", "NOT_SET", "WILDCARD", "PRECEDENCE", "Foreach is expected to only have updating sub-clauses.", "LEXER", "PARSER", "epsilon", "CHANNEL", "CUSTOM", "MODE", "MORE", "POP_MODE", "PUSH_MODE", "Fby", "result of ", " + ", " cannot be represented as an integer", "result of -", " * ", "Unknown operation \'!=\' (you probably meant to use \'<>\', which is the operator for inequality testing)", -"All subqueries in a UNION [ALL] must have the same ordering for the return columns.", "The EXISTS expression is not valid on SHOW commands.", "The COLLECT expression is not valid on SHOW commands.", "The COUNT expression is not valid on SHOW commands.", "Pattern expressions are not valid on SHOW commands.", "Subquery expressions are not valid on SHOW commands.", "Pattern comprehensions are not valid on SHOW commands.", "Error in semantic analysis: Unknown expression ", "pred_", "action_", " >= _p", "Unknown rule index ", -"Parsed an unknown LabelExpression1 type", "Unknown Constraint Command", "Unexpected Constraint Command", "Invalid Constraint Type", "Unexpected privilege all command", "Unexpected child ", "Unexpected context ", " (first token type ", "Unexpected ctx ", "Unexpected token ", " (first token ", "` cannot be used in a MERGE clause, but only in a MATCH clause.", "Unexpected parse result ", "Unexpected expression", "Unexpected DBMS token", "Unexpected action for Database Privilege", "Unexpected token in Graph Qualifier", -"Unexpected index type", "Parsed an unknown LabelExpression1Is type", "OF ROWS", "ON ERROR", "REPORT STATUS", "Duplicate ", " clause", "Duplicated ", " parameters", "\'.\' is not a valid character in the remote alias name \'", "\'. Remote alias names using \'.\' must be quoted with backticks e.g. `remote.alias`.", "SET STATUS {SUSPENDED|ACTIVE}", "SET HOME DATABASE", "`ON DEFAULT GRAPH` is not supported. Use `ON HOME GRAPH` instead.", "`ON DEFAULT DATABASE` is not supported. Use `ON HOME DATABASE` instead.", -"\': expected \"", "`ON DEFAULT ", "` is not supported. Use `ON HOME ", "\' does not allow node patterns", "\' does not allow relationship patterns", "Constraint type is not recognized", "Constraint type \'EXISTS\' does not allow multiple properties", "Constraint type \'IS TYPED\' does not allow multiple properties", "Constraint type \'IS NOT NULL\' does not allow multiple properties", "\' ", "does not allow relationship patterns", "` no longer allows the `BRIEF` and `VERBOSE` keywords,\n |please omit `BRIEF` and use `YIELD *` instead of `VERBOSE`.", -"Missing function name for the LOOKUP INDEX", "Invalid normal form, expected NFC, NFD, NFKC, NFKD", "Each part of the glob (a block of text up until a dot) must either be fully escaped or not escaped at all.", " constraints cannot be dropped by schema, please drop by name instead: DROP CONSTRAINT constraint_name. The constraint name can be found using SHOW CONSTRAINTS.", "Cause already set", "Circular causation relation", "mergeArrays a=", ",b=", " -> previous", " -> a", " -> b", "channel(%d)", "mode(%d)", "more", -"popMode", "pushMode(%d)", "type(%d)", " WHERE ", "WHEN ", " THEN ", "ELSE ", "CoerceTo", "NODE_TYPE", "RELATIONSHIP_TYPE", "ImplicitProcedureArgument", "All types in a Closed Dynamic Union must be nullable, or be appended with `NOT NULL`", "(...) requires \'| expression\' (an accumulation expression)", "distance", "\'distance\' has been replaced by \'point.distance\'", "Too many parameters for function \'", "Insufficient parameters for function \'", "\' is not a valid argument, must be a number in the range 0.0 to 1.0", -"Dynamic Label and Types are only allowed in MATCH, CREATE, MERGE, SET and REMOVE clauses.", "(...)", "(...) requires a pattern containing a single relationship", "A ", "(...) requires bound nodes when not part of a MATCH clause.", " cannot be used in ", ", but only in a MATCH clause.", "Quantified path patterns", "Sub-path assignment is currently not supported.", "Variable length relationships must not use relationship type expressions.", "(non-quantified) parenthesized path pattern", "quantified path pattern", -"simple path pattern", "single node", "The semantics of using colon in the separation of alternative relationship types in conjunction with\n |the use of variable binding, inlined property predicates, or variable length is no longer supported.\n |Please separate the relationships types using `", "Label expressions are not allowed to contain \'|:\'.\n |If you want to express a disjunction of labels, please use `", "` instead", "Expected Pattern or RelationshipsPattern, but was ", "\u0000", -"%s is not a valid token name. Token names cannot be empty or contain any null-bytes.", "(...) does not support a minimal length different from 0 or 1", "In this case, both ", " are ", "s.", "In this case, ", " is a ", "Juxtaposition is currently only supported for quantified path patterns.\n |", "\n |That is, neither of these is a quantified path pattern.", "Only directed relationships are supported in ", "a MATCH clause", "a MERGE clause", "a CREATE clause", "an INSERT clause", "Expression", -"Label expressions in shortestPath are not allowed in an expression", "The start or end (or both) is required for a collection slice", "^-?[1-9][0-9]*$", "invalid literal number", "integer is too large", "^-?0o?[0-7]+$", "^-?0x[0-9a-fA-F]+$", "Illegal aggregation expression(s) in order by: ", ". If an aggregation expression is used in order by, it also needs to be a projection item on it\'s own. For example, in \'RETURN n.a, 1 + count(*) ORDER BY count(*) + 1\' the aggregation expression \'count(*) + 1\' is not a projection item on its own, but it could be rewritten to \'RETURN n.a, 1 + count(*) AS cnt ORDER BY 1 + count(*)\'.", -"NothingFound", "SubqueryFound", "Only single property ", " are supported", "Duplicate `", "All sub queries in an UNION must have the same return column names", "Long overflow", "TypeSpec(", "Invalid use of aggregating function ", "(...) in this context", "Invalid use of DISTINCT with function \'", "The group count needs to be greater than 0.", "The path count needs to be greater than 0.", "(...) is only allowed as a top-level element and not inside a parenthesized path pattern", "Precedence", "Can\'t use aggregate functions inside of aggregate functions.", -"The property existence syntax `... exists(variable.property)` is no longer supported. Please use `variable.property IS NOT NULL` instead.", "Argument to ", "(...) is not a pattern", "A map with keys ", " is not describing a valid point, a point is described either by using cartesian coordinates e.g. {x: 2.3, y: 4.5, crs: \'cartesian\'} or using geographic coordinates e.g. {latitude: 12.78, longitude: 56.7, crs: \'WGS-84\'}.", "Assigning a path in a quantified path pattern is not yet supported.", "(...) contains quantified pattern. This is currently not supported.", -"(...) contains properties ", ". This is currently not supported.", "Bound relationships not allowed in ", "Parameter maps cannot be used in `", "` patterns (use a literal map instead, e.g. `{id: $", ".id}`)", "one node", "A quantified path pattern needs to have at least one relationship.\n |In this case, the quantified path pattern ", " consists of only ", "A quantifier for a path pattern must not be limited by 0.", "A quantifier for a path pattern must not have a lower bound which exceeds its upper bound.\n |In this case, the lower bound ", -" is greater than the upper bound ", "Variable length relationships cannot be used in ", "Unexpected size ", "ExpressionTypeInfo", "(...) requires a WHERE predicate", "Can\'t use aggregating expressions inside of expressions executing over lists", "text-1.0", "Mapping", "Description: ", "Function call does not provide the required number of arguments: expected ", " got ", ".\n |\n |Function ", "\n |meaning that it expects ", "ⸯ", "A-Z", "a-z", "ª", "µ", "º", "À-Ö", "Ø-ö", -"ø-ˁ", "ˆ-ˑ", "ˠ-ˤ", "ˬ", "ˮ", "Ͱ-ʹ", "Ͷ-ͷ", "ͺ-ͽ", "Ϳ", "Ά", "Έ-Ί", "Ό", "Ύ-Ρ", "Σ-ϵ", "Ϸ-ҁ", "Ҋ-ԯ", "Ա-Ֆ", "ՙ", "ՠ-ֈ", "א-ת", "ׯ-ײ", "ؠ-ي", "ٮ-ٯ", "ٱ-ۓ", "ە", "ۥ-ۦ", "ۮ-ۯ", "ۺ-ۼ", "ۿ", "ܐ", "ܒ-ܯ", "ݍ-ޥ", "ޱ", "ߊ-ߪ", "ߴ-ߵ", "ߺ", "ࠀ-ࠕ", "ࠚ", "ࠤ", "ࠨ", "ࡀ-ࡘ", "ࡠ-ࡪ", "ࢠ-ࢴ", "ࢶ-ࣇ", "ऄ-ह", "ऽ", "ॐ", "क़-ॡ", "ॱ-ঀ", "অ-ঌ", "এ-ঐ", "ও-ন", "প-র", "ল", "শ-হ", "ঽ", "ৎ", "ড়-ঢ়", "য়-ৡ", "ৰ-ৱ", "ৼ", "ਅ-ਊ", "ਏ-ਐ", "ਓ-ਨ", "ਪ-ਰ", "ਲ-ਲ਼", "ਵ-ਸ਼", "ਸ-ਹ", "ਖ਼-ੜ", "ਫ਼", "ੲ-ੴ", "અ-ઍ", "એ-ઑ", "ઓ-ન", "પ-ર", "લ-ળ", "વ-હ", "ઽ", "ૐ", "ૠ-ૡ", -"ૹ", "ଅ-ଌ", "ଏ-ଐ", "ଓ-ନ", "ପ-ର", "ଲ-ଳ", "ଵ-ହ", "ଽ", "ଡ଼-ଢ଼", "ୟ-ୡ", "ୱ", "ஃ", "அ-ஊ", "எ-ஐ", "ஒ-க", "ங-ச", "ஜ", "ஞ-ட", "ண-த", "ந-ப", "ம-ஹ", "ௐ", "అ-ఌ", "ఎ-ఐ", "ఒ-న", "ప-హ", "ఽ", "ౘ-ౚ", "ౠ-ౡ", "ಀ", "ಅ-ಌ", "ಎ-ಐ", "ಒ-ನ", "ಪ-ಳ", "ವ-ಹ", "ಽ", "ೞ", "ೠ-ೡ", "ೱ-ೲ", "ഄ-ഌ", "എ-ഐ", "ഒ-ഺ", "ഽ", "ൎ", "ൔ-ൖ", "ൟ-ൡ", "ൺ-ൿ", "අ-ඖ", "ක-න", "ඳ-ර", "ල", "ව-ෆ", "ก-ะ", "า-ำ", "เ-ๆ", "ກ-ຂ", "ຄ", "ຆ-ຊ", "ຌ-ຣ", "ລ", "ວ-ະ", "າ-ຳ", "ຽ", "ເ-ໄ", "ໆ", "ໜ-ໟ", "ༀ", "ཀ-ཇ", "ཉ-ཬ", "ྈ-ྌ", "က-ဪ", "ဿ", "ၐ-ၕ", "ၚ-ၝ", "ၡ", "ၥ-ၦ", "ၮ-ၰ", "ၵ-ႁ", "ႎ", "Ⴀ-Ⴥ", -"Ⴧ", "Ⴭ", "ა-ჺ", "ჼ-ቈ", "ቊ-ቍ", "ቐ-ቖ", "ቘ", "ቚ-ቝ", "በ-ኈ", "ኊ-ኍ", "ነ-ኰ", "ኲ-ኵ", "ኸ-ኾ", "ዀ", "ዂ-ዅ", "ወ-ዖ", "ዘ-ጐ", "ጒ-ጕ", "ጘ-ፚ", "ᎀ-ᎏ", "Ꭰ-Ᏽ", "ᏸ-ᏽ", "ᐁ-ᙬ", "ᙯ-ᙿ", "ᚁ-ᚚ", "ᚠ-ᛪ", "ᛮ-ᛸ", "ᜀ-ᜌ", "ᜎ-ᜑ", "ᜠ-ᜱ", "ᝀ-ᝑ", "ᝠ-ᝬ", "ᝮ-ᝰ", "ក-ឳ", "ៗ", "ៜ", "ᠠ-ᡸ", "ᢀ-ᢄ", "ᢇ-ᢨ", "ᢪ", "ᢰ-ᣵ", "ᤀ-ᤞ", "ᥐ-ᥭ", "ᥰ-ᥴ", "ᦀ-ᦫ", "ᦰ-ᧉ", "ᨀ-ᨖ", "ᨠ-ᩔ", "ᪧ", "ᬅ-ᬳ", "ᭅ-ᭋ", "ᮃ-ᮠ", "ᮮ-ᮯ", "ᮺ-ᯥ", "ᰀ-ᰣ", "ᱍ-ᱏ", "ᱚ-ᱽ", "ᲀ-ᲈ", "Ა-Ჺ", "Ჽ-Ჿ", "ᳩ-ᳬ", "ᳮ-ᳳ", "ᳵ-ᳶ", "ᳺ", "ᴀ-ᶿ", "Ḁ-ἕ", "Ἐ-Ἕ", "ἠ-ὅ", "Ὀ-Ὅ", "ὐ-ὗ", "Ὑ", "Ὓ", "Ὕ", "Ὗ-ώ", "ᾀ-ᾴ", "ᾶ-ᾼ", "ι", -"ῂ-ῄ", "ῆ-ῌ", "ῐ-ΐ", "ῖ-Ί", "ῠ-Ῥ", "ῲ-ῴ", "ῶ-ῼ", "‿-⁀", "⁔", "ⁱ", "ⁿ", "ₐ-ₜ", "ℂ", "ℇ", "ℊ-ℓ", "ℕ", "ℙ-ℝ", "ℤ", "Ω", "ℨ", "K-ℭ", "ℯ-ℹ", "ℼ-ℿ", "ⅅ-ⅉ", "ⅎ", "Ⅰ-ↈ", "Ⰰ-Ⱞ", "ⰰ-ⱞ", "Ⱡ-ⳤ", "Ⳬ-ⳮ", "Ⳳ-ⳳ", "ⴀ-ⴥ", "ⴧ", "ⴭ", "ⴰ-ⵧ", "ⵯ", "ⶀ-ⶖ", "ⶠ-ⶦ", "ⶨ-ⶮ", "ⶰ-ⶶ", "ⶸ-ⶾ", "ⷀ-ⷆ", "ⷈ-ⷎ", "ⷐ-ⷖ", "ⷘ-ⷞ", "々-〇", "〡-〩", "〱-〵", "〸-〼", "ぁ-ゖ", "ゝ-ゟ", "ァ-ヺ", "ー-ヿ", "ㄅ-ㄯ", "ㄱ-ㆎ", "ㆠ-ㆿ", "ㇰ-ㇿ", "㐀-䶿", "一-鿼", "ꀀ-ꒌ", "ꓐ-ꓽ", "ꔀ-ꘌ", "ꘐ-ꘟ", "ꘪ-ꘫ", "Ꙁ-ꙮ", "ꙿ-ꚝ", "ꚠ-ꛯ", "ꜗ-ꜟ", "Ꜣ-ꞈ", "Ꞌ-ꞿ", "Ꟃ-ꟊ", "Ꟶ-ꠁ", "ꠃ-ꠅ", "ꠇ-ꠊ", "ꠌ-ꠢ", "ꡀ-ꡳ", "ꢂ-ꢳ", -"ꣲ-ꣷ", "ꣻ", "ꣽ-ꣾ", "ꤊ-ꤥ", "ꤰ-ꥆ", "ꥠ-ꥼ", "ꦄ-ꦲ", "ꧏ", "ꧠ-ꧤ", "ꧦ-ꧯ", "ꧺ-ꧾ", "ꨀ-ꨨ", "ꩀ-ꩂ", "ꩄ-ꩋ", "ꩠ-ꩶ", "ꩺ", "ꩾ-ꪯ", "ꪱ", "ꪵ-ꪶ", "ꪹ-ꪽ", "ꫀ", "ꫂ", "ꫛ-ꫝ", "ꫠ-ꫪ", "ꫲ-ꫴ", "ꬁ-ꬆ", "ꬉ-ꬎ", "ꬑ-ꬖ", "ꬠ-ꬦ", "ꬨ-ꬮ", "ꬰ-ꭚ", "ꭜ-ꭩ", "ꭰ-ꯢ", "가-힣", "ힰ-ퟆ", "ퟋ-ퟻ", "豈-舘", "並-龎", "ff-st", "ﬓ-ﬗ", "יִ", "ײַ-ﬨ", "שׁ-זּ", "טּ-לּ", "מּ", "נּ-סּ", "ףּ-פּ", "צּ-ﮱ", "ﯓ-ﴽ", "ﵐ-ﶏ", "ﶒ-ﷇ", "ﷰ-ﷻ", "︳-︴", "﹍-﹏", "ﹰ-ﹴ", "ﹶ-ﻼ", "A-Z", "_", "a-z", "ヲ-ᄒ", "ᅡ-ᅦ", "ᅧ-ᅬ", "ᅭ-ᅲ", "ᅳ-ᅵ", "\u0000-\u0008", "\u000e-\u001b", "-Ÿ", "¢", "£", "¤", "¥", "­", "؀-؅", "؜", "۝", -"܏", "࣢", "᠎", "​-‏", "‪-‮", "⁠-⁤", "⁦-", "", "-", "0-9", "̀-ʹ", "҃-҇", "֏", "֑-ֽ", "ֿ", "ׁ-ׂ", "ׄ-ׅ", "ׇ", "؋", "ؐ-ؚ", "ؠ-٩", "ٮ-ۓ", "ە-ۜ", "۟-ۨ", "۪-ۼ", "ܐ-݊", "ݍ-ޱ", "߀-ߵ", "߽-࠭", "ࡀ-࡛", "࣓-࣡", "ࣣ-ॣ", "०-९", "ॱ-ঃ", "়-ৄ", "ে-ৈ", "ো-ৎ", "ৗ", "য়-ৣ", "০-৳", "৻-ৼ", "৾", "ਁ-ਃ", "਼", "ਾ-ੂ", "ੇ-ੈ", "ੋ-੍", "ੑ", "੦-ੵ", "ઁ-ઃ", "઼-ૅ", "ે-ૉ", "ો-્", "ૠ-ૣ", "૦-૯", "૱", "ૹ-૿", "ଁ-ଃ", "଼-ୄ", "େ-ୈ", "ୋ-୍", "୕-ୗ", "ୟ-ୣ", "୦-୯", "ஂ-ஃ", "ா-ூ", "ெ-ை", "ொ-்", "ௗ", "௦-௯", "௹", "ఀ-ఌ", "ఽ-ౄ", "ె-ై", "ొ-్", "ౕ-ౖ", "ౠ-ౣ", "౦-౯", -"ಀ-ಃ", "಼-ೄ", "ೆ-ೈ", "ೊ-್", "ೕ-ೖ", "ೠ-ೣ", "೦-೯", "ഀ-ഌ", "ഒ-ൄ", "െ-ൈ", "ൊ-ൎ", "ൔ-ൗ", "ൟ-ൣ", "൦-൯", "ඁ-ඃ", "්", "ා-ු", "ූ", "ෘ-ෟ", "෦-෯", "ෲ-ෳ", "ก-ฺ", "฿-๎", "๐-๙", "ວ-ຽ", "່-ໍ", "໐-໙", "༘-༙", "༠-༩", "༵", "༷", "༹", "༾-ཇ", "ཱ-྄", "྆-ྗ", "ྙ-ྼ", "࿆", "က-၉", "ၐ-ႝ", "፝-፟", "ᜎ-᜔", "ᜠ-᜴", "ᝀ-ᝓ", "ᝲ-ᝳ", "ក-៓", "៛-៝", "០-៩", "᠋-᠍", "᠐-᠙", "ᢀ-ᢪ", "ᤠ-ᤫ", "ᤰ-᤻", "᥆-ᥭ", "᧐-᧙", "ᨀ-ᨛ", "ᨠ-ᩞ", "᩠-᩼", "᩿-᪉", "᪐-᪙", "᪰-᪽", "ᪿ-ᫀ", "ᬀ-ᭋ", "᭐-᭙", "᭫-᭳", "ᮀ-᯳", "ᰀ-᰷", "᱀-᱉", "ᱍ-ᱽ", "᳐-᳒", "᳔-ᳺ", "ᴀ-᷹", "᷻-ἕ", "₠-₿", "⃐-⃜", "⃡", "⃥-⃰", -"Ⳬ-ⳳ", "⵿-ⶖ", "ⷠ-ⷿ", "〡-〯", "゙-゚", "ꘐ-ꘫ", "Ꙁ-꙯", "ꙴ-꙽", "ꙿ-꛱", "Ꟶ-ꠧ", "꠬", "꠸", "ꢀ-ꣅ", "꣐-꣙", "꣠-ꣷ", "ꣽ-꤭", "ꤰ-꥓", "ꦀ-꧀", "ꧏ-꧙", "ꧠ-ꧾ", "ꨀ-ꨶ", "ꩀ-ꩍ", "꩐-꩙", "ꩺ-ꫂ", "ꫠ-ꫯ", "ꫲ-꫶", "ꭰ-ꯪ", "꯬-꯭", "꯰-꯹", "יִ-ﬨ", "ﷰ-﷼", "︀-️", "︠-︯", "﹩", "$", "0-9", "¢-£", "¥-₩", "RuleWithStartToken[", "startTokenIndex=", ", ruleIndex=", "public", "protected", "private", "abstract", "static", "final", "transient", "volatile", "synchronized", "strictfp", "interface", "Syntactic", "Cannot index nested properties", "A Collect Expression cannot contain any updates", -"A Collect Expression must end with a single return column.", "A Count Expression cannot contain any updates", "A Count Expression cannot contain a query ending with FINISH.", "An Exists Expression cannot contain any updates", "An Exists Expression cannot contain a query ending with FINISH.", "Label expressions in patterns are not allowed in ", ", but only in a MATCH clause and in expressions", "Node pattern predicates are not allowed in ", ", but only in a MATCH clause or inside a pattern comprehension", "ScopeBeforeParenthesizedPath", -"ScopeAfterParenthesizedPath", "Relationship type expressions in patterns are not allowed in ", ", but only in a MATCH clause", "Relationship pattern predicates are not allowed in ", "Relationship pattern predicates are not supported for variable-length relationships.", "ExpressionRule", "StringLiteralRule", "NumberLiteralRule", "ParameterRule", "VariableRule", "IdentifierRule", "DatabaseNameRule", "GraphPatternRule", "CandidateRule[", ", ruleList=", "TypeRange", "Incompatible TypeRange bounds", "INPUT DATA STREAM is not supported in UNION queries", -"CALL { ... } IN TRANSACTIONS in a UNION is not supported", "Label expressions are not allowed to contain \'|:\'.", "Relationship types in a relationship type expressions may not be combined using \':\'", "}?", "TreeAcc", "SolvableLabelExpression", " {2}(", ")(-?\\d+)", " {2}(AUTOINT|AUTODOUBLE|AUTOSTRING|AUTOLIST)(\\d+)", " {2}((?:(?! {2}).)+?)@(\\d+)", "Done", "Call", "Cont", "LabelExpressionRule", "RelationshipPatternRule", "NodePatternRule", "LabelExpression1Rule", "Type mismatch: USE clause must be given a ", -". Use either the name or alias of a database or the graph functions `graph.byName` and `graph.byElementId`.", "Subquery expressions are not allowed in a MERGE clause.", "Invalid use of ", " inside FOREACH", "Missing transaction id to terminate, the transaction id can be found using `SHOW TRANSACTIONS`", "`WHERE` is not allowed by itself, please use `TERMINATE TRANSACTION ... YIELD ... WHERE ...` instead", "Quantified path patterns are not allowed to be nested.", "shortestPath(...) is only allowed as a top-level element and not inside a quantified path pattern", -"Variable length relationships cannot be part of a quantified path pattern.", "Illegal symbolic name ", " inside a ", " at position: ", "Cannot replace the dependency on variable ", " with a non-variable expression", " is out of bounds (min 0, max 6)", "Tuple7", " is out of bounds (min 0, max 4)", "Tuple5", "SET ENCRYPTED PASSWORD", "CHANGE ", "SET PASSWORD ", " SET HOME DATABASE ", " REMOVE HOME DATABASE", "READ ONLY", "READ WRITE", " SET ACCESS ", " REMOVE OPTION ", "TARGET ", "%s(\'%s\')", "RETURN * is not allowed when there are no variables in scope", -"DELETE doesn\'t support removing labels from a node. Try REMOVE.", "ALL DATA", "URL ", "CIDR ", " SET OPTION ", "The variable `", "` is shadowing a variable with the same name from the outer scope and needs to be renamed", "PatternExpressions are not allowed to introduce new variables: \'", "SkipChildren", "TraverseChildren", "TraverseChildrenNewAccForSiblings", "` cannot be used in a CREATE clause, but only in a MATCH clause.", "Expected pattern part but was ", "Unexpected parse results ", "Unexpected rhs ", -"ShowWrapper", "Scope dependencies have not been computed yet", " where ", "CALL { ... } IN TRANSACTIONS nested in a regular CALL is not supported", "a string", "a number", "a variable name", "a database name", "a graph pattern", "a relationship type name", "a node label name", "a node label/relationship type name", "LabelExpressionsPartitions", "This expression could be expressed as ", "These expressions could be expressed as ", "Mixing label expression symbols (\'|\', \'&\', \'!\', and \'%\') with colon (\':\') between labels is not allowed. Please only use one set of symbols. ", -"Mixing the IS keyword with colon (\':\') between labels is not allowed. ", "nodePropertyExistenceConstraints", "NodeExistsConstraintsCypher25", "relationshipPropertyExistenceConstraints", "RelExistsConstraintsCypher25", "propertyExistenceConstraints", "ExistsConstraintsCypher25", "NODE_PROPERTY_UNIQUENESS", "NODE PROPERTY UNIQUENESS", "nodePropertyUniquenessConstraints", "NodeUniqueConstraintsCypher25", "RELATIONSHIP_PROPERTY_UNIQUENESS", "RELATIONSHIP PROPERTY UNIQUENESS", "relationshipPropertyUniquenessConstraints", -"RelUniqueConstraintsCypher25", "PROPERTY_UNIQUENESS", "PROPERTY UNIQUENESS", "propertyUniquenessConstraints", "UniqueConstraintsCypher25", "Multiple result columns with the same name are not supported", "expected ", " but was ", "n", "SomeUnknownLabels", "indexConfig", ",channel=", "", "[@", "=\'", "\',<", "Stream", "Rel", "NoEntity", "RelGraphToken", "NodeGraphToken", "ElementGraphToken", "Procedure call cannot take an aggregating function as argument, please add a \'WITH\' to your statement.\n |For example:\n | MATCH (n:Person) WITH collect(n.name) AS names CALL proc(names) YIELD value RETURN value", -" CHANGE ", "The hex integer literal syntax `", "` is no longer supported, please use `", "Mixing label expression symbols (\'|\', \'&\', \'!\', and \'%\') with colon (\':\') between labels is not allowed. Please only use one set of symbols. This expression could be expressed as :", "Mixing the IS keyword with colon (\':\') between labels is not allowed. This expression could be expressed as IS ", "o", "The octal integer literal syntax `", "floating point number is too large", "list index must be given as Integer, but was ", -"map key must be given as String, but was ", "node or relationship property key must be given as String, but was ", "Mixing variable-length relationships (\'-[*]-\') with quantified relationships (\'()-->*()\') or quantified path patterns (\'(()-->())*\') is not allowed.", "Mixing shortestPath/allShortestPaths with path selectors (e.g. \'ANY SHORTEST\') or explicit match modes (\'e.g. DIFFERENT RELATIONSHIPS\') is not allowed.", "Dynamic labels using `$any()` are not allowed in CREATE or MERGE.", ">=prec}?", -"Setting labels or types dynamically is not supported.", "\\\\u+0060", "^[\\p{L}_][\\p{L}0-9_]*", "^[\\p{L}_?*][\\p{L}0-9_*?.]*", "longitude", "latitude", "Type mismatch: expected Boolean, Float, Integer, Point, String, Duration, Date, Time, LocalTime, LocalDateTime or DateTime but was ", "Type mismatch: expected Boolean or String but was ", "Type mismatch: expected Boolean, Integer or String but was ", "Multiple join hints for same variable are not supported", "Match modes such as `", "` are not supported yet.", -"Nested CALL { ... } IN TRANSACTIONS is not supported", "Nested subqueries must use the same graph as their parent query", "Database name should be not null.", "tail of empty stream", "head of empty stream", "pos is ", ", size is ", "Unknown procedure output: `", "positive", "non-negative", "Invalid input. \'", "\' is not a valid value. Must be a ", " integer.", "Trying to YIELD non-existing column: `", "The variable \'%1$s\' is referencing an entity that is created in the same %2$s clause which is not allowed. Please only reference variables created in earlier clauses.", -"The %1$s variable \'%2$s\' is referencing a %1$s that is created in the same %3$s clause which is not allowed. Please only reference variables created in earlier clauses.", "Creating an entity (", ") and referencing that entity in a property definition in the same ", " is not allowed. Only reference variables created in earlier clauses.", "It is not allowed to refer to variables in ", ", so that the value for ", " can be statically calculated.", "uninitialized", "already initialized", "It is not allowed to use patterns in the expression for ", -"Introduced variables have not been computed yet", "Expression in ", " must be aliased (use AS)", "CrossReferenceFound", "A top-level path pattern in a `MATCH` clause must be written such that it always evaluates to at least one node pattern.\n |In this case, `", "` would result in an empty pattern.", "Expected QuantifiedPath or ParenthesizedPath, but was ", "ON MATCH ", "ON CREATE ", " FIELDTERMINATOR ", "&&", "KnownLabels", "parenthesized path pattern", "Unreachable state.", "ReadWrite", "` occurs in multiple quantified path patterns and needs to be renamed.", -"` occurs both inside and outside a quantified path pattern and needs to be renamed.", "` is already defined in a previous clause, it cannot be referenced as a node or as a relationship variable inside of a quantified path pattern.", "` already declared in outer scope", "Cannot use join hint for single node pattern.", "The pattern may yield an infinite number of rows under match mode REPEATABLE ELEMENTS, perhaps use a path selector or add an upper bound to your quantified path patterns.", "Multiple path patterns cannot be used in the same clause in combination with a selective path selector.", -"Multiple path patterns cannot be used in the same clause in combination with a selective path selector. You may want to use multiple MATCH clauses, or you might want to consider using the REPEATABLE ELEMENTS match mode.", " ASCENDING", " DESCENDING", "From within a ", ", one may only reference variables, that are already bound in a previous `MATCH` clause.\n |In this case, `", "` is defined in the same `MATCH` clause as ", "\\(line (\\d+), column (\\d+) \\(offset: (\\d+)\\)\\)", "LegacyLabelExpression", -"withinBBox", "In a WITH/RETURN with DISTINCT or an aggregation, it is not possible to access variables declared before the WITH/RETURN: ", "` is shadowing an imported variable with the same name and needs to be renamed", "Aliasing or expressions are not supported", "DISTINCT is not allowed", "WHERE is not allowed", "ORDER BY is not allowed", "SKIP is not allowed", "LIMIT is not allowed"]); ++ "\u0002ÿ\u0007ÿ\u0002Ā\u0007Ā\u0002ā\u0007ā\u0002Ă\u0007Ă\u0002ă\u0007ă\u0002Ą\u0007Ą\u0002ą\u0007ą\u0002Ć\u0007Ć\u0002ć\u0007ć\u0002Ĉ\u0007Ĉ\u0002ĉ\u0007ĉ\u0002Ċ\u0007Ċ\u0002ċ\u0007ċ\u0002Č\u0007Č\u0002č\u0007č\u0002Ď\u0007Ď\u0002ď\u0007ď\u0002Đ\u0007Đ\u0002đ\u0007đ\u0002Ē\u0007Ē\u0002ē\u0007ē\u0002Ĕ\u0007Ĕ\u0002ĕ\u0007ĕ\u0002Ė\u0007Ė\u0002ė\u0007ė\u0002Ę\u0007Ę\u0002ę\u0007ę\u0002Ě\u0007Ě\u0002ě\u0007ě\u0002Ĝ\u0007Ĝ\u0002ĝ\u0007ĝ\u0002Ğ\u0007Ğ\u0002ğ\u0007ğ\u0002Ġ\u0007Ġ\u0002ġ\u0007ġ\u0002Ģ\u0007Ģ\u0002ģ\u0007ģ\u0002Ĥ\u0007Ĥ\u0002ĥ\u0007ĥ\u0002Ħ\u0007Ħ\u0002ħ\u0007ħ\u0002Ĩ\u0007Ĩ\u0002ĩ\u0007ĩ\u0002Ī\u0007Ī\u0002ī\u0007ī\u0002Ĭ\u0007Ĭ\u0002ĭ\u0007ĭ\u0002Į\u0007Į\u0002į\u0007į\u0002İ\u0007İ\u0002ı\u0007ı\u0002IJ\u0007IJ\u0002ij\u0007ij\u0002Ĵ\u0007Ĵ\u0002ĵ\u0007ĵ\u0002Ķ\u0007Ķ\u0002ķ\u0007ķ\u0002ĸ\u0007ĸ\u0002Ĺ\u0007Ĺ\u0002ĺ\u0007ĺ\u0002Ļ\u0007Ļ\u0002ļ\u0007ļ\u0002Ľ\u0007Ľ\u0002ľ\u0007ľ\u0002Ŀ\u0007Ŀ\u0002ŀ\u0007ŀ\u0002Ł\u0007Ł\u0002ł\u0007ł\u0002Ń\u0007Ń\u0002ń\u0007ń\u0002Ņ\u0007Ņ\u0002ņ\u0007ņ\u0002Ň\u0007Ň\u0002ň\u0007ň\u0002ʼn\u0007ʼn\u0002Ŋ\u0007Ŋ\u0002ŋ\u0007ŋ\u0002Ō\u0007Ō\u0002ō\u0007ō\u0002Ŏ\u0007Ŏ\u0002ŏ\u0007ŏ\u0002Ő\u0007Ő\u0002ő\u0007ő\u0001\u0000\u0001\u0000\u0001\u0000\u0005\u0000ʨ\u0008\u0000\n\u0000\u000c\u0000ʫ\t\u0000\u0001\u0000\u0003\u0000ʮ\u0008\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0003\u0001ʳ\u0008\u0001\u0001\u0001\u0001\u0001\u0003\u0001ʷ\u0008\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002ʽ\u0008\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003˂\u0008\u0003\u0001\u0003\u0005\u0003˅\u0008\u0003\n\u0003\u000c\u0003ˈ\t\u0003\u0001\u0004\u0004\u0004ˋ\u0008\u0004\u000b\u0004\u000c\u0004ˌ\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005ˠ\u0008\u0005\u0001\u0006\u0001\u0006\u0003\u0006ˤ\u0008\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007ˮ\u0008\u0007\u0001\u0008\u0001\u0008\u0001\t\u0001\t\u0001\t\u0001\n\u0003\n˶\u0008" ++ "\n\u0001\n\u0001\n\u0003\n˺\u0008\n\u0001\n\u0003\n˽\u0008\n\u0001\n\u0003\ǹ\u0008\n\u0001\u000b\u0001\u000b\u0001\u000b\u0003\u000b̅\u0008\u000b\u0001\u000c\u0001\u000c\u0003\u000c̉\u0008\u000c\u0001\u000c\u0001\u000c\u0005\u000c̍\u0008\u000c\n\u000c\u000c\u000c̐\t\u000c\u0001\r\u0001\r\u0001\r\u0003\r̕\u0008\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0005\u0010̠\u0008\u0010\n\u0010\u000c\u0010̣\t\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014̱\u0008\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0005\u0017̽\u0008\u0017\n\u0017\u000c\u0017̀\t\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0003\u0018͘\u0008\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0005\u0019͞\u0008\u0019\n\u0019\u000c\u0019͡\t\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0003\u001aͫ\u0008\u001a\u0001\u001b\u0003\u001bͮ\u0008\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0005\u001bʹ\u0008\u001b\n\u001b\u000c\u001bͷ\t\u001b\u0001\u001c\u0003\u001cͺ\u0008\u001c\u0001\u001c\u0001\u001c\u0003\u001c;\u0008\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u0382\u0008\u001c\n\u001c\u000c\u001c΅\t\u001c\u0001\u001c\u0003\u001cΈ\u0008\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001d\u038d\u0008\u001d\u0001\u001d\u0003\u001dΐ\u0008\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001dΕ\u0008\u001d\u0001\u001d\u0003\u001dΘ\u0008\u001d\u0003\u001dΚ\u0008\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0003\u001eΦ\u0008\u001e\u0001\u001e\u0003\u001eΩ\u0008\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0003\u001eθ\u0008\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0005\u001fν\u0008\u001f\n\u001f\u000c\u001fπ\t\u001f\u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0003\"ό\u0008\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"ϔ\u0008\"\n\"\u000c\"ϗ\t\"\u0003\"ϙ\u0008\"\u0001\"\u0003\"Ϝ\u0008\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005" ++ "\"ϣ\u0008\"\n\"\u000c\"Ϧ\t\"\u0001\"\u0003\"ϩ\u0008\"\u0003\"ϫ\u0008\"\u0003\"ϭ\u0008\"\u0001#\u0001#\u0001#\u0001$\u0001$\u0001%\u0001%\u0001%\u0003%Ϸ\u0008%\u0001&\u0001&\u0001&\u0001&\u0003&Ͻ\u0008&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0003&Ѕ\u0008&\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0004\'Ў\u0008\'\u000b\'\u000c\'Џ\u0001\'\u0001\'\u0001(\u0003(Е\u0008(\u0001(\u0001(\u0003(Й\u0008(\u0001(\u0001(\u0001(\u0001(\u0003(П\u0008(\u0001)\u0001)\u0001)\u0001)\u0001)\u0005)Ц\u0008)\n)\u000c)Щ\t)\u0003)Ы\u0008)\u0001)\u0001)\u0001*\u0001*\u0003*б\u0008*\u0001*\u0003*д\u0008*\u0001*\u0001*\u0001*\u0001*\u0005*к\u0008*\n*\u000c*н\t*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0003.ю\u0008.\u0001.\u0003.ё\u0008.\u0001.\u0001.\u0003.ѕ\u0008.\u0001.\u0003.ј\u0008.\u0001/\u0001/\u0001/\u0005/ѝ\u0008/\n/\u000c/Ѡ\t/\u00010\u00010\u00010\u00050ѥ\u00080\n0\u000c0Ѩ\t0\u00011\u00011\u00011\u00031ѭ\u00081\u00011\u00031Ѱ\u00081\u00011\u00011\u00012\u00012\u00012\u00032ѷ\u00082\u00012\u00012\u00012\u00012\u00052ѽ\u00082\n2\u000c2Ҁ\t2\u00013\u00013\u00013\u00013\u00013\u00033҇\u00083\u00013\u00013\u00033ҋ\u00083\u00013\u00013\u00013\u00033Ґ\u00083\u00014\u00014\u00034Ҕ\u00084\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u00016\u00036Ҟ\u00086\u00016\u00016\u00056Ң\u00086\n6\u000c6ҥ\t6\u00016\u00046Ҩ\u00086\u000b6\u000c6ҩ\u00017\u00017\u00017\u00037ү\u00087\u00017\u00017\u00017\u00037Ҵ\u00087\u00017\u00017\u00037Ҹ\u00087\u00017\u00037һ\u00087\u00017\u00017\u00037ҿ\u00087\u00017\u00017\u00037Ӄ\u00087\u00017\u00037ӆ\u00087\u00017\u00017\u00017" ++ "\u00017\u00037ӌ\u00087\u00037ӎ\u00087\u00018\u00018\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0004:Ә\u0008:\u000b:\u000c:ә\u0001;\u0001;\u0003;Ӟ\u0008;\u0001;\u0003;ӡ\u0008;\u0001;\u0003;Ӥ\u0008;\u0001;\u0001;\u0003;Ө\u0008;\u0001;\u0001;\u0001<\u0001<\u0003<Ӯ\u0008<\u0001<\u0003<ӱ\u0008<\u0001<\u0003<Ӵ\u0008<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001=\u0003=Ӽ\u0008=\u0001=\u0001=\u0003=Ԁ\u0008=\u0001>\u0001>\u0004>Ԅ\u0008>\u000b>\u000c>ԅ\u0001?\u0001?\u0001?\u0003?ԋ\u0008?\u0001?\u0001?\u0005?ԏ\u0008?\n?\u000c?Ԓ\t?\u0001@\u0001@\u0001@\u0001@\u0001@\u0001A\u0001A\u0003Aԛ\u0008A\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001E\u0001E\u0001E\u0001F\u0001F\u0003Fԯ\u0008F\u0001G\u0003GԲ\u0008G\u0001G\u0001G\u0001G\u0003GԷ\u0008G\u0001G\u0003GԺ\u0008G\u0001G\u0003GԽ\u0008G\u0001G\u0003GՀ\u0008G\u0001G\u0001G\u0003GՄ\u0008G\u0001G\u0003GՇ\u0008G\u0001G\u0001G\u0003GՋ\u0008G\u0001H\u0003HՎ\u0008H\u0001H\u0001H\u0001H\u0003HՓ\u0008H\u0001H\u0001H\u0003H\u0557\u0008H\u0001H\u0001H\u0001H\u0003H՜\u0008H\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001L\u0001L\u0003Lզ\u0008L\u0001L\u0001L\u0003Lժ\u0008L\u0001L\u0003Lխ\u0008L\u0001M\u0001M\u0001M\u0001M\u0003Mճ\u0008M\u0001N\u0001N\u0001N\u0003Nո\u0008N\u0001N\u0005Nջ\u0008N\nN\u000cNվ\tN\u0001O\u0001O\u0001O\u0003Oփ\u0008O\u0001O\u0005Oֆ\u0008O\nO\u000cO։\tO\u0001P\u0001P\u0001P\u0005P֎\u0008P\nP\u000cP֑\tP\u0001Q\u0001Q\u0001Q\u0005Q֖\u0008Q\nQ\u000cQ֙\tQ\u0001R\u0005R֜\u0008R\nR\u000cR֟\tR\u0001R\u0001R\u0001S\u0005S֤\u0008S\nS\u000cS֧\tS\u0001S\u0001S\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T" ++ "\u0003Tֲ\u0008T\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0003Uֻ\u0008U\u0001V\u0001V\u0001V\u0001V\u0005Vׁ\u0008V\nV\u000cVׄ\tV\u0001W\u0001W\u0001W\u0001X\u0001X\u0001X\u0005X\u05cc\u0008X\nX\u000cX\u05cf\tX\u0001Y\u0001Y\u0001Y\u0005Yה\u0008Y\nY\u000cYח\tY\u0001Z\u0001Z\u0001Z\u0005Zל\u0008Z\nZ\u000cZן\tZ\u0001[\u0005[ע\u0008[\n[\u000c[ץ\t[\u0001[\u0001[\u0001\\\u0001\\\u0001\\\u0005\\\u05ec\u0008\\\n\\\u000c\\ׯ\t\\\u0001]\u0001]\u0003]׳\u0008]\u0001^\u0001^\u0001^\u0001^\u0001^\u0001^\u0001^\u0003^\u05fc\u0008^\u0001^\u0001^\u0001^\u0003^؁\u0008^\u0001^\u0001^\u0001^\u0003^؆\u0008^\u0001^\u0001^\u0003^؊\u0008^\u0001^\u0001^\u0001^\u0003^؏\u0008^\u0001^\u0003^ؒ\u0008^\u0001^\u0003^ؕ\u0008^\u0001_\u0001_\u0001`\u0001`\u0001`\u0005`؜\u0008`\n`\u000c`؟\t`\u0001a\u0001a\u0001a\u0005aؤ\u0008a\na\u000caا\ta\u0001b\u0001b\u0001b\u0005bج\u0008b\nb\u000cbد\tb\u0001c\u0001c\u0001c\u0003cش\u0008c\u0001d\u0001d\u0005dظ\u0008d\nd\u000cdػ\td\u0001e\u0001e\u0001e\u0001e\u0001e\u0001e\u0001e\u0001e\u0003eم\u0008e\u0001e\u0001e\u0003eى\u0008e\u0001e\u0003eٌ\u0008e\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001h\u0001h\u0004hٗ\u0008h\u000bh\u000ch٘\u0001i\u0001i\u0001i\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0003jٳ\u0008j\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0003kپ\u0008k\u0001l\u0001l\u0004lڂ\u0008l\u000bl\u000clڃ\u0001l\u0001l\u0003lڈ\u0008l\u0001l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0004nڔ\u0008n\u000bn\u000cnڕ\u0001n\u0001n\u0003nښ\u0008n" ++ "\u0001n\u0001n\u0001o\u0001o\u0001o\u0001o\u0005oڢ\u0008o\no\u000coڥ\to\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001p\u0001p\u0003pگ\u0008p\u0001p\u0001p\u0001p\u0003pڴ\u0008p\u0001p\u0001p\u0001p\u0003pڹ\u0008p\u0001p\u0001p\u0003pڽ\u0008p\u0001p\u0001p\u0001p\u0003pۂ\u0008p\u0001p\u0003pۅ\u0008p\u0001p\u0001p\u0001p\u0001p\u0003pۋ\u0008p\u0001q\u0001q\u0001q\u0001q\u0001q\u0001q\u0003qۓ\u0008q\u0001q\u0001q\u0001q\u0001q\u0003qۙ\u0008q\u0003qۛ\u0008q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0003rۣ\u0008r\u0001r\u0001r\u0001r\u0003rۨ\u0008r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001t\u0001t\u0001t\u0001t\u0003t܂\u0008t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001u\u0003u܋\u0008u\u0001u\u0001u\u0001v\u0001v\u0001v\u0003vܒ\u0008v\u0001v\u0003vܕ\u0008v\u0001v\u0003vܘ\u0008v\u0001v\u0001v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001y\u0001y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001z\u0001z\u0005zܪ\u0008z\nz\u000czܭ\tz\u0003zܯ\u0008z\u0001z\u0001z\u0001{\u0001{\u0001{\u0001{\u0001{\u0001{\u0001{\u0001{\u0003{ܻ\u0008{\u0001|\u0001|\u0001|\u0001|\u0001|\u0001}\u0001}\u0001}\u0001}\u0003}݆\u0008}\u0001}\u0001}\u0003}݊\u0008}\u0003}\u074c\u0008}\u0001}\u0001}\u0001~\u0001~\u0001~\u0001~\u0003~ݔ\u0008~\u0001~\u0001~\u0003~ݘ\u0008~\u0003~ݚ\u0008~\u0001~\u0001~\u0001\u0001\u0001\u0001\u0001\u0001€\u0003€ݤ\u0008€\u0001€\u0001€\u0001\u0003ݩ\u0008\u0001\u0001\u0001‚\u0001‚\u0001‚\u0001‚\u0005‚ݱ\u0008‚\n‚\u000c‚ݴ\t‚\u0003‚ݶ\u0008‚\u0001‚\u0001‚\u0001ƒ\u0001ƒ\u0001„\u0001„\u0001„\u0001…\u0001…\u0003…ށ\u0008…\u0001†\u0001†\u0001†\u0003†ކ\u0008†\u0001†\u0001†" ++ "\u0001†\u0005†ދ\u0008†\n†\u000c†ގ\t†\u0003†ސ\u0008†\u0001†\u0001†\u0001‡\u0001‡\u0001ˆ\u0001ˆ\u0001ˆ\u0001‰\u0001‰\u0001‰\u0005‰ޜ\u0008‰\n‰\u000c‰ޟ\t‰\u0001Š\u0001Š\u0001‹\u0001‹\u0001‹\u0005‹ަ\u0008‹\n‹\u000c‹ީ\t‹\u0001Œ\u0001Œ\u0001Œ\u0005Œޮ\u0008Œ\nŒ\u000cŒޱ\tŒ\u0001\u0001\u0003\u07b5\u0008\u0001\u0005\u07b8\u0008\n\u000c\u07bb\t\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Ž߅\u0008Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Žߓ\u0008Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Žߚ\u0008Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Žߵ\u0008Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0001Ž\u0003Ž\u07fc\u0008Ž\u0003Ž߾\u0008Ž\u0001\u0001\u0001\u0003ࠃ\u0008\u0001\u0001\u0003ࠇ\u0008\u0001‘\u0003‘ࠊ\u0008‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0001‘\u0003‘࠙\u0008‘\u0001’\u0001’\u0001’\u0003’ࠞ\u0008’\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0001’\u0003’ࠧ\u0008’\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0001“\u0003“࠱\u0008“\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0001”\u0003”ࡄ\u0008”\u0001•\u0001•\u0003•ࡈ\u0008•\u0001•\u0003•ࡋ\u0008•\u0001–\u0001–\u0001–\u0003–ࡐ\u0008–\u0001—\u0001—\u0001—\u0001˜\u0001˜\u0001˜\u0001™\u0001™\u0001™\u0001™\u0001™\u0005™\u085d\u0008™\n™\u000c™ࡠ\t™\u0003™ࡢ\u0008™\u0001™\u0003™ࡥ\u0008™\u0001™\u0003™ࡨ\u0008™\u0001™\u0003™\u086b\u0008™\u0001™\u0003™\u086e\u0008™\u0001š\u0001š\u0001š\u0001›\u0001›\u0001›\u0001œ\u0001œ" ++ "\u0003œࡸ\u0008œ\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003ࢁ\u0008\u0001ž\u0001ž\u0003žࢅ\u0008ž\u0001ž\u0001ž\u0003žࢉ\u0008ž\u0001ž\u0003žࢌ\u0008ž\u0001Ÿ\u0001Ÿ\u0001Ÿ\u0003Ÿ࢑\u0008Ÿ\u0001Ÿ\u0003Ÿ\u0894\u0008Ÿ\u0001 \u0001 \u0003 ࢘\u0008 \u0001 \u0003 ࢛\u0008 \u0001¡\u0001¡\u0003¡࢟\u0008¡\u0001¡\u0003¡ࢢ\u0008¡\u0001¢\u0003¢ࢥ\u0008¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0003¢ࢮ\u0008¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0001¢\u0003¢ࢶ\u0008¢\u0001¢\u0001¢\u0001¢\u0003¢ࢻ\u0008¢\u0001¢\u0003¢ࢾ\u0008¢\u0001£\u0001£\u0001£\u0001£\u0003£ࣄ\u0008£\u0001¤\u0001¤\u0001¤\u0001¤\u0001¤\u0003¤࣋\u0008¤\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0001¥\u0003¥ࣖ\u0008¥\u0001¦\u0001¦\u0003¦ࣚ\u0008¦\u0001¦\u0003¦ࣝ\u0008¦\u0001§\u0001§\u0001§\u0003§࣢\u0008§\u0003§ࣤ\u0008§\u0001§\u0003§ࣧ\u0008§\u0001¨\u0001¨\u0003¨࣫\u0008¨\u0001¨\u0003¨࣮\u0008¨\u0001©\u0001©\u0003©ࣲ\u0008©\u0001©\u0003©ࣵ\u0008©\u0001©\u0003©ࣸ\u0008©\u0001ª\u0003ªࣻ\u0008ª\u0001ª\u0001ª\u0003ªࣿ\u0008ª\u0001ª\u0003ªं\u0008ª\u0001ª\u0003ªअ\u0008ª\u0001«\u0001«\u0001¬\u0001¬\u0001¬\u0001¬\u0001¬\u0003¬ऎ\u0008¬\u0003¬ऐ\u0008¬\u0001­\u0001­\u0001­\u0001­\u0001­\u0003­ग\u0008­\u0001®\u0001®\u0001®\u0001¯\u0001¯\u0001¯\u0003¯ट\u0008¯\u0001¯\u0003¯ढ\u0008¯\u0001°\u0001°\u0001°\u0001±\u0001±\u0001²\u0003²प\u0008²\u0001²\u0001²\u0003²म\u0008²\u0003²र\u0008²\u0001²\u0003²ळ\u0008²\u0001³\u0001³\u0003³ष\u0008³\u0001´\u0001´\u0001´\u0001´\u0001´\u0001µ\u0001µ\u0001µ\u0003µु\u0008µ\u0001µ\u0001µ\u0001µ\u0001µ\u0001µ\u0001µ\u0001µ\u0003µॊ\u0008µ\u0001µ\u0001µ\u0001µ\u0001¶\u0001¶\u0003¶॑\u0008¶\u0001¶\u0001¶\u0001¶\u0003¶ॖ\u0008¶\u0001¶\u0001¶\u0001¶\u0003¶ज़\u0008¶\u0001¶\u0001¶\u0003¶" ++ "य़\u0008¶\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0003·३\u0008·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0003·ॱ\u0008·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0003·ॹ\u0008·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0001·\u0003·ঃ\u0008·\u0001¸\u0001¸\u0001¸\u0001¸\u0003¸উ\u0008¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0001¸\u0003¸ক\u0008¸\u0003¸গ\u0008¸\u0001¸\u0001¸\u0001¸\u0003¸জ\u0008¸\u0003¸ঞ\u0008¸\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0001¹\u0003¹হ\u0008¹\u0003¹\u09bb\u0008¹\u0001º\u0001º\u0001º\u0001º\u0001º\u0001»\u0003»ৃ\u0008»\u0001»\u0001»\u0001»\u0003»ৈ\u0008»\u0001»\u0001»\u0001»\u0003»্\u0008»\u0001»\u0001»\u0001»\u0003»\u09d2\u0008»\u0001¼\u0003¼\u09d5\u0008¼\u0001¼\u0001¼\u0001¼\u0003¼\u09da\u0008¼\u0001¼\u0001¼\u0001¼\u0003¼য়\u0008¼\u0001¼\u0001¼\u0001¼\u0001¼\u0001¼\u0001¼\u0003¼১\u0008¼\u0001½\u0001½\u0001½\u0001½\u0001½\u0001½\u0005½৯\u0008½\n½\u000c½৲\t½\u0001½\u0001½\u0001¾\u0001¾\u0001¾\u0003¾৹\u0008¾\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0001¾\u0005¾ਂ\u0008¾\n¾\u000c¾ਅ\t¾\u0001¾\u0001¾\u0001¾\u0003¾ਊ\u0008¾\u0001¾\u0001¾\u0001¾\u0001¿\u0003¿ਐ\u0008¿\u0001¿\u0001¿\u0001¿\u0003¿ਕ\u0008¿\u0001¿\u0001¿\u0001¿\u0003¿ਚ\u0008¿\u0001¿\u0001¿\u0001¿\u0001¿\u0001¿\u0003¿ਡ\u0008¿\u0001À\u0001À\u0001À\u0001À\u0001À\u0001À\u0001Á\u0001Á\u0001Á\u0003Áਬ\u0008Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0001Á\u0003Á\u0a34\u0008Á\u0001Á\u0001Á\u0001Á\u0001Á\u0003Á\u0a3a\u0008Á\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0001Â\u0003Â\u0a46\u0008Â\u0003Âੈ\u0008Â\u0001Ã\u0001Ã\u0001Ã\u0001Ã\u0001" ++ "Ã\u0001Ã\u0001Ã\u0003Ãੑ\u0008Ã\u0001Ä\u0001Ä\u0001Ä\u0001Ä\u0001Ä\u0001Ä\u0005Äਖ਼\u0008Ä\nÄ\u000cÄੜ\tÄ\u0001Å\u0001Å\u0001Å\u0001Å\u0001Å\u0001Å\u0003Å\u0a64\u0008Å\u0001Æ\u0001Æ\u0001Æ\u0001Æ\u0003Æ੪\u0008Æ\u0001Ç\u0001Ç\u0003Ç੮\u0008Ç\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0001Ç\u0003Ç\u0a77\u0008Ç\u0001È\u0001È\u0003È\u0a7b\u0008È\u0001È\u0001È\u0001È\u0001È\u0001É\u0001É\u0003Éઃ\u0008É\u0001É\u0003Éઆ\u0008É\u0001É\u0001É\u0001É\u0001É\u0001É\u0001É\u0001É\u0003Éએ\u0008É\u0001Ê\u0001Ê\u0001Ë\u0001Ë\u0001Ì\u0001Ì\u0001Í\u0001Í\u0001Í\u0001Í\u0003Íછ\u0008Í\u0001Î\u0001Î\u0001Î\u0001Î\u0001Î\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ï\u0001Ð\u0001Ð\u0001Ð\u0001Ñ\u0001Ñ\u0003Ñબ\u0008Ñ\u0001Ò\u0003Òય\u0008Ò\u0001Ò\u0001Ò\u0003Òળ\u0008Ò\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0001Ó\u0005Ó઼\u0008Ó\nÓ\u000cÓિ\tÓ\u0001Ô\u0001Ô\u0001Ô\u0001Õ\u0003Õૅ\u0008Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0003Õૌ\u0008Õ\u0001Õ\u0001Õ\u0001Õ\u0001Õ\u0003Õ\u0ad2\u0008Õ\u0001Ö\u0001Ö\u0001Ö\u0001Ö\u0003Ö\u0ad8\u0008Ö\u0001×\u0001×\u0001×\u0001×\u0003×\u0ade\u0008×\u0001×\u0001×\u0001×\u0001Ø\u0003Ø\u0ae4\u0008Ø\u0001Ø\u0001Ø\u0001Ø\u0003Ø૩\u0008Ø\u0001Ø\u0003Ø૬\u0008Ø\u0001Ù\u0001Ù\u0001Ù\u0001Ù\u0001Ú\u0001Ú\u0001Ú\u0001Ú\u0001Û\u0001Û\u0001Û\u0001Û\u0001Û\u0003Ûૻ\u0008Û\u0001Û\u0001Û\u0001Û\u0001Û\u0001Û\u0001Û\u0001Û\u0003Û\u0b04\u0008Û\u0004Ûଆ\u0008Û\u000bÛ\u000cÛଇ\u0001Ü\u0001Ü\u0001Ü\u0001Ü\u0003Ü\u0b0e\u0008Ü\u0001Ý\u0001Ý\u0001Ý\u0001Ý\u0003Ýଔ\u0008Ý\u0001Ý\u0001Ý\u0001Ý\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001Þ\u0001ß\u0001ß\u0001ß\u0001ß\u0003ßଦ\u0008ß\u0001ß\u0001ß\u0001ß\u0001ß\u0001ß\u0001ß\u0003ßମ\u0008ß\u0001ß\u0003ß\u0b31\u0008ß\u0005ßଳ\u0008ß\nß\u000cßଶ\tß\u0001ß\u0001ß\u0001ß\u0001ß\u0001" ++ "ß\u0001ß\u0001ß\u0003ßି\u0008ß\u0005ßୁ\u0008ß\nß\u000cßୄ\tß\u0001à\u0001à\u0003àୈ\u0008à\u0001à\u0001à\u0001à\u0003à୍\u0008à\u0001á\u0003á\u0b50\u0008á\u0001á\u0001á\u0001á\u0003á୕\u0008á\u0001â\u0003â\u0b58\u0008â\u0001â\u0001â\u0001â\u0001ã\u0001ã\u0003ãୟ\u0008ã\u0001ä\u0001ä\u0003äୣ\u0008ä\u0001ä\u0001ä\u0001å\u0001å\u0001å\u0001æ\u0001æ\u0001æ\u0001æ\u0001ç\u0001ç\u0003ç୰\u0008ç\u0001ç\u0001ç\u0001ç\u0001ç\u0004ç୶\u0008ç\u000bç\u000cç୷\u0001ç\u0001ç\u0001è\u0001è\u0001è\u0001è\u0001è\u0003è\u0b81\u0008è\u0001é\u0001é\u0001é\u0003éஆ\u0008é\u0001é\u0003éஉ\u0008é\u0001ê\u0001ê\u0001ê\u0003êஎ\u0008ê\u0001ë\u0001ë\u0001ë\u0003ëஓ\u0008ë\u0001ì\u0003ì\u0b96\u0008ì\u0001ì\u0001ì\u0003ìச\u0008ì\u0001ì\u0003ì\u0b9d\u0008ì\u0001í\u0001í\u0001í\u0001í\u0003íண\u0008í\u0001í\u0003í\u0ba6\u0008í\u0001î\u0001î\u0003îப\u0008î\u0001î\u0001î\u0003îம\u0008î\u0001î\u0003îற\u0008î\u0001ï\u0001ï\u0003ïவ\u0008ï\u0001ï\u0001ï\u0001ð\u0001ð\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0001ñ\u0003ñே\u0008ñ\u0001ò\u0001ò\u0003òோ\u0008ò\u0001ò\u0001ò\u0001ò\u0001ó\u0003ó\u0bd1\u0008ó\u0001ó\u0001ó\u0001ô\u0001ô\u0001ô\u0001ô\u0001ô\u0003ô\u0bda\u0008ô\u0001ô\u0001ô\u0001ô\u0003ô\u0bdf\u0008ô\u0001ô\u0003ô\u0be2\u0008ô\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0001õ\u0003õ௱\u0008õ\u0001ö\u0001ö\u0001ö\u0001ö\u0001ö\u0003ö௸\u0008ö\u0001÷\u0001÷\u0003÷\u0bfc\u0008÷\u0001÷\u0001÷\u0001ø\u0001ø\u0003øం\u0008ø\u0001ø\u0001ø\u0001ù\u0001ù\u0003ùఈ\u0008ù\u0001ù\u0001ù\u0001ú\u0001ú\u0003úఎ\u0008ú\u0001ú\u0001ú\u0001ú\u0003úఓ\u0008ú\u0001û\u0001û\u0001û\u0003ûఘ\u0008û\u0001û\u0001û\u0001û\u0001û\u0001û\u0001û\u0001û\u0003ûడ\u0008û\u0001ü\u0001ü\u0001ü\u0001ü\u0001" ++ "ü\u0001ü\u0003ü\u0c29\u0008ü\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýర\u0008ý\u0003ýల\u0008ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0001ý\u0003ýీ\u0008ý\u0001ý\u0001ý\u0003ýౄ\u0008ý\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0003þౌ\u0008þ\u0001þ\u0001þ\u0003þ\u0c50\u0008þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0001þ\u0003þౢ\u0008þ\u0001ÿ\u0001ÿ\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0001Ā\u0003Ā౯\u0008Ā\u0001ā\u0001ā\u0001ā\u0001ā\u0001Ă\u0001Ă\u0001Ă\u0001Ă\u0001Ă\u0001Ă\u0003Ă౻\u0008Ă\u0001Ă\u0003Ă౾\u0008Ă\u0001Ă\u0001Ă\u0003Ăಂ\u0008Ă\u0001Ă\u0001Ă\u0003Ăಆ\u0008Ă\u0001Ă\u0003Ăಉ\u0008Ă\u0003Ăಋ\u0008Ă\u0001Ă\u0001Ă\u0001Ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0003ăಖ\u0008ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0003ăಝ\u0008ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0001ă\u0003ăಥ\u0008ă\u0003ăಧ\u0008ă\u0001ă\u0001ă\u0001ă\u0001Ą\u0001Ą\u0001Ą\u0001Ą\u0001Ą\u0003Ąಱ\u0008Ą\u0001Ą\u0001Ą\u0001Ą\u0001Ą\u0001Ą\u0003Ąಸ\u0008Ą\u0003Ą\u0cba\u0008Ą\u0001Ą\u0001Ą\u0001Ą\u0003Ąಿ\u0008Ą\u0003Ąು\u0008Ą\u0001ą\u0001ą\u0001Ć\u0001Ć\u0001ć\u0001ć\u0001Ĉ\u0001Ĉ\u0001ĉ\u0001ĉ\u0001Ċ\u0001Ċ\u0001Ċ\u0003Ċ\u0cd0\u0008Ċ\u0001Ċ\u0001Ċ\u0001ċ\u0001ċ\u0001Č\u0001Č\u0001č\u0001č\u0001Ď\u0001Ď\u0001Ď\u0005Ďೝ\u0008Ď\nĎ\u000cĎೠ\tĎ\u0001ď\u0001ď\u0003ď\u0ce4\u0008ď\u0001ď\u0003ď೧\u0008ď\u0001Đ\u0001Đ\u0003Đ೫\u0008Đ\u0001đ\u0001đ\u0003đ೯\u0008đ\u0001đ\u0001đ\u0001đ\u0003đ\u0cf4\u0008đ\u0001Ē\u0001Ē\u0001Ē\u0003Ē\u0cf9\u0008Ē\u0001Ē\u0001Ē\u0001Ē\u0001Ē\u0001Ē\u0001Ē\u0003Ēഁ\u0008Ē\u0001ē\u0001ē\u0001ē\u0003ēആ\u0008ē\u0001ē\u0001ē\u0001ē\u0001ē\u0001Ĕ\u0001Ĕ\u0003Ĕഎ\u0008Ĕ\u0001ĕ\u0001ĕ\u0001ĕ\u0003ĕഓ\u0008ĕ" ++ "\u0001ĕ\u0001ĕ\u0001Ė\u0001Ė\u0001Ė\u0005Ėച\u0008Ė\nĖ\u000cĖഝ\tĖ\u0001ė\u0001ė\u0001ė\u0003ėഢ\u0008ė\u0001ė\u0001ė\u0001ė\u0003ėധ\u0008ė\u0001ė\u0001ė\u0001ė\u0001ė\u0005ėഭ\u0008ė\nė\u000cėര\tė\u0003ėല\u0008ė\u0001ė\u0001ė\u0001ė\u0001ė\u0001ė\u0001ė\u0003ėഺ\u0008ė\u0001ė\u0001ė\u0003ėാ\u0008ė\u0003ėീ\u0008ė\u0001Ę\u0001Ę\u0001Ę\u0003Ę\u0d45\u0008Ę\u0001ę\u0001ę\u0001Ě\u0001Ě\u0001ě\u0001ě\u0001Ĝ\u0001Ĝ\u0001Ĝ\u0001Ĝ\u0001Ĝ\u0003Ĝ\u0d52\u0008Ĝ\u0003Ĝൔ\u0008Ĝ\u0001ĝ\u0001ĝ\u0001ĝ\u0001ĝ\u0001ĝ\u0003ĝ൛\u0008ĝ\u0003ĝ൝\u0008ĝ\u0001Ğ\u0001Ğ\u0001Ğ\u0001Ğ\u0001Ğ\u0001Ğ\u0003Ğ\u0d65\u0008Ğ\u0001Ğ\u0003Ğ൨\u0008Ğ\u0001Ğ\u0003Ğ൫\u0008Ğ\u0001ğ\u0001ğ\u0001ğ\u0001ğ\u0001ğ\u0003ğ൲\u0008ğ\u0001ğ\u0001ğ\u0001ğ\u0004ğ൷\u0008ğ\u000bğ\u000cğ൸\u0003ğൻ\u0008ğ\u0001ğ\u0003ğൾ\u0008ğ\u0001ğ\u0003ğඁ\u0008ğ\u0001Ġ\u0001Ġ\u0001Ġ\u0001ġ\u0001ġ\u0001Ģ\u0001Ģ\u0001Ģ\u0001ģ\u0001ģ\u0001Ĥ\u0003Ĥඎ\u0008Ĥ\u0001Ĥ\u0001Ĥ\u0001Ĥ\u0001Ĥ\u0003Ĥඔ\u0008Ĥ\u0001Ĥ\u0003Ĥ\u0d97\u0008Ĥ\u0001Ĥ\u0001Ĥ\u0003Ĥඛ\u0008Ĥ\u0001Ĥ\u0003Ĥඞ\u0008Ĥ\u0001ĥ\u0001ĥ\u0001ĥ\u0003ĥඣ\u0008ĥ\u0001Ħ\u0001Ħ\u0001Ħ\u0001Ħ\u0003Ħඩ\u0008Ħ\u0001Ħ\u0001Ħ\u0001Ħ\u0001Ħ\u0003Ħද\u0008Ħ\u0004Ħන\u0008Ħ\u000bĦ\u000cĦ\u0db2\u0001Ħ\u0001Ħ\u0001Ħ\u0004Ħම\u0008Ħ\u000bĦ\u000cĦඹ\u0003Ħ\u0dbc\u0008Ħ\u0001Ħ\u0003Ħ\u0dbf\u0008Ħ\u0001ħ\u0001ħ\u0001ħ\u0001ħ\u0001Ĩ\u0001Ĩ\u0001Ĩ\u0004Ĩ\u0dc8\u0008Ĩ\u000bĨ\u000cĨ\u0dc9\u0001ĩ\u0001ĩ\u0001ĩ\u0001ĩ\u0001Ī\u0001Ī\u0001Ī\u0001Ī\u0003Īු\u0008Ī\u0001ī\u0001ī\u0001ī\u0001ī\u0003īේ\u0008ī\u0001Ĭ\u0001Ĭ\u0001Ĭ\u0003Ĭෟ\u0008Ĭ\u0003Ĭ\u0de1\u0008Ĭ\u0001Ĭ\u0003Ĭ\u0de4\u0008Ĭ\u0001ĭ\u0001ĭ\u0001Į\u0001Į\u0001Į\u0003Į෫\u0008Į\u0001Į\u0001Į\u0003Į෯\u0008Į\u0001Į\u0003Įෲ\u0008Į\u0003Į෴\u0008Į\u0001į\u0001į\u0001İ\u0001İ\u0001ı\u0001ı\u0001" ++ "ı\u0001ı\u0001ı\u0003ı\u0dff\u0008ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0001ı\u0003ıฌ\u0008ı\u0003ıฎ\u0008ı\u0001ı\u0001ı\u0003ıฒ\u0008ı\u0001IJ\u0001IJ\u0001IJ\u0001IJ\u0003IJธ\u0008IJ\u0001IJ\u0001IJ\u0001IJ\u0001ij\u0001ij\u0001ij\u0001ij\u0003ijม\u0008ij\u0001ij\u0001ij\u0001ij\u0001ij\u0001ij\u0001ij\u0001ij\u0004ijส\u0008ij\u000bij\u000cijห\u0001Ĵ\u0001Ĵ\u0001Ĵ\u0001Ĵ\u0003Ĵา\u0008Ĵ\u0001ĵ\u0001ĵ\u0001ĵ\u0001Ķ\u0001Ķ\u0001Ķ\u0001ķ\u0001ķ\u0001ķ\u0001ĸ\u0001ĸ\u0001ĸ\u0001Ĺ\u0001Ĺ\u0003Ĺโ\u0008Ĺ\u0001Ĺ\u0001Ĺ\u0001Ĺ\u0003Ĺ็\u0008Ĺ\u0001ĺ\u0001ĺ\u0003ĺ๋\u0008ĺ\u0001Ļ\u0001Ļ\u0003Ļ๏\u0008Ļ\u0001ļ\u0001ļ\u0001ļ\u0005ļ๔\u0008ļ\nļ\u000cļ๗\tļ\u0001Ľ\u0001Ľ\u0001Ľ\u0005Ľ\u0e5c\u0008Ľ\nĽ\u000cĽ\u0e5f\tĽ\u0001ľ\u0001ľ\u0003ľ\u0e63\u0008ľ\u0001Ŀ\u0001Ŀ\u0001Ŀ\u0005Ŀ\u0e68\u0008Ŀ\nĿ\u000cĿ\u0e6b\tĿ\u0001ŀ\u0001ŀ\u0001ŀ\u0001ŀ\u0005ŀ\u0e71\u0008ŀ\nŀ\u000cŀ\u0e74\tŀ\u0003ŀ\u0e76\u0008ŀ\u0001ŀ\u0001ŀ\u0001Ł\u0001Ł\u0001Ł\u0004Ł\u0e7d\u0008Ł\u000bŁ\u000cŁ\u0e7e\u0001ł\u0001ł\u0001Ń\u0001Ń\u0003Ń\u0e85\u0008Ń\u0001ń\u0001ń\u0003ńຉ\u0008ń\u0001Ņ\u0001Ņ\u0003Ņຍ\u0008Ņ\u0001ņ\u0001ņ\u0003ņຑ\u0008ņ\u0001Ň\u0001Ň\u0001Ň\u0001Ň\u0001Ň\u0001Ň\u0001Ň\u0001Ň\u0001Ň\u0005Ňຜ\u0008Ň\nŇ\u000cŇຟ\tŇ\u0003Ňມ\u0008Ň\u0001Ň\u0001Ň\u0001ň\u0001ň\u0003ňວ\u0008ň\u0001ʼn\u0001ʼn\u0001Ŋ\u0001Ŋ\u0001ŋ\u0001ŋ\u0003ŋຯ\u0008ŋ\u0001Ō\u0001Ō\u0001ō\u0001ō\u0001ō\u0001ō\u0001ō\u0001ō\u0001ō\u0001ō\u0001ō\u0003ōຼ\u0008ō\u0001Ŏ\u0001Ŏ\u0003Ŏເ\u0008Ŏ\u0001ŏ\u0001ŏ\u0001Ő\u0001Ő\u0001ő\u0001ő\u0001ő\u0000\u0000Œ\u0000\u0002\u0004\u0006\u0008\n\u000c\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~" ++ "€‚„†ˆŠŒŽ’”–˜šœž ¢¤¦¨ª¬®°²´¶¸º¼¾ÀÂÄÆÈÊÌÎÐÒÔÖØÚÜÞàâäæèêìîðòôöøúüþĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĸĺļľŀłńņňŊŌŎŐŒŔŖŘŚŜŞŠŢŤŦŨŪŬŮŰŲŴŶŸźżžƀƂƄƆƈƊƌƎƐƒƔƖƘƚƜƞƠƢƤƦƨƪƬƮưƲƴƶƸƺƼƾǀǂDŽdžLjNJnjǎǐǒǔǖǘǚǜǞǠǢǤǦǨǪǬǮǰDzǴǶǸǺǼǾȀȂȄȆȈȊȌȎȐȒȔȖȘȚȜȞȠȢȤȦȨȪȬȮȰȲȴȶȸȺȼȾɀɂɄɆɈɊɌɎɐɒɔɖɘɚɜɞɠɢɤɦɨɪɬɮɰɲɴɶɸɺɼɾʀʂʄʆʈʊʌʎʐʒʔʖʘʚʜʞʠʢ\u0000O\u0002\u0000\u0012\u0012QQ\u0001\u0000\u0018\u0019\u0001\u0000KL\u0002\u0000¸¸ĂĂ\u0002\u0000NN®®\u0002\u0000==ŸŸ\u0001\u0000íî\u0003\u0000$$;;kk\u0002\u0000\u0011\u0011ýý\u0001\u0000z{\u0001\u0000ÃÄ\u0002\u0000\u0012\u0012\u0015\u0015\u0002\u0000œœķķ\u0002\u0000¡¡ĶĶ\u0002\u0000||ĸĸ\u0002\u0000//\u0002\u0000//‹‹\u0006\u0000ddvv||””œœ£¤\u0002\u000000ěě\u0001\u0000¨«\u0003\u0000UU¡¡ÇÇ\u0003\u0000RR¢¢ďď\u0002\u0000¡¡ÇÇ\u0004\u0000\u0012\u0012\u0015\u0015°°āā\u0003\u0000##••ĔĔ\u0001\u0000\u0004\u0007\u0002\u0000DDĎĎ\u0001\u0000Įį\u0002\u0000\u0016\u0016——\u0002\u0000%%ĩĩ\u0006\u0000ssššÉÉ××ČČĨĨ\u0002\u0000\u0012\u0012&&\u0002\u0000­­ßà\u0001\u0000ßà\u0002\u0000­­àà\u0001\u0000ÐÑ\u0001\u0000tu\u0001\u0000ûü\u0002\u0000pp" ++ "¹¹\u0002\u0000\u001a\u001aææ\u0002\u0000JJww\u0001\u0000ëì\u0001\u0000øù\u0001\u0000AB\u0002\u0000\u0012\u0012ÊÊ\u0001\u0000ģĤ\u0001\u0000ÔÕ\u0002\u0000aaÆÆ\u0002\u0000\u000c\u000cĉĉ\u0001\u000023\u0001\u0000ÎÏ\u0003\u0000AAEExx\u0002\u0000GG~~\u0002\u0000AAxx\u0001\u0000xy\u0001\u0000Ž\u0002\u0000ĚĚĜĜ\u0001\u0000¥¦\u0002\u0000--ġġ\u0001\u0000ÁÂ\u0002\u0000ÎÎëë\u0003\u0000\u000f\u000fAAģģ\u0002\u0000ëëģģ\u0001\u0000\r\u000e\u0001\u0000„…\u0001\u000078\u0001\u0000ĕĖ\u0002\u0000ŸŸÚÚ\u0001\u0000àá\u0001\u0000^_\u0002\u0000­­¯¯\u0001\u0000ÌÍ\u0001\u0000óô\u0002\u0000MMYY\u0001\u0000\u000f\u0010\u0002\u0000ººİİ\u0002\u0000ñòõõ\u0001\u0000\u0008\t\u0017\u0000\u000b\u001d\u001f.2OQQVceuw{}•š ¥§¬±´µ·ÆÉÊÌÕ××ÚÝßîðöøĎĐĚĜĵ၌\u0000ʤ\u0001\u0000\u0000\u0000\u0002ʲ\u0001\u0000\u0000\u0000\u0004ʸ\u0001\u0000\u0000\u0000\u0006ʾ\u0001\u0000\u0000\u0000\u0008ˊ\u0001\u0000\u0000\u0000\n˟\u0001\u0000\u0000\u0000\u000cˡ\u0001\u0000\u0000\u0000\u000e˭\u0001\u0000\u0000\u0000\u0010˯\u0001\u0000\u0000\u0000\u0012˱\u0001\u0000\u0000\u0000\u0014˵\u0001\u0000\u0000\u0000\u0016́\u0001\u0000\u0000\u0000\u0018̈\u0001\u0000\u0000\u0000\u001ȃ\u0001\u0000\u0000\u0000\u001c̖\u0001\u0000\u0000\u0000\u001e̘\u0001\u0000\u0000\u0000 ̚\u0001\u0000\u0000\u0000\"̤\u0001\u0000\u0000\u0000$̧\u0001\u0000\u0000\u0000&̪\u0001\u0000\u0000\u0000(̭\u0001\u0000\u0000\u0000*̲\u0001\u0000\u0000\u0000,̵\u0001\u0000\u0000\u0000.̸\u0001\u0000\u0000\u00000͗\u0001\u0000\u0000\u00002͙\u0001\u0000\u0000\u00004ͪ\u0001\u0000\u0000\u00006ͭ\u0001\u0000\u0000\u00008\u0379\u0001\u0000\u0000\u0000:Ι\u0001\u0000\u0000\u0000<Λ\u0001\u0000\u0000\u0000>ι\u0001\u0000\u0000\u0000@ρ\u0001\u0000\u0000\u0000Bυ\u0001\u0000\u0000\u0000Dϋ\u0001\u0000\u0000\u0000FϮ\u0001\u0000\u0000\u0000Hϱ\u0001\u0000\u0000\u0000Jϳ\u0001\u0000\u0000\u0000Lϸ\u0001\u0000\u0000\u0000NІ\u0001\u0000\u0000\u0000PД\u0001\u0000\u0000\u0000RР\u0001\u0000\u0000\u0000TЮ\u0001\u0000\u0000\u0000Vо\u0001\u0000\u0000\u0000X" ++ "т\u0001\u0000\u0000\u0000Zц\u0001\u0000\u0000\u0000\\ї\u0001\u0000\u0000\u0000^љ\u0001\u0000\u0000\u0000`ѡ\u0001\u0000\u0000\u0000bѬ\u0001\u0000\u0000\u0000dѶ\u0001\u0000\u0000\u0000fҏ\u0001\u0000\u0000\u0000hғ\u0001\u0000\u0000\u0000jҕ\u0001\u0000\u0000\u0000lҧ\u0001\u0000\u0000\u0000nӍ\u0001\u0000\u0000\u0000pӏ\u0001\u0000\u0000\u0000rӑ\u0001\u0000\u0000\u0000tӓ\u0001\u0000\u0000\u0000vӛ\u0001\u0000\u0000\u0000xӫ\u0001\u0000\u0000\u0000zӷ\u0001\u0000\u0000\u0000|ԃ\u0001\u0000\u0000\u0000~ԇ\u0001\u0000\u0000\u0000€ԓ\u0001\u0000\u0000\u0000‚Ԙ\u0001\u0000\u0000\u0000„Ԡ\u0001\u0000\u0000\u0000†ԣ\u0001\u0000\u0000\u0000ˆԦ\u0001\u0000\u0000\u0000Šԩ\u0001\u0000\u0000\u0000ŒԮ\u0001\u0000\u0000\u0000ŽԱ\u0001\u0000\u0000\u0000Ս\u0001\u0000\u0000\u0000’՝\u0001\u0000\u0000\u0000”՟\u0001\u0000\u0000\u0000–ա\u0001\u0000\u0000\u0000˜գ\u0001\u0000\u0000\u0000šղ\u0001\u0000\u0000\u0000œմ\u0001\u0000\u0000\u0000žտ\u0001\u0000\u0000\u0000 ֊\u0001\u0000\u0000\u0000¢֒\u0001\u0000\u0000\u0000¤֝\u0001\u0000\u0000\u0000¦֥\u0001\u0000\u0000\u0000¨ֱ\u0001\u0000\u0000\u0000ªֺ\u0001\u0000\u0000\u0000¬ּ\u0001\u0000\u0000\u0000®ׅ\u0001\u0000\u0000\u0000°\u05c8\u0001\u0000\u0000\u0000²א\u0001\u0000\u0000\u0000´ט\u0001\u0000\u0000\u0000¶ף\u0001\u0000\u0000\u0000¸ר\u0001\u0000\u0000\u0000ºװ\u0001\u0000\u0000\u0000¼ؔ\u0001\u0000\u0000\u0000¾ؖ\u0001\u0000\u0000\u0000Àؘ\u0001\u0000\u0000\u0000Âؠ\u0001\u0000\u0000\u0000Äب\u0001\u0000\u0000\u0000Æس\u0001\u0000\u0000\u0000Èص\u0001\u0000\u0000\u0000Êً\u0001\u0000\u0000\u0000Ìٍ\u0001\u0000\u0000\u0000Îِ\u0001\u0000\u0000\u0000Ðٔ\u0001\u0000\u0000\u0000Òٚ\u0001\u0000\u0000\u0000Ôٲ\u0001\u0000\u0000\u0000Öٽ\u0001\u0000\u0000\u0000Øٿ\u0001\u0000\u0000\u0000Úڋ\u0001\u0000\u0000\u0000Üڐ\u0001\u0000\u0000\u0000Þڝ\u0001\u0000\u0000\u0000àۊ\u0001\u0000\u0000\u0000âی\u0001\u0000\u0000\u0000ä۞\u0001\u0000\u0000\u0000æۭ\u0001\u0000\u0000\u0000èۺ\u0001\u0000\u0000\u0000ê܅\u0001\u0000\u0000\u0000ì\u070e\u0001\u0000\u0000\u0000îܜ\u0001\u0000\u0000\u0000ðܞ\u0001\u0000\u0000\u0000òܠ\u0001\u0000\u0000\u0000ôܤ\u0001\u0000\u0000\u0000öܺ\u0001\u0000\u0000\u0000øܼ\u0001\u0000\u0000\u0000ú݁\u0001\u0000\u0000\u0000üݏ\u0001\u0000\u0000\u0000þݝ\u0001\u0000\u0000\u0000Āݣ\u0001\u0000\u0000\u0000Ăݨ\u0001" ++ "\u0000\u0000\u0000Ąݬ\u0001\u0000\u0000\u0000Ćݹ\u0001\u0000\u0000\u0000Ĉݻ\u0001\u0000\u0000\u0000Ċހ\u0001\u0000\u0000\u0000Čނ\u0001\u0000\u0000\u0000Ďޓ\u0001\u0000\u0000\u0000Đޕ\u0001\u0000\u0000\u0000Ēޝ\u0001\u0000\u0000\u0000Ĕޠ\u0001\u0000\u0000\u0000Ėޢ\u0001\u0000\u0000\u0000Ęު\u0001\u0000\u0000\u0000Ě\u07b2\u0001\u0000\u0000\u0000Ĝ߽\u0001\u0000\u0000\u0000Ğࠂ\u0001\u0000\u0000\u0000Ġࠄ\u0001\u0000\u0000\u0000Ģࠉ\u0001\u0000\u0000\u0000Ĥࠚ\u0001\u0000\u0000\u0000Ħࠨ\u0001\u0000\u0000\u0000Ĩ࠲\u0001\u0000\u0000\u0000Īࡊ\u0001\u0000\u0000\u0000Ĭࡌ\u0001\u0000\u0000\u0000Įࡑ\u0001\u0000\u0000\u0000İࡔ\u0001\u0000\u0000\u0000IJࡗ\u0001\u0000\u0000\u0000Ĵ\u086f\u0001\u0000\u0000\u0000Ķࡲ\u0001\u0000\u0000\u0000ĸࡷ\u0001\u0000\u0000\u0000ĺࡹ\u0001\u0000\u0000\u0000ļࢋ\u0001\u0000\u0000\u0000ľ\u0893\u0001\u0000\u0000\u0000ŀ\u0895\u0001\u0000\u0000\u0000ł࢜\u0001\u0000\u0000\u0000ńࢽ\u0001\u0000\u0000\u0000ņࣃ\u0001\u0000\u0000\u0000ň࣊\u0001\u0000\u0000\u0000Ŋࣕ\u0001\u0000\u0000\u0000Ōࣗ\u0001\u0000\u0000\u0000Ŏࣞ\u0001\u0000\u0000\u0000Őࣨ\u0001\u0000\u0000\u0000Œ࣯\u0001\u0000\u0000\u0000Ŕࣺ\u0001\u0000\u0000\u0000Ŗआ\u0001\u0000\u0000\u0000Řई\u0001\u0000\u0000\u0000Śख\u0001\u0000\u0000\u0000Ŝघ\u0001\u0000\u0000\u0000Şछ\u0001\u0000\u0000\u0000Šण\u0001\u0000\u0000\u0000Ţद\u0001\u0000\u0000\u0000Ťय\u0001\u0000\u0000\u0000Ŧश\u0001\u0000\u0000\u0000Ũस\u0001\u0000\u0000\u0000Ūऽ\u0001\u0000\u0000\u0000Ŭॎ\u0001\u0000\u0000\u0000Ůং\u0001\u0000\u0000\u0000Ű\u0984\u0001\u0000\u0000\u0000Ų\u09ba\u0001\u0000\u0000\u0000Ŵ়\u0001\u0000\u0000\u0000Ŷূ\u0001\u0000\u0000\u0000Ÿ\u09d4\u0001\u0000\u0000\u0000ź২\u0001\u0000\u0000\u0000ż৵\u0001\u0000\u0000\u0000žਏ\u0001\u0000\u0000\u0000ƀਢ\u0001\u0000\u0000\u0000Ƃਨ\u0001\u0000\u0000\u0000Ƅ\u0a3b\u0001\u0000\u0000\u0000Ɔ\u0a50\u0001\u0000\u0000\u0000ƈ\u0a52\u0001\u0000\u0000\u0000Ɗ\u0a5d\u0001\u0000\u0000\u0000ƌ\u0a65\u0001\u0000\u0000\u0000Ǝ੫\u0001\u0000\u0000\u0000Ɛ\u0a78\u0001\u0000\u0000\u0000ƒ\u0a80\u0001\u0000\u0000\u0000Ɣઐ\u0001\u0000\u0000\u0000Ɩ\u0a92\u0001\u0000\u0000\u0000Ƙઔ\u0001\u0000\u0000\u0000ƚખ\u0001\u0000\u0000\u0000Ɯજ\u0001\u0000\u0000\u0000ƞડ\u0001\u0000\u0000\u0000Ơદ\u0001\u0000\u0000\u0000Ƣ\u0aa9\u0001\u0000\u0000\u0000Ƥમ\u0001\u0000\u0000\u0000Ʀ\u0ab4\u0001\u0000\u0000\u0000ƨી\u0001\u0000\u0000\u0000ƪૄ\u0001\u0000\u0000\u0000Ƭ\u0ad3\u0001\u0000\u0000" ++ "\u0000Ʈ\u0ad9\u0001\u0000\u0000\u0000ưૣ\u0001\u0000\u0000\u0000Ʋ૭\u0001\u0000\u0000\u0000ƴ૱\u0001\u0000\u0000\u0000ƶ\u0af5\u0001\u0000\u0000\u0000Ƹଉ\u0001\u0000\u0000\u0000ƺଏ\u0001\u0000\u0000\u0000Ƽଘ\u0001\u0000\u0000\u0000ƾଡ\u0001\u0000\u0000\u0000ǀ\u0b45\u0001\u0000\u0000\u0000ǂ\u0b4f\u0001\u0000\u0000\u0000DŽୗ\u0001\u0000\u0000\u0000dž\u0b5e\u0001\u0000\u0000\u0000Ljୠ\u0001\u0000\u0000\u0000NJ୦\u0001\u0000\u0000\u0000nj୩\u0001\u0000\u0000\u0000ǎ୭\u0001\u0000\u0000\u0000ǐ\u0b80\u0001\u0000\u0000\u0000ǒஂ\u0001\u0000\u0000\u0000ǔஊ\u0001\u0000\u0000\u0000ǖஏ\u0001\u0000\u0000\u0000ǘக\u0001\u0000\u0000\u0000ǚஞ\u0001\u0000\u0000\u0000ǜ\u0ba7\u0001\u0000\u0000\u0000Ǟல\u0001\u0000\u0000\u0000Ǡஸ\u0001\u0000\u0000\u0000Ǣெ\u0001\u0000\u0000\u0000Ǥை\u0001\u0000\u0000\u0000Ǧௐ\u0001\u0000\u0000\u0000Ǩ\u0be1\u0001\u0000\u0000\u0000Ǫ\u0be3\u0001\u0000\u0000\u0000Ǭ௷\u0001\u0000\u0000\u0000Ǯ௹\u0001\u0000\u0000\u0000ǰ\u0bff\u0001\u0000\u0000\u0000Dzఅ\u0001\u0000\u0000\u0000Ǵఒ\u0001\u0000\u0000\u0000Ƕఔ\u0001\u0000\u0000\u0000Ǹఢ\u0001\u0000\u0000\u0000Ǻప\u0001\u0000\u0000\u0000Ǽ\u0c45\u0001\u0000\u0000\u0000Ǿౣ\u0001\u0000\u0000\u0000Ȁ\u0c65\u0001\u0000\u0000\u0000Ȃ\u0c70\u0001\u0000\u0000\u0000Ȅಊ\u0001\u0000\u0000\u0000Ȇದ\u0001\u0000\u0000\u0000Ȉಫ\u0001\u0000\u0000\u0000Ȋೂ\u0001\u0000\u0000\u0000Ȍೄ\u0001\u0000\u0000\u0000Ȏೆ\u0001\u0000\u0000\u0000Ȑೈ\u0001\u0000\u0000\u0000Ȓೊ\u0001\u0000\u0000\u0000Ȕೌ\u0001\u0000\u0000\u0000Ȗ\u0cd3\u0001\u0000\u0000\u0000Șೕ\u0001\u0000\u0000\u0000Ț\u0cd7\u0001\u0000\u0000\u0000Ȝ\u0cd9\u0001\u0000\u0000\u0000Ȟ೦\u0001\u0000\u0000\u0000Ƞ೨\u0001\u0000\u0000\u0000Ȣೳ\u0001\u0000\u0000\u0000Ȥ\u0cf8\u0001\u0000\u0000\u0000Ȧഅ\u0001\u0000\u0000\u0000Ȩ\u0d0d\u0001\u0000\u0000\u0000Ȫഏ\u0001\u0000\u0000\u0000Ȭഖ\u0001\u0000\u0000\u0000Ȯി\u0001\u0000\u0000\u0000Ȱൄ\u0001\u0000\u0000\u0000Ȳെ\u0001\u0000\u0000\u0000ȴൈ\u0001\u0000\u0000\u0000ȶൊ\u0001\u0000\u0000\u0000ȸ\u0d53\u0001\u0000\u0000\u0000Ⱥ൜\u0001\u0000\u0000\u0000ȼ൞\u0001\u0000\u0000\u0000Ⱦ൬\u0001\u0000\u0000\u0000ɀං\u0001\u0000\u0000\u0000ɂඅ\u0001\u0000\u0000\u0000Ʉඇ\u0001\u0000\u0000\u0000Ɇඊ\u0001\u0000\u0000\u0000Ɉඍ\u0001\u0000\u0000\u0000Ɋජ\u0001\u0000\u0000\u0000Ɍඤ\u0001\u0000\u0000\u0000Ɏව\u0001\u0000\u0000\u0000ɐහ\u0001\u0000\u0000\u0000ɒ\u0dcb\u0001\u0000\u0000\u0000ɔා\u0001\u0000\u0000\u0000ɖ\u0dd5\u0001\u0000\u0000\u0000ɘ" ++ "\u0de3\u0001\u0000\u0000\u0000ɚ\u0de5\u0001\u0000\u0000\u0000ɜෳ\u0001\u0000\u0000\u0000ɞ\u0df5\u0001\u0000\u0000\u0000ɠ\u0df7\u0001\u0000\u0000\u0000ɢ\u0df9\u0001\u0000\u0000\u0000ɤณ\u0001\u0000\u0000\u0000ɦผ\u0001\u0000\u0000\u0000ɨอ\u0001\u0000\u0000\u0000ɪำ\u0001\u0000\u0000\u0000ɬึ\u0001\u0000\u0000\u0000ɮู\u0001\u0000\u0000\u0000ɰ\u0e3c\u0001\u0000\u0000\u0000ɲ฿\u0001\u0000\u0000\u0000ɴ๊\u0001\u0000\u0000\u0000ɶ๎\u0001\u0000\u0000\u0000ɸ๐\u0001\u0000\u0000\u0000ɺ๘\u0001\u0000\u0000\u0000ɼ\u0e62\u0001\u0000\u0000\u0000ɾ\u0e64\u0001\u0000\u0000\u0000ʀ\u0e6c\u0001\u0000\u0000\u0000ʂ\u0e79\u0001\u0000\u0000\u0000ʄ\u0e80\u0001\u0000\u0000\u0000ʆຄ\u0001\u0000\u0000\u0000ʈຈ\u0001\u0000\u0000\u0000ʊຌ\u0001\u0000\u0000\u0000ʌຐ\u0001\u0000\u0000\u0000ʎຒ\u0001\u0000\u0000\u0000ʐ\u0ea6\u0001\u0000\u0000\u0000ʒຨ\u0001\u0000\u0000\u0000ʔສ\u0001\u0000\u0000\u0000ʖຮ\u0001\u0000\u0000\u0000ʘະ\u0001\u0000\u0000\u0000ʚົ\u0001\u0000\u0000\u0000ʜ\u0ebf\u0001\u0000\u0000\u0000ʞແ\u0001\u0000\u0000\u0000ʠໃ\u0001\u0000\u0000\u0000ʢ\u0ec5\u0001\u0000\u0000\u0000ʤʩ\u0003\u0002\u0001\u0000ʥʦ\u0005÷\u0000\u0000ʦʨ\u0003\u0002\u0001\u0000ʧʥ\u0001\u0000\u0000\u0000ʨʫ\u0001\u0000\u0000\u0000ʩʧ\u0001\u0000\u0000\u0000ʩʪ\u0001\u0000\u0000\u0000ʪʭ\u0001\u0000\u0000\u0000ʫʩ\u0001\u0000\u0000\u0000ʬʮ\u0005÷\u0000\u0000ʭʬ\u0001\u0000\u0000\u0000ʭʮ\u0001\u0000\u0000\u0000ʮʯ\u0001\u0000\u0000\u0000ʯʰ\u0005\u0000\u0000\u0001ʰ\u0001\u0001\u0000\u0000\u0000ʱʳ\u0003\u0004\u0002\u0000ʲʱ\u0001\u0000\u0000\u0000ʲʳ\u0001\u0000\u0000\u0000ʳʶ\u0001\u0000\u0000\u0000ʴʷ\u0003Ģ‘\u0000ʵʷ\u0003\u0006\u0003\u0000ʶʴ\u0001\u0000\u0000\u0000ʶʵ\u0001\u0000\u0000\u0000ʷ\u0003\u0001\u0000\u0000\u0000ʸʹ\u0005ĥ\u0000\u0000ʹʺ\u0005Å\u0000\u0000ʺʼ\u00054\u0000\u0000ʻʽ\u0005\u0005\u0000\u0000ʼʻ\u0001\u0000\u0000\u0000ʼʽ\u0001\u0000\u0000\u0000ʽ\u0005\u0001\u0000\u0000\u0000ʾˆ\u0003\u0008\u0004\u0000ʿˁ\u0005ĝ\u0000\u0000ˀ˂\u0007\u0000\u0000\u0000ˁˀ\u0001\u0000\u0000\u0000ˁ˂\u0001\u0000\u0000\u0000˂˃\u0001\u0000\u0000\u0000˃˅\u0003\u0008\u0004\u0000˄ʿ\u0001\u0000\u0000\u0000˅ˈ\u0001\u0000\u0000\u0000ˆ˄\u0001\u0000\u0000\u0000ˆˇ\u0001\u0000\u0000\u0000ˇ\u0007\u0001\u0000\u0000\u0000ˈˆ\u0001\u0000\u0000\u0000ˉˋ\u0003\n\u0005\u0000ˊˉ\u0001\u0000\u0000\u0000ˋˌ\u0001\u0000\u0000\u0000ˌˊ\u0001" ++ "\u0000\u0000\u0000ˌˍ\u0001\u0000\u0000\u0000ˍ\t\u0001\u0000\u0000\u0000ˎˠ\u0003\u000c\u0006\u0000ˏˠ\u0003\u0010\u0008\u0000ːˠ\u0003\u0012\t\u0000ˑˠ\u0003*\u0015\u0000˒ˠ\u0003,\u0016\u0000˓ˠ\u00036\u001b\u0000˔ˠ\u0003.\u0017\u0000˕ˠ\u00032\u0019\u0000˖ˠ\u00038\u001c\u0000˗ˠ\u0003>\u001f\u0000˘ˠ\u0003(\u0014\u0000˙ˠ\u0003B!\u0000˚ˠ\u0003D\"\u0000˛ˠ\u0003P(\u0000˜ˠ\u0003L&\u0000˝ˠ\u0003N\'\u0000˞ˠ\u0003\\.\u0000˟ˎ\u0001\u0000\u0000\u0000˟ˏ\u0001\u0000\u0000\u0000˟ː\u0001\u0000\u0000\u0000˟ˑ\u0001\u0000\u0000\u0000˟˒\u0001\u0000\u0000\u0000˟˓\u0001\u0000\u0000\u0000˟˔\u0001\u0000\u0000\u0000˟˕\u0001\u0000\u0000\u0000˟˖\u0001\u0000\u0000\u0000˟˗\u0001\u0000\u0000\u0000˟˘\u0001\u0000\u0000\u0000˟˙\u0001\u0000\u0000\u0000˟˚\u0001\u0000\u0000\u0000˟˛\u0001\u0000\u0000\u0000˟˜\u0001\u0000\u0000\u0000˟˝\u0001\u0000\u0000\u0000˟˞\u0001\u0000\u0000\u0000ˠ\u000b\u0001\u0000\u0000\u0000ˡˣ\u0005Ģ\u0000\u0000ˢˤ\u0005x\u0000\u0000ˣˢ\u0001\u0000\u0000\u0000ˣˤ\u0001\u0000\u0000\u0000ˤ˥\u0001\u0000\u0000\u0000˥˦\u0003\u000e\u0007\u0000˦\r\u0001\u0000\u0000\u0000˧˨\u0005›\u0000\u0000˨˩\u0003\u000e\u0007\u0000˩˪\u0005ï\u0000\u0000˪ˮ\u0001\u0000\u0000\u0000˫ˮ\u0003Ȇ\u0000ˬˮ\u0003ɾĿ\u0000˭˧\u0001\u0000\u0000\u0000˭˫\u0001\u0000\u0000\u0000˭ˬ\u0001\u0000\u0000\u0000ˮ\u000f\u0001\u0000\u0000\u0000˯˰\u0005n\u0000\u0000˰\u0011\u0001\u0000\u0000\u0000˱˲\u0005é\u0000\u0000˲˳\u0003\u0014\n\u0000˳\u0013\u0001\u0000\u0000\u0000˴˶\u0005Q\u0000\u0000˵˴\u0001\u0000\u0000\u0000˵˶\u0001\u0000\u0000\u0000˶˷\u0001\u0000\u0000\u0000˷˹\u0003\u0018\u000c\u0000˸˺\u0003 \u0010\u0000˹˸\u0001\u0000\u0000\u0000˹˺\u0001\u0000\u0000\u0000˺˼\u0001\u0000\u0000\u0000˻˽\u0003\"\u0011\u0000˼˻\u0001\u0000\u0000\u0000˼˽\u0001\u0000\u0000\u0000˽˿\u0001\u0000\u0000\u0000˾̀\u0003$\u0012\u0000˿˾\u0001\u0000\u0000\u0000˿̀\u0001\u0000\u0000\u0000̀\u0015\u0001\u0000\u0000\u0000́̄\u0003°X\u0000̂̃\u0005\u0017\u0000\u0000̃̅\u0003ĔŠ\u0000̄̂\u0001\u0000\u0000\u0000̄̅\u0001\u0000\u0000\u0000̅\u0017\u0001\u0000\u0000\u0000̆̉\u0005ď\u0000\u0000̇̉\u0003\u0016\u000b\u0000̈̆\u0001\u0000\u0000" ++ "\u0000̈̇\u0001\u0000\u0000\u0000̉̎\u0001\u0000\u0000\u0000̊̋\u00051\u0000\u0000̋̍\u0003\u0016\u000b\u0000̌̊\u0001\u0000\u0000\u0000̍̐\u0001\u0000\u0000\u0000̎̌\u0001\u0000\u0000\u0000̎̏\u0001\u0000\u0000\u0000̏\u0019\u0001\u0000\u0000\u0000̐̎\u0001\u0000\u0000\u0000̑̔\u0003°X\u0000̒̕\u0003\u001c\u000e\u0000̓̕\u0003\u001e\u000f\u0000̔̒\u0001\u0000\u0000\u0000̔̓\u0001\u0000\u0000\u0000̔̕\u0001\u0000\u0000\u0000̕\u001b\u0001\u0000\u0000\u0000̖̗\u0007\u0001\u0000\u0000̗\u001d\u0001\u0000\u0000\u0000̘̙\u0007\u0002\u0000\u0000̙\u001f\u0001\u0000\u0000\u0000̛̚\u0005¿\u0000\u0000̛̜\u0005(\u0000\u0000̡̜\u0003\u001a\r\u0000̝̞\u00051\u0000\u0000̞̠\u0003\u001a\r\u0000̟̝\u0001\u0000\u0000\u0000̠̣\u0001\u0000\u0000\u0000̡̟\u0001\u0000\u0000\u0000̡̢\u0001\u0000\u0000\u0000̢!\u0001\u0000\u0000\u0000̡̣\u0001\u0000\u0000\u0000̤̥\u0007\u0003\u0000\u0000̥̦\u0003°X\u0000̦#\u0001\u0000\u0000\u0000̧̨\u0005–\u0000\u0000̨̩\u0003°X\u0000̩%\u0001\u0000\u0000\u0000̪̫\u0005ĭ\u0000\u0000̫̬\u0003°X\u0000̬\'\u0001\u0000\u0000\u0000̭̮\u0005Į\u0000\u0000̮̰\u0003\u0014\n\u0000̯̱\u0003&\u0013\u0000̰̯\u0001\u0000\u0000\u0000̰̱\u0001\u0000\u0000\u0000̱)\u0001\u0000\u0000\u0000̲̳\u0005=\u0000\u0000̴̳\u0003^/\u0000̴+\u0001\u0000\u0000\u0000̵̶\u0005ˆ\u0000\u0000̶̷\u0003`0\u0000̷-\u0001\u0000\u0000\u0000̸̹\u0005ú\u0000\u0000̹̾\u00030\u0018\u0000̺̻\u00051\u0000\u0000̻̽\u00030\u0018\u0000̼̺\u0001\u0000\u0000\u0000̽̀\u0001\u0000\u0000\u0000̼̾\u0001\u0000\u0000\u0000̾̿\u0001\u0000\u0000\u0000̿/\u0001\u0000\u0000\u0000̀̾\u0001\u0000\u0000\u0000́͂\u0003Ðh\u0000͂̓\u0005d\u0000\u0000̓̈́\u0003°X\u0000̈́͘\u0001\u0000\u0000\u0000͆ͅ\u0003Òi\u0000͇͆\u0005d\u0000\u0000͇͈\u0003°X\u0000͈͘\u0001\u0000\u0000\u0000͉͊\u0003ĔŠ\u0000͊͋\u0005d\u0000\u0000͋͌\u0003°X\u0000͌͘\u0001\u0000\u0000\u0000͍͎\u0003ĔŠ\u0000͎͏\u0005È\u0000\u0000͏͐\u0003°X\u0000͐͘\u0001\u0000\u0000\u0000͑͒\u0003ĔŠ\u0000͓͒\u0003|>\u0000͓͘\u0001\u0000\u0000\u0000͔͕\u0003ĔŠ\u0000͕͖\u0003~?\u0000͖͘\u0001\u0000\u0000\u0000͗" ++ "́\u0001\u0000\u0000\u0000͗ͅ\u0001\u0000\u0000\u0000͉͗\u0001\u0000\u0000\u0000͍͗\u0001\u0000\u0000\u0000͗͑\u0001\u0000\u0000\u0000͔͗\u0001\u0000\u0000\u0000͘1\u0001\u0000\u0000\u0000͙͚\u0005â\u0000\u0000͚͟\u00034\u001a\u0000͛͜\u00051\u0000\u0000͜͞\u00034\u001a\u0000͛͝\u0001\u0000\u0000\u0000͞͡\u0001\u0000\u0000\u0000͟͝\u0001\u0000\u0000\u0000͟͠\u0001\u0000\u0000\u0000͠3\u0001\u0000\u0000\u0000͟͡\u0001\u0000\u0000\u0000ͫ͢\u0003Ðh\u0000ͣͫ\u0003Òi\u0000ͤͥ\u0003ĔŠ\u0000ͥͦ\u0003|>\u0000ͦͫ\u0001\u0000\u0000\u0000ͧͨ\u0003ĔŠ\u0000ͨͩ\u0003~?\u0000ͩͫ\u0001\u0000\u0000\u0000ͪ͢\u0001\u0000\u0000\u0000ͪͣ\u0001\u0000\u0000\u0000ͪͤ\u0001\u0000\u0000\u0000ͪͧ\u0001\u0000\u0000\u0000ͫ5\u0001\u0000\u0000\u0000ͬͮ\u0007\u0004\u0000\u0000ͭͬ\u0001\u0000\u0000\u0000ͭͮ\u0001\u0000\u0000\u0000ͮͯ\u0001\u0000\u0000\u0000ͯͰ\u0005I\u0000\u0000Ͱ͵\u0003°X\u0000ͱͲ\u00051\u0000\u0000Ͳʹ\u0003°X\u0000ͳͱ\u0001\u0000\u0000\u0000ʹͷ\u0001\u0000\u0000\u0000͵ͳ\u0001\u0000\u0000\u0000͵Ͷ\u0001\u0000\u0000\u0000Ͷ7\u0001\u0000\u0000\u0000ͷ͵\u0001\u0000\u0000\u0000\u0378ͺ\u0005»\u0000\u0000\u0379\u0378\u0001\u0000\u0000\u0000\u0379ͺ\u0001\u0000\u0000\u0000ͺͻ\u0001\u0000\u0000\u0000ͻͽ\u0005Ÿ\u0000\u0000ͼ;\u0003:\u001d\u0000ͽͼ\u0001\u0000\u0000\u0000ͽ;\u0001\u0000\u0000\u0000;Ϳ\u0001\u0000\u0000\u0000Ϳ\u0383\u0003^/\u0000\u0380\u0382\u0003<\u001e\u0000\u0381\u0380\u0001\u0000\u0000\u0000\u0382΅\u0001\u0000\u0000\u0000\u0383\u0381\u0001\u0000\u0000\u0000\u0383΄\u0001\u0000\u0000\u0000΄·\u0001\u0000\u0000\u0000΅\u0383\u0001\u0000\u0000\u0000ΆΈ\u0003&\u0013\u0000·Ά\u0001\u0000\u0000\u0000·Έ\u0001\u0000\u0000\u0000Έ9\u0001\u0000\u0000\u0000ΉΏ\u0005ã\u0000\u0000ΊΌ\u0005^\u0000\u0000\u038b\u038d\u0005\u001f\u0000\u0000Ό\u038b\u0001\u0000\u0000\u0000Ό\u038d\u0001\u0000\u0000\u0000\u038dΐ\u0001\u0000\u0000\u0000Ύΐ\u0005_\u0000\u0000ΏΊ\u0001\u0000\u0000\u0000ΏΎ\u0001\u0000\u0000\u0000ΐΚ\u0001\u0000\u0000\u0000ΑΗ\u0005O\u0000\u0000ΒΔ\u0005à\u0000\u0000ΓΕ\u0005\u001f\u0000\u0000ΔΓ\u0001\u0000\u0000\u0000ΔΕ\u0001\u0000\u0000\u0000ΕΘ\u0001\u0000\u0000\u0000ΖΘ\u0005á\u0000\u0000ΗΒ\u0001\u0000\u0000\u0000ΗΖ\u0001\u0000\u0000\u0000ΘΚ\u0001\u0000\u0000\u0000ΙΉ\u0001" ++ "\u0000\u0000\u0000ΙΑ\u0001\u0000\u0000\u0000Κ;\u0001\u0000\u0000\u0000Λη\u0005ĥ\u0000\u0000ΜΦ\u0005„\u0000\u0000ΝΞ\u0005&\u0000\u0000ΞΦ\u0005„\u0000\u0000ΟΠ\u0005Č\u0000\u0000ΠΦ\u0005„\u0000\u0000Ρ\u03a2\u0005×\u0000\u0000\u03a2Φ\u0005„\u0000\u0000ΣΤ\u0005É\u0000\u0000ΤΦ\u0005„\u0000\u0000ΥΜ\u0001\u0000\u0000\u0000ΥΝ\u0001\u0000\u0000\u0000ΥΟ\u0001\u0000\u0000\u0000ΥΡ\u0001\u0000\u0000\u0000ΥΣ\u0001\u0000\u0000\u0000ΦΨ\u0001\u0000\u0000\u0000ΧΩ\u0005ö\u0000\u0000ΨΧ\u0001\u0000\u0000\u0000ΨΩ\u0001\u0000\u0000\u0000ΩΪ\u0001\u0000\u0000\u0000ΪΫ\u0003ĔŠ\u0000Ϋά\u0003ŠE\u0000άέ\u0005›\u0000\u0000έή\u0003Ė‹\u0000ήί\u0005ï\u0000\u0000ίθ\u0001\u0000\u0000\u0000ΰα\u0005Œ\u0000\u0000αβ\u0005¹\u0000\u0000βθ\u0003Ė‹\u0000γδ\u0005ð\u0000\u0000δε\u0003ĔŠ\u0000εζ\u0003ŠE\u0000ζθ\u0001\u0000\u0000\u0000ηΥ\u0001\u0000\u0000\u0000ηΰ\u0001\u0000\u0000\u0000ηγ\u0001\u0000\u0000\u0000θ=\u0001\u0000\u0000\u0000ικ\u0005 \u0000\u0000κξ\u0003b1\u0000λν\u0003@ \u0000μλ\u0001\u0000\u0000\u0000νπ\u0001\u0000\u0000\u0000ξμ\u0001\u0000\u0000\u0000ξο\u0001\u0000\u0000\u0000ο?\u0001\u0000\u0000\u0000πξ\u0001\u0000\u0000\u0000ρς\u0005¹\u0000\u0000ςσ\u0007\u0005\u0000\u0000στ\u0003.\u0017\u0000τA\u0001\u0000\u0000\u0000υφ\u0005Ġ\u0000\u0000φχ\u0003°X\u0000χψ\u0005\u0017\u0000\u0000ψω\u0003ĔŠ\u0000ωC\u0001\u0000\u0000\u0000ϊό\u0005»\u0000\u0000ϋϊ\u0001\u0000\u0000\u0000ϋό\u0001\u0000\u0000\u0000όύ\u0001\u0000\u0000\u0000ύώ\u0005)\u0000\u0000ώϛ\u0003F#\u0000ϏϘ\u0005›\u0000\u0000ϐϕ\u0003H$\u0000ϑϒ\u00051\u0000\u0000ϒϔ\u0003H$\u0000ϓϑ\u0001\u0000\u0000\u0000ϔϗ\u0001\u0000\u0000\u0000ϕϓ\u0001\u0000\u0000\u0000ϕϖ\u0001\u0000\u0000\u0000ϖϙ\u0001\u0000\u0000\u0000ϗϕ\u0001\u0000\u0000\u0000Ϙϐ\u0001\u0000\u0000\u0000Ϙϙ\u0001\u0000\u0000\u0000ϙϚ\u0001\u0000\u0000\u0000ϚϜ\u0005ï\u0000\u0000ϛϏ\u0001\u0000\u0000\u0000ϛϜ\u0001\u0000\u0000\u0000ϜϬ\u0001\u0000\u0000\u0000ϝϪ\u0005IJ\u0000\u0000Ϟϫ\u0005ď\u0000\u0000ϟϤ\u0003J%\u0000Ϡϡ\u00051\u0000\u0000ϡϣ\u0003J%" ++ "\u0000ϢϠ\u0001\u0000\u0000\u0000ϣϦ\u0001\u0000\u0000\u0000ϤϢ\u0001\u0000\u0000\u0000Ϥϥ\u0001\u0000\u0000\u0000ϥϨ\u0001\u0000\u0000\u0000ϦϤ\u0001\u0000\u0000\u0000ϧϩ\u0003&\u0013\u0000Ϩϧ\u0001\u0000\u0000\u0000Ϩϩ\u0001\u0000\u0000\u0000ϩϫ\u0001\u0000\u0000\u0000ϪϞ\u0001\u0000\u0000\u0000Ϫϟ\u0001\u0000\u0000\u0000ϫϭ\u0001\u0000\u0000\u0000Ϭϝ\u0001\u0000\u0000\u0000Ϭϭ\u0001\u0000\u0000\u0000ϭE\u0001\u0000\u0000\u0000Ϯϯ\u0003Ē‰\u0000ϯϰ\u0003ʖŋ\u0000ϰG\u0001\u0000\u0000\u0000ϱϲ\u0003°X\u0000ϲI\u0001\u0000\u0000\u0000ϳ϶\u0003ʖŋ\u0000ϴϵ\u0005\u0017\u0000\u0000ϵϷ\u0003ĔŠ\u0000϶ϴ\u0001\u0000\u0000\u0000϶Ϸ\u0001\u0000\u0000\u0000ϷK\u0001\u0000\u0000\u0000ϸϹ\u0005˜\u0000\u0000Ϲϼ\u0005>\u0000\u0000Ϻϻ\u0005Į\u0000\u0000ϻϽ\u0005}\u0000\u0000ϼϺ\u0001\u0000\u0000\u0000ϼϽ\u0001\u0000\u0000\u0000ϽϾ\u0001\u0000\u0000\u0000ϾϿ\u0005r\u0000\u0000ϿЀ\u0003°X\u0000ЀЁ\u0005\u0017\u0000\u0000ЁЄ\u0003ĔŠ\u0000ЂЃ\u0005m\u0000\u0000ЃЅ\u0003ʄł\u0000ЄЂ\u0001\u0000\u0000\u0000ЄЅ\u0001\u0000\u0000\u0000ЅM\u0001\u0000\u0000\u0000ІЇ\u0005q\u0000\u0000ЇЈ\u0005›\u0000\u0000ЈЉ\u0003ĔŠ\u0000ЉЊ\u0005ƒ\u0000\u0000ЊЋ\u0003°X\u0000ЋЍ\u0005\u001e\u0000\u0000ЌЎ\u0003\n\u0005\u0000ЍЌ\u0001\u0000\u0000\u0000ЎЏ\u0001\u0000\u0000\u0000ЏЍ\u0001\u0000\u0000\u0000ЏА\u0001\u0000\u0000\u0000АБ\u0001\u0000\u0000\u0000БВ\u0005ï\u0000\u0000ВO\u0001\u0000\u0000\u0000ГЕ\u0005»\u0000\u0000ДГ\u0001\u0000\u0000\u0000ДЕ\u0001\u0000\u0000\u0000ЕЖ\u0001\u0000\u0000\u0000ЖИ\u0005)\u0000\u0000ЗЙ\u0003R)\u0000ИЗ\u0001\u0000\u0000\u0000ИЙ\u0001\u0000\u0000\u0000ЙК\u0001\u0000\u0000\u0000КЛ\u0005“\u0000\u0000ЛМ\u0003\u0006\u0003\u0000МО\u0005Ù\u0000\u0000НП\u0003T*\u0000ОН\u0001\u0000\u0000\u0000ОП\u0001\u0000\u0000\u0000ПQ\u0001\u0000\u0000\u0000РЪ\u0005›\u0000\u0000СЫ\u0005ď\u0000\u0000ТЧ\u0003ĔŠ\u0000УФ\u00051\u0000\u0000ФЦ\u0003ĔŠ\u0000ХУ\u0001\u0000\u0000\u0000ЦЩ\u0001\u0000\u0000\u0000ЧХ\u0001\u0000\u0000\u0000ЧШ\u0001\u0000\u0000\u0000ШЫ\u0001\u0000\u0000\u0000ЩЧ\u0001\u0000\u0000\u0000ЪС\u0001\u0000\u0000\u0000Ъ" ++ "Т\u0001\u0000\u0000\u0000ЪЫ\u0001\u0000\u0000\u0000ЫЬ\u0001\u0000\u0000\u0000ЬЭ\u0005ï\u0000\u0000ЭS\u0001\u0000\u0000\u0000Юг\u0005ƒ\u0000\u0000Яб\u0003°X\u0000аЯ\u0001\u0000\u0000\u0000аб\u0001\u0000\u0000\u0000бв\u0001\u0000\u0000\u0000вд\u00056\u0000\u0000га\u0001\u0000\u0000\u0000гд\u0001\u0000\u0000\u0000де\u0001\u0000\u0000\u0000ел\u0005Ė\u0000\u0000жк\u0003V+\u0000зк\u0003X,\u0000ик\u0003Z-\u0000йж\u0001\u0000\u0000\u0000йз\u0001\u0000\u0000\u0000йи\u0001\u0000\u0000\u0000кн\u0001\u0000\u0000\u0000лй\u0001\u0000\u0000\u0000лм\u0001\u0000\u0000\u0000мU\u0001\u0000\u0000\u0000нл\u0001\u0000\u0000\u0000оп\u0005·\u0000\u0000пр\u0003°X\u0000рс\u0007\u0006\u0000\u0000сW\u0001\u0000\u0000\u0000ту\u0005¹\u0000\u0000уф\u0005j\u0000\u0000фх\u0007\u0007\u0000\u0000хY\u0001\u0000\u0000\u0000цч\u0005å\u0000\u0000чш\u0005ą\u0000\u0000шщ\u0005\u0017\u0000\u0000щъ\u0003ĔŠ\u0000ъ[\u0001\u0000\u0000\u0000ыэ\u0003 \u0010\u0000ью\u0003\"\u0011\u0000эь\u0001\u0000\u0000\u0000эю\u0001\u0000\u0000\u0000юѐ\u0001\u0000\u0000\u0000яё\u0003$\u0012\u0000ѐя\u0001\u0000\u0000\u0000ѐё\u0001\u0000\u0000\u0000ёј\u0001\u0000\u0000\u0000ђє\u0003\"\u0011\u0000ѓѕ\u0003$\u0012\u0000єѓ\u0001\u0000\u0000\u0000єѕ\u0001\u0000\u0000\u0000ѕј\u0001\u0000\u0000\u0000іј\u0003$\u0012\u0000їы\u0001\u0000\u0000\u0000їђ\u0001\u0000\u0000\u0000їі\u0001\u0000\u0000\u0000ј]\u0001\u0000\u0000\u0000љў\u0003b1\u0000њћ\u00051\u0000\u0000ћѝ\u0003b1\u0000ќњ\u0001\u0000\u0000\u0000ѝѠ\u0001\u0000\u0000\u0000ўќ\u0001\u0000\u0000\u0000ўџ\u0001\u0000\u0000\u0000џ_\u0001\u0000\u0000\u0000Ѡў\u0001\u0000\u0000\u0000ѡѦ\u0003d2\u0000Ѣѣ\u00051\u0000\u0000ѣѥ\u0003d2\u0000ѤѢ\u0001\u0000\u0000\u0000ѥѨ\u0001\u0000\u0000\u0000ѦѤ\u0001\u0000\u0000\u0000Ѧѧ\u0001\u0000\u0000\u0000ѧa\u0001\u0000\u0000\u0000ѨѦ\u0001\u0000\u0000\u0000ѩѪ\u0003ĔŠ\u0000Ѫѫ\u0005d\u0000\u0000ѫѭ\u0001\u0000\u0000\u0000Ѭѩ\u0001\u0000\u0000\u0000Ѭѭ\u0001\u0000\u0000\u0000ѭѯ\u0001\u0000\u0000\u0000ѮѰ\u0003n7\u0000ѯѮ\u0001\u0000\u0000\u0000ѯѰ\u0001\u0000\u0000\u0000Ѱѱ\u0001" ++ "\u0000\u0000\u0000ѱѲ\u0003h4\u0000Ѳc\u0001\u0000\u0000\u0000ѳѴ\u0003ʖŋ\u0000Ѵѵ\u0005d\u0000\u0000ѵѷ\u0001\u0000\u0000\u0000Ѷѳ\u0001\u0000\u0000\u0000Ѷѷ\u0001\u0000\u0000\u0000ѷѸ\u0001\u0000\u0000\u0000ѸѾ\u0003x<\u0000ѹѺ\u0003H\u0000Ѻѻ\u0003x<\u0000ѻѽ\u0001\u0000\u0000\u0000Ѽѹ\u0001\u0000\u0000\u0000ѽҀ\u0001\u0000\u0000\u0000ѾѼ\u0001\u0000\u0000\u0000Ѿѿ\u0001\u0000\u0000\u0000ѿe\u0001\u0000\u0000\u0000ҀѾ\u0001\u0000\u0000\u0000ҁ҂\u0005“\u0000\u0000҂҃\u0005\u0005\u0000\u0000҃Ґ\u0005Ù\u0000\u0000҄҆\u0005“\u0000\u0000҅҇\u0005\u0005\u0000\u0000҆҅\u0001\u0000\u0000\u0000҆҇\u0001\u0000\u0000\u0000҇҈\u0001\u0000\u0000\u0000҈Ҋ\u00051\u0000\u0000҉ҋ\u0005\u0005\u0000\u0000Ҋ҉\u0001\u0000\u0000\u0000Ҋҋ\u0001\u0000\u0000\u0000ҋҌ\u0001\u0000\u0000\u0000ҌҐ\u0005Ù\u0000\u0000ҍҐ\u0005Ç\u0000\u0000ҎҐ\u0005ď\u0000\u0000ҏҁ\u0001\u0000\u0000\u0000ҏ҄\u0001\u0000\u0000\u0000ҏҍ\u0001\u0000\u0000\u0000ҏҎ\u0001\u0000\u0000\u0000Ґg\u0001\u0000\u0000\u0000ґҔ\u0003j5\u0000ҒҔ\u0003l6\u0000ғґ\u0001\u0000\u0000\u0000ғҒ\u0001\u0000\u0000\u0000Ҕi\u0001\u0000\u0000\u0000ҕҖ\u0007\u0008\u0000\u0000Җҗ\u0005›\u0000\u0000җҘ\u0003l6\u0000Ҙҙ\u0005ï\u0000\u0000ҙk\u0001\u0000\u0000\u0000Қң\u0003v;\u0000қҝ\u0003ŽG\u0000ҜҞ\u0003f3\u0000ҝҜ\u0001\u0000\u0000\u0000ҝҞ\u0001\u0000\u0000\u0000Ҟҟ\u0001\u0000\u0000\u0000ҟҠ\u0003v;\u0000ҠҢ\u0001\u0000\u0000\u0000ҡқ\u0001\u0000\u0000\u0000Ңҥ\u0001\u0000\u0000\u0000ңҡ\u0001\u0000\u0000\u0000ңҤ\u0001\u0000\u0000\u0000ҤҨ\u0001\u0000\u0000\u0000ҥң\u0001\u0000\u0000\u0000ҦҨ\u0003z=\u0000ҧҚ\u0001\u0000\u0000\u0000ҧҦ\u0001\u0000\u0000\u0000Ҩҩ\u0001\u0000\u0000\u0000ҩҧ\u0001\u0000\u0000\u0000ҩҪ\u0001\u0000\u0000\u0000Ҫm\u0001\u0000\u0000\u0000ҫҬ\u0005\u0015\u0000\u0000ҬҮ\u0005þ\u0000\u0000ҭү\u0003r9\u0000Үҭ\u0001\u0000\u0000\u0000Үү\u0001\u0000\u0000\u0000үӎ\u0001\u0000\u0000\u0000Ұұ\u0005\u0012\u0000\u0000ұҳ\u0005þ\u0000\u0000ҲҴ\u0003r9\u0000ҳҲ\u0001\u0000\u0000\u0000ҳҴ\u0001\u0000\u0000\u0000Ҵӎ\u0001\u0000\u0000\u0000ҵҷ\u0005\u0015\u0000\u0000ҶҸ\u0005\u0005\u0000\u0000ҷҶ\u0001\u0000\u0000" ++ "\u0000ҷҸ\u0001\u0000\u0000\u0000ҸҺ\u0001\u0000\u0000\u0000ҹһ\u0003r9\u0000Һҹ\u0001\u0000\u0000\u0000Һһ\u0001\u0000\u0000\u0000һӎ\u0001\u0000\u0000\u0000ҼҾ\u0005\u0012\u0000\u0000ҽҿ\u0003r9\u0000Ҿҽ\u0001\u0000\u0000\u0000Ҿҿ\u0001\u0000\u0000\u0000ҿӎ\u0001\u0000\u0000\u0000Ӏӂ\u0005þ\u0000\u0000ӁӃ\u0005\u0005\u0000\u0000ӂӁ\u0001\u0000\u0000\u0000ӂӃ\u0001\u0000\u0000\u0000ӃӅ\u0001\u0000\u0000\u0000ӄӆ\u0003r9\u0000Ӆӄ\u0001\u0000\u0000\u0000Ӆӆ\u0001\u0000\u0000\u0000ӆӇ\u0001\u0000\u0000\u0000Ӈӎ\u0003p8\u0000ӈӉ\u0005þ\u0000\u0000ӉӋ\u0005\u0005\u0000\u0000ӊӌ\u0003r9\u0000Ӌӊ\u0001\u0000\u0000\u0000Ӌӌ\u0001\u0000\u0000\u0000ӌӎ\u0001\u0000\u0000\u0000Ӎҫ\u0001\u0000\u0000\u0000ӍҰ\u0001\u0000\u0000\u0000Ӎҵ\u0001\u0000\u0000\u0000ӍҼ\u0001\u0000\u0000\u0000ӍӀ\u0001\u0000\u0000\u0000Ӎӈ\u0001\u0000\u0000\u0000ӎo\u0001\u0000\u0000\u0000ӏӐ\u0007\t\u0000\u0000Ӑq\u0001\u0000\u0000\u0000ӑӒ\u0007\n\u0000\u0000Ӓs\u0001\u0000\u0000\u0000ӓӗ\u0003v;\u0000Ӕӕ\u0003ŽG\u0000ӕӖ\u0003v;\u0000ӖӘ\u0001\u0000\u0000\u0000ӗӔ\u0001\u0000\u0000\u0000Әә\u0001\u0000\u0000\u0000әӗ\u0001\u0000\u0000\u0000әӚ\u0001\u0000\u0000\u0000Ӛu\u0001\u0000\u0000\u0000ӛӝ\u0005›\u0000\u0000ӜӞ\u0003ĔŠ\u0000ӝӜ\u0001\u0000\u0000\u0000ӝӞ\u0001\u0000\u0000\u0000ӞӠ\u0001\u0000\u0000\u0000ӟӡ\u0003šM\u0000Ӡӟ\u0001\u0000\u0000\u0000Ӡӡ\u0001\u0000\u0000\u0000ӡӣ\u0001\u0000\u0000\u0000ӢӤ\u0003ŒF\u0000ӣӢ\u0001\u0000\u0000\u0000ӣӤ\u0001\u0000\u0000\u0000Ӥӧ\u0001\u0000\u0000\u0000ӥӦ\u0005ĭ\u0000\u0000ӦӨ\u0003°X\u0000ӧӥ\u0001\u0000\u0000\u0000ӧӨ\u0001\u0000\u0000\u0000Өө\u0001\u0000\u0000\u0000өӪ\u0005ï\u0000\u0000Ӫw\u0001\u0000\u0000\u0000ӫӭ\u0005›\u0000\u0000ӬӮ\u0003ĔŠ\u0000ӭӬ\u0001\u0000\u0000\u0000ӭӮ\u0001\u0000\u0000\u0000ӮӰ\u0001\u0000\u0000\u0000ӯӱ\u0003¬V\u0000Ӱӯ\u0001\u0000\u0000\u0000Ӱӱ\u0001\u0000\u0000\u0000ӱӳ\u0001\u0000\u0000\u0000ӲӴ\u0003ʎŇ\u0000ӳӲ\u0001\u0000\u0000\u0000ӳӴ\u0001\u0000\u0000\u0000Ӵӵ\u0001\u0000\u0000\u0000ӵӶ\u0005ï\u0000\u0000Ӷy\u0001\u0000\u0000\u0000ӷӸ\u0005›\u0000\u0000Ӹӻ\u0003b1\u0000ӹӺ\u0005ĭ\u0000\u0000Ӻ" ++ "Ӽ\u0003°X\u0000ӻӹ\u0001\u0000\u0000\u0000ӻӼ\u0001\u0000\u0000\u0000Ӽӽ\u0001\u0000\u0000\u0000ӽӿ\u0005ï\u0000\u0000ӾԀ\u0003f3\u0000ӿӾ\u0001\u0000\u0000\u0000ӿԀ\u0001\u0000\u0000\u0000Ԁ{\u0001\u0000\u0000\u0000ԁԄ\u0003†C\u0000ԂԄ\u0003„B\u0000ԃԁ\u0001\u0000\u0000\u0000ԃԂ\u0001\u0000\u0000\u0000Ԅԅ\u0001\u0000\u0000\u0000ԅԃ\u0001\u0000\u0000\u0000ԅԆ\u0001\u0000\u0000\u0000Ԇ}\u0001\u0000\u0000\u0000ԇԊ\u0005‹\u0000\u0000Ԉԋ\u0003ʖŋ\u0000ԉԋ\u0003€@\u0000ԊԈ\u0001\u0000\u0000\u0000Ԋԉ\u0001\u0000\u0000\u0000ԋԐ\u0001\u0000\u0000\u0000Ԍԏ\u0003†C\u0000ԍԏ\u0003„B\u0000ԎԌ\u0001\u0000\u0000\u0000Ԏԍ\u0001\u0000\u0000\u0000ԏԒ\u0001\u0000\u0000\u0000ԐԎ\u0001\u0000\u0000\u0000Ԑԑ\u0001\u0000\u0000\u0000ԑ\u0001\u0000\u0000\u0000ԒԐ\u0001\u0000\u0000\u0000ԓԔ\u0005P\u0000\u0000Ԕԕ\u0005›\u0000\u0000ԕԖ\u0003°X\u0000Ԗԗ\u0005ï\u0000\u0000ԗ\u0001\u0000\u0000\u0000ԘԚ\u0005P\u0000\u0000ԙԛ\u0007\u000b\u0000\u0000Ԛԙ\u0001\u0000\u0000\u0000Ԛԛ\u0001\u0000\u0000\u0000ԛԜ\u0001\u0000\u0000\u0000Ԝԝ\u0005›\u0000\u0000ԝԞ\u0003°X\u0000Ԟԟ\u0005ï\u0000\u0000ԟƒ\u0001\u0000\u0000\u0000Ԡԡ\u0005/\u0000\u0000ԡԢ\u0003€@\u0000Ԣ…\u0001\u0000\u0000\u0000ԣԤ\u0005/\u0000\u0000Ԥԥ\u0003ʖŋ\u0000ԥ‡\u0001\u0000\u0000\u0000Ԧԧ\u0005/\u0000\u0000ԧԨ\u0003ʖŋ\u0000Ԩ‰\u0001\u0000\u0000\u0000ԩԪ\u0005/\u0000\u0000Ԫԫ\u0003ʖŋ\u0000ԫ‹\u0001\u0000\u0000\u0000Ԭԯ\u0003ʎŇ\u0000ԭԯ\u0003Ĉ„\u0000ԮԬ\u0001\u0000\u0000\u0000Ԯԭ\u0001\u0000\u0000\u0000ԯ\u0001\u0000\u0000\u0000\u0530Բ\u0003’I\u0000Ա\u0530\u0001\u0000\u0000\u0000ԱԲ\u0001\u0000\u0000\u0000ԲԳ\u0001\u0000\u0000\u0000ԳՆ\u0003”J\u0000ԴԶ\u0005’\u0000\u0000ԵԷ\u0003ĔŠ\u0000ԶԵ\u0001\u0000\u0000\u0000ԶԷ\u0001\u0000\u0000\u0000ԷԹ\u0001\u0000\u0000\u0000ԸԺ\u0003šM\u0000ԹԸ\u0001\u0000\u0000\u0000ԹԺ\u0001\u0000\u0000\u0000ԺԼ\u0001\u0000\u0000\u0000ԻԽ\u0003˜L\u0000ԼԻ\u0001\u0000\u0000\u0000ԼԽ\u0001\u0000\u0000\u0000ԽԿ\u0001\u0000\u0000\u0000ԾՀ\u0003ŒF\u0000ԿԾ\u0001\u0000\u0000\u0000ԿՀ\u0001\u0000\u0000\u0000ՀՃ\u0001\u0000\u0000\u0000ՁՂ\u0005" ++ "ĭ\u0000\u0000ՂՄ\u0003°X\u0000ՃՁ\u0001\u0000\u0000\u0000ՃՄ\u0001\u0000\u0000\u0000ՄՅ\u0001\u0000\u0000\u0000ՅՇ\u0005Ø\u0000\u0000ՆԴ\u0001\u0000\u0000\u0000ՆՇ\u0001\u0000\u0000\u0000ՇՈ\u0001\u0000\u0000\u0000ՈՊ\u0003”J\u0000ՉՋ\u0003–K\u0000ՊՉ\u0001\u0000\u0000\u0000ՊՋ\u0001\u0000\u0000\u0000Ջ\u0001\u0000\u0000\u0000ՌՎ\u0003’I\u0000ՍՌ\u0001\u0000\u0000\u0000ՍՎ\u0001\u0000\u0000\u0000ՎՏ\u0001\u0000\u0000\u0000ՏՐ\u0003”J\u0000ՐՒ\u0005’\u0000\u0000ՑՓ\u0003ĔŠ\u0000ՒՑ\u0001\u0000\u0000\u0000ՒՓ\u0001\u0000\u0000\u0000ՓՔ\u0001\u0000\u0000\u0000ՔՖ\u0003®W\u0000Օ\u0557\u0003ʎŇ\u0000ՖՕ\u0001\u0000\u0000\u0000Ֆ\u0557\u0001\u0000\u0000\u0000\u0557\u0558\u0001\u0000\u0000\u0000\u0558ՙ\u0005Ø\u0000\u0000ՙ՛\u0003”J\u0000՚՜\u0003–K\u0000՛՚\u0001\u0000\u0000\u0000՛՜\u0001\u0000\u0000\u0000՜‘\u0001\u0000\u0000\u0000՝՞\u0007\u000c\u0000\u0000՞“\u0001\u0000\u0000\u0000՟ՠ\u0007\r\u0000\u0000ՠ•\u0001\u0000\u0000\u0000աբ\u0007\u000e\u0000\u0000բ—\u0001\u0000\u0000\u0000գլ\u0005ď\u0000\u0000դզ\u0005\u0005\u0000\u0000եդ\u0001\u0000\u0000\u0000եզ\u0001\u0000\u0000\u0000զէ\u0001\u0000\u0000\u0000էթ\u0005T\u0000\u0000ըժ\u0005\u0005\u0000\u0000թը\u0001\u0000\u0000\u0000թժ\u0001\u0000\u0000\u0000ժխ\u0001\u0000\u0000\u0000իխ\u0005\u0005\u0000\u0000լե\u0001\u0000\u0000\u0000լի\u0001\u0000\u0000\u0000լխ\u0001\u0000\u0000\u0000խ™\u0001\u0000\u0000\u0000ծկ\u0005/\u0000\u0000կճ\u0003œN\u0000հձ\u0005‹\u0000\u0000ձճ\u0003žO\u0000ղծ\u0001\u0000\u0000\u0000ղհ\u0001\u0000\u0000\u0000ճ›\u0001\u0000\u0000\u0000մռ\u0003 P\u0000յշ\u0005\u001e\u0000\u0000նո\u0005/\u0000\u0000շն\u0001\u0000\u0000\u0000շո\u0001\u0000\u0000\u0000ոչ\u0001\u0000\u0000\u0000չջ\u0003 P\u0000պյ\u0001\u0000\u0000\u0000ջվ\u0001\u0000\u0000\u0000ռպ\u0001\u0000\u0000\u0000ռս\u0001\u0000\u0000\u0000ս\u0001\u0000\u0000\u0000վռ\u0001\u0000\u0000\u0000տև\u0003¢Q\u0000րւ\u0005\u001e\u0000\u0000ցփ\u0005/\u0000\u0000ւց\u0001\u0000\u0000\u0000ւփ\u0001\u0000\u0000\u0000փք\u0001\u0000\u0000\u0000քֆ\u0003¢Q\u0000օր\u0001\u0000\u0000\u0000ֆ։\u0001\u0000\u0000\u0000ևօ\u0001\u0000\u0000" ++ "\u0000ևֈ\u0001\u0000\u0000\u0000ֈŸ\u0001\u0000\u0000\u0000։և\u0001\u0000\u0000\u0000֊֏\u0003¤R\u0000\u058b\u058c\u0007\u000f\u0000\u0000\u058c֎\u0003¤R\u0000֍\u058b\u0001\u0000\u0000\u0000֎֑\u0001\u0000\u0000\u0000֏֍\u0001\u0000\u0000\u0000֏\u0590\u0001\u0000\u0000\u0000\u0590¡\u0001\u0000\u0000\u0000֑֏\u0001\u0000\u0000\u0000֒֗\u0003¦S\u0000֓֔\u0007\u000f\u0000\u0000֖֔\u0003¦S\u0000֕֓\u0001\u0000\u0000\u0000֖֙\u0001\u0000\u0000\u0000֗֕\u0001\u0000\u0000\u0000֗֘\u0001\u0000\u0000\u0000֘£\u0001\u0000\u0000\u0000֙֗\u0001\u0000\u0000\u0000֚֜\u0005‘\u0000\u0000֛֚\u0001\u0000\u0000\u0000֜֟\u0001\u0000\u0000\u0000֛֝\u0001\u0000\u0000\u0000֝֞\u0001\u0000\u0000\u0000֞֠\u0001\u0000\u0000\u0000֟֝\u0001\u0000\u0000\u0000֠֡\u0003¨T\u0000֡¥\u0001\u0000\u0000\u0000֢֤\u0005‘\u0000\u0000֣֢\u0001\u0000\u0000\u0000֤֧\u0001\u0000\u0000\u0000֥֣\u0001\u0000\u0000\u0000֥֦\u0001\u0000\u0000\u0000֦֨\u0001\u0000\u0000\u0000֧֥\u0001\u0000\u0000\u0000֨֩\u0003ªU\u0000֩§\u0001\u0000\u0000\u0000֪֫\u0005›\u0000\u0000֫֬\u0003œN\u0000֭֬\u0005ï\u0000\u0000ֲ֭\u0001\u0000\u0000\u0000ֲ֮\u0005¢\u0000\u0000ֲ֯\u0003‚A\u0000ְֲ\u0003ʖŋ\u0000ֱ֪\u0001\u0000\u0000\u0000ֱ֮\u0001\u0000\u0000\u0000ֱ֯\u0001\u0000\u0000\u0000ְֱ\u0001\u0000\u0000\u0000ֲ©\u0001\u0000\u0000\u0000ֳִ\u0005›\u0000\u0000ִֵ\u0003žO\u0000ֵֶ\u0005ï\u0000\u0000ֶֻ\u0001\u0000\u0000\u0000ַֻ\u0005¢\u0000\u0000ָֻ\u0003‚A\u0000ֹֻ\u0003ʜŎ\u0000ֳֺ\u0001\u0000\u0000\u0000ַֺ\u0001\u0000\u0000\u0000ָֺ\u0001\u0000\u0000\u0000ֺֹ\u0001\u0000\u0000\u0000ֻ«\u0001\u0000\u0000\u0000ּֽ\u0007\u0010\u0000\u0000ֽׂ\u0003ʖŋ\u0000־ֿ\u0007\u000f\u0000\u0000ֿׁ\u0003ʖŋ\u0000׀־\u0001\u0000\u0000\u0000ׁׄ\u0001\u0000\u0000\u0000ׂ׀\u0001\u0000\u0000\u0000ׂ׃\u0001\u0000\u0000\u0000׃­\u0001\u0000\u0000\u0000ׂׄ\u0001\u0000\u0000\u0000ׅ׆\u0007\u0010\u0000\u0000׆ׇ\u0003ʖŋ\u0000ׇ¯\u0001\u0000\u0000\u0000\u05c8\u05cd\u0003²Y\u0000\u05c9\u05ca\u0005¾\u0000\u0000\u05ca\u05cc\u0003²Y\u0000\u05cb\u05c9\u0001\u0000\u0000\u0000\u05cc\u05cf\u0001\u0000\u0000\u0000\u05cd\u05cb\u0001\u0000\u0000\u0000\u05cd\u05ce\u0001\u0000\u0000\u0000\u05ce±\u0001\u0000\u0000\u0000\u05cf\u05cd\u0001\u0000\u0000\u0000א" ++ "ו\u0003´Z\u0000בג\u0005ı\u0000\u0000גה\u0003´Z\u0000דב\u0001\u0000\u0000\u0000הח\u0001\u0000\u0000\u0000וד\u0001\u0000\u0000\u0000וז\u0001\u0000\u0000\u0000ז³\u0001\u0000\u0000\u0000חו\u0001\u0000\u0000\u0000טם\u0003¶[\u0000יך\u0005\u0014\u0000\u0000ךל\u0003¶[\u0000כי\u0001\u0000\u0000\u0000לן\u0001\u0000\u0000\u0000םכ\u0001\u0000\u0000\u0000םמ\u0001\u0000\u0000\u0000מµ\u0001\u0000\u0000\u0000ןם\u0001\u0000\u0000\u0000נע\u0005³\u0000\u0000סנ\u0001\u0000\u0000\u0000עץ\u0001\u0000\u0000\u0000ףס\u0001\u0000\u0000\u0000ףפ\u0001\u0000\u0000\u0000פצ\u0001\u0000\u0000\u0000ץף\u0001\u0000\u0000\u0000צק\u0003¸\\\u0000ק·\u0001\u0000\u0000\u0000ר\u05ed\u0003º]\u0000שת\u0007\u0011\u0000\u0000ת\u05ec\u0003º]\u0000\u05ebש\u0001\u0000\u0000\u0000\u05ecׯ\u0001\u0000\u0000\u0000\u05ed\u05eb\u0001\u0000\u0000\u0000\u05ed\u05ee\u0001\u0000\u0000\u0000\u05ee¹\u0001\u0000\u0000\u0000ׯ\u05ed\u0001\u0000\u0000\u0000װײ\u0003À`\u0000ױ׳\u0003¼^\u0000ײױ\u0001\u0000\u0000\u0000ײ׳\u0001\u0000\u0000\u0000׳»\u0001\u0000\u0000\u0000״\u05fc\u0005Þ\u0000\u0000\u05f5\u05f6\u0005Ą\u0000\u0000\u05f6\u05fc\u0005Į\u0000\u0000\u05f7\u05f8\u0005c\u0000\u0000\u05f8\u05fc\u0005Į\u0000\u0000\u05f9\u05fc\u00059\u0000\u0000\u05fa\u05fc\u0005ƒ\u0000\u0000\u05fb״\u0001\u0000\u0000\u0000\u05fb\u05f5\u0001\u0000\u0000\u0000\u05fb\u05f7\u0001\u0000\u0000\u0000\u05fb\u05f9\u0001\u0000\u0000\u0000\u05fb\u05fa\u0001\u0000\u0000\u0000\u05fc\u05fd\u0001\u0000\u0000\u0000\u05fdؕ\u0003À`\u0000\u05fe؀\u0005‹\u0000\u0000\u05ff؁\u0005³\u0000\u0000؀\u05ff\u0001\u0000\u0000\u0000؀؁\u0001\u0000\u0000\u0000؁؂\u0001\u0000\u0000\u0000؂ؕ\u0005¶\u0000\u0000؃؅\u0005‹\u0000\u0000؄؆\u0005³\u0000\u0000؅؄\u0001\u0000\u0000\u0000؅؆\u0001\u0000\u0000\u0000؆؇\u0001\u0000\u0000\u0000؇؊\u0007\u0012\u0000\u0000؈؊\u00050\u0000\u0000؉؃\u0001\u0000\u0000\u0000؉؈\u0001\u0000\u0000\u0000؊؋\u0001\u0000\u0000\u0000؋ؕ\u0003ʌ\u0000،؎\u0005‹\u0000\u0000؍؏\u0005³\u0000\u0000؎؍\u0001\u0000\u0000\u0000؎؏\u0001\u0000\u0000\u0000؏ؑ\u0001\u0000\u0000\u0000ؐؒ\u0003¾_\u0000ؑؐ\u0001\u0000\u0000\u0000ؑؒ\u0001\u0000\u0000\u0000ؒؓ\u0001\u0000\u0000\u0000ؓؕ\u0005²\u0000\u0000ؔ\u05fb\u0001\u0000\u0000\u0000ؔ\u05fe\u0001\u0000\u0000\u0000ؔ؉\u0001\u0000\u0000\u0000ؔ،\u0001" ++ "\u0000\u0000\u0000ؕ½\u0001\u0000\u0000\u0000ؖؗ\u0007\u0013\u0000\u0000ؗ¿\u0001\u0000\u0000\u0000ؘ؝\u0003Âa\u0000ؙؚ\u0007\u0014\u0000\u0000ؚ؜\u0003Âa\u0000؛ؙ\u0001\u0000\u0000\u0000؜؟\u0001\u0000\u0000\u0000؝؛\u0001\u0000\u0000\u0000؝؞\u0001\u0000\u0000\u0000؞Á\u0001\u0000\u0000\u0000؟؝\u0001\u0000\u0000\u0000ؠإ\u0003Äb\u0000ءآ\u0007\u0015\u0000\u0000آؤ\u0003Äb\u0000أء\u0001\u0000\u0000\u0000ؤا\u0001\u0000\u0000\u0000إأ\u0001\u0000\u0000\u0000إئ\u0001\u0000\u0000\u0000ئÃ\u0001\u0000\u0000\u0000اإ\u0001\u0000\u0000\u0000بح\u0003Æc\u0000ةت\u0005Ë\u0000\u0000تج\u0003Æc\u0000ثة\u0001\u0000\u0000\u0000جد\u0001\u0000\u0000\u0000حث\u0001\u0000\u0000\u0000حخ\u0001\u0000\u0000\u0000خÅ\u0001\u0000\u0000\u0000دح\u0001\u0000\u0000\u0000ذش\u0003Èd\u0000رز\u0007\u0016\u0000\u0000زش\u0003Èd\u0000سذ\u0001\u0000\u0000\u0000سر\u0001\u0000\u0000\u0000شÇ\u0001\u0000\u0000\u0000صع\u0003Ôj\u0000ضظ\u0003Êe\u0000طض\u0001\u0000\u0000\u0000ظػ\u0001\u0000\u0000\u0000عط\u0001\u0000\u0000\u0000عغ\u0001\u0000\u0000\u0000غÉ\u0001\u0000\u0000\u0000ػع\u0001\u0000\u0000\u0000ؼٌ\u0003Ìf\u0000ؽٌ\u0003šM\u0000ؾؿ\u0005’\u0000\u0000ؿـ\u0003°X\u0000ـف\u0005Ø\u0000\u0000فٌ\u0001\u0000\u0000\u0000قل\u0005’\u0000\u0000كم\u0003°X\u0000لك\u0001\u0000\u0000\u0000لم\u0001\u0000\u0000\u0000من\u0001\u0000\u0000\u0000نو\u0005T\u0000\u0000هى\u0003°X\u0000وه\u0001\u0000\u0000\u0000وى\u0001\u0000\u0000\u0000ىي\u0001\u0000\u0000\u0000يٌ\u0005Ø\u0000\u0000ًؼ\u0001\u0000\u0000\u0000ًؽ\u0001\u0000\u0000\u0000ًؾ\u0001\u0000\u0000\u0000ًق\u0001\u0000\u0000\u0000ٌË\u0001\u0000\u0000\u0000ٍَ\u0005S\u0000\u0000َُ\u0003ƃ\u0000ُÍ\u0001\u0000\u0000\u0000ِّ\u0005’\u0000\u0000ّْ\u0003°X\u0000ْٓ\u0005Ø\u0000\u0000ٓÏ\u0001\u0000\u0000\u0000ٖٔ\u0003Ôj\u0000ٕٗ\u0003Ìf\u0000ٖٕ\u0001\u0000\u0000\u0000ٗ٘\u0001\u0000\u0000\u0000ٖ٘\u0001\u0000\u0000\u0000٘ٙ\u0001\u0000\u0000\u0000ٙÑ\u0001\u0000\u0000\u0000ٚٛ\u0003Ôj\u0000ٜٛ\u0003Îg\u0000ٜÓ\u0001\u0000\u0000\u0000ٝٳ\u0003Ök\u0000ٞٳ\u0003Ĉ„" ++ "\u0000ٟٳ\u0003Øl\u0000٠ٳ\u0003Ün\u0000١ٳ\u0003ø|\u0000٢ٳ\u0003ú}\u0000٣ٳ\u0003ü~\u0000٤ٳ\u0003þ\u0000٥ٳ\u0003ôz\u0000٦ٳ\u0003âq\u0000٧ٳ\u0003Ą‚\u0000٨ٳ\u0003är\u0000٩ٳ\u0003æs\u0000٪ٳ\u0003èt\u0000٫ٳ\u0003êu\u0000٬ٳ\u0003ìv\u0000٭ٳ\u0003îw\u0000ٮٳ\u0003ðx\u0000ٯٳ\u0003òy\u0000ٰٳ\u0003Ȇ\u0000ٱٳ\u0003ĔŠ\u0000ٲٝ\u0001\u0000\u0000\u0000ٲٞ\u0001\u0000\u0000\u0000ٲٟ\u0001\u0000\u0000\u0000ٲ٠\u0001\u0000\u0000\u0000ٲ١\u0001\u0000\u0000\u0000ٲ٢\u0001\u0000\u0000\u0000ٲ٣\u0001\u0000\u0000\u0000ٲ٤\u0001\u0000\u0000\u0000ٲ٥\u0001\u0000\u0000\u0000ٲ٦\u0001\u0000\u0000\u0000ٲ٧\u0001\u0000\u0000\u0000ٲ٨\u0001\u0000\u0000\u0000ٲ٩\u0001\u0000\u0000\u0000ٲ٪\u0001\u0000\u0000\u0000ٲ٫\u0001\u0000\u0000\u0000ٲ٬\u0001\u0000\u0000\u0000ٲ٭\u0001\u0000\u0000\u0000ٲٮ\u0001\u0000\u0000\u0000ٲٯ\u0001\u0000\u0000\u0000ٲٰ\u0001\u0000\u0000\u0000ٲٱ\u0001\u0000\u0000\u0000ٳÕ\u0001\u0000\u0000\u0000ٴپ\u0003Ā€\u0000ٵپ\u0003ʄł\u0000ٶپ\u0003ʎŇ\u0000ٷپ\u0005ę\u0000\u0000ٸپ\u0005l\u0000\u0000ٹپ\u0005†\u0000\u0000ٺپ\u0005‡\u0000\u0000ٻپ\u0005§\u0000\u0000ټپ\u0005¶\u0000\u0000ٽٴ\u0001\u0000\u0000\u0000ٽٵ\u0001\u0000\u0000\u0000ٽٶ\u0001\u0000\u0000\u0000ٽٷ\u0001\u0000\u0000\u0000ٽٸ\u0001\u0000\u0000\u0000ٽٹ\u0001\u0000\u0000\u0000ٽٺ\u0001\u0000\u0000\u0000ٽٻ\u0001\u0000\u0000\u0000ٽټ\u0001\u0000\u0000\u0000پ×\u0001\u0000\u0000\u0000ٿځ\u0005+\u0000\u0000ڀڂ\u0003Úm\u0000ځڀ\u0001\u0000\u0000\u0000ڂڃ\u0001\u0000\u0000\u0000ڃځ\u0001\u0000\u0000\u0000ڃڄ\u0001\u0000\u0000\u0000ڄڇ\u0001\u0000\u0000\u0000څچ\u0005`\u0000\u0000چڈ\u0003°X\u0000ڇڅ\u0001\u0000\u0000\u0000ڇڈ\u0001\u0000\u0000\u0000ڈډ\u0001\u0000\u0000\u0000ډڊ\u0005b\u0000\u0000ڊÙ\u0001\u0000\u0000\u0000ڋڌ\u0005Ĭ\u0000\u0000ڌڍ\u0003°X\u0000ڍڎ\u0005č\u0000\u0000ڎڏ\u0003°X\u0000ڏÛ\u0001\u0000\u0000\u0000ڐڑ\u0005+\u0000\u0000ڑړ\u0003°X\u0000ڒڔ\u0003Þo\u0000ړڒ\u0001\u0000\u0000\u0000ڔڕ\u0001\u0000\u0000\u0000ڕړ\u0001\u0000\u0000\u0000ڕ" ++ "ږ\u0001\u0000\u0000\u0000ږڙ\u0001\u0000\u0000\u0000ڗژ\u0005`\u0000\u0000ژښ\u0003°X\u0000ڙڗ\u0001\u0000\u0000\u0000ڙښ\u0001\u0000\u0000\u0000ښڛ\u0001\u0000\u0000\u0000ڛڜ\u0005b\u0000\u0000ڜÝ\u0001\u0000\u0000\u0000ڝڞ\u0005Ĭ\u0000\u0000ڞڣ\u0003àp\u0000ڟڠ\u00051\u0000\u0000ڠڢ\u0003àp\u0000ڡڟ\u0001\u0000\u0000\u0000ڢڥ\u0001\u0000\u0000\u0000ڣڡ\u0001\u0000\u0000\u0000ڣڤ\u0001\u0000\u0000\u0000ڤڦ\u0001\u0000\u0000\u0000ڥڣ\u0001\u0000\u0000\u0000ڦڧ\u0005č\u0000\u0000ڧڨ\u0003°X\u0000ڨß\u0001\u0000\u0000\u0000کگ\u0005Þ\u0000\u0000ڪګ\u0005Ą\u0000\u0000ګگ\u0005Į\u0000\u0000ڬڭ\u0005c\u0000\u0000ڭگ\u0005Į\u0000\u0000ڮک\u0001\u0000\u0000\u0000ڮڪ\u0001\u0000\u0000\u0000ڮڬ\u0001\u0000\u0000\u0000گڰ\u0001\u0000\u0000\u0000ڰۋ\u0003À`\u0000ڱڳ\u0005‹\u0000\u0000ڲڴ\u0005³\u0000\u0000ڳڲ\u0001\u0000\u0000\u0000ڳڴ\u0001\u0000\u0000\u0000ڴڵ\u0001\u0000\u0000\u0000ڵۋ\u0005¶\u0000\u0000ڶڸ\u0005‹\u0000\u0000ڷڹ\u0005³\u0000\u0000ڸڷ\u0001\u0000\u0000\u0000ڸڹ\u0001\u0000\u0000\u0000ڹں\u0001\u0000\u0000\u0000ںڽ\u0005ě\u0000\u0000ڻڽ\u00050\u0000\u0000ڼڶ\u0001\u0000\u0000\u0000ڼڻ\u0001\u0000\u0000\u0000ڽھ\u0001\u0000\u0000\u0000ھۋ\u0003ʌ\u0000ڿہ\u0005‹\u0000\u0000ۀۂ\u0005³\u0000\u0000ہۀ\u0001\u0000\u0000\u0000ہۂ\u0001\u0000\u0000\u0000ۂۄ\u0001\u0000\u0000\u0000ۃۅ\u0003¾_\u0000ۄۃ\u0001\u0000\u0000\u0000ۄۅ\u0001\u0000\u0000\u0000ۅۆ\u0001\u0000\u0000\u0000ۆۋ\u0005²\u0000\u0000ۇۈ\u0007\u0011\u0000\u0000ۈۋ\u0003º]\u0000ۉۋ\u0003°X\u0000ۊڮ\u0001\u0000\u0000\u0000ۊڱ\u0001\u0000\u0000\u0000ۊڼ\u0001\u0000\u0000\u0000ۊڿ\u0001\u0000\u0000\u0000ۊۇ\u0001\u0000\u0000\u0000ۊۉ\u0001\u0000\u0000\u0000ۋá\u0001\u0000\u0000\u0000یۍ\u0005’\u0000\u0000ۍێ\u0003ĔŠ\u0000ێۏ\u0005ƒ\u0000\u0000ۏۚ\u0003°X\u0000ېۑ\u0005ĭ\u0000\u0000ۑۓ\u0003°X\u0000ےې\u0001\u0000\u0000\u0000ےۓ\u0001\u0000\u0000\u0000ۓ۔\u0001\u0000\u0000\u0000۔ە\u0005\u001e\u0000\u0000ەۛ\u0003°X\u0000ۖۗ\u0005ĭ\u0000\u0000ۗۙ\u0003°X\u0000ۘۖ\u0001\u0000\u0000\u0000ۘۙ\u0001\u0000\u0000\u0000ۙۛ\u0001\u0000\u0000\u0000ۚے\u0001" ++ "\u0000\u0000\u0000ۚۘ\u0001\u0000\u0000\u0000ۛۜ\u0001\u0000\u0000\u0000ۜ۝\u0005Ø\u0000\u0000۝ã\u0001\u0000\u0000\u0000۞ۢ\u0005’\u0000\u0000۟۠\u0003ĔŠ\u0000۠ۡ\u0005d\u0000\u0000ۣۡ\u0001\u0000\u0000\u0000ۢ۟\u0001\u0000\u0000\u0000ۣۢ\u0001\u0000\u0000\u0000ۣۤ\u0001\u0000\u0000\u0000ۤۧ\u0003t:\u0000ۥۦ\u0005ĭ\u0000\u0000ۦۨ\u0003°X\u0000ۧۥ\u0001\u0000\u0000\u0000ۧۨ\u0001\u0000\u0000\u0000ۨ۩\u0001\u0000\u0000\u0000۩۪\u0005\u001e\u0000\u0000۪۫\u0003°X\u0000۫۬\u0005Ø\u0000\u0000۬å\u0001\u0000\u0000\u0000ۭۮ\u0005Ü\u0000\u0000ۮۯ\u0005›\u0000\u0000ۯ۰\u0003ĔŠ\u0000۰۱\u0005d\u0000\u0000۱۲\u0003°X\u0000۲۳\u00051\u0000\u0000۳۴\u0003ĔŠ\u0000۴۵\u0005ƒ\u0000\u0000۵۶\u0003°X\u0000۶۷\u0005\u001e\u0000\u0000۷۸\u0003°X\u0000۸۹\u0005ï\u0000\u0000۹ç\u0001\u0000\u0000\u0000ۺۻ\u0007\u0017\u0000\u0000ۻۼ\u0005›\u0000\u0000ۼ۽\u0003ĔŠ\u0000۽۾\u0005ƒ\u0000\u0000۾܁\u0003°X\u0000ۿ܀\u0005ĭ\u0000\u0000܀܂\u0003°X\u0000܁ۿ\u0001\u0000\u0000\u0000܁܂\u0001\u0000\u0000\u0000܂܃\u0001\u0000\u0000\u0000܃܄\u0005ï\u0000\u0000܄é\u0001\u0000\u0000\u0000܅܆\u0005±\u0000\u0000܆܇\u0005›\u0000\u0000܇܊\u0003°X\u0000܈܉\u00051\u0000\u0000܉܋\u0003¾_\u0000܊܈\u0001\u0000\u0000\u0000܊܋\u0001\u0000\u0000\u0000܋܌\u0001\u0000\u0000\u0000܌܍\u0005ï\u0000\u0000܍ë\u0001\u0000\u0000\u0000\u070e܏\u0005Ę\u0000\u0000܏ܗ\u0005›\u0000\u0000ܐܒ\u0007\u0018\u0000\u0000ܑܐ\u0001\u0000\u0000\u0000ܑܒ\u0001\u0000\u0000\u0000ܒܔ\u0001\u0000\u0000\u0000ܓܕ\u0003°X\u0000ܔܓ\u0001\u0000\u0000\u0000ܔܕ\u0001\u0000\u0000\u0000ܕܖ\u0001\u0000\u0000\u0000ܖܘ\u0005r\u0000\u0000ܗܑ\u0001\u0000\u0000\u0000ܗܘ\u0001\u0000\u0000\u0000ܘܙ\u0001\u0000\u0000\u0000ܙܚ\u0003°X\u0000ܚܛ\u0005ï\u0000\u0000ܛí\u0001\u0000\u0000\u0000ܜܝ\u0003t:\u0000ܝï\u0001\u0000\u0000\u0000ܞܟ\u0003j5\u0000ܟñ\u0001\u0000\u0000\u0000ܠܡ\u0005›\u0000\u0000ܡܢ\u0003°X\u0000ܢܣ\u0005ï\u0000\u0000ܣó\u0001\u0000\u0000\u0000ܤܥ\u0003ĔŠ\u0000ܥܮ\u0005“\u0000\u0000ܦܫ\u0003ö{\u0000ܧܨ\u00051\u0000" ++ "\u0000ܨܪ\u0003ö{\u0000ܩܧ\u0001\u0000\u0000\u0000ܪܭ\u0001\u0000\u0000\u0000ܫܩ\u0001\u0000\u0000\u0000ܫܬ\u0001\u0000\u0000\u0000ܬܯ\u0001\u0000\u0000\u0000ܭܫ\u0001\u0000\u0000\u0000ܮܦ\u0001\u0000\u0000\u0000ܮܯ\u0001\u0000\u0000\u0000ܯܰ\u0001\u0000\u0000\u0000ܱܰ\u0005Ù\u0000\u0000ܱõ\u0001\u0000\u0000\u0000ܲܳ\u0003ƃ\u0000ܴܳ\u0005/\u0000\u0000ܴܵ\u0003°X\u0000ܻܵ\u0001\u0000\u0000\u0000ܻܶ\u0003Ìf\u0000ܷܻ\u0003ĔŠ\u0000ܸܹ\u0005S\u0000\u0000ܹܻ\u0005ď\u0000\u0000ܺܲ\u0001\u0000\u0000\u0000ܺܶ\u0001\u0000\u0000\u0000ܷܺ\u0001\u0000\u0000\u0000ܸܺ\u0001\u0000\u0000\u0000ܻ÷\u0001\u0000\u0000\u0000ܼܽ\u0005<\u0000\u0000ܾܽ\u0005›\u0000\u0000ܾܿ\u0005ď\u0000\u0000ܿ݀\u0005ï\u0000\u0000݀ù\u0001\u0000\u0000\u0000݂݁\u0005i\u0000\u0000݂\u074b\u0005“\u0000\u0000݃\u074c\u0003\u0006\u0003\u0000݄݆\u0003:\u001d\u0000݄݅\u0001\u0000\u0000\u0000݆݅\u0001\u0000\u0000\u0000݆݇\u0001\u0000\u0000\u0000݇݉\u0003^/\u0000݈݊\u0003&\u0013\u0000݈݉\u0001\u0000\u0000\u0000݉݊\u0001\u0000\u0000\u0000݊\u074c\u0001\u0000\u0000\u0000\u074b݃\u0001\u0000\u0000\u0000\u074b݅\u0001\u0000\u0000\u0000\u074cݍ\u0001\u0000\u0000\u0000ݍݎ\u0005Ù\u0000\u0000ݎû\u0001\u0000\u0000\u0000ݏݐ\u0005<\u0000\u0000ݐݙ\u0005“\u0000\u0000ݑݚ\u0003\u0006\u0003\u0000ݒݔ\u0003:\u001d\u0000ݓݒ\u0001\u0000\u0000\u0000ݓݔ\u0001\u0000\u0000\u0000ݔݕ\u0001\u0000\u0000\u0000ݕݗ\u0003^/\u0000ݖݘ\u0003&\u0013\u0000ݗݖ\u0001\u0000\u0000\u0000ݗݘ\u0001\u0000\u0000\u0000ݘݚ\u0001\u0000\u0000\u0000ݙݑ\u0001\u0000\u0000\u0000ݙݓ\u0001\u0000\u0000\u0000ݚݛ\u0001\u0000\u0000\u0000ݛݜ\u0005Ù\u0000\u0000ݜý\u0001\u0000\u0000\u0000ݝݞ\u0005.\u0000\u0000ݞݟ\u0005“\u0000\u0000ݟݠ\u0003\u0006\u0003\u0000ݠݡ\u0005Ù\u0000\u0000ݡÿ\u0001\u0000\u0000\u0000ݢݤ\u0005¡\u0000\u0000ݣݢ\u0001\u0000\u0000\u0000ݣݤ\u0001\u0000\u0000\u0000ݤݥ\u0001\u0000\u0000\u0000ݥݦ\u0007\u0019\u0000\u0000ݦā\u0001\u0000\u0000\u0000ݧݩ\u0005¡\u0000\u0000ݨݧ\u0001\u0000\u0000\u0000ݨݩ\u0001\u0000\u0000\u0000ݩݪ\u0001\u0000\u0000\u0000ݪݫ\u0005\u0005\u0000\u0000ݫă\u0001\u0000\u0000\u0000ݬݵ\u0005’\u0000\u0000ݭݲ\u0003°X\u0000ݮݯ\u00051\u0000\u0000ݯݱ\u0003°X\u0000ݰ" ++ "ݮ\u0001\u0000\u0000\u0000ݱݴ\u0001\u0000\u0000\u0000ݲݰ\u0001\u0000\u0000\u0000ݲݳ\u0001\u0000\u0000\u0000ݳݶ\u0001\u0000\u0000\u0000ݴݲ\u0001\u0000\u0000\u0000ݵݭ\u0001\u0000\u0000\u0000ݵݶ\u0001\u0000\u0000\u0000ݶݷ\u0001\u0000\u0000\u0000ݷݸ\u0005Ø\u0000\u0000ݸą\u0001\u0000\u0000\u0000ݹݺ\u0003ʖŋ\u0000ݺć\u0001\u0000\u0000\u0000ݻݼ\u0005P\u0000\u0000ݼݽ\u0003Ċ…\u0000ݽĉ\u0001\u0000\u0000\u0000ݾށ\u0003ʖŋ\u0000ݿށ\u0005\u0005\u0000\u0000ހݾ\u0001\u0000\u0000\u0000ހݿ\u0001\u0000\u0000\u0000ށċ\u0001\u0000\u0000\u0000ނރ\u0003Ј\u0000ރޅ\u0005›\u0000\u0000ބކ\u0007\u0000\u0000\u0000ޅބ\u0001\u0000\u0000\u0000ޅކ\u0001\u0000\u0000\u0000ކޏ\u0001\u0000\u0000\u0000އތ\u0003χ\u0000ވމ\u00051\u0000\u0000މދ\u0003χ\u0000ފވ\u0001\u0000\u0000\u0000ދގ\u0001\u0000\u0000\u0000ތފ\u0001\u0000\u0000\u0000ތލ\u0001\u0000\u0000\u0000ލސ\u0001\u0000\u0000\u0000ގތ\u0001\u0000\u0000\u0000ޏއ\u0001\u0000\u0000\u0000ޏސ\u0001\u0000\u0000\u0000ސޑ\u0001\u0000\u0000\u0000ޑޒ\u0005ï\u0000\u0000ޒč\u0001\u0000\u0000\u0000ޓޔ\u0003°X\u0000ޔď\u0001\u0000\u0000\u0000ޕޖ\u0003Ē‰\u0000ޖޗ\u0003ʖŋ\u0000ޗđ\u0001\u0000\u0000\u0000ޘޙ\u0003ʖŋ\u0000ޙޚ\u0005S\u0000\u0000ޚޜ\u0001\u0000\u0000\u0000ޛޘ\u0001\u0000\u0000\u0000ޜޟ\u0001\u0000\u0000\u0000ޝޛ\u0001\u0000\u0000\u0000ޝޞ\u0001\u0000\u0000\u0000ޞē\u0001\u0000\u0000\u0000ޟޝ\u0001\u0000\u0000\u0000ޠޡ\u0003ʐň\u0000ޡĕ\u0001\u0000\u0000\u0000ޢާ\u0003ʖŋ\u0000ޣޤ\u00051\u0000\u0000ޤަ\u0003ʖŋ\u0000ޥޣ\u0001\u0000\u0000\u0000ަީ\u0001\u0000\u0000\u0000ާޥ\u0001\u0000\u0000\u0000ާި\u0001\u0000\u0000\u0000ިė\u0001\u0000\u0000\u0000ީާ\u0001\u0000\u0000\u0000ުޯ\u0003̍\u0000ޫެ\u0005\u001e\u0000\u0000ެޮ\u0003̍\u0000ޭޫ\u0001\u0000\u0000\u0000ޮޱ\u0001\u0000\u0000\u0000ޯޭ\u0001\u0000\u0000\u0000ޯް\u0001\u0000\u0000\u0000ްę\u0001\u0000\u0000\u0000ޱޯ\u0001\u0000\u0000\u0000\u07b2\u07b4\u0003ĜŽ\u0000\u07b3\u07b5\u0003Џ\u0000\u07b4\u07b3\u0001\u0000\u0000\u0000\u07b4\u07b5\u0001\u0000\u0000\u0000\u07b5\u07b9\u0001\u0000\u0000\u0000\u07b6\u07b8\u0003Ġ\u0000\u07b7\u07b6\u0001\u0000\u0000\u0000\u07b8\u07bb\u0001\u0000\u0000\u0000\u07b9\u07b7\u0001\u0000\u0000\u0000\u07b9\u07ba\u0001\u0000\u0000\u0000\u07baě\u0001" ++ "\u0000\u0000\u0000\u07bb\u07b9\u0001\u0000\u0000\u0000\u07bc߾\u0005´\u0000\u0000\u07bd߾\u0005¶\u0000\u0000\u07be߾\u0005 \u0000\u0000\u07bf߾\u0005!\u0000\u0000߀߾\u0005ħ\u0000\u0000߁߾\u0005ć\u0000\u0000߂߾\u0005‰\u0000\u0000߃߅\u0005Ā\u0000\u0000߄߃\u0001\u0000\u0000\u0000߄߅\u0001\u0000\u0000\u0000߅߆\u0001\u0000\u0000\u0000߆߾\u0005Š\u0000\u0000߇߾\u0005o\u0000\u0000߈߾\u0005C\u0000\u0000߉ߊ\u0005™\u0000\u0000ߊ߾\u0007\u001a\u0000\u0000ߋߌ\u0005Ĵ\u0000\u0000ߌ߾\u0007\u001a\u0000\u0000ߍߎ\u0005Ď\u0000\u0000ߎߒ\u0007\u001b\u0000\u0000ߏߓ\u0005đ\u0000\u0000ߐߑ\u0005Ď\u0000\u0000ߑߓ\u0005ij\u0000\u0000ߒߏ\u0001\u0000\u0000\u0000ߒߐ\u0001\u0000\u0000\u0000ߓ߾\u0001\u0000\u0000\u0000ߔߕ\u0005Đ\u0000\u0000ߕߙ\u0007\u001b\u0000\u0000ߖߚ\u0005đ\u0000\u0000ߗߘ\u0005Ď\u0000\u0000ߘߚ\u0005ij\u0000\u0000ߙߖ\u0001\u0000\u0000\u0000ߙߗ\u0001\u0000\u0000\u0000ߚ߾\u0001\u0000\u0000\u0000ߛ߾\u0005Z\u0000\u0000ߜ߾\u0005É\u0000\u0000ߝ߾\u0005­\u0000\u0000ߞ߾\u0005Ī\u0000\u0000ߟ߾\u0005à\u0000\u0000ߠ߾\u0005\\\u0000\u0000ߡ߾\u0005ž\u0000\u0000ߢߣ\u0007\u001c\u0000\u0000ߣߤ\u0005œ\u0000\u0000ߤߥ\u0003ʌ\u0000ߥߦ\u0005|\u0000\u0000ߦ߾\u0001\u0000\u0000\u0000ߧ߾\u0005Ã\u0000\u0000ߨ߾\u0005Ä\u0000\u0000ߩߪ\u0005Ó\u0000\u0000ߪ߾\u0005Ħ\u0000\u0000߫\u07fb\u0005\u0015\u0000\u0000߬\u07fc\u0005­\u0000\u0000߭\u07fc\u0005Ī\u0000\u0000߮\u07fc\u0005à\u0000\u0000߯\u07fc\u0005\\\u0000\u0000߰\u07fc\u0005ž\u0000\u0000߲߱\u0005Ó\u0000\u0000߲\u07fc\u0005Ħ\u0000\u0000߳ߵ\u0005Ħ\u0000\u0000ߴ߳\u0001\u0000\u0000\u0000ߴߵ\u0001\u0000\u0000\u0000ߵ߶\u0001\u0000\u0000\u0000߶߷\u0005œ\u0000\u0000߷߸\u0003ʌ\u0000߸߹\u0005|\u0000\u0000߹\u07fc\u0001\u0000\u0000\u0000ߺ\u07fc\u0005Ħ\u0000\u0000\u07fb߬\u0001\u0000\u0000\u0000\u07fb߭\u0001\u0000\u0000\u0000\u07fb߮\u0001\u0000\u0000\u0000\u07fb߯\u0001\u0000\u0000\u0000\u07fb߰\u0001\u0000\u0000\u0000\u07fb߱\u0001\u0000\u0000\u0000\u07fbߴ\u0001\u0000\u0000\u0000\u07fbߺ\u0001\u0000\u0000\u0000\u07fb\u07fc\u0001\u0000\u0000\u0000\u07fc߾\u0001\u0000\u0000\u0000߽\u07bc\u0001\u0000\u0000\u0000߽\u07bd\u0001\u0000\u0000\u0000߽\u07be\u0001\u0000\u0000\u0000߽\u07bf\u0001\u0000\u0000\u0000߽߀\u0001\u0000\u0000\u0000߽߁\u0001\u0000\u0000\u0000߽߂\u0001\u0000\u0000" ++ "\u0000߽߄\u0001\u0000\u0000\u0000߽߇\u0001\u0000\u0000\u0000߽߈\u0001\u0000\u0000\u0000߽߉\u0001\u0000\u0000\u0000߽ߋ\u0001\u0000\u0000\u0000߽ߍ\u0001\u0000\u0000\u0000߽ߔ\u0001\u0000\u0000\u0000߽ߛ\u0001\u0000\u0000\u0000߽ߜ\u0001\u0000\u0000\u0000߽ߝ\u0001\u0000\u0000\u0000߽ߞ\u0001\u0000\u0000\u0000߽ߟ\u0001\u0000\u0000\u0000߽ߠ\u0001\u0000\u0000\u0000߽ߡ\u0001\u0000\u0000\u0000߽ߢ\u0001\u0000\u0000\u0000߽ߧ\u0001\u0000\u0000\u0000߽ߨ\u0001\u0000\u0000\u0000߽ߩ\u0001\u0000\u0000\u0000߽߫\u0001\u0000\u0000\u0000߾ĝ\u0001\u0000\u0000\u0000߿ࠀ\u0005³\u0000\u0000ࠀࠃ\u0005¶\u0000\u0000ࠁࠃ\u0005‘\u0000\u0000ࠂ߿\u0001\u0000\u0000\u0000ࠂࠁ\u0001\u0000\u0000\u0000ࠃğ\u0001\u0000\u0000\u0000ࠄࠆ\u0007\u001c\u0000\u0000ࠅࠇ\u0003Џ\u0000ࠆࠅ\u0001\u0000\u0000\u0000ࠆࠇ\u0001\u0000\u0000\u0000ࠇġ\u0001\u0000\u0000\u0000ࠈࠊ\u0003\u000c\u0006\u0000ࠉࠈ\u0001\u0000\u0000\u0000ࠉࠊ\u0001\u0000\u0000\u0000ࠊ࠘\u0001\u0000\u0000\u0000ࠋ࠙\u0003Ĥ’\u0000ࠌ࠙\u0003Ħ“\u0000ࠍ࠙\u0003ƊÅ\u0000ࠎ࠙\u0003ƌÆ\u0000ࠏ࠙\u0003ƐÈ\u0000ࠐ࠙\u0003ƒÉ\u0000ࠑ࠙\u0003ƎÇ\u0000ࠒ࠙\u0003ɔĪ\u0000ࠓ࠙\u0003ɖī\u0000ࠔ࠙\u0003ƚÍ\u0000ࠕ࠙\u0003ƤÒ\u0000ࠖ࠙\u0003Ĩ”\u0000ࠗ࠙\u0003Ķ›\u0000࠘ࠋ\u0001\u0000\u0000\u0000࠘ࠌ\u0001\u0000\u0000\u0000࠘ࠍ\u0001\u0000\u0000\u0000࠘ࠎ\u0001\u0000\u0000\u0000࠘ࠏ\u0001\u0000\u0000\u0000࠘ࠐ\u0001\u0000\u0000\u0000࠘ࠑ\u0001\u0000\u0000\u0000࠘ࠒ\u0001\u0000\u0000\u0000࠘ࠓ\u0001\u0000\u0000\u0000࠘ࠔ\u0001\u0000\u0000\u0000࠘ࠕ\u0001\u0000\u0000\u0000࠘ࠖ\u0001\u0000\u0000\u0000࠘ࠗ\u0001\u0000\u0000\u0000࠙ģ\u0001\u0000\u0000\u0000ࠚࠝ\u0005=\u0000\u0000ࠛࠜ\u0005¾\u0000\u0000ࠜࠞ\u0005ä\u0000\u0000ࠝࠛ\u0001\u0000\u0000\u0000ࠝࠞ\u0001\u0000\u0000\u0000ࠞࠦ\u0001\u0000\u0000\u0000ࠟࠧ\u0003ɢı\u0000ࠠࠧ\u0003ȼĞ\u0000ࠡࠧ\u0003Ŭ¶\u0000ࠢࠧ\u0003Ⱦğ\u0000ࠣࠧ\u0003Ų¹\u0000ࠤࠧ\u0003ƪÕ\u0000ࠥࠧ\u0003ƶÛ\u0000ࠦࠟ\u0001\u0000\u0000\u0000ࠦࠠ\u0001\u0000\u0000\u0000ࠦࠡ\u0001\u0000\u0000\u0000ࠦࠢ\u0001\u0000\u0000\u0000ࠦࠣ\u0001\u0000\u0000\u0000ࠦࠤ\u0001\u0000\u0000\u0000ࠦࠥ\u0001\u0000\u0000\u0000ࠧĥ\u0001\u0000\u0000\u0000ࠨ࠰\u0005W\u0000\u0000ࠩ࠱\u0003ɤIJ\u0000ࠪ" ++ "࠱\u0003۸\u0000ࠫ࠱\u0003ɈĤ\u0000ࠬ࠱\u0003ƄÂ\u0000࠭࠱\u0003ƬÖ\u0000\u082e࠱\u0003ƠÐ\u0000\u082f࠱\u0003ƸÜ\u0000࠰ࠩ\u0001\u0000\u0000\u0000࠰ࠪ\u0001\u0000\u0000\u0000࠰ࠫ\u0001\u0000\u0000\u0000࠰ࠬ\u0001\u0000\u0000\u0000࠰࠭\u0001\u0000\u0000\u0000࠰\u082e\u0001\u0000\u0000\u0000࠰\u082f\u0001\u0000\u0000\u0000࠱ħ\u0001\u0000\u0000\u0000࠲ࡃ\u0005ÿ\u0000\u0000࠳ࡄ\u0003ɲĹ\u0000࠴ࡄ\u0003ń¢\u0000࠵ࡄ\u0003ǔê\u0000࠶ࡄ\u0003ɜĮ\u0000࠷ࡄ\u0003Ŕª\u0000࠸ࡄ\u0003ľŸ\u0000࠹ࡄ\u0003ǘì\u0000࠺ࡄ\u0003Œ©\u0000࠻ࡄ\u0003ǚí\u0000࠼ࡄ\u0003ưØ\u0000࠽ࡄ\u0003ƢÑ\u0000࠾ࡄ\u0003Š°\u0000\u083fࡄ\u0003ǖë\u0000ࡀࡄ\u0003Ŝ®\u0000ࡁࡄ\u0003ǜî\u0000ࡂࡄ\u0003ǒé\u0000ࡃ࠳\u0001\u0000\u0000\u0000ࡃ࠴\u0001\u0000\u0000\u0000ࡃ࠵\u0001\u0000\u0000\u0000ࡃ࠶\u0001\u0000\u0000\u0000ࡃ࠷\u0001\u0000\u0000\u0000ࡃ࠸\u0001\u0000\u0000\u0000ࡃ࠹\u0001\u0000\u0000\u0000ࡃ࠺\u0001\u0000\u0000\u0000ࡃ࠻\u0001\u0000\u0000\u0000ࡃ࠼\u0001\u0000\u0000\u0000ࡃ࠽\u0001\u0000\u0000\u0000ࡃ࠾\u0001\u0000\u0000\u0000ࡃ\u083f\u0001\u0000\u0000\u0000ࡃࡀ\u0001\u0000\u0000\u0000ࡃࡁ\u0001\u0000\u0000\u0000ࡃࡂ\u0001\u0000\u0000\u0000ࡄĩ\u0001\u0000\u0000\u0000ࡅࡇ\u0003IJ™\u0000ࡆࡈ\u0003\u0012\t\u0000ࡇࡆ\u0001\u0000\u0000\u0000ࡇࡈ\u0001\u0000\u0000\u0000ࡈࡋ\u0001\u0000\u0000\u0000ࡉࡋ\u0003&\u0013\u0000ࡊࡅ\u0001\u0000\u0000\u0000ࡊࡉ\u0001\u0000\u0000\u0000ࡋī\u0001\u0000\u0000\u0000", +"ࡌࡏ\u0003ĔŠ\u0000ࡍࡎ\u0005\u0017\u0000\u0000ࡎࡐ\u0003ĔŠ\u0000ࡏࡍ\u0001\u0000\u0000\u0000ࡏࡐ\u0001\u0000\u0000\u0000ࡐĭ\u0001\u0000\u0000\u0000ࡑࡒ\u0007\u0003\u0000\u0000ࡒࡓ\u0003Á\u0000ࡓį\u0001\u0000\u0000\u0000ࡔࡕ\u0005–\u0000\u0000ࡕࡖ\u0003Á\u0000ࡖı\u0001\u0000\u0000\u0000ࡗࡡ\u0005IJ\u0000\u0000ࡘࡢ\u0005ď\u0000\u0000࡙࡞\u0003Ĭ–\u0000࡚࡛\u00051\u0000\u0000࡛\u085d\u0003Ĭ–\u0000\u085c࡚\u0001\u0000\u0000\u0000\u085dࡠ\u0001\u0000\u0000\u0000࡞\u085c\u0001\u0000\u0000\u0000࡞\u085f\u0001\u0000\u0000\u0000\u085fࡢ\u0001\u0000\u0000\u0000ࡠ࡞\u0001\u0000\u0000\u0000ࡡࡘ\u0001\u0000\u0000\u0000ࡡ࡙\u0001\u0000\u0000\u0000ࡢࡤ\u0001\u0000\u0000\u0000ࡣࡥ\u0003 \u0010\u0000ࡤࡣ\u0001\u0000\u0000\u0000ࡤࡥ\u0001\u0000\u0000\u0000ࡥࡧ\u0001\u0000\u0000\u0000ࡦࡨ\u0003Į—\u0000ࡧࡦ\u0001\u0000\u0000\u0000ࡧࡨ\u0001\u0000\u0000\u0000ࡨࡪ\u0001\u0000\u0000\u0000ࡩ\u086b\u0003ݘ\u0000ࡪࡩ\u0001\u0000\u0000\u0000ࡪ\u086b\u0001\u0000\u0000\u0000\u086b\u086d\u0001\u0000\u0000\u0000\u086c\u086e\u0003&\u0013\u0000\u086d\u086c\u0001\u0000\u0000\u0000\u086d\u086e\u0001\u0000\u0000\u0000\u086eij\u0001\u0000\u0000\u0000\u086fࡰ\u0005¼\u0000\u0000ࡰࡱ\u0003ʌņ\u0000ࡱĵ\u0001\u0000\u0000\u0000ࡲࡳ\u0005ċ\u0000\u0000ࡳࡴ\u0003ޯ\u0000ࡴķ\u0001\u0000\u0000\u0000ࡵࡸ\u0003Ķ›\u0000ࡶࡸ\u0003ĺ\u0000ࡷࡵ\u0001\u0000\u0000\u0000ࡷࡶ\u0001\u0000\u0000\u0000ࡸĹ\u0001\u0000\u0000\u0000ࡹࢀ\u0005ÿ\u0000\u0000ࡺࢁ\u0003ľŸ\u0000ࡻࢁ\u0003ń¢\u0000ࡼࢁ\u0003Ŕª\u0000ࡽࢁ\u0003Œ©\u0000ࡾࢁ\u0003Š°\u0000ࡿࢁ\u0003Ŝ®\u0000ࢀࡺ\u0001\u0000\u0000\u0000ࢀࡻ\u0001\u0000\u0000\u0000ࢀࡼ\u0001\u0000\u0000\u0000ࢀࡽ\u0001\u0000\u0000\u0000ࢀࡾ\u0001\u0000\u0000\u0000ࢀࡿ\u0001\u0000\u0000\u0000ࢁĻ\u0001\u0000\u0000\u0000ࢂࢄ\u0007\u001d\u0000\u0000ࢃࢅ\u0005À\u0000\u0000ࢄࢃ\u0001\u0000\u0000\u0000ࢄࢅ\u0001\u0000\u0000\u0000ࢅࢌ\u0001\u0000\u0000\u0000ࢆ࢈\u0003IJ™\u0000ࢇࢉ\u0003\u0012\t\u0000࢈ࢇ\u0001\u0000\u0000\u0000࢈ࢉ\u0001\u0000\u0000\u0000ࢉࢌ\u0001\u0000\u0000\u0000ࢊࢌ\u0003&\u0013\u0000ࢋࢂ\u0001\u0000\u0000\u0000ࢋࢆ\u0001\u0000\u0000\u0000ࢋࢊ\u0001\u0000\u0000\u0000ࢌĽ\u0001\u0000\u0000\u0000ࢍࢎ\u0007\u001e\u0000\u0000ࢎ\u0894\u0003ł¡\u0000\u088f࢑\u0007\u001f\u0000\u0000࢐\u088f" ++ "\u0001\u0000\u0000\u0000࢐࢑\u0001\u0000\u0000\u0000࢑\u0892\u0001\u0000\u0000\u0000\u0892\u0894\u0003ŀ \u0000\u0893ࢍ\u0001\u0000\u0000\u0000\u0893࢐\u0001\u0000\u0000\u0000\u0894Ŀ\u0001\u0000\u0000\u0000\u0895\u0897\u0003Ȏć\u0000\u0896࢘\u0003ļž\u0000\u0897\u0896\u0001\u0000\u0000\u0000\u0897࢘\u0001\u0000\u0000\u0000࢚࢘\u0001\u0000\u0000\u0000࢙࢛\u0003ĸœ\u0000࢚࢙\u0001\u0000\u0000\u0000࢚࢛\u0001\u0000\u0000\u0000࢛Ł\u0001\u0000\u0000\u0000࢜࢞\u0003Ȏć\u0000࢝࢟\u0003Ī•\u0000࢞࢝\u0001\u0000\u0000\u0000࢞࢟\u0001\u0000\u0000\u0000࢟ࢡ\u0001\u0000\u0000\u0000ࢠࢢ\u0003ĸœ\u0000ࢡࢠ\u0001\u0000\u0000\u0000ࢡࢢ\u0001\u0000\u0000\u0000ࢢŃ\u0001\u0000\u0000\u0000ࢣࢥ\u0007 \u0000\u0000ࢤࢣ\u0001\u0000\u0000\u0000ࢤࢥ\u0001\u0000\u0000\u0000ࢥࢦ\u0001\u0000\u0000\u0000ࢦࢧ\u0003ņ£\u0000ࢧࢨ\u0003Ő¨\u0000ࢨࢾ\u0001\u0000\u0000\u0000ࢩࢪ\u0007 \u0000\u0000ࢪࢫ\u0005Ğ\u0000\u0000ࢫࢾ\u0003Ő¨\u0000ࢬࢮ\u0007!\u0000\u0000ࢭࢬ\u0001\u0000\u0000\u0000ࢭࢮ\u0001\u0000\u0000\u0000ࢮࢯ\u0001\u0000\u0000\u0000ࢯࢰ\u0005\u0000\u0000ࢰࢾ\u0003Ő¨\u0000ࢱࢲ\u0005ß\u0000\u0000ࢲࢳ\u0005g\u0000\u0000ࢳࢾ\u0003Ő¨\u0000ࢴࢶ\u0007\"\u0000\u0000ࢵࢴ\u0001\u0000\u0000\u0000ࢵࢶ\u0001\u0000\u0000\u0000ࢶࢷ\u0001\u0000\u0000\u0000ࢷࢸ\u0005i\u0000\u0000ࢸࢾ\u0003Ŏ§\u0000ࢹࢻ\u0003Ŋ¥\u0000ࢺࢹ\u0001\u0000\u0000\u0000ࢺࢻ\u0001\u0000\u0000\u0000ࢻࢼ\u0001\u0000\u0000\u0000ࢼࢾ\u0003Ō¦\u0000ࢽࢤ\u0001\u0000\u0000\u0000ࢽࢩ\u0001\u0000\u0000\u0000ࢽࢭ\u0001\u0000\u0000\u0000ࢽࢱ\u0001\u0000\u0000\u0000ࢽࢵ\u0001\u0000\u0000\u0000ࢽࢺ\u0001\u0000\u0000\u0000ࢾŅ\u0001\u0000\u0000\u0000ࢿࣄ\u0005ğ\u0000\u0000ࣀࣄ\u0003ň¤\u0000ࣁࣂ\u0005Ó\u0000\u0000ࣂࣄ\u0005Ě\u0000\u0000ࣃࢿ\u0001\u0000\u0000\u0000ࣃࣀ\u0001\u0000\u0000\u0000ࣃࣁ\u0001\u0000\u0000\u0000ࣄŇ\u0001\u0000\u0000\u0000ࣅ࣋\u0005h\u0000\u0000ࣆࣇ\u0005Ó\u0000\u0000ࣇ࣋\u0005h\u0000\u0000ࣈࣉ\u0005Ó\u0000\u0000ࣉ࣋\u0005g\u0000\u0000࣊ࣅ\u0001\u0000\u0000\u0000࣊ࣆ\u0001\u0000\u0000\u0000࣊ࣈ\u0001\u0000\u0000\u0000࣋ʼn\u0001\u0000\u0000\u0000࣌ࣖ\u0005\u0012\u0000\u0000࣍ࣖ\u0005Ğ\u0000\u0000࣎ࣖ\u0005g\u0000\u0000࣏࣐\u0005­\u0000\u0000࣐ࣖ\u0005\u0000\u0000࣑࣒\u0005­\u0000\u0000࣒ࣖ\u0005g" ++ "\u0000\u0000࣓ࣔ\u0005à\u0000\u0000ࣔࣖ\u0005g\u0000\u0000ࣕ࣌\u0001\u0000\u0000\u0000ࣕ࣍\u0001\u0000\u0000\u0000ࣕ࣎\u0001\u0000\u0000\u0000࣏ࣕ\u0001\u0000\u0000\u0000࣑ࣕ\u0001\u0000\u0000\u0000࣓ࣕ\u0001\u0000\u0000\u0000ࣖŋ\u0001\u0000\u0000\u0000ࣗࣙ\u0003ȐĈ\u0000ࣘࣚ\u0003ļž\u0000ࣙࣘ\u0001\u0000\u0000\u0000ࣙࣚ\u0001\u0000\u0000\u0000ࣚࣜ\u0001\u0000\u0000\u0000ࣛࣝ\u0003ĸœ\u0000ࣜࣛ\u0001\u0000\u0000\u0000ࣜࣝ\u0001\u0000\u0000\u0000ࣝō\u0001\u0000\u0000\u0000ࣣࣞ\u0003ȐĈ\u0000ࣟ࣡\u0007\u001d\u0000\u0000࣠࣢\u0005À\u0000\u0000࣡࣠\u0001\u0000\u0000\u0000࣡࣢\u0001\u0000\u0000\u0000࣢ࣤ\u0001\u0000\u0000\u0000ࣣࣟ\u0001\u0000\u0000\u0000ࣣࣤ\u0001\u0000\u0000\u0000ࣦࣤ\u0001\u0000\u0000\u0000ࣥࣧ\u0003ĸœ\u0000ࣦࣥ\u0001\u0000\u0000\u0000ࣦࣧ\u0001\u0000\u0000\u0000ࣧŏ\u0001\u0000\u0000\u0000ࣨ࣪\u0003ȐĈ\u0000ࣩ࣫\u0003Ī•\u0000ࣩ࣪\u0001\u0000\u0000\u0000࣪࣫\u0001\u0000\u0000\u0000࣭࣫\u0001\u0000\u0000\u0000࣮࣬\u0003ĸœ\u0000࣭࣬\u0001\u0000\u0000\u0000࣭࣮\u0001\u0000\u0000\u0000࣮ő\u0001\u0000\u0000\u0000ࣱ࣯\u0007#\u0000\u0000ࣰࣲ\u0003ج\u0000ࣰࣱ\u0001\u0000\u0000\u0000ࣱࣲ\u0001\u0000\u0000\u0000ࣲࣴ\u0001\u0000\u0000\u0000ࣳࣵ\u0003Ī•\u0000ࣴࣳ\u0001\u0000\u0000\u0000ࣴࣵ\u0001\u0000\u0000\u0000ࣵࣷ\u0001\u0000\u0000\u0000ࣶࣸ\u0003ĸœ\u0000ࣶࣷ\u0001\u0000\u0000\u0000ࣷࣸ\u0001\u0000\u0000\u0000ࣸœ\u0001\u0000\u0000\u0000ࣹࣻ\u0003Ś­\u0000ࣺࣹ\u0001\u0000\u0000\u0000ࣺࣻ\u0001\u0000\u0000\u0000ࣻࣼ\u0001\u0000\u0000\u0000ࣼࣾ\u0003Ŗ«\u0000ࣽࣿ\u0003ج\u0000ࣾࣽ\u0001\u0000\u0000\u0000ࣾࣿ\u0001\u0000\u0000\u0000ࣿँ\u0001\u0000\u0000\u0000ऀं\u0003Ī•\u0000ँऀ\u0001\u0000\u0000\u0000ँं\u0001\u0000\u0000\u0000ंऄ\u0001\u0000\u0000\u0000ःअ\u0003ĸœ\u0000ऄः\u0001\u0000\u0000\u0000ऄअ\u0001\u0000\u0000\u0000अŕ\u0001\u0000\u0000\u0000आइ\u0007$\u0000\u0000इŗ\u0001\u0000\u0000\u0000ईए\u0005e\u0000\u0000उऍ\u0005(\u0000\u0000ऊऋ\u0005?\u0000\u0000ऋऎ\u0005ģ\u0000\u0000ऌऎ\u0003ʖŋ\u0000ऍऊ\u0001\u0000\u0000\u0000ऍऌ\u0001\u0000\u0000\u0000ऎऐ\u0001\u0000\u0000\u0000एउ\u0001\u0000\u0000\u0000एऐ\u0001\u0000\u0000\u0000ऐř\u0001\u0000\u0000\u0000ऑग\u0005\u0012\u0000\u0000ऒओ\u0005\'\u0000\u0000" ++ "ओग\u0005ƒ\u0000\u0000औक\u0005ģ\u0000\u0000कग\u0005H\u0000\u0000खऑ\u0001\u0000\u0000\u0000खऒ\u0001\u0000\u0000\u0000खऔ\u0001\u0000\u0000\u0000गś\u0001\u0000\u0000\u0000घङ\u0003Ȓĉ\u0000ङच\u0003Ť²\u0000चŝ\u0001\u0000\u0000\u0000छज\u0003Ȓĉ\u0000जञ\u0003Ŧ³\u0000झट\u0003Ī•\u0000ञझ\u0001\u0000\u0000\u0000ञट\u0001\u0000\u0000\u0000टड\u0001\u0000\u0000\u0000ठढ\u0003ĸœ\u0000डठ\u0001\u0000\u0000\u0000डढ\u0001\u0000\u0000\u0000ढş\u0001\u0000\u0000\u0000णत\u0003ޱ\u0000तथ\u0003Ť²\u0000थš\u0001\u0000\u0000\u0000दध\u0007%\u0000\u0000धţ\u0001\u0000\u0000\u0000नप\u0003Ī•\u0000ऩन\u0001\u0000\u0000\u0000ऩप\u0001\u0000\u0000\u0000पर\u0001\u0000\u0000\u0000फभ\u0003Ŧ³\u0000बम\u0003Ī•\u0000भब\u0001\u0000\u0000\u0000भम\u0001\u0000\u0000\u0000मर\u0001\u0000\u0000\u0000यऩ\u0001\u0000\u0000\u0000यफ\u0001\u0000\u0000\u0000रल\u0001\u0000\u0000\u0000ऱळ\u0003ĸœ\u0000लऱ\u0001\u0000\u0000\u0000लळ\u0001\u0000\u0000\u0000ळť\u0001\u0000\u0000\u0000ऴष\u0003ʂŁ\u0000वष\u0003°X\u0000शऴ\u0001\u0000\u0000\u0000शव\u0001\u0000\u0000\u0000षŧ\u0001\u0000\u0000\u0000सह\u0005›\u0000\u0000हऺ\u0003ĔŠ\u0000ऺऻ\u0003†C\u0000ऻ़\u0005ï\u0000\u0000़ũ\u0001\u0000\u0000\u0000ऽा\u0005›\u0000\u0000ाी\u0005ï\u0000\u0000िु\u0003’I\u0000ीि\u0001\u0000\u0000\u0000ीु\u0001\u0000\u0000\u0000ुू\u0001\u0000\u0000\u0000ूृ\u0003”J\u0000ृॄ\u0005’\u0000\u0000ॄॅ\u0003ĔŠ\u0000ॅॆ\u0003ˆD\u0000ॆे\u0005Ø\u0000\u0000ेॉ\u0003”J\u0000ैॊ\u0003–K\u0000ॉै\u0001\u0000\u0000\u0000ॉॊ\u0001\u0000\u0000\u0000ॊो\u0001\u0000\u0000\u0000ोौ\u0005›\u0000\u0000ौ्\u0005ï\u0000\u0000्ū\u0001\u0000\u0000\u0000ॎॐ\u00057\u0000\u0000ॏ॑\u0003ɴĺ\u0000ॐॏ\u0001\u0000\u0000\u0000ॐ॑\u0001\u0000\u0000\u0000॑ॕ\u0001\u0000\u0000\u0000॒॓\u0005€\u0000\u0000॓॔\u0005³\u0000\u0000॔ॖ\u0005i\u0000\u0000ॕ॒\u0001\u0000\u0000\u0000ॕॖ\u0001\u0000\u0000\u0000ॖॗ\u0001\u0000\u0000\u0000ॗग़\u0007&\u0000\u0000क़ज़\u0003Ũ´\u0000ख़ज़\u0003Ūµ\u0000ग़क़\u0001\u0000\u0000\u0000ग़ख़" ++ "\u0001\u0000\u0000\u0000ज़ड़\u0001\u0000\u0000\u0000ड़फ़\u0003Ů·\u0000ढ़य़\u0003Ĵš\u0000फ़ढ़\u0001\u0000\u0000\u0000फ़य़\u0001\u0000\u0000\u0000य़ŭ\u0001\u0000\u0000\u0000ॠॡ\u0005\u001a\u0000\u0000ॡॢ\u0005i\u0000\u0000ॢঃ\u0003ƆÃ\u0000ॣ।\u0007\'\u0000\u0000।२\u0003ƆÃ\u0000॥३\u00050\u0000\u0000०१\u0005‹\u0000\u0000१३\u0007\u0012\u0000\u0000२॥\u0001\u0000\u0000\u0000२०\u0001\u0000\u0000\u0000३४\u0001\u0000\u0000\u0000४५\u0003ʌ\u0000५ঃ\u0001\u0000\u0000\u0000६७\u0007\'\u0000\u0000७८\u0003ƆÃ\u0000८॰\u0005‹\u0000\u0000९ॱ\u0007 \u0000\u0000॰९\u0001\u0000\u0000\u0000॰ॱ\u0001\u0000\u0000\u0000ॱॲ\u0001\u0000\u0000\u0000ॲॳ\u0005Ğ\u0000\u0000ॳঃ\u0001\u0000\u0000\u0000ॴॵ\u0007\'\u0000\u0000ॵॶ\u0003ƆÃ\u0000ॶॸ\u0005‹\u0000\u0000ॷॹ\u0007 \u0000\u0000ॸॷ\u0001\u0000\u0000\u0000ॸॹ\u0001\u0000\u0000\u0000ॹॺ\u0001\u0000\u0000\u0000ॺॻ\u0005\u0000\u0000ॻঃ\u0001\u0000\u0000\u0000ॼॽ\u0007\'\u0000\u0000ॽॾ\u0003ƆÃ\u0000ॾॿ\u0005‹\u0000\u0000ॿঀ\u0005³\u0000\u0000ঀঁ\u0005¶\u0000\u0000ঁঃ\u0001\u0000\u0000\u0000ংॠ\u0001\u0000\u0000\u0000ংॣ\u0001\u0000\u0000\u0000ং६\u0001\u0000\u0000\u0000ংॴ\u0001\u0000\u0000\u0000ংॼ\u0001\u0000\u0000\u0000ঃů\u0001\u0000\u0000\u0000\u0984ঝ\u00057\u0000\u0000অঈ\u0005¹\u0000\u0000আউ\u0003Ũ´\u0000ইউ\u0003Ūµ\u0000ঈআ\u0001\u0000\u0000\u0000ঈই\u0001\u0000\u0000\u0000উঊ\u0001\u0000\u0000\u0000ঊখ\u0005\u001a\u0000\u0000ঋঌ\u0005i\u0000\u0000ঌগ\u0003ƆÃ\u0000\u098d\u098e\u0003ƆÃ\u0000\u098eঔ\u0005‹\u0000\u0000এক\u0005Ğ\u0000\u0000ঐ\u0991\u0005­\u0000\u0000\u0991ক\u0005\u0000\u0000\u0992ও\u0005³\u0000\u0000ওক\u0005¶\u0000\u0000ঔএ\u0001\u0000\u0000\u0000ঔঐ\u0001\u0000\u0000\u0000ঔ\u0992\u0001\u0000\u0000\u0000কগ\u0001\u0000\u0000\u0000খঋ\u0001\u0000\u0000\u0000খ\u098d\u0001\u0000\u0000\u0000গঞ\u0001\u0000\u0000\u0000ঘছ\u0003ɴĺ\u0000ঙচ\u0005€\u0000\u0000চজ\u0005i\u0000\u0000ছঙ\u0001\u0000\u0000\u0000ছজ\u0001\u0000\u0000\u0000জঞ\u0001\u0000\u0000\u0000ঝঅ\u0001\u0000\u0000\u0000ঝঘ\u0001\u0000\u0000\u0000ঞű\u0001\u0000\u0000\u0000টঠ\u0005&\u0000\u0000ঠড\u0005„\u0000\u0000ড\u09bb\u0003Ŷ" ++ "»\u0000ঢণ\u0005×\u0000\u0000ণত\u0005„\u0000\u0000ত\u09bb\u0003Ŷ»\u0000থদ\u0005Č\u0000\u0000দধ\u0005„\u0000\u0000ধ\u09bb\u0003Ŷ»\u0000ন\u09a9\u0005É\u0000\u0000\u09a9প\u0005„\u0000\u0000প\u09bb\u0003Ŷ»\u0000ফব\u0005Ĩ\u0000\u0000বভ\u0005„\u0000\u0000ভ\u09bb\u0003Ŷ»\u0000ময\u0005š\u0000\u0000যর\u0005„\u0000\u0000র\u09bb\u0003ž¿\u0000\u09b1ল\u0005s\u0000\u0000ল\u09b3\u0005„\u0000\u0000\u09b3\u09bb\u0003Ÿ¼\u0000\u09b4স\u0005„\u0000\u0000\u09b5শ\u0005¹\u0000\u0000শহ\u0003Ŵº\u0000ষহ\u0003Ŷ»\u0000স\u09b5\u0001\u0000\u0000\u0000সষ\u0001\u0000\u0000\u0000হ\u09bb\u0001\u0000\u0000\u0000\u09baট\u0001\u0000\u0000\u0000\u09baঢ\u0001\u0000\u0000\u0000\u09baথ\u0001\u0000\u0000\u0000\u09baন\u0001\u0000\u0000\u0000\u09baফ\u0001\u0000\u0000\u0000\u09baম\u0001\u0000\u0000\u0000\u09ba\u09b1\u0001\u0000\u0000\u0000\u09ba\u09b4\u0001\u0000\u0000\u0000\u09bbų\u0001\u0000\u0000\u0000়ঽ\u0003†C\u0000ঽা\u0005›\u0000\u0000াি\u0003Ė‹\u0000িী\u0005ï\u0000\u0000ীŵ\u0001\u0000\u0000\u0000ুৃ\u0003ɴĺ\u0000ূু\u0001\u0000\u0000\u0000ূৃ\u0001\u0000\u0000\u0000ৃে\u0001\u0000\u0000\u0000ৄ\u09c5\u0005€\u0000\u0000\u09c5\u09c6\u0005³\u0000\u0000\u09c6ৈ\u0005i\u0000\u0000েৄ\u0001\u0000\u0000\u0000েৈ\u0001\u0000\u0000\u0000ৈ\u09c9\u0001\u0000\u0000\u0000\u09c9ৌ\u0005p\u0000\u0000\u09ca্\u0003Ũ´\u0000ো্\u0003Ūµ\u0000ৌ\u09ca\u0001\u0000\u0000\u0000ৌো\u0001\u0000\u0000\u0000্ৎ\u0001\u0000\u0000\u0000ৎ\u09cf\u0005¹\u0000\u0000\u09cf\u09d1\u0003ƆÃ\u0000\u09d0\u09d2\u0003Ĵš\u0000\u09d1\u09d0\u0001\u0000\u0000\u0000\u09d1\u09d2\u0001\u0000\u0000\u0000\u09d2ŷ\u0001\u0000\u0000\u0000\u09d3\u09d5\u0003ɴĺ\u0000\u09d4\u09d3\u0001\u0000\u0000\u0000\u09d4\u09d5\u0001\u0000\u0000\u0000\u09d5\u09d9\u0001\u0000\u0000\u0000\u09d6ৗ\u0005€\u0000\u0000ৗ\u09d8\u0005³\u0000\u0000\u09d8\u09da\u0005i\u0000\u0000\u09d9\u09d6\u0001\u0000\u0000\u0000\u09d9\u09da\u0001\u0000\u0000\u0000\u09da\u09db\u0001\u0000\u0000\u0000\u09db\u09de\u0005p\u0000\u0000ড়য়\u0003ź½\u0000ঢ়য়\u0003ż¾\u0000\u09deড়\u0001\u0000\u0000\u0000\u09deঢ়\u0001\u0000\u0000\u0000য়ৠ\u0001\u0000\u0000\u0000ৠৡ\u0005¹\u0000\u0000ৡৢ\u0005[\u0000\u0000ৢৣ\u0005’\u0000\u0000ৣ\u09e4\u0003ƈÄ\u0000\u09e4০\u0005Ø\u0000\u0000\u09e5১\u0003Ĵš\u0000০\u09e5\u0001\u0000\u0000\u0000০১\u0001\u0000\u0000\u0000" ++ "১Ź\u0001\u0000\u0000\u0000২৩\u0005›\u0000\u0000৩৪\u0003ĔŠ\u0000৪৫\u0005/\u0000\u0000৫ৰ\u0003ʖŋ\u0000৬৭\u0005\u001e\u0000\u0000৭৯\u0003ʖŋ\u0000৮৬\u0001\u0000\u0000\u0000৯৲\u0001\u0000\u0000\u0000ৰ৮\u0001\u0000\u0000\u0000ৰৱ\u0001\u0000\u0000\u0000ৱ৳\u0001\u0000\u0000\u0000৲ৰ\u0001\u0000\u0000\u0000৳৴\u0005ï\u0000\u0000৴Ż\u0001\u0000\u0000\u0000৵৶\u0005›\u0000\u0000৶৸\u0005ï\u0000\u0000৷৹\u0003’I\u0000৸৷\u0001\u0000\u0000\u0000৸৹\u0001\u0000\u0000\u0000৹৺\u0001\u0000\u0000\u0000৺৻\u0003”J\u0000৻ৼ\u0005’\u0000\u0000ৼ৽\u0003ĔŠ\u0000৽৾\u0005/\u0000\u0000৾ਃ\u0003ʖŋ\u0000\u09ff\u0a00\u0005\u001e\u0000\u0000\u0a00ਂ\u0003ʖŋ\u0000ਁ\u09ff\u0001\u0000\u0000\u0000ਂਅ\u0001\u0000\u0000\u0000ਃਁ\u0001\u0000\u0000\u0000ਃ\u0a04\u0001\u0000\u0000\u0000\u0a04ਆ\u0001\u0000\u0000\u0000ਅਃ\u0001\u0000\u0000\u0000ਆਇ\u0005Ø\u0000\u0000ਇਉ\u0003”J\u0000ਈਊ\u0003–K\u0000ਉਈ\u0001\u0000\u0000\u0000ਉਊ\u0001\u0000\u0000\u0000ਊ\u0a0b\u0001\u0000\u0000\u0000\u0a0b\u0a0c\u0005›\u0000\u0000\u0a0c\u0a0d\u0005ï\u0000\u0000\u0a0dŽ\u0001\u0000\u0000\u0000\u0a0eਐ\u0003ɴĺ\u0000ਏ\u0a0e\u0001\u0000\u0000\u0000ਏਐ\u0001\u0000\u0000\u0000ਐਔ\u0001\u0000\u0000\u0000\u0a11\u0a12\u0005€\u0000\u0000\u0a12ਓ\u0005³\u0000\u0000ਓਕ\u0005i\u0000\u0000ਔ\u0a11\u0001\u0000\u0000\u0000ਔਕ\u0001\u0000\u0000\u0000ਕਖ\u0001\u0000\u0000\u0000ਖਙ\u0005p\u0000\u0000ਗਚ\u0003ƀÀ\u0000ਘਚ\u0003ƂÁ\u0000ਙਗ\u0001\u0000\u0000\u0000ਙਘ\u0001\u0000\u0000\u0000ਚਛ\u0001\u0000\u0000\u0000ਛਜ\u0003ʖŋ\u0000ਜਝ\u0005›\u0000\u0000ਝਞ\u0003ĔŠ\u0000ਞਠ\u0005ï\u0000\u0000ਟਡ\u0003Ĵš\u0000ਠਟ\u0001\u0000\u0000\u0000ਠਡ\u0001\u0000\u0000\u0000ਡſ\u0001\u0000\u0000\u0000ਢਣ\u0005›\u0000\u0000ਣਤ\u0003ĔŠ\u0000ਤਥ\u0005ï\u0000\u0000ਥਦ\u0005¹\u0000\u0000ਦਧ\u0005[\u0000\u0000ਧƁ\u0001\u0000\u0000\u0000ਨ\u0a29\u0005›\u0000\u0000\u0a29ਫ\u0005ï\u0000\u0000ਪਬ\u0003’I\u0000ਫਪ\u0001\u0000\u0000\u0000ਫਬ\u0001\u0000\u0000\u0000ਬਭ\u0001\u0000\u0000\u0000ਭਮ\u0003”J\u0000ਮਯ\u0005’\u0000\u0000ਯਰ\u0003ĔŠ\u0000ਰ\u0a31\u0005Ø\u0000\u0000\u0a31ਲ਼\u0003”J\u0000ਲ\u0a34\u0003–K\u0000ਲ਼ਲ" ++ "\u0001\u0000\u0000\u0000ਲ਼\u0a34\u0001\u0000\u0000\u0000\u0a34ਵ\u0001\u0000\u0000\u0000ਵਸ਼\u0005›\u0000\u0000ਸ਼\u0a37\u0005ï\u0000\u0000\u0a37ਹ\u0005¹\u0000\u0000ਸ\u0a3a\u0005[\u0000\u0000ਹਸ\u0001\u0000\u0000\u0000ਹ\u0a3a\u0001\u0000\u0000\u0000\u0a3aƃ\u0001\u0000\u0000\u0000\u0a3bੇ\u0005„\u0000\u0000਼\u0a3d\u0005¹\u0000\u0000\u0a3dਾ\u0003†C\u0000ਾਿ\u0005›\u0000\u0000ਿੀ\u0003Ė‹\u0000ੀੁ\u0005ï\u0000\u0000ੁੈ\u0001\u0000\u0000\u0000ੂ\u0a45\u0003ɴĺ\u0000\u0a43\u0a44\u0005€\u0000\u0000\u0a44\u0a46\u0005i\u0000\u0000\u0a45\u0a43\u0001\u0000\u0000\u0000\u0a45\u0a46\u0001\u0000\u0000\u0000\u0a46ੈ\u0001\u0000\u0000\u0000ੇ਼\u0001\u0000\u0000\u0000ੇੂ\u0001\u0000\u0000\u0000ੈƅ\u0001\u0000\u0000\u0000\u0a49\u0a4a\u0003ĔŠ\u0000\u0a4aੋ\u0003Ìf\u0000ੋੑ\u0001\u0000\u0000\u0000ੌ੍\u0005›\u0000\u0000੍\u0a4e\u0003ƈÄ\u0000\u0a4e\u0a4f\u0005ï\u0000\u0000\u0a4fੑ\u0001\u0000\u0000\u0000\u0a50\u0a49\u0001\u0000\u0000\u0000\u0a50ੌ\u0001\u0000\u0000\u0000ੑƇ\u0001\u0000\u0000\u0000\u0a52\u0a53\u0003ĔŠ\u0000\u0a53ਗ਼\u0003Ìf\u0000\u0a54\u0a55\u00051\u0000\u0000\u0a55\u0a56\u0003ĔŠ\u0000\u0a56\u0a57\u0003Ìf\u0000\u0a57ਖ਼\u0001\u0000\u0000\u0000\u0a58\u0a54\u0001\u0000\u0000\u0000ਖ਼ੜ\u0001\u0000\u0000\u0000ਗ਼\u0a58\u0001\u0000\u0000\u0000ਗ਼ਜ਼\u0001\u0000\u0000\u0000ਜ਼Ɖ\u0001\u0000\u0000\u0000ੜਗ਼\u0001\u0000\u0000\u0000\u0a5d\u0a63\u0005\u0013\u0000\u0000ਫ਼\u0a64\u0003ɦij\u0000\u0a5f\u0a64\u0003ƼÞ\u0000\u0a60\u0a64\u0003ɌĦ\u0000\u0a61\u0a64\u0003ƾß\u0000\u0a62\u0a64\u0003ƜÎ\u0000\u0a63ਫ਼\u0001\u0000\u0000\u0000\u0a63\u0a5f\u0001\u0000\u0000\u0000\u0a63\u0a60\u0001\u0000\u0000\u0000\u0a63\u0a61\u0001\u0000\u0000\u0000\u0a63\u0a62\u0001\u0000\u0000\u0000\u0a64Ƌ\u0001\u0000\u0000\u0000\u0a65੩\u0005Ý\u0000\u0000੦੪\u0003Ʈ×\u0000੧੪\u0003ƞÏ\u0000੨੪\u0003ƺÝ\u0000੩੦\u0001\u0000\u0000\u0000੩੧\u0001\u0000\u0000\u0000੩੨\u0001\u0000\u0000\u0000੪ƍ\u0001\u0000\u0000\u0000੫੶\u0005w\u0000\u0000੬੮\u0005‚\u0000\u0000੭੬\u0001\u0000\u0000\u0000੭੮\u0001\u0000\u0000\u0000੮੯\u0001\u0000\u0000\u0000੯ੰ\u0003Ǣñ\u0000ੰੱ\u0005Ē\u0000\u0000ੱੲ\u0003ƖË\u0000ੲ\u0a77\u0001\u0000\u0000\u0000ੳੴ\u0003ƘÌ\u0000ੴੵ\u0003ƲÙ\u0000ੵ\u0a77\u0001\u0000\u0000\u0000੶੭\u0001\u0000\u0000\u0000੶ੳ\u0001\u0000\u0000\u0000\u0a77Ə\u0001\u0000\u0000\u0000\u0a78\u0a7a\u0005J\u0000\u0000\u0a79\u0a7b\u0005‚\u0000\u0000\u0a7a\u0a79\u0001\u0000" ++ "\u0000\u0000\u0a7a\u0a7b\u0001\u0000\u0000\u0000\u0a7b\u0a7c\u0001\u0000\u0000\u0000\u0a7c\u0a7d\u0003Ǣñ\u0000\u0a7d\u0a7e\u0005Ē\u0000\u0000\u0a7e\u0a7f\u0003ƖË\u0000\u0a7fƑ\u0001\u0000\u0000\u0000\u0a80\u0a8e\u0005ê\u0000\u0000ઁઃ\u0007(\u0000\u0000ંઁ\u0001\u0000\u0000\u0000ંઃ\u0001\u0000\u0000\u0000ઃઅ\u0001\u0000\u0000\u0000\u0a84આ\u0005‚\u0000\u0000અ\u0a84\u0001\u0000\u0000\u0000અઆ\u0001\u0000\u0000\u0000આઇ\u0001\u0000\u0000\u0000ઇઈ\u0003Ǣñ\u0000ઈઉ\u0005r\u0000\u0000ઉઊ\u0003ƖË\u0000ઊએ\u0001\u0000\u0000\u0000ઋઌ\u0003ƘÌ\u0000ઌઍ\u0003ƴÚ\u0000ઍએ\u0001\u0000\u0000\u0000\u0a8eં\u0001\u0000\u0000\u0000\u0a8eઋ\u0001\u0000\u0000\u0000એƓ\u0001\u0000\u0000\u0000ઐઑ\u0003ɸļ\u0000ઑƕ\u0001\u0000\u0000\u0000\u0a92ઓ\u0003ɸļ\u0000ઓƗ\u0001\u0000\u0000\u0000ઔક\u0007)\u0000\u0000કƙ\u0001\u0000\u0000\u0000ખગ\u0005]\u0000\u0000ગઘ\u0005ø\u0000\u0000ઘચ\u0003ʈń\u0000ઙછ\u0003Ĵš\u0000ચઙ\u0001\u0000\u0000\u0000ચછ\u0001\u0000\u0000\u0000છƛ\u0001\u0000\u0000\u0000જઝ\u0005ø\u0000\u0000ઝઞ\u0003ʈń\u0000ઞટ\u0005ú\u0000\u0000ટઠ\u0003Ĵš\u0000ઠƝ\u0001\u0000\u0000\u0000ડઢ\u0005ø\u0000\u0000ઢણ\u0003ʈń\u0000ણત\u0005Ē\u0000\u0000તથ\u0003ʈń\u0000થƟ\u0001\u0000\u0000\u0000દધ\u0005ø\u0000\u0000ધન\u0003ʈń\u0000નơ\u0001\u0000\u0000\u0000\u0aa9ફ\u0007*\u0000\u0000પબ\u0003Ī•\u0000ફપ\u0001\u0000\u0000\u0000ફબ\u0001\u0000\u0000\u0000બƣ\u0001\u0000\u0000\u0000ભય\u0005X\u0000\u0000મભ\u0001\u0000\u0000\u0000મય\u0001\u0000\u0000\u0000યલ\u0001\u0000\u0000\u0000રળ\u0003ƦÓ\u0000\u0ab1ળ\u0003ƨÔ\u0000લર\u0001\u0000\u0000\u0000લ\u0ab1\u0001\u0000\u0000\u0000ળƥ\u0001\u0000\u0000\u0000\u0ab4વ\u0005F\u0000\u0000વશ\u0007+\u0000\u0000શષ\u0005r\u0000\u0000ષસ\u0007*\u0000\u0000સઽ\u0003ʈń\u0000હ\u0aba\u00051\u0000\u0000\u0aba઼\u0003ʈń\u0000\u0abbહ\u0001\u0000\u0000\u0000઼િ\u0001\u0000\u0000\u0000ઽ\u0abb\u0001\u0000\u0000\u0000ઽા\u0001\u0000\u0000\u0000ાƧ\u0001\u0000\u0000\u0000િઽ\u0001\u0000\u0000\u0000ીુ\u0005Û\u0000\u0000ુૂ\u0007+\u0000\u0000ૂƩ\u0001\u0000\u0000\u0000ૃૅ\u0005‚\u0000\u0000ૄૃ\u0001\u0000\u0000\u0000ૄૅ\u0001\u0000\u0000\u0000ૅ\u0ac6\u0001\u0000\u0000\u0000" ++ "\u0ac6ે\u0005ë\u0000\u0000ેો\u0003ɶĻ\u0000ૈૉ\u0005€\u0000\u0000ૉ\u0aca\u0005³\u0000\u0000\u0acaૌ\u0005i\u0000\u0000ોૈ\u0001\u0000\u0000\u0000ોૌ\u0001\u0000\u0000\u0000ૌ\u0ad1\u0001\u0000\u0000\u0000્\u0ace\u0005\u0017\u0000\u0000\u0ace\u0acf\u0005:\u0000\u0000\u0acfૐ\u0005·\u0000\u0000ૐ\u0ad2\u0003ɶĻ\u0000\u0ad1્\u0001\u0000\u0000\u0000\u0ad1\u0ad2\u0001\u0000\u0000\u0000\u0ad2ƫ\u0001\u0000\u0000\u0000\u0ad3\u0ad4\u0005ë\u0000\u0000\u0ad4\u0ad7\u0003ɶĻ\u0000\u0ad5\u0ad6\u0005€\u0000\u0000\u0ad6\u0ad8\u0005i\u0000\u0000\u0ad7\u0ad5\u0001\u0000\u0000\u0000\u0ad7\u0ad8\u0001\u0000\u0000\u0000\u0ad8ƭ\u0001\u0000\u0000\u0000\u0ad9\u0ada\u0005ë\u0000\u0000\u0ada\u0add\u0003ɶĻ\u0000\u0adb\u0adc\u0005€\u0000\u0000\u0adc\u0ade\u0005i\u0000\u0000\u0add\u0adb\u0001\u0000\u0000\u0000\u0add\u0ade\u0001\u0000\u0000\u0000\u0ade\u0adf\u0001\u0000\u0000\u0000\u0adfૠ\u0005Ē\u0000\u0000ૠૡ\u0003ɶĻ\u0000ૡƯ\u0001\u0000\u0000\u0000ૢ\u0ae4\u0007,\u0000\u0000ૣૢ\u0001\u0000\u0000\u0000ૣ\u0ae4\u0001\u0000\u0000\u0000\u0ae4\u0ae5\u0001\u0000\u0000\u0000\u0ae5૨\u0003ƘÌ\u0000૦૧\u0005Į\u0000\u0000૧૩\u0007-\u0000\u0000૨૦\u0001\u0000\u0000\u0000૨૩\u0001\u0000\u0000\u0000૩૫\u0001\u0000\u0000\u0000૪૬\u0003Ī•\u0000૫૪\u0001\u0000\u0000\u0000૫૬\u0001\u0000\u0000\u0000૬Ʊ\u0001\u0000\u0000\u0000૭૮\u0003ƖË\u0000૮૯\u0005Ē\u0000\u0000૯૰\u0003ƔÊ\u0000૰Ƴ\u0001\u0000\u0000\u0000૱\u0af2\u0003ƖË\u0000\u0af2\u0af3\u0005r\u0000\u0000\u0af3\u0af4\u0003ƔÊ\u0000\u0af4Ƶ\u0001\u0000\u0000\u0000\u0af5\u0af6\u0005ģ\u0000\u0000\u0af6ૺ\u0003ɶĻ\u0000\u0af7\u0af8\u0005€\u0000\u0000\u0af8ૹ\u0005³\u0000\u0000ૹૻ\u0005i\u0000\u0000ૺ\u0af7\u0001\u0000\u0000\u0000ૺૻ\u0001\u0000\u0000\u0000ૻଅ\u0001\u0000\u0000\u0000ૼଃ\u0005ú\u0000\u0000૽\u0b04\u0003ǂá\u0000૾૿\u0005Á\u0000\u0000૿\u0b04\u0003Ljä\u0000\u0b00\u0b04\u0003NJå\u0000ଁ\u0b04\u0003njæ\u0000ଂ\u0b04\u0003ǎç\u0000ଃ૽\u0001\u0000\u0000\u0000ଃ૾\u0001\u0000\u0000\u0000ଃ\u0b00\u0001\u0000\u0000\u0000ଃଁ\u0001\u0000\u0000\u0000ଃଂ\u0001\u0000\u0000\u0000\u0b04ଆ\u0001\u0000\u0000\u0000ଅૼ\u0001\u0000\u0000\u0000ଆଇ\u0001\u0000\u0000\u0000ଇଅ\u0001\u0000\u0000\u0000ଇଈ\u0001\u0000\u0000\u0000ଈƷ\u0001\u0000\u0000\u0000ଉଊ\u0005ģ\u0000\u0000ଊ\u0b0d\u0003ɶĻ\u0000ଋଌ\u0005€\u0000\u0000ଌ\u0b0e\u0005i\u0000\u0000\u0b0dଋ\u0001\u0000\u0000\u0000\u0b0d\u0b0e" ++ "\u0001\u0000\u0000\u0000\u0b0eƹ\u0001\u0000\u0000\u0000ଏଐ\u0005ģ\u0000\u0000ଐଓ\u0003ɶĻ\u0000\u0b11\u0b12\u0005€\u0000\u0000\u0b12ଔ\u0005i\u0000\u0000ଓ\u0b11\u0001\u0000\u0000\u0000ଓଔ\u0001\u0000\u0000\u0000ଔକ\u0001\u0000\u0000\u0000କଖ\u0005Ē\u0000\u0000ଖଗ\u0003ɶĻ\u0000ଗƻ\u0001\u0000\u0000\u0000ଘଙ\u0005?\u0000\u0000ଙଚ\u0005ģ\u0000\u0000ଚଛ\u0005ú\u0000\u0000ଛଜ\u0005Á\u0000\u0000ଜଝ\u0005r\u0000\u0000ଝଞ\u0003džã\u0000ଞଟ\u0005Ē\u0000\u0000ଟଠ\u0003džã\u0000ଠƽ\u0001\u0000\u0000\u0000ଡଢ\u0005ģ\u0000\u0000ଢଥ\u0003ɶĻ\u0000ଣତ\u0005€\u0000\u0000ତଦ\u0005i\u0000\u0000ଥଣ\u0001\u0000\u0000\u0000ଥଦ\u0001\u0000\u0000\u0000ଦ\u0b34\u0001\u0000\u0000\u0000ଧର\u0005â\u0000\u0000ନ\u0b29\u0005~\u0000\u0000\u0b29\u0b31\u0005A\u0000\u0000ପଫ\u0005\u0012\u0000\u0000ଫଭ\u0005\u001d\u0000\u0000ବମ\u0007.\u0000\u0000ଭବ\u0001\u0000\u0000\u0000ଭମ\u0001\u0000\u0000\u0000ମ\u0b31\u0001\u0000\u0000\u0000ଯ\u0b31\u0003ǀà\u0000ରନ\u0001\u0000\u0000\u0000ରପ\u0001\u0000\u0000\u0000ରଯ\u0001\u0000\u0000\u0000\u0b31ଳ\u0001\u0000\u0000\u0000ଲଧ\u0001\u0000\u0000\u0000ଳଶ\u0001\u0000\u0000\u0000\u0b34ଲ\u0001\u0000\u0000\u0000\u0b34ଵ\u0001\u0000\u0000\u0000ଵୂ\u0001\u0000\u0000\u0000ଶ\u0b34\u0001\u0000\u0000\u0000ଷା\u0005ú\u0000\u0000ସି\u0003ǂá\u0000ହ\u0b3a\u0005Á\u0000\u0000\u0b3aି\u0003Ljä\u0000\u0b3bି\u0003NJå\u0000଼ି\u0003njæ\u0000ଽି\u0003ǎç\u0000ାସ\u0001\u0000\u0000\u0000ାହ\u0001\u0000\u0000\u0000ା\u0b3b\u0001\u0000\u0000\u0000ା଼\u0001\u0000\u0000\u0000ାଽ\u0001\u0000\u0000\u0000ିୁ\u0001\u0000\u0000\u0000ୀଷ\u0001\u0000\u0000\u0000ୁୄ\u0001\u0000\u0000\u0000ୂୀ\u0001\u0000\u0000\u0000ୂୃ\u0001\u0000\u0000\u0000ୃƿ\u0001\u0000\u0000\u0000ୄୂ\u0001\u0000\u0000\u0000\u0b45େ\u0005\u001d\u0000\u0000\u0b46ୈ\u0007.\u0000\u0000େ\u0b46\u0001\u0000\u0000\u0000େୈ\u0001\u0000\u0000\u0000ୈୌ\u0001\u0000\u0000\u0000\u0b49୍\u0003ʄł\u0000\u0b4a୍\u0003ʀŀ\u0000ୋ୍\u0003Ĉ„\u0000ୌ\u0b49\u0001\u0000\u0000\u0000ୌ\u0b4a\u0001\u0000\u0000\u0000ୌୋ\u0001\u0000\u0000\u0000୍ǁ\u0001\u0000\u0000\u0000\u0b4e\u0b50\u0007/\u0000\u0000\u0b4f\u0b4e\u0001\u0000\u0000\u0000\u0b4f\u0b50\u0001\u0000\u0000\u0000\u0b50\u0b51\u0001\u0000\u0000\u0000\u0b51\u0b52\u0005Á\u0000\u0000\u0b52\u0b54\u0003džã\u0000\u0b53୕\u0003Lj" ++ "ä\u0000\u0b54\u0b53\u0001\u0000\u0000\u0000\u0b54୕\u0001\u0000\u0000\u0000୕ǃ\u0001\u0000\u0000\u0000ୖ\u0b58\u0007/\u0000\u0000ୗୖ\u0001\u0000\u0000\u0000ୗ\u0b58\u0001\u0000\u0000\u0000\u0b58\u0b59\u0001\u0000\u0000\u0000\u0b59\u0b5a\u0005Á\u0000\u0000\u0b5a\u0b5b\u0003džã\u0000\u0b5bDž\u0001\u0000\u0000\u0000ଡ଼ୟ\u0003ʄł\u0000ଢ଼ୟ\u0003Ĉ„\u0000\u0b5eଡ଼\u0001\u0000\u0000\u0000\u0b5eଢ଼\u0001\u0000\u0000\u0000ୟLJ\u0001\u0000\u0000\u0000ୠୢ\u0005,\u0000\u0000ୡୣ\u0005³\u0000\u0000ୢୡ\u0001\u0000\u0000\u0000ୢୣ\u0001\u0000\u0000\u0000ୣ\u0b64\u0001\u0000\u0000\u0000\u0b64\u0b65\u0005ç\u0000\u0000\u0b65lj\u0001\u0000\u0000\u0000୦୧\u0005ą\u0000\u0000୧୨\u00070\u0000\u0000୨Nj\u0001\u0000\u0000\u0000୩୪\u0005~\u0000\u0000୪୫\u0005A\u0000\u0000୫୬\u0003ɼľ\u0000୬Ǎ\u0001\u0000\u0000\u0000୭୯\u0005\u001d\u0000\u0000୮୰\u0005Ô\u0000\u0000୯୮\u0001\u0000\u0000\u0000୯୰\u0001\u0000\u0000\u0000୰ୱ\u0001\u0000\u0000\u0000ୱ୲\u0003ʄł\u0000୲୵\u0005“\u0000\u0000୳୴\u0005ú\u0000\u0000୴୶\u0003ǐè\u0000୵୳\u0001\u0000\u0000\u0000୶୷\u0001\u0000\u0000\u0000୷୵\u0001\u0000\u0000\u0000୷\u0b78\u0001\u0000\u0000\u0000\u0b78\u0b79\u0001\u0000\u0000\u0000\u0b79\u0b7a\u0005Ù\u0000\u0000\u0b7aǏ\u0001\u0000\u0000\u0000\u0b7b\u0b7c\u0005\u0000\u0000\u0b7c\u0b81\u0003ʆŃ\u0000\u0b7d\u0b81\u0003DŽâ\u0000\u0b7e\u0b7f\u0005Á\u0000\u0000\u0b7f\u0b81\u0003Ljä\u0000\u0b80\u0b7b\u0001\u0000\u0000\u0000\u0b80\u0b7d\u0001\u0000\u0000\u0000\u0b80\u0b7e\u0001\u0000\u0000\u0000\u0b81Ǒ\u0001\u0000\u0000\u0000ஂஅ\u0007-\u0000\u0000ஃ\u0b84\u0005Į\u0000\u0000\u0b84ஆ\u0005\u001d\u0000\u0000அஃ\u0001\u0000\u0000\u0000அஆ\u0001\u0000\u0000\u0000ஆஈ\u0001\u0000\u0000\u0000இஉ\u0003Ī•\u0000ஈஇ\u0001\u0000\u0000\u0000ஈஉ\u0001\u0000\u0000\u0000உǓ\u0001\u0000\u0000\u0000ஊ\u0b8b\u0005?\u0000\u0000\u0b8b\u0b8d\u0005ģ\u0000\u0000\u0b8cஎ\u0003Ī•\u0000\u0b8d\u0b8c\u0001\u0000\u0000\u0000\u0b8dஎ\u0001\u0000\u0000\u0000எǕ\u0001\u0000\u0000\u0000ஏஐ\u0005Ĉ\u0000\u0000ஐஒ\u0003Ǡð\u0000\u0b91ஓ\u0003Ī•\u0000ஒ\u0b91\u0001\u0000\u0000\u0000ஒஓ\u0001\u0000\u0000\u0000ஓǗ\u0001\u0000\u0000\u0000ஔ\u0b96\u0005\u0012\u0000\u0000கஔ\u0001\u0000\u0000\u0000க\u0b96\u0001\u0000\u0000\u0000\u0b96\u0b97\u0001\u0000\u0000\u0000\u0b97ங\u0003Ǡð\u0000\u0b98ச\u0003Ǟï\u0000ங\u0b98\u0001\u0000\u0000\u0000ஙச\u0001\u0000\u0000\u0000சஜ\u0001\u0000\u0000\u0000" ++ "\u0b9b\u0b9d\u0003Ī•\u0000ஜ\u0b9b\u0001\u0000\u0000\u0000ஜ\u0b9d\u0001\u0000\u0000\u0000\u0b9dǙ\u0001\u0000\u0000\u0000ஞட\u0007)\u0000\u0000ட\u0ba0\u0003ƖË\u0000\u0ba0\u0ba2\u0003Ǡð\u0000\u0ba1ண\u0003Ǟï\u0000\u0ba2\u0ba1\u0001\u0000\u0000\u0000\u0ba2ண\u0001\u0000\u0000\u0000ண\u0ba5\u0001\u0000\u0000\u0000த\u0ba6\u0003Ī•\u0000\u0ba5த\u0001\u0000\u0000\u0000\u0ba5\u0ba6\u0001\u0000\u0000\u0000\u0ba6Ǜ\u0001\u0000\u0000\u0000\u0ba7ன\u0007-\u0000\u0000நப\u0003ƔÊ\u0000னந\u0001\u0000\u0000\u0000னப\u0001\u0000\u0000\u0000ப\u0bab\u0001\u0000\u0000\u0000\u0bab\u0bad\u0003Ǡð\u0000\u0bacம\u0003Ǟï\u0000\u0bad\u0bac\u0001\u0000\u0000\u0000\u0badம\u0001\u0000\u0000\u0000மர\u0001\u0000\u0000\u0000யற\u0003Ī•\u0000ரய\u0001\u0000\u0000\u0000ரற\u0001\u0000\u0000\u0000றǝ\u0001\u0000\u0000\u0000லழ\u0005\u0017\u0000\u0000ளவ\u0005ê\u0000\u0000ழள\u0001\u0000\u0000\u0000ழவ\u0001\u0000\u0000\u0000வஶ\u0001\u0000\u0000\u0000ஶஷ\u00071\u0000\u0000ஷǟ\u0001\u0000\u0000\u0000ஸஹ\u00072\u0000\u0000ஹǡ\u0001\u0000\u0000\u0000\u0bbaே\u0003Ǥò\u0000\u0bbbே\u0003Ǫõ\u0000\u0bbcே\u0003ȄĂ\u0000\u0bbdே\u0003Ȇă\u0000ாே\u0003Ƕû\u0000ிே\u0003Ǹü\u0000ீே\u0003Ȧē\u0000ுே\u0003ȤĒ\u0000ூே\u0003ȀĀ\u0000\u0bc3ே\u0003Ǽþ\u0000\u0bc4ே\u0003Ǻý\u0000\u0bc5ே\u0003Ȃā\u0000ெ\u0bba\u0001\u0000\u0000\u0000ெ\u0bbb\u0001\u0000\u0000\u0000ெ\u0bbc\u0001\u0000\u0000\u0000ெ\u0bbd\u0001\u0000\u0000\u0000ொ\u0001\u0000\u0000\u0000ெி\u0001\u0000\u0000\u0000ெீ\u0001\u0000\u0000\u0000ெு\u0001\u0000\u0000\u0000ெூ\u0001\u0000\u0000\u0000ெ\u0bc3\u0001\u0000\u0000\u0000ெ\u0bc4\u0001\u0000\u0000\u0000ெ\u0bc5\u0001\u0000\u0000\u0000ேǣ\u0001\u0000\u0000\u0000ைொ\u0005\u0012\u0000\u0000\u0bc9ோ\u0003Ǧó\u0000ொ\u0bc9\u0001\u0000\u0000\u0000ொோ\u0001\u0000\u0000\u0000ோௌ\u0001\u0000\u0000\u0000ௌ்\u0005¹\u0000\u0000்\u0bce\u0003Ǩô\u0000\u0bceǥ\u0001\u0000\u0000\u0000\u0bcf\u0bd1\u00073\u0000\u0000ௐ\u0bcf\u0001\u0000\u0000\u0000ௐ\u0bd1\u0001\u0000\u0000\u0000\u0bd1\u0bd2\u0001\u0000\u0000\u0000\u0bd2\u0bd3\u0005Ï\u0000\u0000\u0bd3ǧ\u0001\u0000\u0000\u0000\u0bd4\u0bd5\u00074\u0000\u0000\u0bd5\u0be2\u00075\u0000\u0000\u0bd6\u0bd9\u0007+\u0000\u0000ௗ\u0bda\u0005ď\u0000\u0000\u0bd8\u0bda\u0003ɺĽ\u0000\u0bd9ௗ\u0001\u0000\u0000\u0000\u0bd9\u0bd8\u0001\u0000\u0000\u0000\u0bda\u0be2\u0001\u0000\u0000\u0000\u0bdb\u0bde" ++ "\u00076\u0000\u0000\u0bdc\u0bdf\u0005ď\u0000\u0000\u0bdd\u0bdf\u0003ɺĽ\u0000\u0bde\u0bdc\u0001\u0000\u0000\u0000\u0bde\u0bdd\u0001\u0000\u0000\u0000\u0bdf\u0be2\u0001\u0000\u0000\u0000\u0be0\u0be2\u0005E\u0000\u0000\u0be1\u0bd4\u0001\u0000\u0000\u0000\u0be1\u0bd6\u0001\u0000\u0000\u0000\u0be1\u0bdb\u0001\u0000\u0000\u0000\u0be1\u0be0\u0001\u0000\u0000\u0000\u0be2ǩ\u0001\u0000\u0000\u0000\u0be3௰\u0005=\u0000\u0000\u0be4\u0be5\u0003Ǭö\u0000\u0be5௦\u0005¹\u0000\u0000௦௧\u0003ȸĜ\u0000௧௱\u0001\u0000\u0000\u0000௨௩\u0003Ǵú\u0000௩௪\u0005¹\u0000\u0000௪௫\u0005E\u0000\u0000௫௱\u0001\u0000\u0000\u0000௬௭\u0005¹\u0000\u0000௭௮\u0003Ⱥĝ\u0000௮௯\u0003Ȯė\u0000௯௱\u0001\u0000\u0000\u0000௰\u0be4\u0001\u0000\u0000\u0000௰௨\u0001\u0000\u0000\u0000௰௬\u0001\u0000\u0000\u0000௱ǫ\u0001\u0000\u0000\u0000௲௸\u0003Ȏć\u0000௳௸\u0003ȐĈ\u0000௴௸\u0003Ǯ÷\u0000௵௸\u0003ǰø\u0000௶௸\u0003Dzù\u0000௷௲\u0001\u0000\u0000\u0000௷௳\u0001\u0000\u0000\u0000௷௴\u0001\u0000\u0000\u0000௷௵\u0001\u0000\u0000\u0000௷௶\u0001\u0000\u0000\u0000௸ǭ\u0001\u0000\u0000\u0000௹\u0bfb\u0005¬\u0000\u0000௺\u0bfc\u0005­\u0000\u0000\u0bfb௺\u0001\u0000\u0000\u0000\u0bfb\u0bfc\u0001\u0000\u0000\u0000\u0bfc\u0bfd\u0001\u0000\u0000\u0000\u0bfd\u0bfe\u00077\u0000\u0000\u0bfeǯ\u0001\u0000\u0000\u0000\u0bffఁ\u0005¬\u0000\u0000ఀం\u0005à\u0000\u0000ఁఀ\u0001\u0000\u0000\u0000ఁం\u0001\u0000\u0000\u0000ంః\u0001\u0000\u0000\u0000ఃఄ\u00078\u0000\u0000ఄDZ\u0001\u0000\u0000\u0000అఇ\u0005¬\u0000\u0000ఆఈ\u0005Ó\u0000\u0000ఇఆ\u0001\u0000\u0000\u0000ఇఈ\u0001\u0000\u0000\u0000ఈఉ\u0001\u0000\u0000\u0000ఉఊ\u00079\u0000\u0000ఊdz\u0001\u0000\u0000\u0000ఋఓ\u0005\u000f\u0000\u0000ఌఎ\u00055\u0000\u0000\u0c0dఌ\u0001\u0000\u0000\u0000\u0c0dఎ\u0001\u0000\u0000\u0000ఎఏ\u0001\u0000\u0000\u0000ఏఓ\u0005A\u0000\u0000ఐఓ\u0005ë\u0000\u0000\u0c11ఓ\u0005ģ\u0000\u0000ఒఋ\u0001\u0000\u0000\u0000ఒ\u0c0d\u0001\u0000\u0000\u0000ఒఐ\u0001\u0000\u0000\u0000ఒ\u0c11\u0001\u0000\u0000\u0000ఓǵ\u0001\u0000\u0000\u0000ఔఠ\u0005W\u0000\u0000కఘ\u0003Ȏć\u0000ఖఘ\u0003ȐĈ\u0000గక\u0001\u0000\u0000\u0000గఖ\u0001\u0000\u0000\u0000ఘఙ\u0001\u0000\u0000\u0000ఙచ\u0005¹\u0000\u0000చఛ\u0003ȸĜ\u0000ఛడ\u0001\u0000\u0000\u0000జఝ\u0003Ǵú\u0000ఝఞ\u0005¹\u0000\u0000ఞట\u0005E" ++ "\u0000\u0000టడ\u0001\u0000\u0000\u0000ఠగ\u0001\u0000\u0000\u0000ఠజ\u0001\u0000\u0000\u0000డǷ\u0001\u0000\u0000\u0000ఢణ\u0005˜\u0000\u0000ణన\u0005¹\u0000\u0000తథ\u0007:\u0000\u0000థ\u0c29\u0003ʈń\u0000దధ\u0005\u0012\u0000\u0000ధ\u0c29\u0005@\u0000\u0000నత\u0001\u0000\u0000\u0000నద\u0001\u0000\u0000\u0000\u0c29ǹ\u0001\u0000\u0000\u0000పృ\u0005ÿ\u0000\u0000ఫల\u0003Ȏć\u0000బల\u0003ȐĈ\u0000భయ\u0003Ȓĉ\u0000మర\u0003ȔĊ\u0000యమ\u0001\u0000\u0000\u0000యర\u0001\u0000\u0000\u0000రల\u0001\u0000\u0000\u0000ఱఫ\u0001\u0000\u0000\u0000ఱబ\u0001\u0000\u0000\u0000ఱభ\u0001\u0000\u0000\u0000లళ\u0001\u0000\u0000\u0000ళఴ\u0005¹\u0000\u0000ఴవ\u0003ȸĜ\u0000వౄ\u0001\u0000\u0000\u0000శీ\u0005\u000f\u0000\u0000షీ\u0005Î\u0000\u0000సీ\u0005ë\u0000\u0000హీ\u0005ø\u0000\u0000\u0c3aీ\u0005ù\u0000\u0000\u0c3b఼\u0003ޱ\u0000఼ఽ\u0003Țč\u0000ఽీ\u0001\u0000\u0000\u0000ాీ\u0005ģ\u0000\u0000ిశ\u0001\u0000\u0000\u0000ిష\u0001\u0000\u0000\u0000ిస\u0001\u0000\u0000\u0000ిహ\u0001\u0000\u0000\u0000ి\u0c3a\u0001\u0000\u0000\u0000ి\u0c3b\u0001\u0000\u0000\u0000ిా\u0001\u0000\u0000\u0000ీు\u0001\u0000\u0000\u0000ుూ\u0005¹\u0000\u0000ూౄ\u0005E\u0000\u0000ృఱ\u0001\u0000\u0000\u0000ృి\u0001\u0000\u0000\u0000ౄǻ\u0001\u0000\u0000\u0000\u0c45ౡ\u0005ú\u0000\u0000ె\u0c50\u0003Ǿÿ\u0000ేో\u0005ģ\u0000\u0000ైౌ\u0005ą\u0000\u0000\u0c49ొ\u0005~\u0000\u0000ొౌ\u0005A\u0000\u0000ోై\u0001\u0000\u0000\u0000ో\u0c49\u0001\u0000\u0000\u0000ౌ\u0c50\u0001\u0000\u0000\u0000్\u0c4e\u0005A\u0000\u0000\u0c4e\u0c50\u0005\u000b\u0000\u0000\u0c4fె\u0001\u0000\u0000\u0000\u0c4fే\u0001\u0000\u0000\u0000\u0c4f్\u0001\u0000\u0000\u0000\u0c50\u0c51\u0001\u0000\u0000\u0000\u0c51\u0c52\u0005¹\u0000\u0000\u0c52ౢ\u0005E\u0000\u0000\u0c53\u0c54\u0005Ž\u0000\u0000\u0c54ౕ\u0003ȨĔ\u0000ౕౖ\u0005¹\u0000\u0000ౖ\u0c57\u0003Ⱥĝ\u0000\u0c57ౢ\u0001\u0000\u0000\u0000ౘౙ\u0005Ó\u0000\u0000ౙౚ\u0003Ȫĕ\u0000ౚ\u0c5b\u0005¹\u0000\u0000\u0c5b\u0c5c\u0003Ⱥĝ\u0000\u0c5cౝ\u0003Ȯė\u0000ౝౢ\u0001\u0000\u0000\u0000\u0c5e\u0c5f\u0005\u001d\u0000\u0000\u0c5fౠ\u0005¹\u0000\u0000ౠౢ\u0005E\u0000\u0000ౡ\u0c4f\u0001\u0000\u0000\u0000ౡ\u0c53\u0001\u0000\u0000\u0000ౡౘ\u0001\u0000\u0000\u0000ౡ\u0c5e\u0001\u0000\u0000\u0000" ++ "ౢǽ\u0001\u0000\u0000\u0000ౣ\u0c64\u0007;\u0000\u0000\u0c64ǿ\u0001\u0000\u0000\u0000\u0c65౮\u0005â\u0000\u0000౦౧\u0007<\u0000\u0000౧౨\u0005¹\u0000\u0000౨౯\u0005E\u0000\u0000౩౪\u0005Ž\u0000\u0000౪౫\u0003ȨĔ\u0000౫౬\u0005¹\u0000\u0000౬౭\u0003Ⱥĝ\u0000౭౯\u0001\u0000\u0000\u0000౮౦\u0001\u0000\u0000\u0000౮౩\u0001\u0000\u0000\u0000౯ȁ\u0001\u0000\u0000\u0000\u0c70\u0c71\u0005İ\u0000\u0000\u0c71\u0c72\u0005¹\u0000\u0000\u0c72\u0c73\u0003Ⱥĝ\u0000\u0c73ȃ\u0001\u0000\u0000\u0000\u0c74ಋ\u0005\u000b\u0000\u0000\u0c75ಋ\u0005ă\u0000\u0000\u0c76ಋ\u0005Ć\u0000\u0000౷౻\u0003Ȏć\u0000౸౻\u0003ȐĈ\u0000౹౻\u0005¥\u0000\u0000౺౷\u0001\u0000\u0000\u0000౺౸\u0001\u0000\u0000\u0000౺౹\u0001\u0000\u0000\u0000౻౽\u0001\u0000\u0000\u0000౼౾\u0005\u0000\u0000౽౼\u0001\u0000\u0000\u0000౽౾\u0001\u0000\u0000\u0000౾ಋ\u0001\u0000\u0000\u0000౿ಁ\u0005ĕ\u0000\u0000ಀಂ\u0005\u0000\u0000ಁಀ\u0001\u0000\u0000\u0000ಁಂ\u0001\u0000\u0000\u0000ಂಆ\u0001\u0000\u0000\u0000ಃ಄\u0005ċ\u0000\u0000಄ಆ\u0003Ȓĉ\u0000ಅ౿\u0001\u0000\u0000\u0000ಅಃ\u0001\u0000\u0000\u0000ಆಈ\u0001\u0000\u0000\u0000ಇಉ\u0003ȔĊ\u0000ಈಇ\u0001\u0000\u0000\u0000ಈಉ\u0001\u0000\u0000\u0000ಉಋ\u0001\u0000\u0000\u0000ಊ\u0c74\u0001\u0000\u0000\u0000ಊ\u0c75\u0001\u0000\u0000\u0000ಊ\u0c76\u0001\u0000\u0000\u0000ಊ౺\u0001\u0000\u0000\u0000ಊಅ\u0001\u0000\u0000\u0000ಋಌ\u0001\u0000\u0000\u0000ಌ\u0c8d\u0005¹\u0000\u0000\u0c8dಎ\u0003ȸĜ\u0000ಎȅ\u0001\u0000\u0000\u0000ಏಐ\u0005\u0013\u0000\u0000ಐಧ\u0007=\u0000\u0000\u0c91ಒ\u0005\u001b\u0000\u0000ಒಧ\u0007<\u0000\u0000ಓಝ\u0005\u000f\u0000\u0000ಔಖ\u00055\u0000\u0000ಕಔ\u0001\u0000\u0000\u0000ಕಖ\u0001\u0000\u0000\u0000ಖಗ\u0001\u0000\u0000\u0000ಗಝ\u0005A\u0000\u0000ಘಝ\u0005Î\u0000\u0000ಙಝ\u0005ë\u0000\u0000ಚಝ\u0005ø\u0000\u0000ಛಝ\u0005ģ\u0000\u0000ಜಓ\u0001\u0000\u0000\u0000ಜಕ\u0001\u0000\u0000\u0000ಜಘ\u0001\u0000\u0000\u0000ಜಙ\u0001\u0000\u0000\u0000ಜಚ\u0001\u0000\u0000\u0000ಜಛ\u0001\u0000\u0000\u0000ಝಞ\u0001\u0000\u0000\u0000ಞಧ\u0005\u0000\u0000ಟಧ\u0003ȈĄ\u0000ಠಡ\u0005Ý\u0000\u0000ಡಧ\u0007>\u0000\u0000ಢತ\u0005\u0000\u0000ಣಥ\u0003ȔĊ\u0000ತಣ\u0001\u0000\u0000\u0000ತಥ\u0001\u0000\u0000\u0000ಥಧ" ++ "\u0001\u0000\u0000\u0000ದಏ\u0001\u0000\u0000\u0000ದ\u0c91\u0001\u0000\u0000\u0000ದಜ\u0001\u0000\u0000\u0000ದಟ\u0001\u0000\u0000\u0000ದಠ\u0001\u0000\u0000\u0000ದಢ\u0001\u0000\u0000\u0000ಧನ\u0001\u0000\u0000\u0000ನ\u0ca9\u0005¹\u0000\u0000\u0ca9ಪ\u0005E\u0000\u0000ಪȇ\u0001\u0000\u0000\u0000ಫೀ\u0005f\u0000\u0000ಬಭ\u0003Ȋą\u0000ಭಮ\u0005Ñ\u0000\u0000ಮು\u0001\u0000\u0000\u0000ಯಱ\u0005\"\u0000\u0000ರಯ\u0001\u0000\u0000\u0000ರಱ\u0001\u0000\u0000\u0000ಱಾ\u0001\u0000\u0000\u0000ಲಳ\u0003ȌĆ\u0000ಳ\u0cb4\u0003ȘČ\u0000\u0cb4ಿ\u0001\u0000\u0000\u0000ವಷ\u0005ģ\u0000\u0000ಶಸ\u0005H\u0000\u0000ಷಶ\u0001\u0000\u0000\u0000ಷಸ\u0001\u0000\u0000\u0000ಸ\u0cba\u0001\u0000\u0000\u0000ಹವ\u0001\u0000\u0000\u0000ಹ\u0cba\u0001\u0000\u0000\u0000\u0cba\u0cbb\u0001\u0000\u0000\u0000\u0cbb಼\u0003Ŗ«\u0000಼ಽ\u0003Ȗċ\u0000ಽಿ\u0001\u0000\u0000\u0000ಾಲ\u0001\u0000\u0000\u0000ಾಹ\u0001\u0000\u0000\u0000ಿು\u0001\u0000\u0000\u0000ೀಬ\u0001\u0000\u0000\u0000ೀರ\u0001\u0000\u0000\u0000ುȉ\u0001\u0000\u0000\u0000ೂೃ\u0007?\u0000\u0000ೃȋ\u0001\u0000\u0000\u0000ೄ\u0cc5\u0007#\u0000\u0000\u0cc5ȍ\u0001\u0000\u0000\u0000ೆೇ\u0007@\u0000\u0000ೇȏ\u0001\u0000\u0000\u0000ೈ\u0cc9\u0007A\u0000\u0000\u0cc9ȑ\u0001\u0000\u0000\u0000ೊೋ\u0007B\u0000\u0000ೋȓ\u0001\u0000\u0000\u0000ೌ\u0ccf\u0005›\u0000\u0000್\u0cd0\u0005ď\u0000\u0000\u0cce\u0cd0\u0003ƔÊ\u0000\u0ccf್\u0001\u0000\u0000\u0000\u0ccf\u0cce\u0001\u0000\u0000\u0000\u0cd0\u0cd1\u0001\u0000\u0000\u0000\u0cd1\u0cd2\u0005ï\u0000\u0000\u0cd2ȕ\u0001\u0000\u0000\u0000\u0cd3\u0cd4\u0003ȜĎ\u0000\u0cd4ȗ\u0001\u0000\u0000\u0000ೕೖ\u0003ȜĎ\u0000ೖș\u0001\u0000\u0000\u0000\u0cd7\u0cd8\u0003ȜĎ\u0000\u0cd8ț\u0001\u0000\u0000\u0000\u0cd9ೞ\u0003Ȟď\u0000\u0cda\u0cdb\u00051\u0000\u0000\u0cdbೝ\u0003Ȟď\u0000\u0cdc\u0cda\u0001\u0000\u0000\u0000ೝೠ\u0001\u0000\u0000\u0000ೞ\u0cdc\u0001\u0000\u0000\u0000ೞ\u0cdf\u0001\u0000\u0000\u0000\u0cdfȝ\u0001\u0000\u0000\u0000ೠೞ\u0001\u0000\u0000\u0000ೡೣ\u0003ʘŌ\u0000ೢ\u0ce4\u0003ȠĐ\u0000ೣೢ\u0001\u0000\u0000\u0000ೣ\u0ce4\u0001\u0000\u0000\u0000\u0ce4೧\u0001\u0000\u0000\u0000\u0ce5೧\u0003ȠĐ\u0000೦ೡ\u0001\u0000\u0000\u0000೦\u0ce5\u0001\u0000\u0000\u0000೧ȟ\u0001\u0000\u0000\u0000೨೪\u0003Ȣđ\u0000೩೫\u0003ȠĐ\u0000೪೩\u0001\u0000\u0000\u0000೪೫\u0001\u0000\u0000\u0000೫ȡ\u0001\u0000" ++ "\u0000\u0000೬೮\u0005S\u0000\u0000೭೯\u0003ʘŌ\u0000೮೭\u0001\u0000\u0000\u0000೮೯\u0001\u0000\u0000\u0000೯\u0cf4\u0001\u0000\u0000\u0000\u0cf0\u0cf4\u0005Ö\u0000\u0000ೱ\u0cf4\u0005ď\u0000\u0000ೲ\u0cf4\u0003ʚō\u0000ೳ೬\u0001\u0000\u0000\u0000ೳ\u0cf0\u0001\u0000\u0000\u0000ೳೱ\u0001\u0000\u0000\u0000ೳೲ\u0001\u0000\u0000\u0000\u0cf4ȣ\u0001\u0000\u0000\u0000\u0cf5\u0cf9\u0005ė\u0000\u0000\u0cf6\u0cf7\u0007C\u0000\u0000\u0cf7\u0cf9\u0003Ȫĕ\u0000\u0cf8\u0cf5\u0001\u0000\u0000\u0000\u0cf8\u0cf6\u0001\u0000\u0000\u0000\u0cf9\u0cfa\u0001\u0000\u0000\u0000\u0cfa\u0cfb\u0005¹\u0000\u0000\u0cfb\u0cfc\u0003Ⱥĝ\u0000\u0cfcഀ\u0003Ȯė\u0000\u0cfd\u0cfe\u0005›\u0000\u0000\u0cfe\u0cff\u0005ď\u0000\u0000\u0cffഁ\u0005ï\u0000\u0000ഀ\u0cfd\u0001\u0000\u0000\u0000ഀഁ\u0001\u0000\u0000\u0000ഁȥ\u0001\u0000\u0000\u0000ംആ\u0005I\u0000\u0000ഃഄ\u0005 \u0000\u0000ഄആ\u0003Ȫĕ\u0000അം\u0001\u0000\u0000\u0000അഃ\u0001\u0000\u0000\u0000ആഇ\u0001\u0000\u0000\u0000ഇഈ\u0005¹\u0000\u0000ഈഉ\u0003Ⱥĝ\u0000ഉഊ\u0003Ȯė\u0000ഊȧ\u0001\u0000\u0000\u0000ഋഎ\u0005ď\u0000\u0000ഌഎ\u0003ȬĖ\u0000\u0d0dഋ\u0001\u0000\u0000\u0000\u0d0dഌ\u0001\u0000\u0000\u0000എȩ\u0001\u0000\u0000\u0000ഏഒ\u0005“\u0000\u0000ഐഓ\u0005ď\u0000\u0000\u0d11ഓ\u0003ȬĖ\u0000ഒഐ\u0001\u0000\u0000\u0000ഒ\u0d11\u0001\u0000\u0000\u0000ഓഔ\u0001\u0000\u0000\u0000ഔക\u0005Ù\u0000\u0000കȫ\u0001\u0000\u0000\u0000ഖഛ\u0003ʖŋ\u0000ഗഘ\u00051\u0000\u0000ഘച\u0003ʖŋ\u0000ങഗ\u0001\u0000\u0000\u0000ചഝ\u0001\u0000\u0000\u0000ഛങ\u0001\u0000\u0000\u0000ഛജ\u0001\u0000\u0000\u0000ജȭ\u0001\u0000\u0000\u0000ഝഛ\u0001\u0000\u0000\u0000ഞഡ\u0003ȰĘ\u0000ടഢ\u0005ď\u0000\u0000ഠഢ\u0003ȬĖ\u0000ഡട\u0001\u0000\u0000\u0000ഡഠ\u0001\u0000\u0000\u0000ഢീ\u0001\u0000\u0000\u0000ണത\u0005p\u0000\u0000തദ\u0005›\u0000\u0000ഥധ\u0003ĔŠ\u0000ദഥ\u0001\u0000\u0000\u0000ദധ\u0001\u0000\u0000\u0000ധറ\u0001\u0000\u0000\u0000നഩ\u0005/\u0000\u0000ഩമ\u0003ʖŋ\u0000പഫ\u0005\u001e\u0000\u0000ഫഭ\u0003ʖŋ\u0000ബപ\u0001\u0000\u0000\u0000ഭര\u0001\u0000\u0000\u0000മബ\u0001\u0000\u0000\u0000മയ\u0001\u0000\u0000\u0000യല\u0001\u0000\u0000\u0000രമ\u0001\u0000\u0000\u0000റന\u0001\u0000\u0000\u0000റല\u0001\u0000\u0000\u0000ലഽ\u0001\u0000\u0000\u0000" ++ "ളഴ\u0005ï\u0000\u0000ഴവ\u0005ĭ\u0000\u0000വാ\u0003°X\u0000ശഷ\u0005ĭ\u0000\u0000ഷഺ\u0003°X\u0000സഺ\u0003ʎŇ\u0000ഹശ\u0001\u0000\u0000\u0000ഹസ\u0001\u0000\u0000\u0000ഺ഻\u0001\u0000\u0000\u0000഻഼\u0005ï\u0000\u0000഼ാ\u0001\u0000\u0000\u0000ഽള\u0001\u0000\u0000\u0000ഽഹ\u0001\u0000\u0000\u0000ാീ\u0001\u0000\u0000\u0000ിഞ\u0001\u0000\u0000\u0000ിണ\u0001\u0000\u0000\u0000ിീ\u0001\u0000\u0000\u0000ീȯ\u0001\u0000\u0000\u0000ു\u0d45\u0003Ȳę\u0000ൂ\u0d45\u0003ȶě\u0000ൃ\u0d45\u0003ȴĚ\u0000ൄു\u0001\u0000\u0000\u0000ൄൂ\u0001\u0000\u0000\u0000ൄൃ\u0001\u0000\u0000\u0000\u0d45ȱ\u0001\u0000\u0000\u0000െേ\u0007D\u0000\u0000േȳ\u0001\u0000\u0000\u0000ൈ\u0d49\u0007E\u0000\u0000\u0d49ȵ\u0001\u0000\u0000\u0000ൊോ\u0007F\u0000\u0000ോȷ\u0001\u0000\u0000\u0000ൌ്\u00074\u0000\u0000്ൔ\u0005A\u0000\u0000ൎ\u0d51\u0007+\u0000\u0000൏\u0d52\u0005ď\u0000\u0000\u0d50\u0d52\u0003ɺĽ\u0000\u0d51൏\u0001\u0000\u0000\u0000\u0d51\u0d50\u0001\u0000\u0000\u0000\u0d52ൔ\u0001\u0000\u0000\u0000\u0d53ൌ\u0001\u0000\u0000\u0000\u0d53ൎ\u0001\u0000\u0000\u0000ൔȹ\u0001\u0000\u0000\u0000ൕൖ\u00074\u0000\u0000ൖ൝\u0005x\u0000\u0000ൗ൚\u00076\u0000\u0000൘൛\u0005ď\u0000\u0000൙൛\u0003ɺĽ\u0000൚൘\u0001\u0000\u0000\u0000൚൙\u0001\u0000\u0000\u0000൛൝\u0001\u0000\u0000\u0000൜ൕ\u0001\u0000\u0000\u0000൜ൗ\u0001\u0000\u0000\u0000൝Ȼ\u0001\u0000\u0000\u0000൞ൟ\u00055\u0000\u0000ൟൠ\u0005A\u0000\u0000ൠ\u0d64\u0003ɼľ\u0000ൡൢ\u0005€\u0000\u0000ൢൣ\u0005³\u0000\u0000ൣ\u0d65\u0005i\u0000\u0000\u0d64ൡ\u0001\u0000\u0000\u0000\u0d64\u0d65\u0001\u0000\u0000\u0000\u0d65൧\u0001\u0000\u0000\u0000൦൨\u0003Ĵš\u0000൧൦\u0001\u0000\u0000\u0000൧൨\u0001\u0000\u0000\u0000൨൪\u0001\u0000\u0000\u0000൩൫\u0003ɘĬ\u0000൪൩\u0001\u0000\u0000\u0000൪൫\u0001\u0000\u0000\u0000൫Ƚ\u0001\u0000\u0000\u0000൬൭\u0005A\u0000\u0000൭൱\u0003ɼľ\u0000൮൯\u0005€\u0000\u0000൯൰\u0005³\u0000\u0000൰൲\u0005i\u0000\u0000൱൮\u0001\u0000\u0000\u0000൱൲\u0001\u0000\u0000\u0000൲ൺ\u0001\u0000\u0000\u0000൳൶\u0005ē\u0000\u0000൴൷\u0003ɀĠ\u0000൵൷\u0003ɄĢ\u0000൶൴\u0001\u0000\u0000\u0000൶൵\u0001\u0000\u0000\u0000൷൸\u0001\u0000\u0000\u0000൸൶\u0001\u0000\u0000\u0000൸൹" ++ "\u0001\u0000\u0000\u0000൹ൻ\u0001\u0000\u0000\u0000ൺ൳\u0001\u0000\u0000\u0000ൺൻ\u0001\u0000\u0000\u0000ൻൽ\u0001\u0000\u0000\u0000ർൾ\u0003Ĵš\u0000ൽർ\u0001\u0000\u0000\u0000ൽൾ\u0001\u0000\u0000\u0000ൾ\u0d80\u0001\u0000\u0000\u0000ൿඁ\u0003ɘĬ\u0000\u0d80ൿ\u0001\u0000\u0000\u0000\u0d80ඁ\u0001\u0000\u0000\u0000ඁȿ\u0001\u0000\u0000\u0000ංඃ\u0003ʊŅ\u0000ඃ\u0d84\u0003ɂġ\u0000\u0d84Ɂ\u0001\u0000\u0000\u0000අආ\u0007G\u0000\u0000ආɃ\u0001\u0000\u0000\u0000ඇඈ\u0003ʊŅ\u0000ඈඉ\u0003Ɇģ\u0000ඉɅ\u0001\u0000\u0000\u0000ඊඋ\u0007H\u0000\u0000උɇ\u0001\u0000\u0000\u0000ඌඎ\u00055\u0000\u0000ඍඌ\u0001\u0000\u0000\u0000ඍඎ\u0001\u0000\u0000\u0000ඎඏ\u0001\u0000\u0000\u0000ඏඐ\u0005A\u0000\u0000ඐඓ\u0003ɼľ\u0000එඒ\u0005€\u0000\u0000ඒඔ\u0005i\u0000\u0000ඓඑ\u0001\u0000\u0000\u0000ඓඔ\u0001\u0000\u0000\u0000ඔඖ\u0001\u0000\u0000\u0000ඕ\u0d97\u0003Ɋĥ\u0000ඖඕ\u0001\u0000\u0000\u0000ඖ\u0d97\u0001\u0000\u0000\u0000\u0d97ක\u0001\u0000\u0000\u0000\u0d98\u0d99\u0007I\u0000\u0000\u0d99ඛ\u0005@\u0000\u0000ක\u0d98\u0001\u0000\u0000\u0000කඛ\u0001\u0000\u0000\u0000ඛඝ\u0001\u0000\u0000\u0000ගඞ\u0003ɘĬ\u0000ඝග\u0001\u0000\u0000\u0000ඝඞ\u0001\u0000\u0000\u0000ඞɉ\u0001\u0000\u0000\u0000ඟඣ\u0005è\u0000\u0000චඡ\u0005*\u0000\u0000ඡඣ\u0007J\u0000\u0000ජඟ\u0001\u0000\u0000\u0000ජච\u0001\u0000\u0000\u0000ඣɋ\u0001\u0000\u0000\u0000ඤඥ\u0005A\u0000\u0000ඥඨ\u0003ɼľ\u0000ඦට\u0005€\u0000\u0000ටඩ\u0005i\u0000\u0000ඨඦ\u0001\u0000\u0000\u0000ඨඩ\u0001\u0000\u0000\u0000ඩර\u0001\u0000\u0000\u0000ඪථ\u0005ú\u0000\u0000ණද\u0003Ɏħ\u0000ඬද\u0003ɐĨ\u0000තද\u0003ɒĩ\u0000ථණ\u0001\u0000\u0000\u0000ථඬ\u0001\u0000\u0000\u0000ථත\u0001\u0000\u0000\u0000දන\u0001\u0000\u0000\u0000ධඪ\u0001\u0000\u0000\u0000න\u0db2\u0001\u0000\u0000\u0000\u0db2ධ\u0001\u0000\u0000\u0000\u0db2ඳ\u0001\u0000\u0000\u0000ඳ\u0dbc\u0001\u0000\u0000\u0000පඵ\u0005â\u0000\u0000ඵබ\u0005½\u0000\u0000බම\u0003ʖŋ\u0000භප\u0001\u0000\u0000\u0000මඹ\u0001\u0000\u0000\u0000ඹභ\u0001\u0000\u0000\u0000ඹය\u0001\u0000\u0000\u0000ය\u0dbc\u0001\u0000\u0000\u0000රධ\u0001\u0000\u0000\u0000රභ\u0001\u0000\u0000\u0000\u0dbc\u0dbe\u0001\u0000\u0000\u0000ල\u0dbf\u0003ɘĬ\u0000\u0dbeල\u0001\u0000" ++ "\u0000\u0000\u0dbe\u0dbf\u0001\u0000\u0000\u0000\u0dbfɍ\u0001\u0000\u0000\u0000වශ\u0005\u000b\u0000\u0000ශෂ\u0005Ú\u0000\u0000ෂස\u0007K\u0000\u0000සɏ\u0001\u0000\u0000\u0000හ\u0dc7\u0005ē\u0000\u0000ළ\u0dc8\u0003ɀĠ\u0000ෆ\u0dc8\u0003ɄĢ\u0000\u0dc7ළ\u0001\u0000\u0000\u0000\u0dc7ෆ\u0001\u0000\u0000\u0000\u0dc8\u0dc9\u0001\u0000\u0000\u0000\u0dc9\u0dc7\u0001\u0000\u0000\u0000\u0dc9්\u0001\u0000\u0000\u0000්ɑ\u0001\u0000\u0000\u0000\u0dcb\u0dcc\u0005½\u0000\u0000\u0dcc\u0dcd\u0003ʖŋ\u0000\u0dcd\u0dce\u0003°X\u0000\u0dceɓ\u0001\u0000\u0000\u0000ාැ\u0005ă\u0000\u0000ැෑ\u0005A\u0000\u0000ෑී\u0003ɼľ\u0000ිු\u0003ɘĬ\u0000ීි\u0001\u0000\u0000\u0000ීු\u0001\u0000\u0000\u0000ුɕ\u0001\u0000\u0000\u0000\u0dd5ූ\u0005Ć\u0000\u0000ූ\u0dd7\u0005A\u0000\u0000\u0dd7ෙ\u0003ɼľ\u0000ෘේ\u0003ɘĬ\u0000ෙෘ\u0001\u0000\u0000\u0000ෙේ\u0001\u0000\u0000\u0000ේɗ\u0001\u0000\u0000\u0000ෛ\u0de0\u0005ī\u0000\u0000ොෞ\u0005\u0005\u0000\u0000ෝෟ\u0003ɚĭ\u0000ෞෝ\u0001\u0000\u0000\u0000ෞෟ\u0001\u0000\u0000\u0000ෟ\u0de1\u0001\u0000\u0000\u0000\u0de0ො\u0001\u0000\u0000\u0000\u0de0\u0de1\u0001\u0000\u0000\u0000\u0de1\u0de4\u0001\u0000\u0000\u0000\u0de2\u0de4\u0005µ\u0000\u0000\u0de3ෛ\u0001\u0000\u0000\u0000\u0de3\u0de2\u0001\u0000\u0000\u0000\u0de4ə\u0001\u0000\u0000\u0000\u0de5෦\u0007L\u0000\u0000෦ɛ\u0001\u0000\u0000\u0000෧෨\u00074\u0000\u0000෨෪\u0005A\u0000\u0000෩෫\u0003Ī•\u0000෪෩\u0001\u0000\u0000\u0000෪෫\u0001\u0000\u0000\u0000෫෴\u0001\u0000\u0000\u0000෬෮\u0007+\u0000\u0000෭෯\u0003ɼľ\u0000෮෭\u0001\u0000\u0000\u0000෮෯\u0001\u0000\u0000\u0000෯\u0df1\u0001\u0000\u0000\u0000\u0df0ෲ\u0003Ī•\u0000\u0df1\u0df0\u0001\u0000\u0000\u0000\u0df1ෲ\u0001\u0000\u0000\u0000ෲ෴\u0001\u0000\u0000\u0000ෳ෧\u0001\u0000\u0000\u0000ෳ෬\u0001\u0000\u0000\u0000෴ɝ\u0001\u0000\u0000\u0000\u0df5\u0df6\u0003ɼľ\u0000\u0df6ɟ\u0001\u0000\u0000\u0000\u0df7\u0df8\u0003ɼľ\u0000\u0df8ɡ\u0001\u0000\u0000\u0000\u0df9\u0dfa\u0005\u000f\u0000\u0000\u0dfa\u0dfe\u0003ɞį\u0000\u0dfb\u0dfc\u0005€\u0000\u0000\u0dfc\u0dfd\u0005³\u0000\u0000\u0dfd\u0dff\u0005i\u0000\u0000\u0dfe\u0dfb\u0001\u0000\u0000\u0000\u0dfe\u0dff\u0001\u0000\u0000\u0000\u0dff\u0e00\u0001\u0000\u0000\u0000\u0e00ก\u0005p\u0000\u0000กข\u0005A\u0000\u0000ขญ\u0003ɠİ\u0000ฃค\u0005\u001c\u0000\u0000คฅ\u0003ʈń\u0000ฅฆ\u0005ģ\u0000\u0000ฆง\u0003ɶĻ\u0000" ++ "งจ\u0005Á\u0000\u0000จซ\u0003džã\u0000ฉช\u0005V\u0000\u0000ชฌ\u0003ʌņ\u0000ซฉ\u0001\u0000\u0000\u0000ซฌ\u0001\u0000\u0000\u0000ฌฎ\u0001\u0000\u0000\u0000ญฃ\u0001\u0000\u0000\u0000ญฎ\u0001\u0000\u0000\u0000ฎฑ\u0001\u0000\u0000\u0000ฏฐ\u0005Ò\u0000\u0000ฐฒ\u0003ʌņ\u0000ฑฏ\u0001\u0000\u0000\u0000ฑฒ\u0001\u0000\u0000\u0000ฒɣ\u0001\u0000\u0000\u0000ณด\u0005\u000f\u0000\u0000ดท\u0003ɞį\u0000ตถ\u0005€\u0000\u0000ถธ\u0005i\u0000\u0000ทต\u0001\u0000\u0000\u0000ทธ\u0001\u0000\u0000\u0000ธน\u0001\u0000\u0000\u0000นบ\u0005p\u0000\u0000บป\u0005A\u0000\u0000ปɥ\u0001\u0000\u0000\u0000ผฝ\u0005\u000f\u0000\u0000ฝภ\u0003ɞį\u0000พฟ\u0005€\u0000\u0000ฟม\u0005i\u0000\u0000ภพ\u0001\u0000\u0000\u0000ภม\u0001\u0000\u0000\u0000มย\u0001\u0000\u0000\u0000ยร\u0005ú\u0000\u0000รษ\u0005A\u0000\u0000ฤส\u0003ɨĴ\u0000ลส\u0003ɪĵ\u0000ฦส\u0003ɬĶ\u0000วส\u0003ɮķ\u0000ศส\u0003ɰĸ\u0000ษฤ\u0001\u0000\u0000\u0000ษล\u0001\u0000\u0000\u0000ษฦ\u0001\u0000\u0000\u0000ษว\u0001\u0000\u0000\u0000ษศ\u0001\u0000\u0000\u0000สห\u0001\u0000\u0000\u0000หษ\u0001\u0000\u0000\u0000หฬ\u0001\u0000\u0000\u0000ฬɧ\u0001\u0000\u0000\u0000อฮ\u0005Ċ\u0000\u0000ฮั\u0003ɠİ\u0000ฯะ\u0005\u001c\u0000\u0000ะา\u0003ʈń\u0000ัฯ\u0001\u0000\u0000\u0000ัา\u0001\u0000\u0000\u0000าɩ\u0001\u0000\u0000\u0000ำิ\u0005ģ\u0000\u0000ิี\u0003ɶĻ\u0000ีɫ\u0001\u0000\u0000\u0000ึื\u0005Á\u0000\u0000ืุ\u0003džã\u0000ุɭ\u0001\u0000\u0000\u0000ฺู\u0005V\u0000\u0000ฺ\u0e3b\u0003ʌņ\u0000\u0e3bɯ\u0001\u0000\u0000\u0000\u0e3c\u0e3d\u0005Ò\u0000\u0000\u0e3d\u0e3e\u0003ʌņ\u0000\u0e3eɱ\u0001\u0000\u0000\u0000฿แ\u0007J\u0000\u0000เโ\u0003ɞį\u0000แเ\u0001\u0000\u0000\u0000แโ\u0001\u0000\u0000\u0000โใ\u0001\u0000\u0000\u0000ใไ\u0005p\u0000\u0000ไๆ\u0007+\u0000\u0000ๅ็\u0003Ī•\u0000ๆๅ\u0001\u0000\u0000\u0000ๆ็\u0001\u0000\u0000\u0000็ɳ\u0001\u0000\u0000\u0000่๋\u0003ʖŋ\u0000้๋\u0003Ĉ„\u0000๊่\u0001\u0000\u0000\u0000๊้\u0001\u0000\u0000\u0000๋ɵ\u0001\u0000\u0000\u0000์๏\u0003ʖŋ\u0000ํ๏\u0003Ĉ„\u0000๎์" ++ "\u0001\u0000\u0000\u0000๎ํ\u0001\u0000\u0000\u0000๏ɷ\u0001\u0000\u0000\u0000๐๕\u0003ɶĻ\u0000๑๒\u00051\u0000\u0000๒๔\u0003ɶĻ\u0000๓๑\u0001\u0000\u0000\u0000๔๗\u0001\u0000\u0000\u0000๕๓\u0001\u0000\u0000\u0000๕๖\u0001\u0000\u0000\u0000๖ɹ\u0001\u0000\u0000\u0000๗๕\u0001\u0000\u0000\u0000๘\u0e5d\u0003ɼľ\u0000๙๚\u00051\u0000\u0000๚\u0e5c\u0003ɼľ\u0000๛๙\u0001\u0000\u0000\u0000\u0e5c\u0e5f\u0001\u0000\u0000\u0000\u0e5d๛\u0001\u0000\u0000\u0000\u0e5d\u0e5e\u0001\u0000\u0000\u0000\u0e5eɻ\u0001\u0000\u0000\u0000\u0e5f\u0e5d\u0001\u0000\u0000\u0000\u0e60\u0e63\u0003ɾĿ\u0000\u0e61\u0e63\u0003Ĉ„\u0000\u0e62\u0e60\u0001\u0000\u0000\u0000\u0e62\u0e61\u0001\u0000\u0000\u0000\u0e63ɽ\u0001\u0000\u0000\u0000\u0e64\u0e69\u0003ʖŋ\u0000\u0e65\u0e66\u0005S\u0000\u0000\u0e66\u0e68\u0003ʖŋ\u0000\u0e67\u0e65\u0001\u0000\u0000\u0000\u0e68\u0e6b\u0001\u0000\u0000\u0000\u0e69\u0e67\u0001\u0000\u0000\u0000\u0e69\u0e6a\u0001\u0000\u0000\u0000\u0e6aɿ\u0001\u0000\u0000\u0000\u0e6b\u0e69\u0001\u0000\u0000\u0000\u0e6c\u0e75\u0005’\u0000\u0000\u0e6d\u0e72\u0003ʄł\u0000\u0e6e\u0e6f\u00051\u0000\u0000\u0e6f\u0e71\u0003ʄł\u0000\u0e70\u0e6e\u0001\u0000\u0000\u0000\u0e71\u0e74\u0001\u0000\u0000\u0000\u0e72\u0e70\u0001\u0000\u0000\u0000\u0e72\u0e73\u0001\u0000\u0000\u0000\u0e73\u0e76\u0001\u0000\u0000\u0000\u0e74\u0e72\u0001\u0000\u0000\u0000\u0e75\u0e6d\u0001\u0000\u0000\u0000\u0e75\u0e76\u0001\u0000\u0000\u0000\u0e76\u0e77\u0001\u0000\u0000\u0000\u0e77\u0e78\u0005Ø\u0000\u0000\u0e78ʁ\u0001\u0000\u0000\u0000\u0e79\u0e7c\u0003ʄł\u0000\u0e7a\u0e7b\u00051\u0000\u0000\u0e7b\u0e7d\u0003ʄł\u0000\u0e7c\u0e7a\u0001\u0000\u0000\u0000\u0e7d\u0e7e\u0001\u0000\u0000\u0000\u0e7e\u0e7c\u0001\u0000\u0000\u0000\u0e7e\u0e7f\u0001\u0000\u0000\u0000\u0e7fʃ\u0001\u0000\u0000\u0000\u0e80ກ\u0007M\u0000\u0000ກʅ\u0001\u0000\u0000\u0000ຂ\u0e85\u0003ʄł\u0000\u0e83\u0e85\u0003Ĉ„\u0000ຄຂ\u0001\u0000\u0000\u0000ຄ\u0e83\u0001\u0000\u0000\u0000\u0e85ʇ\u0001\u0000\u0000\u0000ຆຉ\u0003ʄł\u0000ງຉ\u0003Ĉ„\u0000ຈຆ\u0001\u0000\u0000\u0000ຈງ\u0001\u0000\u0000\u0000ຉʉ\u0001\u0000\u0000\u0000ຊຍ\u0005\u0005\u0000\u0000\u0e8bຍ\u0003Ĉ„\u0000ຌຊ\u0001\u0000\u0000\u0000ຌ\u0e8b\u0001\u0000\u0000\u0000ຍʋ\u0001\u0000\u0000\u0000ຎຑ\u0003ʎŇ\u0000ຏຑ\u0003Ĉ„\u0000ຐຎ\u0001\u0000\u0000\u0000ຐຏ\u0001\u0000\u0000\u0000ຑʍ\u0001\u0000\u0000\u0000ຒຠ\u0005“\u0000\u0000ຓດ\u0003ƃ\u0000ດຕ\u0005/\u0000\u0000ຕຝ\u0003°X\u0000ຖທ\u00051\u0000\u0000ທຘ\u0003Ć" ++ "ƒ\u0000ຘນ\u0005/\u0000\u0000ນບ\u0003°X\u0000ບຜ\u0001\u0000\u0000\u0000ປຖ\u0001\u0000\u0000\u0000ຜຟ\u0001\u0000\u0000\u0000ຝປ\u0001\u0000\u0000\u0000ຝພ\u0001\u0000\u0000\u0000ພມ\u0001\u0000\u0000\u0000ຟຝ\u0001\u0000\u0000\u0000ຠຓ\u0001\u0000\u0000\u0000ຠມ\u0001\u0000\u0000\u0000ມຢ\u0001\u0000\u0000\u0000ຢຣ\u0005Ù\u0000\u0000ຣʏ\u0001\u0000\u0000\u0000\u0ea4ວ\u0003ʒʼn\u0000ລວ\u0003ʔŊ\u0000\u0ea6\u0ea4\u0001\u0000\u0000\u0000\u0ea6ລ\u0001\u0000\u0000\u0000ວʑ\u0001\u0000\u0000\u0000ຨຩ\u0003ʘŌ\u0000ຩʓ\u0001\u0000\u0000\u0000ສຫ\u0003ʚō\u0000ຫʕ\u0001\u0000\u0000\u0000ຬຯ\u0003ʘŌ\u0000ອຯ\u0003ʚō\u0000ຮຬ\u0001\u0000\u0000\u0000ຮອ\u0001\u0000\u0000\u0000ຯʗ\u0001\u0000\u0000\u0000ະັ\u0005\n\u0000\u0000ັʙ\u0001\u0000\u0000\u0000າຼ\u0003ʞŏ\u0000ຳຼ\u0005³\u0000\u0000ິຼ\u0005¶\u0000\u0000ີຼ\u0005ě\u0000\u0000ຶຼ\u0005²\u0000\u0000ືຼ\u0005¨\u0000\u0000ຸຼ\u0005©\u0000\u0000ູຼ\u0005ª\u0000\u0000຺ຼ\u0005«\u0000\u0000ົາ\u0001\u0000\u0000\u0000ົຳ\u0001\u0000\u0000\u0000ົິ\u0001\u0000\u0000\u0000ົີ\u0001\u0000\u0000\u0000ົຶ\u0001\u0000\u0000\u0000ົື\u0001\u0000\u0000\u0000ົຸ\u0001\u0000\u0000\u0000ົູ\u0001\u0000\u0000\u0000ົ຺\u0001\u0000\u0000\u0000ຼʛ\u0001\u0000\u0000\u0000ຽເ\u0003ʘŌ\u0000\u0ebeເ\u0003ʞŏ\u0000\u0ebfຽ\u0001\u0000\u0000\u0000\u0ebf\u0ebe\u0001\u0000\u0000\u0000ເʝ\u0001\u0000\u0000\u0000ແໂ\u0003ʠŐ\u0000ໂʟ\u0001\u0000\u0000\u0000ໃໄ\u0007N\u0000\u0000ໄʡ\u0001\u0000\u0000\u0000\u0ec5ໆ\u0005\u0000\u0000\u0001ໆʣ\u0001\u0000\u0000\u0000ǧʩʭʲʶʼˁˆˌ˟ˣ˭˵˹˼˿̡̰̄̈̎̔̾͗ͪͭ͟͵\u0379ͽ\u0383·ΌΏΔΗΙΥΨηξϋϕϘϛϤϨϪϬ϶ϼЄЏДИОЧЪагйлэѐєїўѦѬѯѶѾ҆ҊҏғҝңҧҩҮҳҷҺҾӂӅӋӍәӝӠӣӧӭӰӳӻӿԃԅԊԎԐԚԮԱԶԹԼԿՃՆՊՍՒՖ՛եթլղշռւև֏ֱֺׂ֥֗֝\u05cdוםף\u05edײ\u05fb؀؅؉؎ؑؔ؝إحس" ++ "علوً٘ٲٽڃڇڕڙڣڮڳڸڼہۄۊےۘۚۢۧ܁܊ܑܔܗܫܮܺ݅݉\u074bݓݗݙݣݨݲݵހޅތޏޝާޯ\u07b4\u07b9߄ߒߙߴ\u07fb߽ࠂࠆࠉ࠘ࠝࠦ࠰ࡃࡇࡊࡏ࡞ࡡࡤࡧࡪ\u086dࡷࢀࢄ࢈ࢋ࢐\u0893\u0897࢚࢞ࢡࢤࢭࢵࢺࢽࣃࣱࣣࣦ࣭ࣺ࣊ࣕࣙࣜ࣡࣪ࣴࣷࣾँऄऍएखञडऩभयलशीॉॐॕग़फ़२॰ॸংঈঔখছঝস\u09baূেৌ\u09d1\u09d4\u09d9\u09de০ৰ৸ਃਉਏਔਙਠਫਲ਼ਹ\u0a45ੇ\u0a50ਗ਼\u0a63੩੭੶\u0a7aંઅ\u0a8eચફમલઽૄો\u0ad1\u0ad7\u0addૣ૨૫ૺଃଇ\u0b0dଓଥଭର\u0b34ାୂେୌ\u0b4f\u0b54ୗ\u0b5eୢ୯୷\u0b80அஈ\u0b8dஒகஙஜ\u0ba2\u0ba5ன\u0badரழெொௐ\u0bd9\u0bde\u0be1௰௷\u0bfbఁఇ\u0c0dఒగఠనయఱిృో\u0c4fౡ౮౺౽ಁಅಈಊಕಜತದರಷಹಾೀ\u0ccfೞೣ೦೪೮ೳ\u0cf8ഀഅ\u0d0dഒഛഡദമറഹഽിൄ\u0d51\u0d53൚൜\u0d64൧൪൱൶൸ൺൽ\u0d80ඍඓඖකඝජඨථ\u0db2ඹර\u0dbe\u0dc7\u0dc9ීෙෞ\u0de0\u0de3෪෮\u0df1ෳ\u0dfeซญฑทภษหัแๆ๊๎๕\u0e5d\u0e62\u0e69\u0e72\u0e75\u0e7eຄຈຌຐຝຠ\u0ea6ຮົ\u0ebf", +"): ", "Symbol", "Invalid input \'%s\': expected four hexadecimal digits specifying a unicode character", "AliasedReturnItem", "SortedSet", "TreeSet", "ordering must not be null", "Cannot use `YIELD *` outside standalone call", "CALL { ... } IN TRANSACTIONS after a write clause is not supported", "Acc", "IndexedSeqView", "Semantic table", "Not reached", "Status: ", "Message: ", "Subcondition: ", "Caused by:", "Leaf", "Invalid combination of UNION and UNION ALL", "The EXISTS expression is not valid in driver settings.", +"The COUNT expression is not valid in driver settings.", "The COLLECT expression is not valid in driver settings.", "This expression is not valid in driver settings.", "a RETURN clause, a FINISH clause, an update clause, a unit subquery call, or a procedure call with no YIELD", "` is only allowed at the first position of a USE clause.", "driver settings", "The semantics of using colon in the separation of alternative relationship types in conjunction with\n |the use of variable binding, inlined property predicates, or variable length is no longer supported.\n |Please separate the relationships types using `", +"Label expressions are not allowed to contain \'|:\'.\n |If you want to express a disjunction of labels, please use `", "` instead", "Relationship types in a relationship type expressions may not be combined using \':\'", "Label expressions are not allowed to contain \'|:\'.", "Sub-path assignment is currently not supported.", "A ", " Expression cannot contain any updates", "MATCH cannot follow OPTIONAL MATCH (perhaps use a WITH clause between them)", " is too large", "result of ", " cannot be represented as an integer", +"OR REPLACE", "IF NOT EXISTS", "Failed to create the specified ", " \'", "\': cannot have both `OR REPLACE` and `IF NOT EXISTS`.", "Failed to ", ": `OR REPLACE` cannot be used together with this command.", "`DENY MERGE` is not supported. Use `DENY SET PROPERTY` and `DENY CREATE` instead.", "When combining show and/or terminate commands, `RETURN` isn\'t optional.", " (must be ", ").", "WITH is required between ", "Precedence predicates are not supported in lexers.", "ANTLR Tool version %s used for code generation does not match the current runtime version %s%n", +"ANTLR Runtime version %s used for parser compilation does not match the current runtime version %s%n", "Could not deserialize ATN with version %d (expected %d).", "Couldn\'t identify final state of the precedence rule prefix section.", "The specified transition type is not valid.", "The specified state type %d is not valid.", "The specified lexer action type %s is not valid.", "Only precedence DFAs may contain a precedence start state.", "_status_parameters", "(%s, %s)", "Invalid state number.", "ATN state %d has both epsilon and non-epsilon transitions.\n", +"INVALID", "BASIC", "RULE_START", "BLOCK_START", "PLUS_BLOCK_START", "STAR_BLOCK_START", "TOKEN_START", "RULE_STOP", "BLOCK_END", "STAR_LOOP_BACK", "STAR_LOOP_ENTRY", "PLUS_LOOP_BACK", "LOOP_END", "=>", "This set is readonly", ",hasSemanticContext=", ",uniqueAlt=", ",conflictingAlts=", ",dipsIntoOuterContext", "BYTE", "CHAR", "Deprecation", "TreeContext", "can\'t alter readonly IntervalSet", "set is empty", "{}", "", "REPORT STATUS can only be used when specifying ON ERROR CONTINUE or ON ERROR BREAK", +"InTransactionsParameters", "Index: ", " Size: ", ",[", ",up=", "ProcedureResult", "size=%d and step=%d, but both must be positive", "UnionMapping", "FlatMap", " is not available in this implementation of Cypher due to lack of support for ", "DefaultWith", "= _p", "] ", "Unknown rule index ", "Parsed an unknown LabelExpression1 type", "Unknown Constraint Command", "Unexpected Constraint Command", "Invalid Constraint Type", "Unexpected privilege all command", "Unexpected child ", "Unexpected context ", " (first token type ", "trim", "Unexpected ctx ", "Unexpected token ", " (first token ", "Path selectors such as `", "` cannot be used in a MERGE clause, but only in a MATCH clause.", "quantified", "parenthesized", "` are not supported within ", +" path patterns.", "Unexpected parse result ", "Unexpected expression", "Unexpected DBMS token", "Unexpected action for Database Privilege", "?", "Unexpected token in Graph Qualifier", "Unexpected index type", "Parsed an unknown LabelExpression1Is type", "The PERIODIC COMMIT query hint is no longer supported. Please use CALL { ... } IN TRANSACTIONS instead.", "OF ROWS", "ON ERROR", "REPORT STATUS", "Named patterns are not allowed in `INSERT`. Use `CREATE` instead or remove the name.", "Colon `:` conjunction is not allowed in INSERT. Use `CREATE` or conjunction with ampersand `&` instead.", +"Closed Dynamic Union Types can not be appended with `NOT NULL`, specify `NOT NULL` on all inner types instead.", "Duplicate ", " clause", "Duplicated ", " parameters", "\'.\' is not a valid character in the remote alias name \'", "\'. Remote alias names using \'.\' must be quoted with backticks e.g. `remote.alias`.", "Invalid input `%s` for database name. Expected name to contain at most one component.", "Invalid input `%s` for name. Expected name to contain at most two components separated by `.`.", "SET STATUS {SUSPENDED|ACTIVE}", +"SET HOME DATABASE", "`ON DEFAULT GRAPH` is not supported. Use `ON HOME GRAPH` instead.", "`ON DEFAULT DATABASE` is not supported. Use `ON HOME DATABASE` instead.", "\': expected \"", "`ON DEFAULT ", "` is not supported. Use `ON HOME ", "relationship patterns", "\' does not allow node patterns", "node pattern", "node patterns", "\' does not allow relationship patterns", "relationship pattern", "Invalid constraint syntax, ON should not be used in combination with REQUIRE. Replace ON with FOR.", "Invalid constraint syntax, FOR should not be used in combination with ASSERT. Replace ASSERT with REQUIRE.", +"Invalid constraint syntax, ON and ASSERT should not be used. Replace ON with FOR and ASSERT with REQUIRE.", "Invalid constraint syntax, FOR should not be used in combination with ASSERT EXISTS. Replace ASSERT EXISTS with REQUIRE ... IS NOT NULL.", "Invalid constraint syntax, ON and ASSERT EXISTS should not be used. Replace ON with FOR and ASSERT EXISTS with REQUIRE ... IS NOT NULL.", "Constraint type is not recognized", "Constraint type \'EXISTS\' does not allow multiple properties", "Constraint type \'IS TYPED\' does not allow multiple properties", +"Constraint type \'IS NOT NULL\' does not allow multiple properties", "\' ", "does not allow relationship patterns", "Unsupported drop constraint command: Please delete the constraint by name instead", "Relationship property existence", "Node property existence", "Uniqueness", "Node key", "`SHOW CONSTRAINTS` no longer allows the `EXISTS` keyword, please use `EXIST` or `PROPERTY EXISTENCE` instead.", "Invalid index type b-tree, please omit the `BTREE` filter.", "SHOW INDEXES", "SHOW CONSTRAINTS", "` no longer allows the `BRIEF` and `VERBOSE` keywords,\n |please omit `BRIEF` and use `YIELD *` instead of `VERBOSE`.", +"CREATE INDEX", "\'REPLACE\' is not allowed for this index syntax", "Invalid create index syntax, use `CREATE INDEX FOR ...` instead.", "Missing function name for the LOOKUP INDEX", "Invalid index type b-tree, use range, point or text index instead.", "Indexes cannot be dropped by schema, please drop by name instead: DROP INDEX index_name. The index name can be found using SHOW INDEXES.", "Invalid normal form, expected NFC, NFD, NFKC, NFKD", "Each part of the glob (a block of text up until a dot) must either be fully escaped or not escaped at all.", +" constraints cannot be dropped by schema, please drop by name instead: DROP CONSTRAINT constraint_name. The constraint name can be found using SHOW CONSTRAINTS.", "Cause already set", "Circular causation relation", "mergeArrays a=", ",b=", " -> previous", " -> a", " -> b", "channel(%d)", "mode(%d)", "more", "popMode", "pushMode(%d)", "type(%d)", "NOTHING type is not supported for use in this context", "NothingType", "NULL type is not supported for use in this context", "NullType", "RewrittenExpression", "Failed to parse comment. A comment starting on `/*` must have a closing `*/`.", +"$", "USE GRAPH", "UseGraph", "Finish", "FeatureError", "Condition \'", "\' violated. ", "Unexpected size ", "Aggregation column contains implicit grouping expressions. For example, in \'RETURN n.a, n.a + n.b + count(*)\' the aggregation expression \'n.a + n.b + count(*)\' includes the implicit grouping key \'n.b\'. It may be possible to rewrite the query by extracting these grouping/aggregation expressions into a preceding WITH clause. Illegal expression(s): ", "Not", "label expression predicate", "GPM_SHORTEST", +"LEGACY_SHORTEST", "COLLECT_SUBQUERY", "COUNT_SUBQUERY", "EXISTS_SUBQUERY", "QUANTIFIED_PATH_PATTERN", "QuantifiedPath", "ExistsExpression", "CountExpression", "CollectExpression", "ProcedureOutput", "ExplicitParameter", "LiteralOffset", "Index type %s is not defined for USING index hint. Use %s instead.", "Index type %s is no longer supported for USING index hint. Use %s instead.", "NODE_UNIQUE", "IS NODE UNIQUE", "REL_UNIQUE", "IS RELATIONSHIP UNIQUE", "NODE_KEY", "IS NODE KEY", "REL_KEY", "IS RELATIONSHIP KEY", +"NODE_EXISTS", "NODE_IS_NOT_NULL", "REL_EXISTS", "REL_IS_NOT_NULL", "NODE_IS_TYPED", "IS TYPED", "REL_IS_TYPED", "Duplicate \'REMOVE OPTION ", "\' clause", "Duplicate \'SET OPTION ", "CountStar", "Match", "", "relationship type", "labels", "join", " scan", "no ", " was", "only the ", " `", "` was", "`, `", "s `", "` were", "Predicates must include the ", " literal `", "`.\n | That is, the function `", "()` is not compatible with indexes.", "none was", "only `", "the ", "Supported predicates are:\n | equality comparison, inequality (range) comparison, `STARTS WITH`,\n | `IN` condition or checking property existence.\n | The comparison cannot be performed between two property values.", +"relationship", "node", "RuleWithStartToken[", "startTokenIndex=", ", ruleIndex=", "ExpressionRule", "StringLiteralRule", "NumberLiteralRule", "ParameterRule", "VariableRule", "IdentifierRule", "DatabaseNameRule", "GraphPatternRule", "CandidateRule[", ", ruleList=", "AscSortItem", "DescSortItem", "}?", "EXISTS expression on SHOW commands", "The EXISTS expression is not valid on SHOW commands.", "COLLECT expression on SHOW commands", "The COLLECT expression is not valid on SHOW commands.", "COUNT expression on SHOW commands", +"The COUNT expression is not valid on SHOW commands.", "Pattern expressions on SHOW commands", "Pattern expressions are not valid on SHOW commands.", "Subquery expressions on SHOW commands", "Subquery expressions are not valid on SHOW commands.", "Pattern comprehensions on SHOW commands", "Pattern comprehensions are not valid on SHOW commands.", "LabelExpressionRule", "RelationshipPatternRule", "NodePatternRule", "LabelExpression1Rule", "A pattern to verify the existence of.", "Returns true if a match for the pattern exists in the graph.", +"Exists", "PatternExpression", "Insert", "Create", "US-ASCII", "ISO-8859-1", "UTF-16", "UTF-16BE", "UTF-16LE", "%s(\'%s\')", "ImplicitProcedureArgument", "CoerceTo", "PatternComprehension", "Illegal aggregation expression(s) in order by: ", ". If an aggregation expression is used in order by, it also needs to be a projection item on it\'s own. For example, in \'RETURN n.a, 1 + count(*) ORDER BY count(*) + 1\' the aggregation expression \'count(*) + 1\' is not a projection item on its own, but it could be rewritten to \'RETURN n.a, 1 + count(*) AS cnt ORDER BY 1 + count(*)\'.", +"GraphFunctionReference", "Skip", "LIMIT", "Limit", "` cannot be used in a CREATE clause, but only in a MATCH clause.", "ForUpdate", "SetPropertyItem", "We don\'t expect this to be called on any other logical properties. Got: ", "ContainerIndex", "SetDynamicPropertyItem", "SetExactPropertiesFromMapItem", "SetIncludingPropertiesFromMapItem", "SetLabelItem", "Remove", "RemovePropertyItem", "RemoveDynamicPropertyItem", "RemoveLabelItem", "Delete", "Expected pattern part but was ", "ForMatch", "DIFFERENT RELATIONSHIPS", +"DifferentRelationships", "REPEATABLE ELEMENTS", "RepeatableElements", "UsingJoinHint", "UsingScanHint", "LabelOrRelTypeName", "PatternPartWithSelector", "OnCreate", "OnMatch", "[\\w]+://.+:.+@.+", "IN ... CONCURRENT", "InTransactionsConcurrencyParameters", "OF ... ROWS", "InTransactionsBatchParameters", "OnErrorBreak", "OnErrorContinue", "OnErrorFail", "InTransactionsErrorParameters", "PathPatternPart", "NamedPatternPart", "PlusQuantifier", "StarQuantifier", "IntervalQuantifier", "FixedQuantifier", "PathConcatenation", +"SHORTEST ", " PATHS", "AnyShortestPath", "ALL SHORTEST PATHS", "AllShortestPaths", "ANY ", "AnyPath", " PATH GROUPS", "ShortestGroups", "ALL PATHS", "AllPaths", "RelationshipsPattern", "ParenthesizedPath", "LabelName", "DynamicLabelOrRelTypeExpression", "RelTypeName", "ColonDisjunction", "ColonConjunction", "Negation", "Wildcard", "DynamicLeaf", "Unexpected parse results ", "UnarySubtract", "UnaryAdd", "Unexpected rhs ", "Infinity", "NaN", "True", "ReduceExpression", "ReduceScope", "Returns true if the predicate holds for all elements in the given `LIST`.", +"A variable that can be used within the `WHERE` clause.", "list", "A predicate must hold for all elements in this list for the function to return `true`.", "predicate", "A predicate that is tested against all items in the given list.", "Returns true if the predicate holds for at least one element in the given `LIST`.", "A list for the predicate to check against.", "Returns true if the predicate holds for no element in the given `LIST`.", "Returns true if the predicate holds for exactly one of the elements in the given `LIST`.", +"StringLiteral", "trimSpecification", "(input :: STRING) :: STRING", "[LEADING, TRAILING, BOTH]", "The parts of the string to trim; LEADING, TRAILING, BOTH", "A value from which all leading and trailing whitespace will be removed.", "Returns the given `STRING` with leading and trailing whitespace removed.", "trimCharacterString", "([[LEADING | TRAILING | BOTH] [trimCharacterString :: STRING] FROM] input :: STRING) :: STRING", "The characters to be removed from the start and/or end of the given string.", "A value from which all leading and/or trailing trim characters will be removed.", +"Returns the given `STRING` with leading and/or trailing `trimCharacterString` removed.", "Trim", "ShortestPathExpression", "MapProjection", "LiteralEntry", "VariableSelector", "AllPropertiesSelector", "PropertySelector", "-?(\\d+((_\\d+)?)*)?(\\.\\d+((_\\d+)?)*)?([eE]([+-])?\\d+((_\\d+)?)*)?", "_", "DecimalDoubleLiteral", "SignedDecimalIntegerLiteral", "-?0x(_?[0-9a-fA-F]+)+", "SignedHexIntegerLiteral", "-?0o(_?[0-7]+)+", "SignedOctalIntegerLiteral", "ArgumentUnordered", "OptionsMap", "OptionsParam", "ShowWrapper", +"allIndexes", "AllIndexes", "fulltextIndexes", "FulltextIndexes", "lookupIndexes", "LookupIndexes", "pointIndexes", "PointIndexes", "rangeIndexes", "RangeIndexes", "textIndexes", "TextIndexes", "vectorIndexes", "VectorIndexes", "RELATIONSHIP_KEY", "RELATIONSHIP KEY", "relationshipKeyConstraints", "RelKeyConstraints", "keyConstraints", "KeyConstraints", "RELATIONSHIP_EXISTENCE", "RELATIONSHIP EXISTENCE", "relationshipExistenceConstraints", "RelAllExistsConstraints", "NODE_PROPERTY_TYPE", "NODE PROPERTY TYPE", +"nodePropertyTypeConstraints", "NodePropTypeConstraints", "RELATIONSHIP_PROPERTY_TYPE", "RELATIONSHIP PROPERTY TYPE", "relationshipPropertyTypeConstraints", "RelPropTypeConstraints", "PROPERTY_TYPE", "PROPERTY TYPE", "propertyTypeConstraints", "PropTypeConstraints", "NODE_EXISTENCE", "NODE EXISTENCE", "nodeExistenceConstraints", "NodeAllExistsConstraints", "existenceConstraints", "AllExistsConstraints", "allConstraints", "AllConstraints", "NODE KEY", "nodeKeyConstraints", "NodeKeyConstraints", "CurrentUser", +"User", "BUILT IN", "builtInFunctions", "BuiltInFunctions", "allFunctions", "AllFunctions", "USER DEFINED", "userDefinedFunctions", "UserDefinedFunctions", "indexProvider", "indexConfig", "Failed to create ", ": Invalid option provided, valid options are `indexProvider` and `indexConfig`.", "DropConstraintOnName", "DropIndexOnName", " `NaN` is not supported for property-based access control.", " The property value access rule pattern `", "` always evaluates to `NULL`.", " The property `", "` must appear on the left hand side of the `", +"` operator.", " = NULL", " Use `IS NULL` instead.", " <> NULL", " Use `IS NOT NULL` instead.", " > NULL", " >= NULL", " < NULL", " <= NULL", "NULL = ", "NULL <> ", "NULL > ", "NULL >= ", "NULL < ", "NULL <= ", "<>", ">=", "<=", " The expression: `", "` is not supported. Property rules can only contain one property.", ":NULL}", " Use `WHERE` syntax in combination with `IS NULL` instead.", "LOAD privileges with a URL pattern are not currently supported", "` is not supported. Only single, literal-based predicate expressions are allowed for property-based access control.", +"date", "localdatetime", "localtime", "time", "duration", "` is not supported. All elements in a list must be literals of the same type for property-based access control.", "GrantPrivilege", "GRANT ROLE", "GrantRolesToUsers", "DenyPrivilege", "RevokeDenyType", "DENIED", "RevokePrivilege", "RevokeBothType", "RevokeGrantType", "GRANTED", "REVOKE ROLE", "RevokeRolesFromUsers", "ENABLE SERVER", "EnableServer", "ALTER SERVER", "AlterServer", "RENAME SERVER", "RenameServer", "DROP SERVER", "DropServer", "serverId", +"name", "address", "httpAddress", "httpsAddress", "state", "health", "hosting", "requestedHosting", "tags", "allowedDatabases", "deniedDatabases", "modeConstraint", "version", "DEALLOCATE DATABASES FROM SERVER", "database", "fromServerName", "fromServerId", "toServerName", "toServerId", "mode", "DeallocateServers", "REALLOCATE DATABASES", "ReallocateDatabases", " ROLE", "CREATE OR REPLACE", "rolename", "CreateRole", "DROP ROLE", "DropRole", "RENAME ROLE", "from rolename", "to rolename", "RenameRole", "immutable", +"member", "Auth", "native", " must be a String, or a String parameter.", "CREATE USER", "CREATE OR REPLACE USER", "username", "CreateUser", "UserOptions", "DROP USER", "DropUser", "RENAME USER", "from username", "to username", "RenameUser", "ALTER CURRENT USER SET PASSWORD", "SetOwnPassword", "RemoveHomeDatabaseAction", "RemoveAuth", "ALTER USER", "`ALTER USER` requires at least one clause.", "AlterUser", "Password", "PasswordChange", "SET PASSWORD CHANGE [NOT] REQUIRED", "SensitiveStringLiteral", "SetHomeDatabaseAction", +"AuthId", "SET ID", "roles", "suspended", "home", "provider", "qualifier", "target", "scope", "description", "access", "resource", "segment", "ShowAllPrivileges", "ShowRolesPrivileges", "ShowUserPrivileges", "ShowUsersPrivileges", "GraphPrivilege", "ALL GRAPH PRIVILEGES", "AllGraphPrivileges", "AllGraphAction", "HomeGraphScope", "DatabasePrivilege", "ALL DATABASE PRIVILEGES", "AllDatabaseAction", "HomeDatabaseScope", "ShowHomeDatabase", "NamedDatabasesScope", "AllDatabasesScope", "ShowDatabases", "NamedGraphsScope", +"AllGraphsScope", "DbmsPrivilege", "ALL DBMS PRIVILEGES", "AllDbmsAction", "CreateElement", "CreateElementAction", "CREATE NEW NODE LABEL", "CreateNodeLabelAction", "CREATE NEW RELATIONSHIP TYPE", "CreateRelationshipTypeAction", "CREATE NEW PROPERTY NAME", "CreatePropertyKeyAction", "DropUserAction", "CreateUserAction", "DropRoleAction", "CREATE ROLE", "CreateRoleAction", "DROP DATABASE", "DropDatabaseAction", "CREATE DATABASE", "CreateDatabaseAction", "DROP COMPOSITE DATABASE", "DropCompositeDatabaseAction", +"CREATE COMPOSITE DATABASE", "CreateCompositeDatabaseAction", "DROP ALIAS", "DropAliasAction", "CREATE ALIAS", "CreateAliasAction", "DROP CONSTRAINT", "DropConstraintAction", "DROP INDEX", "DropIndexAction", "LoadPrivilege", "LoadAllDataAction", "FileResource", "LoadAllQualifier", "LoadCidrAction", "LoadCidrQualifier", "LoadUrlAction", "LoadUrlQualifier", "SHOW CONSTRAINT", "ShowConstraintAction", "SHOW INDEX", "ShowIndexAction", "SHOW TRANSACTION", "ShowTransactionAction", "ShowAliasAction", "ShowPrivilegeAction", +"SHOW ROLE", "ShowRoleAction", "ShowServerAction", "SHOW USER", "ShowUserAction", "SHOW SETTING", "ShowSettingAction", "SET PASSWORDS", "SetPasswordsAction", "SET USER STATUS", "SetUserStatusAction", "SET USER HOME DATABASE", "SetUserHomeDatabaseAction", "SET DATABASE ACCESS", "SetDatabaseAccessAction", "SET AUTH", "SetAuthAction", "SET PROPERTY", "SetProperty", "SetPropertyAction", "SetLabel", "SetLabelAction", "RemoveLabel", "RemoveLabelAction", "REMOVE ROLE", "RemoveRoleAction", "REMOVE PRIVILEGE", "RemovePrivilegeAction", +"Write", "WriteAction", "ElementsAllQualifier", "CONSTRAINT MANAGEMENT", "AllConstraintActions", "INDEX MANAGEMENT", "AllIndexActions", "AccessDatabaseAction", "NAME MANAGEMENT", "AllTokenActions", "StartDatabaseAction", "StopDatabaseAction", "TERMINATE TRANSACTION", "TerminateTransactionAction", "TRANSACTION MANAGEMENT", "AllTransactionActions", "ALIAS MANAGEMENT", "AllAliasManagementActions", "COMPOSITE DATABASE MANAGEMENT", "CompositeDatabaseManagementActions", "DATABASE MANAGEMENT", "AllDatabaseManagementActions", +"ImpersonateUserAction", "PRIVILEGE MANAGEMENT", "AllPrivilegeActions", "ROLE MANAGEMENT", "AllRoleActions", "SERVER MANAGEMENT", "ServerManagementAction", "USER MANAGEMENT", "AllUserActions", "RenameRoleAction", "RenameUserAction", "ASSIGN PRIVILEGE", "AssignPrivilegeAction", "ASSIGN ROLE", "AssignRoleAction", "ALTER ALIAS", "AlterAliasAction", "ALTER DATABASE", "AlterDatabaseAction", "AlterUserAction", "EXECUTE ADMIN PROCEDURES", "ExecuteAdminProcedureAction", "EXECUTE PROCEDURE", "ExecuteProcedureAction", +"EXECUTE BOOSTED PROCEDURE", "ExecuteBoostedProcedureAction", "EXECUTE USER DEFINED FUNCTION", "ExecuteFunctionAction", "EXECUTE BOOSTED USER DEFINED FUNCTION", "ExecuteBoostedFunctionAction", "CreateIndexAction", "CREATE CONSTRAINT", "CreateConstraintAction", "UserAllQualifier", "Traverse", "TraverseAction", "MatchAction", "Read", "ReadAction", "MergeAdminAction", "DeleteElement", "DeleteElementAction", "LabelsResource", "AllLabelResource", "PropertiesResource", "AllPropertyResource", "RelationshipAllQualifier", +"LabelAllQualifier", "PatternQualifier", "message", "success", "CREATE OR REPLACE COMPOSITE DATABASE", "composite database", "Failed to create the specified composite database \'", "\': COMPOSITE DATABASE names cannot contain \".\". COMPOSITE DATABASE names using \'.\' must be quoted with backticks e.g. `composite.database`.", "composite database name", "CreateCompositeDatabase", "Topology", "CREATE OR REPLACE DATABASE", "CreateDatabase", "DESTROY DATA", "DestroyData", "DUMP DATA", "DumpData", "DropDatabase", +"Restrict", "CASCADE ALIASES", "CascadeAliases", "AlterDatabase", "NoOptions", "ReadWriteAccess", "ReadOnlyAccess", "START DATABASE", "StartDatabase", "STOP DATABASE", "StopDatabase", "NoWait", " WAIT", "IndefiniteWait", "TimeoutAfter", " WAIT ", " SECONDS", "SingleNamedDatabaseScope", "aliases", "requestedStatus", "default", "requestedPrimariesCount", "requestedSecondariesCount", "creationTime", "lastStartTime", "lastStopTime", "constituents", "currentPrimariesCount", "currentSecondariesCount", "options", "databaseID", +"store", "writer", "currentStatus", "statusMessage", "lastCommittedTxn", "replicationLag", "serverID", "DefaultDatabaseScope", "ShowDefaultDatabase", "CREATE OR REPLACE ALIAS", "\'.\' is not a valid character in the local alias name \'", "\'. Local alias names using \'.\' must be quoted with backticks when adding a local alias to a composite database e.g. `local.alias`.", "local alias name", "CreateLocalDatabaseAlias", "CreateRemoteDatabaseAlias", "DropDatabaseAlias", "url of a remote alias target", "Failed to alter the specified database alias \'", +"\': url needs to be defined to alter a remote alias target.", "database alias", "AlterRemoteDatabaseAlias", "AlterLocalDatabaseAlias", "composite", "location", "driver", "ParameterName", "Unexpected database name format", "MapExpression", "safeFrom/safeTo is incorrect", "All sub queries in an UNION must have the same return column names", "The `USE` clause is not required for Administration Commands. Retry your query omitting the `USE` clause and it will be routed automatically.", "an expression", "a string", +"a number", "a parameter", "a variable name", "a database name", "a graph pattern", "a relationship type name", "a node label name", "a node label/relationship type name", "UnknownSize", "SeekOrScan", "SeekOnly", "UsingIndexHint", "CSV field terminator can only be one character wide", "LoadCSV", "OUTGOING", "INCOMING", "GreaterThanOrEqual", "GreaterThan", "LessThanOrEqual", "LessThan", "!=", "InvalidNotEquals", "NotEquals", "( ", "Ands", "Contains", "ENDS WITH", "EndsWith", "=~", "RegexMatch", "STARTS WITH", +"StartsWith", "IsNotNull", "IsNull", "IS NOT ::", "IsNotTyped", "IS NORMALIZED", "IsNormalized", "IS NOT NORMALIZED", "IsNotNormalized", "ListComprehension", "[...]", "ExtractScope", ") in ", "AllIterablePredicate", "FilterScope", "AnyIterablePredicate", "NoneIterablePredicate", "SingleIterablePredicate", "NODE UNIQUENESS", "nodeUniquenessConstraints", "NodeUniqueConstraintsCypher5", "RELATIONSHIP_UNIQUENESS", "RELATIONSHIP UNIQUENESS", "relationshipUniquenessConstraints", "RelUniqueConstraintsCypher5", "uniquenessConstraints", +"UniqueConstraintsCypher5", "NODE_PROPERTY_EXISTENCE", "NODE PROPERTY EXISTENCE", "NodePropExistsConstraintsCypher5", "RELATIONSHIP_PROPERTY_EXISTENCE", "RELATIONSHIP PROPERTY EXISTENCE", "RelPropExistsConstraintsCypher5", "PROPERTY_EXISTENCE", "PROPERTY EXISTENCE", "PropExistsConstraintsCypher5", "IfExistsInvalidSyntax", "IfExistsReplace", "IfExistsDoNothing", "IfExistsThrowError", " constraint", "create ", " Lists cannot have lists as an inner type.", " Lists cannot have a union of types as an inner type.", +" Lists cannot have nullable inner types.", "CreateConstraintCommand", "Did not expect Dynamic Labels here", "Did not expect Dynamic Relationships here", "node property existence", "NodePropertyExistence", " constraint: Invalid property type `", "CreatePropertyTypeConstraint", "relationship property existence", "RelationshipPropertyExistence", "create index", "CreateSingleLabelPropertyIndexCommand", "VECTOR INDEX", "vector node index", "vector relationship index", "vector indexes", "VectorCreateIndex", "text node index", +"text relationship index", "text indexes", "TextCreateIndex", "RangeCreateIndex", "range node property index", "range relationship property index", "range indexes", "point node index", "point relationship index", "point indexes", "PointCreateIndex", "CreateFulltextIndexCommand", "function name", ": Function \'", "\' is not allowed, valid function is \'", "\'.", "CreateLookupIndexCommand", "AllQualifier", "AllDatabasesQualifier", "NamespacedName", "nodePropertyExistenceConstraints", "NodePropExistsConstraintsCypher25", +"relationshipPropertyExistenceConstraints", "RelPropExistsConstraintsCypher25", "propertyExistenceConstraints", "PropExistsConstraintsCypher25", "NODE_PROPERTY_UNIQUENESS", "NODE PROPERTY UNIQUENESS", "nodePropertyUniquenessConstraints", "NodeUniqueConstraintsCypher25", "RELATIONSHIP_PROPERTY_UNIQUENESS", "RELATIONSHIP PROPERTY UNIQUENESS", "relationshipPropertyUniquenessConstraints", "RelUniqueConstraintsCypher25", "PROPERTY_UNIQUENESS", "PROPERTY UNIQUENESS", "propertyUniquenessConstraints", "UniqueConstraintsCypher25", +"DynamicLabelExpression", "DynamicRelTypeExpression", "NodePropertyType", "node property type", "IS :: ", "RelationshipPropertyType", "relationship property type", "IS UNIQUE", "node property uniqueness", "NodePropertyUniquenessCypher25", "uniqueness", "NodePropertyUniquenessCypher5", "node key", "IS KEY", "NodeKeyCypher25", "NodeKeyCypher5", "relationship property uniqueness", "RelationshipPropertyUniquenessCypher25", "relationship uniqueness", "RelationshipPropertyUniquenessCypher5", "relationship key", "RelationshipKeyCypher25", +"RelationshipKeyCypher5", "Attempt to construct empty non-empty list ", "A numeric value from which the absolute number will be returned.", "Returns the absolute value of an `INTEGER` or `FLOAT`.", "abs", "Abs", "An angle in radians.", "Returns the arccosine of a `FLOAT` in radians.", "acos", "Acos", "Returns the arcsine of a `FLOAT` in radians.", "asin", "Asin", "Returns the arctangent of a `FLOAT` in radians.", "atan", "Atan", "y", "x", "A y angle in radians.", "An x angle in radians.", "Returns the arctangent2 of a set of coordinates in radians.", +"atan2", "Atan2", "A value aggregated to form an average.", "Returns the average of a set of `INTEGER`, `FLOAT` or `DURATION` values.", "avg", "Avg", "A value from which the leading and trailing trim character will be removed.", "A character to be removed from the start and end of the given string.", "Returns the given `STRING` with leading and trailing `trimCharacterString` characters removed.", "btrim", "BTrim", "A value to be rounded to the nearest higher integer.", "Returns the smallest `FLOAT` that is greater than or equal to a number and equal to an `INTEGER`.", +"ceil", "Ceil", "A string value whose length in characters is to be calculated.", "Returns the number of Unicode characters in a `STRING`.", "char_length", "CharLength", "character_length", "CharacterLength", "If this is the first non-`NULL` value, it will be returned.", "Returns the first non-null value in a list of expressions.", "coalesce", "Coalesce", "A value aggregated into a list.", "Returns a list containing the values returned by an expression.", "collect", "Collect", "Returns the cosine of a `FLOAT`.", +"cos", "Cos", "Returns the cotangent of a `FLOAT`.", "cot", "Cot", "A value to be aggregated.", "Returns the number of values or rows.", "Count", "Converts radians to degrees.", "degrees", "Degrees", "point.distance", "from", "A start point.", "An end point in the same CRS as the start point.", "Returns a `FLOAT` representing the distance between any two points in the same CRS. If the points are in the WGS 84 CRS, the function returns the geodesic distance (i.e., the shortest path along the curved surface of the Earth). If the points are in a Cartesian CRS, the function returns the Euclidean distance (i.e., the shortest straight-line distance in a flat, planar space).", +"Distance", "Returns the base of the natural logarithm, e.", "e", "An element id of a node or a relationship.", "Returns the element id of a `NODE` or `RELATIONSHIP`.", "elementId", "ElementId", "A relationship.", "Returns the end `NODE` of a `RELATIONSHIP`.", "endNode", "EndNode", "A value to which the base of the natural logarithm, e, will be raised.", "Returns e^n, where e is the base of the natural logarithm, and n is the value of the argument expression.", "exp", "Exp", "Returns the absolute path of the file that LOAD CSV is using.", +"file", "File", "A value to be rounded to the nearest lower integer.", "Returns the largest `FLOAT` that is less than or equal to a number and equal to an `INTEGER`.", "floor", "Floor", "The name of the graph to be resolved.", "Returns the graph reference of the given name. It is only supported in the `USE` clause, on composite databases.", "graph.byName", "An element id of a node or relationship.", "Returns the graph reference with the given element id. It is only supported in the `USE` clause, on composite databases.", +"graph.byElementId", "Returns half the versine of a number.", "haversin", "Haversin", "head", "A list from which the first element will be returned.", "Returns the first element in a `LIST`.", "Head", "A node or a relationship.", "Returns the id of a `NODE` or `RELATIONSHIP`.", "id", "Id", "isEmpty", "A value to be checked for emptiness.", "Checks whether a `STRING`, `MAP` or `LIST` is empty.", "IsEmpty", "A numeric value to be compared against `NaN`.", "Returns whether the given `INTEGER` or `FLOAT` is NaN.", +"isNaN", "IsNaN", "A node whose labels will be returned.", "Returns a `LIST` containing the `STRING` representations for all the labels of a `NODE`.", "Labels", "A list from which the last element will be returned.", "Returns the last element in a `LIST`.", "last", "Last", "original", "length", "A string value whose rightmost characters will be trimmed.", "The length of the leftmost characters to be returned.", "Returns a `STRING` containing the specified number (`INTEGER`) of leftmost characters in the given `STRING`.", +"left", "A path whose relationships will be counted.", "Returns the length of a `PATH`.", "Length", "Returns the line number that LOAD CSV is currently using.", "linenumber", "Linenumber", "A value for which the natural logarithm will be returned.", "Returns the natural logarithm of a `FLOAT`.", "log", "Log", "A value for which the common logarithm (base 10) will be returned.", "Returns the common logarithm (base 10) of a `FLOAT`.", "log10", "Log10", "A string to be converted into lowercase.", "Returns the given `STRING` in lowercase.", +"A value in which all leading whitespace will be removed.", "Returns the given `STRING` with leading whitespace removed.", "A value from which the leading trim character will be removed.", "A character to be removed from the start of the given string.", "Returns the given `STRING` with leading `trimCharacterString` characters removed.", "ltrim", "LTrim", "Returns the maximum value in a set of values.", "max", "Max", "Returns the minimum value in a set of values.", "min", "Min", "A path whose nodes will be returned.", +"Returns a `LIST` containing all the `NODE` values in a `PATH`.", "nodes", "Nodes", "A value to be normalized.", "Normalize a `STRING`. The `STRING` will be normalized using the normal form \'NFC\'.", "(input :: STRING, normalForm = NFC :: [NFC, NFD, NFKC, NFKD]) :: STRING", "[NFC, NFD, NFKC, NFKD]", "A keyword specifying any of the normal forms; NFC, NFD, NFKC or NFKD.", "Normalize a `STRING`. The `STRING` will be normalized according to the specified normalization form.", "Normalize", "Returns the mathematical constant pi.", +"pi", "percentile", "A percentile between 0.0 and 1.0.", "Returns the percentile of a value over a group using linear interpolation.", "percentileCont", "PercentileCont", "Returns the nearest `INTEGER` or `FLOAT` value to the given percentile over a group using a rounding method.", "percentileDisc", "PercentileDisc", "percentiles", "propertyKeys", "isDiscrete", "Returns the nearest `INTEGER` or `FLOAT` value for each of the given percentiles.", "Percentiles", "Cartesian 2D: {x :: FLOAT, y :: FLOAT, crs = \"cartesian\" :: STRING, srid = 7203 :: INTEGER}\n\nCartesian 3D: {x :: FLOAT, y :: FLOAT, z :: FLOAT, crs = \"cartesian-3D\" :: STRING, srid = 9157 :: INTEGER} \n\nWGS 84 2D: {longitude | x :: FLOAT, latitude | y :: FLOAT, crs = \"WGS-84-2D\" :: STRING, srid = 4326 :: INTEGER}\n\nWGS 84 3D: {longitude | x :: FLOAT, latitude | y :: FLOAT, height | z :: FLOAT, crs = \"WGS-84-3D\" :: STRING, srid = 4979 :: INTEGER}", +"Returns a 2D or 3D point object, given two or respectively three coordinate values in the Cartesian coordinate system or WGS 84 geographic coordinate system.", "A node or relationship from which the names of all properties will be returned.", "Returns a `LIST` containing the `STRING` representations for all the property names of a `NODE`, `RELATIONSHIP` or `MAP`.", "keys", "Keys", "An angle in degrees.", "Converts degrees to radians.", "radians", "Radians", "rand", "Returns a random `FLOAT` in the range from 0 (inclusive) to 1 (exclusive).", +"Rand", "Generates a random UUID.", "randomUUID", "start", "end", "The start value of the range.", "The end value of the range.", "Returns a `LIST` comprising all `INTEGER` values within a specified range.", "step", "The size of the increment (default value: 1).", "Returns a `LIST` comprising all `INTEGER` values within a specified range created with step length.", "accumulator", "reduce", "(accumulator :: VARIABLE = initial :: ANY, variable :: VARIABLE IN list :: LIST | expression :: ANY) :: ANY", +"A variable that holds the result as the list is iterated.", "A variable that can be used within the reducing expression.", "Runs an expression against individual elements of a `LIST`, storing the result of the expression in an accumulator.", "Reduce", "The path from which all relationships will be returned.", "Returns a `LIST` containing all the `RELATIONSHIP` values in a `PATH`.", "relationships", "Relationships", "search", "replace", "The string to be modified.", "The value to replace in the original string.", +"The value to be inserted in the original string.", "Returns a `STRING` in which all occurrences of a specified search `STRING` in the given `STRING` have been replaced by another (specified) replacement `STRING`.", "Replace", "The string or list to be reversed.", "Returns a `STRING` or `LIST` in which the order of all characters or elements in the given `STRING` or `LIST` have been reversed.", "reverse", "Reverse", "A string value whose leftmost characters will be trimmed.", "The length of the rightmost characters to be returned.", +"Returns a `STRING` containing the specified number of rightmost characters in the given `STRING`.", "right", "A value to be rounded.", "Returns the value of a number rounded to the nearest `INTEGER`.", "precision", "The rounding precision.", "Returns the value of a number rounded to the specified precision using rounding mode HALF_UP.", "A precision rounding mode (`UP`, `DOWN`, `CEILING`, `FLOOR`, `HALF_UP`, `HALF_DOWN`, `HALF_EVEN`).", "Returns the value of a number rounded to the specified precision with the specified rounding mode.", +"round", "Round", "Returns the given `STRING` with trailing whitespace removed.", "Returns the given `STRING` with trailing `trimCharacterString` characters removed.", "rtrim", "RTrim", "A positive or negative number.", "Returns the signum of an `INTEGER` or `FLOAT`: 0 if the number is 0, -1 for any negative number, and 1 for any positive number.", "sign", "Sign", "Returns the sine of a `FLOAT`.", "sin", "Sin", "A value whose length is to be calculated.", "Returns the number of items in a `LIST` or the number of Unicode characters in a `STRING`.", +"Size", "The value to calculate the square root of.", "Returns the square root of a `FLOAT`.", "sqrt", "Sqrt", "splitDelimiters", "The string to be split.", "The string with which to split the original string.", "Returns a `LIST` resulting from the splitting of the given `STRING` around matches of the given delimiter(s).", "split", "Split", "Returns the start `NODE` of a `RELATIONSHIP`.", "startNode", "StartNode", "The value to calculate the standard deviation of.", "Returns the standard deviation for the given value over a group for a sample of a population.", +"stdev", "StdDev", "The value to calculate the population standard deviation of.", "Returns the standard deviation for the given value over a group for an entire population.", "stdevp", "StdDevP", "The string to be shortened.", "The start position of the new string.", "Returns a substring of the given `STRING`, beginning with a 0-based index start.", "The length of the new string.", "Returns a substring of a given `length` from the given `STRING`, beginning with a 0-based index start.", "substring", "Substring", +"Returns the sum of a set of `INTEGER`, `FLOAT` or `DURATION` values", "sum", "Sum", "A list from which all but the first element will be returned.", "Returns all but the first element in a `LIST`.", "tail", "Tail", "Returns the tangent of a `FLOAT`.", "tan", "Tan", "A value to be converted into a boolean.", "Converts a `BOOLEAN`, `STRING` or `INTEGER` value to a `BOOLEAN` value. For `INTEGER` values, 0 is defined to be false and any other `INTEGER` is defined to be true.", "toBoolean", "ToBoolean", "A list of values to be converted into a list of booleans.", +"Converts a `LIST` of values to a `LIST` values. If any values are not convertible to `BOOLEAN` they will be null in the `LIST` returned.", "toBooleanList", "ToBooleanList", "A value to be converted into a boolean or null.", "Converts a value to a `BOOLEAN` value, or null if the value cannot be converted.", "toBooleanOrNull", "ToBooleanOrNull", "A value to be converted into a float.", "Converts a `STRING`, `INTEGER` or `FLOAT` value to a `FLOAT` value.", "toFloat", "ToFloat", "A list of values to be converted into a list of floats.", +"Converts a `LIST` to a `LIST` values. If any values are not convertible to `FLOAT` they will be null in the `LIST` returned.", "toFloatList", "ToFloatList", "A value to be converted into a float or null.", "Converts a value to a `FLOAT` value, or null if the value cannot be converted.", "toFloatOrNull", "ToFloatOrNull", "A value to be converted into an integer.", "Converts a `BOOLEAN`, `STRING`, `INTEGER` or `FLOAT` value to an `INTEGER` value. For `BOOLEAN` values, true is defined to be 1 and false is defined to be 0.", +"toInteger", "ToInteger", "A list of values to be converted into a list of integers.", "Converts a `LIST` to a `LIST` values. If any values are not convertible to `INTEGER` they will be null in the `LIST` returned.", "toIntegerList", "ToIntegerList", "A value to be converted into an integer or null.", "Converts a value to an `INTEGER` value, or null if the value cannot be converted.", "toIntegerOrNull", "ToIntegerOrNull", "toLower", "ToLower", "A value to be converted into a string.", +"Converts an `INTEGER`, `FLOAT`, `BOOLEAN`, `POINT` or temporal type (i.e. `DATE`, `ZONED TIME`, `LOCAL TIME`, `ZONED DATETIME`, `LOCAL DATETIME` or `DURATION`) value to a `STRING`.", "toString", "ToString", "A list of values to be converted into a list of strings.", "Converts a `LIST` to a `LIST` values. If any values are not convertible to `STRING` they will be null in the `LIST` returned.", "toStringList", "ToStringList", "A value to be converted into a string or null.", "Converts an `INTEGER`, `FLOAT`, `BOOLEAN`, `POINT` or temporal type (i.e. `DATE`, `ZONED TIME`, `LOCAL TIME`, `ZONED DATETIME`, `LOCAL DATETIME` or `DURATION`) value to a `STRING`, or null if the value cannot be converted.", +"toStringOrNull", "ToStringOrNull", "A string to be converted into uppercase.", "Returns the given `STRING` in uppercase.", "toUpper", "ToUpper", "An entity to return the properties from.", "Returns a `MAP` containing all the properties of a `NODE`, `RELATIONSHIP` or `MAP`.", "Properties", "Returns a `STRING` representation of the `RELATIONSHIP` type.", "Type", "A value to return the type of.", "Returns a `STRING` representation of the most precise value type that the given expression evaluates to.", "ValueType", +"point.withinBBox", "lowerLeft", "upperRight", "A point to be confirmed in the bounding box.", "The lower left side point of the bounding box.", "The upper right side point of the bounding box.", "Returns true if the provided point is within the bounding box defined by the two provided points.", "WithinBBox", "a", "b", "A list representing the first vector.", "A list representing the second vector.", "Returns a `FLOAT` representing the similarity between the argument vectors based on their Euclidean distance.", +"vector.similarity.euclidean", "VectorSimilarityEuclidean", "Returns a `FLOAT` representing the similarity between the argument vectors based on their cosine.", "vector.similarity.cosine", "VectorSimilarityCosine", "FULLTEXT INDEX", "fulltext node index", "fulltext relationship index", "fulltext indexes", "LOOKUP INDEX", "node lookup index", "relationship lookup index", "token lookup index", "ExpressionTypeInfo", "labelsOrTypes", "enforcedLabel", "classification", "ownedIndex", "propertyType", "createStatement", +"populationPercent", "owningConstraint", "lastRead", "readCount", "trackedSince", "failureMessage", "isDynamic", "defaultValue", "startupValue", "isExplicitlySet", "validValues", "isDeprecated", "currentQueryId", "outerTransactionId", "connectionId", "clientAddress", "metaData", "currentQuery", "parameters", "planner", "indexes", "startTime", "currentQueryStartTime", "protocol", "requestUri", "status", "currentQueryStatus", "statusDetails", "resourceInformation", "activeLockCount", "currentQueryActiveLockCount", +"elapsedTime", "cpuTime", "waitTime", "idleTime", "currentQueryElapsedTime", "currentQueryCpuTime", "currentQueryWaitTime", "currentQueryIdleTime", "currentQueryAllocatedBytes", "allocatedDirectBytes", "estimatedUsedHeapMemory", "pageHits", "pageFaults", "currentQueryPageHits", "currentQueryPageFaults", "initializationStackTrace", "TypeSpec(", "Disjunctions", "Conjunctions", "Malformed input of length ", "Unmappable characters of length ", "UnresolvedFunction", "Mapping", ",channel=", "", "[@", "=\'", +"\',<", "ShowAndTerminateColumn", "ShowConstraintsClause", "ShowIndexesClause", "ShowSettingsClause", "ShowTransactionsClause", "Expected a non-empty String, non-empty List of non-empty Strings, or Parameter.", "||", "Rel", "NoEntity", "RelGraphToken", "NodeGraphToken", "ElementGraphToken", "Xor", "Pow", "Not supported.", "property value access rules", " is not supported for property value access rules.", "ProcedureQualifier", "LabelQualifier", "Invalid input. Auth provider is not allowed to be an empty string.", +"no clause", "auth provider ", " attribute", "Auth provider `", "` does not allow `", "` clause.", "Clause `", "` is mandatory for auth provider `", "ExternalAuth", "NativeAuth", "RelationshipQualifier", "UserQualifier", "ElementQualifier", "SettingQualifier", "FunctionQualifier", " + ", " * ", "Unknown operation \'!=\' (you probably meant to use \'<>\', which is the operator for inequality testing)", "Add", "is", "contains", "in", ">=prec}?", "INPUT DATA STREAM is not supported in UNION queries", "CALL { ... } IN TRANSACTIONS in a UNION is not supported", +"Concatenate", "Subtract", "Divide", "Modulo", "Multiply", "SET AUTH \'", "Duplicate `SET AUTH \'", "\'` clause.", " with `", "`, PRIMARY must be greater than 0.", "`, SECONDARY must be a positive value", "ListSlice", "text-1.0", "TreeAcc", "Error in semantic analysis: Unknown expression ", "Illegal symbolic name ", " inside a ", " at position: ", "worksOnSystem", "signature", "argumentDescription", "returnDescription", "admin", "rolesExecution", "rolesBoostedExecution", "deprecatedBy", "category", "isBuiltIn", +"aggregating", "pos is ", ", size is ", "Foreach is expected to only have updating sub-clauses.", "ShowProceduresClause", "SHOW FUNCTIONS", "ShowFunctionsClause", "TerminateTransactionsClause", "Action must be non-null", "Fby", "public", "protected", "private", "abstract", "static", "final", "transient", "volatile", "synchronized", "strictfp", "interface", "\\\\u+0060", "^[\\p{L}_][\\p{L}0-9_]*", "^[\\p{L}_?*][\\p{L}0-9_*?.]*", "All types in a Closed Dynamic Union must be nullable, or be appended with `NOT NULL`", +"(...) requires \'| expression\' (an accumulation expression)", "graph.names", "graph.propertiesByName", "distance", "\'distance\' has been replaced by \'point.distance\'", "Too many parameters for function \'", "Insufficient parameters for function \'", "\' is not a valid argument, must be a number in the range 0.0 to 1.0", "percentile range", "Type mismatch: expected Boolean or String but was ", "Type mismatch: expected Boolean, Integer or String but was ", "argument of function toBoolean()", "Type mismatch: expected Boolean, Float, Integer, Point, String, Duration, Date, Time, LocalTime, LocalDateTime or DateTime but was ", +"argument to function toString()", "Dynamic Label and Types are only allowed in MATCH, CREATE, MERGE, SET and REMOVE clauses.", "(...)", "(...) requires a pattern containing a single relationship", "(...) requires bound nodes when not part of a MATCH clause.", " cannot be used in ", ", but only in a MATCH clause.", "Quantified path patterns", "Variable length relationships must not use relationship type expressions.", "(non-quantified) parenthesized path pattern", "quantified path pattern", "simple path pattern", +"single node", "Expected Pattern or RelationshipsPattern, but was ", "\u0000", "%s is not a valid token name. Token names cannot be empty or contain any null-bytes.", "(...) does not support a minimal length different from 0 or 1", "In this case, both ", " are ", "s.", "In this case, ", " is a ", "Juxtaposition is currently only supported for quantified path patterns.\n |", "\n |That is, neither of these is a quantified path pattern.", "quantifier for a path pattern", "A quantifier for a path pattern must not be limited by 0.", +"A quantifier for a path pattern must not have a lower bound which exceeds its upper bound.\n |In this case, the lower bound ", " is greater than the upper bound ", "quantifier upperbound for a path pattern", "Only directed relationships are supported in ", "a MATCH clause", "a MERGE clause", "a CREATE clause", "an INSERT clause", "Expression", "Label expressions in shortestPath are not allowed in an expression", "list index", "map key", "dynamic label", "dynamic type", "node or relationship property key", +"The start or end (or both) is required for a collection slice", "^-?[1-9][0-9]*$", "invalid literal number", "integer", "^-?0o?[0-7]+$", "^-?0x[0-9a-fA-F]+$", "SkipChildren", "TraverseChildren", "TraverseChildrenNewAccForSiblings", " {2}(", ")(-?\\d+)", " {2}(AUTOINT|AUTODOUBLE|AUTOSTRING|AUTOLIST)(\\d+)", " {2}((?:(?! {2}).)+?)@(\\d+)", "Only single property ", " are supported", " where ", "CommandResultItem", "ParsedAsYield", "Long overflow", "Invalid use of aggregating function ", "(...) in this context", +"Calling %s() is only supported on composite databases.", "Invalid use of DISTINCT with function \'", "group count", "The group count needs to be greater than 0.", "path count", "The path count needs to be greater than 0.", "(...) is only allowed as a top-level element and not inside a parenthesized path pattern", " 1 PRIMARY", " PRIMARIES", " $", " 1 SECONDARY", " SECONDARIES", "Can\'t use aggregate functions inside of aggregate functions.", "The property existence syntax `... exists(variable.property)` is no longer supported. Please use `variable.property IS NOT NULL` instead.", +"Argument to ", "(...) is not a pattern", "argument", "A map with keys ", " is not describing a valid point, a point is described either by using cartesian coordinates e.g. {x: 2.3, y: 4.5, crs: \'cartesian\'} or using geographic coordinates e.g. {latitude: 12.78, longitude: 56.7, crs: \'WGS-84\'}.", "Assigning a path in a quantified path pattern is not yet supported.", "(...) contains quantified pattern. This is currently not supported.", "(...) contains properties ", ". This is currently not supported.", "Bound relationships not allowed in ", +"Parameter maps cannot be used in `", "` patterns (use a literal map instead, e.g. `{id: $", ".id}`)", "one node", "A quantified path pattern needs to have at least one relationship.\n |In this case, the quantified path pattern ", " consists of only ", "accumulator is ", " but expression has type ", "Variable length relationships cannot be used in ", "TypeRange", "Incompatible TypeRange bounds", "Subquery expressions are not allowed in a MERGE clause.", "Invalid use of ", " inside FOREACH", "name of a database", +"alias of a database", "graph function `graph.byName`", "graph function `graph.byElementId`", "Type mismatch: USE clause must be given a ", ". Use either the name or alias of a database or the graph functions `graph.byName` and `graph.byElementId`.", "`USE clause`", "Description: ", "Function call does not provide the required number of arguments: expected ", " got ", ".\n |\n |Function ", "\n |meaning that it expects ", "(...) requires a WHERE predicate", "Can\'t use aggregating expressions inside of expressions executing over lists", +"(singletonName=", ", groupName=", "VariableGrouping", "RETURN * is not allowed when there are no variables in scope", "DELETE doesn\'t support removing labels from a node. Try REMOVE.", " WHERE ", "WHEN ", " THEN ", "ELSE ", "NODE_TYPE", "RELATIONSHIP_TYPE", "&&", "Cannot index nested properties", "A Collect Expression must end with a single return column.", "A Count Expression cannot contain a query ending with FINISH.", "An ", "An Exists Expression cannot contain a query ending with FINISH.", "Label expressions in patterns are not allowed in ", +", but only in a MATCH clause and in expressions", "Node pattern predicates are not allowed in ", ", but only in a MATCH clause or inside a pattern comprehension", "ScopeBeforeParenthesizedPath", "ScopeAfterParenthesizedPath", "Relationship type expressions in patterns are not allowed in ", ", but only in a MATCH clause", "Relationship pattern predicates are not allowed in ", "Relationship pattern predicates are not supported for variable-length relationships.", "NothingFound", "SubqueryFound", "Duplicate `", +"CALL { ... } IN TRANSACTIONS nested in a regular CALL is not supported", "Precedence", "LabelExpressionsPartitions", "This expression could be expressed as ", "These expressions could be expressed as ", "Mixing label expression symbols (\'|\', \'&\', \'!\', and \'%\') with colon (\':\') between labels is not allowed. Please only use one set of symbols. ", "Mixing the IS keyword with colon (\':\') between labels is not allowed. ", "The variable \'%1$s\' is referencing an entity that is created in the same %2$s clause which is not allowed. Please only reference variables created in earlier clauses.", +"The %1$s variable \'%2$s\' is referencing a %1$s that is created in the same %3$s clause which is not allowed. Please only reference variables created in earlier clauses.", "Creating an entity (", ") and referencing that entity in a property definition in the same ", " is not allowed. Only reference variables created in earlier clauses.", "Multiple result columns with the same name are not supported", "SolvableLabelExpression", "Done", "Call", "Cont", "Quantified path patterns are not allowed to be nested.", +"shortestPath(...) is only allowed as a top-level element and not inside a quantified path pattern", "Variable length relationships cannot be part of a quantified path pattern.", "`WHERE` is not allowed by itself, please use `TERMINATE TRANSACTION ... YIELD ... WHERE ...` instead", "Stream", "Syntactic", "Procedure call cannot take an aggregating function as argument, please add a \'WITH\' to your statement.\n |For example:\n | MATCH (n:Person) WITH collect(n.name) AS names CALL proc(names) YIELD value RETURN value", +"Mixing variable-length relationships (\'-[*]-\') with quantified relationships (\'()-->*()\') or quantified path patterns (\'(()-->())*\') is not allowed.", "Mixing shortestPath/allShortestPaths with path selectors (e.g. \'ANY SHORTEST\') or explicit match modes (\'e.g. DIFFERENT RELATIONSHIPS\') is not allowed.", "The variable `", "` is shadowing a variable with the same name from the outer scope and needs to be renamed", "PatternExpressions are not allowed to introduce new variables: \'", "Introduced variables have not been computed yet", +"Nested CALL { ... } IN TRANSACTIONS is not supported", "expected ", " but was ", "tail of empty stream", "head of empty stream", "SomeUnknownLabels", " is out of bounds (min 0, max 6)", "Tuple7", " is out of bounds (min 0, max 4)", "Tuple5", "SET ENCRYPTED PASSWORD", "CHANGE ", "SET PASSWORD ", " SET HOME DATABASE ", " REMOVE HOME DATABASE", "READ ONLY", "READ WRITE", " SET ACCESS ", " REMOVE OPTION ", "TARGET ", "Unknown procedure output: `", "positive", "non-negative", "Invalid input. \'", "\' is not a valid value. Must be a ", +" integer.", "column name", "Trying to YIELD non-existing column: `", "ALL DATA", "URL ", "CIDR ", " SET OPTION ", "It is not allowed to refer to variables in ", ", so that the value for ", " can be statically calculated.", "uninitialized", "already initialized", "Mixing label expression symbols (\'|\', \'&\', \'!\', and \'%\') with colon (\':\') between labels is not allowed. Please only use one set of symbols. This expression could be expressed as :", "Mixing the IS keyword with colon (\':\') between labels is not allowed. This expression could be expressed as IS ", +"o", "The octal integer literal syntax `", "` is no longer supported, please use `", "The hex integer literal syntax `", "floating point number", "list index must be given as Integer, but was ", "map key must be given as String, but was ", "node or relationship property key must be given as String, but was ", "types", "Dynamic ", " using `$any()` are not allowed in CREATE or MERGE.", "Scope dependencies have not been computed yet", "It is not allowed to use patterns in the expression for ", "The procedure or function call does not provide the required number of arguments; expected %s but got %s. The procedure or function `%s` has the signature: `%s`.", +"message converted to empty list", "Expression in ", " must be aliased (use AS)", "Multiple join hints for same variable are not supported", "Match modes such as `", "` are not supported yet.", "longitude", "latitude", "n", "Nested subqueries must use the same graph as their parent query", "Database name should be not null.", "ⸯ", "A-Z", "a-z", "ª", "µ", "º", "À-Ö", "Ø-ö", "ø-ˁ", "ˆ-ˑ", "ˠ-ˤ", "ˬ", "ˮ", "Ͱ-ʹ", "Ͷ-ͷ", "ͺ-ͽ", "Ϳ", "Ά", "Έ-Ί", "Ό", "Ύ-Ρ", "Σ-ϵ", "Ϸ-ҁ", "Ҋ-ԯ", "Ա-Ֆ", "ՙ", "ՠ-ֈ", "א-ת", "ׯ-ײ", "ؠ-ي", +"ٮ-ٯ", "ٱ-ۓ", "ە", "ۥ-ۦ", "ۮ-ۯ", "ۺ-ۼ", "ۿ", "ܐ", "ܒ-ܯ", "ݍ-ޥ", "ޱ", "ߊ-ߪ", "ߴ-ߵ", "ߺ", "ࠀ-ࠕ", "ࠚ", "ࠤ", "ࠨ", "ࡀ-ࡘ", "ࡠ-ࡪ", "ࢠ-ࢴ", "ࢶ-ࣇ", "ऄ-ह", "ऽ", "ॐ", "क़-ॡ", "ॱ-ঀ", "অ-ঌ", "এ-ঐ", "ও-ন", "প-র", "ল", "শ-হ", "ঽ", "ৎ", "ড়-ঢ়", "য়-ৡ", "ৰ-ৱ", "ৼ", "ਅ-ਊ", "ਏ-ਐ", "ਓ-ਨ", "ਪ-ਰ", "ਲ-ਲ਼", "ਵ-ਸ਼", "ਸ-ਹ", "ਖ਼-ੜ", "ਫ਼", "ੲ-ੴ", "અ-ઍ", "એ-ઑ", "ઓ-ન", "પ-ર", "લ-ળ", "વ-હ", "ઽ", "ૐ", "ૠ-ૡ", "ૹ", "ଅ-ଌ", "ଏ-ଐ", "ଓ-ନ", "ପ-ର", "ଲ-ଳ", "ଵ-ହ", "ଽ", "ଡ଼-ଢ଼", "ୟ-ୡ", "ୱ", "ஃ", "அ-ஊ", "எ-ஐ", "ஒ-க", "ங-ச", "ஜ", "ஞ-ட", "ண-த", "ந-ப", "ம-ஹ", "ௐ", +"అ-ఌ", "ఎ-ఐ", "ఒ-న", "ప-హ", "ఽ", "ౘ-ౚ", "ౠ-ౡ", "ಀ", "ಅ-ಌ", "ಎ-ಐ", "ಒ-ನ", "ಪ-ಳ", "ವ-ಹ", "ಽ", "ೞ", "ೠ-ೡ", "ೱ-ೲ", "ഄ-ഌ", "എ-ഐ", "ഒ-ഺ", "ഽ", "ൎ", "ൔ-ൖ", "ൟ-ൡ", "ൺ-ൿ", "අ-ඖ", "ක-න", "ඳ-ර", "ල", "ව-ෆ", "ก-ะ", "า-ำ", "เ-ๆ", "ກ-ຂ", "ຄ", "ຆ-ຊ", "ຌ-ຣ", "ລ", "ວ-ະ", "າ-ຳ", "ຽ", "ເ-ໄ", "ໆ", "ໜ-ໟ", "ༀ", "ཀ-ཇ", "ཉ-ཬ", "ྈ-ྌ", "က-ဪ", "ဿ", "ၐ-ၕ", "ၚ-ၝ", "ၡ", "ၥ-ၦ", "ၮ-ၰ", "ၵ-ႁ", "ႎ", "Ⴀ-Ⴥ", "Ⴧ", "Ⴭ", "ა-ჺ", "ჼ-ቈ", "ቊ-ቍ", "ቐ-ቖ", "ቘ", "ቚ-ቝ", "በ-ኈ", "ኊ-ኍ", "ነ-ኰ", "ኲ-ኵ", "ኸ-ኾ", "ዀ", "ዂ-ዅ", "ወ-ዖ", "ዘ-ጐ", "ጒ-ጕ", "ጘ-ፚ", "ᎀ-ᎏ", "Ꭰ-Ᏽ", +"ᏸ-ᏽ", "ᐁ-ᙬ", "ᙯ-ᙿ", "ᚁ-ᚚ", "ᚠ-ᛪ", "ᛮ-ᛸ", "ᜀ-ᜌ", "ᜎ-ᜑ", "ᜠ-ᜱ", "ᝀ-ᝑ", "ᝠ-ᝬ", "ᝮ-ᝰ", "ក-ឳ", "ៗ", "ៜ", "ᠠ-ᡸ", "ᢀ-ᢄ", "ᢇ-ᢨ", "ᢪ", "ᢰ-ᣵ", "ᤀ-ᤞ", "ᥐ-ᥭ", "ᥰ-ᥴ", "ᦀ-ᦫ", "ᦰ-ᧉ", "ᨀ-ᨖ", "ᨠ-ᩔ", "ᪧ", "ᬅ-ᬳ", "ᭅ-ᭋ", "ᮃ-ᮠ", "ᮮ-ᮯ", "ᮺ-ᯥ", "ᰀ-ᰣ", "ᱍ-ᱏ", "ᱚ-ᱽ", "ᲀ-ᲈ", "Ა-Ჺ", "Ჽ-Ჿ", "ᳩ-ᳬ", "ᳮ-ᳳ", "ᳵ-ᳶ", "ᳺ", "ᴀ-ᶿ", "Ḁ-ἕ", "Ἐ-Ἕ", "ἠ-ὅ", "Ὀ-Ὅ", "ὐ-ὗ", "Ὑ", "Ὓ", "Ὕ", "Ὗ-ώ", "ᾀ-ᾴ", "ᾶ-ᾼ", "ι", "ῂ-ῄ", "ῆ-ῌ", "ῐ-ΐ", "ῖ-Ί", "ῠ-Ῥ", "ῲ-ῴ", "ῶ-ῼ", "‿-⁀", "⁔", "ⁱ", "ⁿ", "ₐ-ₜ", "ℂ", "ℇ", "ℊ-ℓ", "ℕ", "ℙ-ℝ", "ℤ", "Ω", "ℨ", "K-ℭ", "ℯ-ℹ", "ℼ-ℿ", +"ⅅ-ⅉ", "ⅎ", "Ⅰ-ↈ", "Ⰰ-Ⱞ", "ⰰ-ⱞ", "Ⱡ-ⳤ", "Ⳬ-ⳮ", "Ⳳ-ⳳ", "ⴀ-ⴥ", "ⴧ", "ⴭ", "ⴰ-ⵧ", "ⵯ", "ⶀ-ⶖ", "ⶠ-ⶦ", "ⶨ-ⶮ", "ⶰ-ⶶ", "ⶸ-ⶾ", "ⷀ-ⷆ", "ⷈ-ⷎ", "ⷐ-ⷖ", "ⷘ-ⷞ", "々-〇", "〡-〩", "〱-〵", "〸-〼", "ぁ-ゖ", "ゝ-ゟ", "ァ-ヺ", "ー-ヿ", "ㄅ-ㄯ", "ㄱ-ㆎ", "ㆠ-ㆿ", "ㇰ-ㇿ", "㐀-䶿", "一-鿼", "ꀀ-ꒌ", "ꓐ-ꓽ", "ꔀ-ꘌ", "ꘐ-ꘟ", "ꘪ-ꘫ", "Ꙁ-ꙮ", "ꙿ-ꚝ", "ꚠ-ꛯ", "ꜗ-ꜟ", "Ꜣ-ꞈ", "Ꞌ-ꞿ", "Ꟃ-ꟊ", "Ꟶ-ꠁ", "ꠃ-ꠅ", "ꠇ-ꠊ", "ꠌ-ꠢ", "ꡀ-ꡳ", "ꢂ-ꢳ", "ꣲ-ꣷ", "ꣻ", "ꣽ-ꣾ", "ꤊ-ꤥ", "ꤰ-ꥆ", "ꥠ-ꥼ", "ꦄ-ꦲ", "ꧏ", "ꧠ-ꧤ", "ꧦ-ꧯ", "ꧺ-ꧾ", "ꨀ-ꨨ", "ꩀ-ꩂ", "ꩄ-ꩋ", "ꩠ-ꩶ", "ꩺ", "ꩾ-ꪯ", "ꪱ", "ꪵ-ꪶ", "ꪹ-ꪽ", "ꫀ", "ꫂ", "ꫛ-ꫝ", +"ꫠ-ꫪ", "ꫲ-ꫴ", "ꬁ-ꬆ", "ꬉ-ꬎ", "ꬑ-ꬖ", "ꬠ-ꬦ", "ꬨ-ꬮ", "ꬰ-ꭚ", "ꭜ-ꭩ", "ꭰ-ꯢ", "가-힣", "ힰ-ퟆ", "ퟋ-ퟻ", "豈-舘", "並-龎", "ff-st", "ﬓ-ﬗ", "יִ", "ײַ-ﬨ", "שׁ-זּ", "טּ-לּ", "מּ", "נּ-סּ", "ףּ-פּ", "צּ-ﮱ", "ﯓ-ﴽ", "ﵐ-ﶏ", "ﶒ-ﷇ", "ﷰ-ﷻ", "︳-︴", "﹍-﹏", "ﹰ-ﹴ", "ﹶ-ﻼ", "A-Z", "_", "a-z", "ヲ-ᄒ", "ᅡ-ᅦ", "ᅧ-ᅬ", "ᅭ-ᅲ", "ᅳ-ᅵ", "\u0000-\u0008", "\u000e-\u001b", "-Ÿ", "¢", "£", "¤", "¥", "­", "؀-؅", "؜", "۝", "܏", "࣢", "᠎", "​-‏", "‪-‮", "⁠-⁤", "⁦-", "", "-", "0-9", "̀-ʹ", "҃-҇", "֏", "֑-ֽ", "ֿ", "ׁ-ׂ", "ׄ-ׅ", "ׇ", "؋", "ؐ-ؚ", "ؠ-٩", "ٮ-ۓ", "ە-ۜ", "۟-ۨ", +"۪-ۼ", "ܐ-݊", "ݍ-ޱ", "߀-ߵ", "߽-࠭", "ࡀ-࡛", "࣓-࣡", "ࣣ-ॣ", "०-९", "ॱ-ঃ", "়-ৄ", "ে-ৈ", "ো-ৎ", "ৗ", "য়-ৣ", "০-৳", "৻-ৼ", "৾", "ਁ-ਃ", "਼", "ਾ-ੂ", "ੇ-ੈ", "ੋ-੍", "ੑ", "੦-ੵ", "ઁ-ઃ", "઼-ૅ", "ે-ૉ", "ો-્", "ૠ-ૣ", "૦-૯", "૱", "ૹ-૿", "ଁ-ଃ", "଼-ୄ", "େ-ୈ", "ୋ-୍", "୕-ୗ", "ୟ-ୣ", "୦-୯", "ஂ-ஃ", "ா-ூ", "ெ-ை", "ொ-்", "ௗ", "௦-௯", "௹", "ఀ-ఌ", "ఽ-ౄ", "ె-ై", "ొ-్", "ౕ-ౖ", "ౠ-ౣ", "౦-౯", "ಀ-ಃ", "಼-ೄ", "ೆ-ೈ", "ೊ-್", "ೕ-ೖ", "ೠ-ೣ", "೦-೯", "ഀ-ഌ", "ഒ-ൄ", "െ-ൈ", "ൊ-ൎ", "ൔ-ൗ", "ൟ-ൣ", "൦-൯", "ඁ-ඃ", "්", "ා-ු", "ූ", "ෘ-ෟ", "෦-෯", "ෲ-ෳ", "ก-ฺ", +"฿-๎", "๐-๙", "ວ-ຽ", "່-ໍ", "໐-໙", "༘-༙", "༠-༩", "༵", "༷", "༹", "༾-ཇ", "ཱ-྄", "྆-ྗ", "ྙ-ྼ", "࿆", "က-၉", "ၐ-ႝ", "፝-፟", "ᜎ-᜔", "ᜠ-᜴", "ᝀ-ᝓ", "ᝲ-ᝳ", "ក-៓", "៛-៝", "០-៩", "᠋-᠍", "᠐-᠙", "ᢀ-ᢪ", "ᤠ-ᤫ", "ᤰ-᤻", "᥆-ᥭ", "᧐-᧙", "ᨀ-ᨛ", "ᨠ-ᩞ", "᩠-᩼", "᩿-᪉", "᪐-᪙", "᪰-᪽", "ᪿ-ᫀ", "ᬀ-ᭋ", "᭐-᭙", "᭫-᭳", "ᮀ-᯳", "ᰀ-᰷", "᱀-᱉", "ᱍ-ᱽ", "᳐-᳒", "᳔-ᳺ", "ᴀ-᷹", "᷻-ἕ", "₠-₿", "⃐-⃜", "⃡", "⃥-⃰", "Ⳬ-ⳳ", "⵿-ⶖ", "ⷠ-ⷿ", "〡-〯", "゙-゚", "ꘐ-ꘫ", "Ꙁ-꙯", "ꙴ-꙽", "ꙿ-꛱", "Ꟶ-ꠧ", "꠬", "꠸", "ꢀ-ꣅ", "꣐-꣙", "꣠-ꣷ", "ꣽ-꤭", "ꤰ-꥓", "ꦀ-꧀", "ꧏ-꧙", "ꧠ-ꧾ", "ꨀ-ꨶ", "ꩀ-ꩍ", +"꩐-꩙", "ꩺ-ꫂ", "ꫠ-ꫯ", "ꫲ-꫶", "ꭰ-ꯪ", "꯬-꯭", "꯰-꯹", "יִ-ﬨ", "ﷰ-﷼", "︀-️", "︠-︯", "﹩", "$", "0-9", "¢-£", "¥-₩", " CHANGE ", "CrossReferenceFound", "A top-level path pattern in a `MATCH` clause must be written such that it always evaluates to at least one node pattern.\n |In this case, `", "` would result in an empty pattern.", "Expected QuantifiedPath or ParenthesizedPath, but was ", "`USE` clause", "Unreachable state.", "ReadWrite", "` occurs in multiple quantified path patterns and needs to be renamed.", +"` occurs both inside and outside a quantified path pattern and needs to be renamed.", "` is already defined in a previous clause, it cannot be referenced as a node or as a relationship variable inside of a quantified path pattern.", "KnownLabels", "` already declared in outer scope", "parenthesized path pattern", "Cannot replace the dependency on variable ", " with a non-variable expression", "ON MATCH ", "ON CREATE ", " FIELDTERMINATOR ", "Cannot use join hint for single node pattern.", " You may want to use multiple MATCH clauses, or you might want to consider using the REPEATABLE ELEMENTS match mode.", +"Multiple path patterns cannot be used in the same clause in combination with a selective path selector.", "The pattern may yield an infinite number of rows under match mode REPEATABLE ELEMENTS, perhaps use a path selector or add an upper bound to your quantified path patterns.", "LegacyLabelExpression", "From within a ", ", one may only reference variables, that are already bound in a previous `MATCH` clause.\n |In this case, `", "` is defined in the same `MATCH` clause as ", "\\(line (\\d+), column (\\d+) \\(offset: (\\d+)\\)\\)", +" ASCENDING", " DESCENDING", "USE clause must be the first clause in a (sub-)query.", "In a WITH/RETURN with DISTINCT or an aggregation, it is not possible to access variables declared before the WITH/RETURN: ", "withinBBox", "` is shadowing an imported variable with the same name and needs to be renamed", "Aliasing or expressions are not supported", "DISTINCT is not allowed", "WHERE is not allowed", "ORDER BY is not allowed", "SKIP is not allowed", "LIMIT is not allowed"]); jl_String.prototype.toString = function() { return $rt_ustr(this); }; @@ -367575,14 +295201,5 @@ let $rt_jso_marker = Symbol('jsoClass'); }); })(); -$rt_exports.main = $rt_export_main; - -// Initialize everything -$rt_exports.main([]); - -// Export the signature registry updater -$rt_exports.updateSignatureResolver = cnsa_Main_updateSignatureResolver; - -// Export the analyze function as well -$rt_exports.semanticAnalysis = $rt_mainStarter(($args) => cnsa_Main_analyzeQuery($args.data[0])); -})); +let semanticAnalysis = $rt_mainStarter(($args) => cnsa_Main_analyzeQuery($args.data[0])); +export { cnsa_Main_updateSignatureResolver as updateSignatureResolver, semanticAnalysis };